/home/fresvfqn/crimescenecleaningupsuffolkcounty.com/plugins.zip
PK�][��o��'ultimate-addons-for-gutenberg/error_lognu�[���[27-Oct-2025 03:47:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function plugin_basename() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php on line 16
PK�][�!9A66Nultimate-addons-for-gutenberg/compatibility/class-uagb-astra-compatibility.phpnu�[���<?php
/**
 * Astra compatibility
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Astra_Compatibility.
 */
class UAGB_Astra_Compatibility {

	/**
	 * Member Variable
	 *
	 * @var instance
	 */
	private static $instance;

	/**
	 *  Initiator
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Constructor
	 *
	 * @since 2.0.0
	 */
	public function __construct() {

		// Update Astra's admin top level menu position.
		add_filter( 'astra_menu_priority', array( $this, 'update_admin_menu_position' ) );

		$uag_load_fonts_locally = UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_gfonts_locally', 'disabled' );

		if ( 'disabled' === $uag_load_fonts_locally ) {

			$astra_settings = ( defined( 'ASTRA_THEME_SETTINGS' ) ) ? get_option( ASTRA_THEME_SETTINGS ) : '';

			if ( is_array( $astra_settings ) && empty( $astra_settings['load-google-fonts-locally'] ) || ( isset( $astra_settings['load-google-fonts-locally'] ) && false === $astra_settings['load-google-fonts-locally'] ) ) {

				// Disabled uag fonts.
				add_filter( 'uagb_enqueue_google_fonts', '__return_false' );

				// Add uag fonts in astra.
				add_filter( 'astra_google_fonts_selected', array( $this, 'add_google_fonts_in_astra' ) );

			}
		}
	}

	/**
	 * This functions adds UAG Google Fonts in Astra filter to load a common Google Font File for both UAG & Astra.
	 *
	 * @param array $astra_fonts Astra Fonts Object.
	 *
	 * @since 2.0.0
	 * @return array
	 */
	public function add_google_fonts_in_astra( $astra_fonts ) {

		global $post;

		if ( $post ) {
			$post_id = $post->ID;
		}

		if ( is_404() ) {
			$post_id = get_queried_object_id();
		}

		if ( isset( $post_id ) ) {

			$google_fonts = uagb_get_post_assets( $post_id )->get_fonts();

			if ( is_array( $google_fonts ) && ! empty( $google_fonts ) ) {

				foreach ( $google_fonts as $key => $gfont_values ) {
					if ( ! empty( $gfont_values['fontfamily'] ) && is_string( $gfont_values['fontfamily'] ) && isset( $gfont_values['fontvariants'] ) ) {

						$astra_fonts[ $gfont_values['fontfamily'] ] = $gfont_values['fontvariants'];

						foreach ( $gfont_values['fontvariants'] as $key => $font_variants ) {

							$astra_fonts[ $gfont_values['fontfamily'] ][ $key ] .= ',' . $font_variants . 'italic';
						}
					}
				}
			}
		}

		return $astra_fonts;
	}

	/**
	 * Update Astra's menu priority to show after Dashboard menu.
	 *
	 * @param int $menu_priority top level menu priority.
	 * @since 2.3.0
	 */
	public function update_admin_menu_position( $menu_priority ) {
		return 2.1;
	}
}

/**
 *  Prepare if class 'UAGB_Astra_Compatibility' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Astra_Compatibility::get_instance();
PK�][�6���Zultimate-addons-for-gutenberg/compatibility/class-uagb-twenty-twenty-two-compatibility.phpnu�[���<?php
/**
 * UAGB Twenty  Twenty Two Compatibility.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Twenty_Twenty_Two_Compatibility' ) ) {

	/**
	 * Class UAGB_Twenty_Twenty_Two_Compatibility.
	 */
	final class UAGB_Twenty_Twenty_Two_Compatibility {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'wp', array( $this, 'generate_stylesheet' ), 101 );
		}
		/**
		 * Generates stylesheet and appends in head tag.
		 *
		 * @since 2.0
		 */
		public function generate_stylesheet() {

			$query_args = array(
				'post_type' => 'wp_template',
			);

			$query = new WP_Query( $query_args );

			foreach ( $query->posts as $key => $post ) {
				$post_id             = $post->ID;
				$current_post_assets = new UAGB_Post_Assets( intval( $post_id ) );
				$current_post_assets->enqueue_scripts();
			}

		}
	}
}
UAGB_Twenty_Twenty_Two_Compatibility::get_instance();
PK�][���c��Wultimate-addons-for-gutenberg/compatibility/class-uagb-twenty-sixteen-compatibility.phpnu�[���<?php
/**
 * UAGB Twenty Sixteen Compatibility.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Twenty_Sixteen_Compatibility' ) ) {

	/**
	 * Class UAGB_Twenty_Sixteen_Compatibility.
	 */
	final class UAGB_Twenty_Sixteen_Compatibility {

		/**
		 * Member Variable
		 *
		 * @var UAGB_Twenty_Sixteen_Compatibility
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 2.11.4
		 * @return UAGB_Twenty_Sixteen_Compatibility
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
		
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'wp', array( $this, 'generate_stylesheet' ), 101 );
		}
		/**
		 * Generates stylesheet and appends in head tag.
		 *
		 * @since 2.11.4
		 * @return void
		 */
		public function generate_stylesheet() {

			if ( is_home() ) {
				$post_id             = get_the_ID();
				$current_post_assets = new UAGB_Post_Assets( intval( $post_id ) );
				
				if ( is_object( $current_post_assets ) ) {
					$current_post_assets->enqueue_scripts();
				}
			}

		}
	}
}
UAGB_Twenty_Sixteen_Compatibility::get_instance();
PK�][���%��9ultimate-addons-for-gutenberg/lib/utm-analytics/error_lognu�[���[30-Oct-2025 14:53:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function plugin_basename() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/bsf-utm-analytics.php:17
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/bsf-utm-analytics.php on line 17
[30-Oct-2025 14:54:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function BSF_UTM_Analytics\add_action() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/plugin-loader.php:77
Stack trace:
#0 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/plugin-loader.php(35): BSF_UTM_Analytics\Plugin_Loader->__construct()
#1 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/plugin-loader.php(139): BSF_UTM_Analytics\Plugin_Loader::get_instance()
#2 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/utm-analytics/plugin-loader.php on line 77
PK�][4�H���Eultimate-addons-for-gutenberg/lib/utm-analytics/bsf-utm-analytics.phpnu�[���<?php
/**
 * Plugin Name: BSF UTM Analytics
 * Description: It is a started and simple which helps you to speedup the process.
 * Author: brainstormforce
 * Version: 0.0.3
 * License: GPL v2
 * Text Domain: bsf-utm-analytics
 *
 * @package bsf-utm-analytics
 */

/**
 * Set constants
 */
define( 'BSF_UTM_ANALYTICS_FILE', __FILE__ );
define( 'BSF_UTM_ANALYTICS_BASE', plugin_basename( BSF_UTM_ANALYTICS_FILE ) );
define( 'BSF_UTM_ANALYTICS_DIR', plugin_dir_path( BSF_UTM_ANALYTICS_FILE ) );
define( 'BSF_UTM_ANALYTICS_URL', plugins_url( '/', BSF_UTM_ANALYTICS_FILE ) );
define( 'BSF_UTM_ANALYTICS_VER', '0.0.3' );
define( 'BSF_UTM_ANALYTICS_REFERER_OPTION', 'bsf_product_referers' );

require_once 'plugin-loader.php';
PK�][���llAultimate-addons-for-gutenberg/lib/utm-analytics/plugin-loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package bsf-utm-analytics
 * @since 0.0.1
 */

namespace BSF_UTM_Analytics;

/**
 * Plugin_Loader
 *
 * @since 0.0.1
 */
class Plugin_Loader {

	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 0.0.1
	 */
	private static $instance;

	/**
	 * Initiator
	 *
	 * @since 0.0.1
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Autoload classes.
	 *
	 * @param string $class class name.
	 */
	public function autoload( $class ) {
		if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
			return;
		}

		$class_to_load = $class;

		$filename = strtolower(
			preg_replace(
				[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
				[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
				$class_to_load
			)
		);

		$file = BSF_UTM_ANALYTICS_DIR . $filename . '.php';

		// if the file readable, include it.
		if ( is_readable( $file ) ) {
			require_once $file;
		}
	}

	/**
	 * Constructor
	 *
	 * @since 0.0.1
	 */
	public function __construct() {

		spl_autoload_register( [ $this, 'autoload' ] );

		add_action( 'plugins_loaded', [ $this, 'load_textdomain' ] );
	}

	/**
	 * Load Plugin Text Domain.
	 * This will load the translation textdomain depending on the file priorities.
	 *      1. Global Languages /wp-content/languages/bsf-utm-analytics/ folder
	 *      2. Local directory /wp-content/plugins/bsf-utm-analytics/languages/ folder
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function load_textdomain() {
		// Default languages directory.
		$lang_dir = BSF_UTM_ANALYTICS_DIR . 'languages/';

		/**
		 * Filters the languages directory path to use for plugin.
		 *
		 * @param string $lang_dir The languages directory path.
		 */
		$lang_dir = apply_filters( 'bsf_utm_analytics_languages_directory', $lang_dir );

		// Traditional WordPress plugin locale filter.
		global $wp_version;

		$get_locale = get_locale();

		if ( $wp_version >= 4.7 ) {
			$get_locale = get_user_locale();
		}

		/**
		 * Language Locale for plugin
		 *
		 * @var $get_locale The locale to use.
		 * Uses get_user_locale()` in WordPress 4.7 or greater,
		 * otherwise uses `get_locale()`.
		 */
		$locale = apply_filters( 'plugin_locale', $get_locale, 'bsf-utm-analytics' );
		$mofile = sprintf( '%1$s-%2$s.mo', 'bsf-utm-analytics', $locale );

		// Setup paths to current locale file.
		$mofile_global = WP_LANG_DIR . '/plugins/' . $mofile;
		$mofile_local  = $lang_dir . $mofile;

		if ( file_exists( $mofile_global ) ) {
			// Look in global /wp-content/languages/bsf-utm-analytics/ folder.
			load_textdomain( 'bsf-utm-analytics', $mofile_global );
		} elseif ( file_exists( $mofile_local ) ) {
			// Look in local /wp-content/plugins/bsf-utm-analytics/languages/ folder.
			load_textdomain( 'bsf-utm-analytics', $mofile_local );
		} else {
			// Load the default language files.
			load_plugin_textdomain( 'bsf-utm-analytics', false, $lang_dir );
		}
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Plugin_Loader::get_instance();
PK�][Ύ\\=ultimate-addons-for-gutenberg/lib/utm-analytics/inc/utils.phpnu�[���<?php
/**
 * Utils class
 *
 * @package bsf-utm-analytics
 */

namespace BSF_UTM_Analytics\Inc;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Utils class
 *
 * @since 0.0.1
 */
class Utils {

	/**
	 * List of slugs of all the bsf products that will be referer, referring another product.
	 *
	 * @var array<string>
	 * @since 0.0.1
	 */
	private static $bsf_product_slugs = [
		'astra',
		'astra-sites',
		'cartflows',
		'checkout-paypal-woo',
		'checkout-plugins-stripe-woo',
		'presto-player',
		'surecart',
		'sureforms',
		'suretriggers',
		'ultimate-addons-for-gutenberg',
		'woo-cart-abandonment-recovery',
		'variation-swatches-woo',
		'zipwp',
	];

	/**
	 * This function will help to determine if provided slug is a valid bsf product or not,
	 * This way we will maintain consistency through out all our products.
	 *
	 * @param string $slug unique slug of the product which can be used for referer, product.
	 * @since 0.0.1
	 * @return boolean
	 */
	public static function is_valid_bsf_product_slug( $slug ) {
		if ( empty( $slug ) || ! is_string( $slug ) ) {
			return false;
		}

		return in_array( $slug, self::$bsf_product_slugs, true );
	}

	/**
	 * This function updates value of referer and product in option
	 * bsf_product_referer in form of key value pair as 'product' => 'referer'
	 *
	 * @param string $referer slug of the product which is refering another product.
	 * @param string $product slug of the product which is refered.
	 * @since 0.0.1
	 * @return void
	 */
	public static function update_referer( $referer, $product ) {

		$slugs       = [
			'referer' => $referer,
			'product' => $product,
		];
		$error_count = 0;

		foreach ( $slugs as $type => $slug ) {
			if ( ! self::is_valid_bsf_product_slug( $slug ) ) {
				error_log( sprintf( 'Invalid %1$s slug provided "%2$s", does not match bsf_product_slugs', $type, $slug ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
				$error_count++;
			}
		}

		if ( $error_count > 0 ) {
			return;
		}

		$slugs = array_map( 'sanitize_text_field', $slugs );

		$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER_OPTION, [] );
		if ( ! is_array( $bsf_product_referers ) ) {
			$bsf_product_referers = [];
		}

		$bsf_product_referers[ $slugs['product'] ] = $slugs['referer'];

		update_option( BSF_UTM_ANALYTICS_REFERER_OPTION, $bsf_product_referers );
	}

	/**
	 * This function will  add utm_args to pro link or purchase link
	 * added utm_source by default additional utm_args such as utm_medium etc can be provided to generate location specific links
	 *
	 * @param string $link Ideally this should be product site link where utm_params can be tracked.
	 * @param string $product Product slug whose utm_link need to be created.
	 * @param mixed  $utm_args additional args to be passed ex: [ 'utm_medium' => 'dashboard'].
	 * @since 0.0.1
	 * @return string
	 */
	public static function get_utm_ready_link( $link, $product, $utm_args = [] ) {

		if ( false === wp_http_validate_url( $link ) ) {
			error_log( 'Invalid url passed to get_utm_ready_link function' ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
			return $link;
		}

		if ( empty( $product ) || ! is_string( $product ) || ! self::is_valid_bsf_product_slug( $product ) ) {
			error_log( sprintf( 'Invalid product slug provided "%1$s", does not match bsf_product_slugs', $product ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
			return $link;
		}

		$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER_OPTION, [] );

		if ( ! is_array( $bsf_product_referers ) || empty( $bsf_product_referers[ $product ] ) ) {
			return $link;
		}

		if ( ! self::is_valid_bsf_product_slug( $bsf_product_referers[ $product ] ) ) {
			return $link;
		}

		if ( ! is_array( $utm_args ) ) {
			$utm_args = [];
		}

		$utm_args['utm_source'] = $bsf_product_referers[ $product ];

		$link = add_query_arg(
			$utm_args,
			$link
		);

		return $link;
	}
}
PK�][9�_##<ultimate-addons-for-gutenberg/lib/utm-analytics/version.jsonnu�[���{
  "bsf-utm-analytics": "0.0.3"
}
PK�][�w��2ultimate-addons-for-gutenberg/lib/zip-ai/error_lognu�[���[31-Oct-2025 21:18:59 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zip-ai/zip-ai.php:19
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zip-ai/zip-ai.php on line 19
PK�][(�dJ��6ultimate-addons-for-gutenberg/lib/zip-ai/changelog.txtnu�[���2.0.6 - 16th June 2025
- Improvement: Offloaded custom fonts to Google Fonts to reduce bundle size and improve performance.
- Improvement: Cleaned up unnecessary bloat code to optimize performance and maintainability.
- Fix: Resolved an duplicate content rendering issue.

2.0.5 - 30th April 2025
- Improvement: Added a caching mechanism for credit response to optimize API calls.

2.0.4 - 14th April 2025
- Improvement: Enhanced credit exceeded error in the chat interface.
- Improvement: Now showing credits usage directly on chat window instead of open popup.

2.0.3 - 9th April 2025
- Improvement: Clearer error messages when AI credits are exhausted or user is invalid.
- Fix: Resolved an toolbar icons size issue for Ask AI in WordPress 6.8.

2.0.2 - 31st January 2025
- Reverted: Caching mechanism for credit response to optimize API calls due to unforeseen issues.

2.0.1 - 31st January 2025
- Improvement: Added a caching mechanism for credit response to optimize API calls.
- Fix: Resolved an issue wherein the AI Assistant side bar would not be clickable for some teams.

2.0.0 - 9th December 2024
- New: The AI Assistant is now Location Aware.
- Improvement: Revamped the entire UI of the Assistant Sidebar.

1.2.4 - 1st November 2024
- Fix: Added a function check for 'get_current_screen'.

1.2.3 - 23rd October 2024
- Improvement: Added support for the 'source' parameter in the middleware URL.

1.2.2 - 8th October 2024
- Excluded assets from loading via Spectra for SureForms CPTs.

1.2.1 - 27th September 2024
- Improvement: Hid the chat textbox interface when the user is not authorized.
- Improvement: Removed the GPT model parameter for real-time model updates from the middleware.

1.2.0 - 26th July 2024
- Improvement: Switched from the GPT 3.5 Turbo modal to the 4o Mini modal.

1.1.10 - 15th July 2024
- Fix: Resolved an issue with the AI Assistant admin-bar trigger loading order in WordPress 6.6.

v1.1.9 - 2nd July 2024
- Improvement: The library's text-domain support has been removed & translation is now managed from the project level.

v1.1.8 - 27th June 2024
- Improved security.

v1.1.7 - 24th June 2024
- Feature: Added tooltips for icons in the Chat sidebar for improved user experience.
- Improvement: Added disconnection status to the settings option to avoid deletion after disconnecting.
- Fix: Resolved the empty text glitch that would occur when editing the first message in the chat.
- Fix: Resolved PHP warnings in the widget editor for PluginSidebar and PluginSidebarMoreMenuItem.

v1.1.6 - 15th May 2024
- Improvement: Added dropdown menu for common Zip AI Assistant actions in the toolbar.
- Improvement: Upgraded the `get_credit_server_response` helper function to support data.

v1.1.5 - 25th April 2024
- Fix: Copy and Regenerate buttons are now visible by default instead of being displayed on hover.

v1.1.4 - 23rd April 2024
- Replaced "AI Assistant" text with a Sparkles icon for clearer visual representation.

v1.1.3 - 14th March 2024
- Removed the highlight color for Richtexts.
- Replaced ZipWP logo with the AI Sparkle icon for all AI-Assistant-related buttons.
- Improved the AI Assistant sidebar UI on the front end.

v1.1.2 - 27th February 2024
- Improvement: Added ZipWP API server helper functions to get the current plan.

v1.1.1 - 16th February 2024
- Improvement: Added middleware parameter handling for the affiliate ID.
- Improvement: Locally loaded Google Fonts for the AI Assistant sidebar.
- Fix: Restricted front-end assets for non-admin users.

v1.1.0 - 17th January 2024
- Feature: Made the AI Assistant sidebar accessible outside the editor.
- Improvement: Added the 'Force Enabled' function to ensure that modules are enabled.

v1.0.9 - 11th January 2024
- Improvement: Added middleware parameter handling for the plugin slug.

v1.0.8 - 18th December 2023
- Fix: Added compatibility with PHP version 7.0 and above.

v1.0.7 - 2nd December 2023
- Improvement: Updated the middleware request and the Zip AI settings that are saved.
- Fix: Implemented proper multi-setting updation.

v1.0.6 - 30th November 2023
- Improvement: Added a filter to disable the entire library from loading.

v1.0.5 - 30th November 2023
- Improvement: Added a new module structure and removed the admin page from Tools.

v1.0.4 - 30th November 2023
- Updating `distignore` for composer update compatibility.

v1.0.3 - 11th November 2023
- Improvement: Added an option to disable Zip Ai Assistant from the sidebar.

v1.0.2 - 9th November 2023
- Improvement: Better one-click command.

v1.0.1 - 9th November 2023
- Initial Commit
PK�][2X7#��Zultimate-addons-for-gutenberg/lib/zip-ai/admin/dashboard-app/build/dashboard-app.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'wp-components', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '8dfacdbbef66c52ec305');
PK�][J���Tultimate-addons-for-gutenberg/lib/zip-ai/admin/dashboard-app/build/dashboard-app.cssnu�[���/*
! tailwindcss v3.3.5 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */ /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

[multiple] {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px auto -webkit-focus-ring-color;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}.pointer-events-none {
  pointer-events: none;
}.fixed {
  position: fixed;
}.absolute {
  position: absolute;
}.relative {
  position: relative;
}.inset-0 {
  inset: 0px;
}.inset-y-0 {
  top: 0px;
  bottom: 0px;
}.left-0 {
  left: 0px;
}.right-0 {
  right: 0px;
}.top-0 {
  top: 0px;
}.m-0 {
  margin: 0px;
}.mx-auto {
  margin-left: auto;
  margin-right: auto;
}.mr-6 {
  margin-right: 1.5rem;
}.mt-2 {
  margin-top: 0.5rem;
}.mt-3 {
  margin-top: 0.75rem;
}.mt-6 {
  margin-top: 1.5rem;
}.box-border {
  box-sizing: border-box;
}.block {
  display: block;
}.inline-block {
  display: inline-block;
}.flex {
  display: flex;
}.inline-flex {
  display: inline-flex;
}.grid {
  display: grid;
}.contents {
  display: contents;
}.hidden {
  display: none;
}.h-0 {
  height: 0px;
}.h-10 {
  height: 2.5rem;
}.h-12 {
  height: 3rem;
}.h-16 {
  height: 4rem;
}.h-3 {
  height: 0.75rem;
}.h-3\.5 {
  height: 0.875rem;
}.h-5 {
  height: 1.25rem;
}.h-6 {
  height: 1.5rem;
}.h-8 {
  height: 2rem;
}.h-full {
  height: 100%;
}.min-h-screen {
  min-height: 100vh;
}.w-12 {
  width: 3rem;
}.w-3 {
  width: 0.75rem;
}.w-3\.5 {
  width: 0.875rem;
}.w-7 {
  width: 1.75rem;
}.w-8 {
  width: 2rem;
}.w-\[2\.4rem\] {
  width: 2.4rem;
}.w-auto {
  width: auto;
}.w-full {
  width: 100%;
}.max-w-3xl {
  max-width: 48rem;
}.flex-1 {
  flex: 1 1 0%;
}.flex-shrink-0 {
  flex-shrink: 0;
}.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.translate-x-5 {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.translate-y-0 {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.translate-y-4 {
  --tw-translate-y: 1rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}.cursor-pointer {
  cursor: pointer;
}.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}.flex-col {
  flex-direction: column;
}.items-start {
  align-items: flex-start;
}.items-end {
  align-items: flex-end;
}.items-center {
  align-items: center;
}.justify-start {
  justify-content: flex-start;
}.justify-end {
  justify-content: flex-end;
}.justify-center {
  justify-content: center;
}.justify-between {
  justify-content: space-between;
}.gap-1 {
  gap: 0.25rem;
}.gap-12 {
  gap: 3rem;
}.gap-16 {
  gap: 4rem;
}.gap-2 {
  gap: 0.5rem;
}.gap-3 {
  gap: 0.75rem;
}.gap-4 {
  gap: 1rem;
}.gap-6 {
  gap: 1.5rem;
}.gap-8 {
  gap: 2rem;
}.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}.overflow-hidden {
  overflow: hidden;
}.overflow-y-auto {
  overflow-y: auto;
}.rounded {
  border-radius: 0.25rem;
}.rounded-full {
  border-radius: 9999px;
}.rounded-lg {
  border-radius: 0.5rem;
}.rounded-md {
  border-radius: 0.375rem;
}.border {
  border-width: 1px;
}.border-2 {
  border-width: 2px;
}.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}.border-spec {
  --tw-border-opacity: 1;
  border-color: rgb(97 4 255 / var(--tw-border-opacity));
}.border-transparent {
  border-color: transparent;
}.bg-amber-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity));
}.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}.bg-slate-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}.bg-slate-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}.bg-spec {
  --tw-bg-opacity: 1;
  background-color: rgb(97 4 255 / var(--tw-bg-opacity));
}.bg-violet-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 255 / var(--tw-bg-opacity));
}.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}.stroke-red-600 {
  stroke: #dc2626;
}.p-0 {
  padding: 0px;
}.p-12 {
  padding: 3rem;
}.p-16 {
  padding: 4rem;
}.p-6 {
  padding: 1.5rem;
}.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}.px-28 {
  padding-left: 7rem;
  padding-right: 7rem;
}.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}.pb-20 {
  padding-bottom: 5rem;
}.pb-3 {
  padding-bottom: 0.75rem;
}.pb-4 {
  padding-bottom: 1rem;
}.pb-\[56\.25\%\] {
  padding-bottom: 56.25%;
}.pr-2 {
  padding-right: 0.5rem;
}.pt-4 {
  padding-top: 1rem;
}.pt-5 {
  padding-top: 1.25rem;
}.pt-8 {
  padding-top: 2rem;
}.text-left {
  text-align: left;
}.text-center {
  text-align: center;
}.align-bottom {
  vertical-align: bottom;
}.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}.font-bold {
  font-weight: 700;
}.font-medium {
  font-weight: 500;
}.font-normal {
  font-weight: 400;
}.font-semibold {
  font-weight: 600;
}.leading-6 {
  line-height: 1.5rem;
}.leading-7 {
  line-height: 1.75rem;
}.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}.text-slate-700 {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity));
}.text-slate-800 {
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / var(--tw-text-opacity));
}.text-slate-900 {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}.text-spec {
  --tw-text-opacity: 1;
  color: rgb(97 4 255 / var(--tw-text-opacity));
}.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}.text-zip {
  --tw-text-opacity: 1;
  color: rgb(255 88 14 / var(--tw-text-opacity));
}.underline {
  text-decoration-line: underline;
}.opacity-0 {
  opacity: 0;
}.opacity-100 {
  opacity: 1;
}.opacity-50 {
  opacity: 0.5;
}.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-overlay {
  --tw-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.12);
  --tw-shadow-colored: 0px 10px 40px 0px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}.duration-150 {
  transition-duration: 150ms;
}.duration-200 {
  transition-duration: 200ms;
}.duration-300 {
  transition-duration: 300ms;
}.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}#wpbody-content{padding:0 !important}#wpbody-content .notice,#wpbody-content .error{display:none !important}#wpcontent{padding:0}#wpwrap{background-color:#f1f5f9}.zip-ai__dashboard-app{font-family:var(--heading-font-family);left:-20px;position:relative;width:calc(100% + 20px)}.zip-ai__dashboard-app--wrapper{box-sizing:border-box}.zip-ai__dashboard-app--wrapper *{box-sizing:border-box}.zip-ai__dashboard-app--wrapper a:focus,.zip-ai__dashboard-app--wrapper button:focus,.zip-ai__dashboard-app--wrapper input:focus{box-shadow:none;outline:none}.zip-ai__data-bar{width:100%;height:8px;border-radius:4px;overflow:hidden}.zip-ai__data-bar--progress{height:100%;border-radius:4px}.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity));
}.hover\:bg-spec-hover:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(83 0 224 / var(--tw-bg-opacity));
}.hover\:text-slate-700:hover {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity));
}.hover\:text-spec:hover {
  --tw-text-opacity: 1;
  color: rgb(97 4 255 / var(--tw-text-opacity));
}.hover\:text-spec-hover:hover {
  --tw-text-opacity: 1;
  color: rgb(83 0 224 / var(--tw-text-opacity));
}.hover\:shadow-hover:hover {
  --tw-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.12);
  --tw-shadow-colored: 0px 12px 24px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.focus\:bg-gray-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}.focus\:bg-red-700:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity));
}.focus\:text-spec:focus {
  --tw-text-opacity: 1;
  color: rgb(97 4 255 / var(--tw-text-opacity));
}.focus\:shadow-none:focus {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}.focus-visible\:bg-spec-hover:focus-visible {
  --tw-bg-opacity: 1;
  background-color: rgb(83 0 224 / var(--tw-bg-opacity));
}.focus-visible\:text-spec:focus-visible {
  --tw-text-opacity: 1;
  color: rgb(97 4 255 / var(--tw-text-opacity));
}.focus-visible\:text-spec-hover:focus-visible {
  --tw-text-opacity: 1;
  color: rgb(83 0 224 / var(--tw-text-opacity));
}.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}.active\:text-spec:active {
  --tw-text-opacity: 1;
  color: rgb(97 4 255 / var(--tw-text-opacity));
}.active\:text-spec-hover:active {
  --tw-text-opacity: 1;
  color: rgb(83 0 224 / var(--tw-text-opacity));
}.active\:shadow-none:active {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}.active\:outline-none:active {
  outline: 2px solid transparent;
  outline-offset: 2px;
}@media (min-width: 640px) {

  .sm\:static {
    position: static;
  }

  .sm\:inset-auto {
    inset: auto;
  }

  .sm\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .sm\:my-8 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .sm\:ml-20 {
    margin-left: 5rem;
  }

  .sm\:ml-4 {
    margin-left: 1rem;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:ml-8 {
    margin-left: 2rem;
  }

  .sm\:mr-3 {
    margin-right: 0.75rem;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:block {
    display: block;
  }

  .sm\:inline-block {
    display: inline-block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:h-16 {
    height: 4rem;
  }

  .sm\:h-screen {
    height: 100vh;
  }

  .sm\:w-16 {
    width: 4rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:w-full {
    width: 100%;
  }

  .sm\:max-w-lg {
    max-width: 32rem;
  }

  .sm\:translate-y-0 {
    --tw-translate-y: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-start {
    align-items: flex-start;
  }

  .sm\:items-stretch {
    align-items: stretch;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:p-0 {
    padding: 0px;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:pr-0 {
    padding-right: 0px;
  }

  .sm\:text-left {
    text-align: left;
  }

  .sm\:align-middle {
    vertical-align: middle;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}@media (min-width: 1024px) {

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:max-w-7xl {
    max-width: 80rem;
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:space-y-5 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
  }
}@media (min-width: 1280px) {

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:space-y-10 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse));
  }
}
PK�][�"�)%(%(Sultimate-addons-for-gutenberg/lib/zip-ai/admin/dashboard-app/build/dashboard-app.jsnu�[���!function(){var e,t,n={679:function(e,t,n){"use strict";var r=n(864),o={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},l={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},i={};function s(e){return r.isMemo(e)?l:i[e.$$typeof]||o}i[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},i[r.Memo]=l;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,f=Object.getOwnPropertyDescriptor,p=Object.getPrototypeOf,m=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(m){var o=p(n);o&&o!==m&&e(t,o,r)}var l=u(n);d&&(l=l.concat(d(n)));for(var i=s(t),C=s(n),h=0;h<l.length;++h){var v=l[h];if(!(a[v]||r&&r[v]||C&&C[v]||i&&i[v])){var g=f(n,v);try{c(t,v,g)}catch(e){}}}}return t}},826:function(e){e.exports=Array.isArray||function(e){return"[object Array]"==Object.prototype.toString.call(e)}},779:function(e,t,n){var r=n(826);e.exports=function e(t,n,o){return r(n)||(o=n||o,n=[]),o=o||{},t instanceof RegExp?function(e,t){var n=e.source.match(/\((?!\?)/g);if(n)for(var r=0;r<n.length;r++)t.push({name:r,prefix:null,delimiter:null,optional:!1,repeat:!1,partial:!1,asterisk:!1,pattern:null});return u(e,t)}(t,n):r(t)?function(t,n,r){for(var o=[],a=0;a<t.length;a++)o.push(e(t[a],n,r).source);return u(new RegExp("(?:"+o.join("|")+")",d(r)),n)}(t,n,o):function(e,t,n){return f(a(e,n),t,n)}(t,n,o)},e.exports.parse=a,e.exports.compile=function(e,t){return i(a(e,t),t)},e.exports.tokensToFunction=i,e.exports.tokensToRegExp=f;var o=new RegExp(["(\\\\.)","([\\/.])?(?:(?:\\:(\\w+)(?:\\(((?:\\\\.|[^\\\\()])+)\\))?|\\(((?:\\\\.|[^\\\\()])+)\\))([+*?])?|(\\*))"].join("|"),"g");function a(e,t){for(var n,r=[],a=0,l=0,i="",u=t&&t.delimiter||"/";null!=(n=o.exec(e));){var d=n[0],f=n[1],p=n.index;if(i+=e.slice(l,p),l=p+d.length,f)i+=f[1];else{var m=e[l],C=n[2],h=n[3],v=n[4],g=n[5],y=n[6],E=n[7];i&&(r.push(i),i="");var w=null!=C&&null!=m&&m!==C,b="+"===y||"*"===y,x="?"===y||"*"===y,L=n[2]||u,_=v||g;r.push({name:h||a++,prefix:C||"",delimiter:L,optional:x,repeat:b,partial:w,asterisk:!!E,pattern:_?c(_):E?".*":"[^"+s(L)+"]+?"})}}return l<e.length&&(i+=e.substr(l)),i&&r.push(i),r}function l(e){return encodeURI(e).replace(/[\/?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()}))}function i(e,t){for(var n=new Array(e.length),o=0;o<e.length;o++)"object"==typeof e[o]&&(n[o]=new RegExp("^(?:"+e[o].pattern+")$",d(t)));return function(t,o){for(var a="",i=t||{},s=(o||{}).pretty?l:encodeURIComponent,c=0;c<e.length;c++){var u=e[c];if("string"!=typeof u){var d,f=i[u.name];if(null==f){if(u.optional){u.partial&&(a+=u.prefix);continue}throw new TypeError('Expected "'+u.name+'" to be defined')}if(r(f)){if(!u.repeat)throw new TypeError('Expected "'+u.name+'" to not repeat, but received `'+JSON.stringify(f)+"`");if(0===f.length){if(u.optional)continue;throw new TypeError('Expected "'+u.name+'" to not be empty')}for(var p=0;p<f.length;p++){if(d=s(f[p]),!n[c].test(d))throw new TypeError('Expected all "'+u.name+'" to match "'+u.pattern+'", but received `'+JSON.stringify(d)+"`");a+=(0===p?u.prefix:u.delimiter)+d}}else{if(d=u.asterisk?encodeURI(f).replace(/[?#]/g,(function(e){return"%"+e.charCodeAt(0).toString(16).toUpperCase()})):s(f),!n[c].test(d))throw new TypeError('Expected "'+u.name+'" to match "'+u.pattern+'", but received "'+d+'"');a+=u.prefix+d}}else a+=u}return a}}function s(e){return e.replace(/([.+*?=^!:${}()[\]|\/\\])/g,"\\$1")}function c(e){return e.replace(/([=!:$\/()])/g,"\\$1")}function u(e,t){return e.keys=t,e}function d(e){return e&&e.sensitive?"":"i"}function f(e,t,n){r(t)||(n=t||n,t=[]);for(var o=(n=n||{}).strict,a=!1!==n.end,l="",i=0;i<e.length;i++){var c=e[i];if("string"==typeof c)l+=s(c);else{var f=s(c.prefix),p="(?:"+c.pattern+")";t.push(c),c.repeat&&(p+="(?:"+f+p+")*"),l+=p=c.optional?c.partial?f+"("+p+")?":"(?:"+f+"("+p+"))?":f+"("+p+")"}}var m=s(n.delimiter||"/"),C=l.slice(-m.length)===m;return o||(l=(C?l.slice(0,-m.length):l)+"(?:"+m+"(?=$))?"),l+=a?"$":o&&C?"":"(?="+m+"|$)",u(new RegExp("^"+l,d(n)),t)}},703:function(e,t,n){"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,l){if(l!==r){var i=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw i.name="Invariant Violation",i}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:a,resetWarningCache:o};return n.PropTypes=n,n}},697:function(e,t,n){e.exports=n(703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},921:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,o=n?Symbol.for("react.portal"):60106,a=n?Symbol.for("react.fragment"):60107,l=n?Symbol.for("react.strict_mode"):60108,i=n?Symbol.for("react.profiler"):60114,s=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,u=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,f=n?Symbol.for("react.forward_ref"):60112,p=n?Symbol.for("react.suspense"):60113,m=n?Symbol.for("react.suspense_list"):60120,C=n?Symbol.for("react.memo"):60115,h=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,g=n?Symbol.for("react.fundamental"):60117,y=n?Symbol.for("react.responder"):60118,E=n?Symbol.for("react.scope"):60119;function w(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case u:case d:case a:case i:case l:case p:return e;default:switch(e=e&&e.$$typeof){case c:case f:case h:case C:case s:return e;default:return t}}case o:return t}}}function b(e){return w(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=s,t.Element=r,t.ForwardRef=f,t.Fragment=a,t.Lazy=h,t.Memo=C,t.Portal=o,t.Profiler=i,t.StrictMode=l,t.Suspense=p,t.isAsyncMode=function(e){return b(e)||w(e)===u},t.isConcurrentMode=b,t.isContextConsumer=function(e){return w(e)===c},t.isContextProvider=function(e){return w(e)===s},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return w(e)===f},t.isFragment=function(e){return w(e)===a},t.isLazy=function(e){return w(e)===h},t.isMemo=function(e){return w(e)===C},t.isPortal=function(e){return w(e)===o},t.isProfiler=function(e){return w(e)===i},t.isStrictMode=function(e){return w(e)===l},t.isSuspense=function(e){return w(e)===p},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===i||e===l||e===p||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===h||e.$$typeof===C||e.$$typeof===s||e.$$typeof===c||e.$$typeof===f||e.$$typeof===g||e.$$typeof===y||e.$$typeof===E||e.$$typeof===v)},t.typeOf=w},864:function(e,t,n){"use strict";e.exports=n(921)}},r={};function o(e){var t=r[e];if(void 0!==t)return t.exports;var a=r[e]={exports:{}};return n[e](a,a.exports,o),a.exports}o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,{a:t}),t},t=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__},o.t=function(n,r){if(1&r&&(n=this(n)),8&r)return n;if("object"==typeof n&&n){if(4&r&&n.__esModule)return n;if(16&r&&"function"==typeof n.then)return n}var a=Object.create(null);o.r(a);var l={};e=e||[null,t({}),t([]),t(t)];for(var i=2&r&&n;"object"==typeof i&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach((function(e){l[e]=function(){return n[e]}}));return l.default=function(){return n},o.d(a,l),a},o.d=function(e,t){for(var n in t)o.o(t,n)&&!o.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},function(){"use strict";var e=window.wp.element,t=window.wp.i18n;const n=32,r=24,a=16,l=2,i="currentColor",s="none",c="#fff",u={stroke:i,strokeWidth:1.4,fill:s,strokeLinecap:"round",strokeLinejoin:"round"},d={fill:i,stroke:s},f=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 29 28",fill:s,...t},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_wordpress_logo)"},(0,e.createElement)("path",{d:"M28.2 14C28.2 6.272 21.9279 0 14.2 0C6.47195 0 0.199951 6.272 0.199951 14C0.199951 21.728 6.47195 28 14.2 28C21.9279 28 28.2 21.728 28.2 14ZM14.2 1.414C21.158 1.414 26.7859 7.042 26.7859 14C26.7859 20.958 21.158 26.586 14.2 26.586C7.24195 26.586 1.61395 20.958 1.61395 14C1.61395 7.042 7.24195 1.414 14.2 1.414ZM11.414 20.748L7.14395 9.254C7.82995 9.212 8.61395 9.142 8.61395 9.142C9.21595 9.072 9.14595 7.728 8.52995 7.756C8.52995 7.756 6.72395 7.896 5.54795 7.896C5.33795 7.896 5.08595 7.896 4.81995 7.882C6.83595 4.844 10.28 2.842 14.2 2.842C17.1259 2.842 19.786 3.948 21.774 5.768C20.934 5.656 19.744 6.258 19.744 7.756C19.744 8.68 20.276 9.464 20.85 10.388C21.284 11.144 21.55 12.096 21.55 13.482C21.55 15.358 19.7719 19.754 19.7719 19.754L15.978 9.254C16.65 9.212 17.028 9.03 17.028 9.03C17.63 8.96 17.56 7.49 16.958 7.518C16.958 7.518 15.138 7.672 13.962 7.672C12.87 7.672 11.008 7.518 11.008 7.518C10.406 7.49 10.336 9.002 10.938 9.03L12.114 9.142L13.682 13.398L11.414 20.748ZM19.842 23.758L23.496 14C23.496 14 24.434 11.634 24.042 8.666C24.924 10.262 25.358 12.054 25.358 14C25.358 18.144 23.174 21.812 19.842 23.758ZM3.95195 9.478L9.29995 24.15C5.56195 22.33 3.04195 18.438 3.04195 14C3.04195 12.376 3.32195 10.878 3.95195 9.478ZM14.382 15.82L17.588 24.57C16.538 24.948 15.39 25.158 14.2 25.158C13.192 25.158 12.226 25.004 11.316 24.738L14.382 15.82Z",...d,...n})),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_wordpress_logo"},(0,e.createElement)("rect",{width:28,height:28,fill:c,transform:"translate(0.199951)"}))))},p=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:n,height:n,viewBox:"0 0 30 30",fill:s,...t},(0,e.createElement)("path",{d:"M5 0C2.23858 0 0 2.23858 0 5V25C0 27.7614 2.23858 30 5 30H25C27.7614 30 30 27.7614 30 25V5C30 2.23858 27.7614 0 25 0H5ZM26.1432 10.7265C26.1459 10.7262 26.1487 10.7259 26.1514 10.7256L26.1349 10.7269C26.1377 10.7267 26.1405 10.7266 26.1432 10.7265ZM26.1432 10.7265C21.9125 11.174 19.2481 11.1414 18.4509 11.1007C18.3687 11.1071 18.3417 10.9723 18.4048 10.9331C20.7044 9.21451 21.5524 7.98503 21.7865 7.59037C21.8319 7.53551 21.776 7.45429 21.7102 7.45939C20.6151 7.42458 13.7358 7.29097 9.63266 7.95161C6.00268 8.5242 3.84948 11.2753 3.86235 14.851C3.87523 18.4266 6.09129 21.3863 9.29387 22.1304C17.4168 23.9986 22.9334 18.0944 23.8439 17.0311C23.9057 16.975 23.8485 16.8768 23.7649 16.8661L19.5924 16.8476C19.4937 16.8553 19.4654 16.7035 19.5615 16.6618C24.5276 14.3256 25.9654 11.5273 26.2442 10.8553C26.2709 10.7871 26.2208 10.7249 26.1432 10.7265Z",...d,fillRule:"evenodd",clipRule:"evenodd",...r}))},m=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 29 28",fill:s,...t},(0,e.createElement)("path",{d:"M22.9111 2.80005C24.2857 2.80005 25.4 3.8991 25.4 5.25484L25.4 9.4453C25.4 10.801 24.2857 11.9001 22.9111 11.9001H19.1778C17.8032 11.9001 16.6889 10.801 16.6889 9.4453L16.6889 5.25484C16.6889 3.8991 17.8032 2.80005 19.1778 2.80005L22.9111 2.80005Z",...u,strokeWidth:l,...n}),(0,e.createElement)("path",{d:"M5.48889 2.80005C4.11431 2.80005 3 3.8991 3 5.25484L3.00001 9.4453C3.00001 10.801 4.11432 11.9001 5.4889 11.9001H9.22223C10.5968 11.9001 11.7111 10.801 11.7111 9.4453L11.7111 5.25484C11.7111 3.8991 10.5968 2.80005 9.22222 2.80005L5.48889 2.80005Z",...u,strokeWidth:l,...n}),(0,e.createElement)("path",{d:"M22.9111 16.1001C24.2857 16.1001 25.4 17.1991 25.4 18.5549V22.7453C25.4 24.101 24.2857 25.2001 22.9111 25.2001H19.1778C17.8032 25.2001 16.6889 24.101 16.6889 22.7453L16.6889 18.5549C16.6889 17.1991 17.8032 16.1001 19.1778 16.1001H22.9111Z",...u,strokeWidth:l,...n}),(0,e.createElement)("path",{d:"M5.4889 16.1001C4.11432 16.1001 3.00001 17.1991 3.00001 18.5549L3.00001 22.7453C3.00001 24.101 4.11433 25.2001 5.4889 25.2001H9.22223C10.5968 25.2001 11.7111 24.101 11.7111 22.7453L11.7111 18.5549C11.7111 17.1991 10.5968 16.1001 9.22223 16.1001H5.4889Z",...u,strokeWidth:l,...n}))},C=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 28 28",fill:s,...t},(0,e.createElement)("path",{d:"M11.1998 17.5L7.6998 14L11.1998 10.5M16.7998 10.5L20.2998 14L16.7998 17.5M5.5998 25.2C4.05341 25.2 2.7998 23.9464 2.7998 22.4V5.60005C2.7998 4.05365 4.05341 2.80005 5.5998 2.80005H22.3998C23.9462 2.80005 25.1998 4.05365 25.1998 5.60005V22.4C25.1998 23.9464 23.9462 25.2 22.3998 25.2H5.5998Z",...u,strokeWidth:l,...n}))},h=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 29 28",fill:s,...t},(0,e.createElement)("path",{d:"M2.2002 4.36921C2.2002 3.06073 3.27471 2 4.6002 2H23.8002C25.1257 2 26.2002 3.06073 26.2002 4.36921V23.6308C26.2002 24.9393 25.1257 26 23.8002 26H4.6002C3.27471 26 2.2002 24.9393 2.2002 23.6308V4.36921Z",...u,strokeWidth:1.7,...n}),(0,e.createElement)("path",{d:"M5.02918 6.12988C5.02918 5.47564 5.56643 4.94528 6.22918 4.94528H22.1714C22.8341 4.94528 23.3714 5.47564 23.3714 6.12988V9.13253C23.3714 9.78677 22.8341 10.3171 22.1714 10.3171H6.22918C5.56643 10.3171 5.02918 9.78677 5.02918 9.13253V6.12988Z",...u,strokeWidth:1.7,...n}),(0,e.createElement)("path",{d:"M9.75183 12.9683C10.4146 12.9683 10.9518 13.4986 10.9518 14.1529L10.9518 22.0893C10.9518 22.7435 10.4146 23.2739 9.75183 23.2739H6.2291C5.56636 23.2739 5.0291 22.7435 5.0291 22.0893L5.0291 14.1529C5.0291 13.4986 5.56636 12.9683 6.2291 12.9683H9.75183Z",...u,strokeWidth:1.7,...n}),(0,e.createElement)("path",{d:"M22.1714 12.9683C22.8341 12.9683 23.3714 13.4986 23.3714 14.1529V22.0893C23.3714 22.7435 22.8341 23.2739 22.1714 23.2739H14.6509C13.9881 23.2739 13.4509 22.7435 13.4509 22.0893V14.1529C13.4509 13.4986 13.9881 12.9683 14.6509 12.9683H22.1714Z",...u,strokeWidth:1.7,...n}))},v=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 29 28",fill:s,...t},(0,e.createElement)("path",{d:"M3.7 9.10005H24.7M21.2 14H7.2M15.6 19.6H7.2M7.2 25.2H21.2C23.5196 25.2 25.4 23.3196 25.4 21V7.00005C25.4 4.68045 23.5196 2.80005 21.2 2.80005H7.2C4.8804 2.80005 3 4.68045 3 7.00005V21C3 23.3196 4.8804 25.2 7.2 25.2Z",...u,strokeWidth:l,...n}))},g=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:r,height:r,viewBox:"0 0 28 28",fill:s,...t},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_wand)"},(0,e.createElement)("path",{d:"M15.4712 1.71924C15.4712 0.917724 14.8013 0.23584 13.9998 0.23584C13.1982 0.23584 12.5164 0.917724 12.5164 1.71924V5.36791C12.5164 6.16943 13.1982 6.83935 13.9998 6.83935C14.8013 6.83935 15.4712 6.16943 15.4712 5.36791V1.71924ZM19.1558 6.83935C18.6054 7.40161 18.6054 8.35865 19.1798 8.93286C19.73 9.48316 20.6989 9.48316 21.2612 8.90893L23.7614 6.40869C24.3237 5.8584 24.3118 4.88941 23.7376 4.31518C23.1873 3.75293 22.2183 3.77685 21.656 4.33911L19.1558 6.83935ZM6.72632 8.90893C7.28858 9.48316 8.25757 9.48316 8.80786 8.93286C9.38208 8.35865 9.38208 7.40161 8.8318 6.83935L6.34351 4.33911C5.78125 3.77685 4.81226 3.75293 4.26197 4.31518C3.68774 4.87744 3.68774 5.84643 4.23805 6.39672L6.72632 8.90893ZM23.283 26.1235C24.0007 26.8532 25.2209 26.8413 25.9267 26.1235C26.6327 25.3937 26.6327 24.2095 25.9267 23.4797L14.574 12.0432C13.8562 11.3254 12.636 11.3254 11.9302 12.0432C11.2124 12.773 11.2244 13.9573 11.9302 14.675L23.283 26.1235ZM1.63013 12.5935C0.828614 12.5935 0.158691 13.2634 0.158691 14.0649C0.158691 14.8665 0.828614 15.5364 1.63013 15.5364H5.27881C6.08032 15.5364 6.76221 14.8665 6.76221 14.0649C6.76221 13.2634 6.08032 12.5935 5.27881 12.5935H1.63013ZM26.3574 15.5364C27.1589 15.5364 27.8409 14.8665 27.8409 14.0649C27.8409 13.2634 27.1589 12.5935 26.3574 12.5935H22.7207C21.9192 12.5935 21.2372 13.2634 21.2372 14.0649C21.2372 14.8665 21.9192 15.5364 22.7207 15.5364H26.3574ZM16.8469 17.7375L13.1145 13.9932C12.8154 13.7061 12.7078 13.3352 13.0068 13.0481C13.27 12.7849 13.6528 12.8806 13.9519 13.1797L17.6604 16.9002L16.8469 17.7375ZM4.23805 21.6972C3.67579 22.2595 3.66382 23.2285 4.21411 23.7788C4.77636 24.353 5.74536 24.3651 6.30761 23.8147L8.80786 21.3145C9.37011 20.7522 9.38208 19.7951 8.8318 19.2328C8.26954 18.6706 7.30055 18.6587 6.73829 19.209L4.23805 21.6972ZM15.4712 22.774C15.4712 21.9725 14.8013 21.2905 13.9998 21.2905C13.1982 21.2905 12.5164 21.9725 12.5164 22.774V26.4107C12.5164 27.2121 13.1982 27.8941 13.9998 27.8941C14.8013 27.8941 15.4712 27.2121 15.4712 26.4107V22.774Z",...d,...n})),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_wand"},(0,e.createElement)("rect",{width:28,height:28,fill:c,...n}))))},y=(0,e.createElement)("svg",{width:145,height:32,viewBox:"0 0 145 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_spectra_logo)"},(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.0347 32C24.8712 32 32.0347 24.8366 32.0347 16C32.0347 7.16343 24.8712 0 16.0347 0C7.1981 0 0.034668 7.16343 0.034668 16C0.034668 24.8366 7.1981 32 16.0347 32ZM20.9549 20.688C21.88 20.1032 22.4346 19.1247 22.4347 18.0775C22.4347 16.6224 21.3723 15.357 19.8655 15.0174L15.3508 13.8968C14.9252 13.8009 14.8232 13.2761 15.1853 13.0452L18.7026 10.8017C20.3398 9.75739 20.7655 7.66455 19.6534 6.12718C19.5144 5.93499 19.2358 5.88503 19.0311 6.01559L11.0854 11.3753C10.1779 11.9541 9.63467 12.9173 9.63467 13.9473C9.63467 15.3851 10.6843 16.6352 12.1731 16.9708L16.7614 18.108C17.1879 18.2042 17.2891 18.7307 16.9252 18.9607L13.382 21.2006C11.7402 22.2385 11.3053 24.3297 12.4106 25.8714C12.5488 26.0641 12.8271 26.1152 13.0324 25.9854L20.9549 20.688Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M46.1596 23.755C44.6665 23.755 43.3371 23.5107 42.1714 23.022C41.0057 22.5333 40.0649 21.8411 39.3491 20.9452L41.9873 18.7155C42.6009 19.3875 43.2962 19.8762 44.0734 20.1816C44.8506 20.4667 45.6379 20.6092 46.4357 20.6092C47.0693 20.6092 47.5809 20.4667 47.9695 20.1816C48.358 19.8965 48.5523 19.4995 48.5523 18.9904C48.5523 18.5425 48.3681 18.1862 48.0001 17.9214C47.6321 17.6771 46.7526 17.3717 45.3618 17.0052C43.2962 16.4758 41.834 15.7529 40.975 14.8367C40.2183 14.0222 39.84 13.0143 39.84 11.813C39.84 10.856 40.1263 10.0212 40.6989 9.30854C41.2715 8.57551 42.0283 8.00536 42.969 7.59814C43.9098 7.19092 44.9323 6.9873 46.0367 6.9873C47.3048 6.9873 48.5011 7.2113 49.6262 7.65926C50.7507 8.10717 51.6915 8.71805 52.4481 9.49176L50.1779 11.9657C49.6056 11.4363 48.9409 10.9985 48.1843 10.6524C47.4479 10.2859 46.7626 10.1026 46.1286 10.1026C44.6563 10.1026 43.92 10.6117 43.92 11.6297C43.9404 12.1184 44.1654 12.5053 44.5949 12.7903C45.0039 13.0754 45.9343 13.4114 47.3866 13.7982C49.3295 14.3073 50.6995 14.9792 51.4972 15.814C52.1925 16.5267 52.5404 17.4735 52.5404 18.6545C52.5404 19.6318 52.2538 20.5074 51.6815 21.2811C51.1292 22.0548 50.3722 22.6657 49.4113 23.1137C48.4499 23.5412 47.366 23.755 46.1596 23.755Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M54.6069 28.8V7.32324H58.1987L58.7176 9.27794C59.2497 8.62637 59.9756 8.0868 60.8958 7.65924C61.8161 7.23163 62.7875 7.01782 63.8101 7.01782C65.2213 7.01782 66.4789 7.37417 67.5834 8.0868C68.6878 8.79944 69.5569 9.78701 70.1909 11.0494C70.825 12.3118 71.1418 13.7473 71.1418 15.3559C71.1418 16.9644 70.825 18.3999 70.1909 19.6623C69.5569 20.9247 68.6878 21.9225 67.5834 22.6555C66.4789 23.3681 65.2213 23.7245 63.8101 23.7245C62.8488 23.7245 61.9185 23.531 61.0184 23.1442C60.1187 22.737 59.3928 22.2279 58.8405 21.617V26.9766L54.6069 28.8ZM62.8899 20.1205C64.1374 20.1205 65.1496 19.6827 65.9267 18.8072C66.7039 17.9113 67.0924 16.7608 67.0924 15.3559C67.0924 13.9713 66.7039 12.8412 65.9267 11.9657C65.1496 11.0698 64.1374 10.6218 62.8899 10.6218C61.6424 10.6218 60.6298 11.0596 59.8527 11.9351C59.0755 12.8107 58.6869 13.9509 58.6869 15.3559C58.6869 16.7608 59.0755 17.9113 59.8527 18.8072C60.6298 19.6827 61.6424 20.1205 62.8899 20.1205Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M81.5247 23.7551C79.7862 23.7551 78.263 23.3987 76.9538 22.6861C75.645 21.9734 74.6223 20.9961 73.8863 19.754C73.1704 18.5119 72.8125 17.0867 72.8125 15.4781C72.8125 13.8084 73.1604 12.3424 73.8557 11.08C74.5711 9.7972 75.5426 8.78934 76.77 8.05631C78.0175 7.32328 79.4488 6.95679 81.0648 6.95679C82.5167 6.95679 83.8155 7.31313 84.9606 8.02577C86.1263 8.71807 87.0264 9.66486 87.66 10.8662C88.3147 12.0675 88.6214 13.442 88.5807 14.9894L88.5496 16.3027H76.8925C77.1174 17.4633 77.6696 18.3796 78.5492 19.0516C79.4488 19.7235 80.5839 20.0594 81.9544 20.0594C82.6904 20.0594 83.3551 19.9475 83.9485 19.7235C84.562 19.4995 85.2162 19.1024 85.9115 18.5323L87.9362 21.3422C87.0571 22.116 86.0445 22.7166 84.8994 23.1442C83.7743 23.5514 82.6498 23.7551 81.5247 23.7551ZM81.0955 10.5608C78.7842 10.5608 77.3935 11.5992 76.9231 13.6761H84.5926V13.5539C84.5314 12.6784 84.1629 11.9657 83.4882 11.4159C82.8335 10.8458 82.0363 10.5608 81.0955 10.5608Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M98.2424 23.755C96.7083 23.755 95.3281 23.3885 94.1007 22.6555C92.8943 21.9225 91.9329 20.9248 91.2171 19.6624C90.5217 18.4 90.1743 16.9644 90.1743 15.3559C90.1743 13.7677 90.5217 12.3424 91.2171 11.08C91.9329 9.81757 92.8943 8.81985 94.1007 8.08682C95.3281 7.3538 96.7083 6.9873 98.2424 6.9873C99.6943 6.9873 101.014 7.25199 102.199 7.78141C103.406 8.31082 104.347 9.054 105.022 10.011L102.721 12.7598C102.292 12.1693 101.698 11.6705 100.942 11.2632C100.185 10.8356 99.4182 10.6218 98.6411 10.6218C97.7821 10.6218 97.0155 10.8356 96.3403 11.2632C95.6861 11.6705 95.1645 12.2304 94.7759 12.9431C94.4079 13.6557 94.2237 14.46 94.2237 15.3559C94.2237 16.2518 94.418 17.0561 94.8066 17.7687C95.1951 18.4814 95.7268 19.0515 96.4015 19.4791C97.0767 19.8863 97.8333 20.0899 98.6717 20.0899C99.4694 20.0899 100.206 19.9169 100.881 19.5707C101.555 19.2042 102.169 18.6952 102.721 18.0436L105.022 20.7924C104.327 21.6883 103.365 22.4112 102.138 22.9609C100.911 23.4903 99.6125 23.755 98.2424 23.755Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M110.652 23.4495C108.632 23.4495 106.995 21.8122 106.995 19.7924V11.0799V7.32315V5.02336L111.167 3.19995V7.32315H114.32V11.0799H111.167V18.7428C111.167 19.2478 111.576 19.6571 112.081 19.6571H114.32V23.4495H110.652Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M116.769 23.4496V7.32326H120.36L120.879 9.98045C121.411 9.10493 122.107 8.39224 122.966 7.84248C123.845 7.27238 124.765 6.9873 125.726 6.9873C126.094 6.9873 126.432 7.01784 126.739 7.07892C127.066 7.11965 127.342 7.18072 127.567 7.26218L126.432 11.8435C126.207 11.7213 125.921 11.6195 125.573 11.5381C125.225 11.4567 124.878 11.4159 124.53 11.4159C123.528 11.4159 122.679 11.7621 121.984 12.4544C121.309 13.1263 120.972 13.9815 120.972 15.0199V23.4496H116.769Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M135.074 23.755C133.724 23.755 132.507 23.3885 131.424 22.6555C130.34 21.9225 129.47 20.9248 128.816 19.6624C128.182 18.4 127.865 16.9644 127.865 15.3559C127.865 13.7066 128.182 12.261 128.816 11.0189C129.47 9.75649 130.35 8.76893 131.454 8.05629C132.579 7.34365 133.847 6.9873 135.258 6.9873C136.403 6.9873 137.405 7.22145 138.264 7.6898C139.123 8.13775 139.809 8.7282 140.32 9.46122V7.32326H144.492V23.4496H140.747L140.289 21.2811C139.717 21.9938 138.97 22.5842 138.05 23.0525C137.15 23.5209 136.158 23.755 135.074 23.755ZM136.209 20.1205C137.457 20.1205 138.469 19.6827 139.246 18.8072C140.023 17.9316 140.412 16.7812 140.412 15.3559C140.412 13.9306 140.023 12.7802 139.246 11.9046C138.469 11.0291 137.457 10.5913 136.209 10.5913C134.982 10.5913 133.98 11.0291 133.203 11.9046C132.446 12.7802 132.068 13.9306 132.068 15.3559C132.068 16.7812 132.446 17.9316 133.203 18.8072C133.98 19.6827 134.982 20.1205 136.209 20.1205Z",fill:"currentColor"})),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_spectra_logo"},(0,e.createElement)("rect",{width:144.457,height:32,fill:"white",transform:"translate(0.034668)"})))),E=(0,e.createElement)("svg",{width:124,height:36,viewBox:"0 0 124 36",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_astra_logo)"},(0,e.createElement)("mask",{id:"mask_spec_ai_astra_logo",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:123,height:36},(0,e.createElement)("path",{d:"M122.605 0H0.277344V35.2471H122.605V0Z",fill:"white"})),(0,e.createElement)("g",{mask:"url(#mask_spec_ai_astra_logo)"},(0,e.createElement)("path",{d:"M51.2049 23.3476H43.5876L41.8462 26.7455H37.7261L47.1131 8.40283H48.1891L56.8965 26.7455H52.8189L51.2049 23.3476ZM49.4775 19.6819L47.552 15.5932L45.4707 19.6819H49.4775Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M63.5369 18.9769C62.928 18.8218 61.7953 18.5256 60.7476 17.8207C59.2751 16.8479 58.4539 15.4381 58.3832 13.6898C58.2982 12.2235 58.7797 10.9405 59.7283 9.95356C61.1016 8.54369 63.0696 8.14893 64.0182 8.14893C66.6942 8.14893 68.1949 9.12174 69.54 9.98179L70.1487 10.3766L68.2232 13.4924L67.572 13.0695C66.3827 12.3081 65.6323 11.8147 64.0182 11.8147C63.7775 11.8147 62.8572 11.9979 62.39 12.4914C62.2342 12.6465 62.0502 12.9425 62.0785 13.5347C62.1068 14.4793 62.7581 15.0009 64.4429 15.4239C64.6553 15.4803 64.8111 15.5227 64.9668 15.579C66.7225 16.1853 68.0958 16.9889 69.0444 18.0181C69.993 19.0615 70.4886 20.3021 70.4886 21.5992C70.4886 22.8822 69.9364 24.2216 69.0161 25.2367C67.94 26.4351 66.4393 27.1259 64.7828 27.1259C63.9616 27.1259 62.8572 27.0696 61.5547 26.6748C59.8981 26.1532 58.4256 25.2367 57.1655 23.8973L59.8415 21.3877C61.7812 23.4603 63.9616 23.4603 64.7828 23.4603C66.3119 23.4603 66.8074 22.0785 66.8074 21.5992C66.8074 20.5982 65.6747 19.6818 63.7634 19.0332L63.6784 19.005L63.5369 18.9769Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M86.3605 8.40277V12.0685H81.2635V26.7595H77.5823V12.0544H72.457V8.38867H86.3605V8.40277Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M98.0829 26.7453L94.6428 19.3857H92.8023V26.7171H89.1211V8.37451H96.0584C99.1023 8.37451 101.581 10.8559 101.581 13.9012C101.581 16.1289 100.264 18.0322 98.352 18.9064L102.005 26.7594H98.0829V26.7453ZM92.8023 12.0402V15.7341H96.0584C97.0778 15.7341 97.8991 14.9163 97.8991 13.9012C97.8991 12.8861 97.0778 12.0402 96.0584 12.0402H92.8023Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M116.928 23.3476H109.311L107.569 26.7455H103.449L112.836 8.40283H113.912L122.605 26.7455H118.528L116.928 23.3476ZM115.187 19.6819L113.261 15.5932L111.179 19.6819H115.187Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M17.8337 35.1063C27.5298 35.1063 35.39 27.279 35.39 17.6237C35.39 7.96833 27.5298 0.141113 17.8337 0.141113C8.1376 0.141113 0.277344 7.96833 0.277344 17.6237C0.277344 27.279 8.1376 35.1063 17.8337 35.1063ZM17.6213 7.89556C16.1348 11.0183 14.6483 14.1445 13.1617 17.2706C11.675 20.3973 10.1882 23.5239 8.70154 26.647H12.5243C13.7278 24.229 14.9312 21.8076 16.1347 19.3861C17.3381 16.9646 18.5416 14.5432 19.7451 12.1252L17.6213 7.89556ZM19.745 19.4564C20.3573 18.1876 20.9696 16.9188 21.5855 15.65C22.4844 17.4826 23.3799 19.3154 24.2753 21.1481C25.171 22.9811 26.0665 24.814 26.9657 26.647H22.8597C22.6261 26.1043 22.3889 25.5649 22.1518 25.0257C21.9147 24.4864 21.6774 23.9471 21.4438 23.4043H17.9043H17.8335L17.9043 23.2633C18.5202 21.9943 19.1326 20.7254 19.745 19.4564Z",fill:"currentColor",fillRule:"evenodd",clipRule:"evenodd"}))),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_astra_logo"},(0,e.createElement)("rect",{width:123.158,height:36,fill:"white",transform:"translate(0.277344)"})))),w=(0,e.createElement)("svg",{width:171,height:32,viewBox:"0 0 171 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_cartflows_logo)"},(0,e.createElement)("mask",{id:"mask_spec_ai_cartflows_logo",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:171,height:32},(0,e.createElement)("path",{d:"M170.202 0H0.647949V31.3308H170.202V0Z",fill:"white"})),(0,e.createElement)("g",{mask:"url(#mask_spec_ai_cartflows_logo)"},(0,e.createElement)("path",{d:"M19.8602 2.03637C18.7416 3.13295 18.0352 4.64074 18.0352 6.34436V16.331C18.0352 17.7997 16.8381 18.9942 15.3662 18.9942H8.6547C7.18288 18.9942 5.98578 17.7997 5.98578 16.331C5.98578 14.8624 7.18288 13.668 8.6547 13.668H16.0139V8.34169H8.6547C8.20334 8.34169 7.75198 8.38086 7.32024 8.43957C3.53274 9.0858 0.647949 12.3756 0.647949 16.331C0.647949 19.8166 2.88513 22.7735 5.98578 23.87C6.41752 24.0267 6.86888 24.1442 7.32024 24.2225C7.75198 24.3008 8.20334 24.34 8.6547 24.34H15.3662C15.8176 24.34 16.269 24.3008 16.7007 24.2225C17.1521 24.1442 17.6034 24.0267 18.0352 23.87C21.1554 22.7735 23.373 19.8166 23.373 16.331V13.668C26.3167 13.668 28.7108 11.279 28.7108 8.34169H23.373V6.34436C23.373 5.9723 23.6674 5.67858 24.0402 5.67858H25.3747C27.0035 5.67858 28.4754 5.03238 29.5743 3.97497C30.5359 3.03504 31.2031 1.76223 31.3602 0.332764H24.0402C22.4311 0.352345 20.9396 0.998546 19.8602 2.03637Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M8.65476 25.6521C7.18293 25.6521 5.98584 26.8466 5.98584 28.3153C5.98584 29.7839 7.18293 30.9783 8.65476 30.9783C10.1266 30.9783 11.3237 29.7839 11.3237 28.3153C11.3237 26.8466 10.1266 25.6521 8.65476 25.6521Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M16.6616 25.6521C15.1898 25.6521 13.9927 26.8466 13.9927 28.3153C13.9927 29.7839 15.1898 30.9783 16.6616 30.9783C18.1335 30.9783 19.3305 29.7839 19.3305 28.3153C19.3305 26.8466 18.1531 25.6521 16.6616 25.6521Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M45.9215 27.2382C44.3908 27.2382 43.0171 27.0032 41.82 26.5333C40.6033 26.0633 39.5828 25.378 38.739 24.4772C37.8951 23.5568 37.2476 22.4603 36.7962 21.1483C36.3448 19.8363 36.1289 18.3481 36.1289 16.6445C36.1289 14.9605 36.3841 13.4527 36.9139 12.1407C37.4241 10.8288 38.1306 9.73217 39.0333 8.81183C39.9361 7.91104 40.9958 7.2061 42.1929 6.75572C43.4096 6.28576 44.7048 6.05078 46.0982 6.05078C46.942 6.05078 47.7073 6.10953 48.3942 6.2466C49.0811 6.38367 49.6698 6.52074 50.18 6.67739C50.6903 6.83405 51.1024 6.99071 51.4359 7.16694C51.7696 7.34318 52.0051 7.46067 52.1425 7.53899L51.0435 10.5742C50.5725 10.2805 49.9052 10.0063 49.0418 9.73217C48.1783 9.4776 47.2364 9.34051 46.2159 9.34051C45.3328 9.34051 44.5085 9.49714 43.7432 9.79087C42.9778 10.1042 42.3303 10.5546 41.7612 11.1616C41.2117 11.7686 40.7603 12.5323 40.4659 13.4331C40.152 14.3535 39.9949 15.4108 39.9949 16.6249C39.9949 17.7019 40.1127 18.681 40.3482 19.5818C40.5836 20.4825 40.9761 21.2658 41.4864 21.912C41.9966 22.5582 42.6443 23.0673 43.4096 23.4394C44.1946 23.8114 45.1366 23.9877 46.2159 23.9877C47.5308 23.9877 48.5905 23.8506 49.4146 23.596C50.2389 23.3414 50.8668 23.0869 51.3182 22.8519L52.3191 25.8675C52.0836 26.0241 51.7696 26.2004 51.3575 26.3375C50.9649 26.4941 50.494 26.6507 49.9445 26.7878C49.395 26.9249 48.7867 27.0424 48.0999 27.1403C47.4326 27.199 46.7065 27.2382 45.9215 27.2382Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M60.5224 11.1226C61.6998 11.1226 62.681 11.2597 63.4857 11.5729C64.2903 11.8666 64.9379 12.2779 65.4089 12.8066C65.8798 13.3353 66.2331 13.9815 66.4293 14.7256C66.6452 15.4697 66.7433 16.2922 66.7433 17.1929V26.4746C66.1938 26.5921 65.3696 26.7292 64.2707 26.9055C63.1716 27.0621 61.9157 27.16 60.542 27.16C59.6196 27.16 58.7758 27.0621 58.0105 26.8858C57.2451 26.7096 56.5975 26.4355 56.0676 26.0438C55.5182 25.6522 55.106 25.1431 54.8116 24.536C54.5173 23.9094 54.3604 23.1457 54.3604 22.2254C54.3604 21.3442 54.5369 20.6001 54.8706 19.9931C55.2238 19.3861 55.6751 18.8965 56.2638 18.5245C56.8526 18.1328 57.5198 17.8783 58.3048 17.702C59.0702 17.5258 59.8748 17.4474 60.7186 17.4474C61.1111 17.4474 61.5232 17.4671 61.955 17.5258C62.3867 17.5845 62.8381 17.6629 63.3287 17.7803V17.1929C63.3287 16.7817 63.2894 16.3901 63.1913 16.018C63.0931 15.6459 62.9166 15.3327 62.681 15.0389C62.4456 14.7647 62.1119 14.5298 61.7194 14.3732C61.327 14.2165 60.8168 14.1381 60.2083 14.1381C59.3842 14.1381 58.6384 14.1969 57.9516 14.3144C57.2647 14.4319 56.7152 14.569 56.2835 14.7256L55.8518 11.8666C56.3031 11.71 56.9508 11.5534 57.8142 11.3967C58.6188 11.2009 59.5412 11.1226 60.5224 11.1226ZM60.8168 24.3206C61.9157 24.3206 62.7399 24.2619 63.3091 24.1445V20.2085C63.1128 20.1498 62.8381 20.091 62.4652 20.0323C62.0923 19.9735 61.6802 19.9343 61.2288 19.9343C60.8364 19.9343 60.4439 19.9735 60.0514 20.0323C59.6393 20.091 59.2861 20.2085 58.9721 20.3652C58.658 20.5218 58.3833 20.7372 58.187 21.0309C57.9908 21.305 57.8927 21.6771 57.8927 22.0884C57.8927 22.9304 58.1478 23.5178 58.6777 23.8311C59.2075 24.164 59.914 24.3206 60.8168 24.3206Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M79.8126 14.6862C79.5182 14.5884 79.106 14.4905 78.5958 14.373C78.0856 14.2555 77.4772 14.2164 76.7904 14.2164C76.3979 14.2164 75.9858 14.2555 75.5344 14.3338C75.1027 14.4121 74.7887 14.4708 74.6121 14.5296V26.7878H71.0601V12.2386C71.747 11.984 72.6104 11.749 73.6308 11.514C74.6513 11.2986 75.7896 11.1812 77.0455 11.1812C77.281 11.1812 77.5557 11.2007 77.8697 11.2203C78.1838 11.2398 78.4977 11.2986 78.8117 11.3378C79.1257 11.3966 79.4201 11.4553 79.7145 11.514C80.0088 11.5728 80.2443 11.6511 80.4209 11.7098L79.8126 14.6862Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M82.7168 7.46074L86.2688 6.87329V11.4946H91.7248V14.4514H86.2688V20.6784C86.2688 21.9121 86.465 22.7737 86.8574 23.3023C87.2498 23.8311 87.9176 24.0857 88.8397 24.0857C89.4873 24.0857 90.0566 24.0073 90.5669 23.8898C91.057 23.7528 91.4696 23.6352 91.7635 23.4982L92.3522 26.2984C91.9404 26.4746 91.4107 26.6509 90.7429 26.8467C90.076 27.0229 89.2911 27.1208 88.3884 27.1208C87.2894 27.1208 86.3867 26.9641 85.6406 26.69C84.9147 26.3963 84.326 25.9655 83.8942 25.4172C83.4625 24.8689 83.1682 24.1835 82.9915 23.4003C82.8149 22.617 82.7364 21.7162 82.7364 20.698L82.7168 7.46074Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M95.335 26.8075V6.52075H108.189V9.65386H99.0444V14.8234H107.169V17.9565H99.0444V26.8075H95.335Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M116.648 27.101C115.608 27.0815 114.726 26.964 114.019 26.7486C113.332 26.5332 112.782 26.2198 112.37 25.8283C111.958 25.4171 111.664 24.9275 111.507 24.34C111.33 23.733 111.252 23.0673 111.252 22.3036V4.67998L114.804 4.09253V21.6182C114.804 22.049 114.823 22.4015 114.902 22.6952C114.981 22.9889 115.098 23.2434 115.275 23.4393C115.452 23.6351 115.686 23.7917 115.981 23.9093C116.295 24.0071 116.668 24.1051 117.139 24.1638L116.648 27.101Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M133.898 19.1315C133.898 20.3455 133.721 21.4421 133.368 22.4408C133.034 23.4394 132.524 24.2815 131.876 24.9865C131.228 25.6718 130.463 26.2201 129.561 26.6313C128.638 27.0229 127.637 27.2187 126.558 27.2187C125.459 27.2187 124.458 27.0229 123.556 26.6313C122.653 26.2397 121.887 25.6914 121.24 24.9865C120.592 24.2815 120.101 23.4394 119.728 22.4408C119.356 21.4421 119.179 20.3455 119.179 19.1315C119.179 17.9174 119.356 16.8208 119.728 15.8418C120.082 14.8627 120.592 14.0207 121.259 13.3157C121.907 12.6108 122.692 12.0821 123.594 11.6905C124.497 11.3183 125.478 11.1226 126.558 11.1226C127.637 11.1226 128.618 11.3183 129.54 11.6905C130.443 12.0821 131.228 12.6108 131.876 13.3157C132.524 14.0207 133.014 14.8627 133.387 15.8418C133.721 16.8208 133.898 17.9174 133.898 19.1315ZM130.267 19.1315C130.267 17.6042 129.933 16.4096 129.285 15.5088C128.638 14.6081 127.716 14.1773 126.538 14.1773C125.361 14.1773 124.438 14.6081 123.791 15.5088C123.143 16.39 122.81 17.6042 122.81 19.1315C122.81 20.6784 123.143 21.8925 123.791 22.7933C124.438 23.694 125.361 24.1445 126.538 24.1445C127.716 24.1445 128.618 23.694 129.285 22.7933C129.933 21.8925 130.267 20.6784 130.267 19.1315Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M146.399 17.1731C145.947 18.8767 145.456 20.5607 144.946 22.1861C144.436 23.8114 143.925 25.3583 143.415 26.8073H140.491C140.099 25.9066 139.687 24.8883 139.255 23.733C138.823 22.5777 138.391 21.3636 137.96 20.0516C137.528 18.7397 137.096 17.3689 136.665 15.9199C136.233 14.4708 135.821 13.0022 135.408 11.4944H139.156C139.333 12.3169 139.549 13.1981 139.785 14.1379C140.02 15.0974 140.255 16.057 140.511 17.036C140.766 18.0151 141.041 18.9746 141.295 19.9146C141.571 20.8545 141.845 21.7161 142.12 22.4994C142.415 21.5986 142.708 20.6782 142.984 19.6992C143.258 18.7592 143.533 17.7997 143.788 16.8402C144.043 15.8807 144.279 14.9408 144.514 14.0401C144.75 13.1393 144.946 12.2777 145.123 11.4749H147.85C148.027 12.2777 148.223 13.1197 148.439 14.0401C148.655 14.9408 148.89 15.8807 149.126 16.8402C149.381 17.7997 149.636 18.7592 149.911 19.6992C150.205 20.6587 150.48 21.579 150.774 22.4994C151.029 21.7161 151.304 20.8545 151.579 19.9146C151.854 18.9746 152.128 18.0151 152.383 17.036C152.658 16.057 152.894 15.0779 153.149 14.1379C153.385 13.1981 153.581 12.3169 153.777 11.4944H157.447C157.034 13.0022 156.603 14.4708 156.191 15.9199C155.759 17.3689 155.327 18.7397 154.895 20.0516C154.463 21.3636 154.032 22.5777 153.6 23.733C153.168 24.8883 152.756 25.9066 152.345 26.8073H149.46C148.949 25.3583 148.439 23.8309 147.89 22.1861C147.34 20.5607 146.849 18.8963 146.399 17.1731Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M163.963 24.2617C164.904 24.2617 165.591 24.1442 166.003 23.9288C166.435 23.6939 166.651 23.3218 166.651 22.7735C166.651 22.2644 166.435 21.8532 165.964 21.5203C165.493 21.1873 164.747 20.8153 163.687 20.4237C163.04 20.1887 162.451 19.9341 161.921 19.6795C161.372 19.4054 160.921 19.1117 160.528 18.7592C160.135 18.4068 159.841 17.9956 159.606 17.4864C159.37 16.9968 159.272 16.3899 159.272 15.6458C159.272 14.2358 159.782 13.1392 160.822 12.3168C161.843 11.514 163.256 11.1028 165.041 11.1028C165.944 11.1028 166.808 11.1811 167.632 11.3574C168.456 11.5336 169.065 11.6902 169.477 11.8469L168.829 14.7058C168.437 14.5296 167.946 14.3729 167.338 14.2163C166.729 14.0792 166.023 14.0009 165.238 14.0009C164.512 14.0009 163.923 14.1184 163.472 14.3729C163.02 14.6079 162.805 14.9799 162.805 15.5087C162.805 15.7632 162.843 15.9787 162.942 16.1744C163.02 16.3702 163.177 16.5465 163.393 16.7227C163.609 16.899 163.883 17.0556 164.237 17.2123C164.59 17.3885 165.022 17.5451 165.532 17.7214C166.376 18.0347 167.083 18.348 167.671 18.6417C168.26 18.9355 168.751 19.288 169.124 19.66C169.496 20.032 169.791 20.4824 169.968 20.972C170.144 21.4615 170.223 22.0294 170.223 22.7147C170.223 24.1834 169.673 25.2995 168.593 26.0437C167.494 26.8074 165.964 27.1794 163.942 27.1794C162.588 27.1794 161.51 27.0619 160.685 26.8465C159.861 26.6311 159.291 26.4549 158.958 26.3178L159.567 23.361C160.097 23.5764 160.724 23.7917 161.47 23.9876C162.177 24.1638 163.02 24.2617 163.963 24.2617Z",fill:"currentColor"}))),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_cartflows_logo"},(0,e.createElement)("rect",{width:170.105,height:32,fill:"white",transform:"translate(0.435547)"})))),b=(0,e.createElement)("svg",{width:99,height:36,viewBox:"0 0 99 36",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_starter_templates_logo)"},(0,e.createElement)("g",{opacity:.5},(0,e.createElement)("path",{d:"M24.5032 2.20013L22.0791 2.95518L24.2648 5.29978L27.9208 6.37276L26.9273 3.39231C26.6094 2.43857 25.5761 1.84247 24.5032 2.20013Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M2.52714 11.4197L3.36166 13.8438L5.70626 11.6582L6.77923 7.9624L3.7988 8.95587C2.76557 9.31352 2.16948 10.4262 2.52714 11.4197Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M8.3291 29.2627L9.32257 32.2431C9.60075 33.3161 10.7532 33.8327 11.7864 33.5546L14.3297 32.72L12.2235 30.4151L8.3291 29.2627Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M33.7224 24.1759L32.8879 21.6326L30.6624 23.7388L29.4702 27.6332L32.4508 26.6398C33.484 26.3616 34.1595 25.2489 33.7224 24.1759Z",fill:"currentColor"})),(0,e.createElement)("g",{opacity:.8},(0,e.createElement)("path",{d:"M20.1315 0.92843C19.3765 0.0939033 18.1843 0.0541644 17.3498 0.809211L15.2437 2.75643L19.2573 3.94861L24.2247 5.37925L22.0391 3.03461L20.1315 0.92843Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M1.33492 15.7114C0.500398 16.4664 0.460658 17.6586 1.21571 18.4931L3.04371 20.4801L4.15641 16.5856L5.62676 11.658L3.28214 13.8436L1.33492 15.7114Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M35.0341 17.0229L33.2061 15.0757L32.0139 19.0099L30.623 23.6991L32.8484 21.5929L34.8354 19.7252C35.7096 19.0894 35.7891 17.8574 35.0341 17.0229Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M12.144 30.3752L14.2502 32.6802L16.0783 34.6274C16.8333 35.4619 18.0652 35.5016 18.8599 34.7466L20.8469 32.9186L17.0319 31.8059L12.144 30.3752Z",fill:"currentColor"})),(0,e.createElement)("path",{d:"M33.1264 7.96245L27.8808 6.45234L24.2248 5.37941L19.3368 3.90903L15.3232 2.71686L10.8724 1.4452C9.75963 1.16703 8.5675 1.72338 8.28932 2.87581L6.73948 8.08164L5.70626 11.7774L4.23589 16.7051L3.12319 20.5995L1.73231 25.2491C1.45413 26.3617 2.01049 27.5539 3.16292 27.8321L8.40852 29.3422L12.2235 30.4549L17.0319 31.8855L20.8469 32.9982L25.4169 34.3493C26.5296 34.6275 27.7218 34.0712 28 32.9188L29.5101 27.7526L30.7023 23.8582L32.1328 19.1689L33.325 15.2348L34.6762 10.7045C34.8351 9.43276 34.239 8.24063 33.1264 7.96245ZM24.3837 9.47255V13.6054H18.8997H11.5479C11.5876 13.3272 11.7068 12.9696 11.8261 12.6517C12.0645 12.0556 12.4222 11.4595 12.9388 11.0224C13.4157 10.6249 14.0118 10.1481 14.568 9.90966C15.1642 9.63148 15.8795 9.51228 16.5551 9.51228H24.3837V9.47255ZM12.2235 26.322V22.1891H19.8137C19.9329 22.1891 20.0919 22.1891 20.2111 22.1494C20.3303 22.1097 20.4495 22.0301 20.5687 21.9109C20.6879 21.7917 20.7277 21.6725 20.8072 21.5533C20.8469 21.434 20.8469 21.3148 20.8469 21.1559C20.8469 21.0367 20.8469 20.8777 20.8072 20.7585C20.7674 20.6393 20.6879 20.52 20.5687 20.4008C20.4495 20.2817 20.3303 20.2419 20.2111 20.1624C20.0919 20.1227 19.9726 20.1227 19.8137 20.1227H16.6345C15.9987 20.1227 15.2039 20.0035 14.6476 19.7253C14.0515 19.4868 13.4554 19.1292 13.0183 18.6126C12.6208 18.2152 12.144 17.5396 11.9056 16.9833C11.7466 16.6256 11.6672 16.3474 11.6274 15.9898H16.6742H18.9792H19.8534C20.4893 15.9898 21.2841 16.1487 21.8404 16.3872C22.4365 16.6256 23.0326 16.9833 23.4697 17.4998C23.8671 17.8973 24.3439 18.5728 24.5824 19.1292C24.8606 19.7253 24.9798 20.4406 24.9798 21.1957C24.9798 21.8315 24.8208 22.6262 24.5824 23.1826C24.3439 23.7787 23.9863 24.3747 23.4697 24.8119C23.0723 25.2093 22.3967 25.6862 21.8404 25.9246C21.2045 26.2027 20.4893 26.322 19.7739 26.322H12.2235Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M43.4984 15.1948C41.9883 15.1948 40.7962 14.7576 39.9219 13.8436L40.9153 12.4528C41.6307 13.2078 42.5447 13.6053 43.6177 13.6053C44.0945 13.6053 44.4522 13.5258 44.6906 13.3271C44.9687 13.1284 45.088 12.9296 45.088 12.6515C45.088 12.4131 44.9687 12.2143 44.7304 12.0952C44.4919 11.9362 44.174 11.817 43.8164 11.7772C43.4587 11.6978 43.0613 11.6183 42.6242 11.4991C42.1871 11.3798 41.7897 11.2209 41.432 11.062C41.0743 10.903 40.7564 10.6645 40.518 10.3069C40.2795 9.94923 40.1603 9.55179 40.1603 9.03522C40.1603 8.31993 40.4385 7.68411 41.0346 7.20721C41.6307 6.69057 42.3857 6.45215 43.3792 6.45215C44.7304 6.45215 45.843 6.84956 46.6776 7.64431L45.6841 8.95576C45.0085 8.31993 44.174 8.04175 43.2203 8.04175C42.8229 8.04175 42.5447 8.12121 42.346 8.28014C42.1473 8.43913 42.0281 8.63778 42.0281 8.91596C42.0281 9.11468 42.1473 9.27361 42.3857 9.4326C42.6242 9.59158 42.9421 9.67105 43.2997 9.75051C43.6574 9.82997 44.0547 9.90943 44.4919 10.0684C44.9291 10.1876 45.2867 10.3466 45.6841 10.5056C46.0815 10.6645 46.3597 10.9427 46.5981 11.3003C46.8366 11.658 46.9558 12.0952 46.9558 12.572C46.9558 13.4065 46.6776 14.0424 46.0815 14.559C45.4456 14.9564 44.6112 15.1948 43.4984 15.1948Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M49.9762 15.1949C49.4198 15.1949 48.9828 15.0359 48.6647 14.7577C48.3467 14.4795 48.2275 14.0425 48.2275 13.5259V10.3069H47.1943V8.8763H48.2275V7.20728H49.8568V8.8763H51.0889V10.3069H49.8568V13.0887C49.8568 13.2874 49.8967 13.4463 50.0156 13.5656C50.1349 13.6848 50.2543 13.7643 50.4131 13.7643C50.6518 13.7643 50.8502 13.6848 50.9695 13.5656L51.3271 14.7975C51.0489 15.0757 50.572 15.1949 49.9762 15.1949Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M57.5262 15.0756H55.897V14.4398C55.4595 14.9563 54.7843 15.2345 53.9498 15.2345C53.3934 15.2345 52.9164 15.0358 52.4795 14.6782C52.042 14.3206 51.8037 13.804 51.8037 13.1681C51.8037 12.4926 52.0025 12.0157 52.4395 11.658C52.8765 11.3401 53.3535 11.1414 53.9498 11.1414C54.8238 11.1414 55.4595 11.3798 55.897 11.8964V11.0619C55.897 10.744 55.7777 10.5056 55.5395 10.3069C55.3007 10.1082 54.9831 10.0287 54.5456 10.0287C53.8704 10.0287 53.274 10.2671 52.7576 10.744L52.1613 9.67109C52.8765 9.0352 53.791 8.71729 54.8637 8.71729C55.6583 8.71729 56.2941 8.916 56.811 9.27365C57.3274 9.63129 57.5661 10.2274 57.5661 11.0619V15.0756H57.5262ZM54.6255 14.1218C55.2213 14.1218 55.6583 13.9629 55.9365 13.6052V12.8502C55.6583 12.4926 55.2213 12.3336 54.6255 12.3336C54.3074 12.3336 54.0292 12.413 53.791 12.572C53.5522 12.731 53.4728 12.9694 53.4728 13.2476C53.4728 13.5258 53.5922 13.7642 53.791 13.9231C54.0292 14.0424 54.3074 14.1218 54.6255 14.1218Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M60.7854 15.0757H59.1558V8.91607H60.7854V9.75061C61.0236 9.47243 61.3018 9.23398 61.6594 9.03526C62.017 8.83661 62.3751 8.75708 62.7327 8.75708V10.3466C62.6133 10.3069 62.4545 10.3069 62.2952 10.3069C62.017 10.3069 61.7389 10.3864 61.4212 10.5056C61.103 10.6248 60.9043 10.8235 60.7854 11.0223V15.0757Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M65.7926 15.1949C65.2362 15.1949 64.7988 15.0359 64.4811 14.7577C64.1629 14.4795 64.0436 14.0425 64.0436 13.5259V10.3069H63.0107V8.8763H64.0436V7.20728H65.6732V8.8763H66.905V10.3069H65.6732V13.0887C65.6732 13.2874 65.7127 13.4463 65.832 13.5656C65.9514 13.6848 66.0705 13.7643 66.2295 13.7643C66.4678 13.7643 66.6668 13.6848 66.7859 13.5656L67.1433 14.7975C66.8651 15.0757 66.4285 15.1949 65.7926 15.1949Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M65.7926 15.1949C65.2362 15.1949 64.7988 15.0359 64.4811 14.7577C64.1629 14.4795 64.0436 14.0425 64.0436 13.5259V10.3069H63.0107V8.8763H64.0436V7.20728H65.6732V8.8763H66.905V10.3069H65.6732V13.0887C65.6732 13.2874 65.7127 13.4463 65.832 13.5656C65.9514 13.6848 66.0705 13.7643 66.2295 13.7643C66.4678 13.7643 66.6668 13.6848 66.7859 13.5656L67.1433 14.7975C66.8651 15.0757 66.4285 15.1949 65.7926 15.1949Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M70.9587 15.1949C70.005 15.1949 69.2097 14.8769 68.6141 14.3207C68.0178 13.7643 67.6997 12.9297 67.6997 11.976C67.6997 11.062 68.0178 10.307 68.6141 9.67109C69.2097 9.03526 69.9651 8.75708 70.9188 8.75708C71.8325 8.75708 72.5879 9.07499 73.1442 9.71082C73.7006 10.3466 74.018 11.1415 74.018 12.1747V12.5323H69.4487C69.4879 12.9297 69.6869 13.2874 70.005 13.5656C70.3225 13.8438 70.7198 13.9629 71.2362 13.9629C71.5144 13.9629 71.7926 13.9232 72.1107 13.804C72.4288 13.6848 72.6671 13.5258 72.866 13.3668L73.5815 14.4001C72.866 14.9167 72.0315 15.1949 70.9587 15.1949ZM72.3489 11.3799C72.3097 11.0223 72.1905 10.7043 71.9523 10.4262C71.7134 10.148 71.3161 9.989 70.8396 9.989C70.3624 9.989 70.005 10.1083 69.7661 10.3864C69.5279 10.6646 69.3688 10.9825 69.3289 11.3402H72.3489V11.3799Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M76.7205 15.0757H75.0913V8.91607H76.7205V9.75061C76.9587 9.47243 77.2369 9.23398 77.5949 9.03526C77.9523 8.83661 78.3104 8.75708 78.6677 8.75708V10.3466C78.5486 10.3069 78.3896 10.3069 78.2305 10.3069C77.9523 10.3069 77.6741 10.3864 77.356 10.5056C77.0386 10.6248 76.8396 10.8235 76.7205 11.0223V15.0757Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M44.2535 28.0704H42.4255V21.1558H39.9219V19.5662H46.7173V21.1558H44.2535V28.0704Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M49.4989 28.2293C48.5452 28.2293 47.7504 27.9114 47.1542 27.355C46.5184 26.7589 46.2402 25.9642 46.2402 25.0104C46.2402 24.0964 46.5582 23.3413 47.1542 22.7055C47.7504 22.0697 48.5054 21.7915 49.459 21.7915C50.3734 21.7915 51.1281 22.1095 51.6844 22.7453C52.2408 23.3811 52.519 24.1759 52.519 25.2091V25.5667H47.9491C47.9888 25.9642 48.1875 26.3218 48.5054 26.6C48.8231 26.8782 49.2207 26.9974 49.7371 26.9974C50.0153 26.9974 50.2935 26.9576 50.6116 26.8384C50.9297 26.7192 51.168 26.5602 51.3668 26.4013L52.0819 27.4345C51.4062 27.9511 50.5717 28.2293 49.4989 28.2293ZM50.9297 24.4143C50.8898 24.0567 50.7704 23.7388 50.5322 23.4606C50.2935 23.1824 49.8964 23.0235 49.4195 23.0235C48.9425 23.0235 48.5849 23.1427 48.3464 23.4209C48.108 23.699 47.9491 24.017 47.9093 24.3745H50.9297V24.4143Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M62.9308 28.0705H61.3017V24.176C61.3017 23.5402 60.984 23.1825 60.3877 23.1825C60.1095 23.1825 59.8713 23.262 59.6725 23.3812C59.4338 23.5402 59.275 23.6992 59.1161 23.8978V28.0705H57.4865V24.176C57.4865 23.5402 57.1689 23.1825 56.5726 23.1825C56.3343 23.1825 56.0561 23.262 55.8574 23.3812C55.6192 23.5402 55.4598 23.6992 55.301 23.8978V28.0705H53.6719V21.9108H55.301V22.7056C55.4598 22.4672 55.738 22.2685 56.0961 22.0698C56.4932 21.8711 56.8907 21.752 57.2882 21.752C58.1623 21.752 58.7585 22.1096 58.9968 22.8646C59.1956 22.5466 59.4738 22.3083 59.8713 22.0698C60.2683 21.8314 60.6659 21.752 61.1029 21.752C61.6992 21.752 62.1362 21.9109 62.4543 22.2288C62.772 22.5466 62.9308 23.0236 62.9308 23.6196V28.0705Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M68.0576 28.2293C67.3023 28.2293 66.6667 27.9114 66.1503 27.2755V30.4149H64.5205V21.9108H66.1503V22.7055C66.6268 22.0697 67.263 21.7915 68.0576 21.7915C68.8522 21.7915 69.5277 22.0697 70.0442 22.6658C70.5612 23.2619 70.7995 24.017 70.7995 25.0502C70.7995 26.0436 70.5612 26.8384 70.0442 27.4345C69.5277 27.9114 68.8522 28.2293 68.0576 28.2293ZM67.5412 26.7589C68.0177 26.7589 68.3757 26.6 68.6539 26.2423C68.9314 25.9244 69.0905 25.4873 69.0905 24.931C69.0905 24.4143 68.9314 23.9772 68.6539 23.6593C68.3757 23.3413 67.9778 23.1824 67.5412 23.1824C67.263 23.1824 67.0241 23.2619 66.7459 23.3811C66.4677 23.5003 66.2687 23.699 66.1503 23.8977V26.0834C66.2687 26.282 66.5076 26.441 66.7459 26.5602C67.0241 26.7192 67.3023 26.7589 67.5412 26.7589Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M73.5813 28.0704H71.9521V19.5662H73.5813V28.0704Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M80.4956 28.0705H78.8665V27.4347C78.4292 27.9512 77.7537 28.2294 76.9192 28.2294C76.3628 28.2294 75.8857 28.0307 75.4484 27.673C75.0119 27.3154 74.7729 26.7988 74.7729 26.163C74.7729 25.4874 74.9719 25.0105 75.4085 24.6528C75.8464 24.335 76.3229 24.1363 76.9192 24.1363C77.793 24.1363 78.4292 24.3747 78.8665 24.8913V24.0965C78.8665 23.7786 78.7467 23.5402 78.5084 23.3414C78.2702 23.1428 77.9521 23.0633 77.5148 23.0633C76.8393 23.0633 76.2431 23.3018 75.7266 23.7786L75.1303 22.7056C75.8464 22.0698 76.7601 21.752 77.8329 21.752C78.6276 21.752 79.2638 21.9506 79.7802 22.3083C80.2967 22.666 80.5356 23.262 80.5356 24.0965V28.0705H80.4956ZM77.5947 27.1167C78.1903 27.1167 78.6276 26.9577 78.9057 26.6001V25.845C78.6276 25.4874 78.1903 25.3285 77.5947 25.3285C77.2766 25.3285 76.9984 25.4079 76.7601 25.5668C76.5212 25.7258 76.442 25.9643 76.442 26.2425C76.442 26.5206 76.5612 26.759 76.7601 26.918C76.9984 27.0372 77.2373 27.1167 77.5947 27.1167Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M84.1915 28.2293C83.6351 28.2293 83.1979 28.0703 82.8798 27.7921C82.5623 27.514 82.4432 27.0768 82.4432 26.5602V23.3016H81.4097V21.871H82.4432V20.2019H84.0724V21.871H85.3042V23.3016H84.0724V26.0833C84.0724 26.282 84.1123 26.441 84.2314 26.5602C84.3505 26.6794 84.4697 26.7589 84.6287 26.7589C84.867 26.7589 85.066 26.6794 85.1851 26.5602L85.5425 27.7921C85.225 28.0703 84.7878 28.2293 84.1915 28.2293Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M89.3179 28.2293C88.3642 28.2293 87.5696 27.9114 86.9733 27.355C86.3377 26.7589 86.0596 25.9642 86.0596 25.0104C86.0596 24.0964 86.377 23.3413 86.9733 22.7055C87.5696 22.0697 88.3243 21.7915 89.278 21.7915C90.1924 21.7915 90.9471 22.1095 91.5034 22.7453C92.0598 23.3811 92.338 24.1759 92.338 25.2091V25.5667H87.7679C87.8079 25.9642 88.0068 26.3218 88.3243 26.6C88.6424 26.8782 89.0397 26.9974 89.5561 26.9974C89.8343 26.9974 90.1125 26.9576 90.4306 26.8384C90.7487 26.7192 90.987 26.5602 91.1853 26.4013L91.9014 27.4345C91.2252 27.9511 90.3907 28.2293 89.3179 28.2293ZM90.7487 24.4143C90.7088 24.0567 90.5897 23.7388 90.3508 23.4606C90.1125 23.1824 89.7152 23.0235 89.238 23.0235C88.7615 23.0235 88.4035 23.1427 88.1652 23.4209C87.927 23.699 87.7679 24.017 87.7287 24.3745H90.7487V24.4143Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M95.7159 28.2293C95.1995 28.2293 94.6824 28.1498 94.1659 27.9908C93.6888 27.8319 93.2522 27.5935 92.9341 27.2755L93.6495 26.1231C93.8878 26.3615 94.2059 26.5205 94.6032 26.7192C95.0005 26.8782 95.3978 26.9576 95.7558 26.9576C96.1132 26.9576 96.3515 26.9179 96.5105 26.7987C96.6696 26.6795 96.7887 26.5205 96.7887 26.3218C96.7887 26.1628 96.7088 26.0436 96.5105 25.9642C96.3122 25.8847 96.1132 25.8052 95.835 25.7654C95.5569 25.7257 95.2787 25.6462 94.9606 25.5667C94.6431 25.4873 94.3649 25.3681 94.0867 25.2488C93.8086 25.1296 93.6096 24.9309 93.4106 24.6925C93.2123 24.4143 93.1324 24.0964 93.1324 23.7388C93.1324 23.1824 93.3713 22.7453 93.8086 22.3479C94.2451 21.9902 94.8814 21.7915 95.676 21.7915C96.6296 21.7915 97.4642 22.0697 98.1796 22.626L97.5434 23.7388C97.3451 23.5401 97.1068 23.3811 96.7488 23.2221C96.4313 23.103 96.0733 23.0235 95.7159 23.0235C95.4377 23.0235 95.1995 23.0632 95.0005 23.1824C94.8015 23.3016 94.7223 23.4606 94.7223 23.6195C94.7223 23.7388 94.8015 23.858 95.0005 23.9772C95.1595 24.0567 95.3978 24.1362 95.676 24.1759C95.9542 24.2156 96.2323 24.2951 96.5505 24.3745C96.8686 24.4541 97.1467 24.5733 97.4249 24.6925C97.7031 24.8117 97.9414 25.0104 98.0998 25.2885C98.2595 25.5667 98.3779 25.8847 98.3779 26.282C98.3779 26.8782 98.1397 27.3153 97.6632 27.7127C97.186 28.0306 96.5105 28.2293 95.7159 28.2293Z",fill:"currentColor"})),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_starter_templates_logo"},(0,e.createElement)("rect",{width:98.1818,height:36,fill:"white",transform:"translate(0.540527)"})))),x=(0,e.createElement)("svg",{width:197,height:32,viewBox:"0 0 197 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("g",{clipPath:"url(#clip_spec_ai_presto_player_logo)"},(0,e.createElement)("mask",{id:"mask_spec_ai_presto_player_logo",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:197,height:32},(0,e.createElement)("path",{d:"M196.266 0H0.909668V31.3308H196.266V0Z",fill:"white"})),(0,e.createElement)("g",{mask:"url(#mask_spec_ai_presto_player_logo)"},(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M55.0934 18.8195C55.0934 21.6678 52.7897 23.689 49.4723 23.689C46.9842 23.689 44.8649 22.5866 43.7592 20.749L46.4315 18.452C47.1686 19.6465 48.4588 20.2896 49.6567 20.2896C50.8545 20.2896 51.5919 19.7384 51.5919 19.0033C51.5919 18.2682 50.9468 17.717 49.3803 17.1657L48.2743 16.7981C45.6941 15.9713 44.312 14.4093 44.312 12.2961C44.312 9.17221 46.6156 7.42651 49.7489 7.42651C51.684 7.42651 53.3426 8.06968 54.8169 9.63166L52.5132 12.0205C51.7761 11.1936 50.7624 10.7341 49.7489 10.7341C48.7352 10.7341 47.8137 11.1017 47.8137 11.9286C47.8137 12.7555 48.5508 13.2149 50.2095 13.7661L51.3154 14.1337C53.6191 14.9606 55.0934 16.4306 55.0934 18.8195ZM6.25433 7.61025C9.38743 7.61025 11.7833 9.99915 11.7833 13.0312C11.7833 16.0632 9.38743 18.452 6.25433 18.3601H4.41135V23.3217H0.909668V7.61025H6.25433ZM6.16217 15.0525C7.45228 15.0525 8.37376 14.2255 8.37376 13.0312C8.37376 11.9286 7.45228 11.0098 6.16217 10.9179H4.41135V15.0525H6.16217ZM18.6945 23.4136H15.1928V7.70213H21.3668C24.3156 7.70213 26.2508 9.90728 26.2508 12.4798C26.2508 14.5012 25.2372 15.7875 23.2098 16.5225L28.7387 23.4136H24.4998L19.2474 16.89H18.6945V23.4136ZM18.6945 10.9179V13.858H20.9982C22.0118 13.858 22.749 13.3068 22.749 12.388C22.749 11.4692 22.0118 10.9179 20.9982 10.9179H18.6945ZM30.9503 23.4136H40.9025V20.014H34.452V17.1656H39.6124V13.7661H34.452V10.9179H40.9025V7.70213H30.9503V23.4136ZM61.2674 23.4136H64.8612V11.0098H68.9159V7.70213H57.2129V11.1016H61.2674V23.4136ZM86.8848 15.6037C86.8848 20.0139 83.2912 23.689 78.7758 23.689C74.2605 23.689 70.6667 20.0139 70.6667 15.6037C70.6667 11.1935 74.2605 7.51837 78.7758 7.51837C83.1991 7.51837 86.8848 11.1016 86.8848 15.6037ZM74.1684 15.6037C74.1684 18.0845 76.1957 20.2896 78.7758 20.2896C81.356 20.2896 83.3833 18.0845 83.3833 15.6037C83.3833 13.1229 81.356 10.9179 78.7758 10.9179C76.1957 10.9179 74.1684 13.1229 74.1684 15.6037Z",fill:"currentColor"}),(0,e.createElement)("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M148.072 21.644H146.137V5.10571H148.072V21.644ZM134.066 26.3299H132.13V10.5266H134.066V12.2723C134.802 11.1697 136.277 10.3428 137.936 10.3428C140.977 10.3428 143.372 13.0073 143.372 16.1312C143.372 19.347 140.977 21.9196 137.936 21.9196C136.277 21.9196 134.802 21.0927 134.066 19.9901V26.3299ZM137.659 20.1738C139.871 20.1738 141.437 18.3363 141.437 16.1312C141.437 13.9261 139.871 12.1804 137.659 12.0885C135.447 12.0885 133.881 13.9261 133.881 16.1312C133.881 18.4281 135.447 20.1738 137.659 20.1738ZM150.744 16.1312C150.744 19.2551 153.048 21.9196 156.181 21.9196C157.84 21.9196 159.314 21.0927 160.051 19.9901V21.7359H161.986V10.7103H160.051V12.456C159.314 11.3535 157.84 10.5266 156.181 10.5266C153.14 10.4347 150.744 13.0073 150.744 16.1312ZM160.236 16.1312C160.236 18.3363 158.669 20.1738 156.458 20.1738C154.246 20.1738 152.679 18.4281 152.679 16.1312C152.679 13.9261 154.246 12.0885 156.458 12.0885C158.761 12.1804 160.236 13.9261 160.236 16.1312ZM175.809 10.6185L168.53 26.3299H166.502L168.898 21.0927L164.014 10.6185H166.134L169.911 18.9795L173.69 10.6185H175.809ZM176.638 16.1312C176.638 19.347 178.942 21.9196 182.352 21.9196C184.655 21.9196 186.314 20.9089 187.328 19.2551L185.853 18.2445C185.208 19.4388 184.103 20.1739 182.352 20.1739C180.14 20.1739 178.573 18.612 178.482 16.5906H187.604V16.0393C187.604 12.456 185.208 10.5266 182.352 10.5266C179.034 10.4347 176.638 12.9155 176.638 16.1312ZM182.352 12.0885C184.01 12.0885 185.484 13.1911 185.762 15.0287H178.758C179.034 13.1911 180.693 12.0885 182.352 12.0885ZM192.304 21.644H190.369V10.7103H192.304V12.8235C192.764 11.3535 194.147 10.5266 195.436 10.5266C195.714 10.5266 195.99 10.5266 196.266 10.6185V12.5479C195.898 12.3641 195.621 12.3641 195.253 12.3641C193.87 12.3641 192.304 13.5586 192.304 16.1312V21.644Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 5.10571L122.6 10.4436L113.741 15.5493V5.10571Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M95.5576 5.10571L104.65 10.4436L95.5576 15.5493V5.10571Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 15.5495L122.6 10.4436V20.8872L113.741 15.5495Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 5.10571V15.5493L104.65 10.4436L113.741 5.10571Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 5.10576L104.65 10.4436V0L113.741 5.10576Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M104.65 10.4436V20.8872L95.5576 15.5494L104.65 10.4436Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M104.65 0V10.4436L95.5576 5.10576L104.65 0Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M104.65 20.8872V31.3308L95.5576 25.993L104.65 20.8872Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 15.5493L122.6 20.8872L113.741 25.9929V15.5493Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M95.5576 15.5493L104.65 20.8872L95.5576 25.9929V15.5493Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M113.741 15.5493V25.9929L104.65 20.8872L113.741 15.5493Z",fill:"currentColor"}))),(0,e.createElement)("defs",null,(0,e.createElement)("clipPath",{id:"clip_spec_ai_presto_player_logo"},(0,e.createElement)("rect",{width:196.211,height:32,fill:"white",transform:"translate(0.508301)"})))),L=(0,e.createElement)("svg",{width:326,height:43,viewBox:"0 0 326 43",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("path",{d:"M0 8.46676C0 5.44802 2.44802 3 5.46676 3H38.2673C41.2872 3 43.7341 5.44802 43.7341 8.46676V30.3338C43.7341 33.3537 41.2872 35.8006 38.2673 35.8006H11.0658L3.51075 41.5494C2.07081 42.645 0 41.6183 0 39.8088V22.4671V22.4606V8.46676ZM12.8863 17.2092C12.356 16.1246 11.0461 15.6741 9.96153 16.2044C8.87584 16.7347 8.42647 18.0445 8.95674 19.1291C11.2878 23.8994 16.1904 27.1926 21.867 27.1926C27.5437 27.1926 32.4463 23.8994 34.7774 19.1291C35.3076 18.0434 34.8583 16.7347 33.7726 16.2044C32.688 15.6741 31.3781 16.1246 30.8478 17.2092C29.222 20.5352 25.8097 22.8192 21.867 22.8192C17.9244 22.8192 14.5121 20.5363 12.8863 17.2092Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M54.6719 29.3347L56.6477 26.5989C58.2689 28.4734 61.3594 30.0946 64.7031 30.0946C68.4522 30.0946 70.4787 28.4228 70.4787 26.0416C70.4787 23.3565 67.4896 22.4952 64.1965 21.6846C60.0421 20.722 55.3305 19.6074 55.3305 14.5412C55.3305 10.7414 58.6236 7.49902 64.4498 7.49902C68.6041 7.49902 71.5426 9.06956 73.5184 11.0454L71.7452 13.6799C70.276 11.9067 67.5909 10.5895 64.4498 10.5895C61.106 10.5895 59.0289 12.1093 59.0289 14.2878C59.0289 16.669 61.8153 17.4289 65.0071 18.1889C69.2628 19.1515 74.177 20.3674 74.177 25.7883C74.177 29.892 70.884 33.1851 64.5511 33.1851C60.5488 33.1851 57.1543 31.9692 54.6719 29.3347ZM94.5862 32.5771V29.132C92.7117 31.2599 89.52 33.1851 85.8722 33.1851C80.7553 33.1851 78.0702 30.7026 78.0702 25.383V8.10697H81.8699V24.2178C81.8699 28.5241 84.0484 29.7907 87.3415 29.7907C90.3306 29.7907 93.1677 28.0681 94.5862 26.0923V8.10697H98.386V32.5771H94.5862ZM103.694 32.5771V8.10697H107.494V12.0587C109.47 9.47487 112.307 7.60034 115.651 7.60034V11.5014C115.195 11.4001 114.739 11.3494 114.131 11.3494C111.801 11.3494 108.609 13.2746 107.494 15.2504V32.5771H103.694ZM116.719 20.3167C116.719 13.2239 121.785 7.49902 128.777 7.49902C136.173 7.49902 140.53 13.2746 140.53 20.6207V21.5833H120.721C121.025 26.1936 124.268 30.044 129.536 30.044C132.323 30.044 135.16 28.9294 137.085 26.9535L138.909 29.436C136.477 31.8678 133.184 33.1851 129.182 33.1851C121.937 33.1851 116.719 27.9668 116.719 20.3167ZM128.726 10.6401C123.508 10.6401 120.924 15.0478 120.721 18.7968H136.781C136.731 15.1491 134.299 10.6401 128.726 10.6401Z",fill:"currentColor"}),(0,e.createElement)("path",{d:"M150.936 32.9997H145.867V9.1905H162.716V13.6525H150.936V18.6856H162.466V23.1476H150.936V32.9997ZM183.108 32.9997H166.26V9.1905H183.108V13.6525H171.329V18.6856H182.859V23.1476H171.329V28.5377H183.108V32.9997ZM203.919 32.9997H187.071V9.1905H203.919V13.6525H192.14V18.6856H203.67V23.1476H192.14V28.5377H203.919V32.9997ZM217.27 32.9997H207.882V9.1905H217.27C221.006 9.1905 224.04 10.2852 226.372 12.4745C228.728 14.6639 229.906 17.5434 229.906 21.113C229.906 24.6826 228.74 27.562 226.408 29.7514C224.076 31.9169 221.03 32.9997 217.27 32.9997ZM217.27 28.5377C219.554 28.5377 221.363 27.8238 222.696 26.396C224.052 24.9681 224.73 23.2071 224.73 21.113C224.73 18.9236 224.076 17.1388 222.767 15.7586C221.458 14.3545 219.626 13.6525 217.27 13.6525H212.951V28.5377H217.27ZM246.425 32.9997H233.503V9.1905H246.033C248.198 9.1905 249.876 9.78544 251.066 10.9753C252.28 12.1414 252.886 13.5692 252.886 15.2588C252.886 16.7105 252.494 17.9241 251.708 18.8998C250.923 19.8755 249.947 20.4823 248.781 20.7203C250.066 20.9107 251.149 21.5651 252.03 22.6836C252.91 23.8021 253.35 25.099 253.35 26.5744C253.35 28.4306 252.744 29.9656 251.53 31.1792C250.316 32.3929 248.615 32.9997 246.425 32.9997ZM244.926 18.7213C245.783 18.7213 246.461 18.4834 246.961 18.0074C247.461 17.5315 247.71 16.9127 247.71 16.1512C247.71 15.3897 247.449 14.771 246.925 14.295C246.425 13.7953 245.759 13.5454 244.926 13.5454H238.572V18.7213H244.926ZM245.105 28.6091C246.057 28.6091 246.806 28.3711 247.353 27.8952C247.901 27.3954 248.175 26.7172 248.175 25.8605C248.175 25.0752 247.901 24.4208 247.353 23.8972C246.806 23.3499 246.057 23.0762 245.105 23.0762H238.572V28.6091H245.105ZM279.376 32.9997H273.593L272.13 28.9661H261.921L260.421 32.9997H254.639L263.848 9.1905H270.202L279.376 32.9997ZM270.737 24.5041L267.025 14.2593L263.313 24.5041H270.737ZM291.884 33.4281C288.267 33.4281 285.245 32.2858 282.817 30.0012C280.414 27.6929 279.212 24.7301 279.212 21.113C279.212 17.4958 280.414 14.5449 282.817 12.2604C285.245 9.95202 288.267 8.79785 291.884 8.79785C296.334 8.79785 299.654 10.7373 301.843 14.6163L297.488 16.7581C296.965 15.7586 296.191 14.9376 295.168 14.295C294.169 13.6287 293.074 13.2956 291.884 13.2956C289.719 13.2956 287.934 14.0333 286.53 15.5087C285.126 16.9841 284.424 18.8522 284.424 21.113C284.424 23.3737 285.126 25.2418 286.53 26.7172C287.934 28.1927 289.719 28.9304 291.884 28.9304C293.074 28.9304 294.169 28.6091 295.168 27.9666C296.191 27.3241 296.965 26.4911 297.488 25.4679L301.843 27.5739C299.583 31.4767 296.263 33.4281 291.884 33.4281ZM325.243 32.9997H318.996L311.785 23.4689L309.929 25.682V32.9997H304.86V9.1905H309.929V19.8279L318.354 9.1905H324.6L315.141 20.3633L325.243 32.9997Z",fill:"currentColor"}));var _=()=>{const n=e=>{e.preventDefault(),window.location.assign(zip_ai_react.auth_middleware)},r=()=>(0,e.createElement)("div",{className:"flex flex-col items-center gap-4"},(0,e.createElement)("button",{className:"flex items-center justify-center gap-4 px-28 py-4 rounded text-base text-white bg-spec hover:bg-spec-hover focus-visible:bg-spec-hover transition-colors",onClick:n},(0,t.__)("Get Started Now","ultimate-addons-for-gutenberg"),(0,e.createElement)("span",null,"→")),(0,e.createElement)("div",{className:"flex items-center justify-center gap-2 text-slate-500"},(0,e.createElement)("a",{href:zip_ai_react?.admin_url,className:"text-sm underline hover:text-slate-700 transition-colors"},(0,t.__)("Go back to the dashboard","ultimate-addons-for-gutenberg")))),o=t=>(0,e.createElement)("div",{className:"flex gap-3"},(0,e.createElement)("div",{className:"w-7 text-slate-900"},t?.icon({width:28,height:28})),(0,e.createElement)("div",{className:"flex flex-col gap-2"},(0,e.createElement)("h2",{className:"text-base leading-7 font-semibold text-slate-900"},t?.title),(0,e.createElement)("p",{className:"text-sm font-normal text-slate-500"},t?.description)));return(0,e.createElement)("main",{className:"flex items-center justify-center w-full min-h-screen p-16 bg-slate-50"},(0,e.createElement)("article",{className:"flex flex-col items-center justify-center w-full max-w-3xl p-0 rounded bg-white shadow-overlay"},(0,e.createElement)("section",{className:"flex flex-col items-center gap-8 w-full px-12 py-10"},p({width:56,height:56,color:"#ff580e"}),(0,e.createElement)("section",{className:"flex flex-col items-center gap-6"},(0,e.createElement)("h1",{className:"text-2xl leading-7 font-bold text-center text-slate-900"},(0,t.__)("Welcome to the Zip AI Setup Wizard!","ultimate-addons-for-gutenberg")),(0,e.createElement)("p",{className:"text-sm font-normal text-center text-slate-500"},(0,t.__)("Zip AI is your WordPress assistant, accessible right within your backend. Create persuasive content, generate custom code, and get answers to your WordPress queries in seconds. The possibilities are endless!","ultimate-addons-for-gutenberg")),r())),(0,e.createElement)("section",{className:"grid grid-cols-2 gap-6 w-full px-12 py-10 bg-violet-50"},o({icon:g,title:(0,t.__)("Craft Compelling Content","ultimate-addons-for-gutenberg"),description:(0,t.__)("With Zip, you can effortlessly create persuasive, engaging copy that resonates with your audience.","ultimate-addons-for-gutenberg")}),o({icon:m,title:(0,t.__)("AI-Powered Block Patterns","ultimate-addons-for-gutenberg"),description:(0,t.__)("Zip can personalize and customize the block patterns and section templates tailored to your website's unique needs.","ultimate-addons-for-gutenberg")}),o({icon:f,title:(0,t.__)("WordPress Wizardry","ultimate-addons-for-gutenberg"),description:(0,t.__)("Got questions? Zip has the answers. Whether it's troubleshooting, or customizing your site, Zip has your back.","ultimate-addons-for-gutenberg")}),o({icon:h,title:(0,t.__)("Personalized Templates","ultimate-addons-for-gutenberg"),description:(0,t.__)("Say goodbye to generic designs and say hello to Zip's personalized page templates, tailored just for you.","ultimate-addons-for-gutenberg")}),o({icon:C,title:(0,t.__)("Generate Custom Code","ultimate-addons-for-gutenberg"),description:(0,t.__)("No more struggling with complex coding issues. Zip can whip up custom code, functions, and CSS tailored to your needs.","ultimate-addons-for-gutenberg")}),o({icon:v,title:(0,t.__)("Custom Pages with AI","ultimate-addons-for-gutenberg"),description:(0,t.sprintf)(/* translators: %s: Percentage Ascii Code */
(0,t.__)("With Zip AI by your side, you can create beautiful, 100%s custom web pages without the need for any design or coding skills.","ultimate-addons-for-gutenberg"),"%")})),(0,e.createElement)("section",{className:"flex flex-col items-center gap-12 w-full px-12 py-10"},(0,e.createElement)("h2",{className:"text-2xl leading-6 font-bold text-center text-slate-900"},(0,t.__)("From the Team Behind Some Iconic WordPress Products","ultimate-addons-for-gutenberg")),(0,e.createElement)("div",{className:"grid grid-cols-3 items-center gap-16 w-full text-slate-700 opacity-50"},(0,e.createElement)("div",{className:"flex justify-end"},E),(0,e.createElement)("div",{className:"flex justify-center"},w),(0,e.createElement)("div",{className:"flex justify-start"},b),(0,e.createElement)("div",{className:"flex justify-end"},x),(0,e.createElement)("div",{className:"flex justify-center"},L),(0,e.createElement)("div",{className:"flex justify-start"},y)),r())))};function H(e,t){return H=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},H(e,t)}function M(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,H(e,t)}var V=window.React,S=o.t(V,2),P=o.n(V),k=o(697),T=o.n(k);function N(){return N=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},N.apply(this,arguments)}function Z(e){return"/"===e.charAt(0)}function O(e,t){for(var n=t,r=n+1,o=e.length;r<o;n+=1,r+=1)e[n]=e[r];e.pop()}var R=function(e,t){void 0===t&&(t="");var n,r=e&&e.split("/")||[],o=t&&t.split("/")||[],a=e&&Z(e),l=t&&Z(t),i=a||l;if(e&&Z(e)?o=r:r.length&&(o.pop(),o=o.concat(r)),!o.length)return"/";if(o.length){var s=o[o.length-1];n="."===s||".."===s||""===s}else n=!1;for(var c=0,u=o.length;u>=0;u--){var d=o[u];"."===d?O(o,u):".."===d?(O(o,u),c++):c&&(O(o,u),c--)}if(!i)for(;c--;c)o.unshift("..");!i||""===o[0]||o[0]&&Z(o[0])||o.unshift("");var f=o.join("/");return n&&"/"!==f.substr(-1)&&(f+="/"),f},A=!0,F="Invariant failed";function j(e,t){if(!e){if(A)throw new Error(F);var n="function"==typeof t?t():t,r=n?"".concat(F,": ").concat(n):F;throw new Error(r)}}function D(e){return"/"===e.charAt(0)?e:"/"+e}function I(e,t){return function(e,t){return 0===e.toLowerCase().indexOf(t.toLowerCase())&&-1!=="/?#".indexOf(e.charAt(t.length))}(e,t)?e.substr(t.length):e}function z(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function $(e){var t=e.pathname,n=e.search,r=e.hash,o=t||"/";return n&&"?"!==n&&(o+="?"===n.charAt(0)?n:"?"+n),r&&"#"!==r&&(o+="#"===r.charAt(0)?r:"#"+r),o}function B(e,t,n,r){var o;"string"==typeof e?(o=function(e){var t=e||"/",n="",r="",o=t.indexOf("#");-1!==o&&(r=t.substr(o),t=t.substr(0,o));var a=t.indexOf("?");return-1!==a&&(n=t.substr(a),t=t.substr(0,a)),{pathname:t,search:"?"===n?"":n,hash:"#"===r?"":r}}(e),o.state=t):(void 0===(o=N({},e)).pathname&&(o.pathname=""),o.search?"?"!==o.search.charAt(0)&&(o.search="?"+o.search):o.search="",o.hash?"#"!==o.hash.charAt(0)&&(o.hash="#"+o.hash):o.hash="",void 0!==t&&void 0===o.state&&(o.state=t));try{o.pathname=decodeURI(o.pathname)}catch(e){throw e instanceof URIError?new URIError('Pathname "'+o.pathname+'" could not be decoded. This is likely caused by an invalid percent-encoding.'):e}return n&&(o.key=n),r?o.pathname?"/"!==o.pathname.charAt(0)&&(o.pathname=R(o.pathname,r.pathname)):o.pathname=r.pathname:o.pathname||(o.pathname="/"),o}function U(){var e=null,t=[];return{setPrompt:function(t){return e=t,function(){e===t&&(e=null)}},confirmTransitionTo:function(t,n,r,o){if(null!=e){var a="function"==typeof e?e(t,n):e;"string"==typeof a?"function"==typeof r?r(a,o):o(!0):o(!1!==a)}else o(!0)},appendListener:function(e){var n=!0;function r(){n&&e.apply(void 0,arguments)}return t.push(r),function(){n=!1,t=t.filter((function(e){return e!==r}))}},notifyListeners:function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];t.forEach((function(e){return e.apply(void 0,n)}))}}}var W=!("undefined"==typeof window||!window.document||!window.document.createElement);function q(e,t){t(window.confirm(e))}var G="popstate",K="hashchange";function Y(){try{return window.history.state||{}}catch(e){return{}}}var J=o(779),X=o.n(J);function Q(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}o(864),o(679);var ee=1073741823,te="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==o.g?o.g:{},ne=P().createContext||function(e,t){var n,r,o,a="__create-react-context-"+((te[o="__global_unique_id__"]=(te[o]||0)+1)+"__"),l=function(e){function n(){for(var t,n,r,o=arguments.length,a=new Array(o),l=0;l<o;l++)a[l]=arguments[l];return(t=e.call.apply(e,[this].concat(a))||this).emitter=(n=t.props.value,r=[],{on:function(e){r.push(e)},off:function(e){r=r.filter((function(t){return t!==e}))},get:function(){return n},set:function(e,t){n=e,r.forEach((function(e){return e(n,t)}))}}),t}M(n,e);var r=n.prototype;return r.getChildContext=function(){var e;return(e={})[a]=this.emitter,e},r.componentWillReceiveProps=function(e){if(this.props.value!==e.value){var n,r=this.props.value,o=e.value;!function(e,t){return e===t?0!==e||1/e==1/t:e!=e&&t!=t}(r,o)?(n="function"==typeof t?t(r,o):ee,0!=(n|=0)&&this.emitter.set(e.value,n)):n=0}},r.render=function(){return this.props.children},n}(P().Component);l.childContextTypes=((n={})[a]=T().object.isRequired,n);var i=function(t){function n(){for(var e,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(e=t.call.apply(t,[this].concat(r))||this).observedBits=void 0,e.state={value:e.getValue()},e.onUpdate=function(t,n){0!=((0|e.observedBits)&n)&&e.setState({value:e.getValue()})},e}M(n,t);var r=n.prototype;return r.componentWillReceiveProps=function(e){var t=e.observedBits;this.observedBits=null==t?ee:t},r.componentDidMount=function(){this.context[a]&&this.context[a].on(this.onUpdate);var e=this.props.observedBits;this.observedBits=null==e?ee:e},r.componentWillUnmount=function(){this.context[a]&&this.context[a].off(this.onUpdate)},r.getValue=function(){return this.context[a]?this.context[a].get():e},r.render=function(){return(e=this.props.children,Array.isArray(e)?e[0]:e)(this.state.value);var e},n}(P().Component);return i.contextTypes=((r={})[a]=T().object,r),{Provider:l,Consumer:i}},re=function(e){var t=ne();return t.displayName=e,t},oe=re("Router-History"),ae=re("Router"),le=function(e){function t(t){var n;return(n=e.call(this,t)||this).state={location:t.history.location},n._isMounted=!1,n._pendingLocation=null,t.staticContext||(n.unlisten=t.history.listen((function(e){n._pendingLocation=e}))),n}M(t,e),t.computeRootMatch=function(e){return{path:"/",url:"/",params:{},isExact:"/"===e}};var n=t.prototype;return n.componentDidMount=function(){var e=this;this._isMounted=!0,this.unlisten&&this.unlisten(),this.props.staticContext||(this.unlisten=this.props.history.listen((function(t){e._isMounted&&e.setState({location:t})}))),this._pendingLocation&&this.setState({location:this._pendingLocation})},n.componentWillUnmount=function(){this.unlisten&&(this.unlisten(),this._isMounted=!1,this._pendingLocation=null)},n.render=function(){return P().createElement(ae.Provider,{value:{history:this.props.history,location:this.state.location,match:t.computeRootMatch(this.state.location.pathname),staticContext:this.props.staticContext}},P().createElement(oe.Provider,{children:this.props.children||null,value:this.props.history}))},t}(P().Component);P().Component,P().Component;var ie={},se=0;function ce(e,t){void 0===t&&(t={}),("string"==typeof t||Array.isArray(t))&&(t={path:t});var n=t,r=n.path,o=n.exact,a=void 0!==o&&o,l=n.strict,i=void 0!==l&&l,s=n.sensitive,c=void 0!==s&&s;return[].concat(r).reduce((function(t,n){if(!n&&""!==n)return null;if(t)return t;var r=function(e,t){var n=""+t.end+t.strict+t.sensitive,r=ie[n]||(ie[n]={});if(r[e])return r[e];var o=[],a={regexp:X()(e,o,t),keys:o};return se<1e4&&(r[e]=a,se++),a}(n,{end:a,strict:i,sensitive:c}),o=r.regexp,l=r.keys,s=o.exec(e);if(!s)return null;var u=s[0],d=s.slice(1),f=e===u;return a&&!f?null:{path:n,url:"/"===n&&""===u?"/":u,isExact:f,params:l.reduce((function(e,t,n){return e[t.name]=d[n],e}),{})}}),null)}var ue=function(e){function t(){return e.apply(this,arguments)||this}return M(t,e),t.prototype.render=function(){var e=this;return P().createElement(ae.Consumer,null,(function(t){t||j(!1);var n=e.props.location||t.location,r=N({},t,{location:n,match:e.props.computedMatch?e.props.computedMatch:e.props.path?ce(n.pathname,e.props):t.match}),o=e.props,a=o.children,l=o.component,i=o.render;return Array.isArray(a)&&function(e){return 0===P().Children.count(e)}(a)&&(a=null),P().createElement(ae.Provider,{value:r},r.match?a?"function"==typeof a?a(r):a:l?P().createElement(l,r):i?i(r):null:"function"==typeof a?a(r):null)}))},t}(P().Component);P().Component;var de=function(e){function t(){return e.apply(this,arguments)||this}return M(t,e),t.prototype.render=function(){var e=this;return P().createElement(ae.Consumer,null,(function(t){t||j(!1);var n,r,o=e.props.location||t.location;return P().Children.forEach(e.props.children,(function(e){if(null==r&&P().isValidElement(e)){n=e;var a=e.props.path||e.props.from;r=a?ce(o.pathname,N({},e.props,{path:a})):t.match}})),r?P().cloneElement(n,{location:o,computedMatch:r}):null}))},t}(P().Component),fe=P().useContext;var pe=function(e){function t(){for(var t,n=arguments.length,r=new Array(n),o=0;o<n;o++)r[o]=arguments[o];return(t=e.call.apply(e,[this].concat(r))||this).history=function(e){void 0===e&&(e={}),W||j(!1);var t,n=window.history,r=(-1===(t=window.navigator.userAgent).indexOf("Android 2.")&&-1===t.indexOf("Android 4.0")||-1===t.indexOf("Mobile Safari")||-1!==t.indexOf("Chrome")||-1!==t.indexOf("Windows Phone"))&&window.history&&"pushState"in window.history,o=!(-1===window.navigator.userAgent.indexOf("Trident")),a=e,l=a.forceRefresh,i=void 0!==l&&l,s=a.getUserConfirmation,c=void 0===s?q:s,u=a.keyLength,d=void 0===u?6:u,f=e.basename?z(D(e.basename)):"";function p(e){var t=e||{},n=t.key,r=t.state,o=window.location,a=o.pathname+o.search+o.hash;return f&&(a=I(a,f)),B(a,r,n)}function m(){return Math.random().toString(36).substr(2,d)}var C=U();function h(e){N(V,e),V.length=n.length,C.notifyListeners(V.location,V.action)}function v(e){(function(e){return void 0===e.state&&-1===navigator.userAgent.indexOf("CriOS")})(e)||E(p(e.state))}function g(){E(p(Y()))}var y=!1;function E(e){y?(y=!1,h()):C.confirmTransitionTo(e,"POP",c,(function(t){t?h({action:"POP",location:e}):function(e){var t=V.location,n=b.indexOf(t.key);-1===n&&(n=0);var r=b.indexOf(e.key);-1===r&&(r=0);var o=n-r;o&&(y=!0,L(o))}(e)}))}var w=p(Y()),b=[w.key];function x(e){return f+$(e)}function L(e){n.go(e)}var _=0;function H(e){1===(_+=e)&&1===e?(window.addEventListener(G,v),o&&window.addEventListener(K,g)):0===_&&(window.removeEventListener(G,v),o&&window.removeEventListener(K,g))}var M=!1,V={length:n.length,action:"POP",location:w,createHref:x,push:function(e,t){var o="PUSH",a=B(e,t,m(),V.location);C.confirmTransitionTo(a,o,c,(function(e){if(e){var t=x(a),l=a.key,s=a.state;if(r)if(n.pushState({key:l,state:s},null,t),i)window.location.href=t;else{var c=b.indexOf(V.location.key),u=b.slice(0,c+1);u.push(a.key),b=u,h({action:o,location:a})}else window.location.href=t}}))},replace:function(e,t){var o="REPLACE",a=B(e,t,m(),V.location);C.confirmTransitionTo(a,o,c,(function(e){if(e){var t=x(a),l=a.key,s=a.state;if(r)if(n.replaceState({key:l,state:s},null,t),i)window.location.replace(t);else{var c=b.indexOf(V.location.key);-1!==c&&(b[c]=a.key),h({action:o,location:a})}else window.location.replace(t)}}))},go:L,goBack:function(){L(-1)},goForward:function(){L(1)},block:function(e){void 0===e&&(e=!1);var t=C.setPrompt(e);return M||(H(1),M=!0),function(){return M&&(M=!1,H(-1)),t()}},listen:function(e){var t=C.appendListener(e);return H(1),function(){H(-1),t()}}};return V}(t.props),t}return M(t,e),t.prototype.render=function(){return P().createElement(le,{history:this.history,children:this.props.children})},t}(P().Component);P().Component;var me=function(e,t){return"function"==typeof e?e(t):e},Ce=function(e,t){return"string"==typeof e?B(e,null,null,t):e},he=function(e){return e},ve=P().forwardRef;void 0===ve&&(ve=he);var ge=ve((function(e,t){var n=e.innerRef,r=e.navigate,o=e.onClick,a=Q(e,["innerRef","navigate","onClick"]),l=a.target,i=N({},a,{onClick:function(e){try{o&&o(e)}catch(t){throw e.preventDefault(),t}e.defaultPrevented||0!==e.button||l&&"_self"!==l||function(e){return!!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)}(e)||(e.preventDefault(),r())}});return i.ref=he!==ve&&t||n,P().createElement("a",i)})),ye=ve((function(e,t){var n=e.component,r=void 0===n?ge:n,o=e.replace,a=e.to,l=e.innerRef,i=Q(e,["component","replace","to","innerRef"]);return P().createElement(ae.Consumer,null,(function(e){e||j(!1);var n=e.history,s=Ce(me(a,e.location),e.location),c=s?n.createHref(s):"",u=N({},i,{href:c,navigate:function(){var t=me(a,e.location),r=$(e.location)===$(Ce(t));(o||r?n.replace:n.push)(t)}});return he!==ve?u.ref=t||l:u.innerRef=l,P().createElement(r,u)}))})),Ee=function(e){return e},we=P().forwardRef;function be(e,t,...n){if(e in t){let r=t[e];return"function"==typeof r?r(...n):r}let r=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,be),r}function xe(...e){return Array.from(new Set(e.flatMap((e=>"string"==typeof e?e.split(" "):[])))).filter(Boolean).join(" ")}void 0===we&&(we=Ee),we((function(e,t){var n=e["aria-current"],r=void 0===n?"page":n,o=e.activeClassName,a=void 0===o?"active":o,l=e.activeStyle,i=e.className,s=e.exact,c=e.isActive,u=e.location,d=e.sensitive,f=e.strict,p=e.style,m=e.to,C=e.innerRef,h=Q(e,["aria-current","activeClassName","activeStyle","className","exact","isActive","location","sensitive","strict","style","to","innerRef"]);return P().createElement(ae.Consumer,null,(function(e){e||j(!1);var n=u||e.location,o=Ce(me(m,n),n),v=o.pathname,g=v&&v.replace(/([.+*?=^!:${}()[\]|/\\])/g,"\\$1"),y=g?ce(n.pathname,{path:g,exact:s,sensitive:d,strict:f}):null,E=!!(c?c(y,n):y),w="function"==typeof i?i(E):i,b="function"==typeof p?p(E):p;E&&(w=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return t.filter((function(e){return e})).join(" ")}(w,a),b=N({},b,l));var x=N({"aria-current":E&&r||null,className:w,style:b,to:o},h);return Ee!==we?x.ref=t||C:x.innerRef=C,P().createElement(ye,x)}))}));var Le,_e,He=((_e=He||{})[_e.None=0]="None",_e[_e.RenderStrategy=1]="RenderStrategy",_e[_e.Static=2]="Static",_e),Me=((Le=Me||{})[Le.Unmount=0]="Unmount",Le[Le.Hidden=1]="Hidden",Le);function Ve({ourProps:e,theirProps:t,slot:n,defaultTag:r,features:o,visible:a=!0,name:l}){let i=Pe(t,e);if(a)return Se(i,n,r,l);let s=null!=o?o:0;if(2&s){let{static:e=!1,...t}=i;if(e)return Se(t,n,r,l)}if(1&s){let{unmount:e=!0,...t}=i;return be(e?0:1,{0(){return null},1(){return Se({...t,hidden:!0,style:{display:"none"}},n,r,l)}})}return Se(i,n,r,l)}function Se(e,t={},n,r){let{as:o=n,children:a,refName:l="ref",...i}=Ne(e,["unmount","static"]),s=void 0!==e.ref?{[l]:e.ref}:{},c="function"==typeof a?a(t):a;"className"in i&&i.className&&"function"==typeof i.className&&(i.className=i.className(t));let u={};if(t){let e=!1,n=[];for(let[r,o]of Object.entries(t))"boolean"==typeof o&&(e=!0),!0===o&&n.push(r);e&&(u["data-headlessui-state"]=n.join(" "))}if(o===V.Fragment&&Object.keys(Te(i)).length>0){if(!(0,V.isValidElement)(c)||Array.isArray(c)&&c.length>1)throw new Error(['Passing props on "Fragment"!',"",`The current component <${r} /> is rendering a "Fragment".`,"However we need to passthrough the following props:",Object.keys(i).map((e=>`  - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>`  - ${e}`)).join("\n")].join("\n"));let e=c.props,t="function"==typeof(null==e?void 0:e.className)?(...t)=>xe(null==e?void 0:e.className(...t),i.className):xe(null==e?void 0:e.className,i.className),n=t?{className:t}:{};return(0,V.cloneElement)(c,Object.assign({},Pe(c.props,Te(Ne(i,["ref"]))),u,s,function(...e){return{ref:e.every((e=>null==e))?void 0:t=>{for(let n of e)null!=n&&("function"==typeof n?n(t):n.current=t)}}}(c.ref,s.ref),n))}return(0,V.createElement)(o,Object.assign({},Ne(i,["ref"]),o!==V.Fragment&&s,o!==V.Fragment&&u),c)}function Pe(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},n={};for(let r of e)for(let e in r)e.startsWith("on")&&"function"==typeof r[e]?(null!=n[e]||(n[e]=[]),n[e].push(r[e])):t[e]=r[e];if(t.disabled||t["aria-disabled"])return Object.assign(t,Object.fromEntries(Object.keys(n).map((e=>[e,void 0]))));for(let e in n)Object.assign(t,{[e](t,...r){let o=n[e];for(let e of o){if((t instanceof Event||(null==t?void 0:t.nativeEvent)instanceof Event)&&t.defaultPrevented)return;e(t,...r)}}});return t}function ke(e){var t;return Object.assign((0,V.forwardRef)(e),{displayName:null!=(t=e.displayName)?t:e.name})}function Te(e){let t=Object.assign({},e);for(let e in t)void 0===t[e]&&delete t[e];return t}function Ne(e,t=[]){let n=Object.assign({},e);for(let e of t)e in n&&delete n[e];return n}var Ze=Object.defineProperty,Oe=(e,t,n)=>(((e,t,n)=>{t in e?Ze(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n})(e,"symbol"!=typeof t?t+"":t,n),n);let Re=new class{constructor(){Oe(this,"current",this.detect()),Oe(this,"handoffState","pending"),Oe(this,"currentId",0)}set(e){this.current!==e&&(this.handoffState="pending",this.currentId=0,this.current=e)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return"server"===this.current}get isClient(){return"client"===this.current}detect(){return"undefined"==typeof window||"undefined"==typeof document?"server":"client"}handoff(){"pending"===this.handoffState&&(this.handoffState="complete")}get isHandoffComplete(){return"complete"===this.handoffState}},Ae=(e,t)=>{Re.isServer?(0,V.useEffect)(e,t):(0,V.useLayoutEffect)(e,t)};function Fe(e){let t=(0,V.useRef)(e);return Ae((()=>{t.current=e}),[e]),t}let je=function(e){let t=Fe(e);return V.useCallback(((...e)=>t.current(...e)),[t])},De=Symbol();function Ie(e,t=!0){return Object.assign(e,{[De]:t})}function ze(...e){let t=(0,V.useRef)(e);(0,V.useEffect)((()=>{t.current=e}),[e]);let n=je((e=>{for(let n of t.current)null!=n&&("function"==typeof n?n(e):n.current=e)}));return e.every((e=>null==e||(null==e?void 0:e[De])))?void 0:n}function $e(){let e=function(){let e="undefined"==typeof document;return"useSyncExternalStore"in S&&S.useSyncExternalStore((()=>()=>{}),(()=>!1),(()=>!e))}(),[t,n]=V.useState(Re.isHandoffComplete);return t&&!1===Re.isHandoffComplete&&n(!1),V.useEffect((()=>{!0!==t&&n(!0)}),[t]),V.useEffect((()=>Re.handoff()),[]),!e&&t}var Be;let Ue=null!=(Be=V.useId)?Be:function(){let e=$e(),[t,n]=V.useState(e?()=>Re.nextId():null);return Ae((()=>{null===t&&n(Re.nextId())}),[t]),null!=t?""+t:void 0};var We=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(We||{});function qe(e){let t=e.parentElement,n=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(n=t),t=t.parentElement;let r=""===(null==t?void 0:t.getAttribute("disabled"));return(!r||!function(e){if(!e)return!1;let t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(n))&&r}let Ge=(0,V.createContext)(null);Ge.displayName="OpenClosedContext";var Ke,Ye=(e=>(e[e.Open=1]="Open",e[e.Closed=2]="Closed",e[e.Closing=4]="Closing",e[e.Opening=8]="Opening",e))(Ye||{});function Je(){return(0,V.useContext)(Ge)}function Xe({value:e,children:t}){return V.createElement(Ge.Provider,{value:e},t)}function Qe(e){var t;if(e.type)return e.type;let n=null!=(t=e.as)?t:"button";return"string"==typeof n&&"button"===n.toLowerCase()?"button":void 0}function et(e,t){let[n,r]=(0,V.useState)((()=>Qe(e)));return Ae((()=>{r(Qe(e))}),[e.type,e.as]),Ae((()=>{n||t.current&&t.current instanceof HTMLButtonElement&&!t.current.hasAttribute("type")&&r("button")}),[n,t]),n}function tt(e){return Re.isServer?null:e instanceof Node?e.ownerDocument:null!=e&&e.hasOwnProperty("current")&&e.current instanceof Node?e.current.ownerDocument:document}let nt=null!=(Ke=V.startTransition)?Ke:function(e){e()};var rt,ot=((rt=ot||{})[rt.Open=0]="Open",rt[rt.Closed=1]="Closed",rt),at=(e=>(e[e.ToggleDisclosure=0]="ToggleDisclosure",e[e.CloseDisclosure=1]="CloseDisclosure",e[e.SetButtonId=2]="SetButtonId",e[e.SetPanelId=3]="SetPanelId",e[e.LinkPanel=4]="LinkPanel",e[e.UnlinkPanel=5]="UnlinkPanel",e))(at||{});let lt={0:e=>({...e,disclosureState:be(e.disclosureState,{0:1,1:0})}),1:e=>1===e.disclosureState?e:{...e,disclosureState:1},4(e){return!0===e.linkedPanel?e:{...e,linkedPanel:!0}},5(e){return!1===e.linkedPanel?e:{...e,linkedPanel:!1}},2(e,t){return e.buttonId===t.buttonId?e:{...e,buttonId:t.buttonId}},3(e,t){return e.panelId===t.panelId?e:{...e,panelId:t.panelId}}},it=(0,V.createContext)(null);function st(e){let t=(0,V.useContext)(it);if(null===t){let t=new Error(`<${e} /> is missing a parent <Disclosure /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,st),t}return t}it.displayName="DisclosureContext";let ct=(0,V.createContext)(null);function ut(e){let t=(0,V.useContext)(ct);if(null===t){let t=new Error(`<${e} /> is missing a parent <Disclosure /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,ut),t}return t}ct.displayName="DisclosureAPIContext";let dt=(0,V.createContext)(null);function ft(e,t){return be(t.type,lt,e,t)}dt.displayName="DisclosurePanelContext";let pt=V.Fragment,mt=He.RenderStrategy|He.Static,Ct=ke((function(e,t){let{defaultOpen:n=!1,...r}=e,o=(0,V.useRef)(null),a=ze(t,Ie((e=>{o.current=e}),void 0===e.as||e.as===V.Fragment)),l=(0,V.useRef)(null),i=(0,V.useRef)(null),s=(0,V.useReducer)(ft,{disclosureState:n?0:1,linkedPanel:!1,buttonRef:i,panelRef:l,buttonId:null,panelId:null}),[{disclosureState:c,buttonId:u},d]=s,f=je((e=>{d({type:1});let t=tt(o);if(!t||!u)return;let n=e?e instanceof HTMLElement?e:e.current instanceof HTMLElement?e.current:t.getElementById(u):t.getElementById(u);null==n||n.focus()})),p=(0,V.useMemo)((()=>({close:f})),[f]),m=(0,V.useMemo)((()=>({open:0===c,close:f})),[c,f]),C={ref:a};return V.createElement(it.Provider,{value:s},V.createElement(ct.Provider,{value:p},V.createElement(Xe,{value:be(c,{0:Ye.Open,1:Ye.Closed})},Ve({ourProps:C,theirProps:r,slot:m,defaultTag:pt,name:"Disclosure"}))))})),ht=ke((function(e,t){let n=Ue(),{id:r=`headlessui-disclosure-button-${n}`,...o}=e,[a,l]=st("Disclosure.Button"),i=(0,V.useContext)(dt),s=null!==i&&i===a.panelId,c=(0,V.useRef)(null),u=ze(c,t,s?null:a.buttonRef);(0,V.useEffect)((()=>{if(!s)return l({type:2,buttonId:r}),()=>{l({type:2,buttonId:null})}}),[r,l,s]);let d=je((e=>{var t;if(s){if(1===a.disclosureState)return;switch(e.key){case We.Space:case We.Enter:e.preventDefault(),e.stopPropagation(),l({type:0}),null==(t=a.buttonRef.current)||t.focus()}}else switch(e.key){case We.Space:case We.Enter:e.preventDefault(),e.stopPropagation(),l({type:0})}})),f=je((e=>{e.key===We.Space&&e.preventDefault()})),p=je((t=>{var n;qe(t.currentTarget)||e.disabled||(s?(l({type:0}),null==(n=a.buttonRef.current)||n.focus()):l({type:0}))})),m=(0,V.useMemo)((()=>({open:0===a.disclosureState})),[a]),C=et(e,c);return Ve({ourProps:s?{ref:u,type:C,onKeyDown:d,onClick:p}:{ref:u,id:r,type:C,"aria-expanded":0===a.disclosureState,"aria-controls":a.linkedPanel?a.panelId:void 0,onKeyDown:d,onKeyUp:f,onClick:p},theirProps:o,slot:m,defaultTag:"button",name:"Disclosure.Button"})})),vt=ke((function(e,t){let n=Ue(),{id:r=`headlessui-disclosure-panel-${n}`,...o}=e,[a,l]=st("Disclosure.Panel"),{close:i}=ut("Disclosure.Panel"),s=ze(t,a.panelRef,(e=>{nt((()=>l({type:e?4:5})))}));(0,V.useEffect)((()=>(l({type:3,panelId:r}),()=>{l({type:3,panelId:null})})),[r,l]);let c=Je(),u=null!==c?(c&Ye.Open)===Ye.Open:0===a.disclosureState,d=(0,V.useMemo)((()=>({open:0===a.disclosureState,close:i})),[a,i]),f={ref:s,id:r};return V.createElement(dt.Provider,{value:a.panelId},Ve({ourProps:f,theirProps:o,slot:d,defaultTag:"div",features:mt,visible:u,name:"Disclosure.Panel"}))})),gt=Object.assign(Ct,{Button:ht,Panel:vt});const yt=e=>e.toString().replace(/\B(?=(\d{3})+(?!\d))/g,","),Et=e=>e.filter(Boolean).join(" ");var wt=n=>{const{iconLogo:r=!0,title:o="",children:a}=n;return(0,e.createElement)(gt,{as:"nav",className:"bg-white shadow"},(0,e.createElement)("div",{className:"max-w-3xl mx-auto px-6 lg:max-w-7xl"},(0,e.createElement)("div",{className:"relative flex justify-between h-16"},(0,e.createElement)("div",{className:"flex-1 flex items-center justify-center sm:items-stretch sm:justify-start"},r?(0,e.createElement)(ye,{to:{pathname:"admin.php",search:`?page=${zip_ai_react.page_slug}`},className:"flex-shrink-0 flex items-center justify-start focus:outline-none focus-visible:outline-none focus:shadow-none active:outline-none active:shadow-none transition-colors"},(0,e.createElement)("div",{className:"flex-shrink-0 flex items-center"},p({className:Et(["h-10 text-zip",o&&"mr-6"])}),o&&(0,e.createElement)("h1",{className:"h-6 m-0 text-xl leading-6 font-semibold text-slate-800"},o))):null,a&&(0,e.createElement)("div",{className:"sm:ml-8 sm:flex sm:space-x-8"},a)),(0,e.createElement)("div",{className:"absolute inset-y-0 right-0 flex items-center pr-2 gap-8 sm:static sm:inset-auto sm:ml-6 sm:pr-0"},(0,e.createElement)("a",{className:"text-base text-slate-500 focus:text-spec focus-visible:text-spec active:text-spec hover:text-spec transition-colors",href:"https://wpspectra.com/zip-ai/",target:"_blank",rel:"noreferrer"},(0,t.__)("Visit Website","ultimate-addons-for-gutenberg"))))))},bt=window.wp.components;let xt=(0,V.createContext)(null);function Lt(){let e=(0,V.useContext)(xt);if(null===e){let e=new Error("You used a <Label /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,Lt),e}return e}let _t=ke((function(e,t){let n=Ue(),{id:r=`headlessui-label-${n}`,passive:o=!1,...a}=e,l=Lt(),i=ze(t);Ae((()=>l.register(r)),[r,l.register]);let s={ref:i,...l.props,id:r};return o&&("onClick"in s&&(delete s.htmlFor,delete s.onClick),"onClick"in a&&delete a.onClick),Ve({ourProps:s,theirProps:a,slot:l.slot||{},defaultTag:"label",name:l.name||"Label"})})),Ht=Object.assign(_t,{}),Mt=(0,V.createContext)(null);function Vt(){let e=(0,V.useContext)(Mt);if(null===e){let e=new Error("You used a <Description /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,Vt),e}return e}function St(){let[e,t]=(0,V.useState)([]);return[e.length>0?e.join(" "):void 0,(0,V.useMemo)((()=>function(e){let n=je((e=>(t((t=>[...t,e])),()=>t((t=>{let n=t.slice(),r=n.indexOf(e);return-1!==r&&n.splice(r,1),n}))))),r=(0,V.useMemo)((()=>({register:n,slot:e.slot,name:e.name,props:e.props})),[n,e.slot,e.name,e.props]);return V.createElement(Mt.Provider,{value:r},e.children)}),[t])]}let Pt=ke((function(e,t){let n=Ue(),{id:r=`headlessui-description-${n}`,...o}=e,a=Vt(),l=ze(t);return Ae((()=>a.register(r)),[r,a.register]),Ve({ourProps:{ref:l,...a.props,id:r},theirProps:o,slot:a.slot||{},defaultTag:"p",name:a.name||"Description"})})),kt=Object.assign(Pt,{});var Tt=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(Tt||{});let Nt=ke((function(e,t){let{features:n=1,...r}=e;return Ve({ourProps:{ref:t,"aria-hidden":2==(2&n)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...4==(4&n)&&2!=(2&n)&&{display:"none"}}},theirProps:r,slot:{},defaultTag:"div",name:"Hidden"})}));function Zt(e){"function"==typeof queueMicrotask?queueMicrotask(e):Promise.resolve().then(e).catch((e=>setTimeout((()=>{throw e}))))}function Ot(){let e=[],t={addEventListener(e,n,r,o){return e.addEventListener(n,r,o),t.add((()=>e.removeEventListener(n,r,o)))},requestAnimationFrame(...e){let n=requestAnimationFrame(...e);return t.add((()=>cancelAnimationFrame(n)))},nextFrame(...e){return t.requestAnimationFrame((()=>t.requestAnimationFrame(...e)))},setTimeout(...e){let n=setTimeout(...e);return t.add((()=>clearTimeout(n)))},microTask(...e){let n={current:!0};return Zt((()=>{n.current&&e[0]()})),t.add((()=>{n.current=!1}))},style(e,t,n){let r=e.style.getPropertyValue(t);return Object.assign(e.style,{[t]:n}),this.add((()=>{Object.assign(e.style,{[t]:r})}))},group(e){let t=Ot();return e(t),this.add((()=>t.dispose()))},add(t){return e.push(t),()=>{let n=e.indexOf(t);if(n>=0)for(let t of e.splice(n,1))t()}},dispose(){for(let t of e.splice(0))t()}};return t}function Rt(){let[e]=(0,V.useState)(Ot);return(0,V.useEffect)((()=>()=>e.dispose()),[e]),e}let At=(0,V.createContext)(null);At.displayName="GroupContext";let Ft=V.Fragment,jt=ke((function(e,t){let n=Ue(),{id:r=`headlessui-switch-${n}`,checked:o,defaultChecked:a=!1,onChange:l,name:i,value:s,form:c,...u}=e,d=(0,V.useContext)(At),f=(0,V.useRef)(null),p=ze(f,t,null===d?null:d.setSwitch),[m,C]=function(e,t,n){let[r,o]=(0,V.useState)(n),a=void 0!==e,l=(0,V.useRef)(a),i=(0,V.useRef)(!1),s=(0,V.useRef)(!1);return!a||l.current||i.current?!a&&l.current&&!s.current&&(s.current=!0,l.current=a,console.error("A component is changing from controlled to uncontrolled. This may be caused by the value changing from a defined value to undefined, which should not happen.")):(i.current=!0,l.current=a,console.error("A component is changing from uncontrolled to controlled. This may be caused by the value changing from undefined to a defined value, which should not happen.")),[a?e:r,je((e=>(a||o(e),null==t?void 0:t(e))))]}(o,l,a),h=je((()=>null==C?void 0:C(!m))),v=je((e=>{if(qe(e.currentTarget))return e.preventDefault();e.preventDefault(),h()})),g=je((e=>{e.key===We.Space?(e.preventDefault(),h()):e.key===We.Enter&&function(e){var t,n;let r=null!=(t=null==e?void 0:e.form)?t:e.closest("form");if(r){for(let t of r.elements)if(t!==e&&("INPUT"===t.tagName&&"submit"===t.type||"BUTTON"===t.tagName&&"submit"===t.type||"INPUT"===t.nodeName&&"image"===t.type))return void t.click();null==(n=r.requestSubmit)||n.call(r)}}(e.currentTarget)})),y=je((e=>e.preventDefault())),E=(0,V.useMemo)((()=>({checked:m})),[m]),w={id:r,ref:p,role:"switch",type:et(e,f),tabIndex:0,"aria-checked":m,"aria-labelledby":null==d?void 0:d.labelledby,"aria-describedby":null==d?void 0:d.describedby,onClick:v,onKeyUp:g,onKeyPress:y},b=Rt();return(0,V.useEffect)((()=>{var e;let t=null==(e=f.current)?void 0:e.closest("form");t&&void 0!==a&&b.addEventListener(t,"reset",(()=>{C(a)}))}),[f,C]),V.createElement(V.Fragment,null,null!=i&&m&&V.createElement(Nt,{features:Tt.Hidden,...Te({as:"input",type:"checkbox",hidden:!0,readOnly:!0,form:c,checked:m,name:i,value:s})}),Ve({ourProps:w,theirProps:u,slot:E,defaultTag:"button",name:"Switch"}))})),Dt=Object.assign(jt,{Group:function(e){var t;let[n,r]=(0,V.useState)(null),[o,a]=function(){let[e,t]=(0,V.useState)([]);return[e.length>0?e.join(" "):void 0,(0,V.useMemo)((()=>function(e){let n=je((e=>(t((t=>[...t,e])),()=>t((t=>{let n=t.slice(),r=n.indexOf(e);return-1!==r&&n.splice(r,1),n}))))),r=(0,V.useMemo)((()=>({register:n,slot:e.slot,name:e.name,props:e.props})),[n,e.slot,e.name,e.props]);return V.createElement(xt.Provider,{value:r},e.children)}),[t])]}(),[l,i]=St(),s=(0,V.useMemo)((()=>({switch:n,setSwitch:r,labelledby:o,describedby:l})),[n,r,o,l]),c=e;return V.createElement(i,{name:"Switch.Description"},V.createElement(a,{name:"Switch.Label",props:{htmlFor:null==(t=s.switch)?void 0:t.id,onClick(e){n&&("LABEL"===e.currentTarget.tagName&&e.preventDefault(),n.click(),n.focus({preventScroll:!0}))}}},V.createElement(At.Provider,{value:s},Ve({ourProps:{},theirProps:c,defaultTag:Ft,name:"Switch.Group"}))))},Label:Ht,Description:kt});function It(){let e=(0,V.useRef)(!1);return Ae((()=>(e.current=!0,()=>{e.current=!1})),[]),e}function zt(e,...t){e&&t.length>0&&e.classList.add(...t)}function $t(e,...t){e&&t.length>0&&e.classList.remove(...t)}function Bt(e=""){return e.split(" ").filter((e=>e.trim().length>1))}let Ut=(0,V.createContext)(null);Ut.displayName="TransitionContext";var Wt=(e=>(e.Visible="visible",e.Hidden="hidden",e))(Wt||{});let qt=(0,V.createContext)(null);function Gt(e){return"children"in e?Gt(e.children):e.current.filter((({el:e})=>null!==e.current)).filter((({state:e})=>"visible"===e)).length>0}function Kt(e,t){let n=Fe(e),r=(0,V.useRef)([]),o=It(),a=Rt(),l=je(((e,t=Me.Hidden)=>{let l=r.current.findIndex((({el:t})=>t===e));-1!==l&&(be(t,{[Me.Unmount](){r.current.splice(l,1)},[Me.Hidden](){r.current[l].state="hidden"}}),a.microTask((()=>{var e;!Gt(r)&&o.current&&(null==(e=n.current)||e.call(n))})))})),i=je((e=>{let t=r.current.find((({el:t})=>t===e));return t?"visible"!==t.state&&(t.state="visible"):r.current.push({el:e,state:"visible"}),()=>l(e,Me.Unmount)})),s=(0,V.useRef)([]),c=(0,V.useRef)(Promise.resolve()),u=(0,V.useRef)({enter:[],leave:[],idle:[]}),d=je(((e,n,r)=>{s.current.splice(0),t&&(t.chains.current[n]=t.chains.current[n].filter((([t])=>t!==e))),null==t||t.chains.current[n].push([e,new Promise((e=>{s.current.push(e)}))]),null==t||t.chains.current[n].push([e,new Promise((e=>{Promise.all(u.current[n].map((([e,t])=>t))).then((()=>e()))}))]),"enter"===n?c.current=c.current.then((()=>null==t?void 0:t.wait.current)).then((()=>r(n))):r(n)})),f=je(((e,t,n)=>{Promise.all(u.current[t].splice(0).map((([e,t])=>t))).then((()=>{var e;null==(e=s.current.shift())||e()})).then((()=>n(t)))}));return(0,V.useMemo)((()=>({children:r,register:i,unregister:l,onStart:d,onStop:f,wait:c,chains:u})),[i,l,r,d,f,u,c])}function Yt(){}qt.displayName="NestingContext";let Jt=["beforeEnter","afterEnter","beforeLeave","afterLeave"];function Xt(e){var t;let n={};for(let r of Jt)n[r]=null!=(t=e[r])?t:Yt;return n}let Qt=He.RenderStrategy,en=ke((function(e,t){let{show:n,appear:r=!1,unmount:o=!0,...a}=e,l=(0,V.useRef)(null),i=ze(l,t);$e();let s=Je();if(void 0===n&&null!==s&&(n=(s&Ye.Open)===Ye.Open),![!0,!1].includes(n))throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");let[c,u]=(0,V.useState)(n?"visible":"hidden"),d=Kt((()=>{u("hidden")})),[f,p]=(0,V.useState)(!0),m=(0,V.useRef)([n]);Ae((()=>{!1!==f&&m.current[m.current.length-1]!==n&&(m.current.push(n),p(!1))}),[m,n]);let C=(0,V.useMemo)((()=>({show:n,appear:r,initial:f})),[n,r,f]);(0,V.useEffect)((()=>{if(n)u("visible");else if(Gt(d)){let e=l.current;if(!e)return;let t=e.getBoundingClientRect();0===t.x&&0===t.y&&0===t.width&&0===t.height&&u("hidden")}else u("hidden")}),[n,d]);let h={unmount:o},v=je((()=>{var t;f&&p(!1),null==(t=e.beforeEnter)||t.call(e)})),g=je((()=>{var t;f&&p(!1),null==(t=e.beforeLeave)||t.call(e)}));return V.createElement(qt.Provider,{value:d},V.createElement(Ut.Provider,{value:C},Ve({ourProps:{...h,as:V.Fragment,children:V.createElement(tn,{ref:i,...h,...a,beforeEnter:v,beforeLeave:g})},theirProps:{},defaultTag:V.Fragment,features:Qt,visible:"visible"===c,name:"Transition"})))})),tn=ke((function(e,t){var n,r;let{beforeEnter:o,afterEnter:a,beforeLeave:l,afterLeave:i,enter:s,enterFrom:c,enterTo:u,entered:d,leave:f,leaveFrom:p,leaveTo:m,...C}=e,h=(0,V.useRef)(null),v=ze(h,t),g=null==(n=C.unmount)||n?Me.Unmount:Me.Hidden,{show:y,appear:E,initial:w}=function(){let e=(0,V.useContext)(Ut);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),[b,x]=(0,V.useState)(y?"visible":"hidden"),L=function(){let e=(0,V.useContext)(qt);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),{register:_,unregister:H}=L;(0,V.useEffect)((()=>_(h)),[_,h]),(0,V.useEffect)((()=>{if(g===Me.Hidden&&h.current)return y&&"visible"!==b?void x("visible"):be(b,{hidden:()=>H(h),visible:()=>_(h)})}),[b,h,_,H,y,g]);let M=Fe({base:Bt(C.className),enter:Bt(s),enterFrom:Bt(c),enterTo:Bt(u),entered:Bt(d),leave:Bt(f),leaveFrom:Bt(p),leaveTo:Bt(m)}),S=function(e){let t=(0,V.useRef)(Xt(e));return(0,V.useEffect)((()=>{t.current=Xt(e)}),[e]),t}({beforeEnter:o,afterEnter:a,beforeLeave:l,afterLeave:i}),P=$e();(0,V.useEffect)((()=>{if(P&&"visible"===b&&null===h.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[h,b,P]);let k=E&&y&&w,T=!P||w&&!E?"idle":y?"enter":"leave",N=function(e=0){let[t,n]=(0,V.useState)(e),r=It(),o=(0,V.useCallback)((e=>{r.current&&n((t=>t|e))}),[t,r]),a=(0,V.useCallback)((e=>Boolean(t&e)),[t]),l=(0,V.useCallback)((e=>{r.current&&n((t=>t&~e))}),[n,r]),i=(0,V.useCallback)((e=>{r.current&&n((t=>t^e))}),[n]);return{flags:t,addFlag:o,hasFlag:a,removeFlag:l,toggleFlag:i}}(0),Z=je((e=>be(e,{enter:()=>{N.addFlag(Ye.Opening),S.current.beforeEnter()},leave:()=>{N.addFlag(Ye.Closing),S.current.beforeLeave()},idle:()=>{}}))),O=je((e=>be(e,{enter:()=>{N.removeFlag(Ye.Opening),S.current.afterEnter()},leave:()=>{N.removeFlag(Ye.Closing),S.current.afterLeave()},idle:()=>{}}))),R=Kt((()=>{x("hidden"),H(h)}),L);!function({immediate:e,container:t,direction:n,classes:r,onStart:o,onStop:a}){let l=It(),i=Rt(),s=Fe(n);Ae((()=>{e&&(s.current="enter")}),[e]),Ae((()=>{let e=Ot();i.add(e.dispose);let n=t.current;if(n&&"idle"!==s.current&&l.current)return e.dispose(),o.current(s.current),e.add(function(e,t,n,r){let o=n?"enter":"leave",a=Ot(),l=void 0!==r?function(e){let t={called:!1};return(...n)=>{if(!t.called)return t.called=!0,e(...n)}}(r):()=>{};"enter"===o&&(e.removeAttribute("hidden"),e.style.display="");let i=be(o,{enter:()=>t.enter,leave:()=>t.leave}),s=be(o,{enter:()=>t.enterTo,leave:()=>t.leaveTo}),c=be(o,{enter:()=>t.enterFrom,leave:()=>t.leaveFrom});return $t(e,...t.base,...t.enter,...t.enterTo,...t.enterFrom,...t.leave,...t.leaveFrom,...t.leaveTo,...t.entered),zt(e,...t.base,...i,...c),a.nextFrame((()=>{$t(e,...t.base,...i,...c),zt(e,...t.base,...i,...s),function(e,t){let n=Ot();if(!e)return n.dispose;let{transitionDuration:r,transitionDelay:o}=getComputedStyle(e),[a,l]=[r,o].map((e=>{let[t=0]=e.split(",").filter(Boolean).map((e=>e.includes("ms")?parseFloat(e):1e3*parseFloat(e))).sort(((e,t)=>t-e));return t})),i=a+l;if(0!==i){n.group((n=>{n.setTimeout((()=>{t(),n.dispose()}),i),n.addEventListener(e,"transitionrun",(e=>{e.target===e.currentTarget&&n.dispose()}))}));let r=n.addEventListener(e,"transitionend",(e=>{e.target===e.currentTarget&&(t(),r())}))}else t();n.add((()=>t())),n.dispose}(e,(()=>($t(e,...t.base,...i),zt(e,...t.base,...t.entered),l())))})),a.dispose}(n,r.current,"enter"===s.current,(()=>{e.dispose(),a.current(s.current)}))),e.dispose}),[n])}({immediate:k,container:h,classes:M,direction:T,onStart:Fe((e=>{R.onStart(h,e,Z)})),onStop:Fe((e=>{R.onStop(h,e,O),"leave"===e&&!Gt(R)&&(x("hidden"),H(h))}))});let A=C,F={ref:v};return k?A={...A,className:xe(C.className,...M.current.enter,...M.current.enterFrom)}:(A.className=xe(C.className,null==(r=h.current)?void 0:r.className),""===A.className&&delete A.className),V.createElement(qt.Provider,{value:R},V.createElement(Xe,{value:be(b,{visible:Ye.Open,hidden:Ye.Closed})|N.flags},Ve({ourProps:F,theirProps:A,defaultTag:"div",features:Qt,visible:"visible"===b,name:"Transition.Child"})))})),nn=ke((function(e,t){let n=null!==(0,V.useContext)(Ut),r=null!==Je();return V.createElement(V.Fragment,null,!n&&r?V.createElement(en,{ref:t,...e}):V.createElement(tn,{ref:t,...e}))})),rn=Object.assign(en,{Child:nn,Root:en}),on=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var an=(e=>(e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll",e))(an||{}),ln=(e=>(e[e.Error=0]="Error",e[e.Overflow=1]="Overflow",e[e.Success=2]="Success",e[e.Underflow=3]="Underflow",e))(ln||{}),sn=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(sn||{});var cn=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(cn||{});var un=(e=>(e[e.Keyboard=0]="Keyboard",e[e.Mouse=1]="Mouse",e))(un||{});function dn(e){null==e||e.focus({preventScroll:!0})}"undefined"!=typeof window&&"undefined"!=typeof document&&(document.addEventListener("keydown",(e=>{e.metaKey||e.altKey||e.ctrlKey||(document.documentElement.dataset.headlessuiFocusVisible="")}),!0),document.addEventListener("click",(e=>{1===e.detail?delete document.documentElement.dataset.headlessuiFocusVisible:0===e.detail&&(document.documentElement.dataset.headlessuiFocusVisible="")}),!0));let fn=["textarea","input"].join(",");function pn(e,t,{sorted:n=!0,relativeTo:r=null,skipElements:o=[]}={}){let a=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e.ownerDocument,l=Array.isArray(e)?n?function(e,t=(e=>e)){return e.slice().sort(((e,n)=>{let r=t(e),o=t(n);if(null===r||null===o)return 0;let a=r.compareDocumentPosition(o);return a&Node.DOCUMENT_POSITION_FOLLOWING?-1:a&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}(e):e:function(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(on)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}(e);o.length>0&&l.length>1&&(l=l.filter((e=>!o.includes(e)))),r=null!=r?r:a.activeElement;let i,s=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,l.indexOf(r))-1;if(4&t)return Math.max(0,l.indexOf(r))+1;if(8&t)return l.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=32&t?{preventScroll:!0}:{},d=0,f=l.length;do{if(d>=f||d+f<=0)return 0;let e=c+d;if(16&t)e=(e+f)%f;else{if(e<0)return 3;if(e>=f)return 1}i=l[e],null==i||i.focus(u),d+=s}while(i!==a.activeElement);return 6&t&&function(e){var t,n;return null!=(n=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,fn))&&n}(i)&&i.select(),2}function mn(e,t,n){let r=Fe(t);(0,V.useEffect)((()=>{function t(e){r.current(e)}return window.addEventListener(e,t,n),()=>window.removeEventListener(e,t,n)}),[e,n])}var Cn=(e=>(e[e.Forwards=0]="Forwards",e[e.Backwards=1]="Backwards",e))(Cn||{});function hn(...e){return(0,V.useMemo)((()=>tt(...e)),[...e])}function vn(e,t,n,r){let o=Fe(n);(0,V.useEffect)((()=>{function n(e){o.current(e)}return(e=null!=e?e:window).addEventListener(t,n,r),()=>e.removeEventListener(t,n,r)}),[e,t,r])}function gn(e,t){let n=(0,V.useRef)([]),r=je(e);(0,V.useEffect)((()=>{let e=[...n.current];for(let[o,a]of t.entries())if(n.current[o]!==a){let o=r(t,e);return n.current=t,o}}),[r,...t])}function yn(e){let t=je(e),n=(0,V.useRef)(!1);(0,V.useEffect)((()=>(n.current=!1,()=>{n.current=!0,Zt((()=>{n.current&&t()}))})),[t])}function En(e){if(!e)return new Set;if("function"==typeof e)return new Set(e());let t=new Set;for(let n of e.current)n.current instanceof HTMLElement&&t.add(n.current);return t}var wn=(e=>(e[e.None=1]="None",e[e.InitialFocus=2]="InitialFocus",e[e.TabLock=4]="TabLock",e[e.FocusLock=8]="FocusLock",e[e.RestoreFocus=16]="RestoreFocus",e[e.All=30]="All",e))(wn||{});let bn=ke((function(e,t){let n=(0,V.useRef)(null),r=ze(n,t),{initialFocus:o,containers:a,features:l=30,...i}=e;$e()||(l=1);let s=hn(n);!function({ownerDocument:e},t){let n=function(e=!0){let t=(0,V.useRef)(Ln.slice());return gn((([e],[n])=>{!0===n&&!1===e&&Zt((()=>{t.current.splice(0)})),!1===n&&!0===e&&(t.current=Ln.slice())}),[e,Ln,t]),je((()=>{var e;return null!=(e=t.current.find((e=>null!=e&&e.isConnected)))?e:null}))}(t);gn((()=>{t||(null==e?void 0:e.activeElement)===(null==e?void 0:e.body)&&dn(n())}),[t]),yn((()=>{t&&dn(n())}))}({ownerDocument:s},Boolean(16&l));let c=function({ownerDocument:e,container:t,initialFocus:n},r){let o=(0,V.useRef)(null),a=It();return gn((()=>{if(!r)return;let l=t.current;l&&Zt((()=>{if(!a.current)return;let t=null==e?void 0:e.activeElement;if(null!=n&&n.current){if((null==n?void 0:n.current)===t)return void(o.current=t)}else if(l.contains(t))return void(o.current=t);null!=n&&n.current?dn(n.current):pn(l,an.First)===ln.Error&&console.warn("There are no focusable elements inside the <FocusTrap />"),o.current=null==e?void 0:e.activeElement}))}),[r]),o}({ownerDocument:s,container:n,initialFocus:o},Boolean(2&l));!function({ownerDocument:e,container:t,containers:n,previousActiveElement:r},o){let a=It();vn(null==e?void 0:e.defaultView,"focus",(e=>{if(!o||!a.current)return;let l=En(n);t.current instanceof HTMLElement&&l.add(t.current);let i=r.current;if(!i)return;let s=e.target;s&&s instanceof HTMLElement?Hn(l,s)?(r.current=s,dn(s)):(e.preventDefault(),e.stopPropagation(),dn(i)):dn(r.current)}),!0)}({ownerDocument:s,container:n,containers:a,previousActiveElement:c},Boolean(8&l));let u=function(){let e=(0,V.useRef)(0);return mn("keydown",(t=>{"Tab"===t.key&&(e.current=t.shiftKey?1:0)}),!0),e}(),d=je((e=>{let t=n.current;t&&be(u.current,{[Cn.Forwards]:()=>{pn(t,an.First,{skipElements:[e.relatedTarget]})},[Cn.Backwards]:()=>{pn(t,an.Last,{skipElements:[e.relatedTarget]})}})})),f=Rt(),p=(0,V.useRef)(!1),m={ref:r,onKeyDown(e){"Tab"==e.key&&(p.current=!0,f.requestAnimationFrame((()=>{p.current=!1})))},onBlur(e){let t=En(a);n.current instanceof HTMLElement&&t.add(n.current);let r=e.relatedTarget;r instanceof HTMLElement&&"true"!==r.dataset.headlessuiFocusGuard&&(Hn(t,r)||(p.current?pn(n.current,be(u.current,{[Cn.Forwards]:()=>an.Next,[Cn.Backwards]:()=>an.Previous})|an.WrapAround,{relativeTo:e.target}):e.target instanceof HTMLElement&&dn(e.target)))}};return V.createElement(V.Fragment,null,Boolean(4&l)&&V.createElement(Nt,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:d,features:Tt.Focusable}),Ve({ourProps:m,theirProps:i,defaultTag:"div",name:"FocusTrap"}),Boolean(4&l)&&V.createElement(Nt,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:d,features:Tt.Focusable}))})),xn=Object.assign(bn,{features:wn}),Ln=[];function Hn(e,t){for(let n of e)if(n.contains(t))return!0;return!1}!function(e){function t(){"loading"!==document.readyState&&((()=>{function e(e){e.target instanceof HTMLElement&&e.target!==document.body&&Ln[0]!==e.target&&(Ln.unshift(e.target),Ln=Ln.filter((e=>null!=e&&e.isConnected)),Ln.splice(10))}window.addEventListener("click",e,{capture:!0}),window.addEventListener("mousedown",e,{capture:!0}),window.addEventListener("focus",e,{capture:!0}),document.body.addEventListener("click",e,{capture:!0}),document.body.addEventListener("mousedown",e,{capture:!0}),document.body.addEventListener("focus",e,{capture:!0})})(),document.removeEventListener("DOMContentLoaded",t))}"undefined"!=typeof window&&"undefined"!=typeof document&&(document.addEventListener("DOMContentLoaded",t),t())}();var Mn=window.ReactDOM;let Vn=(0,V.createContext)(!1);function Sn(e){return V.createElement(Vn.Provider,{value:e.force},e.children)}let Pn=V.Fragment,kn=V.Fragment,Tn=(0,V.createContext)(null),Nn=(0,V.createContext)(null),Zn=ke((function(e,t){let n=e,r=(0,V.useRef)(null),o=ze(Ie((e=>{r.current=e})),t),a=hn(r),l=function(e){let t=(0,V.useContext)(Vn),n=(0,V.useContext)(Tn),r=hn(e),[o,a]=(0,V.useState)((()=>{if(!t&&null!==n||Re.isServer)return null;let e=null==r?void 0:r.getElementById("headlessui-portal-root");if(e)return e;if(null===r)return null;let o=r.createElement("div");return o.setAttribute("id","headlessui-portal-root"),r.body.appendChild(o)}));return(0,V.useEffect)((()=>{null!==o&&(null!=r&&r.body.contains(o)||null==r||r.body.appendChild(o))}),[o,r]),(0,V.useEffect)((()=>{t||null!==n&&a(n.current)}),[n,a,t]),o}(r),[i]=(0,V.useState)((()=>{var e;return Re.isServer?null:null!=(e=null==a?void 0:a.createElement("div"))?e:null})),s=(0,V.useContext)(Nn),c=$e();return Ae((()=>{!l||!i||l.contains(i)||(i.setAttribute("data-headlessui-portal",""),l.appendChild(i))}),[l,i]),Ae((()=>{if(i&&s)return s.register(i)}),[s,i]),yn((()=>{var e;!l||!i||(i instanceof Node&&l.contains(i)&&l.removeChild(i),l.childNodes.length<=0&&(null==(e=l.parentElement)||e.removeChild(l)))})),c&&l&&i?(0,Mn.createPortal)(Ve({ourProps:{ref:o},theirProps:n,defaultTag:Pn,name:"Portal"}),i):null})),On=ke((function(e,t){let{target:n,...r}=e,o={ref:ze(t)};return V.createElement(Tn.Provider,{value:n},Ve({ourProps:o,theirProps:r,defaultTag:kn,name:"Popover.Group"}))})),Rn=Object.assign(Zn,{Group:On}),An=(0,V.createContext)((()=>{}));An.displayName="StackContext";var Fn=(e=>(e[e.Add=0]="Add",e[e.Remove=1]="Remove",e))(Fn||{});function jn({children:e,onUpdate:t,type:n,element:r,enabled:o}){let a=(0,V.useContext)(An),l=je(((...e)=>{null==t||t(...e),a(...e)}));return Ae((()=>{let e=void 0===o||!0===o;return e&&l(0,n,r),()=>{e&&l(1,n,r)}}),[l,n,r,o]),V.createElement(An.Provider,{value:l},e)}function Dn(e,t,n){let r=Fe(t);(0,V.useEffect)((()=>{function t(e){r.current(e)}return document.addEventListener(e,t,n),()=>document.removeEventListener(e,t,n)}),[e,n])}function In(e,t,n=!0){let r=(0,V.useRef)(!1);function o(n,o){if(!r.current||n.defaultPrevented)return;let a=o(n);if(null===a||!a.getRootNode().contains(a)||!a.isConnected)return;let l=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e);for(let e of l){if(null===e)continue;let t=e instanceof HTMLElement?e:e.current;if(null!=t&&t.contains(a)||n.composed&&n.composedPath().includes(t))return}return!function(e,t=0){var n;return e!==(null==(n=tt(e))?void 0:n.body)&&be(t,{0(){return e.matches(on)},1(){let t=e;for(;null!==t;){if(t.matches(on))return!0;t=t.parentElement}return!1}})}(a,cn.Loose)&&-1!==a.tabIndex&&n.preventDefault(),t(n,a)}(0,V.useEffect)((()=>{requestAnimationFrame((()=>{r.current=n}))}),[n]);let a=(0,V.useRef)(null);Dn("pointerdown",(e=>{var t,n;r.current&&(a.current=(null==(n=null==(t=e.composedPath)?void 0:t.call(e))?void 0:n[0])||e.target)}),!0),Dn("mousedown",(e=>{var t,n;r.current&&(a.current=(null==(n=null==(t=e.composedPath)?void 0:t.call(e))?void 0:n[0])||e.target)}),!0),Dn("click",(e=>{a.current&&(o(e,(()=>a.current)),a.current=null)}),!0),Dn("touchend",(e=>o(e,(()=>e.target instanceof HTMLElement?e.target:null))),!0),mn("blur",(e=>o(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))),!0)}const zn="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},{useState:$n,useEffect:Bn,useLayoutEffect:Un,useDebugValue:Wn}=S;function qn(e){const t=e.getSnapshot,n=e.value;try{const e=t();return!zn(n,e)}catch{return!0}}const Gn="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t,n){return t()}:function(e,t,n){const r=t(),[{inst:o},a]=$n({inst:{value:r,getSnapshot:t}});return Un((()=>{o.value=r,o.getSnapshot=t,qn(o)&&a({inst:o})}),[e,r,t]),Bn((()=>(qn(o)&&a({inst:o}),e((()=>{qn(o)&&a({inst:o})})))),[e]),Wn(r),r},Kn="useSyncExternalStore"in S?(e=>e.useSyncExternalStore)(S):Gn;function Yn(){let e;return{before({doc:t}){var n;let r=t.documentElement;e=(null!=(n=t.defaultView)?n:window).innerWidth-r.clientWidth},after({doc:t,d:n}){let r=t.documentElement,o=r.clientWidth-r.offsetWidth,a=e-o;n.style(r,"paddingRight",`${a}px`)}}}function Jn(){if(!(/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0))return{};let e;return{before(){e=window.pageYOffset},after({doc:t,d:n,meta:r}){function o(e){return r.containers.flatMap((e=>e())).some((t=>t.contains(e)))}n.microTask((()=>{if("auto"!==window.getComputedStyle(t.documentElement).scrollBehavior){let e=Ot();e.style(t.documentElement,"scroll-behavior","auto"),n.add((()=>n.microTask((()=>e.dispose()))))}n.style(t.body,"marginTop",`-${e}px`),window.scrollTo(0,0);let r=null;n.addEventListener(t,"click",(e=>{if(e.target instanceof HTMLElement)try{let n=e.target.closest("a");if(!n)return;let{hash:a}=new URL(n.href),l=t.querySelector(a);l&&!o(l)&&(r=l)}catch{}}),!0),n.addEventListener(t,"touchmove",(e=>{e.target instanceof HTMLElement&&!o(e.target)&&e.preventDefault()}),{passive:!1}),n.add((()=>{window.scrollTo(0,window.pageYOffset+e),r&&r.isConnected&&(r.scrollIntoView({block:"nearest"}),r=null)}))}))}}}function Xn(e){let t={};for(let n of e)Object.assign(t,n(t));return t}let Qn=function(e,t){let n=new Map,r=new Set;return{getSnapshot(){return n},subscribe(e){return r.add(e),()=>r.delete(e)},dispatch(e,...o){let a=t[e].call(n,...o);a&&(n=a,r.forEach((e=>e())))}}}(0,{PUSH(e,t){var n;let r=null!=(n=this.get(e))?n:{doc:e,count:0,d:Ot(),meta:new Set};return r.count++,r.meta.add(t),this.set(e,r),this},POP(e,t){let n=this.get(e);return n&&(n.count--,n.meta.delete(t)),this},SCROLL_PREVENT({doc:e,d:t,meta:n}){let r={doc:e,d:t,meta:Xn(n)},o=[Jn(),Yn(),{before({doc:e,d:t}){t.style(e.documentElement,"overflow","hidden")}}];o.forEach((({before:e})=>null==e?void 0:e(r))),o.forEach((({after:e})=>null==e?void 0:e(r)))},SCROLL_ALLOW({d:e}){e.dispose()},TEARDOWN({doc:e}){this.delete(e)}});Qn.subscribe((()=>{let e=Qn.getSnapshot(),t=new Map;for(let[n]of e)t.set(n,n.documentElement.style.overflow);for(let n of e.values()){let e="hidden"===t.get(n.doc),r=0!==n.count;(r&&!e||!r&&e)&&Qn.dispatch(n.count>0?"SCROLL_PREVENT":"SCROLL_ALLOW",n),0===n.count&&Qn.dispatch("TEARDOWN",n)}}));let er=new Map,tr=new Map;function nr(e,t=!0){Ae((()=>{var n;if(!t)return;let r="function"==typeof e?e():e.current;if(!r)return;let o=null!=(n=tr.get(r))?n:0;return tr.set(r,o+1),0!==o||(er.set(r,{"aria-hidden":r.getAttribute("aria-hidden"),inert:r.inert}),r.setAttribute("aria-hidden","true"),r.inert=!0),function(){var e;if(!r)return;let t=null!=(e=tr.get(r))?e:1;if(1===t?tr.delete(r):tr.set(r,t-1),1!==t)return;let n=er.get(r);n&&(null===n["aria-hidden"]?r.removeAttribute("aria-hidden"):r.setAttribute("aria-hidden",n["aria-hidden"]),r.inert=n.inert,er.delete(r))}}),[e,t])}var rr=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(rr||{}),or=(e=>(e[e.SetTitleId=0]="SetTitleId",e))(or||{});let ar={0(e,t){return e.titleId===t.id?e:{...e,titleId:t.id}}},lr=(0,V.createContext)(null);function ir(e){let t=(0,V.useContext)(lr);if(null===t){let t=new Error(`<${e} /> is missing a parent <Dialog /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,ir),t}return t}function sr(e,t){return be(t.type,ar,e,t)}lr.displayName="DialogContext";let cr=He.RenderStrategy|He.Static,ur=ke((function(e,t){var n;let r=Ue(),{id:o=`headlessui-dialog-${r}`,open:a,onClose:l,initialFocus:i,__demoMode:s=!1,...c}=e,[u,d]=(0,V.useState)(0),f=Je();void 0===a&&null!==f&&(a=(f&Ye.Open)===Ye.Open);let p=(0,V.useRef)(null),m=ze(p,t),C=hn(p),h=e.hasOwnProperty("open")||null!==f,v=e.hasOwnProperty("onClose");if(!h&&!v)throw new Error("You have to provide an `open` and an `onClose` prop to the `Dialog` component.");if(!h)throw new Error("You provided an `onClose` prop to the `Dialog`, but forgot an `open` prop.");if(!v)throw new Error("You provided an `open` prop to the `Dialog`, but forgot an `onClose` prop.");if("boolean"!=typeof a)throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${a}`);if("function"!=typeof l)throw new Error(`You provided an \`onClose\` prop to the \`Dialog\`, but the value is not a function. Received: ${l}`);let g=a?0:1,[y,E]=(0,V.useReducer)(sr,{titleId:null,descriptionId:null,panelRef:(0,V.createRef)()}),w=je((()=>l(!1))),b=je((e=>E({type:0,id:e}))),x=!!$e()&&!s&&0===g,L=u>1,_=null!==(0,V.useContext)(lr),[H,M]=function(){let e=(0,V.useContext)(Nn),t=(0,V.useRef)([]),n=je((n=>(t.current.push(n),e&&e.register(n),()=>r(n)))),r=je((n=>{let r=t.current.indexOf(n);-1!==r&&t.current.splice(r,1),e&&e.unregister(n)})),o=(0,V.useMemo)((()=>({register:n,unregister:r,portals:t})),[n,r,t]);return[t,(0,V.useMemo)((()=>function({children:e}){return V.createElement(Nn.Provider,{value:o},e)}),[o])]}(),{resolveContainers:S,mainTreeNodeRef:P,MainTreeNode:k}=function({defaultContainers:e=[],portals:t,mainTreeNodeRef:n}={}){var r;let o=(0,V.useRef)(null!=(r=null==n?void 0:n.current)?r:null),a=hn(o),l=je((()=>{var n;let r=[];for(let t of e)null!==t&&(t instanceof HTMLElement?r.push(t):"current"in t&&t.current instanceof HTMLElement&&r.push(t.current));if(null!=t&&t.current)for(let e of t.current)r.push(e);for(let e of null!=(n=null==a?void 0:a.querySelectorAll("html > *, body > *"))?n:[])e!==document.body&&e!==document.head&&e instanceof HTMLElement&&"headlessui-portal-root"!==e.id&&(e.contains(o.current)||r.some((t=>e.contains(t)))||r.push(e));return r}));return{resolveContainers:l,contains:je((e=>l().some((t=>t.contains(e))))),mainTreeNodeRef:o,MainTreeNode:(0,V.useMemo)((()=>function(){return null!=n?null:V.createElement(Nt,{features:Tt.Hidden,ref:o})}),[o,n])}}({portals:H,defaultContainers:[null!=(n=y.panelRef.current)?n:p.current]}),T=L?"parent":"leaf",N=null!==f&&(f&Ye.Closing)===Ye.Closing,Z=!_&&!N&&x,O=(0,V.useCallback)((()=>{var e,t;return null!=(t=Array.from(null!=(e=null==C?void 0:C.querySelectorAll("body > *"))?e:[]).find((e=>"headlessui-portal-root"!==e.id&&e.contains(P.current)&&e instanceof HTMLElement)))?t:null}),[P]);nr(O,Z);let R=!!L||x,A=(0,V.useCallback)((()=>{var e,t;return null!=(t=Array.from(null!=(e=null==C?void 0:C.querySelectorAll("[data-headlessui-portal]"))?e:[]).find((e=>e.contains(P.current)&&e instanceof HTMLElement)))?t:null}),[P]);nr(A,R),In(S,w,!(!x||L));let F=!(L||0!==g);vn(null==C?void 0:C.defaultView,"keydown",(e=>{F&&(e.defaultPrevented||e.key===We.Escape&&(e.preventDefault(),e.stopPropagation(),w()))})),function(e,t,n=(()=>[document.body])){!function(e,t,n){let r=function(e){return Kn(e.subscribe,e.getSnapshot,e.getSnapshot)}(Qn),o=e?r.get(e):void 0,a=!!o&&o.count>0;Ae((()=>{if(e&&t)return Qn.dispatch("PUSH",e,n),()=>Qn.dispatch("POP",e,n)}),[t,e])}(e,t,(e=>{var t;return{containers:[...null!=(t=e.containers)?t:[],n]}}))}(C,!(N||0!==g||_),S),(0,V.useEffect)((()=>{if(0!==g||!p.current)return;let e=new ResizeObserver((e=>{for(let t of e){let e=t.target.getBoundingClientRect();0===e.x&&0===e.y&&0===e.width&&0===e.height&&w()}}));return e.observe(p.current),()=>e.disconnect()}),[g,p,w]);let[j,D]=St(),I=(0,V.useMemo)((()=>[{dialogState:g,close:w,setTitleId:b},y]),[g,y,w,b]),z=(0,V.useMemo)((()=>({open:0===g})),[g]),$={ref:m,id:o,role:"dialog","aria-modal":0===g||void 0,"aria-labelledby":y.titleId,"aria-describedby":j};return V.createElement(jn,{type:"Dialog",enabled:0===g,element:p,onUpdate:je(((e,t)=>{"Dialog"===t&&be(e,{[Fn.Add]:()=>d((e=>e+1)),[Fn.Remove]:()=>d((e=>e-1))})}))},V.createElement(Sn,{force:!0},V.createElement(Rn,null,V.createElement(lr.Provider,{value:I},V.createElement(Rn.Group,{target:p},V.createElement(Sn,{force:!1},V.createElement(D,{slot:z,name:"Dialog.Description"},V.createElement(xn,{initialFocus:i,containers:S,features:x?be(T,{parent:xn.features.RestoreFocus,leaf:xn.features.All&~xn.features.FocusLock}):xn.features.None},V.createElement(M,null,Ve({ourProps:$,theirProps:c,slot:z,defaultTag:"div",features:cr,visible:0===g,name:"Dialog"}))))))))),V.createElement(k,null))})),dr=ke((function(e,t){let n=Ue(),{id:r=`headlessui-dialog-backdrop-${n}`,...o}=e,[{dialogState:a},l]=ir("Dialog.Backdrop"),i=ze(t);(0,V.useEffect)((()=>{if(null===l.panelRef.current)throw new Error("A <Dialog.Backdrop /> component is being used, but a <Dialog.Panel /> component is missing.")}),[l.panelRef]);let s=(0,V.useMemo)((()=>({open:0===a})),[a]);return V.createElement(Sn,{force:!0},V.createElement(Rn,null,Ve({ourProps:{ref:i,id:r,"aria-hidden":!0},theirProps:o,slot:s,defaultTag:"div",name:"Dialog.Backdrop"})))})),fr=ke((function(e,t){let n=Ue(),{id:r=`headlessui-dialog-panel-${n}`,...o}=e,[{dialogState:a},l]=ir("Dialog.Panel"),i=ze(t,l.panelRef),s=(0,V.useMemo)((()=>({open:0===a})),[a]);return Ve({ourProps:{ref:i,id:r,onClick:je((e=>{e.stopPropagation()}))},theirProps:o,slot:s,defaultTag:"div",name:"Dialog.Panel"})})),pr=ke((function(e,t){let n=Ue(),{id:r=`headlessui-dialog-overlay-${n}`,...o}=e,[{dialogState:a,close:l}]=ir("Dialog.Overlay");return Ve({ourProps:{ref:ze(t),id:r,"aria-hidden":!0,onClick:je((e=>{if(e.target===e.currentTarget){if(qe(e.currentTarget))return e.preventDefault();e.preventDefault(),e.stopPropagation(),l()}}))},theirProps:o,slot:(0,V.useMemo)((()=>({open:0===a})),[a]),defaultTag:"div",name:"Dialog.Overlay"})})),mr=ke((function(e,t){let n=Ue(),{id:r=`headlessui-dialog-title-${n}`,...o}=e,[{dialogState:a,setTitleId:l}]=ir("Dialog.Title"),i=ze(t);(0,V.useEffect)((()=>(l(r),()=>l(null))),[r,l]);let s=(0,V.useMemo)((()=>({open:0===a})),[a]);return Ve({ourProps:{ref:i,id:r},theirProps:o,slot:s,defaultTag:"h2",name:"Dialog.Title"})})),Cr=Object.assign(ur,{Backdrop:dr,Panel:fr,Overlay:pr,Title:mr,Description:kt});var hr=t=>{const{showPopup:n,setShowPopup:r,popupContent:o,popupAccept:a,popupCancel:l}=t,i=(0,e.useRef)(null);return(0,e.createElement)(rn.Root,{show:n,as:e.Fragment},(0,e.createElement)(Cr,{as:"div",className:"fixed backdrop-blur-sm inset-0 overflow-y-auto",style:{zIndex:99999},initialFocus:i,onClose:r},(0,e.createElement)("div",{className:"flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0"},(0,e.createElement)(rn.Child,{as:e.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},(0,e.createElement)("div",{className:"fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity"})),(0,e.createElement)("span",{className:"hidden sm:inline-block sm:align-middle sm:h-screen","aria-hidden":"true"},"​"),(0,e.createElement)(rn.Child,{as:e.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},(0,e.createElement)("div",{className:"inline-block align-bottom bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:align-middle sm:max-w-lg sm:w-full sm:p-6"},(0,e.createElement)("div",{className:"sm:flex sm:items-start"},(0,e.createElement)("div",{className:"mx-auto flex-shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-red-50 sm:mx-0 sm:h-16 sm:w-16"},(0,e.createElement)("svg",{className:"h-8 w-8 stroke-red-600",viewBox:"0 0 34 33",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("path",{d:"M17 9.83333V16.5M17 23.1667H17.0167M32 16.5C32 24.7843 25.2843 31.5 17 31.5C8.71573 31.5 2 24.7843 2 16.5C2 8.21573 8.71573 1.5 17 1.5C25.2843 1.5 32 8.21573 32 16.5Z",strokeWidth:"3",strokeLinecap:"round",strokeLinejoin:"round"}))),(0,e.createElement)("div",{className:"mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left"},(0,e.createElement)(Cr.Title,{as:"h3",className:"text-2xl font-semibold text-slate-800"},o.title),(0,e.createElement)("p",{className:"mt-2 text-sm text-slate-500"},o.description))),(0,e.createElement)("div",{className:"mt-6 sm:flex sm:flex-row sm:ml-20"},(0,e.createElement)("button",{type:"button",className:"w-full inline-flex justify-center rounded border border-transparent shadow-sm px-4 py-2 bg-red-600 text-base font-medium text-white focus:bg-red-700 hover:bg-red-700 focus:outline-none sm:mr-3 sm:w-auto sm:text-sm",onClick:a.callback},a.label),(0,e.createElement)("button",{type:"button",className:"mt-3 w-full inline-flex justify-center rounded border border-slate-200 shadow-sm px-4 py-2 bg-white text-base font-medium text-slate-800 focus:bg-gray-50 hover:bg-gray-50 focus:outline-none sm:mt-0 sm:w-auto sm:text-sm",onClick:l.callback,ref:i},l.label)))))))},vr=window.wp.hooks,gr=()=>{const[n,r]=(0,e.useState)(zip_ai_react?.is_ai_assistant_enabled?"enabled":"disabled"),[o,l]=(0,e.useState)(!1),i=zip_ai_react.credit_details;let c="bg-green-500";switch(!0){case i?.percentage>=i.threshold.high:c="bg-red-500";break;case i?.percentage>=i.threshold.medium:c="bg-amber-500"}return(0,e.createElement)(e.Fragment,null,(0,e.createElement)("main",{className:"py-10"},(0,e.createElement)("div",{className:"max-w-3xl mx-auto px-6 lg:max-w-7xl"},(0,e.createElement)("div",{className:"flex justify-center gap-4 items-start lg:gap-5 xl:gap-10"},(0,e.createElement)("div",{className:"space-y-4 flex h-full flex-col justify-start lg:space-y-5 xl:space-y-10"},(0,vr.applyFilters)("zip_ai_before_welcome_sidebar"),(0,e.createElement)(e.Fragment,null,(0,vr.applyFilters)("zip_ai_render_credits_card",!0)&&(0,e.createElement)("section",{className:"box-border flex-1 flex flex-col gap-4 p-6 rounded-lg bg-white shadow-sm overflow-hidden transition hover:shadow-hover"},(0,e.createElement)("div",{className:"flex gap-2 pb-4 items-start justify-between w-full"},(0,e.createElement)("h3",{className:"text-sm font-semibold text-slate-500"},(0,vr.applyFilters)("zip_ai_credits_card_header",(0,t.__)("Words Written","ultimate-addons-for-gutenberg"))),(0,e.createElement)("a",{className:"flex items-center gap-1 px-2 py-0.5 rounded-full text-xs bg-violet-50 text-slate-500",href:zip_ai_react?.credit_topup_url,target:"_blank",rel:"noreferrer noopener"},(0,vr.applyFilters)("zip_ai_credits_card_link_content",(0,t.__)("Get more Credits","ultimate-addons-for-gutenberg")),function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:a,height:a,viewBox:"0 0 12 12",fill:s,...t},(0,e.createElement)("path",{d:"M5 3H3C2.44772 3 2 3.44772 2 4V9C2 9.55228 2.44772 10 3 10H8C8.55228 10 9 9.55228 9 9V7M7 2H10M10 2V5M10 2L5 7",...u,...n}))}({width:12,height:12}))),(0,e.createElement)("div",{className:"flex gap-2 items-center justify-between w-full"},(0,e.createElement)("div",{className:"flex items-end gap-1"},(0,e.createElement)("span",{className:"text-2xl leading-7 font-semibold text-slate-800"},yt(i.used)),(0,e.createElement)("span",{className:"text-sm font-semibold text-slate-500"},(0,t.sprintf)(/* translators: %s: number of words */
(0,t.__)("of %s","ultimate-addons-for-gutenberg"),yt(i.total))))),(0,e.createElement)("div",{className:"zip-ai__data-bar bg-slate-200"},(0,e.createElement)("div",{className:Et(["zip-ai__data-bar--progress",c]),style:{width:`${i.percentage}%`}})))),(0,e.createElement)(e.Fragment,null,(0,vr.applyFilters)("zip_ai_render_enable_card",!0)&&(0,e.createElement)("section",{className:"box-border rounded-lg flex flex-col gap-4 p-6 bg-white shadow-sm overflow-hidden transition hover:shadow-hover"},(0,e.createElement)("div",{className:"flex w-full items-center justify-between"},(0,e.createElement)("h3",{className:"text-slate-800 text-xl font-medium"},(0,vr.applyFilters)("zip_ai_render_enable_card_header",(0,t.__)("Enable Zip AI","ultimate-addons-for-gutenberg"))),(0,e.createElement)(Dt,{checked:"enabled"===n,onChange:()=>{const e="enabled"===n?"disabled":"enabled";r(e);const t=new FormData;t.append("action","zip_ai_toggle_assistant_status_ajax"),t.append("nonce",zip_ai_react.admin_nonce),t.append("enable_zip_chat",e),fetch(zip_ai_react.ajax_url,{method:"POST",credentials:"same-origin",body:t}).then((e=>e.json())).then((e=>{if(!e.success)throw new Error})).catch((()=>{r(n)}))},className:Et(["enabled"===n?"bg-spec":"bg-slate-200","relative inline-flex flex-shrink-0 h-5 w-[2.4rem] items-center border-2 border-transparent rounded-full cursor-pointer transition-colors ease-in-out duration-200 focus:outline-none"])},(0,e.createElement)("span",{"aria-hidden":"true",className:Et(["enabled"===n?"translate-x-5":"translate-x-0","pointer-events-none inline-block h-3.5 w-3.5 rounded-full bg-white shadow transform ring-0 transition ease-in-out duration-200"])}))),(0,e.createElement)("p",{className:"text-slate-500 text-sm"},(0,vr.applyFilters)("zip_ai_render_enable_card_description",(0,t.__)("You can easily enable or disable Zip AI from this section. Simply toggle the switch on or off with a single click.","ultimate-addons-for-gutenberg"))))),(0,e.createElement)("section",{className:"box-border rounded-lg flex flex-col items-start gap-4 p-6 bg-white shadow-sm overflow-hidden transition hover:shadow-hover"},(0,e.createElement)("h3",{className:"text-slate-800 text-xl font-medium"},(0,t.__)("Zip is Authorized","ultimate-addons-for-gutenberg"),(0,e.createElement)(bt.Dashicon,{icon:"yes",className:"text-2xl leading-7 text-green-500"})),(0,e.createElement)("p",{className:"text-slate-500 text-sm"},(0,t.__)("Your website is connected to AI. You can disconnect at any time.","ultimate-addons-for-gutenberg")),(0,e.createElement)("button",{className:"mt-2 w-auto text-base text-spec focus:text-spec focus-visible:text-spec-hover active:text-spec-hover hover:text-spec-hover border border-spec rounded-md px-4 py-2 transition duration-150 ease-in-out",onClick:()=>{l(!0)},target:"_blank",rel:"noreferrer"},(0,vr.applyFilters)("zip_ai_render_revoke_card_button",(0,t.__)("Revoke Access","ultimate-addons-for-gutenberg")))),(0,vr.applyFilters)("zip_ai_after_welcome_sidebar"))))),(0,e.createElement)(hr,{showPopup:o,setShowPopup:l,popupContent:{title:(0,t.__)("Revoke Access","ultimate-addons-for-gutenberg"),description:`${(0,t.__)("Are you sure you want to disconnect?","ultimate-addons-for-gutenberg")}\n${(0,t.__)("You will need to reconnect to use AI features again.","ultimate-addons-for-gutenberg")}`},popupAccept:{label:(0,t.__)("Revoke","ultimate-addons-for-gutenberg"),callback:()=>{localStorage.removeItem("zipAiAuthorizationStatus"),window.location.assign(zip_ai_react.auth_revoke_url)}},popupCancel:{label:(0,t.__)("Cancel","ultimate-addons-for-gutenberg"),callback:()=>{l(!1)}}}))},yr=()=>{const n=new URLSearchParams(fe(ae).location.search).get("page");return zip_ai_react.page_slug!==n?(0,e.createElement)("p",null,(0,t.__)("Default route fallback","ultimate-addons-for-gutenberg")):(0,e.createElement)(gr,null)},Er=()=>((0,e.useEffect)((()=>{zip_ai_react?.is_authorized&&!localStorage.getItem("zipAiAuthorizationStatus")&&localStorage.setItem("zipAiAuthorizationStatus",!0)}),[]),(0,e.createElement)(pe,null,(0,e.createElement)(wt,{title:(0,t.__)("Zip - Your AI Assistant","ultimate-addons-for-gutenberg")}),(0,e.createElement)(de,null,(0,e.createElement)(ue,{path:"/"},(0,e.createElement)(yr,null)))));(0,e.render)((0,e.createElement)((()=>zip_ai_react?.is_authorized?(0,e.createElement)(Er,null):(0,e.createElement)(_,null)),null),document.getElementById("zip-ai-dashboard-app"))}()}();PK�][M��=�=Iultimate-addons-for-gutenberg/lib/zip-ai/classes/admin-configurations.phpnu�[���<?php
/**
 * Zip AI - Admin Configurations.
 *
 * @package zip-ai
 */

namespace ZipAI\Classes;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Classes to be used, in alphabetical order.
use ZipAI\Classes\Helper;
use ZipAI\Classes\Module;
use ZipAI\Classes\Utils;

/**
 * The Admin_Configurations Class.
 */
class Admin_Configurations {

	/**
	 * The menu slug.
	 *
	 * @since 1.0.0
	 * @var string Menu slug.
	 */
	private $menu_slug = ZIP_AI_MENU_SLUG;

	/**
	 * Instance of this class.
	 *
	 * @since 1.0.0
	 * @var object Class object.
	 */
	private static $instance;

	/**
	 * Custom Capability
	 *
	 * @since 1.1.8
	 * @access public
	 * @var string capabilities.
	 */
	public static $custom_capability = 'manage_zip_ai_assistant';

	/**
	 * Initiator of this class.
	 *
	 * @since 1.0.0
	 * @return object initialized object of this class.
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Constructor of this class.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function __construct() {
		// Setup the Admin Scripts.
		// add_action( 'admin_init', array( $this, 'settings_admin_scripts' ) ); - This can be added later if required.

		// Verify Zip AI Authorization.
		add_action( 'admin_init', array( $this, 'verify_authorization' ) );
		/**
		 * This action hook is used to add custom capabilities to the administrator role.
		 * The custom capability is 'manage_zip_ai_assistant'.
		 * This action hook is triggered when the admin initiates, meaning when the admin
		 * goes to the admin dashboard, this action hook is triggered.
		 * The priority of this action hook is set to 10, meaning it will be executed before
		 * other action hooks with lower priorities.
		 * The callback function for this action hook is the 'add_custom_capabilities' method
		 * of the same class.
		 */
		add_action( 'admin_init', array( $this, 'add_custom_capabilities' ), 10 );

		// Setup the Admin Menu Page.
		// add_action( 'admin_menu', array( $this, 'setup_menu_page' ) ); - This can be added later if required.

		// Setup the Admin Ajax Actions.
		add_action( 'wp_ajax_zip_ai_toggle_assistant_status_ajax', array( $this, 'toggle_assistant_status_ajax' ) );
		add_action( 'wp_ajax_zip_ai_disabler_ajax', array( $this, 'disabler_ajax' ) );
	}

	/**
	 * Add custom capabilities.
	 *
	 * @since 1.1.8
	 * @return void
	 */
	public function add_custom_capabilities() {
		// Remove the custom capability from all roles except the roles specified in the filter.
		$this->remove_custom_capability_from_other_roles();

		/**
		 * Get the additional roles to add the custom capability.
		 *
		 * The additional roles are filtered by the `zip_ai_assistant_capability_additional_roles` filter.
		 * If this filter is not used, then only the 'administrator' role will get the custom capability.
		 * The default additional roles are 'administrator' and 'editor'.
		 *
		 * @since 1.1.8
		 *
		 * @return array The additional roles to add the custom capability.
		 */
		$roles = apply_filters(
			'zip_ai_assistant_capability_additional_roles',
			array( 'administrator', 'editor' )
		);

		// Loop through each role and add the custom capability to the role object.
		foreach ( $roles as $role_slug ) {
			// Get the role object by the role slug.
			$role_object = get_role( $role_slug );

			// Check if the role object exists.
			if ( $role_object ) {
				// Add the custom capability to the role object.
				$role_object->add_cap( self::$custom_capability );
			}
		}
	}

	/**
	 * Remove custom capabilities.
	 *
	 * @since 1.1.8
	 * @return void
	 */
	public function remove_custom_capability_from_other_roles() {
		// Set the default role to retain the custom capability.
		$default_role = 'administrator';

		// Get the default role object.
		$default_role_object = get_role( $default_role );

		// Remove the custom capability from all roles except the default role.
		// Here, we are iterating through all the roles and removing the custom capability
		// from each role except the default role.
		if ( $default_role_object ) {
			// Get all the role names.
			$roles = wp_roles()->role_names;

			// Exclude the default role from the list of roles.
			unset( $roles[ $default_role ] );

			// Loop through each role.
			foreach ( $roles as $role_slug => $role_name ) {
				// Get the role object by the role slug.
				$role_object = get_role( $role_slug );

				// Check if the role object exists and if the role object has the custom capability.
				if ( $role_object && $role_object->has_cap( self::$custom_capability ) ) {
					// Remove the custom capability from the role object.
					$role_object->remove_cap( self::$custom_capability );
				}
			}
		}
	}


	/**
	 * Add the Zip AI menu page.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function setup_menu_page() {
		// If the current user does not have the required capability, then abandon ship.
		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}

		$capability = 'manage_options';

		// Add the Zip AI Submenu.
		add_submenu_page(
			apply_filters( 'zip_ai_parent_page', 'none' ), // The parent page of this menu.
			apply_filters( 'zip_ai_page_title', 'Zip - AI Assistant' ), // The page title.
			apply_filters( 'zip_ai_menu_title', 'Zip - AI Assistant' ), // The menu title.
			apply_filters( 'zip_ai_menu_capability', $capability ), // The capability required for access to this page.
			$this->menu_slug, // The menu slug.
			array( $this, 'render_dashboard' ), // The rendered output function.
			apply_filters( 'zip_ai_menu_position', 1 ) // The position of this menu item in the menu.
		);
	}

	/**
	 * Verify if the user was given authorization to use Zip AI.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function verify_authorization() {
		// If the current user does not have the required capability or the referrer is empty, then abandon ship.
		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}

		// Get the nonce.
		$nonce = ( isset( $_GET['nonce'] ) ) ? sanitize_key( $_GET['nonce'] ) : '';

		// If the nonce is not valid, or if there's no token, then abandon ship.
		if ( false === wp_verify_nonce( $nonce, 'zip_ai_auth_nonce' ) ) {
			return;
		}

		// Redirect to the settings page if the user is trying to revoke the token.
		if ( isset( $_GET['revoke_zip_ai_authorization_token'] ) && 'definitely' === sanitize_text_field( $_GET['revoke_zip_ai_authorization_token'] ) ) {

			// Clear out the Zip AI settings and disconnect the user.
			Helper::update_admin_settings_option( 'zip_ai_settings', [ 'status' => 'disconnected' ] );

			// Redirect to the settings page.
			$redirection_url = apply_filters( 'zip_ai_revoke_redirection_url', admin_url() );
			wp_safe_redirect( $redirection_url );
			exit;
		}//end if

		// If none of the required data is received, abandon ship.
		if ( ! isset( $_GET['credit_token'] ) && ! isset( $_GET['token'] ) && ! isset( $_GET['email'] ) ) {
			return;
		}

		// Get the existing options, and update the auth token before updating the option.
		$db_settings_options = Helper::get_setting();

		// At this point, the user is connected with Zip AI.
		$db_settings_options['status'] = 'connected';

		// Update the auth token if needed.
		if ( isset( $_GET['credit_token'] ) && is_string( $_GET['credit_token'] ) ) {
			$db_settings_options['auth_token'] = Utils::encrypt( sanitize_text_field( $_GET['credit_token'] ) );
		}

		// Update the Zip token if needed.
		if ( isset( $_GET['token'] ) && is_string( $_GET['token'] ) ) {
			$db_settings_options['zip_token'] = Utils::encrypt( sanitize_text_field( $_GET['token'] ) );
		}

		// Update the email if needed.
		if ( isset( $_GET['email'] ) && is_string( $_GET['email'] ) ) {
			$db_settings_options['email'] = sanitize_email( $_GET['email'] );
		}

		// Update the Zip AI settings.
		Helper::update_admin_settings_option( 'zip_ai_settings', $db_settings_options );

		// Redirect to the settings page.
		if ( apply_filters( 'zip_ai_auth_redirection_flag', true ) ) {
			$redirection_url = apply_filters( 'zip_ai_auth_redirection_url', admin_url( 'admin.php?page=zip-ai' ) );
			wp_safe_redirect( $redirection_url );
			exit;
		}
	}

	/**
	 * Setup the Ajax Event to Entirely Disable the Zip AI Library from loading.
	 *
	 * @since 1.0.5
	 * @return void
	 */
	public function disabler_ajax() {
		// If the current user does not have the required capability, then abandon ship.
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		// Verify the nonce.
		check_ajax_referer( 'zip_ai_admin_nonce', 'nonce' );

		// Have a variable to check if the module was disabled.
		$is_module_disabled = false;

		// Check if the Zip AI Assistant was requested to be disabled.
		if ( ! empty( $_POST['disable_zip_ai_assistant'] ) ) {
			$is_module_disabled = Module::disable( 'ai_assistant' );
		}

		// Send the status based on whether the Zip AI Library is enabled or not.
		if ( $is_module_disabled ) {
			wp_send_json_success();
		} else {
			wp_send_json_error();
		}
	}

	/**
	 * Setup the AI Assistant Toggle Ajax.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function toggle_assistant_status_ajax() {
		// If the current user does not have the required capability, then abandon ship.
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		// Verify the nonce.
		check_ajax_referer( 'zip_ai_admin_nonce', 'nonce' );

		// If the Zip options is not an array, then send an error.
		if ( empty( $_POST['enable_zip_chat'] ) || ! is_string( $_POST['enable_zip_chat'] ) ) {
			wp_send_json_error();
		}

		// Create a variable to check if the assistant module was toggled.
		$is_module_toggled = false;

		// Update the enabled status.
		if ( 'enabled' === sanitize_text_field( $_POST['enable_zip_chat'] ) ) {
			$is_module_toggled = Module::enable( 'ai_assistant' );
		} else {
			$is_module_toggled = Module::disable( 'ai_assistant' );
		}

		// Send the status based on whether the module was toggled.
		if ( $is_module_toggled ) {
			wp_send_json_success();
		} else {
			wp_send_json_error();
		}
	}

	/**
	 * Render the Zip AI Admin Settings Page.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function render_dashboard() {
		// Render the dashboard app div.
		?>
		<div id="zip-ai__dashboard-app--wrapper">
			<div id="zip-ai-dashboard-app" class="zip-ai-dashboard-app"></div>
		</div>
		<?php
	}

	/**
	 * Load the Admin Settings and Scripts on initialization.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function settings_admin_scripts() {

		// If the current page is not the Zip AI Settings page, then abandon ship.
		if ( empty( $_GET['page'] ) || ( $this->menu_slug !== $_GET['page'] ) ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended
			return;
		}

		// Enqueue the Admin Styles and Scripts for the React App.
		add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles_and_scripts' ) );

		// Add the footer link if needed.
		if ( Helper::is_authorized() ) {
			// Add the footer link.
			add_filter( 'admin_footer_text', array( $this, 'add_footer_link' ), 99 );
		}
	}


	/**
	 * Enqueues the needed CSS/JS for Zip AI's admin settings page.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function enqueue_styles_and_scripts() {

		if ( class_exists( '\UAGB_Admin_Helper' ) && method_exists( '\UAGB_Admin_Helper', 'should_exclude_assets_for_cpt' ) ) {
			if ( \UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}
		}

		// Enqueue the admin Google Fonts and WP Components.
		$admin_slug = 'zip-ai-admin';
		wp_enqueue_style(
			$admin_slug . '-font',
			'https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap',
			array(),
			ZIP_AI_VERSION
		);
		wp_enqueue_style( 'wp-components' );

		// Set the default credit details.
		$credit_details = array(
			'used'       => 0,
			'total'      => 0,
			'threshold'  => array(
				'medium' => ZIP_AI_CREDIT_THRESHOLD_MEDIUM,
				'high'   => ZIP_AI_CREDIT_THRESHOLD_HIGH,
			),
			'percentage' => 0,
		);

		// Get the response from the endpoint.
		$response = Helper::get_credit_server_response( 'usage' );

		// If the response is not an error, then update the credit details.
		if (
			empty( $response['error'] )
			&& ! empty( $response['total_credits'] )
		) {
			$credit_details['used']       = ! empty( $response['total_used_credits'] ) ? $response['total_used_credits'] : 0;
			$credit_details['total']      = $response['total_credits'];
			$credit_details['percentage'] = intval( ( $credit_details['used'] / $credit_details['total'] ) * 100 );
		}

		// Add the data to localize.
		$localize = apply_filters(
			'zip_ai_admin_localize',
			array(
				'admin_url'               => admin_url(),
				'ajax_url'                => admin_url( 'admin-ajax.php' ),
				'auth_middleware'         => Helper::get_auth_middleware_url(),
				'auth_revoke_url'         => Helper::get_auth_revoke_url(),
				'credit_topup_url'        => ZIP_AI_CREDIT_TOPUP_URL,
				'is_authorized'           => Helper::is_authorized(),
				'is_ai_assistant_enabled' => Module::is_enabled( 'ai_assistant' ),
				'admin_nonce'             => wp_create_nonce( 'zip_ai_admin_nonce' ),
				'page_slug'               => $this->menu_slug,
				'credit_details'          => Helper::get_credit_details(),
			)
		);

		// Enqueue the admin scripts.
		$this->localize_and_enqueue_admin_scripts( $localize );
	}

	/**
	 * Localize and Enqueue the Admin Scripts.
	 *
	 * @param array $localize The data to localize.
	 * @since 1.0.0
	 * @return void
	 */
	public function localize_and_enqueue_admin_scripts( $localize ) {
		// Set the required variables.
		$handle            = 'zip-ai-admin-settings';
		$build_path        = ZIP_AI_DIR . 'admin/dashboard-app/build/';
		$build_url         = ZIP_AI_URL . 'admin/dashboard-app/build/';
		$script_asset_path = $build_path . 'dashboard-app.asset.php';
		$script_info       = file_exists( $script_asset_path )
			? include $script_asset_path
			: array(
				'dependencies' => array(),
				'version'      => ZIP_AI_VERSION,
			);
		$script_dep        = array_merge( $script_info['dependencies'], array( 'updates' ) );

		// Register the admin scripts.
		wp_register_script(
			$handle,
			$build_url . 'dashboard-app.js',
			$script_dep,
			$script_info['version'],
			true
		);

		// Register the admin styles.
		wp_register_style(
			$handle,
			$build_url . 'dashboard-app.css',
			array(),
			ZIP_AI_VERSION
		);

		// Register the admin Google Fonts.
		wp_register_style(
			'zip-ai-admin-google-fonts',
			'https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap',
			array(),
			ZIP_AI_VERSION
		);

		// Enqueue the admin scripts.
		wp_enqueue_script( $handle );
		// Set the script translations.
		wp_set_script_translations( $handle, apply_filters( 'zip_ai_library_textdomain', 'zip-ai' ) );
		// Enqueue the Google Fonts.
		wp_enqueue_style( 'zip-ai-admin-google-fonts' );
		// Enqueue the admin styles.
		wp_enqueue_style( $handle );
		// Set the RTL styles.
		wp_style_add_data( $handle, 'rtl', 'replace' );
		// Localize the script.
		wp_localize_script( $handle, 'zip_ai_react', $localize );
	}

	/**
	 * Add the footer link.
	 *
	 * @since 1.0.0
	 * @return string The footer link.
	 */
	public function add_footer_link() {
		return '<span id="footer-thankyou">' . sprintf(
			/* translators: %1$s: HTML link start tag, %2$s: HTML link end tag. */
			__( 'Thank you for using %1$sZip AI.%2$s', 'ultimate-addons-for-gutenberg' ),
			'<a href="https://wpspectra.com/zip-ai/" class="focus:text-spec-hover active:text-spec-hover hover:text-spec-hover" target="_blank" rel="noopener noreferrer">',
			'</a>'
		) . '</span>';
	}
}
PK�][Lxi��:ultimate-addons-for-gutenberg/lib/zip-ai/classes/utils.phpnu�[���<?php
/**
 * Zip AI - Utils.
 *
 * This file contains all the utility functions of Zip AI.
 * Utilities manipulate data and perform actions that are not directly related to the library.
 *
 * @package zip-ai
 */

namespace ZipAI\Classes;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * The Utils Class.
 */
class Utils {
	/**
	 * Encrypt data using base64.
	 *
	 * @param string $input The input string which needs to be encrypted.
	 * @since 1.0.0
	 * @return string The encrypted string.
	 */
	public static function encrypt( $input ) {
		// If the input is empty or not a string, then abandon ship.
		if ( empty( $input ) || ! is_string( $input ) ) {
			return '';
		}

		// Encrypt the input and return it.
		$base_64 = base64_encode( $input ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
		$encode  = rtrim( $base_64, '=' );
		return $encode;
	}

	/**
	 * Decrypt data using base64.
	 *
	 * @param string $input The input string which needs to be decrypted.
	 * @since 1.0.0
	 * @return string The decrypted string.
	 */
	public static function decrypt( $input ) {
		// If the input is empty or not a string, then abandon ship.
		if ( empty( $input ) || ! is_string( $input ) ) {
			return '';
		}

		// Decrypt the input and return it.
		$base_64 = $input . str_repeat( '=', strlen( $input ) % 4 );
		$decode  = base64_decode( $base_64 ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode
		return $decode;
	}
}
PK�][𿷨F�F;ultimate-addons-for-gutenberg/lib/zip-ai/classes/helper.phpnu�[���<?php
/**
 * Zip AI - Helper.
 *
 * This file contains the helper functions of Zip AI.
 * Helpers are functions that are used throughout the library.
 *
 * @package zip-ai
 */

namespace ZipAI\Classes;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Classes to be used, in alphabetical order.
use ZipAI\Classes\Utils;

/**
 * The Helper Class.
 */
class Helper {
	/**
	 * Get an option from the database.
	 *
	 * @param string  $key              The option key.
	 * @param mixed   $default          The option default value if option is not available.
	 * @param boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
	 * @since 1.0.0
	 * @return mixed  The option value.
	 */
	public static function get_admin_settings_option( $key, $default = false, $network_override = false ) {
		// Get the site-wide option if we're in the network admin.
		return $network_override && is_multisite() ? get_site_option( $key, $default ) : get_option( $key, $default );
	}

	/**
	 * Update an option from the database.
	 *
	 * @param string $key              The option key.
	 * @param mixed  $value            The value to update.
	 * @param bool   $network_override Whether to allow the network_override admin setting to be overridden on subsites.
	 * @since 1.0.0
	 * @return bool True if the option was updated, false otherwise.
	 */
	public static function update_admin_settings_option( $key, $value, $network_override = false ) {
		// Update the site-wide option if we're in the network admin, and return the updated status.
		return $network_override && is_multisite() ? update_site_option( $key, $value ) : update_option( $key, $value );
	}

	/**
	 * Delete an option from the database for.
	 *
	 * @param string  $key              The option key.
	 * @param boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
	 * @since 1.0.0
	 * @return void
	 */
	public static function delete_admin_settings_option( $key, $network_override = false ) {
		// Delete the site-wide option if we're in the network admin.
		if ( $network_override && is_multisite() ) {
			delete_site_option( $key );
		} else {
			delete_option( $key );
		}
	}

	/**
	 * Check if Zip AI is authorized.
	 *
	 * @since 1.0.0
	 * @return boolean True if Zip AI is authorized, false otherwise.
	 */
	public static function is_authorized() {
		// Get the Zip AI settings.
		$existing_settings = self::get_admin_settings_option( 'zip_ai_settings' );

		// If the Zip AI settings are empty, return false.
		if ( empty( $existing_settings ) || ! is_array( $existing_settings ) ) {
			return false;
		}

		// Return true if the auth token is set and is a string.
		return (
			! empty( $existing_settings['auth_token'] )
			&& is_string( $existing_settings['auth_token'] )
			&& ! empty( trim( $existing_settings['auth_token'] ) )
		);
	}

	/**
	 * Get the Zip AI Settings.
	 *
	 * If used with a key, it will return that specific setting.
	 * If used without a key, it will return the entire settings array.
	 *
	 * @param string $key The setting key.
	 * @param mixed  $default The default value to return if the setting is not found.
	 * @since 1.0.0
	 * @return mixed|array The setting value, or the default.
	 */
	public static function get_setting( $key = '', $default = array() ) {

		// Get the Zip AI settings.
		$existing_settings = self::get_admin_settings_option( 'zip_ai_settings' );

		// If the Zip AI settings are empty, return the fallback.
		if ( empty( $existing_settings ) || ! is_array( $existing_settings ) ) {
			return $default;
		}

		// If the key is empty, return the entire settings array - otherwise return the specific setting or the fallback.
		if ( empty( $key ) ) {
			return $existing_settings;
		} else {
			return isset( $existing_settings[ $key ] ) ? $existing_settings[ $key ] : $default;
		}
	}

	/**
	 * Get the Zip AI Response from the Zip Credit Server.
	 *
	 * @param string $endpoint The endpoint to get the response from.
	 * @param array  $body The data to be passed as the request body, if any.
	 * @param array  $extra_args Extra arguments to be passed to the request, if any.
	 * @since 1.0.0
	 * @return array The Zip AI Response.
	 */
	public static function get_credit_server_response( $endpoint, $body = [], $extra_args = [] ) {
		// If the endpoint is not a string, then abandon ship.
		if ( ! is_string( $endpoint ) ) {
			return array(
				'error' => __( 'The Zip AI Endpoint was not declared', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Get the Auth Token from the Zip AI Settings.
		$auth_token = self::get_decrypted_auth_token();

		// If the Zip Auth Token is not set, then abandon ship.
		if ( empty( $auth_token ) || ! is_string( $auth_token ) ) {
			return array(
				'error' => __( 'The Zip AI Auth Token is not set.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Set the API URL.
		$api_url  = ZIP_AI_CREDIT_SERVER_API . $endpoint;
		$api_args = array(
			'headers' => array(
				'Authorization' => 'Bearer ' . $auth_token,
			),
			'timeout' => 30, // phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout -- 30 seconds is required sometime for open ai responses
		);

		// If the data array was passed, add it to the args.
		if ( ! empty( $body ) && is_array( $body ) ) {
			$api_args['body'] = $body;
		}

		// If there are any extra arguments, then we can overwrite the required arguments.
		if ( ! empty( $extra_args ) && is_array( $extra_args ) ) {
			$api_args = array_merge(
				$api_args,
				$extra_args
			);
		}

		// Get the response from the endpoint.
		$response = wp_remote_post(
			$api_url,
			$api_args
		);

		// If the response was an error.
		if ( is_wp_error( $response ) || empty( $response ) ) {
			$error_message = __( 'Empty response from API.', 'ultimate-addons-for-gutenberg' );
			$error_code    = __( 'empty_response', 'ultimate-addons-for-gutenberg' );

			if ( is_wp_error( $response ) ) {
				$error_message = $response->get_error_message();
				$error_code    = $response->get_error_code();
			}

			return array(
				'error' => $error_message,
				'code'  => $error_code,
			);
		}

		// Get the response body.
		$response_body = wp_remote_retrieve_body( $response );
		$response_body = json_decode( $response_body, true );
		$status_code   = wp_remote_retrieve_response_code( $response );

		// Check if the status code is 403 or 401 error.
		if ( 401 === $status_code || 403 === $status_code ) {
			$error_message = isset( $response_body['error'] ) ? $response_body['error'] : __( 'You do not have permission to perform this action.', 'ultimate-addons-for-gutenberg' );
			$error_code    = isset( $response_body['code'] ) ? $response_body['code'] : 'forbidden';

			return array(
				'error' => $error_message,
				'code'  => $error_code,
			);
		}

		// If the response body is not a JSON, then abandon ship.
		if ( 200 !== $status_code || empty( $response_body ) ) {
			$error_message = __( 'Encountered an error while processing your request. Please try again.', 'ultimate-addons-for-gutenberg' );
			$error_code    = 'unknown_error';

			return array(
				'error' => $error_message,
				'code'  => $error_code,
			);
		}

		// Return the response body.
		return $response_body;
	}

	/**
	 * Get a response from the ZipWP API server.
	 *
	 * @param string $endpoint The endpoint to get the response from.
	 * @since 1.1.2
	 * @return array The ZipWP API Response.
	 */
	public static function get_zipwp_api_response( $endpoint ) {
		// If the endpoint is not a string, then abandon ship.
		if ( ! is_string( $endpoint ) ) {
			return array(
				'error' => __( 'The ZipWP Endpoint was not declared', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Get the ZipWP Token from the Zip AI Settings.
		$zipwp_token = self::get_decrypted_zipwp_token();

		// If the ZipWP Token is not set, then abandon ship.
		if ( empty( $zipwp_token ) || ! is_string( $zipwp_token ) ) {
			return array(
				'error' => __( 'The ZipWP Token is not set.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Set the API URL.
		$api_url = ZIP_AI_ZIPWP_API . $endpoint;

		// Get the response from the endpoint.
		$response = wp_remote_get(
			$api_url,
			array(
				'headers'   => array(
					'Content-Type'  => 'application/json',
					'Accept'        => 'application/json',
					'Authorization' => 'Bearer ' . $zipwp_token,
				),
				'sslverify' => false,
				'timeout'   => 30, // phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout -- 30 seconds is required sometime for the ZipWP API response
			)
		);

		// If the response was an error, or not a 200 status code, then abandon ship.
		if ( is_wp_error( $response ) || empty( $response['response'] ) || 200 !== wp_remote_retrieve_response_code( $response ) ) {
			return array(
				'error' => __( 'The ZipWP API server is not responding.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Get the response body.
		$response_body = wp_remote_retrieve_body( $response );

		// If the response body is not a JSON, then abandon ship.
		if ( empty( $response_body ) || ! json_decode( $response_body ) ) {
			return array(
				'error' => __( 'The ZipWP API server encountered an error.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Return the response body.
		return json_decode( $response_body, true );
	}

	/**
	 * Get the decrypted token from the Zip AI Settings.
	 *
	 * @param string $token_name The name of the token.
	 * @since 1.1.2
	 * @return string The decrypted token.
	 */
	private static function get_decrypted_token( $token_name ) {
		// Get the Zip AI Settings.
		$zip_ai_token = self::get_setting( $token_name );

		// Return early if the ZipWP token is not set.
		if ( empty( $zip_ai_token ) || ! is_string( $zip_ai_token ) ) {
			return '';
		}

		// Return the decrypted ZipWP token.
		return ! empty( trim( $zip_ai_token ) ) ? Utils::decrypt( $zip_ai_token ) : '';
	}

	/**
	 * Get the decrypted auth token.
	 *
	 * @since 1.0.0
	 * @return string The decrypted auth token.
	 */
	public static function get_decrypted_auth_token() {
		return self::get_decrypted_token( 'auth_token' );
	}

	/**
	 * Get the decrypted ZipWP token.
	 *
	 * @since 1.1.2
	 * @return string The decrypted ZipWP token.
	 */
	public static function get_decrypted_zipwp_token() {
		return self::get_decrypted_token( 'zip_token' );
	}

	/**
	 * Get cached credit details.
	 *
	 * @since 2.0.5
	 *
	 * @return array|false
	 */
	public static function get_cached_credit_details() {
		$cached = get_transient( 'zip_ai_credit_details' );
		return $cached ? json_decode( $cached, true ) : false;
	}

	/**
	 * Cache credit details.
	 *
	 * @since 2.0.5
	 *
	 * @param array $details   The credit details to cache.
	 * @param int   $duration  The cache duration in seconds.
	 * @return void
	 */
	public static function cache_credit_details( $details, $duration = 300 ) {
		// 5 minutes default
		set_transient( 'zip_ai_credit_details', wp_json_encode( $details ), $duration );
	}

	/**
	 * This helper function returns credit details.
	 *
	 * @since 2.0.5
	 * @return array
	 */
	public static function get_credit_details() {
		$cached = self::get_cached_credit_details();
		if ( false !== $cached ) {
			return $cached;
		}

		// Set the default credit details.
		$credit_details = array(
			'used'       => 0,
			'total'      => 0,
			'threshold'  => array(
				'medium' => ZIP_AI_CREDIT_THRESHOLD_MEDIUM,
				'high'   => ZIP_AI_CREDIT_THRESHOLD_HIGH,
			),
			'percentage' => 0,
			'status'     => 'success',
		);

		// Get the response from the endpoint.
		$response = self::get_credit_server_response( 'usage' );

		// If the response is not an error, then update the credit details.
		if (
			empty( $response['error'] )
			&& ! empty( $response['total_credits'] )
		) {
			$credit_details['used']       = ! empty( $response['total_used_credits'] ) ? $response['total_used_credits'] : 0;
			$credit_details['total']      = $response['total_credits'];
			$credit_details['percentage'] = intval( ( $credit_details['used'] / $credit_details['total'] ) * 100 );

			self::cache_credit_details( $credit_details );
		} else {
			$credit_details['status'] = 'error';
		}

		return $credit_details;
	}

	/**
	 * Get fresh credit details without cache.
	 *
	 * @since 2.0.5
	 * @return array
	 */
	public static function get_fresh_credit_details() {
		// Set the default credit details.
		$credit_details = array(
			'used'       => 0,
			'total'      => 0,
			'threshold'  => array(
				'medium' => ZIP_AI_CREDIT_THRESHOLD_MEDIUM,
				'high'   => ZIP_AI_CREDIT_THRESHOLD_HIGH,
			),
			'percentage' => 0,
			'status'     => 'success',
		);

		// Get the response from the endpoint.
		$response = self::get_credit_server_response( 'usage' );

		// If the response is not an error, then update the credit details.
		if (
			empty( $response['error'] )
			&& ! empty( $response['total_credits'] )
		) {
			$credit_details['used']       = ! empty( $response['total_used_credits'] ) ? $response['total_used_credits'] : 0;
			$credit_details['total']      = $response['total_credits'];
			$credit_details['percentage'] = intval( ( $credit_details['used'] / $credit_details['total'] ) * 100 );

			// Update cache with fresh data.
			self::cache_credit_details( $credit_details );
		} else {
			$credit_details['status'] = 'error';
		}

		return $credit_details;
	}

	/**
	 * This helper function returns the current plan details.
	 *
	 * @since 1.1.2
	 * @return array
	 */
	public static function get_current_plan_details() {
		// Get current auth token.
		$current_auth_token = self::get_decrypted_auth_token();

		// Get cached auth token.
		$cached_auth_token = get_transient( 'zip_ai_auth_token' );
		// If auth token has changed or doesn't exist, clear all caches.
		if ( $current_auth_token !== $cached_auth_token ) {
			delete_transient( 'zip_ai_current_plan_details' );
			delete_transient( 'zip_ai_credit_details' );
			// Cache the new auth token.
			set_transient( 'zip_ai_auth_token', $current_auth_token, DAY_IN_SECONDS );
		}

		// Check for cached response first.
		$cached_response = get_transient( 'zip_ai_current_plan_details' );
		if ( false !== $cached_response ) {
			return json_decode( $cached_response, true );
		}

		$current_plan_details = [];

		// Get the response from the endpoint.
		$response = self::get_zipwp_api_response( 'plan/current-plan' );

		// If the response is not an error, then use it - else create an error response array.
		if ( empty( $response['error'] ) && is_array( $response ) ) {
			$current_plan_details = $response;
			if ( empty( $current_plan_details['status'] ) ) {
				$current_plan_details['status'] = 'ok';
			}
		} else {
			$current_plan_details['status'] = 'error';
			if ( ! empty( $response['error'] ) ) {
				$current_plan_details['error'] = $response['error'];
			}
			return $current_plan_details; // Return error immediately without caching.
		}

		// Filter for developers to modify cache duration, default 24 hours.
		$cache_duration = apply_filters( 'zip_ai_plan_details_cache_duration', DAY_IN_SECONDS );

		// Validate cache duration.
		if ( ! is_numeric( $cache_duration ) ) {
			$cache_duration = DAY_IN_SECONDS;
		}

		// Ensure cache duration is between 1 minute and 1 week for optimal performance and freshness.
		$cache_duration = absint( $cache_duration );
		if ( $cache_duration < MINUTE_IN_SECONDS || $cache_duration > WEEK_IN_SECONDS ) {
			$cache_duration = DAY_IN_SECONDS;
		}

		// Cache the response with JSON encoding for security.
		set_transient( 'zip_ai_current_plan_details', wp_json_encode( $current_plan_details ), $cache_duration );

		return $current_plan_details;
	}

	/**
	 * Get the authorization middleware url.
	 *
	 * @param array $params An array of parameters to add to the middleware URL.
	 * @since 1.0.0
	 * @return string The authorization middleware url.
	 */
	public static function get_auth_middleware_url( $params = [] ) {

		// Create the Redirect URL.
		$redirect_url = add_query_arg(
			array(
				'nonce'         => wp_create_nonce( 'zip_ai_auth_nonce' ),
				'scs-authorize' => 'true',
			),
			admin_url()
		);

		// Create the Authentication URL.
		$auth_url = add_query_arg(
			apply_filters(
				'zip_ai_auth_middleware_args',
				array(
					'type'         => 'token',
					'redirect_url' => rawurlencode( $redirect_url ),
				)
			),
			ZIP_AI_MIDDLEWARE
		);

		// Add the plugin param if passed.
		if ( ! empty( $params['plugin'] ) && is_string( $params['plugin'] ) ) {
			$auth_url = add_query_arg(
				'plugin',
				sanitize_text_field( $params['plugin'] ),
				$auth_url
			);
		}

		// Add the source param if passed.
		if ( ! empty( $params['source'] ) && is_string( $params['source'] ) ) {
			$auth_url = add_query_arg(
				'source',
				sanitize_text_field( $params['source'] ),
				$auth_url
			);
		}

		// Add the affiliate param if passed.
		$affiliate = get_option( 'zipwp_partner_url_param', '' );
		$affiliate = is_string( $affiliate ) ? sanitize_text_field( $affiliate ) : '';

		if ( ! empty( $affiliate ) ) {
			$auth_url = add_query_arg(
				'aff',
				$affiliate,
				$auth_url
			);
		}

		return $auth_url;
	}

	/**
	 * Clear the credit details cache.
	 *
	 * @since 2.0.5
	 * @return void
	 */
	public static function clear_credit_details_cache() {
		delete_transient( 'zip_ai_credit_details' );
	}

	/**
	 * Clear the current plan cache.
	 *
	 * @since 2.0.5
	 * @return void
	 */
	public static function clear_current_plan_cache() {
		delete_transient( 'zip_ai_current_plan_details' );
	}

	/**
	 * Get the revoke url for the auth token and clear all caches.
	 *
	 * @since 1.0.0
	 * @return string The authorization revoke url.
	 */
	public static function get_auth_revoke_url() {

		$revoke_url = add_query_arg(
			apply_filters(
				'zip_ai_auth_revoke_args',
				array(
					array(
						'nonce' => wp_create_nonce( 'zip_ai_auth_nonce' ),
						'revoke_zip_ai_authorization_token' => 'definitely',
					),
					admin_url(),
				)
			)
		);

		return $revoke_url;
	}
}
PK�][�!g||;ultimate-addons-for-gutenberg/lib/zip-ai/classes/module.phpnu�[���<?php
/**
 * Zip AI - Module.
 *
 * This file is used to register and manage the Zip AI Modules.
 *
 * @package zip-ai
 */

namespace ZipAI\Classes;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Classes to be used, in alphabetical order.
use ZipAI\Classes\Helper;

/**
 * The Module Class.
 */
class Module {
	/**
	 * Private Variable of all the valid Zip AI Modules.
	 *
	 * @since 1.0.5
	 * @var array $valid_modules Array of all the available Zip AI Modules.
	 */
	private static $valid_modules = [
		'ai_assistant',
		'ai_design_copilot',
	];

	/**
	 * Update the status of Zip AI Module(s).
	 *
	 * @param string|array $module_name Name of the module or an array of module names.
	 * @param string       $status      Status of the module(s) to be updated.
	 * @since 1.0.5
	 * @return boolean True if Zip AI Module(s) status has been updated, false otherwise.
	 */
	private static function update_status( $module_name, $status ) {
		// If the status is not a valid status, return.
		if ( ! in_array( $status, [ 'enabled', 'disabled' ], true ) ) {
			return false;
		}

		// If the module name is a string, format it into an array.
		if ( is_string( $module_name ) && ! empty( trim( $module_name ) ) ) {
			$module_name = [ $module_name ];
		} elseif ( ! is_array( $module_name ) ) {
			return false;
		}

		// Get all the modules.
		$all_modules = self::get_all_modules();

		// Ensure that the modules that are to be updated are valid.
		$module_name = array_intersect( array_keys( $all_modules ), $module_name );

		// Modules from DB is an array of arrays, where the keys are the module names, and the values are an array of module data.
		// We need to update all the modules that are passed in the $module_name array, making their status as $status.
		array_walk(
			$all_modules,
			function( &$module, $module_key ) use ( $module_name, $status ) {
				// If the module is not in the module name array, return it as it is.
				if ( ! is_array( $module ) || ! in_array( $module_key, $module_name, true ) ) {
					return $module;
				}

				// If the module is in the module name array, update the status.
				$module['status'] = $status;

				// Return the updated module.
				return $module;
			}
		);

		// Update the modules array.
		return Helper::update_admin_settings_option( 'zip_ai_modules', $all_modules );
	}

	/**
	 * Function to migrate older Zip AI settings into the new modular format.
	 *
	 * @since 1.0.5
	 * @return void
	 */
	public static function migrate_options() {
		// Get the existing Zip AI settings option.
		$existing_settings = Helper::get_admin_settings_option( 'zip_ai_settings', [] );

		// If the chat enabled option is set, migrate it.
		if ( isset( $existing_settings['chat_enabled'] ) ) {
			// Set the new option value based on the chat enabled value.
			$ai_assistant_status = false === $existing_settings['chat_enabled'] ? 'disabled' : 'enabled';

			// Update the AI assistant module status.
			$ai_assistant_migrated = self::update_status( 'ai_assistant', $ai_assistant_status );

			// If the migration was successful, unset the chat enabled value and update the settings.
			if ( $ai_assistant_migrated ) {
				unset( $existing_settings['chat_enabled'] );
				Helper::update_admin_settings_option( 'zip_ai_settings', $existing_settings );
			}
		}
	}

	/**
	 * Function to get all the availabe Zip AI Modules, after applying the filter.
	 *
	 * First all the filtered modules and the modules from the database will be fetched.
	 * Then the database modules will be cross-checked against the valid filtered modules.
	 * This is done so that even if a value exists in the database, if the product that is adding the filter is disabled, the feature will be considered as non-existent.
	 * Finally the required data from the database will overwrite the filtered defaults, and only the valid modules will be returned for use.
	 *
	 * @since 1.0.5
	 * @return array Array of all the available Zip AI Modules and their details.
	 */
	public static function get_all_modules() {
		$filtered_modules = apply_filters( 'zip_ai_modules', [] );

		// Ensure that the modules are in the correct format.
		$filtered_modules = is_array( $filtered_modules ) ? $filtered_modules : [];

		// Get the existing Zip AI modules from the DB.
		$modules_from_db = Helper::get_admin_settings_option( 'zip_ai_modules', [] );

		// Ensure that the modules are in the correct format.
		$modules_from_db = is_array( $modules_from_db ) ? $modules_from_db : [];

		// Only load the modules from the database that have the same keys as the filtered modules.
		$modules_from_db = array_intersect_key( $modules_from_db, $filtered_modules );

		// Set the final modules array, where the database values override the filtered values.
		$filtered_modules = array_merge( $filtered_modules, $modules_from_db );

		// Ensure that only the valid modules are returned.
		return array_intersect_key( $filtered_modules, array_flip( self::$valid_modules ) );
	}

	/**
	 * Enable Zip AI Module(s).
	 *
	 * If a string is passed, that module will be enabled if valid.
	 * If an array is passed, all valid modules will be enabled.
	 *
	 * @param string|array $module_name Name of the module or an array of module names.
	 * @since 1.0.5
	 * @return boolean True if Zip AI module(s) has been enabled, false otherwise.
	 */
	public static function enable( $module_name ) {
		return self::update_status( $module_name, 'enabled' );
	}

	/**
	 * Function to disable Zip AI Module(s).
	 *
	 * If a string is passed, that module will be disabled if valid.
	 * If an array is passed, all valid modules will be disabled.
	 *
	 * @param string|array $module_name Name of the module or an array of module names.
	 * @since 1.0.5
	 * @return boolean True if Zip AI module(s) has been enabled, false otherwise.
	 */
	public static function disable( $module_name ) {
		return self::update_status( $module_name, 'disabled' );
	}

	/**
	 * Function to check if Zip AI Module is enabled.
	 *
	 * @param string $module_name Name of the module.
	 * @since 1.0.5
	 * @return boolean True if Zip AI is enabled, false otherwise.
	 */
	public static function is_enabled( $module_name ) {
		// If the module name is not a string, abandon ship.
		if ( ! is_string( $module_name ) ) {
			return false;
		}

		// Get all the modules.
		$all_modules = self::get_all_modules();

		// If the given module name is not a valid module or if the module does not have a status, abandon ship.
		if ( ! array_key_exists( $module_name, $all_modules ) || empty( $all_modules[ $module_name ]['status'] ) ) {
			return false;
		}

		// Return based on whether Zip AI is enabled or not.
		return 'enabled' === $all_modules[ $module_name ]['status'];
	}

	/**
	 * Enable the given Zip AI module if it exists, else create and enable it.
	 *
	 * @param array  $modules     The reference to the modules array that will be modified.
	 * @param string $module_name The module name.
	 * @since 1.1.0
	 * @return void
	 */
	public static function force_enabled( &$modules, $module_name ) {
		if ( empty( $modules[ $module_name ] ) || ! is_array( $modules[ $module_name ] ) ) {
			$modules[ $module_name ] = array( 'status' => 'enabled' );
		} else {
			$modules[ $module_name ]['status'] = 'enabled';
		}
	}
}
PK�][�Yl�w�wKultimate-addons-for-gutenberg/lib/zip-ai/classes/sidebar-configurations.phpnu�[���<?php
/**
 * Zip AI - Admin Configurations.
 *
 * @package zip-ai
 */

namespace ZipAI\Classes;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Classes to be used, in alphabetical order.
use ZipAI\Classes\Helper;
use ZipAI\Classes\Module;

/**
 * The Sidebar_Configurations Class.
 */
class Sidebar_Configurations {

	/**
	 * The namespace for the Rest Routes.
	 *
	 * @since 1.0.0
	 * @var string
	 */
	private $namespace = 'zip_ai';

	/**
	 * Instance of this class.
	 *
	 * @since 1.0.0
	 * @var object Class object.
	 */
	private static $instance;

	/**
	 * Initiator of this class.
	 *
	 * @since 1.0.0
	 * @return object initialized object of this class.
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Constructor of this class.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function __construct() {
		if ( ! current_user_can( 'manage_zip_ai_assistant' ) ) {
			return;
		}
		global $wp_version;
		// Set the priority for loading ZIP AI Adminbar trigger.
		$admin_trigger_priority = version_compare( $wp_version, '6.6', '<' ) ? 999 : 6;
		// Setup the Sidebar Rest Routes.
		add_action( 'rest_api_init', array( $this, 'register_route' ) );
		add_action( 'admin_bar_menu', array( $this, 'add_admin_trigger' ), $admin_trigger_priority );
		// Setup the Sidebar Auth Ajax.
		add_action( 'wp_ajax_verify_zip_ai_authenticity', array( $this, 'verify_authenticity' ) );
		// Setup the Sidebar Credit Details Ajax.
		add_action( 'wp_ajax_get_latest_credit_details', array( $this, 'get_latest_credit_details' ) );
		add_action( 'wp_ajax_get_fresh_credit_details', array( $this, 'get_fresh_credit_details' ) );

		// Render the Sidebar React App in the Footer in the Gutenberg Editor, Admin, and the Front-end.
		add_action( 'admin_footer', array( $this, 'render_sidebar_markup' ) );
		add_action( 'wp_footer', array( $this, 'render_sidebar_markup' ) );

		// Add the Sidebar to the Gutenberg Editor, Admin, and the Front-end.
		add_action( 'admin_enqueue_scripts', array( $this, 'load_sidebar_assets' ) );
		add_action( 'wp_enqueue_scripts', array( $this, 'load_sidebar_assets' ) );
	}

	/**
	 * Register All Routes.
	 *
	 * @hooked - rest_api_init
	 * @since 1.0.0
	 * @return void
	 */
	public function register_route() {
		register_rest_route(
			$this->namespace,
			'/generate',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'generate_ai_content' ),
					'permission_callback' => function () {
						return current_user_can( 'manage_zip_ai_assistant' );
					},
					'args'                => array(
						'use_system_message' => array(
							'sanitize_callback' => array( $this, 'sanitize_boolean_field' ),
						),
					),
				),
			)
		);
	}

	/**
	 * Checks whether the value is boolean or not.
	 *
	 * @param mixed $value value to be checked.
	 * @since 1.0.0
	 * @return boolean
	 */
	public function sanitize_boolean_field( $value ) {
		return filter_var( $value, FILTER_VALIDATE_BOOLEAN );
	}

	/**
	 * Update ZIP AI Assistant options.
	 *
	 * @param array $params Parameters for updating options.
	 * @since 1.1.6
	 * @return void
	 */
	public function update_zip_ai_assistant_options( $params ) {

		$last_message_tone = '';
		$last_index        = count( $params['message_array'] ) - 1;

		// Find the last match if it exist.
		for ( $i = $last_index; $i >= 0; $i-- ) {
			$content = $params['message_array'][ $i ]['content'];

			preg_match( '/Rewrite in a (\w+) tone/', $content, $matches_tone );
			if ( ! empty( $matches_tone ) && empty( $last_message_tone ) ) {
				$last_message_tone = $matches_tone[1];
			}

			// If both language and message tone are found, break the loop.
			if ( ! empty( $last_message_tone ) ) {
				break;
			}
		}

		$option_name     = 'zip_ai_assistant_option';
		$current_options = array();

		// If options exist, fetch them.
		if ( get_option( $option_name ) ) {
			$current_options = get_option( $option_name );
		}

		if ( ! empty( $last_message_tone ) ) {
			$current_options['last_used']['changeTone'] = [
				'value' => $last_message_tone,
				'label' => __( ucfirst( $last_message_tone ), 'ultimate-addons-for-gutenberg' ), //phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText
			];
		}

		// Update options in the database.
		Helper::update_admin_settings_option( $option_name, $current_options );
	}



	/**
	 * Fetches ai data from the middleware server.
	 *
	 * @param \WP_REST_Request $request request object.
	 * @since 1.0.0
	 * @return void
	 */
	public function generate_ai_content( $request ) {

		// Get the params.
		$params = $request->get_params();

		// Update the ZIP AI Assistant options for last used language and tone.
		$this->update_zip_ai_assistant_options( $params );

		// If the nessage array doesn't exist, abandon ship.
		if ( empty( $params['message_array'] ) || ! is_array( $params['message_array'] ) ) {
			wp_send_json_error( array( 'message' => __( 'The message array was not supplied', 'ultimate-addons-for-gutenberg' ) ) );
		}

		// Set the character count to 0, and create messages array.
		$character_count = 0;
		$messages        = array();

		// Start with the last message - going upwards until the character count hits 2500.
		foreach ( array_reverse( $params['message_array'] ) as $current_message ) {
			// If the message content doesn't exist, skip it.
			if ( empty( $current_message['content'] ) ) {
				continue;
			}

			$message_length = strlen( $current_message['content'] );

			// If adding this message exceeds 2500 characters, break the loop.
			$character_count += $message_length;
			if ( $character_count > 2500 ) {
				break;
			}

			// Add the message to the start of the messages to send to the SCS Middleware.
			array_unshift( $messages, $current_message );
		}

		// Finally add the system message to the start of the array.
		if ( ! empty( $params['use_system_message'] ) ) {

			// Get the AI training message according to the location of the current page.
			$initial_messages = self::assign_ai_assistant_purpose( $params );

			foreach ( array_reverse( $initial_messages ) as $initial_message ) {
				array_unshift(
					$messages,
					$initial_message
				);
			}
		}

		// Set the required values to send to the middleware server.
		$endpoint = 'chat/completions';
		$data     = array(
			'temperature'       => 0.7,
			'top_p'             => 1,
			'frequency_penalty' => 0.8,
			'presence_penalty'  => 1,
			'messages'          => $messages,
		);

		// Get the response from the endpoint.
		$response = Helper::get_credit_server_response( $endpoint, $data );

		if ( ! empty( $response['error'] ) ) {
			// If the response has an error, handle it and report it back.
			$message = '';
			if ( ! empty( $response['error']['message'] ) ) { // If any error message received from OpenAI.
				$message = $response['error']['message'];
			} elseif ( is_string( $response['error'] ) ) {  // If any error message received from server.
				if ( ! empty( $response['code'] && is_string( $response['code'] ) ) ) {
					$message = $this->custom_message( $response['code'] );
				}
				$message = ! empty( $message ) ? $message : $response['error'];
			}
			wp_send_json_error(
				array(
					'message' => $message,
					'code'    => $response['code'],
				)
			);
		} elseif ( is_array( $response['choices'] ) && ! empty( $response['choices'][0]['message']['content'] ) ) {
			// If the message was sent successfully, send it successfully.
			wp_send_json_success(
				array(
					'message' => $response['choices'][0]['message']['content'],
					'code'    => $response['code'],
				)
			);
		} else {
			// If you've reached here, then something has definitely gone amuck. Abandon ship.
			wp_send_json_error(
				array(
					'message' => __( 'Something went wrong', 'ultimate-addons-for-gutenberg' ),
					'code'    => $response['code'],
				)
			);
		}//end if
	}

	/**
	 * This function converts the code recieved from scs to a readable error message.
	 * Useful to provide better language for error codes.
	 *
	 * @param string $code error code received from SCS ( Credits server ).
	 * @since 1.0.0
	 * @return string
	 */
	private function custom_message( $code ) {
		$message_array = array(
			'no_auth'              => __( 'Authentication failed. Invalid or missing bearer token.', 'ultimate-addons-for-gutenberg' ),
			'insufficient_credits' => array(
				'title'          => __( 'You\'ve run out of credits.', 'ultimate-addons-for-gutenberg' ),
				'type'           => 'assemble-error',
				'content'        => __( 'To continue using the assistant and access its full features, please purchase more credits.', 'ultimate-addons-for-gutenberg' ),
				'button_content' => array(
					'text' => __( 'Buy more credits', 'ultimate-addons-for-gutenberg' ),
					'url'  => 'https://app.zipwp.com/credits-pricing?source=spectra',
				),
			),
		);
		return isset( $message_array[ $code ] ) ? $message_array[ $code ] : '';
	}

	/**
	 * Ajax handeler to verify the Zip AI authorization.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function verify_authenticity() {

		// Check the nonce.
		check_ajax_referer( 'zip_ai_ajax_nonce', 'nonce' );

		// Set an array of data to be sent.
		$required_details = [
			'is_authorized' => Helper::is_authorized(),
		];

		// If the user is authorized, get the credit details.
		if ( $required_details['is_authorized'] ) {
			$required_details['credit_details'] = Helper::get_credit_details();
		}

		// Get the current plan details that need to be localized.
		$response_zipwp_plan = Helper::get_current_plan_details();

		// If the response is not an error, then proceed to localize the required details.
		if ( is_array( $response_zipwp_plan ) && 'error' !== $response_zipwp_plan['status'] ) {

			// Add the team name if it exists.
			if ( ! empty( $response_zipwp_plan['team']['name'] ) ) {
				$required_details['team_name'] = $response_zipwp_plan['team']['name'];
			}
		}

		// Send a boolean based on whether the auth token has been added.
		wp_send_json_success( $required_details );
	}

	/**
	 * Enqueue the AI Asssitant Sidebar assets.
	 *
	 * @return void
	 * @since 1.0.0
	 */
	public function load_sidebar_assets() {

		if ( class_exists( '\UAGB_Admin_Helper' ) && method_exists( '\UAGB_Admin_Helper', 'should_exclude_assets_for_cpt' ) ) {
			if ( \UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}
		}
		// If the admin bar is not visible, we don't want to load the sidebar assets.
		if ( ! is_admin_bar_showing() ) {
			return;
		}

		// Set the required variables.
		$handle            = 'zip-ai-sidebar';
		$build_path        = ZIP_AI_DIR . 'sidebar/build/';
		$build_url         = ZIP_AI_URL . 'sidebar/build/';
		$script_asset_path = $build_path . 'sidebar-app.asset.php';
		$script_info       = file_exists( $script_asset_path )
			? include $script_asset_path
			: array(
				'dependencies' => array(),
				'version'      => ZIP_AI_VERSION,
			);

		// If this is in the front-end, remove any editor-specific dependencies.
		// This will work as intended because the React components for the editor have checks to render the same, leaving no errors.
		$script_dep = ! is_admin() ? array_diff(
			$script_info['dependencies'],
			[
				'wp-block-editor',
				'wp-edit-post',
				'wp-rich-text',
			]
		) : $script_info['dependencies'];

		// Resolving conflict with wigdget page query monitor warning.
		global $pagenow;
		if ( 'widgets.php' === $pagenow ) {
			$script_dep = array_diff( $script_info['dependencies'], [ 'wp-edit-post' ] );
		}
		// Note that the current screen function is loaded after admin_init, so if it doesn't exist set screen to null.
		$screen = ( is_admin() && function_exists( 'get_current_screen' ) ) ? get_current_screen() : null;

		// Register the sidebar scripts.
		wp_register_script(
			$handle,
			$build_url . 'sidebar-app.js',
			$script_dep,
			$script_info['version'],
			true
		);

		// Register the sidebar styles.
		wp_register_style(
			$handle,
			$build_url . 'sidebar-app.css',
			array(),
			ZIP_AI_VERSION
		);

		// Enqueue the sidebar scripts.
		wp_enqueue_script( $handle );
		// Set the script translations.
		wp_set_script_translations( $handle, apply_filters( 'zip_ai_library_textdomain', 'zip-ai' ) );
		// Enqueue the sidebar styles.
		wp_enqueue_style( $handle );

		// Create the middleware parameters array and the credit topup URL.
		$middleware_params = [];
		$credit_topup_url  = esc_url( ZIP_AI_CREDIT_TOPUP_URL );

		// Get the collab product details, and extract the slug from there if it exists.
		$collab_product_details = apply_filters( 'zip_ai_collab_product_details', null );

		// If the collab details is an array and has the plugin slug, add it to the middleware params.
		if ( is_array( $collab_product_details )
			&& ! empty( $collab_product_details['product_slug'] )
			&& is_string( $collab_product_details['product_slug'] )
		) {
			$middleware_params['plugin'] = sanitize_text_field( $collab_product_details['product_slug'] );

			// Also update the plugin as the source param for the Get Credits URL.
			$credit_topup_url = esc_url( add_query_arg( 'source', $collab_product_details['product_slug'], ZIP_AI_CREDIT_TOPUP_URL ) );
		}

		// Get the current plan details that need to be localized.
		$response_zipwp_plan = Helper::get_current_plan_details();
		$current_zipwp_plan  = array();

		// If the response is not an error, then proceed to localize the required details.
		if ( is_array( $response_zipwp_plan ) && 'error' !== $response_zipwp_plan['status'] ) {

			// Add the team name if it exists.
			if ( ! empty( $response_zipwp_plan['team']['name'] ) ) {
				$current_zipwp_plan['team_name'] = $response_zipwp_plan['team']['name'];
			}
		}

		// Get the ID based on the current URL - this will avoid incorrectly getting popups as the page.
		$current_url = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
		$post_id     = url_to_postid( set_url_scheme( $current_url ) );
		// If this is an editor page, this won't work - so if it doesn't, try getting the ID.
		if ( empty( $post_id ) ) {
			$post_id = get_the_ID();
		}

		// Identify the special page if required.
		$special_page;
		switch ( true ) {
			case ( function_exists( 'is_shop' ) && is_shop() ):
				$special_page = 'shop';
				break;
			case ( function_exists( 'is_cart' ) && is_cart() ):
				$special_page = 'cart';
				break;
			case ( function_exists( 'is_checkout' ) && is_checkout() ):
				$special_page = 'checkout';
				break;
			default:
				$special_page = null;
		}

		// Set the current view - this will determine what the initial prompts should be.
		$current_view = 'default';

		// If you can get the current screen ( alluding to the fact that you're in the admin pages ), then proceed.
		if ( function_exists( 'get_current_screen' ) ) {
			$current_screen = get_current_screen();

			// Check if this a WooCommerce product edit page.
			if (
				isset( $current_screen->base )
				&& isset( $current_screen->id )
				&& 'post' === $current_screen->base
				&& 'product' === $current_screen->id
			) {
				$current_view = 'editing_product';
			}
		}
		// Localize the script required for the Zip AI Sidebar.
		wp_localize_script(
			$handle,
			'zip_ai_react',
			array(
				'ajax_url'                 => admin_url( 'admin-ajax.php' ),
				'ajax_nonce'               => wp_create_nonce( 'zip_ai_ajax_nonce' ),
				'admin_nonce'              => wp_create_nonce( 'zip_ai_admin_nonce' ),
				'site_url'                 => get_site_url(),
				'current_post_id'          => $post_id,
				'special_page'             => $special_page,
				'is_admin'                 => is_admin(),
				'auth_middleware'          => Helper::get_auth_middleware_url( $middleware_params ),
				'is_authorized'            => Helper::is_authorized(),
				'is_ai_assistant_enabled'  => Module::is_enabled( 'ai_assistant' ),
				'is_customize_preview'     => is_customize_preview(),
				'collab_product_details'   => $collab_product_details,
				'zip_ai_assistant_options' => get_option( 'zip_ai_assistant_option' ),
				'is_widgets_page'          => $screen->id ?? null,
				'current_status'           => Helper::get_setting( 'status' ),
				'current_plan_details'     => $current_zipwp_plan,
				'current_view'             => $current_view,
				'credit_details'           => Helper::get_credit_details(),
				'credit_topup_url'         => $credit_topup_url,
			)
		);

		wp_enqueue_style(
			'zip-ai-sidebar-fonts',
			'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Courier+Prime:wght@400&display=swap',
			array(),
			ZIP_AI_VERSION
		);
	}

	/**
	 * Add the Zip AI Assistant Sidebar to the admin bar.
	 *
	 * @param object $admin_bar The admin bar object.
	 * @since 1.1.0
	 * @return void
	 */
	public function add_admin_trigger( $admin_bar ) {
		if ( class_exists( '\UAGB_Admin_Helper' ) && method_exists( '\UAGB_Admin_Helper', 'should_exclude_assets_for_cpt' ) ) {
			if ( \UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}
		}

		$args = array(
			'id'     => 'zip-ai-assistant',
			'title'  => '<span class="ab-icon" aria-hidden="true" style="margin: 0">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" aria-hidden="true" focusable="false"><path d="M9.8132 15.9038L9 18.75L8.1868 15.9038C7.75968 14.4089 6.59112 13.2403 5.09619 12.8132L2.25 12L5.09619 11.1868C6.59113 10.7597 7.75968 9.59112 8.1868 8.09619L9 5.25L9.8132 8.09619C10.2403 9.59113 11.4089 10.7597 12.9038 11.1868L15.75 12L12.9038 12.8132C11.4089 13.2403 10.2403 14.4089 9.8132 15.9038Z" stroke="currentColor" stroke-width="1.4" fill="none" stroke-linecap="round" stroke-linejoin="round"></path><path d="M16.8942 20.5673L16.5 21.75L16.1058 20.5673C15.8818 19.8954 15.3546 19.3682 14.6827 19.1442L13.5 18.75L14.6827 18.3558C15.3546 18.1318 15.8818 17.6046 16.1058 16.9327L16.5 15.75L16.8942 16.9327C17.1182 17.6046 17.6454 18.1318 18.3173 18.3558L19.5 18.75L18.3173 19.1442C17.6454 19.3682 17.1182 19.8954 16.8942 20.5673Z" stroke="currentColor" stroke-width="1.4" fill="none" stroke-linecap="round" stroke-linejoin="round"></path><path d="M18.2589 8.71454L18 9.75L17.7411 8.71454C17.4388 7.50533 16.4947 6.56117 15.2855 6.25887L14.25 6L15.2855 5.74113C16.4947 5.43883 17.4388 4.49467 17.7411 3.28546L18 2.25L18.2589 3.28546C18.5612 4.49467 19.5053 5.43883 20.7145 5.74113L21.75 6L20.7145 6.25887C19.5053 6.56117 18.5612 7.50532 18.2589 8.71454Z" stroke="currentColor" stroke-width="1.4" fill="none" stroke-linecap="round" stroke-linejoin="round"></path></svg>
</span>',
			'href'   => 'javascript:void(0);',
			'parent' => 'top-secondary',
		);
		$admin_bar->add_node( $args );
	}

	/**
	 * Render the AI Assistant Sidebar markup.
	 *
	 * @since 1.1.0
	 * @return void
	 */
	public static function render_sidebar_markup() {

		if ( class_exists( '\UAGB_Admin_Helper' ) && method_exists( '\UAGB_Admin_Helper', 'should_exclude_assets_for_cpt' ) ) {
			if ( \UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}
		}

		// If the adminbar is visible on this screen, render the admin trigger.
		if ( is_admin_bar_showing() ) {
			?>
				<div id="zip-ai-sidebar-admin-trigger"></div>
			<?php
		}
		// Render the sidebar div.
		?>
			<div id="zip-ai-sidebar"></div>
		<?php
	}

	/**
	 * Assign the purpose of the AI Assistant given the current page.
	 *
	 * @param array<mixed> $params An array of all the parameters.
	 * @since 2.0.0
	 * @return array<array<string,string>> An array all the required system messages.
	 */
	public static function assign_ai_assistant_purpose( $params ) {
		// Get the site details.
		$site_details = [];

		if ( ! empty( trim( get_bloginfo( 'name' ) ) ) ) {
			$site_details['name'] = esc_html( get_bloginfo( 'name' ) );
		}
		if ( ! empty( trim( get_bloginfo( 'description' ) ) ) ) {
			$site_details['description'] = esc_html( get_bloginfo( 'description' ) );
		}

		// If there are ZipWP details, overwrite the default details with the improved ones.
		$zipwp_details = get_option( 'zipwp_user_business_details', '' );
		if ( is_array( $zipwp_details ) ) {
			if ( ! empty( $zipwp_details['business_name'] ) && is_string( $zipwp_details['business_name'] ) && ! empty( trim( $zipwp_details['business_name'] ) ) ) {
				$site_details['name'] = esc_html( $zipwp_details['business_name'] );
			}
			if ( ! empty( $zipwp_details['business_description'] ) && is_string( $zipwp_details['business_description'] ) && ! empty( trim( $zipwp_details['business_description'] ) ) ) {
				$site_details['description'] = esc_html( $zipwp_details['business_description'] );
			}
		}

		// Create the site detail message based on whether the name, description, both, or none are set.
		$site_detail_message = '';
		if ( ! empty( $site_details['name'] ) && ! empty( $site_details['description'] ) ) {
			$site_detail_message = 'The name of my site is "' . $site_details['name'] . '" and the tagline/description of my site is "' . $site_details['description'] . '".';
		} elseif ( ! empty( $site_details['name'] ) ) {
			$site_detail_message = 'The name of my site is "' . $site_details['name'] . '".';
		} elseif ( ! empty( $site_details['description'] ) ) {
			$site_detail_message = 'The tagline/description of my site is "' . $site_details['description'] . '".';
		}

		// Create the default website-containing message so that links can be created.
		$website_detail_message = 'When helping me with something that needs me to log in to my WordPress dashboard, generate the exact URL of the page I need to go to at the end of the message. My website is \'example.com\'. Make sure all URLs contain the link text in square brackets, and the URL in round brackets.';

		// Set the common content that will be used for all cases.
		$appended_common_rule = '\n\n\nYou can help me with everything I need even if it is not related to my site. You will only generate content for what you are asked.';

		// All the role setting messages.
		$role_settings_content = [
			'default'             => 'You are my AI Assistant. You are a content writer that writes content for my website.' . $appended_common_rule,
			'wordpress_assistant' => 'You are my WordPress Assistant. You know everything about improving and optimizing my WordPress website for my visitors.' . $appended_common_rule,
			'e_commerce_expert'   => 'You are my WordPress E-commerce Expert. You know everything about improving and optimizing my E-Commerce website for my customers.' . $appended_common_rule,
		];

		// Create an array for all the system messages.
		$page_based_system_messages = [];

		// First determine if you're on any post.
		if ( ! empty( $params['current_post_id'] ) && is_numeric( $params['current_post_id'] ) ) {
			// Get the required details based on the ID.
			$page_details   = self::get_page_details( $params['current_post_id'] );
			$page_post_type = get_post_type( $params['current_post_id'] );

			// Check if the current page is a WooCommerce product.
			$this_is_a_product_page = 'product' === $page_post_type;

			// Set the role based on the page type.
			if ( $this_is_a_product_page ) {
				// Set the role of an E-commerce expert.
				array_push( $page_based_system_messages, self::get_formatted_system_role( $role_settings_content['e_commerce_expert'] ) );
				if ( ! empty( $site_detail_message ) ) {
					array_push( $page_based_system_messages, self::get_formatted_system_role( $site_detail_message ) );
				}
				array_push( $page_based_system_messages, self::get_formatted_system_role( 'This is a product page.' ) );
			} else {
				// Set the role of a WordPress expert.
				array_push( $page_based_system_messages, self::get_formatted_system_role( $role_settings_content['wordpress_assistant'] ) );
				if ( ! empty( $site_detail_message ) ) {
					array_push( $page_based_system_messages, self::get_formatted_system_role( $site_detail_message ) );
				}
			}

			// Add the page details.
			$page_detail_message = 'These are the details of the current page that you and I are on, in case you are asked something about it\n\n\nPage ID: `' . $params['current_post_id'] . '`\nTitle: `' . $page_details['title'] . '`\nContent:`' . $page_details['content'] . '`';
			array_push( $page_based_system_messages, self::get_formatted_system_role( $page_detail_message ) );

			// Add the website based message.
			array_push( $page_based_system_messages, self::get_formatted_system_role( $website_detail_message ) );

			return $page_based_system_messages;
		} elseif ( ! empty( $params['special_page'] ) && is_string( $params['special_page'] ) ) {
			// Set the role of an E-commerce expert.
			array_push( $page_based_system_messages, self::get_formatted_system_role( $role_settings_content['e_commerce_expert'] ) );
			if ( ! empty( $site_detail_message ) ) {
				array_push( $page_based_system_messages, self::get_formatted_system_role( $site_detail_message ) );
			}

			$special_page_id;
			switch ( $params['special_page'] ) {
				case 'shop':
					array_push( $page_based_system_messages, self::get_formatted_system_role( 'This is my shop page.' ) );
					$special_page_id = get_option( 'woocommerce_shop_page_id' );
					break;
				case 'cart':
					array_push( $page_based_system_messages, self::get_formatted_system_role( 'This is the cart page.' ) );
					$special_page_id = get_option( 'woocommerce_cart_page_id' );
					break;
				case 'checkout':
					array_push( $page_based_system_messages, self::get_formatted_system_role( 'This is the checkout page.' ) );
					$special_page_id = get_option( 'woocommerce_checkout_page_id' );
					break;
			}

			if ( ! empty( $special_page_id ) && is_numeric( $special_page_id ) ) {
				$page_details        = self::get_page_details( $special_page_id );
				$page_detail_message = 'These are the details of the current page that you and I are on, in case you are asked something about it\n\n\nPage ID: `' . $special_page_id . '`\nTitle: `' . $page_details['title'] . '`\nContent:`' . $page_details['content'] . '`';

				array_push( $page_based_system_messages, self::get_formatted_system_role( $page_detail_message ) );
			}

			// Add the website based message.
			array_push( $page_based_system_messages, self::get_formatted_system_role( $website_detail_message ) );

			return $page_based_system_messages;

		}

		// If you're not on a post, then the assistant is a WordPress based expert.
		array_push( $page_based_system_messages, self::get_formatted_system_role( $role_settings_content['wordpress_assistant'] ) );
		// Add the site details message if required.
		if ( ! empty( $site_detail_message ) ) {
			array_push( $page_based_system_messages, self::get_formatted_system_role( $site_detail_message ) );
		}
		// Add the website based message.
		array_push( $page_based_system_messages, self::get_formatted_system_role( $website_detail_message ) );

		return $page_based_system_messages;
	}

	/**
	 * Get the required page details for AI from the given post ID.
	 *
	 * @param int $current_post_id The current post ID.
	 * @since 2.0.0
	 * @return array<string,mixed> An array of all the required Post details.
	 */
	public static function get_page_details( $current_post_id ) {
		// Regular expression to match opening or closing tags.
		$tag_regex = '/(<\/?[a-zA-Z]+[^>]*>|<\/?[a-zA-Z]+[^>]*>)/';

		// Get all the required details of the current post.
		$page_title   = get_post_field( 'post_title', $current_post_id );
		$page_content = get_post_field( 'post_content', $current_post_id );
		$page_url     = get_permalink( $current_post_id );

		// Replace the Page URL with the dummy.
		$page_url = str_replace( preg_replace( '#^https?://#', '', get_site_url() ), 'example.com', $page_url );

		// Split the post content based to put all tags and content on new lines.
		$content_parts = preg_split( $tag_regex, $page_content, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE );

		// If any part is a tag, delete it.
		$content_parts = array_filter(
			$content_parts,
			function ( $content_part ) {
				// Only return true for elements that are not tags, or elements that aren't just neewline characters.
				return (
				( false === str_starts_with( $content_part, '<' ) )
				&& ( false === str_starts_with( $content_part, "\n" ) )
				);
			}
		);

		// Combine all the parts into a single string with line breaks.
		$page_content = implode( "\n", $content_parts );
		$page_content = preg_replace( '/\n{2,}/', "\n", $page_content );

		// Return the required details.
		return [
			'title'   => $page_title,
			'content' => $page_content,
			'url'     => $page_url,
		];
	}

	/**
	 * A small private function to take in any given content, and return a formatted array for OpenAI as a system message.
	 *
	 * @param string $content The content to be put as the message.
	 * @param string $role    The role of the message, as per OpenAI standards.
	 * @since 2.0.0
	 * @return array<string,mixed> An array containing the role and content of the message.
	 */
	private static function get_formatted_system_role( $content, $role = 'system' ) {
		return [
			'role'    => $role,
			'content' => $content,
		];
	}

	/**
	 * Ajax handeler to get the latest Zip AI credit details.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function get_latest_credit_details() {
		// Check the nonce.
		check_ajax_referer( 'zip_ai_ajax_nonce', 'nonce' );

		// Set an array of data to be sent.
		$latest_credit_details = Helper::get_credit_details();

		// If an error was encountered, send the error details.
		if ( isset( $latest_credit_details['status'] ) && 'error' === $latest_credit_details['status'] ) {
			wp_send_json_error( $latest_credit_details );
		}

		// Send the latest credit details.
		wp_send_json_success( $latest_credit_details );
	}

	/**
	 * Ajax handeler to get fresh Zip AI credit details.
	 *
	 * @since 2.0.5
	 * @return void
	 */
	public function get_fresh_credit_details() {
		// Check the nonce.
		check_ajax_referer( 'zip_ai_ajax_nonce', 'nonce' );

		// Set an array of data to be sent.
		$latest_credit_details = Helper::get_fresh_credit_details();

		// If an error was encountered, send the error details.
		if ( isset( $latest_credit_details['status'] ) && 'error' === $latest_credit_details['status'] ) {
			wp_send_json_error( $latest_credit_details );
		}

		// Send the latest credit details.
		wp_send_json_success( $latest_credit_details );
	}
}
PK�][��LEBGBGEultimate-addons-for-gutenberg/lib/zip-ai/sidebar/build/sidebar-app.jsnu�[���!function(){var e={679:function(e,t,n){"use strict";var r=n(864),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},a={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},o={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function l(e){return r.isMemo(e)?o:s[e.$$typeof]||i}s[r.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[r.Memo]=o;var c=Object.defineProperty,u=Object.getOwnPropertyNames,d=Object.getOwnPropertySymbols,p=Object.getOwnPropertyDescriptor,f=Object.getPrototypeOf,h=Object.prototype;e.exports=function e(t,n,r){if("string"!=typeof n){if(h){var i=f(n);i&&i!==h&&e(t,i,r)}var o=u(n);d&&(o=o.concat(d(n)));for(var s=l(t),m=l(n),g=0;g<o.length;++g){var v=o[g];if(!(a[v]||r&&r[v]||m&&m[v]||s&&s[v])){var b=p(n,v);try{c(t,v,b)}catch(e){}}}}return t}},885:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CASE_SENSITIVE_TAG_NAMES_MAP=t.CASE_SENSITIVE_TAG_NAMES=void 0,t.CASE_SENSITIVE_TAG_NAMES=["animateMotion","animateTransform","clipPath","feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDropShadow","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence","foreignObject","linearGradient","radialGradient","textPath"],t.CASE_SENSITIVE_TAG_NAMES_MAP=t.CASE_SENSITIVE_TAG_NAMES.reduce((function(e,t){return e[t.toLowerCase()]=t,e}),{})},276:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n="html",r="head",i="body",a=/<([a-zA-Z]+[0-9]?)/,o=/<head[^]*>/i,s=/<body[^]*>/i,l=function(e,t){throw new Error("This browser does not support `document.implementation.createHTMLDocument`")},c=function(e,t){throw new Error("This browser does not support `DOMParser.prototype.parseFromString`")},u="object"==typeof window&&window.DOMParser;if("function"==typeof u){var d=new u;l=c=function(e,t){return t&&(e="<".concat(t,">").concat(e,"</").concat(t,">")),d.parseFromString(e,"text/html")}}if("object"==typeof document&&document.implementation){var p=document.implementation.createHTMLDocument();l=function(e,t){if(t){var n=p.documentElement.querySelector(t);return n&&(n.innerHTML=e),p}return p.documentElement.innerHTML=e,p}}var f,h="object"==typeof document&&document.createElement("template");h&&h.content&&(f=function(e){return h.innerHTML=e,h.content.childNodes}),t.default=function(e){var t,u,d=e.match(a),p=d&&d[1]?d[1].toLowerCase():"";switch(p){case n:var h=c(e);return o.test(e)||null===(t=null==(g=h.querySelector(r))?void 0:g.parentNode)||void 0===t||t.removeChild(g),s.test(e)||null===(u=null==(g=h.querySelector(i))?void 0:g.parentNode)||void 0===u||u.removeChild(g),h.querySelectorAll(n);case r:case i:var m=l(e).querySelectorAll(p);return s.test(e)&&o.test(e)?m[0].parentNode.childNodes:m;default:return f?f(e):(g=l(e,i).querySelector(i)).childNodes;var g}}},152:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(276)),a=n(507),o=/<(![a-zA-Z\s]+)>/;t.default=function(e){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];var t=e.match(o),n=t?t[1]:void 0;return(0,a.formatDOM)((0,i.default)(e),null,n)}},507:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.formatDOM=t.formatAttributes=void 0;var r=n(584),i=n(885);function a(e){for(var t={},n=0,r=e.length;n<r;n++){var i=e[n];t[i.name]=i.value}return t}function o(e){return function(e){return i.CASE_SENSITIVE_TAG_NAMES_MAP[e]}(e=e.toLowerCase())||e}t.formatAttributes=a,t.formatDOM=function e(t,n,i){void 0===n&&(n=null);for(var s,l=[],c=0,u=t.length;c<u;c++){var d=t[c];switch(d.nodeType){case 1:var p=o(d.nodeName);(s=new r.Element(p,a(d.attributes))).children=e("template"===p?d.content.childNodes:d.childNodes,s);break;case 3:s=new r.Text(d.nodeValue);break;case 8:s=new r.Comment(d.nodeValue);break;default:continue}var f=l[c-1]||null;f&&(f.next=s),s.parent=n,s.prev=f,s.next=null,l.push(s)}return i&&((s=new r.ProcessingInstruction(i.substring(0,i.indexOf(" ")).toLowerCase(),i)).next=l[0]||null,s.parent=n,l.unshift(s),l[1]&&(l[1].prev=l[0])),l}},953:function(e,t){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.Doctype=t.CDATA=t.Tag=t.Style=t.Script=t.Comment=t.Directive=t.Text=t.Root=t.isTag=t.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(n=t.ElementType||(t.ElementType={})),t.isTag=function(e){return e.type===n.Tag||e.type===n.Script||e.type===n.Style},t.Root=n.Root,t.Text=n.Text,t.Directive=n.Directive,t.Comment=n.Comment,t.Script=n.Script,t.Style=n.Style,t.Tag=n.Tag,t.CDATA=n.CDATA,t.Doctype=n.Doctype},584:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),i=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.DomHandler=void 0;var a=n(953),o=n(642);i(n(642),t);var s={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},l=function(){function e(e,t,n){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(n=t,t=s),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:s,this.elementCB=null!=n?n:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var n=this.options.xmlMode?a.ElementType.Tag:void 0,r=new o.Element(e,t,void 0,n);this.addNode(r),this.tagStack.push(r)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===a.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var n=new o.Text(e);this.addNode(n),this.lastNode=n}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===a.ElementType.Comment)this.lastNode.data+=e;else{var t=new o.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new o.Text(""),t=new o.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var n=new o.ProcessingInstruction(e,t);this.addNode(n)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],n=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),n&&(e.prev=n,n.next=e),e.parent=t,this.lastNode=null},e}();t.DomHandler=l,t.default=l},642:function(e,t,n){"use strict";var r,i=this&&this.__extends||(r=function(e,t){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},r(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function __(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}),a=this&&this.__assign||function(){return a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.cloneNode=t.hasChildren=t.isDocument=t.isDirective=t.isComment=t.isText=t.isCDATA=t.isTag=t.Element=t.Document=t.CDATA=t.NodeWithChildren=t.ProcessingInstruction=t.Comment=t.Text=t.DataNode=t.Node=void 0;var o=n(953),s=function(){function e(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(e.prototype,"parentNode",{get:function(){return this.parent},set:function(e){this.parent=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"previousSibling",{get:function(){return this.prev},set:function(e){this.prev=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nextSibling",{get:function(){return this.next},set:function(e){this.next=e},enumerable:!1,configurable:!0}),e.prototype.cloneNode=function(e){return void 0===e&&(e=!1),E(this,e)},e}();t.Node=s;var l=function(e){function t(t){var n=e.call(this)||this;return n.data=t,n}return i(t,e),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.data},set:function(e){this.data=e},enumerable:!1,configurable:!0}),t}(s);t.DataNode=l;var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Text,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),t}(l);t.Text=c;var u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Comment,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),t}(l);t.Comment=u;var d=function(e){function t(t,n){var r=e.call(this,n)||this;return r.name=t,r.type=o.ElementType.Directive,r}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),t}(l);t.ProcessingInstruction=d;var p=function(e){function t(t){var n=e.call(this)||this;return n.children=t,n}return i(t,e),Object.defineProperty(t.prototype,"firstChild",{get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(s);t.NodeWithChildren=p;var f=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.CDATA,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(p);t.CDATA=f;var h=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Root,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(p);t.Document=h;var m=function(e){function t(t,n,r,i){void 0===r&&(r=[]),void 0===i&&(i="script"===t?o.ElementType.Script:"style"===t?o.ElementType.Style:o.ElementType.Tag);var a=e.call(this,r)||this;return a.name=t,a.attribs=n,a.type=i,a}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map((function(t){var n,r;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(r=e["x-attribsPrefix"])||void 0===r?void 0:r[t]}}))},enumerable:!1,configurable:!0}),t}(p);function g(e){return(0,o.isTag)(e)}function v(e){return e.type===o.ElementType.CDATA}function b(e){return e.type===o.ElementType.Text}function y(e){return e.type===o.ElementType.Comment}function C(e){return e.type===o.ElementType.Directive}function _(e){return e.type===o.ElementType.Root}function E(e,t){var n;if(void 0===t&&(t=!1),b(e))n=new c(e.data);else if(y(e))n=new u(e.data);else if(g(e)){var r=t?w(e.children):[],i=new m(e.name,a({},e.attribs),r);r.forEach((function(e){return e.parent=i})),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=a({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=a({},e["x-attribsPrefix"])),n=i}else if(v(e)){r=t?w(e.children):[];var o=new f(r);r.forEach((function(e){return e.parent=o})),n=o}else if(_(e)){r=t?w(e.children):[];var s=new h(r);r.forEach((function(e){return e.parent=s})),e["x-mode"]&&(s["x-mode"]=e["x-mode"]),n=s}else{if(!C(e))throw new Error("Not implemented yet: ".concat(e.type));var l=new d(e.name,e.data);null!=e["x-name"]&&(l["x-name"]=e["x-name"],l["x-publicId"]=e["x-publicId"],l["x-systemId"]=e["x-systemId"]),n=l}return n.startIndex=e.startIndex,n.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(n.sourceCodeLocation=e.sourceCodeLocation),n}function w(e){for(var t=e.map((function(e){return E(e,!0)})),n=1;n<t.length;n++)t[n].prev=t[n-1],t[n-1].next=t[n];return t}t.Element=m,t.isTag=g,t.isCDATA=v,t.isText=b,t.isComment=y,t.isDirective=C,t.isDocument=_,t.hasChildren=function(e){return Object.prototype.hasOwnProperty.call(e,"children")},t.cloneNode=E},484:function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r=n(726),i=n(606),a=["checked","value"],o=["input","select","textarea"],s={reset:!0,submit:!0};function l(e){return r.possibleStandardNames[e]}t.default=function(e,t){void 0===e&&(e={});var n={},c=Boolean(e.type&&s[e.type]);for(var u in e){var d=e[u];if((0,r.isCustomAttribute)(u))n[u]=d;else{var p=u.toLowerCase(),f=l(p);if(f){var h=(0,r.getPropertyInfo)(f);switch(a.includes(f)&&o.includes(t)&&!c&&(f=l("default"+p)),n[f]=d,h&&h.type){case r.BOOLEAN:n[f]=!0;break;case r.OVERLOADED_BOOLEAN:""===d&&(n[f]=!0)}}else i.PRESERVE_CUSTOM_ATTRIBUTES&&(n[u]=d)}}return(0,i.setStyleProp)(e.style,n),n}},670:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=n(196),a=r(n(484)),o=n(606),s={cloneElement:i.cloneElement,createElement:i.createElement,isValidElement:i.isValidElement};function l(e){return o.PRESERVE_CUSTOM_ATTRIBUTES&&"tag"===e.type&&(0,o.isCustomComponent)(e.name,e.attribs)}t.default=function e(t,n){for(var r=[],i="function"==typeof(null==n?void 0:n.replace),c=(null==n?void 0:n.transform)||o.returnFirstArg,u=(null==n?void 0:n.library)||s,d=u.cloneElement,p=u.createElement,f=u.isValidElement,h=t.length,m=0;m<h;m++){var g=t[m];if(i){var v=n.replace(g);if(f(v)){h>1&&(v=d(v,{key:v.key||m})),r.push(c(v,g,m));continue}}if("text"!==g.type){var b=g,y={};l(b)?((0,o.setStyleProp)(b.attribs.style,b.attribs),y=b.attribs):b.attribs&&(y=(0,a.default)(b.attribs,b.name));var C=void 0;switch(g.type){case"script":case"style":g.children[0]&&(y.dangerouslySetInnerHTML={__html:g.children[0].data});break;case"tag":"textarea"===g.name&&g.children[0]?y.defaultValue=g.children[0].data:g.children&&g.children.length&&(C=e(g.children,n));break;default:continue}h>1&&(y.key=m),r.push(c(p(g.name,y,C),g,m))}else{var _=!g.data.trim().length;if(_&&g.parent&&!(0,o.canTextBeChildOfNode)(g.parent))continue;if((null==n?void 0:n.trim)&&_)continue;r.push(c(g.data,g,m))}}return 1===r.length?r[0]:r}},426:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.htmlToDOM=t.domToReact=t.attributesToProps=t.Text=t.ProcessingInstruction=t.Element=t.Comment=void 0;var i=r(n(152));t.htmlToDOM=i.default;var a=r(n(484));t.attributesToProps=a.default;var o=r(n(670));t.domToReact=o.default;var s=n(384);Object.defineProperty(t,"Comment",{enumerable:!0,get:function(){return s.Comment}}),Object.defineProperty(t,"Element",{enumerable:!0,get:function(){return s.Element}}),Object.defineProperty(t,"ProcessingInstruction",{enumerable:!0,get:function(){return s.ProcessingInstruction}}),Object.defineProperty(t,"Text",{enumerable:!0,get:function(){return s.Text}});var l={lowerCaseAttributeNames:!1};t.default=function(e,t){if("string"!=typeof e)throw new TypeError("First argument must be a string");return e?(0,o.default)((0,i.default)(e,(null==t?void 0:t.htmlparser2)||l),t):[]}},606:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.returnFirstArg=t.canTextBeChildOfNode=t.ELEMENTS_WITH_NO_TEXT_CHILDREN=t.PRESERVE_CUSTOM_ATTRIBUTES=t.setStyleProp=t.isCustomComponent=void 0;var i=n(196),a=r(n(476)),o=new Set(["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"]);t.isCustomComponent=function(e,t){return e.includes("-")?!o.has(e):Boolean(t&&"string"==typeof t.is)};var s={reactCompat:!0};t.setStyleProp=function(e,t){if("string"==typeof e)if(e.trim())try{t.style=(0,a.default)(e,s)}catch(e){t.style={}}else t.style={}},t.PRESERVE_CUSTOM_ATTRIBUTES=Number(i.version.split(".")[0])>=16,t.ELEMENTS_WITH_NO_TEXT_CHILDREN=new Set(["tr","tbody","thead","tfoot","colgroup","table","head","html","frameset"]),t.canTextBeChildOfNode=function(e){return!t.ELEMENTS_WITH_NO_TEXT_CHILDREN.has(e.name)},t.returnFirstArg=function(e){return e}},908:function(e,t){"use strict";var n;Object.defineProperty(t,"__esModule",{value:!0}),t.Doctype=t.CDATA=t.Tag=t.Style=t.Script=t.Comment=t.Directive=t.Text=t.Root=t.isTag=t.ElementType=void 0,function(e){e.Root="root",e.Text="text",e.Directive="directive",e.Comment="comment",e.Script="script",e.Style="style",e.Tag="tag",e.CDATA="cdata",e.Doctype="doctype"}(n=t.ElementType||(t.ElementType={})),t.isTag=function(e){return e.type===n.Tag||e.type===n.Script||e.type===n.Style},t.Root=n.Root,t.Text=n.Text,t.Directive=n.Directive,t.Comment=n.Comment,t.Script=n.Script,t.Style=n.Style,t.Tag=n.Tag,t.CDATA=n.CDATA,t.Doctype=n.Doctype},384:function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n);var i=Object.getOwnPropertyDescriptor(t,n);i&&!("get"in i?!t.__esModule:i.writable||i.configurable)||(i={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,i)}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),i=this&&this.__exportStar||function(e,t){for(var n in e)"default"===n||Object.prototype.hasOwnProperty.call(t,n)||r(t,e,n)};Object.defineProperty(t,"__esModule",{value:!0}),t.DomHandler=void 0;var a=n(908),o=n(79);i(n(79),t);var s={withStartIndices:!1,withEndIndices:!1,xmlMode:!1},l=function(){function e(e,t,n){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null,"function"==typeof t&&(n=t,t=s),"object"==typeof e&&(t=e,e=void 0),this.callback=null!=e?e:null,this.options=null!=t?t:s,this.elementCB=null!=n?n:null}return e.prototype.onparserinit=function(e){this.parser=e},e.prototype.onreset=function(){this.dom=[],this.root=new o.Document(this.dom),this.done=!1,this.tagStack=[this.root],this.lastNode=null,this.parser=null},e.prototype.onend=function(){this.done||(this.done=!0,this.parser=null,this.handleCallback(null))},e.prototype.onerror=function(e){this.handleCallback(e)},e.prototype.onclosetag=function(){this.lastNode=null;var e=this.tagStack.pop();this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),this.elementCB&&this.elementCB(e)},e.prototype.onopentag=function(e,t){var n=this.options.xmlMode?a.ElementType.Tag:void 0,r=new o.Element(e,t,void 0,n);this.addNode(r),this.tagStack.push(r)},e.prototype.ontext=function(e){var t=this.lastNode;if(t&&t.type===a.ElementType.Text)t.data+=e,this.options.withEndIndices&&(t.endIndex=this.parser.endIndex);else{var n=new o.Text(e);this.addNode(n),this.lastNode=n}},e.prototype.oncomment=function(e){if(this.lastNode&&this.lastNode.type===a.ElementType.Comment)this.lastNode.data+=e;else{var t=new o.Comment(e);this.addNode(t),this.lastNode=t}},e.prototype.oncommentend=function(){this.lastNode=null},e.prototype.oncdatastart=function(){var e=new o.Text(""),t=new o.CDATA([e]);this.addNode(t),e.parent=t,this.lastNode=e},e.prototype.oncdataend=function(){this.lastNode=null},e.prototype.onprocessinginstruction=function(e,t){var n=new o.ProcessingInstruction(e,t);this.addNode(n)},e.prototype.handleCallback=function(e){if("function"==typeof this.callback)this.callback(e,this.dom);else if(e)throw e},e.prototype.addNode=function(e){var t=this.tagStack[this.tagStack.length-1],n=t.children[t.children.length-1];this.options.withStartIndices&&(e.startIndex=this.parser.startIndex),this.options.withEndIndices&&(e.endIndex=this.parser.endIndex),t.children.push(e),n&&(e.prev=n,n.next=e),e.parent=t,this.lastNode=null},e}();t.DomHandler=l,t.default=l},79:function(e,t,n){"use strict";var r,i=this&&this.__extends||(r=function(e,t){return r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},r(e,t)},function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function __(){this.constructor=e}r(e,t),e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}),a=this&&this.__assign||function(){return a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)};Object.defineProperty(t,"__esModule",{value:!0}),t.cloneNode=t.hasChildren=t.isDocument=t.isDirective=t.isComment=t.isText=t.isCDATA=t.isTag=t.Element=t.Document=t.CDATA=t.NodeWithChildren=t.ProcessingInstruction=t.Comment=t.Text=t.DataNode=t.Node=void 0;var o=n(908),s=function(){function e(){this.parent=null,this.prev=null,this.next=null,this.startIndex=null,this.endIndex=null}return Object.defineProperty(e.prototype,"parentNode",{get:function(){return this.parent},set:function(e){this.parent=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"previousSibling",{get:function(){return this.prev},set:function(e){this.prev=e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"nextSibling",{get:function(){return this.next},set:function(e){this.next=e},enumerable:!1,configurable:!0}),e.prototype.cloneNode=function(e){return void 0===e&&(e=!1),E(this,e)},e}();t.Node=s;var l=function(e){function t(t){var n=e.call(this)||this;return n.data=t,n}return i(t,e),Object.defineProperty(t.prototype,"nodeValue",{get:function(){return this.data},set:function(e){this.data=e},enumerable:!1,configurable:!0}),t}(s);t.DataNode=l;var c=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Text,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 3},enumerable:!1,configurable:!0}),t}(l);t.Text=c;var u=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Comment,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 8},enumerable:!1,configurable:!0}),t}(l);t.Comment=u;var d=function(e){function t(t,n){var r=e.call(this,n)||this;return r.name=t,r.type=o.ElementType.Directive,r}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),t}(l);t.ProcessingInstruction=d;var p=function(e){function t(t){var n=e.call(this)||this;return n.children=t,n}return i(t,e),Object.defineProperty(t.prototype,"firstChild",{get:function(){var e;return null!==(e=this.children[0])&&void 0!==e?e:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"lastChild",{get:function(){return this.children.length>0?this.children[this.children.length-1]:null},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"childNodes",{get:function(){return this.children},set:function(e){this.children=e},enumerable:!1,configurable:!0}),t}(s);t.NodeWithChildren=p;var f=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.CDATA,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 4},enumerable:!1,configurable:!0}),t}(p);t.CDATA=f;var h=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=o.ElementType.Root,t}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 9},enumerable:!1,configurable:!0}),t}(p);t.Document=h;var m=function(e){function t(t,n,r,i){void 0===r&&(r=[]),void 0===i&&(i="script"===t?o.ElementType.Script:"style"===t?o.ElementType.Style:o.ElementType.Tag);var a=e.call(this,r)||this;return a.name=t,a.attribs=n,a.type=i,a}return i(t,e),Object.defineProperty(t.prototype,"nodeType",{get:function(){return 1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"tagName",{get:function(){return this.name},set:function(e){this.name=e},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"attributes",{get:function(){var e=this;return Object.keys(this.attribs).map((function(t){var n,r;return{name:t,value:e.attribs[t],namespace:null===(n=e["x-attribsNamespace"])||void 0===n?void 0:n[t],prefix:null===(r=e["x-attribsPrefix"])||void 0===r?void 0:r[t]}}))},enumerable:!1,configurable:!0}),t}(p);function g(e){return(0,o.isTag)(e)}function v(e){return e.type===o.ElementType.CDATA}function b(e){return e.type===o.ElementType.Text}function y(e){return e.type===o.ElementType.Comment}function C(e){return e.type===o.ElementType.Directive}function _(e){return e.type===o.ElementType.Root}function E(e,t){var n;if(void 0===t&&(t=!1),b(e))n=new c(e.data);else if(y(e))n=new u(e.data);else if(g(e)){var r=t?w(e.children):[],i=new m(e.name,a({},e.attribs),r);r.forEach((function(e){return e.parent=i})),null!=e.namespace&&(i.namespace=e.namespace),e["x-attribsNamespace"]&&(i["x-attribsNamespace"]=a({},e["x-attribsNamespace"])),e["x-attribsPrefix"]&&(i["x-attribsPrefix"]=a({},e["x-attribsPrefix"])),n=i}else if(v(e)){r=t?w(e.children):[];var o=new f(r);r.forEach((function(e){return e.parent=o})),n=o}else if(_(e)){r=t?w(e.children):[];var s=new h(r);r.forEach((function(e){return e.parent=s})),e["x-mode"]&&(s["x-mode"]=e["x-mode"]),n=s}else{if(!C(e))throw new Error("Not implemented yet: ".concat(e.type));var l=new d(e.name,e.data);null!=e["x-name"]&&(l["x-name"]=e["x-name"],l["x-publicId"]=e["x-publicId"],l["x-systemId"]=e["x-systemId"]),n=l}return n.startIndex=e.startIndex,n.endIndex=e.endIndex,null!=e.sourceCodeLocation&&(n.sourceCodeLocation=e.sourceCodeLocation),n}function w(e){for(var t=e.map((function(e){return E(e,!0)})),n=1;n<t.length;n++)t[n].prev=t[n-1],t[n-1].next=t[n];return t}t.Element=m,t.isTag=g,t.isCDATA=v,t.isText=b,t.isComment=y,t.isDirective=C,t.isDocument=_,t.hasChildren=function(e){return Object.prototype.hasOwnProperty.call(e,"children")},t.cloneNode=E},139:function(e){var t=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//g,n=/\n/g,r=/^\s*/,i=/^(\*?[-#/*\\\w]+(\[[0-9a-z_-]+\])?)\s*/,a=/^:\s*/,o=/^((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};])+)/,s=/^[;\s]*/,l=/^\s+|\s+$/g,c="";function u(e){return e?e.replace(l,c):c}e.exports=function(e,l){if("string"!=typeof e)throw new TypeError("First argument must be a string");if(!e)return[];l=l||{};var d=1,p=1;function f(e){var t=e.match(n);t&&(d+=t.length);var r=e.lastIndexOf("\n");p=~r?e.length-r:p+e.length}function h(){var e={line:d,column:p};return function(t){return t.position=new m(e),y(),t}}function m(e){this.start=e,this.end={line:d,column:p},this.source=l.source}m.prototype.content=e;var g=[];function v(t){var n=new Error(l.source+":"+d+":"+p+": "+t);if(n.reason=t,n.filename=l.source,n.line=d,n.column=p,n.source=e,!l.silent)throw n;g.push(n)}function b(t){var n=t.exec(e);if(n){var r=n[0];return f(r),e=e.slice(r.length),n}}function y(){b(r)}function C(e){var t;for(e=e||[];t=_();)!1!==t&&e.push(t);return e}function _(){var t=h();if("/"==e.charAt(0)&&"*"==e.charAt(1)){for(var n=2;c!=e.charAt(n)&&("*"!=e.charAt(n)||"/"!=e.charAt(n+1));)++n;if(n+=2,c===e.charAt(n-1))return v("End of comment missing");var r=e.slice(2,n-2);return p+=2,f(r),e=e.slice(n),p+=2,t({type:"comment",comment:r})}}function E(){var e=h(),n=b(i);if(n){if(_(),!b(a))return v("property missing ':'");var r=b(o),l=e({type:"declaration",property:u(n[0].replace(t,c)),value:r?u(r[0].replace(t,c)):c});return b(s),l}}return y(),function(){var e,t=[];for(C(t);e=E();)!1!==e&&(t.push(e),C(t));return t}()}},921:function(e,t){"use strict";var n="function"==typeof Symbol&&Symbol.for,r=n?Symbol.for("react.element"):60103,i=n?Symbol.for("react.portal"):60106,a=n?Symbol.for("react.fragment"):60107,o=n?Symbol.for("react.strict_mode"):60108,s=n?Symbol.for("react.profiler"):60114,l=n?Symbol.for("react.provider"):60109,c=n?Symbol.for("react.context"):60110,u=n?Symbol.for("react.async_mode"):60111,d=n?Symbol.for("react.concurrent_mode"):60111,p=n?Symbol.for("react.forward_ref"):60112,f=n?Symbol.for("react.suspense"):60113,h=n?Symbol.for("react.suspense_list"):60120,m=n?Symbol.for("react.memo"):60115,g=n?Symbol.for("react.lazy"):60116,v=n?Symbol.for("react.block"):60121,b=n?Symbol.for("react.fundamental"):60117,y=n?Symbol.for("react.responder"):60118,C=n?Symbol.for("react.scope"):60119;function _(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case r:switch(e=e.type){case u:case d:case a:case s:case o:case f:return e;default:switch(e=e&&e.$$typeof){case c:case p:case g:case m:case l:return e;default:return t}}case i:return t}}}function E(e){return _(e)===d}t.AsyncMode=u,t.ConcurrentMode=d,t.ContextConsumer=c,t.ContextProvider=l,t.Element=r,t.ForwardRef=p,t.Fragment=a,t.Lazy=g,t.Memo=m,t.Portal=i,t.Profiler=s,t.StrictMode=o,t.Suspense=f,t.isAsyncMode=function(e){return E(e)||_(e)===u},t.isConcurrentMode=E,t.isContextConsumer=function(e){return _(e)===c},t.isContextProvider=function(e){return _(e)===l},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===r},t.isForwardRef=function(e){return _(e)===p},t.isFragment=function(e){return _(e)===a},t.isLazy=function(e){return _(e)===g},t.isMemo=function(e){return _(e)===m},t.isPortal=function(e){return _(e)===i},t.isProfiler=function(e){return _(e)===s},t.isStrictMode=function(e){return _(e)===o},t.isSuspense=function(e){return _(e)===f},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===a||e===d||e===s||e===o||e===f||e===h||"object"==typeof e&&null!==e&&(e.$$typeof===g||e.$$typeof===m||e.$$typeof===l||e.$$typeof===c||e.$$typeof===p||e.$$typeof===b||e.$$typeof===y||e.$$typeof===C||e.$$typeof===v)},t.typeOf=_},864:function(e,t,n){"use strict";e.exports=n(921)},726:function(e,t,n){"use strict";function r(e,t,n,r,i,a,o){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=i,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=o}const i={};["children","dangerouslySetInnerHTML","defaultValue","defaultChecked","innerHTML","suppressContentEditableWarning","suppressHydrationWarning","style"].forEach((e=>{i[e]=new r(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((([e,t])=>{i[e]=new r(e,1,!1,t,null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((e=>{i[e]=new r(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((e=>{i[e]=new r(e,2,!1,e,null,!1,!1)})),["allowFullScreen","async","autoFocus","autoPlay","controls","default","defer","disabled","disablePictureInPicture","disableRemotePlayback","formNoValidate","hidden","loop","noModule","noValidate","open","playsInline","readOnly","required","reversed","scoped","seamless","itemScope"].forEach((e=>{i[e]=new r(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((e=>{i[e]=new r(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((e=>{i[e]=new r(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((e=>{i[e]=new r(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((e=>{i[e]=new r(e,5,!1,e.toLowerCase(),null,!1,!1)}));const a=/[\-\:]([a-z])/g,o=e=>e[1].toUpperCase();["accent-height","alignment-baseline","arabic-form","baseline-shift","cap-height","clip-path","clip-rule","color-interpolation","color-interpolation-filters","color-profile","color-rendering","dominant-baseline","enable-background","fill-opacity","fill-rule","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","glyph-name","glyph-orientation-horizontal","glyph-orientation-vertical","horiz-adv-x","horiz-origin-x","image-rendering","letter-spacing","lighting-color","marker-end","marker-mid","marker-start","overline-position","overline-thickness","paint-order","panose-1","pointer-events","rendering-intent","shape-rendering","stop-color","stop-opacity","strikethrough-position","strikethrough-thickness","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke-width","text-anchor","text-decoration","text-rendering","underline-position","underline-thickness","unicode-bidi","unicode-range","units-per-em","v-alphabetic","v-hanging","v-ideographic","v-mathematical","vector-effect","vert-adv-y","vert-origin-x","vert-origin-y","word-spacing","writing-mode","xmlns:xlink","x-height"].forEach((e=>{const t=e.replace(a,o);i[t]=new r(t,1,!1,e,null,!1,!1)})),["xlink:actuate","xlink:arcrole","xlink:role","xlink:show","xlink:title","xlink:type"].forEach((e=>{const t=e.replace(a,o);i[t]=new r(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)})),["xml:base","xml:lang","xml:space"].forEach((e=>{const t=e.replace(a,o);i[t]=new r(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)})),["tabIndex","crossOrigin"].forEach((e=>{i[e]=new r(e,1,!1,e.toLowerCase(),null,!1,!1)})),i.xlinkHref=new r("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach((e=>{i[e]=new r(e,1,!1,e.toLowerCase(),null,!0,!0)}));const{CAMELCASE:s,SAME:l,possibleStandardNames:c}=n(229),u=RegExp.prototype.test.bind(new RegExp("^(data|aria)-[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$")),d=Object.keys(c).reduce(((e,t)=>{const n=c[t];return n===l?e[t]=t:n===s?e[t.toLowerCase()]=t:e[t]=n,e}),{});t.BOOLEAN=3,t.BOOLEANISH_STRING=2,t.NUMERIC=5,t.OVERLOADED_BOOLEAN=4,t.POSITIVE_NUMERIC=6,t.RESERVED=0,t.STRING=1,t.getPropertyInfo=function(e){return i.hasOwnProperty(e)?i[e]:null},t.isCustomAttribute=u,t.possibleStandardNames=d},229:function(e,t){t.SAME=0,t.CAMELCASE=1,t.possibleStandardNames={accept:0,acceptCharset:1,"accept-charset":"acceptCharset",accessKey:1,action:0,allowFullScreen:1,alt:0,as:0,async:0,autoCapitalize:1,autoComplete:1,autoCorrect:1,autoFocus:1,autoPlay:1,autoSave:1,capture:0,cellPadding:1,cellSpacing:1,challenge:0,charSet:1,checked:0,children:0,cite:0,class:"className",classID:1,className:1,cols:0,colSpan:1,content:0,contentEditable:1,contextMenu:1,controls:0,controlsList:1,coords:0,crossOrigin:1,dangerouslySetInnerHTML:1,data:0,dateTime:1,default:0,defaultChecked:1,defaultValue:1,defer:0,dir:0,disabled:0,disablePictureInPicture:1,disableRemotePlayback:1,download:0,draggable:0,encType:1,enterKeyHint:1,for:"htmlFor",form:0,formMethod:1,formAction:1,formEncType:1,formNoValidate:1,formTarget:1,frameBorder:1,headers:0,height:0,hidden:0,high:0,href:0,hrefLang:1,htmlFor:1,httpEquiv:1,"http-equiv":"httpEquiv",icon:0,id:0,innerHTML:1,inputMode:1,integrity:0,is:0,itemID:1,itemProp:1,itemRef:1,itemScope:1,itemType:1,keyParams:1,keyType:1,kind:0,label:0,lang:0,list:0,loop:0,low:0,manifest:0,marginWidth:1,marginHeight:1,max:0,maxLength:1,media:0,mediaGroup:1,method:0,min:0,minLength:1,multiple:0,muted:0,name:0,noModule:1,nonce:0,noValidate:1,open:0,optimum:0,pattern:0,placeholder:0,playsInline:1,poster:0,preload:0,profile:0,radioGroup:1,readOnly:1,referrerPolicy:1,rel:0,required:0,reversed:0,role:0,rows:0,rowSpan:1,sandbox:0,scope:0,scoped:0,scrolling:0,seamless:0,selected:0,shape:0,size:0,sizes:0,span:0,spellCheck:1,src:0,srcDoc:1,srcLang:1,srcSet:1,start:0,step:0,style:0,summary:0,tabIndex:1,target:0,title:0,type:0,useMap:1,value:0,width:0,wmode:0,wrap:0,about:0,accentHeight:1,"accent-height":"accentHeight",accumulate:0,additive:0,alignmentBaseline:1,"alignment-baseline":"alignmentBaseline",allowReorder:1,alphabetic:0,amplitude:0,arabicForm:1,"arabic-form":"arabicForm",ascent:0,attributeName:1,attributeType:1,autoReverse:1,azimuth:0,baseFrequency:1,baselineShift:1,"baseline-shift":"baselineShift",baseProfile:1,bbox:0,begin:0,bias:0,by:0,calcMode:1,capHeight:1,"cap-height":"capHeight",clip:0,clipPath:1,"clip-path":"clipPath",clipPathUnits:1,clipRule:1,"clip-rule":"clipRule",color:0,colorInterpolation:1,"color-interpolation":"colorInterpolation",colorInterpolationFilters:1,"color-interpolation-filters":"colorInterpolationFilters",colorProfile:1,"color-profile":"colorProfile",colorRendering:1,"color-rendering":"colorRendering",contentScriptType:1,contentStyleType:1,cursor:0,cx:0,cy:0,d:0,datatype:0,decelerate:0,descent:0,diffuseConstant:1,direction:0,display:0,divisor:0,dominantBaseline:1,"dominant-baseline":"dominantBaseline",dur:0,dx:0,dy:0,edgeMode:1,elevation:0,enableBackground:1,"enable-background":"enableBackground",end:0,exponent:0,externalResourcesRequired:1,fill:0,fillOpacity:1,"fill-opacity":"fillOpacity",fillRule:1,"fill-rule":"fillRule",filter:0,filterRes:1,filterUnits:1,floodOpacity:1,"flood-opacity":"floodOpacity",floodColor:1,"flood-color":"floodColor",focusable:0,fontFamily:1,"font-family":"fontFamily",fontSize:1,"font-size":"fontSize",fontSizeAdjust:1,"font-size-adjust":"fontSizeAdjust",fontStretch:1,"font-stretch":"fontStretch",fontStyle:1,"font-style":"fontStyle",fontVariant:1,"font-variant":"fontVariant",fontWeight:1,"font-weight":"fontWeight",format:0,from:0,fx:0,fy:0,g1:0,g2:0,glyphName:1,"glyph-name":"glyphName",glyphOrientationHorizontal:1,"glyph-orientation-horizontal":"glyphOrientationHorizontal",glyphOrientationVertical:1,"glyph-orientation-vertical":"glyphOrientationVertical",glyphRef:1,gradientTransform:1,gradientUnits:1,hanging:0,horizAdvX:1,"horiz-adv-x":"horizAdvX",horizOriginX:1,"horiz-origin-x":"horizOriginX",ideographic:0,imageRendering:1,"image-rendering":"imageRendering",in2:0,in:0,inlist:0,intercept:0,k1:0,k2:0,k3:0,k4:0,k:0,kernelMatrix:1,kernelUnitLength:1,kerning:0,keyPoints:1,keySplines:1,keyTimes:1,lengthAdjust:1,letterSpacing:1,"letter-spacing":"letterSpacing",lightingColor:1,"lighting-color":"lightingColor",limitingConeAngle:1,local:0,markerEnd:1,"marker-end":"markerEnd",markerHeight:1,markerMid:1,"marker-mid":"markerMid",markerStart:1,"marker-start":"markerStart",markerUnits:1,markerWidth:1,mask:0,maskContentUnits:1,maskUnits:1,mathematical:0,mode:0,numOctaves:1,offset:0,opacity:0,operator:0,order:0,orient:0,orientation:0,origin:0,overflow:0,overlinePosition:1,"overline-position":"overlinePosition",overlineThickness:1,"overline-thickness":"overlineThickness",paintOrder:1,"paint-order":"paintOrder",panose1:0,"panose-1":"panose1",pathLength:1,patternContentUnits:1,patternTransform:1,patternUnits:1,pointerEvents:1,"pointer-events":"pointerEvents",points:0,pointsAtX:1,pointsAtY:1,pointsAtZ:1,prefix:0,preserveAlpha:1,preserveAspectRatio:1,primitiveUnits:1,property:0,r:0,radius:0,refX:1,refY:1,renderingIntent:1,"rendering-intent":"renderingIntent",repeatCount:1,repeatDur:1,requiredExtensions:1,requiredFeatures:1,resource:0,restart:0,result:0,results:0,rotate:0,rx:0,ry:0,scale:0,security:0,seed:0,shapeRendering:1,"shape-rendering":"shapeRendering",slope:0,spacing:0,specularConstant:1,specularExponent:1,speed:0,spreadMethod:1,startOffset:1,stdDeviation:1,stemh:0,stemv:0,stitchTiles:1,stopColor:1,"stop-color":"stopColor",stopOpacity:1,"stop-opacity":"stopOpacity",strikethroughPosition:1,"strikethrough-position":"strikethroughPosition",strikethroughThickness:1,"strikethrough-thickness":"strikethroughThickness",string:0,stroke:0,strokeDasharray:1,"stroke-dasharray":"strokeDasharray",strokeDashoffset:1,"stroke-dashoffset":"strokeDashoffset",strokeLinecap:1,"stroke-linecap":"strokeLinecap",strokeLinejoin:1,"stroke-linejoin":"strokeLinejoin",strokeMiterlimit:1,"stroke-miterlimit":"strokeMiterlimit",strokeWidth:1,"stroke-width":"strokeWidth",strokeOpacity:1,"stroke-opacity":"strokeOpacity",suppressContentEditableWarning:1,suppressHydrationWarning:1,surfaceScale:1,systemLanguage:1,tableValues:1,targetX:1,targetY:1,textAnchor:1,"text-anchor":"textAnchor",textDecoration:1,"text-decoration":"textDecoration",textLength:1,textRendering:1,"text-rendering":"textRendering",to:0,transform:0,typeof:0,u1:0,u2:0,underlinePosition:1,"underline-position":"underlinePosition",underlineThickness:1,"underline-thickness":"underlineThickness",unicode:0,unicodeBidi:1,"unicode-bidi":"unicodeBidi",unicodeRange:1,"unicode-range":"unicodeRange",unitsPerEm:1,"units-per-em":"unitsPerEm",unselectable:0,vAlphabetic:1,"v-alphabetic":"vAlphabetic",values:0,vectorEffect:1,"vector-effect":"vectorEffect",version:0,vertAdvY:1,"vert-adv-y":"vertAdvY",vertOriginX:1,"vert-origin-x":"vertOriginX",vertOriginY:1,"vert-origin-y":"vertOriginY",vHanging:1,"v-hanging":"vHanging",vIdeographic:1,"v-ideographic":"vIdeographic",viewBox:1,viewTarget:1,visibility:0,vMathematical:1,"v-mathematical":"vMathematical",vocab:0,widths:0,wordSpacing:1,"word-spacing":"wordSpacing",writingMode:1,"writing-mode":"writingMode",x1:0,x2:0,x:0,xChannelSelector:1,xHeight:1,"x-height":"xHeight",xlinkActuate:1,"xlink:actuate":"xlinkActuate",xlinkArcrole:1,"xlink:arcrole":"xlinkArcrole",xlinkHref:1,"xlink:href":"xlinkHref",xlinkRole:1,"xlink:role":"xlinkRole",xlinkShow:1,"xlink:show":"xlinkShow",xlinkTitle:1,"xlink:title":"xlinkTitle",xlinkType:1,"xlink:type":"xlinkType",xmlBase:1,"xml:base":"xmlBase",xmlLang:1,"xml:lang":"xmlLang",xmlns:0,"xml:space":"xmlSpace",xmlnsXlink:1,"xmlns:xlink":"xmlnsXlink",xmlSpace:1,y1:0,y2:0,y:0,yChannelSelector:1,z:0,zoomAndPan:1}},476:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(174)),a=n(678);t.default=function(e,t){var n={};return e&&"string"==typeof e?((0,i.default)(e,(function(e,r){e&&r&&(n[(0,a.camelCase)(e,t)]=r)})),n):n}},678:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.camelCase=void 0;var n=/^--[a-zA-Z0-9-]+$/,r=/-([a-z])/g,i=/^[^-]+$/,a=/^-(webkit|moz|ms|o|khtml)-/,o=/^-(ms)-/,s=function(e,t){return t.toUpperCase()},l=function(e,t){return"".concat(t,"-")};t.camelCase=function(e,t){return void 0===t&&(t={}),function(e){return!e||i.test(e)||n.test(e)}(e)?e:(e=e.toLowerCase(),(e=t.reactCompat?e.replace(o,l):e.replace(a,l)).replace(r,s))}},174:function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0});var i=r(n(139));t.default=function(e,t){var n=null;if(!e||"string"!=typeof e)return n;var r=(0,i.default)(e),a="function"==typeof t;return r.forEach((function(e){if("declaration"===e.type){var r=e.property,i=e.value;a?t(r,i,e):i&&((n=n||{})[r]=i)}})),n}},196:function(e){"use strict";e.exports=window.React}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var a=t[r]={exports:{}};return e[r].call(a.exports,a,a.exports,n),a.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){"use strict";var e=window.wp.element,t=window.wp.data,r=window.wp.plugins,i=window.wp.blockEditor,a=window.wp.components;const o=72,s=32,l=24,c=16,u=2,d=1.4,p=1.2,f=1,h="currentColor",m="none",g="#fff",v={stroke:h,strokeWidth:d,fill:m,strokeLinecap:"round",strokeLinejoin:"round"},b={fill:h,stroke:m},y=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 24 24",fill:m,...t},(0,e.createElement)("path",{d:"M9.8132 15.9038L9 18.75L8.1868 15.9038C7.75968 14.4089 6.59112 13.2403 5.09619 12.8132L2.25 12L5.09619 11.1868C6.59113 10.7597 7.75968 9.59112 8.1868 8.09619L9 5.25L9.8132 8.09619C10.2403 9.59113 11.4089 10.7597 12.9038 11.1868L15.75 12L12.9038 12.8132C11.4089 13.2403 10.2403 14.4089 9.8132 15.9038Z",...v,...n}),(0,e.createElement)("path",{d:"M16.8942 20.5673L16.5 21.75L16.1058 20.5673C15.8818 19.8954 15.3546 19.3682 14.6827 19.1442L13.5 18.75L14.6827 18.3558C15.3546 18.1318 15.8818 17.6046 16.1058 16.9327L16.5 15.75L16.8942 16.9327C17.1182 17.6046 17.6454 18.1318 18.3173 18.3558L19.5 18.75L18.3173 19.1442C17.6454 19.3682 17.1182 19.8954 16.8942 20.5673Z",...v,...n}),(0,e.createElement)("path",{d:"M18.2589 8.71454L18 9.75L17.7411 8.71454C17.4388 7.50533 16.4947 6.56117 15.2855 6.25887L14.25 6L15.2855 5.74113C16.4947 5.43883 17.4388 4.49467 17.7411 3.28546L18 2.25L18.2589 3.28546C18.5612 4.49467 19.5053 5.43883 20.7145 5.74113L21.75 6L20.7145 6.25887C19.5053 6.56117 18.5612 7.50532 18.2589 8.71454Z",...v,...n}))},C=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:o,height:l,viewBox:"0 0 78 24",fill:m,...t},(0,e.createElement)("path",{d:"M9.8132 15.9038L9 18.75L8.1868 15.9038C7.75968 14.4089 6.59112 13.2403 5.09619 12.8132L2.25 12L5.09619 11.1868C6.59113 10.7597 7.75968 9.59112 8.1868 8.09619L9 5.25L9.8132 8.09619C10.2403 9.59113 11.4089 10.7597 12.9038 11.1868L15.75 12L12.9038 12.8132C11.4089 13.2403 10.2403 14.4089 9.8132 15.9038Z",...v,...n}),(0,e.createElement)("path",{d:"M16.8942 20.5673L16.5 21.75L16.1058 20.5673C15.8818 19.8954 15.3546 19.3682 14.6827 19.1442L13.5 18.75L14.6827 18.3558C15.3546 18.1318 15.8818 17.6046 16.1058 16.9327L16.5 15.75L16.8942 16.9327C17.1182 17.6046 17.6454 18.1318 18.3173 18.3558L19.5 18.75L18.3173 19.1442C17.6454 19.3682 17.1182 19.8954 16.8942 20.5673Z",...v,...n}),(0,e.createElement)("path",{d:"M18.2589 8.71454L18 9.75L17.7411 8.71454C17.4388 7.50533 16.4947 6.56117 15.2855 6.25887L14.25 6L15.2855 5.74113C16.4947 5.43883 17.4388 4.49467 17.7411 3.28546L18 2.25L18.2589 3.28546C18.5612 4.49467 19.5053 5.43883 20.7145 5.74113L21.75 6L20.7145 6.25887C19.5053 6.56117 18.5612 7.50532 18.2589 8.71454Z",...v,...n}),(0,e.createElement)("path",{d:"M31.8864 18H30.4091L34.6818 6.36364H36.1364L40.4091 18H38.9318L35.4545 8.20455H35.3636L31.8864 18ZM32.4318 13.4545H38.3864V14.7045H32.4318V13.4545ZM48.2216 11.2273L47.017 11.5682C46.9413 11.3674 46.8295 11.1723 46.6818 10.983C46.5379 10.7898 46.3409 10.6307 46.0909 10.5057C45.8409 10.3807 45.5208 10.3182 45.1307 10.3182C44.5966 10.3182 44.1515 10.4413 43.7955 10.6875C43.4432 10.9299 43.267 11.2386 43.267 11.6136C43.267 11.947 43.3883 12.2102 43.6307 12.4034C43.8731 12.5966 44.2519 12.7576 44.767 12.8864L46.0625 13.2045C46.8428 13.3939 47.4242 13.6837 47.8068 14.0739C48.1894 14.4602 48.3807 14.9583 48.3807 15.5682C48.3807 16.0682 48.2367 16.5152 47.9489 16.9091C47.6648 17.303 47.267 17.6136 46.7557 17.8409C46.2443 18.0682 45.6496 18.1818 44.9716 18.1818C44.0814 18.1818 43.3447 17.9886 42.7614 17.6023C42.178 17.2159 41.8087 16.6515 41.6534 15.9091L42.9261 15.5909C43.0473 16.0606 43.2765 16.4129 43.6136 16.6477C43.9545 16.8826 44.3996 17 44.9489 17C45.5739 17 46.0701 16.8674 46.4375 16.6023C46.8087 16.3333 46.9943 16.0114 46.9943 15.6364C46.9943 15.3333 46.8883 15.0795 46.6761 14.875C46.464 14.6667 46.1383 14.5114 45.6989 14.4091L44.2443 14.0682C43.4451 13.8788 42.858 13.5852 42.483 13.1875C42.1117 12.786 41.9261 12.2841 41.9261 11.6818C41.9261 11.1894 42.0644 10.7538 42.3409 10.375C42.6212 9.99621 43.0019 9.69886 43.483 9.48295C43.9678 9.26705 44.517 9.15909 45.1307 9.15909C45.9943 9.15909 46.6723 9.34848 47.1648 9.72727C47.661 10.1061 48.0133 10.6061 48.2216 11.2273ZM51.6491 14.8182L51.6264 13.1591H51.8991L55.7173 9.27273H57.3764L53.3082 13.3864H53.1946L51.6491 14.8182ZM50.3991 18V6.36364H51.7401V18H50.3991ZM55.9446 18L52.5355 13.6818L53.4901 12.75L57.6491 18H55.9446ZM64.2614 18H62.7841L67.0568 6.36364H68.5114L72.7841 18H71.3068L67.8295 8.20455H67.7386L64.2614 18ZM64.8068 13.4545H70.7614V14.7045H64.8068V13.4545ZM76.0057 6.36364V18H74.5966V6.36364H76.0057Z",...b,...n}))},_=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 24 24",fill:m,...t},(0,e.createElement)("path",{d:"M4.5 12.75l6 6 9-13.5",...v,strokeWidth:p,...n}))},E=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M2.66602 13.0007V3.00065C2.66602 2.55862 2.84161 2.1347 3.15417 1.82214C3.46673 1.50958 3.89065 1.33398 4.33268 1.33398H13.3327V14.6673H4.33268C3.89065 14.6673 3.46673 14.4917 3.15417 14.1792C2.84161 13.8666 2.66602 13.4427 2.66602 13.0007ZM2.66602 13.0007C2.66602 12.5586 2.84161 12.1347 3.15417 11.8221C3.46673 11.5096 3.89065 11.334 4.33268 11.334H13.3327",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M6 6.33333L7.33333 7.66667L10 5",...v,strokeWidth:d,...n}))},w=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 24 24",fill:m,...t},(0,e.createElement)("path",{d:"M12 6v6h4.5m4.5 0a9 9 0 11-18 0 9 9 0 0118 0z",...v,strokeWidth:p,...n}))},x=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M2.4 10.8C1.63 10.8 1 10.17 1 9.4V2.4C1 1.63 1.63 1 2.4 1H9.4C10.17 1 10.8 1.63 10.8 2.4M6.6 5.2H13.6C14.3732 5.2 15 5.8268 15 6.6V13.6C15 14.3732 14.3732 15 13.6 15H6.6C5.8268 15 5.2 14.3732 5.2 13.6V6.6C5.2 5.8268 5.8268 5.2 6.6 5.2Z",...v,strokeWidth:d,...n}))},k=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M8 8L12.2 12.2M8 12.2L12.2 8M2.4 10.8C1.63 10.8 1 10.17 1 9.4V2.4C1 1.63 1.63 1 2.4 1H9.4C10.17 1 10.8 1.63 10.8 2.4M6.6 5.2H13.6C14.3732 5.2 15 5.8268 15 6.6V13.6C15 14.3732 14.3732 15 13.6 15H6.6C5.8268 15 5.2 14.3732 5.2 13.6V6.6C5.2 5.8268 5.8268 5.2 6.6 5.2Z",...v,strokeWidth:d,...n}))},S=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M8 13.334H14",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M11 2.33218C11.2652 2.06697 11.6249 1.91797 12 1.91797C12.1857 1.91797 12.3696 1.95455 12.5412 2.02562C12.7128 2.09669 12.8687 2.20086 13 2.33218C13.1313 2.4635 13.2355 2.61941 13.3066 2.79099C13.3776 2.96257 13.4142 3.14647 13.4142 3.33218C13.4142 3.5179 13.3776 3.7018 13.3066 3.87338C13.2355 4.04496 13.1313 4.20086 13 4.33218L4.66667 12.6655L2 13.3322L2.66667 10.6655L11 2.33218Z",...v,strokeWidth:d,...n}))},M=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 19 18",fill:m,...t},(0,e.createElement)("path",{d:"M14.918 2.25H4.41797C3.58954 2.25 2.91797 2.92157 2.91797 3.75V14.25C2.91797 15.0784 3.58954 15.75 4.41797 15.75H14.918C15.7464 15.75 16.418 15.0784 16.418 14.25V3.75C16.418 2.92157 15.7464 2.25 14.918 2.25Z",...v,...n}),(0,e.createElement)("path",{d:"M7.41797 2.25V15.75",...v,...n}),(0,e.createElement)("path",{d:"M11.168 6.75L13.418 9L11.168 11.25",...v,...n}))},O=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 18 18",fill:m,...t},(0,e.createElement)("path",{d:"M15.75 1.5V6H11.25",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M15.7516 9.75011C15.5923 11.2546 14.9323 12.6619 13.8774 13.7463C12.8225 14.8307 11.4338 15.5293 9.93435 15.7299C8.43486 15.9306 6.91143 15.6217 5.60853 14.8528C4.30562 14.0839 3.29878 12.8997 2.74957 11.49C2.20035 10.0804 2.14061 8.52708 2.57993 7.07942C3.01925 5.63175 3.93216 4.37364 5.17216 3.50696C6.41217 2.64029 7.90737 2.2153 9.41784 2.30019C10.9283 2.38509 12.3665 2.97494 13.5016 3.97511L15.7516 6.00011",...v,strokeWidth:d,...n}))},L=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M14 8C14 6.4087 13.3679 4.88258 12.2426 3.75736C11.1174 2.63214 9.5913 2 8 2C6.32263 2.00631 4.71265 2.66082 3.50667 3.82667L2 5.33333",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M2 2V5.33333H5.33333",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M2 8C2 9.5913 2.63214 11.1174 3.75736 12.2426C4.88258 13.3679 6.4087 14 8 14C9.67737 13.9937 11.2874 13.3392 12.4933 12.1733L14 10.6667",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10.666 10.666H13.9993V13.9993",...v,strokeWidth:d,...n}))},z=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M7.33333 8H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10.6667 4H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10.6667 12H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M12 6V10",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M14 8H10",...v,strokeWidth:d,...n}))},T=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M7.33333 8H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10.6667 4H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10.6667 12H2",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M14 8H10",...v,strokeWidth:d,...n}))},I=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M2 4.66667V3.33333C2 2.97971 2.14048 2.64057 2.39052 2.39052C2.64057 2.14048 2.97971 2 3.33333 2H4.66667M11.3333 2H12.6667C13.0203 2 13.3594 2.14048 13.6095 2.39052C13.8595 2.64057 14 2.97971 14 3.33333V4.66667M14 11.3333V12.6667C14 13.0203 13.8595 13.3594 13.6095 13.6095C13.3594 13.8595 13.0203 14 12.6667 14H11.3333M4.66667 14H3.33333C2.97971 14 2.64057 13.8595 2.39052 13.6095C2.14048 13.3594 2 13.0203 2 12.6667V11.3333M4.66667 5.33333H10M4.66667 8H11.3333M4.66667 10.6667H8.66667",...v,strokeWidth:d,...n}))},P=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return{left:(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M10 12L6 8L10 4",...v,strokeWidth:d,...n})),right:(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M6 12L10 8L6 4",...v,strokeWidth:d,...n}))}},R=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M8.00065 14.6673C11.6825 14.6673 14.6673 11.6825 14.6673 8.00065C14.6673 4.31875 11.6825 1.33398 8.00065 1.33398C4.31875 1.33398 1.33398 4.31875 1.33398 8.00065C1.33398 11.6825 4.31875 14.6673 8.00065 14.6673Z",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M5.33398 9.33398C5.33398 9.33398 6.33398 10.6673 8.00065 10.6673C9.66732 10.6673 10.6673 9.33398 10.6673 9.33398",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M6 6H6.00889",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M10 6H10.0089",...v,strokeWidth:d,...n}))},A=function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M3.33398 5.33398L7.33398 9.33398",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M2.66602 9.33398L6.66602 5.33398L7.99935 3.33398",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M1.33398 3.33398H9.33398",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M4.66602 1.33398H5.33268",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M14.6667 14.6667L11.3333 8L8 14.6667",...v,strokeWidth:d,...n}),(0,e.createElement)("path",{d:"M9.33398 12H13.334",...v,strokeWidth:d,...n}))},N=e=>e.filter(Boolean).join(" "),V=async e=>{if(window.navigator.clipboard&&window.isSecureContext)await window.navigator.clipboard.writeText(e);else{const t=document.createElement("textarea");t.value=e,t.style.position="absolute",t.style.left="-999999px",t.style.opacity="0",document.body.prepend(t),t.select();try{document.execCommand("copy")}catch(e){console.error(e)}finally{t.remove()}}},H=e=>e.toString().replace(/\B(?=(\d{3})+(?!\d))/g,",");var D=window.wp.richText,F=window.wp.i18n,j=window.wp.apiFetch,B=n.n(j);const W=async e=>{const{userCommand:t,previousMessages:n,useSystemMessage:r}=e,i=[];n?.length&&n.forEach((e=>{i.push({role:e.role,content:e.message})})),i.push({role:"user",content:t});const a={message_array:i,use_system_message:r,is_admin:zip_ai_react?.is_admin,current_post_id:zip_ai_react?.current_post_id,current_page:zip_ai_react?.current_page,special_page:zip_ai_react?.special_page};return B()({path:"zip_ai/generate",method:"POST",data:a})};function $(e){return $="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},$(e)}function U(e){var t=function(e,t){if("object"!==$(e)||null===e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var r=n.call(e,"string");if("object"!==$(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"===$(t)?t:String(t)}function G(e,t,n){return(t=U(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Z(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function q(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Z(Object(n),!0).forEach((function(t){G(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Z(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Y(){return Y=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Y.apply(this,arguments)}var X=n(196),K=function(){function e(e){var t=this;this._insertTag=function(e){var n;n=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,n),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var n=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{n.insertRule(e,n.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){return e.parentNode&&e.parentNode.removeChild(e)})),this.tags=[],this.ctr=0},e}(),J=Math.abs,Q=String.fromCharCode,ee=Object.assign;function te(e){return e.trim()}function ne(e,t,n){return e.replace(t,n)}function re(e,t){return e.indexOf(t)}function ie(e,t){return 0|e.charCodeAt(t)}function ae(e,t,n){return e.slice(t,n)}function oe(e){return e.length}function se(e){return e.length}function le(e,t){return t.push(e),e}var ce=1,ue=1,de=0,pe=0,fe=0,he="";function me(e,t,n,r,i,a,o){return{value:e,root:t,parent:n,type:r,props:i,children:a,line:ce,column:ue,length:o,return:""}}function ge(e,t){return ee(me("",null,null,"",null,null,0),e,{length:-e.length},t)}function ve(){return fe=pe>0?ie(he,--pe):0,ue--,10===fe&&(ue=1,ce--),fe}function be(){return fe=pe<de?ie(he,pe++):0,ue++,10===fe&&(ue=1,ce++),fe}function ye(){return ie(he,pe)}function Ce(){return pe}function _e(e,t){return ae(he,e,t)}function Ee(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function we(e){return ce=ue=1,de=oe(he=e),pe=0,[]}function xe(e){return he="",e}function ke(e){return te(_e(pe-1,Oe(91===e?e+2:40===e?e+1:e)))}function Se(e){for(;(fe=ye())&&fe<33;)be();return Ee(e)>2||Ee(fe)>3?"":" "}function Me(e,t){for(;--t&&be()&&!(fe<48||fe>102||fe>57&&fe<65||fe>70&&fe<97););return _e(e,Ce()+(t<6&&32==ye()&&32==be()))}function Oe(e){for(;be();)switch(fe){case e:return pe;case 34:case 39:34!==e&&39!==e&&Oe(fe);break;case 40:41===e&&Oe(e);break;case 92:be()}return pe}function Le(e,t){for(;be()&&e+fe!==57&&(e+fe!==84||47!==ye()););return"/*"+_e(t,pe-1)+"*"+Q(47===e?e:be())}function ze(e){for(;!Ee(ye());)be();return _e(e,pe)}var Te="-ms-",Ie="-moz-",Pe="-webkit-",Re="comm",Ae="rule",Ne="decl",Ve="@keyframes";function He(e,t){for(var n="",r=se(e),i=0;i<r;i++)n+=t(e[i],i,e,t)||"";return n}function De(e,t,n,r){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case Ne:return e.return=e.return||e.value;case Re:return"";case Ve:return e.return=e.value+"{"+He(e.children,r)+"}";case Ae:e.value=e.props.join(",")}return oe(n=He(e.children,r))?e.return=e.value+"{"+n+"}":""}function Fe(e){return xe(je("",null,null,null,[""],e=we(e),0,[0],e))}function je(e,t,n,r,i,a,o,s,l){for(var c=0,u=0,d=o,p=0,f=0,h=0,m=1,g=1,v=1,b=0,y="",C=i,_=a,E=r,w=y;g;)switch(h=b,b=be()){case 40:if(108!=h&&58==ie(w,d-1)){-1!=re(w+=ne(ke(b),"&","&\f"),"&\f")&&(v=-1);break}case 34:case 39:case 91:w+=ke(b);break;case 9:case 10:case 13:case 32:w+=Se(h);break;case 92:w+=Me(Ce()-1,7);continue;case 47:switch(ye()){case 42:case 47:le(We(Le(be(),Ce()),t,n),l);break;default:w+="/"}break;case 123*m:s[c++]=oe(w)*v;case 125*m:case 59:case 0:switch(b){case 0:case 125:g=0;case 59+u:-1==v&&(w=ne(w,/\f/g,"")),f>0&&oe(w)-d&&le(f>32?$e(w+";",r,n,d-1):$e(ne(w," ","")+";",r,n,d-2),l);break;case 59:w+=";";default:if(le(E=Be(w,t,n,c,u,i,s,y,C=[],_=[],d),a),123===b)if(0===u)je(w,t,E,E,C,a,d,s,_);else switch(99===p&&110===ie(w,3)?100:p){case 100:case 108:case 109:case 115:je(e,E,E,r&&le(Be(e,E,E,0,0,i,s,y,i,C=[],d),_),i,_,d,s,r?C:_);break;default:je(w,E,E,E,[""],_,0,s,_)}}c=u=f=0,m=v=1,y=w="",d=o;break;case 58:d=1+oe(w),f=h;default:if(m<1)if(123==b)--m;else if(125==b&&0==m++&&125==ve())continue;switch(w+=Q(b),b*m){case 38:v=u>0?1:(w+="\f",-1);break;case 44:s[c++]=(oe(w)-1)*v,v=1;break;case 64:45===ye()&&(w+=ke(be())),p=ye(),u=d=oe(y=w+=ze(Ce())),b++;break;case 45:45===h&&2==oe(w)&&(m=0)}}return a}function Be(e,t,n,r,i,a,o,s,l,c,u){for(var d=i-1,p=0===i?a:[""],f=se(p),h=0,m=0,g=0;h<r;++h)for(var v=0,b=ae(e,d+1,d=J(m=o[h])),y=e;v<f;++v)(y=te(m>0?p[v]+" "+b:ne(b,/&\f/g,p[v])))&&(l[g++]=y);return me(e,t,n,0===i?Ae:s,l,c,u)}function We(e,t,n){return me(e,t,n,Re,Q(fe),ae(e,2,-2),0)}function $e(e,t,n,r){return me(e,t,n,Ne,ae(e,0,r),ae(e,r+1,-1),r)}var Ue=function(e,t,n){for(var r=0,i=0;r=i,i=ye(),38===r&&12===i&&(t[n]=1),!Ee(i);)be();return _e(e,pe)},Ge=new WeakMap,Ze=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,n=e.parent,r=e.column===n.column&&e.line===n.line;"rule"!==n.type;)if(!(n=n.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||Ge.get(n))&&!r){Ge.set(e,!0);for(var i=[],a=function(e,t){return xe(function(e,t){var n=-1,r=44;do{switch(Ee(r)){case 0:38===r&&12===ye()&&(t[n]=1),e[n]+=Ue(pe-1,t,n);break;case 2:e[n]+=ke(r);break;case 4:if(44===r){e[++n]=58===ye()?"&\f":"",t[n]=e[n].length;break}default:e[n]+=Q(r)}}while(r=be());return e}(we(e),t))}(t,i),o=n.props,s=0,l=0;s<a.length;s++)for(var c=0;c<o.length;c++,l++)e.props[l]=i[s]?a[s].replace(/&\f/g,o[c]):o[c]+" "+a[s]}}},qe=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}};function Ye(e,t){switch(function(e,t){return 45^ie(e,0)?(((t<<2^ie(e,0))<<2^ie(e,1))<<2^ie(e,2))<<2^ie(e,3):0}(e,t)){case 5103:return Pe+"print-"+e+e;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return Pe+e+e;case 5349:case 4246:case 4810:case 6968:case 2756:return Pe+e+Ie+e+Te+e+e;case 6828:case 4268:return Pe+e+Te+e+e;case 6165:return Pe+e+Te+"flex-"+e+e;case 5187:return Pe+e+ne(e,/(\w+).+(:[^]+)/,Pe+"box-$1$2"+Te+"flex-$1$2")+e;case 5443:return Pe+e+Te+"flex-item-"+ne(e,/flex-|-self/,"")+e;case 4675:return Pe+e+Te+"flex-line-pack"+ne(e,/align-content|flex-|-self/,"")+e;case 5548:return Pe+e+Te+ne(e,"shrink","negative")+e;case 5292:return Pe+e+Te+ne(e,"basis","preferred-size")+e;case 6060:return Pe+"box-"+ne(e,"-grow","")+Pe+e+Te+ne(e,"grow","positive")+e;case 4554:return Pe+ne(e,/([^-])(transform)/g,"$1"+Pe+"$2")+e;case 6187:return ne(ne(ne(e,/(zoom-|grab)/,Pe+"$1"),/(image-set)/,Pe+"$1"),e,"")+e;case 5495:case 3959:return ne(e,/(image-set\([^]*)/,Pe+"$1$`$1");case 4968:return ne(ne(e,/(.+:)(flex-)?(.*)/,Pe+"box-pack:$3"+Te+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+Pe+e+e;case 4095:case 3583:case 4068:case 2532:return ne(e,/(.+)-inline(.+)/,Pe+"$1$2")+e;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(oe(e)-1-t>6)switch(ie(e,t+1)){case 109:if(45!==ie(e,t+4))break;case 102:return ne(e,/(.+:)(.+)-([^]+)/,"$1"+Pe+"$2-$3$1"+Ie+(108==ie(e,t+3)?"$3":"$2-$3"))+e;case 115:return~re(e,"stretch")?Ye(ne(e,"stretch","fill-available"),t)+e:e}break;case 4949:if(115!==ie(e,t+1))break;case 6444:switch(ie(e,oe(e)-3-(~re(e,"!important")&&10))){case 107:return ne(e,":",":"+Pe)+e;case 101:return ne(e,/(.+:)([^;!]+)(;|!.+)?/,"$1"+Pe+(45===ie(e,14)?"inline-":"")+"box$3$1"+Pe+"$2$3$1"+Te+"$2box$3")+e}break;case 5936:switch(ie(e,t+11)){case 114:return Pe+e+Te+ne(e,/[svh]\w+-[tblr]{2}/,"tb")+e;case 108:return Pe+e+Te+ne(e,/[svh]\w+-[tblr]{2}/,"tb-rl")+e;case 45:return Pe+e+Te+ne(e,/[svh]\w+-[tblr]{2}/,"lr")+e}return Pe+e+Te+e+e}return e}var Xe=[function(e,t,n,r){if(e.length>-1&&!e.return)switch(e.type){case Ne:e.return=Ye(e.value,e.length);break;case Ve:return He([ge(e,{value:ne(e.value,"@","@"+Pe)})],r);case Ae:if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch(function(e,t){return(e=t.exec(e))?e[0]:e}(t,/(::plac\w+|:read-\w+)/)){case":read-only":case":read-write":return He([ge(e,{props:[ne(t,/:(read-\w+)/,":-moz-$1")]})],r);case"::placeholder":return He([ge(e,{props:[ne(t,/:(plac\w+)/,":"+Pe+"input-$1")]}),ge(e,{props:[ne(t,/:(plac\w+)/,":-moz-$1")]}),ge(e,{props:[ne(t,/:(plac\w+)/,Te+"input-$1")]})],r)}return""}))}}],Ke=function(e){var t=e.key;if("css"===t){var n=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(n,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var r,i,a=e.stylisPlugins||Xe,o={},s=[];r=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),n=1;n<t.length;n++)o[t[n]]=!0;s.push(e)}));var l,c,u,d,p=[De,(d=function(e){l.insert(e)},function(e){e.root||(e=e.return)&&d(e)})],f=(c=[Ze,qe].concat(a,p),u=se(c),function(e,t,n,r){for(var i="",a=0;a<u;a++)i+=c[a](e,t,n,r)||"";return i});i=function(e,t,n,r){l=n,He(Fe(e?e+"{"+t.styles+"}":t.styles),f),r&&(h.inserted[t.name]=!0)};var h={key:t,sheet:new K({key:t,container:r,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:o,registered:{},insert:i};return h.sheet.hydrate(s),h},Je=function(e,t,n){var r=e.key+"-"+t.name;!1===n&&void 0===e.registered[r]&&(e.registered[r]=t.styles)},Qe={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1};function et(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}var tt=/[A-Z]|^ms/g,nt=/_EMO_([^_]+?)_([^]*?)_EMO_/g,rt=function(e){return 45===e.charCodeAt(1)},it=function(e){return null!=e&&"boolean"!=typeof e},at=et((function(e){return rt(e)?e:e.replace(tt,"-$&").toLowerCase()})),ot=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(nt,(function(e,t,n){return lt={name:t,styles:n,next:lt},t}))}return 1===Qe[e]||rt(e)||"number"!=typeof t||0===t?t:t+"px"};function st(e,t,n){if(null==n)return"";if(void 0!==n.__emotion_styles)return n;switch(typeof n){case"boolean":return"";case"object":if(1===n.anim)return lt={name:n.name,styles:n.styles,next:lt},n.name;if(void 0!==n.styles){var r=n.next;if(void 0!==r)for(;void 0!==r;)lt={name:r.name,styles:r.styles,next:lt},r=r.next;return n.styles+";"}return function(e,t,n){var r="";if(Array.isArray(n))for(var i=0;i<n.length;i++)r+=st(e,t,n[i])+";";else for(var a in n){var o=n[a];if("object"!=typeof o)null!=t&&void 0!==t[o]?r+=a+"{"+t[o]+"}":it(o)&&(r+=at(a)+":"+ot(a,o)+";");else if(!Array.isArray(o)||"string"!=typeof o[0]||null!=t&&void 0!==t[o[0]]){var s=st(e,t,o);switch(a){case"animation":case"animationName":r+=at(a)+":"+s+";";break;default:r+=a+"{"+s+"}"}}else for(var l=0;l<o.length;l++)it(o[l])&&(r+=at(a)+":"+ot(a,o[l])+";")}return r}(e,t,n);case"function":if(void 0!==e){var i=lt,a=n(e);return lt=i,st(e,t,a)}}if(null==t)return n;var o=t[n];return void 0!==o?o:n}var lt,ct=/label:\s*([^\s;\n{]+)\s*(;|$)/g,ut=function(e,t,n){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var r=!0,i="";lt=void 0;var a=e[0];null==a||void 0===a.raw?(r=!1,i+=st(n,t,a)):i+=a[0];for(var o=1;o<e.length;o++)i+=st(n,t,e[o]),r&&(i+=a[o]);ct.lastIndex=0;for(var s,l="";null!==(s=ct.exec(i));)l+="-"+s[1];var c=function(e){for(var t,n=0,r=0,i=e.length;i>=4;++r,i-=4)t=1540483477*(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))+(59797*(t>>>16)<<16),n=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&n)+(59797*(n>>>16)<<16);switch(i){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(r)))+(59797*(n>>>16)<<16)}return(((n=1540483477*(65535&(n^=n>>>13))+(59797*(n>>>16)<<16))^n>>>15)>>>0).toString(36)}(i)+l;return{name:c,styles:i,next:lt}},dt=!!X.useInsertionEffect&&X.useInsertionEffect,pt=dt||function(e){return e()},ft=(dt||X.useLayoutEffect,{}.hasOwnProperty),ht=X.createContext("undefined"!=typeof HTMLElement?Ke({key:"css"}):null);ht.Provider;var mt=function(e){return(0,X.forwardRef)((function(t,n){var r=(0,X.useContext)(ht);return e(t,r,n)}))},gt=X.createContext({}),vt="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",bt=function(e){var t=e.cache,n=e.serialized,r=e.isStringTag;return Je(t,n,r),pt((function(){return function(e,t,n){Je(e,t,n);var r=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var i=t;do{e.insert(t===i?"."+r:"",i,e.sheet,!0),i=i.next}while(void 0!==i)}}(t,n,r)})),null},yt=mt((function(e,t,n){var r=e.css;"string"==typeof r&&void 0!==t.registered[r]&&(r=t.registered[r]);var i=e[vt],a=[r],o="";"string"==typeof e.className?o=function(e,t,n){var r="";return n.split(" ").forEach((function(n){void 0!==e[n]?t.push(e[n]+";"):r+=n+" "})),r}(t.registered,a,e.className):null!=e.className&&(o=e.className+" ");var s=ut(a,void 0,X.useContext(gt));o+=t.key+"-"+s.name;var l={};for(var c in e)ft.call(e,c)&&"css"!==c&&c!==vt&&(l[c]=e[c]);return l.ref=n,l.className=o,X.createElement(X.Fragment,null,X.createElement(bt,{cache:t,serialized:s,isStringTag:"string"==typeof i}),X.createElement(i,l))})),Ct=yt,_t=(n(679),function(e,t){var n=arguments;if(null==t||!ft.call(t,"css"))return X.createElement.apply(void 0,n);var r=n.length,i=new Array(r);i[0]=Ct,i[1]=function(e,t){var n={};for(var r in t)ft.call(t,r)&&(n[r]=t[r]);return n[vt]=e,n}(e,t);for(var a=2;a<r;a++)i[a]=n[a];return X.createElement.apply(null,i)});function Et(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return ut(t)}function wt(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}function xt(e,t){if(e){if("string"==typeof e)return wt(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?wt(e,t):void 0}}function kt(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,i,a,o,s=[],l=!0,c=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;l=!1}else for(;!(l=(r=a.call(n)).done)&&(s.push(r.value),s.length!==t);l=!0);}catch(e){c=!0,i=e}finally{try{if(!l&&null!=n.return&&(o=n.return(),Object(o)!==o))return}finally{if(c)throw i}}return s}}(e,t)||xt(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function St(e,t){if(null==e)return{};var n,r,i=function(e,t){if(null==e)return{};var n,r,i={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(i[n]=e[n]);return i}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(i[n]=e[n])}return i}var Mt=window.ReactDOM;const Ot=Math.min,Lt=Math.max,zt=Math.round,Tt=Math.floor,It=e=>({x:e,y:e});function Pt(e){return Nt(e)?(e.nodeName||"").toLowerCase():"#document"}function Rt(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function At(e){var t;return null==(t=(Nt(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Nt(e){return e instanceof Node||e instanceof Rt(e).Node}function Vt(e){return e instanceof Element||e instanceof Rt(e).Element}function Ht(e){return e instanceof HTMLElement||e instanceof Rt(e).HTMLElement}function Dt(e){return"undefined"!=typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof Rt(e).ShadowRoot)}function Ft(e){const{overflow:t,overflowX:n,overflowY:r,display:i}=jt(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(i)}function jt(e){return Rt(e).getComputedStyle(e)}function Bt(e){const t=function(e){if("html"===Pt(e))return e;const t=e.assignedSlot||e.parentNode||Dt(e)&&e.host||At(e);return Dt(t)?t.host:t}(e);return function(e){return["html","body","#document"].includes(Pt(e))}(t)?e.ownerDocument?e.ownerDocument.body:e.body:Ht(t)&&Ft(t)?t:Bt(t)}function Wt(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);const i=Bt(e),a=i===(null==(r=e.ownerDocument)?void 0:r.body),o=Rt(i);return a?t.concat(o,o.visualViewport||[],Ft(i)?i:[],o.frameElement&&n?Wt(o.frameElement):[]):t.concat(i,Wt(i,[],n))}function $t(e){return Vt(e)?e:e.contextElement}function Ut(e){const t=$t(e);if(!Ht(t))return It(1);const n=t.getBoundingClientRect(),{width:r,height:i,$:a}=function(e){const t=jt(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const i=Ht(e),a=i?e.offsetWidth:n,o=i?e.offsetHeight:r,s=zt(n)!==a||zt(r)!==o;return s&&(n=a,r=o),{width:n,height:r,$:s}}(t);let o=(a?zt(n.width):n.width)/r,s=(a?zt(n.height):n.height)/i;return o&&Number.isFinite(o)||(o=1),s&&Number.isFinite(s)||(s=1),{x:o,y:s}}const Gt=It(0);function Zt(e){const t=Rt(e);return"undefined"!=typeof CSS&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:Gt}function qt(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const i=e.getBoundingClientRect(),a=$t(e);let o=It(1);t&&(r?Vt(r)&&(o=Ut(r)):o=Ut(e));const s=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==Rt(e))&&t}(a,n,r)?Zt(a):It(0);let l=(i.left+s.x)/o.x,c=(i.top+s.y)/o.y,u=i.width/o.x,d=i.height/o.y;if(a){const e=Rt(a),t=r&&Vt(r)?Rt(r):r;let n=e.frameElement;for(;n&&r&&t!==e;){const e=Ut(n),t=n.getBoundingClientRect(),r=jt(n),i=t.left+(n.clientLeft+parseFloat(r.paddingLeft))*e.x,a=t.top+(n.clientTop+parseFloat(r.paddingTop))*e.y;l*=e.x,c*=e.y,u*=e.x,d*=e.y,l+=i,c+=a,n=Rt(n).frameElement}}return p={width:u,height:d,x:l,y:c},{...p,top:p.y,left:p.x,right:p.x+p.width,bottom:p.y+p.height};var p}var Yt=X.useLayoutEffect,Xt=["className","clearValue","cx","getStyles","getClassNames","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],Kt=function(){};function Jt(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function Qt(e,t){for(var n=arguments.length,r=new Array(n>2?n-2:0),i=2;i<n;i++)r[i-2]=arguments[i];var a=[].concat(r);if(t&&e)for(var o in t)t.hasOwnProperty(o)&&t[o]&&a.push("".concat(Jt(e,o)));return a.filter((function(e){return e})).map((function(e){return String(e).trim()})).join(" ")}var en=function(e){return t=e,Array.isArray(t)?e.filter(Boolean):"object"===$(e)&&null!==e?[e]:[];var t},tn=function(e){return e.className,e.clearValue,e.cx,e.getStyles,e.getClassNames,e.getValue,e.hasValue,e.isMulti,e.isRtl,e.options,e.selectOption,e.selectProps,e.setValue,e.theme,q({},St(e,Xt))},nn=function(e,t,n){var r=e.cx,i=e.getStyles,a=e.getClassNames,o=e.className;return{css:i(t,e),className:r(null!=n?n:{},a(t,e),o)}};function rn(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function an(e){return rn(e)?window.pageYOffset:e.scrollTop}function on(e,t){rn(e)?window.scrollTo(0,t):e.scrollTop=t}function sn(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:Kt,i=an(e),a=t-i,o=0;!function t(){var s,l=a*((s=(s=o+=10)/n-1)*s*s+1)+i;on(e,l),o<n?window.requestAnimationFrame(t):r(e)}()}function ln(e,t){var n=e.getBoundingClientRect(),r=t.getBoundingClientRect(),i=t.offsetHeight/3;r.bottom+i>n.bottom?on(e,Math.min(t.offsetTop+t.clientHeight-e.offsetHeight+i,e.scrollHeight)):r.top-i<n.top&&on(e,Math.max(t.offsetTop-i,0))}function cn(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}var un=!1,dn={get passive(){return un=!0}},pn="undefined"!=typeof window?window:{};pn.addEventListener&&pn.removeEventListener&&(pn.addEventListener("p",Kt,dn),pn.removeEventListener("p",Kt,!1));var fn=un;function hn(e){return null!=e}function mn(e,t,n){return e?t:n}var gn=["children","innerProps"],vn=["children","innerProps"];var bn,yn,Cn,En=function(e){return"auto"===e?"bottom":e},wn=(0,X.createContext)(null),xn=function(e){var t=e.children,n=e.minMenuHeight,r=e.maxMenuHeight,i=e.menuPlacement,a=e.menuPosition,o=e.menuShouldScrollIntoView,s=e.theme,l=((0,X.useContext)(wn)||{}).setPortalPlacement,c=(0,X.useRef)(null),u=kt((0,X.useState)(r),2),d=u[0],p=u[1],f=kt((0,X.useState)(null),2),h=f[0],m=f[1],g=s.spacing.controlHeight;return Yt((function(){var e=c.current;if(e){var t="fixed"===a,s=function(e){var t=e.maxHeight,n=e.menuEl,r=e.minHeight,i=e.placement,a=e.shouldScroll,o=e.isFixedPosition,s=e.controlHeight,l=function(e){var t=getComputedStyle(e),n="absolute"===t.position,r=/(auto|scroll)/;if("fixed"===t.position)return document.documentElement;for(var i=e;i=i.parentElement;)if(t=getComputedStyle(i),(!n||"static"!==t.position)&&r.test(t.overflow+t.overflowY+t.overflowX))return i;return document.documentElement}(n),c={placement:"bottom",maxHeight:t};if(!n||!n.offsetParent)return c;var u,d=l.getBoundingClientRect().height,p=n.getBoundingClientRect(),f=p.bottom,h=p.height,m=p.top,g=n.offsetParent.getBoundingClientRect().top,v=o||rn(u=l)?window.innerHeight:u.clientHeight,b=an(l),y=parseInt(getComputedStyle(n).marginBottom,10),C=parseInt(getComputedStyle(n).marginTop,10),_=g-C,E=v-m,w=_+b,x=d-b-m,k=f-v+b+y,S=b+m-C,M=160;switch(i){case"auto":case"bottom":if(E>=h)return{placement:"bottom",maxHeight:t};if(x>=h&&!o)return a&&sn(l,k,M),{placement:"bottom",maxHeight:t};if(!o&&x>=r||o&&E>=r)return a&&sn(l,k,M),{placement:"bottom",maxHeight:o?E-y:x-y};if("auto"===i||o){var O=t,L=o?_:w;return L>=r&&(O=Math.min(L-y-s,t)),{placement:"top",maxHeight:O}}if("bottom"===i)return a&&on(l,k),{placement:"bottom",maxHeight:t};break;case"top":if(_>=h)return{placement:"top",maxHeight:t};if(w>=h&&!o)return a&&sn(l,S,M),{placement:"top",maxHeight:t};if(!o&&w>=r||o&&_>=r){var z=t;return(!o&&w>=r||o&&_>=r)&&(z=o?_-C:w-C),a&&sn(l,S,M),{placement:"top",maxHeight:z}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'.concat(i,'".'))}return c}({maxHeight:r,menuEl:e,minHeight:n,placement:i,shouldScroll:o&&!t,isFixedPosition:t,controlHeight:g});p(s.maxHeight),m(s.placement),null==l||l(s.placement)}}),[r,i,a,o,n,l,g]),t({ref:c,placerProps:q(q({},e),{},{placement:h||En(i),maxHeight:d})})},kn=function(e,t){var n=e.theme,r=n.spacing.baseUnit,i=n.colors;return q({textAlign:"center"},t?{}:{color:i.neutral40,padding:"".concat(2*r,"px ").concat(3*r,"px")})},Sn=kn,Mn=kn,On=["size"],Ln=["innerProps","isRtl","size"],zn={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},Tn=function(e){var t=e.size,n=St(e,On);return _t("svg",Y({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:zn},n))},In=function(e){return _t(Tn,Y({size:20},e),_t("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},Pn=function(e){return _t(Tn,Y({size:20},e),_t("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Rn=function(e,t){var n=e.isFocused,r=e.theme,i=r.spacing.baseUnit,a=r.colors;return q({label:"indicatorContainer",display:"flex",transition:"color 150ms"},t?{}:{color:n?a.neutral60:a.neutral20,padding:2*i,":hover":{color:n?a.neutral80:a.neutral40}})},An=Rn,Nn=Rn,Vn=function(){var e=Et.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}(bn||(yn=["\n  0%, 80%, 100% { opacity: 0; }\n  40% { opacity: 1; }\n"],Cn||(Cn=yn.slice(0)),bn=Object.freeze(Object.defineProperties(yn,{raw:{value:Object.freeze(Cn)}})))),Hn=function(e){var t=e.delay,n=e.offset;return _t("span",{css:Et({animation:"".concat(Vn," 1s ease-in-out ").concat(t,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:n?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},Dn=["data"],Fn=["innerRef","isDisabled","isHidden","inputClassName"],jn={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},Bn={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":q({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},jn)},Wn=function(e){return q({label:"input",color:"inherit",background:0,opacity:e?0:1,width:"100%"},jn)},$n=function(e){var t=e.children,n=e.innerProps;return _t("div",n,t)},Un={ClearIndicator:function(e){var t=e.children,n=e.innerProps;return _t("div",Y({},nn(e,"clearIndicator",{indicator:!0,"clear-indicator":!0}),n),t||_t(In,null))},Control:function(e){var t=e.children,n=e.isDisabled,r=e.isFocused,i=e.innerRef,a=e.innerProps,o=e.menuIsOpen;return _t("div",Y({ref:i},nn(e,"control",{control:!0,"control--is-disabled":n,"control--is-focused":r,"control--menu-is-open":o}),a,{"aria-disabled":n||void 0}),t)},DropdownIndicator:function(e){var t=e.children,n=e.innerProps;return _t("div",Y({},nn(e,"dropdownIndicator",{indicator:!0,"dropdown-indicator":!0}),n),t||_t(Pn,null))},DownChevron:Pn,CrossIcon:In,Group:function(e){var t=e.children,n=e.cx,r=e.getStyles,i=e.getClassNames,a=e.Heading,o=e.headingProps,s=e.innerProps,l=e.label,c=e.theme,u=e.selectProps;return _t("div",Y({},nn(e,"group",{group:!0}),s),_t(a,Y({},o,{selectProps:u,theme:c,getStyles:r,getClassNames:i,cx:n}),l),_t("div",null,t))},GroupHeading:function(e){var t=tn(e);t.data;var n=St(t,Dn);return _t("div",Y({},nn(e,"groupHeading",{"group-heading":!0}),n))},IndicatorsContainer:function(e){var t=e.children,n=e.innerProps;return _t("div",Y({},nn(e,"indicatorsContainer",{indicators:!0}),n),t)},IndicatorSeparator:function(e){var t=e.innerProps;return _t("span",Y({},t,nn(e,"indicatorSeparator",{"indicator-separator":!0})))},Input:function(e){var t=e.cx,n=e.value,r=tn(e),i=r.innerRef,a=r.isDisabled,o=r.isHidden,s=r.inputClassName,l=St(r,Fn);return _t("div",Y({},nn(e,"input",{"input-container":!0}),{"data-value":n||""}),_t("input",Y({className:t({input:!0},s),ref:i,style:Wn(o),disabled:a},l)))},LoadingIndicator:function(e){var t=e.innerProps,n=e.isRtl,r=e.size,i=void 0===r?4:r,a=St(e,Ln);return _t("div",Y({},nn(q(q({},a),{},{innerProps:t,isRtl:n,size:i}),"loadingIndicator",{indicator:!0,"loading-indicator":!0}),t),_t(Hn,{delay:0,offset:n}),_t(Hn,{delay:160,offset:!0}),_t(Hn,{delay:320,offset:!n}))},Menu:function(e){var t=e.children,n=e.innerRef,r=e.innerProps;return _t("div",Y({},nn(e,"menu",{menu:!0}),{ref:n},r),t)},MenuList:function(e){var t=e.children,n=e.innerProps,r=e.innerRef,i=e.isMulti;return _t("div",Y({},nn(e,"menuList",{"menu-list":!0,"menu-list--is-multi":i}),{ref:r},n),t)},MenuPortal:function(e){var t=e.appendTo,n=e.children,r=e.controlElement,i=e.innerProps,a=e.menuPlacement,o=e.menuPosition,s=(0,X.useRef)(null),l=(0,X.useRef)(null),c=kt((0,X.useState)(En(a)),2),u=c[0],d=c[1],p=(0,X.useMemo)((function(){return{setPortalPlacement:d}}),[]),f=kt((0,X.useState)(null),2),h=f[0],m=f[1],g=(0,X.useCallback)((function(){if(r){var e=function(e){var t=e.getBoundingClientRect();return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}(r),t="fixed"===o?0:window.pageYOffset,n=e[u]+t;n===(null==h?void 0:h.offset)&&e.left===(null==h?void 0:h.rect.left)&&e.width===(null==h?void 0:h.rect.width)||m({offset:n,rect:e})}}),[r,o,u,null==h?void 0:h.offset,null==h?void 0:h.rect.left,null==h?void 0:h.rect.width]);Yt((function(){g()}),[g]);var v=(0,X.useCallback)((function(){"function"==typeof l.current&&(l.current(),l.current=null),r&&s.current&&(l.current=function(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:i=!0,ancestorResize:a=!0,elementResize:o="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:l=!1}=r,c=$t(e),u=i||a?[...c?Wt(c):[],...Wt(t)]:[];u.forEach((e=>{i&&e.addEventListener("scroll",n,{passive:!0}),a&&e.addEventListener("resize",n)}));const d=c&&s?function(e,t){let n,r=null;const i=At(e);function a(){clearTimeout(n),r&&r.disconnect(),r=null}return function o(s,l){void 0===s&&(s=!1),void 0===l&&(l=1),a();const{left:c,top:u,width:d,height:p}=e.getBoundingClientRect();if(s||t(),!d||!p)return;const f={rootMargin:-Tt(u)+"px "+-Tt(i.clientWidth-(c+d))+"px "+-Tt(i.clientHeight-(u+p))+"px "+-Tt(c)+"px",threshold:Lt(0,Ot(1,l))||1};let h=!0;function m(e){const t=e[0].intersectionRatio;if(t!==l){if(!h)return o();t?o(!1,t):n=setTimeout((()=>{o(!1,1e-7)}),100)}h=!1}try{r=new IntersectionObserver(m,{...f,root:i.ownerDocument})}catch(e){r=new IntersectionObserver(m,f)}r.observe(e)}(!0),a}(c,n):null;let p,f=-1,h=null;o&&(h=new ResizeObserver((e=>{let[r]=e;r&&r.target===c&&h&&(h.unobserve(t),cancelAnimationFrame(f),f=requestAnimationFrame((()=>{h&&h.observe(t)}))),n()})),c&&!l&&h.observe(c),h.observe(t));let m=l?qt(e):null;return l&&function t(){const r=qt(e);!m||r.x===m.x&&r.y===m.y&&r.width===m.width&&r.height===m.height||n(),m=r,p=requestAnimationFrame(t)}(),n(),()=>{u.forEach((e=>{i&&e.removeEventListener("scroll",n),a&&e.removeEventListener("resize",n)})),d&&d(),h&&h.disconnect(),h=null,l&&cancelAnimationFrame(p)}}(r,s.current,g,{elementResize:"ResizeObserver"in window}))}),[r,g]);Yt((function(){v()}),[v]);var b=(0,X.useCallback)((function(e){s.current=e,v()}),[v]);if(!t&&"fixed"!==o||!h)return null;var y=_t("div",Y({ref:b},nn(q(q({},e),{},{offset:h.offset,position:o,rect:h.rect}),"menuPortal",{"menu-portal":!0}),i),n);return _t(wn.Provider,{value:p},t?(0,Mt.createPortal)(y,t):y)},LoadingMessage:function(e){var t=e.children,n=void 0===t?"Loading...":t,r=e.innerProps,i=St(e,vn);return _t("div",Y({},nn(q(q({},i),{},{children:n,innerProps:r}),"loadingMessage",{"menu-notice":!0,"menu-notice--loading":!0}),r),n)},NoOptionsMessage:function(e){var t=e.children,n=void 0===t?"No options":t,r=e.innerProps,i=St(e,gn);return _t("div",Y({},nn(q(q({},i),{},{children:n,innerProps:r}),"noOptionsMessage",{"menu-notice":!0,"menu-notice--no-options":!0}),r),n)},MultiValue:function(e){var t=e.children,n=e.components,r=e.data,i=e.innerProps,a=e.isDisabled,o=e.removeProps,s=e.selectProps,l=n.Container,c=n.Label,u=n.Remove;return _t(l,{data:r,innerProps:q(q({},nn(e,"multiValue",{"multi-value":!0,"multi-value--is-disabled":a})),i),selectProps:s},_t(c,{data:r,innerProps:q({},nn(e,"multiValueLabel",{"multi-value__label":!0})),selectProps:s},t),_t(u,{data:r,innerProps:q(q({},nn(e,"multiValueRemove",{"multi-value__remove":!0})),{},{"aria-label":"Remove ".concat(t||"option")},o),selectProps:s}))},MultiValueContainer:$n,MultiValueLabel:$n,MultiValueRemove:function(e){var t=e.children,n=e.innerProps;return _t("div",Y({role:"button"},n),t||_t(In,{size:14}))},Option:function(e){var t=e.children,n=e.isDisabled,r=e.isFocused,i=e.isSelected,a=e.innerRef,o=e.innerProps;return _t("div",Y({},nn(e,"option",{option:!0,"option--is-disabled":n,"option--is-focused":r,"option--is-selected":i}),{ref:a,"aria-disabled":n},o),t)},Placeholder:function(e){var t=e.children,n=e.innerProps;return _t("div",Y({},nn(e,"placeholder",{placeholder:!0}),n),t)},SelectContainer:function(e){var t=e.children,n=e.innerProps,r=e.isDisabled,i=e.isRtl;return _t("div",Y({},nn(e,"container",{"--is-disabled":r,"--is-rtl":i}),n),t)},SingleValue:function(e){var t=e.children,n=e.isDisabled,r=e.innerProps;return _t("div",Y({},nn(e,"singleValue",{"single-value":!0,"single-value--is-disabled":n}),r),t)},ValueContainer:function(e){var t=e.children,n=e.innerProps,r=e.isMulti,i=e.hasValue;return _t("div",Y({},nn(e,"valueContainer",{"value-container":!0,"value-container--is-multi":r,"value-container--has-value":i}),n),t)}},Gn=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"];function Zn(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,U(r.key),r)}}function qn(e,t){return qn=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e},qn(e,t)}function Yn(e){return Yn=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)},Yn(e)}function Xn(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,r=Yn(e);if(t){var i=Yn(this).constructor;n=Reflect.construct(r,arguments,i)}else n=r.apply(this,arguments);return function(e,t){if(t&&("object"===$(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e)}(this,n)}}function Kn(e){return function(e){if(Array.isArray(e))return wt(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||xt(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var Jn=Number.isNaN||function(e){return"number"==typeof e&&e!=e};function Qn(e,t){if(e.length!==t.length)return!1;for(var n=0;n<e.length;n++)if(!((r=e[n])===(i=t[n])||Jn(r)&&Jn(i)))return!1;var r,i;return!0}for(var er={name:"7pg0cj-a11yText",styles:"label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap"},tr=function(e){return _t("span",Y({css:er},e))},nr={guidance:function(e){var t=e.isSearchable,n=e.isMulti,r=e.isDisabled,i=e.tabSelectsValue;switch(e.context){case"menu":return"Use Up and Down to choose options".concat(r?"":", press Enter to select the currently focused option",", press Escape to exit the menu").concat(i?", press Tab to select the option and exit the menu":"",".");case"input":return"".concat(e["aria-label"]||"Select"," is focused ").concat(t?",type to refine list":"",", press Down to open the menu, ").concat(n?" press left to focus selected values":"");case"value":return"Use left and right to toggle between focused values, press Backspace to remove the currently focused value";default:return""}},onChange:function(e){var t=e.action,n=e.label,r=void 0===n?"":n,i=e.labels,a=e.isDisabled;switch(t){case"deselect-option":case"pop-value":case"remove-value":return"option ".concat(r,", deselected.");case"clear":return"All selected options have been cleared.";case"initial-input-focus":return"option".concat(i.length>1?"s":""," ").concat(i.join(","),", selected.");case"select-option":return"option ".concat(r,a?" is disabled. Select another option.":", selected.");default:return""}},onFocus:function(e){var t=e.context,n=e.focused,r=e.options,i=e.label,a=void 0===i?"":i,o=e.selectValue,s=e.isDisabled,l=e.isSelected,c=function(e,t){return e&&e.length?"".concat(e.indexOf(t)+1," of ").concat(e.length):""};if("value"===t&&o)return"value ".concat(a," focused, ").concat(c(o,n),".");if("menu"===t){var u=s?" disabled":"",d="".concat(l?"selected":"focused").concat(u);return"option ".concat(a," ").concat(d,", ").concat(c(r,n),".")}return""},onFilter:function(e){var t=e.inputValue,n=e.resultsMessage;return"".concat(n).concat(t?" for search term "+t:"",".")}},rr=function(e){var t=e.ariaSelection,n=e.focusedOption,r=e.focusedValue,i=e.focusableOptions,a=e.isFocused,o=e.selectValue,s=e.selectProps,l=e.id,c=s.ariaLiveMessages,u=s.getOptionLabel,d=s.inputValue,p=s.isMulti,f=s.isOptionDisabled,h=s.isSearchable,m=s.menuIsOpen,g=s.options,v=s.screenReaderStatus,b=s.tabSelectsValue,y=s["aria-label"],C=s["aria-live"],_=(0,X.useMemo)((function(){return q(q({},nr),c||{})}),[c]),E=(0,X.useMemo)((function(){var e,n="";if(t&&_.onChange){var r=t.option,i=t.options,a=t.removedValue,s=t.removedValues,l=t.value,c=a||r||(e=l,Array.isArray(e)?null:e),d=c?u(c):"",p=i||s||void 0,h=p?p.map(u):[],m=q({isDisabled:c&&f(c,o),label:d,labels:h},t);n=_.onChange(m)}return n}),[t,_,f,o,u]),w=(0,X.useMemo)((function(){var e="",t=n||r,a=!!(n&&o&&o.includes(n));if(t&&_.onFocus){var s={focused:t,label:u(t),isDisabled:f(t,o),isSelected:a,options:i,context:t===n?"menu":"value",selectValue:o};e=_.onFocus(s)}return e}),[n,r,u,f,_,i,o]),x=(0,X.useMemo)((function(){var e="";if(m&&g.length&&_.onFilter){var t=v({count:i.length});e=_.onFilter({inputValue:d,resultsMessage:t})}return e}),[i,d,m,_,g,v]),k=(0,X.useMemo)((function(){var e="";if(_.guidance){var t=r?"value":m?"menu":"input";e=_.guidance({"aria-label":y,context:t,isDisabled:n&&f(n,o),isMulti:p,isSearchable:h,tabSelectsValue:b})}return e}),[y,n,r,p,f,h,m,_,o,b]),S="".concat(w," ").concat(x," ").concat(k),M=_t(X.Fragment,null,_t("span",{id:"aria-selection"},E),_t("span",{id:"aria-context"},S)),O="initial-input-focus"===(null==t?void 0:t.action);return _t(X.Fragment,null,_t(tr,{id:l},O&&M),_t(tr,{"aria-live":C,"aria-atomic":"false","aria-relevant":"additions text"},a&&!O&&M))},ir=[{base:"A",letters:"AⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",letters:"Ꜳ"},{base:"AE",letters:"ÆǼǢ"},{base:"AO",letters:"Ꜵ"},{base:"AU",letters:"Ꜷ"},{base:"AV",letters:"ꜸꜺ"},{base:"AY",letters:"Ꜽ"},{base:"B",letters:"BⒷBḂḄḆɃƂƁ"},{base:"C",letters:"CⒸCĆĈĊČÇḈƇȻꜾ"},{base:"D",letters:"DⒹDḊĎḌḐḒḎĐƋƊƉꝹ"},{base:"DZ",letters:"DZDŽ"},{base:"Dz",letters:"DzDž"},{base:"E",letters:"EⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎ"},{base:"F",letters:"FⒻFḞƑꝻ"},{base:"G",letters:"GⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾ"},{base:"H",letters:"HⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",letters:"IⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",letters:"JⒿJĴɈ"},{base:"K",letters:"KⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",letters:"LⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",letters:"LJ"},{base:"Lj",letters:"Lj"},{base:"M",letters:"MⓂMḾṀṂⱮƜ"},{base:"N",letters:"NⓃNǸŃÑṄŇṆŅṊṈȠƝꞐꞤ"},{base:"NJ",letters:"NJ"},{base:"Nj",letters:"Nj"},{base:"O",letters:"OⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OI",letters:"Ƣ"},{base:"OO",letters:"Ꝏ"},{base:"OU",letters:"Ȣ"},{base:"P",letters:"PⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",letters:"QⓆQꝖꝘɊ"},{base:"R",letters:"RⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",letters:"SⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",letters:"TⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"TZ",letters:"Ꜩ"},{base:"U",letters:"UⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",letters:"VⓋVṼṾƲꝞɅ"},{base:"VY",letters:"Ꝡ"},{base:"W",letters:"WⓌWẀẂŴẆẄẈⱲ"},{base:"X",letters:"XⓍXẊẌ"},{base:"Y",letters:"YⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",letters:"ZⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",letters:"aⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐ"},{base:"aa",letters:"ꜳ"},{base:"ae",letters:"æǽǣ"},{base:"ao",letters:"ꜵ"},{base:"au",letters:"ꜷ"},{base:"av",letters:"ꜹꜻ"},{base:"ay",letters:"ꜽ"},{base:"b",letters:"bⓑbḃḅḇƀƃɓ"},{base:"c",letters:"cⓒcćĉċčçḉƈȼꜿↄ"},{base:"d",letters:"dⓓdḋďḍḑḓḏđƌɖɗꝺ"},{base:"dz",letters:"dzdž"},{base:"e",letters:"eⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇɛǝ"},{base:"f",letters:"fⓕfḟƒꝼ"},{base:"g",letters:"gⓖgǵĝḡğġǧģǥɠꞡᵹꝿ"},{base:"h",letters:"hⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",letters:"ƕ"},{base:"i",letters:"iⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",letters:"jⓙjĵǰɉ"},{base:"k",letters:"kⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",letters:"lⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇ"},{base:"lj",letters:"lj"},{base:"m",letters:"mⓜmḿṁṃɱɯ"},{base:"n",letters:"nⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥ"},{base:"nj",letters:"nj"},{base:"o",letters:"oⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿɔꝋꝍɵ"},{base:"oi",letters:"ƣ"},{base:"ou",letters:"ȣ"},{base:"oo",letters:"ꝏ"},{base:"p",letters:"pⓟpṕṗƥᵽꝑꝓꝕ"},{base:"q",letters:"qⓠqɋꝗꝙ"},{base:"r",letters:"rⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",letters:"sⓢsßśṥŝṡšṧṣṩșşȿꞩꞅẛ"},{base:"t",letters:"tⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"tz",letters:"ꜩ"},{base:"u",letters:"uⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",letters:"vⓥvṽṿʋꝟʌ"},{base:"vy",letters:"ꝡ"},{base:"w",letters:"wⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",letters:"xⓧxẋẍ"},{base:"y",letters:"yⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",letters:"zⓩzźẑżžẓẕƶȥɀⱬꝣ"}],ar=new RegExp("["+ir.map((function(e){return e.letters})).join("")+"]","g"),or={},sr=0;sr<ir.length;sr++)for(var lr=ir[sr],cr=0;cr<lr.letters.length;cr++)or[lr.letters[cr]]=lr.base;var ur=function(e){return e.replace(ar,(function(e){return or[e]}))},dr=function(e,t){void 0===t&&(t=Qn);var n=null;function r(){for(var r=[],i=0;i<arguments.length;i++)r[i]=arguments[i];if(n&&n.lastThis===this&&t(r,n.lastArgs))return n.lastResult;var a=e.apply(this,r);return n={lastResult:a,lastArgs:r,lastThis:this},a}return r.clear=function(){n=null},r}(ur),pr=function(e){return e.replace(/^\s+|\s+$/g,"")},fr=function(e){return"".concat(e.label," ").concat(e.value)},hr=["innerRef"];function mr(e){var t=e.innerRef,n=function(e){for(var t=arguments.length,n=new Array(t>1?t-1:0),r=1;r<t;r++)n[r-1]=arguments[r];var i=Object.entries(e).filter((function(e){var t=kt(e,1)[0];return!n.includes(t)}));return i.reduce((function(e,t){var n=kt(t,2),r=n[0],i=n[1];return e[r]=i,e}),{})}(St(e,hr),"onExited","in","enter","exit","appear");return _t("input",Y({ref:t},n,{css:Et({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var gr=["boxSizing","height","overflow","paddingRight","position"],vr={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function br(e){e.preventDefault()}function yr(e){e.stopPropagation()}function Cr(){var e=this.scrollTop,t=this.scrollHeight,n=e+this.offsetHeight;0===e?this.scrollTop=1:n===t&&(this.scrollTop=e-1)}function _r(){return"ontouchstart"in window||navigator.maxTouchPoints}var Er=!("undefined"==typeof window||!window.document||!window.document.createElement),wr=0,xr={capture:!1,passive:!1},kr=function(e){var t=e.target;return t.ownerDocument.activeElement&&t.ownerDocument.activeElement.blur()},Sr={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function Mr(e){var t=e.children,n=e.lockEnabled,r=e.captureEnabled,i=function(e){var t=e.isEnabled,n=e.onBottomArrive,r=e.onBottomLeave,i=e.onTopArrive,a=e.onTopLeave,o=(0,X.useRef)(!1),s=(0,X.useRef)(!1),l=(0,X.useRef)(0),c=(0,X.useRef)(null),u=(0,X.useCallback)((function(e,t){if(null!==c.current){var l=c.current,u=l.scrollTop,d=l.scrollHeight,p=l.clientHeight,f=c.current,h=t>0,m=d-p-u,g=!1;m>t&&o.current&&(r&&r(e),o.current=!1),h&&s.current&&(a&&a(e),s.current=!1),h&&t>m?(n&&!o.current&&n(e),f.scrollTop=d,g=!0,o.current=!0):!h&&-t>u&&(i&&!s.current&&i(e),f.scrollTop=0,g=!0,s.current=!0),g&&function(e){e.cancelable&&e.preventDefault(),e.stopPropagation()}(e)}}),[n,r,i,a]),d=(0,X.useCallback)((function(e){u(e,e.deltaY)}),[u]),p=(0,X.useCallback)((function(e){l.current=e.changedTouches[0].clientY}),[]),f=(0,X.useCallback)((function(e){var t=l.current-e.changedTouches[0].clientY;u(e,t)}),[u]),h=(0,X.useCallback)((function(e){if(e){var t=!!fn&&{passive:!1};e.addEventListener("wheel",d,t),e.addEventListener("touchstart",p,t),e.addEventListener("touchmove",f,t)}}),[f,p,d]),m=(0,X.useCallback)((function(e){e&&(e.removeEventListener("wheel",d,!1),e.removeEventListener("touchstart",p,!1),e.removeEventListener("touchmove",f,!1))}),[f,p,d]);return(0,X.useEffect)((function(){if(t){var e=c.current;return h(e),function(){m(e)}}}),[t,h,m]),function(e){c.current=e}}({isEnabled:void 0===r||r,onBottomArrive:e.onBottomArrive,onBottomLeave:e.onBottomLeave,onTopArrive:e.onTopArrive,onTopLeave:e.onTopLeave}),a=function(e){var t=e.isEnabled,n=e.accountForScrollbars,r=void 0===n||n,i=(0,X.useRef)({}),a=(0,X.useRef)(null),o=(0,X.useCallback)((function(e){if(Er){var t=document.body,n=t&&t.style;if(r&&gr.forEach((function(e){var t=n&&n[e];i.current[e]=t})),r&&wr<1){var a=parseInt(i.current.paddingRight,10)||0,o=document.body?document.body.clientWidth:0,s=window.innerWidth-o+a||0;Object.keys(vr).forEach((function(e){var t=vr[e];n&&(n[e]=t)})),n&&(n.paddingRight="".concat(s,"px"))}t&&_r()&&(t.addEventListener("touchmove",br,xr),e&&(e.addEventListener("touchstart",Cr,xr),e.addEventListener("touchmove",yr,xr))),wr+=1}}),[r]),s=(0,X.useCallback)((function(e){if(Er){var t=document.body,n=t&&t.style;wr=Math.max(wr-1,0),r&&wr<1&&gr.forEach((function(e){var t=i.current[e];n&&(n[e]=t)})),t&&_r()&&(t.removeEventListener("touchmove",br,xr),e&&(e.removeEventListener("touchstart",Cr,xr),e.removeEventListener("touchmove",yr,xr)))}}),[r]);return(0,X.useEffect)((function(){if(t){var e=a.current;return o(e),function(){s(e)}}}),[t,o,s]),function(e){a.current=e}}({isEnabled:n});return _t(X.Fragment,null,n&&_t("div",{onClick:kr,css:Sr}),t((function(e){i(e),a(e)})))}var Or={name:"1a0ro4n-requiredInput",styles:"label:requiredInput;opacity:0;pointer-events:none;position:absolute;bottom:0;left:0;right:0;width:100%"},Lr=function(e){var t=e.name,n=e.onFocus;return _t("input",{required:!0,name:t,tabIndex:-1,"aria-hidden":"true",onFocus:n,css:Or,value:"",onChange:function(){}})},zr={clearIndicator:Nn,container:function(e){var t=e.isDisabled;return{label:"container",direction:e.isRtl?"rtl":void 0,pointerEvents:t?"none":void 0,position:"relative"}},control:function(e,t){var n=e.isDisabled,r=e.isFocused,i=e.theme,a=i.colors,o=i.borderRadius;return q({label:"control",alignItems:"center",cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:i.spacing.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms"},t?{}:{backgroundColor:n?a.neutral5:a.neutral0,borderColor:n?a.neutral10:r?a.primary:a.neutral20,borderRadius:o,borderStyle:"solid",borderWidth:1,boxShadow:r?"0 0 0 1px ".concat(a.primary):void 0,"&:hover":{borderColor:r?a.primary:a.neutral30}})},dropdownIndicator:An,group:function(e,t){var n=e.theme.spacing;return t?{}:{paddingBottom:2*n.baseUnit,paddingTop:2*n.baseUnit}},groupHeading:function(e,t){var n=e.theme,r=n.colors,i=n.spacing;return q({label:"group",cursor:"default",display:"block"},t?{}:{color:r.neutral40,fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:3*i.baseUnit,paddingRight:3*i.baseUnit,textTransform:"uppercase"})},indicatorsContainer:function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},indicatorSeparator:function(e,t){var n=e.isDisabled,r=e.theme,i=r.spacing.baseUnit,a=r.colors;return q({label:"indicatorSeparator",alignSelf:"stretch",width:1},t?{}:{backgroundColor:n?a.neutral10:a.neutral20,marginBottom:2*i,marginTop:2*i})},input:function(e,t){var n=e.isDisabled,r=e.value,i=e.theme,a=i.spacing,o=i.colors;return q(q({visibility:n?"hidden":"visible",transform:r?"translateZ(0)":""},Bn),t?{}:{margin:a.baseUnit/2,paddingBottom:a.baseUnit/2,paddingTop:a.baseUnit/2,color:o.neutral80})},loadingIndicator:function(e,t){var n=e.isFocused,r=e.size,i=e.theme,a=i.colors,o=i.spacing.baseUnit;return q({label:"loadingIndicator",display:"flex",transition:"color 150ms",alignSelf:"center",fontSize:r,lineHeight:1,marginRight:r,textAlign:"center",verticalAlign:"middle"},t?{}:{color:n?a.neutral60:a.neutral20,padding:2*o})},loadingMessage:Mn,menu:function(e,t){var n,r=e.placement,i=e.theme,a=i.borderRadius,o=i.spacing,s=i.colors;return q((G(n={label:"menu"},function(e){return e?{bottom:"top",top:"bottom"}[e]:"bottom"}(r),"100%"),G(n,"position","absolute"),G(n,"width","100%"),G(n,"zIndex",1),n),t?{}:{backgroundColor:s.neutral0,borderRadius:a,boxShadow:"0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)",marginBottom:o.menuGutter,marginTop:o.menuGutter})},menuList:function(e,t){var n=e.maxHeight,r=e.theme.spacing.baseUnit;return q({maxHeight:n,overflowY:"auto",position:"relative",WebkitOverflowScrolling:"touch"},t?{}:{paddingBottom:r,paddingTop:r})},menuPortal:function(e){var t=e.rect,n=e.offset,r=e.position;return{left:t.left,position:r,top:n,width:t.width,zIndex:1}},multiValue:function(e,t){var n=e.theme,r=n.spacing,i=n.borderRadius,a=n.colors;return q({label:"multiValue",display:"flex",minWidth:0},t?{}:{backgroundColor:a.neutral10,borderRadius:i/2,margin:r.baseUnit/2})},multiValueLabel:function(e,t){var n=e.theme,r=n.borderRadius,i=n.colors,a=e.cropWithEllipsis;return q({overflow:"hidden",textOverflow:a||void 0===a?"ellipsis":void 0,whiteSpace:"nowrap"},t?{}:{borderRadius:r/2,color:i.neutral80,fontSize:"85%",padding:3,paddingLeft:6})},multiValueRemove:function(e,t){var n=e.theme,r=n.spacing,i=n.borderRadius,a=n.colors,o=e.isFocused;return q({alignItems:"center",display:"flex"},t?{}:{borderRadius:i/2,backgroundColor:o?a.dangerLight:void 0,paddingLeft:r.baseUnit,paddingRight:r.baseUnit,":hover":{backgroundColor:a.dangerLight,color:a.danger}})},noOptionsMessage:Sn,option:function(e,t){var n=e.isDisabled,r=e.isFocused,i=e.isSelected,a=e.theme,o=a.spacing,s=a.colors;return q({label:"option",cursor:"default",display:"block",fontSize:"inherit",width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)"},t?{}:{backgroundColor:i?s.primary:r?s.primary25:"transparent",color:n?s.neutral20:i?s.neutral0:"inherit",padding:"".concat(2*o.baseUnit,"px ").concat(3*o.baseUnit,"px"),":active":{backgroundColor:n?void 0:i?s.primary:s.primary50}})},placeholder:function(e,t){var n=e.theme,r=n.spacing,i=n.colors;return q({label:"placeholder",gridArea:"1 / 1 / 2 / 3"},t?{}:{color:i.neutral50,marginLeft:r.baseUnit/2,marginRight:r.baseUnit/2})},singleValue:function(e,t){var n=e.isDisabled,r=e.theme,i=r.spacing,a=r.colors;return q({label:"singleValue",gridArea:"1 / 1 / 2 / 3",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},t?{}:{color:n?a.neutral40:a.neutral80,marginLeft:i.baseUnit/2,marginRight:i.baseUnit/2})},valueContainer:function(e,t){var n=e.theme.spacing,r=e.isMulti,i=e.hasValue,a=e.selectProps.controlShouldRenderValue;return q({alignItems:"center",display:r&&i&&a?"flex":"grid",flex:1,flexWrap:"wrap",WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"},t?{}:{padding:"".concat(n.baseUnit/2,"px ").concat(2*n.baseUnit,"px")})}},Tr={borderRadius:4,colors:{primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},spacing:{baseUnit:4,controlHeight:38,menuGutter:8}},Ir={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:cn(),captureMenuScroll:!cn(),classNames:{},closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e,t){if(e.data.__isNew__)return!0;var n=q({ignoreCase:!0,ignoreAccents:!0,stringify:fr,trim:!0,matchFrom:"any"},undefined),r=n.ignoreCase,i=n.ignoreAccents,a=n.stringify,o=n.trim,s=n.matchFrom,l=o?pr(t):t,c=o?pr(a(e)):a(e);return r&&(l=l.toLowerCase(),c=c.toLowerCase()),i&&(l=dr(l),c=ur(c)),"start"===s?c.substr(0,l.length)===l:c.indexOf(l)>-1},formatGroupLabel:function(e){return e.label},getOptionLabel:function(e){return e.label},getOptionValue:function(e){return e.value},isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:function(e){return!!e.isDisabled},loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!function(){try{return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}catch(e){return!1}}(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(e){var t=e.count;return"".concat(t," result").concat(1!==t?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0,unstyled:!1};function Pr(e,t,n,r){return{type:"option",data:t,isDisabled:Dr(e,t,n),isSelected:Fr(e,t,n),label:Vr(e,t),value:Hr(e,t),index:r}}function Rr(e,t){return e.options.map((function(n,r){if("options"in n){var i=n.options.map((function(n,r){return Pr(e,n,t,r)})).filter((function(t){return Nr(e,t)}));return i.length>0?{type:"group",data:n,options:i,index:r}:void 0}var a=Pr(e,n,t,r);return Nr(e,a)?a:void 0})).filter(hn)}function Ar(e){return e.reduce((function(e,t){return"group"===t.type?e.push.apply(e,Kn(t.options.map((function(e){return e.data})))):e.push(t.data),e}),[])}function Nr(e,t){var n=e.inputValue,r=void 0===n?"":n,i=t.data,a=t.isSelected,o=t.label,s=t.value;return(!Br(e)||!a)&&jr(e,{label:o,value:s,data:i},r)}var Vr=function(e,t){return e.getOptionLabel(t)},Hr=function(e,t){return e.getOptionValue(t)};function Dr(e,t,n){return"function"==typeof e.isOptionDisabled&&e.isOptionDisabled(t,n)}function Fr(e,t,n){if(n.indexOf(t)>-1)return!0;if("function"==typeof e.isOptionSelected)return e.isOptionSelected(t,n);var r=Hr(e,t);return n.some((function(t){return Hr(e,t)===r}))}function jr(e,t,n){return!e.filterOption||e.filterOption(t,n)}var Br=function(e){var t=e.hideSelectedOptions,n=e.isMulti;return void 0===t?n:t},Wr=1,$r=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&qn(e,t)}(a,e);var t,n,r,i=Xn(a);function a(e){var t;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,a),(t=i.call(this,e)).state={ariaSelection:null,focusedOption:null,focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0},t.blockOptionHover=!1,t.isComposing=!1,t.commonProps=void 0,t.initialTouchX=0,t.initialTouchY=0,t.instancePrefix="",t.openAfterFocus=!1,t.scrollToFocusedOptionOnUpdate=!1,t.userIsDragging=void 0,t.controlRef=null,t.getControlRef=function(e){t.controlRef=e},t.focusedOptionRef=null,t.getFocusedOptionRef=function(e){t.focusedOptionRef=e},t.menuListRef=null,t.getMenuListRef=function(e){t.menuListRef=e},t.inputRef=null,t.getInputRef=function(e){t.inputRef=e},t.focus=t.focusInput,t.blur=t.blurInput,t.onChange=function(e,n){var r=t.props,i=r.onChange,a=r.name;n.name=a,t.ariaOnChange(e,n),i(e,n)},t.setValue=function(e,n,r){var i=t.props,a=i.closeMenuOnSelect,o=i.isMulti,s=i.inputValue;t.onInputChange("",{action:"set-value",prevInputValue:s}),a&&(t.setState({inputIsHiddenAfterUpdate:!o}),t.onMenuClose()),t.setState({clearFocusValueOnUpdate:!0}),t.onChange(e,{action:n,option:r})},t.selectOption=function(e){var n=t.props,r=n.blurInputOnSelect,i=n.isMulti,a=n.name,o=t.state.selectValue,s=i&&t.isOptionSelected(e,o),l=t.isOptionDisabled(e,o);if(s){var c=t.getOptionValue(e);t.setValue(o.filter((function(e){return t.getOptionValue(e)!==c})),"deselect-option",e)}else{if(l)return void t.ariaOnChange(e,{action:"select-option",option:e,name:a});i?t.setValue([].concat(Kn(o),[e]),"select-option",e):t.setValue(e,"select-option")}r&&t.blurInput()},t.removeValue=function(e){var n=t.props.isMulti,r=t.state.selectValue,i=t.getOptionValue(e),a=r.filter((function(e){return t.getOptionValue(e)!==i})),o=mn(n,a,a[0]||null);t.onChange(o,{action:"remove-value",removedValue:e}),t.focusInput()},t.clearValue=function(){var e=t.state.selectValue;t.onChange(mn(t.props.isMulti,[],null),{action:"clear",removedValues:e})},t.popValue=function(){var e=t.props.isMulti,n=t.state.selectValue,r=n[n.length-1],i=n.slice(0,n.length-1),a=mn(e,i,i[0]||null);t.onChange(a,{action:"pop-value",removedValue:r})},t.getValue=function(){return t.state.selectValue},t.cx=function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return Qt.apply(void 0,[t.props.classNamePrefix].concat(n))},t.getOptionLabel=function(e){return Vr(t.props,e)},t.getOptionValue=function(e){return Hr(t.props,e)},t.getStyles=function(e,n){var r=t.props.unstyled,i=zr[e](n,r);i.boxSizing="border-box";var a=t.props.styles[e];return a?a(i,n):i},t.getClassNames=function(e,n){var r,i;return null===(r=(i=t.props.classNames)[e])||void 0===r?void 0:r.call(i,n)},t.getElementId=function(e){return"".concat(t.instancePrefix,"-").concat(e)},t.getComponents=function(){return e=t.props,q(q({},Un),e.components);var e},t.buildCategorizedOptions=function(){return Rr(t.props,t.state.selectValue)},t.getCategorizedOptions=function(){return t.props.menuIsOpen?t.buildCategorizedOptions():[]},t.buildFocusableOptions=function(){return Ar(t.buildCategorizedOptions())},t.getFocusableOptions=function(){return t.props.menuIsOpen?t.buildFocusableOptions():[]},t.ariaOnChange=function(e,n){t.setState({ariaSelection:q({value:e},n)})},t.onMenuMouseDown=function(e){0===e.button&&(e.stopPropagation(),e.preventDefault(),t.focusInput())},t.onMenuMouseMove=function(e){t.blockOptionHover=!1},t.onControlMouseDown=function(e){if(!e.defaultPrevented){var n=t.props.openMenuOnClick;t.state.isFocused?t.props.menuIsOpen?"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&t.onMenuClose():n&&t.openMenu("first"):(n&&(t.openAfterFocus=!0),t.focusInput()),"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&e.preventDefault()}},t.onDropdownIndicatorMouseDown=function(e){if(!(e&&"mousedown"===e.type&&0!==e.button||t.props.isDisabled)){var n=t.props,r=n.isMulti,i=n.menuIsOpen;t.focusInput(),i?(t.setState({inputIsHiddenAfterUpdate:!r}),t.onMenuClose()):t.openMenu("first"),e.preventDefault()}},t.onClearIndicatorMouseDown=function(e){e&&"mousedown"===e.type&&0!==e.button||(t.clearValue(),e.preventDefault(),t.openAfterFocus=!1,"touchend"===e.type?t.focusInput():setTimeout((function(){return t.focusInput()})))},t.onScroll=function(e){"boolean"==typeof t.props.closeMenuOnScroll?e.target instanceof HTMLElement&&rn(e.target)&&t.props.onMenuClose():"function"==typeof t.props.closeMenuOnScroll&&t.props.closeMenuOnScroll(e)&&t.props.onMenuClose()},t.onCompositionStart=function(){t.isComposing=!0},t.onCompositionEnd=function(){t.isComposing=!1},t.onTouchStart=function(e){var n=e.touches,r=n&&n.item(0);r&&(t.initialTouchX=r.clientX,t.initialTouchY=r.clientY,t.userIsDragging=!1)},t.onTouchMove=function(e){var n=e.touches,r=n&&n.item(0);if(r){var i=Math.abs(r.clientX-t.initialTouchX),a=Math.abs(r.clientY-t.initialTouchY);t.userIsDragging=i>5||a>5}},t.onTouchEnd=function(e){t.userIsDragging||(t.controlRef&&!t.controlRef.contains(e.target)&&t.menuListRef&&!t.menuListRef.contains(e.target)&&t.blurInput(),t.initialTouchX=0,t.initialTouchY=0)},t.onControlTouchEnd=function(e){t.userIsDragging||t.onControlMouseDown(e)},t.onClearIndicatorTouchEnd=function(e){t.userIsDragging||t.onClearIndicatorMouseDown(e)},t.onDropdownIndicatorTouchEnd=function(e){t.userIsDragging||t.onDropdownIndicatorMouseDown(e)},t.handleInputChange=function(e){var n=t.props.inputValue,r=e.currentTarget.value;t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange(r,{action:"input-change",prevInputValue:n}),t.props.menuIsOpen||t.onMenuOpen()},t.onInputFocus=function(e){t.props.onFocus&&t.props.onFocus(e),t.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(t.openAfterFocus||t.props.openMenuOnFocus)&&t.openMenu("first"),t.openAfterFocus=!1},t.onInputBlur=function(e){var n=t.props.inputValue;t.menuListRef&&t.menuListRef.contains(document.activeElement)?t.inputRef.focus():(t.props.onBlur&&t.props.onBlur(e),t.onInputChange("",{action:"input-blur",prevInputValue:n}),t.onMenuClose(),t.setState({focusedValue:null,isFocused:!1}))},t.onOptionHover=function(e){t.blockOptionHover||t.state.focusedOption===e||t.setState({focusedOption:e})},t.shouldHideSelectedOptions=function(){return Br(t.props)},t.onValueInputFocus=function(e){e.preventDefault(),e.stopPropagation(),t.focus()},t.onKeyDown=function(e){var n=t.props,r=n.isMulti,i=n.backspaceRemovesValue,a=n.escapeClearsValue,o=n.inputValue,s=n.isClearable,l=n.isDisabled,c=n.menuIsOpen,u=n.onKeyDown,d=n.tabSelectsValue,p=n.openMenuOnFocus,f=t.state,h=f.focusedOption,m=f.focusedValue,g=f.selectValue;if(!(l||"function"==typeof u&&(u(e),e.defaultPrevented))){switch(t.blockOptionHover=!0,e.key){case"ArrowLeft":if(!r||o)return;t.focusValue("previous");break;case"ArrowRight":if(!r||o)return;t.focusValue("next");break;case"Delete":case"Backspace":if(o)return;if(m)t.removeValue(m);else{if(!i)return;r?t.popValue():s&&t.clearValue()}break;case"Tab":if(t.isComposing)return;if(e.shiftKey||!c||!d||!h||p&&t.isOptionSelected(h,g))return;t.selectOption(h);break;case"Enter":if(229===e.keyCode)break;if(c){if(!h)return;if(t.isComposing)return;t.selectOption(h);break}return;case"Escape":c?(t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange("",{action:"menu-close",prevInputValue:o}),t.onMenuClose()):s&&a&&t.clearValue();break;case" ":if(o)return;if(!c){t.openMenu("first");break}if(!h)return;t.selectOption(h);break;case"ArrowUp":c?t.focusOption("up"):t.openMenu("last");break;case"ArrowDown":c?t.focusOption("down"):t.openMenu("first");break;case"PageUp":if(!c)return;t.focusOption("pageup");break;case"PageDown":if(!c)return;t.focusOption("pagedown");break;case"Home":if(!c)return;t.focusOption("first");break;case"End":if(!c)return;t.focusOption("last");break;default:return}e.preventDefault()}},t.instancePrefix="react-select-"+(t.props.instanceId||++Wr),t.state.selectValue=en(e.value),e.menuIsOpen&&t.state.selectValue.length){var n=t.buildFocusableOptions(),r=n.indexOf(t.state.selectValue[0]);t.state.focusedOption=n[r]}return t}return t=a,n=[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput(),this.props.menuIsOpen&&this.state.focusedOption&&this.menuListRef&&this.focusedOptionRef&&ln(this.menuListRef,this.focusedOptionRef)}},{key:"componentDidUpdate",value:function(e){var t=this.props,n=t.isDisabled,r=t.menuIsOpen,i=this.state.isFocused;(i&&!n&&e.isDisabled||i&&r&&!e.menuIsOpen)&&this.focusInput(),i&&n&&!e.isDisabled?this.setState({isFocused:!1},this.onMenuClose):i||n||!e.isDisabled||this.inputRef!==document.activeElement||this.setState({isFocused:!0}),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(ln(this.menuListRef,this.focusedOptionRef),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(e,t){this.props.onInputChange(e,t)}},{key:"focusInput",value:function(){this.inputRef&&this.inputRef.focus()}},{key:"blurInput",value:function(){this.inputRef&&this.inputRef.blur()}},{key:"openMenu",value:function(e){var t=this,n=this.state,r=n.selectValue,i=n.isFocused,a=this.buildFocusableOptions(),o="first"===e?0:a.length-1;if(!this.props.isMulti){var s=a.indexOf(r[0]);s>-1&&(o=s)}this.scrollToFocusedOptionOnUpdate=!(i&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:a[o]},(function(){return t.onMenuOpen()}))}},{key:"focusValue",value:function(e){var t=this.state,n=t.selectValue,r=t.focusedValue;if(this.props.isMulti){this.setState({focusedOption:null});var i=n.indexOf(r);r||(i=-1);var a=n.length-1,o=-1;if(n.length){switch(e){case"previous":o=0===i?0:-1===i?a:i-1;break;case"next":i>-1&&i<a&&(o=i+1)}this.setState({inputIsHidden:-1!==o,focusedValue:n[o]})}}}},{key:"focusOption",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"first",t=this.props.pageSize,n=this.state.focusedOption,r=this.getFocusableOptions();if(r.length){var i=0,a=r.indexOf(n);n||(a=-1),"up"===e?i=a>0?a-1:r.length-1:"down"===e?i=(a+1)%r.length:"pageup"===e?(i=a-t)<0&&(i=0):"pagedown"===e?(i=a+t)>r.length-1&&(i=r.length-1):"last"===e&&(i=r.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:r[i],focusedValue:null})}}},{key:"getTheme",value:function(){return this.props.theme?"function"==typeof this.props.theme?this.props.theme(Tr):q(q({},Tr),this.props.theme):Tr}},{key:"getCommonProps",value:function(){var e=this.clearValue,t=this.cx,n=this.getStyles,r=this.getClassNames,i=this.getValue,a=this.selectOption,o=this.setValue,s=this.props,l=s.isMulti,c=s.isRtl,u=s.options;return{clearValue:e,cx:t,getStyles:n,getClassNames:r,getValue:i,hasValue:this.hasValue(),isMulti:l,isRtl:c,options:u,selectOption:a,selectProps:s,setValue:o,theme:this.getTheme()}}},{key:"hasValue",value:function(){return this.state.selectValue.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var e=this.props,t=e.isClearable,n=e.isMulti;return void 0===t?n:t}},{key:"isOptionDisabled",value:function(e,t){return Dr(this.props,e,t)}},{key:"isOptionSelected",value:function(e,t){return Fr(this.props,e,t)}},{key:"filterOption",value:function(e,t){return jr(this.props,e,t)}},{key:"formatOptionLabel",value:function(e,t){if("function"==typeof this.props.formatOptionLabel){var n=this.props.inputValue,r=this.state.selectValue;return this.props.formatOptionLabel(e,{context:t,inputValue:n,selectValue:r})}return this.getOptionLabel(e)}},{key:"formatGroupLabel",value:function(e){return this.props.formatGroupLabel(e)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var e=this.props,t=e.isDisabled,n=e.isSearchable,r=e.inputId,i=e.inputValue,a=e.tabIndex,o=e.form,s=e.menuIsOpen,l=e.required,c=this.getComponents().Input,u=this.state,d=u.inputIsHidden,p=u.ariaSelection,f=this.commonProps,h=r||this.getElementId("input"),m=q(q(q({"aria-autocomplete":"list","aria-expanded":s,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],"aria-required":l,role:"combobox"},s&&{"aria-controls":this.getElementId("listbox"),"aria-owns":this.getElementId("listbox")}),!n&&{"aria-readonly":!0}),this.hasValue()?"initial-input-focus"===(null==p?void 0:p.action)&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return n?X.createElement(c,Y({},f,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:h,innerRef:this.getInputRef,isDisabled:t,isHidden:d,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:a,form:o,type:"text",value:i},m)):X.createElement(mr,Y({id:h,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:Kt,onFocus:this.onInputFocus,disabled:t,tabIndex:a,inputMode:"none",form:o,value:""},m))}},{key:"renderPlaceholderOrValue",value:function(){var e=this,t=this.getComponents(),n=t.MultiValue,r=t.MultiValueContainer,i=t.MultiValueLabel,a=t.MultiValueRemove,o=t.SingleValue,s=t.Placeholder,l=this.commonProps,c=this.props,u=c.controlShouldRenderValue,d=c.isDisabled,p=c.isMulti,f=c.inputValue,h=c.placeholder,m=this.state,g=m.selectValue,v=m.focusedValue,b=m.isFocused;if(!this.hasValue()||!u)return f?null:X.createElement(s,Y({},l,{key:"placeholder",isDisabled:d,isFocused:b,innerProps:{id:this.getElementId("placeholder")}}),h);if(p)return g.map((function(t,o){var s=t===v,c="".concat(e.getOptionLabel(t),"-").concat(e.getOptionValue(t));return X.createElement(n,Y({},l,{components:{Container:r,Label:i,Remove:a},isFocused:s,isDisabled:d,key:c,index:o,removeProps:{onClick:function(){return e.removeValue(t)},onTouchEnd:function(){return e.removeValue(t)},onMouseDown:function(e){e.preventDefault()}},data:t}),e.formatOptionLabel(t,"value"))}));if(f)return null;var y=g[0];return X.createElement(o,Y({},l,{data:y,isDisabled:d}),this.formatOptionLabel(y,"value"))}},{key:"renderClearIndicator",value:function(){var e=this.getComponents().ClearIndicator,t=this.commonProps,n=this.props,r=n.isDisabled,i=n.isLoading,a=this.state.isFocused;if(!this.isClearable()||!e||r||!this.hasValue()||i)return null;var o={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return X.createElement(e,Y({},t,{innerProps:o,isFocused:a}))}},{key:"renderLoadingIndicator",value:function(){var e=this.getComponents().LoadingIndicator,t=this.commonProps,n=this.props,r=n.isDisabled,i=n.isLoading,a=this.state.isFocused;return e&&i?X.createElement(e,Y({},t,{innerProps:{"aria-hidden":"true"},isDisabled:r,isFocused:a})):null}},{key:"renderIndicatorSeparator",value:function(){var e=this.getComponents(),t=e.DropdownIndicator,n=e.IndicatorSeparator;if(!t||!n)return null;var r=this.commonProps,i=this.props.isDisabled,a=this.state.isFocused;return X.createElement(n,Y({},r,{isDisabled:i,isFocused:a}))}},{key:"renderDropdownIndicator",value:function(){var e=this.getComponents().DropdownIndicator;if(!e)return null;var t=this.commonProps,n=this.props.isDisabled,r=this.state.isFocused,i={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return X.createElement(e,Y({},t,{innerProps:i,isDisabled:n,isFocused:r}))}},{key:"renderMenu",value:function(){var e=this,t=this.getComponents(),n=t.Group,r=t.GroupHeading,i=t.Menu,a=t.MenuList,o=t.MenuPortal,s=t.LoadingMessage,l=t.NoOptionsMessage,c=t.Option,u=this.commonProps,d=this.state.focusedOption,p=this.props,f=p.captureMenuScroll,h=p.inputValue,m=p.isLoading,g=p.loadingMessage,v=p.minMenuHeight,b=p.maxMenuHeight,y=p.menuIsOpen,C=p.menuPlacement,_=p.menuPosition,E=p.menuPortalTarget,w=p.menuShouldBlockScroll,x=p.menuShouldScrollIntoView,k=p.noOptionsMessage,S=p.onMenuScrollToTop,M=p.onMenuScrollToBottom;if(!y)return null;var O,L=function(t,n){var r=t.type,i=t.data,a=t.isDisabled,o=t.isSelected,s=t.label,l=t.value,p=d===i,f=a?void 0:function(){return e.onOptionHover(i)},h=a?void 0:function(){return e.selectOption(i)},m="".concat(e.getElementId("option"),"-").concat(n),g={id:m,onClick:h,onMouseMove:f,onMouseOver:f,tabIndex:-1};return X.createElement(c,Y({},u,{innerProps:g,data:i,isDisabled:a,isSelected:o,key:m,label:s,type:r,value:l,isFocused:p,innerRef:p?e.getFocusedOptionRef:void 0}),e.formatOptionLabel(t.data,"menu"))};if(this.hasOptions())O=this.getCategorizedOptions().map((function(t){if("group"===t.type){var i=t.data,a=t.options,o=t.index,s="".concat(e.getElementId("group"),"-").concat(o),l="".concat(s,"-heading");return X.createElement(n,Y({},u,{key:s,data:i,options:a,Heading:r,headingProps:{id:l,data:t.data},label:e.formatGroupLabel(t.data)}),t.options.map((function(e){return L(e,"".concat(o,"-").concat(e.index))})))}if("option"===t.type)return L(t,"".concat(t.index))}));else if(m){var z=g({inputValue:h});if(null===z)return null;O=X.createElement(s,u,z)}else{var T=k({inputValue:h});if(null===T)return null;O=X.createElement(l,u,T)}var I={minMenuHeight:v,maxMenuHeight:b,menuPlacement:C,menuPosition:_,menuShouldScrollIntoView:x},P=X.createElement(xn,Y({},u,I),(function(t){var n=t.ref,r=t.placerProps,o=r.placement,s=r.maxHeight;return X.createElement(i,Y({},u,I,{innerRef:n,innerProps:{onMouseDown:e.onMenuMouseDown,onMouseMove:e.onMenuMouseMove,id:e.getElementId("listbox")},isLoading:m,placement:o}),X.createElement(Mr,{captureEnabled:f,onTopArrive:S,onBottomArrive:M,lockEnabled:w},(function(t){return X.createElement(a,Y({},u,{innerRef:function(n){e.getMenuListRef(n),t(n)},isLoading:m,maxHeight:s,focusedOption:d}),O)})))}));return E||"fixed"===_?X.createElement(o,Y({},u,{appendTo:E,controlElement:this.controlRef,menuPlacement:C,menuPosition:_}),P):P}},{key:"renderFormField",value:function(){var e=this,t=this.props,n=t.delimiter,r=t.isDisabled,i=t.isMulti,a=t.name,o=t.required,s=this.state.selectValue;if(o&&!this.hasValue()&&!r)return X.createElement(Lr,{name:a,onFocus:this.onValueInputFocus});if(a&&!r){if(i){if(n){var l=s.map((function(t){return e.getOptionValue(t)})).join(n);return X.createElement("input",{name:a,type:"hidden",value:l})}var c=s.length>0?s.map((function(t,n){return X.createElement("input",{key:"i-".concat(n),name:a,type:"hidden",value:e.getOptionValue(t)})})):X.createElement("input",{name:a,type:"hidden",value:""});return X.createElement("div",null,c)}var u=s[0]?this.getOptionValue(s[0]):"";return X.createElement("input",{name:a,type:"hidden",value:u})}}},{key:"renderLiveRegion",value:function(){var e=this.commonProps,t=this.state,n=t.ariaSelection,r=t.focusedOption,i=t.focusedValue,a=t.isFocused,o=t.selectValue,s=this.getFocusableOptions();return X.createElement(rr,Y({},e,{id:this.getElementId("live-region"),ariaSelection:n,focusedOption:r,focusedValue:i,isFocused:a,selectValue:o,focusableOptions:s}))}},{key:"render",value:function(){var e=this.getComponents(),t=e.Control,n=e.IndicatorsContainer,r=e.SelectContainer,i=e.ValueContainer,a=this.props,o=a.className,s=a.id,l=a.isDisabled,c=a.menuIsOpen,u=this.state.isFocused,d=this.commonProps=this.getCommonProps();return X.createElement(r,Y({},d,{className:o,innerProps:{id:s,onKeyDown:this.onKeyDown},isDisabled:l,isFocused:u}),this.renderLiveRegion(),X.createElement(t,Y({},d,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:l,isFocused:u,menuIsOpen:c}),X.createElement(i,Y({},d,{isDisabled:l}),this.renderPlaceholderOrValue(),this.renderInput()),X.createElement(n,Y({},d,{isDisabled:l}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}],r=[{key:"getDerivedStateFromProps",value:function(e,t){var n=t.prevProps,r=t.clearFocusValueOnUpdate,i=t.inputIsHiddenAfterUpdate,a=t.ariaSelection,o=t.isFocused,s=t.prevWasFocused,l=e.options,c=e.value,u=e.menuIsOpen,d=e.inputValue,p=e.isMulti,f=en(c),h={};if(n&&(c!==n.value||l!==n.options||u!==n.menuIsOpen||d!==n.inputValue)){var m=u?function(e,t){return Ar(Rr(e,t))}(e,f):[],g=r?function(e,t){var n=e.focusedValue,r=e.selectValue.indexOf(n);if(r>-1){if(t.indexOf(n)>-1)return n;if(r<t.length)return t[r]}return null}(t,f):null,v=function(e,t){var n=e.focusedOption;return n&&t.indexOf(n)>-1?n:t[0]}(t,m);h={selectValue:f,focusedOption:v,focusedValue:g,clearFocusValueOnUpdate:!1}}var b=null!=i&&e!==n?{inputIsHidden:i,inputIsHiddenAfterUpdate:void 0}:{},y=a,C=o&&s;return o&&!C&&(y={value:mn(p,f,f[0]||null),options:f,action:"initial-input-focus"},C=!s),"initial-input-focus"===(null==a?void 0:a.action)&&(y=null),q(q(q({},h),b),{},{prevProps:e,ariaSelection:y,prevWasFocused:C})}}],n&&Zn(t.prototype,n),r&&Zn(t,r),Object.defineProperty(t,"prototype",{writable:!1}),a}(X.Component);$r.defaultProps=Ir;var Ur=(0,X.forwardRef)((function(e,t){var n=function(e){var t=e.defaultInputValue,n=void 0===t?"":t,r=e.defaultMenuIsOpen,i=void 0!==r&&r,a=e.defaultValue,o=void 0===a?null:a,s=e.inputValue,l=e.menuIsOpen,c=e.onChange,u=e.onInputChange,d=e.onMenuClose,p=e.onMenuOpen,f=e.value,h=St(e,Gn),m=kt((0,X.useState)(void 0!==s?s:n),2),g=m[0],v=m[1],b=kt((0,X.useState)(void 0!==l?l:i),2),y=b[0],C=b[1],_=kt((0,X.useState)(void 0!==f?f:o),2),E=_[0],w=_[1],x=(0,X.useCallback)((function(e,t){"function"==typeof c&&c(e,t),w(e)}),[c]),k=(0,X.useCallback)((function(e,t){var n;"function"==typeof u&&(n=u(e,t)),v(void 0!==n?n:e)}),[u]),S=(0,X.useCallback)((function(){"function"==typeof p&&p(),C(!0)}),[p]),M=(0,X.useCallback)((function(){"function"==typeof d&&d(),C(!1)}),[d]),O=void 0!==s?s:g,L=void 0!==l?l:y,z=void 0!==f?f:E;return q(q({},h),{},{inputValue:O,menuIsOpen:L,onChange:x,onInputChange:k,onMenuClose:M,onMenuOpen:S,value:z})}(e);return X.createElement($r,Y({ref:t},n))})),Gr=Ur;const Zr=t=>{const{details:{label:n,position:r="bottom"}}=t;return(0,e.createElement)("div",{className:`zip-ai-sidebar__tooltip zip-ai-sidebar__tooltip-positioned--${r}`},(0,e.createElement)("div",{className:"zip-ai-sidebar__tooltip--content"},n))},qr=t=>{const{shortcut:{label:n,id:r,icon:i=null,clickEvent:a=null,disabled:o=!1,position:s="bottom"}}=t,{hoveredButton:l,handleMouseEnter:c,handleMouseLeave:u}=(0,e.useContext)(ui);return(0,e.createElement)("button",{className:N(["zip-ai-sidebar__chat-bubble--shortcut",!i&&"zip-ai-sidebar__chat-bubble--shortcut-no-icon"]),onClick:a,disabled:o,onMouseEnter:()=>c(r),onMouseLeave:u},i||n,i&&r===l&&(0,e.createElement)(Zr,{details:{label:n,position:s}}))},Yr=t=>{const{filter:{feature:n,possibilityText:r="",clickEvent:i=null,classNames:a=[],disabled:o=!1}}=t;return(0,e.createElement)("button",{className:N(["zip-ai-sidebar__prompt--button",...a]),onClick:i,disabled:o},(0,e.createElement)("span",{className:"zip-ai-sidebar__prompt--heading"},n),(0,e.createElement)("span",{className:"zip-ai-sidebar__prompt--subheading"},r))};var Xr=t=>{const{filter:{id:n,icon:r=null,feature:i,clickEvent:a=null,disabled:o=!1,options:s=[],position:l="top"},type:c="button"}=t,{hoveredButton:u,handleMouseEnter:d,handleMouseLeave:p,setHoveredButton:f,currentDropdown:h,setCurrentDropdown:m,setOpenDropdownNode:g}=(0,e.useContext)(ui),[v,b]=(0,e.useState)(null),y=(0,e.useRef)(null),[C,_]=(0,e.useState)("360px"),E=(0,e.useRef)(null),w=(0,e.useRef)(null),x=()=>null,k=function(){let t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];const c="#64748b",k="#e6e7e9",S="#f2f5f7",M={fontFamily:"Inter",fontSize:"0.75rem",fontWeight:"400",lineHeight:"1rem"},O={container:e=>({...e,maxWidth:"24px",zIndex:99999}),control:(e,t)=>{let{isDisabled:n}=t;return{...e,...M,minHeight:"24px",height:"24px",width:"24px",cursor:"pointer",opacity:n?"0.5":"1",backgroundColor:"transparent",color:n?k:c,border:"none",display:"flex",alignItems:"center",boxShadow:"none",zIndex:99999}},menu:e=>({...e,right:0,width:"auto",minWidth:"150px",border:`1px solid ${k}`,borderRadius:"6px",boxShadow:"0 4px 8px -2px rgba( 16, 24, 40, 0.1 ), 0 2px 4px -2px rgba( 16, 24, 40, 0.06 )",zIndex:99999}),menuList:e=>({...e,maxHeight:C}),valueContainer:e=>({...e,height:"24px",padding:0,display:"flex",overflow:"hidden"}),input:e=>({...e,height:"24px",padding:0,margin:0}),singleValue:e=>({...e,maxWidth:0}),dropdownIndicator:(e,t)=>{let{isDisabled:n}=t;return{...e,padding:"4px",opacity:"1 !important",color:n?k:c,"&:hover":{color:n?k:c,backgroundColor:S},"&:active":{color:n?k:c,backgroundColor:S}}},indicatorsContainer:e=>({...e,color:c,height:"24px"}),option:e=>({...e,...M})};return(0,e.createElement)("div",{className:N(["zip-ai-sidebar__chat-bubble--interaction-dropdown","zip-ai-sidebar__chat-bubble--shortcut",o&&"zip-ai-sidebar__chat-bubble--interaction-dropdown-disabled"]),onMouseEnter:()=>{n!==h&&d(n)},onMouseLeave:()=>n===h?null:p(),ref:E},(0,e.createElement)(Gr,{placeholder:"",options:s,value:v,onChange:e=>(e=>{a(e),b(null)})(e),onInputChange:e=>(e=>{if(!y?.current)return;const t=y.current,n=t.children[0],r=t.children[t.children.length-1];e?(n.innerHTML=e,r.innerHTML=""):(n.innerHTML="",r.innerHTML="Search…")})(e),onMenuOpen:()=>(()=>{if(!E?.current)return;w?.current&&g(w.current);const e=E.current.parentNode.getBoundingClientRect(),r=window.innerHeight||document.documentElement.clientHeight;if(e.bottom+360>r){const n=t?0:28;_(`${r-e.bottom-80+n}px`)}else _("360px");m(n)})(),onMenuClose:()=>{m(null),f(null)},isDisabled:o,isSearchable:t,isMulti:!1,menuPosition:"fixed",menuPlacement:"auto",components:{ClearIndicator:x,Control:t=>Un.Control&&(0,e.createElement)(Un.Control,t),DropdownIndicator:t=>{let{children:n,...i}=t;return Un.DropdownIndicator&&(0,e.createElement)(Un.DropdownIndicator,i,r,n)},IndicatorSeparator:x,Menu:n=>{let{children:r,...a}=n;return Un.Menu&&(0,e.createElement)(Un.Menu,a,(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--interaction-dropdown-title"},i),t&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--interaction-dropdown-search",ref:y},(0,e.createElement)("span",{className:"zip-ai-sidebar__chat-bubble--interaction-dropdown-search-value"}),(0,e.createElement)("span",{className:"zip-ai-sidebar__chat-bubble--interaction-dropdown-search-cursor"}),(0,e.createElement)("span",{className:"zip-ai-sidebar__chat-bubble--interaction-dropdown-search-placeholder"},"Search…"))),r)}},styles:O,classNamePrefix:"zip-ai-select",ref:w}),!o&&n===u&&n!==h&&(0,e.createElement)(Zr,{details:{label:i,position:l}}))};switch(c){case"select":return k();case"select-without-search":return k(!1);default:return(0,e.createElement)(qr,{shortcut:{label:i,id:n,icon:r,clickEvent:a,disabled:o,position:l}})}};const Kr={color:"#64748b"},Jr=(e,t,n)=>{t(e),n?.current?.focus()},Qr=[{value:"Arabic",label:(0,F.__)("Arabic","ultimate-addons-for-gutenberg")},{value:"Azerbaijani",label:(0,F.__)("Azerbaijani","ultimate-addons-for-gutenberg")},{value:"Bengali",label:(0,F.__)("Bengali","ultimate-addons-for-gutenberg")},{value:"Belarusian",label:(0,F.__)("Belarusian","ultimate-addons-for-gutenberg")},{value:"Bulgarian",label:(0,F.__)("Bulgarian","ultimate-addons-for-gutenberg")},{value:"Chinese",label:(0,F.__)("Chinese (Simplified)","ultimate-addons-for-gutenberg")},{value:"Croatian",label:(0,F.__)("Croatian","ultimate-addons-for-gutenberg")},{value:"Czech",label:(0,F.__)("Czech","ultimate-addons-for-gutenberg")},{value:"Danish",label:(0,F.__)("Danish","ultimate-addons-for-gutenberg")},{value:"Dutch",label:(0,F.__)("Dutch","ultimate-addons-for-gutenberg")},{value:"English",label:(0,F.__)("English","ultimate-addons-for-gutenberg")},{value:"Estonian",label:(0,F.__)("Estonian","ultimate-addons-for-gutenberg")},{value:"Finnish",label:(0,F.__)("Finnish","ultimate-addons-for-gutenberg")},{value:"Filipino",label:(0,F.__)("Filipino","ultimate-addons-for-gutenberg")},{value:"French",label:(0,F.__)("French","ultimate-addons-for-gutenberg")},{value:"Georgian",label:(0,F.__)("Georgian","ultimate-addons-for-gutenberg")},{value:"German",label:(0,F.__)("German","ultimate-addons-for-gutenberg")},{value:"Greek",label:(0,F.__)("Greek","ultimate-addons-for-gutenberg")},{value:"Hebrew",label:(0,F.__)("Hebrew","ultimate-addons-for-gutenberg")},{value:"Hindi",label:(0,F.__)("Hindi","ultimate-addons-for-gutenberg")},{value:"Hungarian",label:(0,F.__)("Hungarian","ultimate-addons-for-gutenberg")},{value:"Indonesian",label:(0,F.__)("Indonesian","ultimate-addons-for-gutenberg")},{value:"Italian",label:(0,F.__)("Italian","ultimate-addons-for-gutenberg")},{value:"Japanese",label:(0,F.__)("Japanese","ultimate-addons-for-gutenberg")},{value:"Kazakh",label:(0,F.__)("Kazakh","ultimate-addons-for-gutenberg")},{value:"Korean",label:(0,F.__)("Korean","ultimate-addons-for-gutenberg")},{value:"Latvian",label:(0,F.__)("Latvian","ultimate-addons-for-gutenberg")},{value:"Lithuanian",label:(0,F.__)("Lithuanian","ultimate-addons-for-gutenberg")},{value:"Macedonian",label:(0,F.__)("Macedonian","ultimate-addons-for-gutenberg")},{value:"Malay",label:(0,F.__)("Malay","ultimate-addons-for-gutenberg")},{value:"Norwegian",label:(0,F.__)("Norwegian","ultimate-addons-for-gutenberg")},{value:"Polish",label:(0,F.__)("Polish","ultimate-addons-for-gutenberg")},{value:"Portuguese",label:(0,F.__)("Portuguese","ultimate-addons-for-gutenberg")},{value:"Romanian",label:(0,F.__)("Romanian","ultimate-addons-for-gutenberg")},{value:"Russian",label:(0,F.__)("Russian","ultimate-addons-for-gutenberg")},{value:"Serbian",label:(0,F.__)("Serbian","ultimate-addons-for-gutenberg")},{value:"Slovak",label:(0,F.__)("Slovak","ultimate-addons-for-gutenberg")},{value:"Slovenian",label:(0,F.__)("Slovenian","ultimate-addons-for-gutenberg")},{value:"Spanish",label:(0,F.__)("Spanish","ultimate-addons-for-gutenberg")},{value:"Swahili",label:(0,F.__)("Swahili","ultimate-addons-for-gutenberg")},{value:"Swedish",label:(0,F.__)("Swedish","ultimate-addons-for-gutenberg")},{value:"Thai",label:(0,F.__)("Thai","ultimate-addons-for-gutenberg")},{value:"Turkish",label:(0,F.__)("Turkish","ultimate-addons-for-gutenberg")},{value:"Ukrainian",label:(0,F.__)("Ukrainian","ultimate-addons-for-gutenberg")},{value:"Urdu",label:(0,F.__)("Urdu","ultimate-addons-for-gutenberg")},{value:"Vietnamese",label:(0,F.__)("Vietnamese","ultimate-addons-for-gutenberg")}],ei=[{value:"friendly",label:(0,F.__)("Friendly","ultimate-addons-for-gutenberg")},{value:"formal",label:(0,F.__)("Formal","ultimate-addons-for-gutenberg")},{value:"casual",label:(0,F.__)("Casual","ultimate-addons-for-gutenberg")},{value:"professional",label:(0,F.__)("Professional","ultimate-addons-for-gutenberg")},{value:"informative",label:(0,F.__)("Informative","ultimate-addons-for-gutenberg")},{value:"playful",label:(0,F.__)("Playful","ultimate-addons-for-gutenberg")},{value:"serious",label:(0,F.__)("Serious","ultimate-addons-for-gutenberg")},{value:"humorous",label:(0,F.__)("Humorous","ultimate-addons-for-gutenberg")},{value:"polite",label:(0,F.__)("Polite","ultimate-addons-for-gutenberg")},{value:"emotional",label:(0,F.__)("Emotional","ultimate-addons-for-gutenberg")}],ti=e=>{e({textCommand:"Fix the grammar and any spelling mistakes in the previous message.",oneClickCommand:(0,F.__)("Fix any grammatical mistakes.","ultimate-addons-for-gutenberg"),useSystemMessage:!1})},ni=e=>{e({textCommand:"Rewrite it by making it 5 to 10 words longer - and keep it in the same language as the last message.",oneClickCommand:(0,F.__)("Make it longer.","ultimate-addons-for-gutenberg"),useSystemMessage:!1})},ri=e=>{e({textCommand:"Make it shorter - and keep it in the same language as the last message.",oneClickCommand:(0,F.__)("Make it shorter.","ultimate-addons-for-gutenberg"),useSystemMessage:!1})},ii=(e,t)=>{t({textCommand:`Rewrite in a ${e.value} tone - keep it in the same language, and keep it the exact same length.`
/* translators: %s: tone name */,oneClickCommand:(0,F.sprintf)((0,F.__)("Change tone to %s.","ultimate-addons-for-gutenberg"),e.label),useSystemMessage:!1})},ai=e=>{e({textCommand:"Rewrite the text to convey the same meaning in different words, maintaining the original language and similar length.",oneClickCommand:(0,F.__)("Rephrase","ultimate-addons-for-gutenberg"),useSystemMessage:!1})},oi=t=>{const{currentText:n,generationRef:r,setUserInput:i,refreshFilters:a,setRefreshFilters:o,generating:s,setGenerating:l,setAiResponseError:c,setValidForSaving:u}=t,{chatLog:d,setChatLog:p}=(0,e.useContext)(ui),f=((e,t,n)=>"editing_product"===zip_ai_react?.current_view?(e=>({title:(0,F.__)("Create with AI","ultimate-addons-for-gutenberg"),filters:[{feature:(0,F.__)("Write a short description","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("for this product","ultimate-addons-for-gutenberg"),clickEvent:()=>{e({textCommand:"Write a one-line description for this product. Don't add any links.",oneClickCommand:(0,F.__)("Write a short description.","ultimate-addons-for-gutenberg"),useSystemMessage:!0})}},{feature:(0,F.__)("Write a long description","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("for this product","ultimate-addons-for-gutenberg"),clickEvent:()=>{e({textCommand:"Write a one-paragraph description for this product. Don't add any links.",oneClickCommand:(0,F.__)("Write a long description.","ultimate-addons-for-gutenberg"),useSystemMessage:!0})}}]}))(n):((e,t)=>({title:(0,F.__)("Draft with AI","ultimate-addons-for-gutenberg"),filters:[{feature:(0,F.__)("Give me an idea","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("for an attractive heading about","ultimate-addons-for-gutenberg"),clickEvent:()=>{Jr((0,F.__)("Give me an idea for ","ultimate-addons-for-gutenberg"),e,t)}},{feature:(0,F.__)("Show me a code snippet","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("of blur-on-hover CSS","ultimate-addons-for-gutenberg"),clickEvent:()=>{Jr((0,F.__)("Show me a code snippet of ","ultimate-addons-for-gutenberg"),e,t)}},{feature:(0,F.__)("Write me a description","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("about a product for","ultimate-addons-for-gutenberg"),clickEvent:()=>{Jr((0,F.__)("Write me a description about ","ultimate-addons-for-gutenberg"),e,t)}}]}))(e,t))(i,r,(e=>{let{textCommand:t,oneClickCommand:r,useSystemMessage:a}=e;const s=pi(d,n);vi({textContent:s,textCommand:t,setGenerating:l,setText:i,setRefreshFilters:o,setAiResponseError:c,chatLog:d,setChatLog:p,oneClickCommand:r,setValidForSaving:u,useSystemMessage:a})})),[h,m]=(0,e.useState)(f),g=navigator?.clipboard&&{feature:(0,F.__)("Paste from clipboard","ultimate-addons-for-gutenberg"),possibilityText:(0,F.__)("and chat from there","ultimate-addons-for-gutenberg"),clickEvent:async()=>{l(!0);const e=await navigator.clipboard.readText().then((e=>e)).catch((()=>""));e&&(d.push({id:0,from:"content",message:e}),p([...d]),o(!0)),l(!1)}};return(0,e.useEffect)((()=>{a&&(o(!1),m(f))}),[a]),(0,e.createElement)("div",{className:"zip-ai-sidebar__prompt"},h.filters.map(((t,n)=>(0,e.createElement)(Yr,{key:n,filter:{...t,disabled:s}}))),g&&(0,e.createElement)(Yr,{filter:{...g,disabled:s}}))};var si=t=>{const{bubbleType:n,currentText:r,setUserInput:i,refreshFilters:a,setRefreshFilters:o,generating:s,setGenerating:l,setAiResponseError:c,setValidForSaving:u}=t,{chatLog:d,setChatLog:p,editMode:f}=(0,e.useContext)(ui);let h;h="content"===n?"bottom":"top";const m=e=>{let{textCommand:t,oneClickCommand:n,useSystemMessage:a}=e;const s=pi(d,r);vi({textContent:s,textCommand:t,setGenerating:l,setText:i,setRefreshFilters:o,setAiResponseError:c,chatLog:d,setChatLog:p,oneClickCommand:n,setValidForSaving:u,useSystemMessage:a})},g=(e=>({filters:[{icon:E(Kr),feature:(0,F.__)("Fix Grammar","ultimate-addons-for-gutenberg"),clickEvent:()=>ti(e)},{icon:z({width:14,height:14,...Kr}),feature:(0,F.__)("Make Longer","ultimate-addons-for-gutenberg"),clickEvent:()=>ni(e)},{icon:T(Kr),feature:(0,F.__)("Make Shorter","ultimate-addons-for-gutenberg"),clickEvent:()=>ri(e)},{icon:O(Kr),feature:(0,F.__)("Rephrase","ultimate-addons-for-gutenberg"),clickEvent:()=>ai(e)}]}))(m),v=(e=>({filters:[{icon:R(),feature:(0,F.__)("Change Tone","ultimate-addons-for-gutenberg"),options:ei,clickEvent:t=>ii(t,e)},{icon:A(),feature:(0,F.__)("Translate","ultimate-addons-for-gutenberg"),options:Qr,clickEvent:t=>((e,t)=>{t({textCommand:`Translate to ${e.value}.`
/* translators: %s: language name */,oneClickCommand:(0,F.sprintf)((0,F.__)("Translate to %s.","ultimate-addons-for-gutenberg"),e.label),useSystemMessage:!1})})(t,e)}]}))(m),[b,y]=(0,e.useState)(g),[C,_]=(0,e.useState)(v);return(0,e.useEffect)((()=>{a&&(o(!1),y(g),_(v))}),[a]),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--interaction"},b.filters.map(((t,n)=>(0,e.createElement)(Xr,{key:n,filter:{...t,id:`ai-message-filter-${n+1}`,disabled:s||f?.enabled,position:h}}))),C?.filters?.length>0&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--interaction-divider"}),C.filters.map(((t,n)=>{let r;switch(t.feature){case"Rephrase":r="button";break;case"Change Tone":r="select-without-search";break;default:r="select"}return(0,e.createElement)(Xr,{type:r,key:n,filter:{...t,id:`ai-message-dropdown-${n+1}`,disabled:s||f?.enabled,position:h}})}))))},li=n(426),ci=li.default||li;const ui=(0,e.createContext)({chatLog:[],setChatLog:null,editMode:{enabled:!1,value:"",id:-1},setEditMode:null,isOpen:!1,setIsOpen:null,isRichText:!1,updateContent:null,currentText:"",hoveredButton:null,setHoveredButton:null,handleMouseEnter:null,handleMouseLeave:null,currentDropdown:null,setCurrentDropdown:null,footerRefHeight:0,setFooterRefHeight:null,scrollButtonRef:null,openedDropdownNode:null,setOpenDropdownNode:null}),di=(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-loader"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-loader--dot dot-1"}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-loader--dot dot-2"}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-loader--dot dot-3"})),pi=(e,t)=>e?.filter((e=>"ai"===e.from||"content"===e.from))?.pop()?.message||t,fi=(e,t,n)=>{let r;switch(t){case"progress":r=e?.progress;break;case"success":r=e?.success,setTimeout((()=>{n("default")}),750);break;default:r=e.default}return r},hi=t=>{const{message:n}=t,[r,i]=(0,e.useState)("default");if(!n)return null;const a=n.split("\n"),o=a.shift(),s=a.join("\n").trim(),l={default:x(),progress:w(),success:_()};return(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--code-block"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--code-block-title"},o,(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--code-block-actions"},(0,e.createElement)("button",{className:"zip-ai-sidebar__chat-bubble--code-block-button",onClick:async()=>{try{i("progress"),await V(s),i("success")}catch(e){console.error(e),i("default")}}},fi(l,r,i)))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--code-block-content"},(0,e.createElement)("code",null,s)))},mi=e=>{const t=e=>`${zip_ai_react.site_url}${e.substring(e.indexOf("example.com")+11)}`,n=(e.match(/example\.com/g)||[]).length;let r=0;for(;r<n;)e=e.replace(/(https?:\/\/)?(www\.)?example\.com\/.*/g,((e,n)=>t(e))),r++;return e};var gi=t=>{const{currentText:n,chatBubble:r,updateContent:i,closeModal:a,generating:o,setGenerating:s,regeneratingId:l,setRegeneratingId:u,aiResponseError:p,setAiResponseError:f,userInput:h,setUserInput:g=null,refreshFilters:b,setRefreshFilters:C=null,editCheck:E=null,setEditCheck:M=null,setValidForSaving:O=null}=t,{chatLog:z,setChatLog:T,editMode:R,setEditMode:A,setHoveredButton:H}=(0,e.useContext)(ui),[D,j]=(0,e.useState)(0),[B,W]=(0,e.useState)("default"),$=(0,e.useRef)(null),U=r?.variations?.length&&r.variations.length>1;let G;(0,e.useEffect)((()=>{if(!$?.current)return;if(!R.value)return void($.current.style.height="");$.current.style.height="0";const e=$.current.scrollHeight,t=Math.ceil(e/20),n=Math.max(1,Math.min(t,10));$.current.style.height=20*n+"px"}),[R]),(0,e.useEffect)((()=>{!l&&"ai"===r?.from&&U&&j(r.variations.length-1)}),[l]),(0,e.useEffect)((()=>{"ai"===r?.from&&r?.id&&U&&(z[r.id].message=r.variations[D],T([...z]))}),[D]),(0,e.useEffect)((()=>{"ai"===r?.from&&r?.variations&&r?.id&&r.id!==z?.length-1&&(z[r.id]&&(z[r.id].variations=[]),T([...z]))}),[z?.length]);let Z=r?.action;const q=!p&&r?.id===z?.length-1;switch(r?.from){case"user":G=E?void 0:[{label:(0,F.__)("Edit Message","ultimate-addons-for-gutenberg"),icon:S(),execute:()=>{null!==M&&(M(!0),H(null)),R.id=r.id,R.enabled=!0,R.value=r?.message,A({...R})}}];break;case"ai":if(!r?.variations?.length&&r?.message&&q&&(r.variations=[r?.message]),G=[],Z={execute:async()=>{if(null!==i)i(mi(r?.message));else try{await V(mi(r?.message))}catch{}a()},label:null!==i?(0,F.__)("Replace Richtext","ultimate-addons-for-gutenberg"):(0,F.__)("Copy & Close","ultimate-addons-for-gutenberg"),icon:null!==i?I():k()},G.push({label:(0,F.__)("Copy","ultimate-addons-for-gutenberg"),multiIcons:{default:x(),progress:w(),success:_()},execute:async()=>{try{W("progress"),await V(r?.message),W("success")}catch(e){console.error(e),W("default")}}}),!q||!r?.variations?.length)break;G.push({label:(0,F.__)("Regenerate","ultimate-addons-for-gutenberg"),icon:L(),execute:()=>{bi({chatBubble:r,regenerationCommand:"Rephrase and change the last assistant message, ensuring that it abides by the last user command.",setGenerating:s,setRegeneratingId:u,setAiResponseError:f,chatLog:z,setChatLog:T})}})}const Y=r.id===l,X="error"!==r?.type&&(Y||R?.enabled),K=()=>(0,e.createElement)(e.Fragment,null,"user"===r?.from&&R?.enabled&&R?.id===r.id?(()=>{const t=()=>{if(null===g||null===C)return A({enabled:!1,value:r?.message,id:-1}),void(null!==M&&M(!1));const e=0===R.id,t=e?void 0:R.value,n=e?R.value:z[R.id-1]?.message||"",i=z.slice(0,R.id);vi({textContent:n,textCommand:t,setGenerating:s,setText:g,setRefreshFilters:C,setAiResponseError:f,chatLog:i,fallbackChatlog:z,setChatLog:T}),R.enabled=!1,R.id=-1,A({...R}),null!==M&&M(!1)},n=e=>""===e?.value?.trim();return(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-editor"},(0,e.createElement)("textarea",{className:N(["zip-ai-sidebar__chat-editor--input"]),value:R.value,ref:$,autoFocus:!0,onChange:e=>{R.value=e.target.value,A({...R})},onKeyDown:e=>{"Enter"!==e.key||e.shiftKey||n(e.target)||(R.value=e.target.value,A({...R}),t())}}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-editor--footer"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-editor--info"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 14 14",fill:m,...t},(0,e.createElement)("path",{d:"M12.25 3.5H1.75M4.08333 7H1.75M4.08333 10.5H1.75M7 10.5C7.36729 10.9897 7.87937 11.3515 8.46368 11.534C9.04799 11.7165 9.67492 11.7106 10.2557 11.517C10.8364 11.3234 11.3415 10.952 11.6995 10.4554C12.0574 9.9588 12.25 9.36216 12.25 8.75C12.25 8.05381 11.9734 7.38613 11.4812 6.89385C10.9889 6.40156 10.3212 6.125 9.625 6.125C8.84917 6.125 8.14333 6.44 7.63583 6.9475L6.41667 8.16667M6.41667 8.16667V5.83333M6.41667 8.16667H8.75",...v,strokeWidth:d,...n}))}({width:14,height:14}),(0,F.__)("Note: All subsequent messages will be deleted after you update.","ultimate-addons-for-gutenberg")),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-editor--actions"},(0,e.createElement)("button",{onClick:()=>{A({enabled:!1,value:r?.message,id:-1}),M(!1)}},(0,F.__)("Cancel","ultimate-addons-for-gutenberg")),(0,e.createElement)("button",{className:"zip-ai-sidebar__chat-editor--action-primary",onClick:()=>{t()},disabled:n(R)},(0,F.__)("Update","ultimate-addons-for-gutenberg")))))})():(0,e.createElement)(e.Fragment,null,q&&o&&!l||["loader","regeneration"].includes(r?.type)&&Y?di:(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--message"},"ai"===r?.from?((t,n,r,i)=>{if(!t?.message){const e=r;return t.id===e[e.length-1].id&&e.pop(),"user"===e[e.length-1]?.from&&e.pop(),i([...e]),n((0,F.__)("It looks like I've encountered an error…","ultimate-addons-for-gutenberg"))}const a=t=>{if(!t.includes("`"))return ci(o(t));const n=[];return t.split("`").forEach(((r,i)=>{0==i%2?n.push(ci(o(t))):n.push((0,e.createElement)("span",{className:"zip-ai-sidebar__chat-bubble--code"},r))})),n},o=e=>(e=(e=(e=(e=(e=(e=(e=e.replaceAll(/^(#{1,6})\s+(.+)$/gm,((e,t,n)=>((e,t,n)=>`<strong>${n}</strong>`)(0,0,n)))).replaceAll(/(\*\*|\_)([^]*?)\1/g,"<strong>$2</strong>")).replaceAll(/~~([^]*?)~~/g,"<del>$1</del>")).replaceAll(/(\*)([^]*?)(\*)/g,"<em>$2</em>")).replaceAll(/^>\s?(.*)$/gm,"<blockquote>$1</blockquote>")).replaceAll(/`{1,2}([^`]*)`{1,2}/gm,'<span class="zip-ai-sidebar__chat-bubble--code-inline"><code>$1</code></span>')).replaceAll(/\[(.*?)\]\((.*?)\)/g,'<a href="$2" target="_blank">$1</a>'),mi(e)),s=t.message.split("```");if(1===s.length)return a(t.message);const l=[];return s.forEach(((t,n)=>{0==n%2&&l.push(a(t)),1==n%2&&l.push((0,e.createElement)(hi,{message:t}))})),l})(r,f,z,T):"assemble-error"===r?.type?r.message():ci(r?.message)),"loader"!==r?.type&&Z&&(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--footer"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--wrapper"},(0,e.createElement)("div",{className:N(["zip-ai-sidebar__chat-bubble--interaction"])},(0,e.createElement)(qr,{shortcut:{label:Z?.label||(0,F.__)("Click Here","ultimate-addons-for-gutenberg"),id:`ai-message-${r.id}-main-interaction`,icon:Z?.icon,clickEvent:()=>{Z?.execute()},disabled:X,position:"top"}}),G&&(0,e.createElement)(e.Fragment,null,G.map(((t,n)=>(0,e.createElement)(qr,{key:n,shortcut:{label:t?.label||(0,F.__)("Click Here","ultimate-addons-for-gutenberg"),id:`ai-message-${r.id}-interaction-${n+1}`,icon:"ai"===r?.from&&t?.multiIcons?fi(t.multiIcons,B,W):t?.icon,clickEvent:()=>{t?.execute()},disabled:X,position:"top"}})))),q&&U?(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--pagination"},(0,e.createElement)("button",{onClick:()=>{j(D-1)},disabled:Y||0===D},P().left),(0,e.createElement)("span",{style:{opacity:Y?.25:1}},(0,F.sprintf)(
// translators: %1$d is the current page, %2$d is the total number of pages.
(0,F.__)("%1$d/%2$d","ultimate-addons-for-gutenberg"),D+1,r.variations.length)),(0,e.createElement)("button",{onClick:()=>{j(D+1)},disabled:Y||D===r.variations.length-1},P().right)):(0,e.createElement)(e.Fragment,null)),q&&"ai"===r?.from&&(0,e.createElement)(si,{bubbleType:r.from,currentText:n,userInput:h,setUserInput:g,refreshFilters:b,setRefreshFilters:C,generating:o,setGenerating:s,setAiResponseError:f,setValidForSaving:O}))),"content"===r?.from&&q&&(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--slidein-actions"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--wrapper"},(0,e.createElement)(si,{bubbleType:r.from,currentText:n,userInput:h,setUserInput:g,refreshFilters:b,setRefreshFilters:C,generating:o,setGenerating:s,setAiResponseError:f,setValidForSaving:O})))),"user"===r?.from&&G&&(0,e.createElement)("div",{className:N(["zip-ai-sidebar__chat-bubble--interaction","zip-ai-sidebar__chat-bubble--interaction-for-user","zip-ai-sidebar__chat-bubble--interaction-on-hover"])},G.map(((t,n)=>{var i;return(0,e.createElement)(qr,{key:n,shortcut:{label:t?.label||(0,F.__)("Click Here","ultimate-addons-for-gutenberg"),id:`user-message-interaction-${n+1}`,icon:null!==(i="user"===r?.from&&t?.multiIcons)&&void 0!==i?i:t?.icon,clickEvent:()=>{t?.execute()},position:"bottom"}})})))),J=Array.isArray(r?.additionalClasses)?[...r.additionalClasses]:[];return(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:N(["zip-ai-sidebar__chat-bubble",r?.from&&`zip-ai-sidebar__chat-bubble--from-${(e=>{switch(e){case"user":return"human";case"content":return"content";case"ai":return"assistant";default:return"unknown"}})(r.from)}`,r?.type&&`zip-ai-sidebar__chat-bubble--type-${r.type}`,r?.icon&&"zip-ai-sidebar__chat-bubble--has-icon",...J])},r?.icon?(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--icon-wrapper"},"assistant"===r.icon?(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--icon"},y({width:16,height:16,color:"#fff"})):null),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-bubble--icon-content"},K())):K()))};const vi=e=>{const{startingText:t="",textContent:n,textCommand:r,setGenerating:i,setText:a,setRefreshFilters:o,setAiResponseError:s,chatLog:l,setChatLog:c,fallbackChatlog:u=null,oneClickCommand:d=null,setValidForSaving:p=null,useSystemMessage:f=!0}=e,h=u||l||[];let m=l?.length?l[l.length-1].id+1:0,g=[...l,{id:m,from:"user",message:d||(l?.length||t?r:n)}];g[g.length-2]?.from&&"ai"!==g[g.length-2].from&&(g[g.length-2].additionalClasses=["not-last-message"]),++m,i(!0),s(""),c([...g]);const v=0===m?[]:(e=>{const t=[];return e.forEach((e=>{t.push({role:"ai"===e.from?"assistant":"user",message:e?.message||""})})),t})(h);g=[...g,{id:m,from:"ai",type:"loader",icon:"assistant",additionalClasses:["animated-chat-bubble"]}],c([...g]),W({userCommand:r||n,previousMessages:v,useSystemMessage:f}).then((e=>{const t=e.data;if(i(!1),e.success){t.message.startsWith('"')&&t.message.endsWith('"')&&(t.message=t.message.slice(1,-1));const e=g.length-1,n=g[e];m===n.id?(delete n.type,n.message=t.message.trim(),n?.additionalClasses?.includes("animated-chat-bubble")&&delete n.additionalClasses,g[e]=n,c([...g])):(s((0,F.__)("Something went wrong while I was generating a response.","ultimate-addons-for-gutenberg")),c([...h])),a(""),"function"==typeof p&&p(!0)}else s(t.message),c([...h]);o(!0)})).catch((()=>{i(!1)})),o(!0)},bi=e=>{const{chatBubble:t,regenerationCommand:n,setGenerating:r,setRegeneratingId:i,setAiResponseError:a,chatLog:o,setChatLog:s}=e,l=[];o[t.id-2]?.message&&l.push({role:"assistant",message:o[t.id-2].message}),l.push({role:"user",message:o[t.id-1].message},{role:"assistant",message:t.variations[0]}),t?.variations?.length&&t.variations.length>1&&t.variations.forEach(((e,t)=>{0!==t&&l.push({role:"user",message:n},{role:"assistant",message:e})})),i(t.id),r(!0),a(""),W({userCommand:n,previousMessages:l,useSystemMessage:!1}).then((e=>{const n=e.data;r(!1),i(null),e.success?(n.message.startsWith('"')&&n.message.endsWith('"')&&(n.message=n.message.slice(1,-1)),o.forEach(((e,r)=>{t.id===e.id&&(delete o[r].type,o[r].message=n.message.trim(),o[r].variations.push(n.message.trim()),s([...o]))}))):a(n.message)})).catch((()=>{r(!1),i(null)}))};var yi=t=>{const{chatLogId:n,isAuthorized:r,generationRef:i,currentText:a,userInput:o,setUserInput:s,setRefreshFilters:l,generating:u,setGenerating:p,setAiResponseError:f,validForSaving:h,setValidForSaving:g}=t,{chatLog:b,setChatLog:y,editMode:C,setFooterRefHeight:_,hoveredButton:E,handleMouseEnter:w,handleMouseLeave:x,scrollButtonRef:k}=(0,e.useContext)(ui),S=(0,e.useRef)(null);(0,e.useEffect)((()=>{S?.current&&_(S.current?.offsetHeight)}),[S]),(0,e.useEffect)((()=>{if(!i?.current)return;if(!o)return i.current.style.height="",void(S?.current&&_(S.current.offsetHeight));i.current.style.height="auto";const e=i.current.scrollHeight-24,t=Math.ceil(e/20),n=Math.max(1,Math.min(t,5));i.current.style.height=20*n+24+56+"px",S?.current&&_(S.current.offsetHeight)}),[o]);let M=zip_ai_react?.collab_product_details;"object"==typeof M&&null!==M||(M={});const{ai_assistant_authorized_disable_url:O,ai_assistant_unauthorized_disable_url:L}=M,z=()=>{let e,t;b?.length||a?(e=pi(b,a),t=o):e=o,vi({startingText:a,textContent:e,textCommand:t,setGenerating:p,setText:s,setRefreshFilters:l,setAiResponseError:f,chatLog:b,setChatLog:y,setValidForSaving:g})};return(0,e.createElement)("div",{className:"zip-ai-sidebar__footer",ref:S},(0,e.createElement)("div",{className:"zip-ai-sidebar__input-prompt"},(0,e.createElement)("div",{className:"zip-ai-sidebar__input-prompt--textarea-wrapper"},(0,e.createElement)("textarea",{className:"zip-ai-sidebar__input-prompt--text",onChange:e=>{s(e.target?.value||"")},onKeyDown:e=>{"Enter"!==e.key||e.shiftKey||(e.preventDefault(),""!==o.trim()&&z())},ref:i,value:o,disabled:u||!r||C?.enabled,placeholder:u?(0,F.__)("Generating…","ultimate-addons-for-gutenberg"):b?.length||""===a?(0,F.__)("How can I help you?","ultimate-addons-for-gutenberg"):a})),(0,e.createElement)("div",{className:"zip-ai-sidebar__input-prompt--footer"},(0,e.createElement)("button",{className:"zip-ai-sidebar__input-prompt--button",onClick:()=>z(),onMouseEnter:()=>w("sidebar-send-button"),onMouseLeave:x,disabled:""===o.trim()||u||!r||C?.enabled},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M4.00035 7.99998L2.17969 2.08398C6.53489 3.35043 10.6419 5.35118 14.3237 7.99998C10.6422 10.6492 6.53541 12.6504 2.18035 13.9173L4.00035 7.99998ZM4.00035 7.99998H9.00035",...v,strokeWidth:d,...n}))}({width:16,height:16,color:"#fff"}),"sidebar-send-button"===E&&(0,e.createElement)(Zr,{details:{label:(0,F.__)("Ask AI","ultimate-addons-for-gutenberg"),position:"left"}})),h&&(0,e.createElement)("button",{className:"zip-ai-sidebar__input-prompt--button secondary-variant",onClick:()=>{localStorage.removeItem(`zipAiPreservedChatlog${n}`),g(!1),y(a?[{id:0,from:"content",message:a}]:[]),l(!0),k?.current&&k.current?.classList.contains("scroll-button-is-visible")&&(k.current.classList.remove("scroll-button-is-visible"),k.current.tabIndex=-1,k.current.setAttribute("aria-hidden","true"))},onMouseEnter:()=>w("sidebar-clear-button"),onMouseLeave:x,disabled:u||C?.enabled},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M2 4.00065H14M12.6667 4.00065V13.334C12.6667 14.0007 12 14.6673 11.3333 14.6673H4.66667C4 14.6673 3.33333 14.0007 3.33333 13.334V4.00065M5.33333 4.00065V2.66732C5.33333 2.00065 6 1.33398 6.66667 1.33398H9.33333C10 1.33398 10.6667 2.00065 10.6667 2.66732V4.00065",...v,strokeWidth:d,...n}))}({color:"#fff"}),"sidebar-clear-button"===E&&(0,e.createElement)(Zr,{details:{label:(0,F.__)("Clear Chat","ultimate-addons-for-gutenberg"),position:"right"}})))),(0,e.createElement)("div",{className:"zip-ai-sidebar__input-prompt--disclaimer"},r&&O||!r&&L?ci((0,F.sprintf)(
// Translators: %1$s is the opening link tag, %2$s is the closing link tag.
(0,F.__)("AI Assistant can make mistakes. Want to %1$sdisable it?%2$s","ultimate-addons-for-gutenberg"),`<a href="${r?O:L}" target="_blank">`,"</a>")):(0,F.__)("AI Assistant can make mistakes.","ultimate-addons-for-gutenberg")))},Ci=t=>{const{setIsAuthorized:n,setUserTeamName:r,setCreditDetails:i,setCreditClass:a}=t,o="disconnected"===zip_ai_react?.current_status?(0,F.__)("Reconnect and Continue Using AI Features","ultimate-addons-for-gutenberg"):(0,F.__)("Get Started with 1000 Free Monthly Credits","ultimate-addons-for-gutenberg"),c="disconnected"===zip_ai_react?.current_status?(0,F.__)("Reconnecting…","ultimate-addons-for-gutenberg"):(0,F.__)("Getting Started…","ultimate-addons-for-gutenberg"),u=(0,F.sprintf)(
// Translators: %1$s is the opening link tag, %2$s is the closing link tag.
(0,F.__)("Get started from %1$shere%2$s.","ultimate-addons-for-gutenberg"),'<a class="zip-ai-sidebar__chat-window--placeholder-link" href="javascript:void(0);">',"</a>"),[d,p]=(0,e.useState)(o),[y,C]=(0,e.useState)((0,F.__)("The possibilities are endless!","ultimate-addons-for-gutenberg"));let _=zip_ai_react?.collab_product_details;"object"==typeof _&&null!==_||(_={product_primary_color:"#007cba"});const{product_name:E,product_logo:w,product_primary_color:x,ai_assistant_learn_more_url:k}=_;return(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-logos"},w&&(0,e.createElement)(e.Fragment,null,ci(w),(0,e.createElement)("svg",{width:"13",height:"12",viewBox:"0 0 13 12",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,e.createElement)("path",{d:"M12.3125 5.75C12.3125 6.24219 11.9023 6.65234 11.4375 6.65234H7.5V10.5898C7.5 11.0547 7.08984 11.4375 6.625 11.4375C6.13281 11.4375 5.75 11.0547 5.75 10.5898V6.65234H1.8125C1.32031 6.65234 0.9375 6.24219 0.9375 5.75C0.9375 5.28516 1.32031 4.90234 1.8125 4.90234H5.75V0.964844C5.75 0.472656 6.13281 0.0625 6.625 0.0625C7.08984 0.0625 7.5 0.472656 7.5 0.964844V4.90234H11.4375C11.9023 4.875 12.3125 5.28516 12.3125 5.75Z",fill:"#555d66"}))),function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:s,height:s,viewBox:"0 0 30 30",fill:m,...t},(0,e.createElement)("path",{d:"M5 0C2.23858 0 0 2.23858 0 5V25C0 27.7614 2.23858 30 5 30H25C27.7614 30 30 27.7614 30 25V5C30 2.23858 27.7614 0 25 0H5ZM26.1432 10.7265C26.1459 10.7262 26.1487 10.7259 26.1514 10.7256L26.1349 10.7269C26.1377 10.7267 26.1405 10.7266 26.1432 10.7265ZM26.1432 10.7265C21.9125 11.174 19.2481 11.1414 18.4509 11.1007C18.3687 11.1071 18.3417 10.9723 18.4048 10.9331C20.7044 9.21451 21.5524 7.98503 21.7865 7.59037C21.8319 7.53551 21.776 7.45429 21.7102 7.45939C20.6151 7.42458 13.7358 7.29097 9.63266 7.95161C6.00268 8.5242 3.84948 11.2753 3.86235 14.851C3.87523 18.4266 6.09129 21.3863 9.29387 22.1304C17.4168 23.9986 22.9334 18.0944 23.8439 17.0311C23.9057 16.975 23.8485 16.8768 23.7649 16.8661L19.5924 16.8476C19.4937 16.8553 19.4654 16.7035 19.5615 16.6618C24.5276 14.3256 25.9654 11.5273 26.2442 10.8553C26.2709 10.7871 26.2208 10.7249 26.1432 10.7265Z",...b,fillRule:"evenodd",clipRule:"evenodd",...n}))}({width:32,height:32,color:"#ff580e"})),(0,e.createElement)("h3",{className:"zip-ai-sidebar__chat-window--placeholder-heading"},E?(0,F.sprintf)(/* translators: %s: Plugin Name */
(0,F.__)("Build 10x Faster with %s AI","ultimate-addons-for-gutenberg"),E):(0,F.__)("Build 10x Faster with ZipWP","ultimate-addons-for-gutenberg")),(0,e.createElement)("p",{className:"zip-ai-sidebar__chat-window--placeholder-subheading"},E?(0,F.sprintf)(/* translators: %s: Plugin Name */
(0,F.__)("%s offers AI features powered by ZipWP to help you build your website 10 times faster.","ultimate-addons-for-gutenberg"),E):(0,F.__)("ZipWP offers AI features to help you build your website 10 times faster.","ultimate-addons-for-gutenberg")),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid"},(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 20 20",fill:m,...t},(0,e.createElement)("g",{clipPath:"url(#zip_ai_translucent_set_translate_clip)"},(0,e.createElement)("mask",{id:"zip_ai_translucent_set_translate_mask",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:20,height:20},(0,e.createElement)("path",{d:"M20 0H0V20H20V0Z",fill:m})),(0,e.createElement)("g",{mask:"url(#zip_ai_translucent_set_translate_mask)"},(0,e.createElement)("path",{d:"M17.0894 9.95182e-08H2.86902C2.10845 0.0011001 1.37934 0.303724 0.841531 0.841531C0.303724 1.37934 0.00109989 2.10845 0 2.86902V17.131C0.00109989 17.8915 0.303724 18.6207 0.841531 19.1584C1.37934 19.6963 2.10845 19.9989 2.86902 20H17.131C17.8916 19.9989 18.6207 19.6963 19.1584 19.1584C19.6962 18.6207 19.9989 17.8915 20 17.131V2.84407C19.9826 2.08372 19.6683 1.36038 19.1243 0.828843C18.5804 0.297306 17.8499 -0.00019865 17.0894 9.95182e-08Z",...b,fill:g})),(0,e.createElement)("path",{d:"M15.2118 6.56641H9.524L10.3498 13.3547L8.85156 15.1588L9.096 15.5257H15.2118L15.6702 15.1588V6.99453L15.2118 6.56641Z",...b,fillOpacity:.25}),(0,e.createElement)("path",{d:"M8.60323 10.2789C8.58423 10.1838 7.92954 6.91022 7.90873 6.80647C7.87635 6.64416 7.73379 6.52734 7.56829 6.52734H6.87379C6.70829 6.52734 6.56573 6.64416 6.53329 6.80647C6.51223 6.91197 5.85685 10.1888 5.83884 10.2788C5.80123 10.467 5.9232 10.6498 6.11124 10.6875C6.29929 10.7251 6.48223 10.6031 6.51985 10.415L6.74179 9.30528H7.70029L7.92223 10.4151C7.95985 10.6032 8.14292 10.7251 8.33085 10.6875C8.51885 10.6498 8.64085 10.467 8.60323 10.2789ZM6.88067 8.61078L7.15848 7.22184H7.2836L7.56142 8.61078H6.88067Z",...b}),(0,e.createElement)("path",{d:"M14.1681 9.30583H13.1264V8.95858C13.1264 8.76683 12.9709 8.61133 12.7792 8.61133C12.5874 8.61133 12.4319 8.76683 12.4319 8.95858V9.30583H11.3902C11.1984 9.30583 11.043 9.46127 11.043 9.65308C11.043 9.84483 11.1984 10.0003 11.3902 10.0003H11.4742C11.6721 10.6395 11.97 11.1301 12.2978 11.5233C12.031 11.7673 11.761 11.9675 11.5205 12.1598C11.3708 12.2796 11.3465 12.4981 11.4663 12.6479C11.5862 12.7977 11.8047 12.8218 11.9543 12.7021C12.1962 12.5086 12.486 12.2936 12.7792 12.0246C13.0725 12.2938 13.3628 12.5092 13.604 12.7021C13.7537 12.8219 13.9722 12.7976 14.092 12.6479C14.2118 12.4981 14.1875 12.2796 14.0378 12.1598C13.7979 11.9679 13.5276 11.7676 13.2605 11.5233C13.5883 11.1301 13.8862 10.6395 14.0841 10.0003H14.1681C14.3599 10.0003 14.5153 9.84483 14.5153 9.65308C14.5153 9.46127 14.3599 9.30583 14.1681 9.30583ZM12.7792 11.013C12.5575 10.7347 12.3581 10.4026 12.2078 9.99802H13.3505C13.2002 10.4026 13.0008 10.7347 12.7792 11.013Z",...b}),(0,e.createElement)("path",{d:"M14.885 6.18079H9.87539L9.72657 4.98671C9.66151 4.46651 9.21714 4.07422 8.69289 4.07422H5.11594C4.54153 4.07422 4.07422 4.54153 4.07422 5.11593V12.7784C4.07422 13.3527 4.54153 13.82 5.11594 13.82H8.04395L8.19089 15.0142C8.25576 15.5333 8.70014 15.9267 9.22458 15.9267H14.885C15.4593 15.9267 15.9266 15.4594 15.9266 14.8849V7.22254C15.9266 6.6481 15.4593 6.18079 14.885 6.18079ZM5.11594 13.1256C4.92447 13.1256 4.7687 12.9698 4.7687 12.7784V5.11593C4.7687 4.92447 4.92447 4.76869 5.11594 4.76869H8.69289C8.86764 4.76869 9.01576 4.89944 9.03745 5.07274C9.08776 5.47637 9.99132 12.7252 10.0413 13.1256H5.11594ZM8.8597 14.7634L8.74364 13.82H9.67526L8.8597 14.7634ZM15.2321 14.8849C15.2321 15.0764 15.0764 15.2322 14.885 15.2322H9.37251L10.6944 13.7031C10.7621 13.6267 10.7924 13.5254 10.7784 13.4247L9.96195 6.87529H14.885C15.0764 6.87529 15.2321 7.03104 15.2321 7.22254V14.8849Z",...b})),(0,e.createElement)("defs",{},(0,e.createElement)("clipPath",{id:"zip_ai_translucent_set_translate_clip"},(0,e.createElement)("rect",{width:20,height:20,fill:g}))))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Translate Your Pages","ultimate-addons-for-gutenberg"))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 20 20",fill:"none",...t},(0,e.createElement)("g",{clipPath:"url(#zip_ai_translucent_set_pencil_clip)"},(0,e.createElement)("mask",{id:"zip_ai_translucent_set_pencil_mask",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:20,height:20},(0,e.createElement)("path",{d:"M20 0H0V20H20V0Z",fill:g})),(0,e.createElement)("g",{mask:"url(#zip_ai_translucent_set_pencil_mask)"},(0,e.createElement)("path",{d:"M17.0894 9.94679e-08H2.86902C2.10845 0.00109999 1.37934 0.303724 0.841531 0.841531C0.303724 1.37934 0.00109989 2.10845 0 2.86902V17.131C0.00109989 17.8916 0.303724 18.6207 0.841531 19.1584C1.37934 19.6962 2.10845 19.9989 2.86902 20H17.131C17.8916 19.9989 18.6207 19.6962 19.1584 19.1584C19.6962 18.6207 19.9989 17.8916 20 17.131V2.84407C19.9826 2.08372 19.6683 1.36038 19.1243 0.828844C18.5804 0.297305 17.8499 -0.0001986 17.0894 9.94679e-08Z",fill:m})),(0,e.createElement)("path",{d:"M10.8966 6.22266L5.72334 11.3959C5.59051 11.5288 5.52409 11.5952 5.48042 11.6768C5.43676 11.7583 5.41833 11.8505 5.38149 12.0347L4.77038 15.0903C4.7288 15.2982 4.70801 15.4021 4.76714 15.4612C4.82627 15.5203 4.93021 15.4995 5.13809 15.458L8.19368 14.8468C8.37787 14.81 8.46999 14.7916 8.55156 14.7479C8.63318 14.7043 8.69962 14.6378 8.83243 14.505L14.0057 9.33172L10.8966 6.22266Z",...b,fillOpacity:.25}),(0,e.createElement)("path",{d:"M8.34623 14.6906C8.22654 14.7584 8.09511 14.791 7.95842 14.825C7.94836 14.8275 7.93823 14.83 7.92811 14.8326L5.67534 15.3958L5.6602 15.3995C5.65418 15.401 5.64809 15.4026 5.64196 15.4041C5.54567 15.4282 5.43676 15.4555 5.3441 15.4646C5.24089 15.4747 5.05387 15.4738 4.90307 15.323C4.75227 15.1721 4.75134 14.9851 4.76144 14.882C4.7705 14.7893 4.79779 14.6803 4.82193 14.5841C4.82346 14.5779 4.82499 14.5718 4.82649 14.5658L5.39347 12.2979C5.396 12.2878 5.39851 12.2777 5.40101 12.2676C5.43499 12.1309 5.46765 11.9995 5.5354 11.8798C5.60315 11.7601 5.69905 11.6645 5.79882 11.565C5.80616 11.5577 5.81353 11.5503 5.82091 11.543L11.6877 5.67624L11.7044 5.65948C11.8984 5.46552 12.0697 5.29411 12.2265 5.17453C12.3964 5.04491 12.5923 4.94141 12.8367 4.94141C13.0811 4.94141 13.277 5.04491 13.4469 5.17453C13.6037 5.2941 13.775 5.46551 13.969 5.65947L13.9857 5.67624L14.5498 6.24029L14.5665 6.25708C14.7605 6.45096 14.9319 6.62239 15.0515 6.77908C15.1811 6.94896 15.2846 7.14496 15.2846 7.38933C15.2846 7.63377 15.1811 7.82971 15.0515 7.99958C14.9319 8.15633 14.7605 8.32771 14.5665 8.52164L14.5498 8.53839L8.68304 14.4051C8.67567 14.4125 8.66829 14.4199 8.66098 14.4272C8.56154 14.527 8.46586 14.6229 8.34623 14.6906ZM8.34623 14.6906L8.16148 14.3643",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M10.8945 6.22266L14.0037 9.33173",...v,strokeWidth:f})),(0,e.createElement)("defs",{},(0,e.createElement)("clipPath",{id:"zip_ai_translucent_set_pencil_clip"},(0,e.createElement)("rect",{width:20,height:20,fill:g}))))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Write Content for Pages","ultimate-addons-for-gutenberg"))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 20 20",fill:m,...t},(0,e.createElement)("g",{clipPath:"url(#zip_ai_translucent_set_code_clip)"},(0,e.createElement)("mask",{id:"zip_ai_translucent_set_code_mask",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:20,height:20},(0,e.createElement)("path",{d:"M20 0H0V20H20V0Z",fill:g})),(0,e.createElement)("g",{mask:"url(#zip_ai_translucent_set_code_mask)"},(0,e.createElement)("path",{d:"M17.0894 9.94679e-08H2.86902C2.10845 0.00109999 1.37934 0.303724 0.841531 0.841531C0.303724 1.37934 0.00109989 2.10845 0 2.86902V17.131C0.00109989 17.8916 0.303724 18.6207 0.841531 19.1584C1.37934 19.6962 2.10845 19.9989 2.86902 20H17.131C17.8916 19.9989 18.6207 19.6962 19.1584 19.1584C19.6962 18.6207 19.9989 17.8916 20 17.131V2.84407C19.9826 2.08372 19.6683 1.36038 19.1243 0.828844C18.5804 0.297305 17.8499 -0.0001986 17.0894 9.94679e-08Z",fill:m})),(0,e.createElement)("path",{d:"M7.10807 7.05957L3.66406 9.86632L7.10807 12.6731",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M12.8945 12.6731L16.3385 9.86632L12.8945 7.05957",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M11.07 5.93262L8.92969 14.0682",...v,strokeWidth:f})),(0,e.createElement)("defs",{},(0,e.createElement)("clipPath",{id:"zip_ai_translucent_set_code_clip"},(0,e.createElement)("rect",{width:20,height:20,fill:g}))))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Generate Custom Code","ultimate-addons-for-gutenberg"))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 20 20",fill:m,...t},(0,e.createElement)("path",{d:"M9.64707 4.57713L9.64707 4.57713L9.64911 4.57618C9.86656 4.47461 10.11 4.47461 10.3275 4.57618L10.3274 4.57618L10.3295 4.57713L15.4525 6.94209C15.4714 6.95246 15.4861 6.9665 15.4945 6.97869C15.4977 6.98334 15.4993 6.98653 15.4999 6.98825C15.4995 7.00094 15.4961 7.01005 15.4901 7.01903C15.4829 7.02978 15.4704 7.04221 15.4525 7.05205L10.3295 9.41701L10.3295 9.417L10.3275 9.41795C10.11 9.51953 9.86656 9.51953 9.64911 9.41795L9.64707 9.41701L4.52488 7.05241C4.51721 7.04796 4.51352 7.04351 4.51089 7.03912C4.50777 7.03393 4.5 7.01825 4.5 6.98534C4.5 6.97323 4.50311 6.96473 4.50697 6.95851C4.51044 6.9529 4.51595 6.94688 4.52487 6.94173L9.64707 4.57713Z",...v,strokeWidth:f,fill:h,fillOpacity:.25}),(0,e.createElement)("path",{d:"M15.6719 9.49569C15.8594 9.58953 16 9.77721 16 9.98836C16 10.223 15.8594 10.4106 15.6719 10.5045L10.5391 12.874C10.1875 13.0382 9.78906 13.0382 9.4375 12.874L4.30469 10.5045C4.11719 10.4106 4 10.223 4 9.98836C4 9.77721 4.11719 9.58953 4.30469 9.49569L5.57031 8.90918L9.13281 10.5514C9.67188 10.8095 10.3047 10.8095 10.8438 10.5514L14.4062 8.90918L15.6719 9.49569Z",...b,fillOpacity:.25}),(0,e.createElement)("path",{d:"M14.4062 11.9121L10.8438 13.5543C10.3047 13.8124 9.67188 13.8124 9.13281 13.5543L5.57031 11.9121L4.30469 12.4986C4.11719 12.5925 4 12.7801 4 12.9913C4 13.2259 4.11719 13.4136 4.30469 13.5074L9.4375 15.8769C9.78906 16.0411 10.1875 16.0411 10.5391 15.8769L15.6719 13.5074C15.8594 13.4136 16 13.2259 16 12.9913C16 12.7801 15.8594 12.5925 15.6719 12.4986L14.4062 11.9121Z",...b,fillOpacity:.25}))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Customize Templates","ultimate-addons-for-gutenberg"))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:l,height:l,viewBox:"0 0 20 20",fill:m,...t},(0,e.createElement)("g",{clipPath:"url(#zip_ai_translucent_set_description_clip)"},(0,e.createElement)("mask",{id:"zip_ai_translucent_set_description_mask",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:20,height:20},(0,e.createElement)("path",{d:"M20 0H0V20H20V0Z",fill:g})),(0,e.createElement)("g",{mask:"url(#zip_ai_translucent_set_description_mask)"},(0,e.createElement)("path",{d:"M17.0894 9.95182e-08H2.86902C2.10845 0.0011001 1.37934 0.303724 0.841531 0.841531C0.303724 1.37934 0.00109989 2.10845 0 2.86902V17.131C0.00109989 17.8915 0.303724 18.6207 0.841531 19.1584C1.37934 19.6963 2.10845 19.9989 2.86902 20H17.131C17.8916 19.9989 18.6207 19.6963 19.1584 19.1584C19.6962 18.6207 19.9989 17.8915 20 17.131V2.84407C19.9826 2.08372 19.6683 1.36038 19.1243 0.828843C18.5804 0.297306 17.8499 -0.00019865 17.0894 9.95182e-08Z",fill:m})),(0,e.createElement)("path",{d:"M15.6076 12.8594H4.39062",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M15.6076 14.8594H4.39062",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M13.5742 16.8594H6.42578",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M7.00476 4.83761H6.31051C6.28332 4.83761 6.26969 4.83761 6.25838 4.83551C6.20757 4.82605 6.16781 4.78629 6.15836 4.73548C6.15625 4.72414 6.15625 4.71054 6.15625 4.68334C6.15625 4.41135 6.15625 4.27535 6.17733 4.16202C6.27188 3.65383 6.66944 3.25624 7.17763 3.16171C7.29094 3.14063 7.42694 3.14062 7.69894 3.14062H12.25C12.5219 3.14062 12.6579 3.14063 12.7713 3.16171C13.2795 3.25624 13.6771 3.65383 13.7716 4.16202C13.7927 4.27535 13.7927 4.41135 13.7927 4.68334C13.7927 4.71054 13.7927 4.72414 13.7906 4.73548C13.7811 4.78629 13.7414 4.82605 13.6906 4.83551C13.6792 4.83761 13.6656 4.83761 13.6384 4.83761H12.9442V7.42855C12.9442 8.60711 12.9442 9.19636 12.5781 9.56249C12.2119 9.92855 11.6227 9.92855 10.4442 9.92855H9.50476C8.32626 9.92855 7.73694 9.92855 7.37088 9.56249C7.00476 9.19636 7.00476 8.60711 7.00476 7.42855V4.83761Z",...b,fillOpacity:.25}),(0,e.createElement)("path",{d:"M7.00476 4.83761V7.42855C7.00476 8.60711 7.00476 9.19636 7.37088 9.56249C7.73694 9.92855 8.32626 9.92855 9.50476 9.92855H10.4442C11.6227 9.92855 12.2119 9.92855 12.5781 9.56249C12.9442 9.19636 12.9442 8.60711 12.9442 7.42855V4.83761M7.00476 4.83761H12.9442M7.00476 4.83761H6.31051C6.28332 4.83761 6.26969 4.83761 6.25838 4.83551C6.20757 4.82605 6.16781 4.78629 6.15836 4.73548C6.15625 4.72414 6.15625 4.71054 6.15625 4.68334C6.15625 4.41135 6.15625 4.27535 6.17733 4.16202C6.27188 3.65383 6.66944 3.25624 7.17763 3.16171C7.29094 3.14063 7.42694 3.14062 7.69894 3.14062H12.25C12.5219 3.14062 12.6579 3.14063 12.7713 3.16171C13.2795 3.25624 13.6771 3.65383 13.7716 4.16202C13.7927 4.27535 13.7927 4.41135 13.7927 4.68334C13.7927 4.71054 13.7927 4.72414 13.7906 4.73548C13.7811 4.78629 13.7414 4.82605 13.6906 4.83551C13.6792 4.83761 13.6656 4.83761 13.6384 4.83761H12.9442",...v,strokeWidth:f}),(0,e.createElement)("path",{d:"M9.125 8.23145H10.822",...v,strokeWidth:f})),(0,e.createElement)("defs",{},(0,e.createElement)("clipPath",{id:"zip_ai_translucent_set_description_clip"},(0,e.createElement)("rect",{width:20,height:20,fill:g}))))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Craft Product Descriptions","ultimate-addons-for-gutenberg"))),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item"},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,e.createElement)("svg",{width:20,height:20,viewBox:"0 0 20 20",fill:m,...t},(0,e.createElement)("g",{clipPath:"url(#zip_ai_translucent_set_chat_bubble_clip)"},(0,e.createElement)("mask",{id:"zip_ai_translucent_set_chat_bubble_mask",style:{maskType:"luminance"},maskUnits:"userSpaceOnUse",x:0,y:0,width:20,height:20},(0,e.createElement)("path",{d:"M20 0H0V20H20V0Z",fill:g})),(0,e.createElement)("g",{mask:"url(#zip_ai_translucent_set_chat_bubble_mask)"},(0,e.createElement)("path",{d:"M17.0894 9.95178e-08H2.86902C2.10845 0.0011001 1.37934 0.303726 0.841531 0.841532C0.303724 1.37934 0.00109989 2.10845 0 2.86902V17.131C0.00109989 17.8916 0.303724 18.6207 0.841531 19.1584C1.37934 19.6963 2.10845 19.9989 2.86902 20H17.131C17.8916 19.9989 18.6207 19.6963 19.1584 19.1584C19.6962 18.6207 19.9989 17.8916 20 17.131V2.84408C19.9826 2.08373 19.6683 1.36038 19.1243 0.828844C18.5804 0.297307 17.8499 -0.00019865 17.0894 9.95178e-08Z",fill:m})),(0,e.createElement)("path",{d:"M4.41797 12.358V6.41956L6.88217 4.40285L13.1931 4.21387L15.4984 6.41956V11.6964L14.5535 13.1324L12.5885 14.1053H10.8124L8.16704 15.6643L7.57623 15.2486L7.78911 14.1053H7.57623L6.01714 13.6527L4.41797 12.358Z",...b,fillOpacity:.25}),(0,e.createElement)("path",{d:"M10.0022 8.344H7.5135C7.25581 8.344 7.04688 8.14281 7.04688 7.89463C7.04688 7.6465 7.25581 7.44531 7.5135 7.44531H10.0022C10.2599 7.44531 10.4689 7.6465 10.4689 7.89463C10.4689 8.14281 10.2599 8.344 10.0022 8.344Z",...b}),(0,e.createElement)("path",{d:"M7.04688 10.2912C7.04688 10.043 7.25581 9.8418 7.5135 9.8418H12.491C12.7487 9.8418 12.9576 10.043 12.9576 10.2912C12.9576 10.5394 12.7487 10.7405 12.491 10.7405H7.5135C7.25581 10.7405 7.04688 10.5394 7.04688 10.2912Z",...b}),(0,e.createElement)("path",{d:"M9.35681 3.84961H10.643C11.4964 3.84961 12.1655 3.84961 12.7033 3.89192C13.2509 3.935 13.7033 4.02419 14.1128 4.2251C14.786 4.55539 15.3333 5.08242 15.6763 5.73065C15.8849 6.12496 15.9775 6.56058 16.0223 7.08796C16.0662 7.60577 16.0662 8.25015 16.0662 9.07196V10.7236C16.0662 10.8773 16.0662 10.9709 16.0622 11.0524C15.9749 12.827 14.5006 14.2467 12.6578 14.3307C12.5731 14.3346 12.4662 14.3346 12.2888 14.3346H12.2711L12.2242 14.3346C11.6847 14.3379 11.1591 14.5001 10.7181 14.7995L10.6874 14.8204L9.06312 15.9377C8.12706 16.5815 6.897 15.6517 7.32419 14.6232C7.38162 14.485 7.27594 14.3346 7.12131 14.3346H6.74688C5.19315 14.3346 3.93359 13.1216 3.93359 11.6255V9.07196C3.93359 8.25015 3.93359 7.60577 3.97753 7.08796C4.02226 6.56058 4.11488 6.12496 4.32352 5.73065C4.66651 5.08242 5.21381 4.55539 5.88697 4.2251C6.29644 4.02419 6.74888 3.935 7.29644 3.89192C7.83425 3.84961 8.50338 3.84961 9.35681 3.84961ZM7.37244 4.78765C6.88256 4.82619 6.56669 4.90026 6.31069 5.02586C5.81312 5.26998 5.40859 5.65953 5.15507 6.13865C5.02465 6.38515 4.94772 6.68933 4.9077 7.16108C4.86723 7.63808 4.86687 8.24577 4.86687 9.09208V11.6255C4.86687 12.6253 5.70858 13.4358 6.74688 13.4358H7.12131C7.93619 13.4358 8.49337 14.2284 8.19075 14.957C8.10969 15.1521 8.34306 15.3285 8.52069 15.2064L10.1804 14.0648C10.7772 13.6599 11.4882 13.4404 12.2183 13.4359L12.2711 13.4358C12.4713 13.4358 12.5541 13.4358 12.6137 13.433C13.9757 13.3709 15.0654 12.3216 15.1299 11.01C15.1328 10.9524 15.1329 10.8818 15.1329 10.709V9.09208C15.1329 8.24577 15.1326 7.63808 15.0921 7.16108C15.052 6.68933 14.9751 6.38515 14.8447 6.13865C14.5912 5.65953 14.1866 5.26998 13.6891 5.02586C13.4331 4.90026 13.1172 4.82619 12.6273 4.78765C12.132 4.74867 11.5009 4.74832 10.6221 4.74832H9.37769C8.49888 4.74832 7.86781 4.74867 7.37244 4.78765Z",...b,fillRule:"evenodd",clipRule:"evenodd"})),(0,e.createElement)("defs",{},(0,e.createElement)("clipPath",{id:"zip_ai_translucent_set_chat_bubble_clip"},(0,e.createElement)("rect",{width:20,height:20,fill:g}))))}({width:32,height:32,color:x}),(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder-grid-item-heading"},(0,F.__)("Engage with Comments","ultimate-addons-for-gutenberg")))),(0,e.createElement)("p",{className:"zip-ai-sidebar__chat-window--placeholder-padded-content"},y),(0,e.createElement)("button",{className:"zip-ai-sidebar__chat-window--placeholder-button",onClick:e=>((e,t)=>{e.preventDefault();const{setIsAuthorized:n,setButtonLabel:r,setSubHeading:i,setUserTeamName:a,setCreditDetails:o,setCreditClass:s,buttonLabels:l,subHeadings:c}=t,u=e.target;u.disabled=!0;const d=(screen.width-480)/2,p=(screen.height-720)/2,f=window.open(zip_ai_react.auth_middleware,"ZipAiAuthorization",`width=480,height=720,top=${p},left=${d},scrollbars=0`),h=new FormData;h.append("action","verify_zip_ai_authenticity"),h.append("nonce",zip_ai_react.ajax_nonce);let m=0;r(l?.progress),i(ci(c?.progressWithLink,{replace:e=>{const{name:t}=e;return"a"===t&&(e.attribs.onClick=()=>f.focus()),e}}));const g=setInterval((()=>{(f.closed||300===m)&&(f.closed||f.close(),clearInterval(g),r(l?.error),i(c?.error),u.disabled=!1),fetch(zip_ai_react.ajax_url,{method:"POST",credentials:"same-origin",body:h}).then((e=>e.json())).then((e=>{if(e?.success&&e?.data?.is_authorized&&(f.close(),localStorage.setItem("zipAiAuthorizationStatus",!0),n(!0),r(l?.success),i(c?.success),u.disabled=!1,clearInterval(g),e.data?.team_name&&"string"==typeof e.data.team_name&&a(e.data.team_name),e.data?.credit_details&&e.data.credit_details?.threshold)){o(e.data.credit_details);const t=(e=>{switch(!0){case e?.percentage>=e?.threshold?.high:return"high";case e?.percentage>=e?.threshold?.medium:return"medium";default:return"low"}})(e.data.credit_details);s(t),zip_ai_react.credit_details=e.data.credit_details}})),m++}),500)})(e,{setIsAuthorized:n,setButtonLabel:p,setSubHeading:C,setUserTeamName:r,setCreditDetails:i,setCreditClass:a,buttonLabels:{progress:c,success:(0,F.__)("Get Ready!","ultimate-addons-for-gutenberg"),error:o},subHeadings:{progressWithLink:u,success:(0,F.__)("The possibilities are endless!","ultimate-addons-for-gutenberg"),error:(0,F.__)("Something went wrong, please try again.","ultimate-addons-for-gutenberg")}})},d),k&&(0,e.createElement)("a",{className:"zip-ai-sidebar__chat-window--placeholder-subheading zip-ai-sidebar__chat-window--placeholder-link",href:k,target:"_blank",rel:"noreferrer"},(0,F.__)("Learn more","ultimate-addons-for-gutenberg"))))},_i=t=>{const{generationRef:n,currentText:r,updateContent:i,closeModal:a,generating:o,setGenerating:s,aiResponseError:l,setAiResponseError:d,userInput:p,setUserInput:f,refreshFilters:h,setRefreshFilters:g,setValidForSaving:b}=t,{chatLog:C,setChatLog:_,footerRefHeight:E,scrollButtonRef:w}=(0,e.useContext)(ui),[x,k]=(0,e.useState)(null),[S,M]=(0,e.useState)(!1),[O,L]=(0,e.useState)(!1),z=(0,e.useRef)(null),T=()=>{if(!z?.current)return;const e=z.current,t=Math.ceil(e.scrollTop)+Math.ceil(e.clientHeight);L(!O&&t<e.scrollHeight)};if((0,e.useEffect)((()=>{if(!w?.current)return;const e=w.current;O?(e.classList.add("scroll-button-is-visible"),e.tabIndex="",e.setAttribute("aria-hidden","false")):(e.classList.remove("scroll-button-is-visible"),e.tabIndex=-1,e.setAttribute("aria-hidden","true"))}),[O]),(0,e.useEffect)((()=>{if(z?.current)return z.current.addEventListener("scroll",T),()=>{z?.current&&z?.current?.removeEventListener("scroll",T)}}),[z?.current]),(0,e.useEffect)((()=>{z?.current&&(z.current.scrollTop=z.current?.scrollHeight,T())}),[z?.current?.lastChild,C]),x){const e=C.length-1;if("ai"===C[e]?.from&&"loader"!==C?.type&&C[e].id===x){const t=C;t[e].type="regeneration",_(t)}}return(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window",ref:z},C?.length||l?(0,e.createElement)(e.Fragment,null,C?.length>0&&C.map(((t,c)=>(0,e.createElement)(gi,{key:c,generationRef:n,currentText:r,chatBubble:t,updateContent:i,closeModal:a,generating:o,setGenerating:s,regeneratingId:x,setRegeneratingId:k,aiResponseError:l,setAiResponseError:d,userInput:p,setUserInput:f,refreshFilters:h,setRefreshFilters:g,editCheck:S,setEditCheck:M,setValidForSaving:b}))),l&&(()=>{if("assemble-error"===l?.type)return(()=>{const{title:t,content:n,button_content:r}=l,i={type:"assemble-error",icon:"assistant",message:()=>(0,e.createElement)("div",{className:"zip-ai-error-bubble"},(0,e.createElement)("div",{className:"zip-ai-error-bubble__content"},t&&(0,e.createElement)("h4",{className:"zip-ai-error-bubble__title"},t),n&&(0,e.createElement)("p",{className:"zip-ai-error-bubble__text"},n),r&&(0,e.createElement)("div",{className:"zip-ai-error-bubble__buttons"},(0,e.createElement)("button",{className:"zip-ai-error-bubble__button",onClick:()=>{r?.url&&window.open(r?.url,"_blank")}},r?.text||""),(0,e.createElement)("button",{className:"zip-ai-error-bubble__button-dismiss",onClick:()=>{const e=C.filter((e=>"error"!==e.from));d(""),_(e)}},(0,F.__)("Dismiss","ultimate-addons-for-gutenberg")))))};return(0,e.createElement)(gi,{chatBubble:i})})();const t={type:"error",icon:"assistant",message:l,action:{execute:()=>{const e=C.filter((e=>"error"!==e.from));d(""),_(e)},label:(0,F.__)("Dismiss","ultimate-addons-for-gutenberg")}};return(0,e.createElement)(gi,{chatBubble:t})})()):(0,e.createElement)("div",{className:"zip-ai-sidebar__chat-window--placeholder"},y({width:32,height:32,color:"#5a03ef"}),(0,e.createElement)("h3",{className:"zip-ai-sidebar__chat-window--placeholder-heading"},(0,F.__)("Hi there! I'm here to assist you.","ultimate-addons-for-gutenberg")),(0,e.createElement)("p",{className:"zip-ai-sidebar__chat-window--placeholder-subheading"},(0,F.__)("Choose a prompt bellow or write on your own.","ultimate-addons-for-gutenberg"),(0,e.createElement)("br",null),(0,F.__)("Ask me about what you need.","ultimate-addons-for-gutenberg"))),(0,e.createElement)("button",{className:"zip-ai-sidebar__chat-window--scroll-button",ref:w,onClick:()=>{z?.current&&w?.current&&(w.current?.blur(),z.current.scrollTo({top:z.current.scrollHeight,behavior:"smooth"}))},style:{bottom:`${E}px`}},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M8 3.33398V12.6673",...v,strokeWidth:u,...n}),(0,e.createElement)("path",{d:"M12.6654 8L7.9987 12.6667L3.33203 8",...v,strokeWidth:u,...n}))}()))};function Ei(){return(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 200 200"},(0,e.createElement)("radialGradient",{id:"a4",cx:".66",fx:".66",cy:".3125",fy:".3125",gradientTransform:"scale(1.5)"},(0,e.createElement)("stop",{offset:"0",stopColor:"#6316FF"}),(0,e.createElement)("stop",{offset:".3",stopColor:"#6316FF",stopOpacity:".9"}),(0,e.createElement)("stop",{offset:".6",stopColor:"#6316FF",stopOpacity:".6"}),(0,e.createElement)("stop",{offset:".8",stopColor:"#6316FF",stopOpacity:".3"}),(0,e.createElement)("stop",{offset:"1",stopColor:"#6316FF",stopOpacity:"0"})),(0,e.createElement)("circle",{"transform-origin":"center",fill:"none",stroke:"url(#a4)",strokeWidth:"15",strokeLinecap:"round",strokeDasharray:"200 1000",strokeDashoffset:"0",cx:"100",cy:"100",r:"70"},(0,e.createElement)("animateTransform",{type:"rotate",attributeName:"transform",calcMode:"spline",dur:"2",values:"360;0",keyTimes:"0;1",keySplines:"0 0 1 1",repeatCount:"indefinite"})),(0,e.createElement)("circle",{"transform-origin":"center",fill:"none",opacity:".2",stroke:"#6316FF",strokeWidth:"15",strokeLinecap:"round",cx:"100",cy:"100",r:"70"}))}var wi=n=>{const{chatLogId:r,setIsOpen:i,setAdminIsOpen:a,isSidebar:o=!1,updateContent:s,currentText:l="",autoRun:u,setAutoRun:d}=n,p=(0,e.useRef)(null),f=(0,e.useRef)(null),h=(0,e.useRef)(null),g=(0,e.useRef)(null),b=JSON.parse(localStorage.getItem(`zipAiPreservedChatlog${r}`))||[],y=JSON.parse(localStorage.getItem("zipAiAuthorizationStatus"))||zip_ai_react?.is_authorized||!1,[C,_]=(0,e.useState)(b),[E,w]=(0,e.useState)(y),[x,k]=(0,e.useState)({enabled:!1,value:""}),[S,M]=(0,e.useState)(""),[O,L]=(0,e.useState)(""),[z,T]=(0,e.useState)(!1),[I,P]=(0,e.useState)(!1),[R,A]=(0,e.useState)(b.length>0),[N,V]=(0,e.useState)(null),[D,j]=(0,e.useState)(null),[B,W]=(0,e.useState)(0),[$,U]=(0,e.useState)(!1),[G,Z]=(0,e.useState)(null),[q,Y]=(0,e.useState)(zip_ai_react.credit_details),[X,K]=(0,e.useState)(!0),J=e=>{j(e),G&&(G?.blur(),V(null),Z(null))},Q=()=>j(null),ee=()=>{const e=new FormData;e.append("action","get_fresh_credit_details"),e.append("nonce",zip_ai_react.ajax_nonce),fetch(zip_ai_react.ajax_url,{method:"POST",credentials:"same-origin",body:e}).then((e=>e.json())).then((e=>{e?.success&&e?.data?.threshold&&(Y(e.data),K(!1),zip_ai_react.credit_details=e.data)})).catch((()=>{K(!1)}))};(0,e.useEffect)((()=>{E&&!I&&(K(!0),ee())}),[E,I]),(0,e.useEffect)((()=>{!I&&E&&ee()}),[I]),(0,e.useEffect)((()=>{const e=C?.length?{from:C[C.length-1]?.from,message:C[C.length-1]?.message}:null;l&&"content"!==e?.from&&l.trim()!==e?.message?.trim()&&(C.push({id:C?.length?C[C.length-1].id+1:0,from:"content",message:l}),_([...C]))}),[]),(0,e.useEffect)((()=>{u&&"not_set"!==u&&(()=>{if(!u||!d)return;const e=zip_ai_react?.zip_ai_assistant_options?.last_used?.changeTone||void 0,t=e=>{let{textCommand:t,oneClickCommand:n,useSystemMessage:r}=e;const i=pi(C,l);vi({textContent:i,textCommand:t,setGenerating:P,setText:L,setRefreshFilters:T,setAiResponseError:M,chatLog:C,setChatLog:_,oneClickCommand:n,setValidForSaving:A,useSystemMessage:r})};if("not_set"!==u&&!$){switch(u){case"fix_grammar":ti(t);break;case"rephrase":ai(t);break;case"make_shorter":ri(t);break;case"make_longer":ni(t);break;case"change_tone":ii(e,t)}d("not_set"),U(!0)}})()}),[u]),(0,e.useEffect)((()=>{h?.current&&h.current?.focus(),I&&Q()}),[h,I]);const te=()=>{p?.current.classList.add("close-it"),f?.current.classList.add("close-it"),setTimeout((()=>{if("content"===C[C.length-1]?.from&&(C.pop(),_([...C])),R){const e=(e=>e.map(((e,t)=>({...e,id:t}))))(C.slice(-20));localStorage.setItem(`zipAiPreservedChatlog${r}`,JSON.stringify(e)),_(e)}o&&(0,t.dispatch)("core/edit-post").closeGeneralSidebar("zip-ai-page-settings-panel"),i(!1),a&&a(!1)}),150)};return(0,e.createElement)(ui.Provider,{value:{chatLog:C,setChatLog:_,editMode:x,setEditMode:k,currentDropdown:N,setCurrentDropdown:V,hoveredButton:D,setHoveredButton:j,handleMouseEnter:J,handleMouseLeave:Q,footerRefHeight:B,setFooterRefHeight:W,scrollButtonRef:g,openedDropdownNode:G,setOpenDropdownNode:Z}},(0,e.createElement)("div",{className:"zip-ai-sidebar-overlay",ref:p,onClick:e=>{if(e.target===p?.current)return te()},onKeyDown:e=>{if("Escape"===e.key)return te()},role:"button",tabIndex:"0"},(0,e.createElement)("div",{className:"zip-ai-sidebar",ref:f},(0,e.createElement)("div",{className:"zip-ai-sidebar__header"},(0,e.createElement)("h2",{className:"zip-ai-sidebar__header--title"},(0,F.__)("AI Assistant","ultimate-addons-for-gutenberg")),(0,e.createElement)("button",{className:"zip-ai-sidebar__header--close",onClick:()=>te(),onMouseEnter:()=>J("sidebar-close-button"),onMouseLeave:Q},function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 16 16",fill:m,...t},(0,e.createElement)("path",{d:"M4 12L12 4M4 4L12 12",...v,...n}))}(),"sidebar-close-button"===D&&(0,e.createElement)(Zr,{details:{label:(0,F.__)("Close","ultimate-addons-for-gutenberg")}})),(0,e.createElement)("div",{className:"zip-ai-sidebar__header--user-wrapper"},(0,e.createElement)("div",{className:"zip-ai-sidebar__header--user-credit-wrapper"},E&&!X&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{className:"zip-ai-sidebar__header--user-credit-details"},(0,e.createElement)("b",{className:q?.percentage>90?"zip-ai-sidebar__header--user-credit-details-used-high":"zip-ai-sidebar__header--user-credit-details-used"},H(q?.used||0)),"/",(0,e.createElement)("span",{className:"zip-ai-sidebar__header--user-credit-details-total"},H(q?.total||0))),(0,e.createElement)("a",{className:"zip-ai-sidebar__header--user-popup-link",href:zip_ai_react?.credit_topup_url,target:"_blank",rel:"noreferrer noopener"},(0,F.__)("Get More Credits","ultimate-addons-for-gutenberg"),function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return(0,e.createElement)("svg",{width:c,height:c,viewBox:"0 0 12 12",fill:m,...t},(0,e.createElement)("path",{d:"M5 3H3C2.44772 3 2 3.44772 2 4V9C2 9.55228 2.44772 10 3 10H8C8.55228 10 9 9.55228 9 9V7M7 2H10M10 2V5M10 2L5 7",...v,...n}))}({width:12,height:12}))),E&&X&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("span",{className:"zip-ai-sidebar__header--user-credit-details-loading"},(0,e.createElement)("div",{className:"zip-ai-sidebar__header--user-credit-details-loading-spinner"},(0,e.createElement)(Ei,null))))))),E?(0,e.createElement)(e.Fragment,null,(0,e.createElement)(_i,{generationRef:h,currentText:l,updateContent:s,closeModal:te,generating:I,setGenerating:P,aiResponseError:S,setAiResponseError:M,userInput:O,setUserInput:L,refreshFilters:z,setRefreshFilters:T,setValidForSaving:A}),!(l||C?.length)&&(0,e.createElement)(oi,{currentText:l,generationRef:h,setUserInput:L,refreshFilters:z,setRefreshFilters:T,generating:I,setGenerating:P,setAiResponseError:M,setValidForSaving:A}),(0,e.createElement)(yi,{chatLogId:r,isAuthorized:E,generationRef:h,currentText:l,userInput:O,setUserInput:L,setRefreshFilters:T,generating:I,setGenerating:P,setAiResponseError:M,validForSaving:R,setValidForSaving:A})):(0,e.createElement)(Ci,{setIsAuthorized:w,setCreditDetails:Y}))))};const xi=document.querySelector("#zip-ai-sidebar"),ki=document.querySelector("#zip-ai-sidebar-admin-trigger"),Si=document.querySelector("#wp-admin-bar-zip-ai-assistant"),Mi=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:4294967295;return Math.floor(Math.random()*(t-e+1))+e}(),Oi={fill:"#000"},Li=t=>{const{onChange:n,value:r={text:""},isRichText:o=!0,isAdmin:s=!1,setAdminIsOpen:l=null}=t,[c,u]=(0,e.useState)(!1),[d,p]=(0,e.useState)(!1),[f,h]=(0,e.useState)("not_set"),m=(0,e.useRef)(null),[g,v]=(0,e.useState)(!1);(0,e.useEffect)((()=>{o&&!s||y()}),[]),(0,e.useEffect)((()=>{if(c&&(document.body.style.overflow="hidden"),o&&!s&&!c&&d){const e={...r};n(e),p(!1)}const t=setTimeout((()=>{var t;c&&(m.current=null!==(t=m.current)&&void 0!==t?t:(0,e.createRoot)(s?ki:xi),m.current?.render((0,e.createElement)(wi,{chatLogId:Mi,setIsOpen:u,setAdminIsOpen:l,isSidebar:!o&&!s,updateContent:o&&!s?b:null,currentText:_(r.text),autoRun:f,setAutoRun:h})))}));return()=>{document.body.style.overflow="",clearTimeout(t);const e=m.current;m.current=void 0,setTimeout((()=>{e&&"function"==typeof e?.unmount&&e?.unmount()}))}}),[c]);const b=e=>{let t={...r};t=(0,D.replace)(r,r.text,e),t.start=0,t.end=0,n(t)},y=e=>{u(!0),""!==_(r.text)&&e&&"open"!==e&&"not_set"!==e&&h(e),v(!1)},_=e=>{if(s&&!o)return document.getSelection().toString().trim().replace(/\n$/,"")||"";if(!o)return"";if(["Your Attractive Heading","Engage Your Visitors"].includes(e))return"";const t={...r};return 0===t.start&&t.end===t.text.length||d||(n(t),p(!0)),e},w=zip_ai_react?.zip_ai_assistant_options?.last_used?.changeTone||void 0;return o?(0,e.createElement)(i.BlockControls,null,(0,e.createElement)(a.Toolbar,{className:"zip-ai-toolbar",label:"Zip AI"},(0,e.createElement)(a.ToolbarButton,{className:"zip-ai-toolbar-button",onClick:()=>v(!g),icon:C(),label:(0,F.__)("AI Assistant","ultimate-addons-for-gutenberg")}),g&&(0,e.createElement)((()=>(0,e.createElement)(e.Fragment,null,(0,e.createElement)(a.Popover,{position:"bottom center",focusOnMount:"container",className:"zip-ai-popover"},(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:E(Oi),onClick:()=>y("fix_grammar")},(0,F.__)("Fix Grammar","ultimate-addons-for-gutenberg")),(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:O(Oi),onClick:()=>y("rephrase")},(0,F.__)("Rephrase","ultimate-addons-for-gutenberg")),(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:T(Oi),onClick:()=>y("make_shorter")},(0,F.__)("Make Shorter","ultimate-addons-for-gutenberg")),(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:z(Oi),onClick:()=>y("make_longer")},(0,F.__)("Make Longer","ultimate-addons-for-gutenberg")),void 0!==w&&(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:R(Oi),onClick:()=>y("change_tone")},(0,F.sprintf)(/* translators: %s: lastUsedTone label */
(0,F.__)("Change Tone to %s","ultimate-addons-for-gutenberg"),w.label)),(0,e.createElement)(a.MenuItem,{iconPosition:"left",icon:M(Oi),onClick:()=>y("open")},(0,F.__)("Something Else","ultimate-addons-for-gutenberg"))))),null))):null},zi=()=>{const t="widgets"!==zip_ai_react.is_widgets_page?window?.wp?.editPost:null;if(!t||!t?.PluginSidebar||!t?.PluginSidebarMoreMenuItem)return null;const n=t.PluginSidebar,r=t.PluginSidebarMoreMenuItem;return"function"!=typeof r||"function"!=typeof n?null:(0,e.createElement)(e.Fragment,null,(0,e.createElement)(r,{target:"zip-ai-page-settings-panel",icon:y()},(0,F.__)("AI Assistant","ultimate-addons-for-gutenberg")),(0,e.createElement)(n,{isPinnable:!0,icon:y(),name:"zip-ai-page-settings-panel",title:(0,F.__)("AI Assistant","ultimate-addons-for-gutenberg"),className:"zip-ai-sidebar"},(0,e.createElement)(Li,{isRichText:!1})))},Ti=()=>{const[t,n]=(0,e.useState)(!1);return(0,e.useEffect)((()=>{Si.addEventListener("click",(e=>{e.preventDefault(),n(!0)}))}),[]),t?(0,e.createElement)(Li,{isRichText:!1,isAdmin:!0,setAdminIsOpen:n}):null};if(zip_ai_react?.is_ai_assistant_enabled){zip_ai_react?.is_customize_preview||(0,D.registerFormatType)("zipai/chat",{tagName:"span",className:"zip-ai-highlighted",edit:Li,title:(0,F.__)("AI Assistant","ultimate-addons-for-gutenberg")}),(0,t.select)("core/editor")&&(0,r.registerPlugin)("zip-ai-page-level-settings",{render:zi}),ki&&Si&&(0,e.createRoot)(ki).render((0,e.createElement)(Ti,null));const n=()=>{localStorage.removeItem(`zipAiPreservedChatlog${Mi}`)};window.addEventListener("beforeunload",n)}}()}();PK�][�
s�ΘΘFultimate-addons-for-gutenberg/lib/zip-ai/sidebar/build/sidebar-app.cssnu�[���@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Courier+Prime:wght@400&display=swap);
.zip-ai-toolbar{border:0;border-radius:0;border-right:1px solid #1e1e1e}.zip-ai-toolbar .components-toolbar-button{border-radius:0}.zip-ai-toolbar .components-toolbar-button:focus::before{box-shadow:none;outline:none}.zip-ai-toolbar .components-toolbar-button svg{width:72px;stroke:currentColor;stroke-width:1.4;fill:none}.zip-ai-toolbar .components-toolbar-button.zip-ai-toolbar-button.is-compact.has-icon:not(.has-text){width:unset}.interface-interface-skeleton__sidebar:has(>div>div.zip-ai-sidebar){display:none}.zip-ai-popover[data-wp-component=Popover]{z-index:100000000;margin-top:1px}.zip-ai-popover .components-popover__content{border:1px solid #1e1e1e;box-shadow:none;width:240px}.zip-ai-popover .components-popover__content .components-button{padding:10px}.zip-ai-popover .components-popover__content .components-button:first-child{margin-top:10px}.zip-ai-popover .components-popover__content .components-button:last-child{margin-bottom:10px}
@keyframes fadeIntoView{0%{opacity:0}100%{opacity:1}}@keyframes fadeOutOfView{0%{opacity:1}100%{opacity:0}}@keyframes slideInFromRight{0%{right:-450px}100%{right:0}}@keyframes slideOutToRight{0%{right:0}100%{right:-450px}}@keyframes chatBubble{0%{opacity:0;top:25px}90%{opacity:1;top:-5px}100%{top:0}}@keyframes jump{0%{top:0;opacity:.5;background-color:#aaa}40%{top:0;opacity:.5;background-color:#aaa}50%{top:-4px;opacity:1;background-color:#5a03ef}55%{background-color:#5a03ef}60%{top:2px;opacity:.5;background-color:#aaa}65%{top:0;opacity:.5;background-color:#aaa}100%{top:0;opacity:.5;background-color:#aaa}}@keyframes blink{0%{opacity:1}49%{opacity:1}50%{opacity:0}99%{opacity:0}100%{opacity:1}}@keyframes slideInActions{0%{right:-8px;opacity:0}100%{right:0;opacity:1}}@keyframes openUserIconPopup{0%{opacity:0;top:-16px}90%{top:4px}100%{opacity:1;top:0}}@keyframes closeUserIconPopup{0%{opacity:1;top:0}90%{top:-16px}100%{opacity:0;top:-16px}}@keyframes translucentToOpaque{0%{opacity:.5}100%{opacity:1}}.zip-ai-sidebar{cursor:auto;position:absolute;top:0;right:0;display:flex;flex-direction:column;width:450px;height:100vh;border-radius:0;box-shadow:-16px 0 80px -24px rgba(0,0,0,.16);overflow:visible;animation:slideInFromRight 100ms 50ms 1 ease-in-out both;color:#50575e;background:#fff}.zip-ai-sidebar.close-it{animation:slideOutToRight 150ms 0s 1 ease-in-out forwards}.zip-ai-sidebar,.zip-ai-sidebar *:not(.dashicons):not(code){font-family:Inter,sans-serif;box-sizing:border-box}.zip-ai-sidebar-overlay{cursor:pointer;position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(17,24,39,.05);z-index:9999999;animation:fadeIntoView 150ms 0s 1 ease-in-out none}.zip-ai-sidebar-overlay.close-it{animation:fadeOutOfView 100ms 50ms 1 ease-in-out forwards}.zip-ai-sidebar__header{display:flex;align-items:center;justify-content:space-between;position:absolute;top:0;z-index:10;width:100%;height:48px;padding:12px;background-color:rgba(255,255,255,.75);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);padding-left:40px}.zip-ai-sidebar__header h2.zip-ai-sidebar__header--title{padding:0;margin:0;font-size:1.125rem;line-height:1.75rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#1e293b;background:rgba(0,0,0,0)}.zip-ai-sidebar__header button.zip-ai-sidebar__header--close{position:absolute;top:0;left:0;height:48px;display:flex;align-items:center;justify-content:center;aspect-ratio:1/1;cursor:pointer;padding:0;margin:0;outline:0;box-shadow:none;border:none;color:#1e293b;background:rgba(0,0,0,0)}.zip-ai-sidebar__header button.zip-ai-sidebar__header--close:hover,.zip-ai-sidebar__header button.zip-ai-sidebar__header--close:focus-visible{outline:0;box-shadow:none;border:none;color:#50575e;background:rgba(0,0,0,0)}.zip-ai-sidebar__header button.zip-ai-sidebar__header--close .dashicons{width:1.25rem;height:1.25rem;font-size:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;line-height:1.25rem}.zip-ai-sidebar__header--user-wrapper{position:relative;top:0;right:0;height:48px;padding:12px;display:flex;gap:10px}.zip-ai-sidebar__header--user-wrapper button.zip-ai-sidebar__header--user-icon{display:flex;align-items:center;justify-content:center;height:100%;aspect-ratio:1/1;border-radius:9999px;cursor:pointer;padding:0;margin:0;outline:0;box-shadow:none;border:none;font-size:.625rem;line-height:.75rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#fff;background:#64748b;transition:transform 150ms 0s ease-in-out}.zip-ai-sidebar__header--user-wrapper button.zip-ai-sidebar__header--user-icon:hover,.zip-ai-sidebar__header--user-wrapper button.zip-ai-sidebar__header--user-icon:active,.zip-ai-sidebar__header--user-wrapper button.zip-ai-sidebar__header--user-icon:focus-visible{transform:scale(1.1);outline:0;box-shadow:none;border:none;color:#fff;background:#64748b}.zip-ai-sidebar__header--user-credit-wrapper{display:flex;flex-direction:column;right:4px;position:relative;gap:2px}.zip-ai-sidebar__header--user-credit-details{text-align:end;font-size:13px}.zip-ai-sidebar__header--user-credit-details-used{font-weight:700;font-size:15px;line-height:14px;text-align:right;color:#030712}.zip-ai-sidebar__header--user-credit-details-used-high{font-weight:700;font-size:14px;line-height:14px;text-align:right;color:#ff4545}.zip-ai-sidebar__header--user-credit-details-total{font-weight:400;font-size:13px;line-height:14px;text-align:right;color:#50575e}.zip-ai-sidebar__header--user-credit-details-loading-spinner{width:20px;height:20px}.zip-ai-sidebar__header--user-credit{display:flex;align-items:center;gap:8px;font-size:14px;color:#50575e}.zip-ai-sidebar__header--user-popup{position:absolute;top:100%;right:0;width:100%;padding:8px 16px 16px;transition:max-width 150ms 0s ease-in-out}.zip-ai-sidebar__header--user-popup-header{width:100%;display:flex;align-items:flex-start;justify-content:space-between}.zip-ai-sidebar__header--user-popup-content{position:relative;background-color:#fff;padding:16px;width:100%;border-radius:6px;box-shadow:0 8px 48px -18px rgba(0,0,0,.25);animation:openUserIconPopup 100ms ease-out 0ms 1 forwards}.zip-ai-sidebar__header--user-popup-content-closed{animation:closeUserIconPopup 100ms ease-out 0ms 1 forwards}.zip-ai-sidebar__header--user-popup-title{padding:0;margin:0;font-size:1.125rem;line-height:1.75rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#1e293b;background:rgba(0,0,0,0)}.zip-ai-sidebar__header--user-popup-details{padding:0;margin:0;color:#50575e;background:rgba(0,0,0,0);font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__header--user-popup-link{text-decoration:none;padding:4px;display:flex;align-items:center;gap:4px;padding:0;margin:0;color:#5a03ef;background:rgba(0,0,0,0);font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__header--user-popup-link:hover,.zip-ai-sidebar__header--user-popup-link:focus,.zip-ai-sidebar__header--user-popup-link:focus-visible{color:#4302b3;background:rgba(0,0,0,0)}.zip-ai-sidebar__header--user-popup-inline-link{text-decoration:none;padding:0;margin:0;color:#5a03ef;background:rgba(0,0,0,0)}.zip-ai-sidebar__header--user-popup-inline-link:hover,.zip-ai-sidebar__header--user-popup-inline-link:focus,.zip-ai-sidebar__header--user-popup-inline-link:focus-visible{color:#4302b3;background:rgba(0,0,0,0)}.zip-ai-sidebar__header--user-popup-button{cursor:pointer;width:100%;display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 20px;border-radius:4px;border:1px solid #5a03ef;outline:0;box-shadow:none;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#fff;background:#5a03ef;transition:background-color 100ms 0s ease-in-out,opacity 100ms 0s ease-in-out}.zip-ai-sidebar__header--user-popup-button:hover,.zip-ai-sidebar__header--user-popup-button:focus-visible{border:1px solid #5a03ef;outline:0;box-shadow:none;color:#fff;background:#4302b3}.zip-ai-sidebar__header--user-popup-button:disabled{opacity:.5;cursor:not-allowed}.zip-ai-sidebar__header .components-modal__icon-container{display:flex;align-items:center;margin-top:0;margin-right:12px}.zip-ai-sidebar__header .components-modal__icon-container svg{height:32px}.zip-ai-sidebar__notification{position:relative;height:40px;max-height:0;overflow:hidden;box-shadow:0 1px #e6e7e9;color:#fff;background:#ef4444;transition:max-height 250ms 0s ease-in-out}.zip-ai-sidebar__notification--visible{max-height:40px}.zip-ai-sidebar__notification--content{position:absolute;bottom:0;height:40px;width:100%;padding:0 20px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;letter-spacing:.1px;font-size:.875rem;line-height:1.25rem;font-weight:500;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__notification .components-button{width:24px;height:24px;padding:4px;position:absolute;top:8px;right:8px;outline:0;box-shadow:none;border:none}.zip-ai-sidebar__notification .components-button svg{width:20px;height:20px;color:#fff;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window{position:relative;flex:1;display:flex;flex-direction:column;justify-content:flex-start;align-items:center;padding:60px 16px 16px;gap:8px;overflow-y:scroll;z-index:9;color:#50575e;background:#fff;scrollbar-width:none}.zip-ai-sidebar__chat-window::-webkit-scrollbar{width:0;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window:focus-visible{outline:0;box-shadow:none;border-color:#b0b9c6}.zip-ai-sidebar__chat-window::placeholder{color:#aaa;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window--placeholder{flex:1;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:32px;gap:16px;width:100%}.zip-ai-sidebar__chat-window--placeholder-logos{display:flex;justify-content:center;align-items:center;gap:12px}.zip-ai-sidebar__chat-window--placeholder-logos>:first-child{width:32px;height:32px}.zip-ai-sidebar__chat-window--placeholder-grid{display:grid;grid-template-columns:repeat(3, 1fr);grid-auto-rows:1fr;gap:24px;padding:8px 0;width:100%}.zip-ai-sidebar__chat-window--placeholder-grid-item{display:flex;flex-direction:column;justify-content:space-between;align-items:center;gap:8px;width:100%;height:100%}.zip-ai-sidebar__chat-window--placeholder-grid-item-heading{width:100%;text-align:center;font-size:.75rem;line-height:1rem;font-weight:500;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-window--placeholder-button{cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 20px;border-radius:4px;border:1px solid #5a03ef;outline:0;box-shadow:none;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#fff;background:#5a03ef;transition:background-color 100ms 0s ease-in-out,opacity 100ms 0s ease-in-out}.zip-ai-sidebar__chat-window--placeholder-button:hover,.zip-ai-sidebar__chat-window--placeholder-button:focus-visible{border:1px solid #5a03ef;outline:0;box-shadow:none;color:#fff;background:#4302b3}.zip-ai-sidebar__chat-window--placeholder-button:disabled{opacity:.5;cursor:not-allowed}.zip-ai-sidebar__chat-window--placeholder-heading{text-align:center;padding:0;margin:0;color:#1e293b;background:rgba(0,0,0,0);font-size:1rem;line-height:1.5rem;font-weight:700;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-window--placeholder-subheading{text-align:center;padding:0;margin:0;color:#50575e;background:rgba(0,0,0,0);font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-window--placeholder-padded-content{margin:0;padding:4px;text-align:center;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-window--placeholder-link{text-decoration:none;border-bottom:1px solid #b0b9c6;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#959aa3;background:rgba(0,0,0,0);transition:border-bottom 150ms 0s ease-in-out}.zip-ai-sidebar__chat-window--placeholder-link:hover,.zip-ai-sidebar__chat-window--placeholder-link:focus-visible{outline:0;border:0;box-shadow:none;border-bottom:1px solid #5a03ef;color:#959aa3;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window--footer{width:100%;text-align:center;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#aaa;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window--footer-inline-action{text-decoration:underline;cursor:pointer;-webkit-appearance:none;appearance:none;outline:0;box-shadow:none;border:none;padding:0;margin:0;color:inherit;background:rgba(0,0,0,0);transition:color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-window--footer-inline-action:hover,.zip-ai-sidebar__chat-window--footer-inline-action:focus-visible{outline:0;box-shadow:none;border:none;color:#50575e;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-window--scroll-button{position:fixed;cursor:pointer;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:32px;height:32px;margin:0;padding:8px;border-radius:4px;border:1px solid #e6e7e9;outline:0;box-shadow:none;transform:translateY(0);opacity:0;pointer-events:none;color:#50575e;background:#fff;transition:transform 150ms 0s ease-in-out,opacity 150ms 0s ease-in-out,color 150ms 0s ease-in-out,background-color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-window--scroll-button.scroll-button-is-visible{transform:translateY(-10px);opacity:1;pointer-events:initial}.zip-ai-sidebar__chat-window--scroll-button.scroll-button-is-visible:hover,.zip-ai-sidebar__chat-window--scroll-button.scroll-button-is-visible:focus-visible{outline:0;box-shadow:none;border:none;color:#fff;background:#5a03ef}.zip-ai-sidebar__chat-bubble{position:relative;width:100%;display:flex;animation:chatBubble 150ms 0s 1 ease none}.zip-ai-sidebar__chat-bubble:hover .zip-ai-sidebar__chat-bubble--interaction-on-hover{opacity:1}.zip-ai-sidebar__chat-bubble:nth-last-child(2) .zip-ai-sidebar__chat-bubble--message{border-radius:22px 4px 22px 22px !important}.zip-ai-sidebar__chat-bubble--from-human,.zip-ai-sidebar__chat-bubble--from-content{flex-direction:row-reverse;justify-content:flex-start;align-items:center;gap:8px}.zip-ai-sidebar__chat-bubble--from-human.not-last-message .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--from-human.not-last-message .zip-ai-sidebar__chat-editor,.zip-ai-sidebar__chat-bubble--from-content.not-last-message .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--from-content.not-last-message .zip-ai-sidebar__chat-editor{border-radius:22px 4px 4px 22px}.zip-ai-sidebar__chat-bubble--from-human .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--from-human .zip-ai-sidebar__chat-editor,.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-editor{background-color:#f2f5f7;border-radius:22px 4px 22px 22px;padding:12px 16px}.zip-ai-sidebar__chat-bubble--from-human .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-bubble--message{max-width:80%}.zip-ai-sidebar__chat-bubble--from-human .zip-ai-sidebar__chat-editor,.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-editor{width:100%}.zip-ai-sidebar__chat-bubble--from-human .zip-ai-sidebar__chat-bubble--interaction:first-child .zip-ai-sidebar__chat-bubble--shortcut:first-child .zip-ai-sidebar__tooltip.zip-ai-sidebar__tooltip-positioned--bottom,.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-bubble--interaction:first-child .zip-ai-sidebar__chat-bubble--shortcut:first-child .zip-ai-sidebar__tooltip.zip-ai-sidebar__tooltip-positioned--bottom{transform:translate(calc(50% - 1rem), calc(1rem + 12px))}.zip-ai-sidebar__chat-bubble--from-content{flex-direction:column;align-items:flex-end}.zip-ai-sidebar__chat-bubble--from-content .zip-ai-sidebar__chat-bubble--interaction:last-child .zip-ai-sidebar__chat-bubble--shortcut:last-child .zip-ai-sidebar__tooltip.zip-ai-sidebar__tooltip-positioned--bottom{transform:translate(calc(1rem - 50%), calc(1rem + 12px))}.zip-ai-sidebar__chat-bubble--from-assistant{flex-direction:column;background:#fff;margin-top:8px;gap:6px}.zip-ai-sidebar__chat-bubble--from-assistant.animated-chat-bubble{animation:chatBubble 150ms 150ms 1 ease both}.zip-ai-sidebar__chat-bubble--from-assistant .zip-ai-sidebar__chat-bubble--icon{background-color:#5a03ef;border-radius:100%}.zip-ai-sidebar__chat-bubble--from-assistant .zip-ai-sidebar__chat-bubble--message{position:relative;animation:chatBubble 150ms 0ms 1 ease both}.zip-ai-sidebar__chat-bubble--from-assistant .zip-ai-sidebar__chat-bubble--interaction:first-child .zip-ai-sidebar__chat-bubble--shortcut:first-child .zip-ai-sidebar__tooltip.zip-ai-sidebar__tooltip-positioned--top{transform:translate(calc(50% - 1rem), calc(0px - 1rem - 12px))}.zip-ai-sidebar__chat-bubble--from-assistant .zip-ai-sidebar__chat-bubble--interaction:last-child .zip-ai-sidebar__chat-bubble--shortcut:last-child .zip-ai-sidebar__tooltip.zip-ai-sidebar__tooltip-positioned--top{transform:translate(calc(1rem - 50%), calc(0px - 1rem - 12px))}.zip-ai-sidebar__chat-bubble--footer{display:flex;justify-content:space-between}.zip-ai-sidebar__chat-bubble--slidein-actions{position:relative;display:flex;align-items:center;justify-content:space-between;animation:slideInActions 150ms 150ms 1 ease-in-out both}.zip-ai-sidebar__chat-bubble--wrapper{width:100%;display:flex;align-items:center;justify-content:space-between}.zip-ai-sidebar__chat-bubble--user{flex:1;padding:0;margin:0;font-size:.875rem;line-height:1.25rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#50575e;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--interaction{display:flex;justify-content:flex-end;gap:8px;border-radius:4px}.zip-ai-sidebar__chat-bubble--interaction-on-hover{opacity:0;transition:opacity 150ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--interaction-on-hover:focus-within{opacity:1}.zip-ai-sidebar__chat-bubble--interaction-divider{width:1px;background-color:#e6e7e9}.zip-ai-sidebar__chat-bubble--interaction-dropdown{color:#64748b;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--interaction-dropdown-disabled{cursor:progress}.zip-ai-sidebar__chat-bubble--interaction-dropdown-title{padding:6px 8px;font-size:.75rem;line-height:1rem;font-weight:600;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--interaction-dropdown-search{padding:6px 8px;margin:0 4px;border-radius:4px;outline:1px solid #64748b;outline-offset:-1px;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--interaction-dropdown-search-value{color:#50575e;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--interaction-dropdown-search-cursor{width:0;border-right:1px solid #64748b;animation:blink 1s infinite}.zip-ai-sidebar__chat-bubble--interaction-dropdown-search-placeholder{color:#aaa;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--interaction button{width:24px;height:24px;margin:0;padding:4px;cursor:pointer;outline:0;box-shadow:none;border:none;color:#64748b;background:rgba(0,0,0,0);transition:background-color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--interaction button.zip-ai-sidebar__chat-bubble--shortcut-no-icon{width:auto;padding:4px 8px;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--interaction button svg{width:18px;height:18px;color:inherit;background:rgba(0,0,0,0);transition:color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--interaction button:hover,.zip-ai-sidebar__chat-bubble--interaction button:focus-visible{background-color:#f2f5f7;outline:0;box-shadow:none;border:none}.zip-ai-sidebar__chat-bubble--interaction button:disabled{cursor:progress}.zip-ai-sidebar__chat-bubble--interaction button:disabled svg{color:#e6e7e9 !important;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--message{white-space:pre-wrap;overflow-wrap:anywhere;padding:0;margin:0;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#50575e;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-inline{vertical-align:middle;display:inline-flex;align-items:center;margin:0;padding:2px 4px;border-radius:4px;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#fff;background:#374151}.zip-ai-sidebar__chat-bubble--code-inline code{font-family:"Courier Prime","Courier New",Courier,monospace;padding:0;margin:0;font-size:.8rem;font-weight:400;text-transform:none;letter-spacing:normal;line-height:.75rem;color:#fff;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-block{white-space:pre-wrap;padding:0;margin:0;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-sidebar__chat-bubble--code-block-title{display:flex;align-items:center;justify-content:space-between;margin:0;padding:8px 12px;border-radius:6px 6px 0 0;font-size:.875rem;line-height:1.25rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#fff;background:#1f2937}.zip-ai-sidebar__chat-bubble--code-block-actions{flex:1;display:flex;gap:8px;align-items:center;justify-content:flex-end}.zip-ai-sidebar__chat-bubble--code-block-button{width:20px;aspect-ratio:1/1;margin:0;padding:2px;cursor:pointer;outline:0;box-shadow:none;border:none;color:#fff;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-block-button svg{width:14px;aspect-ratio:1/1;transition:filter 150ms 0s ease-in-out;color:inherit;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-block-button:hover,.zip-ai-sidebar__chat-bubble--code-block-button:focus-visible{outline:0;box-shadow:none;border:none;color:#fff;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-block-button:hover svg,.zip-ai-sidebar__chat-bubble--code-block-button:focus-visible svg{filter:drop-shadow(0 0 1px #fff)}.zip-ai-sidebar__chat-bubble--code-block-button:disabled{cursor:progress}.zip-ai-sidebar__chat-bubble--code-block-button:disabled svg{color:#e6e7e9 !important;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--code-block-button:active,.zip-ai-sidebar__chat-bubble--code-block-button:focus{background:rgba(0,0,0,0);outline:0;box-shadow:none;border:none}.zip-ai-sidebar__chat-bubble--code-block-content{margin:0;padding:12px;border-radius:0 0 6px 6px;overflow-x:auto;color:#fff;background:#374151}.zip-ai-sidebar__chat-bubble--code-block-content code{font-family:"Courier Prime","Courier New",Courier,monospace;padding:0;margin:0;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#fff;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--action{cursor:pointer;margin:0;padding:8px 14px;border:1px solid #e6e7e9;border-radius:9999px;outline:0;box-shadow:none;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#50575e;background:#f8fafc;transition:color 100ms 0s ease-in-out,background-color 100ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--action:hover,.zip-ai-sidebar__chat-bubble--action:focus-visible{border:1px solid #e6e7e9;outline:0;box-shadow:none;color:#fff;background:#5a03ef}.zip-ai-sidebar__chat-bubble--shortcut{display:flex;flex-direction:row;justify-content:center;align-items:center}.zip-ai-sidebar__chat-bubble--pagination{display:flex;justify-content:center;align-items:center}.zip-ai-sidebar__chat-bubble--pagination button{cursor:pointer;display:flex;align-items:center;justify-content:center;width:24px;aspect-ratio:1/1;padding:0;margin:0;outline:0;box-shadow:none;border:none;color:#aaa;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--pagination button svg{width:16px;aspect-ratio:1/1;color:inherit;background:rgba(0,0,0,0);transition:color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--pagination button:hover,.zip-ai-sidebar__chat-bubble--pagination button:focus-visible{color:#50575e;outline:0;box-shadow:none;border:none}.zip-ai-sidebar__chat-bubble--pagination button:disabled{cursor:not-allowed;color:#e6e7e9 !important;background:rgba(0,0,0,0) !important}.zip-ai-sidebar__chat-bubble--pagination span{min-width:24px;display:flex;align-items:center;justify-content:center;padding:0;margin:0;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#50575e;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--has-icon{flex-direction:row;gap:12px}.zip-ai-sidebar__chat-bubble--has-icon .zip-ai-sidebar__chat-bubble--icon-content{padding-top:.125rem}.zip-ai-sidebar__chat-bubble--has-icon .zip-ai-sidebar__chat-loader{height:1.5rem}.zip-ai-sidebar__chat-bubble--icon{display:flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem}.zip-ai-sidebar__chat-bubble--icon-content{flex:1;display:flex;flex-direction:column;gap:12px}.zip-ai-sidebar__chat-bubble--type-error .zip-ai-sidebar__chat-bubble--message,.zip-ai-sidebar__chat-bubble--type-assemble-error .zip-ai-sidebar__chat-bubble--message{color:#b91c1c;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--type-error .zip-ai-sidebar__chat-bubble--action,.zip-ai-sidebar__chat-bubble--type-assemble-error .zip-ai-sidebar__chat-bubble--action{padding:0;margin:0;outline:0;box-shadow:none;border:none;color:#ef4444;background:rgba(0,0,0,0);font-size:.875rem;line-height:1.25rem;font-weight:600;text-transform:none;letter-spacing:normal;transition:color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-bubble--type-error .zip-ai-sidebar__chat-bubble--action:hover,.zip-ai-sidebar__chat-bubble--type-error .zip-ai-sidebar__chat-bubble--action:focus-visible,.zip-ai-sidebar__chat-bubble--type-assemble-error .zip-ai-sidebar__chat-bubble--action:hover,.zip-ai-sidebar__chat-bubble--type-assemble-error .zip-ai-sidebar__chat-bubble--action:focus-visible{outline:0;box-shadow:none;border:none;color:#b91c1c;background:rgba(0,0,0,0)}.zip-ai-sidebar__chat-bubble--type-error .zip-ai-sidebar__chat-bubble--icon,.zip-ai-sidebar__chat-bubble--type-assemble-error .zip-ai-sidebar__chat-bubble--icon{background-color:#ef4444;border-radius:100%}.zip-ai-sidebar__chat-editor{display:flex;flex-direction:column;gap:8px}.zip-ai-sidebar__chat-editor textarea.zip-ai-sidebar__chat-editor--input{padding:0;resize:none;overflow-y:auto;height:1.25rem;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#50575e;background:rgba(0,0,0,0);outline:0;box-shadow:none;border:none;transition:height 0s 0s ease-in-out;scrollbar-width:none}.zip-ai-sidebar__chat-editor textarea.zip-ai-sidebar__chat-editor--input::-webkit-scrollbar{width:0}.zip-ai-sidebar__chat-editor textarea.zip-ai-sidebar__chat-editor--input:active,.zip-ai-sidebar__chat-editor textarea.zip-ai-sidebar__chat-editor--input:focus,.zip-ai-sidebar__chat-editor textarea.zip-ai-sidebar__chat-editor--input:focus-visible{outline:0;box-shadow:none;border:none}.zip-ai-sidebar__chat-editor--footer{display:flex;gap:16px}.zip-ai-sidebar__chat-editor--info{display:flex;align-items:flex-start;justify-content:flex-start;gap:6px;margin:0;padding:8px;border:1px solid #f59e0b;border-radius:8px;outline:0;box-shadow:none;font-size:.625rem;line-height:.75rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#b45309;background:#fffbeb}.zip-ai-sidebar__chat-editor--actions{display:flex;justify-content:flex-start;align-items:center;gap:8px}.zip-ai-sidebar__chat-editor--actions button{cursor:pointer;margin:0;padding:4px 12px;border-radius:9999px;outline:0;box-shadow:none;border:none;font-size:.875rem;line-height:1.25rem;font-weight:500;text-transform:none;letter-spacing:normal;color:#50575e;background:#fff;transition:color 150ms 0s ease-in-out,background-color 150ms 0s ease-in-out}.zip-ai-sidebar__chat-editor--actions button:hover,.zip-ai-sidebar__chat-editor--actions button:focus,.zip-ai-sidebar__chat-editor--actions button:focus-visible{outline:0;box-shadow:none;border:none;color:#50575e;background:#e6e7e9}.zip-ai-sidebar__chat-editor--actions button.zip-ai-sidebar__chat-editor--action-primary{color:#fff;background:#50575e}.zip-ai-sidebar__chat-editor--actions button.zip-ai-sidebar__chat-editor--action-primary:hover,.zip-ai-sidebar__chat-editor--actions button.zip-ai-sidebar__chat-editor--action-primary:focus,.zip-ai-sidebar__chat-editor--actions button.zip-ai-sidebar__chat-editor--action-primary:focus-visible{color:#fff;background:#1e293b}.zip-ai-sidebar__chat-editor--actions button.zip-ai-sidebar__chat-editor--action-primary:disabled{cursor:not-allowed;color:#f2f5f7 !important;background:#64748b !important}.zip-ai-sidebar__chat-loader{position:relative;top:-2px;display:flex;align-items:center;gap:6px;animation:chatBubble 150ms 150ms 1 ease none}.zip-ai-sidebar__chat-loader--dot{position:relative;width:6px;height:6px;border-radius:9999px;background-color:#aaa;opacity:.5;animation:jump 1500ms infinite ease-out both}.zip-ai-sidebar__chat-loader--dot.dot-2{animation-delay:150ms}.zip-ai-sidebar__chat-loader--dot.dot-3{animation-delay:300ms}.zip-ai-sidebar__input-prompt{width:100%;background-color:#fff;display:flex;flex-direction:column;padding:16px 16px 0;gap:8px;position:relative;z-index:8}.zip-ai-sidebar__input-prompt--textarea-wrapper{display:flex}.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text{position:relative;width:100%;top:0;padding:12px;border:none;border-bottom-width:56px;border-bottom-style:solid;border-bottom-color:#fff;outline:2px solid #e6e7e9;outline-offset:-2px;resize:none;overflow-y:auto;border-radius:6px;text-align:left;max-height:calc(6.25rem + 24px + 56px);color:#50575e;background:#fff;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;transition:top 100ms 0s ease-in-out,color 100ms 0s ease-in-out,outline 100ms 0s ease-in-out,box-shadow 100ms 0s ease-in-out;scrollbar-width:none}.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text::-webkit-scrollbar{width:0}.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text:focus,.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text:focus-visible{outline:2px solid #5a03ef;box-shadow:0 8px 48px -18px rgba(0,0,0,.25)}.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text:disabled{cursor:not-allowed;color:#aaa;background:rgba(0,0,0,0)}.zip-ai-sidebar__input-prompt textarea.zip-ai-sidebar__input-prompt--text::placeholder{color:#aaa;background:rgba(0,0,0,0)}.zip-ai-sidebar__input-prompt--disclaimer{width:100%;padding:8px 8px 20px;text-align:center;z-index:7;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#959aa3;background:rgba(0,0,0,0)}.zip-ai-sidebar__input-prompt--disclaimer a{text-decoration:none;border-bottom:1px solid #b0b9c6;color:#959aa3;background:rgba(0,0,0,0);transition:border-bottom 150ms 0s ease-in-out}.zip-ai-sidebar__input-prompt--disclaimer a:hover,.zip-ai-sidebar__input-prompt--disclaimer a:focus-visible{outline:0;border:0;box-shadow:none;border-bottom:1px solid #5a03ef;color:#959aa3;background:rgba(0,0,0,0)}.zip-ai-sidebar__input-prompt--footer{position:absolute;bottom:12px;width:calc(100% - 32px);padding:0 12px;display:flex;flex-direction:row-reverse;justify-content:space-between;align-items:center;gap:12px}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button{cursor:pointer;display:flex;align-items:center;justify-content:center;box-sizing:border-box;width:32px;height:32px;margin:0;padding:8px;border-radius:4px;border:1px solid #5a03ef;outline:0;box-shadow:none;font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#fff;background:#5a03ef;transition:background-color 100ms 0s ease-in-out,opacity 100ms 0s ease-in-out}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button.secondary-variant{border-color:#e6e7e9;color:#1e293b;background:#fff;transition:border 100ms 0s ease-in-out}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button.secondary-variant svg{color:inherit;background:rgba(0,0,0,0)}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button.secondary-variant:hover,.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button.secondary-variant:focus-visible{border:1px solid #50575e;outline:0;box-shadow:none;color:#1e293b;background:#fff}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button.secondary-variant:disabled{opacity:.5;cursor:not-allowed;color:#5a03ef !important;background:#fff !important}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button:hover,.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button:focus-visible{border:1px solid #5a03ef;outline:0;box-shadow:none;color:#fff;background:#4302b3}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button:disabled{opacity:.5;cursor:not-allowed}.zip-ai-sidebar__input-prompt button.zip-ai-sidebar__input-prompt--button svg{color:inherit;background:rgba(0,0,0,0)}.zip-ai-sidebar__prompt{display:grid;grid-template-columns:repeat(2, 1fr);gap:12px;padding:0 16px;background:#fff}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button{cursor:pointer;border:1px solid #e6e7e9;border-radius:6px;margin:0;padding:12px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;text-align:left;box-shadow:none;outline:0;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal;color:#50575e;background:#fff;transition:color 100ms 0s ease-in-out,background-color 100ms 0s ease-in-out,border-color 100ms 0s ease-in-out}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button svg{color:inherit;background:rgba(0,0,0,0)}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:disabled{opacity:.5;cursor:progress;border:1px solid #e6e7e9 !important;color:#50575e !important;background:#fff !important}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:disabled svg{color:#64748b !important;background:rgba(0,0,0,0)}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:hover,.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:focus-visible{outline:0;box-shadow:none;border-color:#5a03ef;color:#50575e;background:#fff}.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:hover svg,.zip-ai-sidebar__prompt button.zip-ai-sidebar__prompt--button:focus-visible svg{color:inherit !important;background:rgba(0,0,0,0)}.zip-ai-sidebar__prompt--heading{color:#1e293b}.zip-ai-sidebar__prompt--subheading{color:#aaa}.zip-ai-sidebar__tooltip{z-index:9999999999;will-change:unset;position:absolute;animation:fadeIntoView 150ms 0ms 1 ease forwards}.zip-ai-sidebar__tooltip-positioned--bottom{transform:translateY(calc(1rem + 12px))}.zip-ai-sidebar__tooltip-positioned--top{transform:translateY(calc(0px - 1rem - 12px))}.zip-ai-sidebar__tooltip-positioned--right{transform:translateX(calc(1.75rem + 40px))}.zip-ai-sidebar__tooltip-positioned--left{transform:translateX(calc(0px - 1.75rem - 24px))}.zip-ai-sidebar__tooltip--content{box-sizing:border-box;padding:6px 12px;color:#1e293b;background:#fff;border-radius:6px;box-shadow:0 4px 8px -2px rgba(16,24,40,.1),0 2px 4px -2px rgba(16,24,40,.06);width:max-content;font-size:.75rem;line-height:1rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-select__menu-list{overflow-x:hidden;scrollbar-width:none}.zip-ai-select__menu-list::-webkit-scrollbar{width:0}.zip-ai-select__menu-list::-webkit-scrollbar-track,.zip-ai-select__menu-list::-webkit-scrollbar-thumb,.zip-ai-select__menu-list::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,0)}.zip-ai-select input{max-height:24px}.zip-ai-select input:focus,.zip-ai-select input:focus-visible{outline:0;box-shadow:none;border:none}.zip-ai-errors>div{margin:12px;box-shadow:0 0 3px 1px #cbbbbb;border-radius:4px;padding:14px;text-align:center}.zip-ai-errors>div span{font-family:inherit;font-size:.875rem;line-height:1.25rem;font-weight:600;text-transform:none;letter-spacing:normal;color:#ef4444;background:rgba(0,0,0,0)}.zip-ai__progress-wrapper{width:100%;display:flex;flex-direction:column;gap:4px;opacity:1}.zip-ai__progress-wrapper--loading{opacity:.5}.zip-ai__progress-wrapper--loaded{animation:translucentToOpaque 150ms ease-in-out 0ms 1 forwards}.zip-ai__progress-bar{width:100%;height:8px;border-radius:4px;overflow:hidden;background-color:#e6e7e9}.zip-ai__progress-bar--progress{height:100%;border-radius:4px}.zip-ai__progress-bar--low{background-color:#22c55e}.zip-ai__progress-bar--medium{background-color:#f59e0b}.zip-ai__progress-bar--high{background-color:#ef4444}.zip-ai__progress-details{display:flex;align-items:flex-start;justify-content:space-between;width:100%}.zip-ai__progress-details--left{padding:0;margin:0;color:#50575e;background:rgba(0,0,0,0);font-size:.875rem;line-height:1.25rem;font-weight:600;text-transform:none;letter-spacing:normal}.zip-ai__progress-details--right{padding:0;margin:0;color:#50575e;background:rgba(0,0,0,0);font-size:.875rem;line-height:1.25rem;font-weight:400;text-transform:none;letter-spacing:normal}.zip-ai-error-bubble{background-color:#fef3f2;border:1px solid #fda4af;border-radius:8px;display:flex;align-items:center;padding:16px;gap:16px;box-shadow:0 1px 3px rgba(0,0,0,.1)}.zip-ai-error-bubble__icon{flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background-color:#ef4444;border-radius:50%;color:#fff}.zip-ai-error-bubble__content{display:flex;flex-direction:column;gap:8px}.zip-ai-error-bubble__title{margin:0;font-size:16px;font-weight:600;color:#000}.zip-ai-error-bubble__text{margin:0;font-size:14px;color:#000}.zip-ai-error-bubble__buttons{display:flex;gap:20px;align-items:center}.zip-ai-error-bubble__button{background-color:#5a03ef;color:#fff;border:none;border-radius:6px;padding:8px 16px;font-size:14px;font-weight:500;cursor:pointer;transition:background-color .2s;width:168px;margin-top:15px;height:40px;line-height:normal !important;text-transform:none !important}.zip-ai-error-bubble__button:hover{background-color:#7c3aed}.zip-ai-error-bubble__button-dismiss{border:none;background:rgba(0,0,0,0);height:0;cursor:pointer;color:#000 !important;box-shadow:none !important;line-height:normal !important;text-transform:none !important;font-weight:500 !important;padding:6px 0 !important;font-size:14px !important}.zip-ai-error-bubble__button-dismiss:hover{background-color:rgba(0,0,0,0) !important;color:#000 !important}.zip-ai-error-bubble__dismiss{background:none;border:none;color:#374151;font-size:14px;cursor:pointer;text-decoration:underline}
PK�][�;�J��Lultimate-addons-for-gutenberg/lib/zip-ai/sidebar/build/sidebar-app.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-components', 'wp-data', 'wp-element', 'wp-i18n', 'wp-plugins', 'wp-rich-text'), 'version' => 'aceddf37ee8a94bd3c13');
PK�][��9��3ultimate-addons-for-gutenberg/lib/zip-ai/zip-ai.phpnu�[���<?php
/**
 * Plugin Name: Zip AI Assistant
 * Description: Library which interacts with SCS and provide multiple useful modules.
 * Author: Brainstorm Force
 * Version: 2.0.6
 * License: GPL v2
 * Text Domain: zip-ai
 *
 * @package zip-ai
 */

// Exit if Zip AI is already loaded.
if ( defined( 'ZIP_AI_DIR' ) ) {
	return;
}

// Load the Zip AI Loader.
if ( apply_filters( 'zip_ai_load_library', true ) ) {
	require_once 'loader.php';
}
PK�][
n����3ultimate-addons-for-gutenberg/lib/zip-ai/loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package zip-ai
 * @since 1.0.0
 */

namespace ZipAI;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

// Classes to be used, in alphabetical order.
use ZipAI\Classes\Admin_Configurations;
use ZipAI\Classes\Module;
use ZipAI\Classes\Sidebar_Configurations;

if ( ! class_exists( '\ZipAI\Loader' ) ) {
	/**
	 * Plugin_Loader
	 *
	 * @since 1.0.0
	 */
	class Loader {

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class Instance.
		 * @since 1.0.0
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 1.0.0
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Autoload classes.
		 *
		 * @param string $class class name.
		 */
		public function autoload( $class ) {
			if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
				return;
			}

			$class_to_load = $class;

			$filename = strtolower(
				preg_replace(
					[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
					[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
					$class_to_load
				)
			);

			$file = ZIP_AI_DIR . $filename . '.php';

			// if the file redable, include it.
			if ( is_readable( $file ) ) {
				require_once $file;
			}
		}

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			spl_autoload_register( [ $this, 'autoload' ] );

			add_action( 'plugins_loaded', [ $this, 'setup_classes' ], 20 );
			$this->define_constants();
		}

		/**
		 * Define the required constants.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function define_constants() {
			define( 'ZIP_AI_FILE', __FILE__ );
			define( 'ZIP_AI_DIR', plugin_dir_path( ZIP_AI_FILE ) );
			define( 'ZIP_AI_URL', plugins_url( '/', ZIP_AI_FILE ) );
			define( 'ZIP_AI_VERSION', '2.0.6' );
			define( 'ZIP_AI_MENU_SLUG', 'zip-ai' );
			define( 'ZIP_AI_MIDDLEWARE', 'https://app.zipwp.com/auth/' );
			define( 'ZIP_AI_ZIPWP_API', 'https://api.zipwp.com/api/' );
			define( 'ZIP_AI_CREDIT_SERVER_API', 'https://credits.startertemplates.com/api/' );
			define( 'ZIP_AI_CREDIT_TOPUP_URL', 'https://app.zipwp.com/credits-pricing' );
			define( 'ZIP_AI_CREDIT_THRESHOLD_MEDIUM', 65 );
			define( 'ZIP_AI_CREDIT_THRESHOLD_HIGH', 85 );
		}

		/**
		 * Setup the required classes.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function setup_classes() {
			// Migrate any older modules to the new format.
			Module::migrate_options();

			// Enable the Zip AI Chat Sidebar if required - filter is for old users.
			if ( apply_filters( 'zip_ai_enable_chat_sidebar', true ) && Module::is_enabled( 'ai_assistant' ) ) {
				Sidebar_Configurations::get_instance();
			}

			// Enable the Zip AI Admin Configurations if required.
			if ( is_admin() ) {
				Admin_Configurations::get_instance();
			}
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Loader::get_instance();
}
PK�][�2�5ultimate-addons-for-gutenberg/lib/zip-ai/version.jsonnu�[���{
  "zip-ai": "2.0.6"
}
PK�][�j(�Dultimate-addons-for-gutenberg/lib/class-uagb-ast-block-templates.phpnu�[���<?php
/**
 * Init
 *
 * @since 1.0.0
 * @package Ast Block Templates
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Ast_Block_Templates' ) ) :

	/**
	 * Admin
	 */
	class UAGB_Ast_Block_Templates {

		/**
		 * Instance
		 *
		 * @since 1.0.0
		 * @var (Object) UAGB_Ast_Block_Templates
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 1.0.0
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 1.0.0
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'init', array( $this, 'load' ), 999 );
			add_filter( 'ast_block_templates_localize_vars', array( $this, 'update_vars' ) );
		}

		/**
		 * Add support to change template button text.
		 *
		 * @since 1.21.0
		 * @param  array $vars localize array of button.
		 */
		public function update_vars( $vars = array() ) {
			if ( defined( 'ASTRA_SITES_VER' ) ) {
				return $vars;
			}

			$vars['button_text']         = __( 'Design Library', 'ultimate-addons-for-gutenberg' );
			$vars['display_button_logo'] = true;
			$vars['popup_logo_uri']      = UAGB_URL . 'admin-core/assets/images/uag-logo.svg';
			$vars['button_logo']         = UAGB_URL . 'admin-core/assets/images/btn-spectra.svg';
			$vars['button_class']        = 'uagb-template-button-logo';
			return $vars;
		}

		/**
		 * Version Check
		 *
		 * @return void
		 */
		public function version_check() {

			$file = realpath( dirname( __FILE__ ) . '/gutenberg-templates/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				// @codingStandardsIgnoreStart
				$file_data = json_decode( file_get_contents( $file ), true );
				// @codingStandardsIgnoreEnd
				global $ast_block_templates_version, $ast_block_templates_init;
				$path    = realpath( dirname( __FILE__ ) . '/gutenberg-templates/ast-block-templates.php' );
				$version = isset( $file_data['ast-block-templates'] ) ? $file_data['ast-block-templates'] : 0;

				if ( null === $ast_block_templates_version ) {
					$ast_block_templates_version = '1.0.0';
				}

				// Compare versions.
				if ( version_compare( $version, $ast_block_templates_version, '>' ) ) {
					$ast_block_templates_version = $version;
					$ast_block_templates_init    = $path;
				}
			}
		}

		/**
		 * Load latest plugin
		 *
		 * @return void
		 */
		public function load() {
			global $ast_block_templates_version, $ast_block_templates_init;
			if ( is_file( realpath( $ast_block_templates_init ) ) ) {
				include_once realpath( $ast_block_templates_init );
			}
		}

	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Ast_Block_Templates::get_instance();

endif;
PK�][e�r�7ultimate-addons-for-gutenberg/lib/class-uagb-zip-ai.phpnu�[���<?php
/**
 * Zip AI initialization
 *
 * @since 2.10.2
 * @package zip-ai
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Zip_AI' ) ) :

	/**
	 * This class connect zip ai library with spectra
	 *
	 * @since 2.10.2
	 */
	class UAGB_Zip_AI {

		/**
		 * Instance
		 *
		 * @since 2.10.2
		 * @var (Object) UAGB_Zip_AI
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.10.2
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.10.2
		 *
		 * @return void
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'plugins_loaded', array( $this, 'load' ), 15 );
		}

		/**
		 * Checks for latest version of zip-ai library available in environment.
		 *
		 * @since 2.10.2
		 *
		 * @return void
		 */
		public function version_check() {

			$file = realpath( dirname( __FILE__ ) . '/zip-ai/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				// @codingStandardsIgnoreStart
				$file_data = json_decode( file_get_contents( $file ), true );
				// @codingStandardsIgnoreEnd
				global $zip_ai_version, $zip_ai_path;
				$path    = realpath( dirname( __FILE__ ) . '/zip-ai/zip-ai.php' );
				$version = isset( $file_data['zip-ai'] ) ? $file_data['zip-ai'] : 0;

				if ( null === $zip_ai_version ) {
					$zip_ai_version = '1.0.0';
				}

				// Compare versions.
				if ( version_compare( $version, $zip_ai_version, '>' ) ) {
					$zip_ai_version = $version;
					$zip_ai_path    = $path;
				}
			}
		}

		/**
		 * Load latest zip-ai library
		 *
		 * @since 2.10.2
		 *
		 * @return void
		 */
		public function load() {
			global $zip_ai_path;
			if ( ! is_null( $zip_ai_path ) && is_file( realpath( $zip_ai_path ) ) ) {
				include_once realpath( $zip_ai_path );
			}
		}

	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Zip_AI::get_instance();

endif;
PK�][.�����<ultimate-addons-for-gutenberg/lib/batch-processing/error_lognu�[���[30-Oct-2025 04:37:51 UTC] PHP Fatal error:  Uncaught Error: Class "WP_Async_Request" not found in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/batch-processing/class-wp-background-process.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/batch-processing/class-wp-background-process.php on line 16
PK�][I!��Multimate-addons-for-gutenberg/lib/batch-processing/class-wp-async-request.phpnu�[���<?php
/**
 * WP Async Request
 *
 * @package WP-Background-Processing
 */

/**
 * Abstract WP_Async_Request class.
 *
 * @abstract
 */
abstract class WP_Async_Request {

	/**
	 * Prefix
	 *
	 * (default value: 'wp')
	 *
	 * @var string
	 * @access protected
	 */
	protected $prefix = 'wp';

	/**
	 * Action
	 *
	 * (default value: 'async_request')
	 *
	 * @var string
	 * @access protected
	 */
	protected $action = 'async_request';

	/**
	 * Identifier
	 *
	 * @var mixed
	 * @access protected
	 */
	protected $identifier;

	/**
	 * Data
	 *
	 * (default value: array())
	 *
	 * @var array
	 * @access protected
	 */
	protected $data = array();

	/**
	 * Initiate new async request.
	 */
	public function __construct() {
		$this->identifier = $this->prefix . '_' . $this->action;

		add_action( 'wp_ajax_' . $this->identifier, array( $this, 'maybe_handle' ) );
		add_action( 'wp_ajax_nopriv_' . $this->identifier, array( $this, 'maybe_handle' ) );
	}

	/**
	 * Set data used during the request.
	 *
	 * @param array $data Data.
	 *
	 * @return $this
	 */
	public function data( $data ) {
		$this->data = $data;

		return $this;
	}

	/**
	 * Dispatch the async request.
	 *
	 * @return array|WP_Error|false HTTP Response array, WP_Error on failure, or false if not attempted.
	 */
	public function dispatch() {
		$url  = add_query_arg( $this->get_query_args(), $this->get_query_url() );
		$args = $this->get_post_args();

		return wp_remote_post( esc_url_raw( $url ), $args );
	}

	/**
	 * Get query args.
	 *
	 * @return array
	 */
	protected function get_query_args() {
		if ( property_exists( $this, 'query_args' ) ) {
			return $this->query_args;
		}

		$args = array(
			'action' => $this->identifier,
			'nonce'  => wp_create_nonce( $this->identifier ),
		);

		/**
		 * Filters the post arguments used during an async request.
		 *
		 * @param array $url
		 */
		return apply_filters( $this->identifier . '_query_args', $args );
	}

	/**
	 * Get query URL.
	 *
	 * @return string
	 */
	protected function get_query_url() {
		if ( property_exists( $this, 'query_url' ) ) {
			return $this->query_url;
		}

		$url = admin_url( 'admin-ajax.php' );

		/**
		 * Filters the post arguments used during an async request.
		 *
		 * @param string $url
		 */
		return apply_filters( $this->identifier . '_query_url', $url );
	}

	/**
	 * Get post args.
	 *
	 * @return array
	 */
	protected function get_post_args() {
		if ( property_exists( $this, 'post_args' ) ) {
			return $this->post_args;
		}

		$args = array(
			'timeout'   => 5, // @phpcs:ignore
			'blocking'  => false,
			'body'      => $this->data,
			'cookies'   => $_COOKIE, // @phpcs:ignore
			'sslverify' => apply_filters( 'https_local_ssl_verify', false ), // Local requests, fine to pass false.
		);

		/**
		 * Filters the post arguments used during an async request.
		 *
		 * @param array $args
		 */
		return apply_filters( $this->identifier . '_post_args', $args );
	}

	/**
	 * Maybe handle a dispatched request.
	 *
	 * Check for correct nonce and pass to handler.
	 *
	 * @return void|mixed
	 */
	public function maybe_handle() {
		// Don't lock up other requests while processing.
		session_write_close(); // @phpcs:ignore

		check_ajax_referer( $this->identifier, 'nonce' );

		$this->handle();

		return $this->maybe_wp_die();
	}

	/**
	 * Should the process exit with wp_die?
	 *
	 * @param mixed $return What to return if filter says don't die, default is null.
	 *
	 * @return void|mixed
	 */
	protected function maybe_wp_die( $return = null ) {
		/**
		 * Should wp_die be used?
		 *
		 * @return bool
		 */
		if ( apply_filters( $this->identifier . '_wp_die', true ) ) {
			wp_die();
		}

		return $return;
	}

	/**
	 * Handle a dispatched request.
	 *
	 * Override this method to perform any actions required
	 * during the async request.
	 */
	abstract protected function handle();
}
PK�][OW�ؾ*�*Rultimate-addons-for-gutenberg/lib/batch-processing/class-wp-background-process.phpnu�[���<?php
/**
 * WP Background Process
 *
 * @package WP-Background-Processing
 */

if ( ! class_exists( 'WP_Background_Process' ) ) {

	/**
	 * Abstract WP_Background_Process class.
	 *
	 * @abstract
	 * @extends WP_Async_Request
	 */
	abstract class WP_Background_Process extends WP_Async_Request {

		/**
		 * Action
		 *
		 * (default value: 'background_process')
		 *
		 * @var string
		 * @access protected
		 */
		protected $action = 'background_process';

		/**
		 * Start time of current process.
		 *
		 * (default value: 0)
		 *
		 * @var int
		 * @access protected
		 */
		protected $start_time = 0;

		/**
		 * Cron_hook_identifier
		 *
		 * @var mixed
		 * @access protected
		 */
		protected $cron_hook_identifier;

		/**
		 * Cron_interval_identifier
		 *
		 * @var mixed
		 * @access protected
		 */
		protected $cron_interval_identifier;

		/**
		 * Initiate new background process
		 */
		public function __construct() {
			parent::__construct();

			$this->cron_hook_identifier     = $this->identifier . '_cron';
			$this->cron_interval_identifier = $this->identifier . '_cron_interval';

			add_action( $this->cron_hook_identifier, array( $this, 'handle_cron_healthcheck' ) );
			add_filter( 'cron_schedules', array( $this, 'schedule_cron_healthcheck' ) );
		}

		/**
		 * Dispatch
		 *
		 * @access public
		 * @return void
		 */
		public function dispatch() {
			// Schedule the cron healthcheck.
			$this->schedule_event();

			// Perform remote post.
			return parent::dispatch();
		}

		/**
		 * Push to queue
		 *
		 * @param mixed $data Data.
		 *
		 * @return $this
		 */
		public function push_to_queue( $data ) {
			$this->data[] = $data;

			return $this;
		}

		/**
		 * Save queue
		 *
		 * @return $this
		 */
		public function save() {
			$key = $this->generate_key();

			if ( ! empty( $this->data ) ) {
				update_site_option( $key, $this->data );
			}

			return $this;
		}

		/**
		 * Update queue
		 *
		 * @param string $key Key.
		 * @param array  $data Data.
		 *
		 * @return $this
		 */
		public function update( $key, $data ) {
			if ( ! empty( $data ) ) {
				update_site_option( $key, $data );
			}

			return $this;
		}

		/**
		 * Delete queue
		 *
		 * @param string $key Key.
		 *
		 * @return $this
		 */
		public function delete( $key ) {
			delete_site_option( $key );

			return $this;
		}

		/**
		 * Generate key
		 *
		 * Generates a unique key based on microtime. Queue items are
		 * given a unique key so that they can be merged upon save.
		 *
		 * @param int $length Length.
		 *
		 * @return string
		 */
		protected function generate_key( $length = 64 ) {
			$unique  = md5( microtime() . rand() );
			$prepend = $this->identifier . '_batch_';

			return substr( $prepend . $unique, 0, $length );
		}

		/**
		 * Maybe process queue
		 *
		 * Checks whether data exists within the queue and that
		 * the process is not already running.
		 */
		public function maybe_handle() {
			// Don't lock up other requests while processing
			session_write_close();

			if ( $this->is_process_running() ) {
				// Background process already running.
				wp_die();
			}

			if ( $this->is_queue_empty() ) {
				// No data to process.
				wp_die();
			}

			check_ajax_referer( $this->identifier, 'nonce' );

			$this->handle();

			wp_die();
		}

		/**
		 * Is queue empty
		 *
		 * @return bool
		 */
		protected function is_queue_empty() {
			global $wpdb;

			$table  = $wpdb->options;
			$column = 'option_name';

			if ( is_multisite() ) {
				$table  = $wpdb->sitemeta;
				$column = 'meta_key';
			}

			$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';

			$count = $wpdb->get_var( $wpdb->prepare( "
			SELECT COUNT(*)
			FROM {$table}
			WHERE {$column} LIKE %s
		", $key ) );

			return ( $count > 0 ) ? false : true;
		}

		/**
		 * Is process running
		 *
		 * Check whether the current process is already running
		 * in a background process.
		 */
		protected function is_process_running() {
			if ( get_site_transient( $this->identifier . '_process_lock' ) ) {
				// Process already running.
				return true;
			}

			return false;
		}

		/**
		 * Lock process
		 *
		 * Lock the process so that multiple instances can't run simultaneously.
		 * Override if applicable, but the duration should be greater than that
		 * defined in the time_exceeded() method.
		 */
		protected function lock_process() {
			$this->start_time = time(); // Set start time of current process.

			$lock_duration = ( property_exists( $this, 'queue_lock_time' ) ) ? $this->queue_lock_time : 60; // 1 minute
			$lock_duration = apply_filters( $this->identifier . '_queue_lock_time', $lock_duration );

			set_site_transient( $this->identifier . '_process_lock', microtime(), $lock_duration );
		}

		/**
		 * Unlock process
		 *
		 * Unlock the process so that other instances can spawn.
		 *
		 * @return $this
		 */
		protected function unlock_process() {
			delete_site_transient( $this->identifier . '_process_lock' );

			return $this;
		}

		/**
		 * Get batch
		 *
		 * @return stdClass Return the first batch from the queue
		 */
		protected function get_batch() {
			global $wpdb;

			$table        = $wpdb->options;
			$column       = 'option_name';
			$key_column   = 'option_id';
			$value_column = 'option_value';

			if ( is_multisite() ) {
				$table        = $wpdb->sitemeta;
				$column       = 'meta_key';
				$key_column   = 'meta_id';
				$value_column = 'meta_value';
			}

			$key = $wpdb->esc_like( $this->identifier . '_batch_' ) . '%';

			$query = $wpdb->get_row( $wpdb->prepare( "
			SELECT *
			FROM {$table}
			WHERE {$column} LIKE %s
			ORDER BY {$key_column} ASC
			LIMIT 1
		", $key ) );

			$batch       = new stdClass();
			$batch->key  = $query->$column;
			$batch->data = maybe_unserialize( $query->$value_column );

			return $batch;
		}

		/**
		 * Handle
		 *
		 * Pass each queue item to the task handler, while remaining
		 * within server memory and time limit constraints.
		 */
		protected function handle() {
			$this->lock_process();

			do {
				$batch = $this->get_batch();

				foreach ( $batch->data as $key => $value ) {
					$task = $this->task( $value );

					if ( false !== $task ) {
						$batch->data[ $key ] = $task;
					} else {
						unset( $batch->data[ $key ] );
					}

					if ( $this->time_exceeded() || $this->memory_exceeded() ) {
						// Batch limits reached.
						break;
					}
				}

				// Update or delete current batch.
				if ( ! empty( $batch->data ) ) {
					$this->update( $batch->key, $batch->data );
				} else {
					$this->delete( $batch->key );
				}
			} while ( ! $this->time_exceeded() && ! $this->memory_exceeded() && ! $this->is_queue_empty() );

			$this->unlock_process();

			// Start next batch or complete process.
			if ( ! $this->is_queue_empty() ) {
				$this->dispatch();
			} else {
				$this->complete();
			}

			wp_die();
		}

		/**
		 * Memory exceeded
		 *
		 * Ensures the batch process never exceeds 90%
		 * of the maximum WordPress memory.
		 *
		 * @return bool
		 */
		protected function memory_exceeded() {
			$memory_limit   = $this->get_memory_limit() * 0.9; // 90% of max memory
			$current_memory = memory_get_usage( true );
			$return         = false;

			if ( $current_memory >= $memory_limit ) {
				$return = true;
			}

			return apply_filters( $this->identifier . '_memory_exceeded', $return );
		}

		/**
		 * Get memory limit
		 *
		 * @return int
		 */
		protected function get_memory_limit() {
			if ( function_exists( 'ini_get' ) ) {
				$memory_limit = ini_get( 'memory_limit' );
			} else {
				// Sensible default.
				$memory_limit = '128M';
			}

			if ( ! $memory_limit || -1 === intval( $memory_limit ) ) {
				// Unlimited, set to 32GB.
				$memory_limit = '32000M';
			}

			return intval( $memory_limit ) * 1024 * 1024;
		}

		/**
		 * Time exceeded.
		 *
		 * Ensures the batch never exceeds a sensible time limit.
		 * A timeout limit of 30s is common on shared hosting.
		 *
		 * @return bool
		 */
		protected function time_exceeded() {
			$finish = $this->start_time + apply_filters( $this->identifier . '_default_time_limit', 20 ); // 20 seconds
			$return = false;

			if ( time() >= $finish ) {
				$return = true;
			}

			return apply_filters( $this->identifier . '_time_exceeded', $return );
		}

		/**
		 * Complete.
		 *
		 * Override if applicable, but ensure that the below actions are
		 * performed, or, call parent::complete().
		 */
		protected function complete() {
			// Unschedule the cron healthcheck.
			$this->clear_scheduled_event();
		}

		/**
		 * Schedule cron healthcheck
		 *
		 * @access public
		 * @param mixed $schedules Schedules.
		 * @return mixed
		 */
		public function schedule_cron_healthcheck( $schedules ) {
			$interval = apply_filters( $this->identifier . '_cron_interval', 5 );

			if ( property_exists( $this, 'cron_interval' ) ) {
				$interval = apply_filters( $this->identifier . '_cron_interval', $this->cron_interval );
			}

			// Adds every 5 minutes to the existing schedules.
			$schedules[ $this->identifier . '_cron_interval' ] = array(
				'interval' => MINUTE_IN_SECONDS * $interval,
				'display'  => sprintf( /* translators: %d: Minutes interval */ __( 'Every %d Minutes', 'ultimate-addons-for-gutenberg' ), $interval ),
			);

			return $schedules;
		}

		/**
		 * Handle cron healthcheck
		 *
		 * Restart the background process if not already running
		 * and data exists in the queue.
		 */
		public function handle_cron_healthcheck() {
			if ( $this->is_process_running() ) {
				// Background process already running.
				exit;
			}

			if ( $this->is_queue_empty() ) {
				// No data to process.
				$this->clear_scheduled_event();
				exit;
			}

			$this->handle();

			exit;
		}

		/**
		 * Schedule event
		 */
		protected function schedule_event() {
			if ( ! wp_next_scheduled( $this->cron_hook_identifier ) ) {
				wp_schedule_event( time(), $this->cron_interval_identifier, $this->cron_hook_identifier );
			}
		}

		/**
		 * Clear scheduled event
		 */
		protected function clear_scheduled_event() {
			$timestamp = wp_next_scheduled( $this->cron_hook_identifier );

			if ( $timestamp ) {
				wp_unschedule_event( $timestamp, $this->cron_hook_identifier );
			}
		}

		/**
		 * Cancel Process
		 *
		 * Stop processing queue items, clear cronjob and delete batch.
		 *
		 */
		public function cancel_process() {
			if ( ! $this->is_queue_empty() ) {
				$batch = $this->get_batch();

				$this->delete( $batch->key );

				wp_clear_scheduled_hook( $this->cron_hook_identifier );
			}

		}

		/**
		 * Task
		 *
		 * Override this method to perform any actions required on each
		 * queue item. Return the modified item for further processing
		 * in the next pass through. Or, return false to remove the
		 * item from the queue.
		 *
		 * @param mixed $item Queue item to iterate over.
		 *
		 * @return mixed
		 */
		abstract protected function task( $item );

	}
}
PK�][���
��;ultimate-addons-for-gutenberg/lib/astra-notices/notices.cssnu�[���.astra-review-notice-container {
	display: flex;
	align-items: center;
	padding-top: 10px;
}

.astra-review-notice-container .dashicons {
    font-size: 1.4em;
	padding-left: 10px;
}

.astra-review-notice-container a {
    padding-left: 5px;
    text-decoration: none;
}

.astra-review-notice-container .dashicons:first-child {
    padding-left: 0;
}

.astra-notice-container .notice-image img {
    max-width: 90px;
}

.astra-notice-container .notice-content .notice-heading {
    padding-bottom: 5px;
}

.astra-notice-container .notice-content {
    margin-left: 15px;
}

.astra-notice-container {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: left;
    align-items: center;
}PK�][��d�:ultimate-addons-for-gutenberg/lib/astra-notices/notices.jsnu�[���/**
 * Customizer controls toggles
 *
 * @package Astra
 */

( function( $ ) {

	/**
	 * Helper class for the main Customizer interface.
	 *
	 * @since 1.0.0
	 * @class ASTCustomizer
	 */
	AstraNotices = {

		/**
		 * Initializes our custom logic for the Customizer.
		 *
		 * @since 1.0.0
		 * @method init
		 */
		init: function()
		{
			this._bind();
		},

		/**
		 * Binds events for the Astra Portfolio.
		 *
		 * @since 1.0.0
		 * @access private
		 * @method _bind
		 */
		_bind: function()
		{
			$( document ).on('click', '.astra-notice-close', AstraNotices._dismissNoticeNew );
			$( document ).on('click', '.astra-notice .notice-dismiss', AstraNotices._dismissNotice );
		},

		_dismissNotice: function( event ) {
			event.preventDefault();

			var repeat_notice_after = $( this ).parents('.astra-notice').data( 'repeat-notice-after' ) || '';
			var notice_id = $( this ).parents('.astra-notice').attr( 'id' ) || '';

			AstraNotices._ajax( notice_id, repeat_notice_after );
		},

		_dismissNoticeNew: function( event ) {
			event.preventDefault();

			var repeat_notice_after = $( this ).attr( 'data-repeat-notice-after' ) || '';
			var notice_id = $( this ).parents('.astra-notice').attr( 'id' ) || '';

			var $el = $( this ).parents('.astra-notice');
			$el.fadeTo( 100, 0, function() {
				$el.slideUp( 100, function() {
					$el.remove();
				});
			});

			AstraNotices._ajax( notice_id, repeat_notice_after );

			var link   = $( this ).attr( 'href' ) || '';
			var target = $( this ).attr( 'target' ) || '';
			if( '' !== link && '_blank' === target ) {
				window.open(link , '_blank');
			}
		},

		_ajax: function( notice_id, repeat_notice_after ) {
			
			if( '' === notice_id ) {
				return;
			}

			$.ajax({
				url: ajaxurl,
				type: 'POST',
				data: {
					action            : 'astra-notice-dismiss',
					nonce             : astraNotices._notice_nonce,
					notice_id         : notice_id,
					repeat_notice_after : parseInt( repeat_notice_after ),
				},
			});

		}
	};

	$( function() {
		AstraNotices.init();
	} );
} )( jQuery );PK�][]�YC�.�.Gultimate-addons-for-gutenberg/lib/astra-notices/class-astra-notices.phpnu�[���<?php
/**
 * Astra Notices
 *
 * An easy to use PHP Library to add dismissible admin notices in the WordPress admin.
 *
 * @package Astra Notices
 * @since 1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'Astra_Notices' ) ) :

	/**
	 * Astra_Notices
	 *
	 * @since 1.0.0
	 */
	class Astra_Notices {

		/**
		 * Notices
		 *
		 * @access private
		 * @var array Notices.
		 * @since 1.0.0
		 */
		private static $version = '1.1.14';

		/**
		 * Notices
		 *
		 * @access private
		 * @var array Notices.
		 * @since 1.0.0
		 */
		private static $notices = array();

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 1.0.0
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 1.0.0
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {
			add_action( 'admin_notices', array( $this, 'show_notices' ), 30 );
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
			add_action( 'wp_ajax_astra-notice-dismiss', array( $this, 'dismiss_notice' ) );
			add_filter( 'wp_kses_allowed_html', array( $this, 'add_data_attributes' ), 10, 2 );
		}

		/**
		 * Filters and Returns a list of allowed tags and attributes for a given context.
		 *
		 * @param array  $allowedposttags array of allowed tags.
		 * @param string $context Context type (explicit).
		 * @since 1.0.0
		 * @return array
		 */
		public function add_data_attributes( $allowedposttags, $context ) { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed
			$allowedposttags['a']['data-repeat-notice-after'] = true;

			return $allowedposttags;
		}

		/**
		 * Add Notice.
		 *
		 * @since 1.0.0
		 * @param array $args Notice arguments.
		 * @return void
		 */
		public static function add_notice( $args = array() ) {
			self::$notices[] = $args;

			if ( ! isset( $args['id'] ) ) {
				return;
			}

			$notice_id = sanitize_key( $args['id'] ); // Notice ID.
			$notices   = get_option( 'allowed_astra_notices', array() );
			if ( ! in_array( $notice_id, $notices, true ) ) {
				$notices[] = $notice_id; // Add notice id to the array.
				update_option( 'allowed_astra_notices', $notices ); // Update the option.
			}
		}

		/**
		 * Dismiss Notice.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function dismiss_notice() {
			$notice_id           = ( isset( $_POST['notice_id'] ) ) ? sanitize_key( $_POST['notice_id'] ) : '';
			$repeat_notice_after = ( isset( $_POST['repeat_notice_after'] ) ) ? absint( $_POST['repeat_notice_after'] ) : '';
			$nonce               = ( isset( $_POST['nonce'] ) ) ? sanitize_key( $_POST['nonce'] ) : '';
			$notice              = $this->get_notice_by_id( $notice_id );
			$capability          = isset( $notice['capability'] ) ? $notice['capability'] : 'manage_options';

			if ( ! apply_filters( 'astra_notices_user_cap_check', current_user_can( $capability ) ) ) {
				return;
			}

			$allowed_notices = get_option( 'allowed_astra_notices', array() ); // Get allowed notices.

			// Define restricted user meta keys.
			$wp_default_meta_keys = array(
				'wp_capabilities',
				'wp_user_level',
				'wp_user-settings',
				'account_status',
				'session_tokens',
			);

			// if $notice_id does not start with astra-notices-id and notice_id is not from the allowed notices, then return.
			if ( strpos( $notice_id, 'astra-notices-id-' ) !== 0 && ( ! in_array( $notice_id, $allowed_notices, true ) ) ) {
				return;
			}

			if ( false === wp_verify_nonce( $nonce, 'astra-notices' ) ) {
				wp_send_json_error( esc_html_e( 'WordPress Nonce not validated.', 'ultimate-addons-for-gutenberg' ) );
			}

			// Valid inputs?
			if ( ! empty( $notice_id ) ) {

				if ( in_array( $notice_id, $wp_default_meta_keys, true ) ) {
					wp_send_json_error( esc_html_e( 'Invalid notice ID.', 'ultimate-addons-for-gutenberg' ) );
				}

				if ( ! empty( $repeat_notice_after ) ) {
					set_transient( $notice_id, true, $repeat_notice_after );
				} else {
					update_user_meta( get_current_user_id(), $notice_id, 'notice-dismissed' );
				}

				wp_send_json_success();
			}

			wp_send_json_error();
		}

		/**
		 * Enqueue Scripts.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function enqueue_scripts() {
			wp_register_style( 'astra-notices', self::get_url() . 'notices.css', array(), self::$version );
			wp_register_script( 'astra-notices', self::get_url() . 'notices.js', array( 'jquery' ), self::$version, true );
			wp_localize_script(
				'astra-notices',
				'astraNotices',
				array(
					'_notice_nonce' => wp_create_nonce( 'astra-notices' ),
				)
			);
		}

		/**
		 * Sort the notices based on the given priority of the notice.
		 * This function is called from usort()
		 *
		 * @since 1.5.2
		 * @param array $notice_1 First notice.
		 * @param array $notice_2 Second Notice.
		 * @return array
		 */
		public function sort_notices( $notice_1, $notice_2 ) {
			if ( ! isset( $notice_1['priority'] ) ) {
				$notice_1['priority'] = 10;
			}
			if ( ! isset( $notice_2['priority'] ) ) {
				$notice_2['priority'] = 10;
			}

			return $notice_1['priority'] - $notice_2['priority'];
		}

		/**
		 * Get all registered notices.
		 * Since v1.1.8 it is recommended to register the notices on
		 *
		 * @return array|null
		 */
		private function get_notices() {
			usort( self::$notices, array( $this, 'sort_notices' ) );

			return self::$notices;
		}

		/**
		 * Get notice by notice_id
		 *
		 * @param string $notice_id Notice id.
		 *
		 * @return array notice based on the notice id.
		 */
		private function get_notice_by_id( $notice_id ) {
			if ( empty( $notice_id ) ) {
				return array();
			}

			$notices = $this->get_notices();
			$notice  = wp_list_filter(
				$notices,
				array(
					'id' => $notice_id,
				)
			);

			return ( ! empty( $notice ) && isset( $notice[0] ) ) ? $notice[0] : array();
		}

		/**
		 * Display the notices in the WordPress admin.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function show_notices() {
			$defaults = array(
				'id'                         => '',      // Optional, Notice ID. If empty it set `astra-notices-id-<$array-index>`.
				'type'                       => 'info',  // Optional, Notice type. Default `info`. Expected [info, warning, notice, error].
				'message'                    => '',      // Optional, Message.
				'show_if'                    => true,    // Optional, Show notice on custom condition. E.g. 'show_if' => if( is_admin() ) ? true, false, .
				'repeat-notice-after'        => '',      // Optional, Dismiss-able notice time. It'll auto show after given time.
				'display-notice-after'       => false,      // Optional, Dismiss-able notice time. It'll auto show after given time.
				'class'                      => '',      // Optional, Additional notice wrapper class.
				'priority'                   => 10,      // Priority of the notice.
				'display-with-other-notices' => true,    // Should the notice be displayed if other notices  are being displayed from Astra_Notices.
				'is_dismissible'             => true,
				'capability'                 => 'manage_options', // User capability - This capability is required for the current user to see this notice.
			);

			// Count for the notices that are rendered.
			$notices_displayed = 0;
			$notices           = $this->get_notices();

			foreach ( $notices as $key => $notice ) {
				$notice = wp_parse_args( $notice, $defaults );

				// Show notices only for users with `manage_options` cap.
				if ( ! current_user_can( $notice['capability'] ) ) {
					continue;
				}

				$notice['id']      = self::get_notice_id( $notice, $key );
				$notice['classes'] = self::get_wrap_classes( $notice );

				// Notices visible after transient expire.
				if ( isset( $notice['show_if'] ) && true === $notice['show_if'] ) {

					// don't display the notice if it is not supposed to be displayed with other notices.
					if ( 0 !== $notices_displayed && false === $notice['display-with-other-notices'] ) {
						continue;
					}

					if ( self::is_expired( $notice ) ) {

						self::markup( $notice );
						++$notices_displayed;
					}
				}
			}
		}

		/**
		 * Render a notice.
		 *
		 * @since 1.0.0
		 * @param  array $notice Notice markup.
		 * @return void
		 */
		public static function markup( $notice = array() ) {
			wp_enqueue_script( 'astra-notices' );
			wp_enqueue_style( 'astra-notices' );

			do_action( 'astra_notice_before_markup' );

			do_action( "astra_notice_before_markup_{$notice['id']}" );

			?>
			<div id="<?php echo esc_attr( $notice['id'] ); ?>" class="<?php echo 'astra-notice-wrapper ' . esc_attr( $notice['classes'] ); ?>" data-repeat-notice-after="<?php echo esc_attr( $notice['repeat-notice-after'] ); ?>">
				<div class="astra-notice-container">
					<?php do_action( "astra_notice_inside_markup_{$notice['id']}" ); ?>
					<?php echo wp_kses_post( $notice['message'] ); ?>
				</div>
			</div>
			<?php

			do_action( "astra_notice_after_markup_{$notice['id']}" );

			do_action( 'astra_notice_after_markup' );
		}

		/**
		 * Get wrapper classes for a notice.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @return array       Notice wrapper classes.
		 */
		private static function get_wrap_classes( $notice ) {
			$classes = array( 'astra-notice', 'notice' );

			if ( $notice['is_dismissible'] ) {
				$classes[] = 'is-dismissible';
			}

			$classes[] = $notice['class'];
			if ( isset( $notice['type'] ) && '' !== $notice['type'] ) {
				$classes[] = 'notice-' . $notice['type'];
			}

			return esc_attr( implode( ' ', $classes ) );
		}

		/**
		 * Get HTML ID for a given notice.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @param  int   $key    Notice array index.
		 * @return string HTML if for the notice.
		 */
		private static function get_notice_id( $notice, $key ) {
			if ( isset( $notice['id'] ) && ! empty( $notice['id'] ) ) {
				return $notice['id'];
			}

			return 'astra-notices-id-' . $key;
		}

		/**
		 * Check if the notice is expires.
		 *
		 * @since 1.0.0
		 *
		 * @param  array $notice Notice arguments.
		 * @return boolean
		 */
		private static function is_expired( $notice ) {
			$transient_status = get_transient( $notice['id'] );

			if ( false === $transient_status ) {

				if ( isset( $notice['display-notice-after'] ) && false !== $notice['display-notice-after'] ) {

					if ( 'delayed-notice' !== get_user_meta( get_current_user_id(), $notice['id'], true ) &&
						'notice-dismissed' !== get_user_meta( get_current_user_id(), $notice['id'], true ) ) {
						set_transient( $notice['id'], 'delayed-notice', $notice['display-notice-after'] );
						update_user_meta( get_current_user_id(), $notice['id'], 'delayed-notice' );

						return false;
					}
				}

				// Check the user meta status if current notice is dismissed or delay completed.
				$meta_status = get_user_meta( get_current_user_id(), $notice['id'], true );

				if ( empty( $meta_status ) || 'delayed-notice' === $meta_status ) {
					return true;
				}
			}

			return false;
		}

		/**
		 * Get base URL for the astra-notices.
		 *
		 * @return mixed URL.
		 */
		public static function get_url() {
			$path      = wp_normalize_path( dirname( __FILE__ ) ); // phpcs:ignore Modernize.FunctionCalls.Dirname.FileConstant
			$theme_dir = wp_normalize_path( get_template_directory() );

			if ( strpos( $path, $theme_dir ) !== false ) {
				return trailingslashit( get_template_directory_uri() . str_replace( $theme_dir, '', $path ) );
			} else {
				return plugin_dir_url( __FILE__ );
			}
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Astra_Notices::get_instance();

endif;
PK�][Aٗ��8ultimate-addons-for-gutenberg/lib/zipwp-images/error_lognu�[���[31-Oct-2025 21:19:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function ZipWP_Images\add_action() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images-loader.php:35
Stack trace:
#0 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images-loader.php(47): ZipWP_Images\Zipwp_Images_Loader->__construct()
#1 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images-loader.php(145): ZipWP_Images\Zipwp_Images_Loader::get_instance()
#2 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images-loader.php on line 35
[31-Oct-2025 21:19:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function plugin_basename() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images.php:21
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images.php on line 21
PK�][�L1cc<ultimate-addons-for-gutenberg/lib/zipwp-images/changelog.txtnu�[���v1.0.18 - 27-March-2025
- Improvement: Optimized asset loading logic to prevent unnecessary script and style loading in non-essential backend areas, improving performance.

v1.0.17 - 20-March-2025
- Fix: Addressed a critical bug causing an error in the customizer.

v1.0.16 - 18-March-2025
- New: Added `zipwp_images_excluded_post_types` filter to restrict asset loading in unnecessary backend areas, improving performance.

v1.0.15 - 18-February-2025
- New: Integrated PHP Insights to GitHub Actions for improved readability and error reduction.
- Improvement: Added edit_pages capability check for API access.

v1.0.14 - 28-November-2024
- Fix: Removed garbage CSS conflicting with other plugins.

v1.0.13 - 11-November-2024
- Fix: Resolved an issue where the media library button text was incorrectly displayed in certain cases.

v1.0.12 - 24-October-2024
- Improvement: Removed the "Free Images" option from the WordPress media library where videos are expected.

v1.0.11 - 01-October-2024
- Improvement: Fixed broken UI components for Elementor and Beaver Builder.

v1.0.10 - 23-September-2024
- Improvement: UI/UX improvements.

v1.0.9 - 11-September-2024
- Fix: Resolved issue where image search results reset to default after applying filters.

v1.0.8 - 15-August-2024
- Improvement: Enhanced UI for better user experience.

v1.0.7 - 12-June-2024
- Fix: "Select" of media library was not showing in the customizer preview.

v1.0.6 - 06-June-2024
- Improvement: Updated preview screen for better UX.

v1.0.5 - 05-June-2024
- Improvement: Added compatibility for WP Gallery Block.

v1.0.4 - 29-May-2024
- New: Added option to clear the applied filters.

v1.0.3 - 27-May-2024
- Fix: Fixed trailing slash issue for image API.

v1.0.2 - 24-May-2024
- New: Added filter for tab title.

v1.0.1 - 23-May-2024
- New: Updated Image search API namespace.

v1.0.0 - 22-May-2024
- Initial releasePK�][�ko��}�}Bultimate-addons-for-gutenberg/lib/zipwp-images/dist/style-main.cssnu�[���*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.ast-attachments-browser :is(.sr-only){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.ast-attachments-browser :is(.pointer-events-none){pointer-events:none}.ast-attachments-browser :is(.absolute){position:absolute}.ast-attachments-browser :is(.relative){position:relative}.ast-attachments-browser :is(.inset-0){inset:0px}.ast-attachments-browser :is(.bottom-0){bottom:0px}.ast-attachments-browser :is(.left-0){left:0px}.ast-attachments-browser :is(.right-0){right:0px}.ast-attachments-browser :is(.top-0){top:0px}.ast-attachments-browser :is(.z-50){z-index:50}.ast-attachments-browser :is(.m-0){margin:0px}.ast-attachments-browser :is(.my-2){margin-top:0.5rem;margin-bottom:0.5rem}.ast-attachments-browser :is(.my-6){margin-top:1.5rem;margin-bottom:1.5rem}.ast-attachments-browser :is(.\!mb-0){margin-bottom:0px !important}.ast-attachments-browser :is(.\!ml-0){margin-left:0px !important}.ast-attachments-browser :is(.\!mt-2){margin-top:0.5rem !important}.ast-attachments-browser :is(.\!mt-5){margin-top:1.25rem !important}.ast-attachments-browser :is(.\!mt-6){margin-top:1.5rem !important}.ast-attachments-browser :is(.ml-2){margin-left:0.5rem}.ast-attachments-browser :is(.mr-2){margin-right:0.5rem}.ast-attachments-browser :is(.mt-12){margin-top:3rem}.ast-attachments-browser :is(.mt-5){margin-top:1.25rem}.ast-attachments-browser :is(.block){display:block}.ast-attachments-browser :is(.flex){display:flex}.ast-attachments-browser :is(.inline-flex){display:inline-flex}.ast-attachments-browser :is(.grid){display:grid}.ast-attachments-browser :is(.aspect-\[1\/1\]){aspect-ratio:1/1}.ast-attachments-browser :is(.aspect-\[1\/2\]){aspect-ratio:1/2}.ast-attachments-browser :is(.aspect-\[2\/1\]){aspect-ratio:2/1}.ast-attachments-browser :is(.aspect-\[2\/2\]){aspect-ratio:2/2}.ast-attachments-browser :is(.aspect-\[3\/3\]){aspect-ratio:3/3}.ast-attachments-browser :is(.aspect-\[3\/4\]){aspect-ratio:3/4}.ast-attachments-browser :is(.aspect-\[4\/3\]){aspect-ratio:4/3}.ast-attachments-browser :is(.size-2){width:0.5rem;height:0.5rem}.ast-attachments-browser :is(.size-4){width:1rem;height:1rem}.ast-attachments-browser :is(.size-6){width:1.5rem;height:1.5rem}.ast-attachments-browser :is(.size-\[14px\]){width:14px;height:14px}.ast-attachments-browser :is(.size-\[18px\]){width:18px;height:18px}.ast-attachments-browser :is(.h-10){height:2.5rem}.ast-attachments-browser :is(.h-11){height:2.75rem}.ast-attachments-browser :is(.h-3){height:0.75rem}.ast-attachments-browser :is(.h-4){height:1rem}.ast-attachments-browser :is(.h-5){height:1.25rem}.ast-attachments-browser :is(.h-\[2\.625rem\]){height:2.625rem}.ast-attachments-browser :is(.h-\[34px\]){height:34px}.ast-attachments-browser :is(.h-\[calc\(100\%_-_1\.25rem\)\]){height:calc(100% - 1.25rem)}.ast-attachments-browser :is(.h-auto){height:auto}.ast-attachments-browser :is(.h-fit){height:-moz-fit-content;height:fit-content}.ast-attachments-browser :is(.h-full){height:100%}.ast-attachments-browser :is(.max-h-full){max-height:100%}.ast-attachments-browser :is(.min-h-\[200px\]){min-height:200px}.ast-attachments-browser :is(.w-1\/2){width:50%}.ast-attachments-browser :is(.w-3){width:0.75rem}.ast-attachments-browser :is(.w-4){width:1rem}.ast-attachments-browser :is(.w-48){width:12rem}.ast-attachments-browser :is(.w-5){width:1.25rem}.ast-attachments-browser :is(.w-60){width:15rem}.ast-attachments-browser :is(.w-80){width:20rem}.ast-attachments-browser :is(.w-\[18\.25rem\]){width:18.25rem}.ast-attachments-browser :is(.w-\[70px\]){width:70px}.ast-attachments-browser :is(.w-fit){width:-moz-fit-content;width:fit-content}.ast-attachments-browser :is(.w-full){width:100%}.ast-attachments-browser :is(.w-px){width:1px}.ast-attachments-browser :is(.min-w-\[72px\]){min-width:72px}.ast-attachments-browser :is(.min-w-fit){min-width:-moz-fit-content;min-width:fit-content}.ast-attachments-browser :is(.max-w-full){max-width:100%}.ast-attachments-browser :is(.flex-shrink-0){flex-shrink:0}.ast-attachments-browser :is(.-translate-y-2){--tw-translate-y:-0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.translate-y-0){--tw-translate-y:0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.translate-y-2){--tw-translate-y:0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.rotate-180){--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.scale-100){--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.scale-95){--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.transform){transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.ast-attachments-browser :is(.animate-pulse){animation:pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.ast-attachments-browser :is(.animate-spin){animation:spin 1s linear infinite}.ast-attachments-browser :is(.cursor-not-allowed){cursor:not-allowed}.ast-attachments-browser :is(.cursor-pointer){cursor:pointer}.ast-attachments-browser :is(.auto-rows-auto){grid-auto-rows:auto}.ast-attachments-browser :is(.grid-cols-1){grid-template-columns:repeat(1, minmax(0, 1fr))}.ast-attachments-browser :is(.grid-cols-5){grid-template-columns:repeat(5, minmax(0, 1fr))}.ast-attachments-browser :is(.grid-cols-\[1fr_380px\]){grid-template-columns:1fr 380px}.ast-attachments-browser :is(.grid-rows-1){grid-template-rows:repeat(1, minmax(0, 1fr))}.ast-attachments-browser :is(.flex-col){flex-direction:column}.ast-attachments-browser :is(.place-items-center){place-items:center}.ast-attachments-browser :is(.items-start){align-items:flex-start}.ast-attachments-browser :is(.items-center){align-items:center}.ast-attachments-browser :is(.justify-start){justify-content:flex-start}.ast-attachments-browser :is(.justify-end){justify-content:flex-end}.ast-attachments-browser :is(.justify-center){justify-content:center}.ast-attachments-browser :is(.justify-between){justify-content:space-between}.ast-attachments-browser :is(.gap-2){gap:0.5rem}.ast-attachments-browser :is(.gap-3){gap:0.75rem}.ast-attachments-browser :is(.gap-4){gap:1rem}.ast-attachments-browser :is(.gap-5){gap:1.25rem}.ast-attachments-browser :is(.gap-6){gap:1.5rem}.ast-attachments-browser :is(.\!space-y-2 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0 !important;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;margin-bottom:calc(0.5rem * var(--tw-space-y-reverse)) !important}.ast-attachments-browser :is(.space-y-1 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.25rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.space-y-2 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.5rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.space-y-4 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.overflow-hidden){overflow:hidden}.ast-attachments-browser :is(.overflow-y-auto){overflow-y:auto}.ast-attachments-browser :is(.truncate){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ast-attachments-browser :is(.text-nowrap){text-wrap:nowrap}.ast-attachments-browser :is(.\!rounded-md){border-radius:0.375rem !important}.ast-attachments-browser :is(.rounded){border-radius:0.25rem}.ast-attachments-browser :is(.rounded-full){border-radius:9999px}.ast-attachments-browser :is(.rounded-lg){border-radius:0.5rem}.ast-attachments-browser :is(.rounded-md){border-radius:0.375rem}.ast-attachments-browser :is(.rounded-l){border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.ast-attachments-browser :is(.rounded-r){border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.ast-attachments-browser :is(.\!border-0){border-width:0px !important}.ast-attachments-browser :is(.border){border-width:1px}.ast-attachments-browser :is(.border-0){border-width:0px}.ast-attachments-browser :is(.border-y-0){border-top-width:0px;border-bottom-width:0px}.ast-attachments-browser :is(.border-b-0){border-bottom-width:0px}.ast-attachments-browser :is(.border-l){border-left-width:1px}.ast-attachments-browser :is(.border-r-0){border-right-width:0px}.ast-attachments-browser :is(.border-t){border-top-width:1px}.ast-attachments-browser :is(.border-solid){border-style:solid}.ast-attachments-browser :is(.border-none){border-style:none}.ast-attachments-browser :is(.border-accent){--tw-border-opacity:1;border-color:rgb(34 113 177 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-alert-error){--tw-border-opacity:1;border-color:rgb(239 68 68 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-black\/10){border-color:rgb(0 0 0 / 0.1)}.ast-attachments-browser :is(.border-border-primary){--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-border-tertiary){--tw-border-opacity:1;border-color:rgb(216 223 233 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-transparent){border-color:transparent}.ast-attachments-browser :is(.border-white){--tw-border-opacity:1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-wp-border){--tw-border-opacity:1;border-color:rgb(220 220 222 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-zip-body-text){--tw-border-opacity:1;border-color:rgb(71 85 105 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-zip-dark-theme-border){--tw-border-opacity:1;border-color:rgb(51 62 82 / var(--tw-border-opacity))}.ast-attachments-browser :is(.\!bg-transparent){background-color:transparent !important}.ast-attachments-browser :is(.bg-\[\#9E9E9E\]){--tw-bg-opacity:1;background-color:rgb(158 158 158 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-accent){--tw-bg-opacity:1;background-color:rgb(34 113 177 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-border-tertiary){--tw-bg-opacity:1;background-color:rgb(216 223 233 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-slate-300){--tw-bg-opacity:1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-transparent){background-color:transparent}.ast-attachments-browser :is(.bg-white){--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-wp-background){--tw-bg-opacity:1;background-color:rgb(246 247 247 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-zip-body-text){--tw-bg-opacity:1;background-color:rgb(71 85 105 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-zip-dark-theme-border){--tw-bg-opacity:1;background-color:rgb(51 62 82 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-gradient-to-b){background-image:linear-gradient(to bottom, var(--tw-gradient-stops))}.ast-attachments-browser :is(.bg-gradient-to-r){background-image:linear-gradient(to right, var(--tw-gradient-stops))}.ast-attachments-browser :is(.bg-gradient-to-t){background-image:linear-gradient(to top, var(--tw-gradient-stops))}.ast-attachments-browser :is(.from-black\/10){--tw-gradient-from:rgb(0 0 0 / 0.1) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.ast-attachments-browser :is(.from-gradient-color-1){--tw-gradient-from:#B809A7 var(--tw-gradient-from-position);--tw-gradient-to:rgb(184 9 167 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.ast-attachments-browser :is(.via-gradient-color-2){--tw-gradient-to:rgb(233 11 118 / 0)  var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), #E90B76 var(--tw-gradient-via-position), var(--tw-gradient-to)}.ast-attachments-browser :is(.to-gradient-color-3){--tw-gradient-to:#FC8536 var(--tw-gradient-to-position)}.ast-attachments-browser :is(.to-transparent){--tw-gradient-to:transparent var(--tw-gradient-to-position)}.ast-attachments-browser :is(.object-contain){object-fit:contain}.ast-attachments-browser :is(.object-cover){object-fit:cover}.ast-attachments-browser :is(.p-0){padding:0px}.ast-attachments-browser :is(.p-1){padding:0.25rem}.ast-attachments-browser :is(.p-3){padding:0.75rem}.ast-attachments-browser :is(.p-4){padding:1rem}.ast-attachments-browser :is(.p-6){padding:1.5rem}.ast-attachments-browser :is(.\!py-2){padding-top:0.5rem !important;padding-bottom:0.5rem !important}.ast-attachments-browser :is(.\!py-2\.5){padding-top:0.625rem !important;padding-bottom:0.625rem !important}.ast-attachments-browser :is(.px-2){padding-left:0.5rem;padding-right:0.5rem}.ast-attachments-browser :is(.px-2\.5){padding-left:0.625rem;padding-right:0.625rem}.ast-attachments-browser :is(.px-3){padding-left:0.75rem;padding-right:0.75rem}.ast-attachments-browser :is(.px-4){padding-left:1rem;padding-right:1rem}.ast-attachments-browser :is(.px-5){padding-left:1.25rem;padding-right:1.25rem}.ast-attachments-browser :is(.px-6){padding-left:1.5rem;padding-right:1.5rem}.ast-attachments-browser :is(.py-1){padding-top:0.25rem;padding-bottom:0.25rem}.ast-attachments-browser :is(.py-1\.5){padding-top:0.375rem;padding-bottom:0.375rem}.ast-attachments-browser :is(.py-2){padding-top:0.5rem;padding-bottom:0.5rem}.ast-attachments-browser :is(.py-3){padding-top:0.75rem;padding-bottom:0.75rem}.ast-attachments-browser :is(.pb-5){padding-bottom:1.25rem}.ast-attachments-browser :is(.pl-3){padding-left:0.75rem}.ast-attachments-browser :is(.pl-4){padding-left:1rem}.ast-attachments-browser :is(.pl-5){padding-left:1.25rem}.ast-attachments-browser :is(.pl-6){padding-left:1.5rem}.ast-attachments-browser :is(.pr-10){padding-right:2.5rem}.ast-attachments-browser :is(.pr-2){padding-right:0.5rem}.ast-attachments-browser :is(.pr-3){padding-right:0.75rem}.ast-attachments-browser :is(.pr-4){padding-right:1rem}.ast-attachments-browser :is(.pr-5){padding-right:1.25rem}.ast-attachments-browser :is(.pr-6){padding-right:1.5rem}.ast-attachments-browser :is(.pt-5){padding-top:1.25rem}.ast-attachments-browser :is(.text-center){text-align:center}.ast-attachments-browser :is(.\!text-sm){font-size:0.875rem !important;line-height:1.25rem !important}.ast-attachments-browser :is(.text-\[13px\]){font-size:13px}.ast-attachments-browser :is(.text-base){font-size:1rem;line-height:1.5rem}.ast-attachments-browser :is(.text-sm){font-size:0.875rem;line-height:1.25rem}.ast-attachments-browser :is(.text-xl){font-size:1.25rem;line-height:1.75rem}.ast-attachments-browser :is(.text-xs){font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.font-medium){font-weight:500}.ast-attachments-browser :is(.font-normal){font-weight:400}.ast-attachments-browser :is(.font-semibold){font-weight:600}.ast-attachments-browser :is(.capitalize){text-transform:capitalize}.ast-attachments-browser :is(.\!leading-\[30px\]){line-height:30px !important}.ast-attachments-browser :is(.leading-5){line-height:1.25rem}.ast-attachments-browser :is(.leading-\[150\%\]){line-height:150%}.ast-attachments-browser :is(.leading-\[30px\]){line-height:30px}.ast-attachments-browser :is(.\!text-white\/90){color:rgb(255 255 255 / 0.9) !important}.ast-attachments-browser :is(.text-accent){--tw-text-opacity:1;color:rgb(34 113 177 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-alert-error){--tw-text-opacity:1;color:rgb(239 68 68 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-body-text){--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-border-primary){--tw-text-opacity:1;color:rgb(209 213 219 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-heading-text){--tw-text-opacity:1;color:rgb(3 7 18 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-white){--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-app-heading){--tw-text-opacity:1;color:rgb(15 23 42 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-app-inactive-icon){--tw-text-opacity:1;color:rgb(148 163 184 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-body-text){--tw-text-opacity:1;color:rgb(71 85 105 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-dark-theme-heading){--tw-text-opacity:1;color:rgb(252 252 253 / var(--tw-text-opacity))}.ast-attachments-browser :is(.underline){text-decoration-line:underline}.ast-attachments-browser :is(.\!no-underline){text-decoration-line:none !important}.ast-attachments-browser :is(.\!opacity-100){opacity:1 !important}.ast-attachments-browser :is(.opacity-0){opacity:0}.ast-attachments-browser :is(.opacity-100){opacity:1}.ast-attachments-browser :is(.opacity-25){opacity:0.25}.ast-attachments-browser :is(.opacity-50){opacity:0.5}.ast-attachments-browser :is(.opacity-70){opacity:0.7}.ast-attachments-browser :is(.opacity-75){opacity:0.75}.ast-attachments-browser :is(.shadow-lg){--tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.shadow-none){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.shadow-sm){--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.\!outline-none){outline:2px solid transparent !important;outline-offset:2px !important}.ast-attachments-browser :is(.outline-none){outline:2px solid transparent;outline-offset:2px}.ast-attachments-browser :is(.ring-1){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.ring-2){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.\!ring-wp-component-border){--tw-ring-opacity:1 !important;--tw-ring-color:rgb(140 143 148 / var(--tw-ring-opacity)) !important}.ast-attachments-browser :is(.ring-accent-wp-primary){--tw-ring-opacity:1;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-black){--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-wp-component-border){--tw-ring-opacity:1;--tw-ring-color:rgb(140 143 148 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-opacity-5){--tw-ring-opacity:0.05}.ast-attachments-browser :is(.grayscale){--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ast-attachments-browser :is(.filter){filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ast-attachments-browser :is(.transition){transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-all){transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-colors){transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-opacity){transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-transform){transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.duration-150){transition-duration:150ms}.ast-attachments-browser :is(.duration-200){transition-duration:200ms}.ast-attachments-browser :is(.duration-300){transition-duration:300ms}.ast-attachments-browser :is(.duration-75){transition-duration:75ms}.ast-attachments-browser :is(.ease-in){transition-timing-function:cubic-bezier(0.4, 0, 1, 1)}.ast-attachments-browser :is(.ease-in-out){transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.ast-attachments-browser :is(.ease-out){transition-timing-function:cubic-bezier(0, 0, 0.2, 1)}[id^=__wp-uploader] .ast-attachments-browser * *,[id*=__wp-uploader] .ast-attachments-browser * *{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif !important;box-sizing:border-box}[id^=__wp-uploader]:has(.ast-attachments-browser) .media-frame-content,[id*=__wp-uploader]:has(.ast-attachments-browser) .media-frame-content{bottom:0}[id^=__wp-uploader]:has(.ast-attachments-browser) .media-frame-toolbar,[id*=__wp-uploader]:has(.ast-attachments-browser) .media-frame-toolbar{display:none}[data-tippy-root][id^=tippy-] .zipwp-images-tooltip.tippy-box{border-radius:0.375rem;background-color:rgb(0 0 0 / 0.8);--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}[data-tippy-root][id^=tippy-] .zipwp-images-tooltip>.tippy-content{padding-top:0.25rem;padding-bottom:0.25rem;padding-left:0.5rem;padding-right:0.5rem;font-family:system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.placeholder\:\!text-sm)::placeholder{font-size:0.875rem !important;line-height:1.25rem !important}.ast-attachments-browser :is(.placeholder\:\!text-zip-app-inactive-icon)::placeholder{--tw-text-opacity:1 !important;color:rgb(148 163 184 / var(--tw-text-opacity)) !important}.ast-attachments-browser :is(.before\:absolute)::before{content:var(--tw-content);position:absolute}.ast-attachments-browser :is(.before\:left-2)::before{content:var(--tw-content);left:0.5rem}.ast-attachments-browser :is(.before\:top-2)::before{content:var(--tw-content);top:0.5rem}.ast-attachments-browser :is(.before\:rounded)::before{content:var(--tw-content);border-radius:0.25rem}.ast-attachments-browser :is(.before\:bg-black\/70)::before{content:var(--tw-content);background-color:rgb(0 0 0 / 0.7)}.ast-attachments-browser :is(.before\:px-2)::before{content:var(--tw-content);padding-left:0.5rem;padding-right:0.5rem}.ast-attachments-browser :is(.before\:py-1)::before{content:var(--tw-content);padding-top:0.25rem;padding-bottom:0.25rem}.ast-attachments-browser :is(.before\:text-xs)::before{content:var(--tw-content);font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.before\:font-semibold)::before{content:var(--tw-content);font-weight:600}.ast-attachments-browser :is(.before\:text-white)::before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ast-attachments-browser :is(.before\:content-\[\'Imported\'\])::before{--tw-content:'Imported';content:var(--tw-content)}.ast-attachments-browser :is(.focus-within\:border-accent:focus-within){--tw-border-opacity:1;border-color:rgb(34 113 177 / var(--tw-border-opacity))}.ast-attachments-browser :is(.focus-within\:ring-2:focus-within){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.focus-within\:ring-accent:focus-within){--tw-ring-opacity:1;--tw-ring-color:rgb(34 113 177 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.hover\:scale-125:hover){--tw-scale-x:1.25;--tw-scale-y:1.25;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.hover\:bg-background-secondary:hover){--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-hover-wp-default:hover){--tw-bg-opacity:1;background-color:rgb(19 94 150 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-white:hover){--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-white\/80:hover){background-color:rgb(255 255 255 / 0.8)}.ast-attachments-browser :is(.hover\:text-accent:hover){--tw-text-opacity:1;color:rgb(34 113 177 / var(--tw-text-opacity))}.ast-attachments-browser :is(.focus\:\!outline-none:focus){outline:2px solid transparent !important;outline-offset:2px !important}.ast-attachments-browser :is(.focus\:outline-none:focus){outline:2px solid transparent;outline-offset:2px}.ast-attachments-browser :is(.focus\:\!ring-0:focus){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important}.ast-attachments-browser :is(.focus\:ring-2:focus){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.focus\:\!ring-accent-wp-primary:focus){--tw-ring-opacity:1 !important;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity)) !important}.ast-attachments-browser :is(.focus\:ring-accent-wp-primary:focus){--tw-ring-opacity:1;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.focus-visible\:outline:focus-visible){outline-style:solid}.ast-attachments-browser :is(.focus-visible\:outline-2:focus-visible){outline-width:2px}.ast-attachments-browser :is(.focus-visible\:outline-offset-2:focus-visible){outline-offset:2px}.ast-attachments-browser :is(.focus-visible\:ring-accent:focus-visible){--tw-ring-opacity:1;--tw-ring-color:rgb(34 113 177 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.disabled\:\!cursor-not-allowed:disabled){cursor:not-allowed !important}.ast-attachments-browser :is(.group\/overlay:hover .group-hover\/overlay\:opacity-100){opacity:1}@media (min-width: 768px){.ast-attachments-browser :is(.md\:max-w-\[420px\]){max-width:420px}.ast-attachments-browser :is(.md\:flex-row){flex-direction:row}.ast-attachments-browser :is(.md\:\!py-2){padding-top:0.5rem !important;padding-bottom:0.5rem !important}.ast-attachments-browser :is(.md\:\!py-2\.5){padding-top:0.625rem !important;padding-bottom:0.625rem !important}}.ast-attachments-browser :is(.\[\&\>\*\]\:shrink-0>*){flex-shrink:0}.ast-attachments-browser :is(.\[\&\>div\]\:gap-6>div){gap:1.5rem}
PK�][�K��}�}Fultimate-addons-for-gutenberg/lib/zipwp-images/dist/style-main-rtl.cssnu�[���*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.ast-attachments-browser :is(.sr-only){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.ast-attachments-browser :is(.pointer-events-none){pointer-events:none}.ast-attachments-browser :is(.absolute){position:absolute}.ast-attachments-browser :is(.relative){position:relative}.ast-attachments-browser :is(.inset-0){inset:0px}.ast-attachments-browser :is(.bottom-0){bottom:0px}.ast-attachments-browser :is(.left-0){right:0px}.ast-attachments-browser :is(.right-0){left:0px}.ast-attachments-browser :is(.top-0){top:0px}.ast-attachments-browser :is(.z-50){z-index:50}.ast-attachments-browser :is(.m-0){margin:0px}.ast-attachments-browser :is(.my-2){margin-top:0.5rem;margin-bottom:0.5rem}.ast-attachments-browser :is(.my-6){margin-top:1.5rem;margin-bottom:1.5rem}.ast-attachments-browser :is(.\!mb-0){margin-bottom:0px !important}.ast-attachments-browser :is(.\!ml-0){margin-right:0px !important}.ast-attachments-browser :is(.\!mt-2){margin-top:0.5rem !important}.ast-attachments-browser :is(.\!mt-5){margin-top:1.25rem !important}.ast-attachments-browser :is(.\!mt-6){margin-top:1.5rem !important}.ast-attachments-browser :is(.ml-2){margin-right:0.5rem}.ast-attachments-browser :is(.mr-2){margin-left:0.5rem}.ast-attachments-browser :is(.mt-12){margin-top:3rem}.ast-attachments-browser :is(.mt-5){margin-top:1.25rem}.ast-attachments-browser :is(.block){display:block}.ast-attachments-browser :is(.flex){display:flex}.ast-attachments-browser :is(.inline-flex){display:inline-flex}.ast-attachments-browser :is(.grid){display:grid}.ast-attachments-browser :is(.aspect-\[1\/1\]){aspect-ratio:1/1}.ast-attachments-browser :is(.aspect-\[1\/2\]){aspect-ratio:1/2}.ast-attachments-browser :is(.aspect-\[2\/1\]){aspect-ratio:2/1}.ast-attachments-browser :is(.aspect-\[2\/2\]){aspect-ratio:2/2}.ast-attachments-browser :is(.aspect-\[3\/3\]){aspect-ratio:3/3}.ast-attachments-browser :is(.aspect-\[3\/4\]){aspect-ratio:3/4}.ast-attachments-browser :is(.aspect-\[4\/3\]){aspect-ratio:4/3}.ast-attachments-browser :is(.size-2){width:0.5rem;height:0.5rem}.ast-attachments-browser :is(.size-4){width:1rem;height:1rem}.ast-attachments-browser :is(.size-6){width:1.5rem;height:1.5rem}.ast-attachments-browser :is(.size-\[14px\]){width:14px;height:14px}.ast-attachments-browser :is(.size-\[18px\]){width:18px;height:18px}.ast-attachments-browser :is(.h-10){height:2.5rem}.ast-attachments-browser :is(.h-11){height:2.75rem}.ast-attachments-browser :is(.h-3){height:0.75rem}.ast-attachments-browser :is(.h-4){height:1rem}.ast-attachments-browser :is(.h-5){height:1.25rem}.ast-attachments-browser :is(.h-\[2\.625rem\]){height:2.625rem}.ast-attachments-browser :is(.h-\[34px\]){height:34px}.ast-attachments-browser :is(.h-\[calc\(100\%_-_1\.25rem\)\]){height:calc(100% - 1.25rem)}.ast-attachments-browser :is(.h-auto){height:auto}.ast-attachments-browser :is(.h-fit){height:-moz-fit-content;height:fit-content}.ast-attachments-browser :is(.h-full){height:100%}.ast-attachments-browser :is(.max-h-full){max-height:100%}.ast-attachments-browser :is(.min-h-\[200px\]){min-height:200px}.ast-attachments-browser :is(.w-1\/2){width:50%}.ast-attachments-browser :is(.w-3){width:0.75rem}.ast-attachments-browser :is(.w-4){width:1rem}.ast-attachments-browser :is(.w-48){width:12rem}.ast-attachments-browser :is(.w-5){width:1.25rem}.ast-attachments-browser :is(.w-60){width:15rem}.ast-attachments-browser :is(.w-80){width:20rem}.ast-attachments-browser :is(.w-\[18\.25rem\]){width:18.25rem}.ast-attachments-browser :is(.w-\[70px\]){width:70px}.ast-attachments-browser :is(.w-fit){width:-moz-fit-content;width:fit-content}.ast-attachments-browser :is(.w-full){width:100%}.ast-attachments-browser :is(.w-px){width:1px}.ast-attachments-browser :is(.min-w-\[72px\]){min-width:72px}.ast-attachments-browser :is(.min-w-fit){min-width:-moz-fit-content;min-width:fit-content}.ast-attachments-browser :is(.max-w-full){max-width:100%}.ast-attachments-browser :is(.flex-shrink-0){flex-shrink:0}.ast-attachments-browser :is(.-translate-y-2){--tw-translate-y:-0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.translate-y-0){--tw-translate-y:0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.translate-y-2){--tw-translate-y:0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.rotate-180){--tw-rotate:180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.scale-100){--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.scale-95){--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.transform){transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.ast-attachments-browser :is(.animate-pulse){animation:pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite}@keyframes spin{to{transform:rotate(-360deg)}}.ast-attachments-browser :is(.animate-spin){animation:spin 1s linear infinite}.ast-attachments-browser :is(.cursor-not-allowed){cursor:not-allowed}.ast-attachments-browser :is(.cursor-pointer){cursor:pointer}.ast-attachments-browser :is(.auto-rows-auto){grid-auto-rows:auto}.ast-attachments-browser :is(.grid-cols-1){grid-template-columns:repeat(1, minmax(0, 1fr))}.ast-attachments-browser :is(.grid-cols-5){grid-template-columns:repeat(5, minmax(0, 1fr))}.ast-attachments-browser :is(.grid-cols-\[1fr_380px\]){grid-template-columns:1fr 380px}.ast-attachments-browser :is(.grid-rows-1){grid-template-rows:repeat(1, minmax(0, 1fr))}.ast-attachments-browser :is(.flex-col){flex-direction:column}.ast-attachments-browser :is(.place-items-center){place-items:center}.ast-attachments-browser :is(.items-start){align-items:flex-start}.ast-attachments-browser :is(.items-center){align-items:center}.ast-attachments-browser :is(.justify-start){justify-content:flex-start}.ast-attachments-browser :is(.justify-end){justify-content:flex-end}.ast-attachments-browser :is(.justify-center){justify-content:center}.ast-attachments-browser :is(.justify-between){justify-content:space-between}.ast-attachments-browser :is(.gap-2){gap:0.5rem}.ast-attachments-browser :is(.gap-3){gap:0.75rem}.ast-attachments-browser :is(.gap-4){gap:1rem}.ast-attachments-browser :is(.gap-5){gap:1.25rem}.ast-attachments-browser :is(.gap-6){gap:1.5rem}.ast-attachments-browser :is(.\!space-y-2 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0 !important;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;margin-bottom:calc(0.5rem * var(--tw-space-y-reverse)) !important}.ast-attachments-browser :is(.space-y-1 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.25rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.space-y-2 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.5rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.space-y-4 > :not([hidden]) ~ :not([hidden])){--tw-space-y-reverse:0;margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem * var(--tw-space-y-reverse))}.ast-attachments-browser :is(.overflow-hidden){overflow:hidden}.ast-attachments-browser :is(.overflow-y-auto){overflow-y:auto}.ast-attachments-browser :is(.truncate){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ast-attachments-browser :is(.text-nowrap){text-wrap:nowrap}.ast-attachments-browser :is(.\!rounded-md){border-radius:0.375rem !important}.ast-attachments-browser :is(.rounded){border-radius:0.25rem}.ast-attachments-browser :is(.rounded-full){border-radius:9999px}.ast-attachments-browser :is(.rounded-lg){border-radius:0.5rem}.ast-attachments-browser :is(.rounded-md){border-radius:0.375rem}.ast-attachments-browser :is(.rounded-l){border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem}.ast-attachments-browser :is(.rounded-r){border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem}.ast-attachments-browser :is(.\!border-0){border-width:0px !important}.ast-attachments-browser :is(.border){border-width:1px}.ast-attachments-browser :is(.border-0){border-width:0px}.ast-attachments-browser :is(.border-y-0){border-top-width:0px;border-bottom-width:0px}.ast-attachments-browser :is(.border-b-0){border-bottom-width:0px}.ast-attachments-browser :is(.border-l){border-right-width:1px}.ast-attachments-browser :is(.border-r-0){border-left-width:0px}.ast-attachments-browser :is(.border-t){border-top-width:1px}.ast-attachments-browser :is(.border-solid){border-style:solid}.ast-attachments-browser :is(.border-none){border-style:none}.ast-attachments-browser :is(.border-accent){--tw-border-opacity:1;border-color:rgb(34 113 177 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-alert-error){--tw-border-opacity:1;border-color:rgb(239 68 68 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-black\/10){border-color:rgb(0 0 0 / 0.1)}.ast-attachments-browser :is(.border-border-primary){--tw-border-opacity:1;border-color:rgb(209 213 219 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-border-tertiary){--tw-border-opacity:1;border-color:rgb(216 223 233 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-transparent){border-color:transparent}.ast-attachments-browser :is(.border-white){--tw-border-opacity:1;border-color:rgb(255 255 255 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-wp-border){--tw-border-opacity:1;border-color:rgb(220 220 222 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-zip-body-text){--tw-border-opacity:1;border-color:rgb(71 85 105 / var(--tw-border-opacity))}.ast-attachments-browser :is(.border-zip-dark-theme-border){--tw-border-opacity:1;border-color:rgb(51 62 82 / var(--tw-border-opacity))}.ast-attachments-browser :is(.\!bg-transparent){background-color:transparent !important}.ast-attachments-browser :is(.bg-\[\#9E9E9E\]){--tw-bg-opacity:1;background-color:rgb(158 158 158 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-accent){--tw-bg-opacity:1;background-color:rgb(34 113 177 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-border-tertiary){--tw-bg-opacity:1;background-color:rgb(216 223 233 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-slate-300){--tw-bg-opacity:1;background-color:rgb(203 213 225 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-transparent){background-color:transparent}.ast-attachments-browser :is(.bg-white){--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-wp-background){--tw-bg-opacity:1;background-color:rgb(246 247 247 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-zip-body-text){--tw-bg-opacity:1;background-color:rgb(71 85 105 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-zip-dark-theme-border){--tw-bg-opacity:1;background-color:rgb(51 62 82 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.bg-gradient-to-b){background-image:linear-gradient(to bottom, var(--tw-gradient-stops))}.ast-attachments-browser :is(.bg-gradient-to-r){background-image:linear-gradient(to left, var(--tw-gradient-stops))}.ast-attachments-browser :is(.bg-gradient-to-t){background-image:linear-gradient(to top, var(--tw-gradient-stops))}.ast-attachments-browser :is(.from-black\/10){--tw-gradient-from:rgb(0 0 0 / 0.1) var(--tw-gradient-from-position);--tw-gradient-to:rgb(0 0 0 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.ast-attachments-browser :is(.from-gradient-color-1){--tw-gradient-from:#B809A7 var(--tw-gradient-from-position);--tw-gradient-to:rgb(184 9 167 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.ast-attachments-browser :is(.via-gradient-color-2){--tw-gradient-to:rgb(233 11 118 / 0)  var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), #E90B76 var(--tw-gradient-via-position), var(--tw-gradient-to)}.ast-attachments-browser :is(.to-gradient-color-3){--tw-gradient-to:#FC8536 var(--tw-gradient-to-position)}.ast-attachments-browser :is(.to-transparent){--tw-gradient-to:transparent var(--tw-gradient-to-position)}.ast-attachments-browser :is(.object-contain){object-fit:contain}.ast-attachments-browser :is(.object-cover){object-fit:cover}.ast-attachments-browser :is(.p-0){padding:0px}.ast-attachments-browser :is(.p-1){padding:0.25rem}.ast-attachments-browser :is(.p-3){padding:0.75rem}.ast-attachments-browser :is(.p-4){padding:1rem}.ast-attachments-browser :is(.p-6){padding:1.5rem}.ast-attachments-browser :is(.\!py-2){padding-top:0.5rem !important;padding-bottom:0.5rem !important}.ast-attachments-browser :is(.\!py-2\.5){padding-top:0.625rem !important;padding-bottom:0.625rem !important}.ast-attachments-browser :is(.px-2){padding-right:0.5rem;padding-left:0.5rem}.ast-attachments-browser :is(.px-2\.5){padding-right:0.625rem;padding-left:0.625rem}.ast-attachments-browser :is(.px-3){padding-right:0.75rem;padding-left:0.75rem}.ast-attachments-browser :is(.px-4){padding-right:1rem;padding-left:1rem}.ast-attachments-browser :is(.px-5){padding-right:1.25rem;padding-left:1.25rem}.ast-attachments-browser :is(.px-6){padding-right:1.5rem;padding-left:1.5rem}.ast-attachments-browser :is(.py-1){padding-top:0.25rem;padding-bottom:0.25rem}.ast-attachments-browser :is(.py-1\.5){padding-top:0.375rem;padding-bottom:0.375rem}.ast-attachments-browser :is(.py-2){padding-top:0.5rem;padding-bottom:0.5rem}.ast-attachments-browser :is(.py-3){padding-top:0.75rem;padding-bottom:0.75rem}.ast-attachments-browser :is(.pb-5){padding-bottom:1.25rem}.ast-attachments-browser :is(.pl-3){padding-right:0.75rem}.ast-attachments-browser :is(.pl-4){padding-right:1rem}.ast-attachments-browser :is(.pl-5){padding-right:1.25rem}.ast-attachments-browser :is(.pl-6){padding-right:1.5rem}.ast-attachments-browser :is(.pr-10){padding-left:2.5rem}.ast-attachments-browser :is(.pr-2){padding-left:0.5rem}.ast-attachments-browser :is(.pr-3){padding-left:0.75rem}.ast-attachments-browser :is(.pr-4){padding-left:1rem}.ast-attachments-browser :is(.pr-5){padding-left:1.25rem}.ast-attachments-browser :is(.pr-6){padding-left:1.5rem}.ast-attachments-browser :is(.pt-5){padding-top:1.25rem}.ast-attachments-browser :is(.text-center){text-align:center}.ast-attachments-browser :is(.\!text-sm){font-size:0.875rem !important;line-height:1.25rem !important}.ast-attachments-browser :is(.text-\[13px\]){font-size:13px}.ast-attachments-browser :is(.text-base){font-size:1rem;line-height:1.5rem}.ast-attachments-browser :is(.text-sm){font-size:0.875rem;line-height:1.25rem}.ast-attachments-browser :is(.text-xl){font-size:1.25rem;line-height:1.75rem}.ast-attachments-browser :is(.text-xs){font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.font-medium){font-weight:500}.ast-attachments-browser :is(.font-normal){font-weight:400}.ast-attachments-browser :is(.font-semibold){font-weight:600}.ast-attachments-browser :is(.capitalize){text-transform:capitalize}.ast-attachments-browser :is(.\!leading-\[30px\]){line-height:30px !important}.ast-attachments-browser :is(.leading-5){line-height:1.25rem}.ast-attachments-browser :is(.leading-\[150\%\]){line-height:150%}.ast-attachments-browser :is(.leading-\[30px\]){line-height:30px}.ast-attachments-browser :is(.\!text-white\/90){color:rgb(255 255 255 / 0.9) !important}.ast-attachments-browser :is(.text-accent){--tw-text-opacity:1;color:rgb(34 113 177 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-alert-error){--tw-text-opacity:1;color:rgb(239 68 68 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-body-text){--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-border-primary){--tw-text-opacity:1;color:rgb(209 213 219 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-heading-text){--tw-text-opacity:1;color:rgb(3 7 18 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-white){--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-app-heading){--tw-text-opacity:1;color:rgb(15 23 42 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-app-inactive-icon){--tw-text-opacity:1;color:rgb(148 163 184 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-body-text){--tw-text-opacity:1;color:rgb(71 85 105 / var(--tw-text-opacity))}.ast-attachments-browser :is(.text-zip-dark-theme-heading){--tw-text-opacity:1;color:rgb(252 252 253 / var(--tw-text-opacity))}.ast-attachments-browser :is(.underline){text-decoration-line:underline}.ast-attachments-browser :is(.\!no-underline){text-decoration-line:none !important}.ast-attachments-browser :is(.\!opacity-100){opacity:1 !important}.ast-attachments-browser :is(.opacity-0){opacity:0}.ast-attachments-browser :is(.opacity-100){opacity:1}.ast-attachments-browser :is(.opacity-25){opacity:0.25}.ast-attachments-browser :is(.opacity-50){opacity:0.5}.ast-attachments-browser :is(.opacity-70){opacity:0.7}.ast-attachments-browser :is(.opacity-75){opacity:0.75}.ast-attachments-browser :is(.shadow-lg){--tw-shadow:0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.shadow-none){--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.shadow-sm){--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.ast-attachments-browser :is(.\!outline-none){outline:2px solid transparent !important;outline-offset:2px !important}.ast-attachments-browser :is(.outline-none){outline:2px solid transparent;outline-offset:2px}.ast-attachments-browser :is(.ring-1){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.ring-2){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.\!ring-wp-component-border){--tw-ring-opacity:1 !important;--tw-ring-color:rgb(140 143 148 / var(--tw-ring-opacity)) !important}.ast-attachments-browser :is(.ring-accent-wp-primary){--tw-ring-opacity:1;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-black){--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-wp-component-border){--tw-ring-opacity:1;--tw-ring-color:rgb(140 143 148 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.ring-opacity-5){--tw-ring-opacity:0.05}.ast-attachments-browser :is(.grayscale){--tw-grayscale:grayscale(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ast-attachments-browser :is(.filter){filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ast-attachments-browser :is(.transition){transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-all){transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-colors){transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-opacity){transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.transition-transform){transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.ast-attachments-browser :is(.duration-150){transition-duration:150ms}.ast-attachments-browser :is(.duration-200){transition-duration:200ms}.ast-attachments-browser :is(.duration-300){transition-duration:300ms}.ast-attachments-browser :is(.duration-75){transition-duration:75ms}.ast-attachments-browser :is(.ease-in){transition-timing-function:cubic-bezier(0.4, 0, 1, 1)}.ast-attachments-browser :is(.ease-in-out){transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.ast-attachments-browser :is(.ease-out){transition-timing-function:cubic-bezier(0, 0, 0.2, 1)}[id^=__wp-uploader] .ast-attachments-browser * *,[id*=__wp-uploader] .ast-attachments-browser * *{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif !important;box-sizing:border-box}[id^=__wp-uploader]:has(.ast-attachments-browser) .media-frame-content,[id*=__wp-uploader]:has(.ast-attachments-browser) .media-frame-content{bottom:0}[id^=__wp-uploader]:has(.ast-attachments-browser) .media-frame-toolbar,[id*=__wp-uploader]:has(.ast-attachments-browser) .media-frame-toolbar{display:none}[data-tippy-root][id^=tippy-] .zipwp-images-tooltip.tippy-box{border-radius:0.375rem;background-color:rgb(0 0 0 / 0.8);--tw-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}[data-tippy-root][id^=tippy-] .zipwp-images-tooltip>.tippy-content{padding-top:0.25rem;padding-bottom:0.25rem;padding-right:0.5rem;padding-left:0.5rem;font-family:system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.placeholder\:\!text-sm)::placeholder{font-size:0.875rem !important;line-height:1.25rem !important}.ast-attachments-browser :is(.placeholder\:\!text-zip-app-inactive-icon)::placeholder{--tw-text-opacity:1 !important;color:rgb(148 163 184 / var(--tw-text-opacity)) !important}.ast-attachments-browser :is(.before\:absolute)::before{content:var(--tw-content);position:absolute}.ast-attachments-browser :is(.before\:left-2)::before{content:var(--tw-content);right:0.5rem}.ast-attachments-browser :is(.before\:top-2)::before{content:var(--tw-content);top:0.5rem}.ast-attachments-browser :is(.before\:rounded)::before{content:var(--tw-content);border-radius:0.25rem}.ast-attachments-browser :is(.before\:bg-black\/70)::before{content:var(--tw-content);background-color:rgb(0 0 0 / 0.7)}.ast-attachments-browser :is(.before\:px-2)::before{content:var(--tw-content);padding-right:0.5rem;padding-left:0.5rem}.ast-attachments-browser :is(.before\:py-1)::before{content:var(--tw-content);padding-top:0.25rem;padding-bottom:0.25rem}.ast-attachments-browser :is(.before\:text-xs)::before{content:var(--tw-content);font-size:0.75rem;line-height:1rem}.ast-attachments-browser :is(.before\:font-semibold)::before{content:var(--tw-content);font-weight:600}.ast-attachments-browser :is(.before\:text-white)::before{content:var(--tw-content);--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.ast-attachments-browser :is(.before\:content-\[\'Imported\'\])::before{--tw-content:'Imported';content:var(--tw-content)}.ast-attachments-browser :is(.focus-within\:border-accent:focus-within){--tw-border-opacity:1;border-color:rgb(34 113 177 / var(--tw-border-opacity))}.ast-attachments-browser :is(.focus-within\:ring-2:focus-within){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.focus-within\:ring-accent:focus-within){--tw-ring-opacity:1;--tw-ring-color:rgb(34 113 177 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.hover\:scale-125:hover){--tw-scale-x:1.25;--tw-scale-y:1.25;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.ast-attachments-browser :is(.hover\:bg-background-secondary:hover){--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-hover-wp-default:hover){--tw-bg-opacity:1;background-color:rgb(19 94 150 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-white:hover){--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.ast-attachments-browser :is(.hover\:bg-white\/80:hover){background-color:rgb(255 255 255 / 0.8)}.ast-attachments-browser :is(.hover\:text-accent:hover){--tw-text-opacity:1;color:rgb(34 113 177 / var(--tw-text-opacity))}.ast-attachments-browser :is(.focus\:\!outline-none:focus){outline:2px solid transparent !important;outline-offset:2px !important}.ast-attachments-browser :is(.focus\:outline-none:focus){outline:2px solid transparent;outline-offset:2px}.ast-attachments-browser :is(.focus\:\!ring-0:focus){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important}.ast-attachments-browser :is(.focus\:ring-2:focus){--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.ast-attachments-browser :is(.focus\:\!ring-accent-wp-primary:focus){--tw-ring-opacity:1 !important;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity)) !important}.ast-attachments-browser :is(.focus\:ring-accent-wp-primary:focus){--tw-ring-opacity:1;--tw-ring-color:rgb(0 115 170 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.focus-visible\:outline:focus-visible){outline-style:solid}.ast-attachments-browser :is(.focus-visible\:outline-2:focus-visible){outline-width:2px}.ast-attachments-browser :is(.focus-visible\:outline-offset-2:focus-visible){outline-offset:2px}.ast-attachments-browser :is(.focus-visible\:ring-accent:focus-visible){--tw-ring-opacity:1;--tw-ring-color:rgb(34 113 177 / var(--tw-ring-opacity))}.ast-attachments-browser :is(.disabled\:\!cursor-not-allowed:disabled){cursor:not-allowed !important}.ast-attachments-browser :is(.group\/overlay:hover .group-hover\/overlay\:opacity-100){opacity:1}@media (min-width: 768px){.ast-attachments-browser :is(.md\:max-w-\[420px\]){max-width:420px}.ast-attachments-browser :is(.md\:flex-row){flex-direction:row}.ast-attachments-browser :is(.md\:\!py-2){padding-top:0.5rem !important;padding-bottom:0.5rem !important}.ast-attachments-browser :is(.md\:\!py-2\.5){padding-top:0.625rem !important;padding-bottom:0.625rem !important}}.ast-attachments-browser :is(.\[\&\>\*\]\:shrink-0>*){flex-shrink:0}.ast-attachments-browser :is(.\[\&\>div\]\:gap-6>div){gap:1.5rem}
PK�][%��"F�F�;ultimate-addons-for-gutenberg/lib/zipwp-images/dist/main.jsnu�[���(()=>{"use strict";var e,t,n,r={94:(e,t,n)=>{var r=n(609),o=n.t(r,2),i=n.n(r);const a=window.wp.element,l=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"}))})),s=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18 18 6M6 6l12 12"}))})),c=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3"}))})),u=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m19.5 8.25-7.5 7.5-7.5-7.5"}))})),d=window.wp.apiFetch;var f=n.n(d);const p=window.wp.i18n;var m=n(848),h=[640,786,1024,1280,1536],g=(e,t)=>{let n=Object.keys((e=>Array.isArray(e)?(e=>e.reduce(((e,t,n)=>"number"!=typeof t?e:{...e,[h[n]]:t}),{}))(e):e)(e)).map(Number).sort(((e,t)=>e-t)),r=null;for(let e of n)t>e&&(r=e);return null!=r?r:n[0]},v=e=>{let t="object"==typeof e,n=((e=!0)=>{let[t,n]=(0,r.useState)(window.innerWidth),o=(0,r.useCallback)((()=>{n(window.innerWidth)}),[]);return(0,r.useEffect)((()=>(e?window.addEventListener("resize",o):window.removeEventListener("resize",o),()=>{window.removeEventListener("resize",o)})),[e,o]),t})(t);return(0,r.useMemo)((()=>{var r;if(!t)return null!=e?e:3;let o=g(e,n);return null!=(r=e[o])?r:3}),[t,n,e])},b=(0,r.createContext)({column:0,position:0}),y=(0,r.forwardRef)(((e,t)=>{let{gap:n,as:o="div",columnProps:i,columns:a,...l}=e,s=(0,r.useId)(),c=((e,t)=>{let n=v(t);return(0,r.useMemo)((()=>{let t=(e=>Array.from({length:e},(()=>[])))(n);return r.Children.forEach(e,((e,o)=>{(0,r.isValidElement)(e)&&t[o%n].push(e)})),t}),[n,e])})(e.children,a);return(0,m.jsx)(o,{"data-masonry-id":`Masonry-${s}`,...l,style:{display:"flex",gap:n,...l.style},ref:t,children:c.map(((e,t)=>(0,m.jsx)(o,{"data-masonry-column":t+1,...i,style:{display:"flex",flex:1,flexDirection:"column",gap:n,...null==i?void 0:i.style},children:e.map(((e,n)=>(0,m.jsx)(b.Provider,{value:{column:t,position:n},children:e},`Masonry__Column_Child_${s}_${n}`)))},`Masonry__Column_${s}_${t}`)))})})),w=y;function x(){return e=/^Mac/i,"undefined"!=typeof window&&null!=window.navigator&&e.test((null===(t=window.navigator.userAgentData)||void 0===t?void 0:t.platform)||window.navigator.platform);var e,t}function E(e){return!(0!==e.mozInputSource||!e.isTrusted)||(t=/Android/i,"undefined"!=typeof window&&null!=window.navigator&&((null===(n=window.navigator.userAgentData)||void 0===n?void 0:n.brands.some((e=>t.test(e.brand))))||t.test(window.navigator.userAgent))&&e.pointerType?"click"===e.type&&1===e.buttons:0===e.detail&&!e.pointerType);var t,n}const k=e=>{var t;return null!==(t=null==e?void 0:e.ownerDocument)&&void 0!==t?t:document},C=e=>e&&"window"in e&&e.window===e?e:k(e).defaultView||window;let O=null,S=new Set,T=new Map,R=!1,P=!1;const L={Tab:!0,Escape:!0};function N(e,t){for(let n of S)n(e,t)}function I(e){R=!0,function(e){return!(e.metaKey||!x()&&e.altKey||e.ctrlKey||"Control"===e.key||"Shift"===e.key||"Meta"===e.key)}(e)&&(O="keyboard",N("keyboard",e))}function M(e){O="pointer","mousedown"!==e.type&&"pointerdown"!==e.type||(R=!0,N("pointer",e))}function F(e){E(e)&&(R=!0,O="virtual")}function A(e){e.target!==window&&e.target!==document&&(R||P||(O="virtual",N("virtual",e)),R=!1,P=!1)}function j(){R=!1,P=!0}function D(e){if("undefined"==typeof window||T.get(C(e)))return;const t=C(e),n=k(e);let r=t.HTMLElement.prototype.focus;t.HTMLElement.prototype.focus=function(){R=!0,r.apply(this,arguments)},n.addEventListener("keydown",I,!0),n.addEventListener("keyup",I,!0),n.addEventListener("click",F,!0),t.addEventListener("focus",A,!0),t.addEventListener("blur",j,!1),"undefined"!=typeof PointerEvent?(n.addEventListener("pointerdown",M,!0),n.addEventListener("pointermove",M,!0),n.addEventListener("pointerup",M,!0)):(n.addEventListener("mousedown",M,!0),n.addEventListener("mousemove",M,!0),n.addEventListener("mouseup",M,!0)),t.addEventListener("beforeunload",(()=>{z(e)}),{once:!0}),T.set(t,{focus:r})}const z=(e,t)=>{const n=C(e),r=k(e);t&&r.removeEventListener("DOMContentLoaded",t),T.has(n)&&(n.HTMLElement.prototype.focus=T.get(n).focus,r.removeEventListener("keydown",I,!0),r.removeEventListener("keyup",I,!0),r.removeEventListener("click",F,!0),n.removeEventListener("focus",A,!0),n.removeEventListener("blur",j,!1),"undefined"!=typeof PointerEvent?(r.removeEventListener("pointerdown",M,!0),r.removeEventListener("pointermove",M,!0),r.removeEventListener("pointerup",M,!0)):(r.removeEventListener("mousedown",M,!0),r.removeEventListener("mousemove",M,!0),r.removeEventListener("mouseup",M,!0)),T.delete(n))};function H(){return"pointer"!==O}"undefined"!=typeof document&&function(e){const t=k(e);let n;"loading"!==t.readyState?D(e):(n=()=>{D(e)},t.addEventListener("DOMContentLoaded",n))}();const W=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);const B="undefined"!=typeof document?r.useLayoutEffect:()=>{};class V{isDefaultPrevented(){return this.nativeEvent.defaultPrevented}preventDefault(){this.defaultPrevented=!0,this.nativeEvent.preventDefault()}stopPropagation(){this.nativeEvent.stopPropagation(),this.isPropagationStopped=()=>!0}isPropagationStopped(){return!1}persist(){}constructor(e,t){this.nativeEvent=t,this.target=t.target,this.currentTarget=t.currentTarget,this.relatedTarget=t.relatedTarget,this.bubbles=t.bubbles,this.cancelable=t.cancelable,this.defaultPrevented=t.defaultPrevented,this.eventPhase=t.eventPhase,this.isTrusted=t.isTrusted,this.timeStamp=t.timeStamp,this.type=e}}function $(e){let t=(0,r.useRef)({isFocused:!1,observer:null});B((()=>{const e=t.current;return()=>{e.observer&&(e.observer.disconnect(),e.observer=null)}}),[]);let n=function(e){const t=(0,r.useRef)(null);return B((()=>{t.current=e}),[e]),(0,r.useCallback)(((...e)=>{const n=t.current;return null==n?void 0:n(...e)}),[])}((t=>{null==e||e(t)}));return(0,r.useCallback)((e=>{if(e.target instanceof HTMLButtonElement||e.target instanceof HTMLInputElement||e.target instanceof HTMLTextAreaElement||e.target instanceof HTMLSelectElement){t.current.isFocused=!0;let r=e.target,o=e=>{t.current.isFocused=!1,r.disabled&&n(new V("blur",e)),t.current.observer&&(t.current.observer.disconnect(),t.current.observer=null)};r.addEventListener("focusout",o,{once:!0}),t.current.observer=new MutationObserver((()=>{if(t.current.isFocused&&r.disabled){var e;null===(e=t.current.observer)||void 0===e||e.disconnect();let n=r===document.activeElement?null:document.activeElement;r.dispatchEvent(new FocusEvent("blur",{relatedTarget:n})),r.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:n}))}})),t.current.observer.observe(r,{attributes:!0,attributeFilter:["disabled"]})}}),[n])}function U(e={}){let{autoFocus:t=!1,isTextInput:n,within:o}=e,i=(0,r.useRef)({isFocused:!1,isFocusVisible:t||H()}),[a,l]=(0,r.useState)(!1),[s,c]=(0,r.useState)((()=>i.current.isFocused&&i.current.isFocusVisible)),u=(0,r.useCallback)((()=>c(i.current.isFocused&&i.current.isFocusVisible)),[]),d=(0,r.useCallback)((e=>{i.current.isFocused=e,l(e),u()}),[u]);var f,p,m;f=e=>{i.current.isFocusVisible=e,u()},p=[],m={isTextInput:n},D(),(0,r.useEffect)((()=>{let e=(e,t)=>{(function(e,t,n){var r;const o="undefined"!=typeof window?C(null==n?void 0:n.target).HTMLInputElement:HTMLInputElement,i="undefined"!=typeof window?C(null==n?void 0:n.target).HTMLTextAreaElement:HTMLTextAreaElement,a="undefined"!=typeof window?C(null==n?void 0:n.target).HTMLElement:HTMLElement,l="undefined"!=typeof window?C(null==n?void 0:n.target).KeyboardEvent:KeyboardEvent;return!((e=e||(null==n?void 0:n.target)instanceof o&&!W.has(null==n||null===(r=n.target)||void 0===r?void 0:r.type)||(null==n?void 0:n.target)instanceof i||(null==n?void 0:n.target)instanceof a&&(null==n?void 0:n.target.isContentEditable))&&"keyboard"===t&&n instanceof l&&!L[n.key])})(!!(null==m?void 0:m.isTextInput),e,t)&&f(H())};return S.add(e),()=>{S.delete(e)}}),p);let{focusProps:h}=function(e){let{isDisabled:t,onFocus:n,onBlur:o,onFocusChange:i}=e;const a=(0,r.useCallback)((e=>{if(e.target===e.currentTarget)return o&&o(e),i&&i(!1),!0}),[o,i]),l=$(a),s=(0,r.useCallback)((e=>{const t=k(e.target);e.target===e.currentTarget&&t.activeElement===e.target&&(n&&n(e),i&&i(!0),l(e))}),[i,n,l]);return{focusProps:{onFocus:!t&&(n||i||o)?s:void 0,onBlur:t||!o&&!i?void 0:a}}}({isDisabled:o,onFocusChange:d}),{focusWithinProps:g}=function(e){let{isDisabled:t,onBlurWithin:n,onFocusWithin:o,onFocusWithinChange:i}=e,a=(0,r.useRef)({isFocusWithin:!1}),l=(0,r.useCallback)((e=>{a.current.isFocusWithin&&!e.currentTarget.contains(e.relatedTarget)&&(a.current.isFocusWithin=!1,n&&n(e),i&&i(!1))}),[n,i,a]),s=$(l),c=(0,r.useCallback)((e=>{a.current.isFocusWithin||document.activeElement!==e.target||(o&&o(e),i&&i(!0),a.current.isFocusWithin=!0,s(e))}),[o,i,s]);return t?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:c,onBlur:l}}}({isDisabled:!o,onFocusWithinChange:d});return{isFocused:a,isFocusVisible:s,focusProps:o?g:h}}let q=!1,G=0;function K(){q=!0,setTimeout((()=>{q=!1}),50)}function Y(e){"touch"===e.pointerType&&K()}function X(){if("undefined"!=typeof document)return"undefined"!=typeof PointerEvent?document.addEventListener("pointerup",Y):document.addEventListener("touchend",K),G++,()=>{G--,G>0||("undefined"!=typeof PointerEvent?document.removeEventListener("pointerup",Y):document.removeEventListener("touchend",K))}}function Q(e){let{onHoverStart:t,onHoverChange:n,onHoverEnd:o,isDisabled:i}=e,[a,l]=(0,r.useState)(!1),s=(0,r.useRef)({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;(0,r.useEffect)(X,[]);let{hoverProps:c,triggerHoverEnd:u}=(0,r.useMemo)((()=>{let e=(e,r)=>{if(s.pointerType=r,i||"touch"===r||s.isHovered||!e.currentTarget.contains(e.target))return;s.isHovered=!0;let o=e.currentTarget;s.target=o,t&&t({type:"hoverstart",target:o,pointerType:r}),n&&n(!0),l(!0)},r=(e,t)=>{if(s.pointerType="",s.target=null,"touch"===t||!s.isHovered)return;s.isHovered=!1;let r=e.currentTarget;o&&o({type:"hoverend",target:r,pointerType:t}),n&&n(!1),l(!1)},a={};return"undefined"!=typeof PointerEvent?(a.onPointerEnter=t=>{q&&"mouse"===t.pointerType||e(t,t.pointerType)},a.onPointerLeave=e=>{!i&&e.currentTarget.contains(e.target)&&r(e,e.pointerType)}):(a.onTouchStart=()=>{s.ignoreEmulatedMouseEvents=!0},a.onMouseEnter=t=>{s.ignoreEmulatedMouseEvents||q||e(t,"mouse"),s.ignoreEmulatedMouseEvents=!1},a.onMouseLeave=e=>{!i&&e.currentTarget.contains(e.target)&&r(e,"mouse")}),{hoverProps:a,triggerHoverEnd:r}}),[t,n,o,i,s]);return(0,r.useEffect)((()=>{i&&u({currentTarget:s.target},s.pointerType)}),[i]),{hoverProps:c,isHovered:a}}var Z=Object.defineProperty,J=(e,t,n)=>(((e,t,n)=>{t in e?Z(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n})(e,"symbol"!=typeof t?t+"":t,n),n);let ee=new class{constructor(){J(this,"current",this.detect()),J(this,"handoffState","pending"),J(this,"currentId",0)}set(e){this.current!==e&&(this.handoffState="pending",this.currentId=0,this.current=e)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return"server"===this.current}get isClient(){return"client"===this.current}detect(){return"undefined"==typeof window||"undefined"==typeof document?"server":"client"}handoff(){"pending"===this.handoffState&&(this.handoffState="complete")}get isHandoffComplete(){return"complete"===this.handoffState}};function te(e){return ee.isServer?null:e instanceof Node?e.ownerDocument:null!=e&&e.hasOwnProperty("current")&&e.current instanceof Node?e.current.ownerDocument:document}function ne(e){"function"==typeof queueMicrotask?queueMicrotask(e):Promise.resolve().then(e).catch((e=>setTimeout((()=>{throw e}))))}function re(){let e=[],t={addEventListener:(e,n,r,o)=>(e.addEventListener(n,r,o),t.add((()=>e.removeEventListener(n,r,o)))),requestAnimationFrame(...e){let n=requestAnimationFrame(...e);return t.add((()=>cancelAnimationFrame(n)))},nextFrame:(...e)=>t.requestAnimationFrame((()=>t.requestAnimationFrame(...e))),setTimeout(...e){let n=setTimeout(...e);return t.add((()=>clearTimeout(n)))},microTask(...e){let n={current:!0};return ne((()=>{n.current&&e[0]()})),t.add((()=>{n.current=!1}))},style(e,t,n){let r=e.style.getPropertyValue(t);return Object.assign(e.style,{[t]:n}),this.add((()=>{Object.assign(e.style,{[t]:r})}))},group(e){let t=re();return e(t),this.add((()=>t.dispose()))},add:t=>(e.includes(t)||e.push(t),()=>{let n=e.indexOf(t);if(n>=0)for(let t of e.splice(n,1))t()}),dispose(){for(let t of e.splice(0))t()}};return t}function oe(){let[e]=(0,r.useState)(re);return(0,r.useEffect)((()=>()=>e.dispose()),[e]),e}let ie=(e,t)=>{ee.isServer?(0,r.useEffect)(e,t):(0,r.useLayoutEffect)(e,t)};function ae(e){let t=(0,r.useRef)(e);return ie((()=>{t.current=e}),[e]),t}let le=function(e){let t=ae(e);return r.useCallback(((...e)=>t.current(...e)),[t])};function se(e,t=!1){let n=null===e?null:"current"in e?e.current:e,[o,i]=(0,r.useReducer)((()=>({})),{}),a=(0,r.useMemo)((()=>function(e){if(null===e)return{width:0,height:0};let{width:t,height:n}=e.getBoundingClientRect();return{width:t,height:n}}(n)),[n,o]);return ie((()=>{if(!n)return;let e=new ResizeObserver(i);return e.observe(n),()=>{e.disconnect()}}),[n]),t?{width:`${a.width}px`,height:`${a.height}px`}:a}let ce=new Map,ue=new Map;function de(e){var t;let n=null!=(t=ue.get(e))?t:0;return ue.set(e,n+1),0!==n||(ce.set(e,{"aria-hidden":e.getAttribute("aria-hidden"),inert:e.inert}),e.setAttribute("aria-hidden","true"),e.inert=!0),()=>function(e){var t;let n=null!=(t=ue.get(e))?t:1;if(1===n?ue.delete(e):ue.set(e,n-1),1!==n)return;let r=ce.get(e);r&&(null===r["aria-hidden"]?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",r["aria-hidden"]),e.inert=r.inert,ce.delete(e))}(e)}function fe({allowed:e,disallowed:t}={},n=!0){ie((()=>{var r,o;if(!n)return;let i=re();for(let e of null!=(r=null==t?void 0:t())?r:[])e&&i.add(de(e));let a=null!=(o=null==e?void 0:e())?o:[];for(let e of a){if(!e)continue;let t=te(e);if(!t)continue;let n=e.parentElement;for(;n&&n!==t.body;){for(let e of n.children)a.some((t=>e.contains(t)))||i.add(de(e));n=n.parentElement}}return i.dispose}),[n,e,t])}function pe(e,t,n=!0){let o=ae((e=>{let n=e.getBoundingClientRect();0===n.x&&0===n.y&&0===n.width&&0===n.height&&t()}));(0,r.useEffect)((()=>{if(!n)return;let t=null===e?null:e instanceof HTMLElement?e:e.current;if(!t)return;let r=re();if("undefined"!=typeof ResizeObserver){let e=new ResizeObserver((()=>o.current(t)));e.observe(t),r.add((()=>e.disconnect()))}if("undefined"!=typeof IntersectionObserver){let e=new IntersectionObserver((()=>o.current(t)));e.observe(t),r.add((()=>e.disconnect()))}return()=>r.dispose()}),[e,o,n])}function me(e,t,...n){if(e in t){let r=t[e];return"function"==typeof r?r(...n):r}let r=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,me),r}let he=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(","),ge=["[data-autofocus]"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var ve,be,ye=(e=>(e[e.First=1]="First",e[e.Previous=2]="Previous",e[e.Next=4]="Next",e[e.Last=8]="Last",e[e.WrapAround=16]="WrapAround",e[e.NoScroll=32]="NoScroll",e[e.AutoFocus=64]="AutoFocus",e))(ye||{}),we=((be=we||{})[be.Error=0]="Error",be[be.Overflow=1]="Overflow",be[be.Success=2]="Success",be[be.Underflow=3]="Underflow",be),xe=((ve=xe||{})[ve.Previous=-1]="Previous",ve[ve.Next=1]="Next",ve);function Ee(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(he)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}var ke=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(ke||{});function Ce(e,t=0){var n;return e!==(null==(n=te(e))?void 0:n.body)&&me(t,{0:()=>e.matches(he),1(){let t=e;for(;null!==t;){if(t.matches(he))return!0;t=t.parentElement}return!1}})}function Oe(e){let t=te(e);re().nextFrame((()=>{t&&!Ce(t.activeElement,0)&&function(e){null==e||e.focus({preventScroll:!0})}(e)}))}var Se=(e=>(e[e.Keyboard=0]="Keyboard",e[e.Mouse=1]="Mouse",e))(Se||{});"undefined"!=typeof window&&"undefined"!=typeof document&&(document.addEventListener("keydown",(e=>{e.metaKey||e.altKey||e.ctrlKey||(document.documentElement.dataset.headlessuiFocusVisible="")}),!0),document.addEventListener("click",(e=>{1===e.detail?delete document.documentElement.dataset.headlessuiFocusVisible:0===e.detail&&(document.documentElement.dataset.headlessuiFocusVisible="")}),!0));let Te=["textarea","input"].join(",");function Re(e,t=(e=>e)){return e.slice().sort(((e,n)=>{let r=t(e),o=t(n);if(null===r||null===o)return 0;let i=r.compareDocumentPosition(o);return i&Node.DOCUMENT_POSITION_FOLLOWING?-1:i&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}function Pe(e,t,{sorted:n=!0,relativeTo:r=null,skipElements:o=[]}={}){let i=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e.ownerDocument,a=Array.isArray(e)?n?Re(e):e:64&t?function(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(ge)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}(e):Ee(e);o.length>0&&a.length>1&&(a=a.filter((e=>!o.some((t=>null!=t&&"current"in t?(null==t?void 0:t.current)===e:t===e))))),r=null!=r?r:i.activeElement;let l,s=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,a.indexOf(r))-1;if(4&t)return Math.max(0,a.indexOf(r))+1;if(8&t)return a.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=32&t?{preventScroll:!0}:{},d=0,f=a.length;do{if(d>=f||d+f<=0)return 0;let e=c+d;if(16&t)e=(e+f)%f;else{if(e<0)return 3;if(e>=f)return 1}l=a[e],null==l||l.focus(u),d+=s}while(l!==i.activeElement);return 6&t&&function(e){var t,n;return null!=(n=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,Te))&&n}(l)&&l.select(),2}function Le(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}function Ne(e,t,n){let o=ae(t);(0,r.useEffect)((()=>{function t(e){o.current(e)}return document.addEventListener(e,t,n),()=>document.removeEventListener(e,t,n)}),[e,n])}function Ie(e,t,n=!0){let o=(0,r.useRef)(!1);function i(n,r){if(!o.current||n.defaultPrevented)return;let i=r(n);if(null===i||!i.getRootNode().contains(i)||!i.isConnected)return;let a=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(e);for(let e of a){if(null===e)continue;let t=e instanceof HTMLElement?e:e.current;if(null!=t&&t.contains(i)||n.composed&&n.composedPath().includes(t))return}return!Ce(i,ke.Loose)&&-1!==i.tabIndex&&n.preventDefault(),t(n,i)}(0,r.useEffect)((()=>{requestAnimationFrame((()=>{o.current=n}))}),[n]);let a=(0,r.useRef)(null);Ne("pointerdown",(e=>{var t,n;o.current&&(a.current=(null==(n=null==(t=e.composedPath)?void 0:t.call(e))?void 0:n[0])||e.target)}),!0),Ne("mousedown",(e=>{var t,n;o.current&&(a.current=(null==(n=null==(t=e.composedPath)?void 0:t.call(e))?void 0:n[0])||e.target)}),!0),Ne("click",(e=>{Le()||/Android/gi.test(window.navigator.userAgent)||a.current&&(i(e,(()=>a.current)),a.current=null)}),!0),Ne("touchend",(e=>i(e,(()=>e.target instanceof HTMLElement?e.target:null))),!0),function(e,t,n){let o=ae((e=>i(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))));(0,r.useEffect)((()=>{function t(e){o.current(e)}return window.addEventListener(e,t,n),()=>window.removeEventListener(e,t,n)}),[e,n])}("blur",0,!0)}function Me(...e){return(0,r.useMemo)((()=>te(...e)),[...e])}function Fe(e){var t;if(e.type)return e.type;let n=null!=(t=e.as)?t:"button";return"string"==typeof n&&"button"===n.toLowerCase()?"button":void 0}function Ae(e,t){let[n,o]=(0,r.useState)((()=>Fe(e)));return ie((()=>{o(Fe(e))}),[e.type,e.as]),ie((()=>{n||t.current&&t.current instanceof HTMLButtonElement&&!t.current.hasAttribute("type")&&o("button")}),[n,t]),n}function je(){let e;return{before({doc:t}){var n;let r=t.documentElement,o=null!=(n=t.defaultView)?n:window;e=Math.max(0,o.innerWidth-r.clientWidth)},after({doc:t,d:n}){let r=t.documentElement,o=Math.max(0,r.clientWidth-r.offsetWidth),i=Math.max(0,e-o);n.style(r,"paddingRight",`${i}px`)}}}function De(e){let t={};for(let n of e)Object.assign(t,n(t));return t}let _e=function(e,t){let n=new Map,r=new Set;return{getSnapshot:()=>n,subscribe:e=>(r.add(e),()=>r.delete(e)),dispatch(e,...o){let i=t[e].call(n,...o);i&&(n=i,r.forEach((e=>e())))}}}(0,{PUSH(e,t){var n;let r=null!=(n=this.get(e))?n:{doc:e,count:0,d:re(),meta:new Set};return r.count++,r.meta.add(t),this.set(e,r),this},POP(e,t){let n=this.get(e);return n&&(n.count--,n.meta.delete(t)),this},SCROLL_PREVENT({doc:e,d:t,meta:n}){let r={doc:e,d:t,meta:De(n)},o=[Le()?{before({doc:e,d:t,meta:n}){function r(e){return n.containers.flatMap((e=>e())).some((t=>t.contains(e)))}t.microTask((()=>{var n;if("auto"!==window.getComputedStyle(e.documentElement).scrollBehavior){let n=re();n.style(e.documentElement,"scrollBehavior","auto"),t.add((()=>t.microTask((()=>n.dispose()))))}let o=null!=(n=window.scrollY)?n:window.pageYOffset,i=null;t.addEventListener(e,"click",(t=>{if(t.target instanceof HTMLElement)try{let n=t.target.closest("a");if(!n)return;let{hash:o}=new URL(n.href),a=e.querySelector(o);a&&!r(a)&&(i=a)}catch{}}),!0),t.addEventListener(e,"touchstart",(e=>{if(e.target instanceof HTMLElement)if(r(e.target)){let n=e.target;for(;n.parentElement&&r(n.parentElement);)n=n.parentElement;t.style(n,"overscrollBehavior","contain")}else t.style(e.target,"touchAction","none")})),t.addEventListener(e,"touchmove",(e=>{if(e.target instanceof HTMLElement){if("INPUT"===e.target.tagName)return;if(r(e.target)){let t=e.target;for(;t.parentElement&&""!==t.dataset.headlessuiPortal&&!(t.scrollHeight>t.clientHeight||t.scrollWidth>t.clientWidth);)t=t.parentElement;""===t.dataset.headlessuiPortal&&e.preventDefault()}else e.preventDefault()}}),{passive:!1}),t.add((()=>{var e;let t=null!=(e=window.scrollY)?e:window.pageYOffset;o!==t&&window.scrollTo(0,o),i&&i.isConnected&&(i.scrollIntoView({block:"nearest"}),i=null)}))}))}}:{},je(),{before({doc:e,d:t}){t.style(e.documentElement,"overflow","hidden")}}];o.forEach((({before:e})=>null==e?void 0:e(r))),o.forEach((({after:e})=>null==e?void 0:e(r)))},SCROLL_ALLOW({d:e}){e.dispose()},TEARDOWN({doc:e}){this.delete(e)}});_e.subscribe((()=>{let e=_e.getSnapshot(),t=new Map;for(let[n]of e)t.set(n,n.documentElement.style.overflow);for(let n of e.values()){let e="hidden"===t.get(n.doc),r=0!==n.count;(r&&!e||!r&&e)&&_e.dispatch(n.count>0?"SCROLL_PREVENT":"SCROLL_ALLOW",n),0===n.count&&_e.dispatch("TEARDOWN",n)}}));let ze=Symbol();function He(...e){let t=(0,r.useRef)(e);(0,r.useEffect)((()=>{t.current=e}),[e]);let n=le((e=>{for(let n of t.current)null!=n&&("function"==typeof n?n(e):n.current=e)}));return e.every((e=>null==e||(null==e?void 0:e[ze])))?void 0:n}let We=/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g;function Be(e){var t,n;let r=null!=(t=e.innerText)?t:"",o=e.cloneNode(!0);if(!(o instanceof HTMLElement))return r;let i=!1;for(let e of o.querySelectorAll('[hidden],[aria-hidden],[role="img"]'))e.remove(),i=!0;let a=i?null!=(n=o.innerText)?n:"":r;return We.test(a)&&(a=a.replace(We,"")),a}function Ve(e){return[e.screenX,e.screenY]}const $e=Math.min,Ue=Math.max,qe=Math.round,Ge=Math.floor,Ke=e=>({x:e,y:e}),Ye={left:"right",right:"left",bottom:"top",top:"bottom"},Xe={start:"end",end:"start"};function Qe(e,t,n){return Ue(e,$e(t,n))}function Ze(e,t){return"function"==typeof e?e(t):e}function Je(e){return e.split("-")[0]}function et(e){return e.split("-")[1]}function tt(e){return"x"===e?"y":"x"}function nt(e){return"y"===e?"height":"width"}function rt(e){return["top","bottom"].includes(Je(e))?"y":"x"}function ot(e){return tt(rt(e))}function it(e){return e.replace(/start|end/g,(e=>Xe[e]))}function at(e){return e.replace(/left|right|bottom|top/g,(e=>Ye[e]))}function lt(e){const{x:t,y:n,width:r,height:o}=e;return{width:r,height:o,top:n,left:t,right:t+r,bottom:n+o,x:t,y:n}}function st(e,t,n){let{reference:r,floating:o}=e;const i=rt(t),a=ot(t),l=nt(a),s=Je(t),c="y"===i,u=r.x+r.width/2-o.width/2,d=r.y+r.height/2-o.height/2,f=r[l]/2-o[l]/2;let p;switch(s){case"top":p={x:u,y:r.y-o.height};break;case"bottom":p={x:u,y:r.y+r.height};break;case"right":p={x:r.x+r.width,y:d};break;case"left":p={x:r.x-o.width,y:d};break;default:p={x:r.x,y:r.y}}switch(et(t)){case"start":p[a]-=f*(n&&c?-1:1);break;case"end":p[a]+=f*(n&&c?-1:1)}return p}async function ct(e,t){var n;void 0===t&&(t={});const{x:r,y:o,platform:i,rects:a,elements:l,strategy:s}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:f=!1,padding:p=0}=Ze(t,e),m=function(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}(p),h=l[f?"floating"===d?"reference":"floating":d],g=lt(await i.getClippingRect({element:null==(n=await(null==i.isElement?void 0:i.isElement(h)))||n?h:h.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(l.floating)),boundary:c,rootBoundary:u,strategy:s})),v="floating"===d?{x:r,y:o,width:a.floating.width,height:a.floating.height}:a.reference,b=await(null==i.getOffsetParent?void 0:i.getOffsetParent(l.floating)),y=await(null==i.isElement?void 0:i.isElement(b))&&await(null==i.getScale?void 0:i.getScale(b))||{x:1,y:1},w=lt(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:l,rect:v,offsetParent:b,strategy:s}):v);return{top:(g.top-w.top+m.top)/y.y,bottom:(w.bottom-g.bottom+m.bottom)/y.y,left:(g.left-w.left+m.left)/y.x,right:(w.right-g.right+m.right)/y.x}}function ut(e){return pt(e)?(e.nodeName||"").toLowerCase():"#document"}function dt(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function ft(e){var t;return null==(t=(pt(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function pt(e){return e instanceof Node||e instanceof dt(e).Node}function mt(e){return e instanceof Element||e instanceof dt(e).Element}function ht(e){return e instanceof HTMLElement||e instanceof dt(e).HTMLElement}function gt(e){return"undefined"!=typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof dt(e).ShadowRoot)}function vt(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=Et(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(o)}function bt(e){return["table","td","th"].includes(ut(e))}function yt(e){const t=wt(),n=Et(e);return"none"!==n.transform||"none"!==n.perspective||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function wt(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function xt(e){return["html","body","#document"].includes(ut(e))}function Et(e){return dt(e).getComputedStyle(e)}function kt(e){return mt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Ct(e){if("html"===ut(e))return e;const t=e.assignedSlot||e.parentNode||gt(e)&&e.host||ft(e);return gt(t)?t.host:t}function Ot(e){const t=Ct(e);return xt(t)?e.ownerDocument?e.ownerDocument.body:e.body:ht(t)&&vt(t)?t:Ot(t)}function St(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);const o=Ot(e),i=o===(null==(r=e.ownerDocument)?void 0:r.body),a=dt(o);return i?t.concat(a,a.visualViewport||[],vt(o)?o:[],a.frameElement&&n?St(a.frameElement):[]):t.concat(o,St(o,[],n))}function Tt(e){const t=Et(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=ht(e),i=o?e.offsetWidth:n,a=o?e.offsetHeight:r,l=qe(n)!==i||qe(r)!==a;return l&&(n=i,r=a),{width:n,height:r,$:l}}function Rt(e){return mt(e)?e:e.contextElement}function Pt(e){const t=Rt(e);if(!ht(t))return Ke(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:i}=Tt(t);let a=(i?qe(n.width):n.width)/r,l=(i?qe(n.height):n.height)/o;return a&&Number.isFinite(a)||(a=1),l&&Number.isFinite(l)||(l=1),{x:a,y:l}}const Lt=Ke(0);function Nt(e){const t=dt(e);return wt()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:Lt}function It(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const o=e.getBoundingClientRect(),i=Rt(e);let a=Ke(1);t&&(r?mt(r)&&(a=Pt(r)):a=Pt(e));const l=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==dt(e))&&t}(i,n,r)?Nt(i):Ke(0);let s=(o.left+l.x)/a.x,c=(o.top+l.y)/a.y,u=o.width/a.x,d=o.height/a.y;if(i){const e=dt(i),t=r&&mt(r)?dt(r):r;let n=e,o=n.frameElement;for(;o&&r&&t!==n;){const e=Pt(o),t=o.getBoundingClientRect(),r=Et(o),i=t.left+(o.clientLeft+parseFloat(r.paddingLeft))*e.x,a=t.top+(o.clientTop+parseFloat(r.paddingTop))*e.y;s*=e.x,c*=e.y,u*=e.x,d*=e.y,s+=i,c+=a,n=dt(o),o=n.frameElement}}return lt({width:u,height:d,x:s,y:c})}const Mt=[":popover-open",":modal"];function Ft(e){return Mt.some((t=>{try{return e.matches(t)}catch(e){return!1}}))}function At(e){return It(ft(e)).left+kt(e).scrollLeft}function jt(e,t,n){let r;if("viewport"===t)r=function(e,t){const n=dt(e),r=ft(e),o=n.visualViewport;let i=r.clientWidth,a=r.clientHeight,l=0,s=0;if(o){i=o.width,a=o.height;const e=wt();(!e||e&&"fixed"===t)&&(l=o.offsetLeft,s=o.offsetTop)}return{width:i,height:a,x:l,y:s}}(e,n);else if("document"===t)r=function(e){const t=ft(e),n=kt(e),r=e.ownerDocument.body,o=Ue(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=Ue(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let a=-n.scrollLeft+At(e);const l=-n.scrollTop;return"rtl"===Et(r).direction&&(a+=Ue(t.clientWidth,r.clientWidth)-o),{width:o,height:i,x:a,y:l}}(ft(e));else if(mt(t))r=function(e,t){const n=It(e,!0,"fixed"===t),r=n.top+e.clientTop,o=n.left+e.clientLeft,i=ht(e)?Pt(e):Ke(1);return{width:e.clientWidth*i.x,height:e.clientHeight*i.y,x:o*i.x,y:r*i.y}}(t,n);else{const n=Nt(e);r={...t,x:t.x-n.x,y:t.y-n.y}}return lt(r)}function Dt(e,t){const n=Ct(e);return!(n===t||!mt(n)||xt(n))&&("fixed"===Et(n).position||Dt(n,t))}function _t(e,t,n){const r=ht(t),o=ft(t),i="fixed"===n,a=It(e,!0,i,t);let l={scrollLeft:0,scrollTop:0};const s=Ke(0);if(r||!r&&!i)if(("body"!==ut(t)||vt(o))&&(l=kt(t)),r){const e=It(t,!0,i,t);s.x=e.x+t.clientLeft,s.y=e.y+t.clientTop}else o&&(s.x=At(o));return{x:a.left+l.scrollLeft-s.x,y:a.top+l.scrollTop-s.y,width:a.width,height:a.height}}function zt(e){return"static"===Et(e).position}function Ht(e,t){return ht(e)&&"fixed"!==Et(e).position?t?t(e):e.offsetParent:null}function Wt(e,t){const n=dt(e);if(Ft(e))return n;if(!ht(e)){let t=Ct(e);for(;t&&!xt(t);){if(mt(t)&&!zt(t))return t;t=Ct(t)}return n}let r=Ht(e,t);for(;r&&bt(r)&&zt(r);)r=Ht(r,t);return r&&xt(r)&&zt(r)&&!yt(r)?n:r||function(e){let t=Ct(e);for(;ht(t)&&!xt(t);){if(yt(t))return t;t=Ct(t)}return null}(e)||n}const Bt={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:n,offsetParent:r,strategy:o}=e;const i="fixed"===o,a=ft(r),l=!!t&&Ft(t.floating);if(r===a||l&&i)return n;let s={scrollLeft:0,scrollTop:0},c=Ke(1);const u=Ke(0),d=ht(r);if((d||!d&&!i)&&(("body"!==ut(r)||vt(a))&&(s=kt(r)),ht(r))){const e=It(r);c=Pt(r),u.x=e.x+r.clientLeft,u.y=e.y+r.clientTop}return{width:n.width*c.x,height:n.height*c.y,x:n.x*c.x-s.scrollLeft*c.x+u.x,y:n.y*c.y-s.scrollTop*c.y+u.y}},getDocumentElement:ft,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const i=[..."clippingAncestors"===n?Ft(t)?[]:function(e,t){const n=t.get(e);if(n)return n;let r=St(e,[],!1).filter((e=>mt(e)&&"body"!==ut(e))),o=null;const i="fixed"===Et(e).position;let a=i?Ct(e):e;for(;mt(a)&&!xt(a);){const t=Et(a),n=yt(a);n||"fixed"!==t.position||(o=null),(i?!n&&!o:!n&&"static"===t.position&&o&&["absolute","fixed"].includes(o.position)||vt(a)&&!n&&Dt(e,a))?r=r.filter((e=>e!==a)):o=t,a=Ct(a)}return t.set(e,r),r}(t,this._c):[].concat(n),r],a=i[0],l=i.reduce(((e,n)=>{const r=jt(t,n,o);return e.top=Ue(r.top,e.top),e.right=$e(r.right,e.right),e.bottom=$e(r.bottom,e.bottom),e.left=Ue(r.left,e.left),e}),jt(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:Wt,getElementRects:async function(e){const t=this.getOffsetParent||Wt,n=this.getDimensions,r=await n(e.floating);return{reference:_t(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:t,height:n}=Tt(e);return{width:t,height:n}},getScale:Pt,isElement:mt,isRTL:function(e){return"rtl"===Et(e).direction}};function Vt(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:o=!0,ancestorResize:i=!0,elementResize:a="function"==typeof ResizeObserver,layoutShift:l="function"==typeof IntersectionObserver,animationFrame:s=!1}=r,c=Rt(e),u=o||i?[...c?St(c):[],...St(t)]:[];u.forEach((e=>{o&&e.addEventListener("scroll",n,{passive:!0}),i&&e.addEventListener("resize",n)}));const d=c&&l?function(e,t){let n,r=null;const o=ft(e);function i(){var e;clearTimeout(n),null==(e=r)||e.disconnect(),r=null}return function a(l,s){void 0===l&&(l=!1),void 0===s&&(s=1),i();const{left:c,top:u,width:d,height:f}=e.getBoundingClientRect();if(l||t(),!d||!f)return;const p={rootMargin:-Ge(u)+"px "+-Ge(o.clientWidth-(c+d))+"px "+-Ge(o.clientHeight-(u+f))+"px "+-Ge(c)+"px",threshold:Ue(0,$e(1,s))||1};let m=!0;function h(e){const t=e[0].intersectionRatio;if(t!==s){if(!m)return a();t?a(!1,t):n=setTimeout((()=>{a(!1,1e-7)}),1e3)}m=!1}try{r=new IntersectionObserver(h,{...p,root:o.ownerDocument})}catch(e){r=new IntersectionObserver(h,p)}r.observe(e)}(!0),i}(c,n):null;let f,p=-1,m=null;a&&(m=new ResizeObserver((e=>{let[r]=e;r&&r.target===c&&m&&(m.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame((()=>{var e;null==(e=m)||e.observe(t)}))),n()})),c&&!s&&m.observe(c),m.observe(t));let h=s?It(e):null;return s&&function t(){const r=It(e);!h||r.x===h.x&&r.y===h.y&&r.width===h.width&&r.height===h.height||n(),h=r,f=requestAnimationFrame(t)}(),n(),()=>{var e;u.forEach((e=>{o&&e.removeEventListener("scroll",n),i&&e.removeEventListener("resize",n)})),null==d||d(),null==(e=m)||e.disconnect(),m=null,s&&cancelAnimationFrame(f)}}const $t=ct,Ut=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var n,r;const{x:o,y:i,placement:a,middlewareData:l}=t,s=await async function(e,t){const{placement:n,platform:r,elements:o}=e,i=await(null==r.isRTL?void 0:r.isRTL(o.floating)),a=Je(n),l=et(n),s="y"===rt(n),c=["left","top"].includes(a)?-1:1,u=i&&s?-1:1,d=Ze(t,e);let{mainAxis:f,crossAxis:p,alignmentAxis:m}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return l&&"number"==typeof m&&(p="end"===l?-1*m:m),s?{x:p*u,y:f*c}:{x:f*c,y:p*u}}(t,e);return a===(null==(n=l.offset)?void 0:n.placement)&&null!=(r=l.arrow)&&r.alignmentOffset?{}:{x:o+s.x,y:i+s.y,data:{...s,placement:a}}}}},qt=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n,r;const{placement:o,middlewareData:i,rects:a,initialPlacement:l,platform:s,elements:c}=t,{mainAxis:u=!0,crossAxis:d=!0,fallbackPlacements:f,fallbackStrategy:p="bestFit",fallbackAxisSideDirection:m="none",flipAlignment:h=!0,...g}=Ze(e,t);if(null!=(n=i.arrow)&&n.alignmentOffset)return{};const v=Je(o),b=Je(l)===l,y=await(null==s.isRTL?void 0:s.isRTL(c.floating)),w=f||(b||!h?[at(l)]:function(e){const t=at(e);return[it(e),t,it(t)]}(l));f||"none"===m||w.push(...function(e,t,n,r){const o=et(e);let i=function(e,t,n){const r=["left","right"],o=["right","left"],i=["top","bottom"],a=["bottom","top"];switch(e){case"top":case"bottom":return n?t?o:r:t?r:o;case"left":case"right":return t?i:a;default:return[]}}(Je(e),"start"===n,r);return o&&(i=i.map((e=>e+"-"+o)),t&&(i=i.concat(i.map(it)))),i}(l,h,m,y));const x=[l,...w],E=await ct(t,g),k=[];let C=(null==(r=i.flip)?void 0:r.overflows)||[];if(u&&k.push(E[v]),d){const e=function(e,t,n){void 0===n&&(n=!1);const r=et(e),o=ot(e),i=nt(o);let a="x"===o?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[i]>t.floating[i]&&(a=at(a)),[a,at(a)]}(o,a,y);k.push(E[e[0]],E[e[1]])}if(C=[...C,{placement:o,overflows:k}],!k.every((e=>e<=0))){var O,S;const e=((null==(O=i.flip)?void 0:O.index)||0)+1,t=x[e];if(t)return{data:{index:e,overflows:C},reset:{placement:t}};let n=null==(S=C.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:S.placement;if(!n)switch(p){case"bestFit":{var T;const e=null==(T=C.map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:T[0];e&&(n=e);break}case"initialPlacement":n=l}if(o!==n)return{reset:{placement:n}}}return{}}}},Gt=function(e){return void 0===e&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:r,platform:o,elements:i}=t,{apply:a=(()=>{}),...l}=Ze(e,t),s=await ct(t,l),c=Je(n),u=et(n),d="y"===rt(n),{width:f,height:p}=r.floating;let m,h;"top"===c||"bottom"===c?(m=c,h=u===(await(null==o.isRTL?void 0:o.isRTL(i.floating))?"start":"end")?"left":"right"):(h=c,m="end"===u?"top":"bottom");const g=p-s[m],v=f-s[h],b=!t.middlewareData.shift;let y=g,w=v;if(d){const e=f-s.left-s.right;w=u||b?$e(v,e):e}else{const e=p-s.top-s.bottom;y=u||b?$e(g,e):e}if(b&&!u){const e=Ue(s.left,0),t=Ue(s.right,0),n=Ue(s.top,0),r=Ue(s.bottom,0);d?w=f-2*(0!==e||0!==t?e+t:Ue(s.left,s.right)):y=p-2*(0!==n||0!==r?n+r:Ue(s.top,s.bottom))}await a({...t,availableWidth:w,availableHeight:y});const x=await o.getDimensions(i.floating);return f!==x.width||p!==x.height?{reset:{rects:!0}}:{}}}},Kt=(e,t,n)=>{const r=new Map,o={platform:Bt,...n},i={...o.platform,_c:r};return(async(e,t,n)=>{const{placement:r="bottom",strategy:o="absolute",middleware:i=[],platform:a}=n,l=i.filter(Boolean),s=await(null==a.isRTL?void 0:a.isRTL(t));let c=await a.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:d}=st(c,r,s),f=r,p={},m=0;for(let n=0;n<l.length;n++){const{name:i,fn:h}=l[n],{x:g,y:v,data:b,reset:y}=await h({x:u,y:d,initialPlacement:r,placement:f,strategy:o,middlewareData:p,rects:c,platform:a,elements:{reference:e,floating:t}});u=null!=g?g:u,d=null!=v?v:d,p={...p,[i]:{...p[i],...b}},y&&m<=50&&(m++,"object"==typeof y&&(y.placement&&(f=y.placement),y.rects&&(c=!0===y.rects?await a.getElementRects({reference:e,floating:t,strategy:o}):y.rects),({x:u,y:d}=st(c,f,s))),n=-1)}return{x:u,y:d,placement:f,strategy:o,middlewareData:p}})(e,t,{...o,platform:i})},Yt=window.ReactDOM;var Xt="undefined"!=typeof document?r.useLayoutEffect:r.useEffect;function Qt(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let n,r,o;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;0!=r--;)if(!Qt(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!{}.hasOwnProperty.call(t,o[r]))return!1;for(r=n;0!=r--;){const n=o[r];if(!("_owner"===n&&e.$$typeof||Qt(e[n],t[n])))return!1}return!0}return e!=e&&t!=t}function Zt(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Jt(e,t){const n=Zt(e);return Math.round(t*n)/n}function en(e){const t=r.useRef(e);return Xt((()=>{t.current=e})),t}const tn={...o},nn=tn.useInsertionEffect||(e=>e());function rn(e){const t=r.useRef((()=>{}));return nn((()=>{t.current=e})),r.useCallback((function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return null==t.current?void 0:t.current(...n)}),[])}var on="undefined"!=typeof document?r.useLayoutEffect:r.useEffect;let an=!1,ln=0;const sn=()=>"floating-ui-"+Math.random().toString(36).slice(2,6)+ln++,cn=tn.useId||function(){const[e,t]=r.useState((()=>an?sn():void 0));return on((()=>{null==e&&t(sn())}),[]),r.useEffect((()=>{an=!0}),[]),e};const un=r.createContext(null),dn=r.createContext(null),fn=()=>{var e;return(null==(e=r.useContext(un))?void 0:e.id)||null},pn=()=>r.useContext(dn);function mn(e){var t;void 0===e&&(e={});const{open:n=!1,onOpenChange:o,nodeId:i}=e,[a,l]=r.useState(null),[s,c]=r.useState(null),u=(null==(t=e.elements)?void 0:t.reference)||a;on((()=>{u&&(h.current=u)}),[u]);const d=function(e){void 0===e&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:o=[],platform:i,elements:{reference:a,floating:l}={},transform:s=!0,whileElementsMounted:c,open:u}=e,[d,f]=r.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,m]=r.useState(o);Qt(p,o)||m(o);const[h,g]=r.useState(null),[v,b]=r.useState(null),y=r.useCallback((e=>{e!==k.current&&(k.current=e,g(e))}),[]),w=r.useCallback((e=>{e!==C.current&&(C.current=e,b(e))}),[]),x=a||h,E=l||v,k=r.useRef(null),C=r.useRef(null),O=r.useRef(d),S=null!=c,T=en(c),R=en(i),P=r.useCallback((()=>{if(!k.current||!C.current)return;const e={placement:t,strategy:n,middleware:p};R.current&&(e.platform=R.current),Kt(k.current,C.current,e).then((e=>{const t={...e,isPositioned:!0};L.current&&!Qt(O.current,t)&&(O.current=t,Yt.flushSync((()=>{f(t)})))}))}),[p,t,n,R]);Xt((()=>{!1===u&&O.current.isPositioned&&(O.current.isPositioned=!1,f((e=>({...e,isPositioned:!1}))))}),[u]);const L=r.useRef(!1);Xt((()=>(L.current=!0,()=>{L.current=!1})),[]),Xt((()=>{if(x&&(k.current=x),E&&(C.current=E),x&&E){if(T.current)return T.current(x,E,P);P()}}),[x,E,P,T,S]);const N=r.useMemo((()=>({reference:k,floating:C,setReference:y,setFloating:w})),[y,w]),I=r.useMemo((()=>({reference:x,floating:E})),[x,E]),M=r.useMemo((()=>{const e={position:n,left:0,top:0};if(!I.floating)return e;const t=Jt(I.floating,d.x),r=Jt(I.floating,d.y);return s?{...e,transform:"translate("+t+"px, "+r+"px)",...Zt(I.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:t,top:r}}),[n,s,I.floating,d.x,d.y]);return r.useMemo((()=>({...d,update:P,refs:N,elements:I,floatingStyles:M})),[d,P,N,I,M])}({...e,elements:{...e.elements,...s&&{reference:s}}}),f=pn(),p=null!=fn(),m=rn(((e,t,n)=>{g.current.openEvent=e?t:void 0,v.emit("openchange",{open:e,event:t,reason:n,nested:p}),null==o||o(e,t,n)})),h=r.useRef(null),g=r.useRef({}),v=r.useState((()=>function(){const e=new Map;return{emit(t,n){var r;null==(r=e.get(t))||r.forEach((e=>e(n)))},on(t,n){e.set(t,[...e.get(t)||[],n])},off(t,n){var r;e.set(t,(null==(r=e.get(t))?void 0:r.filter((e=>e!==n)))||[])}}}()))[0],b=cn(),y=r.useCallback((e=>{const t=mt(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),contextElement:e}:e;c(t),d.refs.setReference(t)}),[d.refs]),w=r.useCallback((e=>{(mt(e)||null===e)&&(h.current=e,l(e)),(mt(d.refs.reference.current)||null===d.refs.reference.current||null!==e&&!mt(e))&&d.refs.setReference(e)}),[d.refs]),x=r.useMemo((()=>({...d.refs,setReference:w,setPositionReference:y,domReference:h})),[d.refs,w,y]),E=r.useMemo((()=>({...d.elements,domReference:u})),[d.elements,u]),k=r.useMemo((()=>({...d,refs:x,elements:E,dataRef:g,nodeId:i,floatingId:b,events:v,open:n,onOpenChange:m})),[d,i,b,v,n,m,x,E]);return on((()=>{const e=null==f?void 0:f.nodesRef.current.find((e=>e.id===i));e&&(e.context=k)})),r.useMemo((()=>({...d,context:k,refs:x,elements:E})),[d,x,E,k])}const hn="active",gn="selected";function vn(e,t,n){const r=new Map,o="item"===n;let i=e;if(o&&e){const{[hn]:t,[gn]:__,...n}=e;i=n}return{..."floating"===n&&{tabIndex:-1},...i,...t.map((t=>{const r=t?t[n]:null;return"function"==typeof r?e?r(e):null:r})).concat(e).reduce(((e,t)=>t?(Object.entries(t).forEach((t=>{let[n,i]=t;var a;o&&[hn,gn].includes(n)||(0===n.indexOf("on")?(r.has(n)||r.set(n,[]),"function"==typeof i&&(null==(a=r.get(n))||a.push(i),e[n]=function(){for(var e,t=arguments.length,o=new Array(t),i=0;i<t;i++)o[i]=arguments[i];return null==(e=r.get(n))?void 0:e.map((e=>e(...o))).find((e=>void 0!==e))})):e[n]=i)})),e):e),{})}}function bn(e,t){return{...e,rects:{...e.rects,floating:{...e.rects.floating,height:t}}}}let yn=(0,r.createContext)({styles:void 0,setReference:()=>{},setFloating:()=>{},getReferenceProps:()=>({}),getFloatingProps:()=>({}),slot:{}});yn.displayName="FloatingContext";let wn=(0,r.createContext)(null);wn.displayName="PlacementContext";function xn({children:e,enabled:t=!0}){let[n,o]=(0,r.useState)(null),[i,a]=(0,r.useState)(0),l=(0,r.useRef)(null),[s,c]=(0,r.useState)(null);!function(e){ie((()=>{if(!e)return;let t=new MutationObserver((()=>{let t=e.style.maxHeight;parseFloat(t)!==parseInt(t)&&(e.style.maxHeight=`${Math.ceil(parseFloat(t))}px`)}));return t.observe(e,{attributes:!0,attributeFilter:["style"]}),()=>{t.disconnect()}}),[e])}(s);let u=t&&null!==n&&null!==s,{to:d="bottom",gap:f=0,offset:p=0,padding:m=0,inner:h}=function(e,t){var n,r,o;let i=En(null!=(n=null==e?void 0:e.gap)?n:"var(--anchor-gap, 0)",t),a=En(null!=(r=null==e?void 0:e.offset)?r:"var(--anchor-offset, 0)",t),l=En(null!=(o=null==e?void 0:e.padding)?o:"var(--anchor-padding, 0)",t);return{...e,gap:i,offset:a,padding:l}}(n,s),[g,v="center"]=d.split(" ");ie((()=>{u&&a(0)}),[u]);let{refs:b,floatingStyles:y,context:w}=mn({open:u,placement:"selection"===g?"center"===v?"bottom":`bottom-${v}`:"center"===v?`${g}`:`${g}-${v}`,strategy:"absolute",transform:!1,middleware:[Ut({mainAxis:"selection"===g?0:f,crossAxis:p}),(C={padding:m},void 0===C&&(C={}),{name:"shift",options:C,async fn(e){const{x:t,y:n,placement:r}=e,{mainAxis:o=!0,crossAxis:i=!1,limiter:a={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...l}=Ze(C,e),s={x:t,y:n},c=await ct(e,l),u=rt(Je(r)),d=tt(u);let f=s[d],p=s[u];if(o){const e="y"===d?"bottom":"right";f=Qe(f+c["y"===d?"top":"left"],f,f-c[e])}if(i){const e="y"===u?"bottom":"right";p=Qe(p+c["y"===u?"top":"left"],p,p-c[e])}const m=a.fn({...e,[d]:f,[u]:p});return{...m,data:{x:m.x-t,y:m.y-n}}}}),"selection"!==g&&qt({padding:m}),"selection"===g&&h?(k={...h,padding:m,overflowRef:l,offset:i,minItemsVisible:4,referenceOverflowThreshold:m,onFallbackChange(e){var t,n;if(!e)return;let r=w.elements.floating;if(!r)return;let o=parseFloat(getComputedStyle(r).scrollPaddingBottom)||0,i=Math.min(4,r.childElementCount),l=0,s=0;for(let e of null!=(n=null==(t=w.elements.floating)?void 0:t.childNodes)?n:[])if(e instanceof HTMLElement){let t=e.offsetTop,n=t+e.clientHeight+o,a=r.scrollTop,c=a+r.clientHeight;if(!(t>=a&&n<=c)){s=Math.max(0,Math.min(n,c)-Math.max(t,a)),l=e.clientHeight;break}i--}i>=1&&a((e=>{let t=l*i-s+o;return e>=t?e:t}))}},{name:"inner",options:k,async fn(e){const{listRef:t,overflowRef:n,onFallbackChange:r,offset:o=0,index:i=0,minItemsVisible:a=4,referenceOverflowThreshold:l=0,scrollRef:s,...c}=k,{rects:u,elements:{floating:d}}=e,f=t.current[i];if(!f)return{};const p={...e,...await Ut(-f.offsetTop-d.clientTop-u.reference.height/2-f.offsetHeight/2-o).fn(e)},m=(null==s?void 0:s.current)||d,h=await $t(bn(p,m.scrollHeight),c),g=await $t(p,{...c,elementContext:"reference"}),v=Math.max(0,h.top),b=p.y+v,y=Math.max(0,m.scrollHeight-v-Math.max(0,h.bottom));return m.style.maxHeight=y+"px",m.scrollTop=v,r&&(m.offsetHeight<f.offsetHeight*Math.min(a,t.current.length-1)-1||g.top>=-l||g.bottom>=-l?(0,Yt.flushSync)((()=>r(!0))):(0,Yt.flushSync)((()=>r(!1)))),n&&(n.current=await $t(bn({...p,y:b},m.offsetHeight),c)),{y:b}}}):null,Gt({padding:m,apply({availableWidth:e,availableHeight:t,elements:n}){Object.assign(n.floating.style,{overflow:"auto",maxWidth:`${e}px`,maxHeight:`min(var(--anchor-max-height, 100vh), ${t}px)`})}})].filter(Boolean),whileElementsMounted:Vt}),[x=g,E=v]=w.placement.split("-");var k,C;"selection"===g&&(x="selection");let O=(0,r.useMemo)((()=>({anchor:[x,E].filter(Boolean).join(" ")})),[x,E]),S=function(e,t){const{open:n,elements:o}=e,{enabled:i=!0,overflowRef:a,scrollRef:l,onChange:s}=t,c=rn(s),u=r.useRef(!1),d=r.useRef(null),f=r.useRef(null);return r.useEffect((()=>{if(!i)return;function e(e){if(e.ctrlKey||!t||null==a.current)return;const n=e.deltaY,r=a.current.top>=-.5,o=a.current.bottom>=-.5,i=t.scrollHeight-t.clientHeight,l=n<0?-1:1,s=n<0?"max":"min";t.scrollHeight<=t.clientHeight||(!r&&n>0||!o&&n<0?(e.preventDefault(),(0,Yt.flushSync)((()=>{c((e=>e+Math[s](n,i*l)))}))):/firefox/i.test(function(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map((e=>{let{brand:t,version:n}=e;return t+"/"+n})).join(" "):navigator.userAgent}())&&(t.scrollTop+=n))}const t=(null==l?void 0:l.current)||o.floating;return n&&t?(t.addEventListener("wheel",e),requestAnimationFrame((()=>{d.current=t.scrollTop,null!=a.current&&(f.current={...a.current})})),()=>{d.current=null,f.current=null,t.removeEventListener("wheel",e)}):void 0}),[i,n,o.floating,a,l,c]),r.useMemo((()=>i?{floating:{onKeyDown(){u.current=!0},onWheel(){u.current=!1},onPointerMove(){u.current=!1},onScroll(){const e=(null==l?void 0:l.current)||o.floating;if(a.current&&e&&u.current){if(null!==d.current){const t=e.scrollTop-d.current;(a.current.bottom<-.5&&t<-1||a.current.top<-.5&&t>1)&&(0,Yt.flushSync)((()=>c((e=>e+t))))}requestAnimationFrame((()=>{d.current=e.scrollTop}))}}}}:{}),[i,a,o.floating,l,c])}(w,{overflowRef:l,onChange:a}),{getReferenceProps:T,getFloatingProps:R}=function(e){void 0===e&&(e=[]);const t=e,n=r.useCallback((t=>vn(t,e,"reference")),t),o=r.useCallback((t=>vn(t,e,"floating")),t),i=r.useCallback((t=>vn(t,e,"item")),e.map((e=>null==e?void 0:e.item)));return r.useMemo((()=>({getReferenceProps:n,getFloatingProps:o,getItemProps:i})),[n,o,i])}([S]),P=le((e=>{c(e),b.setFloating(e)}));return r.createElement(wn.Provider,{value:o},r.createElement(yn.Provider,{value:{setFloating:P,setReference:b.setReference,styles:y,getReferenceProps:T,getFloatingProps:R,slot:O}},e))}function En(e,t,n=void 0){let o=oe(),i=le(((e,t)=>{if(null==e)return[n,null];if("number"==typeof e)return[e,null];if("string"==typeof e){if(!t)return[n,null];let r=Cn(e,t);return[r,n=>{let i=kn(e);{let a=i.map((e=>window.getComputedStyle(t).getPropertyValue(e)));o.requestAnimationFrame((function l(){o.nextFrame(l);let s=!1;for(let[e,n]of i.entries()){let r=window.getComputedStyle(t).getPropertyValue(n);if(a[e]!==r){a[e]=r,s=!0;break}}if(!s)return;let c=Cn(e,t);r!==c&&(n(c),r=c)}))}return o.dispose}]}return[n,null]})),a=(0,r.useMemo)((()=>i(e,t)[0]),[e,t]),[l=a,s]=(0,r.useState)();return ie((()=>{let[n,r]=i(e,t);if(s(n),r)return r(s)}),[e,t]),l}function kn(e){let t=/var\((.*)\)/.exec(e);if(t){let e=t[1].indexOf(",");if(-1===e)return[t[1]];let n=t[1].slice(0,e).trim(),r=t[1].slice(e+1).trim();return r?[n,...kn(r)]:[n]}return[]}function Cn(e,t){let n=document.createElement("div");t.appendChild(n),n.style.setProperty("margin-top","0px","important"),n.style.setProperty("margin-top",e,"important");let r=parseFloat(window.getComputedStyle(n).marginTop)||0;return t.removeChild(n),r}let On=(0,r.createContext)(null);On.displayName="OpenClosedContext";var Sn=(e=>(e[e.Open=1]="Open",e[e.Closed=2]="Closed",e[e.Closing=4]="Closing",e[e.Opening=8]="Opening",e))(Sn||{});function Tn(){return(0,r.useContext)(On)}function Rn({value:e,children:t}){return r.createElement(On.Provider,{value:e},t)}function Pn(e){let t=e.parentElement,n=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(n=t),t=t.parentElement;let r=""===(null==t?void 0:t.getAttribute("disabled"));return(!r||!function(e){if(!e)return!1;let t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(n))&&r}var Ln=(e=>(e[e.First=0]="First",e[e.Previous=1]="Previous",e[e.Next=2]="Next",e[e.Last=3]="Last",e[e.Specific=4]="Specific",e[e.Nothing=5]="Nothing",e))(Ln||{});function Nn(e,t){let n=t.resolveItems();if(n.length<=0)return null;let r=t.resolveActiveIndex(),o=null!=r?r:-1;switch(e.focus){case 0:for(let e=0;e<n.length;++e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 1:-1===o&&(o=n.length);for(let e=o-1;e>=0;--e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 2:for(let e=o+1;e<n.length;++e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 3:for(let e=n.length-1;e>=0;--e)if(!t.resolveDisabled(n[e],e,n))return e;return r;case 4:for(let r=0;r<n.length;++r)if(t.resolveId(n[r],r,n)===e.id)return r;return r;case 5:return null;default:!function(e){throw new Error("Unexpected object: "+e)}(e)}}function In(...e){return Array.from(new Set(e.flatMap((e=>"string"==typeof e?e.split(" "):[])))).filter(Boolean).join(" ")}var Mn,Fn=((Mn=Fn||{})[Mn.None=0]="None",Mn[Mn.RenderStrategy=1]="RenderStrategy",Mn[Mn.Static=2]="Static",Mn),An=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(An||{});function jn({ourProps:e,theirProps:t,slot:n,defaultTag:r,features:o,visible:i=!0,name:a,mergeRefs:l}){l=null!=l?l:zn;let s=Hn(t,e);if(i)return Dn(s,n,r,a,l);let c=null!=o?o:0;if(2&c){let{static:e=!1,...t}=s;if(e)return Dn(t,n,r,a,l)}if(1&c){let{unmount:e=!0,...t}=s;return me(e?0:1,{0:()=>null,1:()=>Dn({...t,hidden:!0,style:{display:"none"}},n,r,a,l)})}return Dn(s,n,r,a,l)}function Dn(e,t={},n,o,i){let{as:a=n,children:l,refName:s="ref",...c}=$n(e,["unmount","static"]),u=void 0!==e.ref?{[s]:e.ref}:{},d="function"==typeof l?l(t):l;"className"in c&&c.className&&"function"==typeof c.className&&(c.className=c.className(t)),c["aria-labelledby"]&&c["aria-labelledby"]===c.id&&(c["aria-labelledby"]=void 0);let f={};if(t){let e=!1,n=[];for(let[r,o]of Object.entries(t))"boolean"==typeof o&&(e=!0),!0===o&&n.push(r.replace(/([A-Z])/g,(e=>`-${e.toLowerCase()}`)));if(e){f["data-headlessui-state"]=n.join(" ");for(let e of n)f[`data-${e}`]=""}}if(a===r.Fragment&&(Object.keys(Vn(c)).length>0||Object.keys(Vn(f)).length>0)){if((0,r.isValidElement)(d)&&!(Array.isArray(d)&&d.length>1)){let e=d.props,t=null==e?void 0:e.className,n="function"==typeof t?(...e)=>In(t(...e),c.className):In(t,c.className),o=n?{className:n}:{},a=Hn(d.props,Vn($n(c,["ref"])));for(let e in f)e in a&&delete f[e];return(0,r.cloneElement)(d,Object.assign({},a,f,u,{ref:i(d.ref,u.ref)},o))}if(Object.keys(Vn(c)).length>0)throw new Error(['Passing props on "Fragment"!',"",`The current component <${o} /> is rendering a "Fragment".`,"However we need to passthrough the following props:",Object.keys(Vn(c)).concat(Object.keys(Vn(f))).map((e=>`  - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>`  - ${e}`)).join("\n")].join("\n"))}return(0,r.createElement)(a,Object.assign({},$n(c,["ref"]),a!==r.Fragment&&u,a!==r.Fragment&&f),d)}function zn(...e){return e.every((e=>null==e))?void 0:t=>{for(let n of e)null!=n&&("function"==typeof n?n(t):n.current=t)}}function Hn(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},n={};for(let r of e)for(let e in r)e.startsWith("on")&&"function"==typeof r[e]?(null!=n[e]||(n[e]=[]),n[e].push(r[e])):t[e]=r[e];if(t.disabled||t["aria-disabled"])for(let e in n)/^(on(?:Click|Pointer|Mouse|Key)(?:Down|Up|Press)?)$/.test(e)&&(n[e]=[e=>{var t;return null==(t=null==e?void 0:e.preventDefault)?void 0:t.call(e)}]);for(let e in n)Object.assign(t,{[e](t,...r){let o=n[e];for(let e of o){if((t instanceof Event||(null==t?void 0:t.nativeEvent)instanceof Event)&&t.defaultPrevented)return;e(t,...r)}}});return t}function Wn(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},n={};for(let r of e)for(let e in r)e.startsWith("on")&&"function"==typeof r[e]?(null!=n[e]||(n[e]=[]),n[e].push(r[e])):t[e]=r[e];for(let e in n)Object.assign(t,{[e](...t){let r=n[e];for(let e of r)null==e||e(...t)}});return t}function Bn(e){var t;return Object.assign((0,r.forwardRef)(e),{displayName:null!=(t=e.displayName)?t:e.name})}function Vn(e){let t=Object.assign({},e);for(let e in t)void 0===t[e]&&delete t[e];return t}function $n(e,t=[]){let n=Object.assign({},e);for(let e of t)e in n&&delete n[e];return n}let Un=(0,r.createContext)(void 0);function qn(){return(0,r.useContext)(Un)}function Gn({value:e,children:t}){return r.createElement(Un.Provider,{value:e},t)}let Kn=(0,r.createContext)(null);function Yn(){let e=(0,r.useContext)(Kn);if(null===e){let e=new Error("You used a <Description /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,Yn),e}return e}function Xn(){let[e,t]=(0,r.useState)([]);return[e.length>0?e.join(" "):void 0,(0,r.useMemo)((()=>function(e){let n=le((e=>(t((t=>[...t,e])),()=>t((t=>{let n=t.slice(),r=n.indexOf(e);return-1!==r&&n.splice(r,1),n}))))),o=(0,r.useMemo)((()=>({register:n,slot:e.slot,name:e.name,props:e.props,value:e.value})),[n,e.slot,e.name,e.props,e.value]);return r.createElement(Kn.Provider,{value:o},e.children)}),[t])]}Kn.displayName="DescriptionContext";let Qn=Bn((function(e,t){let n=(0,r.useId)(),o=qn(),{id:i=`headlessui-description-${n}`,...a}=e,l=Yn(),s=He(t);ie((()=>l.register(i)),[i,l.register]);let c=o||!1,u=(0,r.useMemo)((()=>({...l.slot,disabled:c})),[l.slot,c]);return jn({ourProps:{ref:s,...l.props,id:i},theirProps:a,slot:u,defaultTag:"p",name:l.name||"Description"})})),Zn=Object.assign(Qn,{});var Jn=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(Jn||{});let er=(0,r.createContext)(void 0);function tr(){return(0,r.useContext)(er)}function nr({id:e,children:t}){return r.createElement(er.Provider,{value:e},t)}let rr=(0,r.createContext)(null);function or(){let e=(0,r.useContext)(rr);if(null===e){let e=new Error("You used a <Label /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,or),e}return e}function ir(e){var t,n,o;let i=null!=(n=null==(t=(0,r.useContext)(rr))?void 0:t.value)?n:void 0;return(null!=(o=null==e?void 0:e.length)?o:0)>0?[i,...e].filter(Boolean).join(" "):i}function ar({inherit:e=!1}={}){let t=ir(),[n,o]=(0,r.useState)([]),i=e?[t,...n].filter(Boolean):n;return[i.length>0?i.join(" "):void 0,(0,r.useMemo)((()=>function(e){let t=le((e=>(o((t=>[...t,e])),()=>o((t=>{let n=t.slice(),r=n.indexOf(e);return-1!==r&&n.splice(r,1),n}))))),n=(0,r.useMemo)((()=>({register:t,slot:e.slot,name:e.name,props:e.props,value:e.value})),[t,e.slot,e.name,e.props,e.value]);return r.createElement(rr.Provider,{value:n},e.children)}),[o])]}rr.displayName="LabelContext";let lr=Bn((function(e,t){var n;let o=(0,r.useId)(),i=or(),a=tr(),l=qn(),{id:s=`headlessui-label-${o}`,htmlFor:c=(null!=a?a:null==(n=i.props)?void 0:n.htmlFor),passive:u=!1,...d}=e,f=He(t);ie((()=>i.register(s)),[s,i.register]);let p=le((e=>{let t=e.currentTarget;if(t instanceof HTMLLabelElement&&e.preventDefault(),i.props&&"onClick"in i.props&&"function"==typeof i.props.onClick&&i.props.onClick(e),t instanceof HTMLLabelElement){let e=document.getElementById(t.htmlFor);if(e){let t=e.getAttribute("disabled");if("true"===t||""===t)return;let n=e.getAttribute("aria-disabled");if("true"===n||""===n)return;(e instanceof HTMLInputElement&&("radio"===e.type||"checkbox"===e.type)||"radio"===e.role||"checkbox"===e.role||"switch"===e.role)&&e.click(),e.focus({preventScroll:!0})}}})),m=l||!1,h=(0,r.useMemo)((()=>({...i.slot,disabled:m})),[i.slot,m]),g={ref:f,...i.props,id:s,htmlFor:c,onClick:p};return u&&("onClick"in g&&(delete g.htmlFor,delete g.onClick),"onClick"in d&&delete d.onClick),jn({ourProps:g,theirProps:d,slot:h,defaultTag:c?"label":"div",name:i.name||"Label"})})),sr=Object.assign(lr,{});function cr(){let e=function(){let e="undefined"==typeof document;return"useSyncExternalStore"in o&&(e=>e.useSyncExternalStore)(o)((()=>()=>{}),(()=>!1),(()=>!e))}(),[t,n]=r.useState(ee.isHandoffComplete);return t&&!1===ee.isHandoffComplete&&n(!1),r.useEffect((()=>{!0!==t&&n(!0)}),[t]),r.useEffect((()=>ee.handoff()),[]),!e&&t}let ur=(0,r.createContext)(!1);let dr=r.Fragment,fr=Bn((function(e,t){let n=e,o=(0,r.useRef)(null),i=He(function(e,t=!0){return Object.assign(e,{[ze]:t})}((e=>{o.current=e})),t),a=Me(o),l=function(e){let t=(0,r.useContext)(ur),n=(0,r.useContext)(mr),o=Me(e),[i,a]=(0,r.useState)((()=>{var e;if(!t&&null!==n)return null!=(e=n.current)?e:null;if(ee.isServer)return null;let r=null==o?void 0:o.getElementById("headlessui-portal-root");if(r)return r;if(null===o)return null;let i=o.createElement("div");return i.setAttribute("id","headlessui-portal-root"),o.body.appendChild(i)}));return(0,r.useEffect)((()=>{null!==i&&(null!=o&&o.body.contains(i)||null==o||o.body.appendChild(i))}),[i,o]),(0,r.useEffect)((()=>{t||null!==n&&a(n.current)}),[n,a,t]),i}(o),[s]=(0,r.useState)((()=>{var e;return ee.isServer?null:null!=(e=null==a?void 0:a.createElement("div"))?e:null})),c=(0,r.useContext)(hr),u=cr();return ie((()=>{!l||!s||l.contains(s)||(s.setAttribute("data-headlessui-portal",""),l.appendChild(s))}),[l,s]),ie((()=>{if(s&&c)return c.register(s)}),[c,s]),function(e){let t=le(e),n=(0,r.useRef)(!1);(0,r.useEffect)((()=>(n.current=!1,()=>{n.current=!0,ne((()=>{n.current&&t()}))})),[t])}((()=>{var e;!l||!s||(s instanceof Node&&l.contains(s)&&l.removeChild(s),l.childNodes.length<=0&&(null==(e=l.parentElement)||e.removeChild(l)))})),u&&l&&s?(0,Yt.createPortal)(jn({ourProps:{ref:i},theirProps:n,slot:{},defaultTag:dr,name:"Portal"}),s):null})),pr=r.Fragment,mr=(0,r.createContext)(null),hr=(0,r.createContext)(null),gr=Bn((function(e,t){let n=He(t),{enabled:o=!0,...i}=e;return o?r.createElement(fr,{...i,ref:n}):jn({ourProps:{ref:n},theirProps:i,slot:{},defaultTag:dr,name:"Portal"})})),vr=Bn((function(e,t){let{target:n,...o}=e,i={ref:He(t)};return r.createElement(mr.Provider,{value:n},jn({ourProps:i,theirProps:o,defaultTag:pr,name:"Popover.Group"}))})),br=Object.assign(gr,{Group:vr});var yr=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(yr||{}),wr=(e=>(e[e.Pointer=0]="Pointer",e[e.Other=1]="Other",e))(wr||{}),xr=(e=>(e[e.OpenMenu=0]="OpenMenu",e[e.CloseMenu=1]="CloseMenu",e[e.GoToItem=2]="GoToItem",e[e.Search=3]="Search",e[e.ClearSearch=4]="ClearSearch",e[e.RegisterItem=5]="RegisterItem",e[e.UnregisterItem=6]="UnregisterItem",e))(xr||{});function Er(e,t=(e=>e)){let n=null!==e.activeItemIndex?e.items[e.activeItemIndex]:null,r=Re(t(e.items.slice()),(e=>e.dataRef.current.domRef.current)),o=n?r.indexOf(n):null;return-1===o&&(o=null),{items:r,activeItemIndex:o}}let kr={1:e=>1===e.menuState?e:{...e,activeItemIndex:null,menuState:1},0:e=>0===e.menuState?e:{...e,__demoMode:!1,menuState:0},2:(e,t)=>{var n,r,o,i,a;if(1===e.menuState)return e;let l={...e,searchQuery:"",activationTrigger:null!=(n=t.trigger)?n:1,__demoMode:!1};if(t.focus===Ln.Nothing)return{...l,activeItemIndex:null};if(t.focus===Ln.Specific)return{...l,activeItemIndex:e.items.findIndex((e=>e.id===t.id))};if(t.focus===Ln.Previous){let n=e.activeItemIndex;if(null!==n){let i=e.items[n].dataRef.current.domRef,a=Nn(t,{resolveItems:()=>e.items,resolveActiveIndex:()=>e.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==a){let t=e.items[a].dataRef.current.domRef;if((null==(r=i.current)?void 0:r.previousElementSibling)===t.current||null===(null==(o=t.current)?void 0:o.previousElementSibling))return{...l,activeItemIndex:a}}}}else if(t.focus===Ln.Next){let n=e.activeItemIndex;if(null!==n){let r=e.items[n].dataRef.current.domRef,o=Nn(t,{resolveItems:()=>e.items,resolveActiveIndex:()=>e.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==o){let t=e.items[o].dataRef.current.domRef;if((null==(i=r.current)?void 0:i.nextElementSibling)===t.current||null===(null==(a=t.current)?void 0:a.nextElementSibling))return{...l,activeItemIndex:o}}}}let s=Er(e),c=Nn(t,{resolveItems:()=>s.items,resolveActiveIndex:()=>s.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});return{...l,...s,activeItemIndex:c}},3:(e,t)=>{let n=""!==e.searchQuery?0:1,r=e.searchQuery+t.value.toLowerCase(),o=(null!==e.activeItemIndex?e.items.slice(e.activeItemIndex+n).concat(e.items.slice(0,e.activeItemIndex+n)):e.items).find((e=>{var t;return(null==(t=e.dataRef.current.textValue)?void 0:t.startsWith(r))&&!e.dataRef.current.disabled})),i=o?e.items.indexOf(o):-1;return-1===i||i===e.activeItemIndex?{...e,searchQuery:r}:{...e,searchQuery:r,activeItemIndex:i,activationTrigger:1}},4:e=>""===e.searchQuery?e:{...e,searchQuery:"",searchActiveItemIndex:null},5:(e,t)=>{let n=Er(e,(e=>[...e,{id:t.id,dataRef:t.dataRef}]));return{...e,...n}},6:(e,t)=>{let n=Er(e,(e=>{let n=e.findIndex((e=>e.id===t.id));return-1!==n&&e.splice(n,1),e}));return{...e,...n,activationTrigger:1}}},Cr=(0,r.createContext)(null);function Or(e){let t=(0,r.useContext)(Cr);if(null===t){let t=new Error(`<${e} /> is missing a parent <Menu /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Or),t}return t}function Sr(e,t){return me(t.type,kr,e,t)}Cr.displayName="MenuContext";let Tr=r.Fragment,Rr=Fn.RenderStrategy|Fn.Static,Pr=r.Fragment,Lr=Bn((function(e,t){let{__demoMode:n=!1,...o}=e,i=(0,r.useReducer)(Sr,{__demoMode:n,menuState:n?0:1,buttonRef:(0,r.createRef)(),itemsRef:(0,r.createRef)(),items:[],searchQuery:"",activeItemIndex:null,activationTrigger:1}),[{menuState:a,itemsRef:l,buttonRef:s},c]=i,u=He(t);Ie([s,l],((e,t)=>{var n;c({type:1}),Ce(t,ke.Loose)||(e.preventDefault(),null==(n=s.current)||n.focus())}),0===a);let d=le((()=>{c({type:1})})),f=(0,r.useMemo)((()=>({open:0===a,close:d})),[a,d]),p={ref:u};return r.createElement(xn,null,r.createElement(Cr.Provider,{value:i},r.createElement(Rn,{value:me(a,{0:Sn.Open,1:Sn.Closed})},jn({ourProps:p,theirProps:o,slot:f,defaultTag:Tr,name:"Menu"}))))})),Nr=Bn((function(e,t){var n;let o=(0,r.useId)(),{id:i=`headlessui-menu-button-${o}`,disabled:a=!1,autoFocus:l=!1,...s}=e,[c,u]=Or("Menu.Button"),d=(0,r.useContext)(yn).getReferenceProps,f=He(c.buttonRef,t,(0,r.useContext)(yn).setReference),p=oe(),m=le((e=>{switch(e.key){case Jn.Space:case Jn.Enter:case Jn.ArrowDown:e.preventDefault(),e.stopPropagation(),u({type:0}),p.nextFrame((()=>u({type:2,focus:Ln.First})));break;case Jn.ArrowUp:e.preventDefault(),e.stopPropagation(),u({type:0}),p.nextFrame((()=>u({type:2,focus:Ln.Last})))}})),h=le((e=>{e.key===Jn.Space&&e.preventDefault()})),g=le((e=>{if(Pn(e.currentTarget))return e.preventDefault();a||(0===c.menuState?(u({type:1}),p.nextFrame((()=>{var e;return null==(e=c.buttonRef.current)?void 0:e.focus({preventScroll:!0})}))):(e.preventDefault(),u({type:0})))})),{isFocusVisible:v,focusProps:b}=U({autoFocus:l}),{isHovered:y,hoverProps:w}=Q({isDisabled:a}),{pressed:x,pressProps:E}=function({disabled:e=!1}={}){let t=(0,r.useRef)(null),[n,o]=(0,r.useState)(!1),i=oe(),a=le((()=>{t.current=null,o(!1),i.dispose()})),l=le((e=>{if(i.dispose(),null===t.current){t.current=e.currentTarget,o(!0);{let n=te(e.currentTarget);i.addEventListener(n,"pointerup",a,!1),i.addEventListener(n,"pointermove",(e=>{if(t.current){let n=function(e){let t=e.width/2,n=e.height/2;return{top:e.clientY-n,right:e.clientX+t,bottom:e.clientY+n,left:e.clientX-t}}(e);o(function(e,t){return!(!e||!t||e.right<t.left||e.left>t.right||e.bottom<t.top||e.top>t.bottom)}(n,t.current.getBoundingClientRect()))}}),!1),i.addEventListener(n,"pointercancel",a,!1)}}}));return{pressed:n,pressProps:e?{}:{onPointerDown:l,onPointerUp:a,onClick:a}}}({disabled:a}),k=(0,r.useMemo)((()=>({open:0===c.menuState,active:x||0===c.menuState,disabled:a,hover:y,focus:v,autofocus:l})),[c,y,v,x,a,l]);return jn({ourProps:Wn(d(),{ref:f,id:i,type:Ae(e,c.buttonRef),"aria-haspopup":"menu","aria-controls":null==(n=c.itemsRef.current)?void 0:n.id,"aria-expanded":0===c.menuState,disabled:a||void 0,autoFocus:l,onKeyDown:m,onKeyUp:h,onClick:g},b,w,E),theirProps:s,slot:k,defaultTag:"button",name:"Menu.Button"})})),Ir=Bn((function(e,t){var n,o;let i=(0,r.useId)(),{id:a=`headlessui-menu-items-${i}`,anchor:l,portal:s=!1,modal:c=!0,...u}=e,d=function(e){return(0,r.useMemo)((()=>e?"string"==typeof e?{to:e}:e:null),[e])}(l),[f,p]=Or("Menu.Items"),[m,h]=function(e=null){!1===e&&(e=null),"string"==typeof e&&(e={to:e});let t=(0,r.useContext)(wn),n=(0,r.useMemo)((()=>e),[JSON.stringify(e,"undefined"!=typeof HTMLElement?(e,t)=>t instanceof HTMLElement?t.outerHTML:t:void 0)]);ie((()=>{null==t||t(null!=n?n:null)}),[t,n]);let o=(0,r.useContext)(yn);return(0,r.useMemo)((()=>[o.setFloating,e?o.styles:{}]),[o.setFloating,e,o.styles])}(d),g=function(){let{getFloatingProps:e,slot:t}=(0,r.useContext)(yn);return(0,r.useCallback)(((...n)=>Object.assign({},e(...n),{"data-anchor":t.anchor})),[e,t])}(),v=He(f.itemsRef,t,d?m:null),b=Me(f.itemsRef);d&&(s=!0);let y=oe(),w=Tn(),x=null!==w?(w&Sn.Open)===Sn.Open:0===f.menuState;pe(f.buttonRef,(()=>p({type:1})),x),function(e,t,n=(()=>[document.body])){!function(e,t,n=(()=>({containers:[]}))){let o=function(e){return(0,r.useSyncExternalStore)(e.subscribe,e.getSnapshot,e.getSnapshot)}(_e),i=e?o.get(e):void 0,a=!!i&&i.count>0;ie((()=>{if(e&&t)return _e.dispatch("PUSH",e,n),()=>_e.dispatch("POP",e,n)}),[t,e])}(e,t,(e=>{var t;return{containers:[...null!=(t=e.containers)?t:[],n]}}))}(b,!f.__demoMode&&c&&0===f.menuState),fe({allowed:le((()=>[f.buttonRef.current,f.itemsRef.current]))},!f.__demoMode&&c&&0===f.menuState);let E=!function(e,t=!0){let n=(0,r.useRef)({left:0,top:0});if(ie((()=>{let t=e.current;if(!t)return;let r=t.getBoundingClientRect();r&&(n.current=r)}),[t]),null==e.current||!t||e.current===document.activeElement)return!1;let o=e.current.getBoundingClientRect();return o.top!==n.current.top||o.left!==n.current.left}(f.buttonRef,0!==f.menuState)&&x;(0,r.useEffect)((()=>{let e=f.itemsRef.current;e&&0===f.menuState&&e!==(null==b?void 0:b.activeElement)&&e.focus({preventScroll:!0})}),[f.menuState,f.itemsRef,b,f.itemsRef.current]),function({container:e,accept:t,walk:n,enabled:o=!0}){let i=(0,r.useRef)(t),a=(0,r.useRef)(n);(0,r.useEffect)((()=>{i.current=t,a.current=n}),[t,n]),ie((()=>{if(!e||!o)return;let t=te(e);if(!t)return;let n=i.current,r=a.current,l=Object.assign((e=>n(e)),{acceptNode:n}),s=t.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,l,!1);for(;s.nextNode();)r(s.currentNode)}),[e,o,i,a])}({container:f.itemsRef.current,enabled:0===f.menuState,accept:e=>"menuitem"===e.getAttribute("role")?NodeFilter.FILTER_REJECT:e.hasAttribute("role")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT,walk(e){e.setAttribute("role","none")}});let k=le((e=>{var t,n;switch(y.dispose(),e.key){case Jn.Space:if(""!==f.searchQuery)return e.preventDefault(),e.stopPropagation(),p({type:3,value:e.key});case Jn.Enter:if(e.preventDefault(),e.stopPropagation(),p({type:1}),null!==f.activeItemIndex){let{dataRef:e}=f.items[f.activeItemIndex];null==(n=null==(t=e.current)?void 0:t.domRef.current)||n.click()}Oe(f.buttonRef.current);break;case Jn.ArrowDown:return e.preventDefault(),e.stopPropagation(),p({type:2,focus:Ln.Next});case Jn.ArrowUp:return e.preventDefault(),e.stopPropagation(),p({type:2,focus:Ln.Previous});case Jn.Home:case Jn.PageUp:return e.preventDefault(),e.stopPropagation(),p({type:2,focus:Ln.First});case Jn.End:case Jn.PageDown:return e.preventDefault(),e.stopPropagation(),p({type:2,focus:Ln.Last});case Jn.Escape:e.preventDefault(),e.stopPropagation(),p({type:1}),re().nextFrame((()=>{var e;return null==(e=f.buttonRef.current)?void 0:e.focus({preventScroll:!0})}));break;case Jn.Tab:e.preventDefault(),e.stopPropagation(),p({type:1}),re().microTask((()=>{!function(e,t){Pe(Ee(),t,{relativeTo:e})}(f.buttonRef.current,e.shiftKey?ye.Previous:ye.Next)}));break;default:1===e.key.length&&(p({type:3,value:e.key}),y.setTimeout((()=>p({type:4})),350))}})),C=le((e=>{e.key===Jn.Space&&e.preventDefault()})),O=(0,r.useMemo)((()=>({open:0===f.menuState})),[f]),S=Wn(d?g():{},{"aria-activedescendant":null===f.activeItemIndex||null==(n=f.items[f.activeItemIndex])?void 0:n.id,"aria-labelledby":null==(o=f.buttonRef.current)?void 0:o.id,id:a,onKeyDown:k,onKeyUp:C,role:"menu",tabIndex:0,ref:v,style:{...h,"--button-width":se(f.buttonRef,!0).width}});return r.createElement(br,{enabled:!!s&&(e.static||x)},jn({ourProps:S,theirProps:u,slot:O,defaultTag:"div",features:Rr,visible:E,name:"Menu.Items"}))})),Mr=Bn((function(e,t){let n=(0,r.useId)(),{id:o=`headlessui-menu-item-${n}`,disabled:i=!1,...a}=e,[l,s]=Or("Menu.Item"),c=null!==l.activeItemIndex&&l.items[l.activeItemIndex].id===o,u=(0,r.useRef)(null),d=He(t,u);ie((()=>{if(l.__demoMode||0!==l.menuState||!c||0===l.activationTrigger)return;let e=re();return e.requestAnimationFrame((()=>{var e,t;null==(t=null==(e=u.current)?void 0:e.scrollIntoView)||t.call(e,{block:"nearest"})})),e.dispose}),[l.__demoMode,u,c,l.menuState,l.activationTrigger,l.activeItemIndex]);let f=function(e){let t=(0,r.useRef)(""),n=(0,r.useRef)("");return le((()=>{let r=e.current;if(!r)return"";let o=r.innerText;if(t.current===o)return n.current;let i=function(e){let t=e.getAttribute("aria-label");if("string"==typeof t)return t.trim();let n=e.getAttribute("aria-labelledby");if(n){let e=n.split(" ").map((e=>{let t=document.getElementById(e);if(t){let e=t.getAttribute("aria-label");return"string"==typeof e?e.trim():Be(t).trim()}return null})).filter(Boolean);if(e.length>0)return e.join(", ")}return Be(e).trim()}(r).trim().toLowerCase();return t.current=o,n.current=i,i}))}(u),p=(0,r.useRef)({disabled:i,domRef:u,get textValue(){return f()}});ie((()=>{p.current.disabled=i}),[p,i]),ie((()=>(s({type:5,id:o,dataRef:p}),()=>s({type:6,id:o}))),[p,o]);let m=le((()=>{s({type:1})})),h=le((e=>{if(i)return e.preventDefault();s({type:1}),Oe(l.buttonRef.current)})),g=le((()=>{if(i)return s({type:2,focus:Ln.Nothing});s({type:2,focus:Ln.Specific,id:o})})),v=function(){let e=(0,r.useRef)([-1,-1]);return{wasMoved(t){let n=Ve(t);return(e.current[0]!==n[0]||e.current[1]!==n[1])&&(e.current=n,!0)},update(t){e.current=Ve(t)}}}(),b=le((e=>{v.update(e),!i&&(c||s({type:2,focus:Ln.Specific,id:o,trigger:0}))})),y=le((e=>{v.wasMoved(e)&&(i||c||s({type:2,focus:Ln.Specific,id:o,trigger:0}))})),w=le((e=>{v.wasMoved(e)&&(i||c&&s({type:2,focus:Ln.Nothing}))})),[x,E]=ar(),[k,C]=Xn(),O=(0,r.useMemo)((()=>({active:c,focus:c,disabled:i,close:m})),[c,i,m]);return r.createElement(E,null,r.createElement(C,null,jn({ourProps:{id:o,ref:d,role:"menuitem",tabIndex:!0===i?void 0:-1,"aria-disabled":!0===i||void 0,"aria-labelledby":x,"aria-describedby":k,disabled:void 0,onClick:h,onFocus:g,onPointerEnter:b,onMouseEnter:b,onPointerMove:y,onMouseMove:y,onPointerLeave:w,onMouseLeave:w},theirProps:a,slot:O,defaultTag:Pr,name:"Menu.Item"})))})),Fr=Bn((function(e,t){let[n,o]=ar();return r.createElement(o,null,jn({ourProps:{ref:t,"aria-labelledby":n,role:"group"},theirProps:e,slot:{},defaultTag:"div",name:"Menu.Section"}))})),Ar=Bn((function(e,t){let n=(0,r.useId)(),{id:o=`headlessui-menu-heading-${n}`,...i}=e,a=or();return ie((()=>a.register(o)),[o,a.register]),jn({ourProps:{id:o,ref:t,role:"presentation",...a.props},theirProps:i,slot:{},defaultTag:"header",name:"Menu.Heading"})})),jr=Bn((function(e,t){return jn({ourProps:{ref:t,role:"separator"},theirProps:e,slot:{},defaultTag:"div",name:"Menu.Separator"})})),Dr=Object.assign(Lr,{Button:Nr,Items:Ir,Item:Mr,Section:Fr,Heading:Ar,Separator:jr});function _r(){let e=(0,r.useRef)(!1);return ie((()=>(e.current=!0,()=>{e.current=!1})),[]),e}function zr(e){let t={called:!1};return(...n)=>{if(!t.called)return t.called=!0,e(...n)}}function Hr(e,...t){e&&t.length>0&&e.classList.add(...t)}function Wr(e,...t){e&&t.length>0&&e.classList.remove(...t)}function Br({container:e,direction:t,classes:n,onStart:o,onStop:i}){let a=_r(),l=oe(),s=(0,r.useRef)(!1);ie((()=>{if("idle"===t||!a.current)return;o.current(t);let r=e.current;return r?l.add(function(e,{direction:t,done:n,classes:r,inFlight:o}){let i=re(),a=void 0!==n?zr(n):()=>{};"enter"===t&&(e.removeAttribute("hidden"),e.style.display="");let l=me(t,{enter:()=>r.enter,leave:()=>r.leave}),s=me(t,{enter:()=>r.enterTo,leave:()=>r.leaveTo}),c=me(t,{enter:()=>r.enterFrom,leave:()=>r.leaveFrom});return function(e,{inFlight:t,prepare:n}){if(null!=t&&t.current)return void n();let r=e.style.transition;e.style.transition="none",n(),e.offsetHeight,e.style.transition=r}(e,{prepare(){Wr(e,...r.base,...r.enter,...r.enterTo,...r.enterFrom,...r.leave,...r.leaveFrom,...r.leaveTo,...r.entered),Hr(e,...r.base,...l,...c)},inFlight:o}),o&&(o.current=!0),i.nextFrame((()=>{i.add(function(e,t){let n=zr(t),r=re();if(!e)return r.dispose;let{transitionDuration:o,transitionDelay:i}=getComputedStyle(e),[a,l]=[o,i].map((e=>{let[t=0]=e.split(",").filter(Boolean).map((e=>e.includes("ms")?parseFloat(e):1e3*parseFloat(e))).sort(((e,t)=>t-e));return t})),s=a+l;if(0!==s){let t=r.group((r=>{let o=r.setTimeout((()=>{n(),r.dispose()}),s);r.addEventListener(e,"transitionrun",(i=>{i.target===i.currentTarget&&(o(),r.addEventListener(e,"transitioncancel",(e=>{e.target===e.currentTarget&&(n(),t())})))}))}));r.addEventListener(e,"transitionend",(e=>{e.target===e.currentTarget&&(n(),r.dispose())}))}else n();return r.dispose}(e,(()=>(Wr(e,...r.base,...l),Hr(e,...r.base,...r.entered,...s),o&&(o.current=!1),a())))),Wr(e,...r.base,...l,...c),Hr(e,...r.base,...l,...s)})),i.dispose}(r,{direction:t,classes:n.current,inFlight:s,done(){i.current(t)}})):i.current(t),l.dispose}),[t])}function Vr(e=""){return e.split(/\s+/).filter((e=>e.length>1))}function $r(e){var t;return!!(e.enter||e.enterFrom||e.enterTo||e.leave||e.leaveFrom||e.leaveTo)||(null!=(t=e.as)?t:Xr)!==r.Fragment||1===r.Children.count(e.children)}let Ur=(0,r.createContext)(null);Ur.displayName="TransitionContext";var qr=(e=>(e.Visible="visible",e.Hidden="hidden",e))(qr||{});let Gr=(0,r.createContext)(null);function Kr(e){return"children"in e?Kr(e.children):e.current.filter((({el:e})=>null!==e.current)).filter((({state:e})=>"visible"===e)).length>0}function Yr(e,t){let n=ae(e),o=(0,r.useRef)([]),i=_r(),a=oe(),l=le(((e,t=An.Hidden)=>{let r=o.current.findIndex((({el:t})=>t===e));-1!==r&&(me(t,{[An.Unmount](){o.current.splice(r,1)},[An.Hidden](){o.current[r].state="hidden"}}),a.microTask((()=>{var e;!Kr(o)&&i.current&&(null==(e=n.current)||e.call(n))})))})),s=le((e=>{let t=o.current.find((({el:t})=>t===e));return t?"visible"!==t.state&&(t.state="visible"):o.current.push({el:e,state:"visible"}),()=>l(e,An.Unmount)})),c=(0,r.useRef)([]),u=(0,r.useRef)(Promise.resolve()),d=(0,r.useRef)({enter:[],leave:[],idle:[]}),f=le(((e,n,r)=>{c.current.splice(0),t&&(t.chains.current[n]=t.chains.current[n].filter((([t])=>t!==e))),null==t||t.chains.current[n].push([e,new Promise((e=>{c.current.push(e)}))]),null==t||t.chains.current[n].push([e,new Promise((e=>{Promise.all(d.current[n].map((([e,t])=>t))).then((()=>e()))}))]),"enter"===n?u.current=u.current.then((()=>null==t?void 0:t.wait.current)).then((()=>r(n))):r(n)})),p=le(((e,t,n)=>{Promise.all(d.current[t].splice(0).map((([e,t])=>t))).then((()=>{var e;null==(e=c.current.shift())||e()})).then((()=>n(t)))}));return(0,r.useMemo)((()=>({children:o,register:s,unregister:l,onStart:f,onStop:p,wait:u,chains:d})),[s,l,o,f,p,d,u])}Gr.displayName="NestingContext";let Xr=r.Fragment,Qr=Fn.RenderStrategy,Zr=Bn((function(e,t){let{show:n,appear:o=!1,unmount:i=!0,...a}=e,l=(0,r.useRef)(null),s=He(...$r(e)?[l,t]:null===t?[]:[t]);cr();let c=Tn();if(void 0===n&&null!==c&&(n=(c&Sn.Open)===Sn.Open),void 0===n)throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");let[u,d]=(0,r.useState)(n?"visible":"hidden"),f=Yr((()=>{n||d("hidden")})),[p,m]=(0,r.useState)(!0),h=(0,r.useRef)([n]);ie((()=>{!1!==p&&h.current[h.current.length-1]!==n&&(h.current.push(n),m(!1))}),[h,n]);let g=(0,r.useMemo)((()=>({show:n,appear:o,initial:p})),[n,o,p]);pe(l,(()=>d("hidden"))),ie((()=>{n?d("visible"):!Kr(f)&&null!==l.current&&d("hidden")}),[n,f]);let v={unmount:i},b=le((()=>{var t;p&&m(!1),null==(t=e.beforeEnter)||t.call(e)})),y=le((()=>{var t;p&&m(!1),null==(t=e.beforeLeave)||t.call(e)}));return r.createElement(Gr.Provider,{value:f},r.createElement(Ur.Provider,{value:g},jn({ourProps:{...v,as:r.Fragment,children:r.createElement(Jr,{ref:s,...v,...a,beforeEnter:b,beforeLeave:y})},theirProps:{},defaultTag:r.Fragment,features:Qr,visible:"visible"===u,name:"Transition"})))})),Jr=Bn((function(e,t){var n,o,i;let{beforeEnter:a,afterEnter:l,beforeLeave:s,afterLeave:c,enter:u,enterFrom:d,enterTo:f,entered:p,leave:m,leaveFrom:h,leaveTo:g,...v}=e,b=(0,r.useRef)(null),y=$r(e),w=He(...y?[b,t]:null===t?[]:[t]),x=null==(n=v.unmount)||n?An.Unmount:An.Hidden,{show:E,appear:k,initial:C}=function(){let e=(0,r.useContext)(Ur);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),[O,S]=(0,r.useState)(E?"visible":"hidden"),T=function(){let e=(0,r.useContext)(Gr);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),{register:R,unregister:P}=T;ie((()=>R(b)),[R,b]),ie((()=>{if(x===An.Hidden&&b.current)return E&&"visible"!==O?void S("visible"):me(O,{hidden:()=>P(b),visible:()=>R(b)})}),[O,b,R,P,E,x]);let L=ae({base:Vr(v.className),enter:Vr(u),enterFrom:Vr(d),enterTo:Vr(f),entered:Vr(p),leave:Vr(m),leaveFrom:Vr(h),leaveTo:Vr(g)}),N=ae({beforeEnter:a,afterEnter:l,beforeLeave:s,afterLeave:c}),I=cr();ie((()=>{if(y&&I&&"visible"===O&&null===b.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[b,O,I,y]);let M=k&&E&&C,F=M?"enter":!I||C&&!k?"idle":E?"enter":"leave",A=function(e=0){let[t,n]=(0,r.useState)(e),o=_r(),i=(0,r.useCallback)((e=>{o.current&&n((t=>t|e))}),[t,o]),a=(0,r.useCallback)((e=>!!(t&e)),[t]),l=(0,r.useCallback)((e=>{o.current&&n((t=>t&~e))}),[n,o]),s=(0,r.useCallback)((e=>{o.current&&n((t=>t^e))}),[n]);return{flags:t,addFlag:i,hasFlag:a,removeFlag:l,toggleFlag:s}}(0),j=le((e=>me(e,{enter:()=>{var e,t;A.addFlag(Sn.Opening),null==(t=(e=N.current).beforeEnter)||t.call(e)},leave:()=>{var e,t;A.addFlag(Sn.Closing),null==(t=(e=N.current).beforeLeave)||t.call(e)},idle:()=>{}}))),D=le((e=>me(e,{enter:()=>{var e,t;A.removeFlag(Sn.Opening),null==(t=(e=N.current).afterEnter)||t.call(e)},leave:()=>{var e,t;A.removeFlag(Sn.Closing),null==(t=(e=N.current).afterLeave)||t.call(e)},idle:()=>{}}))),_=(0,r.useRef)(!1),z=Yr((()=>{_.current||(S("hidden"),P(b))}),T);Br({container:b,classes:L,direction:F,onStart:ae((e=>{_.current=!0,z.onStart(b,e,j)})),onStop:ae((e=>{_.current=!1,z.onStop(b,e,D),"leave"===e&&!Kr(z)&&(S("hidden"),P(b))}))});let H=v,W={ref:w};return M?H={...H,className:In(v.className,...L.current.enter,...L.current.enterFrom)}:_.current?(H.className=In(v.className,null==(o=b.current)?void 0:o.className),""===H.className&&delete H.className):(H.className=In(v.className,null==(i=b.current)?void 0:i.className,...me(F,{enter:[...L.current.enterTo,...L.current.entered],leave:L.current.leaveTo,idle:[]})),""===H.className&&delete H.className),r.createElement(Gr.Provider,{value:z},r.createElement(Rn,{value:me(O,{visible:Sn.Open,hidden:Sn.Closed})|A.flags},jn({ourProps:W,theirProps:H,defaultTag:Xr,features:Qr,visible:"visible"===O,name:"Transition.Child"})))})),eo=Bn((function(e,t){let n=null!==(0,r.useContext)(Ur),o=null!==Tn();return r.createElement(r.Fragment,null,!n&&o?r.createElement(Zr,{ref:t,...e}):r.createElement(Jr,{ref:t,...e}))})),to=Object.assign(Zr,{Child:eo,Root:Zr});function no(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}function ro(e){return e instanceof no(e).Element||e instanceof Element}function oo(e){return e instanceof no(e).HTMLElement||e instanceof HTMLElement}function io(e){return"undefined"!=typeof ShadowRoot&&(e instanceof no(e).ShadowRoot||e instanceof ShadowRoot)}var ao=Math.max,lo=Math.min,so=Math.round;function co(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map((function(e){return e.brand+"/"+e.version})).join(" "):navigator.userAgent}function uo(){return!/^((?!chrome|android).)*safari/i.test(co())}function fo(e,t,n){void 0===t&&(t=!1),void 0===n&&(n=!1);var r=e.getBoundingClientRect(),o=1,i=1;t&&oo(e)&&(o=e.offsetWidth>0&&so(r.width)/e.offsetWidth||1,i=e.offsetHeight>0&&so(r.height)/e.offsetHeight||1);var a=(ro(e)?no(e):window).visualViewport,l=!uo()&&n,s=(r.left+(l&&a?a.offsetLeft:0))/o,c=(r.top+(l&&a?a.offsetTop:0))/i,u=r.width/o,d=r.height/i;return{width:u,height:d,top:c,right:s+u,bottom:c+d,left:s,x:s,y:c}}function po(e){var t=no(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function mo(e){return e?(e.nodeName||"").toLowerCase():null}function ho(e){return((ro(e)?e.ownerDocument:e.document)||window.document).documentElement}function go(e){return fo(ho(e)).left+po(e).scrollLeft}function vo(e){return no(e).getComputedStyle(e)}function bo(e){var t=vo(e),n=t.overflow,r=t.overflowX,o=t.overflowY;return/auto|scroll|overlay|hidden/.test(n+o+r)}function yo(e,t,n){void 0===n&&(n=!1);var r,o,i=oo(t),a=oo(t)&&function(e){var t=e.getBoundingClientRect(),n=so(t.width)/e.offsetWidth||1,r=so(t.height)/e.offsetHeight||1;return 1!==n||1!==r}(t),l=ho(t),s=fo(e,a,n),c={scrollLeft:0,scrollTop:0},u={x:0,y:0};return(i||!i&&!n)&&(("body"!==mo(t)||bo(l))&&(c=(r=t)!==no(r)&&oo(r)?{scrollLeft:(o=r).scrollLeft,scrollTop:o.scrollTop}:po(r)),oo(t)?((u=fo(t,!0)).x+=t.clientLeft,u.y+=t.clientTop):l&&(u.x=go(l))),{x:s.left+c.scrollLeft-u.x,y:s.top+c.scrollTop-u.y,width:s.width,height:s.height}}function wo(e){var t=fo(e),n=e.offsetWidth,r=e.offsetHeight;return Math.abs(t.width-n)<=1&&(n=t.width),Math.abs(t.height-r)<=1&&(r=t.height),{x:e.offsetLeft,y:e.offsetTop,width:n,height:r}}function xo(e){return"html"===mo(e)?e:e.assignedSlot||e.parentNode||(io(e)?e.host:null)||ho(e)}function Eo(e){return["html","body","#document"].indexOf(mo(e))>=0?e.ownerDocument.body:oo(e)&&bo(e)?e:Eo(xo(e))}function ko(e,t){var n;void 0===t&&(t=[]);var r=Eo(e),o=r===(null==(n=e.ownerDocument)?void 0:n.body),i=no(r),a=o?[i].concat(i.visualViewport||[],bo(r)?r:[]):r,l=t.concat(a);return o?l:l.concat(ko(xo(a)))}function Co(e){return["table","td","th"].indexOf(mo(e))>=0}function Oo(e){return oo(e)&&"fixed"!==vo(e).position?e.offsetParent:null}function So(e){for(var t=no(e),n=Oo(e);n&&Co(n)&&"static"===vo(n).position;)n=Oo(n);return n&&("html"===mo(n)||"body"===mo(n)&&"static"===vo(n).position)?t:n||function(e){var t=/firefox/i.test(co());if(/Trident/i.test(co())&&oo(e)&&"fixed"===vo(e).position)return null;var n=xo(e);for(io(n)&&(n=n.host);oo(n)&&["html","body"].indexOf(mo(n))<0;){var r=vo(n);if("none"!==r.transform||"none"!==r.perspective||"paint"===r.contain||-1!==["transform","perspective"].indexOf(r.willChange)||t&&"filter"===r.willChange||t&&r.filter&&"none"!==r.filter)return n;n=n.parentNode}return null}(e)||t}var To="top",Ro="bottom",Po="right",Lo="left",No="auto",Io=[To,Ro,Po,Lo],Mo="start",Fo="end",Ao="viewport",jo="popper",Do=Io.reduce((function(e,t){return e.concat([t+"-"+Mo,t+"-"+Fo])}),[]),_o=[].concat(Io,[No]).reduce((function(e,t){return e.concat([t,t+"-"+Mo,t+"-"+Fo])}),[]),zo=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function Ho(e){var t=new Map,n=new Set,r=[];function o(e){n.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!n.has(e)){var r=t.get(e);r&&o(r)}})),r.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){n.has(e.name)||o(e)})),r}var Wo={placement:"bottom",modifiers:[],strategy:"absolute"};function Bo(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function Vo(e){void 0===e&&(e={});var t=e,n=t.defaultModifiers,r=void 0===n?[]:n,o=t.defaultOptions,i=void 0===o?Wo:o;return function(e,t,n){void 0===n&&(n=i);var o,a,l={placement:"bottom",orderedModifiers:[],options:Object.assign({},Wo,i),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},s=[],c=!1,u={state:l,setOptions:function(n){var o="function"==typeof n?n(l.options):n;d(),l.options=Object.assign({},i,l.options,o),l.scrollParents={reference:ro(e)?ko(e):e.contextElement?ko(e.contextElement):[],popper:ko(t)};var a,c,f=function(e){var t=Ho(e);return zo.reduce((function(e,n){return e.concat(t.filter((function(e){return e.phase===n})))}),[])}((a=[].concat(r,l.options.modifiers),c=a.reduce((function(e,t){var n=e[t.name];return e[t.name]=n?Object.assign({},n,t,{options:Object.assign({},n.options,t.options),data:Object.assign({},n.data,t.data)}):t,e}),{}),Object.keys(c).map((function(e){return c[e]}))));return l.orderedModifiers=f.filter((function(e){return e.enabled})),l.orderedModifiers.forEach((function(e){var t=e.name,n=e.options,r=void 0===n?{}:n,o=e.effect;if("function"==typeof o){var i=o({state:l,name:t,instance:u,options:r});s.push(i||function(){})}})),u.update()},forceUpdate:function(){if(!c){var e=l.elements,t=e.reference,n=e.popper;if(Bo(t,n)){l.rects={reference:yo(t,So(n),"fixed"===l.options.strategy),popper:wo(n)},l.reset=!1,l.placement=l.options.placement,l.orderedModifiers.forEach((function(e){return l.modifiersData[e.name]=Object.assign({},e.data)}));for(var r=0;r<l.orderedModifiers.length;r++)if(!0!==l.reset){var o=l.orderedModifiers[r],i=o.fn,a=o.options,s=void 0===a?{}:a,d=o.name;"function"==typeof i&&(l=i({state:l,options:s,name:d,instance:u})||l)}else l.reset=!1,r=-1}}},update:(o=function(){return new Promise((function(e){u.forceUpdate(),e(l)}))},function(){return a||(a=new Promise((function(e){Promise.resolve().then((function(){a=void 0,e(o())}))}))),a}),destroy:function(){d(),c=!0}};if(!Bo(e,t))return u;function d(){s.forEach((function(e){return e()})),s=[]}return u.setOptions(n).then((function(e){!c&&n.onFirstUpdate&&n.onFirstUpdate(e)})),u}}var $o={passive:!0};function Uo(e){return e.split("-")[0]}function qo(e){return e.split("-")[1]}function Go(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function Ko(e){var t,n=e.reference,r=e.element,o=e.placement,i=o?Uo(o):null,a=o?qo(o):null,l=n.x+n.width/2-r.width/2,s=n.y+n.height/2-r.height/2;switch(i){case To:t={x:l,y:n.y-r.height};break;case Ro:t={x:l,y:n.y+n.height};break;case Po:t={x:n.x+n.width,y:s};break;case Lo:t={x:n.x-r.width,y:s};break;default:t={x:n.x,y:n.y}}var c=i?Go(i):null;if(null!=c){var u="y"===c?"height":"width";switch(a){case Mo:t[c]=t[c]-(n[u]/2-r[u]/2);break;case Fo:t[c]=t[c]+(n[u]/2-r[u]/2)}}return t}var Yo={top:"auto",right:"auto",bottom:"auto",left:"auto"};function Xo(e){var t,n=e.popper,r=e.popperRect,o=e.placement,i=e.variation,a=e.offsets,l=e.position,s=e.gpuAcceleration,c=e.adaptive,u=e.roundOffsets,d=e.isFixed,f=a.x,p=void 0===f?0:f,m=a.y,h=void 0===m?0:m,g="function"==typeof u?u({x:p,y:h}):{x:p,y:h};p=g.x,h=g.y;var v=a.hasOwnProperty("x"),b=a.hasOwnProperty("y"),y=Lo,w=To,x=window;if(c){var E=So(n),k="clientHeight",C="clientWidth";E===no(n)&&"static"!==vo(E=ho(n)).position&&"absolute"===l&&(k="scrollHeight",C="scrollWidth"),(o===To||(o===Lo||o===Po)&&i===Fo)&&(w=Ro,h-=(d&&E===x&&x.visualViewport?x.visualViewport.height:E[k])-r.height,h*=s?1:-1),o!==Lo&&(o!==To&&o!==Ro||i!==Fo)||(y=Po,p-=(d&&E===x&&x.visualViewport?x.visualViewport.width:E[C])-r.width,p*=s?1:-1)}var O,S=Object.assign({position:l},c&&Yo),T=!0===u?function(e,t){var n=e.x,r=e.y,o=t.devicePixelRatio||1;return{x:so(n*o)/o||0,y:so(r*o)/o||0}}({x:p,y:h},no(n)):{x:p,y:h};return p=T.x,h=T.y,s?Object.assign({},S,((O={})[w]=b?"0":"",O[y]=v?"0":"",O.transform=(x.devicePixelRatio||1)<=1?"translate("+p+"px, "+h+"px)":"translate3d("+p+"px, "+h+"px, 0)",O)):Object.assign({},S,((t={})[w]=b?h+"px":"",t[y]=v?p+"px":"",t.transform="",t))}const Qo={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var n=t.styles[e]||{},r=t.attributes[e]||{},o=t.elements[e];oo(o)&&mo(o)&&(Object.assign(o.style,n),Object.keys(r).forEach((function(e){var t=r[e];!1===t?o.removeAttribute(e):o.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow),function(){Object.keys(t.elements).forEach((function(e){var r=t.elements[e],o=t.attributes[e]||{},i=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:n[e]).reduce((function(e,t){return e[t]="",e}),{});oo(r)&&mo(r)&&(Object.assign(r.style,i),Object.keys(o).forEach((function(e){r.removeAttribute(e)})))}))}},requires:["computeStyles"]},Zo={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.offset,i=void 0===o?[0,0]:o,a=_o.reduce((function(e,n){return e[n]=function(e,t,n){var r=Uo(e),o=[Lo,To].indexOf(r)>=0?-1:1,i="function"==typeof n?n(Object.assign({},t,{placement:e})):n,a=i[0],l=i[1];return a=a||0,l=(l||0)*o,[Lo,Po].indexOf(r)>=0?{x:l,y:a}:{x:a,y:l}}(n,t.rects,i),e}),{}),l=a[t.placement],s=l.x,c=l.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=s,t.modifiersData.popperOffsets.y+=c),t.modifiersData[r]=a}};var Jo={left:"right",right:"left",bottom:"top",top:"bottom"};function ei(e){return e.replace(/left|right|bottom|top/g,(function(e){return Jo[e]}))}var ti={start:"end",end:"start"};function ni(e){return e.replace(/start|end/g,(function(e){return ti[e]}))}function ri(e,t){var n=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(n&&io(n)){var r=t;do{if(r&&e.isSameNode(r))return!0;r=r.parentNode||r.host}while(r)}return!1}function oi(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function ii(e,t,n){return t===Ao?oi(function(e,t){var n=no(e),r=ho(e),o=n.visualViewport,i=r.clientWidth,a=r.clientHeight,l=0,s=0;if(o){i=o.width,a=o.height;var c=uo();(c||!c&&"fixed"===t)&&(l=o.offsetLeft,s=o.offsetTop)}return{width:i,height:a,x:l+go(e),y:s}}(e,n)):ro(t)?function(e,t){var n=fo(e,!1,"fixed"===t);return n.top=n.top+e.clientTop,n.left=n.left+e.clientLeft,n.bottom=n.top+e.clientHeight,n.right=n.left+e.clientWidth,n.width=e.clientWidth,n.height=e.clientHeight,n.x=n.left,n.y=n.top,n}(t,n):oi(function(e){var t,n=ho(e),r=po(e),o=null==(t=e.ownerDocument)?void 0:t.body,i=ao(n.scrollWidth,n.clientWidth,o?o.scrollWidth:0,o?o.clientWidth:0),a=ao(n.scrollHeight,n.clientHeight,o?o.scrollHeight:0,o?o.clientHeight:0),l=-r.scrollLeft+go(e),s=-r.scrollTop;return"rtl"===vo(o||n).direction&&(l+=ao(n.clientWidth,o?o.clientWidth:0)-i),{width:i,height:a,x:l,y:s}}(ho(e)))}function ai(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function li(e,t){return t.reduce((function(t,n){return t[n]=e,t}),{})}function si(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=void 0===r?e.placement:r,i=n.strategy,a=void 0===i?e.strategy:i,l=n.boundary,s=void 0===l?"clippingParents":l,c=n.rootBoundary,u=void 0===c?Ao:c,d=n.elementContext,f=void 0===d?jo:d,p=n.altBoundary,m=void 0!==p&&p,h=n.padding,g=void 0===h?0:h,v=ai("number"!=typeof g?g:li(g,Io)),b=f===jo?"reference":jo,y=e.rects.popper,w=e.elements[m?b:f],x=function(e,t,n,r){var o="clippingParents"===t?function(e){var t=ko(xo(e)),n=["absolute","fixed"].indexOf(vo(e).position)>=0&&oo(e)?So(e):e;return ro(n)?t.filter((function(e){return ro(e)&&ri(e,n)&&"body"!==mo(e)})):[]}(e):[].concat(t),i=[].concat(o,[n]),a=i[0],l=i.reduce((function(t,n){var o=ii(e,n,r);return t.top=ao(o.top,t.top),t.right=lo(o.right,t.right),t.bottom=lo(o.bottom,t.bottom),t.left=ao(o.left,t.left),t}),ii(e,a,r));return l.width=l.right-l.left,l.height=l.bottom-l.top,l.x=l.left,l.y=l.top,l}(ro(w)?w:w.contextElement||ho(e.elements.popper),s,u,a),E=fo(e.elements.reference),k=Ko({reference:E,element:y,strategy:"absolute",placement:o}),C=oi(Object.assign({},y,k)),O=f===jo?C:E,S={top:x.top-O.top+v.top,bottom:O.bottom-x.bottom+v.bottom,left:x.left-O.left+v.left,right:O.right-x.right+v.right},T=e.modifiersData.offset;if(f===jo&&T){var R=T[o];Object.keys(S).forEach((function(e){var t=[Po,Ro].indexOf(e)>=0?1:-1,n=[To,Ro].indexOf(e)>=0?"y":"x";S[e]+=R[n]*t}))}return S}const ci={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name;if(!t.modifiersData[r]._skip){for(var o=n.mainAxis,i=void 0===o||o,a=n.altAxis,l=void 0===a||a,s=n.fallbackPlacements,c=n.padding,u=n.boundary,d=n.rootBoundary,f=n.altBoundary,p=n.flipVariations,m=void 0===p||p,h=n.allowedAutoPlacements,g=t.options.placement,v=Uo(g),b=s||(v!==g&&m?function(e){if(Uo(e)===No)return[];var t=ei(e);return[ni(e),t,ni(t)]}(g):[ei(g)]),y=[g].concat(b).reduce((function(e,n){return e.concat(Uo(n)===No?function(e,t){void 0===t&&(t={});var n=t,r=n.placement,o=n.boundary,i=n.rootBoundary,a=n.padding,l=n.flipVariations,s=n.allowedAutoPlacements,c=void 0===s?_o:s,u=qo(r),d=u?l?Do:Do.filter((function(e){return qo(e)===u})):Io,f=d.filter((function(e){return c.indexOf(e)>=0}));0===f.length&&(f=d);var p=f.reduce((function(t,n){return t[n]=si(e,{placement:n,boundary:o,rootBoundary:i,padding:a})[Uo(n)],t}),{});return Object.keys(p).sort((function(e,t){return p[e]-p[t]}))}(t,{placement:n,boundary:u,rootBoundary:d,padding:c,flipVariations:m,allowedAutoPlacements:h}):n)}),[]),w=t.rects.reference,x=t.rects.popper,E=new Map,k=!0,C=y[0],O=0;O<y.length;O++){var S=y[O],T=Uo(S),R=qo(S)===Mo,P=[To,Ro].indexOf(T)>=0,L=P?"width":"height",N=si(t,{placement:S,boundary:u,rootBoundary:d,altBoundary:f,padding:c}),I=P?R?Po:Lo:R?Ro:To;w[L]>x[L]&&(I=ei(I));var M=ei(I),F=[];if(i&&F.push(N[T]<=0),l&&F.push(N[I]<=0,N[M]<=0),F.every((function(e){return e}))){C=S,k=!1;break}E.set(S,F)}if(k)for(var A=function(e){var t=y.find((function(t){var n=E.get(t);if(n)return n.slice(0,e).every((function(e){return e}))}));if(t)return C=t,"break"},j=m?3:1;j>0&&"break"!==A(j);j--);t.placement!==C&&(t.modifiersData[r]._skip=!0,t.placement=C,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function ui(e,t,n){return ao(e,lo(t,n))}function di(e,t,n){return void 0===n&&(n={x:0,y:0}),{top:e.top-t.height-n.y,right:e.right-t.width+n.x,bottom:e.bottom-t.height+n.y,left:e.left-t.width-n.x}}function fi(e){return[To,Po,Ro,Lo].some((function(t){return e[t]>=0}))}var pi=Vo({defaultModifiers:[{name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,n=e.instance,r=e.options,o=r.scroll,i=void 0===o||o,a=r.resize,l=void 0===a||a,s=no(t.elements.popper),c=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&c.forEach((function(e){e.addEventListener("scroll",n.update,$o)})),l&&s.addEventListener("resize",n.update,$o),function(){i&&c.forEach((function(e){e.removeEventListener("scroll",n.update,$o)})),l&&s.removeEventListener("resize",n.update,$o)}},data:{}},{name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,n=e.name;t.modifiersData[n]=Ko({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}},{name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,n=e.options,r=n.gpuAcceleration,o=void 0===r||r,i=n.adaptive,a=void 0===i||i,l=n.roundOffsets,s=void 0===l||l,c={placement:Uo(t.placement),variation:qo(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:o,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,Xo(Object.assign({},c,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:a,roundOffsets:s})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,Xo(Object.assign({},c,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:s})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}},Qo,Zo,ci,{name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,n=e.options,r=e.name,o=n.mainAxis,i=void 0===o||o,a=n.altAxis,l=void 0!==a&&a,s=n.boundary,c=n.rootBoundary,u=n.altBoundary,d=n.padding,f=n.tether,p=void 0===f||f,m=n.tetherOffset,h=void 0===m?0:m,g=si(t,{boundary:s,rootBoundary:c,padding:d,altBoundary:u}),v=Uo(t.placement),b=qo(t.placement),y=!b,w=Go(v),x="x"===w?"y":"x",E=t.modifiersData.popperOffsets,k=t.rects.reference,C=t.rects.popper,O="function"==typeof h?h(Object.assign({},t.rects,{placement:t.placement})):h,S="number"==typeof O?{mainAxis:O,altAxis:O}:Object.assign({mainAxis:0,altAxis:0},O),T=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,R={x:0,y:0};if(E){if(i){var P,L="y"===w?To:Lo,N="y"===w?Ro:Po,I="y"===w?"height":"width",M=E[w],F=M+g[L],A=M-g[N],j=p?-C[I]/2:0,D=b===Mo?k[I]:C[I],_=b===Mo?-C[I]:-k[I],z=t.elements.arrow,H=p&&z?wo(z):{width:0,height:0},W=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},B=W[L],V=W[N],$=ui(0,k[I],H[I]),U=y?k[I]/2-j-$-B-S.mainAxis:D-$-B-S.mainAxis,q=y?-k[I]/2+j+$+V+S.mainAxis:_+$+V+S.mainAxis,G=t.elements.arrow&&So(t.elements.arrow),K=G?"y"===w?G.clientTop||0:G.clientLeft||0:0,Y=null!=(P=null==T?void 0:T[w])?P:0,X=M+q-Y,Q=ui(p?lo(F,M+U-Y-K):F,M,p?ao(A,X):A);E[w]=Q,R[w]=Q-M}if(l){var Z,J="x"===w?To:Lo,ee="x"===w?Ro:Po,te=E[x],ne="y"===x?"height":"width",re=te+g[J],oe=te-g[ee],ie=-1!==[To,Lo].indexOf(v),ae=null!=(Z=null==T?void 0:T[x])?Z:0,le=ie?re:te-k[ne]-C[ne]-ae+S.altAxis,se=ie?te+k[ne]+C[ne]-ae-S.altAxis:oe,ce=p&&ie?function(e,t,n){var r=ui(e,t,n);return r>n?n:r}(le,te,se):ui(p?le:re,te,p?se:oe);E[x]=ce,R[x]=ce-te}t.modifiersData[r]=R}},requiresIfExists:["offset"]},{name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,n=e.state,r=e.name,o=e.options,i=n.elements.arrow,a=n.modifiersData.popperOffsets,l=Uo(n.placement),s=Go(l),c=[Lo,Po].indexOf(l)>=0?"height":"width";if(i&&a){var u=function(e,t){return ai("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:li(e,Io))}(o.padding,n),d=wo(i),f="y"===s?To:Lo,p="y"===s?Ro:Po,m=n.rects.reference[c]+n.rects.reference[s]-a[s]-n.rects.popper[c],h=a[s]-n.rects.reference[s],g=So(i),v=g?"y"===s?g.clientHeight||0:g.clientWidth||0:0,b=m/2-h/2,y=u[f],w=v-d[c]-u[p],x=v/2-d[c]/2+b,E=ui(y,x,w),k=s;n.modifiersData[r]=((t={})[k]=E,t.centerOffset=E-x,t)}},effect:function(e){var t=e.state,n=e.options.element,r=void 0===n?"[data-popper-arrow]":n;null!=r&&("string"!=typeof r||(r=t.elements.popper.querySelector(r)))&&ri(t.elements.popper,r)&&(t.elements.arrow=r)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]},{name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,n=e.name,r=t.rects.reference,o=t.rects.popper,i=t.modifiersData.preventOverflow,a=si(t,{elementContext:"reference"}),l=si(t,{altBoundary:!0}),s=di(a,r),c=di(l,o,i),u=fi(s),d=fi(c);t.modifiersData[n]={referenceClippingOffsets:s,popperEscapeOffsets:c,isReferenceHidden:u,hasPopperEscaped:d},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":u,"data-popper-escaped":d})}}]});function mi(e){var t,n,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var o=e.length;for(t=0;t<o;t++)e[t]&&(n=mi(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}const hi="-";function gi(e){const t=function(e){const{theme:t,prefix:n}=e,r={nextPart:new Map,validators:[]},o=function(e,t){return t?e.map((([e,n])=>[e,n.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,n])=>[t+e,n]))):e))])):e}(Object.entries(e.classGroups),n);return o.forEach((([e,n])=>{yi(n,r,e,t)})),r}(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:function(e){const n=e.split(hi);return""===n[0]&&1!==n.length&&n.shift(),vi(n,t)||function(e){if(bi.test(e)){const t=bi.exec(e)[1],n=t?.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}}(e)},getConflictingClassGroupIds:function(e,t){const o=n[e]||[];return t&&r[e]?[...o,...r[e]]:o}}}function vi(e,t){if(0===e.length)return t.classGroupId;const n=e[0],r=t.nextPart.get(n),o=r?vi(e.slice(1),r):void 0;if(o)return o;if(0===t.validators.length)return;const i=e.join(hi);return t.validators.find((({validator:e})=>e(i)))?.classGroupId}const bi=/^\[(.+)\]$/;function yi(e,t,n,r){e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return e.isThemeGetter?void yi(e(r),t,n,r):void t.validators.push({validator:e,classGroupId:n});Object.entries(e).forEach((([e,o])=>{yi(o,wi(t,e),n,r)}))}else(""===e?t:wi(t,e)).classGroupId=n}))}function wi(e,t){let n=e;return t.split(hi).forEach((e=>{n.nextPart.has(e)||n.nextPart.set(e,{nextPart:new Map,validators:[]}),n=n.nextPart.get(e)})),n}function xi(e){if(e<1)return{get:()=>{},set:()=>{}};let t=0,n=new Map,r=new Map;function o(o,i){n.set(o,i),t++,t>e&&(t=0,r=n,n=new Map)}return{get(e){let t=n.get(e);return void 0!==t?t:void 0!==(t=r.get(e))?(o(e,t),t):void 0},set(e,t){n.has(e)?n.set(e,t):o(e,t)}}}const Ei="!";function ki(e){const t=e.separator,n=1===t.length,r=t[0],o=t.length;return function(e){const i=[];let a,l=0,s=0;for(let c=0;c<e.length;c++){let u=e[c];if(0===l){if(u===r&&(n||e.slice(c,c+o)===t)){i.push(e.slice(s,c)),s=c+o;continue}if("/"===u){a=c;continue}}"["===u?l++:"]"===u&&l--}const c=0===i.length?e:e.substring(s),u=c.startsWith(Ei);return{modifiers:i,hasImportantModifier:u,baseClassName:u?c.substring(1):c,maybePostfixModifierPosition:a&&a>s?a-s:void 0}}}const Ci=/\s+/;function Oi(){let e,t,n=0,r="";for(;n<arguments.length;)(e=arguments[n++])&&(t=Si(e))&&(r&&(r+=" "),r+=t);return r}function Si(e){if("string"==typeof e)return e;let t,n="";for(let r=0;r<e.length;r++)e[r]&&(t=Si(e[r]))&&(n&&(n+=" "),n+=t);return n}function Ti(e,...t){let n,r,o,i=function(l){const s=t.reduce(((e,t)=>t(e)),e());return n=function(e){return{cache:xi(e.cacheSize),splitModifiers:ki(e),...gi(e)}}(s),r=n.cache.get,o=n.cache.set,i=a,a(l)};function a(e){const t=r(e);if(t)return t;const i=function(e,t){const{splitModifiers:n,getClassGroupId:r,getConflictingClassGroupIds:o}=t,i=new Set;return e.trim().split(Ci).map((e=>{const{modifiers:t,hasImportantModifier:o,baseClassName:i,maybePostfixModifierPosition:a}=n(e);let l=r(a?i.substring(0,a):i),s=Boolean(a);if(!l){if(!a)return{isTailwindClass:!1,originalClassName:e};if(l=r(i),!l)return{isTailwindClass:!1,originalClassName:e};s=!1}const c=function(e){if(e.length<=1)return e;const t=[];let n=[];return e.forEach((e=>{"["===e[0]?(t.push(...n.sort(),e),n=[]):n.push(e)})),t.push(...n.sort()),t}(t).join(":");return{isTailwindClass:!0,modifierId:o?c+Ei:c,classGroupId:l,originalClassName:e,hasPostfixModifier:s}})).reverse().filter((e=>{if(!e.isTailwindClass)return!0;const{modifierId:t,classGroupId:n,hasPostfixModifier:r}=e,a=t+n;return!i.has(a)&&(i.add(a),o(n,r).forEach((e=>i.add(t+e))),!0)})).reverse().map((e=>e.originalClassName)).join(" ")}(e,n);return o(e,i),i}return function(){return i(Oi.apply(null,arguments))}}function Ri(e){const t=t=>t[e]||[];return t.isThemeGetter=!0,t}const Pi=/^\[(?:([a-z-]+):)?(.+)\]$/i,Li=/^\d+\/\d+$/,Ni=new Set(["px","full","screen"]),Ii=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,Mi=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,Fi=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,Ai=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,ji=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;function Di(e){return zi(e)||Ni.has(e)||Li.test(e)}function _i(e){return Zi(e,"length",Ji)}function zi(e){return Boolean(e)&&!Number.isNaN(Number(e))}function Hi(e){return Zi(e,"number",zi)}function Wi(e){return Boolean(e)&&Number.isInteger(Number(e))}function Bi(e){return e.endsWith("%")&&zi(e.slice(0,-1))}function Vi(e){return Pi.test(e)}function $i(e){return Ii.test(e)}const Ui=new Set(["length","size","percentage"]);function qi(e){return Zi(e,Ui,ea)}function Gi(e){return Zi(e,"position",ea)}const Ki=new Set(["image","url"]);function Yi(e){return Zi(e,Ki,na)}function Xi(e){return Zi(e,"",ta)}function Qi(){return!0}function Zi(e,t,n){const r=Pi.exec(e);return!!r&&(r[1]?"string"==typeof t?r[1]===t:t.has(r[1]):n(r[2]))}function Ji(e){return Mi.test(e)&&!Fi.test(e)}function ea(){return!1}function ta(e){return Ai.test(e)}function na(e){return ji.test(e)}function ra(){const e=Ri("colors"),t=Ri("spacing"),n=Ri("blur"),r=Ri("brightness"),o=Ri("borderColor"),i=Ri("borderRadius"),a=Ri("borderSpacing"),l=Ri("borderWidth"),s=Ri("contrast"),c=Ri("grayscale"),u=Ri("hueRotate"),d=Ri("invert"),f=Ri("gap"),p=Ri("gradientColorStops"),m=Ri("gradientColorStopPositions"),h=Ri("inset"),g=Ri("margin"),v=Ri("opacity"),b=Ri("padding"),y=Ri("saturate"),w=Ri("scale"),x=Ri("sepia"),E=Ri("skew"),k=Ri("space"),C=Ri("translate"),O=()=>["auto",Vi,t],S=()=>[Vi,t],T=()=>["",Di,_i],R=()=>["auto",zi,Vi],P=()=>["","0",Vi],L=()=>[zi,Hi],N=()=>[zi,Vi];return{cacheSize:500,separator:":",theme:{colors:[Qi],spacing:[Di,_i],blur:["none","",$i,Vi],brightness:L(),borderColor:[e],borderRadius:["none","","full",$i,Vi],borderSpacing:S(),borderWidth:T(),contrast:L(),grayscale:P(),hueRotate:N(),invert:P(),gap:S(),gradientColorStops:[e],gradientColorStopPositions:[Bi,_i],inset:O(),margin:O(),opacity:L(),padding:S(),saturate:L(),scale:L(),sepia:P(),skew:N(),space:S(),translate:S()},classGroups:{aspect:[{aspect:["auto","square","video",Vi]}],container:["container"],columns:[{columns:[$i]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",Vi]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[h]}],"inset-x":[{"inset-x":[h]}],"inset-y":[{"inset-y":[h]}],start:[{start:[h]}],end:[{end:[h]}],top:[{top:[h]}],right:[{right:[h]}],bottom:[{bottom:[h]}],left:[{left:[h]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",Wi,Vi]}],basis:[{basis:O()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",Vi]}],grow:[{grow:P()}],shrink:[{shrink:P()}],order:[{order:["first","last","none",Wi,Vi]}],"grid-cols":[{"grid-cols":[Qi]}],"col-start-end":[{col:["auto",{span:["full",Wi,Vi]},Vi]}],"col-start":[{"col-start":R()}],"col-end":[{"col-end":R()}],"grid-rows":[{"grid-rows":[Qi]}],"row-start-end":[{row:["auto",{span:[Wi,Vi]},Vi]}],"row-start":[{"row-start":R()}],"row-end":[{"row-end":R()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",Vi]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",Vi]}],gap:[{gap:[f]}],"gap-x":[{"gap-x":[f]}],"gap-y":[{"gap-y":[f]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[b]}],px:[{px:[b]}],py:[{py:[b]}],ps:[{ps:[b]}],pe:[{pe:[b]}],pt:[{pt:[b]}],pr:[{pr:[b]}],pb:[{pb:[b]}],pl:[{pl:[b]}],m:[{m:[g]}],mx:[{mx:[g]}],my:[{my:[g]}],ms:[{ms:[g]}],me:[{me:[g]}],mt:[{mt:[g]}],mr:[{mr:[g]}],mb:[{mb:[g]}],ml:[{ml:[g]}],"space-x":[{"space-x":[k]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[k]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",Vi,t]}],"min-w":[{"min-w":[Vi,t,"min","max","fit"]}],"max-w":[{"max-w":[Vi,t,"none","full","min","max","fit","prose",{screen:[$i]},$i]}],h:[{h:[Vi,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[Vi,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[Vi,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[Vi,t,"auto","min","max","fit"]}],"font-size":[{text:["base",$i,_i]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",Hi]}],"font-family":[{font:[Qi]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractons"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",Vi]}],"line-clamp":[{"line-clamp":["none",zi,Hi]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",Di,Vi]}],"list-image":[{"list-image":["none",Vi]}],"list-style-type":[{list:["none","disc","decimal",Vi]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[v]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[v]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",Di,_i]}],"underline-offset":[{"underline-offset":["auto",Di,Vi]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:S()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",Vi]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",Vi]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[v]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",Gi]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",qi]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},Yi]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[m]}],"gradient-via-pos":[{via:[m]}],"gradient-to-pos":[{to:[m]}],"gradient-from":[{from:[p]}],"gradient-via":[{via:[p]}],"gradient-to":[{to:[p]}],rounded:[{rounded:[i]}],"rounded-s":[{"rounded-s":[i]}],"rounded-e":[{"rounded-e":[i]}],"rounded-t":[{"rounded-t":[i]}],"rounded-r":[{"rounded-r":[i]}],"rounded-b":[{"rounded-b":[i]}],"rounded-l":[{"rounded-l":[i]}],"rounded-ss":[{"rounded-ss":[i]}],"rounded-se":[{"rounded-se":[i]}],"rounded-ee":[{"rounded-ee":[i]}],"rounded-es":[{"rounded-es":[i]}],"rounded-tl":[{"rounded-tl":[i]}],"rounded-tr":[{"rounded-tr":[i]}],"rounded-br":[{"rounded-br":[i]}],"rounded-bl":[{"rounded-bl":[i]}],"border-w":[{border:[l]}],"border-w-x":[{"border-x":[l]}],"border-w-y":[{"border-y":[l]}],"border-w-s":[{"border-s":[l]}],"border-w-e":[{"border-e":[l]}],"border-w-t":[{"border-t":[l]}],"border-w-r":[{"border-r":[l]}],"border-w-b":[{"border-b":[l]}],"border-w-l":[{"border-l":[l]}],"border-opacity":[{"border-opacity":[v]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[l]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[l]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[v]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[o]}],"border-color-x":[{"border-x":[o]}],"border-color-y":[{"border-y":[o]}],"border-color-t":[{"border-t":[o]}],"border-color-r":[{"border-r":[o]}],"border-color-b":[{"border-b":[o]}],"border-color-l":[{"border-l":[o]}],"divide-color":[{divide:[o]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[Di,Vi]}],"outline-w":[{outline:[Di,_i]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:T()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[v]}],"ring-offset-w":[{"ring-offset":[Di,_i]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",$i,Xi]}],"shadow-color":[{shadow:[Qi]}],opacity:[{opacity:[v]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[n]}],brightness:[{brightness:[r]}],contrast:[{contrast:[s]}],"drop-shadow":[{"drop-shadow":["","none",$i,Vi]}],grayscale:[{grayscale:[c]}],"hue-rotate":[{"hue-rotate":[u]}],invert:[{invert:[d]}],saturate:[{saturate:[y]}],sepia:[{sepia:[x]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[n]}],"backdrop-brightness":[{"backdrop-brightness":[r]}],"backdrop-contrast":[{"backdrop-contrast":[s]}],"backdrop-grayscale":[{"backdrop-grayscale":[c]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[u]}],"backdrop-invert":[{"backdrop-invert":[d]}],"backdrop-opacity":[{"backdrop-opacity":[v]}],"backdrop-saturate":[{"backdrop-saturate":[y]}],"backdrop-sepia":[{"backdrop-sepia":[x]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[a]}],"border-spacing-x":[{"border-spacing-x":[a]}],"border-spacing-y":[{"border-spacing-y":[a]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",Vi]}],duration:[{duration:N()}],ease:[{ease:["linear","in","out","in-out",Vi]}],delay:[{delay:N()}],animate:[{animate:["none","spin","ping","pulse","bounce",Vi]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[w]}],"scale-x":[{"scale-x":[w]}],"scale-y":[{"scale-y":[w]}],rotate:[{rotate:[Wi,Vi]}],"translate-x":[{"translate-x":[C]}],"translate-y":[{"translate-y":[C]}],"skew-x":[{"skew-x":[E]}],"skew-y":[{"skew-y":[E]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",Vi]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",Vi]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":S()}],"scroll-mx":[{"scroll-mx":S()}],"scroll-my":[{"scroll-my":S()}],"scroll-ms":[{"scroll-ms":S()}],"scroll-me":[{"scroll-me":S()}],"scroll-mt":[{"scroll-mt":S()}],"scroll-mr":[{"scroll-mr":S()}],"scroll-mb":[{"scroll-mb":S()}],"scroll-ml":[{"scroll-ml":S()}],"scroll-p":[{"scroll-p":S()}],"scroll-px":[{"scroll-px":S()}],"scroll-py":[{"scroll-py":S()}],"scroll-ps":[{"scroll-ps":S()}],"scroll-pe":[{"scroll-pe":S()}],"scroll-pt":[{"scroll-pt":S()}],"scroll-pr":[{"scroll-pr":S()}],"scroll-pb":[{"scroll-pb":S()}],"scroll-pl":[{"scroll-pl":S()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",Vi]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[Di,_i,Hi]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}Symbol.toStringTag;const oa=Ti(ra),ia=(...e)=>oa(function(){for(var e,t,n=0,r="",o=arguments.length;n<o;n++)(e=arguments[n])&&(t=mi(e))&&(r&&(r+=" "),r+=t);return r}(e)),aa=(()=>{let e;return Object.seal({get:()=>e,set:t=>{e=t}})})(),la=e=>{try{return new URL(e).pathname.split("/").pop()}catch(e){return""}},sa=async({id:e,description:t,url:n,name:r})=>{const o=aa.get();var i;if(o)try{const a=new FormData;a.append("action","zipwp_images_insert_image"),a.append("id",e),a.append("description",t),a.append("url",n),a.append("name",null!=r?r:la(n)),a.append("_ajax_nonce",zipwpImages._ajax_nonce);const l=await fetch(zipwpImages.ajaxurl,{method:"POST",body:a});if(200!==l?.status)return void console.error(l);i=e,window?.zipwpImages?.saved_images&&window.zipwpImages.saved_images.push(i);const s=await l.json();o.model.frame.content.mode("browse"),o.model.get("selection").add(s.data.attachmentData),o.model.frame.trigger("library:selection:add"),o.model.get("selection"),o.controller.el.querySelector(".media-button-select").click()}catch(e){console.error(e)}},ca=({placement:e="right",width:t="w-48",contentClassName:n="py-1 bg-white",trigger:o,offset:i=[0,0],children:l,disabled:s=!1,mainClassName:c="",isOpen:u,onClose:d})=>{let f="bottom-end";switch(e){case"left":f="bottom-start";break;case"right":default:f="bottom-end";break;case"top-start":f="top-start";break;case"top-end":f="top-end"}const[p,m]=(e=>{const t=(0,a.useRef)(null),n=(0,a.useRef)(null),r=(0,a.useRef)((()=>{})),o=(0,a.useCallback)((()=>{t.current&&n.current&&(r.current&&r.current(),r.current=pi(t.current,n.current,e).destroy)}),[t,n,r,e]);return(0,a.useMemo)((()=>[e=>{t.current=e,o()},e=>{n.current=e,o()}]),[t,n,o])})({placement:f,strategy:"absolute",modifiers:[{name:"offset",options:{offset:i}},{name:"flip",enabled:!1}]});switch(t?.toString()){case"48":t="w-48";break;case"60":t="w-60";break;case"72.5":t="w-[18.25rem]";break;case"80":t="w-80";break;default:t=t||"w-48"}const h=(0,a.useRef)(null);return(0,a.useEffect)((()=>{const e=e=>{h.current&&!h.current.contains(e.target)&&d()};return u&&document.addEventListener("click",e),()=>{document.removeEventListener("click",e)}}),[u,d]),(0,r.createElement)(Dr,{as:"div",className:ia("relative",c),ref:h},(()=>(0,r.createElement)(a.Fragment,null,(0,r.createElement)("div",{ref:p},(0,r.createElement)(Nr,{as:a.Fragment,disabled:s},o)),(0,r.createElement)("div",{ref:m,className:"z-50"},(0,r.createElement)(to,{show:u,as:a.Fragment,enter:"transition ease-out duration-200",enterFrom:f.startsWith("top")?"transform opacity-0 scale-95 translate-y-2":"transform opacity-0 scale-95 -translate-y-2",enterTo:"transform opacity-100 scale-100 translate-y-0",leave:"transition ease-in duration-75",leaveFrom:"transform opacity-100 scale-100 translate-y-0",leaveTo:f.startsWith("top")?"transform opacity-0 scale-95 translate-y-2":"transform opacity-0 scale-95 -translate-y-2"},(0,r.createElement)("div",{className:ia("my-2 rounded-md shadow-lg",t)},(0,r.createElement)(Ir,{className:ia("rounded-md focus:outline-none ring-1 ring-black ring-opacity-5",n)},l)))))))};ca.Item=Mr;const ua=ca;var da="tippy-content",fa="tippy-backdrop",pa="tippy-arrow",ma="tippy-svg-arrow",ha={passive:!0,capture:!0},ga=function(){return document.body};function va(e,t,n){if(Array.isArray(e)){var r=e[t];return null==r?Array.isArray(n)?n[t]:n:r}return e}function ba(e,t){var n={}.toString.call(e);return 0===n.indexOf("[object")&&n.indexOf(t+"]")>-1}function ya(e,t){return"function"==typeof e?e.apply(void 0,t):e}function wa(e,t){return 0===t?e:function(r){clearTimeout(n),n=setTimeout((function(){e(r)}),t)};var n}function xa(e){return[].concat(e)}function Ea(e,t){-1===e.indexOf(t)&&e.push(t)}function ka(e){return[].slice.call(e)}function Ca(e){return Object.keys(e).reduce((function(t,n){return void 0!==e[n]&&(t[n]=e[n]),t}),{})}function Oa(){return document.createElement("div")}function Sa(e){return["Element","Fragment"].some((function(t){return ba(e,t)}))}function Ta(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function Ra(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function Pa(e,t,n){var r=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[r](t,n)}))}function La(e,t){for(var n=t;n;){var r;if(e.contains(n))return!0;n=null==n.getRootNode||null==(r=n.getRootNode())?void 0:r.host}return!1}var Na={isTouch:!1},Ia=0;function Ma(){Na.isTouch||(Na.isTouch=!0,window.performance&&document.addEventListener("mousemove",Fa))}function Fa(){var e=performance.now();e-Ia<20&&(Na.isTouch=!1,document.removeEventListener("mousemove",Fa)),Ia=e}function Aa(){var e,t=document.activeElement;if((e=t)&&e._tippy&&e._tippy.reference===e){var n=t._tippy;t.blur&&!n.state.isVisible&&t.blur()}}var ja=!("undefined"==typeof window||"undefined"==typeof document||!window.msCrypto),Da=Object.assign({appendTo:ga,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),_a=Object.keys(Da);function za(e){var t=(e.plugins||[]).reduce((function(t,n){var r,o=n.name,i=n.defaultValue;return o&&(t[o]=void 0!==e[o]?e[o]:null!=(r=Da[o])?r:i),t}),{});return Object.assign({},e,t)}function Ha(e,t){var n=Object.assign({},t,{content:ya(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(za(Object.assign({},Da,{plugins:t}))):_a).reduce((function(t,n){var r=(e.getAttribute("data-tippy-"+n)||"").trim();if(!r)return t;if("content"===n)t[n]=r;else try{t[n]=JSON.parse(r)}catch(e){t[n]=r}return t}),{})}(e,t.plugins));return n.aria=Object.assign({},Da.aria,n.aria),n.aria={expanded:"auto"===n.aria.expanded?t.interactive:n.aria.expanded,content:"auto"===n.aria.content?t.interactive?null:"describedby":n.aria.content},n}var Wa=function(){return"innerHTML"};function Ba(e,t){e[Wa()]=t}function Va(e){var t=Oa();return!0===e?t.className=pa:(t.className=ma,Sa(e)?t.appendChild(e):Ba(t,e)),t}function $a(e,t){Sa(t.content)?(Ba(e,""),e.appendChild(t.content)):"function"!=typeof t.content&&(t.allowHTML?Ba(e,t.content):e.textContent=t.content)}function Ua(e){var t=e.firstElementChild,n=ka(t.children);return{box:t,content:n.find((function(e){return e.classList.contains(da)})),arrow:n.find((function(e){return e.classList.contains(pa)||e.classList.contains(ma)})),backdrop:n.find((function(e){return e.classList.contains(fa)}))}}function qa(e){var t=Oa(),n=Oa();n.className="tippy-box",n.setAttribute("data-state","hidden"),n.setAttribute("tabindex","-1");var r=Oa();function o(n,r){var o=Ua(t),i=o.box,a=o.content,l=o.arrow;r.theme?i.setAttribute("data-theme",r.theme):i.removeAttribute("data-theme"),"string"==typeof r.animation?i.setAttribute("data-animation",r.animation):i.removeAttribute("data-animation"),r.inertia?i.setAttribute("data-inertia",""):i.removeAttribute("data-inertia"),i.style.maxWidth="number"==typeof r.maxWidth?r.maxWidth+"px":r.maxWidth,r.role?i.setAttribute("role",r.role):i.removeAttribute("role"),n.content===r.content&&n.allowHTML===r.allowHTML||$a(a,e.props),r.arrow?l?n.arrow!==r.arrow&&(i.removeChild(l),i.appendChild(Va(r.arrow))):i.appendChild(Va(r.arrow)):l&&i.removeChild(l)}return r.className=da,r.setAttribute("data-state","hidden"),$a(r,e.props),t.appendChild(n),n.appendChild(r),o(e.props,e.props),{popper:t,onUpdate:o}}qa.$$tippy=!0;var Ga=1,Ka=[],Ya=[];function Xa(e,t){var n,r,o,i,a,l,s,c,u=Ha(e,Object.assign({},Da,za(Ca(t)))),d=!1,f=!1,p=!1,m=!1,h=[],g=wa(G,u.interactiveDebounce),v=Ga++,b=(c=u.plugins).filter((function(e,t){return c.indexOf(e)===t})),y={id:v,reference:e,popper:Oa(),popperInstance:null,props:u,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:b,clearDelayTimeouts:function(){clearTimeout(n),clearTimeout(r),cancelAnimationFrame(o)},setProps:function(t){if(!y.state.isDestroyed){M("onBeforeUpdate",[y,t]),U();var n=y.props,r=Ha(e,Object.assign({},n,Ca(t),{ignoreAttributes:!0}));y.props=r,$(),n.interactiveDebounce!==r.interactiveDebounce&&(j(),g=wa(G,r.interactiveDebounce)),n.triggerTarget&&!r.triggerTarget?xa(n.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):r.triggerTarget&&e.removeAttribute("aria-expanded"),A(),I(),E&&E(n,r),y.popperInstance&&(Q(),J().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)}))),M("onAfterUpdate",[y,t])}},setContent:function(e){y.setProps({content:e})},show:function(){var e=y.state.isVisible,t=y.state.isDestroyed,n=!y.state.isEnabled,r=Na.isTouch&&!y.props.touch,o=va(y.props.duration,0,Da.duration);if(!(e||t||n||r||R().hasAttribute("disabled")||(M("onShow",[y],!1),!1===y.props.onShow(y)))){if(y.state.isVisible=!0,T()&&(x.style.visibility="visible"),I(),H(),y.state.isMounted||(x.style.transition="none"),T()){var i=L();Ta([i.box,i.content],0)}var a,s,c;l=function(){var e;if(y.state.isVisible&&!m){if(m=!0,x.offsetHeight,x.style.transition=y.props.moveTransition,T()&&y.props.animation){var t=L(),n=t.box,r=t.content;Ta([n,r],o),Ra([n,r],"visible")}F(),A(),Ea(Ya,y),null==(e=y.popperInstance)||e.forceUpdate(),M("onMount",[y]),y.props.animation&&T()&&function(e,t){B(e,(function(){y.state.isShown=!0,M("onShown",[y])}))}(o)}},s=y.props.appendTo,c=R(),(a=y.props.interactive&&s===ga||"parent"===s?c.parentNode:ya(s,[c])).contains(x)||a.appendChild(x),y.state.isMounted=!0,Q()}},hide:function(){var e=!y.state.isVisible,t=y.state.isDestroyed,n=!y.state.isEnabled,r=va(y.props.duration,1,Da.duration);if(!(e||t||n)&&(M("onHide",[y],!1),!1!==y.props.onHide(y))){if(y.state.isVisible=!1,y.state.isShown=!1,m=!1,d=!1,T()&&(x.style.visibility="hidden"),j(),W(),I(!0),T()){var o=L(),i=o.box,a=o.content;y.props.animation&&(Ta([i,a],r),Ra([i,a],"hidden"))}F(),A(),y.props.animation?T()&&function(e,t){B(e,(function(){!y.state.isVisible&&x.parentNode&&x.parentNode.contains(x)&&t()}))}(r,y.unmount):y.unmount()}},hideWithInteractivity:function(e){P().addEventListener("mousemove",g),Ea(Ka,g),g(e)},enable:function(){y.state.isEnabled=!0},disable:function(){y.hide(),y.state.isEnabled=!1},unmount:function(){y.state.isVisible&&y.hide(),y.state.isMounted&&(Z(),J().forEach((function(e){e._tippy.unmount()})),x.parentNode&&x.parentNode.removeChild(x),Ya=Ya.filter((function(e){return e!==y})),y.state.isMounted=!1,M("onHidden",[y]))},destroy:function(){y.state.isDestroyed||(y.clearDelayTimeouts(),y.unmount(),U(),delete e._tippy,y.state.isDestroyed=!0,M("onDestroy",[y]))}};if(!u.render)return y;var w=u.render(y),x=w.popper,E=w.onUpdate;x.setAttribute("data-tippy-root",""),x.id="tippy-"+y.id,y.popper=x,e._tippy=y,x._tippy=y;var k=b.map((function(e){return e.fn(y)})),C=e.hasAttribute("aria-expanded");return $(),A(),I(),M("onCreate",[y]),u.showOnCreate&&ee(),x.addEventListener("mouseenter",(function(){y.props.interactive&&y.state.isVisible&&y.clearDelayTimeouts()})),x.addEventListener("mouseleave",(function(){y.props.interactive&&y.props.trigger.indexOf("mouseenter")>=0&&P().addEventListener("mousemove",g)})),y;function O(){var e=y.props.touch;return Array.isArray(e)?e:[e,0]}function S(){return"hold"===O()[0]}function T(){var e;return!(null==(e=y.props.render)||!e.$$tippy)}function R(){return s||e}function P(){var e,t,n=R().parentNode;return n?null!=(t=xa(n)[0])&&null!=(e=t.ownerDocument)&&e.body?t.ownerDocument:document:document}function L(){return Ua(x)}function N(e){return y.state.isMounted&&!y.state.isVisible||Na.isTouch||i&&"focus"===i.type?0:va(y.props.delay,e?0:1,Da.delay)}function I(e){void 0===e&&(e=!1),x.style.pointerEvents=y.props.interactive&&!e?"":"none",x.style.zIndex=""+y.props.zIndex}function M(e,t,n){var r;void 0===n&&(n=!0),k.forEach((function(n){n[e]&&n[e].apply(n,t)})),n&&(r=y.props)[e].apply(r,t)}function F(){var t=y.props.aria;if(t.content){var n="aria-"+t.content,r=x.id;xa(y.props.triggerTarget||e).forEach((function(e){var t=e.getAttribute(n);if(y.state.isVisible)e.setAttribute(n,t?t+" "+r:r);else{var o=t&&t.replace(r,"").trim();o?e.setAttribute(n,o):e.removeAttribute(n)}}))}}function A(){!C&&y.props.aria.expanded&&xa(y.props.triggerTarget||e).forEach((function(e){y.props.interactive?e.setAttribute("aria-expanded",y.state.isVisible&&e===R()?"true":"false"):e.removeAttribute("aria-expanded")}))}function j(){P().removeEventListener("mousemove",g),Ka=Ka.filter((function(e){return e!==g}))}function D(t){if(!Na.isTouch||!p&&"mousedown"!==t.type){var n=t.composedPath&&t.composedPath()[0]||t.target;if(!y.props.interactive||!La(x,n)){if(xa(y.props.triggerTarget||e).some((function(e){return La(e,n)}))){if(Na.isTouch)return;if(y.state.isVisible&&y.props.trigger.indexOf("click")>=0)return}else M("onClickOutside",[y,t]);!0===y.props.hideOnClick&&(y.clearDelayTimeouts(),y.hide(),f=!0,setTimeout((function(){f=!1})),y.state.isMounted||W())}}}function _(){p=!0}function z(){p=!1}function H(){var e=P();e.addEventListener("mousedown",D,!0),e.addEventListener("touchend",D,ha),e.addEventListener("touchstart",z,ha),e.addEventListener("touchmove",_,ha)}function W(){var e=P();e.removeEventListener("mousedown",D,!0),e.removeEventListener("touchend",D,ha),e.removeEventListener("touchstart",z,ha),e.removeEventListener("touchmove",_,ha)}function B(e,t){var n=L().box;function r(e){e.target===n&&(Pa(n,"remove",r),t())}if(0===e)return t();Pa(n,"remove",a),Pa(n,"add",r),a=r}function V(t,n,r){void 0===r&&(r=!1),xa(y.props.triggerTarget||e).forEach((function(e){e.addEventListener(t,n,r),h.push({node:e,eventType:t,handler:n,options:r})}))}function $(){var e;S()&&(V("touchstart",q,{passive:!0}),V("touchend",K,{passive:!0})),(e=y.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(V(e,q),e){case"mouseenter":V("mouseleave",K);break;case"focus":V(ja?"focusout":"blur",Y);break;case"focusin":V("focusout",Y)}}))}function U(){h.forEach((function(e){var t=e.node,n=e.eventType,r=e.handler,o=e.options;t.removeEventListener(n,r,o)})),h=[]}function q(e){var t,n=!1;if(y.state.isEnabled&&!X(e)&&!f){var r="focus"===(null==(t=i)?void 0:t.type);i=e,s=e.currentTarget,A(),!y.state.isVisible&&ba(e,"MouseEvent")&&Ka.forEach((function(t){return t(e)})),"click"===e.type&&(y.props.trigger.indexOf("mouseenter")<0||d)&&!1!==y.props.hideOnClick&&y.state.isVisible?n=!0:ee(e),"click"===e.type&&(d=!n),n&&!r&&te(e)}}function G(e){var t=e.target,n=R().contains(t)||x.contains(t);if("mousemove"!==e.type||!n){var r=J().concat(x).map((function(e){var t,n=null==(t=e._tippy.popperInstance)?void 0:t.state;return n?{popperRect:e.getBoundingClientRect(),popperState:n,props:u}:null})).filter(Boolean);(function(e,t){var n=t.clientX,r=t.clientY;return e.every((function(e){var t=e.popperRect,o=e.popperState,i=e.props.interactiveBorder,a=o.placement.split("-")[0],l=o.modifiersData.offset;if(!l)return!0;var s="bottom"===a?l.top.y:0,c="top"===a?l.bottom.y:0,u="right"===a?l.left.x:0,d="left"===a?l.right.x:0,f=t.top-r+s>i,p=r-t.bottom-c>i,m=t.left-n+u>i,h=n-t.right-d>i;return f||p||m||h}))})(r,e)&&(j(),te(e))}}function K(e){X(e)||y.props.trigger.indexOf("click")>=0&&d||(y.props.interactive?y.hideWithInteractivity(e):te(e))}function Y(e){y.props.trigger.indexOf("focusin")<0&&e.target!==R()||y.props.interactive&&e.relatedTarget&&x.contains(e.relatedTarget)||te(e)}function X(e){return!!Na.isTouch&&S()!==e.type.indexOf("touch")>=0}function Q(){Z();var t=y.props,n=t.popperOptions,r=t.placement,o=t.offset,i=t.getReferenceClientRect,a=t.moveTransition,s=T()?Ua(x).arrow:null,c=i?{getBoundingClientRect:i,contextElement:i.contextElement||R()}:e,u=[{name:"offset",options:{offset:o}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!a}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(T()){var n=L().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?n.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?n.setAttribute("data-"+e,""):n.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];T()&&s&&u.push({name:"arrow",options:{element:s,padding:3}}),u.push.apply(u,(null==n?void 0:n.modifiers)||[]),y.popperInstance=pi(c,x,Object.assign({},n,{placement:r,onFirstUpdate:l,modifiers:u}))}function Z(){y.popperInstance&&(y.popperInstance.destroy(),y.popperInstance=null)}function J(){return ka(x.querySelectorAll("[data-tippy-root]"))}function ee(e){y.clearDelayTimeouts(),e&&M("onTrigger",[y,e]),H();var t=N(!0),r=O(),o=r[0],i=r[1];Na.isTouch&&"hold"===o&&i&&(t=i),t?n=setTimeout((function(){y.show()}),t):y.show()}function te(e){if(y.clearDelayTimeouts(),M("onUntrigger",[y,e]),y.state.isVisible){if(!(y.props.trigger.indexOf("mouseenter")>=0&&y.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&d)){var t=N(!1);t?r=setTimeout((function(){y.state.isVisible&&y.hide()}),t):o=requestAnimationFrame((function(){y.hide()}))}}else W()}}function Qa(e,t){void 0===t&&(t={});var n=Da.plugins.concat(t.plugins||[]);document.addEventListener("touchstart",Ma,ha),window.addEventListener("blur",Aa);var r,o=Object.assign({},t,{plugins:n}),i=(r=e,Sa(r)?[r]:function(e){return ba(e,"NodeList")}(r)?ka(r):Array.isArray(r)?r:ka(document.querySelectorAll(r))).reduce((function(e,t){var n=t&&Xa(t,o);return n&&e.push(n),e}),[]);return Sa(e)?i[0]:i}Qa.defaultProps=Da,Qa.setDefaultProps=function(e){Object.keys(e).forEach((function(t){Da[t]=e[t]}))},Qa.currentInput=Na,Object.assign({},Qo,{effect:function(e){var t=e.state,n={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,n.popper),t.styles=n,t.elements.arrow&&Object.assign(t.elements.arrow.style,n.arrow)}}),Qa.setDefaultProps({render:qa});const Za=Qa;function Ja(e,t){if(null==e)return{};var n,r,o={},i=Object.keys(e);for(r=0;r<i.length;r++)n=i[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}var el="undefined"!=typeof window&&"undefined"!=typeof document;function tl(e,t){e&&("function"==typeof e&&e(t),{}.hasOwnProperty.call(e,"current")&&(e.current=t))}function nl(){return el&&document.createElement("div")}function rl(e,t){if(e===t)return!0;if("object"==typeof e&&null!=e&&"object"==typeof t&&null!=t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var n in e){if(!t.hasOwnProperty(n))return!1;if(!rl(e[n],t[n]))return!1}return!0}return!1}function ol(e){var t=[];return e.forEach((function(e){t.find((function(t){return rl(e,t)}))||t.push(e)})),t}var il=el?r.useLayoutEffect:r.useEffect;function al(e,t,n){n.split(/\s+/).forEach((function(n){n&&e.classList[t](n)}))}var ll={name:"className",defaultValue:"",fn:function(e){var t=e.popper.firstElementChild,n=function(){var t;return!!(null==(t=e.props.render)?void 0:t.$$tippy)};function r(){e.props.className&&!n()||al(t,"add",e.props.className)}return{onCreate:r,onBeforeUpdate:function(){n()&&al(t,"remove",e.props.className)},onAfterUpdate:r}}};function sl(e){return function(t){var n,o,a=t.children,l=t.content,s=t.visible,c=t.singleton,u=t.render,d=t.reference,f=t.disabled,p=void 0!==f&&f,m=t.ignoreAttributes,h=void 0===m||m,g=(t.__source,t.__self,Ja(t,["children","content","visible","singleton","render","reference","disabled","ignoreAttributes","__source","__self"])),v=void 0!==s,b=void 0!==c,y=(0,r.useState)(!1),w=y[0],x=y[1],E=(0,r.useState)({}),k=E[0],C=E[1],O=(0,r.useState)(),S=O[0],T=O[1],R=(n=function(){return{container:nl(),renders:1}},(o=(0,r.useRef)()).current||(o.current="function"==typeof n?n():n),o.current),P=Object.assign({ignoreAttributes:h},g,{content:R.container});v&&(P.trigger="manual",P.hideOnClick=!1),b&&(p=!0);var L=P,N=P.plugins||[];u&&(L=Object.assign({},P,{plugins:b&&null!=c.data?[].concat(N,[{fn:function(){return{onTrigger:function(e,t){var n=c.data.children.find((function(e){return e.instance.reference===t.currentTarget}));e.state.$$activeSingletonInstance=n.instance,T(n.content)}}}}]):N,render:function(){return{popper:R.container}}}));var I=[d].concat(a?[a.type]:[]);return il((function(){var t=d;d&&d.hasOwnProperty("current")&&(t=d.current);var n=e(t||R.ref||nl(),Object.assign({},L,{plugins:[ll].concat(P.plugins||[])}));return R.instance=n,p&&n.disable(),s&&n.show(),b&&c.hook({instance:n,content:l,props:L,setSingletonContent:T}),x(!0),function(){n.destroy(),null==c||c.cleanup(n)}}),I),il((function(){var e,t,n,r,o;if(1!==R.renders){var i=R.instance;i.setProps((t=i.props,n=L,Object.assign({},n,{popperOptions:Object.assign({},t.popperOptions,n.popperOptions,{modifiers:ol([].concat((null==(r=t.popperOptions)?void 0:r.modifiers)||[],(null==(o=n.popperOptions)?void 0:o.modifiers)||[]))})}))),null==(e=i.popperInstance)||e.forceUpdate(),p?i.disable():i.enable(),v&&(s?i.show():i.hide()),b&&c.hook({instance:i,content:l,props:L,setSingletonContent:T})}else R.renders++})),il((function(){var e;if(u){var t=R.instance;t.setProps({popperOptions:Object.assign({},t.props.popperOptions,{modifiers:[].concat(((null==(e=t.props.popperOptions)?void 0:e.modifiers)||[]).filter((function(e){return"$$tippyReact"!==e.name})),[{name:"$$tippyReact",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t,n=e.state,r=null==(t=n.modifiersData)?void 0:t.hide;k.placement===n.placement&&k.referenceHidden===(null==r?void 0:r.isReferenceHidden)&&k.escaped===(null==r?void 0:r.hasPopperEscaped)||C({placement:n.placement,referenceHidden:null==r?void 0:r.isReferenceHidden,escaped:null==r?void 0:r.hasPopperEscaped}),n.attributes.popper={}}}])})})}}),[k.placement,k.referenceHidden,k.escaped].concat(I)),i().createElement(i().Fragment,null,a?(0,r.cloneElement)(a,{ref:function(e){R.ref=e,tl(a.ref,e)}}):null,w&&(0,Yt.createPortal)(u?u(function(e){var t={"data-placement":e.placement};return e.referenceHidden&&(t["data-reference-hidden"]=""),e.escaped&&(t["data-escaped"]=""),t}(k),S,R.instance):l,R.container))}}var cl=function(e,t){return(0,r.forwardRef)((function(n,o){var a=n.children,l=Ja(n,["children"]);return i().createElement(e,Object.assign({},t,l),a?(0,r.cloneElement)(a,{ref:function(e){tl(o,e),tl(a.ref,e)}}):null)}))};const ul=cl(sl(Za)),dl=({children:e,content:t,interactive:n=!1,arrow:o=!1,...i})=>t?(0,r.createElement)(ul,{className:"zipwp-images-tooltip",content:t,interactive:n,arrow:o,...i},e):e,fl=(0,a.forwardRef)((({variant:e="",isSmall:t=!1,hasSuffixIcon:n=!1,hasPrefixIcon:o=!1,type:i="button",className:a,onClick:l,children:s,disabled:c=!1,id:u="",...d},f)=>{const p=t?"small":"base",m={base:{default:"px-6 py-3",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},medium:{default:"px-4 py-3 h-11",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},small:{default:"px-5 py-2 h-[2.625rem]",hasPrefixIcon:"pl-3 pr-5 py-2 h-[2.625rem]",hasSuffixIcon:"pl-5 pr-3 py-2 h-[2.625rem]"}};return(0,r.createElement)("button",{type:i,className:ia("group flex items-center justify-center gap-2 rounded-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 transition duration-150 ease-in-out cursor-pointer border-0",{primary:"text-white bg-accent focus-visible:ring-accent border border-solid border-accent",white:"text-accent bg-white border border-solid border-accent focus-visible:ring-accent",dark:"text-white border border-white bg-transparent border-solid",link:"underline border-0 bg-transparent",blank:"bg-transparent border-transparent",gray:"bg-transparent border border-solid border-zip-dark-theme-border text-zip-dark-theme-heading","gray-selected":"bg-zip-dark-theme-border text-white",other:"","gradient-border":"bg-transparent text-zip-app-heading zw-base-bold gradient-border-cover gradient-border-cover-button",gradient:"bg-gradient-to-r from-gradient-color-1 via-46.88 via-gradient-color-2 to-gradient-color-3 text-white zw-base-bold","border-secondary":"text-app-secondary bg-app-light-background border border-app-secondary shadow-sm"}[e],!o&&!n&&m[p].default,o&&m[p].hasPrefixIcon,n&&m[p].hasSuffixIcon,{base:"text-base font-medium",small:"text-sm font-medium"}[p],{base:"rounded-md",small:"rounded"}[p],c&&"cursor-not-allowed opacity-70",a),onClick:e=>{l&&"function"==typeof l&&l(e)},ref:f,disabled:c,...u&&{id:u},...d},s)})),pl=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m4.5 12.75 6 6 9-13.5"}))})),ml=[{name:"red",label:(0,p.__)("Red","zipwp-images"),hex:"#F90F0F"},{name:"orange",label:(0,p.__)("Orange","zipwp-images"),hex:"#FD6713"},{name:"yellow",label:(0,p.__)("Yellow","zipwp-images"),hex:"#FFE03B"},{name:"green",label:(0,p.__)("Green","zipwp-images"),hex:"#4CAF50"},{name:"blue",label:(0,p.__)("Blue","zipwp-images"),hex:"#2191F3"},{name:"pink",label:(0,p.__)("Pink","zipwp-images"),hex:"#FE4483"},{name:"brown",label:(0,p.__)("Brown","zipwp-images"),hex:"#795548"},{name:"black",label:(0,p.__)("Black","zipwp-images"),hex:"#000000"},{name:"gray",label:(0,p.__)("Gray","zipwp-images"),hex:"#9E9E9E"},{name:"white",label:(0,p.__)("White","zipwp-images"),hex:"#FFFFFF"},{name:"turquoise",label:(0,p.__)("Turquoise","zipwp-images"),hex:"#29D5C4"},{name:"lilac",label:(0,p.__)("Lilac","zipwp-images"),hex:"#CBABFF"},{name:"violet",label:(0,p.__)("Violet","zipwp-images"),hex:"#9027FA"},{name:"grayscale",label:(0,p.__)("Grayscale","zipwp-images"),hex:"",component:(0,r.createElement)("div",{className:"size-6 rounded-full overflow-hidden flex p-0"},(0,r.createElement)("div",{className:"w-1/2 h-full bg-[#9E9E9E]"}),(0,r.createElement)("div",{className:"w-1/2 h-full bg-white"}))},{name:"transparent",label:(0,p.__)("Transparent","zipwp-images"),hex:"",component:(0,r.createElement)((({className:e=""})=>(0,r.createElement)("svg",{className:e,width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},(0,r.createElement)("g",{clipPath:"url(#clip0_33003_155235)"},(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(9 9)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(9 21)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(9 -3)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(21 9)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(-3 9)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(15 15)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(15 3)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(3 15)",fill:"#9E9E9E"}),(0,r.createElement)("rect",{width:"6",height:"6",transform:"translate(3 3)",fill:"#9E9E9E"})),(0,r.createElement)("path",{d:"M0.5 12C0.5 5.64873 5.64873 0.5 12 0.5C18.3513 0.5 23.5 5.64873 23.5 12C23.5 18.3513 18.3513 23.5 12 23.5C5.64873 23.5 0.5 18.3513 0.5 12Z",stroke:"black",strokeOpacity:"0.08"}),(0,r.createElement)("defs",null,(0,r.createElement)("clipPath",{id:"clip0_33003_155235"},(0,r.createElement)("path",{d:"M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z",fill:"white"}))))),{className:"size-6 rounded-full"})}],hl=({value:e,onChange:t})=>{const n=e=>()=>{"function"==typeof t&&t(e)};return(0,r.createElement)(ua,{contentClassName:"p-3 bg-white space-y-4",trigger:t=>(0,r.createElement)("div",{className:ia("flex items-center justify-between gap-2 min-w-[72px] pl-4 !py-2.5 pr-2 cursor-pointer rounded ring-1 ring-wp-component-border focus:ring-2 focus:ring-accent-wp-primary",t?.open&&"ring-2 ring-accent-wp-primary"),tabIndex:0},e?(0,r.createElement)("span",{className:"text-sm font-normal text-body-text flex items-center gap-2"},!e?.component&&(0,r.createElement)("span",{className:"block size-4 rounded-full",style:{backgroundColor:e?.hex}}),!!e?.component&&e.component,(0,r.createElement)("span",{className:"hover:text-accent"},e?.label)):(0,r.createElement)("span",{className:"text-sm font-normal text-body-text hover:text-accent"},(0,p.__)("Color","zipwp-images")),(0,r.createElement)("svg",{stroke:"currentColor",fill:"none",strokeWidth:"0",viewBox:"0 0 24 24",height:"200px",width:"200px",xmlns:"http://www.w3.org/2000/svg",className:"size-[18px] font-semibold text-app-inactive-icon"},(0,r.createElement)("path",{d:"M6.34317 7.75732L4.92896 9.17154L12 16.2426L19.0711 9.17157L17.6569 7.75735L12 13.4142L6.34317 7.75732Z",fill:"currentColor"})))},(0,r.createElement)("div",{className:"grid grid-cols-5 gap-2 auto-rows-auto"},ml.map((t=>(0,r.createElement)(dl,{key:t.name,content:t.label},(0,r.createElement)(ua.Item,{as:"div",className:"relative flex place-items-center size-6 rounded-full cursor-pointer border border-solid border-black/10 [&>*]:shrink-0 hover:scale-125 transition-transform",onClick:n(t),...!!t?.hex&&{style:{backgroundColor:t.hex}}},!!t?.component&&t.component,e?.name===t?.name&&(0,r.createElement)("div",{className:"flex justify-center items-center absolute inset-0 pointer-events-none"},(0,r.createElement)("div",{className:"rounded-full size-4 bg-white flex justify-center items-center"},(0,r.createElement)(pl,{className:"w-3 h-3 text-body-text"})))))))),(0,r.createElement)(ua.Item,{as:fl,variant:"blank",className:ia("w-fit py-1 px-2.5 text-xs font-normal text-body-text border border-solid border-border-primary rounded",!e&&"opacity-50 cursor-not-allowed"),onClick:n(null),disabled:!e},(0,p.__)("Clear","zipwp-images")))},gl=({className:e="w-5 h-5 text-white"})=>(0,r.createElement)("svg",{className:ia("animate-spin",e),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,r.createElement)("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),(0,r.createElement)("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"})),vl=({className:e,name:t,prefixIcon:n,suffixIcon:o,register:i,validations:l,error:s,onChange:c,focusOnLoad:u,...d})=>{const f=(0,a.useRef)(null);return(0,a.useEffect)((()=>{f.current&&u&&f.current.focus()}),[]),(0,r.createElement)("div",{className:"space-y-1"},(0,r.createElement)("div",{className:ia("relative flex items-center justify-start h-10 ring-1 ring-wp-component-border shadow-sm rounded focus-within:border-accent focus-within:ring-2 focus-within:ring-accent",!!s&&"border-alert-error",e)},!!n&&n,(0,r.createElement)("input",{type:"text",className:ia("h-full !py-2 w-full px-3 !rounded-md !outline-none !text-sm placeholder:!text-sm placeholder:!text-zip-app-inactive-icon !bg-transparent disabled:!cursor-not-allowed !border-0 focus:!ring-0 focus:!outline-none"),"aria-invalid":!!s,onChange:e=>c(e.target.value),ref:f,...d}),!!o&&o),!!s&&(0,r.createElement)("p",{className:"m-0 p-0 text-sm text-alert-error"},s.message))},bl={all:{value:"all",label:(0,p.__)("All Orientation","zipwp-images")},horizontal:{value:"landscape",label:(0,p.__)("Landscape","zipwp-images")},vertical:{value:"portrait",label:(0,p.__)("Portrait","zipwp-images")},square:{value:"square",label:(0,p.__)("Square","zipwp-images")}},yl=({value:e,onChange:t})=>(0,r.createElement)("select",{className:"block h-auto min-w-fit border-0 py-1 md:!py-2.5 pl-3 pr-10 ring-1 !ring-wp-component-border focus:ring-2 focus:!ring-accent-wp-primary !text-sm hover:text-accent",onChange:e=>{t(e.target.value)},value:e},Object.values(bl).map(((e,t)=>(0,r.createElement)("option",{value:e.value,key:t},e.label)))),wl=e=>{let t;const n=new Set,r=(e,r)=>{const o="function"==typeof e?e(t):e;if(!Object.is(o,t)){const e=t;t=(null!=r?r:"object"!=typeof o||null===o)?o:Object.assign({},t,o),n.forEach((n=>n(t,e)))}},o=()=>t,i={setState:r,getState:o,getInitialState:()=>a,subscribe:e=>(n.add(e),()=>n.delete(e)),destroy:()=>{console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),n.clear()}},a=t=e(r,o,i);return i};var xl=n(242);const{useDebugValue:El}=r,{useSyncExternalStoreWithSelector:kl}=xl;let Cl=!1;const Ol=e=>e,Sl=e=>{"function"!=typeof e&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const t="function"==typeof e?(e=>e?wl(e):wl)(e):e,n=(e,n)=>function(e,t=Ol,n){n&&!Cl&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),Cl=!0);const r=kl(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,n);return El(r),r}(t,e,n);return Object.assign(n,t),n},Tl="SET_PREVIEW_IMAGE",Rl=(jl=(e,{type:t,payload:n})=>t===Tl?{...e,imagePreview:n}:e,Dl={imagePreview:null},Al=(e,t,n)=>(n.dispatch=t=>(e((e=>jl(e,t)),!1,t),t),n.dispatchFromDevtools=!0,{dispatch:(...e)=>n.dispatch(...e),...Dl}),Al?Sl(Al):Sl),Pl="idle",Ll="pending",Nl=["original","small","large","medium"],Il=["pexels","pixabay"],Ml=(e=20)=>{const t=["aspect-[1/1]","aspect-[1/2]","aspect-[2/1]","aspect-[2/2]","aspect-[3/3]","aspect-[4/3]","aspect-[3/4]"];let n=0;return Array.from({length:e}).map(((e,o)=>(n=n===t.length?0:n,(0,r.createElement)("div",{key:`skeleton-${o}`,className:ia("relative overflow-hidden rounded-lg","bg-slate-300 rounded-lg relative animate-pulse",t[n++])}))))},Fl=()=>{var e;const{dispatch:t}=Rl(),[n,o]=(0,a.useState)(""),[i,d]=(0,a.useState)(null),[m,h]=(0,a.useState)("all"),[g,v]=(0,a.useState)(!1),[b,y]=(0,a.useState)([]),[x,E]=(0,a.useState)(Pl),[k,C]=(0,a.useState)(1),O=(0,a.useRef)(!0),S=(0,a.useRef)(""),T=(0,a.useRef)(new Set),R=(0,a.useRef)([]),[P,L]=(0,a.useState)(-1),[N,I]=(0,a.useState)({}),M=(0,a.useRef)(null),F=(0,a.useRef)(null),A=()=>{L(-1)},j=async(e=n,t=m,r=i,o="pexels",a=k)=>{try{const n=e.trim();S.current=n;let i=r;if("pexels"===o&&r&&("transparent"===r.name||"grayscale"===r.name))return 0;"pexels"===o&&r&&"lilac"===r.name&&(i=ml.find((e=>"violet"===e.name))),"pixabay"===o&&r&&"violet"===r.name&&(i=ml.find((e=>"lilac"===e.name)));const l=new AbortController;R.current.push(l);const s=await f()({path:"zipwp-images/v1/images",data:{keywords:n,orientation:t,per_page:20..toString(),page:a.toString(),engine:o,...!!i&&{color:i.name}},method:"POST",headers:{"X-WP-Nonce":zipwpImages.rest_api_nonce},signal:l.signal}),c=s.success&&s?.data?s.data?.data:[];return y((e=>[...e,...c])),c.length<20&&T.current.add(o),c?.length}catch(e){throw e}},D=()=>{T.current?.clear()},_=async(e=n,t=m,r=i,o=k)=>{const a=[];R.current.length&&(R.current.forEach((e=>e.abort())),R.current=[]);try{E(Ll);for(const n of Il){if(T.current.has(n))continue;const i=await j(e,t,r,n,o);a.push(i)}T.current.size===Il.length&&(O.current=!1),E("success")}catch(e){if("AbortError"===e.name)return;E("failure"),console.error(e)}},z=((e,t)=>{const[n,r]=(0,a.useState)(e);return(0,a.useEffect)((()=>{const n=setTimeout((()=>{r(e)}),t);return()=>{clearTimeout(n)}}),[e,t]),n})(n,400);(0,a.useEffect)((()=>{H(),D(),C(1),y([]),O.current=!0,_(z,m,i,1)}),[z]);const H=()=>{F.current&&(F.current.scrollTop=0)},W=e=>{A(),t({type:Tl,payload:e})},B=(e,t)=>{if("pexels"===e.engine||"pixabay"===e.engine){const n=e.sizes.find((e=>e.id===t));if(n)return n.url;const r=["original","large2x","large","medium","small"];for(const t of r){const n=e.sizes.find((e=>e.id===t));if(n)return n.url}return e.url}},V=(e,t)=>async()=>{if(!N[e.id]&&!g){v(!0),I((t=>({...t,[e.id]:!0})));try{await sa({id:e.id,description:e?.description,name:la(B(e,t)),url:B(e,t)})}finally{I((t=>({...t,[e.id]:!1}))),v(!1)}}},$=x===Ll?[...b,...Ml()]:b,U=null!==i||"all"!==m,q=null!==(e=zipwpImages?.saved_images)&&void 0!==e?e:[];return(0,r.createElement)("div",{className:"flex flex-col justify-start items-center gap-5 h-full"},(0,r.createElement)("div",{className:"w-full h-fit md:flex-row flex-col flex justify-between gap-3"},(0,r.createElement)("div",{className:"w-full md:max-w-[420px]"},(0,r.createElement)(vl,{className:"w-full",name:"keyword",placeholder:"Search images",suffixIcon:n?(0,r.createElement)("button",{type:"button",className:"inline-flex items-start justify-center pr-3 bg-transparent p-0 m-0 border-0 outline-none focus:outline-none cursor-pointer",onClick:()=>o("")},(0,r.createElement)(s,{className:"w-4 h-4 text-zip-app-inactive-icon transition-all"})):(0,r.createElement)("div",{className:"inline-flex items-start justify-center pr-3 bg-transparent p-0 m-0 border-0"},(0,r.createElement)(l,{className:"w-4 h-4 text-zip-app-inactive-icon transition-all"})),autoComplete:"off",onChange:e=>{o(e),H(),D(),C(1),y([]),O.current=!0},value:n,focusOnLoad:!0})),(0,r.createElement)("div",{className:"flex items-center justify-end gap-3"},U&&(0,r.createElement)("span",{className:"text-sm font-normal text-body-text leading-[150%] cursor-pointer text-nowrap",onClick:()=>{d(null),h(bl.all?.value),y([]),C(1),_(z,bl?.all?.value,null,1),H()},"aria-hidden":"true"},(0,p.__)("Clear filter","zipwp-images")),(0,r.createElement)(hl,{value:i,onChange:e=>{D(),d(e),C(1),y([]),H(),_(z,m,e,1)}}),(0,r.createElement)(yl,{value:m,onChange:e=>{D(),h(e),C(1),y([]),_(z,e,i,1),H()}}))),(0,r.createElement)("div",{ref:F,className:"w-full max-h-full overflow-y-auto",onScroll:e=>{if(x===Ll)return;const{target:{scrollHeight:t,scrollTop:n,clientHeight:r}}=e;n+r>=t-250&&O.current&&(C((e=>e+1)),_(z,m,i,k+1))}},!!$.length&&(0,r.createElement)(w,{className:"gap-6 [&>div]:gap-6 pb-5",columns:{default:1,220:1,767:3,1024:3,1280:5,1920:5}},$.map((e=>e?.optimized_url?(0,r.createElement)("div",{ref:M,key:e.id,className:ia("flex relative bg-white rounded-lg shadow-none group/overlay",q.includes(e.id)&&"before:absolute before:top-2 before:left-2 before:content-['Imported'] before:bg-black/70 before:px-2 before:py-1 before:rounded before:text-white before:text-xs before:font-semibold")},(0,r.createElement)("img",{src:e.optimized_url,alt:e.alt,className:"w-full h-fit min-h-[200px] object-cover"}),(0,r.createElement)("div",{className:ia("absolute inset-0 opacity-0 group-hover/overlay:opacity-100  transition-all duration-300 ease-in-out flex items-center justify-center gap-4 cursor-pointer",e.id===P&&"!opacity-100"),role:"button",tabIndex:0,onClick:t=>{t.stopPropagation(),W(e)},onKeyDown:t=>{"Enter"!==t.key&&" "!==t.key||(t.preventDefault(),t.stopPropagation(),W(e))}},(0,r.createElement)("div",{className:"absolute top-0 left-0 right-0 h-10 bg-gradient-to-b from-black/10 to-transparent opacity-0 group-hover/overlay:opacity-100 transition-opacity duration-300"}),(0,r.createElement)("div",{className:"absolute bottom-0 left-0 right-0 h-10 bg-gradient-to-t from-black/10 to-transparent opacity-0 group-hover/overlay:opacity-100 transition-opacity duration-300"}),(0,r.createElement)("div",{className:"absolute bottom-0 left-0 right-0 flex justify-between items-center p-4 z-5"},(0,r.createElement)("div",{className:"w-1/2"},(0,r.createElement)("div",{className:"flex flex-col !text-white/90 text-xs"},(0,r.createElement)("a",{className:"!text-white/90 text-xs !no-underline",href:e.author_url,target:"_blank",onClick:e=>e.stopPropagation(),rel:"noreferrer"},"by"," ",e.author_name),(0,r.createElement)("span",{className:"opacity-70 truncate"},(0,r.createElement)("span",null,"via "),(0,r.createElement)("span",{className:"capitalize"},e.engine)))),(0,r.createElement)("div",{className:"flex-shrink-0 ml-2"},(0,r.createElement)("div",{className:"flex items-center overflow-hidden rounded"},(0,r.createElement)("button",{className:ia("border-none flex cursor-pointer items-center justify-center text-zip-body-text bg-white hover:bg-white/80 transition-colors duration-200 h-[34px] px-2 rounded-l",g&&"opacity-50 cursor-not-allowed hover:bg-white"),onClick:t=>{t.stopPropagation(),g||V(e)()},disabled:g||N[e.id]},(0,r.createElement)("div",{className:"flex items-center justify-center w-[70px]"}," ",N[e.id]?(0,r.createElement)(gl,{className:"w-4 h-4 mr-2"}):(0,r.createElement)(c,{className:"w-4 h-4 mr-2"}),(0,r.createElement)("span",{className:ia(N[e.id]&&"sr-only","text-sm")},"Insert"))),(0,r.createElement)("div",{className:"w-px h-[34px] bg-border-tertiary"}),(0,r.createElement)("button",{className:ia("border-none flex items-center justify-center cursor-pointer h-[34px] bg-white hover:bg-white/80 transition-colors duration-200 px-2 rounded-r",g&&"opacity-50 cursor-not-allowed hover:bg-white"),onClick:t=>{var n;t.stopPropagation(),g||(n=e.id,L(P===n?-1:n))},disabled:g},(0,r.createElement)(u,{className:ia("w-3 h-3 transition-transform duration-300",P===e.id&&"rotate-180")}))),(0,r.createElement)(ua,{placement:"top-end",isOpen:P===e.id,onClose:A,offset:[2,30],contentClassName:"p-1 bg-white",trigger:(0,r.createElement)("div",null)},e.sizes.filter((e=>Nl.includes(e.id))).map(((t,n)=>(0,r.createElement)(ua.Item,{as:"div",key:n},(0,r.createElement)("div",{"aria-hidden":"true",className:ia("mr-2 flex items-center justify-start gap-2 px-2 py-1.5 text-sm font-normal leading-5 text-zip-body-text hover:bg-background-secondary transition duration-150 ease-in-out rounded bg-white border-none cursor-pointer w-full",g&&"opacity-50 cursor-not-allowed hover:bg-white"),onClick:n=>{n.stopPropagation(),g||V(e,t.id)()}},(0,r.createElement)("span",{className:"text-sm font-medium capitalize"},t.id),(0,r.createElement)("span",{className:"text-xs leading-5 text-zip-app-inactive-icon !ml-0"},(e=>e.width&&e.height?`${e.width} x ${e.height}`:e.width?`W: ${e.width}`:e.height?`H: ${e.height}`:"")(t))))))))))):e))),x!==Pl&&x!==Ll&&!b.length&&(0,r.createElement)("div",{className:"grid grid-cols-1 gap-2 mt-12 h-auto text-center"},(0,r.createElement)("h4",{className:"text-xl text-heading-text !mb-0"},(0,p.sprintf)(
// translators: %s: search keyword
// translators: %s: search keyword
(0,p.__)("Sorry, we couldn't find anything for “%s”.","zipwp-images"),S.current)),(0,r.createElement)("p",{className:"text-body-text text-sm !mt-2"},(0,p.__)("Try to refine your search.","zipwp-images"))),x!==Ll&&!O.current&&!!b.length&&(0,r.createElement)("div",{className:"text-center text-sm text-border-primary mt-5 pb-5"},(0,p.__)("End of the search results.","zipwp-images"))))};var Al,jl,Dl;const _l=r.forwardRef((function({title:e,titleId:t,...n},o){return r.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:o,"aria-labelledby":t},n),e?r.createElement("title",{id:t},e):null,r.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M15.75 19.5 8.25 12l7.5-7.5"}))}));function zl(e,t){return null!==e&&null!==t&&"object"==typeof e&&"object"==typeof t&&"id"in e&&"id"in t?e.id===t.id:e===t}function Hl(e={},t=null,n=[]){for(let[r,o]of Object.entries(e))Bl(n,Wl(t,r),o);return n}function Wl(e,t){return e?e+"["+t+"]":t}function Bl(e,t,n){if(Array.isArray(n))for(let[r,o]of n.entries())Bl(e,Wl(t,r.toString()),o);else n instanceof Date?e.push([t,n.toISOString()]):"boolean"==typeof n?e.push([t,n?"1":"0"]):"string"==typeof n?e.push([t,n]):"number"==typeof n?e.push([t,`${n}`]):null==n?e.push([t,""]):Hl(n,t,e)}var Vl=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(Vl||{});let $l=Bn((function(e,t){var n;let{features:r=1,...o}=e;return jn({ourProps:{ref:t,"aria-hidden":!(2&~r)||(null!=(n=o["aria-hidden"])?n:void 0),hidden:!(4&~r)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...!(4&~r)&&!!(2&~r)&&{display:"none"}}},theirProps:o,slot:{},defaultTag:"div",name:"Hidden"})})),Ul=(0,r.createContext)(null);function ql(e){let[t,n]=(0,r.useState)(null);return r.createElement(Ul.Provider,{value:{target:t}},e.children,r.createElement($l,{features:Vl.Hidden,ref:n}))}function Gl({children:e}){let t=(0,r.useContext)(Ul);if(!t)return r.createElement(r.Fragment,null,e);let{target:n}=t;return n?(0,Yt.createPortal)(r.createElement(r.Fragment,null,e),n):null}function Kl({data:e,form:t,disabled:n,onReset:o,overrides:i}){let[a,l]=(0,r.useState)(null),s=oe();return(0,r.useEffect)((()=>{if(o&&a)return s.addEventListener(a,"reset",o)}),[a,t,o]),r.createElement(Gl,null,r.createElement(Yl,{setForm:l,formId:t}),Hl(e).map((([e,o])=>r.createElement($l,{features:Vl.Hidden,...Vn({key:e,as:"input",type:"hidden",hidden:!0,readOnly:!0,form:t,disabled:n,name:e,value:o,...i})}))))}function Yl({setForm:e,formId:t}){return(0,r.useEffect)((()=>{if(t){let n=document.getElementById(t);n&&e(n)}}),[e,t]),t?null:r.createElement($l,{features:Vl.Hidden,as:"input",type:"hidden",hidden:!0,readOnly:!0,ref:t=>{if(!t)return;let n=t.closest("form");n&&e(n)}})}var Xl=(e=>(e[e.RegisterOption=0]="RegisterOption",e[e.UnregisterOption=1]="UnregisterOption",e))(Xl||{});let Ql={0(e,t){let n=[...e.options,{id:t.id,element:t.element,propsRef:t.propsRef}];return{...e,options:Re(n,(e=>e.element.current))}},1(e,t){let n=e.options.slice(),r=e.options.findIndex((e=>e.id===t.id));return-1===r?e:(n.splice(r,1),{...e,options:n})}},Zl=(0,r.createContext)(null);function Jl(e){let t=(0,r.useContext)(Zl);if(null===t){let t=new Error(`<${e} /> is missing a parent <RadioGroup /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Jl),t}return t}Zl.displayName="RadioGroupDataContext";let es=(0,r.createContext)(null);function ts(e){let t=(0,r.useContext)(es);if(null===t){let t=new Error(`<${e} /> is missing a parent <RadioGroup /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,ts),t}return t}function ns(e,t){return me(t.type,Ql,e,t)}es.displayName="RadioGroupActionsContext";let rs=Bn((function(e,t){let n=(0,r.useId)(),o=qn(),{id:i=`headlessui-radiogroup-${n}`,value:a,defaultValue:l,form:s,name:c,onChange:u,by:d,disabled:f=o||!1,...p}=e,m=function(e=zl){return(0,r.useCallback)(((t,n)=>{if("string"==typeof e){let r=e;return(null==t?void 0:t[r])===(null==n?void 0:n[r])}return e(t,n)}),[e])}(d),[h,g]=(0,r.useReducer)(ns,{options:[]}),v=h.options,[b,y]=ar(),[w,x]=Xn(),E=(0,r.useRef)(null),k=He(E,t),[C,O]=function(e,t,n){let[o,i]=(0,r.useState)(n),a=void 0!==e,l=(0,r.useRef)(a),s=(0,r.useRef)(!1),c=(0,r.useRef)(!1);return!a||l.current||s.current?!a&&l.current&&!c.current&&(c.current=!0,l.current=a,console.error("A component is changing from controlled to uncontrolled. This may be caused by the value changing from a defined value to undefined, which should not happen.")):(s.current=!0,l.current=a,console.error("A component is changing from uncontrolled to controlled. This may be caused by the value changing from undefined to a defined value, which should not happen.")),[a?e:o,le((e=>(a||i(e),null==t?void 0:t(e))))]}(a,u,l),S=(0,r.useMemo)((()=>v.find((e=>!e.propsRef.current.disabled))),[v]),T=(0,r.useMemo)((()=>v.some((e=>m(e.propsRef.current.value,C)))),[v,C]),R=le((e=>{var t;if(f||m(e,C))return!1;let n=null==(t=v.find((t=>m(t.propsRef.current.value,e))))?void 0:t.propsRef.current;return!(null!=n&&n.disabled||(null==O||O(e),0))})),P=le((e=>{let t=E.current;if(!t)return;let n=te(t),r=v.filter((e=>!1===e.propsRef.current.disabled)).map((e=>e.element.current));switch(e.key){case Jn.Enter:!function(e){var t,n;let r=null!=(t=null==e?void 0:e.form)?t:e.closest("form");if(r){for(let t of r.elements)if(t!==e&&("INPUT"===t.tagName&&"submit"===t.type||"BUTTON"===t.tagName&&"submit"===t.type||"INPUT"===t.nodeName&&"image"===t.type))return void t.click();null==(n=r.requestSubmit)||n.call(r)}}(e.currentTarget);break;case Jn.ArrowLeft:case Jn.ArrowUp:if(e.preventDefault(),e.stopPropagation(),Pe(r,ye.Previous|ye.WrapAround)===we.Success){let e=v.find((e=>e.element.current===(null==n?void 0:n.activeElement)));e&&R(e.propsRef.current.value)}break;case Jn.ArrowRight:case Jn.ArrowDown:if(e.preventDefault(),e.stopPropagation(),Pe(r,ye.Next|ye.WrapAround)===we.Success){let e=v.find((e=>e.element.current===(null==n?void 0:n.activeElement)));e&&R(e.propsRef.current.value)}break;case Jn.Space:{e.preventDefault(),e.stopPropagation();let t=v.find((e=>e.element.current===(null==n?void 0:n.activeElement)));t&&R(t.propsRef.current.value)}}})),L=le((e=>(g({type:0,...e}),()=>g({type:1,id:e.id})))),N=(0,r.useMemo)((()=>({value:C,firstOption:S,containsCheckedOption:T,disabled:f,compare:m,...h})),[C,S,T,f,m,h]),I=(0,r.useMemo)((()=>({registerOption:L,change:R})),[L,R]),M={ref:k,id:i,role:"radiogroup","aria-labelledby":b,"aria-describedby":w,onKeyDown:P},F=(0,r.useMemo)((()=>({value:C})),[C]),A=(0,r.useCallback)((()=>R(l)),[R]);return r.createElement(x,{name:"RadioGroup.Description"},r.createElement(y,{name:"RadioGroup.Label"},r.createElement(es.Provider,{value:I},r.createElement(Zl.Provider,{value:N},null!=c&&r.createElement(Kl,{disabled:f,data:{[c]:C||"on"},overrides:{type:"radio",checked:null!=C},form:s,onReset:A}),jn({ourProps:M,theirProps:p,slot:F,defaultTag:"div",name:"RadioGroup"})))))})),os=Bn((function(e,t){var n;let o=Jl("RadioGroup.Option"),i=ts("RadioGroup.Option"),a=(0,r.useId)(),{id:l=`headlessui-radiogroup-option-${a}`,value:s,disabled:c=o.disabled||!1,autoFocus:u=!1,...d}=e,f=(0,r.useRef)(null),p=He(f,t),[m,h]=ar(),[g,v]=Xn(),b=ae({value:s,disabled:c});ie((()=>i.registerOption({id:l,element:f,propsRef:b})),[l,i,f,b]);let y=le((e=>{var t;if(Pn(e.currentTarget))return e.preventDefault();i.change(s)&&(null==(t=f.current)||t.focus())})),w=(null==(n=o.firstOption)?void 0:n.id)===l,{isFocusVisible:x,focusProps:E}=U({autoFocus:u}),{isHovered:k,hoverProps:C}=Q({isDisabled:c}),O=o.compare(o.value,s),S=Wn({ref:p,id:l,role:"radio","aria-checked":O?"true":"false","aria-labelledby":m,"aria-describedby":g,"aria-disabled":!!c||void 0,tabIndex:c?-1:O||!o.containsCheckedOption&&w?0:-1,onClick:c?void 0:y,autoFocus:u},E,C),T=(0,r.useMemo)((()=>({checked:O,disabled:c,active:x,hover:k,focus:x,autofocus:u})),[O,c,k,x,u]);return r.createElement(v,{name:"RadioGroup.Description"},r.createElement(h,{name:"RadioGroup.Label"},jn({ourProps:S,theirProps:d,slot:T,defaultTag:"div",name:"RadioGroup.Option"})))})),is=Bn((function(e,t){var n;let o=Jl("Radio"),i=ts("Radio"),a=(0,r.useId)(),l=tr(),s=qn(),{id:c=l||`headlessui-radio-${a}`,value:u,disabled:d=o.disabled||s||!1,autoFocus:f=!1,...p}=e,m=(0,r.useRef)(null),h=He(m,t),g=ir(),v=function(){var e,t;return null!=(t=null==(e=(0,r.useContext)(Kn))?void 0:e.value)?t:void 0}(),b=ae({value:u,disabled:d});ie((()=>i.registerOption({id:c,element:m,propsRef:b})),[c,i,m,b]);let y=le((e=>{var t;if(Pn(e.currentTarget))return e.preventDefault();i.change(u)&&(null==(t=m.current)||t.focus())})),{isFocusVisible:w,focusProps:x}=U({autoFocus:f}),{isHovered:E,hoverProps:k}=Q({isDisabled:d}),C=(null==(n=o.firstOption)?void 0:n.id)===c,O=o.compare(o.value,u);return jn({ourProps:Wn({ref:h,id:c,role:"radio","aria-checked":O?"true":"false","aria-labelledby":g,"aria-describedby":v,"aria-disabled":!!d||void 0,tabIndex:d?-1:O||!o.containsCheckedOption&&C?0:-1,autoFocus:f,onClick:d?void 0:y},x,k),theirProps:p,slot:(0,r.useMemo)((()=>({checked:O,disabled:d,hover:E,focus:w,autofocus:f})),[O,d,E,w,f]),defaultTag:"span",name:"Radio"})})),as=sr,ls=Zn,ss=Object.assign(rs,{Option:os,Radio:is,Label:as,Description:ls}),cs=Bn((function(e,t){let n=`headlessui-control-${(0,r.useId)()}`,[o,i]=ar(),[a,l]=Xn(),s=qn(),{disabled:c=s||!1,...u}=e,d=(0,r.useMemo)((()=>({disabled:c})),[c]);return r.createElement(Gn,{value:c},r.createElement(i,{value:o},r.createElement(l,{value:a},r.createElement(nr,{id:n},jn({ourProps:{ref:t,disabled:c||void 0,"aria-disabled":c||void 0},theirProps:{...u,children:r.createElement(ql,null,"function"==typeof u.children?u.children(d):u.children)},slot:d,defaultTag:"div",name:"Field"})))))}));function us({value:e,onChange:t,by:n,children:o}){return(0,r.createElement)(ss,{value:e,onChange:t,...!!n&&{by:n}},o)}us.Button=({value:e,children:t,disabled:n=!1})=>(0,r.createElement)(cs,{className:"flex items-center gap-2",disabled:n},(0,r.createElement)(is,{as:a.Fragment,value:e},(({checked:e,disabled:t})=>(0,r.createElement)("span",{className:ia("group flex size-[14px] items-center justify-center rounded-full border border-solid border-zip-body-text bg-white",t&&"opacity-70 cursor-not-allowed")},e&&(0,r.createElement)("span",{className:"size-2 rounded-full bg-zip-body-text"})))),(0,r.createElement)(sr,{as:a.Fragment},(({disabled:e})=>(0,r.createElement)("label",{className:ia(!!e&&"opacity-70")},t))));const ds=us,fs=()=>{var e;const{imagePreview:t,dispatch:n}=Rl(),o=(0,a.useMemo)((()=>t?t.sizes:[]),[t]),[i,l]=(0,a.useState)(null!==(e=o[0])&&void 0!==e?e:null),[s,u]=(0,a.useState)(!1),d=()=>{n({type:Tl,payload:null})};return(0,a.useEffect)((()=>{t&&l(o[0])}),[t]),!!t&&(0,r.createElement)("div",{className:"absolute inset-0 grid grid-cols-[1fr_380px] grid-rows-1 bg-white"},(0,r.createElement)("div",{className:"flex items-center justify-center p-6"},(0,r.createElement)("img",{className:"w-full h-full max-w-full max-h-full object-contain pointer-events-none",src:t.url,alt:"Preview",draggable:"false"})),(0,r.createElement)("div",{className:"flex flex-col justify-start items-start p-6 bg-wp-background border-l border-r-0 border-y-0 border-wp-border border-solid"},(0,r.createElement)("div",{className:"!space-y-2"},(0,r.createElement)("p",{className:"m-0 text-base font-semibold text-zip-app-heading"},(0,p.__)("Image Details","zipwp-images")),!!t?.description&&(0,r.createElement)("p",{className:""},t.description),(0,r.createElement)("a",{href:t.author_url,target:"_blank",rel:"noreferrer"},"by ",t.author_name," via"," ",(0,r.createElement)("span",{className:"capitalize"},t.engine)),(0,r.createElement)("p",null,(0,p.__)("Orientation","zipwp-images"),":"," ",(0,r.createElement)("span",{className:"capitalize"},t.orientation))),(0,r.createElement)("hr",{className:"w-full border-t border-b-0 border-solid border-border-tertiary my-6"}),(0,r.createElement)("div",{className:"space-y-2 w-full"},(0,r.createElement)("p",{className:"m-0 text-base font-semibold text-zip-app-heading"},(0,p.__)("Choose a size:","zipwp-images")),(0,r.createElement)(ds,{value:i,onChange:l},o.map((e=>(0,r.createElement)(ds.Button,{key:e.id,value:e},(0,r.createElement)("span",{className:"text-zip-body-text text-sm capitalize"},e.id)," ",!!e.width&&(0,r.createElement)("span",{className:"text-zip-app-inactive-icon text-sm"},"W: ",e.width)," ",!!e.height&&(0,r.createElement)("span",{className:"text-zip-app-inactive-icon text-sm"},"H: ",e.height))))),(0,r.createElement)(fl,{className:"w-full !mt-6 shadow-sm hover:bg-hover-wp-default transition-colors duration-200",variant:"primary",onClick:(f={id:t.id,description:t.description,name:la(i?.url),url:i?.url},async()=>{s||(u(!0),await sa(f),u(!1),setTimeout(d,1e3))}),isSmall:!0},s?(0,r.createElement)(gl,{className:"w-4 h-4 text-white"}):(0,r.createElement)(c,{className:"w-4 h-4"}),(0,r.createElement)("span",{className:ia(s&&"sr-only","!leading-[30px] font-normal text-[13px]")},"Insert Image")),(0,r.createElement)(fl,{variant:"blank",className:"w-full !mt-5 text-zip-body-text font-semibold text-sm border border-solid border-border-tertiary bg-white",isSmall:!0,onClick:d},(0,r.createElement)(_l,{className:"w-4 h-4 text-zip-app-inactive-icon"}),(0,r.createElement)("span",{className:"leading-[30px] font-normal text-[13px]"},(0,p.__)("Back to All Images","zipwp-images"))))));var f},ps=()=>(0,r.createElement)("div",{className:"px-5 pt-5 h-[calc(100%_-_1.25rem)]"},(0,r.createElement)(Fl,null),(0,r.createElement)(fs,null));!function(){const e=["video","application/json"],t=wp.media&&wp.media.View?wp.media.View.extend({tagName:"div",className:"attachments-browser ast-attachments-browser",images:[],object:[],initialize(){_.defaults(this.options,{filters:!1,search:!0,date:!0,display:!1,sidebar:!0,AttachmentView:wp.media.view.Attachment.Library}),this.createContent()},dynamicElement(e){if(!e)return;const{el:t}=e;return t},createContent(){const e=this.dynamicElement(this);aa.set(this),setTimeout((()=>{var t;(t=e)&&(0,a.createRoot)(t).render((0,r.createElement)(ps,null))}),10)},dispose(){return wp.media.View.prototype.dispose.apply(this,arguments),this}}):null;if(void 0!==wp&&wp.media){const n=wp.media.view.MediaFrame.Post,o=wp.media.view.MediaFrame.Select;function i(t){return!(t?.library&&t.library.type&&e.includes(t.library.type[0]))}wp.media.view.MediaFrame.Post=n.extend({browseRouter(e){n.prototype.browseRouter.apply(this,arguments),i(this.options)&&e.set({zipwpImages:{text:zipwpImages.title,priority:70}})},bindHandlers(){n.prototype.bindHandlers.apply(this,arguments),this.on("content:create:zipwpImages",this.zipWPImagesContent,this)},zipWPImagesContent(e){const n=this.state();this.$el.addClass("hide-toolbar"),e.view=new t({collection:n.get("zipwpImages-images"),selection:n.get("zipwpImages-selection"),controller:this,model:n})}}),wp.media.view.MediaFrame.Select=o.extend({browseRouter(e){o.prototype.browseRouter.apply(this,arguments),i(this.options)&&e.set({zipwpImages:{text:zipwpImages.title,priority:70}})},bindHandlers(){o.prototype.bindHandlers.apply(this,arguments),this.on("content:create:zipwpImages",this.zipWPImagesContent,this)},zipWPImagesContent(e){const n=this.state();n.get("provider")||n.set("provider",""),this.$el.addClass("hide-toolbar"),e.view=new t({collection:n.get("zipwpImages-images"),selection:n.get("zipwpImages-selection"),controller:this,model:n,provider:n.get("provider")})}})}}(jQuery)},20:(e,t,n)=>{var r=n(609),o=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l={key:!0,ref:!0,__self:!0,__source:!0};t.jsx=function(e,t,n){var r,s={},c=null,u=null;for(r in void 0!==n&&(c=""+n),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(u=t.ref),t)i.call(t,r)&&!l.hasOwnProperty(r)&&(s[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===s[r]&&(s[r]=t[r]);return{$$typeof:o,type:e,key:c,ref:u,props:s,_owner:a.current}}},848:(e,t,n)=>{e.exports=n(20)},63:(e,t,n)=>{var r=n(609),o="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},i=r.useState,a=r.useEffect,l=r.useLayoutEffect,s=r.useDebugValue;function c(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!o(e,n)}catch(e){return!0}}var u="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var n=t(),r=i({inst:{value:n,getSnapshot:t}}),o=r[0].inst,u=r[1];return l((function(){o.value=n,o.getSnapshot=t,c(o)&&u({inst:o})}),[e,n,t]),a((function(){return c(o)&&u({inst:o}),e((function(){c(o)&&u({inst:o})}))}),[e]),s(n),n};t.useSyncExternalStore=void 0!==r.useSyncExternalStore?r.useSyncExternalStore:u},940:(e,t,n)=>{var r=n(609),o=n(888),i="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=o.useSyncExternalStore,l=r.useRef,s=r.useEffect,c=r.useMemo,u=r.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,n,r,o){var d=l(null);if(null===d.current){var f={hasValue:!1,value:null};d.current=f}else f=d.current;d=c((function(){function e(e){if(!s){if(s=!0,a=e,e=r(e),void 0!==o&&f.hasValue){var t=f.value;if(o(t,e))return l=t}return l=e}if(t=l,i(a,e))return t;var n=r(e);return void 0!==o&&o(t,n)?t:(a=e,l=n)}var a,l,s=!1,c=void 0===n?null:n;return[function(){return e(t())},null===c?void 0:function(){return e(c())}]}),[t,n,r,o]);var p=a(e,d[0],d[1]);return s((function(){f.hasValue=!0,f.value=p}),[p]),u(p),p}},888:(e,t,n)=>{e.exports=n(63)},242:(e,t,n)=>{e.exports=n(940)},609:e=>{e.exports=window.React}},o={};function i(e){var t=o[e];if(void 0!==t)return t.exports;var n=o[e]={exports:{}};return r[e](n,n.exports,i),n.exports}i.m=r,e=[],i.O=(t,n,r,o)=>{if(!n){var a=1/0;for(u=0;u<e.length;u++){for(var[n,r,o]=e[u],l=!0,s=0;s<n.length;s++)(!1&o||a>=o)&&Object.keys(i.O).every((e=>i.O[e](n[s])))?n.splice(s--,1):(l=!1,o<a&&(a=o));if(l){e.splice(u--,1);var c=r();void 0!==c&&(t=c)}}return t}o=o||0;for(var u=e.length;u>0&&e[u-1][2]>o;u--)e[u]=e[u-1];e[u]=[n,r,o]},i.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return i.d(t,{a:t}),t},n=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,i.t=function(e,r){if(1&r&&(e=this(e)),8&r)return e;if("object"==typeof e&&e){if(4&r&&e.__esModule)return e;if(16&r&&"function"==typeof e.then)return e}var o=Object.create(null);i.r(o);var a={};t=t||[null,n({}),n([]),n(n)];for(var l=2&r&&e;"object"==typeof l&&!~t.indexOf(l);l=n(l))Object.getOwnPropertyNames(l).forEach((t=>a[t]=()=>e[t]));return a.default=()=>e,i.d(o,a),o},i.d=(e,t)=>{for(var n in t)i.o(t,n)&&!i.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},i.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{var e={792:0,85:0};i.O.j=t=>0===e[t];var t=(t,n)=>{var r,o,[a,l,s]=n,c=0;if(a.some((t=>0!==e[t]))){for(r in l)i.o(l,r)&&(i.m[r]=l[r]);if(s)var u=s(i)}for(t&&t(n);c<a.length;c++)o=a[c],i.o(e,o)&&e[o]&&e[o][0](),e[o]=0;return i.O(u)},n=globalThis.webpackChunkzipwp_images=globalThis.webpackChunkzipwp_images||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))})();var a=i.O(void 0,[85],(()=>i(94)));a=i.O(a)})();PK�][}����Bultimate-addons-for-gutenberg/lib/zipwp-images/dist/main.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-element', 'wp-i18n'), 'version' => 'aad13e1c6e4f53f94ada');
PK�][��O`@ultimate-addons-for-gutenberg/lib/zipwp-images/classes/error_lognu�[���[27-Oct-2025 13:05:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function ZipWP_Images\Classes\add_action() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-script.php:30
Stack trace:
#0 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-script.php(43): ZipWP_Images\Classes\Zipwp_Images_Script->__construct()
#1 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-script.php(161): ZipWP_Images\Classes\Zipwp_Images_Script::get_instance()
#2 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-script.php on line 30
[27-Oct-2025 13:11:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function ZipWP_Images\Classes\add_action() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-api.php:30
Stack trace:
#0 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-api.php(42): ZipWP_Images\Classes\Zipwp_Images_Api->__construct()
#1 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-api.php(482): ZipWP_Images\Classes\Zipwp_Images_Api::get_instance()
#2 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-api.php on line 30
PK�][}�PjO3O3Kultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-api.phpnu�[���<?php
/**
 * Zipwp Images API
 *
 * @since  1.0.0
 * @package Zipwp Images API
 */

namespace ZipWP_Images\Classes;

/**
 * Ai_Builder
 */
class Zipwp_Images_Api {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 1.0.0
	 */
	private static $instance = null;

	/**
	 * Constructor.
	 *
	 * @since  1.0.0
	 */
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_route' ) );
		add_action( 'wp_ajax_zipwp_images_insert_image', array( $this, 'zipwp_insert_image' ) );
	}

	/**
	 * Initiator
	 *
	 * @since 1.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Get api domain
	 *
	 * @since 1.0.0
	 * @return string
	 */
	public function get_api_domain() {
		return trailingslashit( defined( 'ZIPWP_API' ) ? ZIPWP_API : 'https://api.zipwp.com/api/' );
	}

	/**
	 * Get api namespace
	 *
	 * @since 1.0.0
	 * @return string
	 */
	public function get_api_namespace() {
		return 'zipwp-images/v1';
	}

	/**
	 * Get API headers
	 *
	 * @since 1.0.0
	 * @return array<string, string>
	 */
	public function get_api_headers() {
		return array(
			'Content-Type' => 'application/json',
			'Accept'       => 'application/json',
		);
	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|bool
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'edit_posts' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Load all the required files in the importer.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public function register_route(): void {

		register_rest_route(
			$this->get_api_namespace(),
			'/images/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'get_images' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args'                => array(
						'keywords'    => array(
							'type'     => 'string',
							'required' => true,
						),
						'per_page'    => array(
							'type'     => 'string',
							'required' => false,
						),
						'page'        => array(
							'type'     => 'string',
							'required' => false,
						),
						'orientation' => array(
							'type'              => 'string',
							'sanitize_callback' => 'sanitize_text_field',
							'required'          => false,
						),
						'engine'      => array(
							'type'              => 'string',
							'required'          => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'filter'      => array(
							'type'              => 'string',
							'required'          => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'color'       => array(
							'type'              => 'string',
							'required'          => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
					),
				),
			)
		);
	}

	/**
	 * Get Images.
	 *
	 * @param \WP_REST_Request $request Request object.
	 * @return mixed
	 */
	public function get_images( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( (string) $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data'   => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status' => false,

				)
			);
		}

		$api_endpoint = $this->get_api_domain() . 'images/';

		$post_data = array(
			'keywords'    => isset( $request['keywords'] ) && ! empty( $request['keywords'] ) ? [ $request['keywords'] ] : [ 'people' ],
			'per_page'    => isset( $request['per_page'] ) ? $request['per_page'] : 20,
			'page'        => isset( $request['page'] ) ? sanitize_text_field( $request['page'] ) : '1',
			// Expected orientation values are all, landscape, portrait.
			'orientation' => isset( $request['orientation'] ) ? sanitize_text_field( $request['orientation'] ) : '',
			'color'       => isset( $request['color'] ) ? sanitize_text_field( $request['color'] ) : '',
			// Expected filter values are newest, popular.
			'filter'      => isset( $request['filter'] ) ? sanitize_text_field( $request['filter'] ) : 'popular',
			'engine'      => isset( $request['engine'] ) ? sanitize_text_field( $request['engine'] ) : 'pexels',
			'details'     => true,
		);

		switch ( $post_data['engine'] ) {

			case 'pexels':
				// sort=popular.
				$post_data['filter'] = 'popular' === $post_data['filter'] ? 'popular' : 'desc';
				break;

			case 'pixabay':
				// order=popular.
				$post_data['filter'] = 'popular' === $post_data['filter'] ? 'popular' : 'latest';
				break;

		}

		$request_args = array(
			'body'    => wp_json_encode( $post_data ),
			'headers' => $this->get_api_headers(),
			'timeout' => 100,
		);
		$response     = wp_safe_remote_post( $api_endpoint, $request_args ); // @phpstan-ignore-line

		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data'   => 'Failed ' . $response->get_error_message(),
					'status' => false,

				)
			);
		}
		$response_code = wp_remote_retrieve_response_code( $response );
		$response_body = wp_remote_retrieve_body( $response );
		if ( 200 === $response_code ) {
			$response_data = json_decode( $response_body, true );

			// Get image sizes and add to the each image.
			$images = is_array( $response_data ) && isset( $response_data['images'] ) ? $response_data['images'] : [];
			foreach ( $images as $key => $image ) {
				$images[ $key ]['sizes'] = $this->get_image_size( $image );
			}

			wp_send_json_success(
				array(
					'data'   => $images,
					'status' => true,
				)
			);

		} else {

			wp_send_json_error(
				array(
					'data'   => 'Failed',
					'status' => false,

				)
			);
		}
	}

	/**
	 * Download and save the image in the media library.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public function zipwp_insert_image(): void {
		// Verify Nonce.
		check_ajax_referer( 'zipwp-images', '_ajax_nonce' );

		if ( ! current_user_can( 'upload_files' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}

		$url      = isset( $_POST['url'] ) ? sanitize_url( $_POST['url'] ) : false; // phpcs:ignore -- We need to remove this ignore once the WPCS has released this issue fix - https://github.com/WordPress/WordPress-Coding-Standards/issues/2189.
		$name     = isset( $_POST['name'] ) ? sanitize_text_field( $_POST['name'] ) : false;
		$desc     = isset( $_POST['description'] ) ? sanitize_text_field( $_POST['description'] ) : '';
		$photo_id = isset( $_POST['id'] ) ? absint( sanitize_key( $_POST['id'] ) ) : 0;

		if ( 0 === $photo_id ) {
			wp_send_json_error( __( 'Need to send photo ID', 'ultimate-addons-for-gutenberg' ) );
		}

		if ( false === $url ) {
			wp_send_json_error( __( 'Need to send URL of the image to be downloaded', 'ultimate-addons-for-gutenberg' ) );
		}

		$image  = '';
		$result = array();

		$name  = preg_replace( '/\.[^.]+$/', '', (string) $name ) . '-' . $photo_id . '.jpg';
		$image = $this->create_image_from_url( $url, $name, (string) $photo_id, $desc );

		if ( empty( $image ) ) {
			wp_send_json_error( __( 'Could not download the image.', 'ultimate-addons-for-gutenberg' ) );
		}

		$image                    = intval( $image );
		$result['attachmentData'] = wp_prepare_attachment_for_js( $image );

		if ( did_action( 'elementor/loaded' ) ) {
			$result['data'] = $this->get_attachment_data( $image );
		}

		// Save downloaded image reference to an option.
		if ( 0 !== $photo_id ) {
			$saved_images = get_option( 'zipwp-images-saved-images', array() );

			if ( empty( $saved_images ) ) {
				$saved_images = array();
			}

			$saved_images[] = $photo_id;
			update_option( 'zipwp-images-saved-images', $saved_images, false );
		}

		$result['updated-saved-images'] = get_option( 'zipwp-images-saved-images', array() );

		wp_send_json_success( $result );
	}

	/**
	 * Create the image and return the new media upload id.
	 *
	 * @param String $url URL to pixabay image.
	 * @param String $name Name to pixabay image.
	 * @param String $photo_id Photo ID to pixabay image.
	 * @param String $description Description to pixabay image.
	 * @see http://codex.wordpress.org/Function_Reference/wp_insert_attachment#Example
	 *
	 * @return mixed
	 */
	public function create_image_from_url( $url, $name, $photo_id, $description = '' ) {
		require_once ABSPATH . 'wp-admin/includes/media.php';
		require_once ABSPATH . 'wp-admin/includes/file.php';
		require_once ABSPATH . 'wp-admin/includes/image.php';
		$file_array         = array();
		$file_array['name'] = wp_basename( $name );

		// Download file to temp location.
		$file_array['tmp_name'] = download_url( $url );

		// If error storing temporarily, return the error.
		if ( is_wp_error( $file_array['tmp_name'] ) ) {
			return $file_array;
		}

		// Do the validation and storage stuff.
		$id = media_handle_sideload( $file_array, 0, null );

		// If error storing permanently, unlink.
		if ( is_wp_error( $id ) ) {
			@unlink( $file_array['tmp_name'] ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged, WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_unlink -- Deleting the file from temp location.
			return $id;
		}

		$alt = '' === $description ? $name : $description;

		// Store the original attachment source in meta.
		add_post_meta( $id, '_source_url', $url );

		update_post_meta( $id, 'zipwp-images', $photo_id );
		update_post_meta( $id, '_wp_attachment_image_alt', $alt );
		return $id;
	}

	/**
	 * Import Image.
	 *
	 * @since  1.0.0
	 * @param int $image Downloaded Image id.
	 * @return array<string, array<int, array<string, mixed>>>
	 */
	public function get_attachment_data( $image ) {
		if ( empty( $image ) || ! class_exists( 'Elementor\Utils' ) ) {
			return array();
		}

		return array(
			'content' => array(
				array(
					'id'       => \Elementor\Utils::generate_random_string(),
					'elType'   => 'section',
					'settings' => array(),
					'isInner'  => false,
					'elements' => array(
						array(
							'id'       => \Elementor\Utils::generate_random_string(),
							'elType'   => 'column',
							'elements' => array(
								array(
									'id'         => \Elementor\Utils::generate_random_string(),
									'elType'     => 'widget',
									'settings'   => array(
										'image'      => array(
											'url' => wp_get_attachment_url( $image ),
											'id'  => $image,
										),
										'image_size' => 'full',
									),
									'widgetType' => 'image',
								),
							),
							'isInner'  => false,
						),
					),
				),
			),
		);
	}

	/**
	 * Image size.
	 *
	 * @since 1.0.0
	 * @param array<string, array<string, mixed>> $image Image Array.
	 *
	 * @return array<int, array<string, mixed>>
	 */
	public function get_image_size( $image ) {
		$sizes = array();

		if ( empty( $image['details'] ) ) {
			return $sizes;
		}

		switch ( $image['engine'] ) {
			case 'pexels':
				$available_image_sizes = $image['details']['src'];

				if ( is_array( $available_image_sizes ) ) {
					foreach ( $available_image_sizes as $size_key => $url ) {
						$dimensions = $this->get_image_dimensions( $url );
						$value      = array(
							'id'     => $size_key,
							'url'    => $url,
							'width'  => $dimensions['width'],
							'height' => $dimensions['height'],
						);
						$sizes[]    = $value;
					}
				}

				return $sizes;
			case 'pixabay':
				$sizes = array(
					array(
						'id'     => 'original',
						'url'    => $image['details']['largeImageURL'],
						'width'  => $image['details']['webformatWidth'],
						'height' => $image['details']['webformatHeight'],
					),
					array(
						'id'     => 'medium',
						'url'    => $image['details']['webformatURL'],
						'width'  => $image['details']['webformatWidth'],
						'height' => $image['details']['webformatHeight'],
					),
					array(
						'id'     => 'small',
						'url'    => $image['details']['previewURL'],
						'width'  => $image['details']['previewWidth'],
						'height' => $image['details']['previewHeight'],
					),
				);

				return $sizes;
			default:
				return $sizes;
		}
	}

	/**
	 * Get width and height of the image.
	 *
	 * @since 1.0.0
	 * @param string $url Image URL.
	 * @return array<string, array<string, string>|string>
	 */
	public function get_image_dimensions( $url ) {
		$clean_url = esc_url_raw( $url );
		parse_str( explode( '?', $clean_url )[1], $query_params );
		return array(
			'width'  => $query_params['w'] ?? '',
			'height' => $query_params['h'] ?? '',
		);
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Zipwp_Images_Api::get_instance();
PK�][�jF9~~Nultimate-addons-for-gutenberg/lib/zipwp-images/classes/zipwp-images-script.phpnu�[���<?php
/**
 * Zipwp Images Script
 *
 * @since 1.0.0
 * @package Zipwp Images Script
 */

namespace ZipWP_Images\Classes;

/**
 * Ai_Builder
 */
class Zipwp_Images_Script {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 1.0.0
	 */
	private static $instance = null;

	/**
	 * Constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		add_action( 'admin_enqueue_scripts', array( $this, 'editor_load_scripts' ) );
		add_action( 'wp_enqueue_scripts', array( $this, 'bb_editor_load_scripts' ) );
		add_action( 'elementor/editor/before_enqueue_scripts', array( $this, 'editor_load_scripts' ) );
	}

	/**
	 * Initiator
	 *
	 * @since 1.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Load script for block editor and elementor editor.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function editor_load_scripts(): void {

		if ( ! is_admin() ) {
			return;
		}

		$this->load_script();
	}

	/**
	 * Load script for block BB editor.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function bb_editor_load_scripts(): void {

		if ( class_exists( 'FLBuilderModel' ) && \FLBuilderModel::is_builder_active() || is_customize_preview() ) {
			$this->load_script();
		}
	}

	/**
	 * Load all the required files in the importer.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function load_script(): void {

		// Introduces a filter to exclude certain post types from the plugin.
		$exclude_post_types = apply_filters( 'zipwp_images_excluded_post_types', array( 'sureforms_form' ) );
		if ( ! function_exists( 'get_current_screen' ) ) {
			require_once ABSPATH . '/wp-admin/includes/screen.php';
		}
		$current_screen = get_current_screen();

		if ( ! is_object( $current_screen ) ) {
			return;
		}

		if ( in_array( $current_screen->post_type, $exclude_post_types, true ) ) {
			return;
		}

		// Enqueue JS.
		wp_enqueue_script( 'zipwp-images-script', ZIPWP_IMAGES_URL . 'dist/main.js', array( 'jquery', 'media-views', 'react', 'wp-element', 'wp-api-fetch' ), ZIPWP_IMAGES_VER, true );

		$data = apply_filters(
			'zipwp_images_vars',
			array(
				'ajaxurl'              => esc_url( admin_url( 'admin-ajax.php' ) ),
				'asyncurl'             => esc_url( admin_url( 'async-upload.php' ) ),
				'is_customize_preview' => is_customize_preview(),
				'is_bb_active'         => class_exists( 'FLBuilderModel' ),
				'is_brizy_active'      => class_exists( 'Brizy_Editor_Post' ),
				'is_elementor_active'  => did_action( 'elementor/loaded' ),
				'is_elementor_editor'  => did_action( 'elementor/loaded' ) && class_exists( '\Elementor\Plugin' ) ? \Elementor\Plugin::instance()->editor->is_edit_mode() : false,
				'is_bb_editor'         => class_exists( '\FLBuilderModel' ) ? \FLBuilderModel::is_builder_active() : false,
				'is_brizy_editor'      => class_exists( 'Brizy_Editor_Post' ) ? ( isset( $_GET['brizy-edit'] ) || isset( $_GET['brizy-edit-iframe'] ) ) : false, // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Fetching GET parameter, no nonce associated with this action.
				'saved_images'         => get_option( 'zipwp-images-saved-images', array() ),
				'title'                => apply_filters( 'zipwp_images_tab_title', __( 'Search Images', 'ultimate-addons-for-gutenberg' ) ),
				'search_placeholder'   => __( 'Search - Ex: flowers', 'ultimate-addons-for-gutenberg' ),
				'downloading'          => __( 'Downloading...', 'ultimate-addons-for-gutenberg' ),
				'validating'           => __( 'Validating...', 'ultimate-addons-for-gutenberg' ),
				'_ajax_nonce'          => wp_create_nonce( 'zipwp-images' ),
				'rest_api_nonce'       => current_user_can( 'edit_posts' ) ? wp_create_nonce( 'wp_rest' ) : '',
			)
		);

		// Add localize JS.
		wp_localize_script(
			'zipwp-images-script',
			'zipwpImages',
			$data
		);

		// Enqueue CSS.
		wp_enqueue_style( 'zipwp-images-style', ZIPWP_IMAGES_URL . 'dist/style-main.css', array(), ZIPWP_IMAGES_VER );
		wp_enqueue_style( 'zipwp-images-google-fonts', $this->google_fonts_url(), array(), 'all' );
	}

	/**
	 * Generate and return the Google fonts url.
	 *
	 * @since 1.0.0
	 * @return string
	 */
	public function google_fonts_url() {

		$fonts_url     = '';
		$font_families = array(
			'Figtree:400,500,600,700',
		);

		$query_args = array(
			'family' => rawurlencode( implode( '|', $font_families ) ),
			'subset' => rawurlencode( 'latin,latin-ext' ),
		);

		return add_query_arg( $query_args, '//fonts.googleapis.com/css' );
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Zipwp_Images_Script::get_instance();
PK�][��M���Fultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images-loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package {{package}}
 * @since 1.0.0
 */

namespace ZipWP_Images;

/**
 * Zipwp_Images_Loader
 *
 * @since 1.0.0
 */
class Zipwp_Images_Loader {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 1.0.0
	 */
	private static $instance = null;

	/**
	 * Constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {

		spl_autoload_register( [ $this, 'autoload' ] );

		add_action( 'init', [ $this, 'load_textdomain' ] );
		add_action( 'wp_loaded', [ $this, 'load_files' ] );
	}

	/**
	 * Initiator
	 *
	 * @since 1.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Autoload classes.
	 *
	 * @param string $class class name.
	 * @return void
	 */
	public function autoload( $class ): void {
		if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
			return;
		}

		$class_to_load = $class;

		$filename = strtolower(
			(string) preg_replace(
				[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
				[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
				$class_to_load
			)
		);

		$file = ZIPWP_IMAGES_DIR . $filename . '.php';

		// if the file redable, include it.
		if ( is_readable( $file ) ) {
			require_once $file;
		}
	}

	/**
	 * Load Files
	 *
	 * @since 1.0.0
	 *
	 * @return void
	 */
	public function load_files(): void {
		require_once ZIPWP_IMAGES_DIR . 'classes/zipwp-images-script.php';
		require_once ZIPWP_IMAGES_DIR . 'classes/zipwp-images-api.php';
	}

	/**
	 * Load Plugin Text Domain.
	 * This will load the translation textdomain depending on the file priorities.
	 *      1. Global Languages /wp-content/languages/zipwp-images/ folder
	 *      2. Local dorectory /wp-content/plugins/zipwp-images/languages/ folder
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function load_textdomain(): void {
		// Default languages directory.
		$lang_dir = ZIPWP_IMAGES_DIR . 'languages/';

		/**
		 * Filters the languages directory path to use for plugin.
		 *
		 * @param string $lang_dir The languages directory path.
		 */
		$lang_dir = apply_filters( 'zipwp_images_languages_directory', $lang_dir );

		// Traditional WordPress plugin locale filter.
		global $wp_version;

		$get_locale = get_locale();

		if ( $wp_version >= 4.7 ) {
			$get_locale = get_user_locale();
		}

		$locale = apply_filters( 'plugin_locale', $get_locale, 'zipwp-images' );
		$mofile = sprintf( '%1$s-%2$s.mo', 'zipwp-images', $locale );

		// Setup paths to current locale file.
		$mofile_global = WP_LANG_DIR . '/plugins/' . $mofile;
		$mofile_local  = $lang_dir . $mofile;

		if ( file_exists( $mofile_global ) ) {
			// Look in global /wp-content/languages/zipwp-images/ folder.
			load_textdomain( 'zipwp-images', $mofile_global );
		} elseif ( file_exists( $mofile_local ) ) {
			// Look in local /wp-content/plugins/zipwp-images/languages/ folder.
			load_textdomain( 'zipwp-images', $mofile_local );
		} else {
			// Load the default language files.
			load_plugin_textdomain( 'zipwp-images', false, $lang_dir );
		}
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Zipwp_Images_Loader::get_instance();
PK�][8G�gg?ultimate-addons-for-gutenberg/lib/zipwp-images/zipwp-images.phpnu�[���<?php
/**
 * Plugin Name: ZipWP Images
 * Description: It is a free image library.
 * Author: Brainstorm Force
 * Version: 1.0.18
 * License: GPL v2
 * Text Domain: zipwp-images
 *
 * @package {{package}}
 */

if ( defined( 'ZIPWP_IMAGES_FILE' ) ) {
	return;
}

/**
 * Set constants
 */
define( 'ZIPWP_IMAGES_FILE', __FILE__ );
define( 'ZIPWP_IMAGES_BASE', plugin_basename( ZIPWP_IMAGES_FILE ) );
define( 'ZIPWP_IMAGES_DIR', plugin_dir_path( ZIPWP_IMAGES_FILE ) );
define( 'ZIPWP_IMAGES_URL', plugins_url( '/', ZIPWP_IMAGES_FILE ) );
define( 'ZIPWP_IMAGES_VER', '1.0.18' );

require_once 'zipwp-images-loader.php';
PK�][�[�w;ultimate-addons-for-gutenberg/lib/zipwp-images/version.jsonnu�[���{
	"zipwp-images": "1.0.18"
}
PK�][��D��6ultimate-addons-for-gutenberg/lib/nps-survey/error_lognu�[���[31-Oct-2025 21:18:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function NPS_Survey\add_action() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey-plugin-loader.php:36
Stack trace:
#0 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey-plugin-loader.php(47): NPS_Survey\NPS_Survey_Plugin_Loader->__construct()
#1 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey-plugin-loader.php(99): NPS_Survey\NPS_Survey_Plugin_Loader::get_instance()
#2 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey-plugin-loader.php on line 36
[31-Oct-2025 21:18:46 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function plugin_basename() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey.php:19
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey.php on line 19
PK�][�6aww:ultimate-addons-for-gutenberg/lib/nps-survey/changelog.txtnu�[���Version 1.0.11 - 27-06-2025
- Improvement:
  - Improved core class loading to avoid duplicate declarations and ensure stability.

Version 1.0.10 - 26-06-2025
- Improvement:
  - Updated rating submission endpoint.

Version 1.0.9 - 24-06-2025
- Improvement:
  - Improved library loading conditions to prevent conflicts.

Version 1.0.8 - 18-06-2025
- Dev:
  - Updated API domain to 'https://metrics.brainstormforce.com/' for improved performance and reliability.

Version 1.0.7 - 13-01-2025
- Improvement:
  - Enhanced core loading mechanism to prevent potential plugin conflicts.
	-	Refactored codebase to adhere to core coding standards, improving overall readability and maintainability.
	-	Updated popup UI to prevent external overlapping issues, ensuring better user experience.
- New:
  - Introduced internal filters to provide flexibility in customizing rating submission data.

Version 1.0.6 - 31-12-2024
- Improvement:
  - Optimized performance by preventing unnecessary markup loading on screens where specific screen IDs are provided.
- Fix:
  - Resolved console errors that occurred during popup dismissal, ensuring smoother user interaction.

Version 1.0.5 - 19-12-2024
- New:
  - Introduced a configuration option to display pop-up on the dashboards of specific plugins.
- Improvement:
  - Enhanced mobile responsiveness of the popup.
- Fix:
  - Corrected popup positioning in RTL (Right-to-Left) layouts.
  - Resolved overlap issues between the popup and other elements in Spectra.

Version 1.0.4 - 13-12-2024  
- Improvement: Optimized file loading to prevent duplicate loads, enhancing performance.

Version 1.0.3 - 10-12-2024
- Fix: Fixed library update issue.

Version 1.0.2 - 09-12-2024
- Improvement: NPS popup will now be permanently dismissed when closed for the second time.
- Improvement: Added an option to customize the rate button text for plugins/themes.
- Fix: Resolved CSS conflicts with other plugins.

Version 1.0.1 - 20-11-2024
- New: Added filter to 'nps_survey_allowed_screens' to allow custom screens.
- New: Added filter to 'nps_survey_build_url' update build url for themes.

Version 1.0.0 - 23-09-2024
- New: Initial release.  
 
PK�][���m�"�"@ultimate-addons-for-gutenberg/lib/nps-survey/dist/style-main.cssnu�[���.nps-survey-root .invisible {visibility: hidden
}.nps-survey-root .fixed {position: fixed
}.nps-survey-root .absolute {position: absolute
}.nps-survey-root .relative {position: relative
}.nps-survey-root .inset-0 {inset: 0px
}.nps-survey-root .bottom-2 {bottom: 0.5rem
}.nps-survey-root .right-2 {right: 0.5rem
}.nps-survey-root .right-3 {right: 0.75rem
}.nps-survey-root .top-3 {top: 0.75rem
}.nps-survey-root .isolate {isolation: isolate
}.nps-survey-root .z-\[9999999999\] {z-index: 9999999999
}.nps-survey-root .mx-0 {margin-left: 0px;margin-right: 0px
}.nps-survey-root .my-0 {margin-top: 0px;margin-bottom: 0px
}.nps-survey-root .mb-0 {margin-bottom: 0px
}.nps-survey-root .mt-1 {margin-top: 0.25rem
}.nps-survey-root .mt-2 {margin-top: 0.5rem
}.nps-survey-root .mt-3 {margin-top: 0.75rem
}.nps-survey-root .mt-5 {margin-top: 1.25rem
}.nps-survey-root .block {display: block
}.nps-survey-root .flex {display: flex
}.nps-survey-root .inline-flex {display: inline-flex
}.nps-survey-root .size-5 {width: 1.25rem;height: 1.25rem
}.nps-survey-root .size-6 {width: 1.5rem;height: 1.5rem
}.nps-survey-root .h-11 {height: 2.75rem
}.nps-survey-root .h-5 {height: 1.25rem
}.nps-survey-root .h-\[2\.625rem\] {height: 2.625rem
}.nps-survey-root .w-4 {width: 1rem
}.nps-survey-root .w-5 {width: 1.25rem
}.nps-survey-root .w-\[calc\(100\%-8px\)\] {width: calc(100% - 8px)
}.nps-survey-root .w-full {width: 100%
}.nps-survey-root .max-w-\[30rem\] {max-width: 30rem
}.nps-survey-root .flex-1 {flex: 1 1 0%
}@keyframes spin {to {transform: rotate(360deg)
    }
}.nps-survey-root .animate-spin {animation: spin 1s linear infinite
}.nps-survey-root .cursor-not-allowed {cursor: not-allowed
}.nps-survey-root .cursor-pointer {cursor: pointer
}.nps-survey-root .cursor-progress {cursor: progress
}.nps-survey-root .resize {resize: both
}.nps-survey-root .items-center {align-items: center
}.nps-survey-root .justify-start {justify-content: flex-start
}.nps-survey-root .justify-center {justify-content: center
}.nps-survey-root .justify-between {justify-content: space-between
}.nps-survey-root .gap-2 {gap: 0.5rem
}.nps-survey-root .rounded {border-radius: 0.25rem
}.nps-survey-root .rounded-lg {border-radius: 0.5rem
}.nps-survey-root .rounded-md {border-radius: 0.375rem
}.nps-survey-root .border {border-width: 1px
}.nps-survey-root .border-0 {border-width: 0px
}.nps-survey-root .border-solid {border-style: solid
}.nps-survey-root .border-none {border-style: none
}.nps-survey-root .border-border-tertiary {--tw-border-opacity: 1;border-color: rgb(216 223 233 / var(--tw-border-opacity))
}.nps-survey-root .border-button-disabled {--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity))
}.nps-survey-root .border-nps-button-background {--tw-border-opacity: 1;border-color: rgb(34 113 177 / var(--tw-border-opacity))
}.nps-survey-root .border-transparent {border-color: transparent
}.nps-survey-root .border-white {--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity))
}.nps-survey-root .border-zip-body-text {--tw-border-opacity: 1;border-color: rgb(var(--zip-body-text) / var(--tw-border-opacity))
}.nps-survey-root .bg-nps-button-background {--tw-bg-opacity: 1;background-color: rgb(34 113 177 / var(--tw-bg-opacity))
}.nps-survey-root .bg-transparent {background-color: transparent
}.nps-survey-root .bg-white {--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}.nps-survey-root .p-4 {padding: 1rem
}.nps-survey-root .px-4 {padding-left: 1rem;padding-right: 1rem
}.nps-survey-root .px-5 {padding-left: 1.25rem;padding-right: 1.25rem
}.nps-survey-root .px-6 {padding-left: 1.5rem;padding-right: 1.5rem
}.nps-survey-root .py-1\.5 {padding-top: 0.375rem;padding-bottom: 0.375rem
}.nps-survey-root .py-2 {padding-top: 0.5rem;padding-bottom: 0.5rem
}.nps-survey-root .py-3 {padding-top: 0.75rem;padding-bottom: 0.75rem
}.nps-survey-root .pl-0 {padding-left: 0px
}.nps-survey-root .pl-3 {padding-left: 0.75rem
}.nps-survey-root .pl-4 {padding-left: 1rem
}.nps-survey-root .pl-5 {padding-left: 1.25rem
}.nps-survey-root .pl-6 {padding-left: 1.5rem
}.nps-survey-root .pr-3 {padding-right: 0.75rem
}.nps-survey-root .pr-4 {padding-right: 1rem
}.nps-survey-root .pr-5 {padding-right: 1.25rem
}.nps-survey-root .pr-6 {padding-right: 1.5rem
}.nps-survey-root .text-base {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root .text-lg {font-size: 1.125rem;line-height: 1.75rem
}.nps-survey-root .text-sm {font-size: 0.875rem;line-height: 1.25rem
}.nps-survey-root .text-xs {font-size: 0.75rem;line-height: 1rem
}.nps-survey-root .font-bold {font-weight: 700
}.nps-survey-root .font-medium {font-weight: 500
}.nps-survey-root .font-normal {font-weight: 400
}.nps-survey-root .font-semibold {font-weight: 600
}.nps-survey-root .leading-5 {line-height: 1.25rem
}.nps-survey-root .leading-6 {line-height: 1.5rem
}.nps-survey-root .leading-7 {line-height: 1.75rem
}.nps-survey-root .text-border-secondary {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-nps-button-background {--tw-text-opacity: 1;color: rgb(34 113 177 / var(--tw-text-opacity))
}.nps-survey-root .text-secondary-text {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-white {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-heading {--tw-text-opacity: 1;color: rgb(var(--zip-app-heading) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-inactive-icon {--tw-text-opacity: 1;color: rgb(var(--zip-app-inactive-icon) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-body-text {--tw-text-opacity: 1;color: rgb(var(--zip-body-text) / var(--tw-text-opacity))
}.nps-survey-root .underline {text-decoration-line: underline
}.nps-survey-root .no-underline {text-decoration-line: none
}.nps-survey-root .opacity-25 {opacity: 0.25
}.nps-survey-root .opacity-50 {opacity: 0.5
}.nps-survey-root .opacity-70 {opacity: 0.7
}.nps-survey-root .opacity-75 {opacity: 0.75
}.nps-survey-root .shadow-lg {--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .shadow-sm {--tw-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .transition {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .transition-colors {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .duration-150 {transition-duration: 150ms
}.nps-survey-root .ease-in-out {transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}.nps-survey-root {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root * {box-sizing: border-box;font-family: Figtree, sans-serif
}.nps-survey-root .hover\:cursor-pointer:hover {cursor: pointer
}.nps-survey-root .hover\:bg-gray-50:hover {--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity))
}.nps-survey-root .focus\:z-10:focus {z-index: 10
}.nps-survey-root .focus\:ring-1:focus {--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}.nps-survey-root .focus\:ring-nps-button-background:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(34 113 177 / var(--tw-ring-opacity))
}.nps-survey-root .focus-visible\:outline:focus-visible {outline-style: solid
}.nps-survey-root .focus-visible\:outline-2:focus-visible {outline-width: 2px
}.nps-survey-root .focus-visible\:outline-offset-2:focus-visible {outline-offset: 2px
}@media (min-width: 512px) {.nps-survey-root .xs\:w-full {width: 100%
    }
}@media (min-width: 640px) {.nps-survey-root .sm\:p-5 {padding: 1.25rem
    }.nps-survey-root .sm\:text-sm {font-size: 0.875rem;line-height: 1.25rem
    }.nps-survey-root .sm\:leading-6 {line-height: 1.5rem
    }
}
PK�][�A<�"�"Dultimate-addons-for-gutenberg/lib/nps-survey/dist/style-main-rtl.cssnu�[���.nps-survey-root .invisible {visibility: hidden
}.nps-survey-root .fixed {position: fixed
}.nps-survey-root .absolute {position: absolute
}.nps-survey-root .relative {position: relative
}.nps-survey-root .inset-0 {inset: 0px
}.nps-survey-root .bottom-2 {bottom: 0.5rem
}.nps-survey-root .right-2 {left: 0.5rem
}.nps-survey-root .right-3 {left: 0.75rem
}.nps-survey-root .top-3 {top: 0.75rem
}.nps-survey-root .isolate {isolation: isolate
}.nps-survey-root .z-\[9999999999\] {z-index: 9999999999
}.nps-survey-root .mx-0 {margin-right: 0px;margin-left: 0px
}.nps-survey-root .my-0 {margin-top: 0px;margin-bottom: 0px
}.nps-survey-root .mb-0 {margin-bottom: 0px
}.nps-survey-root .mt-1 {margin-top: 0.25rem
}.nps-survey-root .mt-2 {margin-top: 0.5rem
}.nps-survey-root .mt-3 {margin-top: 0.75rem
}.nps-survey-root .mt-5 {margin-top: 1.25rem
}.nps-survey-root .block {display: block
}.nps-survey-root .flex {display: flex
}.nps-survey-root .inline-flex {display: inline-flex
}.nps-survey-root .size-5 {width: 1.25rem;height: 1.25rem
}.nps-survey-root .size-6 {width: 1.5rem;height: 1.5rem
}.nps-survey-root .h-11 {height: 2.75rem
}.nps-survey-root .h-5 {height: 1.25rem
}.nps-survey-root .h-\[2\.625rem\] {height: 2.625rem
}.nps-survey-root .w-4 {width: 1rem
}.nps-survey-root .w-5 {width: 1.25rem
}.nps-survey-root .w-\[calc\(100\%-8px\)\] {width: calc(100% - 8px)
}.nps-survey-root .w-full {width: 100%
}.nps-survey-root .max-w-\[30rem\] {max-width: 30rem
}.nps-survey-root .flex-1 {flex: 1 1 0%
}@keyframes spin {to {transform: rotate(-360deg)
    }
}.nps-survey-root .animate-spin {animation: spin 1s linear infinite
}.nps-survey-root .cursor-not-allowed {cursor: not-allowed
}.nps-survey-root .cursor-pointer {cursor: pointer
}.nps-survey-root .cursor-progress {cursor: progress
}.nps-survey-root .resize {resize: both
}.nps-survey-root .items-center {align-items: center
}.nps-survey-root .justify-start {justify-content: flex-start
}.nps-survey-root .justify-center {justify-content: center
}.nps-survey-root .justify-between {justify-content: space-between
}.nps-survey-root .gap-2 {gap: 0.5rem
}.nps-survey-root .rounded {border-radius: 0.25rem
}.nps-survey-root .rounded-lg {border-radius: 0.5rem
}.nps-survey-root .rounded-md {border-radius: 0.375rem
}.nps-survey-root .border {border-width: 1px
}.nps-survey-root .border-0 {border-width: 0px
}.nps-survey-root .border-solid {border-style: solid
}.nps-survey-root .border-none {border-style: none
}.nps-survey-root .border-border-tertiary {--tw-border-opacity: 1;border-color: rgb(216 223 233 / var(--tw-border-opacity))
}.nps-survey-root .border-button-disabled {--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity))
}.nps-survey-root .border-nps-button-background {--tw-border-opacity: 1;border-color: rgb(34 113 177 / var(--tw-border-opacity))
}.nps-survey-root .border-transparent {border-color: transparent
}.nps-survey-root .border-white {--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity))
}.nps-survey-root .border-zip-body-text {--tw-border-opacity: 1;border-color: rgb(var(--zip-body-text) / var(--tw-border-opacity))
}.nps-survey-root .bg-nps-button-background {--tw-bg-opacity: 1;background-color: rgb(34 113 177 / var(--tw-bg-opacity))
}.nps-survey-root .bg-transparent {background-color: transparent
}.nps-survey-root .bg-white {--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}.nps-survey-root .p-4 {padding: 1rem
}.nps-survey-root .px-4 {padding-right: 1rem;padding-left: 1rem
}.nps-survey-root .px-5 {padding-right: 1.25rem;padding-left: 1.25rem
}.nps-survey-root .px-6 {padding-right: 1.5rem;padding-left: 1.5rem
}.nps-survey-root .py-1\.5 {padding-top: 0.375rem;padding-bottom: 0.375rem
}.nps-survey-root .py-2 {padding-top: 0.5rem;padding-bottom: 0.5rem
}.nps-survey-root .py-3 {padding-top: 0.75rem;padding-bottom: 0.75rem
}.nps-survey-root .pl-0 {padding-right: 0px
}.nps-survey-root .pl-3 {padding-right: 0.75rem
}.nps-survey-root .pl-4 {padding-right: 1rem
}.nps-survey-root .pl-5 {padding-right: 1.25rem
}.nps-survey-root .pl-6 {padding-right: 1.5rem
}.nps-survey-root .pr-3 {padding-left: 0.75rem
}.nps-survey-root .pr-4 {padding-left: 1rem
}.nps-survey-root .pr-5 {padding-left: 1.25rem
}.nps-survey-root .pr-6 {padding-left: 1.5rem
}.nps-survey-root .text-base {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root .text-lg {font-size: 1.125rem;line-height: 1.75rem
}.nps-survey-root .text-sm {font-size: 0.875rem;line-height: 1.25rem
}.nps-survey-root .text-xs {font-size: 0.75rem;line-height: 1rem
}.nps-survey-root .font-bold {font-weight: 700
}.nps-survey-root .font-medium {font-weight: 500
}.nps-survey-root .font-normal {font-weight: 400
}.nps-survey-root .font-semibold {font-weight: 600
}.nps-survey-root .leading-5 {line-height: 1.25rem
}.nps-survey-root .leading-6 {line-height: 1.5rem
}.nps-survey-root .leading-7 {line-height: 1.75rem
}.nps-survey-root .text-border-secondary {--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity))
}.nps-survey-root .text-nps-button-background {--tw-text-opacity: 1;color: rgb(34 113 177 / var(--tw-text-opacity))
}.nps-survey-root .text-secondary-text {--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity))
}.nps-survey-root .text-white {--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-heading {--tw-text-opacity: 1;color: rgb(var(--zip-app-heading) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-app-inactive-icon {--tw-text-opacity: 1;color: rgb(var(--zip-app-inactive-icon) / var(--tw-text-opacity))
}.nps-survey-root .text-zip-body-text {--tw-text-opacity: 1;color: rgb(var(--zip-body-text) / var(--tw-text-opacity))
}.nps-survey-root .underline {text-decoration-line: underline
}.nps-survey-root .no-underline {text-decoration-line: none
}.nps-survey-root .opacity-25 {opacity: 0.25
}.nps-survey-root .opacity-50 {opacity: 0.5
}.nps-survey-root .opacity-70 {opacity: 0.7
}.nps-survey-root .opacity-75 {opacity: 0.75
}.nps-survey-root .shadow-lg {--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .shadow-sm {--tw-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);--tw-shadow-colored: 0px 1px 2px 0px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}.nps-survey-root .transition {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .transition-colors {transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms
}.nps-survey-root .duration-150 {transition-duration: 150ms
}.nps-survey-root .ease-in-out {transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}.nps-survey-root {font-size: 1rem;line-height: 1.5rem
}.nps-survey-root * {box-sizing: border-box;font-family: Figtree, sans-serif
}.nps-survey-root .hover\:cursor-pointer:hover {cursor: pointer
}.nps-survey-root .hover\:bg-gray-50:hover {--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity))
}.nps-survey-root .focus\:z-10:focus {z-index: 10
}.nps-survey-root .focus\:ring-1:focus {--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}.nps-survey-root .focus\:ring-nps-button-background:focus {--tw-ring-opacity: 1;--tw-ring-color: rgb(34 113 177 / var(--tw-ring-opacity))
}.nps-survey-root .focus-visible\:outline:focus-visible {outline-style: solid
}.nps-survey-root .focus-visible\:outline-2:focus-visible {outline-width: 2px
}.nps-survey-root .focus-visible\:outline-offset-2:focus-visible {outline-offset: 2px
}@media (min-width: 512px) {.nps-survey-root .xs\:w-full {width: 100%
    }
}@media (min-width: 640px) {.nps-survey-root .sm\:p-5 {padding: 1.25rem
    }.nps-survey-root .sm\:text-sm {font-size: 0.875rem;line-height: 1.25rem
    }.nps-survey-root .sm\:leading-6 {line-height: 1.5rem
    }
}
PK�][��7{)�)�9ultimate-addons-for-gutenberg/lib/nps-survey/dist/main.jsnu�[���(()=>{"use strict";var e,t={45:(e,t,r)=>{var o=r(609);const n=window.wp.element,s=e=>{let t;const r=new Set,o=(e,o)=>{const n="function"==typeof e?e(t):e;if(!Object.is(n,t)){const e=t;t=(null!=o?o:"object"!=typeof n||null===n)?n:Object.assign({},t,n),r.forEach((r=>r(t,e)))}},n=()=>t,s={setState:o,getState:n,getInitialState:()=>a,subscribe:e=>(r.add(e),()=>r.delete(e)),destroy:()=>{console.warn("[DEPRECATED] The `destroy` method will be unsupported in a future version. Instead use unsubscribe function returned by subscribe. Everything will be garbage-collected if store is garbage-collected."),r.clear()}},a=t=e(o,n,s);return s};var a=r(79);const{useDebugValue:l}=o,{useSyncExternalStoreWithSelector:i}=a;let c=!1;const d=e=>e,u=e=>{"function"!=typeof e&&console.warn("[DEPRECATED] Passing a vanilla store will be unsupported in a future version. Instead use `import { useStore } from 'zustand'`.");const t="function"==typeof e?(e=>e?s(e):s)(e):e,r=(e,r)=>function(e,t=d,r){r&&!c&&(console.warn("[DEPRECATED] Use `createWithEqualityFn` instead of `create` or use `useStoreWithEqualityFn` instead of `useStore`. They can be imported from 'zustand/traditional'. https://github.com/pmndrs/zustand/discussions/1937"),c=!0);const o=i(e.subscribe,e.getState,e.getServerState||e.getInitialState,t,r);return l(o),o}(t,e,r);return Object.assign(r,t),r},p="SET_CURRENT_STEP",m="SET_NPS_RATING",b="SET_SHOW_NPS",f=document.querySelectorAll('[data-id^="nps-survey-"]'),g={};Array.from(f).forEach((e=>{const t=JSON.parse(e.getAttribute("data-vars"));t.npsId=e.dataset.id,g[t.npsId]={showNps:t?.show_if,currentStep:"plugin-rating"===t?.nps_status?.dismiss_step?"plugin-rating":"nps-rating",npsRating:null,npsId:t.npsId}}));const h=(G=(e,{type:t,payload:r,npsId:o})=>{switch(t){case b:return{...e,[o]:{...e[o],showNps:r}};case p:return{...e,[o]:{...e[o],currentStep:r}};case m:return{...e,[o]:{...e[o],npsRating:r}};default:return e}},A=g,(T=(e,t,r)=>(r.dispatch=t=>(e((e=>G(e,t)),!1,t),t),r.dispatchFromDevtools=!0,{dispatch:(...e)=>r.dispatch(...e),...A}))?u(T):u),y=({children:e})=>(0,o.createElement)("p",{className:"mt-1 mx-0 mb-0 text-base leading-6 font-normal text-zip-body-text"},e),v=({children:e})=>(0,o.createElement)("h3",{className:"my-0 text-lg font-bold leading-7 text-zip-app-heading"},e),x=window.wp.i18n,w=function(e){const{message:{logo:t,plugin_name:r,nps_rating_message:s},npsId:a}=e,{dispatch:l}=h(),i=Array.from({length:10},((e,t)=>t+1)),[c,d]=(0,n.useState)(null);return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"flex items-center justify-start gap-2"},(0,o.createElement)("img",{className:"size-6",src:t,alt:"Brand Logo"}),(0,o.createElement)(v,null,r)),(0,o.createElement)(y,null,s.replaceAll("#pluginname",r)),(0,o.createElement)("div",{className:"mt-5"},(0,o.createElement)("span",{className:"isolate inline-flex gap-2 w-full"},i.map((e=>(0,o.createElement)("button",{type:"button",key:e,onClick:()=>async function(e){null===c&&(d(e),l({npsId:a,type:"SET_NPS_RATING",payload:e}),l(e>=8?{npsId:a,type:"SET_CURRENT_STEP",payload:"plugin-rating"}:{npsId:a,type:"SET_CURRENT_STEP",payload:"comment"}))}(e),className:"relative flex-1 inline-flex items-center justify-center bg-white py-1.5 text-sm font-medium text-nps-button-text hover:bg-gray-50 focus:z-10 border border-solid border-button-disabled rounded-md transition-colors ease-in-out duration-150 hover:cursor-pointer"},e))))),(0,o.createElement)("div",{className:"mt-3 flex items-center justify-between"},(0,o.createElement)("span",{className:"text-secondary-text text-xs font-medium leading-5"},(0,x.__)("Very unlikely","nps-survey")),(0,o.createElement)("span",{className:"text-secondary-text text-xs font-medium leading-5"},(0,x.__)("Very likely","nps-survey"))))},E=e=>{const t=_(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:o}=e;return{getClassGroupId:e=>{const r=e.split("-");return""===r[0]&&1!==r.length&&r.shift(),S(r,t)||N(e)},getConflictingClassGroupIds:(e,t)=>{const n=r[e]||[];return t&&o[e]?[...n,...o[e]]:n}}},S=(e,t)=>{if(0===e.length)return t.classGroupId;const r=e[0],o=t.nextPart.get(r),n=o?S(e.slice(1),o):void 0;if(n)return n;if(0===t.validators.length)return;const s=e.join("-");return t.validators.find((({validator:e})=>e(s)))?.classGroupId},k=/^\[(.+)\]$/,N=e=>{if(k.test(e)){const t=k.exec(e)[1],r=t?.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}},_=e=>{const{theme:t,prefix:r}=e,o={nextPart:new Map,validators:[]};return C(Object.entries(e.classGroups),r).forEach((([e,r])=>{z(r,o,e,t)})),o},z=(e,t,r,o)=>{e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return j(e)?void z(e(o),t,r,o):void t.validators.push({validator:e,classGroupId:r});Object.entries(e).forEach((([e,n])=>{z(n,I(t,e),r,o)}))}else(""===e?t:I(t,e)).classGroupId=r}))},I=(e,t)=>{let r=e;return t.split("-").forEach((e=>{r.nextPart.has(e)||r.nextPart.set(e,{nextPart:new Map,validators:[]}),r=r.nextPart.get(e)})),r},j=e=>e.isThemeGetter,C=(e,t)=>t?e.map((([e,r])=>[e,r.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,r])=>[t+e,r]))):e))])):e,P=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=new Map,o=new Map;const n=(n,s)=>{r.set(n,s),t++,t>e&&(t=0,o=r,r=new Map)};return{get(e){let t=r.get(e);return void 0!==t?t:void 0!==(t=o.get(e))?(n(e,t),t):void 0},set(e,t){r.has(e)?r.set(e,t):n(e,t)}}},O=e=>{const{separator:t,experimentalParseClassName:r}=e,o=1===t.length,n=t[0],s=t.length,a=e=>{const r=[];let a,l=0,i=0;for(let c=0;c<e.length;c++){let d=e[c];if(0===l){if(d===n&&(o||e.slice(c,c+s)===t)){r.push(e.slice(i,c)),i=c+s;continue}if("/"===d){a=c;continue}}"["===d?l++:"]"===d&&l--}const c=0===r.length?e:e.substring(i),d=c.startsWith("!");return{modifiers:r,hasImportantModifier:d,baseClassName:d?c.substring(1):c,maybePostfixModifierPosition:a&&a>i?a-i:void 0}};return r?e=>r({className:e,parseClassName:a}):a},R=e=>{if(e.length<=1)return e;const t=[];let r=[];return e.forEach((e=>{"["===e[0]?(t.push(...r.sort(),e),r=[]):r.push(e)})),t.push(...r.sort()),t};var T,G,A;function M(){let e,t,r=0,o="";for(;r<arguments.length;)(e=arguments[r++])&&(t=W(e))&&(o&&(o+=" "),o+=t);return o}const W=e=>{if("string"==typeof e)return e;let t,r="";for(let o=0;o<e.length;o++)e[o]&&(t=W(e[o]))&&(r&&(r+=" "),r+=t);return r};function D(e,...t){let r,o,n,s=function(l){const i=t.reduce(((e,t)=>t(e)),e());return r=(e=>({cache:P(e.cacheSize),parseClassName:O(e),...E(e)}))(i),o=r.cache.get,n=r.cache.set,s=a,a(l)};function a(e){const t=o(e);if(t)return t;const s=((e,t)=>{const{parseClassName:r,getClassGroupId:o,getConflictingClassGroupIds:n}=t,s=[];let a="";for(let t=e.length-1;t>=0;){for(;" "===e[t];)--t;const l=e.lastIndexOf(" ",t),i=e.slice(-1===l?0:l+1,t+1);t=l;const{modifiers:c,hasImportantModifier:d,baseClassName:u,maybePostfixModifierPosition:p}=r(i);let m=Boolean(p),b=o(m?u.substring(0,p):u);if(!b){if(!m){a=i+(a.length>0?" "+a:a);continue}if(b=o(u),!b){a=i+(a.length>0?" "+a:a);continue}m=!1}const f=R(c).join(":"),g=d?f+"!":f,h=g+b;if(s.includes(h))continue;s.push(h);const y=n(b,m);for(let e=0;e<y.length;++e){const t=y[e];s.push(g+t)}a=i+(a.length>0?" "+a:a)}return a})(e,r);return n(e,s),s}return function(){return s(M.apply(null,arguments))}}const V=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},B=/^\[(?:([a-z-]+):)?(.+)\]$/i,L=/^\d+\/\d+$/,$=new Set(["px","full","screen"]),q=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,H=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,U=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,F=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,J=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,X=e=>K(e)||$.has(e)||L.test(e),Z=e=>de(e,"length",ue),K=e=>Boolean(e)&&!Number.isNaN(Number(e)),Q=e=>de(e,"number",K),Y=e=>Boolean(e)&&Number.isInteger(Number(e)),ee=e=>e.endsWith("%")&&K(e.slice(0,-1)),te=e=>B.test(e),re=e=>q.test(e),oe=new Set(["length","size","percentage"]),ne=e=>de(e,oe,pe),se=e=>de(e,"position",pe),ae=new Set(["image","url"]),le=e=>de(e,ae,be),ie=e=>de(e,"",me),ce=()=>!0,de=(e,t,r)=>{const o=B.exec(e);return!!o&&(o[1]?"string"==typeof t?o[1]===t:t.has(o[1]):r(o[2]))},ue=e=>H.test(e)&&!U.test(e),pe=()=>!1,me=e=>F.test(e),be=e=>J.test(e),fe=D((Symbol.toStringTag,()=>{const e=V("colors"),t=V("spacing"),r=V("blur"),o=V("brightness"),n=V("borderColor"),s=V("borderRadius"),a=V("borderSpacing"),l=V("borderWidth"),i=V("contrast"),c=V("grayscale"),d=V("hueRotate"),u=V("invert"),p=V("gap"),m=V("gradientColorStops"),b=V("gradientColorStopPositions"),f=V("inset"),g=V("margin"),h=V("opacity"),y=V("padding"),v=V("saturate"),x=V("scale"),w=V("sepia"),E=V("skew"),S=V("space"),k=V("translate"),N=()=>["auto",te,t],_=()=>[te,t],z=()=>["",X,Z],I=()=>["auto",K,te],j=()=>["","0",te],C=()=>[K,te];return{cacheSize:500,separator:":",theme:{colors:[ce],spacing:[X,Z],blur:["none","",re,te],brightness:C(),borderColor:[e],borderRadius:["none","","full",re,te],borderSpacing:_(),borderWidth:z(),contrast:C(),grayscale:j(),hueRotate:C(),invert:j(),gap:_(),gradientColorStops:[e],gradientColorStopPositions:[ee,Z],inset:N(),margin:N(),opacity:C(),padding:_(),saturate:C(),scale:C(),sepia:j(),skew:C(),space:_(),translate:_()},classGroups:{aspect:[{aspect:["auto","square","video",te]}],container:["container"],columns:[{columns:[re]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",te]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[f]}],"inset-x":[{"inset-x":[f]}],"inset-y":[{"inset-y":[f]}],start:[{start:[f]}],end:[{end:[f]}],top:[{top:[f]}],right:[{right:[f]}],bottom:[{bottom:[f]}],left:[{left:[f]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",Y,te]}],basis:[{basis:N()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",te]}],grow:[{grow:j()}],shrink:[{shrink:j()}],order:[{order:["first","last","none",Y,te]}],"grid-cols":[{"grid-cols":[ce]}],"col-start-end":[{col:["auto",{span:["full",Y,te]},te]}],"col-start":[{"col-start":I()}],"col-end":[{"col-end":I()}],"grid-rows":[{"grid-rows":[ce]}],"row-start-end":[{row:["auto",{span:[Y,te]},te]}],"row-start":[{"row-start":I()}],"row-end":[{"row-end":I()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",te]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",te]}],gap:[{gap:[p]}],"gap-x":[{"gap-x":[p]}],"gap-y":[{"gap-y":[p]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[y]}],px:[{px:[y]}],py:[{py:[y]}],ps:[{ps:[y]}],pe:[{pe:[y]}],pt:[{pt:[y]}],pr:[{pr:[y]}],pb:[{pb:[y]}],pl:[{pl:[y]}],m:[{m:[g]}],mx:[{mx:[g]}],my:[{my:[g]}],ms:[{ms:[g]}],me:[{me:[g]}],mt:[{mt:[g]}],mr:[{mr:[g]}],mb:[{mb:[g]}],ml:[{ml:[g]}],"space-x":[{"space-x":[S]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[S]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",te,t]}],"min-w":[{"min-w":[te,t,"min","max","fit"]}],"max-w":[{"max-w":[te,t,"none","full","min","max","fit","prose",{screen:[re]},re]}],h:[{h:[te,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[te,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[te,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[te,t,"auto","min","max","fit"]}],"font-size":[{text:["base",re,Z]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",Q]}],"font-family":[{font:[ce]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractons"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",te]}],"line-clamp":[{"line-clamp":["none",K,Q]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",X,te]}],"list-image":[{"list-image":["none",te]}],"list-style-type":[{list:["none","disc","decimal",te]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[h]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[h]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",X,Z]}],"underline-offset":[{"underline-offset":["auto",X,te]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:_()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",te]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",te]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[h]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",se]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",ne]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},le]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[b]}],"gradient-via-pos":[{via:[b]}],"gradient-to-pos":[{to:[b]}],"gradient-from":[{from:[m]}],"gradient-via":[{via:[m]}],"gradient-to":[{to:[m]}],rounded:[{rounded:[s]}],"rounded-s":[{"rounded-s":[s]}],"rounded-e":[{"rounded-e":[s]}],"rounded-t":[{"rounded-t":[s]}],"rounded-r":[{"rounded-r":[s]}],"rounded-b":[{"rounded-b":[s]}],"rounded-l":[{"rounded-l":[s]}],"rounded-ss":[{"rounded-ss":[s]}],"rounded-se":[{"rounded-se":[s]}],"rounded-ee":[{"rounded-ee":[s]}],"rounded-es":[{"rounded-es":[s]}],"rounded-tl":[{"rounded-tl":[s]}],"rounded-tr":[{"rounded-tr":[s]}],"rounded-br":[{"rounded-br":[s]}],"rounded-bl":[{"rounded-bl":[s]}],"border-w":[{border:[l]}],"border-w-x":[{"border-x":[l]}],"border-w-y":[{"border-y":[l]}],"border-w-s":[{"border-s":[l]}],"border-w-e":[{"border-e":[l]}],"border-w-t":[{"border-t":[l]}],"border-w-r":[{"border-r":[l]}],"border-w-b":[{"border-b":[l]}],"border-w-l":[{"border-l":[l]}],"border-opacity":[{"border-opacity":[h]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[l]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[l]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[h]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[n]}],"border-color-x":[{"border-x":[n]}],"border-color-y":[{"border-y":[n]}],"border-color-t":[{"border-t":[n]}],"border-color-r":[{"border-r":[n]}],"border-color-b":[{"border-b":[n]}],"border-color-l":[{"border-l":[n]}],"divide-color":[{divide:[n]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[X,te]}],"outline-w":[{outline:[X,Z]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:z()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[h]}],"ring-offset-w":[{"ring-offset":[X,Z]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",re,ie]}],"shadow-color":[{shadow:[ce]}],opacity:[{opacity:[h]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[r]}],brightness:[{brightness:[o]}],contrast:[{contrast:[i]}],"drop-shadow":[{"drop-shadow":["","none",re,te]}],grayscale:[{grayscale:[c]}],"hue-rotate":[{"hue-rotate":[d]}],invert:[{invert:[u]}],saturate:[{saturate:[v]}],sepia:[{sepia:[w]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[r]}],"backdrop-brightness":[{"backdrop-brightness":[o]}],"backdrop-contrast":[{"backdrop-contrast":[i]}],"backdrop-grayscale":[{"backdrop-grayscale":[c]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[d]}],"backdrop-invert":[{"backdrop-invert":[u]}],"backdrop-opacity":[{"backdrop-opacity":[h]}],"backdrop-saturate":[{"backdrop-saturate":[v]}],"backdrop-sepia":[{"backdrop-sepia":[w]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[a]}],"border-spacing-x":[{"border-spacing-x":[a]}],"border-spacing-y":[{"border-spacing-y":[a]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",te]}],duration:[{duration:C()}],ease:[{ease:["linear","in","out","in-out",te]}],delay:[{delay:C()}],animate:[{animate:["none","spin","ping","pulse","bounce",te]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[x]}],"scale-x":[{"scale-x":[x]}],"scale-y":[{"scale-y":[x]}],rotate:[{rotate:[Y,te]}],"translate-x":[{"translate-x":[k]}],"translate-y":[{"translate-y":[k]}],"skew-x":[{"skew-x":[E]}],"skew-y":[{"skew-y":[E]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",te]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",te]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":_()}],"scroll-mx":[{"scroll-mx":_()}],"scroll-my":[{"scroll-my":_()}],"scroll-ms":[{"scroll-ms":_()}],"scroll-me":[{"scroll-me":_()}],"scroll-mt":[{"scroll-mt":_()}],"scroll-mr":[{"scroll-mr":_()}],"scroll-mb":[{"scroll-mb":_()}],"scroll-ml":[{"scroll-ml":_()}],"scroll-p":[{"scroll-p":_()}],"scroll-px":[{"scroll-px":_()}],"scroll-py":[{"scroll-py":_()}],"scroll-ps":[{"scroll-ps":_()}],"scroll-pe":[{"scroll-pe":_()}],"scroll-pt":[{"scroll-pt":_()}],"scroll-pr":[{"scroll-pr":_()}],"scroll-pb":[{"scroll-pb":_()}],"scroll-pl":[{"scroll-pl":_()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",te]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[X,Z,Q]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}));function ge(e){var t,r,o="";if("string"==typeof e||"number"==typeof e)o+=e;else if("object"==typeof e)if(Array.isArray(e)){var n=e.length;for(t=0;t<n;t++)e[t]&&(r=ge(e[t]))&&(o&&(o+=" "),o+=r)}else for(r in e)e[r]&&(o&&(o+=" "),o+=r);return o}const he=window.wp.apiFetch;var ye=r.n(he);const ve=(...e)=>fe(function(){for(var e,t,r=0,o="",n=arguments.length;r<n;r++)(e=arguments[r])&&(t=ge(e))&&(o&&(o+=" "),o+=t);return o}(e)),xe=async function(e,t,r,o,n){try{(await ye()({path:"/nps-survey/v1/dismiss-nps-survey",method:"POST",headers:{"X-WP-Nonce":npsSurvey.rest_api_nonce,"content-type":"application/json"},data:{plugin_slug:n,current_step:r,dismiss_timespan:o}})).success&&(console.info("NPS Survey dismissed!"),t({npsId:e,type:"SET_SHOW_NPS",payload:!1}))}catch(e){console.error(e)}},we=async function(e,t,r,o,n,s,a){try{s(!0),(await ye()({path:"nps-survey/v1/rating",method:"POST",headers:{"X-WP-Nonce":npsSurvey.rest_api_nonce,"content-type":"application/json"},data:{nps_id:e,plugin_slug:a,rating:t,comment:r}})).success&&(""===o&&n({npsId:e,type:"SET_SHOW_NPS",payload:!1}),n({npsId:e,type:"SET_CURRENT_STEP",payload:o})),s(!1)}catch(e){console.error(e)}},Ee=(e,t,r,o)=>{t.preventDefault(),o||r({npsId:e,type:"SET_CURRENT_STEP",payload:"nps-rating"})},Se=(0,n.forwardRef)((({variant:e="primary",hasSuffixIcon:t=!1,hasPrefixIcon:r=!1,type:n="button",className:s,onClick:a,children:l,disabled:i=!1,id:c="",size:d="medium",...u},p)=>{const m={base:{default:"px-6 py-3",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},medium:{default:"px-4 py-3 h-11",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-6 pr-4 py-3"},small:{default:"px-5 py-2 h-[2.625rem]",hasPrefixIcon:"pl-3 pr-5 py-2 h-[2.625rem]",hasSuffixIcon:"pl-5 pr-3 py-2 h-[2.625rem]"}};return(0,o.createElement)("button",{type:n,className:ve("group flex items-center justify-center gap-2 rounded-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 transition duration-150 ease-in-out cursor-pointer border-0",{primary:"text-white bg-nps-button-background border border-solid border-nps-button-background",secondary:"text-zip-body-text bg-white border border-solid border-zip-body-text",dark:"text-white border border-white bg-transparent border-solid",link:"text-border-secondary underline border-0 bg-transparent",blank:"bg-transparent border-transparent"}[e],!r&&!t&&m[d].default,r&&m[d].hasPrefixIcon,t&&m[d].hasSuffixIcon,{base:"text-base font-medium",medium:"text-base font-medium",small:"text-sm font-medium"}[d],{base:"rounded-md",medium:"rounded-md",small:"rounded"}[d],i&&"cursor-not-allowed opacity-70",s),onClick:e=>{a&&"function"==typeof a&&a(e)},ref:p,disabled:i,...c&&{id:c},...u},l)})),ke=({className:e=""})=>(0,o.createElement)("svg",{className:ve("animate-spin size-5 text-white",e),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},(0,o.createElement)("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),(0,o.createElement)("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"}));function Ne({title:e,titleId:t,...r},n){return o.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?o.createElement("title",{id:t},e):null,o.createElement("path",{fillRule:"evenodd",d:"M17 10a.75.75 0 0 1-.75.75H5.612l4.158 3.96a.75.75 0 1 1-1.04 1.08l-5.5-5.25a.75.75 0 0 1 0-1.08l5.5-5.25a.75.75 0 1 1 1.04 1.08L5.612 9.25H16.25A.75.75 0 0 1 17 10Z",clipRule:"evenodd"}))}const _e=o.forwardRef(Ne),ze=function(e){const{message:{plugin_rating_title:t,plugin_rating_content:r},plugin_slug:s,npsId:a}=e,[l,i]=(0,n.useState)(""),c=h((e=>e)),{npsRating:d}=c[a],[u,p]=(0,n.useState)(!1),{dispatch:m}=h();return(0,o.createElement)("div",null,(0,o.createElement)("div",{className:"flex justify-between"},(0,o.createElement)(v,null,t)),(0,o.createElement)(y,null,r),(0,o.createElement)("div",{className:"mt-5"},(0,o.createElement)("form",{onSubmit:async function(e){e.preventDefault(),u||we(a,d,l,"",m,p,s)}},(0,o.createElement)("div",{className:"mt-2"},(0,o.createElement)("textarea",{rows:4,cols:65,name:"comment",id:"comment",className:"block w-full rounded-md py-1.5 text-zip-body-text shadow-sm border border-border-nps-primary border-solid placeholder:text-nps-placeholder-text focus:ring-1 focus:ring-nps-button-background sm:text-sm sm:leading-6",defaultValue:"",value:l,onChange:e=>{i(e.target.value)}})),(0,o.createElement)("div",{className:"mt-3 flex justify-between"},(0,o.createElement)(Se,{className:"relative border-none py-2 px-4 pl-0 font-semibold bg-transparent text-nps-button-background",variant:"primary",onClick:e=>Ee(a,e,m,u),size:"small"},(0,o.createElement)(_e,{className:"w-4"}),(0,x.__)("Back","nps-survey")),(0,o.createElement)(Se,{className:"relative py-2 px-4 font-semibold",variant:"primary",type:"submit",size:"small"},u&&(0,o.createElement)("span",{className:"absolute inset-0 inline-flex items-center justify-center"},(0,o.createElement)(ke,null)),(0,o.createElement)("span",{className:ve(u&&"invisible")},(0,x.__)("Submit","nps-survey")))))))},Ie=function(e){const{message:{feedback_title:t,feedback_content:r,plugin_rating_link:n,plugin_rating_button_string:s},dismiss_timespan:a,plugin_slug:l,npsId:i}=e,c=h((e=>e)),{currentStep:d,npsRating:u}=c[i],[p,m]=(0,o.useState)(!1),{dispatch:b}=h(),f=async function(e=!0){we(i,u,"","plugin-rating",b,m,l),xe(i,b,d,a,l),e&&window.open(n,"_blank")};return(0,o.createElement)("div",{className:p&&"opacity-50 cursor-progress"},(0,o.createElement)("div",{className:"flex justify-between"},(0,o.createElement)(v,null,t)),(0,o.createElement)(y,null,r),(0,o.createElement)("div",{className:"flex justify-between mt-5"},(0,o.createElement)(Se,{className:"relative border-none py-2 px-4 pl-0 font-semibold bg-transparent text-nps-button-background",variant:"primary",onClick:e=>Ee(i,e,b),size:"small"},(0,o.createElement)(_e,{className:"w-4"}),(0,x.__)("Back","nps-survey")),(0,o.createElement)("div",{className:"flex justify-start"},(0,o.createElement)(Se,{variant:"link",className:"py-2 px-4 no-underline font-normal",type:"button",onClick:()=>f(!1),size:"small"},(0,x.__)("I already did!","nps-survey")),(0,o.createElement)(Se,{variant:"primary",className:"py-2 px-4 font-semibold",type:"button",onClick:f,size:"small"},s||(0,x.__)("Rate the Plugin","nps-survey")))))};function je({title:e,titleId:t,...r},n){return o.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?o.createElement("title",{id:t},e):null,o.createElement("path",{d:"M6.28 5.22a.75.75 0 0 0-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 1 0 1.06 1.06L10 11.06l3.72 3.72a.75.75 0 1 0 1.06-1.06L11.06 10l3.72-3.72a.75.75 0 0 0-1.06-1.06L10 8.94 6.28 5.22Z"}))}const Ce=o.forwardRef(je),Pe=()=>{const e=window.innerWidth,t={xs:512,sm:640,md:768,lg:1024,xl:1280,"2xl":1536};for(const r in t)if(e<=t[r])return r},Oe=e=>{const{plugin_slug:t,dismiss_timespan:r,npsId:n,npsIndex:s}=e,a=h((e=>e)),{dispatch:l}=h(),{showNps:i,currentStep:c,npsRating:d}=a[n],[u,p]=(0,o.useState)(!1),[m,b]=(0,o.useState)(Pe());if((0,o.useEffect)((()=>{const e=()=>{b(Pe())};return window.addEventListener("resize",e),()=>{window.removeEventListener("resize",e)}}),[]),i)return(0,o.createElement)("div",{className:"max-w-[30rem] xs:w-full w-[calc(100%-8px)] flex bg-white rounded-lg fixed bottom-2 z-[9999999999] right-2 p-4 sm:p-5 border border-solid border-border-tertiary shadow-lg",style:(()=>{const e=12*s;let t=e+8+"px";"xs"===m&&(t=0);const r={bottom:e+8+"px"};return"rtl"===document.documentElement.getAttribute("dir")?r.left=t:r.right=t,r})()},(0,o.createElement)("div",{className:u&&"opacity-50 cursor-progress"},"nps-rating"===c?(0,o.createElement)(w,{...e}):"comment"===c?(0,o.createElement)(ze,{...e}):"plugin-rating"===c?(0,o.createElement)(Ie,{...e}):void 0),(0,o.createElement)("span",{className:"absolute top-3 right-3 cursor-pointer",onClick:function(){u||(d&&"plugin-rating"===c&&we(n,d,"","plugin-rating",l,p,t),xe(n,l,c,r,t))}},(0,o.createElement)(Ce,{className:"h-5 w-5 text-zip-app-inactive-icon","aria-hidden":"true"})))},Re=e=>(0,o.createElement)("div",{id:"nps-survey-wrapper",className:"nps-survey-wrapper"},e&&(0,o.createElement)(Oe,{...e}));document.querySelectorAll('[data-id^="nps-survey-"]').forEach(((e,t)=>{const r=(0,n.createRoot)(e),s=JSON.parse(e.getAttribute("data-vars"));s.npsId=e.dataset.id,s.npsIndex=t,r.render((0,o.createElement)(Re,{...s,key:s.npsId}))}))},656:(e,t,r)=>{var o=r(609),n="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},s=o.useState,a=o.useEffect,l=o.useLayoutEffect,i=o.useDebugValue;function c(e){var t=e.getSnapshot;e=e.value;try{var r=t();return!n(e,r)}catch(e){return!0}}var d="undefined"==typeof window||void 0===window.document||void 0===window.document.createElement?function(e,t){return t()}:function(e,t){var r=t(),o=s({inst:{value:r,getSnapshot:t}}),n=o[0].inst,d=o[1];return l((function(){n.value=r,n.getSnapshot=t,c(n)&&d({inst:n})}),[e,r,t]),a((function(){return c(n)&&d({inst:n}),e((function(){c(n)&&d({inst:n})}))}),[e]),i(r),r};t.useSyncExternalStore=void 0!==o.useSyncExternalStore?o.useSyncExternalStore:d},763:(e,t,r)=>{var o=r(609),n=r(257),s="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},a=n.useSyncExternalStore,l=o.useRef,i=o.useEffect,c=o.useMemo,d=o.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,r,o,n){var u=l(null);if(null===u.current){var p={hasValue:!1,value:null};u.current=p}else p=u.current;u=c((function(){function e(e){if(!i){if(i=!0,a=e,e=o(e),void 0!==n&&p.hasValue){var t=p.value;if(n(t,e))return l=t}return l=e}if(t=l,s(a,e))return t;var r=o(e);return void 0!==n&&n(t,r)?t:(a=e,l=r)}var a,l,i=!1,c=void 0===r?null:r;return[function(){return e(t())},null===c?void 0:function(){return e(c())}]}),[t,r,o,n]);var m=a(e,u[0],u[1]);return i((function(){p.hasValue=!0,p.value=m}),[m]),d(m),m}},257:(e,t,r)=>{e.exports=r(656)},79:(e,t,r)=>{e.exports=r(763)},609:e=>{e.exports=window.React}},r={};function o(e){var n=r[e];if(void 0!==n)return n.exports;var s=r[e]={exports:{}};return t[e](s,s.exports,o),s.exports}o.m=t,e=[],o.O=(t,r,n,s)=>{if(!r){var a=1/0;for(d=0;d<e.length;d++){r=e[d][0],n=e[d][1],s=e[d][2];for(var l=!0,i=0;i<r.length;i++)(!1&s||a>=s)&&Object.keys(o.O).every((e=>o.O[e](r[i])))?r.splice(i--,1):(l=!1,s<a&&(a=s));if(l){e.splice(d--,1);var c=n();void 0!==c&&(t=c)}}return t}s=s||0;for(var d=e.length;d>0&&e[d-1][2]>s;d--)e[d]=e[d-1];e[d]=[r,n,s]},o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},o.d=(e,t)=>{for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),(()=>{var e={792:0,85:0};o.O.j=t=>0===e[t];var t=(t,r)=>{var n,s,a=r[0],l=r[1],i=r[2],c=0;if(a.some((t=>0!==e[t]))){for(n in l)o.o(l,n)&&(o.m[n]=l[n]);if(i)var d=i(o)}for(t&&t(r);c<a.length;c++)s=a[c],o.o(e,s)&&e[s]&&e[s][0](),e[s]=0;return o.O(d)},r=self.webpackChunknps_survey=self.webpackChunknps_survey||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})();var n=o.O(void 0,[85],(()=>o(45)));n=o.O(n)})();PK�][ܝ]%��@ultimate-addons-for-gutenberg/lib/nps-survey/dist/main.asset.phpnu�[���<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-element', 'wp-i18n'), 'version' => '098e9bb53b4690172575');
PK�][�<sP@@Iultimate-addons-for-gutenberg/lib/nps-survey/nps-survey-plugin-loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace NPS_Survey;

if ( ! class_exists( 'NPS_Survey_Plugin_Loader' ) ) {

	/**
	 * Plugin_Loader
	 *
	 * @since 1.0.0
	 */
	class NPS_Survey_Plugin_Loader {
		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class Instance.
		 * @since 1.0.0
		 */
		private static $instance;

		/**
		 * Constructor
		 *
		 * @since 1.0.0
		 */
		public function __construct() {

			spl_autoload_register( [ $this, 'autoload' ] );
			add_action( 'wp_loaded', [ $this, 'load_files' ] );
		}

		/**
		 * Initiator
		 *
		 * @since 1.0.0
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Autoload classes.
		 *
		 * @param string $class class name.
		 * @return void
		 */
		public function autoload( $class ): void {
			if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
				return;
			}

			$class_to_load = $class;

			$filename = strtolower(
				strval(
					preg_replace(
						[ '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
						[ '', '$1-$2', '-', DIRECTORY_SEPARATOR ],
						$class_to_load
					)
				)
			);

			$file = NPS_SURVEY_DIR . $filename . '.php';

			// if the file redable, include it.
			if ( is_readable( $file ) ) {
				// nosemgrep audit.php.lang.security.file.inclusion-arg - To allow the theme or plugin on WooCommerce Marketplace.
				require_once $file;
			}
		}

		/**
		 * Load Files
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function load_files(): void {
			require_once NPS_SURVEY_DIR . 'classes/nps-survey-script.php';
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	NPS_Survey_Plugin_Loader::get_instance();

}
PK�][�i�T++>ultimate-addons-for-gutenberg/lib/nps-survey/classes/error_lognu�[���[27-Oct-2025 14:06:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function add_action() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/classes/nps-survey-script.php:34
Stack trace:
#0 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/classes/nps-survey-script.php(45): Nps_Survey->__construct()
#1 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/classes/nps-survey-script.php(513): Nps_Survey::get_instance()
#2 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/nps-survey/classes/nps-survey-script.php on line 34
PK�][����4�4Jultimate-addons-for-gutenberg/lib/nps-survey/classes/nps-survey-script.phpnu�[���<?php
/**
 * NPS Survey Script
 * File to handle behaviour and content of NPS popup`
 *
 * @package {{package}}
 */

// Prevent multiple inclusions of this file.
if ( defined( 'NPS_SURVEY_SCRIPT_LOADED' ) ) {
	return;
}
define( 'NPS_SURVEY_SCRIPT_LOADED', true );

/**
 * Nps_Survey
 */
class Nps_Survey {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 1.0.0
	 */
	private static $instance = null;

	/**
	 * Constructor.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_route' ) );
	}

	/**
	 * Initiator
	 *
	 * @since 1.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Render NPS Survey.
	 *
	 * @param string       $id ID of the root element, should start with nps-survey- .
	 * @param array<mixed> $vars Variables to be passed to the NPS.
	 * @since 1.0.0
	 * @return void
	 */
	public static function show_nps_notice( string $id, array $vars = [] ): void {

		if ( ! isset( $vars['plugin_slug'] ) || ! is_string( $vars['plugin_slug'] ) ) {
			return;
		}

		$plugin_slug   = $vars['plugin_slug'];
		$display_after = is_int( $vars['display_after'] ) ? $vars['display_after'] : 0;

		if ( ! self::is_show_nps_survey_form( $plugin_slug, $display_after ) ) {
			return;
		}

		$show_on_screen = ! empty( $vars['show_on_screens'] ) && is_array( $vars['show_on_screens'] ) ? $vars['show_on_screens'] : [ 'dashboard' ];

		if ( ! function_exists( 'get_current_screen' ) ) {
			require_once ABSPATH . '/wp-admin/includes/screen.php';
		}
		$current_screen = get_current_screen();

		if ( $current_screen instanceof WP_Screen && ! in_array( $current_screen->id, $show_on_screen, true ) ) {
			return;
		}
		// Loading script here to confirm if the screen is allowed or not.
		self::editor_load_scripts( $show_on_screen );

		?><div data-id="<?php echo esc_attr( $id ); ?>" class="nps-survey-root" data-vars="<?php echo esc_attr( strval( wp_json_encode( $vars ) ) ); ?>"></div>
		<?php
	}

	/**
	 * Generate and return the Google fonts url.
	 *
	 * @since 1.0.2
	 * @return string
	 */
	public static function google_fonts_url() {

		$font_families = array(
			'Figtree:400,500,600,700',
		);

		$query_args = array(
			'family' => rawurlencode( implode( '|', $font_families ) ),
			'subset' => rawurlencode( 'latin,latin-ext' ),
		);

		return add_query_arg( $query_args, '//fonts.googleapis.com/css' );
	}

	/**
	 * Load script.
	 *
	 * @param array<string> $show_on_screens An array of screen IDs where the scripts should be loaded.
	 * @since 1.0.0
	 * @return void
	 */
	public static function editor_load_scripts( $show_on_screens ): void {

		if ( ! is_admin() ) {
			return;
		}

		$screen    = get_current_screen();
		$screen_id = $screen ? $screen->id : '';

		if ( ! in_array( $screen_id, $show_on_screens, true ) ) {
			return;
		}

		$handle            = 'nps-survey-script';
		$build_path        = NPS_SURVEY_DIR . 'dist/';
		$default_build_url = NPS_SURVEY_URL . 'dist/';

		// Use a filter to allow $build_url to be modified externally.
		$build_url         = apply_filters( 'nps_survey_build_url', $default_build_url );
		$script_asset_path = $build_path . 'main.asset.php';

		$script_info = file_exists( $script_asset_path )
			? include $script_asset_path
			: array(
				'dependencies' => array(),
				'version'      => NPS_SURVEY_VER,
			);

		$script_dep = array_merge( $script_info['dependencies'], array( 'jquery' ) );

		wp_enqueue_script(
			$handle,
			$build_url . 'main.js',
			$script_dep,
			$script_info['version'],
			true
		);

		$data = apply_filters(
			'nps_survey_vars',
			[
				'ajaxurl'        => esc_url( admin_url( 'admin-ajax.php' ) ),
				'_ajax_nonce'    => wp_create_nonce( 'nps-survey' ),
				'rest_api_nonce' => current_user_can( 'manage_options' ) ? wp_create_nonce( 'wp_rest' ) : '',
			]
		);

		// Add localize JS.
		wp_localize_script(
			'nps-survey-script',
			'npsSurvey',
			$data
		);

		wp_enqueue_style( 'nps-survey-style', $build_url . '/style-main.css', array(), NPS_SURVEY_VER );
		wp_style_add_data( 'nps-survey-style', 'rtl', 'replace' );
		wp_enqueue_style( 'nps-survey-google-fonts', self::google_fonts_url(), array(), 'all' );
	}

	/**
	 * Load all the required files in the importer.
	 *
	 * @since  1.0.0
	 * @return void
	 */
	public static function register_route(): void {

		register_rest_route(
			self::get_api_namespace(),
			'/rating/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( self::class, 'submit_rating' ),
					'permission_callback' => array( self::class, 'get_item_permissions_check' ),
					'args'                => array(),
				),
			)
		);

		register_rest_route(
			self::get_api_namespace(),
			'/dismiss-nps-survey/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( self::class, 'dismiss_nps_survey_panel' ),
					'permission_callback' => array( self::class, 'get_item_permissions_check' ),
					'args'                => array(),
				),
			)
		);
	}

	/**
	 * Get the API URL.
	 *
	 * @since  1.0.0
	 *
	 * @return string
	 */
	public static function get_api_domain() {
		return trailingslashit( defined( 'NPS_SURVEY_REMOTE_URL' ) ? NPS_SURVEY_REMOTE_URL : apply_filters( 'nps_survey_api_domain', 'https://metrics.brainstormforce.com/' ) );
	}

	/**
	 * Get api namespace
	 *
	 * @since 1.0.0
	 * @return string
	 */
	public static function get_api_namespace() {
		return 'nps-survey/v1';
	}

	/**
	 * Get API headers
	 *
	 * @since 1.0.0
	 * @return array<string, string>
	 */
	public static function get_api_headers() {
		return array(
			'Content-Type' => 'application/json',
			'Accept'       => 'application/json',
		);
	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|bool
	 */
	public static function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_options' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Submit Ratings.
	 *
	 * @param \WP_REST_Request $request Request object.
	 * @return void
	 * @phpstan-ignore-next-line
	 */
	public static function submit_rating( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( (string) $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data'   => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status' => false,

				)
			);
		}

		$current_user = wp_get_current_user();

		/**
		 * Filter the post data.
		 * This can be used to modify the post data before sending it to the API.
		 *
		 * @param array<mixed> $post_data Post data.
		 * @return array<mixed>
		 */
		$post_data = apply_filters(
			'nps_survey_post_data',
			array(
				'rating'      => ! empty( $request['rating'] ) ? sanitize_text_field( strval( $request['rating'] ) ) : '',
				'comment'     => ! empty( $request['comment'] ) ? sanitize_text_field( strval( $request['comment'] ) ) : '',
				'email'       => $current_user->user_email,
				'first_name'  => $current_user->first_name ?? $current_user->display_name,
				'last_name'   => $current_user->last_name ?? '',
				'source'      => ! empty( $request['plugin_slug'] ) ? sanitize_text_field( strval( $request['plugin_slug'] ) ) : '',
				'plugin_slug' => ! empty( $request['plugin_slug'] ) ? sanitize_text_field( strval( $request['plugin_slug'] ) ) : '',
			)
		);

		/**
		 * Filter the API endpoint.
		 *
		 * @param string       $api_endpoint API endpoint.
		 * @param array<mixed> $post_data    Post data.
		 *
		 * @return string
		 */
		$api_endpoint = apply_filters(
			'nps_survey_api_endpoint',
			self::get_api_domain() . 'wp-json/bsf-metrics-server/v1/nps-survey/',
			$post_data // Pass the post data to the filter, so that the endpoint can be modified based on the data.
		);

		$post_data_in_json = wp_json_encode( $post_data );
		$request_args      = array(
			'body'    => $post_data_in_json ? $post_data_in_json : '',
			'headers' => self::get_api_headers(),
			'timeout' => 60,
		);

		$response = wp_safe_remote_post( $api_endpoint, $request_args );

		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data'   => 'Failed ' . $response->get_error_message(),
					'status' => false,

				)
			);
		}

		$response_code = wp_remote_retrieve_response_code( $response );

		if ( 200 === $response_code ) {

			$nps_form_status = array(
				'dismiss_count'       => 0,
				'dismiss_permanently' => true,
				'dismiss_step'        => '',
			);

			update_option( self::get_nps_id( strval( $request['plugin_slug'] ) ), $nps_form_status, false );

			wp_send_json_success(
				array(
					'status' => true,
				)
			);

		} else {
			wp_send_json_error(
				array(
					'status' => false,

				)
			);
		}
	}

	/**
	 * Dismiss NPS Survey.
	 *
	 * @param \WP_REST_Request $request Request object.
	 * @return void
	 * @phpstan-ignore-next-line
	 */
	public static function dismiss_nps_survey_panel( $request ) {

		$nonce = $request->get_header( 'X-WP-Nonce' );

		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( (string) $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data'   => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status' => false,

				)
			);
		}

		$nps_form_status = self::get_nps_survey_dismiss_status( strval( $request['plugin_slug'] ) );

		// Add dismiss timespan.
		$nps_form_status['dismiss_timespan'] = $request['dismiss_timespan'];

		// Add dismiss date.
		$nps_form_status['dismiss_time'] = time();

		// Update dismiss count.
		$nps_form_status['dismiss_count'] += 1;
		$nps_form_status['dismiss_step']   = $request['current_step'];

		// Dismiss Permanantly.
		if ( $nps_form_status['dismiss_count'] >= 2 ) {
			$nps_form_status['dismiss_permanently'] = true;
		}

		update_option( self::get_nps_id( strval( $request['plugin_slug'] ) ), $nps_form_status );

		wp_send_json_success(
			array(
				'status' => true,
			)
		);
	}

	/**
	 * Get dismiss status of NPS Survey.
	 *
	 * @param  string $plugin_slug slug of unique NPS Survey.
	 * @return array<string, mixed>
	 */
	public static function get_nps_survey_dismiss_status( string $plugin_slug ) {

		$default_status = get_option(
			self::get_nps_id( $plugin_slug ),
			array(
				'dismiss_count'       => 0,
				'dismiss_permanently' => false,
				'dismiss_step'        => '',
				'dismiss_time'        => '',
				'dismiss_timespan'    => null,
				'first_render_time'   => null,
			)
		);

		if ( ! is_array( $default_status ) ) {
			return array();
		}

		return array(
			'dismiss_count'       => ! empty( $default_status['dismiss_count'] ) ? $default_status['dismiss_count'] : 0,
			'dismiss_permanently' => ! empty( $default_status['dismiss_permanently'] ) ? $default_status['dismiss_permanently'] : false,
			'dismiss_step'        => ! empty( $default_status['dismiss_step'] ) ? $default_status['dismiss_step'] : '',
			'dismiss_time'        => ! empty( $default_status['dismiss_time'] ) ? $default_status['dismiss_time'] : '',
			'dismiss_timespan'    => ! empty( $default_status['dismiss_timespan'] ) ? $default_status['dismiss_timespan'] : null,
			'first_render_time'   => ! empty( $default_status['first_render_time'] ) ? $default_status['first_render_time'] : null,
		);
	}

	/**
	 * Show status of NPS Survey.
	 *
	 * @param  string $plugin_slug slug of unique NPS Survey.
	 * @param  int    $display_after number of days after which NPS Survey should be displayed.
	 * @return bool
	 */
	public static function is_show_nps_survey_form( string $plugin_slug, int $display_after ) {

		$current_time = time();
		$status       = self::get_nps_survey_dismiss_status( $plugin_slug );

		if ( $status['dismiss_permanently'] ) {
			return false;
		}

		$first_render_time = $status['first_render_time'];

		if ( 0 !== $display_after ) {
			if ( null === $first_render_time ) {
				$status['first_render_time'] = $current_time;
				update_option( self::get_nps_id( $plugin_slug ), $status );
				$status = self::get_nps_survey_dismiss_status( $plugin_slug );
				return false;
			}
			if ( $display_after + $first_render_time > $current_time ) {
				return false;
			}
		}

		// Retrieve the stored date time stamp from wp_options.
		$stored_date_timestamp = $status['dismiss_time'];
		$dismiss_timespan      = $status['dismiss_timespan'];

		if ( $stored_date_timestamp ) {

			$current_time = time();

			// time difference of current time and the time user dismissed the nps.
			$time_difference = $current_time - $stored_date_timestamp;

			// Check if two weeks have passed.
			if ( $time_difference <= $dismiss_timespan ) {
				return false;
			}
		}

		return true;
	}

	/**
	 * Get NPS Dismiss Option Name.
	 *
	 * @param string $plugin_slug Plugin name.
	 * @return string
	 */
	public static function get_nps_id( $plugin_slug ) {
		return 'nps-survey-' . $plugin_slug;
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Nps_Survey::get_instance();
PK�][�H��qq;ultimate-addons-for-gutenberg/lib/nps-survey/nps-survey.phpnu�[���<?php
/**
 * Plugin Name: NPS Survey
 * Description: It is a nps survey library.
 * Author: Brainstorm Force
 * Version: 1.0.11
 * License: GPL v2
 * Text Domain: nps-survey
 *
 * @package {{package}}
 */

// Don't load if another instance is already loaded.
if ( defined( 'NPS_SURVEY_FILE' ) ) {
	return;
}

define( 'NPS_SURVEY_FILE', __FILE__ );
define( 'NPS_SURVEY_BASE', plugin_basename( NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_DIR', plugin_dir_path( NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_URL', plugins_url( '/', NPS_SURVEY_FILE ) );
define( 'NPS_SURVEY_VER', '1.0.11' );
require_once 'nps-survey-plugin-loader.php';
PK�][��R'9ultimate-addons-for-gutenberg/lib/nps-survey/version.jsonnu�[���{
	"nps-survey": "1.0.11"
}
PK�][�8�//=ultimate-addons-for-gutenberg/lib/class-uagb-zipwp-images.phpnu�[���<?php
/**
 * Init
 *
 * @since 2.17.0
 * @package ZipWP Images
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Zipwp_Images' ) ) :

	/**
	 * Admin
	 * 
	 * @since 2.17.0
	 */
	class UAGB_Zipwp_Images {

		/**
		 * Instance
		 *
		 * @since 2.17.0
		 * @var (Object) Spectra_Zipwp_Images
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.17.0
		 *
		 * @return object
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.17.0
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'init', array( $this, 'load' ) );
		}

		/**
		 * Version Check
		 *
		 * @since 2.17.0
		 * 
		 * @return void
		 */
		public function version_check() {

            $file = realpath( dirname( __DIR__ ) . '/lib/zipwp-images/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				// @codingStandardsIgnoreStart
				$file_data = json_decode( file_get_contents( $file ), true );
				// @codingStandardsIgnoreEnd
				global $zipwp_images_version, $zipwp_images_init;
				$path    = realpath( dirname( __DIR__ ) . '/lib/zipwp-images/zipwp-images.php' );
				$version = isset( $file_data['zipwp-images'] ) ? $file_data['zipwp-images'] : 0;
                
				if ( false == $zipwp_images_version ) {
                    $zipwp_images_version = '1.0.0';
                }
                
				// Compare versions.
				if ( version_compare( $version, $zipwp_images_version, '>=' ) ) {
					$zipwp_images_version = $version;
					$zipwp_images_init    = $path;
				}
			}
		}

		/**
		 * Load latest plugin
		 *
		 * @since 2.17.0
		 * 
		 * @return void
		 */
		public function load() {
			global $zipwp_images_version, $zipwp_images_init;
			if ( is_file( realpath( $zipwp_images_init ) ) ) {
				include_once realpath( $zipwp_images_init );
			}
		}

	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Zipwp_Images::get_instance();

endif;PK�][2�W��Xultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/background.pngnu�[����PNG


IHDR0�R���	pHYs��sRGB���gAMA���aqIDATx��EօO���'wW�J������bˢ˲������$$!���:������ޮ��73 $�p>x�~��eݯ�N�{=�B��L�>�4�@!�B!�B!��H�B!�B!�B!�B�0	!�B!�B!�B!E
��B!�B!�B!��"LB!�B!�B!�BH��&!�B!�B!�B!��@�B!�B!�B!�Rd��I!�B!�B!�B)2P�$�B!�B!�B!�(`B!�B!�B!�B�0	!�B!�B!�B!E
��B!�B!�B!��"LB!�B!�B!�BH��&!�B!�B!�B!��@�B!�B!�B!�Rd��I!�B!�B!�B)2P�$�B!�B!�B!�(`B!�B!�B!�B�0	!�B!�B!�B!E
��B!�B!�B!��"C1�!|�GNn.��!��_$J/�b��@!�B!�B!����#���[�e#��pI�J2�c�l$r<�.U��B!�B!�B!do�G\�R�$�A�̭۶��B!�B!�B!����o0ss�(^r�!"f��mB!�B!�B!��m~�����BȁG^LB!�B!�B!��}~��I�KBL���&�B!�B!�B��g��$�B!�B!�B!��=LB!�B!�B!�BH��&!�B!�B!�B!��@�B!�B!�B!�Rd��I!�B!�B!�B)2P�$�B!�B!�B!�(`B!�B!�B!�B�0	!�B!�B!�B!E
��B!�B!�B!��"LB!�B!�B!�BH��!E�͛7��Ͼ���~ªUku]��
дQ\p�)�Y�:!�B!�B!�B(`R�hD�<����١]+yX?]?i�4���"�)'
B!�B!�B!���"#`���b��Eؐ�I�˖)�fM�r�
(J,X�9�9h޴�=��o�x��
���py������k�'�U��\ٲ`�MB!�B!�B!����"s�����8�L���ժ ;'��fQb���X�b5�=q�>R���*�M���m�F�N��$�B!�B!�B��)��f�ӿG�ŋGU�0y&�Μ�F
꤬'�@G�K$��rWH�s/�A-6/8�T��gҴ9>!��G�Ц��}��BȞ��wB!�c_��wE�P��F�*Dʶ���N�)�Ž��s�
�D��^��������rs��
��R��hӪ�Zw
6fb┙�ֹ-F������U�;W���2����k6`�W%����k��`�ZVfy�I#i~?�毠Y�z �BȞa΂%(
�N!��9x'�B<��}g	��2v�U*$�QR�M�s5+¤�
�V��ǡcTHti令���Y�v}J�+놏���ij1��/yJ��ɿ�+CPWw����¼�����Hڕ�׀B!�B!�B!d�HX`�0�ƌM��۟T�A�Fu�V9%�s5+֒��Nz
#:���E�T�t�d�YDJ��w֖-�\�B�_s#n6�_'�..k�_���kי嚺N�s:�M����4�B!�B!�B!��_N�0E,�ӣ�Z2.\�/S��"ƅ�*8fg��'�3�dy�&H�N�[�yo޼
7��[HV�Yw�󏻣���;�_J:A��bŊS���!{��5�cҔ�ٻ�^�6m\�B!�B!�B!�;EB�t�%�s����c�MU��#�↌M�q��}b������%m�|B厐��5iB�5G����V�^��8��F�#�B!�B!�B!����"%`����=:��WE�,^�8ڶl��'wĂ��1��#�Q�:�����2˖-�����9儣�ѧ��O<���k�i%M��ep�9��B!�B!�B!d'�}��uqq��o�[5��X��d�#nbKqSX�f�ƭl۲i(^:K�]Q�B�~�n"���A��K�S�ʛ�x@�,�#�d���Ю�.-5	!�B!�B!�B������mޤf�[�rFp�hDJ#Et=~�����XU�KYq۰AmM�`�2L�2�;����~��Uذ1�+�׿c�Oݭ�4oڠ@�Sg�U��F��"u�|DHu�8'L���s�KȮ�����൷?¹ߠ"�|-�#Bg��1|�8��C\p�� �B!�B!�Bٟ)J��F�2��݌0�ާG'��8��VV��RhaD�-F@��ϱ�-0zܮE���A�O���5�� �gvNn��,˺�
�d�9�ģлgg��9w�"�+ԬYM��SO<e˖�����n��I!�B!�B!����7�7��y�ܳ�.22��Xc�L�s��E'�*�_�������-l!{
1�
�S���Y��;�����C�f�0����5�B!���,X����B!{��	!����p�ENM�8��î�E���_ϯ.�	�/������
�B!�B!�B!�-T�9�P�K+dB!d�`��%���1y�TddlBQ�c��#݇���B!�B!do�!�B!d� �e�~G`谟��x)|��7�^���-!�B!�B�ކ&!�B!���H	�q�^W\}!�B!�B�60	!�B�G��cQF��B!�B!��m(`B!�B
��Z�B!�B!�!�B!E�J+��_OY��g_�7��ƍ8�_o�����m32���Q�"���
�x�1�}�)���`�� �B!�B)���B!��"JE#>�HY�RE���?ć��f��u�ƌ��]ϗ�ZKǠ����V�}.\��ǎ��ۂB!�B!�(BLB!�B�8bUy���e#��a�z�o���Kty��pݵ��ɧ���?���p�-w����v=Ǎl�Їp؀@!�B!�RԠ&!�B!�b�)��+.4�Xf:�RXd������"!�B!�B���$�B!���\�j<�k�PQr�O�q����)�D�kKI'֗���]TH�ˉ����BA�B!�B!��@�B!��"�XR�G��0�t�])��+q07�x)�fo���p[a��q���B!�B!E���B6-�^h	9I$��&�B�
�=���������I���l?���5��Xfv��6\���_��>:�o����Z���$�B!�B)J�3
����i�M!��o\|�5*X���[���O=�B�○��'�A?�4�=�B!�B!�E~��Y�X1Zjr��Hx(V��!���
��)��)�27fd���EK���O��^Wk̛n����6!�B!�B�"�����ҥJ`�l$�IB�oD�,]�$!���Y�h����"B�"ŕl�<d���*V��XB!�B!�y���HϨ�eJ�Dnn�sr)d�"��	/���iB!�Xlܘ�B!�B!����
r'.'�v�B!��ݣb�
���B!�B!���B!��#ڷk���q�B!�B!���
LB!�B��{�q��,�H�y�>B!���� �<��
��B!��#�ׯ����HY:�pٷO/S��M��B!���e��i�翞���A�
�&O7��?�:m!df��$�B!��2D�|���@!�B����}>��W�j�Kx�R�2z���?
�+U�e>�u7ߍ��,6������g�{���/��8E�]?�$F���2�K�O��˕ßo���m�����go�@8��?&0	!�B!�B!�����Vb��%�u�9��?�)���?Q�n�]�vh����0�����p&Վy`ݶm[�?���P�ڵl�r,\�X�ˠ�Iܧ'��~�9=@��?C�B!�B!�B���F��Q�DI�ϭ(]�23��G_`��)X�z
���+x�;P@ݳ����{�7^{9*T(��q}Լض��
b�1��(����
�o��zx�;��/d����#��
oS�o~!�ay�>���'�p��7�ګ/F��A�cW`�|�}��+�]�8J�}��I!�B!�B!`D�JKKC�ΝP�R]ӫgW�q��Xm̑�'h��3gᅗ�R��3OƼ���ѫ{\u�E���`s��I���o�
32p߃���}�W���_z6n@�V-p��b��x�1t�h$�yp�!8��g���/5�断�L>UѻWW�zұ(V��������k����~9]x��m����瞆�ۆy?��a��������Q������A��i�4j�K�tn��+V⃏��D#oߞ�ƍ���ND��-S҉P���o谑X�~=ʔ.�vm[��3ND�5RJ����ذaԯ�k����Zz���GMݲP�vM�|Õ���;@nN.z�茮����[�;o!*V(�s�:}z�H�eɒex�շ1w�T0���ӎG�R��q�L�_t�YZOB�=��I!�B!�B!xR��*q�^��*`f�Nزe�҆��b1#��0x�}#�U�G��u�֣Q�z�٤ٲe��ʔ)m��Q�ܜ�&��g��…�ѨQ}|��������)3�u�V�������p�wb���	v�̺a?�V!��4�d����e�,QB�LI/�i߮5���V�R907n�d�۳�ѩC[+^�q�;z�x$����g��q��O �VM�yF���۱fͺ�Gg̜c�=�r�58��Bff&n�˽;n�m����O���������)������̋f9�;s.&O��
�:6��9����zn�J�$m�1mܾ};^}�=�}��7~2�^#w��-�eW߂5k��z%1~�$9�1"���=�#A!�7	B!�B!�B!1��7d��("V�:�
���P�k��s:��a�z��A8�޸�P�f`]8�c����K.:��r�KSOD6��?�����U�V��܉�_���G�N�>[����88��y�9��A�zhբAOZ7v�$���i��S��x)s��a�;B�{��G㺫/F��A��Z��|����֭�p���r���{���C�t��ǞQkR��oP�RJ��O��7����r�J�k֭���~��嚵�������XL�{�-�Z�fΙ��E�㊸��^�_s)��[�皾x��w�t�>�֮]��������?v���;��5/!��Yh�I!�B!�B!`DD�����#P�tIdem�g�}�u�7�fM����:wj���J��u���n];i�LA,6�}�_�|�Y���N�\7n؀�~�̬ͦ>9(^�0��x"�n�B�9����a*�-_��@y�y2�3"]����y�,R��K�.G�uՂT(Y���솝���Q��wܨ˽zt�9^�d2�9s�:��\�x���盯F�~=u�����ﰓ�m�v|��w���p�c�6ؔ��})}T�Nm���L���t�
�s���ؘ��5;��B��=�w�Y�_a���d��U*�_��k�c��9ft��e��k�P<m�L��6i���
%J�1G���3�Z�B�ށ&!�B!�B!�������>f��L��X��_�i�w=�/w.k���u�ô+V�ժU5\_�F�0/��@Y�zU,[������;b��՘�p����X�*�o��H�����8���>�rs1f�4�_[cj
�:�A͚ձs|4jX?�O,˖-�q,srrt��i��r�}�U���;�}$�%����t����r��)���AX�j�
�"��N�=�
ֵ��(Ve�jUѪUs�y4v9����6�5b���K{�̙�.q�mNN��Q�D�b��st�O�@!{
��B!�B!��F�2�b.���%�@V=�u�)'�bY�=i��˗����uz�cq�㱧���_��S��R�"j�0sS�KW��؀ƍ�e�f�6m&�ڷQkI��<�c�;x	�`�P��Vw���).x�X�rF씏� nn�}�_�dD̴��J�]��֯Ƕm�ö���T���K��/q�ꎁj����[D�d^2L[�lY�#�/^̶�nd	!{
��B!�B!���t��x��gTH�H�6�f��}�d��a���k.Q������%�����t#`N�>C��TUP�(�u�=A�Z���~�N�o�z����kF��D��t<x�_�R�2�=�|�X�2LZ�Ɋ9�.B�m��~K�,Þ:>r�+U�h�$�yϚ=��?u�,B��$B!�B!�B!p
+�m�Í3T�t.L�֭��%Ka�	���P#�/^\��?���D��T����A�����_~���r��"#4����q�U�����-_�{5i��۵V�r��9X�vmJ�m۶
�_{�=��r�o�x��4�B�t�:�Q��|1j<^�}�1�:l��~!doBLB!�B!�B�C�a��J/���Z��״h�T]���吏Ǵ��v�:k��i^���[']��&c��5���㏲[��i�wb�ٸa}�}�Ix���_�r��F�j�5{2�hZ�|Y�j�L�j޴)&O�������w=��D���(�tl�];wĘq�x�2�u��([��:ףb�
&�M���;�a�k���%���E��������|���{�99hִ16fl!��-h�I!�B!�B!X�ǝ�Yʸ���V����B^�m��'Q�b�y�
(V�223���_s���"������Lަ�l3�W�Zul_�;j�N����\u����B�2e4�����Խi�x��ѼyM�mסf�����7�QG�V-�E]!Q'Mc��ѹS;�M�e�6d!��5uo����<�j�y��t�4Y�Lym[5G��Q��W\v!�4�쾵�%����|�g�]B�g���ЦY�~��4m�߬Q=B!d�0g��}~��Bٳ�~�v��do����Z�L�|�J��ʕ+�nO�!�5k�#''W����@�[�b�n/W�\�~˖�*�	*�Cٲeu933YY�5��Z5��+�3g#�H!���q��׋�iD�̬-����,^��F�4y:.��zU9�?��{���u�W���)m�i�J�k�R���W)e��k�a���زu����d��"�'9���:u��w�Z�6j� ��[P�t�׶�rذa꘴uj��~٤�K?�c�n�zl��I9+W���L�1�;K�P;\/��C���FD.^�8�K�G�|�~B�z�ѷwOB�_��}WЅ,!�B!�B!��A�V��/J_�P�3�^�j�-��5�+S��~�#�`\ t��׳G��{ ��̷oy����3f���!CG�x�0���8��:�v!mv&�V3}Q�����T�V�*��O��^BݸƑ~��S�J�SK-=�o��L��/w>`D�i(S�4n��J�i��,��o���r1S�͛�B~o~wS��!E�����A!�B!�B|>��K|��סTy�qG�e�cTA5��y�чaԘqX�v���N87���yo��2T�^
��{��H!�B!�B!��K�ׯ��飮o���sHA����_x���0k�|l�؄R%Kh���=�۵!��
�B�B!�B!�B����;����c�U�_��~۵�]B�=H�B!�B!�B9��v�LR�v�B�0	!�B!�B!��?$>h�J)�P�$�B!�B!���|ɁE�nusrr0��X�jx�	!��$�B!�B��6��1��,-J��ҥ!�g�1v��*U
7]w~cq_�c����8���W^��%J������Ѹa}����(]�4!doB�B!d0gy&6m�5��>��	ʾ����~lQ���5��yHz>�x?�,�R���u�xQaY)�AJWX|��yaI��M�z|V����aJiO�"X~� �e��+ŷ;��I�=�Y��(�[�R�y�D���/�X�X�)�
�^H��&�@����k�?�N28|Y*�O�����mw��$�P�Z����M�7f�����6a����rP�/_;�W�}9���#�H1j�5i���Z ����̬L<�ȓ�|P��8����mc�M‡�����Qs�O���w��9����E�F
A�?n��I�T�"����n��m˖-H$� ���K��Ͻ��O?�8=_��A����I!����<��o�o��\��=�.ʕ�FC��]��TEQ�̋d�P�)�"��P��Q-
����Q١
�٘|ͺ�lS�T�%tY�'�Ξ��V��|�WWI�D��-�7-��R�g;�����fc��f�M�����l�lj��0��=�BN�:��^Lr�U���p�|<�OB�H�����k�4{��~N�՝�
"��H���=/�3!�z^L,��z���X?��r�6�#[�lJ�\�
��r��"����3o^�J�V�*�v��	$���^v�1w��j�o���Z�
/���.ԩ-�px���\���W�z*W��+/�{��G�����]p��[���3��ӯt0���^E�
@!�3��[����.˵-�9��	9�z��s���0���,|�Y'c��,�¶�'�x�0�_B�|vV�ߚ��H����"�'?p'F��n]:�d��~͚u�ҫGWs��!�&!�B� 7/iZ����%KB/�k�����WK�@����ہ� �o�i
/5C�S�VP�ߋ�u�C�"�`u�@l�����&�m]��6a
T���|ܤ-3��!0a:@�V�ǏY+��	����{��	���:�K����<pb����>"1�ed2�c�ݳ=���}y���}������v��=&\�ˉ@�t���ۤ���ܞ_��q璊�p���p�A��ńM��%��?�[�Ͻ�:~0n��z�/_�pܶ}��̷gg�@a��L|��p��<|��@�[�
���fpo�2m&>��K]s��T�ܲuKx,�I��?�b�J>�Z�f�Z��g4�_
֏��Ԓ%K1j�D}��n�-�.��##cF����k7�r�hެ17j�1q�̙�n�甩3�~�Ft��	eJ��)3n6oޢ���"]9#�=V�ŲN����7l�OCG�a���ЮMKԨQ=��y�an��^�fu�l�<�6v�DdemA���лgW�L4ݼe���ژ��*U*�M�f�WHH9�G�1��Z�(Ym[�0}�$�c6Is߫U�Z4o��c&`��EHO��na��\4�n�~<6d�r�J�٭�ZT��H2A��c�t�
S���ݫ
�K�z�T(_���G�jհ�����;fΚ��0�:�EE���wBȞ�&!��a��i�C"�R���<+(%���W�$B�Dky��5ʴ��oE�����3��*�ɦ4x~žu��l�+�3�K&�Ht��:�R~��V���x������3�H�Zg��T?��:��I�F�ᖠLߊ��գ��
���I/iK���A?������?=/Seu�
��\r'{�Z����b��.gO�����������~ܱ��z�t����챲G*8A�q�ʅ�{��I��~x�|[�=�\�!E�D�C��=5�Ԧ�,L�<
[�nS�f��k.��.�����?���=�b��r;{ދm����h��&�&�.��YfG}��A�q�_nD3(ܪe�|ÿ�N�z��x�N�}�f�`<���7C���ϟo���
�rI��A���Dn^�x�b���p��G��}�7��cϨhg�"--��O<7\wJ�*��z-�{x����{���^@������g�h-�x���
"R^{��߭K�P�|���w?��&�<*T,���;����[�m��;6n܄����簼��f͙�jF��ջ;�5����E�.T�x�8�D\s�P´G;n"�r׃����A��Ώ���F,�kn��>dg���cG��l4��.�4i��(E���E�}��O��G�m�x��3O	׭4���ۼ���k*N8��|^pl_��2و�U�VƗ��q2?�I=��x��O��“��vg�CB�uP�$��?�+/
*FD�: \rss�o�b�8���7#b[�/�ߏ^��jN$M���	+�b\�nY����H�`�RW����G�%}'��u�}i�ַ*��֙}�<��X��~Z7+X�]�Jm����rI/��Gh�g��u���l+m_%�u��J�~"V"����
��=�D&l����iN�tV�V�L���@='�"�O`P驰Z���a����VE0�~�S��&mj�9��/n���0O/�Td-h���A\U��>@�U�*Y
��u3*U\�N�6W]6gm����K���.]
C����{�u�s�ࡨ]�&����R�
X`�ר���H�N�t45���~�u�7�e��h߮�^��e�OÐf��ڴ2�������ӱe�VT�V]:wDe��`�՘9k�.w��k֮è1��r;�+WF-D��-��V��~.�����[����m�ذ1Cٷn݂:��r�t��e���ر�l�J$� z��MѶMk��9b7~�Z��L�nZ����XɯQ�z�,5q�Tl��0DZ�7��y�0a�3h��^=����Kj�-^���ơl�2�ܹ=�T�����ts�[4oB���ݻ`���ȕ�J�Jz�W�Y�G��{�ѧQ�f5#��`�u�1�����1e�<�'�'��_7�{��uS���}�F
�㬳NRD5�ͷ���M�[�L�k�QG�WS�k�0�҉n�8X��3/�w>��e��o�Z�_a�cO��e#dV��'�ݽ-!e��'�����oU�J�,��8�?/Y�o��!��IǙ���u�6�?߃-[��{u-Y�9j�x�P}��q�7��:l�(dmނ&��}F����/����qs�5c�t����N�a��Y*���r�?�`}���cނ�� V��M9?�8ٹ���4�W��u�X[��4E�ȳG��U�'	�)B�<0	!�';;[�˃~�fM��8��`�Gf��Y���%dee�K/0/���;�E�H¼<O-���|�z�
P�/k�g7$�+8&�+tR4*+@:AΊ��������z	�|�=<�^h%|A��uo�kˤ��ʢs��u��x��jcT�x��g2'�9T'ކ���H��X�:��1imVUH�}�4 	'j�~(��"�Y;Wk]��bW���v��J���B��0d��<g3�Ҫe��Xl����N�ct��G�,9�+\���K�m��u�۞k�ݤis��e��=�[��O���I�ܶMk�2��c�M2��z��)s3n�����q���ش)={v1f3 �8��Xe���w_Ҝn��~}�;��cU@�o���anF�s�
����)�f�* ^l�ҋ.<K��>?��*��^�J/�$7]�^������WC��W���5W^l����[��\z�y�\��8��f�t��hX�>x�]tN�Ϧ��ݾ}�}�u�����dxW�l�믽'wd���f���ϼ��	�;������݅fF,V�X���r�j�56�dG#����o}�o��A���Gf��y�?ep���}��k�����F����[q�a�t������g�zǵ�Z��8�S�|�u������	!�w�أSQ긓����;n�����9����+q�)'�=��_~�=�oۦڀ�A�R�q��wdlڄs�<*���5kq����c��,���{n3��׌����}�mס��7F�:�f�jX�z-���t��Z���&5�2?��N�y�u�fM���2�)���V�.���c^x�
}�-�۶e����
��#և"��E���ݮ��{|��ͽ\���^u16�mg�v�NT����o��+1b�XDSTw�|�tR���]z�>'��)��ebL9r�s�;��O'A���n�?A�����)�0a�4M۪U<��([��Y?�]}�.�~������Ძ���s��W�!�&!��#/^���ט�R*"2֬Q]g2c^(v� ?�`�_īo��k���͛�ܳNgǥ����?�e�I�χ�1�~���⛗�O����Y�=�u�p�]b���E.�|���e�._~�f�R^�f�P��{�V�
t�z�YC&���~��
ĨW2z���*p������iN��bYܮ$�^�r��	�"z�Ծ����e�3���VSE4�|�s�wV��E�ꎉ@�t�gРHFL��V&–[�4��i�^F��F
�u}"P�~��N �����'���*�*�Z�н��R;��Y�Jy�`��6��`��P�ND�w�.������&c.hs�x�����=��r���� �Xa�8���R���2�)��bf R��rr�Y'qe�u��F�+�������ޭ3�O�lD�\����F�,�Vb�1u�,u[+�)g�v�X>�1d�Hu�w�q����~�
�Λ�$=�wF�]R�z�</U�VիWQ�҃:�G��F\��?��嗜���˗-3�u�C���X�l�Z�����3be���/��׃���F��-1Դc������x��۵��E���cOc˖mh޴�;��1د��-^�T��^}�)�y҈��4O�:�о5&O����;%��v�����/ѭK'�_�sLd�d�?Ͻ�����c"�ߵϝ2�ݣ�A&�F���H}/൜R��EG
8T��3}���k��V73����`��%6b�Z�O�8���j>�y����XPLK+�"�/�����k<L��O��W���:�U�����Tj{ܱG�x)��ؽ�A����X�r�.]�ڵk�ײȌ�,7��zt����'�O�Ҋu���f��8��bq?j��Z�Z�N��U(��6n�� qC%F匙s̽$�Ps�̷������םrߗw�u)�`֜�p���N>^��v�Z����9�)IٻP�$��}���Z�h�N�̙�@�_x�M�r�8����e�py�
5R�P:"/���8W�o`�4[d�u_^^�-���&q���#�� �l|D'��%�X��+W�Y�����w���iP�{Y��N�K�ؘ*�@�u��gESW�oE��6��3E,&�omU�s��Z�$�Uk �%��P���B}/���)t��"��IBY&�@�s"��(uq7}/���
�|5C
-��e�װ��VRL3�|Q��KU+ʆ֝��pN-#=+
[kM׏AGV��9'���"/�•���z�(X�&�E�웦b���D��h����<?l���
��yp�����;!E�W����lu���ߪ�� 2�U�bUW��F��g��w������0����o��9��8����[�S����p�\���k�o0��eu����˗�I'.��4j�+��r�A0��)18��&3HZ.e݇�9s`��MOOǘq�T���i`y�sF�o>㐿�R��|}f����u�����?p�^/<��hY�j
>��k#`���	�]u���=���Q�nПSg�V��S����r#��7Q��@����ZD�]�]~#�-[��%''��������p���%K�a���U�>�b���x�bx�_�U���}>�O>��RT)��	��	i�Rs���G0}Ƭ0N��~=>�:�P�h�E�����2���ch*���5<�|7�IG�,�v���w���5$�y����x:	�f��e��ٽ��a��qa�x���;jk"-u���c���o3ⱌ/	"t��/�-��!33+�$Y�BٔT"�BHQ�������c��Fŭ��{^�f���_��7k����E�3B���9�S;9��q?ljq{���o��؁���
ؽ���(�Mq1Ĭ8�ڻ�	b4��U�g-�p¥��l"l�!*a�?g�	k��.g5e V�#�[!��S\��	Ӌ-]�Kߏ�Q+z�	���Ԩ���0(�J�^�ĹrMu�#5O�d3ӊ~N�Tq�Y&\��@�K�:�U� qu�,U��Z$c�Kg��;֥�gݭa�Og9)�ա�jcT�	a�	�*(Cbvnva�L���bR�K��
��{|���•�[ߤ�d	Ԟo-W�A�$��e-bb��.�ڝ��	)��ۼ�.��eyR'�o��Խ�˂I�;?�>+kwiղ���ڴi	7�*֗�X?6�_WL������z��9���'_aŊUj�����F��"ש�N<&E��<�P#`~���&N3f->Jwmݲ�i�b��<��)U�DlMP�#X"���֡3�u��ɧ_��`�%昱��X��rұ�l�����X�h��a[��B��/-`��Ge�&އ����v���p�9~�S����с�%KA�q���x)w��F���lH�_y��'1e�t}���3�k��Uq�]��3���иq}�F�؍'M1cuKu# v��Q�����.6�׉;���� �f���8��ί�� +�29	Q�	,5�w�4#�Ċ�Ms�jK�Ÿ��l��S����.̞3���@&��(Q��c�c��O21ͭd�G�4���U�֤$Y�n=!��A�B�9�иs��ジ���}�Y��)3�~�y����<<;�b����
�����ꐢ�L���R��;*OQ4����6~;x�V��~���#>3r�x��?u�0vV�]�Sa��T;'~��_?5�h�����Z^a�+��ݬ[�g�.�~`�-I+\.d�_�;���OL��%q�	lQ��#fFx�Ƅ��o\�뽤-$E�tքj;hEÄD}?���������:�N�����N-�k��A�b�Zr?҉n�}��\gӷR`܂T�_ZkFwy��DE�1Q�u��,�xMF�\�:���/�8|ݹ�ߒ4�eЯ�����{`ՙ�V�A>a%U��tu�kc��[�ZI�
�~��g�KD��m{4Fix���!��}sף2e�h��k��ڷ-���/�X�H��r�Z���zO����@<�Wt��>�y^�r�P�u&�M��M��MW���G��!�{aʴ����uu�G87�pU�:��y������
�R�K{}:l���WI�O��~���	�5N-R�R%K�V0�^[��
��[�F5ğD�%�5=����i��r$�#b�H�d09�=�o�i�B��^����_���fƬ�z��{[o:qd��;�۶;��=�z8��C����Ñ^����%K�-��X�yۍ���8��Q�Li�2"�Q�4�:�5Q�^]smNC��%��?��G6flD�
1b�,4����Gz�ZX�j~1���ͽ����p��Q��Qú����1sv R�6ubD�������=E��Ѱ~]̞;�Ly
����$��S��_$~e����	A�^\ʋK��Sg��]�Ǚ�����g��I!��`8�r�J�ءM�V�I~h?\�k�y�]'3�6l���Uk�`�$	�<(v���v�7�8#1m�,4hX��p�I�ڤ��>�i�u���}$��…Kt}Y3�֣kg}�1j�>��1�=�uF��23<��Z�b%��5��k�{��b��2��0�L�ƌ��/��*W�Dm۶0e���YW^�F��۳��M5D�&�0a�d6ڼ���Y�/
c*	�./�>�K�a��BABܴ�����Ș>=v<&M�����ѴY#t������7Ug̘�񓦘c��ȥ�5\��mQ�l��J�~�Y��C�^fB���ТES�n�TcIE��ʲ��1t�H�Y�ժWA�>=PǾ��aX���k�P�����Y�R�C��\b�h�
����d^e��B��z�4k��
5��b3H����}�y��M�U��f�N*���������uԁ��EG�0�
TK��E\"E@��Y^z�X�J��/"�*�%��OoŠ̤���J�_%�1���F���m�
a�$�f�]�$�Pt�2�^Xx����zp�Z\�{��ʋ֨�Z�ڶ��^NTD�6�P�u��<g��V/��aP�b���
�t��S�e�����"�%����hXE�OR-6Um��s �N4�b�P�@Xh�z�4�z6<WXu����AB�
e����|}>�Ti_ƞ����ǿ��͛7�%�]pZ�g���6Ძn�ɮ~�U%� p#Z����8q�>�������A�ɳg�b�
��T��N.�����b2E���a"�+���l,���>�$�������x?
���
����4��m���|�j�1� ֺ|�!Sb�������}��L!{	��!X$f�OCG����W^d�v�4W�RE�,F����ͻ��/���܂�/kT�N�ul�{�9eHq.f��oeΙ����XAޟO>�h����F8��+��Uc$�y�����\`�<�$��R�^<�<��2q�i��X��X��r�rv�NLO?�8<���Ƽ'��ѭkG̘9׈���:~�����K|ja��ix�ܓ���2��k�g���¹g��{xT�׋��	��w����~�����߷.8�t��-��3f��1�SμmZ�0��	799�,�r�
���/������o:�@!{^Y!���VB2�O&�N����k��D�=z��p����y�̙;_׵3��)�yܸ)��o�
��7Yx띏��e5����
w�/]�l����8��q�MW��W����Z#+O<��
�^��̋@���Ͻ�7���n-0#.�n��
܀p�_\�H�$.�p�%��ëo��w�Y'c�ix���b�-7\�s�{�����
�A90=�Jr��Bf�nۊK����M
g�"����p����V�TAx�|�ׇt�%b���n��r�|�1112(MbE���!�`��rl��G�����!>�1Ǽ������_ 7/κ�ɧ_�
�\�_�����O>�����_�s����5��o���3�������SbhF<�SO:כc_�l�J�3b�B�ŜG�N'�HL�:x����w�=���c�B,O�GҬ�@��i`��"�2������D�`Mt��5lJ��֒^`�h���ք���Vy���\�Z�3�/":c����ֶA멊YP�Z��qc��u�
�"V��H��ļ�R��Ed�
+�%�H�z�Y,�߼�z)i14��?o���� X�P�M9&�������V��^:�fG֕��������"�4�4�v[g����~
��)`R����̠_���mz:ȹys��矩�K�A����Ļ��+W��8ez�7Ϝmե��C��
Q�\Ydfm���q�g�A̍�W�1�p�Ьicu�;}�ݫV���(Bfvv���!��J/�1ɾ��'�wΩ:��ʈ�?�5��c��M7¤IS1�|��78��W�)^B�U��x��'����E��-:��{������	��M���%7�v��d���G�8�`uӺtij<a�x[�v:�,[�e�W�d�+/��\�kZJ�Z5ѾmKL�:S˪[�6:v��%�Y���.�q�4;u�LL�>K'*J����=݌�����0s�,_�R�"��}�ԓ�5�X��F��1�Z3ffm6c�%���~t±G�S��t���|�?I]�>��sZ�f��$�FԴ30m������+�>2��r�j���ۘ`�0&�{������4�g�U0�W^w��I���5/32�q�RB�q*
���񦍟�?Xo>��M{��m@!{
��Rd��Yl&znnrs"�0���ϿQ��+�@�_�*l������w��!��G�~�1,�|��R�'�� .Eݻv���}�l�֔�.�^!��v�?ՅZ<NP��k�ֿ��t��K�0��Q��x��1��,q�rh��Vl���H�{�H�����b����z���9�r��ɸ�G�=M'*�u�#�|Zg��s֩�M�6�6�ߔ)3b���D��FL}���Q߈���dp�w>I��|Ċ����T�M��S[�+fΚ�!?�Xd���C�?�J_"/������W�����
K�,ۯ%�?��.�?����7@�g�/W��%��b7
~�;���.րpfV��V�6v��'�pc2�΄U�|wR_8������
�O�������ы	d�S,��zѶ'��	�1C#���щ�I�NBQ�W
sĄ\+$�V�s~i.�f�m���S��`�x��̉�j1��
�����38ͽP���`���Li�/�'�Fu�-5�P\�T�[�~�wm��X׭�R�z
��m\MXׇ���m��o�G����7��<G�ڵ��ۻ�1�C��ѬIC̞��e��\���C'H�I*W���N>^�2��p;2��sL��}?D�]/��\��`�H1n<Ԣ��_G��
� 93g�E�A$�V
���
�M~+W��E�^����`����QcOs��'������?n��U������R�q��\�'t�v�y����:w�\���}��*��q{��7C�۵
&�������4D'`�j�L�Ga,ü�V�V5ܿj��x�ŧ0���X�|���{Y��c����Nu�OO�ޏS�By<x��8��1f�Du�Z�zet�r��&��������KOi]E����Os�8Č��K��Z�_ڶ��a�F�3c&]L�Ա}8�A��x��?cժ��{=��3�"{	�0�}��;oROF�R�L�z�N�oF�O�å&�a��U�u��
&���ؾ�z�*Y2�:���F���^����f=#K�m{9���J��I=¥e�)]&,[�v��7�`s�e�r�R�P�J;����=
LB)ˆ�8}���s7�!ՂO�����}�֨P���6�RR,1��p/T�V�<�Ob?�qq%������x��g5f��<�eg�O#4 � ����?$y�i��{:�ի�����kf�ƹ�}�&��֩��<�E�"Q�v:6�3-�@�reЫGW|��`�_b,��2�]/��F�-���V5o��j��~��Qb_th�͛7�XKÇ��f�b2����gF0���K4?5�|�E���e�%p֙'���*h~��?q�
���{��j= HL��Sf�����;��0�iL�Ͽ�Nk�n�F|�ٷ��b��˖�?���ݧGt2xR�0S����0W���{sl���RW>�&O���<%v��ϩP!�(y��b�%�\<Ѵ��y��0i
�81��#��<'��6uH�Rt�x6J�
��.v�&�rҦu�s��Z�毅;���"J"�|/Ed��8��\��u���N���b�a��	�od��;/jR�@D���o3�2�a}"�/_��͍�O��x�Q����V䌟���*ˆ�e��~��G�j����}��X�ҷne�m�2��A����Fo7����}��F��Ά@j^�SC��i#vٓ8`�8��#���߫W�;���;�����/�g�m��ͣ���^�4r->�ðsb�.���,!2���g_��Q��#u�����9]ӟm��~�ƒ�7��5����NЊ�M�N,6ϰ�.2ϸ��g��Z8�ģ��R7{fg}���ڿ���R���Xg�%��L���p� ��B!{��,��䝾{�8@�㖎��5��wף
����߹)�퉂x:�q�1G`W,_���3���F�~bQ��Vڱ�:翸�KWq+�c�v��9A>�[���ΐI�q�O��V�1G^�r��=<4n�P?�J'��I'���G�.�]vZZ1rp�B��	LB)x��k^ 6l�F4b5i��v�Z�S�����F(���3�[��+�ݓ���ϕW\d|��o˖��_c��I���O��Ath��2e��zȳ��3����q�y@�^999�Ӆg�������-�7���l��L����"�{�)(�j{��D���ؼyƍ��c�>L�/��šuV��=���7��}q�_n�~�47�%ף�&L���3�N�}��:sQ���j���’�˱u�v��':@%��k��眆��A�p�%a��u����u��m�'��$V����8���pV�䣦k̏�[����d������f�cu�EWc�)���K��x�
�R��#Ƅ���C���¾���C~��Z��"�*�8�1�x�~��l`��<���t�ddA�{I+za9A���9�ҝ�^lxۏDƸ�cϺ���"D���='�Yk�h�����:��A
=gD���c�X��XE5��z &���?Ǘ�����c
�1XD)�@$�ڽ�x�DjlQ��z�
�]��q�(gIX���zD��β;HY�z^�x�Ej_q��y�������=��#��(�-�3ĵ�w�'%>U~n6[V��X>>�j�5j�ׄ��6k�$�G&�9�<��>�	U*�7��Vn�!&O��߻u�N�ڡe�I��ZN���m��y�N�� 1�����ץ�����#��K�Zφ8�#�5��|�y�٦V5�\u�_��	����p��
�\���gG�k�RV�yJ&����s���Y��"���n
=���%�+B�`~���1l�H#��7BgM30���3yk.h����8�z�GJ�,��r�%���>`M��U�W�.��֯U�T
�p�yg�䓎����#��.[^�	!$?>��Ø(�yz�<�оV8�����B!�LB)"|;�G#�M�e���0����[��+Y�
>�'Յj|��/5‘��>��u2@#b�FS�`�z5r�m�Z]�d�x��Qb��IL�j)G�̭[��,��ص�ik.�d�/R�y瞪��Q���{�� �.^愉ST�F���.�d ���C�_���?R�wܷ�
�NL�T��A��N��d�u�A��"#cSJ�={u����c�L�=���s��Tb7m1q�"��ȶ�x5U�*^,
��w2�wݺt����y��Ɖ�B�reԝ�+��Wg����Vbي�a�.u@�f�l� �W\��\\�P��*]��������9xaW�H4tR�	�~�Ċh��J�X��2I�ZCQ��/vш[�~L��9?�Uڔ�;_�V��B��`x7��"j��#.A�a�V��]�<�8��B��/�j���k�	�~l�D�gcbkJ�Rv�r�ۅ%d`���ʴ�둨���G�tl���+�	�^~�����
�f��˗טR;�~�g���JU�z�B�ig��䓿��O>q��_��y.<v���M�j娞�uj�a������Y�m��^A�k��ym߮�[.l@���q�٧�l�V�*Z�,h1#��Y>�״q��t������\H=4���8_;H�e�{Żo�5k�S~44��4hX��B��~�yהI���WB��]q�՗ڭ�NBȁLB���>"�͛����2&~����ԓ���>ԫ�����P�L���ku�G"�X� ��+�����]�3^g�K@��F�ܶ�sF��K� 2+_�Xʐ%J�����o�����k�ҥ��ࡶ���M�� �e�q'��V�V���q5fS�v�ǩgE��8����&�6����k�?��P3�5o�B�rKqM���~[�|��jT��bsj}�d��!CG��	�Am݀Z��z�ă�م��1:�A=�LY�nm�[<၂�<�239T�V��
1�8C1�$�0Τh[I��4�ZbA&��z~'���HĴš|���I�~�5�H���Y˾(�npߝ�T�V�*�����F��u��y�s9��4N�
/ն-�
�v�ͅg��Z�cR����"j�]�'
Ϟw�
���qݰ�K�=z��sY�`��J�����n����=���}	!���O��S�	,/�JT�<?��‘I��Q�k��5h޼�yFކi�f�n�Z��.	!�F<|��k�$^J�ޛ��K!(`BH�������l��*��u���*^��ۚ�o����Կ�-�O���)��lي{�Tc�&}kI�)[��f�٤�5AY�b{���QX�|.\��
�a��6M�빓@�;+����X
�#{{��'X�e�m����5{��	#��B�zO�,��22��8��R3!�Yc��M+Qi�Ґ��/�[n�ԓJ\	JUj���RR�,Y�jCQ��i�x$4N遌Z[Z��w.��0���s&t�C��د�΍</�C11�ϳv��7��	�r�H+��#tu�G��#�+i�D5+�Z	0i�%��zԉ~��2J#�)��'�W���hF��8���k"sԝs�
�\�!T�q��㣿���#�/�|�}��a���I/�zu�E��1O����Rӏ��a;-ᎃ=
��60�
��/B�=�i�gJ��~�b�ЪeS�q�
�^�H�{���e������#Gm��J�D�.�[�ָp�BO�B�V)B!,(`B�>'p�ݳ+.<��p�XD֨QU���W�q�_~?�8,�O܎�6m��>~��y�S�V:�kcw*��[q�;f�Dua����%�*U
���[���C���	�ʖ�C��Ec/�p�D Pl7��C?�3gk>"�}�a�ر��j�^�
���.,��euT0��u�7n�P�Mq�'��������]a��U�/xK]%V��b�df��E&�25�f�#c"�s�*֖�f�^�O�z)MFc�pxNzNћ�	����vz^u{'���U�	jalI?_]�q.�ܦn^cڠ��Ǫ�(��XY �oT9�s��=�0&����k�<q�0�lKCd���E��d6��̷�ſL�����K㹸�~h5���o�/v�$�j��'���˂�����OJ!{��v��C3��윓N8Z�,Z�L�_%�f�5P�Ze��!�B��I!E_��t9�c�:����<?
~oѼ1�y��(U�ܐ��8��Ʒ4�ǟ~��'L��U�ׄ"H�mШA�0�z�74�Z�hn����Z�~��b}X�dI�o��e�=w~hGv޹�㺫.-��o�`��pK���b��E�nӦ,L�:��n����M��!8����Q�Ϝ��s䨱jiYL�C��;~b�݁�M+�,蜐f�D &bV~�Ӊ[)¦K��b�Н�
v~�����<?�zteG�k!m�E�X:#3.�
�;_i�O2���H�s֝a^q�64��m;"4nt}!)��9�6.��~�u��8�m��`=f�3S�ބX}�*cnu���j{T\�-M�m=ϝ.6g$�:-4�l
Kr�ā瞙R�[U*W�e�EQ�&�@!�B)'hBH���r�&����́Ut�R*�k$v�ПGcO��ԓ�CI�s�i���A��Q3��}�/�C�>�Q̺���o��!�go�s��v�z�|�=8��Kp�W�{��o��An�(}Ԯ%�&#YB�z�[���R���Ye}���7o�;������;a��Y;���<U�TF�Ν�7+V���{D]��Y��G���n=�$gu�%"�KϺ���T�JX5˹�M��$Cw��<哌��i�rϏY[��k
`�A�q�+k��Ø��2"�3�B�K'�����{�ؚv��K*�6���*JE}�?W����R�L"��E?l���s�縉��3�й�څ�w��G����D$��bB��k%�۴��KXϋ,3��~�2؏���+Rpߦ�C)�B!�B!�'��$��G)V��-k`�U:�>r�x����Bv���x���z��=&��h�uj���K���	'#�+[ڷB��^B����[�W�.:l���[`�	�Ա�	|���k5����O��W��n�ĭ���o8�5��x�ѧ_��*�3�~x��w���7��\y36����7`ٲ�roĚ��d�bFP>#G���L����?���P�xqlٺU�z:C�MZ�A��HX�ЏY+Z�η1U�K��إ�'}k���[Y�a��SV����H��E�B�,�E�ĺ�KZg1�Z���u���t�����5}?p�{����j0������V+�:�72b��Z�x�^`}�NjYhFžs��5=?D}+*����o1YЊ�����������s"�S��Z�ҏ�9���B�YRzNഖ�IW�W��(Ə��u�#�B!�B�;�ӌQŒI"/�c�1B��h(]���	��H1��E�D&>��֡(P@&r�x)5)4�x�R�
2Q���+/�W_;rrs46�'�}��?�J�$����a#F#�{�_j]��9S����eY�]���8l���s�/�]�����vF� �ؕw�~n��=�6}���3f�1���*kÉ��y眢�E��ݽ��v�n[�~~왰��5��V͚X�pQX��2e��?_�[�|YY�u��M�0i�TMY�ZvH?����Q]�x.�6o�O@�ز��Q0�[�g����ĝ�]�y҈�����\�3jϟo�w���|9����C�s���ȳ]��}�t��΢ΦMZ�.�ċŨ��)P�y���;��(�R����?�`Kx��@����<�2����x���x�m])נD�ҋ��ʲ��uB��ʉwBװ"A.^
�6�����S��e��g-��X]��3t�«ƫ�tnR�gcdzV�T���+�SYw`��ُ7-��
�v]���5��c��X߹���@�]B!�B!��ov!+�eV`�%)^r����{�H"�bb�n��!����2��Nnc�{�E��P�~��J�J��p�=F����N��<|�B wĝ"6؞OD-@��<%K�H�r��G�S��+зժV��O<���=U*W�v�7�͚6ƭ7]����
0A���&�{֩(_��Y���n]:⑇��r���HTn����w�m�*�V >�C[�㡻Q�z�d%�j]0����'�H�*��nO$8��c������3N4�BGԩ-�<�x��_����%��KhI�@�L�^�'��1t5/L�ń� �H�&<X!̙����Q����K��A/��-EH�1��)l@4��wF�Nߋ[�������!:C��)������Иi�19U����ы��{���z3&:�Ӌ���K��]���0���o���0�{�GB��2�R��D�W��\�P(���SC��e���x	!�B!�B�g���o�)�l	BȁE�b@ٲ��L�>�4+ҪĤis�f��a���:��vWa�o/�v���쒵ʧ�嫖������B����a���X�v=*U��"^ZZ"_ڝ���u��@<�?i�I�B��x�N�t�2���Y\���v/\�k֬UA/=��׫c�I ���[�nŜ��m[6j׮��uj�l��zX�rV�^��ժ�P�y�����Ѷ�5fJ9@��ߝ~*���\t�s4\|�C�>r~��_�x{�2,Z�%��A��C/0�����n
�;�?��0�6��O�tB��n-�
����i��V&�uaV�*t�x1���b��Y��;�</:��ȉ�^ЁQy^ʜ�@�OUW�s�j]������2�?hG"�qQ�xa7��w�E��ؙnGߖ%15���
��ؑ��ɘ�����@cf"#չ�
r��Z�Rq�کR*����`�>����;!�r�;!�r�Q���7���xIȁI^���&�m/<���|{��Ҏ���޵i������q��藵yʖ)�o��6��>���n��_aI���6��Q�`���mҸ�~
�'�7X.]�ڷk��ۮʉoK�US?;gg}�Rޮ���#���\q<i�t��Y�J%<x��z8�w܄ɡ&Ǫj��8PP�.͋y.���[븤M��[O:�ΪT���?�P��U�p� ����鎕�H�Ҭ�^�'�i�Ҡ:q��0S8�n�����!��T�͏���J��ߊ�A1SE�P���ƝI��j����:ߝ��N���
�Z˪Kk����ȅnT?ٞ����}���u:�n�6'�R�<bh�5�wR�.�������GJS��ڨo[L�(0�d���:��vUO�i�X
Χ�O�)�����켮{��uسm$����p�",_�-�5C��Ub[�/��K]�����5kQ�N�.����l�
4jX?��̬,�/W�S˙7�y�n��֬]k��E��Z���߬�Y:y�A����Qt/Y�jʗ/�2f���&u#�c���چʕ*�r��&^"6��ä�SС}� Ͻ���;˴m�-�Y��f�m�63��Ŋ���}�P���@���c��զO*�:��/F��Ⱦ�y^���d���W�re����y3ʕ-B�_�#10	!|_&E��EF^p*Ҋ%��=�
"�ơ;���y�e�@�EK�߆�M�,ƙ���.~%.�~�V%J��'�y�M��<�1Z�K����ҳ�I�ʎ��L���x�N�Bѳ"e�v6���!TƐ��Z!�OY]Ƞ�J���^(���Џ,85G?�cW�Ծ�]���q/.�:w�	+zZ����"���@)���Ȓ4a���zEM4��i�'b�m#��VhԒ]�m˭��b����V���|q���3�v2P8���1R���N�~OX�ѠQ�
��9��	С�l���|��k�=S{R@۝z���]��λ��	s;�v\�O؋�P�$��M�
���~�4��d��5���Y�LYlݺEE�a�F�:u�ڈ�u��6�~�аA}�_��֯C�.���U��8����}{6�Λoֵ@7�}��F�l��?��^s9�U���>����@'�&�3o�R��{�"�F���3�x�t�����0z�X#ȕC�:�1s�lq�!����G��F�+m��ի�O��R�K�o��3n6m�B�vm�i��M�2Ѯm�4t8���	'c�8��CL���PT2BfM�L]�����5��[�x�1G
0"m6����j��M�93f�F��-1j�ԪU&MF�vm�f�:�O�M4�ʕ-��w��3f��N;�D#��0���cS�d	�h��&MA�.�0n�$/��zu�~���-[���݈�u�ӵ��?�h=V�o�F����� �V-|7�G�{��hذ!!d�ӳ	!��L�<M]��Q�x(���?]x6Z�h�o8���o{X���/ă�<���(�y�S=f2@W�x1��g�e��8`��2��9JN��{Ntc":K=Y��w/Lh]�Ah�.��ݲ�w���iFU�#M3L�#�P���>B�>�2��	�����)�"�ò����-TC12_����a~~TPXX��s�'�P�
b\q0�֡q��O�6Ww�6�,Q}�
�;!4.�ڭ^2���w���ڴ��©�'�3�I��a��{��'���Ax��70��:P)%�Wer��m�N�-rrrt�lۺm��$��͛�v�:6\�t]�h1>��3lٲ�ە�|?�����k�ݬ��۶o7��h~�z^�~�Ït��f0v��EX�t��-Y/�(��)_�?��� �z�%�,�����o�a�F-[�m�mr����?��!�"���|$��E�˽c�T�>�"�f�H��9�&�����	�`�!�ʀ���1e�5���0M+��N�'b�"yiڜl�oPk��d���zɾA�I��9zL�Nҟ��ܹ�� vFX����lhz���zH�Ro���&�$c�ߤ�?��>� <fr~���s.d�v�@��a�|���a^S�M7m^�i���3fbɒ��/��zIK��>!���%�<ӎ3uꀍ���6I�՝���q�s���o��=�wä)��T�z���Q�;>�w�b���hܤ��O���x��`ָI#T�R		�>w�
)#V����E�j�0e�4�?Κ=G�{�
����ݺ"�y����Js��2u�N�-f�%垷v�Z���G��ƍ�W��A?�	U|��{����M�~<+W�RQT�<ͽ�Q�*ʽY�&e�4�g�����<�/Eh�dD��-��R���������/�g�v�pXۈ�r�>b���rW����Pֈ�"�.6��M�UL�W�X���ڴ{Ŋ��>�mѱz�Z�~�9>S���d��%�y�h۶5�ӤE�]�p�/�Y�&*��qk�����@LB!����ʕ�Q�nml4/
%�7�
q����w����#�V
<|�x�/� �`�"�,T���2�K�k�N���ѡ}[H�J�-M#�"�T/?N,s��N$�o1�G��q�B?�i(���Z(:z1CG�ZH"R��^(���a��66fMK�jIn~̖ƃs���I����eW尨|�q�15?خȃ��ב�D\��U"v,��dd��E� �@[Y?�^J�S���c���c�E�yP�����k���IȞA�7m��f0RYg�A��U��
ccƎG��=�~�,7�9�98���jM�u�6�X�
��C�ʕ̺�:Py�՗�U�|9����p3n�Z�̚=]:w2����P�ti�+Wf�U����M����~�Z�hfD0�?�P��W�lD�<�x±XkDDZ&o����Z�X�7�P7^�Z���m�X�|�
r�w�FW�PA?�]��e4���ʵ�x�j#�y�a�3w~�i���;�cQɴ�Ï>A�R�q�i'�Ͻ�m����>��,�2��>�V���3g��X�E�X�Ƞ�L�o2@,�2"�
7��u�u��}�1�`��$V�Z�jT�f+�~H��6�f��'��_z�W@u�N鷫 ��͠�X�do��+���V<5jT3b.�����G�A�z�Z��Z�6��b�#��E`�h��Ա��6F���Cy�ټy�����"3`.�!ۜ'�W�Q�R�o��(n�8##��ޜ�P�j�0�u��O�ۛ�W0����S�yi��>W͘9����-���鉦M�Ib���	E��\K�)F�ק5̧��v�8X�\ۺu��Ƙ�iBE0�d!��.Y�?�k�}��}�\�2��*ֆ��V�Nu+M�+n��Ցk�J��Ҡ~}��K֚�h���m�V��"��fs��4�rMkMA]����+�b�>y92Q�7��L�g���/���Z�ܫ*U��������/�F���^��z��ܶU-Ae�܋���z+I�L]�f
T1��m[��{bi,7��b�r?���Z��&S�5gA�b�J�b�q"hfee��h~�VW�Ɋ�f�v�z.�I�Z�L�I�$�mz?�cR�d	#pnԷ����rsrP��3�TB�ȱ��i��#�uL�˚c#mmRh�B)zP�$��_r�	G����c���K$��ٷT�VW^z.8�T,]�
+W�R7D�*�GzzMT7��9�8O�_%��ט��,���؄U��V����m��l�� }(4ZbnX�|��p������8�.}az��"=Z�x���a��i}^�7(#�(���~
�BW��RCQ/f��{A~���A��X51+Q/������������TbP"�(�����-4~�\
�HȌ�(j"<0���p�x1q�i� ��i�ڡ��;�S�'�6bV���kD�>���F"(�4���W�4���:�(b�X���$�"��n�B-)D��MN�(���9�T�z��f���2��<�뀤��
�8!–x�}�	*d�~B�6��t�r#64��8�0˜X�T4��̳R�>�T����S����>�[̠tC#��U��nڴI��\�v��7~��CDĜ�l8�q���n�E����*2�O��2�*��Mݥ��5s�I��ࢶ~�:�}���޺u{X�NګU���b
X�d���޸a��7�����qÆz���y�fj�"q�eߞ=���Gܕur�d�Z�Z�rlެ��ަ��UL��N�n�K	��l9�b�S�n3?��%�R�J}%BK�sA��4I+"��9sU��n�ik7j������>�ߩӆ��Z��'��BUSf#�~��C͚ձt�r=:�k��W��+qX�|޹gǶ�8���uiŊj=٣GW�m�Z�կWO��%}�^=�]�G{׭[W?�✳�L�.8z��׿]ѣ{�p���O
�EX�ӷoo�{H�������?����0q�.w��r]>r�)iڛk�|'�p\�ܱC{�̓k׶m�z�P��#�߯��c�_o�ǂB���G32@9@�X�����C�fE��cҴ9~�F�@�W�I|���-�c����wF.��[���-�?OcJ�D�
Y*��AT�@��粊��0�
�P�BBN/E�
eJ�����ed���eMg�D""!-�YaΥ���@!G4Š�K�9�J[�0�gԤ�B2�{T!3�C�.~$|F1.�&�uK���Q�6' F�tV���[���S�|^�Z*�V����T��=������jj��֟�!�\����u*��ɝjҚߟ9���?��dO#��CJ�m�&ŊPH���3gɒ%���uG��M�f͙�J*჏?���Y�����*�m��h�4:K�<Dx+�M�eEy#�͚5GE?qq*b��1�U�ؾ��;�	\7nT1P~�b5(V�"ĭ]��Z5�+�ܹ����CE@wyŋWm��5:i��H�10#C�(V5�*V�.S����XW�7�-^�n�$W�^��
��ȓ�����V,E<UD]���	M+ͲXLj5��4�}�BD��ˠ�X�̙;mZ��r�&��k=i���r���""�u3p�T�^k׭S��b])�*�)�K�u�o46��Ūg՚�H�(e�m�
�1��f}I��6_쥭��Vuӻ]�a�ʲvz�ASb���J����2�}+�W�[�<�4�G�W�^F<�	yү�L�K�k֮1�qIsΤk?��-�S���s$�g�Z�J{�,Y�b�6s>�9���S�G'ub���S����}Ŏ��	!d��(��wLB���I!�ϻ#���~k�u;�����
`�7��'E�?�,��ˋ��q1�	r�
Zh�
�8��E�H ���p�!
��҄U�
D
��Q�
y~�$��++��G�Z�E�i:�`;����j���a>!1jP���"���4KI/�'Ľ���o/��N�?�Մ������>
��x�j{�T.��;R�$do��pFD�zq$>�u{
��m^�}�PI��,#�:�~d���"��0IHQ����T�2|��?HM[ة�u�	�G!�!;�kg�Ԟ�ޓ,����]+5_�L M�c��{��0�x�v&�Fۣ<SrJI�I��i
�YX_���1E[Bt�3B!���Z//���6)/��S���i����?KLX�$b+}'��^~c֔*�y�[��y�^h��:'��Rx~$^�:��HĶy�����{jFV,L�y1�����=/�Hqs�^�6�.]LÅ��
:�G{�5�;$�d,o�.�ߊ�N�N�O��ȟDJ�RS竣��x�6��y�D�0�=�`��x^�4�o��]��KaO���X�R�x�/b�K�R4���[w�99�����K����i9Ǻ���o�W��}hb/��v��+�Hl�ٳg���\ ��r|��0Q�K�"���ou�j�x�C�n���-H����M��^��aõN�z}�رv���s���ƥ�H�/l�d��,O�9K��oب1�]�W}���Kv����ݾ������f�Q���ڕ��o�����{�Y-n�%?� 1DŲ����૯���q����ꚭyDm
�)�$�5!��k�B�+~�LAB�&�2)��6eB��)+������m^dM��V�@��懑KP�0"㶁�m��^l��[pEx^�z��LaE�(��I �Ɓ�3��Cl�J�X��]e(��-2���o'Z�n	ۄ���|�+\�˄���%\l���h�r���zy��ȑ�%u�!H;�=?����z1��v�{p݇�_R�{�~�x��Ix���B�q�	�˛6ej��ի�;�ʕ*Y4J+��"X�T
������Vtٲ�Y���7-���}}�Y�Nݽ��!��q�6�rťi�*U4n�[/.h�o��ڵkQ�|9uq*�ie�z��
&�j���[�zU��x(l�G�nr���Ή�H�m��E�|n1���z5H�܋�_S���I���:�/D�ƍ�Z2��Y�@]e`Y&�Hl�+W����`���7^��"(�!_;	!d���aժ�hܨ!�͘���u�z#��m�Z]����u��q���6}fp�0�)S��C�vX�f-�<�4|��'ꪼv�t��M�6�b5�s�:��3���D��J�.�I�'��JU�3��
�`�K����1hڤ1fΚ���櫸&�7��J��m1n�$��U�_�O>�B�7qA.14۶i�#�V�PY���ŗ_#c�&u�=j�xu�^�^,]�-[����ҿ�]ܹ��W�ޭ��_��č�����{A�����YFH�ƈ���p���~���ڵӱ��%~�֭[0C��@0l԰�Ƒ���5u�?�{����c���G��۪�_x�U��P�~=l�َ�&�^=�a��?����+[N��89b�Xt2ǡe��x������k�s��G�C�&M�>�j�*�=��hԨ��I�~��ʽ�m�6�5g6�5m
BٗP�$����H��o�M�$~^�����%K��g_�T��8�̓4���&~�^5�"�1����y�o3/�K�գ	��-���v�B"�3�S��ϋ,CM��g�EQ�Yxz�ݡ��%�6fE>�X�~$"����{)c����0�e������OR���u0�iݎ�b��D���U�E'���aq/�R�~s������ �ej��W?E��I��v�[��1+K�	�b�&4�jjF����v#P�?yfгQ���kkת�Uk֠��DĜ3g&��c��1/���jcĺ��l��H�|�…�gr[�j���V���4���`\~�Th�ڼ�`.F3�^+]ˑ�"0J�yft��hѼ�Pތ~}za��q�U��5k����V�ZF4�0�s��L��c���fp�1�}�Cԩ�����S�MG�����&S߅fP�$:�k��Ϙ9��e>z�쁵�֠}�6k�+�K�,�v�)S��f�p+q2%��5��J_ɠ�ISԂ��T;u�#ǠM�nЏ�'�Z��ӧ%K����ԩ�T<mҨ����hѢ��^j�@���i���P��ϊ��M���n��Q{kԬ��ܤ,W�L����N��_|�����ӧ���>�Ĵ��ٷ�̷1��up��
2�-�K,Ӡ�-Ut&����s�Qr�	�z[��5y̸��۫��G26fؘ�� Ƴ1�kX��0x�pl1]�J��I���t�2�>���Z�-�9����fr
��I�re��W.Ҙ�".֮]�L�ŲO��U�P^��N�:j�h�#ܷOO�lР�R��@�ڴ6b�T���fD?���yJ�,��2T�qs��
hܸ6ed�ЃVR�@�	?"�I��~��_�}A\~�5z���40�r��#1�e�K�Z5P̴O,)�ޱC{��2��!c#jT�f��F��kʟ�٦�b�(}*Bo��5�},K'݈�(b���2YG��=�T�hڸ1��\���P<<t4�M�T]�h	*W,�1�������9��i{�@���+q��k���֭���|�l!.�k���h�&��2�
�����I!E�I��a��ѐ���b8�P��(�5��x:sv����d�8��S՝����z�}�u����N�{nÁM`��;k��=�W�,	����\��(x�V��$���6�c-��؀&�œ-H�>gNi��@�Y�Ě	�qQ/���Y"����YkR���#q1a]��v�a0�y�>~����^\\�rv�N�uk]����A�*�&��72E�V6a�������uG���t�X�'8f�q0�ӷ�3R�r�,�lJ�}�u v�Z�T0��u`��a��Ze��Q�d��je)b�\��l�r��+��
��.ӧ�T듒�~[�Li3�:])[�l�5�ך��j
�`�"���SD���9?�	�s$&�ޞ=�a�1z7~2���믾�������ވ/��Gq�Ԟ��2�*"f�fMU�[���U,<Z��W��WLѳG�n:��y���:�ݡ];|��78�cu���>G�ʕuP\�˛��o��V�"���ͷߩU�\�k���>���U*�/�W��׫�����]:k�J����Y�F(c�.,[���}�
�
��W14�,˳K�5M51t��8���1�l������^�ʈƒ�E���Q�v:��Af]+��8�,]bD�z�u�<�g��l^i�6S�6mZa�*��!��r,2�~�I൛�79�����䓎�	2�R�c�ƴ3ЪEd�䠭�wթS�l��.���1c�{_it��y9�hݺ��&h~'�p�^ӻu���2�c�? i�w����2A�x��fij�˖�ko:�lۦ�M�~(���[�H��-�뽲�T�Z>o�0�&�
�B��"7�{����Z5kb�I8ѴM�(c��s���ަMʹ�5�p(��R�K�Q���0^�?r����L�at�Wk�O�U^Ž�j!YΈ|"��	mOoS�	'�y�f:�%��U�=L�ЌMY:�&��F��b����[��c��~�ڥrM�J��t9H��r��nR��R��s;�`�/"芗y����^V�~4hX���:b�h�̳Ĥo԰�z%�4e�Z�����s�h���J='�,YJ-Q��B�5��J4�A�n�hݲ%.����?��c�7����~'���36���p�2+�b�
�:��^~K���|�~�����"�WfΚgcM�:���y��
���w�����R�
8ḣU�ܸq�y�Zw.O�>����U��Uk�|֯�����RMC�9k�(�T�n��|gň�E�|K�X��f��8���#�����@�f}2��D� ���3�
��r�wY[!/Pc�2S�+-/ᅢc��Cd+�V������L%�Jº��	�B0�9]�������"�J_��1q��9��1!QW%\]�Og�DNg�Y`�%���@j���DL��G�.q�|��[&�#V�{B��
���lz��BȾ���T�1Q�wbe'n�d�U��R/e�R,WĂP���:�nXeP��`m߶������(6|J�L\ىk�bF\ܼy�>��uKvv1T�^��&�����F����_~mDВjq"&S�MӁۉ���8(���fw�U&_��llepT��#G���l#�I^�*V�vH�RQ�=D���U����fPw�T˙�
f ��t�k���׫[�Zx�6U�~[dA���<*�Rĥ�"��Z�������s�O�P��f��oy&�{�f`|��f ����z��f`��>ߖ-[N�K�Y�jUӿ�͠x�:*����ODLNE�mbQ��@�X�\�J�W\�X�U�UA	#��[�Ac�v5��M,n3�6�A�z��P�.�h�J�]�_��<d��|�&��-��\>B���Z�Q�r�u��Чw/�+"��^���C��}�v�Z�L,"� ��Zja�i�~b����-�q1�k�փ���?���A<�u��S�5lۜ�a����_�z
�X�b�(��}�􊕜Ӧת<�ۧ�vr�C����S��r�����|���?
��I߬iT����\���UiTW_]�ʻ��'�CɠO�{�}D���������p�]'�ЧWO���\�BȾÌ��6_��M{�ɘ>s��,�~�}x�p�r��Ј�f�,�;!��o��&O��m���I����þ!��~��@�s���ڇ��8����z�?�<����O��&��5$��q'����,:�ݣ+�z�߽\�q�m�����‰��'���~�c{�r�58����?I��<���|�����`]o����;#�c�mH�E��DG1AJ�&13=#�x
l����	'pB\B����7���\��$�Ne��S�˽K~��nq¤gEM�	�G��.3������T��|:���@4T�R�ŔU'����H'�Fuq��!_�Q�C�M�K$�:a5褘x��,2q�j��*a�̸D$hZUѕ�?� ng4�kZ�ZY5jg�6r2\�r	�ԡFl��c΂%����o��D,�IJ���}S,�}�x'�>&M��"��3��0&f����_p{<ݗ_}�.jW��}uq*��׷�/*�ձ�t�����ǯ_�@v�G;�3�auߝ�����;	(�b��R�S'���|�!��=OQ���}j�9}ƌ@�,_^gZ�u�
��$����ai��A��4��{_	j��,~��|�K���U�F��+q�'�l��:C4�j�c�d�|<��!^��*`!�<�F����#��*�.th�ݪr	+y&�;Z+���ϼ 6��6ڞ��R�Ąg-2��(l�Է1,}?�!~Ԧ௝u�E��#:���M׾@���+�
�"���,�\�"�+W��3�k��%�b�����X�~��5lK$�O�R�k�a' \�T1���=�����oa�����I���9��#W���o�R]F�:X��	^�	)����!��X�v�Km���7'�vW"Y8!"���c������_��"�YY����+����?~��_#"�n��}��?�Sq�-�q_*�1w�R'�H\�����V�99�(^����U���U�N���G%���d�
�/����}��gp��W�A�(`B����
�ՅT\��ܜ�u���úL�(0��E#��k��9j!).WčJ|�|�,�`�|�m�=k6o݌2�K�I��(_�L�M+�6fd��y7�/q�n2X^�B9S��(l�<++��ˍs�(nG$VR�.A�7��7y�7�u�nm��
F�m�vu�۲yS���W_[���ؾ}[ ~�4�+UT+�x�o0}��$.��u�=�,o֭߈�u��)kܨ~�m�/jq֬]��K��K�ʕ*�i�����u2��q;�!/��J���s��W�r�+VDs�۪`�;"*Gb�H\
��R%K�6����`���w�ObU�k���"�vM=߼�/�q2Lڒ�J�[6q�\�Byd���M��غe[Jzq��v�z��H�����e�N�b���9k
�d�N(�W!�u�K�j[1�M���Hg-<�4��Y"(�O1߳�_w�j��:��s��Z��*:ڲ#�������r�W��g�.b�eX1/.m��e��6>0`t}���I/��ݧz�r5�"}W���F
��à?]������[/5���#ENLX�7<��������e�(ᥬIsƖ~4a@�I�DpW'��єB���۟'B�936"ü��[my���z��7�ӽ��_��{����k�fb�yG�q��)�}"V�{�I��^+V�T���߈��p���k�+W�A�zXbޓ+T,�A?A�~}�yw��qhӦ5�V��Ͽ�=�wӴ�׬A���H+����Qܽ��Yy�4�"2 u�WW\��B���9r�hԭS=�u����a�3�YB9�X�lN<��h�����6�'ѲY�����x,�]�n����ê�k���ӱC�s�-�_�.�?�K�������4۳��}��_���?��A�^q��_�ͼ�7	Gs�~}���ЫG�B�ڛؘ�?p'�?%��~�-��XA���_�%t�5w����g1a�����q�;'�p��aqy�)|�� ].W��y��З�Ǟg'y�}Ǎ�����s��h^�ƚ��Ƚc%�u�Y��ԓ�-4~������^���u?g�&��)'��9�ơ��SǞ|�������D�^���#V���:�]��&t��q�g��<�~�#���*;YI^����\u1��M/����-�{�
,_�*<'9�����)#g�w9֮_����E��/������SE���<|�e�~���˳�h_�E�ќ�Ԅ�R���cF��~IC��A61�t�8Z:��a<�@oC�
j��SW�N�$�@��B��Gh�,�����G��������T^����@�GmP�Eʤg�g�"/���Ek�i�{a�S��X�ڝ�Z�Т�!%"5�I�1�:��FQ+CK[?�_Š�ɨj�䋘�o��lϞ3ɘ;�D>q3ڛB!��]��ǟ�t��:	us�#Ff�f�*�5�m�Th�	��V<cS���y�H��+�e˖-���e���x+Ϩ�\u��{N�6C�;E���#�KbVN�>}{�ªU��g�-[�b�����(S���g�0�E�1�N�t�3�,D#n.X���ZǔE����ո�1	!d�g�9�r�ep�a����Oֿ�*�Bt"˙�UO��
�m&O��;��w�6�C$��I��K���к�|��+�����⥇���ǐ�#p��Wb��cR��XN�>"�Ë�_�]B����q�'�K�a���Z!�8��4�~��t��O�3�͉	]�Z����p�%���L<_gi��n�(��4.�����������ƌL<��+�����21����~�K��	��N���-�dƩĆ<����ҾĹZ�<$�e+q��g̚3}0덐x�u���'��9 �x����O=o^ 7"������b�Cp湗�б�[��	����o<�e����F����DZe�֝��uNY���$ݯ�+�m!΂v;aR��oD�Wa0��Yp��ݨ|��	��2�d"��L�J�WAv���*6p�5C�O�#�6���д���2�,͆4+^&\m�~	���o���P���p.q�hퟄ�؞ ��+��������
	�^�ot銩��Y���yN,���������2��ua8�ֶͶϵ��aW:�r,Ҁ�t�w�|����$\�.?&��Q���qO؂#7����B!��]�Ux�6�ѤQ#-œѶ�۬���4�/Q\=�,YR�B�7Bb��
U�6h�jժ�~���U�̾[�(L�J�2$M��
԰e�ԩ�P���ru{Vf&V�q��*�l�*nh˨�Z�+�s[�h�<��>CJ��V�b��2m}!����3L��.�.c[�j��Eؼ�r`#/bY�ΈI"0:5��:u��l�4����O=���u��Vad��e�`�z#����{����+%�����ի���8�p�44�̚9G-9sMy��c��v��H9�7��kb�j)��-Sul�e����f�С
j׮����j�1c'�z�x����a#�̟��L�&
���	�q��������ݣ�ը��Sg`�ź���Kqӭ�ۯ��z��v{redq����@5f�|�%��Z!ՔӮMKԪY�M�-[�\��>�
�r˵Z9&/������7:��z�T��!�F��+��Y�������
)e�ǟ}�bg��5�9S
�M�s�:*�>����ؾ��<ކ�N��=lʜ�uѤE���ս+�o�h���Xk�u{6�z��x��'�Kdm�o��5���ӗ–��u
�
eD��+P��ҚqԷww�gϝ�oѼ	jT�����oE2�����.Nc8aAb2zy𬴆p=Bw�6�e4�!�����#K@ZL����X�V8��'��{Zg�gm*=?v��v[Š�	+�Z��I��Ym�^���e�N1���3]$],ϴ�S]ոe�g��(n�gE`{nz���`�Tӵ�s��g�N�BQY�Ʃ�>�r��t�%='�=�
�v{����\�‹��*#����>��ˍڰ��CB!�Bp����;����i�J�"$�G�jU�ҷ��I�~+`��[�r6����n6Ͼ�v2��F;�	ifB�/˕-��O=�D�]��j�Dz�Z+Z���|�
8���5DL�%5f�X}V�X�j�]C���E��mۍ�*c'�~�A�D�%�����́���b?�B�P�N]0G�O�n�@!*"�<�����oq��YpCϗ]r^w��h$�/�g��'5j��}񭺓Ű���5�D	�l�
}po֤6o�b���)'k��}+��Ͽ
ܮ�[�+W�|�r�����Ϸ.\}�7B���_�N�����=O��E���9�U�Z6��KL��,Y��ݳ�
|R�}��.��sǭ���T�W������s��?g�|1Z�`����Q�ٛol^�����ˍ8���M}�k��kn�������K.@�*�������e}�F�m�y�|�18�O�`�x��a?��UYi��'����FzH��1v���G�XJ}�X�Ky�+�
�r�)�dȓ��[�UAZ�Ϝ5W_61s��Mx��/p�u�k��_};x	��m����*T3"�m�x��O�s�;�w��3ԫ��s_��>����]|���
��1�����Y�Y|'�YQ��0U�|k���1ףq?��t�@��S��U�o���
\�ʗ������\̊�t�"r��r�`Cx�X���m����d��%�'(xH�B�
5H��\"j���V�t�HH[��3ú�ն$B����ʺZ�i��4][�D�N�3�c14]�$���
�.�M2E��K"P�b�i"Lc+����uuk�$Q:i[�gL\�$�B!�P�
�bq�t?��eݧ�w��^+
W"�dzz�F�(X�r��_��Ŋ��
��K!�@a��"Zn��T��c�c$LB�O|��ߍ4њ��9m۴
ם{��x��z�:ߘ�	ۍ�$f=#=���բ1;{�Z�y�u�X�I|g�$������Y��F�z���U�t谑V��1�ǟtf�J��Ə�<%Nƨ��2Z�hf��#4���,�믾^r]X��4��q��f�ZL5!li
��ñ��/M����O��Ͼ�y�VT�\	����zk�sL������x��h�g�3US��Ɉ�'������1K�1�V�.sef�� y|3���*���믹؈�eᎧ��Q���}���:T��d�I��EB���UW��/��~�J�4��R�9N��)'~xV�O��<?t��[�.#��Y��;�E����D ���7SWZX��R�K8c�p{��Qml�xH������5��T�я����D��������U���=/�_\�`9��s ���,%���UJ|Og��V�sJ�W'^qI]?!��t���;�C���6�Q/zm@my��V:}7�8��Ք���G��%�{�wn�	!�B!�B�c����ݠ����O>Q_�q:t튗^{��^B!�����DhKP�V-�^��PQH�s�x9i�t,^���k�5���lي���+A	��"�5hP�f������?1�-7lP�6W�]�b�ZY��t��eʤ�}iۦ�
g�6F�=g�n���cɒeظiS���}{�x鬹d��}z�G���^Q��@��ܔ��'c��U*�._�
s��Ǫ�k�t;�Vz�TÔ)qB����p���i3c����G���٭\�:������4�L���w��o~����T4�cc#`���_�^���{NTtA�A��`]�8ԃu�
+�
��EneC,�\|K�o�m�RĤ/�F1��֘�g2hJ��V��P��b~FRd`��A
D�H�t�gC��q����TM�$������궅��a��~�R�L������PL�����P,L��Ӻ����mk��S<&e�։���>#��2��|�p�HJ�̰wcBgx.B!�B!����us�e�>�G�n�K�ԓO��F��YB)�2Ύ�m|4O?�ƨ�����"��"��Gq(f�Q��.XhD�,�*Yse�1�������ܬ�n���K�7��*37o�RX��ddf�|�^=��釢IЏ%K/���y長�ֻc�ƌ�uYa�v�����������ـ��\�3��}�P�����-۴�m�"wG�C6ԨQ������ŵ��L��Mza��Τ.�G2�l�f���о��P��*v�VƹB���Q
bT��(i���5�ˑA���N�N�</8�u���h���/�(�rʤ���#�QYi^Po�g����'l�N��3�H	�Q��4N�w֑�I�A�t��FzV��#��we�k�*�Z�&�0�e�
�.F�����E(*;�����
⧈��w)��B!�B!�����.`�{XA���p��*`��I�B��>&�%M=~�<���d�A�M�C4hP͚6F��͌��/��~�8�^x�Mu��n��?%JC�e�>͈s��r|���}��de�'��o��B�a��S1-4w���Q�x	����Ȋ�Y>���/������,���n�a��h٢)ڵm��>�=��]�{VA��1��t�R�Ϗ+Do���D�-]���w�@�
K"@֯j5K���j r'��hm�u����?w�N����J0�"���c�m�^��� �Գ���jBD?��lb�"(۷�q#��P1QT6�c^L4L�	l���H&Lza��PdS���CA��&�b\��2Q�*���~$T���Y�E�ZB���R֋�;�GxQxK�΢�]��\��H�,F���
�^طI/��X��lAa�zV��m�]��t�o>RE�ݻZB!�B!�5���y�.Oہx)�e悙��������wB!;��'�~��P�b���Y��jM$�|��<��yzzMt�����0�I|��#���t9��IS#�kݺ�([��6oVu`r2�W\�n�	f5k�Da���F������uK�����~��327/W׌�8)�.�f�9x��C5�K.D����'_�x)�ڴn���U�V	���7�aoѸa�9V��y���Q�ti�3��_L��T��e[��h%�o7�>
�y�ug�&��^��Y1�YI��
����NuDŽ�b����T^L���B��ЬϹ!�f�����=�U��DT���G�W��g]�j�1�4l����ܽ:�MW����t��	��V.���Bi�2��\�A��l`��R+�������X�Qo������L�Z%m��"��To�6_�	��� Vh$b��ɔs"�[�X���ˋO;pV��JB!�B!�0$@!dQp�Y����,&�U�V͛7��=u�:f�7̾"@݊�V݂[���������NT+L�o�>=be��Y�:Z�h�2c�X��@�x��Tu�����P1�d(?���_�i}�X�
O=�bXڮ��5j�6-�5b19i���{vv6^y�]#F�����C��R��ۍx�y��0]�&
�R+��b���x�ۻ;\�����w?�m�M;���M�ރ��}�{�5=7ʔ-�v�Z��H�Qq��?i��>���,ů!�z~mI���g-�ӿ�R"�H�d�P��b�e�����0��7���G���}+��R���"��n �",�9,U�@?.��e�շ�'��`��D;��ДЉ~��m-W-&#�Tcq�s.�@(��̙g��˧�G��B�P�6��~�G�8��]��?m]m�]����"&�6X�&���k��$���|/�d�!�X
����!�R"�2��"��,�bf[�Y�f\/�zQ�$�B!�B��^��$�!�qD Z�lZ6o�C�H��5�F8�
k̃ի���O�B_#nۺ_};�~����bi�P�D	8ǩs�-�?{*��e�Wx|Ɛ`}?S�O=��F�[�v=�0}��p��}c�{��ԓ���	�T<زuz�q,>�4ԫ_c�MƇ�|e�H��*�=�p��͛�Z��?�ԩ�U�2m&�o�`���nw��1��*����	'���L�A?��k���5����2�J!+s��7~�L�8������X�֭߈ߟ���v�F
�a��%Z��_zӈ��УG���b��_~-r#|�'�c�r�1�f�avo����R�ޭ���~�N*��y��R�����d��_~KW�D���ѻWה���UE̋�T�$�,LDV���a`M�l��G(P:��X�x�%^�ϊ���]�
�^j���	�e�ME���"�s��k~�~V��\�<���zя�..��	�6����
�'�▟������6P~���`�yD��%��~�����O�Q7��~��fP����d#��w�|������M$�⬞)�}p<r�N>��]��'<g�	���o�B!�B!�A�B�	��s�:�J�JF\�E����@��п_�X,�_�1G�A?�<237�?�2�K����mҨ>��_Th	��A�1�:����QPq�EL0�U�TA�^�0�!�
u�衋i���x8̈�����B��z�:��琢s�oʗ��o�ںB
�o����oƬ�*&���b�TqI>SE���8��}�q�]$8��X�d�y�V�Y��������ժ�K/�e>{��b��X�t9.��&�-Sڈ���-�����!aT���}n��=Xgγ���x��/�����C�&�p�i'�k�tn��;�~1PŖ��<m���'��:�k��X�'�N<�8:w�hD�t�?+�%���s�����n��gu�9I�
x��Q<�4?#��J�6vf`�H�֛o�³ҤY9�bg��F�V�m�"dh����I�y9+>�~��k(ړ>PA���|�3��"��sb�K��&l�G-O�%\��H�tBw�?_'mj�� ��H���NZg��
�I���ٴ!=��	���h�q�9�5	�j��(Vg��X���Xە74���ޔߘYj������{��_���|���I�B!�B!�+t!K!��`P�b��x�;P�LD�>,Z��7!2gB(P��B�p}�`u��p�%��A7нe�6$��ףK'�v˵�^������R�B��˷eM�6�CZZ=�w�k�@sp����/�V\��K.:ŋ[��RK�����o�����I�H�;Mۏ:�0\{�%1!�&[��L�2����p6`nɩE�&x��;�V��[�7evH�X�}l�F�����W]���ow���6�к���si"�_�+���@���be���$���?����"����盯�	����M�S���o��j!U^�Q]�:	Ռ�}�5��qsu��fz���I r!��%F���(��Dh��U��.t�ܮ��K��k���]j��{���V�S�����<�i �钶��K,���s�lLL
2�ƛ4��4+�Eg���N��\��8~PF"����$�_Y�f�DL��b}��^x
�a�����㸮�Ou��&,rΙ$�Y�A%Q�r��e�϶,9[����d?[�����,QEe�"Ŝ�	 r�Xl���{���g�,�]��!;ӡ�B��t}}�ͷY����r�p9(Cx^�]��u�@Hk��1�n�q���ߺ�:�;͋���-8B�u������9(]�&qs�D�3�f��c�Q��_�A�+T*�J�R�T*�J�R�N��}A3B�R��1�[˟Z����{Q[?�X��Λ5
/utt`�+�y�V������q�9g����;�e�s�q�Λ;ÇG�|j��(��RQ�U��gmٺ
K�X����bXs�=g����N<�̚���:=!�W*U�^��x�4~�\p��hmm�@�{���-��vj#�P�q��~(�hq�w�>�k֮GgWF0[t�8�Թn�9�߯��[���Gs���3���C�Vk59��c	�N�����={e��o؈��2F�l�~<[��^a4��r����o˞|��݇qcG��vҤ�ذ~��s!mK�"�:ӍWGG���gc����6o�*��Y��ꏣTp���k�N+V>�m;v������)S&���pq3�m�$9@��?����+/Acc#֮ۀ��6
�%q��9���3k��S�R9�������v��u�n�I�F�����N��xQ���ێ��=(OMrH"
	T��sP���›���Q�,sRZ"�x˥��!4���~��mDJS+|����BF�$4�9�32�{��'���YC�/O`��[�"�ǂ��Om�r��,�n��I]�!u��>���g�e�xt��%�]��]��AnWl{���ۇ>e��(+5� q�����]�ڔ�K>԰���2q�3|N9�m1���>cl�玝֬�|�������T*�Ju2H���T*�Ju����hR��R����c�kq��N�_�P����͜[�u��A���>�^���}����{7��$]��W\�����#����$�.�������]�N.Yza(^fΕ(c���׶}�O�[y�����9D�u?ҹb�|����c�9f���ԏ	`n9�-�#�h����C�0��2�׺�{�ڛ�jE&sɺ�HK�&z0BԺ(����d҇G
�.�D��Bp�Z��d�i>F#�1�ǟ/qd����h|>FH~T㝎H떁���	ru��!��s�_�\�,D�Ia_�_H?�g��.]x�hC~�p�,�mvJ�cZj6�1�`�d�1Ū���_�8G)m:6�P<
�ga���@�75��L(#1	-�d�I#Jx�L�T*�J���w�J�R�N>�Ss`�T*ՋF��{����σ�z�=��Mf��zˊ���hiiƃ=V�^�;�B�P��qLˀ��m����:���^�̍Ct�����ߐ?�q�mg�������Ʋ׶}�?�6'�
D��ƅ��o�@���Euoܿ�ご�\F
����el��2:1T�a҃%��o����[�p���7�ml�ܐQ�� H3$�2��.Fsփ�H �M��;n�)������S3��Kӷ<�!��
�ñ=����YN�^��]�T���fG�=i�����	.�Ј0�6���}���2��$�6�߅v��T�t3�_5mY�z�\?��RR�T*�J�R�T*�J�R��R�T�������;�MA���u/��,^�9�T'��ZJ����,�>�h����yR�s�y�e5�� F�'Z��)��fk���$:�e�E�u”�k�a�]�Ǚ[��Z��[��3Цnq�<\��n	m�\�>������D����ak�ݑ˽��fF��J^��N��,'g>q��@jL��玴i�W�û`�\8j�2���ւK��qQ�)vC�B�J(W��c��n�Ҝ�&s|�P�ȵ3�K�sz[����tN�8��>�f��t�T)�J�R�T*�J�R�T�W
0U*�J5�z�G���X,��׿x�{s[����R�9�VT�G��RD�ك7�<d��@hS�����y
�0c��X��qyh�:M�/���Ӻ|�6ͅ���.��`t���=����?�I}��ȹ4��8	�1p�!|u�5����L�sh�P�ܴ8rв����ifǷ�M�'���`C�:4]��O�Mc�5>���C��еHac�&�3D�����_��$n,M΁P����!cӜ�6��yQS��ʋ%�e"�/�?�"nY�v4��J�R�T*�J�R�T*�	�0K��R�T�����7���^���v��4a҄	�0q<
�>7�:ybt����7��B�4�|�>Ԫ��;Z��	�L��@`���5i��#�9�r���)�s0W��j쐔Ң��i�,5�·%5�
�	c�\�|\i�w������'� M�Gպc����4�b��2�Z�`��?��~�M��@C��
.P�qQF����ֹܟyW�����H�tH<�4�x�ܦ�!���r[�uQ�]�E"`�hת�`=��Բ��`R8�
*�J�R�T*�J�R�T'�^�LrL�]�*T*�I�b*����1c�g,rS��~�T'��q���hk�@�TEk�@W�m��b��4��^�?惪�0�b24�h3@�͎�n�nLݙ�])�.��IÚ�erO��P�L
��D�ԇcE��E�zo�/0�j��_f"`��4���Q,�?]]��_F�s|&�a��d7�7���`�k�\�;]xV_0B�>g���IX�&���a�o��3#9�u,�f�M�5��p�A޸��+�Cxp�-�g�ԏY�J�R�T*�J�R�T'�^0�lj��Յ�R�L�	S��U�秜;,�E�[�:���Xj���%Tk5��։t�jFO҂�1c5�'=�s�E=��ЧV`���_�	��;�l�&�7J �^Y~����.DA�~�p\q'�.����]?�ae]!�u�y����.F���e��i�+Dk}�P�Ȅ�f�#�|�\#}إ��8
��ô���u͗&�2�F"�5,YQ#d>�`�����a�B󬫷
����o���E���d�0�~�`��V�R�T*�J�R�T*�	�0���aÀ�n�R�J�:�%9�h&��9�KU����R�%�8R!�!I�]�Bm���*��؂cy�g3@fC��
��t���97�Cs�	��օ%
n���zi�-_�P����_lR0��2gaָ(�yP���š�y��k|�����f&C����٣���j�ڬ��u1և]5�2�K�P�������պB#��ֻ$����b��,Ԭ��coK�ka�ȅ�u��9�gȕ���8��J�R�T*�J�R�T*Չ�AIF��s<T*�J�R�^��$5$I"�*���*J�\K�u�99�C�@5��e8�%�s9�{�F��	�:'!+�`˅M�в�<��S����P�5E�&�����AMj��Κ�<!<��ݬI!��xd7���y��������v�̱·�ݏ���.�,�<����
E�Aq�I�����$����L�i؎sk�{�����i���<���6�a�g�87(������Q_�J�R�T*�J�R�T�P�0U*�J�R�^�'��8��IE5�ˢ5[%�Y��	F��S�ʕ.��3s@�A�:CHW�`�13�j��h�Y�H�t��;�fn=��4,uv�P���	��+Mf�L�f�]�>�y&X;��\/�\�T�D��6
�K�k�j<�K��V��B��]��E�T�
�)��'�m�9�d
T����ww��<P�i;��֧4��h�rb��)�Ԥ��R2�jSpm��z�Q�9ok|��̀v���ХBL�J�R�T*�J�R�T'�`�T*�J�R
��UFH�񂚃��
��Ĺ+�Zf�E5o���mK�3=�!{�e؜ˑ�b�u(9Mp����Ș��<�Jz�4�j]HW�9A�1S�cf�L�Jk��8�nC�e�2�3�I�yj�'���@���U�f3Ǣ�d�������!�p\���Ը��l�~�r�9���\�yp���A>ǧÕG~\�V��r0:
p��;�c�ƈ����J�R�T*�J�R�T*�	'�*�J�R�T��HH]���w�j���� VA�ILk�R5�J��j(�j��GW�A[���q���|�S1=l�`3���k�9o�sD�W�/+l)������t .�nߚ��;l�}���wLl��!�c�����0��Gf}�,`��1�K���Y�Ր��<�Ƈ�
@8�=���bhCp�:�衢q�3uM����a�����]�Uk2�e���DFZO.�yF����8���:e]���[�R�T*�J�R�T*�Ju�H�J�R�T*� (�,Jl
���$!E0+�rq�v1�#`K��n�RIȑ�b;��S�F9F?��	�eL.,��.wfkRޗBK��?>��C����a_㜋Ƈ�͠�/*��L�Df�B�l�\}=<L��u�8�2�KӽL���9WaZO��-�@�w�z�� ���6�p�.$oȯi��ท[�7-�Y���(�I��d��<R�½F&���s�f�g�p��;��I�}8'�:/U*�J�R�T*�J�R��R��R�T*�J5�#����^&�
��dw&��8�Q�jU�
1��U ��T+�M
�"��I�.
��ő�N2�gS��w�q�ʅ���Qp"��Խ,�D���:8*�D�Y�c�x�(���ƔrT
��/���æF�.5_�Co\Ϩ.ԭ�g+�K�M��J"����@)�C��2@�$�L߁Εi$��af�>�>���ޕ{WgT���g�(]��ԡ�\�zw%�1�m=iF,�0��t@7/��&@YgqU|�R�T*�J�R�T*��D�L�J�R�T�A����1��j�s�&"bR�#`��P$@Y#�Y�V��y�H`���UQ(�Dp3�u�Bi۽(�b���1j�
>�$;9���D���ř��3�7!�v>���^U��M$Wgނ�d�SQ�_g��&�4�Q���.����9b-E�&�:ُA%�Kql�6L�%{�!
�*J<�5���(��9���j}ۜk5��)���Tr��
�R� �п&9��4s����9�M�1|�R秷�J�Y_��DP�T*�J�R�T*�J�:��S�R�T*�j��}F�F�!�IY��F��e\"
Upp��3lbW_�*�̈́�wT-J��G(W�hn(����z`�v�4Lq��C��3�ԅi���C4�{�P�!��9j}�Sx����a�EJ�<�3i[���o+�Ϧaf���Kd.�ԡi2�fplzl)KRj]�װ͸:[k=�5#��5��d!`s�]e��w,JnO렩��9�g���RTZ_�J��5'�k�sC��F��xg��9?�5�i��œ=$N��C{��6�a�Mk�г&ߛ*�J�R�T*�J�R�T'�`�T*�J�R
�8i-�
��"��۴~�x�~��<�,:�Z�9v2�bcb%�,�+5ttu�4>c	7���=�����ԝB�Fi�ź��.䩇e���bdM��.œ�!h�`Fʱ��&�%F.%û8�JY����8�vA�#�2�+X
���C�&��-`�5��2
�j$5�0�o�F�@U0�8O�1�i�.|�q�1�f�������QC�����n���z�B�����[��V��y�t��\�6�L�:)đ��3u��}��:٣�d�ݗ��oŐ�����e�9�%�����=j$��_c>{��m:��4�ش�H�F��?٣�b��Q�T*�J�R�t�S�R�����ۇ�_�&��9��30"��S���c"*�˂�_;cT��8��ҥ˱x�2��ߏѣFc�ʧp���j���P;MB4҄J����kȺJ���k����NM����’�O�ҋ/��S__$�r=�2��{�w�^�r�\�-��y�n�r����޽����-��~�5���!_Ưn�
�\}J�o��۳�n�&��N��n����q��i]xݭ�ݎ��8�G�)�'�WI�޻����ʚ����w캱	֬>��~��m�X�ÇǬ�3�s������j�2"Ņ�r"ab�m݊�

͘u�0�Zn�ݒ��8��m|�2�e��2-+�3/1	JŢ��ć�<�9��r�H�7她%�m8U,�}[7	��4���m���75����X�ywc�ƴ�>dj('�恩'�|�qh3�f�0�S@pD&��끷��R�$ue";箔V3|������u��Ȥm�z�зލ�Ll.O��6ʵQ�xe��xW������&�k�srz���kj�I\�N6Yl^g��Op�b����zN����C�ڴ��1�Cp/�o���{�A�Ż�nP�eg�|���1�g���D.�<zbr��>���oc�=��Ŗm�_k�^
v[hl����E��8�`�W=L}�ۇ�G���m�	�wТ�x��"��w���M���ԍM�n��͹ݳz�k}���46֏M��y��06760�s��3��=�5s�z
�B���}�yl]7��F�R�T*�J�R�L�J�:ڰa��؁3�㳟�o|��Gs��FSc�nێVJ�J�v�y�,�ē�(͞5k�]�b��Q#Gb�3k��N��l�	��T���kگLǙ�I�&������?�/��O��_�B����<}�ixz�*�}�͝�O}���ګp�%��',�yf5A׽8��s��ʧq�Yg`�S�0��+C.��L�_���T������2cF�����ɱ+�2/Z��O�DWW�!�ʐ�{�ê�kp�ً���غ}�^�b��>�8�L�D�#u���?AC�H�ԄSO���O=���N���J�ߢEgbԨQx�G�/�b$�јѣp�~l޲�~��s����+V����梥��Ǐ��v`���ػw�h6O~X��y�.�0�ܷ��M�7�1��vK�,����%˖����x��g(��h!F�vk�}V��X/Y�<�؏<�8��?@�Zʯ��޵sF���n��p!�y��c!��8pP�ر��}��z�K}ː�G�i��B}Y�qX�qcFc���K�.Üٳ1�u��X���Ɠϗ5k���ޏ���R�4Cut�B� �0=t�?ӈ�Є��Њt��j�s��k\��J����䊨ү2��-�9�80V������_�t�ԓ����z9X�αh�IJ丸I+��4��M�J�Sd�3�<K<73�$u��><��Y��e"�)������_W#�#������~I�j���o��'��.�B�e�!h�Z�pL��)�:���nLk�н��yi�C��n�4F����)��y�p���u���4/�*�KuYur��_)����c�]���w��L�ׇo���Y�\e���~���9�8�A�򯁁]�}�o�}�ŗ�i�Oa�!��W���>�>^�����T~��翖��$C86&76����v�9m�|�[���������?��u��&����מ�埗����@�R�T*�J�z��G�U*��8����l�����e,[����.4pڰa#6m�D���g��E�v��m���7c��Ǘ>�8�p�~����Wذi3����޳������%�,�8q��7h;�o~�{�ܲu����1��4�݄O=�
7��ع{/n��O	t��?}��������m���{�œ�ޞ݈<�~�o�v��C�~}�mؽ{7~�D�յ�`+�#�"��.�

%��������׾���N|�7��o�����W��gz�Be�"�z��~.�	
~�ӟ�o�����\���/u+�U��;�f�Z�y׽���/�_���Zv
�_�n~u˭��M?���߿��ҷ�O\����۩�0�ߏ~��Ѐ�}�M��J`p��={�����܇��[(;4?�/������Q�~�]��`�@Q����������FP���i���x� �#w���J���_��O�λ�Ŗ-[�_��Χ�J}��E�r)x�!9ϸ�/}�載�5��ɧh\6�_����3v�X�-���€�0�����*��!Ho�f0���G_��e�92+.��0���ށYC���M*�vj(P���m�m)yس��C�Ł�9X�{Z28��E�&��_`f�	��2}�͜!E®z�d~Z3�8��!Q}Xw�4�j�2�����oL6I�R&~�7�u�G}�ش������˃N���tO�����᧯�@Gvs�	u���u����:n+�q�]�$�"�l�>�u����r|�93�ܱ��	G��p��x��L{x��>Y��A�O����<~nj��vn5�>�Q��z mA?�[L��w�G_������/{ץ���	��0w6��n�Lc3��z.c����<62uu��K��n�c�5W���R�T*�J�鬤J�R'q��������X��	tvtȄ6C
vb�<�}v=M��4��Mؑ�,nj#S�fM'�7
˟\A�A�)��Һ�c<A(v96sR�$a�p�����"�5��o�F�M��Xjh��G��m�w8?f��5�L3-��;V�䰣���COO�ԋ�";!]hز,+�0�<���,\x�yX���'@�e�*u*�R��������.Zx&�˵��h���,� �Ӏ�ӧc�m�U��{���eٔɓS�W����;@m�a\'��[P���N�����njk�M"�1�͐c�]T�,����twu�1.���w#��>��;wIT<|�P��|������s���6�v�|̠��m�0�_5�2��`�F�ڛ��fʐ��0�y����\���2 g���^"e�J��
׿��[�t��#F�b��F:���ihh�j`�5�4�	 {$x��k�k��J�"�b�7Y��@/��߳m
�܅�n���@�`�f�	-Qn
�~�v!���e�,x:�cr��	H�Ӄ3.�v�=���#%��=M
�ð�]�&����{��b{H�����l妶�sR��56��yB]�;Wg��7.�����xd��ͦ_Z��
�(.�(�����9bC�fa}��J���c�+��x�T��*�~s�[}U�[���C*k14�W�1k��,���C��|m�uR�
������*�J�R�T��R
0U*��8��Krҋ.<_B��=R�3gN'08���Xu�!�B,!T�}�5���7	�	�͘>M�q��8��'���=,N��g�%����w��?*���>�I&�o�ĉ�&�뒐��ƍ�}R9��'⍥:�~v-&O���:��#�$�L֝w݃���v��5b��ك�3f����5i��%�],��m�N�ӧM�2�M���T�2AN��B���w*C�a��HC=G��W�P���D�q�����.�m��S�cnj�������	�]3�{��u�"�VkiN�iS��eX3&�/�wƌ��w�H䰿q\���?�׿���on�.�O3	<^��Wa���w�/��)�E�'��qk�1�v����^~�Ÿ��;�����ѣ|�؎��cƎ�<~�8i'��亍�:N�0QΑ3�I�^����B�x.n�����C�om�1���Z��)��/ds�_��ٳi�����j��Xb�v�����؁*:�8T,��1/����{/���_��}{N7���j���C/FU��f�0�1����̓NyoxLsW���?ţ��~���W(��L��Ї��U �a�>�6zLj�S��X��@.�!�70z�G�c�>��奴T�(r�X�s�"���K��`0
U+N2x�Ճ�R�q
.M׷F�`���I�i�R����˄�#��6�wt
Q���������/���X���;搬�W�V�1���/Ɛ��=>pY�R�T*�J�$k����/o��}����o��?������]��πJ�:1����Xx���-�+��y���*��n:Yu�hr:�|���ߢ�P֭_������[1���nB�+_�A�W<K�㺲r�����Y=B����6@��޽��׽�q�9`�^����I���l�W�-R�QV~�Mkܫa_3w�P���3q��"�����˻
��ˁ���tNj�=8do��K����0��U_}з���]�/��]_�>�X���?�:5�f�
lݻMt�dd{[;y�~�{�IP����⪌��k|�t�nij�O��}<��#��~�f�@WG7��;�s�XOl,�Z��-�r�E��L�C�R��B���J,��Ⱥ�Әt��>GF��P��"�}��2�:6�,/�˧	�x�.͏�H��ǚS��ِo3�L����#��1mk�[�o{J�}9�d�(���:�s��r[��ư��B���4����E�a���\��F��QX��G�1|mF��˰�e�^�`��L������w���������D
�F���<��^c�uϭK_���������n�`_��gl��+.���26�z��bl�{66��l��n�&���I���T*�Ju����h*�8hɲX���~&�ŋ^.�J�R���F8x�kY.]{��hoo���4�mL�~��/N��c��K��7���S�<I�ַ�Q`]o�������8��#.Ͽ��.O^���߯���P�8>|��:�_���>���������a[�u��U��s;/�͛4�\�K��..ics��'�+��KXX�P�8v�<zK���Z5U�����FA�A���l��w؈�<�)�
�?[�^�!���y�O��?N1�
p�� ��9�AdN�(GS���B܏��-LR��ad�a`�@L���"*9A��auMX@~�s�N�x�hm>����;.ύBH]������ϡ�����m�.q�:�Y��#�7sZ�ey��l��Ǩ*Չ,��揵�q��eH��i���T���#���c��j��n��T�T*�J�R�����T�T*�sð��.�j:��KV���L��Մر�V�1��R��bxɎ�j�����B�'�%��6<�`#?p�ab˕�R�b�fU`]�D�Wc	͹3#����I���0�E��C�:hRW�E��)��҉�%�A�+5g��M��� u>���[)�@�¡�kM�r���Diy�(�����E�] ��ڗSo@+��i�[��)(D8>���?
��05Q]ӱ��c<I]��ޭ�}�&�?��U ?>���:)u�܊�z����qLe�O{(4����x�G����9V�¼E{��u��R�R�T*�J58:a&�6o��X�v=&M/!f_��+�7�����:�w�m3��h_�J�zq)?q�����FYhҁ��~�?Z9��U7��U�����oǑ��߶���}�v�w�H��79fz-G{�\��������ֿ�ħq�T@gG'�F��:W�{vZ�=/�T9�[Q&qc�q5[s��(���u6k=51pr�a޸`
B���gX��!�<UK`=�?2h%�Py�����{8e.9�Y���e��>Ä�ɖ:�]�_�ܴI
F��[�,Ál�5�/p�obsm���c��ַ?�J�\�5������C��i~�[���[���듐�Ҧchl�jE��jm})9���S�v��k,A�P�N:=/'���Ƙ}Z�Qc��~ٿC��A�2ز.…��Pj|NE�=�1��T�׽{����߸j��1-.��6��C�	7����Z�T�
�#tu��M0lD�	�~䒆�E�������w����EU*�J�R�T��`�}�#��?��@���-X��
ɓ��o�^�a8�}�.l߹[�
#��߾����d[~�R�T�O�OV�dz
�¤Snb�O�T*	3��B�`�+�W=\�K�.Ü9s0|x��n�z?�����E�3MMMuǬT�,T�X���48�e��$O���e8��S���$K֭[�ٳg��l΋�?.ܮE��]�<�/:::���"��o� m�8aB��}BHZV�հm�v̘157�}M����w�tcٲ��s۷���!�޹xr�JL�4=��y��t��۶�#p���8����`���&�m�6y�c����}��v�a�	����HƿF?��#p�˯BB}�S�	/'�Y�z�\gtU p�~N�(׭s�Eq,�2��x�I4�jX���r�#�|��s�h��~�\|U��|��@��
[�WE���=���q&<5�����D���K|H[��6�G#�F�A����\�ey�}�}�x7b�y��:�ǎq��b>�]]hh7�r<�[fz}�t�X^G�WnT7V>�(�~L��T>l���:�aVZ^�Su��v|�c\tm��}����0�ϵ�Z���)���;	��g1��L�1���'��I�G9z��Պ��e	3O!�7�~����p����]rp5В�=F}%��1��0��+Z�x8Ʒ?ep��=X�F�鯔�ߚ!�s-���<�,��'
��@}޷Ӡ���5�`��#�}<��T*�J�R�Nf7����+߸q@�2pd��#;(�͝%���W�uX�,gx��O|X\��}^7&����E�c��3�R�T�C[�n%(�<����V�]�&N�ɏFO;�S�L���$$��q�P;v��)@�s�mݶ
i�={��gk��q�O�)S��ҋ/O��ڽ[��=k&6m�"��ٳ� S3l#(م)�'��2��k�nlk���#���-6nڌ��F#���>����Oe�w�:N�C?���n\�����G���!�ѣ0b�i+Üӧɺr���#F
(eq���cm���O�(�(�����z�BՇ�m�v�r>��_���G�q�f�9B���ٳ]T��c�����]���7�����7Q[0v�i�0ꃮ�n��b{�7_�����w���K�ډ�R��Cy�5ڇ���^�K���mԨ�ػo�L}�7���rܮ�j����M�6u
���\�b�$u
e�w�t������ػw��4<��#X��*L�0��z���Ge���si�������c��ؽ{/��d��o�ݻd�~x3���D@&4�f�\�9��M\���&��`�݁E�[�cgW�T�ǪLc>z�(|���w��m3f4^J���J8g��ĵB�Rc���DB�qYF�ȴ>�d$��Xh��
�"��*��C}[�!8cXSgL)b��<���Y�Kqk��d�'�I�慬^�f.ʖ	�΅馑P����Ϣ�9?)�\�!���7��I�@��ed0�v�1��/	�1�4}��Rϐ�28]�X�^�	�$3VkR�)<8w���˯B��)��?d࠮坅�
�3�Ť��?O�P�6��R��l�"i��ֆ�
m2���Z��$�u.��=���/`�l��Uo�$�!��R��q;�f�.�>Z�!��ן�`��?�F�`	o��*.���)<1�:������;��<��? �Z,��Ng]T�T��|-�]?/`�:�w`����ڏ#s����Z�T��~K���=Ҟп[�����N#�;j=
0��zn�
�k_��E�%`y�y�]��2��Z��!�A��GJ����9B]����?6*�J�R�T������	Q�z4�6�d�ȿ��Yx:>Ee,}b.��|Y6�&q��2�����i{5�z��*����g��'?�%����X��IL7>�0f͚��˖K��׿����<}��߸���p�?��:���&8����on�4y�d��[ir=�c���W�I`j�,YF����/��	2}o|�����:�L�vl߅�|dz޹碝��SO?��x{��p���<���_`۝w�C�K����������–m[q�e���Ghs�5W����Y�6n���_�'8>����SO%�W]y���k������ػ�y�?k�|�_�%fyJ��%Kq��ߔW<�����s�`����1m��\�]�,���`��ٸ�ҋq�o»�v��W��cî�w��-xv�z<�&�s7�>n׷��=\t��'���3��?�������Z|�{?��.�c�����vU*c7nxͫ���J=D�񎷽[�l���5�3���{٥�P�?�3�8����eҎ���'q�g����Dw	�j?�'W<%NUv�r��r�<ɧ�w�~���]���?x���Dž��C�T�������x�5�я�E�$�}���vL�J � �)���ɕO�8^�G����?��@`��Z��x�ko��u����0y�;���٪@^"��E�r�Y�R�b���$ث��J��g�w6����r^^�\�Մƶ �\!0]KܴjL�sLk	s+��^��%*i~H�^�9�Y+pQ�'nև�
�9xǰ1r���D=��&��d��aYC��449gd��s�	N�c�$8>]�Y��Pŀ!�(~{�l�y@b�͎����g:l�|���L�G¹O�D�]�;W��Z�Wܤ�
��ܘV���5;�Eㆮ���i=|p`Y�x�)Ҳs'�S�*k�n��\�
A�_}�����7������&���u��x ·>Y���%���TQjp�k�S�)�k6�X���QE�#���S'�H\�b0��]����q�O#�x8��EY�76c&�P���1��	�/<����ؘ������,7�{f��E������Y=�;���@K��1�q�
G���q���?e��ߔp��W����n)��".S�۶fy���9z[��R�T*�J�D7�ɠ��H��.����C��O���ܖ���)�;���͛C�;vC�R���B���,���r�1`8�@��}����_}�����s�CJ�صSܘ�F����c�d����Kq�9��Ǔ.==e�۷O�ݙg,��cs�)x���J@�,S��7�4g�L��㳟����={��g�$\w��X��Jq>r���z�59v�X����hjh������'�ژ#�W��7�ӟ��~f5���D�Y�F\�o}��O�7�I4����������w��a�yy�UW��_�
F�{vr2l}�+	n��=�#�� �ۊrOƏ�7��w�?L?N���s�1P�Iug�f�ª8ʸm�/�\u9n��`���N'�B�B`��}�[ߌ��O�������(����s?��9
���J�{Ϯ�@ ��`g��쀬�Lm�и�\�2���~b1�۲y�x��׼���7��5�|<�s�}��"�����{�\1|�9��; �����=�Ө���3k1�@x�� }r��c��Oa�ĉذi�L��?O�M���&��^M��~�q��s��KM���:|V�qN�B��n�6]�Rƍ!";�"qN�2U���x&pnG�!�DkU簬���I7F�[��R��8�EX�?AH�a9�c�C��RY1H&&�J�����LB��0�\�y��I7aٌ���W�\Hk ��������4�%��\ׂqWl@�&ẅ́j��0���)�.J}�yo���u��uyD�I���6-Ej���
�L��k��x�7��۹�ں:#���+�t㖍�_��>Q�N�>�x�`�έ��`�z�S[L������cV����0�b�L���-���ÕZ3�2s4�%pǏ�ŷc���U�{E
u_.H�ϲ��ϗ�,�]��|���~�b&��d���۳����b��5q��q�{�n�|�;�a�4+�d�Sq�+c�ڵ%��]�?:��
��4�����Kb�A�+�-�[��=���VF�KZ�mC�?_�審!e�k��oGo��7P�\��}���t�A��ټ���P�E�R�T*�J���	�Y��_�8n���	��#�C��V;��zV�R�������g�?�1��M���˱��E�������_�y睃o~���χ&�ڽ��nqٝ�b�ܹK ���+������m�!Gy�|x�pqnr�C
�c�|��w�s?�^t>�?*0�k����}�3�9k���Y3f`߁���g����J�XA��AyB��X��λ$�,۽x�j̘���@,;�D����.�wo���L�%v�?��I�& ��c�f�Z|��_�%]$�͜9+V>�/���_y��شe���3v���a!�w����[s�����
ۨ�:�;��܄ʹ﷾�}�*ٓ��1I�؇}���t�2�����}����N�1�2�Y�:ݲF���݄[~}-<{v�%���nN;��~�?��*��߽���_��,�=t.|�??��/�8�C�s��,�?���~����H�l޲��ܕB�ɓ�K��o|�{tn�?�γ��M�3L~��'�]�3�g|�e�C����w?��Mr�|�Av�>���-x�Ɉ�Ј�88���6�
E鿘@?;[�YM��$�ܗ	�F��eY��r�SD�O�9!����U�ַi8N�Uq��\wZM��X�7R:��D�B�2�@o�{��A��/�a��&I�]���{!Ǥ�T���ם����9Mj�0�c�|�������	~�$���nȚ�g���!X�4~�1��7f�T�4`w�I��!6����	f_>�#�е��_:>���zD�Of�A�os��!b��qƾj1�r�x`����o��[�G0��O�( �
����ؽ��kx�_V�{[��S	�}�3��mU���G�:ڭ�_H��+� {�E	��!����� ��đ>]��,��Z�?��A\~A�.��4F�{_}h�;o.��Ѐ��=Z]�j|��{���/M����u.�����p=A�q��3/������j�x�4�����X�o��1����g
]7U4��A�0�����Q��T*�J�R�^���vh]<�>���`�+@�%v`r�J�]�!���'?\��]n߾����ɎJ�.(���/����}��>���U�T�]˟Z����{Q߹>�r��7k�����N��!A9)O�3�`h�?����q�nǠ2���u�:���9(%8�a?.���![����=�zG�m؞�uۇuI�M��zq��M_��z�5���o��1���T�3��]���q�}�[�Z�݀��w�ҋ_��%�g��W�{�����k�'_���;rlv-rY}՗�`n޼?������@��;�N<��b=����{������0�|	 ��C���\~��I�-]��9V�#�B}Y���V��9�@�Rs�!�H��
�qgG���-K�#^W/����f�l���g�D4n�m�z�J*;Ƃ�e���:���e���,��1�7�y��G�c��	y)�z4��a̾.�0j#�X��}8ڀ��+�).��E6����nH�%C��|>�}5�~/ʂ�YiK-�Z���.����u�
S4��>,m�W�Q]�J_L��G�x,�xl��!$o�P�>Ɛo�s��LDS�&��8��kN���Y�~�q�������F��!��h��n����)�}_!s8�;t��%4���[�Ц��w��Q��K�U6x��6�Yr�5���*a��H �{���cM�z֓��g
ؿ��_�Q�����V��0�G�xw	���*N=;!��w7�3?�F�T_��	*��7����4��p��\��䰶�r�[v���-��'J�sz����}�����?[��	��%̜���7�u�����U�;�?Mc�46w��&h�F�O}�����i��÷��w�$�_�r���vlT�W��]�R�T��O/���GӋ~f�� ?����/D2p伖���װ�&����O���~�7b������}VB�*�T�T�S0�Dy����C��/$�8}�?q�D���6l�_�0���V_���}�a�z�u��ʖ6�E̟?W~�O[�S�>8��m�]���p=�RZV_��cM�2�z���}�O�x���KV�z�Ֆ�(.����c��Oϥ�N&��\�k��Pp����_S��7#���n���H��u�pt&��{�j�
[,Ф5?�����\|�|NV�8l�u�L��r|�����n��t�
��V܄T^�vO�.}bM܍ �:a�X4���u,l߄ھ-��tP�V+�4\x֙�4�Ŷ�"���A�S�'5�x��x����$6�:q.�9[gz��uJ�ޟb������u��;F%X�@VW~șf|�_q]��Xة��&�X$�拏LVO��Ƈ�MO��`b"u��@��S��wF&����c'����•����9D�e*�KQg^��O����S��*N;�}�?�h�?�o����J?7�@fe��_��
���cV�S�F�s�/�q�������w�p��r(?�V��?[���}GC�;�m;`.�>l2$:�ظ��&ػ�_Y�{��S|����3<���‹\�:��ZG����5�_�
���Ⱥ���椏�����J�R�T*��%�bv�������H���c��Q�i_�J�:�:&���%g��1c�@�@T!1�����Z'L�`�m�#F�W�O�8�a��CM�X?��ڱ-�U��*������L�sFQL�ҹ�i{�O�SVA�bꄵ�1-��%�n�C�L���S��� _s�&��׺��j��B�V*�E!�mC@�n��Mi0sl~�i���ĭ#��B�2�.��c0��o:Pæ�=�(\ҙ�����;��^�~sW����Df���mRZ�ݟ@�#�ЁQ+�/�����B�������$5R��=\�O�8�U���e�ڤ��rL	o���[2�{����<���k>�'/$��
_⍞�Q�K4��&�R����3�4�=l��f��P[�����-�p<�܁�_sڵ���e|�E|� ��]�&[��E�x$»��"��Ls4��|e�S%G�V׼���g&(䞇�?ax�1��3-�Nʖ�we��s*��7����x���)�,�I׾��|�~�m�%5�mp�����1qzvl�0��k�ԣ�7���u��"�*A�)������,����,�8�C[N�lE*�J�R�T������G�Cw���e"��o���,vP�����l��J�z񫯉�0!p����*ԗ�ܾn���צ�2s���f�ʒ�����t~������U'�
[�����\�RI��&I���骞�555���M�A�� sa�K>m�RCх��Y��4���%�צ�c�I-�,�U�[PrjF�Ȏ�
2�}��"8)���EeE�3U+�m#CP��Q��玉	x&�t0��C�>�j�k*(л"]�Y�_&�̤��z��܄6�VrjZ�B@W[j��|��oc�r�0!��L���>A�M��'1�>p������Q�!��r%�l�A����<L������\��#��U�k|�BH��m�UBP���x����@�"���d0nR��{�{~Y����[Ì��6�q�@J2�A���c���7?��.�?e�ş�,p��p�il�jʬ�N���3h�C_��"�=�RN[�ж����sd�7T���[��i�����<�;rL�]z�8�O�m	-4�p�;�8C���V��#F�����ӯp�;je��i�ñU*�J�R�T�#鄊���c��K�Ju����K�EOw��c��Q>��&ܔ���{�L�&�MM}lc��vH�]�F��I�C��ms]���d�+�uwՏfm�},�����
G
�R��beIB�Z�ǔA���aI�0�`��`e5�#	=K8P��2��T˲�T*�uZ��^�<��ܸ���fV�n�Q�mǹ5�&�e��p�>�m��g�M�A�m�ϩ�0���m���.��g�sV9�.����c������nPN)��/rqQ�c�}�Y
��Y�^D�E�3J�u�/8M�܅r��y�Ff.q�Q���kx�
�G��Rz�5�6��һ2seFy�z��o�I�c�TOd�]�D:�3�D�����z��?�U��Iv@�����>��+ƒ{#��jq�/&L���w��J�ȵ8�m��]���55t������@�n�!JG��q��#�!���E����>�&�ﯥ�߀!�@ɴ͸�	���3/Lr�Ҡ�~.��~�S�N�PP~l��<�r�D��CFB�2�/6��{��W���8����gs�ً��T*�J�R�Nl��T�T*Ջ@�Y�==hlh@�\Ess����)���܌��c\t�y��q�ًd�[�[���oAc#�Ly����Q�吐�zæM�7g.zh"�R�Ry-h'H���*�߰a#��.?�����|��BAOv`:���I�N��x��!�����o
4k���7\�J�"�Z�u��?ƫ_u��q8�#����Ç����g7�p>�*�������Tʒ�1�:�:q$.E:�kt�Z%nb�@�{L���8�T#��D�CG�t�I8�_��}B�	G��}±8�(]�>�O�JnLk%�l%�,�M'�+�yI�I"���X��s_&3�||�ۙz	��,�nM�~�U(ǦzӺ٣��-Ull���+FW�&�=L�?�i�G%\8X�q�_m�q\���<�&>�>�i�;фcx��Ac����y"��6��w���Ļ#���^�:,m��@��珫gp��I���𸐳��ȟ���~�D�:�50�b�][ܵ�e�������g%��n�1��?+`ʜ�M�
��9u6�o��o����P4h~�6�!q�46[��E�~�(ɛ~����C����,��
�v�u{w��ݵ#C��˼����P����~��	S��f����w�{j=.����:�7��f����*���e���zN�m0�U	f�n	�?�sG�J�R�T*�jp�S�R����,[�|����)��u�V��ߏ/}�hnjęg, ��������ӫ�!�W�Ï<�/8N;��<�{��[��F|�?DC��y��òu�0|�?�h�MG���u�}
�̞�M[�b"���fL�4�v�c1���M?�2�$���阏c̘�8e�|<��cx�u�b���Z{��S�|�[�:^u��Ҟ���طo~�����(���L]�a��IO=u>��2F���mmX��	���i]�@�����oz���z�j�dk���@
�8ץ䍌6ڪ�[	����c��d�]��6�F��CQ\��
�Y1}�yH���M��H@���*U��*��,��[B���֌��'*�0�`p&ʎ���j.�gp�Dkc�SU�k}����k�%��D�L!�Ms`F&��0��}$�`�<��6u /+#̡Zof
��z[�5H#�Z�P2�Hq���J���\�VC�W���J)����&�<<Eڷ�ϑ�#n���p��]޽c��I�:�40�i1����_-�/䇣�Ҧ�����װu�/�p���ѿ��U0��=]8��̲hl:42C�֑��?�`ՒH\�����a �:�b�#E�}�
�06,#�z�Gjط+����}9f�Ŕ�f��kl�u8uq"?����T��R�T*�J�z�R��R�T�A===X���ڹ3gN#�xk׮�t���\s%���ʼn�.�#�cڴ�/Y2�a�
��сѣF�׽?������,ی5�x��X���8�غm�YT^�@�={��o��ϰl���}Gg]����lذ��ͥɿX\��'M��ɓ^�C���T���g�7o�"۾�u7ছ�%K�<�W���◾�֖a��Wb��mH���Q��2�|��_��|�x�[߄@�IՉ�
繄����()3�%Gf���1�'�����䰮�m�,D��`���
pˠ��Y�՜�20��e�AYfp��d�ϧ�iW�a;	�[�Bƙ���&�de�i�VE\p�C�2i+6�h�u�U�$[;c���]�d�,�c���Msf�K���y�^yg�A��rlf�"�uex�ܑ�Q�t_���-pݝ��\M<5��5s�Dށ�;��oS����4�
��<L1&��^ۤ�L����St�54�	B��]�_�Գ
��5$θ�����>����E�/��L��D_Ϻ�|0�M���1g0z|B?ϧM?�K����)���*�J�R�T�.}>[�R�������L�@�T����n�/o�U�]��oa[�AA
��o�}|	Z�
�t�8�I�r�q�(%�[�=ͮL����.tu��[h٤	���uY��1a�x�Z�F���%��?�{��džM[r$����ʻ���1g�l�����7>'���3˞x>�k#'82�8�,ݹs'T�I,@q�h띎>�(;*��A�Rcږ�?�Ŭ%!�����P�M�u]$�ɗH�VF:���Sr�Z5������f�Kg�Lݛ���4�~#ư��Fޖ�@�3��ik�[�k�_J%�C-%�SG[�7!��V��IRiM�Qis���盄��Y���aRGc�4��&���PF�_Y�o��'�	y&{oa�!L:��z��g�M���u�
K�cS���J��P�>��:�Ss���\�Nn�;��>Ȏ�| G���%��;m�$�5زGɯ�|�i�tģn�|e��x��z$C�<���P�(U�T*�J�R���L�J�::{�Y�7�M=u�<Ɂ���^l;�ɓ&J��#F`��	��b8�|�8�Xo|�k�w�^\q�%F s��=j4~�moF�X��F�uS�N��ݾ�z��e"�������{��셩k�O��rX��&��W_yF������C����m��:m*�R\|�E�ĺ���0z�H|���� &�' �sgN�Rğ����9���W].e��{�Aۍ���;�pNM��DCI�&r.K�A��8��{h!1���_2�d�eL�pNX^�X
l#�ƨZ�򃃒��[��K���U�d) �X�p]���9��4�xM�~&M����L��M=`c7fT�-�eS�d6"�k1������Q�if���Ye���Ha��L>�c޵��ZE����3B���6�������Ǿ�p<��ɠe&?e��(u��ȝa]Z_�P_ 7nu�p�����9ȩR�T2hn¡8��P��h�,�����i�=��ɏ�`C�cݘ~�b�T*�J�R�T�K
0U*��8��ù�}���>|��9b8�$@cc„
���L���;�  k��1�6n_�p2���҂0�>�ݑ@��̛:mZ:/4i⤴�#	���ZZ���IX3埸6r�p,.7,7n�e	^�rF�	��DTd�k(���!Y�T��1�*�{k#�s�keZ�&p�Y-j2k�_���RC�9'e�&`*��Y�r7vnx�b&L������1<k�}{;��`P�UDv�A�I݄n���5�69Pj]�Ev��&�ݣ.�d�9�W�Zr�bqY��a�,�+h/W��3Ʈ�=6J�!�y���]��
���c2C�����r�Ӥx3��s�;�Z�1�7��ژP+W����(k�w(�ܼ�i�@jv�t�����'Ӕ�f}��
�R/�:8&�?0�=�ש���e�ܝ}�d3�c3T��?坾
1U*�J�R�T/\
0U*��8�������9�6xn�؁�w���Nϥ�*ՋS♡$;�xR�sY>jD��4>��M�9�f�Y"�\!�IПCD���VK�0�D���v�@{-��0q!sa��dvv��Ǝ�޶C05���2F���Rt,.��?�?�����,448��R�}T�$���Iu��K�ej�If5	o�}�G'AQK}�'�;�6�bOO�����L�E���J��~��䜔y���Z�+��9Cg�ǠqyG�<�D�ViI���>����Uf3��朝�طÆ"�I_�&�e E���%{L����O�A�������P���M�s~(�y�C'k�_�c!���W�T*�J�R�C�S�R�T*�j�!RBѷ+�Z��R�"]�������0��l렝w&��a��j
�3�9�&�y�]{����a��ѲУƙ �M�Z`���؂}Q#�Z�c�m�&Oɾ��eo`ȡpm.�sփ��;$M�w������|�gf؂�&��sx6-���j��hht��r*��Y�w�xkS�VhM:so�E�S���j"5}_�e�r����*�s���~��[ox)A{}>Q�eS���
ak����=E]��T'�ĩ�F�z�Gc�m��x�� I��#Od�.���w4�1r���c:66����<��>��R�T*�J�R�0)�T�T*�J�1��0����fk�2M�&)�bh)S�4Q��]�W%#�&�U�Y(8��?	���� C-�8t�]���A�=���G}TvC���W��S>Q�0����5�V(!-8��|8b�������k�l��|d�방x.]�^j�?+k8�-��2���{�wNJd})�c�?��!�ll��Q���
ż_�m�'o��.Gin��ٱ�̭v.H������vf.���tD�}��w��i^Һ�r"���P�jW g&���D�Ju�d���=i���dM�߿]V�3��v�b�t����oA�=�v��Z>|�e�,&�6���
cc�|l�_��g�����`c���-[�`¨���0n�@��k������A��T*�J�R�CBV�R�T*�jP�8�AE���%t,�&3d�T�5$�2�E·Y�ɾ�;��Q�R�=e��I��6��z*ν�Dv5�;��! ���Of]1��jK�4Khl�u�@M�^]T�JGF65�v�B��f1��q�L�+�D�Spy<��CSs�Ί3&X)��Z�i�y.覡P]{��06�а���������������'V}?ɾuLӤ!Mn;#��%4�K��{
0����f����3�ۆ*�_�`����B���Qg!���RT�U�y������?*�w�gk�K:���Y���
�t��֦$&���{��UE��l͝
,<��O&�.y&8���Z�i����1
m
����������{OC�Q�*���.�oZ��MT��l�>��F~l�q�$����6'�Cc�ǯ*a��%Cccsc�)?��9���똎S~�¾���ll�y�S��f�o�nL�?��#��w�r� ;�����d�o[?6�|�!�?zufN��F�R�T*�J�ғL�J�R�T�A�Q���Z��ȹ0	"2��|����Mdr���Yf`��u�%K3��X2*�dG�@��`
L|�S�a�(P�C��q]�Hʩ��)�P(Q�&�� ����6��	������&���F�C����*�|��su�6�a3.�ꝗ~�]��r]P�]�ۘ�p�VM�{�R2hr�K�C�fy>�ǪGx�3��W��Ѥ�`�r���N_�(+���;0yo�n�Y�T}��=r��e8f����I�>㏓����ȩ�cU'�F���y�]�����$���2���`ȕu�Ն~B���<_��ږ���HCc�#�hu����`����*��֕{�}_�G��ẃ^3�=p|��J�R�T*�KQ
0U*�J�R�A�B����;�VZ46|d�I�.>�ņ�XY�3)�Z�}��w
Ĵ�1�l� ��QZ����X�Vd���*�\�>L�$�P*��m��W�h�J�*�P*��X�q�`��1�`;����noGhC)�mP弜�..��yI]LF���!��;
Hһ8"oё�$���('L�D�w')��M�-�t�G?{#H�������F�	b���3�d���$�
�2Y,�9I3�(�D&�Q��+��' J�ۘ���R��>Y=��f��D�y��Z�\������O�/ֶ<�c�=Ϸ��Z�����`�\Y�b?�T*�J�R�T'�4�J�R�T*� �sM��GGcc��d��VD�Y���CqMz��H�0���1�e���Jٹ���&d��0�퓄d��L�\m�ֵjE�E%[Ngw����q���,�t�졺fZ���F��qX|�e�~�Yؾ�
�觻�"`V�|�q�����ac�+���t5�3���9�a���O�b��2F7Z�*����ph�(mi�
�n���ƻ���Vf��4�E�;LVG�fe������?"ԃN���1��\	�q����V���^Z[w<�J�R�T*�jhe�����s^50�A�F5$��C��W
0U*�J�R�C	F2�b`ȹ
�YU��x1��\��b��Z��4����apVjl�9!�4*��B�5f�6e},.F��斅.�smvttS=btwWP.���5!az]�$�K
!H���-WT%��hE��f�@�mĖ�{��]FgWE(YRu�T�@���и�Fhm�:C%G�M�=$��o	�L�R���#X4����'��b%ԭ���3�
NT�68S�AH���4i�t�W��CD뀣	�Z�m�se����OӋ��5HA��+���I.�Y'zW9+!�.d�sj�T*�J�R�T�֭۰s�n�w�UϬ�������7l�sK\�/��غm{��O��{���w���a����Ϭ^��_�a#��1T˞X�u�7��Ukp2��ݻ�`��z�3k�x����:��k/���c�|jU��eO<)�j�ݓ����q��w�eY����x�M߻c�e�X��o��q�(�u���~��`}�ƛh<����u�ӱ����ލ��x�>*�
�\�T����]������ɕ�Ϟ��P��S�R�T*�jT.Wq����u��t�P���DV8�#AM�G��b	�	�d�f�k5ɕɠ���G%(�b�i��N��q�
`�'_��hni�d$G�z��lM
q�6�JJ��%���C"ࢻ���ph۸�a�ÐP9�rٹ9sal�AB���t?ʱ3��=���_��OI�3���3��lB3��R���ۜ�Ҧ�ҍ��Z�MZ��?�W����6Smnam���Ȣ�[�+e�6�9S]�)�)���qM�$�ԕNg���ǖu�X�a�T*�J�R��YB�f���o���b���xv�=�c���x�Qt�=�=�>$�4н�;��ӃM���'?����R�n��@L;���3�<�ի���Ϯۀ-�/�� ��� �_�Ǘ,�{�={��:���<�D@k��xb�
9������n�}�����d�UϬ���ω��Ϯ'�R^�����xt�xt�xp_uJ_��x�ۼ�	��+V�’��1f��t<6n��C@�'ԟ�A�;�~��3��Fl����pn<���O��������ߔ0(u}ki<v�x���t�R�A�q�,[���Y��YY�u>�`���{��r�3������n��]���x<M�W�xp?�+���w�K�:���ߛ�}�]2 3��k��*�WP?�������x@�c�O���CT��p�ͿB�����������.�*�J�R�T��-��СvtuW82\��)��n+��J�媌$��ȩ�
tSQD��JE��1*|��IV�=�f��T���SY��B�;����ös��d�"�P�͎G��L���j����A7F=t���Sv��WG�S�&ޡ�7V�����K�6f%t�R\��H}�\F���ߋ�4�I��� 8Q�!3�B{p��3'e�y�i����䝙ns17$�D浴.(LPfe�|�븦�;��<=L��<,H����]�T*�J�R�*��x�mw���}<��j��t�_���(b|�ߒ-������~E���>+�'--M�Jp�λ�Ǿ}���_�
���:��w�#7~,�͛�����o����r�н���R����1���O|^��|��_“+�`��/]�p���F�]{��H�z�:|�S_��u���q��G[J���������ʧ�AOw7�ǧh<"�W���?>)��/~��!+�_�Z-�����u���x�{��T^�_z!�Ǎ���G7��a(���7�^dٲ��x|��>�86��]\�ľ�h<��>�y$h������[�fͳ����� �o��)�e�֭��7t>��Q:�X��O��P���7�.���/|U�$�(�Vk�կo��7�—�FE��\F��
�?����`�ا�t
��0���k�s���{�A�O����m��� �>��o�GP�^�R��R�T*�J5z���য��y+�mۆ�ƮF+��\�߉���E�ԗ|SS�c��"�qAB˶47�Tp۱*�h�RKi�8=$t�e�_�Bϲؙ��C��&H]Lw�4̩� akҶLu.8l'�X*qX� 	 ��T���8ʰ�/g7��@���_�ܨ`7*CK^̯���}�M7{Z5�\H^�QA�[j�m�)�3)D�2�]ח!D+2؋z��Y!�c��0�=���d��}?Q̀X���cYs���.Z��'2Yx�l�w]g��OQ�T*�J�R=����[��\�r̙3���A��P\��ƍE��:s�t\|�ye&O��iS����!�/�U�q�����~y�����9�{���+.{���佯��r�q���FP�a���N�����$��Z�~�8�4\z�1�՗h0r��@Ic�o܌W_w
^v�'�}܏���^}-�͙�}���w��1�1o�,\����Hc0f�h���Z��ci�q��?H��_b�H?�.��"�ڵO��՗Q_�"�k�,_�Ə�	c'"�Ǚg,�e�\D�1"��Hz}�%�ux+6n�*c��h�K���Yg��>�z�,Y��F,]�$�O�Ц9a<��0v�hw}pj��=ljC|R���[4��nz��w��Spх��\��8�����?Ǐ����ܸqv�܍�Ӧ�B��&O�p@�>��؜��ůT*�J�R�T/X��j��سk�x�AL�2sN?�g������P�Lf��CN[���`a�a[ketl����#��JI�V�뜏"y]�՜;��1�b���I���|���Ť�V���qK-�|8y�7d�Y�FTw���[�$)(�5��S��wtJnNH�3bݽ����������z:w`d��ݷM�0�
E�����������M���B难,���5C���?c���ԅ�'�ͷ1��/�^�:oe�
u���e���!�w�%j}h��y"N�T*�J�R���p�#��!YG��9�g��/r���[��|��_��	�C�L$H��/�����o�O=�
��hko����$����ضu�|~��%ؽkA�Sܽ\H�a-�0}�~�~c۶�r�?3g��K|�K�@OW���)�]p.���S9�6|NDqp���Ǩ��={�,w0�e���◿)�I~������n<�<_��w�~���.���������W�G�|&A�rk�:��<]R��?�ٝ������
q�����s�Y��O|.
Y{"��%��-Ú��-�{7�>��x|����`���2��<��k��]�nt%���ƒ8�C(YvC�s_��mlvo诏�h<*:��4������=��W%��{`��N�i<�5�L��D�����J�t-j-�>�E���+��y��A�R�C�ܿc��G������2��%�0m�<�v���1kJ�"A���pH�K���k(�;�Pp��r��m��Ʈ�v�9�̟.7�5����M� �;�O[��ʍ6��i�o�=xl�.Y�7/<1�P�%$���QAܕ��A<��e�܃f���r�������w�3�>q.8
/��R�"��嶈��T.�Q~�7�P'���=�J�&��s���ӆ����ܹ�o��9�]��t#7{�h�
�oK
���jr��B�f�n�z+uW涰�����-`􂄦Υ��β��3{����^��(6WW���Ի2�s���㆕p��ѹZ;�Y�����׿�*�J�R
���KI>�}O��)K>C^�y/?�ů�O������n{�8e��vj��Y/OҶro�����:tuw�i�%��8�G~)�}�`ǎ��3��v#��׾'��x���gR�ٟ�a�,�;������<��l�nZw���{<\�]�z��q��&�׭*�|R�w'����On��Ib��~�e(�M�g���67��#�ꯏ���`>��s?��_��=n	GWJ�������_a��	r���^�^�z1�}?�ԁ�R�T*�J5�s�MM#1�d�.w�
E7��¶�X��2�Z����0�8e���B03.5�J7-�F<��"ݰp��w�/�gS��@s��O�;Sr[J��\(Y8WfB���!Y]��H�޵�Hnixy��0"*����95�!h�C�IZlL}�Yq��2C~��#��&��+�d4>��qǬ��л�v	�m;;��m�f��F��2���6��#��&��<л.3x8�˿2Y��w\�O��:ÃF��+�1&��*��C1���̝�5��"�M�u02�&��${�<soz���R�R�T*�J���E3��A�`�;��ܲl�}%��_����2�4Z�S߰̕�e��8�H��dM�03fL�N�wR|3v��+��7��o��Q��x���}��>K�Ц�v\��ƃ݋.���
W��m8YԘ����ƣ��<L��@�0rz��s}Dt}�ПZh<8\0������R�إS�R�T*�j�|�:lX�W]=��N45L�0����]�u�
�;��ԒG������3����S���S��J��,�Lk�.ߡa�XHg}�X�[�oLɪr�R-�Q�\�Ţ��a!��vlJRM�l�&v�$�l���	�0Er���w��%�%/g�i%O�i=>�,ߊ�����M&=h}��� ��k*�����eš�>�kq�r��Z�
��	�r�˒��ܱg/F4��ʘ���͒����\�eKS����&��ѤnK�Ab=�@���AL�$G'*��6�?}�M��ceabS̛AӰ�dX6��iӭ�I���f�J�R�T*����'�D�-<�ty}�>�Ǡ��w6w�,��r��|���=j6����/�*�J�R�T��r���Z��1�0���ݾ{vo–5[�ɕ1a�HL�1mm�p�P;v�߅��ߎ�~cƎǔ���‹1|�|qL��u�ܓ�ie	��e��6�t|[0ˢ���rm�ʂq�J#P0��N�rZk=4��	�o������d7h��)���R��i^��Xˆa����2h���E~�P3�q��5�/ގC�Fօ�mhhD�#5.救I�N��G�[��F�����"�Dž�u.ͬ��5'����9P�E�so��	��u�/���C?V�W�\_e��j���ǁ_�G�P�J�R�T*��y�DJ@���T�Z6�9T�MPxU���S�R�����=�{OQ�̲;����t�KF�&{�a����-�\1J���0|ƍ���Ӱ�b�u��pXKF�6bBs�]�;Ѓ2:;7c˖m(�-fϟG�(@�BP��[Y�TC`�v�!)���nF�BR��ȰS���GnP�2�+W��c	+S�H�:g�@�ȕ�ۻ��K-�ZM��
ܴ��f��)L_S�l��Q���#��3@�Z�"aP]D[�^�����sc&މ�e����~�0^�Do�~4�_�*m;�؉��rO&�������#��6�83ۣ��#�-���s::��!����>f):Jva]j֬s���k3h�힊MR�[�U<��� ��<�!���DU*�J�R�T*�J�R�N,)�T�T�c.���{	���4&��N����sK��a�$���Nf��a0vR���l��Mq�2	����j-�հ��l�փ��L�mc�}��"��e���~����49";0C~Ɉ^��jg	��Ĉ���:j�8]E�K�ü�,5P�@p�9x�y5���Ï�P�YRpH�1I�ZM[�5)��a+ѳ�u�} �i���z�1Zڪ���Z�]��J�Z�[���~�2�l	$埂��d`��n��j�s�r��~	�sG��0wxm����jA@��L"�������2f'�11��x��u��E�14���e���}0[�ܱ�c��M��sqfahM�ǪL�J�R�T*�J�R�T'�`�T*�1U���;�l^��(�KA/P�rbƠ1�7F�5�]�D����xv�����q�Sa���$���1�t^;qV*�����Kq`���PD<l"�b��h6܅��܊.1�䪬R��/*5`�!Y#Ɛ�.��q����C>���Zv�l7����L����qY�P�(V¢��.\+�I��X�I����X#@yÐ�� jhjC�{����ݻ��gD@��*��	��]�eG)��j��*�@k�ے����`1|�A{�b{�A[%v Y4Z#mw:�1��V��1<�r�2�
!iC�Ą͇���cf�1�ԕ��O9��ɡ>�{���7K�R�T*�J50q����s��#|�>uD��7jY�Mں}��R_6�[D>܉�ͱ�!ž�ȶ��R�j(�}@.�C>5D�'߫
1��g���i�+���/\����{<����!@�3�e�O�j~<���Hc�1�?==e44��mB~_��ՍGh_Mrx�LW�r����ՏGV�����w�J����+������P^�Mww��p�����]���_n<zo���}m��z�I�J�Rs%x�O-g_�^
�ڸ���/k'���
q���H�����1��|���ZW���Q�)$J�>�$�S�K���%�+J�o��?A�Ʀ����:<�����袌Z��Y^JKP���|���Y�p�1�Ռ�|�Q*�����	gՕrhpXZg�r���b����v�x��ލ�8giC�T�N�0YNeŮ\�Q�[B��Õ�j�F7���}���ى�S���4��إ�K�_ZKZ
UtR?n�q�\�n�xN�7��b>56���is���>���	�a=�̜�!�n�t�q_!q�%���D֗��]F�9�R�T*�J�RI��qF��*��:�|�/��E@D"�ЗЖað��k��1r�p�ڽ3gL�߻e�U����Ii�)����)뻻�dó��*��9�g���{�����$�E{{�iٰ�f<��)��xv�ڍ�T�;���$�?|�v�]�j?�Ǘ<!����ôi��u�v�J��yӧL���S�w�~�Wh(�g�^�v*6l܄�;wb�葘4q��o��iؼu+F���V*o���ή.L�2I�<�i&���}ﶸ��Ԉ���y�i򝿡T�����c2��a�E�v��1r�(j�^��x���՘2yfL�����2o��/8M�+����a/�řg����&�+����ڱc��'�?~�X�]hnn��Q��8�ƃ�e��'�6gm?c�4l۶��q���i<�N��"c_��T_�}�l��3Ϭ�si�7�����a˖�1b���u�6�ήnL�2Y��jCG{'�7	���x�ƣI�~�Yg�B �Dm.��r.�_;h<F�x�lÈ�#���M}��랽��^m:��Ǐ���4�wlǂ���s���޳g�y��ڝ�va�	����{@�c��[ss���9r��)�
�����~<�g�q�ʲ��q�@]g|}�|-=�z5]��ρ4N|�p��ɓy��\
��T_�G�KU/D�`�}�#�羇�7����<l�W�q#�͝��/>*�J�R�T/V�
A�n(���Bl�:�E)&�'�Dv�����e�Yj$��O�f9"�[\�&J�Yb�Xt�TM��X��4�����t�dR��9'C�Y>&�P�2�I$<�ECc,����
�8�sqVh�B��u(��7r��=��`�]�\�B�����Bm`צȊ�)� ��]����bT���"��t�z����ؔ�F:��F.\/�S�c��y�6��6U�O�[2רs�r�4�m��w��ڪߣ _�<�1�A"�0gjxr�<�Ih�
Ou����b��HC�Z�=j妶��L|X�8�K�Д����ӦQ?O�T*�J�R�T��p���}yͳ�D�# r��3�n�fz���f�0NPq%����`Æ�i�aӖ-�͹u�0�kw�}���R�O)���=�T@�����*��u'm�ߋ'�\�f-^v�x������(�3$]�z-���.�%m�b�#|?��� `�aˡ����l݂u��	\dg�^w��s�ʺ����i�f��h�Yظq3'����O����u1v�h�e[�>��{��;�&�&H���a�����ī��k�]�'�\����M���/Lb���v�x�êgV�x���8�6m ��si<ƍ�{�}��V;��%x�UԦM���=C+��'d�QAwOY��зd�2\z��䞋;殻�;	7��x<B��B�b0���D�1�H�Aƃ�k[[�<�����&��~�mo�ui��`+6n�$u�q��p��v��K�74�B0�ω��_�`��m�vͷ��6�ꕯ���[�ؒ�2歭�1X��(�x�[����%�O���T�=x��U���=I������]J��i箝�/5���~}���pՕ����F��<����0|����=�v�|]^N�����J�B������,�����cƌI���`�y�q+�߃��[�D�� o�-��N�u/��*.��<��&�&��a<��a`�����s���
׿�Ƴ
˞x�,^���7�-_��=������������N���w��~ɲX�v=��>����G>��T*�J�R
T�G������NB�t5t,��@���U\���,:�)�#�3c@�7I58�g$�e��"�9(�	���-H���\�\߸�q9���aq\
M$a�b��!^�I��ҍm�C�r��M�5YnLgt�*ሜИ�Ҥ!e�2����ܐN쒬$U���}{v��Ӆr5���.�d�P��w
����m
��>��X.�ݛ������}Z:��υ���SŜ�eLo.�T�X·
�H�ܖR� OEciW~s6����������Z��
����@�wmߧ�h#�~N�Kd�V�J�R�T*��������VE�e����۴i�l#3�C��{��1ذq�8�����n��4�X,P�*p��߯�;8����Y�V"�457���S���>�F���j.�o�G]��Y*�Y�h�c����۾c��%�vŕJW��L�ʝ:y����k���(�%z1kh��A�/!�&�͐��w��9p�q�`r��_UT橧�#xx�8
Y�6v�m"��z�q�Vm�R?t��h���i�x���~a�Űw��^�ݹo�~)����e����
6I�u��e�1t.��.��uO�G���]
�̵22����q��ǃ���NJ�mnj&x>WN��;v�[O���و�,��dž]��+�S��ť�^L}�A����sa=A|�\#�#� �S� ���u�3�c��ԩ��C�p�G�X"`>F��[�ǃ���kw�k0|D��IsKKz}����c7�x����1f���#n��:�{3\��lj�E�g�坹�ɓ'�yP����
��cq8|,�ɏ����I�����'|��x�� �@נ��ꥦ��ܾs7�<���A���/jo���P�T������ ���\>Y���߄nG*��X�/&���o���������},�qT��U��/�Xt��T�aN�dl$�qxvbF�7�tq�3C4��9��H�wz�]p��P�ԃ��;9�{Ӡ�/�iq�gc�W�J�&�\n�n.��r�sU�V\��oc�ȍ.|I�t�L�c���:F�,�#$-��op�4�福�q�/odz�6�u���f4�n��9��¹?M���+�n��!����ȃ�6L�3�	%#���4UJ0|T�]=8d[PN
�5�1��f���?*�K�ǭM}��8s������E��<����I���Z��&=����H�Y�N�g�%�[�R�T*�J�Bt�磹�E^_y���bà���\�[���Yv�̞9S\Yv�3�X�h���/��{������h6l.��e!9*��8�)����˰���Bepr�AL7�s�@;���#��;�|rHזW�k��-=9��e���p�\��}���'�LG��<�qHԹsg�Øb��?���t�?���ޏ��z��J{BG�]r��O����h<jn<]}�R���Nv�=}��n<������Kh<�2��x���j��|_Ġ9V�P��G��mة�0s�~<�����l�w��C������G�\u�D����s4�?�η��x���C����8����$ޖ��Ï>N`�ŏǹ.=ms�E.������:��*��t<��֝��_{�Ur0�[G��]���C�2��x|�2,Zx����^��WO�>U�dk�.n;M�\�*�����:e<��k��x�~���G6�֍�ϵ�b��kt���g�q07V��6<������i�_�_���p�1*��q�쮜4q<>����I0s��̾ġfo��/.v`�ܙx�{ނIc���o�%V�]/��+��W\��g���=L������/�o}�����yy�������-P�T��)�>�k�D�U�_tp4	/�w�}{�Q����s���Q�wl���坺h��K�Kܤ���E��2L���lۈ�,���F�n�����UK
�7��XX�8����x�R?�₫r����48���:�5e���`���3�0**Հd��M�qηǏ0l*Њ�MZ���B�	x�M�q@���>��8gf��q��s3���È�r�5�(r�4I�|#�!���f�;�?-̠3�y.�Ɵ/q���Q��.9�O�rY�#0<8 u��L�և#�j=(�O�F�,5���ݲq���Ԩ��UN7����8���R�pmgh���:+�Ѹ�Wf`�q�1S��<�|�ć��b�p`:J�	d6��'�u6c݋(�LIc�j�폍��.��*������lz_�{�*�J�R�T*��p�|h� v��ph�|(HG�:��
�T�d1l�",�e(�i�D����G��嗅�����4��:��␫���4�\���[�.��"�9|�\��ph��0<m�`*ߗ�F��[���8`4�G\�\�4gr�˨�R�����-	�
7���c$��%uu
���x��w�}-�1fL�1<?F��Ñ�mذ�e���>���\�}\e�%_X7M�1TVP8��{_���/�w}���>�#�t�??c+����.�*�+\��C5������\��tI\˿P�%!���}
�_r>�'(ɮM����;�����G*�Y�㤉�F~���L���yv�a�38e0�b�9o�L��?�^*�Ju<�_I~�o�=ۀ
k�k^O�q�ś�p�B`!}�K�W��_��k+�=v��կ^�v���{ ���~���7��Ӽ�O	jRY7��^���+��>�O�\�JZ�.�Kq�e�/1f����%��'vm�p��
X�<ŠGbl�d��>E��I0��D@��Kk���懱��P��7p�ͱ0�?�RO/�p�b|��w��ζ���v{wD���1~���i��/O�<�raB���(�Tl����	H-���]��.�*��a�#�A�T\��\��O��ށir �_I�Kϻl�C��
7?%i�|�kV�~�rY�dq!��ZVs7#1�?�������zۡ��fQK27����Lv���&�	���>E�Kgg7.]0Û���'�'kŌ'j�B�FYkمh�IsEZ~�����s�JnQ*?
NM	�j3x졦#�Pj���G����I��W�c���t�L�3�f�.&�S�m��G�=.�pG#	-�����؟�/?�B�^Ř*�J�R�T����=<����1u�g0�$�*=����A������m�S}����l�ò,�^�;��
Y	i�PĶ=�����>���u<+o���\%?��T���6���@"ŷ��zy�%�q�y(��?��˶��/}\B�x��e=����@%�����yɿ������W�����MN��,^tT*��x��������0b�! �杇oϑ >V+�O39hos��K5�p���A��o�#டQ������m�f�
�{��I��8(]��]8�:t�P]��׽��}{,������@��(�(5�S`|WEؼ����Fb���$tP�M�e���1~��g_����l��3OM�u�g�ӏE�K0����Xr_�3Ϋ��*P�#�����e=�sOr@F�9
�̽��-8�$<jM���~
��B�r�G9��TQι(GK��p:�Y�p����jU�.�%;(@�JF��*k>o�!n��:8)`�&���q���x�jC}h�Z�@@�-3�v���<�VB�Ve��%l�ێ��Yyv�r>�9s�b�̙��B��й��ҿ�w�V�KO�����#��n���3��P��C_)͕����}9�%SDmv�4$pvSW7�c��,�_[@���e�L͘��{�2�D�J�R�T*��d��Z�]���V¸r�Xc��k�������޽{�Wg+!6S���2ؽ{����/@s��Y�]��xH떉�}f]��n��=�{w�9x�W��m�������>9�2�\��>x<l�SDt��Pz�>
�G8n~>`J��;w��9?�)��븅���G?P8�,y�nG����j���t�6���=��eh�!c�A��7��n��i��R���p](Y�J�:Ѵ{p���e�朔_��z�œ�<��2h�w���e׺�]���ZMhl"H�@_����V	b��A`)��]�=vr֥).�+B�(�b�-���h�Zn�>�u.�]���ݲ%�����V��o�$����z�1-�?�!3\^��.+��Ʃ�`,�oh�Bx�Ty�����O~�G9W犤��$w�eR�f�A�aOĕ+U��1I]��&�oX�(J�!�l���?_'�����B�JE�#L@�ӹ9iyDǡ�HP���NNWf��]�|���k4�ɀ�4�H}|���*5�Yɕi�l����@����]��2������\�v4�g`+ƌ��C�ػo/�M!Olӧ��t��y3�^\'������q�jɗDŽ�Ǿ_�o�����-F;�-}�\>J��;\��p>��Y�Л��L�ͅ�
�bLV~��1i�_���n�X�J�R�T*��s�.�[�^��6э3?�w�~L�4Q�����w�܅	�'`��ո���|�J�Y�o}��u�6l߾ڶ�����6l‚�b��
�:m
A�=t�݅���b�3k0s�t�e�'O��K�>!�:D�>+�YW�Z�.8O��uo�c��3��+$Dg�0L?n6l܈��^�O��2'Xپc'fL���7I�?�^�����'���:^����]ݴ�,:�L��;v��T�;�VKq�U�����1�G�=�޽��M4��BQ�o�7o��g�A�����ƳϮ�e��׽�h<��x��k��t�S��Ŗ-�0��m���mm8��xr�JL��س{����q�~<v��C�B������E��6o��g`9�����m~<�����e]�+�B+��q��-[�b�T�
�8�?�0��
~<���B��*Q�x\8��)S�ܹ[��oK�=�A�U���zM�2I@&_]tmp_�+e�o��q֙gе�ǃ�͛6�5׿
�=�X�d&L�@�uQ�'H��4[���?WJؽ��a��1���O����;;�d<FP��5�c�.��X�h!]�Oʱ�>�����3kָ�X�����W���Tg��f͜���o��'��u���S��8�����t�)S'K�Z���p��I�T�j�t�&���0�-��G��<�콌�b��i�l�ۆ?�����*�Ju"�߶��#�_�7���1;���I�F�\��2�98����!������
.�e�s.I`�Z��$�Y*s����?�0�t�W8�2��5	7¡����װq��ЯW��J�`�=��RK�Ď�e��f��`�vv�F��z\Z\�����Ωa���Sg%X��:עu�Ÿ����|��������K�cM�:L�)a�P�8d��V$nB�Xv�<J܊p��䜔��*Hd�C�J7��;/��{$n��CI��\��4鵄hM֕	�rnZq?�C�L잚����fnJ����V�|���x���L 
�1A�#�:�c7�Q#�����%��1U�a�s�2�llnȹ�n�i�v���V�r8\:>�x�+6��i;�<�b��p��͠��0�\u�ҟ��Og�x��P�.p����z��G9̘��E��~H���
�8;�<0
��f��T�H?�T*�J�R�T�����E��d�2gk1���@�d O�X�-��	��w�u��������ᜫ�
h�9c}|���q�1�{�S�4y�rY@�=�=���ʕO�W��O?M�v�m�.���t,�+�e��p�ϭ��k�[~�\u�e�lݺ��?C?�m����!]3��Kpn�.=[�n����p�qfL�&!0��4�P䕗_���KU��ƌ�c+Kpw����I@jZ�1�������ʕ��x�=�(F���[*iX��n<�H[ƍu�;���9���{�O��|�q�駦�1v���kjjP�r+f;e���pՕ��M,��N����׿�
=�T9ݚki��# ����c��kv\/�}\��j����щs�=���r�4���r�+x�bx��m�߉{�{$�Ι-yV,3��?|��Nh<�:�@аU�Z�<>�7l����<����x���W�
���KsPE,<�t)c�����Ƃ�d�?��������׷��t�4a��	0�)�G�[o�
�ew_�����/�k���<��c,����!�>d<V�� ��p�q�����3��YՐ�L�'MGW��9���G�Y#����ü�'d���J�:Q�S���w�em/ CL'+3��vj�P�k�
��G��_ɖ��Gٶߖ���!��s5�X\��,dʂsǤ�YSf')b�ɀ�'�Ͽ:�ۺ0�_��ظ���ʷ�o��kߔ��4��̋�c�—��_�@���/1H�ФqpQg����dW	���|#��C:���)�ч?e�^T$GP���̮{��A�{���ԝ�ȓ�Q5q�&�qxڸ(O����9kV>3d{�z�Ҷ
ƅ��Vj8k�Lt<1N݋|\	�{�&P5�U(�.�������;ӈ%��CefK!q�7v���Xʵ>oe��,F�+7�z�s�vl޲{��⒆�87����o\(
��6I��99�]�K8�ؓC۶5�ap�z7AC!Ʃ��P����5���`��9&�A�����m�Ř�cつ=��r2T���~�>c���J�R�T*���bв�@�x�N��![[�1q�D�N����1z�(U��wꩧ����K�t�����D2~�X��0��
��a�����'N �sf�F�y蓾�3cW�Hڇ�y�%���lܸ	^py�q�F��~ٲ�r>�)���3Ϭ���N��l�h���af���/;��tvv�P�H�܇~��5Kܘ�w��;wH3j�^��p<~�1���=2G>�^o�J�q�� ��1B"IM��@���ݫ�
�e�]��-�e����_�e�؅7��س��P_��<��wtv`���i��m�H:��ݻ	���v7n�����S��[�����Ž%�ʩL�,{R��x��c�N�x�&�x,�T�e�n�M
�x�%�v�]4�~<.�=�B�Ǎ�C�8P��T��|z�j�O��!_�ZM\�2���x�P["����';&�+���Տ���c�ޓ�C�b(�}�³�����C�҈��x��+�^�s���+����p}�|�tv���k����{���qcdl�?y���1͏G�G#��#�.�뗣-�߿�7m���e��O��j(t\�=�=����?���!����аA<��W>x�/<]�e�����?4�����>H9�J�R���ǔ�Ȳ���4Pa�������ͅ6�֛���	+s�������18�o��~����[΅�J��%������>��χ���n:0qJ������#��1J6��w�q��A����/#���8.���
��EC7[�
�mE��p1����eVjr\qRz� ߄�бV��r-—KkL�8Hkk�4�eįkVn`�+b�65q��b�E�:.R��
LJ?�;��[”i��k2��كM[��1�ܨHh�!L���>o(��1bP)�H�r|�Q��>�|�N޵%��d0��D�$��i����p�]�ج�e�̢.m���&�#s�M) M7
�*�J�R�T*��!$��_�8�����_��k��Ο7O��s���k�a�g��y��4�ڗ_�޳y]����M���3V�k��9}��@�eG�;C�9��S�v��ɷ{��Џ�����\/Cʚ9c:B}��s�/^�g9�Vg�9s&�v'�_��{�U���.>;]<��V:��r�28�ƃog����k�^g�i����k�b���t�Z��ohh5w�,��כ��a����y�k���p�2y�,�q>���=�ׇ�{�k��G�>�%��:er?�w��x�7��gף�i2֏�,����u�L5t�p��}�n�]���<l]>�e^?���Ѿ�p��S^s�99|�����|�����#����lΛ;S@�~�3�����>�����~v��t<�J�:�
ݽ_�ަ�����`��[�>~�����ײ�~�+����RyY�q6g��Y.�N:��wQ��K���A��j���C7	��]�УY�Y�K�\�!3t$��7~�RA�s^�)�b3�)P΅Fu.��Ђ���d��-�f"56Y�ZU�);#�����8.����7|ֽ.����Pw����ܨ�{���P�6��x��B��Rk��~�셋0g�|�&rA\��m
.�<y-}'�&�3�m��1�ץ6�
ԟ
.���_`x�`�(`�0���v<��<��Cx���������r��~�ſ7�s!�qc��O��>mZ�÷V�T*�J�R�����{�{=���#�c���p���ˇ{����6��ۗ����ˏ�<�����.�}_����7:�6���>��e�Y���,�����_�=�rL�k_��_�{�o���Ga��߶��>��xY[�x�)[�:sf\��u�%��7���M�Rܙo�#y�@�>��A���6���.c����o���c��y7�a�c�ޙۇ�989��?ʱ�l�J�R�T�#����� �8��g���?67�q�L"UzɎH2ֈ�RB�Pe���c/��Y󬀭F�]媄x�\|o���q��Rх�a�W��6��q�e6J(\��d��l��f�C��Z�������1�n�^"����n���I�ep�#�P��ױԵ��Ur�
�I�.�DŽʡx�@�B��+�%���e9$]��iͅ�5�t��������k�u���ܱև��(�]�a~���V]9%�ћ1e$
�L�
Må��1��A�0����i(��v�>��Mo8�BW�R�T*�J�z�����r^
V;�:S��9�d �?��!�Cw�8}��O~$}��d�e�05X����}�d��?��ӗ�?^(�_�x�y5U*��I���ܿ'� �Td����9�!C�*��t�1����%.%/�&���ġ^	^V@V|p�%e�$��1����.2���
��Pr����0�����%L��j�s;�6	́�8ԓér��C�2p-�`�3ObԸI5~<-��~F��Ʌw�W�Lj�Y$h*]�y;9��1R'��Ԏl���K[_.�-<�m�M�Œ�i׳>�m��&�/�b}X>v�ЈaMDe`��Yس{�==n'�O)/� 2���,ת���ͻP�iCs�h��ԗ�l���!{�5��(ex����"0�r�n�;���Q�T*�J�R�T*�J�
���W��@��
�/�WY*�J5�r�c'Y��q��I�1ogG;�j�1�b~\�g�D����4�J�W)���%i}���Ga��f���,D.�+;+�*A�v��@C�B�������&�����H�����Y��qZ)�у�R\DORvI��đ��ʶ9Y-w��+�qĸi�<c.�M����ұ�R���m�����r:N��K-(���3�"`c=���} �Qؕˊ��]��Q�(���|���L~-�c	�66�}�"����иT$�h4���>��LFٹ*��ؕ�"���4���s/:��a-#��L�����C�\���i�N.�a��O��~���K�3G�R�T*�J�R�T*Չ�
`�T*Չ/7������ҩ��2�ŗ��q%.J�z��A��O[� �$��1�G�~����ؙ�N��2�!FZ�K9h�
0���Ǧ�zh8�d�Ž�㼗����(U���T!�aفiZ
uD�:�ǹ����|�����ԌB�ز���Ú��0r�dL����FS�p���?mo�1�:�N�1��R�R�H��,�5H�|�o�Xqs�Я>'���q�rmk��)YX�w�qR-��$�?F�u��I!�i��B!G���;�z�@3r���y{�{w����N�*�A����r^ԡGc�����f^^���;����`�D�{7U*�J�R�T*�J�R�N,)�T�T*��?H��p_�^Z
��|H��3$λh��Xs@*2�*0!H����]5e�Z�b$��B$�P�|9@�
ae�3�៵�Ӱȡ`ME\��d�V`����|
D���t��C�D�Z`�BV���8�@�emm���`�q8m�L�tDSԁ��V�}�F�Z҄c&b��31i�<J
���n�@p�0�:$��=`,�nB^���9�k�`m
�	��H�/c��S�<���ĝi%�%�� ꖤ�ظز����@ �V��KӸp��$�Y9sh���F.|�O>�&*���L ��Ɔ����зe��=m{Qj�����������
���P���[Q�p���K�J�R�T*�J�R�T'�`�T*�J�R
�\���!�{�1�L��Q[M
�|�4�i�Xp93��l��a��0K<�
���rc����~WjbƑ�')�V	�qH���Jq8:^����z���;)�%	�r#�M�c���U���ۺ�i�Sh9]5*�kF4�0alL�
vmƦg�B���&���S���9�H�Vɇi����h۹׭#�׊3f����T�x�|�O�ܟF����Rvc�}� �Al�dnV�]�6��f��`z�Ƚ�P��}��q�G3��eG��v���b����)K}
�EZ����S�P��
z�vU�1<��q��X�Jo*�/]���8�ؾ���hl-�3"*�J�R�T*�J�R�Nx)�T�T*�J�Y��3���L�c�ץuqc]���s(�УµD�,n�DB�����|�.��t�
�,h�uu�к2����-�p�R��C�&\�B��аֹ,	n��
���9��5�����h|>Nq9r�Yڶ�܄��N��c�)��m�j�[� ��؃��f4�U�o����m�.�زo�1��s�r��B�(���k�CB�bç���C��,�%�~•�ԕ����}��
����9Ԙ��Ӂ�(��jF���꜡�Ei,��.�E�򴒣�$�i�r��ȭ�>ĭ+)k(�ܿo?A�D�l��̔��>�,�@���@3L����I�[�mعq�!��*�J�R�T*�J�R�T'��l�J�R�T�AP�Z�8��
dcP	s�Ȼ�TL�]�H8R��p�Rg����q����u�����2�n�x��11�9`Z��ؓkT2���j"�0�F˪���A��ښ�8`��Q�gL�5�29Dl�Ќ�Ԉ���T�ؼ��@f
�fڶ� aI`��]�J*,�2e&L�	p.Nz�J5���0umE�Z��Z5+�qCVkUb�;f-|�'���><-ryH���i�����4>�oŊ�T�1�NW�A�8�%���8�����;�/�k��.YگH�␲���ݛ)�v�_W�f�w��e�.��J2U*�J�R�T*�J�R��R�J�R�T*� )8�lp�Y�z��[J�K��NFB�Z���N��sM\~J[+��Уqelʃː���.���F�4+�d�*�*����A�K1Ij��}t@�;3����i{��'�04.��"�L:�)�@����U�[	\6�~��Z۬S{�e繜��5�W���2�吶�����
�|#ߦr�G��0���N�ܚ�gܧIH���&�BؑJ��g�Z����֒����F��(54�}d]��1�G�-�����B��M�pکgJ1���@����^�.��Ԭ.�Ȓ�.26\B��
B�	$C(3�g���ɇ�!8!8��'L ���i�c��d5��z�.﷞��w�se�D _{���{�9���rz��i�q�8��^��I������`���R����~�{�0�0�0�0c�a	L�0�0�����~pn���27�Q4�2�҅����H�A�Q�(�2�$c=�k�`����k?P�
���x�L��.IZM�ʶ�?�<u�z�R/3!!�r$$!�>.	�Á�\�{K�-���a��-j�y��'gs���i�5��ʤ���խN�E$)O�&��!1Sy�9��S��<_=g��z}b��i���@嬆+%�)�D�ֺX��’RMBrVo��y�lPHS�*�ڤ�M%�:1�G>y���|���g���p�����$����4?���_NIƐ�����B���T�O��c�d�J���ͫ
�0�0�0�0�&0
�0�0�^}#�3�땪�Z����ӹ���t!�'���dy�TvV��Wl\ř�{��DHbj"QVD�2���E%���e��j3�i�:�[����V,���j�d���nD&���Et����Ki��4<4�"�%��	KIl^�HBj�X���J%,�֍�*T�&��,IEB(,`!����e����{����I`�	�IV���}J�RғIdž:Xޮ;5I3���&�Wu)"��xR�86?v�k��zz�+�G#�T�]�U�H���L磢���2a9�|�2��:
36�K��Sy�T��4HU�-ź[2�'"�u]��a�a�a�a�=�B�0�0c�Tk��In�֯\���������)�qī*~I=��
i@��+i�[bʬƁfS�ʯj�9���Z�����i����i�k/%��S�O;�4�)�2�|� ����M%U��kp*�VN��Q�x	MM�S=>��NIR�K�R�j�i�Dm�i���)�.�9�UU�g��lˆ�L=�`^/R�ejp��ˇ�W4�"!����ZD�����P]���th��;h���QO�O΃�S�E��	�;4�љ��H�ѕt�][d�6�?�
.�&Ys� ��''�ڴ�G�{hjzFfZ6����+V����T-"t����n)}�g����a�a�a�a�\��a�a�~�n�>]SU*",��4�	I�;lF6��:���ƺ�zӲ(E��PA��ɬ:ո%$2yԲ"}�ʑ�C����打���h-�ݙB�S@�%9KŐ����iX�0ә����t*O�J�.5Ɉ������5�>v<�[�G�+ĭ��ҩ�E�-�S��� =��,N�LG��e<gHa��Y���D�ǒ�Zޗ��<}_k��[jke̤�3��Z
�HB�
�3T��奲�ľ֒Vm��l�;��i�f�l�M�"M
��Һ`�+�p�h�hF;z�ȧ9MLL�6��!�}J�ܾ��LL�Q���7�KOYN�wm�zd�a�a�a�1�1�i�a���*�D���9�pu�rJ�R�J�t`P��J>}�5�U�DeYi2�񓳫A��u��.�ԉ�$:Qa�'X�
ʲ�,�V_��M=~.cq9�����	̢��z�K)���[�ڇ�"�]��Ƅ'�cs�|��(.q�iF(�<�b�ׂh���TgyI֜㬤i���xN}�^�De�̳�k�խ�IXy�#^c��jo-��%
��Az� �h:���B�ԫE�T�q���}�Z��5��d����R��R��I�u;\���jѲՇ����i��m�v�j%�IX������9]�N��nIVk�a�a�a�\�f`�a�a�B�+�Eu6��� ɴ4&4�����c�A���<da����U�͚�H�<�
�0
24�z�}��t�d��R��JM}�Σ�O><漾^kl�
�832���I+^[AR-��lK�Z����rEiXk]�י�)���y�i�SYTz!���i�\��m�v; 3%!�}��Q/LP|��3)2���:Sm���y��is�Εm��օt,��T��*R+���t�4�?2B�?�"-%_��ku!r;�߫�es.�U��M�N.���/_cl�}-�ݜ�a�a�a�a���a�a�~�G��xJ��Vz�$
g�.T��a�e���ʌ�Y��mn�u�D���s��y��G���!�
3%+�K̪,ER~"I�b!Uթ�f6H;���k�$k9_Mm�8R�N%�Ի&�f����v�V�W���Y�b��h�n8�&��$`��
ǧF�j�e�H�}�k��'����?	��������P�!�2ur�p"�?�fj�+�O�$�G�܌_�N李tڴb�J�8g��Yɵ��\���:7iʉC��6��5MS2�0�0�0Ø˘�4�0��4-)T���X�7��qF�s���S=XKr�0	��(c�S%Y_Ju)��.�� �ZYG�.&>J:/!�$�� � �p�L�!�$��f����h��M]k��"3��u�5մ �\L
JbQjtUp&!�X{ME�G�3J]
�Ak�u���'Wc�T��JS�܏P�*�M�9�I��q֥N�"Z帵�'h)$S�vD�,�x/%��II&��߳��)I{��� }�ܣ�|��Ḏ�r)�
̼����uLX��=��Y��a�a�a�as��a�a����ME��Qh�j��Y�*�Y1BI�����\y�SU����j�,H�f�e��X�B�a�ϗ��TӁ{���L��TD_X!(�~�1J9�i��a�$/�B�L��L� J'�����Z�u���L�p�Tq�8=�U�����c:n3Q����i"R+lkR�J\/u�2�2qAR�"�����'�D璊�md��$��+�i��7$>)܃0W܋���W���z�U��L��oI�v��)�Z�9�����f[�	ҁ[g�a�a�a�1g1�i�a��?&���T!G1݇t DT��+���
���,��W�Ӕ:-H�
���m��5)L�E�0CR*c�C�S�tf|ۗE!s']��Q�Q�d�J�U�4&*����ɼ�S���g,�¼�&���KId�IƯ�{��r���<�ZYH?��Yj扪n�*����:L!�d��;ED�^jpR�,D�RksE>z��U-��QC2C<Ƅ'�g����e��ukj+� Y� l�k���\��
��"���YSE��m
��آ�Mm,�ڮ����h��z�l�0�0�0�0���	L�0�0��B�Ԓ�RJ(�8�1Ԥ��K�kI)V�"y)���4�?�DY������g��Z�]�^�P��5mX@��1љ�Pe��T�����Ny��BՉ�����貥���T�V�&ZM�ձi3�1�	�8�2���³,�&�������=�����w�����M���4\c�/)�r�tݏ���o����i�!m�X�re�I��n����#K�ԗ�r���Դ7'\�"������6HL�*�t��ݸ&^ӱ��� *��u���5�0�0�0Ø�dd�a�a���z���0��t1�(��`2k�u�b�BRS�e�$�W�XuH�͞m�%�#i�\�8OR�&˲�nO�҈�̞tTMM�hddH_fO�u�^���\�r�������i�HLCr�M��>T��4f�1
��eYS��:V$#�?
�W
`S��ü�D�ס���i#���fÜʺ�Kq]o��v��ߦ�=��q�>������i�Y��4�a6e��=�ͭ�V|
*�c�ҹ�i�u-�:$[5	Z�	���$�쇿���޳��8�$��~�]��Ӣu�9��p��ŌTm̭����0�0�0�0c.b�0�0c?�E	�G�̎L�
i�2���ZfP�F"�I���/��(�\�8X)K�hXG�W��rх�c��Y��x}�Y&EO���.Πd�uI�/,#�DJ4&]�:�1�3	����1����P'k��B6հHu"�8�b��cJ2�ލ5�"T!)��8Ӆث����<�ū��k����˾�
���[4�̣iɪ5�`�bY7�$��4P��l�0��$(�ڳp})T�v:�0�RgjV��\d��jY��
"s��=��J���m�t+��M�m;Ʃ�:|�C��&�iZ˽�Q-�i�a�a�a����a�a�~@[Qu>aL�9��.�yd�(b�DK!�XŮQqNH_�$����
�º�O��]�&/kfU`N������4#��cA6�NE��)fY�"/��-Irƙ��Q��Y2J*ѫ<���8�YC
�P���k"2�T�bfd3?��`�U�H"
9�g����c�:o�C��2�#e����r^rm��HgJO7�x
m��NZ�n
u���������ctҚ1z�+���}�o�hŵߵs��z;-Zz�$P�ƺf�)�o��:���Z;�4q륆7��w�{�~Zf�������t��Ğq�Z��8g�u3���R�9>I�ᖣE�����t�I�U��a�a�a���a�a�~���Q�1���,�Y���Q�
&,�RLq��$5�gH̔ͼǽfc�Ӊ,��H}%s�EAY�r
k��,�*�iRϚ��'�m����-���<�=*k!�d��^6�YfC�Tg�����4)b6<�QȤy�V��G�&>�!Z,HKH��eeuM5<.IF?љ�z_��\.�qP�
��Ҟ�.��z����,��6M�:�֯[�ש���lu:D��49ѣn���'4<o1��676�zg]����k��r��&�����|-��N���a���a}��z-g����~g#�����)���P�'�����~�n��aj��i�a�a�a�1�0�i�a��p��̑ԊՐ4��c�T���Hc�JI�Lu3W��T~��cA�+IcHA�*�Y� $���*�+*MrvZ-9.•��$�v�x?���^ѥ�NK�`��,���/d-�o��u��\����#/E��Y��	i�$��i�8CR�W+��I�d[T�B�AH"��m��%f����U��N��E�3��l�X�{��=|~9�Y��:�c��TjYq�s�Y{��-?��[���kY^.��bý���g�d��
oÜQBel*��D�'Қ"�f~r�Č�è�-5��B��k����i��ߎ\�nY����&/
�0�0�0Ø���4�0��O�4�%U���������KD�yԽ�.3+e.eU���Ӵ�U�>C�5u�A`6�˂t~&$r��B�
��T垌c,E�A�NMM�ײo���*��/U�:iOMDD�)��DMU�s��Yю��
��t�nEЖ%�u�e�{����W�Y20��5����x��$b�%��u�k��}�ʕ422����E�m��ۜF�/��f��%
�ku�z�r~��6�ߑy�)�`S�?`��R�[���τ$����(�6�Is�4m�ڃ��,M��:	�U�׸;��kϯ�[�v���{����9��a�a�a�as��a�a�	��R#%�t5H5^1aW�s�4ۤ)�:+�Ve��D�̛u,��f<$%���RN�g+��H��z*�0�҅�dU���D��d!����,;!e�Pw*d!� ku��n�I=-&P�����F$f�X*s�p�p��Y*u���T��v�033���*�&���,�*�T$a�����76B�{�s�C�+~�C���Q�$�̩D"�i�T]e��l�U�W��o�������Q*dq�!hõ��DrrZ�)�떺���e��t~iL�⹊�i����@�J╏��2i�a�a�a���a�a�~ &+"z�o�'�9H&�R��NgRE�RfDf�"�r�@
�墯�<u.I�bp }��^T�$*���?b�%j`c+҈���T��9@\em~��4"�ւȔt�WZ_SME&d+�]��	iG���ޅJ� �d�!I��">�J�W���dΧV�J�s a)�ʁ��z���ׯ�lKͬQ���_�j�y?�O�<�455A;孞�OT���I�iP���YZ�Y�u#��~&�n�T��,7! gX����$I[�<�\f�jxW�c��Wga���Z]��u���x_��e���j�0�0�0�0���	L�0�0���o�^FQ��ˋ|��M�k"���jҘb��d�5��zHC�|ʽR������/4�$DA���
3�m��F,���1Y#���%�K�I��	u�^�%�V��*OU���Ly�1)kr��z�|1��B�-fS�ǜא��L����R�1WWus�u��Q�@�kT�x��J޴IM��M��5k)�G_���~��nN�|�h�ب���||�������ǘH��4�նi�����Z׆*_|] q�r8��\k�U(g��1qϵZ�P��$s[iNE��^�s�:e|?��?�=`�a�a�a�1W9`s|r�.�������IZ�|	�����k�_W]s=�w����o�]z�3�"�0�0��wB�O$������D������Q��~Z�*U���/1�"��ں��bj/I�{�5��ٌ�a��EY�1X�m�їhf�.��1Z~�[���/��K��6�?E�[��LS�,93I�&�O��σ�9�uUp��"��Udj��P)�|�E�A�a�,�����B3������&�ꢼ�a�CF5f���|]���������\G[�<��n�A�n�D�7o��#��U�LZ���IH�ʬҐ�D64&SQ�5,%q,I�Jr���i��m426���'�넹�u�⺀�m䨗눏�5�D4�O�n~
jf����U2�0�0�0Ø���i�6z�[Η��z�)�~�0�w�+�"_���Я���aZ�l)����a�a��0�_zM`�����V��T߼^t[�3E��|����n��<��T�ːH���	*Z39nU��MC�vў�n������}�n}�KUg=��/�C�8��u��zM̥�@��k�[}n���Z�eDb��ӡ��&��s0k�QY���X��R�[�y��T��Z���@�2V��k�?�&V�B���A��\��֯;�V�\Fӽ�4�"�{�|l���L�,P��!������ׇ�uH�b�333�=#�jYtͷ�H{&�i�ڣ�G�ҥ��ܻ�\����E5l=-հrQ�˻m�\�%�%�j�%d*f�����
Y�0�0�0�0�8D`~𣟒����Y"���E�0}�c�г�q���_5�׮���û�0�0�?�L�����N�*�P�: ���L��l��K�tD�h��T�&0}H&�����$%�d���JR$8!�|YJ%lϷ��!����.�t����
z`�K�ww%�D���vE��X�w���b�i���2��FW=g�O�:��(}#.u��$%��v��I�K�$���������~��J<�J_�ّ����^����ǝ@��F�����^����LTzȩ��uo�[(���(_B���[�oI1�+"2v墅4�������]�y4�d�:�0:a�ɲ�����<r��u]���K��B��|�D�O.��XɛX��a�a�a�as���ܼ�6�,y	^��s%�9(/Q5�y��������^�l���{�:���D�뽲���N��W�-���i�1�Ï_�/х������_Ho~��#֭i��D���0z�ϕ���P��n��7���"f
�0�80�u��Ӆ�"fN�t�9���'�*R�}D�PE�sIfӘ��k�aL!&0��k���� �Y�3��ڭ!�W�;ɨǟ�v�ڝ.�T*�G�K�4Hâ*Y�fZ��2	@1s1�(��/S���)KTІ�0t�Y�>��k7�*Y��}Q�bQ'IF�
ي�
�V�ŒQ��sw�ME�JH��>�a�}߽t��W�,mӉ�<��>~�غ�vm�/��ׯ��!Q냜��~���N
��^+��F��i�5C�n��z��tߍ��h'��o����@����qǟ��Mh��Ŵxɘ�[��g�KdM��}@I�m�oH���4�0�0�0cns@���O}�K��-[gI?��6�ǪY<�919)�����YR^ 2�3���::�O�E'��<��Sx�Q�{�>,�[��HE|��Bv�����-��ѹ/z���ү}�~��F���ݬk�kb�-���>���j%�p���?~��ۄ\5�0���Z��H)����+��J��Ry
��4̆�S9/V���(��Vu%�(�ꁯc��|]k���G�X�X&��R�.�ǎ:�h�س��n�H�G�ӡ4�a��*҄F��4����U0��{E)��s%��s�3(}����� �B!���s��6��(K�J�JRe�2	4�,o��4-;h�,=��<P�k�ZUK��&!����Ŵ��=t���&�����g�P�5)Y��AҊ0�u��~K�/^UϮ���v[%+_G\Ô/D�����W��=�]΂�7��]>�+���#Re���Ϩ�EJ���}��q�3I�1�1�}���a�a�.��
�0����zHG���ц㏕T%���Īً��MZ	�W���D,��<��ϡg?��{����k��	 D����g�~o�-���O�����~�Y,#�x_�`�K�)nىm.��e�Q|�"7&;q�H��a���	˚ŞNR�Vs�P"�+I.�5�l�EJB@���K%�؝)ز�HLȪ���T��I_��,�d�]"� ��פ"�AY�M]�d	u�ϧ�'?��۸��P�c/��XeUkm+/����U�lDE��[�f�g��IÒdf#�LR�1y�~�aN�LW�U�px�|G\�^YJ���J������J�F�
��b��iM�X٢�1Z�t)u��i��q��f������c�����6�3�@����5�q��vHR���kjv�T�վH�&9�K��R�����D$q��4��_��Rk�h�0��J�p�g��S�>�Kt��T��0�x�`��n�a�=��D2�/.�c����4��ԶB"�����~�HI����Iu� �{�8(0/�ޏ�{���w�y���&���m�X�R��YӺ�DP�X�����>M�y�KDbb��W�0�0]{��i��͔���i�ۥ:��KrI2"U��TT��tgœE�3(�	��v[d�V�&��Acb���j�t��L����Bm�&+�OR���P;���762B�,��ݩ�*3�jl�$���hKB򰪚���Nҝ���6�.ԯ�1�9���b�2U�d��e���8�2��V'ϣ>�®۫B
�t�d�iҺ��.d<I�W3��S��f6e���󔖱�]w�a��.,K+�U�87����N�򶮛���oz��u�G.iy�(���0��i���4�b�)�_�T"n!8s�>�$A�Y�Y��M!=y�9Kݲ��<�����/�N|��o�a�a�*��
�0�����(!$Q�:XŊ�&> 7�ڇ1�iM�5������Hҽ�徶A��;�у���������D��Òi���{N�a�a��=�	�}�nZ0:D�������;h��	�9>N�-t�wI�d�U���P��Fm_M��
�+T�zMf&n��L�~�頴�ԗy"�x�Y�դ�uH�X�����ލ�,�r�yG���dy��!��j�7u�Pu�$�����A�9����>�CgN����Q�%!u�������Bfc�"R%aȢ��k�$ZY��kur
�1�&���#!fV6�Fc��Z�7��h�ڵ4��$���Y�t�T�&*.����0��Ic�&-]؟�Q�S5�����"�Z�u�צ�j�id�B�WT�g����U�%�5�n*l1����\E�,?�9M���%��IL�0�0�0�0�:T`�~����蜗��e�"6�b|ͫΥ3XD����#�!ff�X�Ld��<�!�
5���B_�5�����~��Խ�d�a����Ѻ3Ϧ�ݵ����y�t�ӑ��y��,+���{�߾}}��doRjBk�i%#�pl�肈C�(f&V�5�q���IL �*�D\R_t�4"���� !����d�?6Ƃ��9<�)Yf�݈�_�2-�Ԩ�\��*Ze=����|q�&ĬT�$�?MTF��Ԍ��Ģ�*ͯ�&>!5��Ԕ������〨�k?��Q�R�Z��Z��xMw�q���p�z�)O�'��t���{����f�SCK���8�T�sL!V�D֍�f,Jq� ecu0�c��E�,�B�"���~�%'�E"�Z�x_�^4+�.{$�t:;t'��=�`���׭�a�a�a�as�_��D��i��{K��ɩYߣ*���]1k�%@������ӟH���ǍU��I,M��'�fIF$7!7!$!VU�.}КV�Xڜ�U?���}���A��Y�0�0e�d��`U��vo�NC;�hM*˸���V�6<��4��0��W���g���T��r�e��$����R-뵲���ٕ�rh�O66��K~fn"��b�8��J���QovxMH��0w��o�cc��
^��6�J���0�JW�Q�ʚ5�p
a@'R-��ʦ浑���ZY���W"��X��]��o��k��\HWIea+��o�ygSRH�j��zN����
Ϸ�Ӎw�O����ro��<z���g1��Q4�Qݑ
D�gW�ʾI\��lR��Vʺ8�	�Lkt��'H���p�"��PM�ux}����rRMӅ9���)����
�5��0�0�0�0c��Я�@�O}�K"���,I���׬��\E�+ҋ��l1x	��o}�̳|8 -���X�h%�E���.|��]�����������6��w\H�~�[�
$�y�x��#����QE�a�as�+�UM3�m������,��Yn�L��V~���s�/�S����o+��E/�
'm�A�U\�U�d�۷��=�QA*/
3*k^���D�Cz���Bu-f`�*���T��_�29��-����4$#��@ĬMr�iGr�:h4�@�zY�����!�Tf��6�sE��Ua%�k�|��3��V�y�k'��0#��N2O3�%����ˠ\i��]w�
��o|�&��5��Bҏzݬ�Fy��i#a)�B�kZ�5a9��JT�b�&d�$hӔ���͐Z�9�R��g���Ku,�N�"@�|C�eA���^�
U���]���Mͻ�0�0�0�0c.r@*d��ߕϐ��`N��q�^��2K2����!�Hrbn�ϛ�����)��n�ǃ���=路��m�����D)֍��n|�ס���a�a<:���\CȤ$��� �4gAU����b��3��$��^EW��n�'u�H!v:�&A�;*��o��e����7���9�BPEd��6K����|K�M	Z�6H^&>̝�u>��
�[���K��3<���ǜ�k�sČK�D��ɇ9�AJ�P�Ja�%�mv�6��,L]���`�853�*Fu�g��u:oR{vIgq6���fta
�'|�<�eKӱGA{�( ?3�z��L�x=�#��x}�FT�""�R��UUjm���X8zT��\3�':����fp�#�ǥz��}�|�,Y�0������P���'9�a�a�a�a�e�LHA|`F$X�bol3(�,I�4��i�˿�/?�X��}>�}�Z<��O��9����Z�v�/�&V�>Ժ
�0�xt�T�e���^++�K%���X՗�"��m"ճ�U��d�?C�H�-%�kK�S��D�6��k!к��
�@,)G=hL`J��|�/�l�$3�U�i�p<֯�wr�"C}ܹd��%���V>��u�ⅅ�zy�Tb�I�>Ԫ:j�y0�![�y�u5�
�:�#	�R���[jjf[�-X��.^L9K����2��~�a^��M��8�1�]g��qd_,qs�
��$uIa�i�\����9��=�����Ne?�x\������ؔ�.��ƿ�[��a�a�a�as�&0#��p�u��s����a�a��0�/��y�$�(��X�1#Rg�JW�-��ȯm�r�
�Q�!	�q��\�D+[�\Gٞ�rME��_D!+�I�4�-�C�&���P�*�3&�5˳\*\E�J_��Bv�4s�IB<�Nv�u���� =I�y��됮T�f:��h8!��uzk��v y�eQ�5����Ϣ6o72���íQ�놪U���;6Ӽ�a��翘��Ђ����{��d"K�5��ߺ��>��t���^j�굯X��)&:4�`DJ��h(�:� ���	%�v`9f_�C��\�j!3Qq��8��Z|E̶�"cÎ�$�a�a�a�as�.0
�0�0
@N��4�%e��J+`���Z5�J�4�UHLH�(����Bz�QLJBnfA��}�6��SՒZd9&ɽ�IV%zcI��I(r��"��&'1��k����ٖ�`>T�:��@
��(�u^gS��oj_c�3�ϊ�X�(�Uָ6Y�2��"�gQV|}6�w7]���м�+i񒕴h^N�N8Mjp�c�Y��,i!�]���}��+x����%K��	'n�g<�it��?��6���Y�.�G���~�B�s8��$̔ב�o7S�h���(5�8�PqB�Ah��e�� B=�\�NS�y.����0o�דe��ӼH��	L�0�0�0�0�&&0
�0�0�"��&��P�W����A4%�60�4g��B*iv�l�4�ȯ��#EI���D�=ԚF|�Y�� Mdb�2$
%՗%��\HOj�,�T'�Ъ*(�� T��+̘��Xy��:�F��v��X$Z���")���\ӌ$�Dk��eY����u#/����ǜJ7�p}�ү�b7A���hx�°c�����=�#�:����A�q�6���i��e��]�i�A�N������$\i�>�Y������~*V��Լ��H�4k5��Y'�	�r���S��v�%l&�P����X�^��x�Z�g��a�a�a�as��a�a�Ԇ"Q	Q�&��-u}Z[Z��,%�[�L��~�tœ�*!MaB�:��u�`Q��ZS1m�Pq��O�ʕR�KQ�~2I��l�s�Y2�0�R���I��|,5u���SH�)]�)����aH�JlM3�.?:���DS��s�{�������SӼMIyޖ�ڜ�pQ����'_��mt��Ŵ��g���)c��Xk�A֢>GL�����˗Б���=㔴�x�|��E��� u��2E�,�=Q�,b��	���'�,M�$����f����qvf��.����u_ZC��s���Z���'}���C��G��]O�a�a�a�as��a�a��KT��;�",�|F�	�«<+Xn�l��V.	GMH�8��
}��Q�T��<KT�B��ׁ9�1�8�Д�R_ɬK�N��	�'k�
�4��2M�r�"R)�D��4�:Uj��ir��Ĥ��L�����LH�.�,
�u!�i�0#3|�Th��)�N�v5x�4�H����,�lzF��w��5gy�~:Ir�LQ��|���Fh�ż�DD)%z%�����(���u��,̸�z_d����Ju���*�,N��5{=���2w�����TA�i]���$���\�^U��>i�2ջE��s�u&�0�0�0�0���	L�0�0�������.��X�rIdX֢^	��
3sj��,5��$�zH�I&�i�Q�����^gCΖ��u�+eE�!8�j���@fίGz���d�� �<MRA*��.|����C���;�I˦�6�������d:A�vJ�n��l�ے�Dz������B��'���T&be��Mq���u�HR.<h	�;��!��>zMyJ*V�su&e*�5�L�Ӳ�K�/�mڱm+m��^j��tf�X�D����"�4�$lU���=����?�0kfYJ���]�5��Iփs�}�:-UwQy��Wьg�YV�^��^f��XW�	#M>Ǚ���qv�a�a�a�a���a�a�~ʩj*NU�A��9�J��f!�C�+K��%�$��z={�ȷ�XQx��$a"�R�{�26J<�����
5������FV�J5�X��[fc��j�O��l���^�ӄ�8X�۩I�D�\�;:�I�R�ۣ�[���eKi�!ڳ�`ڹ������֛�no�2�kqj�d����|-iL��Nd/�i*3:{e�W7�S$W��ϣ��)��>�^W�aHEB�A�&!�qV'�������	�p�Ut�I'��G?�,ZHiݣzz��OI�&.��8{3�'\!"1�ҫ�-���r��\s/�:њ�ʉ�L��PE�S\e��L!�\�����y�oe	���f�Z~�J����K��r��a�a�a�a�aL`�a�a�Q��x��VK<R��-	��*T�V!�I���t�F�Kݪ�*�%�o��M���J`:&Q��	>����VU�Ode�E^vp�P�
GV�
VD���LY���!y�T���$4���d);��Њ�W�ZK�NL����+W�!��sJ���;v��̛/��f���^Ã���PfA:M`RH&��V9�nw��Z�JM]l�ؕk�٢��0%�yt�א��ڹg��4�vo�L4�ϓ�oU�Y�^\���YHe<w�w/���(-^u8�_�\ӓ����(���X��N|���%��r���ߔ�Z��:�6�Z��T�&��0
�0�0�0Ø�4�0�_!f<z�CRլ)�J��C�i���� 5ufd�4d"�)�.��J�����UE��L���R$�B΅$�Jҁ:Y�a��Բ��`su`N��f���huZ]
Y�e�ڢ��Zs���X�w�敪PKM�)���%-D"��4<�JݪKk׭�����A�w�	y.M����ͭ`V�d�f��E�B�&���֭�W����:^��#��M�o���ޭ��`񤚗_[������TY�l�|ڵ|)�Z��r��y��n]*|��Zl��}JbrE]���[��7^-��x
-\I/x��ѱ��j�EH�k���u�m)�W5���T�"R�� �[R3+��iZ�W;�.zԸK��5�0�0�0c�c�0��ޑ�P�A<p1� ��~X�P����U�Yz�s�~��H��i�Q|���{}���_�b�_t,ڇ�ܿ�3������;�XED����SQ�������V�nғ"Ȑ�#�f�[�R�^�铒v�X`�O
׸�2Q��٩D�\�㙈5$)�x4�d���!ИgH1�kԐ&lRE�9/3=gX��4����ф��(iR���,]�`��@CU�؂4:o��N�`�1�H:R�%:����q�2C��3֪"�x�uW�Ϯ���~��|�\�]	Y�k��$U�z��������cc42<��#��ZI;�:A�:�C)S:�R6iҰ��>c�kEe6J��A��!Փ��Z��U`�^�	_+_��J>�,Մ)ο��+�G]j�2QK�n�x�{Dxcnf�t)^/s:+��:$OM�ڿ�0�0�0�0cc�0��?������龍��ُ;b=��g�a�L��*�Ll��+J��w�<v���ig?��?����߿����;�Gf�-\8��:r��ߢ����\W�!�v���/���[��ҥK������K�J7�r��5Nc�F��#����Z�`�/x�
�O\�y��[����ڵ����̽^���]�Y�8�������9�Ї<�
7�B_����5E��z%�}�S�
������e�)���_╎���hf�K�.��:�}����\���4�K�ձx(V�
6"a�U�A\u{*�:��M�fD���f�7�F���b5	O��7#b�C�RSY#�uD`�#=FU�D�9�c��e�V��E�iI�+�yt]����IP�jR�.��&�V�'U�ylf���p=�5"q͜ȹX�ڕc� �z�-XFY{Lғ��c�����f��*X�Ǖ+���g=�%g!I����o�qf&I�l%�:�5ծ$iN�W�^�ek�j�%�sC�6���$���ĵGB��:���Kd�OҢX/KN�u*�PY���`n*�.�;�s�����ĉHU�+n�d�a�a�a�as��aM��>H��O�Gʏ��O�����g��<�v�������_n���\7�O}���z�+^�2�ݼ�{?��.���lo������Yh~���������C��J#�޳�������忲P�Hz�۝��s˄N�-��K���������V�E�w�E�������аȅ��I�Q����g�/\v�M��ؾsV0�_�&��'?K�7���Pz���0!�ħ��6o�Ҩ��R��Yg���� �ꢿc�/1_����O����+=��W��On~������(�������~�U���൴Ϥ'��IO=�o~�2���կ�m��Օ�3�4��I�om~oa���ӲMɲ	ﭱ�Q~]O�#H��� � � �+8VY��u��1')K�m�_5�͜���W�P	���4#_?��RM�:M5��G��T`��1�B�y\��� �4
�-Bj�o�qR�����g��򧍬����0S�R�U)�"��K������V�ZUM-��ܐ���b孬JE/_�������(]�l�G��:r�I��R
ID9� ��;:9�ᅦ��g���(-[}(-\t��Q��wwml�r�\��'�G\w�9��؂��ݹ��Dӥr��(kq�0�T/ �v-�pK�.���.�m��"�u��0ݓT��-�Z%"�q���n�6�a�a�a�a�L`�a0K�O��ď�ۭ�=d�ȣ{��Hˠ?}�_��G��U+WJ����s��������7�z����}�
ڵk7��>N9K���ʗ����O�_��}��x��'��U+�'?���>ڱs���A����3�	~t�O��SO���J:����'/������et�}���_�{�/��MNM���>�6o�L��:���Dlm�m޼���>��׼�>���Ӓ��i+?��W��~���ٶu���!��q�1G��k�ƛo�o��ر��迿���G�F$�~�s۷��16<L+W�����|}���'X^~N�D�������\s������4��o=���X_��7���<�dm�զ뮻�&Y~�c���9ϡ}��eM_�}�UMO:�dZ�R�����l�Q���SS��-Z������錧�.���C��R�/|���?�1�7����t?�/^�e:���{��$����h����c����p=�xChNӍf$5�!�("*g�4S�a��י�^�c#Ăt�ps>��\Fe�=*ߓ
Ø��ג����0�R���E�}u���V�'j��yC(�59�X[�.Ȼ(�t
�~'B/q��Y�v";�LN�Ϊ?�S�F�]�X[*b2� 
1�R�X��Ϸz`��\~�5��*���6u1��Db;���R�ƧK�t��y���ў��hl(�\%�!%�a�����ײ,�a�C#�2d����XD��O�i���B�J
R���MCe.���R��{v����W�<���"홺�zq����a�a�a�a�L`�a &�'�C�'��y��c�HjE�?�Ot�>*՜��%�?���411E_��7¬��>����#֊�ؼ���W��v�ļ䟿@�<�Y�`�<��W�AQK˯���O�7�����uo<OD&d�m��I����Uz����h�AѶ���<���.\ R
?��0Cq�֭,��;��)�/}�2�	'm����aѵ�V��{���>���ү馤˾�#��;En��g�wޛ�Ӟ�������+��{n�=Գ�]��P��2N�Y�z���7>�qy�;v�%���Vj����w_ B\����������,
�$��������A���k��.�Ǜ�OH�q���d�l9	q�}�v���Fd�߼��~������Y�l������Uװ��zN���?�7���4���ٳ�����Ò�}��_�b)��]����dA�9��g��TI�޷q#=VI���K�+�	)sUVirQEc*r2�
u�����CbQҙ��Dه�]�4�L�����(��4
U��x�ZR[*K��>$�Q��2u�xbe�$}+��qA�!��� 5I�@B���S�������N\�۩�g�J���k�Ү���\���Ss͵i��hŲUM�+ҝn ��)�HR��k���i����sz�����-�.d��0Յ9Ic�����R��d?-���O璶���l���8�JWQu&(��T�FE���Q���c�h�6R\R�8Lw�z�^F�|�K�]Z������D2{�6�i�a�a�a���a��KBNk8���l�%x��_L�s��~�������H����',��u3AT�?�h��w��h��g7�SN"
�;��N�c<�ig5��t:�أD`�={��F$,�:�q�ē�@W��jڹs�>墢��	��{���_�2K��t�-���P�$�9�}��K�B����GM�=�z�E.�@�"�ƉҪ�˛uv�ݟ���;v6{U)8�E����p�-,1�5O8�D:��Oh�xɋ�G���/�-��!w�}}ԑ���t;e��ǭ[��,�	��O{"�z����+ibr����f:�ų�����y�{���[�Aj����r��_������]���{�-�ҲeKE��u�ݒ̝���իV<(��l�R��7�)�e��=F�,!ުJS�e����.LT�%I�����CHl�Q��s��{F�+^��@�D
QR���'��(� ݐ�+T~B�AH�Z�g��B�0�e�c%�@2ԡ�ŸU���CI��x!	r-
U�Rk*����ą�N��C2��}1*"҇�T�b���9�8����wӲ��x��ٵ[��t�����$�SJ�����4���Q���(���h��T܇:ΥL�"WV#ս*}H��>��D�.܋4��K$Me��y�y��|��;Q�+B3�+��C�����Ђ�+���w�}��[�Z���X�
�pΆa�a�a�as��a���S�?\~�o�I����s��2m߹���:,�N�������بl�`��F���/�TnT�_Uy�ͷ��<����g�G�pH��k��d�@|ݺ5͌�>��/_*IK$�N~�Ij-[�D�G���#X������CCRA�f�a�Z�	=��F4�\�u�G>��?6F�^I�.p˗/��������n�˾{�|�n͡"����ؾ�����������fIOz�*zٹ/`�{���u�\�g���Y���z=_w�Klt-K�Y�p��!��kZw_�άלz�I���"��f��g�qZx�k�/TH�[����UN<�8Z�`�ܧ�?�������~�<��X�u�c;�pܱ���G���s幥,�?�G�T�>��Ϥ��:���֭[i���X�(����r�%0Dd��%Q�9I��(ΐp��;�JjR5�X��\�`�،�Ogq9�Q�1��l�ے$=6��a{$8�VV��|���@H9���.V���JZ�Z��ϩ��ɂ���P�3/�dT���!5ʢ�hrTS�@d&%��x�e�n��z���;�#�bi(Qׁ�Z�9�g��������e˛��3~�i�A�DB�a��JW�	z���_kM�F	-u��A<�y�HVꟻ��j��,��h�����^B����߈.�vx�B~����U�6�^C:�O}�c��a�a�a�����a��I�B��~@���D�DW_}�q����o#������E!�y�u7�.�1=9ԑ^}��X�]�)&�5>�t��l��_��'?+�۟}��Ra۟��aw�e����ӈ��P�ˌθ��f��X{��t�=��o$Bm�I�ڽ�~��$iK$*K���{��y5͛7�s^�h�6�%
��|��m�wL�޻�~|���?�Cz��� �*�u1%�x�jŊ�Ⱦm����wك^�Y�qTަ�ۚ��=GW��*�1�ZP%���Ѽ��m����I{�H�(]��G�}�mMq!��
كW�n^��Y�i���
��x��]��� ���"� L�aY��U�)HԷ�nb����5Q�,���D"Dg��U�U6�Y�����}��,�:'S�$�!BU�b����i�U���0��	�ҙ��bU�	���G�.	2��yI%��ofq�����t�;��Z�*q]H�b
i�_	R�>z~�k�jӡk'uŕ̞�D��$
���y���Ĺ��{�sՊ���j�l��C��e�V��ewвC��T�{�|�GY�=��|Mɢ�����"�)ע�5��*�H�ʼQR!��{$�s���Ճ t+[~��?^ig�C�fF�訊J~�Xd2��g��u&/
�0�0�0Ø�4�8 ��>?^��?}Z�O;���������c;��_�&�p�����<�,�G/;��t�{��J�A�y����'/r�ʫ��aGQ[��?��K�/^�5z�?�B���ZH������z��yN�^�r�|���}���n��y��jѪU+�Z(�CH�żjs;Cmz���<���.}���b)ړ��O9�TI�v�E���^��8N���ZM]��٢�n=h-�Q6��`�M���y�E�x�>���O���������y�^��>�%��ű�J����ԋ��|H;�yuH�Iڑ��F���AT�b�$�Q�T�3Se]����5���^䚏I�J�jې�lŦYT⸐���	�Ϣm[��ĮRs�8(��H�HJ�!~?��B�|O'��8U3ʲRka%�Xa'�O�����vA�I�*jh�D�V>�ܘ,��I�FA��ڪ��ݓ�ԝ���ژFgA+�4�Xõ�Y�N����������>�^��ZIEI�n����,���p�C�4�?ObEl�9������)Zݣ$C����K*R�N�}KI_&+pu�����%�&�=��π��揖�c"��I{�m�0�0�0�0���	L�0�D��c�r���??������Ţ����WD`|��;YB~�&''�[���
T�������A�����^G����y_����,�0��}��x�"zl��a��y�����~��~�_�H_��7������_t��Ny�=<��O�<������<댧��oߢ-[��O�����E6�D\���7�b��˶H���B�n�>愎�OP��C�NsnH��h���fff��9��O��˖�V##�4;�k�O +��ԙ��.��fD&,"+�r��"�j��� �Xd���~-9�CZ�H$���ً�,y	f}��A��t$��j���������<n��zmپS���L�:ղ�)�,�5&�6�"jfS����ǽ�%��W���IL	9:M�2MZֵ�R��tP�����ŜEc�j�q�kcJ5	T�}xjr�LuVd�+*��D�c���S�"G�?)�b�4���&U*�_�q�k����u)%=6fg&��4�3	��uW�W�>;��!EZɵF��9!�R��)OGS����5��0�0�0�0cNb�0��h�A,o�C�~�SO��`'�{�1,��h��]R-�c��j�"���O�F���/�+��Z7�{4}������kf
�}��}�_SҚC�����iŊe���SS�,�Ft;��{+�]����l]���S6�wHJ.Y�����K���>v���z^���n-x�s'?�x�Z�M���W6[�r��g=u�kP��mr���}7�u��{�k�_�zE��yN�FHԯ��wD`��Eϥ�<|Ufق�[����7~NkA���<m���*�>M"�8=�cY��,�DT� "��DaYĴ_��)G쳪ӦVf'��%~7���
]H��x�r5a�B��$$d�/J�������a���)Լ�4���%��5�@�5��/#u�Z���\�����VDp5�q>���9cu�^��juh�e�����d�{��+(dA��(IgbJe�t��3)5I�(�}�U�����$C���5*d)�-�E�Z	]�a�h��
	T��ZN��:$U�u�-�w3|�Z>�u�g;����u�37!��3�0�0�0Ø˘�4�8@<����������j���43ӕ��C"}53ݥ�^�!����9po���S������tŏ*_/Z���9�q�f�����W���a,/�{��o�?,����k�&��cLI���{�c�:Z~�.����o�{t����$�#EvA�|���]��KX��^�:�q�³�?TgJ�lٶ����C�'��EF`f&R��<1��}��&`�<b��������k_!�Ml�{�8�r띲��ȐHh��c�dAڢ.��o����>h�U*�~�ۿ_�\���^+t���!�;n��y�_��ߏ�E�㽇4'�Zn�m��p�qRq	?	g�1�Z���v%�!�0w�Sf�&	!�*����gR���Pa.%_\vH����*�7�Z��H�{*d���,�2�Pfg���$��ڌU�:g�,u��i�)?�k״��W���TR�*W��UQ���ek JK�y��
�'ħ�0��\�O"�I%-�.
�V�%�=��Ɵ��-ht�"�s	��Jz��������'�x�y�u.�o�{�"9}#_�7W>��<φDe*f��I"�˲��
�M�AN�yFK-�5���s��-�ey\I�0�X�Z�<��R9�FJS���O]v-�^���	�N��?<0�0�0�0c�a?y4�8@�ƙ�Ӈ>�	����O^�9:�O�C^%�����irjZD�i�>A~�
�qϽ�?�����~�KE&}��������ԧ�|"-_�rrbr����O����������7��5�L�%�c��466��
!bz,�f��g�5�Ǹ�~|�Ut�����w�/}��ۗ}�֬9�n��F��y�O�ŋ�#�@bb��x��{X��[��%�0�ڵ�>��V�������=���)3D�TV��N��w�}/}�_��i���,!��u�K���t�m��~�^��R���?�����d��w�9�P�z�%�'=�����},��{�����y�/��
�xӭ�{s��Ut�G<�j[�=\�l�JY|�_�N��_�7y
ӭ��.i���뮧E�ҏ��R$�ӟ��<3�ICFU�Hl�|R���3~�
D},*f�5Y��l˒F�?�I�YǍ�pp�%55���X�J$.]H$^�*�3��#���O�O^#o�������'ҏ>�CDh�����R�73:!�(\����5�RSV�r�Z8/��">�u�T���=N�6��F���̂�U�+ׂ/ �CE,�}1d���{"	Hޖ�O���i��>���*�~	��G�T�}J*T�0MH�����l=�E��z&���d���OzC��M��$��"X�!3P�����%�&�LU�� �}H��a�a�a�a�e��a�CYM���ߑ������o��}�NI��G�+V,�W��ń�=���+�I��}�>�ůHuap�ZA���W4s�����$�f�3�vރ��_��z�,���A`=�IO�n��6o�B�|�oHk[�d	�ڹK�^�Z�燗�H���GR���8K���}�?d�Z0>=�c��s�A�կ87���%���r���CE:b�����o]F��:��kih�C�ݷId/�ù��r
��y�$�y��3���K�,*y�l}@���k^��F�X\��K_D?���,��賟���ODL���Y�d�`y�������u�������+�9��'Ѝ7�D���qG�������:���x?�o!��g���=��=%�
)��;L�6��A 湊G� 	���"�Tr��ĬLT����g!U�t$҆Nc���T䠤��J�Y����_7r�+Z�䃼��3*�2�cdzE�B��u���t'f_b}u"��2�2є_�tq�����Φ�$� �ϩ���ZY�w�P�R�|*��;�q�W*c�9WB��#�����ϣ��6s&�f�0�R�*_�,�J�p}t[���sk{1��̪�p����M�T��*\��.I|�P���@t2$L]{�nڼ��m����ѓ�~���|�� ��p�0G3�vKb�.�y�����7��r2�0�0�0Ø��O
�0 co�����1�	G����\��.��wʌ���O8��ʂjD~0.Ք!����E�����ZG'��a5��F������W���+�-cy����O~z5��E��%r,Ȼ�=�t�1G�����FI=2prm���!|M�c�n�G��n���U��?�c�=��,��L���W������0�����~t^�6��w�M]>$_~�追�f���<��矼M*#qE��^����:,�O����OyBs|�x���]�4��3��x�f�����j��˫�ig?�!�R���k�q��z�_�x�$�P�gτ��=����m8�8��9���=�>������?�!MNN�/�U�(�<K��.�|ݐ� ER�G���I��U���6��х�1���_���Diٯ
j�Q#u$I5H1�E#~�HX��
UH�vV��[���%�hygHo�#m��YMa����#��%"9����Zd�i�k�Qzɀ�0Dml"2U뗣�UI�32B��1M:��e�XUH*:��I2 y�FVfqJ�o�U���|L�������Ld����E��
����H�Dİ$[�e�?�8t��t����!1K�����^M�:y�!���t��c
�0�0�0Ø�X�0��Dӫ~�%�g=���ʹq�V���'Ԑ:7����SO;�.��?�u��Dw�}�����g��f����Sx����_��Ps��apK'��'m8A��K^�嵭������o�I��?������G��X���G�׊?�w2c�|�n��6��;e�(D�ay�~�
�4û���XE�N�˧?,����by9C�:Hf�b���㒈��>��t�I'����n��CB�?�7ϤN�M��?z�i��g>�!�����nfQQ�}:D���¶����x�)'�
|?[����'���Lы�y�|�m��<�/9H�&�����ߒ�F�4�+�'H>"�%I��^e`*)Eܷ��dW${���Ira���!Ԩ�I���%��B����"����N�Ne�e$���p��uy�D���\F-%e!^/+�U���V�zY+Q�
Ɣ���i������9��B���yWu).�:]����D�Y!�
Mq����
WIHz��2?��ݬL��2�2J`OM�3>�:�\����zl���U���s���4u��)��{��"�NY���o���4,l+$,d1�܏FL�lL�p'�0y	L�=���hfn�?��6y�c���;�E�a�a�W>Y-<� ��p���a�a�g�;z���_�	L�0�F_:��Oy��~Dᩧ�$?o�˖.����5��W�\%���:J>o8���˵2u�������ᨣ'?�5�C��e2'��<���2���pװ|�2�~�)�ѧ�������'� .O8����X:�9�h��'�{��_+O%-)�+��( (@8H�B�Ijci�ATƪӘ4�j����
"�<֗��+c�倏�Q�Q�A���P�A�\N$H1���BV�����^�W��WH;>O�6boV:�KU�ŵ�k�{�&A�����5%��$�����\���T�&��\���=4̂}���N���da&h*�%&_�o�f�f��..��I�X\R��U��ME��pl�b�y�ڎ4��|x���fs�8�7��O�|_VB��X�	٘�$�:��aI�J�ҋ�,K/�,�_e#X�	L>�3���m2�0c����ҁ���t��K�0�0���}���G:&0
�0c/�w#mݶ�N�p<�[�F�֔j�JT��4�LL�,s2+R�w�&��8�TG��uH'���ZY*�R��(5��5���YR�dFi;O������2l�sZ	K��F���R���,�D����u"�!5i("N�G�U���J�DEaU*�dΥjI�!%C��*�t�5���8@ׁ��2T_�iN�^���SKϰ��ϳ(
���Pٛ���y6�Q
�fϥ�4&i��n�ꐚ^әH~VN�_,��k�4Xg^ƛ�}�G
�zzU������yыkII,��L}.�VHg)�ui#E�BҰaI���K���$o�<�)6)�0�0mu�(�a�c�"0/�ڷ誫���s�~�Y��c�0�0��l�'��<�%�hj�0�y�B�2�JO�Ksu�eYfՈ3R*i<'���s�2�i�R�����@�(�ӗ�4���NҬ��ǐ�&T��
�McjN�Z��R�V�N�y.U���P��_�b�s�7�Kun�b"T��Iz0kZ�U��JM/־&��Y�Y���>8%ޣ�vn�D~�V�r(T�:�f=�o��܋��I(�i�J���w���>�����1�RU4�u��,^SIR�뼥*W�&[�|]�0�2���FRT�y�xO��hҬ:5�y�=��A�z]�T�j��0�0�0�0�����,��w��:شy+����-��I�a��px��΢\�n:����0.�Je���T�/��َ=��"*1ǰBE�
�$�>���TRI}k�~u!M!��uf��%/+d��aA�HH�LE��u��J/݇�آ���q�A�%:k3g����Le�e�}���K�Q֡��ŵ�c�Y��4k�W�rsxs�Q�JԐh��u�y�]$��c�p-Y���.T��LQ��뉂Sҏ?U�8�\��k>ndfs�n�CB}�����3�\������ĵ�,��.�5��$�"$qq\���B�/���T��1d)�yυ
\��a�a�a�as�V!;6:B�&�u�i�V���$�0�0�_%�vf`z*�B�&,%�T�V�P��"��g�Bta�bf("xY�=ʲL$U�:ꖚ$��%�m�O�(>d�"�X��"k�J%ىT�b���ea�T��G�艴,X�u:�T�B���$�!��$�	���"�|�H=T�F���d�l�U�>�ĀM�����K:$!�tt���b������!���H?9N<����۵s{_6J�V��w��1�|�M��W��Y�{
כ�I�RL�:M�"��H��Q'3++�i��9�Zg[�MԵ�{"�Ea�~_��%�Y�|+����ɍ�ij�a�a�a�1�yD�DR��^*��˗J�쳟q֬m���W���m���zz��~X��������e�.|/m8��Y����%t�{�)�_��/I��D���|�_����gm{osCg�v
�a��(���:[������Z"����CjB	GGQ���9��_9��(����×*Β�َ}iI�l��-YP�Y��LkJ1����3*U$ƙ�8�$kM��,��BE����C�p���M�,D*P+���D�Y�P;�4b�?�_blw�a��V�&.���<C�,��ϳ-�b�N�T�h�:�Ҝ-Z$15�K�v�zθ�(/C�>(kKg�W�M�\�0S�_�f�%�׾f�)մ�OxL�����i�g����*_��~8��,���z�8��0�0�0�0c.��y�������4|��y�)~<�]B�.�m6�p̬mV,[�Hŧ�8�ף���=d%�� ���k��9!!H/z߇��O�	������a�'�Y��f�up��a�a<���)����2cR�FY��<H-��H������U���P�]M\3ג�!,��Ȕ�iBq�d��L�U��3C���d�K��2�S�
O��Y��"oP���IHI��2iDkS��k���
�Z+P!c�պ�J�樅kH&���|3�u���/��p*����3��I�R#�C/��6p�B���`C�\S<��z��IC6��"����.�ۅu�^KVW�H�0#���z�:�PE��5t�R�U�
���a���5�f�a�a�a�a�\�%0�'&E@2::B/}�s��2��o�]� �#^[�nͬm^�e��x�C<^t�i���4�]���e_MHI|ĵ=��'��|�3Φ1�H_"m9�
�?62B�a�a<���I��H"(! !-s�O�*A�J�"� ۼ�$�M�Pիx�V�Tl�>P%+�>7�ߟ
�l�O����:g��p�j�_Y�|�Z���!�QmZ:�����Ed�f�وPxɀ\�~��u�Q�L1�:��.غx�G���M¿���[�z����[����A=��B4��J�h�>����j8�0��/Fg�
7ι(������������P	<��¸�ؘ+�2|
i]��ڑ�M}�A0#�{�`)��8�T�p��۲�±�0�0�0�0cNs�&D#$� Q�$�#!S����HF��r��u|r�6m�"ۏ��y�G�]3K^�r�]r�=׶r�9��^s��=�HX$1!7�F�T1k�aƣ��t��M*������5T̪�t"��TD��2Ө�|�Y���!��<��J�f��t#�'}��5��s��L�Z!�d!R{,+1㲖SP����l�$ӿ2&������h�0Mu�%�z�ʔ��"�Hιz�z�,���n6I(6�j�r@0�4bkx�\>J�;��pK�3i}k�O��E��Z�X��w�rU�q��BiX9����Q!�4\O70`S�p0�ؗ�V!�C�4:I��A��z �)��P����3B�C*�C��W���{�%��$�a�a�a�a�\�	L���s�>��򜗿��>�i�6��o?,����c�#��U21>!�_��w��(O���D*�0o�c�9'�0�0�GbD�ť��%S�%�f�ΑČ��K�>��ޅ��^�W��E)d
34�(��{����Z�����
He�2J�U��)�3j������)LH�.wiR�^�*Mc\0&'%���,�	�?�KX� �1Km8/�!�*iI\#�H�j
Sg=⚕�yMx��[�b�
whb�.��2,�B��W��2���z�8�Y�I����'��#^������R�w�α���±�B�T/�>��먅�^�pL��LK�\�Z��n�=�*sA�
g\�:���>kI'.1�i�a�a�aƜ�	�_D$�[�9�/__���N	M��|��6�Y׆��&�����;eM�������a�a<Z`�'IKԄ���d6�t���B�JdTݕ�U�RN�B���c���#�|��Hɽjc��*Д$	�;t��ͳ\�]�(QK}��PB�4��s��N�%�w�m�*��RY&�$U��1&�=ʚB�����C����' ј@�AıIl�z�P�C��s&��y]Y֢$o��W�����
T]��
�Q�r�Mb3HRds����Q3jS�)O
�>u�&�� a�yK����|Oy,l�y�sh�lb�_�':C����E����D�@T�0�0�0�0c�����E�rӖ��\� q9>>!�M��q�_�s�l�Z�_��Ԭ���GQ:19)_�
�q-�׊KiŲ��X|���]a�0�0�x�`��s.���*��Q��6T��V�"9���*��bZ!��Ne��
)�f
q��
cbu��n/&Uj�O�g�A�a�A����y$"�Dgrⵘ?_g0���g{ϒ�4%��F�L���x�O)T��6-^���D�m�������I�V�EMn�h4�x<A�2\9�U�������(\IG"���5\�8�S����q ��E��	
���C���_��=�c�-�k�T�/ε9����'Az�EmmJ���_�0�0�0�0��NB�@ (1������H1���w�y︰�"��_!�/�qI�99���avf���kߔ��E�C�pmHV�k�ǂ4��G/���o��$���B�������a�a<z������Fl�$^�1"	)��/+*����T*G�괐j�ī���y�4K^�q�IL
�QخQ�PQ"� �*���A��XC��$���
k� ����d>���Td�]�^*pS9?�=��K�TCrQ�gjY��=c�*y�_w�Jd~a�(f�63@�WY���	��N�ZBuY���n�f�rY���_ի
��9�̸���!Ω�{��0+�5	M�v^*�ܐD�/�s
3-�Z�&*]�k�\�,o�hΨ��ф�C.u������4�0�0�0c�󈭐E��{X*����Y�Hc��;�k�����S,.�󐋃"��5�:�>�B�}����Z~�8�2��H��ZX���ׯ_�Fֆ}�c�缬?����8���2�0������X2����*�7"�g"
%yD$jQ]�g%&�yI�R�Z=�S��Һ�����,����ܻF��,0E �!d�U�P� w�YaR���H���jj���Y~�լ�
)R���G�)iZrR��U�D�l��y=	]s-k�1�N���3R���Zb�N�SU���%t����Ԯ�T'hȘ�����)�Z�Z� \��(�m��?8K4���
�FOj–fϿ�z!I�hE:jݭT�&��gi,3-�{H�sBQ)�jY\�pm4�󳾹�ȳDR��$Sݢ��=6x�a�a�a�as�"0!�~�3$Q'�� E��3����G &�td���,3)A�gy�@���['�1�Pk����?�
IP�0�0�d9��II�a�%�Mf�YjR��.�0���Z%����^)s%Ew!M�S�x3]����@��T��_I_�Ќ�߇�C�iU�,?3��X��IH'��2��q֢�:����뱄-z�r������N�b�-g�Z֐���H9��T�k�qC���Zkt���,�
$TU�aN�����=n�HO���CB���!�ɗ!Z�%A+\c��HB�]*k�����R�/8��a�'f���9��V/KG^��6��LR�Y��,�  �4������/f{&zK�'R?��.�n�Ƶ�`-�i�a�a�a������=�pkY�%8�#R��m�ĥa�a<&@%lj<Q
�:T�R�%��:�PĢ��Q�Z�'�R��/ȹ:k�8���J�Oe�&$ev&�ji!�@�Q^�s�",�}�J�3��;I���4�:�'�º{,�ʞ̞,k^��Q֮�GT�J���
u#�aS��Bm�V��b��I�m)��(*���QĢ6$+��e�Zi5��c��A.\����ML��UT�NM�:�[-��e3k2�R��惼�:I��n�j�{#O!�)5��JP��%�H�f�l�NaN(�1�|[�F�J�hu��YW�m]��_R��k+��nV
�0�0�0�0c.򈜁i�a�1אT$��"�md�6S�"�ʪф�&,��t���1��!Rv>�1����5�o�X#�TцZS���EFB�A:�nbS�N�4HxP����;�qE�Q��������,����i
0�m�_�\DD����y��.��L�
MD̔��R��^5��"���ճ�Ԕ�X�I�� �Z�%�VMs]��
�6�.��I͘�B�5��hրѽ]`��Q�p�qF"�CzU30���K�6�kR�|�(9�R�����$H`���s9Ү�^_ s/evj�����W�a�a�a�a�UL`�a�a� �*�q����B�[�B��ǔ�,KO=�H�e,ܐ4�%ճ	�J��^�굤��e.�����_FD��*�`L�q�V���*�`���")�&'��,.KM1z=��5y�4��S�xJ=f��j����"HE"5�j=k�lf-���Z����|s!I���A"��Zd�U��X�I�2K�p=B��_�%�~�a~�����IN�^�I�_��\�j��5^�aJ��s�=D��K�����؝Ra[��Z��Ӆ0���K/�q�����M�!ՊԪ�o�{�Vk�a�a�a���a�a�~�+�Z,�rIV�L�lJDL��]��	�����ta�r�
�1��	>�D,E�u%����Ea�Ҁ������ً^S�s{��/Nfu�:�;�������n!�T�TŪ
�t�הc�*5	�BO�[�O	��)R�i�T�:}��T
2�D��1�0�"P�Tk�$V[Y.s8끹���0�|5�=�:hŪPE��+j���HŒ�x}R�p�]��	Q��*W �H]<���>�]�g��uL��8��_	[���v$r}�ʄ�L�Ԫ�My_%�l/IM��򽋂9�4n�4�9��N5�0�0�0Ø�<�g`�a�a� � �$#�b�
TM-���ۊ��ٔzE��JtK�DFFj�S�e!� 3A��g]�4���T�����Ų�5
d]ʲ�͢l͒Et;?�gU����9WI����H�a%��(~�!�!D�e�kF�4�cW��!����C�2�dar��kNE$�&e(��aߐ|1�����N��p%�&�c"��6�����v�>\�$��f��q�U���
�3�$�fn&�~�Qģ�$T�:�8�$C�b��F�4S�����Eu�\�Z*q!;�p]���<Q�+�N�/*HO'�Z���x���a�a�a�a�uL`�a�a�
�wYK��.%��u�e]���$�$CJ�=�<�o0_�(*��qMM�����LW���O48`�b"����g$����H�^d�5>=E��~/�x}��,����|:��O��n��ʢ��akK�mUM���Cu�V�F�����.�/Xk���)JR{���[�!}*�U+�/$Ӗ��O�k�td�"����_l+�NS*=���vZm}}�Jm�g�� � �UW�’����Tc���$�_� uY�j-l�<���S�/�P�`̶���dkɒ)�:l������Z���)��)V�B�34J�ĶP�����a�a�a�a�uL`�a�a�T~�C82�ՙ����R��s��(U�ؖ���̌H��Ւ9�QP�2�����[r�,�sM�F������qM��ze�Nl�
�n�iG�ڝ�N֢�3B|(��rE���p�ȵ^Y��-�J�j�#���1�)U��9�s�$���4T�:IY�O�L�uy�G�:��,�D�0�
�H��*��\c>梃���-2�sbbW��չ�N[�*R�r!6ìL
5���P��(V�u%
կ:s2id��k����E�Rղ����D�JlM��	�_�5$�nH䶤J��k2�rܴ��z�}:<DS�S�4�0�0�0�Q��4�0��H�N�G�Q6�%�kei��[��l����)���^O�c�=��*�]x=R��q��R���PQ\�a���:��<��T�&:�iGT�b�]T���$�g1VI����:̏lfcB��0]3̹TuH�����aܤ��b#.�&*�.�iΒ�;ӫ�Z�Z/����OO�e���3SD>V���s����B@q�z�-�|Hh���QB������m��p�Q嚳Dݾc��Bd,��p-HgX"q�+֋��f��Zd���!��b��Z4�(�&���,o�i��^2�0�0�0Ø�X�0�0c?�TbU�M���E��TD�T�R��"Y|�f�R��n�$�	�%��,
B��\��d&�V�LF? ޢ�s�n$A�A�Av�P�*)����L���ε�%R���o�j�h�ݢnUT��1j�5m4�$*�G�z֘��si֩�Hz��P���ѩ�Ǧ���_C�!���T}��R���9��G)�5Y@S��tۍWKE.�\a�Z|�PY�C"���8�0SS�W]��u��΢D�f	�:^�p��-�3��:��3��)S�R�Dka������6MTp��R���S�����W,IW�?�����zYHg9O��d�a�a�a�1�1�i�a��?p�$�d�#�mA��,JG�N;$�Há�!�3�!Y֚Ԅd�Y*�,K��YU�O�V�qS�"�jM��P-��)aY�VNf@b}�΄�[�HM�R���P��n�%�Q.>�[v��vYxֲ�:̕���UO7���뒹�HB��9�H{&Z��u������
Y^g�`����B��U������_Ω���Ig�����W_�f�9��jU�1�,I�����Ð�l*y}Hf:��E��}x�I�+�jgdL��e*^�	P\O(��)�	[�H�"���i�׮W�/�.	�<1�y��(�:�ԝ����͂<�k)�N
J��d
�0�0�0Ø���4�0��hh"I�ԥ����0M4Y����h��)D&�R�P'˩F�q�+�O�U"��pj��E����Q�ŊX���Ff�a�#�[�E*o�����l�}��V�O�K���Vƶ�LfVJ�kUI�i���z��
� �(̌$I�&](Y@���J���H��:��8436�ΐHA��R��y����ST�Is?!�u��Y�5�A�J
.�6��^�aG�����)b��\$���'R[���WI����W�j50梧Bօ��N%�ܦV�d���k^yMa�脀D�5Hi�u��9I�"�Yc~*_G싯�Tc�<�t����0�0�0�0c.c�0�0c?�z]��I�]�ԒJz3YN�OR�=DI;��\�w�����&�E�,J*�Be����Q������Cmje��[#� �B�*�q��H�v;a(3Y~%i�:y.r��Y��$!�7͘x����Y~�����Iڵk���no��^!su���s(�۝��E��̌�#ֆ�ܜE�����ϓr�e+�S6���o%�O�\5��E�&PT1HZ���k�D(��H���U&dM��H@2������h�������A'�V�J	��Յt�
R
�*��I
\zM�zM���J�8'�W����bXD�̴��{B���k	A
���+>M}���vX<{���a�a�a�as��a�a���{n���������^PHC�j�{&hiˡ!�Ϙ���B�K!�JS�,� �ڐ�h9�5+���<U�gsuQT����	96�B��lfhfRGZ��T���X�>�����J�z(�����o�'т�P��*U��r�_��+��J҉ؿK5%�b���%�]��+_�Z6t,[sy8w�
Q�K�
�����.G
	G_�t��4E��R�-)�.!
�T�]�
Մ#jn���J�����PF�Q��յ�����渾�S*	�VֈO���C��Z;ߖ��O�cȂ��T�+��x��|S~(�m�\��&�.�W�}��q��;hxd����a�a�a�a�\��a�a�~`x�"��e��W������R��AB0"��>��
�s�f4�.ΰD�)?|�G�KjA���A�E�Uq<�é�j

S2dž�4�"���� \}"խ�u�e{��ˌ�G����4�٘i"�?X5y��mATƊT޿�<�`�z�%�8D�4ǜˢ����Kl-��k],��1;3���%�с��P���Vib1^'�H1WS�hìP<!�K1�z�|�^ktE@cH�&q���IJ\s����ʱky�Լb�&o�`t��<���Ҟ�n������c�;ͯ�=�=������˖ӓ�r
wr��R�K�c$A�l�$^�=�����o�OM'<�8��_�%�a�a�a�a�UL`�a�a��C�i�A�5)̩�i�����<EL����4՚���J�%+V��Ҿ�$
B�/��0�A��L�0�E �,�jYR��^N�e*��A�*Ak�Q�Z���QO�rB���sH!!Ӝ���e�idd�:,%GG���vǎ�s�_�坖���Fe}˖D��#�����9�����c!q�3�􄨓�e����J�P��[�3*��Թ�,0�\DjwzB�n[�HѲ����?7#��5��d�NKjuj|

���O>�\����
|Lz�q����d
x�*��������A�<�޶��.�"�ա,��VK�s]�l1_������
�MY��E#]��Y�u\u��]N�_�C�9��0�0�0�0�2&0
�0�0��4˷B��Ο$�K�Ԫb��T���UH�AF�I&2�C�iP�$�g��
�NE��ʐ>��I�$�(@p�4aF	���V���WZKJ:�2uQ��"�Xjz��J��$�X�l-8b
�<x-g	��r6Ԧ� 
�iyMe���Z�U�)�Q@z���
cщ��i(_%^_�W3��i�Iɲ�9��>D�Dj�Fu�nW����\W�r|�}t巾J.kI}��fx���*'��̳6��6
��F����P��T�cu8�ZR�:*Ӊ�=愓i��E2ó����jK�l�ݡ�ȰT��12<���&�k�}��,���E��5�O*���…���Z���0�0�0�0�2&0
�0�0�.T��s������cLEB�!U��C�*P7�
�'Ph)�Zy|D�]������A��Ĕ���5MT�9�d*?��-B�d�*�.�E��9�„����"
�핢� ڢ||��'���x.	�R�Y��`�/Yf�4b��c#��ϐ�8�V�IM,�.҃=T��
Q�µ�*[��zTΖAP�Yי���x&���P�N-������N�?�444L�i����|�,]06Jc,ufe-��r�Cb6�K�;'�ƇɛQ�Jj6�����'m�4hY���Un������W�rT�bq��S���,�Tgb��kM-��}�9���(g�5�0�0�0Ø���4�0��H�RZ6���P��Ut
�.��e~d��\����K7k&f%r���B�q�P��,
��b���� �OK�y�E*,��0�SFb�8	S��T��9�Xr�-y��:S~}��J:"5-����L	�:�x�>-̄�.i�~���g���TZm��I��e?+���q4a#Uc
U�����s*�O>�f��".��:")+x�&M�f:��y����x�IŨ�SC3���U������7v�bF'�FԦX0�W��E�,U���p=���BiM�'$F�4��Y�^�p�s�8�3����a�a�a�as��a�a�H4��HLa�e��s"���9�I^"��,CZ1&�t�o���)χ��̿"5��l�$!��+{�j�Xb��C�1QQYW�RT��9�lM��2��jYM��#��9�+%���� P�4�6�9Q���v���CW����qj崣+Ɣ:��	>>$�d�'ץ���"&�xgi�F�dU�n�4\3|������جk6��Ty,�B�l�@ykL���&.{��:�wR�[�h����N�f��~�4��/)Ъ(�2O��͢'kļԙ^W�p1=AS{vR�7-�}�㎧E�VI��TD��W�k�}�@�\�r�K���86i�a�a�a�\��a�a�~@%W"B�n�e*NЇ	�r����k�PZ"�:֊�'�)kw�5�1ũ5�*�PsA����,�
Y�u�%���/��,*I�(L!(�TDa]k°�]yy=fg��E��I)��,́D:�Nx�=�<��>�ig-�����n�Brr�n��z�λXq��f�"���?���g�Z��F�ͣ�l������O~B{��I?�ܥū�W��(� m��{�39#��]'2O�X�ٵ�1��k
�a��E�SE15ռ�QJ�JKs6�z[>�]�Bz��MMp��U��!R�|-��z�����\���[h���h|��t߽ԛ�$�NPk�C��BY`⽔��.D��T�kR��Z7���8K�͌�f>�a�a�a�a���a�a�~໗~�h��TNMP�W���V1IE�Gc��ɉ=,�<��M��
j��"�<K������yt���NC���0+���%�5z�0h��4=9M)?G93=ES�w�q��Ȃ���OѦͫ:os/]R�,N���HeI�Γ&��B3�E�KJ].���)^�ޮ[���s$21�qb3���Lҗ5��?>9��r�Nl�d�t!���� ��!����^w#=n�J��}T�-\0��P��i�բR��y�k])Զ��$�WSjR����$�+�:��b(���B�ם9;o�B��ګh��]433�]�����[�Q��>��7��/[-B2	�X]J\���VRۯ���$�k��:�.���)�'�5�蓗|�Z5���q�8j'-I�ʚQ+R�����e�$��E50���3���ĥa�a�a�as��a�a��+��-Z1�R;kS��ռ6K���,��4�BD�WcqU��464LÝ

����w����`��WhǮ�T�w%%8=1I����Ȉ2��p�_?19�ª��]�h|�6w%��y70g�b�0�Z�4
23��B���X�
�Rb��Z%[�|G'�+��e�jf;�\d'�(���~���J֘����k�|����1Y�!W�O��V��҃�������WU�h�kaF$�U5IE�J���B�j3�S�^_z�ҕ:ަ���*�\R���-�^N��i�S,�k��7�JC�h�����s��M���׼��=�Y�v������=9����ϛ�ui��
�����25���il�JQ�H������}��.[A�W.�E�ct�-�P���_ב�DMm�|
JI������5m��&�7�'�0�0�0�0���	L�0�0���޼�'��Z"�ɔ����!�r9R��5&!���e�X�LR��%I�*�zu���߿�
���n��z:��S�5]���o�;������o��J?��*Z��`�x�M�`~��|ι�Z4<��+ ���LtRA�Wi�2MB�Q�/e��m�D%�Hf�B1G�2��*WHљ����"� ղ�T�j�3')�������{h��I:�kYf�u�E�%ٰ|�񲚯�fuJ�Ӕh��:��шWa)�7C�qPr5_��%���ܲ��fA���k�Z�(����V��r��簵4��f��=��eLҥ�7K��"��iL/��$=و԰���c�<�y�t뵻�:#��ŋ���jw��U���qV��^�	Oy�r^�k�g�,�Y�w�0�0�0�0c.c�0�0c?�AEk��?��5Mw'���h����LI�n��i�iz���ж;~L>�.YM��,�
Z�h!}��ґ�>��N:�
4��hrz�$3+��=���E
�,��vBY{���p3�1Y7��P�W�k|��,֐jDũI�	ǘƄ��ӑ�Z��6ٺWT:�����D�-��%�͒Vdb*35�Y��x�Lfr�FGY¥,�:4:<LG����f	�X���,v��
�*�"Q�v��|P=�J�ZÈAx:��)cu�V��BI�)8Y��M��=����a8�`5}���,�]Y��415�2��5�gY�C$0C��Y�o�d�B�-��
�D�Bn�ff�p�)]Y��o�����D-v�{�=�ث�g)R��1���ۛ��V��+V��y
�0�0�0�0�
&0
�0�0�]�t{& ?4��_A3�;�Xv�̌Soj�ڽ%�-ghbz���)ԣJ3c٦ɉ�T5��I~8')l�ϭ�x��Bq(�'�&kQ��[��^"BKҐ�YA�a6#^���u�?�t_�&%[�4�����*I�`�W��PN)d��S!����Ki���1����3K^[&뜞�����D��y;/9����\��!�c'Ro޼1���:�VS��6�����%?���Z�Z'i�e�����G�*�h ��ga�塤5D�=����,]ڑk�J���=�~v���Q;����Khf���	���y���T�Ҭ�Z\K=v��e�Xz�y���{�}��j�٥��Y�=��"4q�s�*�^%�9	ǯ&'�F� �k��0�0�0�0���	L�0�0���0��<�O�cᗷ(� ;��F��1���{�R҇��Y�n�e���Xt���-fa�䙤�j�p9/+�:[�5bʢjbj���&ߴ�Bǩ�ԡ̹�DxA�A��s+Oe;���5���d����$$Q۫ 9!�d�����N�e(�6~.�s,�:h��ό���C²,+����$����E���MS�Ω�x�m��m�v�M�i��#�H$)QY3*m�T���;�d��r��R��l�4�fPvRo�������* y�o|�k|<����A�զ��v��+hx�B*|�?*B��Z_�k#5CzR�����$n����L|&ۈ�L���;�{VK���u��7�D�g-��|?�m���-]A��]|�r�39
�0�0�0�0�"&0
�0�0�:ʆ�e-�Q؂��%ه�l,YT�d�#���DR�k��U�s�v�9��͓�i�V{�F�Gilh��T&���n]0>���jֲ(��U�Q�E��f�8QHi�H9y&��*#���KF�zT��������Y�Q[�)O��
�_�������$-^N��UEWgi&:[�v:sӅ%fmb(jћ��]�R2�\Ҕr]�ؘ'�s*J��֚�u��3$,��姂��þ܌ND��D��P��3S������UF�5�p�)G��q|�*ڳcmݺ��;����𥬇B�o���7��V�S����2�2ܴ�S�i���B��pN���q] ��,��&�fY̐G��M>�C{{�$Ej�a�a�a�1�9�sӖm��|�n��.�~��%��W�K+�-%�0�0�9˹�3�β-s'G�G(�;�p�"��@�ё6��}��]K�d�z.O�V�F,�ϐ��[R��F�3��XIg���PE�:Q/�a��<-Ui2JR�W")����A��:��Q�y�".S��K�3��V6Q��М.K���&df��.]��&'��$bɚ�#411N3�"�]�Q�Jja&��J}ISI3�}��I�˵4=ZK;j�H@��
U�2ij��a��e;<_��횙�a�P�ݦ�n�E)%������Bc|/w�}=M�w�ˢx����C�m��m�r����õ�;�>�\�e��ٜN��uo�-�;�Uk��Q'	L9�Wq+�,�s|Q����ٵ�ZC��ݳ�/Y&�3�0�0�0Ø�$t���kߢW��[��y����c��t��^G��%��}�.����o9�.���0�0��C,�N:�t�k�
h�)�Ҳ����u����idt�F��S3��I�i%�F���i�P�Ecc#�C���P�ZK"��eUJ:��fu��Ր�a�b���K�,�]�����:�V���eH��
D��±=�E��H;:��q
�E����j[G�n�3*q�T���r�o���D��ŋ��9�JO��Z_��f4�ILX��c�2�:\���K�>1���f*T]L����:������K���Ȉ��Ų&(q��z��|�u��d)~v�m<�$Md��KG�/�#�!���-ISl����J�*$h�4�Ƥ(�`�o�B	�sLI�z���0�0�0�0c�p@�H^^�ӳ�q6��
�y�s����p�1��ci3>1��t�����OL�a�a�-jZ7�p3��Qڽc�z]k��{���##c4=�K�$�ȩ�t�b%�F�M�X骡C��Ţ�����t�,<syLdW�͘���~\X�k	�:�ڇ�U�-��C�)�����s:ߑ�H6�K)�L��צ[��%��'�%V25=#�/�spEU��=��y�8���;�C�E�h�.U�im*���iO�����z�^�����+�	ʸM�
T�jrS�,��P�Z�R�;ӛ��m��\+��=���8)�<�T|�?f��ؒ�M��1����΄��E���׻��5���}�4��:�NS���WHXY���kgY��[4�{����3�3$�0�0�0�0������htt�A���U��UW_G�~�[�&�x)�˗�k_��Y�#���z�),@?-�u�ͪ�}�[�A��~��(_C��x��3_�c_/��W���]�/�w�w�|?��[o������V��/~���0�0�G?�iA��n��M�LSѝ`�8JE٣�%c2o���"�Fy�$Z��ݒ�:T�B?A�SL5����[����b+ۭͨ��օ�թ���L�~�I҆ػ
>yT�)fMf)d&��H7$˲�jY
դ�r�ZHЊ�j�+������o1��Ofbf�~��*:�c����Њ��7���v��b��RhJT�A�A�fz�z��
�(w����Ȕ⺴���(1��=y��#�iK�-�#��Q:Ē��g�2i�(.e'@Hj	m-�8އ��Er��'EI�x�$g!WsZ>��9]�`����z�5jh5�+����Οwn��Z��?��FW�����a�a�a�a�\�t�k��g?㬇|��\@���{$2�،�r�0r��|�
��g�~
=�g�q�]�\��0��z�����HMb;$3�����];k]���1���OL���>�X��Lj�2�0�A��DdSY���d�#�*��K��L�� ���JӔr_�Del&%b�h�j�_��Ck-R1�^	�X��l�ex��t ?��M�p��S׈A_��L�32���ćy��8, 4Y2⸘��Z���I*��T�մg�~�٦"�i���k����ʜO޾�~�o����h�%A4�f�%��H�~=,�ٟ���H��l�i]�F�u��ͽB��<-��m��Nk�8���:��{���'�AG�x2
�j_�k���W��g-3*���ѠT
��V��s��(8�NKB�E�O4�)U����l��p!v��|��N��V��w�|d�9?�0�0�0�0����Z�&N=��"(�Č@.����!4��2�s��{���2��~��"�U�\'�������c�������'��[���c��y翋��~���k�`bbR��,��/}�s�s^�:YgLv�c�ko���?f��G0�\��t�0�0�3��_���"�0�0����OT��_��`2�0c�p�>�~@*d.�ޏ�nvo�y.�O}�Kt��w4U�G�]��E������/�\|5���ӫ����wxg�vʬ�c]��w�as�G�Іa�a�a�a�a��X�LԬbF��AfY�}�|�"iJ:��C�ٖ2cs�Vyl�c"m��c�0�0�0�0�0�0�0�_D`b6�e߻��]ݛK>�%����Rq�� @!C��\��y��}ŜM��[n��^�{om�A�r��d�a�a�a�a�a�aƯ���}��2�s%�3/��7bB�Bq̨���QP1���g?�d�lY��Ys|bj��8�O�0�0�0�0�0�0�0����ٔ�~��t���eY�����D~�c�H�q=��8��n8�:�w�-��)�a{l{;k&��b���}�:@�~�{W4IO<���^2�uH�bXޟ�^{�V����p�݊eKd_X�޲�0�0�0�0�0�0�0������F��K$�x�g�(�A.�ˢ�ܽ�e�?�M*7�m�c��oy��_�I�׿�"I�oT��s^��f�M�w��y*d/~�;���_8k�7��w%�y�W��Z��(b
�0�0�0Ø[���LQ�#O5���_�7�y[�Y��?��.<'ۻ�Ob{��ݹ��
l���^��R‹��{o��w}�^��:�y`�ft{�OV���p���ڏ����q�޶�G�,�������W���P��[�!�<��Ư]�z�|�mg	-��0�0��}�{:�ĺ�_�����ٗ����ٗ��ykHx.�u���?��b�_6j�&���6:�����0�0~��<��?8>D�a��/_����>M5��b�TUAD����P���UX&A9�|�2*�E�]N����`=V�['�M�ϥA�ʶ�~��A�a;�|�N`�tU��\_z��L~m��9]���:jJ]_��J�"�c9���+�qpܤ���*����g���|_�>\؟��8F�#����pݒp}�+�/�s�UX{�\s�$\�
k�3����Q����X�ܺ��&��{���f^�e�)��\��VGI�ƺyy�{^����v��W.��9�����j���OT�����k&�0��ž������;�}����%0y��ol?��}���$������a�a�a�a�m*�N���!%���!��c�0鋯:��р��l�6K�[BA�}��R$��N���U��S
���2s�4"�������Š�M���Uż'�@�e�.�4R�*N��R��j�&ͬ�T����A���kq���P�����zI4B�@�D� "AP��X@P,��(����"���!�j*齼��7sf���}/�uy��L�wwn�o�9/��S�9�-�(y<����}5��4��_j���J��[JS�v�#�{�my�O��U�p�.:�M
�.�m����
��ҎK8�|3Hw�@��FEEE}����j���8	2Y�^��/�_�ұV͔d�Y��)�&W�ie�y�(;(�/};d�l�9R�*�pA�z��,-CTTG�B̨������������O�B��zm�碎S�ʧ I@%�j$���%�$�-$�&���L��`Z�<�,4�Z/D���#��^��ʼ�^(
6	J0�Q{�����
�C<�(4vG���*R2�&2ga��O}���|R����Z6~�����Λ������%�M����6kO%Na�ښv�ml[ME`c��3d{C��ђ����k����:���D=f	_s;	B�j���3***�#��=s�|,^���SD^�$l����}�%�g����L!D�zx�g���y�`ь=�Dt0e�2�|��å],d��vE.�f���k%�wS�>M�_z���iJ��°|�7��!+o�ݰO/��(�E\�U�#��������������
,�QQ���=|��d��(G����(,L��BZؗ��#��;�f<8���R�1nJ�឴`��4m�Y{��[���^錚�s�����y���΋S�O)�'Є�5��\��>�G�L�R�jHZ�gĕrK���(����8��b �7-\L�+MhZ���y
�6W'�~I����G�u�WZoMҗ���&d5��(_C��=�� .,�_娨��/�j��x�R�k��("���J��ya�(��n�ϓ��yNM�"������~qR�0Ʌ���P�>����M�4����ϒ�4��՞H�]�]�x��1���O�HCN_���KL�7��vƦ�!**T�QQQQQQQQQQQQ_B=5�9���k;fx����Z�|n����5��������I�9����q�sR�I�س��,5�L-��Y�D:SHF�,�O:�#[
�9{�<��M�&�b�R�"t��s2Z��0RXC�p^\}>X�e:/��L�>�j۪��R�sNJ�AJ���t�r���\��>�8= ��q�!�t�$�5�‚gX�Lx@����y{u8�āZx��y�8�8/\�3o�n����,��Hz����Am��wIp=�����֭����(I��0��	��N���4�P�G�,��7��k��Y������J�,�ͩ�-F��YOM^���.�~1���l�gI!�M�����@G{\rXw^\�'y/%�L��)�i�)���QQ��3***********j-i�����ׯtqQ	64�n�FfC9~���Ͼ��.��--���GQYU�=v��[ �H�yA������z<�w�/�$�|�9<��K�4%p���G�޽����-^{�-������^��S����'wC��ސp��9i��{:����2d3�[Y�.!o�����p��͆Tp��a�M6drnM������ �$�S�Д�I�d�m2��>cW�o홹�{\�y$����^%�v*�zt¶�;��_��֏��u�u}�>)�ްy�"���O60s�Q�0�zz��DZ�-۫�w��?��v�n�w&�����u$�K�ƫ�<$v��](��_8��/�s��څ�`���`����
�~�ω�y��#�B��UI�[�e���~����$r6T<�,�2ɛ�+v�L���^T��O4ؤ��Rm�s�S3��g�D�-��"�������������ZK����C��[�1d��[��ǎ�O��>�$��_��e3���3fY�7rD��Lsף���|�p0���<F}4�<��2��a`N����
,\�
�M��eΐ�i�e���]Ƌ���8����x�ϖ��g�D{�ϣh��b�Mv���va	�� �C�I_�w���\*�1����w�0^�.l��!�hj�08�$�U�34��<)m�1�+�N�K�'�����[pk]�3�Z����OA�Q[6ma���5�௸�b5�du=2�e��]7/���+%��zN�39����y�њ�DZ/OdP���Ep� ****j�+��	��-M.��佦�I#�$L�Y���%~?o�󎄛��#&�ν� �>P�I����ܜ
� g����ϑv����s�I3�%v�N"u(���V��9ؾk`��&F�^#r"̨�I��FEEEEEEEEEEEE�D2�Nv������7����^��I��~��v�v�l�J�69�%�ڷ]��f}3��0��L^����=��K�N8��ѽG��iE��&�d@٦m��ՒW��tK��1�%�L	�����e��nL�7ř%m�ͼ=���R8Z�.i��ָ�/����O��!�i�	��L^�߶�-)M(U��6!b��/C*���ޗg�#�=D%?W';�����X
��=E��48�
���)�v��g��{�[շD���l𡔶<i�e����-�t�
�fO�hC��\D6w{�
����PB0R�J��503��'�_
9��9}�&7���%�����=�{.��%���]ף���EU"S�0������EA݂�x��}[�����|�}�ִ)	�%��h�x�G�9�ڭ��ӯ�x�FE*z`FEEEEEEEEEEE�U�eћ��;�}jll”i3(�gSS��dzp�߯ǯ/8�g+������ճ{7\���d�R���%%���A�:jg��}b5�+<.X
�9W�QaY2rkR��կ͕a~8���\�7�wMVz���X`�c�_x���ve���Ֆ[P�z�����ֽ2�6	��O��E�vd����\�	M�<x�+�7�R-���yZ�l���qYe�Lf��2L��T�Q�S"scK��I��s02c�>�+!A���5��#p������tl��2�π8)��ZepJ6f��ᯍ��4J�9��ۏ�Oa��`�%�+�NJ@7|��f/X�;/���<�6Ic�e�i�oA���kl�Xp{��'77{G|��WQQQQ_v�_b
�Nn��a��PJ�ӂD77�9�=[��p뇂��ɼ'���]eJ��8�S�`
�.]�qĴ?�9��4�y�����@�f6L�\��&�y15Ԕ��r��c%<��*T�QQQQQQQQQQQQ����������!��ϼ����"�i�-���|�M�(/+���˱`�b��z�~�%9L�1��/D�n]�٦�Q[W�y��b������Eee���_����WT����hjl��Y��p�b���`Ȑ
Ыgw��b�ҥj�,_Q�ʊ
�9���Б�\4��5{�*oZZZQVV����^
�Y�jm(M�-��9H��Pң{WtWV���3	��6���X���0��ި���ԝ*��������8kn�7��9s�̛���f���C�n���U劔���{�:���EEE�u�!�V���C�5+0[���e��ӹS5���U�v]�l]3}M���0r؆���Xe��M�-4�-�mп���ӝ���>���Dmm=���\�b�+�1l��F9B���f���3w>]�6�^�3x��4~4�źt��X/$����Ak�D�ƅM�� �p��n�%��0�a�3&\Q�*	{=�BƆ^z�-��ar^fx��^�.$��,�RX�&�>S@j��N0�w��Pa�
E�W�/TH�]J �| �oG�B��_��+��&d�� ���_�!��mX������'� �Q��r�B�{�(w����̜방��ۼdH�4fe�#Č���Z�
=9V�k�qXs��7<��O�۞�U99��^'��=Oj�&s\b?Ƞ ^$�Y�d�q�rkJ��}�H�s/T�7I�ܔ�p�&|��������ejg>{6��$���VBa�E����*P�QQQQQQQQQQQQk]�����q���È��?��K�� 9j�<�⫸��������W�����J�t�Q��Qǽ��.����_��o~����kn�=F�<W_q1���
x��Ș��={t���/�5a~��c��Ů�}z�¯/�	���|z��׫���>���"�aJ�j�f8��S	���e��e8�Գ,���O9�l<j8ο�hZ�<y�x�Y��/�8��1<`_�Rܴ뭷�ɧ�ĵ�k�����n5��Ԛo���w�uXex���1��/�Q��_�s4,����>𸂱�`�PQ.��m���$l�񨂳��͸���oǒ��p)��{�~z��(..nW縧�ß�����>jF^x�O:蕧b?���(G��o��JT�W`���8���6�Н�㳾�1�n����7�Y��8�{���q�e�A]�K/�}�iU���\{�~������|ߵe�]wĥ�\��A���8���[�-�i��^��ʐRX�@zE93���Rz+%<m�.2���RZOH��a�f�����>}�T�K����q�!��t%��)�ԾO�v����	u�9���}�r��A5�#SyE��f�/���쿏�W�;��!�m��p�ز\���40@>{Fj<r��J�s�Z���)
|Nl�
0(/̨���u+���³ҲaÃ[j���`�i����Y(�9�2ϋn����H,2u�<��� 2� ?'�prĆ���e�"�����9p�
]w�ښ�E����:&���U�x[DEEEEEEEEEEE}Fr+�!�_��׷�;FC���&��m�_��ƽ����h{f�uG�Ο���]q
z�Ic��@�.�^x�u���,��p!��0e�L=?�$~t�/1�ɫ��2��]^z�
u�ix���2m	�d�2�����F��p�n
z�al��/��9xY9���+��C�疻	kx�&�1~�?�GhjjDx4@<�q�]Xx�ePm����[	�>�蓙z�<~���	�jx	 Fj��އq�ϡq�X���_D��y������{
�2x�É��7��j�|��?����D�Kq�ŗ+H�l���z�s��',�4e�Ӽ:v.��߭!l��*�})��:K��u�FIy[!=�
�'���Q�A}����^�9�@V�c���J|�E�qas?J�&q���u�Z�c��FF�=K��z_^���tބB���N�e���,y{<N�p�Rd�C0"�X\�w��09��ܴ�E
L�ֶWS���aC%�2���f
�g;p��
�Yj�%l���y�j7W�Qʆc���rc6̨���/���s���CZ��A�5�|,A<��sP&0AW!�q2s|.��4�$}NI�_�%�/|~JW�҄���C���7��������T/���9�^Ԗp|l^N�Sd���t��BE��9*���6�c������+�5JC�x�>U��}��BI��#�fl��s��'��P��l���J1���#(UW�@�xc6�z666�ǟ[�-_FP����ݺu�N9���~���hni��t�������%��ؿ��սЯ/v�q0 |�	;b��m�k�Š^�z`�-��RS�N�
>��8Tw��V[���d%4�z۽�������Sg�眲��������N�.:u���655���NaxY<�8|�I���΅������3l����>�M7����!y/��Z��@��
v�ͯ��Pm\��D���s��r�=����F#�a���(�k�M��o�



�k��7�?�޳�i��š}
�{���w��N�;%±��K�? m�T�\����kӠ�´��8��F?˕mxZm�3���>��>7��)��4p�థ�|>_OP]_���!r%��dudh�c�ơV�/5���A]��l�4�r�أ��n��8��uo�%)��~�m����ؤ.�y�
oQ�.9,��$�|w��u��L^S6��c�֝f��ڿ�;��?�wE��Bf����|�E�s �e*�<x4Ϗ|������9�a�`�ga��/3e�\��&�_a��̹c`����NPR�AK�*�����iH��A�v&�~�	��%��+	ƀ?w��iTT�b٨������������D�?­�Z�yP��3g��ݺtA�~�Q臥��E9����p�����BT~�<��/~��3(������~��T�sf�P��o�����ݥ���Iﻜq�/S�j;,Y��‰�}�)�f�-����#/Y�g�{��p�T����ܘ�ҹU@���F��=iAu�>{����XQS�I�}��vٞڲH�?y�4Gv�y{
[�~�;��#F��p>��3�b���f\}�M�����8����-��z/����*��|,N8����/�u�P�@��!y���u�>W�հS��&����*��Xl>f|��T�&O��:4����r�j��z����h������m&g�'�'�M��ߝ���ܕ>��ǜ�C՗z*X��\�t**�	о�`r�T�~�}�ލ�ӡr�w�OԽ�L�2�W��`L��H�Z�fB��3�V5��R��(
c@g�z�?!�����X*�k2�lhS���(��Siqy(m�$�8�>|�9Ƿ��s0��:��� �ze$n<�-��{�C�
3a�xͽ.��q`OF�#+��C�z�	_a0�zo�BWaA2�V���7T�>�l(?i�g�L�})�uJ]��
iC��Z)��ք'6y��Ŋ�����K�%��~��˹�E����d&�#3gkI�V:���/����|��c���Y-�s?�d�tS&�m��90&>���vf=5�T��u�EXySV���S܆�q��j�0������������>I�=q.���ҧ�|&O��w���
�oTVV��H��}�=��#qFyFq
�G���^jm��p�|8�>���Mձ�;G������2�757�G^.'0|؆����,��|hkkCCc�����i>�a�6�g��dTWU�m�q���y�m���T^c����QSSG�u��=v�	�L'�/��-'w4���6��rٲ�n߄w�C��6�TTV��rh�m}z�Tp�����`3��<��=�[�T����'�m}]�d�Y_�=�y�%������J���]�l��h��|:��n�Q#������t�N-��t����,�G���cG�}���A_
����8ᔳLXT�_�'�"4�5��Z�LNI��GpSRL=6�3�hs'28S4�r=I �z/0���������D�l�M�ARXk�>�db/K�)��U"8'�]`�O�DX�L8,鋰5J�rZ�}����6Wa
��qd��!�t��pІ�M��6l��T:�(�.YK�5�r}�Ii
�Ș��O��ޘ���}`/�tp���>|=���<��1�k�&bf܌����Z�2ac�;��>�DL�R�h_��p�
Dv��p�:���-n��a�� ����rX�$y@�}��yZ�����vN�5	�ⶦ�H�͏��3痶v��6��0�q��j�0������������ֲ�t�񌙘�^�����v[��[I	�Vc7ǧ���6
������*S���摒�R���2�5Yg��s��Նe˖����~��a���1s&��[��#�5\���í��^��ۊ<9��o��.ZZZ$+&��k�5��t���I��g��]3���ޭ+�̛2�^Ny����|���Z�~SWWg
4��"�=d�i�ڿ��jʴ�1�B̚=��N�iǐo��l�B��ݱᆃ3�-))�v���$|:PhFp(��ٌ=z\���|���n��jV�F��F�O�!�e�d 	#!��? �C��df��M&4�L8ߤ��K�s_Jp��I�C�o?�������0�Gб6�A�����Y#,߳^2k��E��C�������=�rD�p��wަ�͵��{�yt
{�����h�r�h
<u�ٗk�
w��M2��1P�>�S� ���}�����-#5c��W��輘��r��o�������Zw2�M��ns�0?�'7�����.���n�t(S���tL0/��f2s\ɼ�C�pV��ߥ�w\�� ����/4����,��ԆC�^�y^4��,
RޅЏ�\TG�3***********�3�\)Ω�� pyԑ�����n�s���S�3X�m�[_
��dx���ˮ�w�u�[[�b��p��c��vJf��_�K̗�GS�a���{���	��n��HP��yO:�����)��18i�Ys殢t� g�+m��%���7'�cƪ}8L3&�����ܠ�����5����w�9X��iMkk[���՝2���fqq�ݱ녂P�9�!r��M���T��~�5�B����t�dXt�L�L��&5��Ԇ�c�X�hB����2 �����<[��Oj�ǧt��X��!,œ��r��¡f��!l�C�p@�ygZ�*o�C؛5�!��W�8�G�>�k���ޔ��m�_3F���E�"Q��7.�jl�aEټk�!�Y�<h�a�I�Bl�(fЇ�����u&��Z�C0���G>P d�L%��U��*���<�H�����>�)��T���P��s�yT�Nԙ�L���~6pOv��g
9O9��"!?���V6�ga!i�ߢ:P�QQQQQQQQQQQQkYl�f�����m�ގ=zt��g��_�PIw� �}�]�R��n��
7�C���=�$�W��6(++�܋�|��^z
�6����rE�cw>��;��w�:u.��z�2V��(;�-e����/��^�C�l�����Æ����.���,iWFEE�ھ�@HMmZZZ��PK������X��Eh�ҹ1�^�Tmm��Ӄ�/���f��Ȟ�Z�7�J��Px���"y���*��aH]89��,��9�f2Z������bz�(\{8��O��
�w�ԁa�
���(���^
���,Qx�J��"��zx��c'�^��!�i�1!&�F)�8k�44a8^W���v>�I7��ēaw��?1ǥ�r���7����Q:****�!������9���}nN��~�K��y\Q��a���L�ץ_x�ঝ?y��6�����e7�Ds���Rn�4���r|�P�8pi�2zZ��n`ۚ�%?QQ��3***********�3�D���p�f�yŗ�h����~62W����ۧ��6z���֜���2l��X�9��PSW�K���8�c��%)L-K���~{�S�N+��_�Y��⭷'��{�.<�����a5��6'R{
T���Ys�4
��.]��Z��護&���S߾}�J����R6W�0��;�޷�SFD2�	8/D�0�N-I6�l��Jj�h!�`g�#a)$yM��,,<�Ӟ5,�穚���
ΰ�ދ|�#��ܐ�����c�k^u��>L�5��>�����h�|��;�Z;v\�+8�jx/Z���h�����zq[d�cTk�u�7�(���U��,�g/�,������B���}���$�{Y`�|�~�J�i�++�/�`�I����B�+���L��?�����3����dj�Y�cZ�P"\�����f�)M��y���yk
�/ѺΨ�QlGEEEEEEEEEEE}Vjgs��R�!T/Y�>:���q���f���ĵfb?��\�:�;x�'H�c��P�	��~r	l>f4�r9z�bE
��1U6��{�x�Y8�����kn4��Ԣ��?v�i;�(5@BbʔiX�ly��n��L���?����%y�)Lx�=|�Y����
߫�'O�mw�����к�����daO
��D���6��xi�,td{ط��+��@d��q�4TN�y��4����dtN�z�&��|�p������

�i��9ֈ�<O�,����2����5N����2�+��9ꍭ�_�"4c����^��X[��F��.}yz
>�]"��9�y�c�a�R�)E�y�ǣc\�.d~߅�����@���WxiZ���
|PV���O�o���>	�����1a�Q.��������2��/泟+]+
^�yb6�c��^�&d���T�=7A�"*�=0�������������V���"t��-&���k���c��[ؼ�/�`�����ҡw{��Y��aނEf�*����n���jZ�$v�~�5�&}@@�+���s`�g�Oq��Ͽ�:dj��
@�u���
X6ԛ|���y�m8]�v!O�K/�;Z���z���m���/!���˯��3~��؜7^z�
�Wr�ڗ1#�<���~��ҫ�ѹPo��^t��s��GSc3�Y�
{Rr^E�ߌ,{���҂.X�$��Å�+|	��Rd���A��u�L
��M�50�z{:d����ޑ�x�����13����0�'ó�-W8�Nɖؔ�D�ڟ��5�qs�,7��]K��+�ɵ$����Jx=V�޵`õ�����x�J.Ö�ce �pc�y.\��Z�
����
��%�Jʉ���D����E������zb~���7&";�>�U��S�8�wgد���87}�<~C9-�EC�W���s��L�`�Ox ��	1���J-��f�I��@`FEEEEEEEEEEE�u������U헫�/V�O��eh�?���v���.��:?�//��ˆ�5�S��9|86��������GmD�.���#0|�P|çX͸d�)TJ�ӳ���+��-߆���) 	�I`65���]�ҿ_?l<r8�?��z����cO'oN��ڽG7����J�G��8��#�����:��&��.�K�N��G���akda�+��Ǯ�8��0��Y������s�-����pO=�X�*�;s�6���i`�j &�2�4��D�<�d`���1<adX���A�-��l��
��&^�ҵE��r�,}�T��GȂ���:.�mvddp��ƍ]&e�+��"���m�@K�5�̣A=�z�f�3����T;vd,恇�.�/����_Sgx6����)&��	�Qv0��ֲ�ww6V^�,8�hX/㨨�@�,��C�%����>�B@I�&�7�ѸoO��~�Ӓ��h��E8�R"3���c����H{�y�1�sUj�7S�ͷ	��`*$�|�-�<���dN7e�"�.D�\`FEEEEEEEEEEE�%�ּ"Y~��l��`S6�o��"C?K�A����8��>{b��ٸS���V2hh WYY�C�=�w�ӷ�ꇅ�3TH��>x�g)�"���^�!��am�ц,������G\��k��k�������=�@Q��=��PYQ������������[�,}��A���0G�[�~ږ��o�RjV�֯o/�����x{�G�6*.Y83B�[�KF����xI��z61�B�~<sm懲��<D�Px��J:��F��㒶{��5+`[�ٜm_Z��$�{�A]	�Ș�Y��2�+�RzS��{!9��dX�������àP�
`��OX�L�!�q7���mo`)�O��;�xCo�
!�o�p�|%^�N���v�/w8�E泹7��Ƃ\U��h
�Ot�Yb���QQ�L��v����ZлW�X��G��`��F`�������Fl��X�=q"��:��1�l���Ɓ��q� Q���1w�<5��Ţŋ���s�v�nM~�����0��+�'o�D�|>�I���݂9�>�����on�R�iڡ��4u��O����2�\�Bm{�ϋ���P�$ R7�%��`ɐ��4�b:���M�r�z~�Z{RߥxwDEE�}M|o
ƌ�U����2y]m9֕t�>��޽{�����y�ȧ���l1j�p�^�$�h�|<km��!�7�Х�������1�c7����>�[Z�N��0|��Lޞ0���^c]UY��F�{���3f�'c�����n�1��Y��b��E���žj�H��K�N�x����U�U;kkj��b�������†n�5�o�_Z:w���C�xV $P�m-Ȗ�:4�,������h�4|��,eЭ%�����зo�$EX϶u�[o�Cag����U]�������5�����{(�;x�AȒ�~/ƻ�}H�2��+���Mѫg�j�=��%%�/��j�}�Wu}8Yݗ֫��j�i�׬Ys�`�"ׂ�T�%T.P��t��]:�1U�V;��Z��#.��B��������
h;��w9��,���L�Vo�D-��2��v�I��8��?�M�@������p���yu�����p�U���bDe���9`I��]>��)yI��7	�������;[AX�`o���7��p���,���
�=]��O��й�������Fܒ�N��ޝ,���&�џ/��`emm=��ݓ���K=WL��MF���f:��Oi޹������:�{��減�}EJhnn�6[m�g�{%�%4Ϧi��b}�ƣF!*�˪ƺ�h�_f�<�J\�G-���.��(������aW͇`q��a��Y)�*$��Q�9-5���8�<1i�	�B`4�m��<��P�ҝ���Wꏣ�)z�艍�e�]��j��Y_x�}�QQQ��"��������ZZ�3������T��V��U���\h�m��W_�o���e�d�7�O���s��'/��?*s�ԩ3p�w���7����c��9�������A���GD �ۄbe�.P!L��g���u�H<梭��� "l�>���
g�l���k��B�'���p-B�0Pj/�$��;yH!�7aM�;�ᩅ�]z�E���`��C\	�F����I�k,�nj�Bq���6�^�r�2��|�����3F��Bi@�R�EOd[��(�_�>�<v�e'<�܋�8i���4���
}�����ٽkW�����[�ń��йuuuN��������c�e(*.¨�Fb����(���k�T]�e�W`��C�=�e��M
`J%N&�g,��MO�\v2�K�S��y��Kx�Ȃ��/���8�Gi�hj����o?�҃I+i{K{|ja�M7�'���ImNs��##��\�e�1�lTTTTTTTTTTTT�B�S����re<?~"3��>�r�J;Q�����#O�AeĞ�p1���n�X]�Y���W�Ӟ��c���"���;e<��a]��1G�IA��ȑ��r�oʌ�{���O���V�7��;>`e���WH��*�o(���Ȱ4	���,\
=@�o��l�+u�5���9�L��_�5.W�B�Q9���h�{I�w]u��W""f�g�+��_8nxrr^L�Ov�_����WKj
CWx�
�����Qk[R�˝��n��X��y����=���l����ߵ�	΅��#��A~�0GnTԗXf���09-��m��F�cy�	�����v�a��j�ٙ���"�q�ce�(���p�!3#<���7^�#S�v����y��ɤ|����ʜ�Ji�oCT{E����^������������!���<�M�2&���ʹ�v[c��wB��/m�:��o�^Ʋ�5��{���Ցv�q[�׮X_d<(�yU���N�^/�A�=�i�^��1�����=�[�  �Fx�	�������!�Bh����In��'�dȤ��s
�m"��e�N-X�͔scҠ�fGM��M�'�m�G?�34'�]���d�,��\�p1�6
����Rw���7�U�:L/Ӱ6<8�<.��QQkU�_�`�B�������,?{^4�D}�ſ�~���M<�L�zFӡc���oSf�YL"��E�3�� �j#a�K��9/�z!5Ϙ�!h�\���]��[�I2��b�`��0S?'�L=��
7��������,�l���(�0����Ҋ!h������֞t���O'c,y��	&h[Fu�j|��o��;�p��4p`?�x�_p��W �U�5k��9A�s�8�#�>]+��IK�1��9�iq)�r���d<�A_����S���A��i#e3a�`�t�ͶǺ_:�EE�DŬw��q�пJd���xcZ�H^UH�ޜ��pU[�(��HlgS�/��1��k$�ץc�� �U��A;`����a��8t�2l���Kw���k6d�L����_��v"X����DE}VZ����O[GTԗUƋ��>x�L��8��,T��ƂHf֖Gx�O�� �Et�~��xV��AZOH:WX���:��Ƃ�<��'q�/�|L��@4�m�[rd=.y\Թ���<+ũ-j%���C�=�y��c��l�+mo��A�Ӷ�u�m2�nW�k���}�~����'�v.��Ç
Ƒ����{�c&������!��z�����󙧟��ˮ�c7��DEEEEEEEEEEE�=	��ñ��7�EKPYY�
7�ʊ
DO�u����?�Ϝ�@�D,[��€���c��ݶcQRR����9��@�@�4�>�c!	��P�0v=�h \b��3�`)�'�����P�2ǿ�ARZ���d�!:�X��룚f1;�
��^�nP��SmWWÓ9�<�cShbK1�w���&Ԭ�HD6�1��"m�����.9�^��;jrq
_��cK9P��<�!�u�cጽ){���p�P��-��l�4�������@�><:���_����<�/K^�N�.�+¿^f>��=.��!7Y�5KA&m���ڬ$5�)>���¢������uv<p��!h��!*��։�u��Gz ��*�6
�44�Sp����q[z������mӯ�c6!p���j�~]r��0b�٦!�n�05<��2��܋�ҵ�3**********곔C�4��
�-Q�X�@7x�A굁ݖ�8�%�L0,R��x�Ai���2/ပ�� \�6��ЧN�l�� 񢇖�s!1�5��L.K��!Ü��䚴���7|����t�N���Odi��e��d�!D�면u%�CIS����d�#�x7��� �.����Xi�B���L�R��BB!2F�l�����s�U��	6`��W{]�k�_����������#�s�%�w0***�#����)�ED���y_XO:����Ø�Y���J��w��J�a�e���l��(<�0�$�iJ�g�4<���Zm� �P3\��O�����|�b�քI��LVWU��	�f��[��`�;n��ZHjx�A�՗�g���u�-'�y�Y磶�QQQQQQQQQQQQQ��B�G�oԺSx-D����:%���p��\�؀��s$�K�8�@d�epnH��	
��./��a�L�C�	�l�Մ�M��S��ࢵ2��72�&�/�Cz �� �{G})O�5�J[Fb�F��/��"��=��ֵ[؜Z�9�~|Ep�d�-��Xꍧ���4��ԓ8[�=λۘ!d�5J?�"�M��=�Ot�p,Sw]������q7***�!�=�s�"#�?�9SRnd
M�T�Wϝn�3aVE���5�k!y�]�_܄4��+�s�-G�
%/B/N����jjJ
�9>@�1<��\k�.cT��5���Y� ��1�����b3�ץɪa�eW]��O"`���&���&�r&O��ˮ������g��x���/�.;m����=s�޾��W꽩�>���g�~�����׀��+��GS���j����SQ��r������V[߀��zϾ�}1l0N:�L�Zn�x5v�����
�Q8�QQQQQQQQQQQQQQ뇌AO
v0q	{[H�ԺP$��
֐i�#��!��s�ޓ�Ι?tyè9·q�ljL5��	��TH���4�����斴�M��E�i�94�
�k���.里J��
��y)|9��0G�4�c�m��Sh/Y	��tCnC�f�Kp.M�1��б>�/�y���ɴ�R`�Gp?R�6���.���+}(]�[ax������u,B�����6���_n�����j��`������u.�$�]���<�i鐨L�F;�G?�"C\3�S�~��_���ߴ7Ӟ��!3N~��/#֌j���Skİ!�������݃�GSf�}Ͼ�*F�9ނ����WbW)P0�#3O;�W�;���=�t朏���/��B�J�מ��`��!�+��i7�=�b
5krzJI/��Xګ��ί�c��鉋.�+�PڻS���똬��}�}e]��>F�[��o��
^s�ٮ��`8<fm����k���������������u-���_
C�a���fՆ;
�����I�Z�R���e��I@�
�T�{&��CQ�@K�ͥ��
Ȥ���Y!ر�C3��9�l6�
8�Na�a�#P(\�<��Z�j{���I�>'fxK&�.E�_�}	�����2�"��W-ܘp�J�1[)|]��ȴ�� D�Z'�J��+��2����=*jm�#�
�=�����xٮ
Bd?���5ioak��5��>�\��m[��Wu���+�U��I��e�&�s:2ڄ���|�{+�h)����A�J�����)d:{?"��Hx��	6z��p�AXYW�m���)]�DP/yy���� �~��_��LJm��j�u�S{G꼖x�܊:�����<�Ͻ���Q
5h�a]5���9u*AQ
 ��!5γ����BONV]m�>lC|�w��ji��ۡ��ӏ�mTjpi'�r���%��y@5�y(�>��4ԼH�Z�VKw�*��Cק��/�s/(|ӵ�R8^*G��n��w?���J���m�v�ޮ��Wg������������_y8@��Ű�+o����g_D�N��Ֆc������
`$}��L�l��p-ϐ�w��(���Cl��<�2`ap��`#���req��J��u�פ��*Ls��zSjpH�%�K�vI�hi��8^��sxe̡�̓1y/^$"���#���ތf<��Rv(2c,�g�G��T��	��
�����eH�8��%�K?T<����g�q���I�>c/^��u��D}6��쬏>�4�Į���;`��A��Q�؀��2����7������7�ݺvU�'�v����z��A�m�l�
��썓�����ٳ;v�n+5�l���<5�9̚3�>uġ())q{gϙ��S�NC>��w�^�i�m�٦�W��[n�--��cD�C��=��j���XS�M��/��-@�VV^�aƘ1�Q\T��z�q4ަ�������_ŒӶʊ
|��o@v�\X[W�{�{ij�϶[m�Q�F�k�#�?��!F��s��j�s��-w�-ߖٖ�a�A���&�ѥKgjŇ����W^�������Ү���y3g΢߸��#G�WBA4�p��`�pL�\D����<��?r�b#[&����ޜ|���6\��+o7�MR�<�X���:�tG��i��4���'=��	��ܼ/��"|���j�u0�G�l�� ���B����Q{jX�CΆҰ�A��~~60�2�UC��yW�O}��RK{i:uu��бyujH��!W���Z����e�	�����B�����=3��������um�o�,�ZG�$,oTTTTTTTTTTT{�x>�h�1>$	��fKTW�E���Q�^ߙ������\Q��w܎�­��8��^E����t4N:�;X�a��@��*]�L��,:�%�/���xI�c�EX�p��AS$�v†�jJQ������кr7<@c�	��Vx� D+��h<5�x��מ�rYp�G�-���E,CoI�)_�<���vc���y/��"[����7�zp{�
����B�Ͷm�#�Q��fϝ�+��'���ȯ�v��Ḿ����t���]�:�'�Oej���
`v!v�M�Ѷ���L���^���]��_��k7�|��r���_�����(�����1�����<P�U��nQ�ߎ��F��"\�8�p��NAeee��q�M�c钥�1���e8뇧�Ѓ��?����O���;b؆��O�o�>���'��3ϾD�����޽T���C���V�v��ą}}�ٗq�_��я�*i0S����:,��4�<dv�i�v����8�g�g�n8�{��o�.
���{�d�rtUPs�G�O�ޮ����w��K�-S��`߽w�WC�š� ���(�翴aeyA��<����	�;������O7my��#x\��HOJk��
C�e�g�'+�,� ���Q	�Z�BMW���"�;����	�dЧC��c=��=��iߖ
����S�)����^	�T�'��@b�Mj����6�W�Z�`����qx}ԠP�ۮ�?��RO���r�n�#����il�!��cֆt;t\n�p�;��ՓDSS�z��-��(--E@4�/�+����
��+�p(>-_�½/..Z�/�*���N<���K�N��?��G�nX�h�24�J^v2��ǟV�h�������TUU���"|���@�9���&��@0�|�M�������fO��#Ox�?yB0���#�PZ�C��R����<D��UC�����T6����5p�I�r,�$E�@����-��D��"��"|�2�>Ln�g&
����}~�Q�:�w,2c�i�]h���UQ^��#�3����s��3����귿G���Ϋ�6S�=�����3s��ï~�Gz6�6�t4�u�I�>���K�o����<���;�<��3��57��2l��(���l\�d�կ�8���	un)E�˧)�.]F��Ɔ&\��k������퍞ݻ�����,kj��{N?��_W���k�ݽ��O�lӿ�w�V7�S�NW@q�ߠ�{��;����:Uc�A���
B��~.Z���U�h�a����#�W_�e˗+�y7�9�4W�mw���֑�:�����Jp(�I�~���rX�Y�@EΗ���?����'��w`��2)2y>��Ȅ�5K|8�{�z���}�P��6�>������Oʠd^��pWR��[��f������D��Z'Skם��0�c7M@�=�轂���~��f��嚊���]f��k�P�,4^�O�4Ԫ�v:�뚂�*�5e�����_�n��ii�����?.�c���л:T�1ˀR{B�)�!k�Z���}�W_vQ�:$n؎���������������^r������=w߹�#����zm]�:��L׹�Vcq�/D4�G�J|wh���c6śoM���n�Ep��}�(�׿�(B����տ��ǗZ�.��5گ����Xհ0��J�'	&�7��_$֐�:c��?�a�D��1^i��
�L����H�s1�
�™��:����d��F	P?�N�>���2���s���9K{s� �'������r�7��Ž�����%��A��e���=��6p��kbƚo�<2�Ph�_��f��X0�u���"�LG}f�x�H�z����I���1'�Aﵧ�)'Sp��{jy��g)|�։���N=�foni��'���?��'�=�_77���l�ʼ�G��v��?��l=��/\�'�r�Λ��}'�p4J��WR�D׮]p�uW�O
��q�}���W������\t�O3��j��O�����λ`��3�ƛ�ӎۭ��~�����I��S弣�n����6?��􋡣$�G-!��q�
�.
��4�i!����ֆ��f�`mljʶ~���C9�}�Q̜5����:�8`f͞�{�}�Z?`@?|�Ѓ�"�&J8�A�C�O� ����|�(��n�M����dOM��D�Kx���m���#?]��nl�6�3G�5�Y����L��ln�Yw�bS{;�tJ�U�aby^?K�)���RQQ�J���C�jv�]��e(
35�|k»:?�4H��SI함�4�J����0Q{5�t��5��	�2۵�dg���q[(��R���S�L�I�a��z\�'���z�L�u��.�.��8��iG�YC����zV�A�M��]Y;�{nGTTTTTTTTT�WSƜ���B!���������sV�74��5���Q_]���LAx3��$��e�ß.����8�S��(�X�����Q�{D���ΖAl^x)����!��V��N�y,0���JZ��fM��kõ����_G��5�:���
a'}���*|�[�Uf�@P��"�7�w�}ݾ=��f�Ɵ��X���W`�a6���bʑ��w������*�pax�n�k�!'-lDf�����E��MP*lg��dFQQ���u���Š5���!��z��_��?��B\z�h��YjeZ^SK�\�^={��z��~�*��?�!�'�GG|뛨�(��Ӧ�X��:<�U˿L��U˷EG3�_AXS��v׽R��D����ϛ:�޷шa����v
����)��(����5;
2�N�9��?W�ԓ�K��m��7�Jm���;Q[kŝ|���ܹ�Rr�T�����4rB�m�y�-�c$�G�nNB��v{$�o�:��YZoL��$BJ��#Z�8��!-��s��&mui�c�B?i�M����hj5}w]�D�^�`j�E�M�,���i�����O�A���s�WB��n��j԰RCF
��픋R{f�ʋ�P��2���-����Χr��T���]r%�S
	�rnI��>�W������1!\<�0y�tj/���С^5]�8Y���/q�&������𶜣��v�s8�mTTTTTTTTT�WU����HԖyԔ�my���
#+�Hi�GMM
�,]�����x�Jk�S��Z�l�r,^��W�(��ק�6+�X�'R�t��+MS��l٪�hniv�z�����[�nW�߷�E�w�j�Re�+؟�_���ܢ�ԯ�� �b����m+�r�Y��8s{������?��kτ�˗cɒe����k���t����[����\�ְ��N��ӡ�,_^�}�
K_sj���]�+D�r�����l�<tέ���v�^����_��o_ Yؤ�8G�l�R�@���yk��8X��K:Sdp,����&��,�Q+|�R�#�@g�Wx	�=�
�p2����\�2^��d"��`��q?-�·V����L�ަj�B�4�n�3���6+�iOv�瘪��RDQ0F�/�m��3i�/��`�i�ӁIP31��<�u�n��}�Ӡ�݃��/��W��g��sQ#�\��>j��o��W���FLz�}z�2xv�e�^�k��k�&/d�z�9��ƴ�ӳ̦�G��v�N;l���5(-�Ց��Ȝ���X��X}M�n3���w�;x�rV�y�Ֆ�ud��GS0U�Sk��w�~��f[%0n��Xi��o��~�L-H*+�^�����|Sz�����ǟƃ=Igm��(��n�*��\j���p��0� �t 3|y��0�=-؄�CU�
��T��\�:V?����d���Ѽ��)�yO�v \ d�4�����L(Z{#�FZHj�W9��c�QQZg!d�tNJ
#[聩��V�_�����z�$���W��7t���m9��>UhV}����,ݿ��A�ޛ����9���2ur�N}�y��+z��q��0\�����>tT���Nj~�a����
�~+�֕�cuuDEEEEEEEEE�����#Ý�k�t��M���7�_��'())q^G$km�0�]�|�]�8�}47��g���l��8���W�^(4<�|C=�$�=�"�̙��i�|���`�����K���/�>�<��Ȓ�AY�>�p2��a���'g���c7�ow�u?x�q׆��{�n���c&��!~�� ���?����`��A���xZ�֚GEe�2Pn��l�c�=wA�
������^!#������W��)4=�?��O`�����wVo闘;w>y4���X�`yv�T�
U{��}G|M�[H_�B����<�^y�
,\�� ]��*
����c)�Z5�1�ը6�~�ό�����:D ����݌��xK�E�2l��x$�����YSi`��K���MF}]�2�c@�>�r��qԑS�׎�?�����އ��wР��۵�֛�S�_i}��s~z!�*�i��7�y?;Ӧ}��/�#/]�9���݀�u���Ea���2y�%}e-�y�r�\�Ux���AZa��;��TuX��������w�l�Sᶙs=���B����,X �lhT_��˹Г˒�[�(�43&.�'|.�0T��C��q�m�n=�����Rr^�0�8�;��
<Z�W)�1|ɥo�k�p�ϣ#����6�&"{�ᗑ`F}��<��v��t�P�����[=�<E�)�����q�Эk�V8�c��>Yz��;R=�|��&O�̙���?�I�SsQO��v��}��F�WK�߷��z�x�������6	����M�h������R9�;�C���>]��؏���L���/M7��}��]�����g����c�^io��w��{�"Ǡ�Sg`�3/�>4����]�5+jU�_�Oz1�7�j �Ҷ[�g=��L��r��R$�\��ڦ���Sm�믞�\�3��L����90
���S7��%/��q�w�L3f2�R�Yd�m��d���=6S_�L>N���cP����ajy;��f�+ÏҴ;
��@���v$>�Wt�WG��EC/|�z�;ܮÕv�{o�{�m�C�5
Lu��y);���̎�չ!��x�GP�V
�mn��zuVU��
���QYkrLG��R�&O�N�X/�Oӎ�������������tԫ߽!�#|��9�]h���̝��]|9y�I{�6�M�1��o��<���͝7g�<\�G��~ǖ`j��X���6ܽ���?�
Ç
�}S�s���38�F��55X���Jm�г�h�A�єi�"0~��
`n���/���TpN�SN����S�]����
	�w��/�˯�����Ź?Buu�fu�Z�Օ
z�eڥ�!>P�@����_����#�Vz��(���+�Q������^�)��y^B&F�\gμ���^�m\x�9�ٳ'��ؤ�8�x��j�M����z��6�׫ �|���oW\�#6\m?�[Z	���ە]*k��p[��z�ɧq����eD�W���_���=y�2"�δ�3�@�2�sKs�*�*��G�n��MM�:eϛ9{.�"�	B�}!�o�IJ4�H��.��a�X�i���%>�a�UJ��6��@6���O	�rG�dЉ���Wd)O��KTCN��I���US_m.ߖ�)+�}5M@`�ۛ��Yisg��}�[�Ù���֪+�|LN��4ӾIl���X��,��ɲ�!"�V����2�ץ]� y����(,�2	p���lN�Fݨ/�̽l��C�)n())�\�T�}σj~~����.[�~��N;��K����郛��+�{�e���x��t�2�}y�������

NW>�Je�\��wٟz�sCJa�K�N8��o#�$��~�~�}�K4��O=CWa�|�w�n+�p���3h��ſ��*�~ڻ���g��@��y�ǟ�ZG�g!��;H�K/�;-�ҹ0�8JG�;���o)`��V[��w�:�i�z��65�^�]��?Ee���7��Ϸ4�������L�gZ�)�N�r��onUܳ�뛐}�_�$�=,d����\�\�Dm����3�CPz����|��/n�v�{��8�Eu�uB���C��˄j����kC�]	��u�1�*kM�Y�t���{s���eTTTTTTTTT�v��מ����ӫ�KK����~mT��Wa����;����k<����BU����׷v�e{�����+fϚ�?_~
�R�*-+AYY��8�(ءۦ_��k�-Կ�z��65����o��`�K�3�g���?9_��E`�fUE����]�E}��O>������xz���-��r��(��P��s��/�J��ѽ[W��x�O��#�<��?]I"���
�q���re��ڛ���'��[g��=�@7�>�1��{�o[
�3���[q�M�9/�Ғb
�7�?����9��g�u�u�\x��Ǯ7�*#ri	���Lx�]t<���6=�����ޟ�t��սU^�Y����)��yQx%�O`�]���k�F�183��}AMp�H�i^�L��eo�DݻBö�խ1^"��S��Ćuc`ʿG�������r�ʲ�5I�=Z��I#�Eb���D�ѓ0�Sy0�Xs�mfP,��ôJw��!����璝�Xr_gT��;�<�à�g�~��{2��	ƙC��6}~.[=8	�p^�IF���8�����ݞy=�^��|,V�k̦�7���~��8�����㯾�F,Z��Dz>�s���K/£�7^�u�!�L���U�A��:W�ʿS���lC؛�B:��P\���ѣGwdGB��jV�[�.n�9?:
ǭ1|5�)�l ���%�;{�<*��o��oM$H�ϯ������^x�5��G�A����!@�}����\�'�=�q���ݩ���O��_M1�s�a-�K�p�.���w"��~2�|^L�׆��Ϣ>�+�D�}�&pk>|-��4}[�N�Y?O�aX[�T��
=&M[��KF����.ցK�l�]dgTT��K�n��Q�B���N������������>k
��/>��{�1D���_����g��
��!
��.]�~�c��6�w���;�k�
�=��{ԡ(**����ۑuԷ�9g�NFy]ֹ��-���6���|��͇�z�W���u�h�0�W^��������=n��>����٘5k6
H���w��Wr�K���Տ���������G!a�̙�O=G&���'����8�('?�e�W��,^��a����M�ഓ�-�ԩ3p��A�
�	��[�����;w���P}��VZV�?��
^nG���q�}�)��#�>�#?����=��:L'O8�(�K�h6�x���Q�~k/3&������w�27�d�2������/��_(�e}Cfϙ������1��۱Bm-5>l0�t�0p@Տ���c�D��k&��3��g�]~����~��v�!(�Kh�2D��^���^	�eOY0\6���{Ґ�T2���T)3�b~��41^�9X�8(i.�1j0�r!�	�a\ ��,��Y�#�����ZW��n&�?_Zx�p�]���h)|O�)LEau���c��DH�k�P���6JP2	�dj�@޲�,����>(��E0��C�Z�J�஁iW��V�y��`�M�2)���Ȩ��K��ѽ{�핔�kտ��\y�����W�8�����C�_�֖V���;��FG2�ٳVמj��k�歷���7r�b��ރڳ�Q���E���S�ꕖֽ{75���ۧ�������YI���z���P����K�|��T@u�M�_�oO����e��ˮ���h��&�	TvT�O>�"x̚=3gϱ������`��E�j l��A�p��#��N�H�!E��߿}X��
�Pc�D=�T�u�߯�����`]/�Ͼf���P��}Eb�-�`Q�� �Web�u�:)'���
"�?���7/��x�)]g
���

��3+�I�^~p���e�`[�ɨ����:���ey�-�P�QQQQQQQQQQQQ��|�ŕ�+\���M�Gy:p?t�֍<��ѩ��T�L����xR����=u�=v'��&���s�~�\�n��k�6��Р�ns���Mi߮�vv�T�>_�zF�6.�ɧ�3�&�%B��9�W��}D�O��8���	^j�W������)ژi�MC��ڒP�����x[����'+xi<���~��Rs��'��u���
P?����7Xxi�s<UWWml-wkZ 1j�p��g��Gy(��mG7��M��+��>h=���t
x���������y������ƍ{���eL}�ׂ�.8?G��t��>]�3t���4QG+�e�w_Bc�g��h<��K��Y;1;z"�Hʄ\st�<�e"0�e�8i
�C�E���܎ֲIMAT���
�� 4��S��s�X[��V4FU�h� A���hT��%�3�H���Ä��K���5�2L�	�T#�L2�K��PZ��w��΄�%�щE�I��p�<w9 m����rCT�R}�i�v�rt�9�=9]�U�R[����n�~���\ng��֎�Z���Lz��J�v�}6��A�����s7v,�,�C�>���� ���Ba�M����#�J�t�������|ӕ�K/�{��V�c��-o����Egk��*�׮T����}=��Uss�z���쬀�N:���w�����i�4œ��ʞ�:w��1�9�~�t���p�*Z�H��%�R�f�O�ixd�go��t��]�B��yf���I��{bwH����Ӈk
�1]�R���{D�P����%{��2
��t��)\�K�_f!iTT��K̵�5***********곔�g��cL�U6iP��iO80���Хsge��a�[1g�<,]�����O=�[�%@f�]�q�C��=0w�|:|��Ͻ�*������Q.$�Y��7a�~۱�Dm��Nm+R�m�aS'���g!��s�b��n���E�$XC�A�k�}V��w�Pൌ�u�r�P{oh�J�r��l>Ҏ[R�5�M`������t��m�;��e%����[,�y�����)o���W|��ɏ���2��p^�mD��@�h��'���4y�t0��Il�4�vz��P��#���Q���	����A�La�/M����c��C��
�-��;�xyaa��G�`�k	8M�E���u{f8Cw}�U;f��)uK:O�ڶ���I]Yf���g@)������I�7���>�pW�BZ��#�e���oY�)����oζB�C���	3&9�#�w��Ϙ'\+�_f��Q����(�s}c~t�y��ht�օ��'���S��{r��ڥv�eG���G0}�lu����T�W��W_��6�t��_�2)�?�(���x475���n�g�0����ׯC>�+�����}�:�Q�^~�
�>vw�\s�IG���ϔ�����/Ӗ'�|�N��Q1^t�}o�y��2u:�YZ�f�hG`ّ(2����R���3u����ͷ�
������)y����_��}Η�1,�<��S+u�Ӏ%v�)eD����^�sN?�X�A9�59��dՁ�K����09�C�vX(�i3f኿���ZZ�q೐�'�Ϟ��ƛ� P��)hjiBiq)��C�6v�f���֡��՚�������[׮X��xI���f}XH��c�~����H���af�Y5��������m�Z�Ë�B��Y�[�LMK�.s[�[�5����7r���QW�`<r��]I�z�v��pȯ����T��6�+'=�5B�čn��6���ej�?Ƽ�AL��%�xSt˴M��ҝ�����;X�Ta�,T�n��i�p�A���<Q�܏�͇�!e-�d`�CX?V��[�H�nԭ��tvY�'�ws�D�Iލ�=��c��m�>��R9��]���h�j���V{���ڍ����slL֞�2�y������QQ뙾���6�c�r���@?��)��}z�.��Ekn�>�'Q��g�}��B>��+��Æl����,��荰��PT���L�Ï>���\�'�L/&�2m��s�U��}�"]�1�c��̼"i����C��䩘��=gE��H:���E��q�
����\�A.�(8�Ü���u$B�xZ�xh��E�������ev��� �{ɠ�\��ɬG&`=H��@&�Mx��n"p�t>��s]���k����j)̨�����������u)k�h'�v/���g�s��w+�K�J)
��
#���z��4k����p����
-��w>@YY�i�.���\[m& i�:�5���ּ�Z�c�+
֛wl<cߥ51z�8���W�ǭ�gp�1���ǟ����m���:UU+�jOl��Ƙ8�]e����;6Ͱ�Q`M
7&���S�`�F�x��A�6��_��*
ə�K���]kni��-�2��xe(���`�{�z]�<���:O9D(P�!��fa�19���i�C"�F�����>?�wvb��iE�{��ω��E*읥}D��^)m�LX����
鿡z��	)�����-�բx��-6��S�f�b?��Z��==�{�l{
��/s��<����hRNN;�?�x��.�(�Mm���ԩ�E�
{�M}I05��0�g�H%*��s$��Z[�EI�ԍ������5())AGl:z�+�[�n�m��Ǻ�MF����O���/��>�h*�`מ��s�=vU��+m�^���|ܥ��l��.��?�ʜ=w�����n:J��]W	�tU���ZG����4b�0�O����O9�v�������
&���et��
:joP�kV��/���#켓Y��Q���F���G�� e��u�ڬL[~p�	���0���B��9���p����#�9�M?�i��4ԡ��%K��s���/�$]��n�3@z����t���������m<˅���_��<����/x��ݟ��s�=/͎Ԇ�R7�rp	��(4�V:`�j·IJמ��BE��%�-�ޫ���A$p����_ߋ���
���cO�<�ѧ16�`y�9~������/9�(a�;�>�<�������hlj�c���’Q[W��+jܖdHk��4Oy�B���}�^j�y�@��ІR�\�/X�W^}Ý��Nۣk�.���m�[��]���;[jîm�T^�\[���ӆ�^{���Y蚕�ڹS'4-\D��L���r3��e����é�2r�M����ɜ	����K�Q��Xsx�C��Ÿ+��x��n�!��^�<�YI�fQc��M�c�F�FF�…k�������ھ�
�@M��G'W�m��͆ٙ���x)�����f�r����q,�D΅�e�F27��[�h���{RՙWg&�,��
��
.��]~!�M�C��zZ��b�<a��&�u{��Bl�fT���`�d�U�䑇d����t���ed��m��v�-:,r��
�k:��W.Iމ{�s��"(��Ֆc�,��2}��ð�Ҟ�#�o�a�:�Av��k�ve���ʖ!)��I1���c
�<��ñ�>��6./'�80;���Gqp��}ه| ���ՄN&���Ks��:��c,���"!(x��g��λ|\��N�ӆ�y�K�4�5��9���,�suJ�[S�i�	[�p0�{S"�9K�R���
'��G6���=��BE��*o���1�(�6y��4l�8�}����3�͆ؾ���S����STT��wږ��^~�zSر��e�5��ݻ;f|�@�'M�P����j;������|����ϗ)�P߀qϾ�E[����m�gu�ۧ7�g͢�^x�U,X�Dk{�cn��>���;�}II1��j,��d��_��pK�J�9�d�f��#�mƎ������7���^����{��g0y�4t��ݺu���՝�0t�
T�ѹ+j���cO��s�=���j|fc��� �K�7���)9�*�ˁzA�{�9-�KL�.,��/f�${z2����Bp�9
B��}nF�Ἳmٺ��m��Ъ���wa�\9�)����*�l��e,�lM�5^���[��!p��z\��U�0�Z���J9�sRq�y�5���W�A~0:7�<�V9'��y��j��H4u�͸z6{b
K:C0K�Y؍�_s���ɏ\T�Z���9)�*���L����+k�C����m�=vM��x��˔r͎k_�\�c���M.�*ߧ҇Q��E0����	xN��8�����hJ����WFfK|�&c����œ7o!jj�;�Su*+�]��6W&���p:P*�t�����QQ(̨������������&����?�x�I�p�ճ;6�D���F�OY��h4�@��:t�1�(Pچ��~^��J�����"~TЧL�>����w�]W�.�}�mƒ�_cS>�9��E �����^�s\~ŵd�X� �o~�'�t�wгgL|�=�r��A��=�@W�!�\_�1��6���ڹ�V�~QT�>��*_b���=�k�E[���q֏�ǩ�;�;U��p��90�sXi��Cߖ��t�+8ۃrD]�)�9���i��v@��ݱx�R��?]�"u�i�=ί��&�r�?PW�@c��;+��']�o�^z�
�e��^���f
�7m���-w���
�7�oWuu��d ���Re 8�6940x�d	����!�l���k�4�L�e��X�f�V#-�c۝5f��k���1� L�+R����=&������_��q�o����:����lg�&m?���Ι#����%�Gi!m��`��)�Ve�&��8kg�6o�7���a[�H�~i�4�D�*S���\6*�vfb:Ǥ%���\��!�BU�Uk<t��;v�������	B���� ꫦx��{�k�*�g�
g���;
��}nN�y*5В����`f�����.�;�`�����҄iO)*��Hr�����3��آ��PH�c�<�o�1����"��!����,�Df�CM�7��?�GEefTTTTTTTTTTT�Z��W��
&VUV����z�7��kobם�ß��koX���0�e��?�u���8�r-X�H�]����G�!��l�2",Q�����l<���]m�C��7�o�e�hk3���ڻ/�����<�B���ʛԪ	
Z���	|��syŵ�z��P�:���AAK�O����t�`̰�N��7�&���:�ȃ�7ޢ��hs�O.��Q�[��Bii)����(**�ר�#(��6���;8���a�s�mz5�4��������3O�o�gԫ�/Y�L��PU]Aa�jj�X{���r�.�l�{1q��S����ҭ�� wĈ
ո|�p�	6�d#t�T�Z�x湗��^��������){��U��Ci�}"=�#
vϓ�ρ�~�p�9��a�N���sDY��DJ��� �o.Tm(�Y-L����l�j��c��{�XX�A]�z(=�u מaA���©��dϑԑ���c4�L�XhЙ��c��d�-��ԁ�,��'�X%S6@��M�� �yA��������<�t���n��U�Z�5t�	�����֭ܥ��
�C��`A
h8i�
�"�p>����I��˻	���]��1�{G�8�`����koĂ%KК�ȫg���<�����oƆ��^�;���\9���g��4���Z �
++i����3�ŧ��������������"c0�ӻ7N;�xg�S�� W���w�����h?IUf#�h2y���?>�4�`U�]�?:�D��h����}�F��\���]`(1��v�y�v�j�EYE~��_(���5�(�H����͆��+q���o~-s����sNG��J�n���˟���b~LW�O\��]������me�k�R�ct�
�u�?8I���$U;NS`o�#M+0~����h�l�͖�k�]����i�WZ�]y���U��~���sZ��:զ$�W����Kl<j�;_��K~>Fho͠d}~yY�8�$��d���6��l0�=���	‘��>��rk~�;����Cp&I=���\��7`?���&J(�E�M8'%�+S�$�!�1&]�
c�p��*"lkb�e$�$����}���hJ�3s������O�L;f�H�䞴^���q����n�/�����d]^Hv�p,�p��^�)�M7F��n�1�5�0xv��"#{�,��+��,i!.�v]�/��]-�&��4��d��QQQQQ�Vu�U�p��	���痴ǻ����}Ri�T�<��U��)���0,��m�zm�\٩��-�5�Y���hjnQ��m���8��˖��ǟ7e��?��h�#�P.���=.���f;�jFE*z`FEEEEEEEEEEE�5��&�G���|2��T�+WTL�l���8夣�1%�̪i���:��z+�}uuJK͹:/��z����`֬�����6[m����5�F<����+���ܭ7�=���#
�ڳGw4k&�]v�W^}=�[Z��� ���Im�ܹ����I��=e��To�.�(����=�wkW��i��N5r8x�	
q�C�n���F���
�s$�@�5r���\����E��λx��0u�T[����;n�
������q�Uƒ?���O$�K=n��ݷ'����*:���ee&7�����	߱+ҁ�Ç�p���|���o��X�m�U�{���;O?�^y�-,\���Um�m���v[���ԝ��ޢ7^�u���qϼ�+j��o�/6U��Λ�þ�st?�+L��28�{�a��U�c�:񄣱�V��g^�,���}nU�k�
� ������ba<-�u����7�	QJo}nJ��R<���E�T�-׺�0�nɃ�b�@�h�Ô�-p�Q���NJ�i�aࢇ��E"�p �@GS^��?�I�8��d�@��cep�Y��z|��&��
�7�RxH��38G�4��y�����7S�	��(�Jt>�T6/�;ڄ�T����R�m|%�����A}��b�mJ��vn���eQQQQQ�^z1�.�K��m�Z�#d��K�G!����3���h���<�s��ى�	Lf�}*�?��L�E"q��3@Q�OG�x���P^������QH�S���s뫯���ڋ�A�3�t�v$?�X�J7�ڕ9�^n��fA��ȔqmN�J$d̐�h�{S0f��/�ub»���!�v4y��u>��[&��-�Gp0�Q��e��MZ���
�^�F��iׁE�d�&���)(Q�~����Y�$(����c��vu'�:�%�/Vq�'k{�v��eG�v4~��׾���G�A�V����r1�:WՏp;��Vv>!2 �
�c
�qu��0{y�((1&��2�$�4��p>�n-�0w?�)!�n��҂*�.�)#��(�yˡ�fF-��}������ �kĆW}���c��qm�Ơ���6\�p�c+w�{zOO�'�ƆPari%�3#Ă~H�|�v��BKw���^�=V{�j�H}�'�5J�l��"�k�����v?u�;��k�f��ڱ1�
�E�c��O�R|}��A�>?�T݈[�]��7��=**ꋤ��|�|�t��D��Ғ";/���%\.is����9��q!�E��-I��L[��Ics��.+ιy[���(5@�={�����V׆�u����]�+�dE-�U0}*�~�٠?2����1\���Ԛ�h
v�Lm�Z�75O�C�<6m�X�=O@3E��Ѧ[ ������S��������������{P����X���p{�x*R�Ǭɿ=�J�[ݹ�B�^�PRR�ǞxF��60L8���r���WW��i��\)Vs̪��5�cͯ�~���|�u��b�nOV�M�q�A^�6*&8���@�ЯP�T���Mm����jr�J����2B��E�q����„�ޓ���
w�����A�~KR4f�vp�!�f���z�m��X�yrJ�
�swY�)� �'�6��p\��;%o���;U�~�֨*P���W�m	A��`']s)-��q�Y{D��v�x�H�C{OMs!ʂ�f���
��_��Q�]�"��7R�ڍF��p����k0K���7Dii-Z����T��
zt���nߔ)����D�u��FowLMm->�x6����XU]���{Q��B566b����W��譎kjj��)&��})�B�=jlR�L�Nۺw�~}��+wE�
�
=w�|�D�c0x����v�Ȣ�gi�4�CG�_��A�U9��V��"�l�-�ņ���Y�<"�{�H�sF^=84��Q�KPV��s�]-c��p��\E�����ku��{t�.ۍ@��0�<u<�x���<�1g�l��;:⊏� �dX٠�iIQeE@�<ʖ'\�[�ΔRJ4��Tu��"zaFu�0�������������V��� x�?o���e��#�591�Q=j=T�6�$gH�2��6ֱ�!��3�>ah���З��L�+��f�1߯��!�dv� �yK
2�0�"���)�uƓ��%�O٘���&4�S9�º&:�h�H`R����m��g�ԛ8i��S3�fL�Ot�*>,�9�ڨ������58�>'�H��H2��`C#K��ay���PZ�e�iA��G�s��61�n3W��3v�)K-���}"c�ʹ2*j-H��?�o���ex�ޛх �������~G�����G��q��.�z������l������,]J�KKJq��D�p8o�{��P[n�NU�cםp�)ǢG�/1e�{p�1G⇧���g�r�vP��ϿU�a>���e+����;�p�/]M�-���{q��`��n����t�Q��c�A�3���|^*�^y�q���	]*��sC�r����Z�6�i��:��?�QZ�f���5
�C+�̩�[Z�ilU��G�63����y��Y0�Ae"R��5
��k���<���9T�#Q߽
��+ЯS)�.M(�,�R�lÌYs0f�M<�?��<>V�^���<�HiA�ͷ�h�k$/�&5ADžQ)̨���������������_�(ע�M��?���#*j}T�\�Je��'�h����	滑�~�vaH�q:0ސƒ/�!�Gޓ\:[����Ah"L>�ԺI
Gф�&����2���s|���-J�ސ�����O�n���+�fZӏ$1��b�����/H��r0e�l.1Xg.��^���W��d�v�����.�u�4�]S�)�=M��I#_�3T�ޟ�^]�R�ŗ��ŹC������"M���C7�7x�>+��+䫺����L���q������D/��ͭ-x��p���Ȗ*M��޷-Qokk�����Ͻ�k��yD�ܴ��"Ӈ�^y���.�#���io1
h��A�`�H�3�7�coO|���\�׋1t�`D}����&ʂifNu�( ���E�'9��������8��A���M=?$
"�{)5��zn(��α�����~��f����=�ڊ%�m�mȡ��%%E(S@��޾9�}klnU��Q����<�M�{y���M�%j"nQ`�5o�fUO[>���bt./Q}j�Vyh�<&�̞���6���s�"��Bz���t�jT�"��D�X1��R���3���X�M��^`FEEEEEEEEEEEE�V{�:w�ŋ��Su6�)6�x�2�p�˨��O�H�ږ+cc*D9�E�r�a9�AX�r��Ǿ���G`˸ZX��t S�Y�th��:p5
��}�Ģu`U�q0��,0L��$�����&����i_>���'��Xm���K&���<E�
	|��͏%��~��1��tMy��$�"̵izF��Gj{>�2{�ZO�Ԗ�䘁#�1��M��H�?ε)�3L��zqQzQJ�� I!jm��xi��w�5pGE}1$�}��O~��vܶ`�@EyY��~�I�W}��r	��ԡ��t�q�>8��#�weނ������bE-~��ߐg.����Y�xӝ�u�����<��G���>H�Ş=���3N�曏FSs�VP�߷ލ�K����	7^�U4���a[]C�lS�Q��R=hHٚoQ���~�;�!aqQ1�[ZТ_�"{%	$���;WWoK
? �q�X���a��L��҆VU��#�\�ro� 5K��<���B�(f�ڦ g��a
չ�Bէ��j~�-�b�J�L��vÄ�K�
�[�oi���sPS�i��h�&⁆�
���B��
�y��-ګR����%��?�5&磻��i�����PW߈��B�_֨�������������j�C�ed :`�~���D���.W�FT�6!-�ڶre������mB�ZO
�X�P�`odC�Z�M�N	�C�
�%�p'�-ۆ8��Σ��\��;� ��*��d����9��#Rz�B�KSXHh<-5��9�#�"g�hX�����Bʑ��~ƹ1G},��Y���B�	c�Z�(m�_�/g���jar9M�T�t��f|���5�e�H�����,ް!p-�X;�i�4u�f�t�Q0�lW"\ݸN$�,
izt��ݨ˖���o�}W��tc����>�,�y�}̘1�����J�2d��6(��<�`��s���U�|���X�_��{��?w�G�����B�?�����fn�Yg��ꝍ�ޞD�O��1�
����4�\�d9�PQV��A$KJQZRd�A��y�8���ڬ��9'��*iAN}��֠!���k�E@�� ��)mEm�Z�y���_3P��)[4T3K.�Cʫ�b�K mPu�\��j�Rcs.�m-yA��%��U�1l�h����;�5
�xE3��7Ѽت�\�t)-\���.z�~�Q�JuH����o��р4ߪ@���jW�R�f���)Ocb���k�%H-�PT��#*�P`FEEEEEEEEEEEE�F�gA� '^T��D�KЭ����uEr*ږ!�uF��D�Y�������Mj��V����N��Fc�_��M,�cf��NK:2h੆^EZ��S8��h�9�F�z���,�Ӟ2��ܖ�,t���}��m�!ݱ~���dʔ���Lm�Wm�v^��Vz�,�'ޗ�N�Pzz<}�>�~��ʱǦ4�ӄ�U�B5��PR ��"/v�L���x�<�"��ay���^��Z�n&|
�����R��^55��i�=wF�>�	`������_R��H��N9�X0��z�xk�LR�t�rQ�`2n��.�|��7[A�>�Beo1fS/7����K~w>��[��<M��o��k�x�
���@R{����keZZ[Q�ج���:�jچ&"s
����	i��iB���5 'SZ�O�!i����d��C*+�PQ�``s
jCUy	D���l���Wf��$Eck1ͩySվ&/u���ιY�&�EBiު��݊���r�x�5W��VC�Zu����}��U��>(�
'�ڨ��~��RAHZ����ak�3IQk��G�^nh5WmQ�6O��2�C
Du�0��������������@b5����CiP��u:/�����D�UYQ*фf�_푙gNgOMebu*��JL-�Ka@&��40*l�G�M��SP(V�0�s{T�
y���9�c�L.NmH�cT���
�3��'x`p�K�uÞ'��9OZ�E>8�{b��ӄ��v{j=XͱA�[i��2�^�L�l��=��Sڜ�ҍ�	Gˡb�)����������h�����ast�BO!M�[!ػԀe.]�Q�7�O��2��ٜs�>{557��ąj6�YQ��b���|ŵ����3�4l��o�f�=��St/劰�۩c�Q]U�ںz<5�s��5ۯooZ`Ҭ���)�����w�	�-��/��o���=yw��h͝7�}6lH��yj_�~ÍHuu��:J�2����WB�mmmhli!�L�b�*�W׈�
.�iAM}�<$E��-�s^�W.1Q
���ݬίV ��8��644�H5;lS�N꼬y�%hn���R���U�oy�4���-	���������|�*z��^�|jF��n�H�t��$�&�{뭷0|��1tC,klA�43a��jUO���}c�����]��_���<[��}���P�C�:���9�S��A��ijETT�"������������������@:_�L(��!nڋ��6)3by�^k�t�2��uVp��x[†&5.���I��p��~"`'oE�I��S2o۠
�9������C�S�L�K�1)؋���}6�]�;m�Z"<��qh�ե�x/���.���^�B��i���µ!
�P3�M��bb�����DSʖ�COp��t�����L^�p��BS��f�4�_��B��U�mrO���(
��ΛֶG
{/XM�\[dn�9%/X��ʹQT�Z���Lm�c57�B�+Tuu5��X�p^?��Km4�}��ل���x�>c6��T�
>67/#��5Q�������3U{�ಿ\��qVp��P��L~������ad�_��#z����H�&H|QN�P� O��&uO�*V��Ky��}Z[�g�97WT��t�q�f=�u�
3��ZЩLb~M3V4��[[�(.ў���f�
^�=����D�s���-����҂L=�4�����!o�֭���K�v�F}�	M
,��R����4ӳO*�0s���� ZT���)2E}S#�ձ��m��
4��ܘ:uS^���QA]��4s�^իk5Z�z~jDya.�
)U�0����������������:��X C��;� XB��CM{(cw�rF�^;���RQ�ࠖ��%҂9xOD�E	��QZh(�WS����1D�c&�+4�K-�ƛQ�ld�fB�R��2��ތT�0���
!�ۖ��h�Rd� ��	��Qs��a/x�+��I|�����b�zL�w(������ӑ�B��9r^���=�8<������@��FM�r�{;�	��4M]�߄�5��9{�]nS[�p������>�xE8��#Q^V�7���#5}����w��R�qPf�����k����L�鍗_y���~���F��|rܳ�މ�`MԤ�M]m}I����Qj��>8���p�E�����㮻Ba:w��>�X^��۽{7�����6����\�_Q����{�-�f~�5,T�$j�8gyJO/�j��C��m��l|���k)�J
��T�P�\g�<o$(���-h�oC�,FEY�f�hT'�<���2Mm(sadٶ��M-m4�.�3]�o��a���hhmV��J�&$ͪ|e[��r�	X��!͓�f��T�(צ�N�m���(����lRp�X��"�|!�^~�4I���ͭyz�í�^`FEEEEEEEEEEEEEEEu mld�4����r&LC�V�-�K�#�w��F��
�4�
Ʒ�"������A-��6��؋�l���ƣ��A>F�)L�rB_*���e�g�t��|��"8	~���jd��ԇ���4 
�-�{���<���f�b�2e��)p��_��O*������@[�.�����ył�"y�r���>d����E��~��_�@��J��)���\RtŌ�,%QTT�o~�t����Ϭ`;m�
��{w��?�w���Ɓ�{�Y�z��IxBm?���4a�$����aCc�d���ƿ�.�{���;�6|؆�S��g�{��n�m���‡>���~��h[�Փ��ԋ�r�>)N$=/��mm~^c/z
���,)��PV�����e
��55�g	��2��DG(ə2u�WJM��ƖV��9�W�4�º6Ug����"]CK�ZP�Ia(��
S�I1[%�E�._��Srh��
�K磨������ϚU]�N|�z�DYY9Z�bj�n��7k�J��I=#�H�@{e�Ut����Q�,�EiQB�J�K�NA�8��)��
�fAţ����������������b"��4�J
k
�UA���d$L�(�=
�᮲�e��˚ѽh1*�K!Zh�x&|�p�W�
�&!x�p�`(BN��5��� �3�O�(��C��)�}���L�{�6�?�Ծ��PUh�
��ZJ}���2�W%y���ݔ^m�W}V�5�W��ܬ>7kc����PԫM��g*ǾR빒r�mH��8y�ܕ<�^z�+,���С��u�^�ڀ[�A&��6~�K��?'�}�����I�c<3s�e:߆���ω͑���`I *�s���y�U�s���ߴ���Ä�����
���}����^
�<��f��NnWNa
X��/W^k[+p��ƚ����Kޘ��_k�����ۚ��_���e���"z���a�^�m4Q_-�p��������Ԟ��6��ބ�|+���Vz/S���B�V������,ȑ�+V$[Q�^yu~*�=陖�k����ќ798SUn�&�[h1�5[�&�^/�)U��:wJ�өH��6���͜�a�}�#�o*�m�*,��)E
���>k6&�3	�>��-Ճ@�/�kAcs+}_J�	��_9��ZM��%�hE�E������.W�54����#���%����@�3***************�%֦�W�\������P{�(�e��0�p��(��)�k%�"�kC��V�7ԣ)߈֤m�$�饽�\�Yi`�6�Z	�Y׼���u@�Qg��i�e�I�'ݣp�hJ�69���[�m�����F˄�
�1T�����r�����"}W.��!��W>\��-�^��cbC��n����ӏ��Q&�2ǵ��J��g��H8�#Ƀ�K���_l�E�<t�����!o��GE}&��4z���Q[W�n��[n�

��/���f>�����N��hH����?Q�O=�<Fo<2Ӧ	��5��L�����K���%K��w��_�cƌ�'m{���q��������k����ஸ������R�G�&|䱧-h�s��1h@?D}��!dsCEa��(GK^�{��R/TR�VQ� ��C˖+�]��V44�QM~͍
�RUffuO��(�� `�y�(�5	AI�4���TS���"Р�CZZS��鐴y
��S0������9
 Uy��y��˼��CN��icvC+j��Ԧ���S٣?�pm���~��ѳ�E�a�jk��UK�T�]�U5xEc�Υ	���O:�l��sX�&L�Cc�	�[ѩ]�J�ܜj�M��(����ߟ��[`FEEEEEEEEEEEEEEEu�\Q�X��"�D��r�$OB
�J���T��������4*�f^m+/-V����Q�B�����M2�k�4�J�A��`r62�d�!H��ZI*#��k����g<=�	�9�ͭ	nV�r$R/��QhZ��Ӵ�rك�7��q�N�8��U��ICm�W��|!|�\S'��5�.�g��i�o��P���Œ5)1�Kl�)�Mz(i�����‘Q����k����!��p��)+D��Q����uߠ�)���x����Ux�/�=ĆxPJ*AA���ع�v���ڂ�N�XQ�g�}g�~R��I�}@/�
f�;G��O8���|�(h�@c����}��k��o+���h���w���GMm�=�"�V/�[`����~�Cą_=U���sY)��lllB�����	�*��7[/JiK��CjrZR�<�QT\��E��E�
L�P�Ԍ��
T���ԑV4�i�W��e
�j��r�VT��!�u8V���!��,4��*��+Ρ������ۥEi���M�MPڥ;��k4^ʪ�Ѽd	�j��e�|Z`T\\F�&���-[Z�oiT�\����^����꛰�QB�������M��G�չ&����7�Y�NU�XT�`��:�w*A��,4��"������������������@"�|05�J5T�^x:���:�S�2dj/�T��	�A��})�L��b2��*�
Ѩ޵���ME�U��BPn,Howm�y>k��0���+�1c�4�S
ӹ!Ɍ*���$�.8$�
�u�A�N#�ǐ���|t�a
��C�	�$c�D��$�(�C�&my��GJ�����k<8M�����y���c��rDb&|Y�\3�85�1Na�!�%@����P��U�1�>C	�` �w
��)(S�*�}����=ܩS'��w��j���~�r{��A�����r�����'ѧwO���:u:mY�|�jK�*L��;+�2r�P�����aqq��g��p�@*�H�N�v}��aCڵ�g?9����W`i�!�2��a��q���;��/��y�����ñ�>�S�?��jԗ[9�S$�lP�NYI1�SmllV�2G!^{U
T�&���+��U��Yif�yˁ&
ն��<�v�BC}#�umj��U߀R�6_��-�(-o#o�"��R��uL�rO5�/SӖf�44�D���ݞzUv�ziU�&��kٖ`�脆�0k�t��(�e��h��5��b:�z����DYu'$�����TQ����FUY	���sM�-Ucѵ<��$��u���^_>^P�ƙ�i���:粥�Q*c̨�R�u�+;o�"�v��<e}�ۧ'N:�����Duu����qұ��>�0~»x��q8��b]�K�J���Y�:��Sil���7����k�{S0f��/�&�;Y�ڨ����������g���2y]m9����ֆ�z�=,VD���,��R�J��)Q�=)L�J��J�t~4�M$��a�����5�sJ����--GsQ/�)���AXx��[��J�C�!f���3�Q��XJ�CǮ�?�·��A5-tV
�Ģ0���x4'ȄN
k���YoE�R,������(��0,P8�E������L@�����a�i�I�>�S7���>%8)|h]��6J¾["�]e����f0*=;�`��ݱ�+����Fܒ�N����/����x�	�:�%�کjS��g��Ѧ�^��E��p��{y���
ͭ�׭���%��(��@犮V��>G�\�R�S�{E�6<}I�"E�����E�@*�X���+ђ�cQ]�,�Q�S��6hP����i��Д�X!��E:��{ߟ��WZ�t�\��&E7��䃉�ڸ��kUm)NTCJ�PTY�o�-^x�q���DEU'ly�!��S_�Lso�*�[u9�,]����Д/5��5��!��:���c�z�*S�L]K�9v{��#������i���>���8���;|�`z͛��T\���?QY�
`���Z����*=��k8�_amk�ۓ�n݇ں|Z�v�xN�1Ԯ;n��J�����������������/�xP�5

@K�d�����7s,$��MPȵyg&:��"R�+aEc#�wK�w�22&�`��Xo£ZC�)h¢��4{��j
�tHF��2Ƚ{{�7_b�z�i�P�穟t�O�C+(�M�af��px��C�3U��{u���y��eJai��x���-��s�ԑ���g)�۟�&�F!pa=_A���mR6��g�jQ[�_i�7�k�
ү}��FǨr[�~/��6u\�ޞ7Ǵ�%�O��R�J�������l�}4�������u��#ެ�ի$ѿ�m:���
Mj�_���\����^�����-hV���綜��4G��T)R���	��[���	�MMhmiF[k���
V��Zդ��C��ɃQ�oV�����T�Ts��ɭ��9(����γ��3cZJ;����/nF���k��1�D�ۼp6Z˪�8`c�UV�4�LsqR����5s��_L^�-����K�b�2?[U��̘G]C�z>�W@��:��0���4-P�d�5��Ε��h��,S�jQQ�Z'!d����W]����:���>
��k��1v�&����6��ږ��Ç��)~����O#=F̆:������+0c��(--ņC��%vO�IGv����g=��yS����C�0���Sx��?��
6=T����ͪMe�8U�o�1d�4p�ۦ�dM�6���+�f--��m
���5���X�؇M��ñj?1�o�e���?�N;l�w�?_�W_ǖ[���o�+��d�s�w��RT�M�']�;|/��*FF��k׮��]QSCci�ZU[W׶U�9�~��KJ�ѿ_��_��5{=�\�:�e��oڔ�x�Q^Q���>W}���q����HXJ!��T�J5�2p&IO
u�9
�ȣ����%����=$��rM����p�6S����u1�:L����>sp․��m�eò`=?��X
34S����VE��d��z�ZpX$C�	瓨��y^��z�c賴�������
3$/�Ļ���j�h�ϡu����	�
6�W:oU�޶o&įٞwާf\i�@��O��tM3�����>k�p��
�iȚ�TT���B/d���
���D���*�ٽs)���Q�se7��IAGjU��:'GsK�z<kPpo��唷�#-,Y����]�u�٦%ѹ%uXX�l��oS౭�E�eܹ-u5X�f,�m@��
u^�n��DX����̻�e�b���Ѱ�E� �дp.jԿz
Di�N�w�佗�9߈��M(��I�G�s+տ)d���-~<
�����ͩNy��g��V�lڪ�9�`�UAM�����3P��j~���	����B��yݍ��������aWɋ�ѧ��U������/����P�,nV{7j@��0uy!�u����OZ�_��0y�t<����\U�y�]uy��~��4g�q1l��Z�[�V���w?���y:l����=Ӟ�n��쇸����q'���GEEEEEEEEE}դ�6=����۷��E}��3g.z��Mp���L���ke��9��E�+F)z�쁅��"�J�}�~}�H^[md��ҥ�s��8��o�[���ԩ�ʻ�������~'N:�iz��y�A�M�����f����tuN*]��!C0k�,]��,AQ���f1U
��vǝ8�����'([���^�p�B�J�+�ӿ?,Z������w&��ɓ�`���x�7�����:������s�}�;u���?o�	g��4�w�����F}|m]�*{��wLo���c�����LUml�>uj��MjL
�ƶK�.E��={�@�2�,]�\��V,QƚƆ&{�'7s�l2�8Ȃ�j߄w&������q�ӧ�{�}+_�i��D`W�}��tλj_.�a�f�b��E�ݻ'�N}��)�(d���G��-
&����\c��{�R�,0}P����R�ju
���*v
�5�?o�G�I��N�Uj�:Sn#}]�w�:��tݚ�����Y3��/����Q���X�p�6,���kK��-gA�����/r�S��rVi�4�I�Ɩ�f�WV���MQ΢��@�V��獔����yF/Z�L�EP�+!�'B�	]J)œ��`�9V8x��y`�1Ѝ�60�@B�p2�v�f�>�}�O��M^�؁ �I��x������!m^:�i��0ި�W{�ؓ���p;�,L)�&�e%~���P`	{
�+\S��*�Q*�(ҏ����eTTT�H�z�j���
�5(pW]Q�W�i�I�$��z���^ޙ��"/H���I��U(/(NJ���Y�e
h曱T/�J͜�*Hڤs\V��,UǛX�y.�"�D={�g�
����F
p���=?
+jP�&�|`ͣ�bT屨U��v��^Z����K�vT{�/���'c��afZ���
��
���܂�0�v1�g��+j�C/�J%կ�d�l���)C�j_�"�s�,��+��j��[%�տq��ZQ�799[���X\ߦ��C�qQQ�Z'SC�����.�|֡f�4��~��W�ݓ���\��^>�t(Vm(�adu;4Le]tɕT��.
�O�Du�6�:x����4x;f4��MH}~!(��au�7�q��t�
�Tm����U}��j۾�>���{��t<ASu��l�m`ȩ��6�{���e�m���u7ݎ��	n�ǥ�GEEE�^r�>�?��2��୷��[m��*�?Z��˺Sx�L�j���ͷ&`˱c�HWGEEEu�M6�-6�W��xs��X����c3���%|�Ѓ��s�\6tC�>@������O��g��+����؛o���^'5�M�ܹs	�͛�G�M,^��>�(`�ӳD��y�LA;���cO`��;����U��u�B��B��y
�i����W_��
'8e�Tt��e�e�2��2�8���7�O��3p���;
>��c�wq���e�c7CPm������Y1b(&�cZ�8h�jO
�gϞ���8M��e�høg�ū�����{n�׿	�m��}�:��#�c����=�P[[��F�&��^
��>�7m��6x��7�GA��^��s���'��>
�~�]�ֵ�#?L]�x��q��c7l��|�ŗ�MDK[6�dS�����l���1l���Q�CC�'�z
n��V��a���{���$/L
K��/�����=�o�=�}^��F��xޞ8	�w.n��n���o�5�{�l8x0�y�]rЁx���	�n��/}{���;�:��N8��~o�ϭj��,F���ݺvƽ�?��[�������N�+X=5�5�ҹ�V/�fy㡧C��� 	텫`IQi��r&�'4�l#کC���r�.T�l��3l�\VM.g%����kBx��O`��{頗0!�h��/��^dr�Z6h���p�#��t`���J.����&�o	�i:̙�u�/��MDj� aB�%����+5�F����Q��a�S��$�S�ö�ǵ������d�����0��<�"�+��'
�+
 ��S@�.�QQQQQ�T�e%У3�KW��<�d�r4���_�L�J�*(�ls[��T?߭
M(V /U�/Ur^]Z�ԓx"�T�Qy;oP�l�G=?��e�)F������(��|B�T��֖��s�\<��D-��A�.�P����cY�4VT���e
�655P>o��E󑴨흻�J��2׉��ڥKPܹZ;m
9�5���G!&t�:�D�]W����T}��M�.)V�ɡ���j��*����}u��m
����k�4�U�Y�Y�=z`F�׺	!��Z�V%}��9�*w�Q�h\]��n�	�h%���?_A���[�����)਽���7�,��G���?{�`GU�f^��R6���I$t�Q��𷀢`A��lX@�� �(�������ޓ�lv7[߾2�?߹�Λ�ل��r?ؼ���ܹsg�̽��w���a�8�[n�>�>��x�O���灎d%������%'
I��:[�^Ƅ&�
0��~����>�.�w\��1u2r�(��B
�/��մq�V"��;n�9������'p�i'K��H���}�;��)K���(����9x��F�F��::��:����=��
*X��'�r��uu�j��vDo.��U},,��Pkhh�/|�*z�����aBJ=��H�>Ƀu���4���&��>N�׬��DӸ1��D�ǁ�Br�J?��Ķu���ԣ{!���~���B^
6L~��B!�v�~A�!MSsU3���(�fŪU\�%&��0w}��7П�UH���8]�U��0PBB	��䡄�§�t"��-bO;e�$!:A���L6B��L�8��>�]t�?��rڨW�j�֭J��=�`�1�*H�M�7�	+.(�O��1��|�	L5�1m��Q��wr�~�����/F�u��ɓ�I&�ǂ�����$�^a��=�>�֬� J��\�����JY:�IX���'%��3w>((�)..u�u�|@	��$)��'f3�jjj��ܳ�^T�pZ�\a���K/���~{��L�6e
UV�˄�-[�PYY��P��ln�aR�q���'��,)-�hL
�����|���n�~}���A�嚱88�"N�t�+����F�q����`����HD����-�k����D�(!��>�H�>����*d���E]� �"Z�g�0�L^ˬ&�\�3
C��#�ٽ��0Dj�S>�N��BNI5k��~��5<��?��.UWF�0JECx�ҜU��IZs|_�9}M��O�Qe�X�Vn�0f3��:G��,(T�P�����c8a���1�)j�iE�O��M�5��f���u5���@`GB:T/��ԧA���yS6���f���m������H@�Mw���>j�'(�}�-�G���;.ߺ[;���P1���)�b>Q��jhIr?‘���� ��U��8xd��z��x�D)�M����&�ʊ�TV�χX���]�t�>�˯�����]�������h�u(��D�R���ڒ)��53���J�rR��*++h֔��~O+���KU�ʩ!���xu��l�z*�j4��*'�O�T�"�	J�+�X���!�2N2����FY�����<���J�7<�R<b�A,��U@)jHM���|�I�7�.Vj������#*F������s�1�2��PW��S)4s��1����!2ֱh��;���k�m�[n�K�?�;[:�ش���8�x��8H�P��}q���t٧����F��c�֑V��`	�8�ǵ��5�~�f:r��3Ͻ(�z�ߏR��yY�;�h����sF�=?�����I!���h[>7�Nmmm�,1h�,�AD.X��	�PH��@�:��w��-_.d1�]��*�I�>2���X����P�`���m0�z���**(�����C��zi>�Т�Jʱ��8�n-|e�Y�N�+�M��֬]���v�j�Xf>�8Q���   6m�(m�}��X��bYO�[��{�����T�P&�Ro��uW��ˬR|�r|oa�V`��c�#z?ug2m��
2[:�; �v���o
�	�0����XlFMX:Á�"a�d��ǽ��sϿ�D�@I��S�~}�=D�Y	��\�|���J��e��������v�?��_���z��\�׻���!!���;vR�	�T�����ᯅI�u�6�o;)��@UU�_^���3$�<�IZ��B�4'��ƌ%�&c���?fN�F�ӝ��O�!Q)�}s�t��m���[�u5���&uuuB�"�C��9�͢;�p'�e��^�ݽG�ǰzŽ�e˅PűMP�$',`kk��a|��e=+���=u�/��]LhF�l]���5�JH�O�іq 9!2u�G�-�22۪�@f�d�9D-�"�О�.d#1nk&в���ߪZ'��y�n����h�`_,�h/�����vGs�T����7ح@3�WV��U�K2�h2O�]�̐��&8��Ѩ��"O_��Qz�u���r2�q
Q�+��v��U�7ǠyI���5��W�ÊL&��5��i()��ѥIj�f�.���:����9���cru��\]��ѐ��U���n2W�5��S@ƺ�84��"��
�D�N��9�~����([i��;cdaaa��@�E��ܛے���e�0aW��,rA���b�����TV\H�_i�_{��v)&���}�t{�<{��3y�=�y̡~Lq��-�z&A�N�B����]��S��ԫ4.�(ݛL�_TAO>t?-{�qZ��}��wQ��%T�y-�x_)7A��U�FqZ_�@-|<�ܯ��RY���Q���{
`�5��+|S?��M�S�c)X�r�8QT�ǘ�~R�۪�1I��m������j�67�s@)ZF��QY�h�,�p���I��y�\�P�D�,��5�,Z
�u,,�J�
�r[���M��]�!��6� :��<T�E}zW��Y�#�?{�=�rx��ʝL�@��O���5�3�U��n�Տh�ˋ�c�	l���N߽Q�v�b��5)3���í���^�����9��7�|��0XZZ�A�&WJ����O;�^Y�|F`���T� �G�A/�4�F���{Or�������zII���`��Q���1��d�c�O���{�!9���G�7l�Q#G��&**,�e,\�*
:�6n�,��.֋�s��,��6r�p�좊�
&[f�ڵ�x�]�V����D�c�AU�8�M"�݂W^�ː!�$�e�v:�ܳ8�^#��JJ��_߾\���6���/ar��P`M�w&b䯪���a-7@��S�,[�BH�n����IN����8�3i�R�O?��e�VP�>�%�`�޽hӖ�B0@�ⶨ�H�MP~q3ZX���:e�V8��՟����P ���7����B���S���I��LC���ߑ����I�}ϻ���(�_�V�EP�箺B�s�>K���/}^��x�<�YΆ�C����%�w�1u�d	�ÿ�_��6z�%�a³��1_��ge�4�%�����g����"ץr�T�BN�o|�+Rg��D�N��˽�6�Z7~�z���5���.�VX�Κu��۴#lzU�9t�Y���dL��cOJ>H(1��}�K*-�>G���d�G�3F��q̌i�&�p_F`�#�daB��~��9[�8��mi�;T� zc y�����,sC&�9�8�r�Yx�U���7|�:Q�P�b�w��
?7���멧�����,���s%���N����|��kU�����l~����
��\c�
&x�}�|F /�OTȶ�#�)[ے��m���F*��0�/&�$��X�:|}c����9�(���s���P�vZ�(*E%�����.�qs�N�����
��#T��,
���[u�g!.}G磤��gHT�T�5���Zͺ*�cN�h?OW�5d�����C�M�SM�Csuy��ӌiNͨ��ku�)��P���m�w�����MB0ĢQ�{_�X붉zJei,}s�V_:92x�ó쥅��������>�K{����arQ٠�ׅhET&䷵4��1/P� ~(�����$�1��6&/۸<��E�3E�	2_,�a��������ᦨ��Ч8Kc+;hU}�v5�PSK�(2�
dl]WW���ޢ���@e�U�r%�+P���W7�DU��F�\���*y���S�����\''t�������ѧg5�zPCK�L�Lp���A� 4w3�ْLQ����^YH�M�Lt��{޷����~�da��������ؗ��D���r�'����t���O�\��@=�yٕ*�[��P�̮��׮۰O�=�T@`*�v�J΃EIiIP�Τ+���ZXXX	@.�o��5H�������W��	�g�{I���&��9T��?�̋��̈́�t��LEy)�6��@0������2d =��3\�^�~M��� ��{~�_g;�z��k���n��B��i؄E���L
��L�#^^���O�,��M���w�G
��l�x�r�O��k挩��/�s�#I��1�D��I�S:%Q��m;x��J�pȐ�R��V�ج�a/-`R�x��q�0~
4�:�P>��sT��!�1�'S(�n؄sP��۩�l���8��Qu�4�	���,b������=V�|����%�i��r�O�$��טF��ϴ^t$�	��|~֮]C)ɯ֑TjL�0�� ���TVH��+VIn8�A�߸���q㚅bV�h=ai�?L�B�;�-I�S)پ7�����F8�߻w�XT����5k�q��F~4�ǎI��P�2i���Iq���gz%E%�\������{�[�j��%B-�@��;�l���W���s0`���s�T7���MR.~�Y�2���vĐ�m�i/�G��?�X!D��^��A�@>V _HZ�<���#��mE�B
�rx�$��p���(�}#�����R��xk����~�3�2��}�,ڼe��t �uo,B.�/~�X~�P��}����"!2Ց@��^��x����K~Ĉ��.O��]�_����w�����aE)�mѨ��ɽWۆ��w.��Y��T�} �߮�A��nf2U"^����v����{
t^�T^����j@�O��k��;�<o�����$O$����>�;�)�Y?+�!�O���Ē硫�iOv(��IO�:u��i8+7��h,E)�Д�)i�U�r����H�&5YHz}U�!��
]҄-�䙎�HuL�K
�R� a�/V�
�%U�L�mԹ=u.Lc+���9��͒2�U�&�?�L(*�[O�Tur�./���Y�;:G���׈Q�Xi��
Sԟ��	duLQ��uC��{�HPe�����wh/��u��4��̗z��j�\��Ю�
�hoke"0Cn4!��)~>Ṏ�7)��w<:Z9ޔ�14�󠿏�{#��Q<�<�2g�R��a���cpχ�2��?��u�+��c����R�Qa[
��x����:x�I�S�����ReeDž꩚���멼���=hㆵ���{���]ۚ%�(��є�R��H���a67e׭���[�/�F-<��ga�Ĺ_YHg�3���B�(-��{i����Z��4�}��\�*c���B*�E�ge�"W9n��g\GkR�DM�����a!0/��Œ��dg�T(AX��� �2�^ǐ���ϭ�K�Ғ�`9�aMNˮ��@�����Օ 6Q��t���}���W_��}����>�=�E��0l�n/��3G\@��~�x�2&t6�2^�o�O\�A����ަf:�I0�߸�G��<p�{���2�����s׿L+W�S!G�0|��Ѱa��_�^[p��i?��&U���<~�0�4�	F��O}�>p�eٿ����?�/]s��_�/^�)�޽���ߑ�?s����T�A�k��
!f��)w��E�#TW�'�v�\���}�;{���W��=���
�
2�����ѐ�ti������&v�jƹ��3N��}�jQ�*ri}��d��&�s�yg)���z�{?{Cs�=�r����g�"��Ï>��_��{����_��^��0h	(��<�$�ů~'��<b	̙3��J���3��[��q֯o?�߯��&!�ƍ��6XlaK����&�1M�W�4�o����2e��e��4�YQQ1�x�	�a���=���]Լ��f3C��xp��fU�m��O�{i�,em?z�(�k�>�\o�+W��
$�o6��-_Aø�eee�p��

�O8��9���aw�l�J!<����Æ��I�~!��D*�'Ν#�Z�i�T[[��ti��@`���{����q
�et��C�
��9�qAy����d�X9��|,C4jaq�A������NN�	={����Л��ݺ�� 81)�h+�w>�LV��tFXPs_
�S��b�|�n.g%�rY	\�)��A'�mc=E�g��Ȥ������S�K��S�!
u�H:c?�4U�OԘ�0k�������ӫzF�1>��z�z�Q��\�!(}m�?J��wg�T�F�:0A~nIGrd�/,5Ġi��쏉̀@%9�p˹F�����e��me����4�k�{*Xm��E�N
�m���Wy;��4G��\�9KXU�G9���Wo�yy�aaaaaqd�5�F{8�S�I��4�r�@�*
�W q�,���\��~�D�~@��m�p�g��q$����l�k��!;=O?繟��Hk{�8�ѷ<J{�m���k�TJ���HvP�	�+ΛA-��C����Q�&0i�n�n�Ťe�>}��ׇSӎmۤ��HmXNъJ.���n�B�u5����[IӧO�6&6��졎h�z��HMN��CG��D$ű�(�#�
�.�m��E]Z�D)�cwS_�zv����ISX'��8,&Ԉgq��.��sgOWJE&4
�g�M,�d�䗜=C�˛�;:ة��An�Қ����z}��#�a���]�{�zve
�2A�>�ȓB4^�U�7�&r�+������>���v '�܄Z�0�
�ܠ�19ڇ����B��B��G�`V�@ܨ�!/a5[QY��r/�N��s��<$���„:��?�y�(�@r��A�����7��;~)%����c�?+�gϚN���ǞxN�џ��4���q�F��7��Y,�`��d���T�.��/�{�	�Kd�+�y���9:`�� �]��S:m���L�t}�g��cgйg�&��u&[�|�Y�ԉ��{��h���������*J˗.��+	R
��f3U� <�������3E����^O;kՄ��|��t�
4�˴/��<��Ӌ/�"��|�o�%j�
|.~s����_��������^�����%J�&�5��|7�������Jy�5	�cJ��19l��6v����?'��`g��?�8�3��.�A�Bv���Չ��zQ�+p����/o�qc����`�>>�������b+��-//�)--��c���2(%G1!��[�O���&�W�*X�������L�i�˘0���[X�y0��L���{�[t��>�a�[<2�������0��{48�		>�q��� �H*�Q���̰F�5,Ȱ��PF/����L@ԡ�sT�����4E��k0 ����y���˖訜���F
��P.J�RT��"��ϭ�*�H��4?�����V5/�Q��F~@�չ�	I���͐���@����iz��x�^�>W-w�Z3D~z����A��Ԝ���_���b��@Ua�s�"��Th$Pn:q�K�A���1䴯	��󏒟G�ZXXXX~`2ԖpL�Db�R���N2)�U��TGJ���O�G ��R3�頒|�2p�grό?q"P��j��
�d�(?g���ji�PNc�9�b�Jڸ�A&�#�=ܼ��&�e��ԧ���J�hmM#��
h����L)))��{머��jj19������u�������6��t��B%�8���T��Q�ZOg���a�j��g���mm ��^UG#z��K�-�/�sYiI)��7R:��� Y]*й�&?�hg]�"l-,:�eF�l�^=4i��,+դ��!E!@s_����]�1Z�~�/���!HA�(����t����uV����(��\�떟\�����d��a�'��|�㟗�ڿQY����\-YXXX)���Kӟ�zmذY�1|u,�p��_�ȑC��:Ɲ�G�u��L<�|XR�s�)��߷��>�5�G�j�:!�"Q���.<�zt���?�~)o��t�g�"3���xs@�>��+6�*���1ӧп~�V�]/D&lA_�� ���w�L���v��7?��z�����7��-�s�:M�W�>����\D�����������瑱�}�.8�L���ϧf&��x͕����N�P�"���U&0Ϣ��ƍ[��	|����'�C~��^s|�W�w�s3j��K?�)�Y��n�R����������FT}�1������o�<�'��3�Z�z��H</���&N}�oH�w>:�6��2�����5��i��z���A�������X۩"nj�VUJ&�7�D��+�п�lS�|�/\�����T�jw寧��R���Y��&_���A��1��}��6
����z,~���:g�}�5Q���q�t���E[�l����
,�`����޽{Ŋ˺w���@f؇'��Ϸ�g����}nW�ӟ�<]�����S���
}*�z��E��Ô�P�JLK����oꂨY��8�	
F9�ψRJ\�zD)��О$/��um����"�\^�����]����}�5$��lh����y+�Ǭ��9���'�9�\���<�׎.C�����d�X��ˏ�{���+�& H��w�:
��P�L�0Q�kG��(#�m�Q(V���;�Ǔ��/_WF6u=�BwF���g��2Ӵ�&ouQ�·�_&S��Q��:� ε�����s��ze���P;�PNX
��_V��m��xhޫ[)5�{b3&�Gܸ�?�F�3� {�&�U�њJg�+�5O�,��֟im��<�A�%�XխU��P���=J�
5�¼:jhief&��T�K�Q���lH���-4o�rR��t��UUJ*�lj��RZ�z�guy~��NM{�(QXH�{T�Sbk��	��:x��=54%�w�&�ڨ-�Р~���P]s��;���֡�n����5�M����������"Q�&��S�e�s�-���:�l����ZXt�a#0p�3v���h�x��������ۦb�yO�#���@�c�r�0df3�@�#597��r�+���>:X�1���>��v�\��ỿ��-�*������Ñ?g�{�t�1#�ͨ���K��� �F���ց��ç3�y�L'&�Μ&�ǽ�Dp�����.�����%&
��|�ٗ���C����G$�JA���w�=fss��<���H't�~��p�����㎑@*��M-��h�\��P0S���Tr.Z��ؿ;k�{SS������*,;�m��l�j�v�� ȇ��� ����!Fs���zp�6��=���ˢ͡*59�O<a�د�Mx�b!�6Q�@\V�Kt��
��~p����ڑ�O��_�k��P�[x�S���t:�)��5$�:��R�fӚ�8��hjn�t�,,�Z�w����Ԁ[��
�>�ޞ� 9��6Ɵ!��d�m��́�?

e"fSc�'�z��@Æ
�m��U5,���v���_y�!7
�[�|��*��
�N~��?�5����L��&�����@fI��90翼@�-���=�y���ji��s䶕 >38&�%�8�=��`�A����XU�[�^�� tn��-�뮕���ژ��xm�
&���fYd��$�7�D".�{a��OGr:LB���w�.}���<�P��-8M��h��86���g�X�����O~�r}N�M=��C������9M#�K[��8���c�d&����y/���Ki���OӅ���53�ٝǨ-�/Lj��$����=\
�Mt�?�O~��r�n���9�1;�L��k�a�=�Nɹ�F��S훁j ����.�����G3��>D��%��o��lYϗ?0VY!��` C��D�sD&�kr���#�L�����mۓ��{|jH�DQ��6��dTֲ�^��q�B\z���d=�{YO&��t�In�i�2
�glW��АkA�MCJj�נw�I�H�7�K�����rU��1�#'����crHR�Mr���n��)�!j�;(U�ܔ
�T;�2�Pe���i4�9�W��rՅ��d��29DMês$������}�J߲"o"����[��׏��.��<��z����c�g>��P��yk~�xƚg���܅�1vi������l?�v��Ei�n�^���+��z2F�LN�3�gϞ���<{�w�օ���7�i��K�oQo5~B{��N��M�B�'W
�ܛ�h���(2XZ�u�v�6*??�p�Ydv�����V�'u�+5?�I~����y�//)�!)b&���dawz��RqA��A�i�'��&�).'���b%e�NB}����|g�j��v��Ǚ�^RA{�Ĭ�A��{����S����{µٗ�.��}_�F��۳��zT�"���xV�_�H���iK]���,�QEu7�#Nu{��y������!e�.����M!o巚LɘeP�85���j�����~-��a%0
�G\�b�t�`:��9Yz���9�n�7���T�#����g��篤���'@P�s>T��}��N����A���W��w�3ڼy�<t�ý/�Kr

��)'P/>�]��h޼W�\�b��r��'�"��'A�#3����AԌ����q��!!1�9�
�;߿��}~�X���i�������^=rG���A�:H�Op<�Oh�y��|H���{�?��vo�`��]���Ie���i�Ĥ,�7>��st���� eѫK6�Êx�葼l)M�4����!�x���9b_���:[�m�B/y�5	X����-[�K0m��5�5�kW��Lv�h���^"�O�ȵ��EL^Ϡ���B�4�=~��xV�Y+팼���v���]ˤPÆR��Y*�	�W\S8_���ԫwOz����
Z�1�� �t�J���UnX(UJ��m���u�����i��H��l���[�m�Æ	q�v���ݻ�|ޱ��v��-��=�X��s��I2�߸i�(�`�\UU!9D|PA;��x��;��A:Wr־��<!6@
<��y��8ߥ�G}B���9�8��"h����'ͥ?3Q��ϣǟzFfC�1���|���L`��W����΄����W��</�M~���_��^�-�Y�N��e�r�rOY�n=���;=���w�n�FZ�r�ܧ@�!-&� _/�������r챳�?�yD��2!x�mwpك��>�ai��0ً)��ԩ�����;���q��}�>����8L&!�Y����e�*�SN���{?��э
���oÆ�4u��`�֭;��w�EU�t�yg�<įgѳϽ�$nF�?LTzϻ/���^�3�q���:��a�÷��]��0!t?s�$��[/���z�y�i�-�OP�~�}r�jjk��^LϿ8O>�=��h�;o��r:��.�ٳg�/�$�$�I'̑g�M7�R�#��a��{�o�����_oc�u�֭ܽ�<A�{m�+&T1����Εg�wo������|�^��9y.�}������2:�酗T�`��k딓N��L��0�8&O�ҳq�^���Mg��.zy�+4n��6u
U�QSf9@�ICP:���r��2��鬲u�3Ϳ���!���ٚΚ~Y���	Ɂ�%EBF9�7�{������vm+{QjD�q4�ht�I:�jD
${X/bXGMh����R:�Vc�J��+��XÒ&�n�Z��.u=��'����������B�W�^��QT���TYn`�kY_"��j�Q�	˄�E���u���-0�U�GO�7-96]
(Q�A[�f�s�+hҀX� �n*�Bβ���a�ϣt�gc��}L��7�e�S�\�P�c"�ڸ�a��s߾}d,����~��e����;㔕��]������SG�G���E+�'�"��gyMm-m�r�N%#�|j�	~�;x�0a�8~6��)�'Rmm�\�F�U�ϳ�7ӱ���~M#=���r��8e*�ɗ.[N�����\/�qU���~J�\�T6ݻWі-[i��a2��nO��K�~�1��g�⥯ɱO�8Q�b�M�2}������58�)<6A�a?'7l����Rv����g��9���6�,���ܷ„^<[{���6n���?���߂���ITL*��6l�Hx��~�?���?�+�P��l�v,f���Æ��[�\�q��s�{80Q
}7�����;:���%��i����ÌX��|'9f��H�{�L�z�T
�f��ܵ�{�[E/>��J"\6/OT��t��XDrkª6���֤�=�SL�fh��A�l���Z<v5f�Ԗl���N�KJ�)� 7��x|�mg-��8�MaA�dn�~7,gK��w)0پqw?��L��R��2�{��(B�Z��*x,_]��I���^�%hW�^=����ؚ��R%����/������C�qD��T8B�}���H�;�p�o_����fW������������k��uj�@#����s�V`G{�羲�r�Y���U@�����h��%LΓ+p��'���ln�-L�W_A�3���B�!7|�'R̞{��g�`j�����x �+T��а7���:�2��_ٰ�};�5c�"�T[9���� 5A�E����r0��0[q��)!$w��Iͭ��/
��@&� -0@�US#v���,��tc�;����98=f�(&V�
C@w������h�bx�b�q3_��9��]꺒�h�����`?lӶ��A�������2#�!�
��K��PQ!�A=�ŒM�yf1��e�qŊU<x��>�U}��@��� ?k9�j���-�@,%��,G�;������'O���ׄ(��~E�c�@�ٳg�*Yo-�2�.>3��.d0�7��-@��y�)���'�������o��y�q:��ө7z���z�ɼ�[ɁC�WPy�0w�D���cO]�ɫm4�I����H�|_��4���'�O=+
L�@d�7�O>��/n���%,��;�LZ�7X@ƀ܄Z��C���@�����@� ��:�C率~�Kzy�B&�Nf�bk�������	�C=��K/���B9
��N;�$����˄�u��ѨQ#��.������@\:V�^CE�x�%���Sz�i�Piq���F���t@rb��
h��'�x=�̳�E>���=DdTԆY����^�M)ۃ�ԕ�'�{�q�<��H��H����A�E��s>0����8�̙M�0+*Q���&&��<�ݭG%}��k��5�𼳥�E�����R��_�g�+L�"HKཌྷ{�|��;�^؏� ���[%��>	�B�����	�>��J��r/���W�e�-Ǐ)�
X�h��|�ꉜ�����(cp�I��.!�A.9J�V�	!ˠ����Q�"'&rc���JwH�l;�5l�"~��4��59b-k�w@8F/G*EeH��V�S����$��
�5�tR)*�[3�/G���%��c�J�H!����6m)�K���#!��dD!9�6��S�&I��
C����)XElR�~��U��U-\-{T$���Q����B���r�K;���3l��)A����Z(�R�Rp��
6w�>Yc=�7P�cbS&���DŽ�����&Κ9C���x܏� �����5��sϿ(�zr%�E��N�x\QZV"�xw���<��C�x��&��3�C�D�8p@��P�1�o<�1�~�?+�*d\��k���fҰ�	���W:��s���C�<>���z�F�����k���g�I�y<��2Ȥ�#����6b�p���)2C_g"?;罼��'I��Q#��q;�b�e���K�稠HM���PX���DP�0��T��V�����%�7�x)H*+*y�W�Ǒ�e�W��S�mO}�g�L<¸V� tO⾎�[�dڣ^ݻS��i���=�^��!��l2��{y\Y�{�C�L��=������mc[(/t�<��1�k������Ӈ��W�J�����[vq_$%}z<�P�n�1Cz1��er1K#f���F�ⵛ�Y��c1U��m,��3|MÑ�0Lr���,��<gSL��6yb#��mg̝A���	p�Ƣ�f�$�!|!�=��+=�n�L�6��P�n�rc�m#G�Q����|L`���d�N�%0-,,,,�T��Z
3$^_��fcŪu�S�����2:��S�/�L�
�8�$���;Z����F�A���C��cF�1��
Tv23�;|���2�������ΝE_��ge��B3��C��c�?Ks��%J�m�vЫ��ѡ;G��\ �~��y��C;��>2D��f��.h9�v8�a����v�_�%�N�`}K_[&�A��c@"�Bx`�d�QWB�6��x+�?T�r�]�A��	�][�G���6~Wy9lW�����(�؍��U��@"B!	+K�˹NP>%dP�PΚ���/8;@�A��'"�J&�]u��۴W���9ȕL�T�u����
�x_�$-����x�ڀ�#ԧ~(��b�*�T��/�3���Z�m"��V԰���3���C	���Ͱ8�=z$���*9X�=����a��|�}�ژ�ń{m�n�ь�����k�O>���={��dr=�x��W�.�%L����>|Ѵ�{��@e���%���܋/ѿ���c�򪨷%�#�5��f2�����z!<�[�����:~�C�|�J���s<-~�5�@7��㿟�{�q���I��<L�=����W�2�ӽ�PE�z��;J�VC�9x�`ڸy3�f�Z��(91yF���c��-���d���ػ�=
M�<C�e=FGqP�ظU��
��r̽{��c}���i�4�>�=�q&�\<��8NLZ�`��~���OY�s7���6��Ǎ�j/_�}���t�}Am�?7�I^�qp�@`s��1�ʏ>�8�{�Y���fPR��Ï	�ڟ�!�p`��ǠD-^J��B�VTX� �6o���be	�:FHD])
ң	ȝ.4��	�d�s�J�(��x/���<�ZY��y�1A�
մ���u�[B@[�����Z)�u��(MCz�SE��$i{�'92#Z���8M�9!�ˡ�
���5I�II���K�"5='�8��o�D)=�&sֵ���Yc���Y�F�1*$�b\]QBjU'��̩'��F�$������r���T�ؗ�U����%���@��R���ڀ�9V�L.Q]�Ȥ�X�g����Q�ln;�\ͫ���"he�.�3�Ҵ��r�smaq�QYQN3��!�Vr_��/a�+&S!U�K����m�����z�c���}�k�����\�� ˘�,)-������6,��l�Xd!�> �XD9&�	�B��}LRv�E����1&J���O�A�M�#06³(JJ���,�w��!��	I8H��.E��l?�Ї���S2����B�aBf)��8��O8촷��3���1��0A^b{L���k�װ�:�+m���\�p_���|i9'����jj<�2�!v��_1&(9��𖣬���ߣOݷB)���K2iWT���	qjki�|�x���M��R�nc���ki��'�P<���Ib�/#i`�Z��~�����v��y'Or�-��&.?��E|
���{ѣO�Ϳ�n=��_������?�9�y	����F�t�L��1��FU��t:)��zs��TS�W���	6��^9I�3��K��䊪��y� )[%eD��>��i�����$���X	�
,,�a	L�7��[��߱.++hԇ}��`���~�� P�F0�	��z������3N;�
�0a,�5�V�ZK���vQ�
Џ~�iz^���ֵ�.�GX�-]�R��4���6tNC�1}
��󠫎်R�
�c���������{�Hf�^���s�v���l�~J��u H2
]! �7Fl��͈_TϦTrJb0n�3J�4�dTnG�B�����	�r�	y�P�[cC��F*8A��@�Ç
��q	��5
�;�c��T��jP��U4c��Z�P�����Fx� �+�8i�.�M4x� !maݛ�=e[B\7��׹�N>�F|�䠖�@�D�Ƞ�9�X�0~�XYG���_p�9L�/2g��}��*�w"@�!��N͞5K�,�x�\	��5J�N ��d̜G0*�cg͔ Հ�}%���V?&�LI�o�!xL�����4($�Ȥ��g�)y�ޞs����94�0�����s���
*���8M&|㺯+s��2s������~���1��g��$��L����7	{�_$m�?�G�ON�2��8�4��0v�������NI��_���.�9f��W4X~�բN��h	]u�'EY��w��)�
�����E�
�Z0��;0���~���O\��"�fΘ!���|�g?#���~�K׈�5����!y�{�-��0n<���t���K� xQe:B�~��s�����-��(E���zh{�&c@�!�:��)�s��w_(�E
���8#rA2�1��%��<�넹�I;��{#�%��^p�͚9���C\�Ϩޛ�Kۡ�>��K��A^̪?� �Ҭ��C��lF=�yY�#��4N|V(
�QVH�WE`!8���/�Y���J�H�΂��u9P�6���!K�J���k�%����SLdf�J�%cN�,Fu����>"�R"CS��
�D�"�s�DC�E�����ui(@'�fj�c�'�U�&�dN�hI�!�|��4��PMr���� '(�KM
�HS?�H!�S���z����=�O�ު?w|~�>ק`U�FsDt;���\��&}�m
[ZW��:�'��:��m���M����s�>3���u���.4xV�/џ�G�:��0�"���Ĺsu�Z���~l�8	v��q�g霘���*'�z��a�0��2u=�ܳ����2�>��`Y���y
��pn�D\��E��ӧ���:=�?BŒ�|6����}��s���LD
���,yyx0�_O:u�x�HE!�W�:��k��%�3��斤�+K"Bf&�>�s��/��J7�g�����44Q�Ƕ$�uHnL<�1�c�������>J����ĩ5�Q{]+?{�Լ��c]�T��ݻ�����������@
²��Yr�o�nyI�L`�Ga�o�Js���҂,��t)��ŔI%)RP��t�"�i0���l�s_������"����)&$`;0�Q��Oz��x����¢3,�iaaaa�&"_���u��|2�u^�o9�	L����q��'�-�K�^῅�q:������Mo�x�N;���������a�k;:�ݯї�r�\��n���`�{QaT�g��$Y��+/��_��۳�����d�ɓ��`p �߰)(J��s]�ߖY�O=�9Ͼ�Щ4r�0z������]��<���+�����cT^YF��}�-��I���c��_��w]�~d!P脖G�e #t�
�f�C9�4�̫
��>e�a�]�`)Tv�퍺Hٮ�����S'���oXMc��`=�3e����`m���g�mg��eN�ߙ6(�AH�\�n�:��PX��*���y�A�l�-�{ٔW^�\y������^ʲ�� �	'/9��Ľ�ce��3pO��'WO������,+��Ս��3N���PS�p�A��_
@Z���e�M@��j�L�09��B+#�0��W���:ԧo����8�ؙB0�u����g��oAA!�"Jѫ���n��g�l�M[��c��׌|��3�S*��H늊� �9`��N]�]Y�9�@�ػJ�G���/�R�����e�W�Έ5ZD�P<���C ޏB�	�3-vq@�tu#A_!����Vg'\̧��))
NENf�&YE�eS�E|�Ԗ�R>z�*+�xU_���S���ҍ;�N.�6(%x{(�S�*ڝ����RxR�J��0i	妣�o���Q��IRMLZ0�+76���&	A���jѡ�������Wjag@n�sS�1����V���B�(:��i�Q�'��A����Ry���h2�	
lnMNRc/�hzR�w��U��aZ�7rO�D��� ��Ð���3�r�Bx.{��W/���yi���鷿�uEb�p�8��V��G��@�Y���BT�Y*-��2*y�;�P��Ċ�!�P�	�)Nn�
�Y^sE]���BYv��K�˄Lfq��}��J(�P?wPԐN2I�M�
�L�R�]G01��I�dk;���$۩�e�$��0l�>@G��VL�C저����E4�j(����	OM�jkm�xD����Q "#L�F�q!V���0�
�p��z~&�Z%���f���dm:E����L�	:p6I$
(��N�a	L�7>}䃗�9g�&�
�a���� �?"]��O�5���D �[�}Q�����Q#蛺�	�s3$A&��T_!�⩧̥%K�KgrڴI4e�x�0n��s��t;aαb
��ۋ���L��S'K.��1�cVA�w�z�g%	;�/f طO���?���,�E��p�1%V��ΜF�Y��u
�1��|�yjni�!C��'G+V���Z�n����~&֛�E�	sfI��z��C�'Թ��՟������5b��H���|��T!��`ʾ+?�Qz���Ģ�B	��rלg���C��J�;���%��������P���JM�����b~ލ
&��n&��q�U��N�I��=�D%PoN7�@��u|WJ�@8B��	6	&���{T�	�!�UVďY�ur�iɑ�}��M�ea��O�E:��A�C���s�T���(�EY����U	�ӥA�"��
Զsc`e
R�ʇVS���Ԝqh�^&J;\�LrK!�r
N�"��9�0�5��x83�0��3�dhz�V#:�)�!�&Q`['�_h�����j�0Ljd�oF�/?�3S����kJ�����&T�JRK?��u�u�Qy�R�㚆2G�k]��EJ~�O��UK�P�M�7��ZH���g��=�r=� ��_�_����@��zeL�}���1��mbq�He����4&�d���K_�!w|�#�1���|�i���$j�$!���YJ�:���Cw��@����&*[�8쐼٩���3з!	'�l*Ȍ<7��qz�xJA�IQ�5R$�f�je�1�x!육0V$(h�t�I�>�|J$����y�q��a�V�0��u�ӄLz��FRli��M4\V:x�=
{�-�8>��Y!lj�ڨ��Tܝ`)���Y��/N�������ś���5���!y�Y�wYp
�iy�t�>ȹ����f��1��������#��_���5�m��L�04��s��}����6z��rb�ۀ�y�T��2 -�,c�ld/���]��9��Yv��PW�y&�ѩ�ß��+VS9wR���'EU
+ӗ�ԼG�nt�B
Z�OtѫK$p.ʤ޽��6m�B�Di�S6��y���rrphu1�ì��s��ܵ����_�^~m��ȭ�_�zݸi�&�s�
r�@q�ץQ���*��"Q��2�;�,\�]�
�����?ˌa����ϻ���A�Q�7I$|_1�݋��z��<����
�s�-�xd�?X�I�JG�W��p�9C��1"�]�U�KW��T��Ř�$)ׄ��s�;?d�/Aʸ�.�B*N���N��������6P=��^,W��ҸCgl�i� =O��!_$,�
u+�Rc�G[��T��J=�c�������x�ϟi(:G+-�9B��ӪK]�"#ɐ��}|SpP��.����Ш��}Cr:�*W~~~`�k��e���gRn}��
尌죊27h_�G��u
��U��M
q���y��;v��qN��`��&`l۹aw���D���l{{��ds�(Gm_�l�����q؟:�`�����۶�1Ug��c�?�՗�م�,Ҿ���8@�o�
6�-��C�n��<�3�,5{Iy>C9��kT�֑�U�-3�	�8*��E <���.����'�5�RQ�#6�q�������1�%+���^�[q- 
Iʕo�&��bO����\�,��]��\f5�~��vq��ⱥ-)y(���*�)h�L(
Q��R{k���v*f"6�����,\`O�+�s~;�!2#�J;C����g�� ���~B�dr?�q��sbZI͛d�������-xs��үo��ʵŝ��ÆҬY��B��z��H^��/x���O�w�І�[d�5�i4f�p:R�x�Rjf2_s�^Z�~=M�6��y�x�k<�/�cE>�f&�?�X�A�x�R��'�]�4q�8Z�n=
�A��M[IJ9�JK���,_�,���$���5k�sϡז-�-[�R�����e�nU��2MM�2����i��L��o��7r�����N����//��ݻ��+B�A}_xi>mۺMrP"00o�	vb�F&H��
���� �����۩_�>�l�
����ǏM�V���q L7s�븎-\ߒ��׵b��x�è��
<h�KWc^���\*pHD���U4��mZfeG+@P!H'�Hʨ<�QWnP9�����y\��p���o=�XO�P�~��_QI�}('7��s%?&ʀ*ӏ�:_�B6��J���zZe)t	�� ��(��dr3J���Qy����u��Е׎2q|�>U�Ԙ���=���$���wZd�ԙF�vl����S��S�GfX�'��������R�.u����`nڅ����$]���ͽ�	CTR�mu�	=��C' E�6X��!T7G]r^5��*�o�*�o�_n8�
Y���$�7k4�m��?��_`,���/����,\DEE��[��uF�Ik׮��@M�n�\����m�$���d��c&W,��%�$�L{��$o5�+��1�<�}�����vz��X�LZb��<�(�����$��OiY)M�0�^��2��ՉҊ�h��A�+����N:a��"�>�����!���E&���ݓV��#�	�|�� #a����҇?�~I;�I�(kĈa2��}���&99�{�Ez���c񉺂��4q��
�X��q�r3��7��r��w���W���c+�C?1���*��LxC��N��2^���j�y�W�1AlBՈg!�cF\���s�0���A�Zq�=��ܘ�D��	�6i$��;xl����q�_�q���E]�LFf2)��_MLjik�&���PY�3���M� 5��"Wf�HT��ua�1%v�Yɓ��M~*-O�,_�]T�*�e6R�C�* �����c��]��ݞ=�L���6����%��P�sV�3�,,:㿙�kaaaaaaA*x�f�:Q����>u����T;�P0�n/������w���;v�s/�,�%�q!��
��V5�h�ʯ�K��z����F�Ç��a���^�'�jeժ52h�8޻jje���~w�[e�]55�6۩~O=�3J��~z0`� !a��w�^=z$mݺ=���v�0#_��Ê���S'dj��}h��	�m��v'p��ԣ{x���7q���
�
��*4�<j�|62����)��ws���3gL�WxЍ���Z��:t�@*,(Ty�����(�_�W&0���ǟx���?�������>�5p�lx��f��,��������{L��ޝ�����%�]�O~��������
�>-�!��!�I?\� %��0X����F�[LA}��$ݷAPoq��`�#�v*탘T��zf2Fj�r�9�0�	����@]�3A(����>�u0uQ7�EEqU}%�"o��Z��K�}?��%*��4�7��LSi4+�Ui��QcL��T�9AFH����RSV�@!����*S߲�,�+=���S�����*�b��kud�N�1����$�VD��0)�n�苒�1���͎.�ф�����aר(;��.!e�!E]_rzʾ�`���õ�(�C���B���g�L�2Y��C�!JhB��D۪Uki��l�U��5ki�k˨ ^@K��&�������[��X����>��Y3uN��S�P���w{���2a��3Eюq�U�ݫW/jmk��f������T����1�l�J:v�1�i�V!#{WW�q���g��r/ܽ������c��aݝ;wѬc�KN•+WQKs+���iΜ�x̺Y\v����0Ʉ�>�L.��� �й�.�I��{1ڱ��H��	�d&��8+ͤj}}��(�y���W��ڪ�i�w��4k!=Ҿ��֒ő�4?כ�<�P3�'����2��!���w��D��'�`2rXK~f�ޞJe)̈́c{��g}Q/��硯�D)��&�z/�kd$�z�l&�3i�!�0q탈G��4� SSIJ�dD~L�����%�(��ʲ*+)�8VIQ��
xL@�ijmn�F�.8~�~�N�V[O�w졕jh��]�j�~��u[j��vZ��N�Wm�E+6��5[i�ʹl�vZ�a��ZKu�{)u�� ��.)�m�(;x���7Q��*�-�*X�������	�A���Xebc#�]�O\�!������]�f�*�߷�F��v��.�'��m�J���i�Lbv��]�{�|,).��ǀ�}��lU%��8f�V�F� ��ˊ��F�:�"ߕ�R��8J�a�&•����
"�@�`��QB"Vp]*�*�<%����ER/��U�R�J|�%��{ʱ��ۏ�6����˻��ˀ&Ց�`Cy9��iG���Dmo��Փ+�R	���I$�ڧO/Z�z��KiI��b0�~�!�����;
P$���<ja���P\��O�?x��{蔓N���
ԝ��N=�GhРA4z�p��<��s�к�s���՜�%�1a�׿�M�G���~��|_���~�%�?���=A�_�{�Zɿ�Q#FЀ}�g_�@
,���Cлw/�W�����k�s�9����I��!$>�K��E{8�1w�l4�j(@�󽧭�����dJf�#�򔩓��#��x�ARF��rM!��)�%��ב�RA���r�y+	*�^Ė��7���ȺB�e�~0��I���X��]�_Jrl��R2�4΁όR
Bq����`�yJk��u��ؼ�[�]�u�z���	Y*�jU6��Q��D�j[=�����"M~H�	�9~Q�t�Ǽ�jL'�X���t�v�P��(�T�fU���M�oR�A�:ڞ�%��S�9�N����D�~$AT�u��@])
S�{S�fBs�����:�S���`�91�h��"7]G+Tu݃�~�>jqh�9�x܂1\b@�a�����c���`�+�z�ֽ��/X(�2O?��t�x	�����0e�D,��ʘg������8�gϞ����3o�B.���0�bԨ��)��W�ɸ)An����$�א!E���}EE�L}����IG!W{{-_���8�x��O,^q����#��W-��
���|ы�L�-�|<�i,��q �m�5 ���.�K�6��iy^@5	bc��B�:Ҧ/�[@cF���_xQ���W�l��������V11<|�s�sq�I�a������D;��lڣ��.�_PD)�����|خ<�!��1����BӉ���~@"�2ɘR�]`���@��=J���'�x�N�2�2|�-���2i�t�x�<ۭ�?�sNM�jKe�y�q�����!��bq�c�ﳺ[�X�2��eiW]#�IN��-Lj�CY��xcÀ|ѾX�w"׉d�qy@�o{D�7���V�*�m�o	L�.`#G�5!a�'��W�E�4r�Pz�a����\NJ���
 �N<a�>˫��J2����R�u�yP�G+0����<���N�8�^#������3�Y=jT��>}���Q�t`2j �Dްq�؃%��t��3	�w!'���kj���m�l�����Á>(.��|���p���ρ�V:�]�r0nM�6�_W
�	k1N^xq>��{���������=��'M�>��~�}��ϣ�[�Ѵ�S��<���/��&l��b>�ҢEKDu��ϥ{��͛��䨹�үo�U��љg�&�r(*9���TPO\u�����w�{x��qg�
�Y�ݐ��Q�Q׹BX���%���ecZ�Jt}e=�܎�!�|��*�>W��ơ��*�Ky��"M@O[��1TfT��W�leIlP=ͭ���i`ݪ儁Z��)?���(�Z����U��2�\�n���JQS6N��#ԔQ�d�4d��S5�ʫ��y*��:V+jMU�iא�2�W9#=������i1eb�&}�8�4.�H\����}�M_������s�%�[G��kU��k���w�cQޯ��z�wHC�vjB�C�qc��w�{C�ϯ�����"��&�t���pB���&�N=�`[�7��8�`��h)���O�ugbs ����}�>͜1�r�&?�1\��4�׷o^�
�u��Գ�GP��ؗ���6j��%,B��駞,�2$�Mp��e���z��Sm2vLn�u�i��ѿ�/�����#er�0����	�ϊ�j2�3Ŭ&�dӰ���D��T"�i���:�ɔ�4yݳ2Y*"��1�c8��i��K3����I&G�M+il��C��Q�a�5�"�v��OW����ܧp���C�"
к�&��8��p�gqQD�&g��s����)��*;X����S�3"�k�#���:�-"j��"_%4\�@�ia��B�������������P�W$f�G��cEE
IZ�j����u
�@�<��S4�	E��@��@�_�Q��3��Em�Ll�)��A��m�Z?A��$=��c�]��Lݙy����z�-�!$��m޲��1�*I	����٦�[$��2�ׅE5�G� <��q	�|�:B9&�Q�䵰x;�%~���rO���bU�X�J�?Ge�ꊫ��'�2�D)�H���SZ��v��L�J�3F.N�ƶБ��5¿7c�j�}�^��1(DUnN��A��b
�����@T*SG�]ؗ��V�����šЈP�����hjO��c:�$)%��!
���~h�h>e��AM��O)+��[��6&�IM�F��'W���\��ֱN��j�*���=�}Mh��8TW+P}��<������#��	8��
�g�#K^Z�E�׵�yY�������m��&�&���:�/�@���U��:�9�qUUUuZ����})�sY�=�6�.=p�X@��IJY��Ux��y&5�U*H!'%��z�2oH�Q2q��sV+���nko�Tȱ���J�mI/4S����@	W̘2Q��>�}�������b�D�ҷ@��8�!�x}��C=�	Q���iBwҚPD}@��y��d���]�t5�*�+�R��}������@&D)�Ӂ�){��A�o��ܝʒ��"V�iaaaaq��y֣�;~D2�ub\:��=���9B�@��JK%�?p@?�;�X&wЇ?x)m߱S�`��~��A��K�s�䝬���s�9�^^�
���Է_:~�,�1;��e�?���r�X[O��e;���~��M�}���L0���|�r�yr�e�Ҹqc%/ռ�/�E�'vh��\����~������PfU�*��у�"��/~�(ٲu;}�H>&XS#���Al��A������O��=�3OS��-�^���+��QB:j�#�?-u�E�B��3�,�eV
R
ܴ#Lj�1]Mx����2A����"T1c(��ht5�'��X�:9����
�@��(*O�QR��U�����
ă�#�|MD��Dt.8!t�����f�4�hCS�Z3Eʅ��~�_�u�Y��7�5�@e��Vӧ�у���:�|
��_9~�:��JiE�OAnv�4	웶r)�M3�8g뛜^:'������2TU���s`W�gG���Wj9L�w��o{��G`�ܕ�GpTNL�I8<j�v)"��TĤ mA�{|k{��� 9��~�V���|:���
�I从
�R���VAɎ��:w�5Ў�]���P���<SA�~W��zB�L�g&!%狼lh�L8���q:���B6�1��>��{�XS��0���I��g!HZ�����Ϫ�[<0Wy�eU��g	L�}a	L��;v�\�P��9�,މ�i������&A.X#��{��Lw�� ������\N�%0-,,�A1����و�l،��Vs�*� lE���ʚ�d�ڊ
�n��)��Q��}ŮLE��)�6g�qZ a:�����&�i_[f���	A���u."7l�P�"�6X/ui���t��X���z�|���;-Piqt9���A4–-�s8)/4��թ
�!x(�9���pPj
'ͤf��D4D�y�Ӷ��0�JRݖU��J�G߁�H=��)h�LA	57�P	��1En��S�DUP����T��vs���gM�)%`V%���1J,�7�B$�Օ�Ų�!�\aߪˢԽ0C
�,mjvio:"AW��Q��
9塣�ب	�;���	C'���BṰ+m�:�{C�����s��Q�Q�n4m2cjQ+G]�/����v��f>8�!B�a"/�������&��R��ⴓ�,�\�b7_XTHw���4z�H!/�q�V�&A6o�*�&I�W� �$�RN�6��}-2q	�%�q�Qrj��U��H�șYTXD����Ǝ-��(ر���BQ�a��%��2ԥ��8a�8�qk[�L��~/۶�	X�,����>W�Z%��uu{$oxn�6޾HO#��cW��|i��4k�jim����Ο:u�����ı��D�@2�Ӫ|�QEEEdqtd���ߑ� FY}i�N��<��x�Qׇ84�ہ�]\�.��BP�N�.��	���z5���8�>:��R2�P=����w�w2���Ҫ��h��e��y�jŧ8�NU�!"1��s�+n�n<���l����'�f�Ԛ&!(��Z���IA`Hs��p�b��(HG�Z��̤�?$�OO��b���N�'��8YXt�%0-,,,,�`�h�k�^�C�o���{�{P�<v*l۶].��7�JKJ��p�����p��}����̃�B��cOS���}�×�j������X%[�Ю:s����s5٣��@Rز�82`T�g!v����z������ۧ�b��_7�:�Ϻ���x��p�5�r ( ���"]	�)�U�~Ip��M�RlB��Ef����XTޢL𴽨V\��ݽ��ک����bGG�����٨��j8`�&���������nNa��?G��:�>���rp�˚��ǁS_�jHV���=�H�f��S�[S���UK��n�ۑ���Q�MF�=�&�r�'ՄC���
���@��P��|Ub�xt�a�P�Q�����w)i����^����1*ː�n@�u��uV��G�Q�:D��W�ㄎ�ha���g�2�&��{����k�.Z�t
ԟZ�~�{��?p�{��l��/�B���$gnsK���n��t���ʕ��x2x�}�jj�,�<މ������	�NJ�=��&A1����R��q����Ŧ͛e�㩞_/Y*���;wJ��_s���Bz��)�r�7�I�]�������k�����e\����Si݆
L`�"d-�c�A�l�J�G�>��q�^�j
���i�䉴`�+���	?`8NL�6%ob��; ϛ����5�F�XD����	:Q�#,H��<'����3I1_&H�0�	�K?"d&�r<'`U�J�ܒ�}
��X�z2����F�J=�W�s��5[#�j�5��͙
&)	Y�1k|(�ިG1Y�)f �%Y��ey6�J��ޤ���?��4���B��i���!M�*���iD��Ѵf�.`	L�7�
��髿*�̋.8��z�U�O@��M������$�x�Ou�{�#	�}����v�����y�>����ߺ�t�Y�ёF�=��#9m��&YXXXXXX��Il޲T��D�(��l�ҩ��@�A��J�HGeBrY�o刵ZVrT�|��쪭��dҧX"��6���X�F���ɀtG��3T�+��"��(�9ڢU�E��ϧo��l�J���NG}��՚	**�Ց eV��l iDΫ��`-[U�P[�OM�\�r�I�>�3�B�BD�p
m@����W���CV't^���" E���*I?���lh?f�������%�2j�6���#�C<m0)�:�X�Y�5ؿ?ڲy��,+-�-[�Q�ݘT�d�MT�ȝ�I���߁�lhl�nL:B�9v�hZ�z��}���6#��-[��n^VTTHS�N�E��E~VO�=j�j垘���X~ٲ��h��&A%%��o�D�L����D�%��BaQ��P|n߾��%��T�g���ژ|��$�y'����,����w�z�Z*-)7��|\�EŒ�p�ĉ�x�R<h��Ew29�N+�6ٞ'�Z{�6
aj��Faܥ��y.�/e�RrC����kV86�� ��D��gA,ձ#y!��ŕŪ��)Q���o�xnd��2�&�Kju1�8��S
gL�1�ٻG%�{�,zi�J��7��TTO��]-��V@:觤�~L���_�Y<�2j��%�n5�I~��:%�;&/ȱG\�sA9<=!L	�%n��&YE)B��m���p�
�WS�\,�ţ�9g�/,�iaaaaqȁN4��Ղ�XFN��ɏ ��ȃ|�H-�|�% ړ)*(����L�����̢T*#�4��ٙ�r=�['$υL`�aJU�����"�[�"m��'�#R9d�}���*=���0������T. f}[[�e��d�ee%���΁XrE\iwtx�65K�(;\�����n�Nqqq��@�L�����9�(/�NwW8��t�I�����7
�C��i$����������%�G%�m3�_r ���z���(%�/�8�H�>�tA�i	�yb���"�":HZ�װ���r@�U
%O[ӊ=-�����E��p%�/}K�P�������v%�w��\RN��R�!�[�)��u���*N)�I^}�����!ٴ"%U�&W
a+<�&)����\�fG��~���c�(G���!�|'GV�z����uV5��sħ�A�Reٚˈ�;���^�`uB�IMS���9�k�r�լn_�
3�w��
���S&O�c�����^�uWRRB3�O�=��T����1���c�TPX�c�[�nJ�+W��
i���r-����0~��!��q-�%	D�	c��Ǚ��1�ګ�Z�=v��t�q�dn��u��m��q��5r���	rl��x��N�aM�2Y��r���駝,���4b�p��5�O�O�;A�
7!�,�ӧ���w챢҄=��]5ťi��4�b�UX���'(�N��9AZ��	(q=e9����Ӓ"1*�E���@��Q�x������������Kb�N���)^9�B��D,˄y�J��L�*��#%���NP6����y��i�|�<)�c��2yIY��3���u>�1&�S���.y;�0u��|YAT�l��{ԓ<�8f��
4
��W��[�c(�$(G9#�?��FiYYXt�%0-,,,,9`{�����G��{a>}���=3�"��j�Z��O~M�x����cG�5W}</7�����׷����X-�5�䀝�%�=�Na2��+��2���N��o�e���,/��~D-�N�_�p��@�]�G��2x ��?���>����{���;yE4~�(��.�	�F�:�}䲫dP���N�k>�	2�
�7o�*�����7�m��˖�����l����5�.����Qp�vw-��7��-���ˀ��ܳN�6� �Cp�{?J)&-Q��zӟ�v���Ryy�y�It�G���rX��?��u}b<��B|�E4~ܘ�$"`��_���yjlh�sW}��2���o��Uk����/�{�烏����_ӯ���O���dIL��	��"�8G`[ML#�W�Lb�LJ�)�
����9	nGc()+�	�l�U�錧��*�2ˁJ'�Q*��1Ƭ���n�@�5�n���\~���SO+)9@�
�$��PMt��l0~E~.���(x���@J�DA�BE`U[W�5q�أ��J��z^`��r�n6���6Q䀘�VQ��7�k@�x����fYhb�Rgj�f'Uf�zt͌JG�՛���*M��!��S}jZ5��FAj���4�*Ӑ�9��
�[�7�8�(+-�1�F��r����Ϡ���z��m7|Xn�>q�y������п_�>��/3&E�Ə�g�y��y��@0�’V^C���L�V��ƨq���3Z�.�9FS��nq�bа����稽�Yr;�8��x����LPr���"��P��1��g��t|����&��	�};痶4	1)�E^V\TH񈲬�I�	�p<�#�-r}��CՉ(�p�d��7�X���I!R�8׫%������k�bR�8,p�[=_lk�
}j�P.
q�ф�,�Vr�
b����lt�ʽ"��<����U��Y_)6�̌s?
��������~���K`ZXXXXr`�WKs+�A}����1�X���{����uߥ�[�!���,��}�kt�=�ச���+� �20���N&�/Y&y)0Sr�񳨩�Y�7���ξ��㏛I?����g_��.<G�/x�U��A��(6}����_��ڐ���oh��^]��~�����i����멱�����(\@[ �:���E�X���H 
(�c��t��W��%��G߿��;v��@��_��[wH��Q���V�YG?�v&a?��K����Qa����s�6�+t�������?��N5Q���v��>~5�k��{�>�L~���O>DŽ�|&o���s!!Ց�T_�����.զ
L�"w��W���d�=��k͙Qɾ����od�<�$����˴������xka�ΐ�	y��P�I�BR����{�g+7�2$�ر�A�փ�;�G*Gn.RPB�XT��[�u�3�+�E(2R��A��������"���v

)+#?VHm�+�vPR�L�vtd����������0h���~�s<mq��F%��̇*5��Q�*����R�QD�,U
?�[�h�^�&5U�4a�tE�u"+)���êM��ڹ�+;H��쯧���~'Ҳ���>�ɽ��u(�[KZZXXXi((,���)ڸj1�1Ӑ�� �W��WFԙQY/�gc��M�q5	��g�'y���CƲ\y�҇ )�`�S* ���?�x�L����N�7m��XjI($aO���"��HBX:�p�
ec/RS��z�RaL��T�*U%J���S�$�XH�j"�������3ϡ={��EgX��������/�r�:����?+�3��6j�0���n�㗿�Z�n���Ӣůѱ3����K�o�^bO���)�ٚ��×]%ʿ����w��7��$��I�ܗ�9a�,�����y�F����i'ϥ��$��ǷH�����~�ۛi����s/�׾�}jji���S�j�w��G?�L�B:��M����:KK_[IW�:�׽�w3�y-]�B�}���u-M?FT��_�&��?�
mܴ����O�i�ͥ'�z�n��7��9{�G�'����Oy���EL���_Ӏ�}����˘�ܾs'�����o�.�ڵ�x�Q9�����ߣ1�FП�z/��[�p�>-�����k_���9��\]�&�5���m[O���M;�h�<``>�g_�-�պ���G�F4`�5D�^D�{��O�L�yQu/����&��c�kI��M�PHDb�"1�&��*�);U!;}�,B
:I��R 0�a��AM:"�T�H��Q���)Q�q�,KKN+O�BB
�'�Ʋ�
e;��&��t��,NPK*Mmi��ъ`&��&�$�⎮�O��(U���W��@�)�t�\�~V�X�%����ui֦@���HQN:��t���rR#�#47	,��WC���������T��t�b�R3�_NFIN���My�������O���7�e0).�D��������F���FM�MG:��Ko[X������M�����9�p�Z���}���P����<��{7�{����]��,��:&7�6��[��[��j_�ľ����B:���G���,��h�	��/��ƌ�~����qOC�ls�yg2y9H��=�X�:e=��<Z�j-����
�o���U��u�������+/�u�6�u
rEN�:��x�d�'r'��i�W_ϖk
)_
`�z�%��.8��_�v�&!��3O�_;��K�_����4��Ǧ����㏟I��~z��%�n-����3*x��-[��CxV�����}�h�3Ds��6gN{���.PGҭ�B�n��D�G(q�,�i�*�LTZFT�?���DgUtG���?%����(EJ����C�����@�A	�M��G�J�$�f��7�^�L�+��@��[���hĉH��&�/��!:�2�S6mQ�=/*��ܡ�(�;*f<Nm�%x�B�td�)�in�(w8�3��n�B�V��\*�}M!A>�*C�C(���k�zߋ���Ğ��
e���x��ա��(%��2�t��(]C&�(
i|M!Ŧާqq�SVd�!J��l.�!*����a']� �eH��/5�Ґ:Ԭ��`�ks�p���e�	_���������8�p��<�S���h��a���O��	&�6R*��4/y����ϣOQKk+-^���w����w�w������ر�LTV�A�82d�@!0�d����?�;v�ք�C�$�c�sf�c��'����}��|�26[�CyY��1C������>�������'��g�3����P��n}}c���C���S:p@�� 0�9A����� X�e�LJ���j7_Jۙ��7���	J���V�dz1��DZ�@�MLp��i��v�v�F���������Ԓ�(�x��f)	K7�:r;�~Fl������4s����kZ�b�?Ţ^��GS#��#�ҁ���9��k9X���uPEe���Q"���O†?� A���#U��x��A����nU)*�y�WR�a
�RG:+ٯ������uto�&��1�p��*���"0��=MPU̥�B��w���#B�[]j�(�QiK�~B/�R�9�|���^*R5�B�!t(�z�o|?o?����tQd����a���w���OГܡξ�aC�:!��	�kaaaaaaaq���ov��
�Ϸ�����O���ɓ��������tX�ٳ����2jlj�_Z�f����O=Q�B~�T*M�~V��B4����M��3��Q7�=�|�4���o�(��-J��Æ�_��ݶmG��K��������S)�&ڴ��:��4�*!�ߎT��8޾����U��~'GHp��2�����r�'��k󉴨X%���_|�,,,,,,,#2�ڹ���S{*#��"���T��d�3�m^��s��T� }ߕ�Rm�g��Lb+Q��c���\��شJnI^/��Ec\
�� �rD��m
b*_&�ħ��a�\E���ѝ�9�@=�SaI���dR��4i;X��ɧ%GW�3[�ʈRSR�S�O�Z�P����Р"����Tז���jL������,��I<��:�	wI�-��'�i����҈Z0ϩ%�xt�	��(*�ږ�������8���kEu�N~�:���w�����
��������(�%0-,,,,�8],�׿�!��q��[o� IKK�����=����}��^x�eQ`ӧO���
�С�d������3����q9��%E~�r�6o��chnn����?���E��E�z\�t��:Q?��o����Ryy)�����?!�<@�~�f����}Z��Oe��Խ��j�ꨲ��>s�ǂ
kjj��m����m�>����*�q�)�	�X���Ft&/�L��z^nY����������Ess5�%%W$\8���n�H1Q%���7&�Pb�S�b�iKֶ�$IL�
�f���LXC���7�[��E!�i�U��bL�FLNL��̂@�K(�Ymq+V����q���PK�����cQD�"&U~ά����,d]�L�3��#D���~�ee� _%ʉ0!+����E���E�:^��!ϕ@��^���|^H����|�&6���|�3LGz��&uB�dH ꛶���K���~h_N./j�N��U�Qn/�j��t�c�K��.YXXXXXr�KD͓Y¤��O>K��{C�8�Y�mL�55�0ᓡ_����ޱ� �Lx�?L�=��t �V�X{���`�by�ԗ������#�O�@�뽴z�z��G?�U�
 _eYYR��j��e��o�H����+�@�m��G�������˖�����VZ�d���?���{�62!ګ�g�ڑ����Yf����lش�
***��O:^�/xe	�����EL�~�W�E���?+A�L���˺��ϣ\�?�K���r�����‚���ϼ@�=�l��������8�x�葻�D�W� GlR���~J2��v&�`���ш1B%���E��g<�Dd�_�\Q����/y4���~\���+
D|�I��Ґ[A��Q��זL1�QQaB�dbs+$�&��v~FE��Lc������RL�D�.�*Tljݰ�+&b�u�\����@�L�"2y;&J]X���8^��ז���B���p��d�}�WI��N��wF����D� ��9�Y���+,�}w|����P9�m
�:�\�{��|�eO��V�����9�Q�y.*�$X�����ś�nU4f�p�Ӹn�&���ߡo~��tΙ��+'}!�v�}�~�f:�Jp�2���Sߐ��ԩ)���dG����O���c�����ҧN�H=zt���u��ȶ��x\�=�8~��W��_�&�逸��7����ӛ�x��.&���tݷn����|�����M3�M��^=�^s�'i�
�u�N����g�^����g��L�y�	��K�^��j贳.�hT�;п�A�|}���>�>Z��
Z�r5}�;7Qx�{<��^�Y2d秹n߽���m�r�UU�(>�+W�y�}З���C۶��}Q��w��?YXXXXXXXNdRIZ�vmX��***i���4p�h�0PT� �b��]G�A�d�h�^�IC��
�1!1������>�R4�&%��3�^Ili3�%�V�A!���e��[r[z���}$��f8?���#b�t&�Dg!s��J���G���YI� ��i��2�J�JWG+}M��WW������P�����rpGc;��&��0J�_eE��e�2T��W�_�1mH䯤}2F�0B$���t'�K�=3����+B�	Y�
��wRi�F!�����@}�P��uE�(Z)$��1�6u�1*{0v�v�����ő���G�!�C�)�y�2da�QM`6��QKs��Փ,,,,,-0���n���r�ʦu^�����7ܜ�D�)d�nݪ$���>����	�G}��������O�m���h��Q��ƍ�o�Z��o����:*-)�y��a,�0������Yө��8�&�;�n��M�?���.]I���TQY!D"H>X��v�\�Hu�]�<�A���g����!	2����ӻ�n���w�]�Xw3��@Ӝ�g�e��zt�.k�wλ$����v�즁L�}��ЫK��j����L`c��	�I�i��y{��l���n�*��������7���Jۃ,F{N�8�>����H)SET.��&,��Ow�M۷�i��/~���:�ନ(Ӗ��@	�Uɾ#RFiI)�t�觷�F7l�m
�a�^@�����¨�&@u��|0��,,,,,,,5&�I�;��!����FZ��yzu�sԳW?�?|$�7����)�J��2�e���tFrS����> 
ifT�is�%�^$�Zu�WJE�ɩ����@��H$&��{*��빒g[)�<!���2������bu��vM�
Y)*J��S�t]Qy*RM�;K��Sě�Ca��*&R,ڲuյ7��;�i��ԣ���u��|�y.��O'�1�ƾ��Ϊ˼��p>�ܻ�c�X�^5JH?�o7���E����>v�X�:�}�>9'����̹��\^ΐ(�ҖGZ[��i��m-�=-������y�-^�������\t6��~k���p��?���4g�����'��=M�4���k�m�+��:}�ʏ�Y��H9,]��&�~D?y�,_�l^o>�1���y�����	}�:�m~�������A'�x��lg�����;��[����C��.��t���u���]�w��t>V���\w���坷;�x;��lg���c�ƭ�����H�[s!YXXX
�z�hw�V����N��MLd�SCK��E}����K}���re�+�d��Hġ�h��)��(�Rl`�iPEM1P�+�|ꉧE�ٳG73n�"%5CD�#�嶚:����yňLF�AUda<
�Z���wﳲ���!+�#���	���G���-k�o�4y�(���:���/�Ʌ�I� iłIAI-C�7�I���vS���o��6P��mTܾ�^ܙ�qSg�4�u�,��n�N��@�0]�]^��m�������Ѩ$s}[�GS-q�уo�g�B1$�D������߷_k�[��m��r��#�ἙW��2���b�gI�f��;��
���ӝ���|��w�#	��>J���*0%�;ã˿�&��G���pX� /�y�e!
@^p�'����gӡ��]�t��_�o�V��Y�I�K�ux#
�g_�O�%E��|jA��|��������s�9�寷�����V�^�Ϥ�d�޽zМ�g���9�A���\o�u�m�H}�8��1�#�������8�`�JZ�f5�<q.-X��
�K#��Ra"Fw5���ڵc=x�&#ԯ� =u*��ݟ%e¡0i��dk�q�U@		�Ԭ����R�u��t2B��t����"B`�����u-ފͫ��7W�W$e�ILGT��q�m��2���M��,���bM�+r��KXM�ғ�蒗Nq4)�Sr�B�z����UK
������,��������"Q���YK���(Z�6�~01���:�ɣ��0��&�t"N�^�4g�n��BF�z�VHF�<Q �t�����$2�L����<��ԝ�-Ͷ�)6b��y�ל������R����B6t�]���e7��wB,�u�IB
쬩���ּe���(y�Ç�?�c�����x{!���>LM-�yPQ^F߻�(������������AK��ژ��g$
�UIm�;h��-�4RYy���C�ƦF���B;6��ukWPaI)��۟��G����H�;_۪2u)c
KRd��-� �E�I_�a� �</G�Ař�(�V^
c٨VgB!�Ye�J�3JJ�E��z���)֦��ʟ)ۘT��T�A�eH�k���*KTR9<]��HM�D��ХSI~-�xc�(��J]j�>2/^@�!
3I�\ZT�L�R�	�H���~�H[��>N��S@Pn�)lN���x�WBKS����T�����*��
ӌ��wX����:������M]��s	n�u,miaaaa��B=OZ��"��;�:{mF#���PWG29wS��U�G4�����l�۽����6ДI�d�{�����_�q�q3�� '�tݍt�G.����Y�Q�-�m�_�Nֹ���SI1�Oӳ/�L�z�)Y~Í���[~r��"'�]��gx_��a����ښ}�ʏ�)<A�.Z������+������f�_���<�ݻW�1ӧQi�U�[XXXX��8U1��{�}>ڐ��\�.����"��Qi�*�J��Z��ôy�6&�
�������P"[G�w�PSs��eK_�i3��{>��7)d%���4�Q�C��+�!���I�RJ��P��\����ޚ�)M�6֥G.�\�P�IA�/$��Stq�(+#:��"S}��e&�A&Q���\y�u�P��x�<���-)*JN.��^���+R�׋"O���E���RzJ�Pn�%PY:���<D�O
��S�����
7���̡T��jڣԜv��uM�99efȞ��!c3+d��R�F�sY��^+Aa��(�mqA:;AM-����5���ݳȗ	��1
S_���:�c��������8�P���e���G�s	�/#�[OT���[5Q�6�=�D#'�v�O�L4f
/�!:�D�`n����;іuj�".g�|��8�pD� �y���w�(/���LJ�
�	23 �$\�d��Z!7���N�!/�ͷl����굄�DSy���7�\^Ħ����-��i�Vx���,�Xl��?��>�e�@#x���X$��a�,,,,,,�W��1ں��*w��ӗ�Q���q�X��m-zOF�>����?&�bq��U���K�S��R�W��Iڴ��ڙX�8���H\lUI�`c��ޮ	-Ez���X�:Cx)�Di�u�ݽ��

�w,F���6Br�Q&c�8�8��:f<E�e,�� ڠ����jLo������g�����Qv�$G��2�ڕ�G��.�X
rs*�O�������ʶ�@�ji('�)*�F��������CQ$�&A���f}QU:~V^�T;o��\���T���6�,*�Jn��IW�ڳ�2�Sy;I��Za�t���'Fu�};��5�o�ŗrL /���k(O�c�Z�IN~b'lw����5�����U`	L���LE,�GԣQ�D��mZC4����阓!3�9ѱ��"�h�������&��X�~%�Y�SO3lYK�XOG�(����?|�y��?�^L�����z�)!(
.���}rg������є�cE�y99'd!��[n�>X�CL>�힇��+?J��|�'�;�qֻN��W_G7��wy�aaaaaq8��罅������Z�wA�}��>�����I��|��W���%��b�uT�Gxzf}��щEy9��1���
(KS"A�"�%K�v�w	j�Q<����3���X��e}����g�V�T$���|J19�	���>3�z��0ٗU���l��A�y���{��"]�v3X��$���d�Y���(GT���PJB��ZR����yJ�	�W�7��|+�˞y��T���1�V�9@��x�
�>�a3E��e�4�M��o2 C���z��U���gDaA.G�BRVd�ga�j�}�kw(��X��4V��
�)�����Ѻ�(�FG+#}!��^�X�z~nda�i�����_��T:�γ@�TLSiB�������ml����P�]�}��W��z:T�S�p`�
s�KD�'�;&);x��CM�ٶ�hS%��B{�(+Z�#	����zV��\�ZJK��rђ���1%��0�	���C?)etΉ	�V����.^�e�ۧ��/:����|�m�,������������ő�m�%p4�-�p�@�t1$����+9	���U�{���x��ɿ����q	b*�+�%H�����i�Wl��;�J�cTTRL�_�A&'y�DA�mG�a��
�W��fRԁx�(e���DL���NVY�ƙ�tO�×2��lO݀��t�N1:�9'5��H9��\�Td/�c��(U8�
}�&(rs�M��ZF�\!j���v�c�	I�H�o:C	�Z#WW��8��8LdzT�tiW2Bو������߀���\L��L�wRm�>��:�)�Iǜ�R��5�����g��J�OS�$�4V�����%kaaaaq�b�z���e��R�M�h��m�u�r"㎮��:/>�^��8�#	������"&�@�����s�/wժ��=���&׬۔����`Wk�F/�W�"�@@����%`�cw�P�L��+���QX�:*d�POڊ��J����)KT�I�͐?j�5&���BH@�A7L�����	��io3%;�Lfƕ��QjF�(�x?�xB�PFx� @=ح���L|ʺP	�w��R�F��1��˲�!�ء�}��JR.��E���q�E�N)��TR�>5��	Ub<�h4E1�8�����)2*I�'�� �u�Ƣ���FE]�j�U�Ht�E��(1#j{G�(�'�ԭ��.ET��P�s�|�Rg��j�P�B��4�¨2=	+���Z{XSO�|�Fp����gZ�d�uEVj�3'ۤ@婬�mh�����"��
��i^�yz��:ȅ��caq���BX��~oɖNy1���<������_�{?d�!c�W�����������������CYi��ءi��m�$`V��+��7Jو'JC�g��UJM'�S�	�+V�������	C��e��B&�&�:!�`;**�* &V���\V�0Qv���1�2�*;W�%����l�ԂYM�
!�e�kD%����vV\'8�*5*V���$o&��Z�d�M�V��Ќ���
��M[��\c�
E)Dme�U���tb�hD����UJH�Igɣ�e�:AT���Om�IT݆�I�@M��Ye�����D��lh�P�kt$�ʉ�reb;�F?��I���ӯF����9m�X��o�KXXXXX�A,�l�,G>���_%L�Ai��΋���h�!V2�>��%�Y�Z��P�W�,߇}������J�iaaaaaaaaaaq��	
��	&�M��;��n��:R���?绫��.�x],���g;������
�	!٢1�
*Nĩ���8�v�Q~x�w��"�<!�H�KTN�J����JY��/��Ƃ�sŊV+��-m4r�G#ʒ5�"gT�)"B�h!���]�IL��*����&X�W��glWMHRuҤ��I��3)�+Ԗ�������ݵTQ�rA��ct��\'��4��h�;!�������	����3
J�r�ꂲ��ga���R��Fq�1T��~t�R2�믖+2"�ձ�u���DJ��W岌8�|��Luuy�iSǨ2����������φԴ�o��	�M�y0���g�
7�\�ʳ�u�,�����K�}��n��G��=оz�)�ˉ��%%%t��e��p����{�E��:���2`��e[��������������ՇOp��X������Х���y��IԳ//����@�qվAl��HmېO�31�U߷6�9�6��k�
+J�94��|Rq�&��"�Ri������Ƨ�AR^�р�X+���jk%�;(�ܑcϤ�v�t��ȡn�6_��Cx&W��܎�"ǘ�J�����Z�ۨ=�5f4�W������o�$@A�l���
1&�&#����'E�H�n�q�T��tV�dbO�%/IBZ��+�76��A�Lf�{��&/�R���)jKaT]�1�k�R���RArٰjE�/#��:�VP�<��T�.[����(%BŌ����KR�(n����U�b/h�S,W��#?&�\^�&sI�Z��о������O��Yjl���H�SA���̿�o�U֚��RV��{Y�z�RC�V�]ɾ����������8r0`�Oǝa����&���G4�	B��w1x�/q	5�����Ռ�}�b��II����Kb*K���K��($&��sW~L�q0Iz�M���|�.��UG.��t�>5784i��M4n:��Ds�"zm�ȉD���$�?f2Qyw��܅��C1&77��j.�?�<��x5Q��̱ӈ֯ ��.��-[�H���C��U&����#��Eo!z��v�p�>>���K�_�ѪE
���D���h���華���ܼ֡S/�fK�KC�F|E��S��]�����S.�{͡^UWM��m��j��$ٴZ��e�6hb�|C��e������
��5�ߥ)��R#f��\��(#U^D��"J�'֮�M�iSQMbRH}���ھd�RJ����w��� �<_ԈYf󣰮eQ�W�WB;u#�b�;sn��e:�P%Cؑ�c�%����PXӢ����9r@�(�&��L*:ZA��CW�L�� \�fF�T���Ĩ��)��(չ�o �T�-��T�-����Mڞ�)��w(��2,v4$s�L�mw+�6���2������M�N���N`��a
Ik$��S��ʟ��ś��B`�5��L@����L\��'����/y����ͶS&��r��C�}w�z����eX���U�a�Դ�/-,,,,,,,,,,�@���ۿ�PG��X�r�C��e_b2�&}�0�1Y�ϧTʡ��GL��fR�&
,�-��$:�\&@_V��(��;��M&=��s�&�صL�2y���K�$�����g�1B�|ZH�Tҡ���/��!��JŤ�ݫ}2֡T�C���~c�����D�_��e�n�����ti�c���U�ћ陘K;6;L�:��M���;~���L��6t�3߶�Ep����P�)BI�H�L@�yǤ�=��1�JG�L�DWk{���v3jC�o��ET��'7�3+y&A��*��)�ˣ�)���/C����Ng��,U^GO�ki�!RM!]#�:MA�zz;��t�f䧟�}î֣��%�t�F����t���;R4b�joj�ƆF!f}M���Yus+�;�s��N@lJ>N�G}CE���D5�.S[�2y��*��a&�8��K��f��[}N�r�HB�e��Q�A��l;��6'�r�U��E5��`'G������|#��|� -��������������E�K�5
NTV�$�{�y*Qq)��E�Ρ�*&4��]���(k�&12�&��s���"Z�<�iڸ[�4���-D�)k�T�h)��4��p��m[�Pk�C����"��@�Ѯ����;ԣ�G�FyԲW��d�+���r6B�5.�?&+݈*��l�6��i�8�Z�U0v�GE��>YXt���XƊ�/��ӄfXy(dU:�=Z���VWf=C<*"+�?�,�r 
c%d�2CX*�VM��z�L��<O�PQvz���3�C�Xt#J�)v�  y9,n
!rOLV�ʗi�4W�O�TG���~��B7f���k�r�Fx��j.��#K����=M)q����zwp;��l��!4~�D6t0����V#S��d,HLBg5���W����W�ñ��rޢ���k�ёSRX�dM�I'�rĮ2v�{���
ى�4�!�2tm���L�ܑ�bK[ZXXXXXX�8�-d-,,,,,,,,,,,މ@0��?��~EL<z7�9,��H�P�S}-��M���N&-;RJ�9l<ѸDO�S�2�0QYG�O���W�6LV._@t�ʒv�vb��K��}��rQ��\�^o>����<�}��&:��,�^�$dʡ	L:��S�j��9��r&!�
qh�(�º�N.w��y��f�����#t�IYz�U�#�|\�>�I�=�ݍ'<z�.��,mY�ŧ���2x�� ���Ei(֭ ��������Օ��dR�Qd�dz�ĕ����$$A!6��*����h��3�Q;J)Z	�hr�a�TMn����(9L�e3P!s��p��m6 }eA��GDM�QG�GѪ�<E��t&�oZ�i��
i�IG��%����&ST^�������EQ�&�G�S��j����J**(�Nў�:jh��t*#��^��V��(�3�Q�CX�z�<�B��68O1W�?���H_G�L
1�I���1*[s���6(W�W�KN�ΐ4��[j��[���iJ�ސ�j�%Jaz���������K`ZXXXXXXXXXXX��ItǏr�����D�U|����u=^������m��K���w�J�_�Zn_w�"���?�ޯ[�T[ߝS
�U!���f�s��&g��CGd��ANv�ȉ�>�	�B��ܜ��/#ˆ�(z�U�����'���vǝ�ۏ�E�VF��#��I�E:�"ET(,�":sy�����[S^�IJ7�U���$�!�D��9BNKUM&�LL���J�HT[�b�Z�r�&r^���"0�F��t��=�raF\QE�N$֬�ػ
�Y;��$�a�B�:�ĥ�JTI+��"��)#B�LD��<�*Ǒ@�N��-i�Zn�D4F}�~��Q��F��U#��֞T6�~��D�6h������tBīX��yB�Q��vb�����;j������1<|�xړ��ޤCi?w=�\���Sί�������SVAs�L'8��q?�ꄗ89KY2e����������K`ZXXXXXXXXXXX��0�j�:��N�:���̌�lh&c�>%��>9�G������~�|t6ML�>��[�r�~��R-w�f��� ߜ�Eg�BU�IY�J�I�����ŷn�������h$�D�N8O�\�B1�S�L^:!V�,NĨ%�b̤b���--mgBjL�;�f&���t��JG,jAl�25��0��~.�:��' ����"R�+y>oꪜ���Ё}*����.�չ�2\�J��L\Fq�A��� G}�������++h�A�r�*ڴy+mߺ�


%�e`�
���QKJeӉ�QS�E���S�O��ޠ�B��)�aY§n�P�մyT��P[0—���,��2*J2d���ږ���93���a^|s���J�7)����������������8ȷ��~>�/w�)��Ŕ�1_����A,wb�����\�nޖ������s5���!g��hsGY��m�V!jF��5e�K-�@$'��$�!�\W+BN�-�{�b�� *;�)�39)�=������J*�(3��	�1�Q����xLh��*���#����%�e���B�����x\G�_�n�I��
���Og�ٖ�iOs�U�{�K�&����"�(maډ���x|�q3j4�;��x�yڽc�V,:�}뼣bk�0
)�ȹ2��\n?�X����("���O}��SB��٣�
56�Slt�p�ݨ������ϻvr���$�*��2<U#x�]���jM�w>,�iaaaaaaaaaaaaaaa�%4��(�Q��((�GR��RY��@�ݫ��R���9�Q֫�����f����AW�>� �iiT'�jMD]Jf�?���x����d��e��U�B�J!M]�����DY�Fb�r�2�"�H��1/t�80�S��*�����VnJJ!�T�H�ڂ���F��&DnN2�i������%.��&y���0٨T�bK��ߙU��������Ⱦ�y%�Y&���L')���(�X��R�{�$�C�׮��y7e�)'�F�����ݪ�-��@�i 5�F�&/��u�&A�
�`��%1-,,,,,,�p���������������
&+�v�xg�7R��̊}�/���"V��BDŽX��,���	�4�ʺ5�2	��*U���s]�ɮ�2��L�֯�FnҨ�R�(�3�����h��$���@v
!�)�\(,
IUb6��][6R{K���e�j;��]��	�J��O��xT�D=&,]}<���#�L���5��k���q�RS�G{��D^O�S}���i
�􃜓R�7�Rn�B&0�J�/��}�PQ�@��=rU�Pc�
�5�N��e�}V���T��5Rs�jk��ǘ�c���(_��Y+_s��5yQ5y�uO�*��������x��*0-,,,,,,,,,,,�']j��i[ѪW��9�[�:4j�%�x�6]5��hb	<�����S)2I+(�Δ@D�L|i��UD_;�|)&��4v��6���a+�0@���K�H�TtD�"JL�z�\ՊN�N��T*��]F��3b���#�#Q�TG;-z�LlƩ��Qԫ�`*�^ME%B�YO����Q9<s�ՊT.>��hƘЄ*3���J��&�Ֆ�L�������F�4�T��\�]Cޚ¹�stY��"&/�{۩G�nTUYI������*�[���4��m�mAY��Ź�r"�^��-���SPRRE������:Dg��\[!�XQ����Wo���4]0u ����������K`ZXXXXXXXXXXX�OP󫾛���!��U�H&�&yG��u�&J,��I��CU��&�%0H4��Ww\E�J�����X��:��%v��9�,(I�E����
�1�JBX�"�%lG�f����,�>���!@�/3�I6�Q��YO�s �Ud����z�J���Zv��%;h��*(�F}���#�QqiE	���6�jLQ�gT#�P!��Q�/�A]i+����V+'�8��|����Xtu{�
V���Mr�����<��/�;�9�9J�^!r]!'��Je��ڎI�s|��U)ޢ}Q�(/kfҷ����mTQ^I��*^7�8j�n
�+�7U��9��щϛv7�Kw���}���������h�%0-,,,,,,,,,,,�g8TTB���ъ��G���|�����!(I�i"���DSc����r�fX���h��Q�I2X�:f]'�?�f4f��Qrmz[Ӵ"�"ȝ�DO���3��m5���A^M��Q]���z�2��D�@F65����iP��Tݭ���
�n�A[W��QAq%U�J�����nrܞ��xj�W��اؾ���~P�
��ܘ����x�ZɝGܺ�� 0���-����D"���}�����SdF�L`�#BGbʤӁ�+�ba�+$c����A�9B����ԖNQJ+RAT��6��e������=(MhEgH���S'X��Z��+�nq��̭kaaaaaaa�N�%0-,,,,,,,,,,,,,�+X�_k�&�@!e�/K��}�H����k�dS곫�H��{Y�9��3An��U� ]�AUJIl���NT}�Vخ�#��Մԛ �<_�}G)7}�S�^��N�hņm�x�:�9��S����T�Riq���Q��M����U��K�����=�.�JaW�
Qj��F֮!'V@
�;R?���,Q�U�L+3U�N��iՖF��"�(H\^�3bԬ�hB$��U�f_\�(SQ&U�	E~��s �53�t4�s&�Jщbɫ�e���H<F)\#��'�\�$��u�xa9���~裣�s�շ$i��6J��ۍ�������QK`ZXXXXXXXXXXXXXXX�Z5��`#�0��%�v;W(/I�f�ez��#�
���$��u�"R٣*�QY�R`�*�g�j����L6f��$b��R4z �<�ΏR���W�*�&�Lɻ��v�1$�!���tH�DQ1���S���*����WѪ
��(QHQ�qi£֦MT�s��1Z�|]��OH9J��.��**��:v�I��B�
��P`���)��{�U/��A�@!�Si�Ξ��%G��9�*� �c�ČF�P
��ĺ�d�R��6�f�V��+���U�ߤ�<�|tt$)�49�:4��� :�Z���	�}r_�Z.'Dbm��(�M�浰������8�����������������Eй5)�cr����Q�	i��|�NxsJ3��_č��� �t�E�d��sy/�rV�dH��Ǥ[�ҙ�Ρ鈢R��j���T� �<�TT�"|Y:�r��6�f?8�l���5��_�
��(^փ��
E����J+7׉z���?WY�BQ�[�׭�֍��@��!ә��$=%I
��y�H!�\nH��ڠC�I����:6��3g��qu��vIZRލ*{
�����7���	L�,�e��(ȏ
�v��U�ҋ�S�U6���7�$o"g"
܌&�I+C�f�:�_׷����Jݼ������������������������������R_:����F(J?���By,�|�|�ؑ�R$r/u)��Sۘ�~�l�ʤNf��Ћ1��E��42q���6�h�N��!G$�|�J���8K����z�s���30ȉ��@�9H��`%�W�wW޿��+}��w�����J�,S�DiI��$����`rΩ{z:w�Xw�=7ԭ�z=
rHP�=@�{�������	�����Z���--9e��|�hdN�Lie)]�2��y��o�PjiZDyYs�$��������c�܇��Y��ȫ!�i�g-�s�/��J]�%�����V*��@0�bhJ�J�?�!��x�L冖�6gsyt,U�.ϋtҺU���L�C.�ࢄ�aC�-�iV[��4Ȋ��d�
�|��%,Y�Yю�����Ɔ�Y
��\76ǔ��8h[�p�/^�x���˻[��/^�x��ŋ/^�x���K�(k:��Xd �dL+W�q��<�I8W�1���*��&��T��׮X�{	[
Y*gv�"`YM����If��jUŸ�V��S��(�W�RB��c�@��@[r
8�?K����)��ĵr�*�K�	�e�<��V�W��Pr�J74u�����s������.#H�Ȋ����b�鸑H�>� �)`#���0�yU�MY>��կ\��Uq3���\.G}@.z�	+���J��4�}�����j�&�W����&���T��J���}���>�(Q*��>�%o�(֧m ����V4Dy*N��^�x��ŋ���x��ŋ/^�x��ŋ/^�x�"�2�U�I�g�&�r1j���KW�L����ZCό���s�!��B��BE�;YA���"�`��ɧ���\AS��\�ҩU	N�&�
LJ+Li]X�.S����g
�*HPM��r� 6�Y�5˖��AV����)-3��2�L�
�t-�!�0C 5�	U��ɊR��u��y%�G�VǨ�PT�ݕ1@�5!����d�2�Ȕdd,I
++�3���*ڔQ���G5LTAN�~rL�c~�7�>���D�uޠ��]l�B��*�m���E%�|�՗T�N����%�z_�`�K��&5�dE�����e*橙q1SM/^�x��ŋ�w�x�^�x��� ��m��œ����\Yh��9�Ǜ�_`��ٝ���HK�ȅ�.���83s�=�1��i���J0�u��og�$�&̩���^�&��9NY���-X�:���ڑ�ꜼG��v'�H�_��]�g��#y<YF��i��ŋ/^�4
��S،v�)�Y�1m��ѩt�H�V>w2L�?���5�z�ր�SI+�A-f-�YDnU#�<�QB�R1Op2�M?e<L	���̊2k���D�tYr+��4���(�\V�?	e:��r�*a_&�C^�9i�Y,��׍�D/���P�D�3
J0(ݾ:�?�e=%�%�@ƅudU��u��f���{8.v2�'�ˌr��b��0	\J�6�Re5^z�d���Y�f'��0:t����X)3N5�����L���@?>���p��i;?"��[�^7��kd�J�N	s��n��U�bD���hH��CDf�
`�,^���3UN�A;
nYӇ��'��^�/^�x����{A<���ŋ/�Y8�+�v���mR�8ۋ�O*,��IML��>�h�9�ҁbd^
�s������
��6ʌ��e�i�M*N3S�#�\_�֙�ڕ�\�:��g�p��il�a3�Zr��đ��qn��8x7�k�m��,���B����!���������%�:q��NT��Ayz
�����T1z�8Z�K8��s�U*��NS�� ���M��҇?��.����l�'�xJ(���t�}�����)t6|�q˝�� �߳k�3e�+7#�Ҋ�����.Շ�]�͜i�`�2!�6�R���X�Q�e�e�a�f��2�0>�B;U�Z��e��SjS���Őĺ�e��BJ��1�a���	U�XL�>���T�c�p{��C��L�x���uW�����blվ��MH}�y��e�(�vf��1�V`�B��O|v}�)Gn�w�=b\���<V?S	Y#��?�~s� �7`F^*i���b�M�Z�gm�*����}o�2����ؖE�2#�ѕ1�z��ŋ/q��B(�9�����rT�!��@�g4L��B��B�<�V��|�Z��N=��o������"Q������X`y]�N���渀��5j�R�秌ØpS��UV��|�^R�F�jUƺ�y�,)����յR�[��s4Ge��N����duS힕:�V�t���A#�����*_�H�>��K�k�����ΐ��u�V�H*C�LF��5�Z8J�	=&֭������*�2o(X��W�F���*�b��"�����m9�V�U�3%��@S�!�Z�OA��Җ###�?9��
��q���5�G015�JUo�o��޷�/�!���;į_�x��ŋ/�
�Ӌ/^�\GQj���5Ze����?�^ô~@b�s����Εv'���7,�͜hXؒ�+���:ǝW
(a6�G �~�rB B9rjh�N�Ek� ʢ���/�����ȅ3h�_����i��"*BAQ��������C5l����B���$��l���Q��PE�ȶ>�p*�cd��	��)�0|����������2.ׅb�'q�`J�Y\�A��;q�oc�8�����?��	�Y�_�\	�'l^܏�k��;_G��$�n�(��KϿ�UkVc���82���`��C���/�cH�n,��`��n��
T�bI3�@Fz)��,
>�б@����ڒ@����
��7
72��!"��@�h�z�h&�률Yh��@A��zݱ���)�w\�R�#��֛)��r� ۹j��5�W�RJM\.SOj���b��9��=�26b��-SCdAj��V��UmD�@,�⪡�"��nOI��f�Y�TB�
 <�C��Z��^~X�?����.�N�K�
}��8���7騕�6�G�LD�N�v�
X%�&͆:+2ޯ���"匀���^�:�AZ�uO�& c����妴��6��'D��hB���K[GRZB�U�܀V�aL'c8
�(]��ec�ݭfr�(w��lX9�+X	��Z���u�fŭ�I+Q�L����ic`�X)��U�YANR��*�q&e�C�y���h2g�d�54*�(��FT^Rڢ���\�f�F>Nk���U��q��hGg�VLW�"��D߄�\5T�ث��X��Y,[�K������4��c!�ϖ�UZ3����7�����_��G&�ŋ/^�x��^Ӌ/^�\GQ�! +�P��b+bL���hk��M��4�-�8O�e�C�ͩq����'iJ�ȵ�J<].cdR�]C�5�o����O��w�cHn�����_��c��5����4p��A<����c�f���j�x�"*�aʒBej��?ҽXU�58�l���!,^+��<���[�+�ab�<&���=���YQ���W��4�_��6�?v�Va�C�"�4s�.���8te=��x�����`��~1���ފ?��_kER�?\��)K��q�?M�1�HR��ՉЁ���M�zg�@�c�|�F�S�(�D��"���{���נ&��e��gZ�g��L[אE�J�0c������:"���3���-9�i�Ň�NVi�7�,5L�y�GjJٷfฆ�`q�ekaɜ<�3��l�I@8���G�U
Sn�`��g"�W�o�@�3�4t�:�`����bn�(��G�7��,â�{�r��9�F��M7�_�v��q�w;��>>�$u��h�����Kd��q��U���$o�Io��j��t#�02�4�,
bݧ�`���x��T�g�����E�2�.m5
�bR�fez���7I1#e�2g��h�٨�d���Qh�PHPM̰�P�P������W0r��V�����*��\i�)�-�<��ZFUBmYi,Yi���]-Ø��"��<��;Vp�Umr��d�ɣc�f��Z�(+Ά��!f@._,�1.ML�Fh���͏�r�گW]�B�7�S�8��B^1
�|6�GA���´Xb*.��=�ѮF�<��7��`��~l��/^�x��ŋ�w�x��ŋ/^��h��V.0DnE���l�;�^j���#��k�DR"����m�f��"�$���t˵&�	SV~�]S��9~3�(Z�g�Kx�+��c;�G�m>��>����p~�R/|��8x�,�{��ذi
����YdsET+����J��c�hT&H�4��\>u7<�i���(t�"������u��n�u3X}
}KQ����U���1���>"?�<��;����,[�˖/Ax�8�#��J�+�n<����� &םo��X�F�"rk0g\Y�$4�����(pCKk����@�A����W̅����#w�f�X��\�K�@�TݺC�ƙr2P�0�X�T0ԍ1��T^e��ihjj�+u�m��\_¤��]H�Ԛ&��BAG��0��-��5Xԋx2�f`�\����Ґ�f�f���6*`��ƭp3[�Յ���_����#��|�>���q�F��)
z��w��1�)���{�y間���A�v_��}�y.�Y?Bo��0��$=�gM�.�כg��E0Ln����r��X��؉n�S�9kT(@)A��Z(�r��yv+H��
�!�3��3T�\��=�S�Ua�,�b3�*J�b��M>k�&}&�����2�\۰�>��]��HCN�.�r��� ���@WZ����e�z\ןb��{^]]6��(�fj#���BE�pfب�5�Y7I��a��_�Ŭ���[q�\��1�s|�^*���;E�f�R*���SYuj�#��J�A��5�9�-lͺʬ�d=�ה`5���&ט���
^�x��ŋ�w�x��ŋ/^��0���^�,F�b�y�'�s����И��BHg�r���ص�4�gu��Kθ��QZ *#ͲE^���~���o8?:��WFpa���������O��ƿ�mw߄\& �������{卸���X�.
	يUk���əK����y�ʌ��F�TĢ%}�i�Z�FY�Y��V��Zy�ȗz��7�v�e��/c�͗����r�6�l\���+�^�'���z���,�{I�se�38�{7NO�q�����K�N@mz
����ϼ���q��Kt����&�(�L�I!+Jݯ�5���D��\`����j��h�"���0c�Z2��.rEl�@ X���)@��m�,��P�3���u ��������zz)�	['�H��gŁ� �� j�{v,t~�V��mZ�O��X�)���f�AdC�Tz���Q�����>���bc.<�<�NgS���c�lz�8<ept�B�W��8����{[��"����F��0���z��I�A���/͔�ɾH�xͮu۔���B��o�}�sC��~��|�t=�~,��״s�*3�5-�ۭS����%�B��m�g���wp\ƺLYPև��vT+��,�疶�Lk/��sP�-�e���s��{��-��W#T�TV�Z���2
F�e�^O�>h-<T�(u|k�ܚJ�&�7	�J�K�>U�Y�6�vs_��2��l	J�IW�r���M������+�{�ҩE���ѿ(�������(A@��A�֞2��Q��+Л�(v��Yv�t�p�q�`������3��>Y��>�QeE_�vg�x�ly
��g䍤�3�Ŝ����դ]���C���z��ŋ/^��]����ŋ/�Y���3�Z�1�|��)�c_����Ϳ���_atjV���u��B
[
��cN�J�h�٠Q�ٴ�]�c ������`�/����o��[�AR~�/q�g�)
�S���_�yt���n�jy�v�B��p��>�u�W`flWGf�t�b�v�pa�
��}W�L�5�\��nz�*ƻ:)�QO/��ѨU��5���nȈF��>�܀���P�ɝ���|�_���EGO'�-� ���[o�e�[:�O�*
�Եǿ�gxu�[�
��z�G����un����?U K銢~7����83 LY����1��&��r���4`4�+3����V���2=v!L�M��RV�I�#0� eQMY�(���1)nk�#�,<[��ڠ⻪9�q ����]'3��Dd�0�g5�c{r������2�O�1�i�3�	޲���9�w�U^�q���L��R����˰zrm���������`G�J4e�h�86����Ǎ����kp<'/���Z�5�3!�5	@\ �,�f֗�z��Jo
��>�Wn�niP��C��2�A�̀OZ���|nP���ZS�9��7�{�yD���:Ǔ}����o�\<*׫מת�BK�9��3Q�iW��h�M�<�Ժ3��\��m��dĀ��Ը�zfA���!�:�<'妩Z]�F�v4��N�6�t��S{+`L�W
i��g5�#��\Yn�3YZ{Rx�r���)�@zY_���vQ�b=\�Q|Ǚ�2���T�����v�6���&�P�ie�h��z�D֧��U�]�6��p�z#��
 72[w2��X�\Li�J44 �-󑳸&�֩��!�E���8�\[�f%�Wi��V�:���i�|����͵�����ŋ/^�x���&`z��ŋ��p���8w\j�E�ly_����7�ſ�ݯ����A�P��u�X4�H����s�T���s,�Z�aʔʞ㧎�~�O1��Ǔ�l���8.�����|
?����鎭ȪpD8w|?����a��ǽ�>�b����Ct��f�b��=�.��Q�p���B�%:�*���{ث�W���E}6ݰ�=�4���	�S��Z��n��قlQ��/�:�`�p��p|t��e
��bG/Z��q��t���[�E�ͨN��+O��c���ك��ZE�N�G �Vӽ+�o>WaSu���U`�qH
=���(R��X3��B4=4�J(�Y4��Es˭�L������L���R�h^q*$�Z���Boh׳N�\�F.ku�Ik���j�+ţTh�e�L� w����я��ʼn��AS;�x�k,4�}�i;������ �όT�q�S[c@�Me�ۧ����R���pN\��"%���L�Q��8x����d�&rf^�δ�������ڥ��uz^ޥ�>����kYm�����&
|�w�{��K�٭_3`徟�j.��Ӆ/I�<�<���>��Z�^��Y1�um֯��L��:��ɿ�y7w<�ui6niֿi�u�^���|}6�= �7�JN�?�=���|��cSǴ�S�
�i�(����}d��W������^>�܀��pA<([E}=O������*�@�j�(!�r�@�̏\�2��@;�[���%l�V�UI&k�b2�CZ[f�9�”�d��І��i�ɩ*��Ab����V�7K T�H�u(�,�$�r�Ƌ���G�!��N"�F��RZ�P��8��Z�VP�?�چ��
�*F'
�rwK}3��ֵz:�5��]#�lC���.eşl��_h�ͬ���c�/��ZܰH�׆��j����2���{���ץ�ہ�^�x��ŋ/�S���ŋ/^��Hx��s٠�!�H��._�o��	/}�;�'�q��lo���e���}7���?&#���I1�/�d��,w`�z�YИ2��j��g���=�{���
�j����/�d/n{�!�v쩔'�ϡ����>�a-'��T�.DK)��x��y\8x@@�I�p�(+O5$w_a�\���)���ݥn_և
W���D����Q~�k�H��?���Q�]8������c(�|/u�bM{;6�]���Ρo�&��2&�\������bAP��7�8|��?��׮��1{~���z��ݸi��[�L�ZwР�i(�S�S���ܺ��IZ}����0��q�-]Pef��ˀi\�	���ʯ@�l�S��\���L;��/�V�iw͛Ȓ�ڬ�5u�2�0V]�PtA�����)�G
"��?��NJ��xX����j�����ֱ/S�)e�sg9������*�]/u���D��gԗ�J�@����E�#&3W)�/��Y_��FlG�+�ދ2�BWJ�1�™s���9�0+��d\I�3i�j�~H³��|�)�_�R\K�$�J��=�"&�%%
&����fǓ}�&�r�n���d��f�����i6'�>���k��&w�$�^ڱ��յ�l6&i���
LY���%���K�k�v�jcE�gs��
��X�
�q�=.�L���؜��E���X�ueih\dȴ
�~�G�O�Ik@�Z�q'�Z���$"�l`�ڽ��ü(gQ/��)�HG���c)�r/���UC`\<��j�%�<W`Q-DD��X���ZZ��}�Dhf��d���Z'e��,�"C/�?�}KW��Ҏ���Yq�e��p9�u5�}CQ(_
4�!��ܗ�S�#o(@���ղM�~�z��s���)*7&6�o��t#Lm
�����HS�ֱ��'��]�Ȳx�;�Vl�y����ι��v܋/^�x���o��ŋ/^�����\+,�P1��o�7��s��څ-]$I�q��񭧞ơSÔ�ҿhW�Z)�"`,�L:>�Q<Q���n��Q�����/]>���?��O~�	���|�V#�yl�[h�]��+�b���x꯿�Eko�=|��)gr�6,_�Reu��%���8��>��K)�P���Z��IEM.����?��O�ñ�1�El۲��I��m��������Ԏ[�{(vu+�X&�ˇw���y��4�m)�M�D1e,�r'�څ��4�6�t����p`�811�%�7����};Hyҳ~��/�Ն�Ќ�,\"Xd��=cw�3�[F�b�w+�X�B��)׌Ss��v�;���� ��$�����T�b�D�UCuF�������s���řz/c>1'Α�WN=��)���)��TF���P�sB��B2r�k�l���FBD�	�� �J}$Р��4��+�$3�vƜ��Zr_���4C.q�<���X�ܛƲD�[Ӝ�|�V)q3�Ƀ۾4u��2�f|d�z8/��9��\+�]��u�7@J�K��}�06����I�ۭs왷H�*���!���F͎�}����u����G��d�%�������5s�Z�M�ɼO��I��$ll6?�+�.m&��כ�i�hR�����h���>�B�3���S�q�J�qW2V$�(`j= ݓ�v�Mf�N�
�kT��+b*�o��|.�<��g!
�.ւ�R/��mlCձ&ɲ�P[+J����W�r}����
��ܺ�5m��Sz�S9j�Ҩ7�{�NQ!L{�X�Ű�r-j�F��b�j���wQ���z�Ak��F)�"���=�m|�˿��/}��A�ZQ����v���@�юz��&V���(T֚��@�'�,��Ip)�ﺆ���W��U�PU���Wp��>�^���΅Q��`����r������֠jq
�y�����|߿II�A/^�x��ŋ��x��ŋ/^��p���aCR�"�*�_����/�����v
.�PH�K��,N�~��o`X�4^d�
�Ӏ�(�x�h+�Ph�HƵ-�c��T�']k���K��ӟ�c�]����
��cb��ѡ�:<�ek�EF�ןy
Ǐ]�}�8V���_��֛ף��Ccx��q���8�ƫ�L��O|ko؄���l��,խ^.e�&�^��=Ϣ���x��%\�������D5d�\���x��qÃE���l�����g1��+8pu
���kg�[��4�5ZJ�����y�������gq�}��40��5�E���|��q�f����[�2+��P�D�X�򓁛;�b$j`8ؑ�Ĝ���V�a��\��'�颿��CL�E��[��5�+n�
�et
�-���:I
E	NB���ڽ������e�>���)�P+٘>��W���I��e��?R�:<�b%ŗ�8� ����i�e��
l��4̎Snb�geE��up�k�ߛ�yC���?�jS����s=>z4ML��P�P\=�N
{�Ɩ�˻W
��
�f�#-�f���WQ��x��f�5	��6��U�2擴�i��ڛ�����`�{l��E��k�YZ�f0r�ֹ���,M3�>�d�&L���-��������fi��,�\{Oѧ@�A哈�"�vɸ�̼�M@uk�F�@�rZK��`Jƃ̐E�*#�N��4�ESrU��̣Vk�g2A?f�CA���%�I��t� W�T��rS�-$\k
��Y�Q�РP[N�
C�^�eLG�ܯ���Y�CSAZ�:��C>��͋2�WV�fէܹ��Z��&SJ2U]��t�Ԋu[�B��8v�,���o���c�kOc��YLO��ة�l��SƑl���u��Z��ţ<�RjQ��1��V��<����5�>C�d|b���]�
�ֱ}x�:=��N]����
�Y�a�Z�݇����O�6&�m���ŋ/^�x�Q�;�B���a|��_��c����~���I,^4��+��w��޼�{'�������~N�5�����ŋ/?�h���s{t|�*~���O���
��яz�������ʍ*2�&�N����E���>.����&�ns��ڵ)3VbL)lXT7V,��o��Ƨ&�?�pz�7=�al]�A��@+{ff˘��q�����.੿�Kl��A�\����sWPlmU�D������=v�Wǰ|��{Qj�a�ˆԜP�f����m�h��qR\���0��X�э�KE|h�RHW�ꕽ+�6��P�|�8�o�c�ᴀ����Y\���,’=�
W#<xc�n���}�:��Ń��[�m�v|�1��w���Oᖾ~�~����L�<���p�jϼ����~�YxGƅ\/�_<0�������
j���L'`q���f%_�R+�Q�hK�(k�LM�_���[0q$-�
"��<F R+��%dQ���+9���W�a��7	o3jR�EyQ�>0����m���,�/r�s��P������b����R5��~0E�S5���o=��Ρ�-J=��e��~���r�Ƣ�)���*�7�|	l6���t���o���(w�//�ZI�*W������Ws�uk�8�I��4E���	�u[H=
�H��V�����o��H�Y�ml֮$lK����#	t�dJ�����H3W�is2
"���W�}��NΏ�i�h��9m��g�洲�{.Y����?�i�o�����?]G�y�}'�P��g�o�z��N�+iI'-!�3ݭ��.ӯ��`aX�]?�9�ʗq&iͫ�*V*uyz��3Zc��kI�a��M�0P��z2Ȫ5i��B2��5�s�ڢ�^��&/Uz��yƅ;o�:�ƬFhǑ\ڊ�
��
i��9Yf�~��c��c<jp��3�O���������z��n���U��U��p�lX���6��A_�֩�Q�L^FG� �WU��,�m�z-��⧡�u!�S�B�+]�f���6��kx�b7+(m�~o��e��&�,B�f�&E?H�\��>1=��bm6ؘ�m��3C;'�r2���}N��N���4���ŋ/^�x�Q�;f����<��������׭��]{��?���Kx�����=I�'���_�4/^�x���
��{�ï�w��W�R(0jj���Ar�&!*�P�z�&'C'vc��O���{C������z��TE�BM��G�V�p�,�! �̻Du�w�~�w�3��p��Ò��H%�<OJ+5T�e\8uŖL�Mく}+W.���N�b��%BASGM(c��;���Ϧ7_ڠ����{�Eps+�� �����P�([�ɱK�����᳘�2�؋�ύPco����E>[���;p����?����\mA�k3��qu��xc�1��X�z���1t-^#�)\�|A(^,�r��.ځs�}�/�b뭷a`Q��gP�:���e���q��H�e�����,RT١��e)��,��ZI�z!�ѯ�5�L�j�N�BD��������z�l	�qX8����󛂊��cu�*����"$caD��&�0j �T��2��*71+Y�4$Q
=Y�0@屼(?�h����/��!'�E��-��g^���˔j��@��AMR�rf]�F=�>���@"1vH�\5��R�\�2ם�9��ֹ0JaFu7�,�(Z�����Wƽ�(q�s,�W7m3������ H�x;�������m�[�$`K+�ui�杬K2}4s���/�m���d���f�i奕5_�n}�V��2�-	��mN��iy��Z_�Iژ������Y9�;y��+W�>K�kZ;���|mI�_���zG7k��zVy7�v#�����y�7C��\�M%�R���
�
{nەkR����;��_C[eJO!2�|fJX)���٘��J����<���_6��(���z����0,����r�����,]������Z|�z�Mݿ2c�L�)H��0W��֟��z���ڀ
K�v���ڎ�W&�ͧ_�W��v�?���N���ޒAyfV�6�K%\<	'�����Cf���(z�h6H��r3��/�k��W!(Bf��6�W��+X�
o�w�<&]��pr�S�g+U��|�u�����G��x�!T�UeI+�c�~����{.y<y�4�ǽW��}/^�x��ŋ���#SZ^���-<!��ڟ��~����?�դ����/^�x��&JaA?y�.�&~t�+��?�*�?�P�6?�I)A�F�V�hT+�
hxn�x����='��%�̊!n��jb�^8S�3��1�TݧD��o|���gй�nlؼ
��5Gu���"L�1=[��3���x�c?��|]"��C���Ī��r��ӣ�8s�0�=�FO�š��c?��X�f	��v	��:*�3(	�K�V�rd���(O��Y�sTס�Q9�:�>��W�I)40؃L1G�\w��8�ҷ��$���J=�йh��%��9�+/~�8����+4fP��Ņ�{Q��F6���>���P�x��ðh룟��\��Kй}�&�<nݣ)���ph��`R�9��)nM0z��(]���c�)Ԫ���Ӗ�3A"x��̾�ydiIjJmH��cbf5vȸ�e��k7�Z�d�]��.��!��̷a�:���&ӗ�E�WWd���(w�+�Tʋ阕Zѧ,*UYdx�]��+c�*��:6�V��i�K���X��'o�h�H	k��:΅�B�ӄ"3ӏF9̴����pէ�j���z/�r������ʕ���k=�L�L雄~�<̱��Ӕ���f%�V�f�h�S7�̕d��)��6��p�z�噼v��\�nI��,mZ9��'i�i����}��H��v7k��4m$	�M}�+'�}Z�������y�ֿ�����}�u�>���
4r�BfS�z3�q$���պX��u�Φi�'�-�YZ�ե�^�Sj�GԱd��'�u�Z��T�T��sZ��kJ�k8����Q��F2�>���qE�x�,;i�4��LOtrG[�k��5�0՜涵�'B���k	&�z�1X��qɌ���H�.tz
Z'+�je@nu��B����VZ�����#� ��X�v5�z�	�W�"��,߂��7���C��Ph��y�UJ��r
RU�ZD9�>�ߐ��Z:~�NO��Y���܀_y�t7L.����sTfb��/��\��ױ�N��~G�ݛi���e��_bz��ŋ/^�)yG\���\��گ���s`�ڽ_��7p�M7��_��7�K��ue{[+�|��x��툛džu�渫��_�
|��Ƒc'��o?�_�G�@nm��o�~��sQn�MK�����'b���ŋ/�} U�.�ǿ���v��]�xg��6�
�j,P;����v[�BIR�T�����ŗď������5�̏�$!ISb)H�k&�Q��q�����<2+7⦇?��ܱΔeZ1��
�`����j��G��_�%���pA(
X�b�PH'���衃�t� &ϟG��ux��@�@7��T�f�50kh��`zb�$a]\�T�q1B	#!��Ɠ���m�`����p�T�u�cx����Xq����7q�>�U[n�L9��ᣨW���x���o� ��011��[�ĉ=�a���T*b˽��vcd�+x��O�q#��G�ͯ�
������އ֎v���D3,�v5�X��!)��]%��K'�DqUDu��D�gM.Ia�n��Y%�V
j%�r
��jL�ތ�Qceʡ]p9�LVL�QP���'�%��&3r5���C�T�QZ6DV��q�t�\���N�:����JA� ��p׍jtd4�
���JihE�rw�����d��(��̭P��֩f\�;)�`��ZՉ[�ht�dբg��l6�1��v��[�	"/���1�����p����6�,NS�^�&���5��>Ma�8�fur_��,پ4띤�O�4�f�V�&�0v��e�>j6^�<2vi��:$�9	�ݺ,��k�x���:5k[Z�ݴm{Z�H)?ٮf�K˳�\lV����,�kօ��f����'ȵZ�Lˉ���V��L��,��w
f�ψgu&Rː�%�Igl��Ba�� �rgk��*J�̚�'�
��Cư� �K���l�l�ZH�%H�JX�uJ�ڙ�~އz��72�c�L��zCAۺ�B�*!�}��},�od�2֦�z �/E�!�:LZ�F��,�U�GF�2h}�2�7�@y����f�j
#붷�!W(���R`J
+��P	rQ��.k�/��إ���U�7]}z��ƌ�(�
�����m%P�b�^��%Q��hg��f���8��F� eFo�21���X�gˢo�\�����C
�@CԆ���;3r�'ϥ]�<�ŋ/^�x��w`JW�����&��?����%�O~���u���pq��0-�����ڰv���>&�����.^ԏ��O
��u��F^xi;���ҋ/^���c��1��W�zU)�����C�������RԮj
b������w|_�����?�E�m�NE�*�����6;�u"��S��r�7��+���?�������|��(����Z�01]Ayf=}�ȣ��/`�ʥh+�1%�;p�"N���ϊ���鑏c����w�;�g�gE�(�S3����!^[��ևp�o��"�u��ZWn��n<_jC��,�ذ]�>=�RG�݂ï���RF�m)n���/�j�����v������;9�\���lıݯb�m W�#�ҁ5[���K��s]]xb�
���}x��70y�M����8�-��ܘ:Z�B�܎5���!��h#���H�#g�U��x�\[�)�bq�~,c8�Ɯi@���F�C9�B��I�vw��q>�:)�P��q�@�q'^�
+��lq�2���~i�!�d���E�������5�*��~��"��]�b�Bm��,J5��,��x/�{I*>�n��ɀ[pm�,�ln���b�rGdA�5�V����2�M����Z���3c�-�H��4�'c���5�%��+����%
p-���/
6�#yܵ�I�Ѵ�\��|����Rz>���X�sϙ�����I����q�	\����p�5k�|�D�Χ����]���B�'�>9�@���|��Ze'˿V��|N�AZ��c�uI�ֽh$S�y�
�QLF��A�y�ܞJ�G���&��P�!�I�g�*�[��"��Z��My�†}ϝ~h�
�S1��7Br1*�V�𳦞��-�� �<�Ԕ+R��NzH��7�c\��$���Qz_P(ԃX�
�VPY�lR�'���U T�IR���Z�0�j +Q8c�,�d�q-+�8�c'�D>$�U�5Z�l޺�V�@OO'��������Q���1O�uy�Q��P�+�_���M�fK�FMmrS� �mU)��<�R,���,e�N�7��`FZ�j+-\�'r�ɡy�^=C�MilCT+3�ѯ���z�@�s����(t�2�mH��K��n&���x��ŋ/^~X�L�RZ`.T֯[������w�g	e�Jr!QZt~�+� ��\���~��?/ 濶io�i+~�������ڽ����O���ŋ/Ia�—�����1�c_�h�GJ"�a�n�@��~Xe
���������+�I�e,e�,�a7Y��T���>���W���G�[���RJ�.i*�mER(2	��:����q��)t�/��Xk7�T�sã����|	���%�–��߶��mUi�>��V-����3���T��l��#�?���%kQ�v/N�|(���f�Q��ȁ�h̽�NdY�X�S�S�
�1�JŽ<K�b��X�pt�ӨL\���g����m7���9VA�g��#�p�P����X�g��ҫ/cgw;nݸG����4&/��
ڞ�2�1T
�@#'
�\V���.T0�7F���2M��V�)kN}-AJ�

MD��M*���"E����Oښ �sL�
�&E�.*g�|���
��"��~5�S�����S����cVSXa8�r�+W�� U��P�T�B36<>��@\��e�M��3&O�/7w���3*Z�=�k��ɗ�%�D�a#j=�U��"��I�3�e��9��7�
�.�P��xy��;�YU��� �{}��B`KPI��k}8_Y�޻y�A��TPz;�Y��)ޓe7�b��5k{2�fy��oZ>�ƴk��R�����ش�X��WN�^k�����w- �����k��f���y����e��Ĕ���\�K�Ն�r2��d#V\�a��2CV���I^�ܡb-X��y����C�(��2&{@���"i
Z�V���:>��%��-F�RAKK�<z�G䟣�Ju�Gh��f�hpK��-yL0�lZ�QoR{B��ѝE+�i)0�-�} ��J7���a��!3�k�7�5�*�P��hS�\��x��=8�����o��.]������B�ij��}��qf�.q��S�Y	Z��wG^�|m0{4 ��e	g��?
m)+�q�|���)u��ؾ�&�
>"+���M���k�D�g+]-΢�7߸�?�y���/^�x���G)�H�4��]?�S��Iw�F$@4�R�K��U�p]������  ���=x�]8r�d,�7���w����H9r���֜^�x��%)�6�@��{}�)mL#�;�GQɀ
D/2?�Un��]�pZ��;�7^zO����2�sl�`\L�h�ww�^�_�͗���ʻ?�6-ôP��R�����l�kw�R�"��i�N(�f��X�n%�-�!�\�O_�W^Ło|�,&g��h�]�����{Ɗ�ӎ��g��k��tc`�R��:hGz��w�%ʥû0r�47ކE�oD&WD��F�,�re��I�����C�uq��N��mB!�%�גMw����b�ʽ�@{�"�lN��a���,�=�l[6�>+SX�z+Ư\���%r�%-
��f/���pV����_�A�X2H
$
c��:� ���z��i᎘s���t,�GJ9��k�3��Rȍw�sNLH�\�iO�0UW���pf-B"}�L��S��4יx&֓I�@n��er��V�L+
x'HJE���?e�Y�.�N��2N R�l���
��y5��4B�̐G�z3*�._�S��\ɭ��Xp��NF�Q[2,�``g7j�H`�X�(]#ӊdm	c憮w�l㶟엊;�^���U�6� I+4���1��=8��tn��ui�L��ڔ�k>���d���\�����]�������W7�ͦ���'�|���7�uJ�OR�7i�V~�:�������L+;YF�~iv]ҝo�c�9�^k֦fq;��_kL���4����X�1��@�ҒST�����A���U�J�z2,oȍ4�-T�i⸳�)�_��/Ӌgr9�C��$@�<e�oh�
P0�.ֱ�IoL{Z ()���av>�
Rt>Ȋ�k]����֮M�F�0nR3Ȉ5��7Y����~�rT�죚�8��3��q�O��5H����9-41;��ހˣ���]���~���h-fT�
Zf����'���T6���EJ	O�zV����*��9=ҕ�hSE��J��j���#���e����r��Nm��QRy<C`4��h�i`������c�֔������ŋ/^�x�Q�;b�)cX�8��Hkƶ�Vz����	�����\���mm�X��k$�����~DZyJ�M�V����o?C�
��ŋ/Fԏۇ��SSؾ�����*��@.��
%�Q:KńTpT��J�th;����X<Ѝ�7/'ō��Ӑ&4j��D?ʁ���w�p�֋����D]@�!�>�	V�k	2�e��"�h'�x�W0�|Z�2����?��v��[/�7�B����ʐ:;[.5t�33��S�|a�|���يc���ˠ<9�:%l�N��%[pv��(�vbխbvj�N������^)c�ěX�ځ���-�q��.�v�&���X�k� ���,�\�RK;n����K�{�
e����u���ৱ5_��U�8vz�n�_�:�틐���*m�������Jo/�Eٝ�����fǓ=���9l��4�Ti��R�ipm�J����9�i�g�eZ���Kq@��
�H�M�K��
����Z���<�\�����ZcQ�$@d�f�%҆���X�V�ǹV�i��֥�ԝQ|I5����Һo5h�C+[��|���ܖJ+�����E�!�_���V��,p�!���eb�ǘ;��(كrn]��Yf&��4��}��4�2I#����*/�f����=�,�bR��1� 1�W7�d�ě��ҽ�Z��Z7���3�M��#��fm��E�B$��o��-g�tiօo��y4��ɹf��pr����XZ?5�O��YH�z�|�J+#y��w��YS�c:��x���X�a��$7™�s2>5ϒ���N��m�C�jH�>��E�Z�y~I����vc��Z2	�5i�a�q�^i�u�|��?BM��>�KV����(�J*LA#���@��2��*Yq<��k�@Yn�6fz}a���wd����f��_V���BE�6�X��|�\�J��F��`'7X����˨N�~k��v$r۫�d�u���زq
N^��cc8s�v��:6�]�|>법s��̀QN�#�o�Юdɲ���*��P.~e�Q�g�jE�Sy�%+]�5�)��HS�19j�X���H@�������$��A�y�X��k��vM$�ҧK;�ŋ/^�x��w`�_�
/��:>�X0J7��5�֎2�ii�+��7����?Ai$��10ߎH����ij��/����ŋ/^���-�<}䃨֪�;]�>��QAC/�F)Ф�T�G6�v
�y��?��]]ȟ�����}��V
v��ct�X�d9u<���ؾ���Ƕ�,��
�&�UT�vb糰���ւ*_�W����[�����r�mx��%�߿v=�s�����l~��_��
N��$�#���T������S��[�ǣ}9�
jE��r����3Ԁz���P2eJ�X��^�x�yl��CX�c��?�l� ��f�QŅ�`E�;::��R���n޺���C6ߊ�57�����c��b��ߠ������\�vv}w/���t�ֱ���q��[���V����݇3�>����Ÿ���i��0&ƴH�>c]��x�����G��$����*�Ho������G�Ƹ��a�*�\5����5���y�9�Ԫ aa�)�(�2�VtR1�v�L��uet#)\,��.��`���([�Ə;��b;���l�A�^��Ճj�h���X����Ι��\{T���l,R�>�ʹ�t]s5W�����`֝c��,}kE��T)����U���\�b7	��0ni�|��Ԇs�څ����j��6�/$F�|mM�֕���|y��N�K��.���{�$(6�\W�R�,.��y-p�L���-�$\���p�c>�{-x�V�d[�+Y��q0��z�y�]�a�ܴ{!ه��kIZ�T���6rs��8�`z
�,���P#�H7c�Ƣu��2>������t�j�h�<:D�-���~�u��c�@=
���Ε[���0}� ��ߋ�c�8?�еx%�}�	,Y��t�*�
�
�\)ӺD�/e:�vd����P��@7K#���2�1�:�+@�u�J
��T{��.SV���t���b�M�� ZK�f-����وf�waH�@?�m݀��,���G�\�妊/J�t��@�(���,�9Y�:�d(^e5m�,]��v��_E�XŠ�[0�xZZZ(����YsT��
k20���	���ɾ@{�R�
l�j]�	r�1��)kz��{���f��^�x��ŋ/#.d��$AJ	�"��<.ݶ�狗��z�ܻ�k�K��u!"-%��ض�6��4V���S�����K���_z���K3Qq[�y|�C[V��oz�l1�ECJ%��R}�V�1m=F	3hY�	+?�SX���O�K�|c3eU�Q���#�3����������GW/%)��Pʠ��*��
�2��U1�Z�h��Z9�u�,Sl�Z�
�����g����y�=��b�������z�p��,
"ٴɩq<������v��yl�}����$.�F�\#{���r'���ٖVru%�a�J ��	H���#��F֨����yVqq���|Ϟ��qYe׮�m�
�K�ݽ8��RNmy,Z���9A����_���v���V�\��|���,Y����")'V�+6�K�ߙ�1#�����4�2q��v4�Y��3����P�8�C��X):S+*�}p�dUyr�)Bբ��E13M��S�UX��*�8D
��2岕��g����Ԁ%�ѴT��rZ�(�9�rʀJ�fR���d���rRY��\+	]6�]eZ�H�rY`��D�T%0����m��aj�5r��ZhW�N�Y�M�UѲ�]����	��U���$��G�A�d�r��Rv�~dv�u�u2X�:��^�5�7�As>�f@̅V�x���3_�J��d��s�ҹ���EW��v�u{��dY��o�>�.n���˽~>נ�|�kZ��6�I0�,7�=�ژv.�b��5�2M���ɵ��#�x2/�����~J�k����%�
�uO�?Y��&S����mZy�:#�jHG���L��~�0
�3J�\t�F�]�N���\c�sS'Ӿx���o��X�ȢӅT2�T=�Qօ=��q���"X��'O����~(&֢�>+ׄ��{�Z9}�sv]F`O�7�%����'�,&���\�Jw��jM@@RZ�R��^�i�*�K�	h3�������O�2��L�Fi�(�O�ߴ	�n�ݽ���s���x󡲢�QGsz��
�bVy�����zg"�`������/��_�=<��_ľ];p�Y��V��kkכ�8��%�úݴ�#/$rg=�R	ص7���<{滏ӮO���}�x��ŋ/^��0������&+J�']�J((�`�ʯ�:�E	�7�vNN��?���q�q1{-�yI���+Y)�Lg���K�C�IB�/�:��^�x��%]*��i��|��'�e� �V���0P��#�

*(�q�ek�@��;1��}X��n��k7`��Q�z�)|���IB��~2�
`ρ������_|�Å�)R�t�
Y+��H�
�l�r�"�9]n�ՃTɝ�BY2>U��rU(Mfp�{���01:�%�����ƃ�?(3��124�޾v�:�����7�џ�,z�Z�b��g�bl�,�Y�R)�*�P�ӕ�N�nDŽr�}�J��zpn�t��Ī����-]���3�+�:5���^��W���!Q_��kV��U��j_�uFG.^@�Ђ[��z�o�ͨL^����]�pE���!Ә��V̎]���$�Y�t��oy�lE�[��P@�)���3��k�9�42�0�#����⊩ؑJcm4h3��Њ%���p
�i%����q���~�����X0r
^�KADuR@5�晴d-arc:��$�wD���E�hezM*@�B9��N��y��Q�`Sq2�#Z��/�Q���E�]��(T��l�&x��Z���!�
_��.�M3f\��
���F#
=���θ\���ы�ft<���^��=I��f�ż&ae�u��L���%-����2���&53n��O�쏔�)�ӮW��y�׏i��uo��7e6�d���"���Z�}��i�gR�w�{]��ﻅ��iK�F�1�'�o����\�y���h6�i}�@�ܶ��E����{797�s#Y;_x�J^�\�J���(�@�e\�3����G?�t�U���x['�g;��F�E��iV����yY�X�@V�3Uq2W@^�C����r�/-eL�l.O��F�� ������Jm��J��9�Y��K��|����q
c���y����H�ֽug�G�6�y�l�td�(�%cC648�b�[���q��1,]�O|�'�K���f����L��W=��=]�Y������<t�J�>Ϩ������'��e�z��o ;3���=������?�
`�k�-��\)���
XY��B+�{\r��V���z�c�{��̿1Ɲ��Yr{��ŋ/^����q!+E�s]<�O`�I	��N�O����Rƺ��Z���"�L�P�y���g������?���*�wv�ُ'?�x���K3Q�h�ZE1�Egk	��'��p(T;��OP���@�n�R����JK�"�ً�ތ��N�V~�c8�����co��ucp���s#�]��̛)O�/������ 'gpuV)Cz�:!Q��lE�5�T�֗2nr�ZCaI���*%��&g�8���x�o1yu�R?��w��}Ba�܍JW�����~Q�Њ|�ij� �&��p��$��Y�b�a��{�D�2C;ʙPZd�V�]����0YVn�Wߌ�{��Щ#\�
��!׺��W���0���S(z:��b�N<�z�6�Ź;I߲h�M8��y�t<��e�_�
��`�f\>��=�Wz���
��nM�_Ų-w��O�~T��r��Pv�V*
�9�ʸ�%�A��2vq4�p�FI�V����b�30LCK�-�T�*J9���cf�1힖��u��(N�$T�f�?��;�@Cr�+Y���2Ex�[V�S^%I�ѓ1徕i�А�S0�i���0�b`U{tDǩf���i$Wm�ъ;N��i�̤)��N�	I��&ጽ�D�N2����N^ʲ���h��;_��8��c��+��5�Ü�{^���47�R�R6MY�^+�9�;>�����tM)
w�]}uJ��A�NИ�C�,�C�۬,�i#L-'�n�4�-�3�	\IZ�Fu�[g��&-�SW�>�i��xw\�a���<��Q��m����%*7�u��6�lnM���GuKw�ȝ��m�ik��gw<�o�`���Cڽ��t���p]9���\t]����|a�sˍ�µ�����x�KX�bF�z����*�����xC�B��I�CD;�T)�~�`���[�8����U�ȅ-3���ڴ�z�FnS��
t���VcZ�7�.����-��g�j:���"ֺUr5kq)�S�5��-�ȅ���d�*��� +E��؂���f}�Ĕ햖�S����u��Aow��0D����V��ښ��
+���_��U \�����|�9K-����?���+�jA`�3��~�q����i��Qȝ��P>��Mir>Iw�9.���RKF���u��G�(�k���]�}%*C��b�K�j�
����F�N4|���{����޽�܍i��/^�x����;)���"���3�`%h4�2��'?�a=v2r������l���=���yy�O��E��)�VV��k䟱��ŋ/ib1�(����?�r��8#~�si�x�I��tB�����[�l[z����ÿ���ZV>�	���ܾ��o�bi��[BJ�Cǎ�_�.��y?>���ܾ�8r�*)8r�J���J��?4S�l}3��V�Y�"e�:���Ik8��s���X~�mx��~���~V*6Z�s���&n~�	,_�9�%_�ٓ��݅M7�'�W�<�F�N.:���IQ �)���ۆU�n�����:J�Y��}8��{(�wEGǢeBiu'��~I�W�	Yh�Ƒ�n�6��ȣX̋�&D��X��$����PteQhkǺ[?�W��2�݅�+�x��#�gE?�Z�Զ�7މC�=��w=�jR5%��SŔ��R:A�f���Q��*��QƁp�+`f����l�:WOl��F+����e��sh�3��MD*`��3U}P�V����e���?Z����iB�cMj�\�P%��g@�є����T�'Ui�+:@׸Z�R��^����=�!��(vh��>0q0I����HXd:�DU�(��&Ť�˃�}�F1ͬj��0�`��FM�z^�}�l^�s�[�8�r]��[~��{A���}�T���u���5&\Eq��p+�O�+8��9nZs<	��i�F�@C�4P�B���0M;�4q0���C�=f���Zf3Dr����d��Ԩ��5�D�N��y�Ǔ N���SF��0Fc�]�:�m��?��k1p�rܺFs]�jHf�w]��.0l���:��r�=^�R�d<Pw�yӲ"��p�u��</�0NY�6��u�c
e5�,,�&U>�B�n�Ȩ̀"֥�|��?�;A��7����ԓS6����C��0Ck��~�J�>	OW�\�re3�.]:���c�s�N.bU�e~�b�&�A����ي�MЛ��A�'ÚZ�h�f��\��e<N)2$B��%&Y��妽@��՟��)�'�nU�?� LYm�U�˔�Z�n��:�{!~�`����?&0g��lA>��548���s>��iL��5���E�Z݄u�ɕ���)�?#����L���?��um�)�
(�v!��)Z��PrZ���b���l��W38���M>�x��/^�x����;!�(�4�w�6��?��7����VZ�>�6,?�x���'���t�bG��uU��W����S�����/�$���z�R|��:�{�}@�˕�v�"��Iq{�lZE���B!�"���uX��'p���g����>�^|�y\���я~�,�ʣ�P����<^!��@O+A���2B�R("Ƨ�������)p�"R(h�RE`E\9T��Vlx�cx��.��p
~�"獗_�T���?@� /h��+�ō7�0��*�.���8t�������T���^�ENJehi-!/p����+��e��,�����yF��uva��cf�
���CE�@e���L��ގ��>�ܴ�{_BKW����]���m/�����<�3x�������#�Ջ��G�ܖ��3�֑K8wt��ި�)�B�P�J�8`���c�(�8�I��W��&�X�G)�I�@LQ�r�Ŕ�Њ���v߇�ՀQ3���ъ����*=�RR�B��,!L~��*�^�L�U%u]�*�e���#ˣjG���
|R�1?Ԁ\� U��H�o����R��i�Vf9�U�1�+�gN�
s;e�y��Q{��Y5~�����@�V��#�o=�EJ3�s�M�|�Z���ӵ~�[�}A�$���8�4�'_>�-F�VpN�9�V��-G�0Ը�~p!UT^8��K�4�$H������O�؋��E|$��]�19Q]��ޗ��HZ_$�)��s-yl\�yDy�X��[�4?�oTW�X�
6�r�c��Osˊ�lZׅ��GT�4�T���r�
�3]k�W���v���E��x���z�!�_��b�*�\�� �)�W�VU��a�BM�-9��z���X_I����Q��ӱҕ�K�$5�-\�$E�e\yx0�S�Ge|ɒ��9������mhL���2To�P�S<o���jwƜ�ں_��EŧW�����Z`i����-}�A#�ci�~-
�'�UAM�`�u��#<ڨ�>�r�r��aԗ�>��D�y���E��2[A�vX\�Us��4^��=����
ʏ����3u̪��r�/>��E�wv��ڎ�ʸH$-c�Ӣ�
��h�wmFo0��Y���4���F���fM$���fV�II~��u�/^�x�����j���#�iz/�A�x���K3Q*��PL���
	��FK1��V|B@�U�[ѽx���S?���*[@qp-ZVnB����t)տb9�z�RQ�TzK"mk+�t�n�3��ph����{�W����P�r��q��(& eMGkA�:�tE�9+�u�d
�e��BA�Ng�m#��Se�ug�CK�",_��@g`�Dž�G�?��Qj�ʵ��V�^lj#'f��v�zt�dQ�?{/<���NR�\�@ʤ�P"��Ӹ�҂K�T�6������YRr�m�t)D
-E���c�E��2�%dr-BYT��=/����uyŎV��a�Nq����(���LyQvN(��\���}��	���4v�|�O֭]
T&�h�6L������ʾF��4@��WJ��P�p�\��iI݌���B�q&]x	�,[��X�av2�W�S��M�yT<Y(���벣���#esF+H�N�i��V�9i
����Xhr=�����@u�v�](�� �i�%%��g��n��#��WqQiL�:D�2�@c�"��3�炨�CG! ;Ե�eV)o�d@���q=�t���4�/��h�c]z�ܻY\������Y���V��b�%_�2H�5i@J: �i��L[����e��h7���@M�_���~m$Һ1���ϵKNs<-&fZyi�䖛����ҬmQl�0���[�L��|y�~��-����K���OΩd�f㐬�;�ie$ϥ��d^k���=�/��d�i��qσbͺ
h/��ч���܌�˖bQw7��[��^�^G�ZW��Bc�i�qb�TW֔�i�Q���1Vp<L���O|��R�<��L��A��%}]b-ڂ���X�Q��l�P�I*G�ɓ��ƈ��Ү4@4�*�2ʛ��r=� ���)���uS/�$�i�Rk�	�2�9ccb�r��r�����P��l)d�xp+V�BWOZ[[P�j�����y��W��+�v�y�`��OE�P��#([�ʍ�nKK:���ӣ�?����*8̓�^�~�u�ւj+�LF�ҳA�j�\u��U]�7q��s�{o%���^�x��ŋ/�XX`���g?�a�����ߗ��/^���D��np��366���6�MU�%��@G>���W��gB���f��QX���~��P���*G1{�m]�,��rCZsf��|)�D9mXv��Q>?�%�n�}zżt][C� �%IMBH��d�vEt�����J2(g�fʅ:�`g���2E�y�N�X����Ѿx��Y�,�.�^���W�����?v��pu�2�E�k�n�V�W@���Q�qb#�WP�x�����G�^�N�$�:z/
�E��}m-"��������#���E�_����57߅�P�l}���/`�qE���c���q};ν�a�"�KWb��̊��M�cR�S�D:-�okn{�C�pJ����Q|�3���޸�O�b����_C^��lpRD�`и^��j����H
դC	x��qMI��&�$�X�8��g��Y�G��R����ͱ�?��TA�W�dD��`Y�-D:;*_+�5SUF�4��X`��-�U��K�T+���6��?o�o��:�)�%�9�ܵ��0lY����!r�g����U9�}@��@��(��5�1Bu;�u"cn�Q����On_���0v
4�p�%ife�L��M#����}R��Y���d9.ș�Y¤�3uiVF�4�P�O��g�9�/���T�ϧ<O�>�>ɼ����/9i�k��J�/�����P��c�9�6��Ɯ��ץ��~^�ئ]�6ϓ�E�믕��d�]�����2�Iںq�>��ã�lkÒ%ؼq��K��v�����##x���x��W19-���rӚ��V���*ؖ% E5�bv�"���$�
(�&�F&P� ���P����l�%L��k����Y0�5eN��,�9Ԥ���T�@�
#7��<���Y�4�3� �ro:�ؘ]�h���I
�[Y��յ�iCo�}��E�̚J�-$���<�E��=�҇8{�}1�;�r��lڋ��/XPIб�eSS�B<Y����99~:J�V	De;(��PCN�[�OM����PY�z�{�"rR�$�Έt��*OM�>�(��&P+Ϡ��W]���*����i*�{;�J<�LY��ŋ/^�x�r����p]�ŋ/�
Qh�\A��v��L��O	�8%��w�b�P�|�'?������;1Y��
\��,�B�coX�b[Q)��R�@(#$D�:}3G���C�
t�cf�5����%�C!�p��U,��Bw{U(E�d�FqZD}��
���ђ0$W`R�!�-�J�:�"�و6Ok�*���:N=�Mw=��+8��)c��zz{�|U�GN`�=džp�*C�0}�4���"���3���u�֘�ዸ$��29<�y:KE�۴��8?4#����[q����p=����o	nx����_}Y�ܟ>u�$r��+��=xt�n�a
��8���G@�܁]\�B@��T�	�)L�����=Ⱦ҉�;��
��R���U���a���^���u\�1ӳ@�cHen`�bq�*�Ǩ#�@�Syq
)DS�3�ЮR��Փiu\����(����Q�ih,1��F���;	�U�Q؅�ǩjk@�d��c�*R�g�R��h���̺��V�r�m`�e"���@�RnZJ1E18M�p�aa���;�BEnz��r3np�Iġ"w�Q�hS,Z�h�����v�M�R|�1����)i�b>x2&�w�4�$�K�K��Q\����Xt&�7ei�(�[�XK�t�ڬ�IИ&�-kܽ��z�}e���/	��A[��{�6sa/������`,��~A,?�}*�y�c���'���i�5	��r� ^��������!�խYis�ͷٸ�Aw���}�b����d�|�恨�,�v3�n�$�5���{�"������F�!΍����#/�9�-��byw��G���ƫ�4q�b���:2��z]YˑG�ȨMD��=g��T��k�F�N$�k�\.��1/T@R�H�
E�&R��kɇ<��W0�s�1�bcF1�zM�6<��H�g2�:��t�*�����*X`+ⷀ��\c�z�#��ι���E�7�o�}�+�N*�
�S���X�oߵ{_{�<�,Z�
���n\8uRԵ�~�p
5L$��z�)W�z��L�I�^[�6B�/Ad	0C}]�
/���AuZs��[Ƭ���w��PG_���K�'�5����Q\<��7ܨ�n�W���A|���-Ӟa���4^�x��ŋ/?J�Ӌ/^�\W��qel���IL�T0��%�tF	!`�	�	���ކ�~�������Ө٠�Y�t)���~kG�W���
�4�N����k��^��]�$&fD�9r�R,�zN�*��:�B+
LTf��gQ0.��h+���a�\��X�FJ
�R�P�@dx|�\C�9�
m�X�f
&�\��g�����x�E>/�F50:tm�X�a��K@��/��Q�^����s?R4���;�a��Ur�[
�{=���28�ܗ����0�މo��|t�J���-h��#S�:Ck�R\9��\N�,A�ҵ�p�c8��7�'�!]V�_8��.o����X֋�nY�7��E�؊�EKq����T�wv�'~/���&owm��E��y�&&Nc:߅�kH�AJ2�����@K7҈r�V,j�a�)ݸ���v9�L��P�C�G�\�#��(�fDͬJ�Ք��"Wi�S���@;0WMj:��Z�HI��ʪ"jTh���X����	��X�2���@�Ԥ��$��9D�&�uɔr��O��ժ�����;�l{�EJN����7�ݧF�l�o~�Gr>��0,y6)��Q����z�)�ysx�v��4+�f�ƽ&t��N
����q7F#�bέ���nf�k�kU]ܸ����q�*bN�i�L3�Fy��6�\�Z�M�X�s<]TV�_�N��m������;�ss���j�����,����x���$�s�:��eD���ʜ;���s�M/'^Ow��m�_�[��T�U��d���s�;c<uϝ�n����>�nB�y���5e(^�L�(��5�֋�uxh|#W���Ӹx���ikE��|>KH(�U�]��u�����w����,J��/�
?�������U�M�$�+��j
�CHf*ci6h��抲�4���e��P�}'��K�
3&
e!��
( ״j�7(���Z��8�����M�
�h�hۡ\К
� �ߧ��j�U�xO����QNz�����������/nǩ�q˶m�k�FC�|��с�Fq-0Cma
���'w����8���YdҚJ����S/��ʅ�mp�х��SHu���Bk[r��
�2��q�\	���9?\�N"�i>��^o��~��7K����ŋ/^�x��0�x����u�`�J���YR�HWId�aE ~�˘����>�ӿ��}�O��8�ҁJ�E6�ǒ������z2����S���n�|σ\ڧvLg��8Y�<Ȋ��}MZ	֤�E��J
�<�J�0������B�4Y�
PJ���<�h�n��kY\39S���e\��;p��>yc7?�at�v�2fvbC�GP�U�d�rR�L����EZ�u��g0{�,Ƈ/cp�
Xs�ͨ�̀�2�ɐ��؉�rA��t1��װ>�&K�x��ް�v}oں����L)J�o���kl��'Qhi��`r����!�@ZuVp��v�h���X�݂%mظ�O^ʞ<z����_–{ʒ��}X��&�Љ�����o�ރ�Wa��c�vMS��ֲ3�!��\ƍ�%�~���|#���c���Vܪ5#�s��45�"T�
r]w���R;tU�k�QUW��*E�r;���ܽlT1G��@\��y�q�5�UV꾒��Y���3��T百���\�A}pv�;@��(6e:��4
:���	s�h�%�����f��z�G�gW�K	X�<�*��1=��9����7a�n(���nߧ)༼w��+Ф�+.�I���y��q`��r�tq�33�+?��6�C�l���6F�f<��nfI9���{{.�+�C� ���sۖ�.t�h�3ˠx{�w�H���d�e�u���O.PL��M���*�L���…{.(O���E��Lz9��c��lݱv�;���+O�6L��ܾ��b�>d	//���_z�ȋ紲����KnГ�h5@�wZ�l(V{���+W����d��Z��\!K�s��(c+6j��\{W�fӑ��N.S��)l��ȵ�t9*��s� �2�+�������_���W!#4HǸ�&T�R[M��*�Ɣ�e��(����Y�q�_I���X�W�Ю-����UQΌXs����y¬G�K~�zC�'Ͷ8��2��Z��a�����Ĭ�{�EnPTuj�QWWs�,���Gn��v�dWJh���nL�•1<���
��:_J`�"��B�R�ީW��!��9�+��m]�e1��u�} �&C���|u7��Kظ�xT5��9�-ײ��ŋ/^�x�aI/^�x���:���;3;CJ���V����}C�`���G����L̠�����_D[n��J�t/��*&N�.���
&���O|����][*TJ:nNN���K-	M����QMň�SS�"���P&)W��:P�;�)֏���Ik���G�s���$��^<��Oc��~�c��+/ctlk6�!K���v��4�G����C�>�#��`v��;�	��Ǒ�tfj��LeY2�&#�S
T�G�<q�w>
&�=6<�������n�i#3c���b흏b߳������z=Kנu�*��=��3���:�?|	�����:st�&���#�I�!�@�ż��Xw�}����}�B9�e�Rѿ�MY�wRO�Q茠_F���,�.�8d���o����Q0i(�U�]�) 	�(֔t�Ƞ�\J�el�U�� �Q][�������3��\�?Y��KUG��䶭tNytL�iSJ3��)2u����XZ��qՆЪ���Y����)�6�����0
P��Yl���X�[]m��`�F�#�$㔩��9)��q��9��v^`Μ�m��xfszy/I�0�\�Ҽ��q�u��Ȣќ���Eyr�AS��wӫc��&�m��暴��s\�M�>�O\�v�>�(7Y&������<ܺcN�M��i���L�W�6�4�}����}�Or�>q�T��Ժ��
c�W՟s�����~H+'���t<���[��3����c�c�}a i�9�b}����+��|I']���[z���g�`��o*n��KY��s2T�=���y]��DA9��q�e~�\����������
�ʅh.��Hk��l�
�>Qq��ӈ���5�W�U������xe�|ˍvt9T�S����s|�3Ӈ<��h]@V������c�P��d��Pԩ.jPT?���˅�#5��-5պH�U*����}�7Ek{+j�u2O�_��}j�	���C
��bw�ݘ!��4�A2�,L%�1�z�ÕUl(����R�]�F��[9�r
e�fU���^+� k��<�Ԝ�6+���;��8�~O����g��x��ŋ/^�)��^�x��床��;=YA��]ɥ;�ż	�-\�7����*J�%|�s�����?��8Gߖu
~h�[M���Ͼ��+�`�C��y��g#$�Dd�?\��ʪ�3"�F($B9S�"����Z �˥�I��ˊ�V������-��踄�5�\¢��q��D_7:��#C�xy�K���E�y�Z������(�;���s����7ރ�w�#�)9R0��VP���.`m�6^��Tn��F/��+e���h=я��^�ʘ�h�
���݅U����;���N,�t��-��Ї�D@����V�Қ��������Y��></��u��v�j��8A}�r�]8���w����L�`Q�E��҉C��}/����K�xI���ns��
24(����=L���~yHi��nz���\�d�	
t2���jAPR*�B�Z�l*_���M�i��!����V��*����6,`1xn����r
��U\fl��-Ө�m�KS#
MY6v�S�@�>����Ʒo���*�Uh��Ś؞W'����~;
�����Bk�t�SW��J��j�n5�BԨz��$F4�ͬ.���2�"i#.Đ�6��æ�Z�D
c�Rk^V�w�7���Ȫ-J���/[��SvT���ZBί�������Ks��{-�;'Ҍw�6pn�B����G�A��)�\��+�;�|���4�7���&�8�W͹>�78m�͈��;���蘙7s��z��V�QzzޅH�[Z9|Μ4׸yG������۽Ү��tǜ���5�u�٭�;�S��	�'w�ʅ�twJ�3X��Y���L=)��x�Q��P�s�PPy1�TZ�Iס��j]]���9�ݳf��Z���,c���3_Sq��A�Rt�u��HS�K�7�����`fH! L����"�qi���hQE �Q�t�-W^(z܃��r�2��:YC[w���4��(o)��o��%kD�_�2�U�W���3�p�*�axx��z���ՆE�Ɯ�\�}�H�j'���G��y/�H�o�9ك$�B�,�+�UCw3�h%8
�]�d��+�+���J��K *���BK:�*����'L��0�~����t��R��f!�ŋ/^�x��0�x����u�R{)+�v�SZQ��ȃ~���3���kE1gQ,��R�c?�s�ʟ�W�}��C['������p�=@OOы|V=���*Z�
��	���L&�J�ə��)W�`���.J�H;5;)��fzZKh�;���vFO���.���u����F./ b��ı����o\-�TF�q���E\=|3��p��>������A�D�U�0���^�n�Dݤ�CK鞬<=��ȧV�!��C��lG�h��|�h/��f�bJZ�I�R�������vb���Q��D�m16�LH�:t����ߎS�V�j{n�*"/��G�Z{�����kO��|L�*��
��v|�p��籣�C�k�pu��qw�vȺ��]�P�e
�֓V�YP����f	���iԎjg�V�iئN�ƾ�c0:5�������J'��V��4`6r���qk����r=���[�$9t��4��T_�~c
|;��d`������M`҇�*�Z&�^c:V'Y���m�W5��Ѩ�H�4�i�$���m���G�Y��3�L+2U?&�8E�H��!--Ezm�suO���װ�뛋��ǩd��>�s�\+M�ši�Ze$ӥ��v�-���J��H�o�乴���72_{2��[ڹ�2�u�B�Z}2_���/����5���U��7�"��Zğ�$��T#`��d�ʒO�K����|�ɸ�b-��s�<��C�GB��Z:�*��+��g@1�ۋEZ���`��A�Śrbj�Vh�]]�ho%�I)o[�Z�

bMX�u�@?�W�_����'�$�Z���k��n^C�O�_�kW�]�Е 0/��==:f����������eҺX��� :��TԍEYUz�]���(�=�}���CN��(�(����NMN�K���7��?��XO����eȕnWO��EY��r�<�wܛ����8��7���_�s�bM������
���l$�ɚ�B#��X�F�W�[BԹ�S�1z�o���T�*pAzrS,��H��0�/^���t�:oްmbn<c�o�b�sݝ�s�s{]��S��ŋ/^�x�Q��^�x���KN(ʵ:E����RCC(G�:2�<)�[��2J�������_���޿�st/_���������jwN@;{F����͈T����h f�uRz�#5�t	p�UJJR�\�Q�S���%�-�0�Q|������q�C�`��0.�V�?�H(�E�ffq��FĹ��GQ���6�6�v+rŬ,:���P�T����xe�B��WfiWu�<��PL��-qL*yν�<V��i�C<-������-_���E��		��[p�o�ʹTg��&�oN\w�G~/�ٿ�:\8���E�%� �%�	e�M[�a��[���{qx����.)�d�a7>�1�}��8�s�+�R(rm&>���b�(��R)?�30ר�h7<� ��e�eF�h��O�U���7W񫌻RB#%�&��|R��Q��C
Ì���>*��FY;Df�sfɨQ�Z�t��t\K]�w�"oN�U=�ѳ�����#5���ɔ��E&��j�Bd�DT֢��(i�CZ�ENs9�z�%\�2���������l���E��(o��7������H�*�	��h���l��ŋ��C�F({��tLC��uR��,H��q�o\��& I�Mթ �w�~���4����
�m���N�`���$�bO7���&m�b�C0Ŷ��S=�U�t*I;���bPZ�f4��&���E��5�
�!`�x�\���}�Nc�H�B��61.v��,\J�::�i�!�֥�!y���R�2����L_4�p�E�ݸ>�ol�T.xM�t���@_��R��ft�dsYU~�V�y�f������u���$7�eD��������٩6nҚ*����x��ŋ/^ލ�c`z��ŋ��(F����Q�v��~�KwOb�˳��3K���Nd����!%C�Ԇ|�sho�a��-�r�
�fBJ��0�a)�,ժ�x���c��up��
�J�@�HQ�,�l�p�lyCc�T��b��%�9) �bv��N�Z�����?)�g�j�
�xYo�p��v;��Gb��[=uX�o��?�����Q(e	�R�J�\�͊�OML��!r7;��(�Z%�d�$��oi�u�(���g�&`���x����Ϣ��w�sPGFy
Ê���=���Ȣ$����;�;Ĕ�[0|xfw��}F�h���坢3d5�ݿD��!�)�ҤE�z�ݘ�ΏL��~�q��vk�m�8r��ʀG�7���c.3J7�B�Y�bLZ���f
��Cw�f*vP�@p�U�ܲ8�J����r����R7(3Ȥu�GZ���r�X��=ʞ@YZ�ρA�<�U�l�($i��|�R^�Y=�s��ˣ�`�%����F��}�Z�*���H�+��A�1
t��:�5ӌ\�&-
�c���তx���+��S{��ŋ/�B��hCT,n"~q7-�s��<���.X�r���!�Hw���9�_��<�����@UV[XVɚ�;s���x�kI�o�ٜ7Nn,5eTV8qt����ŋ/^����L/^�x�r%�*�(�zMŘ���n�Z�Fn^e�y� f.O罹g(�d�؊�?�I��gک�w�KKΪ����t�m�]�Tm ��|�E�R 'C;��rG����䌸6Kި.�	أ�Y-�n�U�f���&�<#�z�<�mm�x~KV�����±�I�9yG����[o`��n̎O`����O�z���7
��n톨�L�J�|^�:�R�x����ޅ�w>J 3[j���Gk�){��(�;!ʟ�Q0[[�`���y#����Rѳ��'Q/O���j�\ߚM��Gma7��%T�z�ćiO�,�@'#����0�z����>S���붡g`j�vc� &o<�!�V2�8Q1]�V~��C�9S��|1/�=ˌ�9g�5w���]�����OC��T�s�S�Q�����̩s��*=ĴH�Б�;�5zc��������\������x��Ҏ��ڂ�s�]���+��e�	X�R���J7�m��01�H���*�* uсk�Y��u��t2��4A+���t�+��2)�*�x��ŋ���/����-��,�Ž*ѫ�9KI�fM�\b�$��/��
����(5�9�Of3�Y�j��\��!Ig`���8�y;����]��BM6�*i�ܷ��c��Ix���ŋ/^�xy���^�x���:W������Vk��
j4���(�cC�I�*I�����:;[!��R����v/��UIU �\8~{wBGg��v���K �]BI���35r�$�k��O����a
C��3�`W��`k(К�d0:9+���`ŦMX�~%�S��z��p{O��БC�,�>�EѦ,�m�
���,�.�2�?�l�쎚h���W)���$������a�M �/"��F 3C����vb��
óeR`���bӖ��I�]s�c8��y�N�D�u�?��U�E_��������]x��UTGݲe-��T]Wn��Q�����f�;�
�<���$�#W(���0�[�;�Vc��kI�Z�,4 3��c��W�́k�Se�-�������h,��Ts+�``��9U_UՏȧ����HX��B�r'oe)�`M����̤[���h�@��AuTd�:6������ՀY��ԩ���`��zn��W���?��kpէ�*X�[�͘Xk[��"0k,x�����p��\KKf�d�nHK�ŋ/^��#? Z����t����d�)j�m���� r��Y�,����6 R��>v�
�uw!��.Â�ٷ�7M�+�x�tF�kՔ�׎M�@���1k�x��ŋ/^~�����ŋ/�]B
V�E�@I"�����FwO��ݓ+����
xq�&�����ho+��������$�z�;ط�-|��sz�QlA	�J���JuQ��+��o�X;m-T���	�������v���!����h�)�j-�=��"����Q��:��P�p�v?�+gN!���?��˗S�I�č�#T�J�@��mm��J�B
�F��LA�CF)Z�ي���؎|kQ�*� ����'1}���x���޶":[ѷ�k�<qzL�"J��нx-.?�e6�ʈ�������/�6�G�Q����p��o�ލ��vc�Al�q�bںp��gp���XA�bv,}�cZ�1�p
���{v{���*߯��W��5�w�K�S�ϐCSٹ<G�Ha�p���nm��ub�@C��7ڵ�����/�t=3�F�~M[�`�4�wy��	�g��v���xP��bp�6P,,��X���8K�pQp} 3V�r�*�U���L{�T�1�.n����P�� ��d��.�9��Dq�"K���vP҃K/��9��� mJ�ӻw`��+cNz#�:�_��]Z�#N�9îu
p�1n^�����G,z
D�ka`0Ͷ�ZÛx�Ɩ
+�-�Ő��֘���^��Zu��Mk��>�c=���u�mM��̪��}��חs��lZr�s�aDk�f5p��u�y�f�i��+��:�z����,=g��^��'�‹/^�x���0�x����u
U���:)`����t+`��*Va6��l�BV+�9�Uf-$W��|W��3_�o8w�(6��S���B5Q�K�3�P��$�)W�	2n�1^k��pfP*�����-@G��^6B(�˟�R�cl�"�n\�Ju�.����8*����8��+�1�҉�8�.�
��r�ڍj�&�Ԋz�c�����(���	%qeY�J���:;�B���+�Ѿx)Y�-�|��I\>���v��LO�u��;Ph�F ��wE�?�)��b�W.�Ę���
TQ�v̎^���5��|�5,t���<^��o���GfO	���О[��]���uؽ�r�V���N|�l��A5��)�/-^̊͘�&h���f�P������s�Y��+��p��fjIW��(�p�rL%2V��͞Ώi@	n�.I��!�hX� �i%�NO����X��:���T��k蘗:n$�z`��T�o�X%0W��-m�#kF椇��	7�����|���	�
u�KP�uF��8��E�E�Yu�l�mŮ��h����(�R�[ҡ�n쌸.ڼb��(��y��E�%M�w�;����}�9[0�[(<s��;
�L����9���2}��ռiniy4+7~na�\�u�k!c��4�?r�C���CMd!i�]�+�y����D�e׼"	���b�~���z
A���F�h�D^#��Aj�1���	v����I!T�h��3�-����_���iƜ�::��K>�Q���1릭�͋/^�xy���^�x���K�� �Æf�"X�7�q�x�(���frY�V�(�sB� +CS�@�r߫��K_�*�&�Qh]����.�X�\&K?�\ŏ��������ulfV1&;��②Z����Y3����J
���թ5��:)�h
#�ѿn=�����s�]>�Sۿ��KҔ�ko�?�<fql�	���l�<K������{p�ױD�{�zg�B��J���֊W銵�=�#/�-��!t
,�'�e����UL�����Y���:N��46u���҆gr޼Y��-7m�k/�.����1��Ny�kh���u1��E�1�j��KP?�+'�B��;����ւ��6,�/bbbF\���O��X����*'�L�U�VY:F���zձ�`�s����@>�(ָ\5�:n�	��40�v�^2����Y�hʢ�XT��TZ-��Ҩ�B��#��������1��LjV�1��rt� ��*N�S�X�MD-���^�ƥd�e�A*h�*�АTYK��R,QqM�Z�����2��Y��n!�r�k���;��(XBy�bJ�dKu-�';��d�����xԋ�D��Uv����~ǰ9`�[�9���s&�M����7�J��@g��h�+���~�pn6;�霫�*樟�k�2��1��ݜ>I��=�Ÿ�Lփ��H��؅�s�3�S�Y(|N��֨���=sұ����
��<���ZX�y���\�hʽ���3,�|e������7��/Q=m�)���5d4�F1�Y��)-@�g?�B,�ھ����<����K-+��?i��C���o���Y�2~�IK�m&�Mœ�&���^�x��ŋ/�B�Ӌ/^�\gᘞ�A]ʌR�\9���M��z[o��lF7F�.��<f�eT%������ſ�N؇�!c-f���r�r�H(�����d�3�
sl��@�Lwsl�J������'�L�V�2G�l�e�P�\������"������'��Q����:$��=��46�z���fwa���dR��I Yå3g��K�"ȵ��:��P�p�\#����)�%"26g�
Xu�q�g��'��فl��5w>���|���ȷu ����gQ����W�����#b>{4���_B10��Vl�M���E�����8��_���G��٩�8^����?���|W�oG�ځgD�?q�J,�u�	��>Q��E���]�P}�G\���&7��2*+�(6#�/m<H@��Q:nɌ2אɌ�S��V��a[�">AU���&F�ʏ�rED�i0f�s�Ze�U�*�L%�|wBd�i�,�b��2����7��N���u}iJ�)/�b�UQ�#�ul�i
�r�F��tFg�I��D,��>fڡ����D}��J���m�U��q�ǒ�?�4�KW��y����-.�øŎ�F�b��2�S��b�M��#�%���Fd%�kTd��ε ��΀:���4U@�K0~s�?$I�/���km��Cܚ<��R����e;Cd�>�ZXb��~�Ta�}�8���hLt��s�/k�G��s��>Ě�G�>�w�}��/<�e�{{�����o�w��Bh��x�xA0k��s�0w�6��
j\oN�x�V��U�721K�3e��(���]�5�����!�k�ķ4�����
��_4��M�m�<��ŋ/^�x��.0�x����u�s��چ����42B�b�OQH��؞W��<�sȇ��c>�%�>s�S_�+�TD:�kk����Ch+�P�S��
E��2n�TST�R��K��v ����ft��z]�-t��I)�^��F�ZŨ�{�br�ny�ot�wYl��x�?��֬�,�X����Wp疛�2�cb�*�|Ỹ|�<n}�3��'�Ь�#�h*�Z�V�_o(�6ɧrm�X��n&����}��6�;��}���

Fs�Ԧ�	W˓8��7�6��Q��D>	���f�u�F����B9׾�	x��O!'�Py�KX�i*�)z�����d�-x�T�݋���ъ�b
3�<6��8�?�ul��Cda'u&lՄ��@*c�Z���+�X4[�ҍ#�r)��긱�4�O��墸��lC�b	~j(��`�N{���c.�U�'�W��x�V:���!\[=��,�=��#K�(_���\��L|�}F�h��#�}h�+e~�P[r�OB=��5	d�s�w�j��+V�h ��\Ƭ�6ȎTLY��\C�X��K�1����MU��ꑽx��$���I��.��b@X`�,����I��5�,/�uJ44����h6�����b�����`ǵ!��Ns����>C�֑�i�F�-�Ġ�n�q{6�ͱ$�O1���[��0Qn�8sDĖ������,��S_�ј�
J�Ԝk�i� U�C�:�<5!sb_�� �|�m������ŭ�|��}��J��v���C�k:�@����94w�]�����0���̮/i=a�D)������$a�& �ʥ�<�D���/ܯ]�x��ŋ/�M�Ӌ/^�\g!m
��+38��Y\8yE�H� 4rg�"e������@?�kH�_9�����8�hLi����{�ly�P�5 m�2%@6P(����dm(��L*�"GWk+�_�T�0�������{�V����bjr�'�b��+�x��������r�*���6��@��.�`@p�̱���o`p��x�g>�B>#`b���fg�1r�������/I�"�-?g%�����'�|,[@��kn���
��m��3��*d1:;5��o<��`�ߊ��øyI�蟼�svYq=/�b閻pl�s�x��7��D�X��L]������/���cǶm�d9lٴ;v���p�p���&cx6Ho�h( '������`�Mc�1�1N�21+��I�D
Z05��x�#��ʔ�%)SC3�B���-��S�p�(tIv+x�Ȉ8����(�S��4��(�X�)��l���6�n'h����;�-�����Lێ�t�t��JiR����UZu^�S[��ފW��jc�d��c��ᣱ����p,I�Uǂ�6�ms��]K��BME�@/^��X+�0�a�P�8'kLD�X �.�����B�	��5s��~�� �f��
�>�4�&�}n���Ѐ��s�O\�^2^��ܩ��,��pimn�'�|�x��D`��҂�`�|���3��T�L㬾K�^���0�l6	��b�
��e�3
�$����I��h�h�S@��<��]��x��y���ܗ0��0y0��;��f�`�����]�%�1�7p��.���;e6-���yJ�W���\X�U?�S���Z�%�"�7��R�rM]4&r�xwm ��ŋ/^�xq�L/^�x�rE���U�o�b��Ŕ}Ҕ��֦��B���-���~�`с=/��/�*��V�`,Z����x�2�eV����d�+d)v�T9�M	P8+!�(�U@Ti�(��U�b%q�(e�R7P�?RzN��`r|ZT��C�3�D�s-�����ǟ@6�q	�������
��v^97�;��iq���fN�#�U^<wCC�(OϠ��� �t3J���hCI��"j�uT�
��.Gmf
'^k� ����S��>���0j�:����>�����-`����`�=/�8�vm?N���L�U��#pj����l.Om*���xχ03zC'�#�����Di�z�9ܰi{�^��6ތSo���e�Hc"]�t���*d�K�w�k��7�Ҋdn��2, H�,�����hxŴb'8�\��	H�[���vK1�(7GI
��L�Kӌ&9R&q]w��BJ���V�RbW©���t���CB�� JiX�@$�g�ZQ2[�ibTZ�^`�f�@U��j���v��q�0�R}ѫV/�;�H�h����s;%���8$�ٍ���/?�ā`�ܒ��	��k�-����b�.�@�Ht��4��0L�G�r��ո�O��؍<�s8zt���s� qVG��Xb��_�J7��{U���g���:EP��3�߹�~��q��Xz�vv�4�<�gOZ��:�M�C��%�.��[u޸�u,K�cj�k��6�f=���s
��;w#	�����0�m�*-<��ۻ���g���X̙#�e/���d9�3O�ZMs�#U�l���%4��~�jN_$�9�,=卾�#"y��U�_�x��ŋ/^����/^�x�΢~xK�ޮ�}
�S3�r���+���"�	�D3_�������X�L����=�^���.BNʻj�#�W�	�z�3���1=1��cSZZP��Q eo]��ܓ��QGgk'4����c3j�NFP�â%�p��?�EK����S�O��E>#��$��oko}�~@�ge�/Cꆉ�	�=q�˖by{;��>Lǥ�fC��pڿr%f�F��3>UAU�֮�[0|�u�ݻ+�ݍZyJ���=KGuv��P_W�3�rl�����gx!�	��1JE,e�p:<Z�D��ߊ3��z����V)��֎V���`�W�b����lǩ���Ċ�n���ũ�
:��u	�c�h��J�{4�*�$�%|�0�Y}-Id@��5F%-sͨFEm�L
�j ���bv�H�˔%a�\l�J�1�d��T�:�.�T^�ڤ��&�$�-~iT�:p*U7�s�W6�����[]��/
�q�
�c�إ΅��ܸC�fz2�
X�L��
N\Ϣ���F2��[Y2����� Δci�T�٭x��9P݈��Ӯc�O~?긌���:R�G���Yx�̜|C��ę�����l��o2u���T#r�t�fk}�.]5C��{�"Vţ{�i���`��Me���15	����	w�8Ҿ�PY��ʍ��`c-e���pӻ�{M%�\0�f���M0�6�$�|c��
@�Z'IƩ�f2g�b��l4�v:�˓�=��]Pb�O{��7l��[~�K�c1�M\�zg�5�������y�g�m�x�}甝��Y���w��c���~�Y�����斩(�_��ij�7-��^��E�5�{��x^�x��ŋ/s%�/^�x�r�E��z��~�L�]��S�Ø�����ZAmv��x�g1)�X&W�t^f�y�zc�
w�O~E�U(dk���D[2�eH�ɉ�
��8���N��˓�/�ɠ����L�g������'��JQ��:������C(ub�
����}L+��F�����{q��A��s�o��b�B1+��5�:vթ)�t�-X�b*�e��i�r+�P������}�q�z�ǥ�c�,S��e�;ı\>���1q�U@�V�ۺ���GPh�D&_@�P"%ǹ��!s�4ʧ���)�;��u�u(eˢ���w�#W*��62 ��!��~V�k���7P~�5�|��+V-Ew�	��n�51~R+��B��u��v>H]gCr��
VF�qR��(f�&�K(�ܿ�Z��Њ%�h��6��������6fc�"������kڐ�IM�<�)��5�[�S����\�H���E��x`��3/y��x����Jo6�0ִƺ=L�A�7A�쵪�ѕ*Ξ�"�m+��[��`��L�ZaǠ�k�D�~����Mӆ��@%��p���rmI�l�X&�7���4��֗�Ŋ
�P��u��:
�t�j�Գ�ƺ䎵%�{S�|s-����.�����(s�,�����g#
X�_��s{��'߻��y���qyk���wW8H��n�M���ο�C�{
#H3��_�w���� ��
gN������ۘ�1j�^�W��k�Qw�sgn$�f0��/�I|6IY��r7{[p���&良�H����_6_)��5˾�!��r��l��^{�i�OeW��a�����
�"
�X���/R�!u|�uN$�-w�����+ﺍ^�x��ŋ/)��/^�x�����B�o���[�x�dH�H�<����3��\�I@�"N�٥�D�E�+��я�%�p�
�ħ��߃j��+_Ɣ$e]��L6���;�܇s��������N�9q�4�jZ�[���XPJD.]�eH�1S��L��٩a�]F�����(��^v�t	{�����w���-��:D��,���^��ç�v�:�v�f����_��bk'�P26juz�\��,�
X�b9V�@ej������1��>\9yc�N	�؉l>G���E"�-#��.@d�B2.��׾�¹��N�R>O}%��M�ވ�:�\ -D[��q��[(��0Vs�\�+�`��}ۂl���}��™�#�u�Zd4����g#Tnc-�
p�c�:�s_�I}��Y��I�U�Z�,�$�|&r��G�O��U���#�%cDЍ��L�h#��8�j�Uc�Vh+��0��1�QM#�G��#�k�3r��Hj���JXu�Rp)`���
M�6��֨ؖF!/�J���M9ƒK������zA��q3�,����f��x_&�I��ƹ$x�nV�{���
<2�昔(bH�l�_� S�^�+�=FK�NnbX�x�u�NN�S6ƣ�t ��U�FC�����,"U�04P�Q=y�E��W���iqq�\�Gh�JV���pn�Hӟn?��M^�~6iD�ucd�����T�G��!����^N_��f����40҅��If�E�ݼ��[к��j�9P4��6Fs4���QJ[��,.��vgN�s��U"&�'���N�f��t�g�	��^�MK��\䦈&g~2we�缉%�S;��jN�um3k�$�d���7R?�sخ�R��T=e%i�I�G��^�x��ŋ/?v�]�z��ŋ��(JIsb�N�=q�K�</HF�r!���l�%[nAϒe8��+�W�
	`Wh�ອ���'�7Ѝz�F�׼wӯ� �d&��:r�fkn6�"�'Jc�K��:qR��6./R�yH(HtȺ��ի�"E�ţ�o-��g)�{�Ia�����!�GG��_���Kгt5VoYO���֪U�<z�]�x�;�1U��-�e

�U�Y��*�֐�ji-R]�l�(��Q�v[03QA��cɍ����{�T)FE��߄��1\8�|b��eL��~��E���y<�v�\��t�V��yYBYK���k�`� ��)�)�x����C'FO���Al/�p��l�a5v�9MpL¹�T�j�p��v:h��/����4��N��a4��u��;���/������R��rԳ̵#T��:�f�J0NW�7�;�y��,�Hs��?��m����'�Qb�U�Go��K�M,�ֱ��:��s
�F���&��Ǻ_��U�PUn�7��+P�-QAפbN]:��v.�F
Vu�X[z�򃊁dçC<�[5��ӈ'pn/�&����P}�{*k�b2#�Wݛ�2][�#�ta��{��	��F�bURڃſ��J�{��o��'|�5s��,��y�m��O�?��)�#��E�
uB�Fԥ�J�9ǘ��4 2��k�
+�!|����
@,�,/��6n\�FEq�9GY]Z�*���ӯ�eֲ�Xs��/�FTw���yf1��"գ��I����K+�۟3we�����?�ݼ�_'sN:�{��"Jd~�J2���lB���is����~\��"ck/������w���Mk�8Ś��w�.��u��ɱ��^^�x��ŋ/s�L/^�x�r�����UQ��ۺ1y���=�*�k��M����O�Q\>s���2�<��m��Ql���0+ϖ��Ҋl&C0�.��}�Rbr|��
b�1�ϒ����y�,TvA���h���9}��,�(תd�0:YF�7p�:zз|)���"z�}s?ny��h�(���Q���e�2t	�
c㍛��ׁ�(b�V�L��K/a��s�y��Y���ʳ@f1;6�Ҳe��l�P�a���P޾�
�m9T&kp\v�øp�E�W�CK{�Z�P�>����O ų��Ό�����\���B7-���kV�ԹQя����"���7^Ʀ;�JI�BQ@�\�+7��:��M�miCK�۰jE7��R}��CcI*|%�
�����b�Ғ�$'彅�R'���&�f�Q�E�U�1�Y�>���(���j��%e�h�>��nu��I�-]�� ��r�vc?�jE(PD�G�6=�P.��.�s�E.�#s:��QB@��L;a�s�'���U��̌b�)W�4.:~&m�QLN�'1�����x�
��Ž�9�ҕ�11�d�/^"  __�B_���13���wV_K�<�,fM�_�lW�n����?�{�Ћ
<��5���e����:���V��f
�������j���6�&�^�}F�L(}̢�=�"�.��"�
egw�ÆU<&�P����ʚ�/��/{�'�q���_dy�վ���{?��{Ё$�E�Ҋ�H�Օ�'r��튼oI����2+��ʮH�KH�H�f��}y��DdFfdVUw0��5]�>�+��?�9̳&�X�'_��:��R��/I�*���*s_�R٢>��+��#5��ǿQ��֗��%a��mTD�4�jӾ?b��)Ĝ���l�
����R�~%��{MO����DD�@��%ģ����p�]���ƿ�ZZZZZZZZo.��ZZZZZWQ���#'[`V��Ȍ��� ���o%��=E�<q5}�`�V�}�6m�K�Ba�Mi�^�V�ꇇp;r���v���Y��Gv� < 
2ܵ�v��@�0������P*�~�pӣ�! &Xط|��B���ⁿ�cd�!��}��052��C>���Q,�����ٙF4@����v�x;όc:��Q,��zŸ3E��C.������^i��)7Z\�}b�ntǃ�:N��s��z�Z���G¨A�k���F�g!"�B%C��'.ch��ً=��ψ��.�GO{����ڵd#��2�= ֲ�/O��J?�m���Q�����%���ю�Q���"��j��o���LE�2[�%�ۤfMxC�q�W��+T�k�5!�p&�dN.Mf��&=T8 ��nDt���6L�Pc���qI�VisOyk�
\]��S�*ˠ{j
��
9e�Zf[��\%PevxCk|�d�u
P�:\�('gW_��wi�Y��8E����!2ː�&�(��J/�y
��=_��λ�^_�ƞ���2Wޚm�7��*����?���y���	/�^M��U��'�D���>�V�
/醚d���$=0M'��q��v�s{\�Rޫ�J������{�a2�}h���c�=��p!J���[�c^���
�_�����|GƼEk�y]�ϗ�z
��k�T���c�=�����8a��|��r������a���0��yk�4R��[R�jA:�@<C���yj����_!�Yl9s��������z�K{`jiiii]EY�	� Aazau��A��IcqT�5t.Y�H4�r!�ы�i_+���6_�p8H0�D��]��H����lOt�d�,�
8w��Z�@ @��������)K;�K>"n�l�1-
�Ln�ɱɬ1:t� �P�>�[��DL�~��0��+hik!�7z�091N2���6^��x��\EK4,<:�>�}�&P��Ȟ<�v��na@)�esCd�0jef�p�L!}a�-k$p{��`��/�P��LR)2����Z,a��a�F����_}�q��hmh�$j�I��;�Xʂ�����&�X�z9r�b�����]��;A�ֺ��_a&�*�T8�Mw~���x
�����]N-�J����!�l
�Y5�HUc�3��1SyA�����[U�t?LX�f{��ϷK�p��"?��mhh�L��-Sx����U͆�2�k\��FD�9���}&��B�*�0S�0f�#�ƻ�!�^ƔqA�����[���c�-���{�Ȅf�������XX��
��2=k2���c���>���^��ab���.�k�a�e��_���n��I������̳������O��?��?`{#��:҅��;>Ox�;�4Hi�c���n�aY��m�k|�w�[�t�c���'d����Z��d0aB^�Lg*@��X#/.�{��L?Hz�~}��"B���Kl��Z��d^��x�2ߥq�6�n��F�P�~_�eZ�7��4��dW֮skƼ���~�g�~��9<Q:��~  �K�bVs�7���������z��U�'N��7����en���q�x���C���_�|�O���[6����!�L�k�������z͆Wt������L��!��V)`rp�d+IJ��X���V�1��,��淿���* F`�{�M�^Ƴ���'�dY�1 V�� ��ӧϡT������,Tf��H�`�kmKY��X
�HY�2m��=�2�3���3'Kw��	FNa��`��p�� à��WS��8�lڴ�@P�p0�b~��<�Qڟ���E$[�d�5%<+"Aގ��.�.���ux�b��AW��S�I\s��zfB-��O����7?��_����X�N�E�-Xs�8��7��\����"M���<�F��ɓ4�{Vt#Bc]�|	F	�Ē�w��"�x'BS`�73" �މ�7܍�/>��D�
m�Q�jJ<��(����r�4(�ِ���ʜ�0]�iz��[|~y~9���֘E'��(`�a�,��yMm�R�nv_�b�2�v��v��
�a��X��[��<�o���&�����
ۃ�,�]�ɶ,� �`%���¡���܀j���򎑙��J�WÚ��v�P���o��Vq'o��0��W��^"�gV��l�k�����z_r�y��+
���z�Ń�{���yL}�C~[�!Wa��.��A	`.T�A8�[�sG~�HoOQ͐XJ{�~���'��]�xZ�J�Y�jN�b�N<�nU9��r�Z��_��%��iίȕ ����4��o�s��5�h�@R��O���?(��\��k�c���׾��?��6�f6����8���������
��^�A�}�E#"M�Ւ��
����������\�z�d*�{�!<���R��`����mI����t�">�k��>��kiii�~d��?C�.?9.kܨg�Ӓ�^�TxJ�p�񎅸�%Ș&6gy���!�s۳����_EgO���þZ��_����[�?�c=F���+�63�9w��~"�D���V,
��!c
���T����	��l�T�N��=�>���Vn��DH��*F�;��s�^�}�{�XD�?��S���085�i���s'Q+��N@T���F�X�Z�:��jal���Q�2<q��i��nI�mP�s�R� :�l�;v��kݢ��³3�ޅTWxH�P$�3;~���?w;.�	��õ�4��4�(zO�s�p�ٟ(-�G�{�ZƖ��k�`�Z����3�|�ƘL!oA(��7[�-I�0��T�W���V�O�OR�K�*M��ic���*rh��U��-�WS��c��]����-��ص�!Z��|P����\��`�#��c��F4l3�a��uô���p� �w ��鼄���a��m�,B�27��ߴ�Rkf�c6D�z��j:Fxw,�='4���l�sn��f�:&�0�p�:%(u��6�i)������Py:n�rY����������|T��pi��dV�L��9��5q�7��u�Aiޗ/�#@�j��ز�G��S7�%�N��xH�����W�b=�/�5��g��D��/k=j5%�����]9�/�k�a����μ��w6��o��E���}��M����>�P�o�_�?(�f�l�=��]ד�~��w6 ����Z�H�x���K��iiiiiiii���{`��t���-�3���S�v55��b`hس���כ��o��g�����fQ�������~�R}�7 B�� Z,��5-poH�A�iy:�E|�Yl�ϋmmm�RP�aQ鳀�'N?�l�Bu�H�� ��3������:�ۄq� @ٖ�r���*5Z�T1<����9-�A�j�K����[�B*%pY��eL�N!�ލ��б�&�Y#/^ƙˣ�,UQ����ca�d�������i!an��մ��.f3h����(Zz�#F��\s~|�,޻y9Zq���=��rm��`6�l�w�-���!>���O�ˤ����i�
������E�x�`O����Ɉr�%�AЅ���6mX�CG΃�����пj��~�p�'4Ƙ0�7,�x3r�S(܅¶�Q��=��.,�jE_G�����O�����>�1����G# �kd������<ݧ�!����'϶|���Z�K�qȧ�%vY���3&�<�<�sѪ̔��I}�ϴ=��!SS��`�̄��G��S��dnOk��֙3]S�q��ܹ��4%������ya��J��yi�a7����诫��{sj/-.5t��S�)��vxr���6	7Y�gL��

�Ղ�V3�a/��u�귮��,��*�A��@E�1�}9�R������2ܞd�X/�0����~k;��&���#s^����խ���*��k�����g�9�Ɓƿc�Tf�6+]{�ι�D2�e��6��nj�{Wu��G��랈�K�y�jH��hiiiiii���΁904������л���.��]wy���{�}�A?y�����br/��+�
PȽy�UB������x�?���]�A����?���f�%��q���lN��ɧw�N^��c�N�o�Ƨ��3;��k8�)���O}̳�	j�o��e�_�}ߺ_��j4^---�WV�gU8"X��#�E����e���'c��<����#��8�0�\�v,\�/��2��7��@
�B	�O�#.Z�>�XB��-݂�L��D�Q�'ݖ�<4���ܲ)rO�
��"
�"��id'&�p�5X}�mH�bhk�#`rlG�E���׭Evj��"6����鋘"fv�"*ϡ������X}�n�6���S�JY̻f{>�r(�=�bq�3[o�v���C:piAͷ����G4�%�V4��ލS�}��އD{+ʥ"͏!J׌H�
׾���7�͕��<g�a�Ɓ�
�0*HniMc��8~v��p��E(�������	o�bXs�{p��C��T�$����r�}��~�H��Y�M����Ε�AK�C�©f8�	j��t
�V�Xq�����h��)�]aL�
=",*�=n9^ӶpY!��F�!�P�_���
3�3��������m�k�^�E�9Z-��Wvg�W�Y�����xIx��ȼ}��>w��蝗a�ݕ8ڐ�sx^^��?���j�󇑅�Px�K=?�y�Ï���ZoX����e)<�y>m	���VU���ދ�I,)A����P�GM���}�!��:����j5�d}O�_�����b�uE��wa��"''�\J��^���E�+g�V�P#�شI6�0��7��}󦛦�x�<z�B����W
�J&$:�G����,����m�n����ƿ�"�J4ƫ)
1��������,z�L/?�+�ê���d��0���MQ�C�_��񱏼��r���В��>�-C��E���3�\��w��kpX��=~�(���}
��2�����u�O&��,�H9�_��D�r�ߴC�~�o�����/�/-�I��!����+��������V?F�9�uzt5���׋�E��w_����:�VKKK땗��}��:M���{��c�rDb��R�F#p��?h'�>�C�&Nta�M�Z��j"��:j�����J#BWOҩ��ҥ�"7&�tu#a��L�`j�Ή�=9Ma���Q�5L^>O��X�f�ȧ�jᾐU�<z
�#��@���Ƚ93>�xK
�_�`��B����c@f
%�~^��v7�m���Is"�+7��0�|�||��	+B����0�yd�n�O��{�]�<�q�����Qv6	@-�q3�e׽G��>6��1��T&*����nl�������h�`�&��@']+.�لD�j����#c�,��c�Zq<fF����n{�qO�iҽ��X�1�`p�X����/~�}��� ��i{���i[���1���7)���v�4`D2�q�m�p���3Mi�����{.�0;ŀl6�?����L�cӲ|)Fi���{ٷ9M�3�5�1g�L������c8�+]腗�[c�ڵ(e����x3�Z�4�[�x��yF9>y��
��6�N����)r˸Vs��!��I�Qo��/��!մ�R=t���g�к���V5 �!\/L)���E�|p��
B��.��S�<TCS+ޚ�]��.p�5��d�����>c�G��~����N�_��sQa�[�{�M�&�G^�U��hI��hsEvŻ�2�T����8�:I�k��%�|�)k4&�\碼�lԄ}��|�}}��L�6�T�Y�0��H8��Bbjiiiiii���_��?R
-�� ����N�8��?%P��,C_O�xǭ7�ĩ�8N/�8�8��|IxGrq��a�w���ζ{��{^r�z)�r����5��=ޔ^ʹ��צ��~�y��5�P��#��l0�>����1��Ll�z������j�0�(N� ��@����v�}Y.��lI�<�5�m��}�w>g��%_��m���^
<g�M0��P�`�O�D�`�a��`A���f0>5c�?3�hK%%��pO%B��*�8�*��فx[A�I����.uf|��KwcѺ5"��V.�A.�Pe��!��C�r��Kh�^�u7ߍ�δ�X,��4�R1�d����	_��st�16|�����g�=���
wbb�x��n]�!Bm�;��V-穭2��
�*B�,��.�ɷ�d�d��X���][�l}��c���p,���	lv������D��v���֮@i�LU�T/��ū1v�(����E��\b���e�Ǚ@p��~��y<��c��(���1l�Z���U��l��!�ZX^)'���̓��fC3ZUZؔ@�Ac6����T`���2(�dVk����/U#�����/S�]�в�o0�۔׺�Pj�0����b�2�pm׬����<R��`{�t�;(�\�\?�����4�f�IƼ�A/ht��LS���_��z]��͌wh���?'L���j�qŁe���2/d�z4F�i+�{�
��x`�5O�K�L;�-��n�
6=`T��tû��̳��_Ӈ�X���L������˄X]��{�0+����>�z�\�p����f�7��oh�iv��}@]M�z�r�_���a��26��V4�4T-ՠwvf}_�/��co��3^+x���������f���Q��<Dn��{"r��=%��Sg���S�8�[e�+oK�J.�������I�=;%����6?8�0U���ܜ�x^�s�L&״<��?�������&�TKKK�Tۂ^����(��$�0A�"����/��c_�*�>�4���0�mXw�-
�d��J�"��<����.4�0l� �@DxF\D���^k��hK�X��jExV*�����q�a��:Ř��2.�5�ܙA�,_���n�o��ڹ\�.
��ڃra���9py��n������Uxqr�Ya�	�T�8Nc��@�Bp���"�,���b��V�".�����ډ�*^<9  ]��
%�ߴm1м+��Љ�t�g嵸�w'A���X���K���b���u+#O��1��d��c���+���e�uh���-�־h
�?�����S� ������3�
i��y�ݘ8��N_v�M���5X9+�@KYF�ѳ���S�"w�c6���l�+��,c�ay��La�A`n����
hه�Ґ�{��&-��S��OΫ���53�nJ�h��I�Q�qr-d+�'��W_��)�Q�dW�򅚶'����/�:B*�6����I��K��Q�6~�����+�|%����iNx�^��U�-5_����{��j�z�̀�Uz1JoL��yR�^��I`h��[��U7 �'��y�rA�p�@N9	'���Q=��_.xm/�Ũ!f
�w���ǜ�
u��g�
忚�I����l^V�h��{_?T�UӔ�YՋͶ��q��F��C�W�������
*��+7lt�Q��exhp��r^�&����������]�K��p�~I����{��x�ُ�̽�扼�PU�R|ی`&W��R��<A�t�3��R�����o�г���(ưuˆ�|�ZZZZ���ߎ��	��?��G�%���µ��X��gĩ��oL�b����Gߒ2-Xfr��`P�8$;q�(
e�}Do�"��T-b��9�X�z,o>�C��0��k�Da����]����c�~���{�$Z[ �$:b�^���Ա��MMQ�%T�9�ڊ�7܈x2jy�������1#�����ex^�b>K����d�NdG��Y�`i�|Fƅ�܉l$���	>���Q�9�6]-^|�EԢ)�Ne�-�+��|��0��$��ށ���މA�K�ƲT��~J0�=�"��-��s�!����Xs�;������w~�^���5��o;���>���÷��D{J[�k�Y�ENL(��;^�V2}�4�r�kҰ�X��7^���
�ڍ�Ly���6�R��=ȼ�)i�b
���#��@�8��P����v|tڳ�V[q-�P
Ws}��@��p�<� $�4�r�Ք9m��YS�i�!oU�/m�,
��jx�P�'��p���5(�e`s���>V�ϰ�{��f�K����9)<��H{ߨ��2 ᥝ�Һ�X_"�GųR^�d�r%�����9e������
�-���
_?
�ľ�s���w�|�e��C�{��r�Q�o�f�͜�s}���Ӝg�F�7�qR�*�j5�٨�s���ss�yaco�ԺG����]��O��B�x�C�jiiiiii����
!�G_�O%��mWA�o��gċ?���j��WJ*�(�R8�T�ܚvn�_���
�R�^3�+�=6����asy�N>N---�W^��K�l��`A���q$���.�ŧ�ϗ`z�f��E�K�[��)4��!�?���e�q��9��-��H���j��l�@�0�T�	���
��d:f�Ŵ@���粘���>vf����X�i=�aXЋ�N67��Q%�9�KP-r(�G��[�0:z;	���vl#�5�*����ӈ�mON��h�Y�	�E����C$bf�G`�^̌��g�Kc.�$���>MS 	"DF����㙧v���̕ALˮEn槸||?�m��x�	��i`�]���d'Ǒj]��{Ǫ����b�nYԎ8��u׬���A��8O�)�Ĥ���ay��q�P:VZ�
����Gߍ���(��8��$P�4�2��[񏚋�I�'B�Z���Kl���m���&"ZmԠz�a�$���T�� i�6<{�=e�5�q�e�[M1�˩9��z���O�A�=	�M������`g'��P
[�<�Y����r��{��,�v��x���2�>kR�)�O3�KOy�eѦ�Zo)�В_o��7Zo,�k�|HB檔�\�{��u)�)p����"t=cM�x�!�n����,���ߡ��WwoF�x9�a7OCf�Z�P/c`�֟�lX�G4�
�hP��輆0|[_��֜Y7��emq�P0��ꉧ_�����[������hc�}�~��ulM|���ྖ�������k��eY�=�o�x(T�U�8��p����\<�,��&���}5��*�c��x����Ϗ�b^r�|���oj���'_����9q�4����^=��u-ZI�f\��43���\R������[w��/K����2��Ff�v��)�V8ٮ��^R�Zϟ?��dwW��Y�C���}Q19N��2�b	�ã(��x�DzW.G��E4˛�R*a��%�8�lv#;��̉�0y��r���7|�g	�v�:2���iM�B�r�b�bM�y)����\*�c��4
Fb�����+_d~z��"tl7��<��B0RiZۀ�/�d�o߀��(�S;|9
,�|7�h��/��tնF��	l}ߧ��$�	J��x�0��ˣx�^Uj>�ڊ�K@�^���%wQ���G��J4u����?^<OgGg�y�J<��s��7�js�7
bWB*S�2�@��	��_3�m(��cjy#2'd��C����~pl_j�\th8�V��s�zlhL1Z�&ѵx�L���ӄj�5�C��o��O��{��Ue
�1���p�E�R�2�z��y/:c0vk����xLy���6g��7��r����՜6��0e��s��������lRC��Zo|���)?���MO~Jt65ӕ�c�:����k��O���Rcxé���J}ȩ�8��w{��7\Q��P���K�9Gy�n����&U���Iu�m�$\���/~�NAd�_��_���m��ܿ�[� S�Q���W��i�<c׿�ZZZZZZZoP�n�b��O}��N~K��ޕ�3Q�<~��_��s�ƽ0�
�*%�$������W<<��}�8�1�\��vO	be�'N�mZ�C���Ś�:���������z%u���+��,FK{.> �=z����@�bmX{�M6�SȰ�c8̬	`��g�"��yD��_gW���3�Ø��Y�l����Cl/W*�EC�Q¤�U��	����#ؙ��D�5M����&�79>�cg.��L��`z�3?���D���?�)�غ	��a��gZpGz�f2��g�ݬ���P��x��B�{	�^s��I��2������Ә9l�S(�Z���"C�U<ۺ��y�L��!�
۬�@�w�N�!r�(��Z'O ���{)�z�����p|?v_�Ʊ�	�7�V�����ĸ�n�cg�S_C"$-wˍ��8q�+&֮]�de�8
��	�V�CO=���j.`�p�*8���9���c3���Q"�i��Z/킖���a��5�ĥ�PszB@d���*��c�	9�1���
���=��?�y:�p�G�c�0���
�j�Ձ�L���ki(-�JG>�0�S�o�3h��2|�[��\�m4���3�欖3�����f�K��}�
zZ�^
���!�Һ��{p�����^��:T�V��o�Z,�<scF
v���U��N�͠�,�Σ��E^��Z�X�f���:g��6������}��g� �ʗ�~���e��7��D��������m_��?v���A�o}��ZZZZZZZZof�n��?r�xqp�����xq��o�$���o|Fx:~��~
7�a7y�
rOD4���}s�u�F1>.9FP���ˁ�<D.��|^�ݙL��r��c�u�^��_/---�W^�O���`�øx��,����{?�@(��%н��b
 �]���$�GM�M�ϟC&S���
Q���SM�q���-���Ҭ"	d��T(��CAdr3����9C�.[��Gcrt
�N����ILM�`��e��.\�����WR�$:�ҖW"���j��A� �);3MP�QQ�;԰=C+�<B��!Hs��,\��u�
`miG���H�6��<{űK��|3��wSق�hb���X����i�i���6܈�O>�<��F��X�<m���QDi����߃�9��c�֌|�.[����Z3�����s	���Km���h��p��s������NƑ���5;�e��&�aKM�@dy�1XJ	�g�M�e:'��Y�um��TC��cH/�ƱF9�v�4�kE��x�9�����T�I�,�������&
S��k����*"p�
�
g�.�:��%H�0T�K���W#x�PU�˻��u@Yl5]�M���^�45��R$����u���]���FP�O���Ji���Lhx�u�r�Vf/3�vf+��|���>0�&����E/�-s~k޴r��mSv5�i*I{{�{�F���;�"v�����7_��/���?����l:��{1������������֛S�|d���@���Ћ��f�'e�ʗ����񥈏��F����֕j��زa���,���	sղEк������X�tU��#�IаZ"�X��	 �Zеt�}�{�����~�f�4,�"�1�R���aL�*�\����b��Q�Y�~�qT��Fp�M����E�ME镌d3ȔugNǹ3��L ���ҍ�p��a�<;� ���)��1~� �S3`CH���o�M�^�+6���&x�ˤ��w|�Uqb�d&����g�Y.�f�̨���e��+�g��ؖK�p�Y��=f�霚Dnj�B�^V���7����H�����5HƢ֊�?�w��H�`
a����-A~r�<�k�8���2d���{����}������[s�X��D7^��5�4?����Zԁ�wF �)Ƒ����'@CY�Ek6 �N��ݹ�Z��q훘��݉���}h��a�!ң��|�؋\�Ǭ��0dV.K^���m��N��
8uL����|F*��k4�Jt�5�h�8n�.���W��P.\E]�g�#v��v*�ՍK��d2߫:$Ú�a���%<�P���}4l���A�[]6{DŽ��5���2��8�����ߺ63�^��Z��.�*к�:A߱������?��M���Xʟ�R	�r�����M�3���-��)��;��w�I����/F�he����x%��#��[ �L�o�>�ZZ�l�|��Q:����_��s3��f?`d���MP�4�q��&���jU+����<���0�Ay�7���"�����2����4�Y��-5Wu�7vgzμ��p�]Y}�D��*��+	��4���s���b����������ޗ�������PD��ޔ��S&�a��#t5�;�	�;�Ȝ�^�w�/���j�kz}�������z��
��e.�'�L�
N�f��WCW
�#>^��J�}%Ƣ���5?�ikh�_�A��{v�h?@�Îr��p�ɮ��xǽ��C?��=�x`�Af{]Z�(K�2&GGa�X�jZ;2F#��ы���\�'�mH��¸P垏�wZ(��#[����̌M�Zq�A=;���8��>�ˇ�c�X{�q�/~&QR��ptҎcD����05f��,Ec�h
()��=K�\���⹷8����0��߄��%�9��m��Z�D��^>�<����a&֊'�_��%��oܺ�ZV��e�Q*����
7`�O~@���j5�h?C8@[�"l����VQف򉃘8w���0��=W7o\Fk2):�иVl����Y�J�X_�V9L0�M�T
�u~��c�˶�&90��&f�`��б��(eYkΦx�}<�'w�5 h:��pr3�^�~x)O[E$T
l�J����X��%�t���5�-q�����;giT��a0Tu� ����;�.���i�)6:7�^2�M��׆�v�r�Z�6�T��߈
%����\��X�jz��f����/����F����5�'���|�\57�̃��Xki�*���}-��^��5�Z�h�V�)f6iȜ�އ5��Tf�潧q�Mn<زٞ+��[�Ͷ�]|�6Ӝ�l0�|�����fO-4����G���������f�`jiiii�q�
��P3c�<y�yj�A/���?�il��f�?i�C�
xc{J򜕼^(��T��""��eV��p�2����[�O��*Oy�T+��qbb�R��ΣP��ؙs8s���s�@��Qd'�a"h�[��~�s���6��%H��Γ�n�?�'��.�:�c/<���$
���t6
�Y~�<�,��KS$��
�{��lѦ[Ku(#�I$	���:�*\}���(�{+a<{�,�����o�ՙa��2D�oKt/AW�}���V-�X�<�&_�p4����|�;H���)���д�4ɖ�_ց\vR̽�w)m�c/��p��m�ឯÂ�z{pˆ~<��g���<�һ�B8t��o��F0m�'jX)A��,MC��p��Of8�����%C��\HjZypJ��)�!��C@񦴷�獛����16Zp�jYpV�P���q�Vͱv_��R���b��x�տ���tA�RF�L�=^��
���Le�J�ZoM����{����W#��%�)=yh���q|�Ob�Zj4,��2<��\ex{�2�/��sɖ�SFn�\b�q�d�[7�e3�4-��/��sǕ��c<�;M�8jx�k����c��I�%�S{bu[����۟W)֠�r۟�K�G�d�x��dsH%���������z�JL----��*a3�Uqz��b�K���;q�G>N@m��i<DW���=y?�
��+Z�zl�б�����f�H8���@H��tK"���O�jU@���A"p�Dۻ�0y�$�'P8���L"�H����֏���['���Z(��|�&�z]N��gq��%xM&�Y��Mټ��k�h���5Mô"~r�+]��+W�N����omG8�F����$�Z��0�"l�Tp�܀�x��ekW���p��0dy�.�$rS�ٿ��	�%"x�]^/	a�uwb�曄����?;z�F���U�}=X՗8@m�)q�����!1�1?vH�y��\Ê勑����H��z�;+j*�ĭy�DX��6ಖ���-@j��ݛǻ���k�Vò��|��^1��27��k�NS�
�ύ@��U(3N2+|��w%e_��7�0��<��J�Er���5	�*N	�^�c��ɰ��g��ͦ �n
|?�+�V����e�޵�jR=�Uo�7���#���3���+% �/��Ϯ��J�呤��2\����2*��ex����?.Y'n�T��x��'������(^��f�U2�Ǻ<B��Qٴ9ָ��f��N�<�ޣ�='�U�q���3�z�+�+�ׁ`����M���y^G�t��3�^��'oc��hiiiiiii�Y�������U����xN��X�b=���]�'��9�r�"�c�������T	\r/�H(���`���d<&`/}��I�b�{���R��D�I��7M����R_�Ø)���gP8�����0�`D�j�v�!J`Ӡ��?�#\{�{EX��G�`��P�iC-�LO����8�"r����CH��qf�N��am2k�7��Q�� �ޅr)��?�&6��c��[,O6�s�`�+o��w>����
;���2(�(���zKw"M�Ys)�=�MK{�q�P( �nE� o��(V���6݂���b`jH�
��F	���^�/ف/<��9���cE{/[�b���t�h]i��ZP?2�J�X��J�fR�J��m7l�O�م�'cغr��⵱�|r���7�Y�|#��<YG�6�9aA]��g
T�Rs%9O�3ٷ�[��zJ����硓{R��ڞ��:ư�;0�ӧ�gSDS�x��1�pխ�S�а��M�.V�Q��z{z����oK6'ܑ!��L����#�1��&�̓S\���m�W`�zsK�w��䳈���[�C	roD��F��*v}�����^9��)#��*,�Q�m����?���	�����c?�D����
����h�bJxZ���˓��y=�o5����WR�Z�Hk/L�+�z�'�l�9��|d�����n�]��O��Y�F����n��q4���c��
���֭��Ü{�y6�&c`h܀l��~t*7�<�on��z|���ĩ�غe#^��xf��y�-�AKKKKKKK��*
0����������/;4�Lb���’5��a�{�3�#zE-�K����,�s�dT&���&&�0Y��g0=��гh!DfI�:
P�Z&��ܫ��A��(��2��1�����"ߦ�!յ�� S�zvHP�q8�ܣX�jJe�VǬQ#HR-�p��)\:�çc�5wa󻮥��;��l,�&rr�f�V" ªE��8�]���*<���Q$[��e�d�Hˮ���W�Z��P�9d��'dr:���	�q<g�#
aYO;r�nI��k�-ǎ�#��G��u������?FK��@H�@c$��[�E~z4T���q�8��1�D��LD�r�r��<%k<�oM����x�r�B�2 �2K��a��v(��o܂>��4�e���
*
��u��"4�
����

�Q��Q2�^�&�؞�c�F6&5�ǜuv-S����p�8?<uԧ�]�ȩ-��e�\��5Dډ5����t=�W!ທ��l�Vk0��J)!�\3���eTe�gCy��<��\�n{s���'���z����]m��s>rP�Li0��ū09t��R����v.5������D�/�f�}2䫄�\#�jb�~o��.Ux�j�Ch?���zIRO�Y.�*73}����^x�o�p`s�	�f囍�3>?)��wm���A�K!�R.�ν�&�+���L������Y�B|z	ǐC��������ꟾ4��w�t�hc�5/����������A`jiiii]EY�WJe,X���x≘�^,��%�*ઈp���!�pHG�eph��UP���P(�`xbc�C�X�\��H�"�L�\D4��KD�^l5�����MϠFmL����X��,�r-N9�r�!��ҕ(L�����ѷ���_���'����l[��7�E1>t
�S�#=K�9ܫ�R� Js�^�"�*m#r���u��:���A��0jpK8Jܱ�xkɅ(�g��<,n-���(.~=4���[�Q���A�֖n��ilݺ�w� `�d+(��4�qfף(�H�$ ó�<�l<�!sK�c0i偳�����k��y�Z�=q��W���qLG�c��Ƚ/y~S�֬�l�!iw]���m�ߎ�xąop��a�y�^��|����r��]˜�z1ڠ�n�5<{mP�
�ag��U�O���k*�U��ٜ҅�.(q
onX\��:��y�	ê{V+��5맛��)m3Ӂ��T{���9��'Ք����Ue�K))�^6n�>��Hk�g������KUW|��_ʉ�_�������WR٩�s��䞕����09�|�k%D�0������ޛ�����Yk���R�0�ZZWA���3qNGq�41����>s�ܼ˚|6�4�]�;�!&y/�&���b�׹y�f�w�fO��kׁmӇD�ʚM������_���܋+у=���a|��-------�7�4�����Һ�b���{Q�'E�RKJ�"1+l�R����Īkn i{pض�J��R������\����P pW#�����:t�,Ƣ+,4�%�����HH��H`s��%2SȎ
#�ڇX��n���^�ł�!�)#����F]Џ���6�5���8�.ۇ�(���a���Q-L�ԉ�&�Nw!?4 B�iPS�chi��7y�H�U䋬"�`���T��c�>��w܃���r�	���t;zW��h/yQ��Gj�r�0~,�v�����ƣ'�61��e+�񤳻��p�Z�ۑ�QK�����p��ND��l�5lo=�=!� ��x�M8��C^>��x?	2ܻv!T��&����t��ÆbLx�Z^��@���ԒJ��+���;��nF�{k�����i�y'�<L/�!��:��t��c��=��N`u}MtТ݇�;03L���&`)���f�����y�/�����1��L:6�3	�\(j� ��k��i�1�ًk��:�T�
�a�Uפ���T���z��k�+_��'l�:���q5��R�\������g�S�T�6;o�zz���c�K��F�O�4��JH=�W���#Sy���
��k���\m��.��mΣ`CB�}���X̺��)�['o���{�2�|�m��粭�3����f�ۜ������*<)�z�tϫ�Ј�}��x+iߡ���������֛D[6�z]��������UW+�>��[0��]$�y"����ہr5��z-xĽ.y�` �����A�K�.A���"�,]) Z2��þ����ɣ���N3�(�XB��33$[�޷-��UJ�S�v�H��ة�K�MO`��Aj+���A��9�%���w�����Q�e�-T�\@�"�Q.,������
E��c�f��=�����pj�Xq�-1�rS��(?�WmC�T��)�Y��Rn���ќbH��n|F�����/�?;4�X��l�x��8����p��Flh��6H"q���]��o���>L�<yzw._@�7�j�*������MD�d��.���%�d7md��݁5�xj�a�m�Fs�e(a�fȰ�*I�$2d×��y��,����[b
촁,sz��x�3�1��
��!�$�vC��!G�zR*=�5�9s�j@�۝�g�r
<5�Æ�K�Gaq؜�8�:ȼ��u�s��}ڸ?S.�����j�y]ߣk��2�\��<�{c�U�i{XrX�_<�埝j �>��*��'+�CS���=Ws�Ӿď!�|�:���+!��]��Ӯ)Ԓ�3h�،r�_����ԛ�9
;މ�����f]7���F�;����AP֠Ε_ϙ򯿭���i��GK1��7�q�O��į����~iN������W��Kx+jղE������Һ::q�^�W�-----�+�pF���dH�r[f���~H@/�57ރk�~�����L�QDV�}�krl4CFC���=vN��F�VoB�`Z"��G	j�M�#�2�*թ����C�.
P81p�>��Ɏna�4��
[a>m �lMȖ��a\��2N��0FϞč?��b�-(d�q��L"�p['�\a�2��Eiz�`5j.2�o��s�3����#��|�<O
#$ fab�����o�3�d� �LY�9C!,^���v���!Z~!9E�_Fyǣ0;z�spEZ+�*�b�j,h1�'l,�i�ꦐ�Z�c�<"�V��<o�Z��s8ц��߉���9}�'�x���]����V���ʹr�"�k�0��RY�|�h��윔5��n�2�+�s��b�Āk�w�2�H'��,g(�7z��ѶF2M�YFE�%Лr�9P9�h�%yV�sô��֍��bu
�M�\����:�/k5\�19��[%�Acv�~kc�����ǃ��� �Q�B�v?�~������@d�_g��b�X����R᥄���$&yh�O�q�	���k)�$����Z�z<��Jͫ�o���\�˿y5��h�S-��#��i�0(�{Ѱ��f���Z7�Y��\4�t
���(��b]����bMj��6��������T?�Fu��j=CU�
�s�%�<��C�M�Jx��ї>/�jiiiiiii�٥������U��2
;��S�����O�u!��#�jA,��<�F �diV1>6I����P���e�4+5��]��񼊡�^�d!��m�Q!���)ǀ�r#��P�Ϡ83#��r�KƑ�� 75��)n�����
A�rc�(όa��~Zۨ�F/�ąs{qv��-��U��}0	�-X�D�ze,�ڌ��0���J���!wZ�;AcH$����6ݎ��'q��K��I	2�p���4��[nC{�b7O �	�7p�)s�;~��`8��)��_�	)#/ڊ�����!sO�|�����qVhV���o_���l���C�9���9\���q(/K�ߓ� QKN�%%�6<>�gi�܋��@Y�3s���v=�/�١qω�th�"5%ۄ�x
�*�r��2���'PR�ػ%<��Qk�M�8�ZhR��Y�y#�kAu�r��28{�
{ej�]P@M™�����4]��韗ayx��{Ԟ����Q�@������M��Z׻��w�ź��K�1XoUc1�e0��w��jV�-�����-�x�K�CK��_*��ğ�p����V��s���_��!�f��S���<���}~y<e(ZAy���4��z�d��(�~��)���^1�يz{hzZ7!�&�(��^G�3ND}{�.�{p��:��T��E�(���Y=0M�*��np
��K�C�W�U+��	1Ux�=/W�\�+����������z#J������Һ�
y.�2�������O/Ɗk7Z�V��.9	���a
���8c҇d0��f�fyR����42,,���lkA�Z96E�R�IC?�ȐP&P9.<����y�;�@��9��f� "3���0}��ND��$ȗ��q��x�%�^�*��ΡF@rɖmHv����l�F�Q�"�.��MD,Obrtm]�H����˖���܅s{�3?5A�����e+	�bX��.T�Yh����^��"��~+n��=�bpۍx��Yܽq��N7����>��N�z.X.�~g�ƊM[m�YS`"'f�PA�P��=})�#Kc�9+��%aQa��!�+e:�f@��7��o����k�,#��P�U	tb]���ܶ?~a7Zo����5l8�c�����X���S��uP�t˰�����5�Fi�t���>�ǚ��QbT7��iG4eJ]���,G��#�����7z���`�?<�w�н�jx��6����
��s[E�r�P�9@�I,���ds�/��N�'�y���y�_�x����?y��x�;v�9���Y����-#ࣔ́������#�j���'�V‹?(c���ex����x��^1-�hV�jH�_��e�z�<�^�_'�����C�ӹ���}�sGš�gM6�F;M�H�?�풜�g\�U�,ϵ�
{�we̓�f��͚�wWm�+
_-!��~�+�į�G��>���^��o? r^&���/��������ި�SKKKK�*�	�xz����D8ץ�ފtkR�k�ab��CӀ�<�*7LO� _�
7��Y^g<����*�؉*���޷��E#�p�K�j��a��%��Y�f�W$�}�r��w��3����`m�P��|��L"�lC0тDk+�t�;���p�)�Q�A��e���:,�g-�fP�>J����@�0,/T>a��ZR�v�5x��G01n������q�'H��}�ȇKw"�Bc�YK+�b����o��'�'�C5{a8�=��GXy��;�'�oA��ܴz�X�h,�m[���w k�5�u&����;q��b Ղ+V[Kx�ČDB(��Xq�;q��o�x�"��y����	p�R��0A��?����(g��'�����?����ML��B�3��8�f%����[�w��l:�dY�d�X���&���<��٩�SmK�
O+�1V�`^����6\Z�lD)@�Ve(J�@�7��
��h�ЮsC̊��pU�z5�|������Le"��ԭ�ke�N��(۩�����r�&D�o�)�H
��}}��,C��"Ĥ��|�j�_���+!�)��CF���g+����}���{�}�\y=絴^	)WK^�?�{��cgEe�rǠ\�U���V�$s���h�;�`<�&u��h�ٜm���R��Z��roN�hp��ZJ���J�J�Е���$@����'N����v�;��[6���M6VKKKKKK�-'BVKKKK���}
;~�o^rE�X��T+�I0��O4,��L�q�800.�'9�,V�q8f<�!O�Q�RɃ�B�hpsm_Wd�;C����%��c�#(e�Z�	(,���!�҉��A�E�WBaj��A��� �jE�^���;;�5�
�P<�b	�DZ����y�U�����B�p�[���ђN����w#X���Ĵ���c��|(�B@�.�F�lo0�O�`V�P����Z:���"L�&;���$��}bMO?�c$F.�x��OWp�Eej��4��X,������0�����&̚�!�V8�@� f�@s�Dqr8�A�7���K$�|j�q�	t�>����;&�t�x�Ð{�r��A�ܰ�;�}֭�U��ם��dp'�*��@T�l������冈:��lvM{�sR���hǘ<v~�h���S5$�\��̀I�
OhЮw�����(�V��2`�����i��5��=V^J�K�l�<T�O�8{����O��ZZ���\��+��Q�?��jՓ�T�L��*ym2ՋK���t;T~�Bͺ-�q�������S]Kvy�,"lx ������1l|ij���F=6���	zH����T�����yU�\yY)+'��ۿ���p���{g�x�=ӵ������ި�SKKKK�k��9�p��7^�X,,�.�������d2��b�J�R���Lц�%�!s2V��bk6���&�;��ƽ:�����<5C.�Bm23�
����A��˭�ݸ��6ċ��E�`fˢ���w���H[;!2��ct��ydN�Śko��?�A�"�A�	͏�?B`�D0�'��"t��1�
���-hmI
lā����2�3��Z�>�"��o�P�,֔���W
'+"��XC�1���R��_���̎���p��!<74��C�b�D
��k�L�!�!&}Q�nx;N>���[�i{��%!nG���w 36�T.#�>�D�C���Q�<�'h0`�0�&���S����=�ŪM�L�$��i�W,Eiz�/
�v6t�lU`�)p����o;+g�
	�
Uv5S�kn8ISmO}���t"���\��.�)S����ҿs���s�*|%$�۩1�C�����Q�NY�ݫ	dÆ���5*^p����NH�<?ç\-'Gg�jT��:��!�Ճ�h�z�H
+�Z^�Z��8���F{��$��n�3��?)c����xB�s��o��R����y�f72�Ru�P�8�W�w��~���k0��3�
a�ǽܛDְ�Ӹ���S�
��c�J��՗w=��c�7�w���N(Y-------���4������z�d�-�X�m�C*�6�ࠒ��@(���)���e�\�B_��
����YQA�Vu�b�ji�E����
5,�/_C(2��_9���]���hC8��èLO ѽɅ+�	�Ŭp�A�������l[�����#E�/	c|rZx�&�QL

������p�'�4쐹��1�[�e(ŝ���!dg2"�jK[�@��F�t��m��]OcrtLx�
f�C�2nq#I�{	n�N�"h�["�m$ъr~�<���}(�����08� �{�v.�Š�V��ƣ!���T;�m�ũ$����>�t<�� 	j?K���0,�+�r<\V�R��P��(�g$&�3�sއ��]J�g'_~\����_�{^��t�������J�|t�4՛@�?�N(V���mʬ)
�v.�׬Y�I+<S\"
�
�����1!sf
?b��҆��X[4k��'����Q^+��)p�u(`�A�|���S��ʐu�O{;h�}�+�3]�c�G��v�߯��@ް��I��[�!}����W��zy��A�����J�g=���p�֚�C]�!^����L��e6��>��޷��нicW�TM�k��P& o��1��ʛ�B���+�q�J&�r���������z#KL----��(��!,�|�:[-$#
%�J咀b"v�R��3r�c���!C���
9Z*�`�–��[��n�������P�����4
�i�v�X*@P2��ޅ��������c��-"�g���fM��D��Dy����~�n�΂�-)���"����,��؋�G.R�ܣ�
Q[E��e��Q��&E>Ky��0.���wq`8�B6/�=�'���|��>�{����1=6N<�Y���[H�F]�7��f+<,�)75�K_@���5<zj��"�/!J�u��MP�g���A&��+�VK����,5\��sW������
�V�_G�ֿZ�V!�4G+�iU����q���"�A'ϕ	�i|f��|ϭ[��S�X��6ԓ�J@=�г�M�2�j#ی�$Ҵ
h��v<1'f{::�)C�l�2ňՐlz�ZM1ީ�
����Hi�I��!<��Mc���M94��2;l-�yX�]sd��=`�&�zh�_���T��1�
�T�WD��O�9�_�96M�ki5���!��S�+~��Gm��z�R��1}�� �}[�F������嶧\�ԯ �J�A*����r�<�Ux��:nz��eT
��l0��/w\��C�`?s��!?�E�}W�>��}o'�g�/%/k2��*}�/=��Ւ��������z�KL----�WD���d��۾�*�Gt�Xp'
�����8�bV�� ��/B����T��;�e�Z� �)ʶ�H��"-�5�Q��?s�`Y�̌���@�Iu�5�¾�p�з�6�-Y�T�Rt,^�\M�{��3g
Xw�=����X{[:�T2��,&&'qb�n<���u��9�*Pn&0�Q�r�Z.�o�Ʊ|C�c���K�ES)�z��8��L��m�	��A@�D�3����8��1=:j�+'��Z�N��"H�[q�K6\+�%�03t��Cp��ȔM|w�q{!Ǻ��	�f��1h_�=���ܡ}(��
#�Z5�Y��4"W�8�"��8v��f�1;���h\,��A�D�8��?�ɗ���-�P�!��J<��;�[�<�4�U;o�{VA��'i<2>o����a�W�����H����e�]��
���4=���zA�z�Y�7guF4��RBK>v;�%�q>����˜y���ƻ�&�����بc�)��nM�t�c4�u�k��H��T�i���s�j �uUd6��y���p ��<��
����t�+������S�Xc�˺6$��=0k5��l���2�7�\���/'�RGB\�M�L��r?��'<�]��o��M���y@̗C�5k�j�X*��P�ZZZZZZZZoui������u�>� ��p�v��[���5�$C�0��Y�b����B#c�Ih�zb8P��Yq;@��E�{��}�VO[�JU�� ���Jrlp�@Y�^9��Y�gQ�M!��G�r-ҽ��Y�-}�Htt����|�=+7`��߇�ŋ�G'��Dh��X�`g��s�GO�C�Ju�4����2�b�qږ���%[����ྒྷ��Y�.>v�b��-wߌ�Kg��h�H�%��Ec1�:�g�F�~�'"�+�!>/�Ņ�_$�p$
#��V�F"�sf�,F���=�b$�����]sݵh�VQ�枘�~0�x��?&@\E�TE�bQWS���!�*�
�8�tr#ZY c��8~�ִ<g3���?�2N^���P�jvH�3�Nc�����]�VJ>�n������fmr���A�4�92E�π{^J��0�9��p�d�uO�3;�r�]S���X�C��O1k��>&L����T�o�^��̳O]#i��ow��A��%�0c>�d��6BƠ���K�z�j�7��5��KBV����t�Q�Q)�Jh*p�Ĕ��}H�)�̣yr:'ԫ��Q*�{'4��9�4�@ɪ
%��}�慕����e�oL�3�9%���M��Ж�|�ӘGf��v*̹�ғ��d̩�m�)_*�f�}m�������z3(-----��-�Y����-[,HI�+DP.�Xɀc옚& �N�`̡�&����F��D*�X8"A!ښJ�,������
٬x�ۢWU�&��ΥѺx5��m@�5EP� `b��Cvt3��-�ѿi�m��Y���[��x���çQ�+'�@�?anTDbB�,�?��.��^�bK�s�n:;�P
'�=ݸ�m7���v �p)�q�(Ӛ���[�VD���a���A��q�Kp�@m$�$íEq9���O���/�G$���ك�V�X�m��<�}5���1�l݈}��"W�"2D���[P��4�9����,0m��|��,�˨�V�S>n�2l�Y�gM&�����^��=5|�����/~�wD;e��>CtLKTf�⅘��G��uK%����cT2�W�!\Jɤ�Ksl{�]�=Oi�P)�5M�x%��^n�N������'�mC��`��3���mK��mT��l�ǠD{��/���O^ϥ�w�
��:g�K�G��߸{��i��Қ�����h�1���5��9텩��e:�(p
�������zP	S}P�}P������퍷2��f��K.���}�+�l�(�7�:�ެx�7B̹/k������B�/���$�d���(����`��Ti*�vl�;+w��w�I�9����g�0��{�D,��~ix������������,�8���i��J�[p�{����`1���l��ZZZZZWY�Q��T������5�f�$4��!I	^�?�w�wӄQ��Y�j5�,��/w��"���seʞM\>wU�_��b�0�Z9'r-��)�m���nG�--�bc'�`��)t,^%B��.\$�c@��Zf
��v|������9T���Bl�� AEn��xL�����&_� �/Dp���[���;�`bjƁk�nҵ���y�/!_(�\,t��ܐ|�ڗY�:�?�C��%�qǗ�X�#H@����ޙ�%�L�|�4��U�����S(�݁�c�1G��Cr��fG!���+oz�����yj�90�h$?�f�܆�;�{�iɡu��3p���c���Q��1�޷|}CQLNLܮ��m W�Q=S����ڴn5��ř�I�,��4��@����<O��¨ӱ-�pP��d�AK��j��B����=8>�3�ᗬ�o����i�:ߙ��9A�M�S�é���j��zE�B�5'c�6M43�6��ְ~?jh�Zs�W-��I=�u��7��8h#��Փ{�7�4g��Y�dy�`0��O��v!�I�y�T^��Cz]V����U�^����Z/���<�h֬�js�4Dʽɑ���TM�v�Z��^z���j���1:�ԍ��D��z/h��o��׿Z�G�{OKKKKK����~��੧�}]�K.>��ƿҸ>B㻈7�4�����Һꊶvc�5�1	hA�䠍v�E�a=�]-��"�b
!���C2���g���[���l��I��M!�����"�
��nD{�RĻa���•�%L\��w�lúw��t�l�ք08ph�=,�.����~����	\�;�pf�|�'��0U��1"1��1ؖ�C�liGm��º�km��;�陜k�x�&�y�M�132HP��H<�d:�y�{���F�����`T%�P��p\x`J��AU2ݍ?�)$ZZh�bEc���1�Kg�ٷ'
x��k�tG��[7����y�t,�q���Y���2��9��!f�}a���<�.Aj���_+�X�n�z�����޻L�3�^�>�`��=#�0nq#�?O��XN2}��ló�>��|�1Շ1u�ڧ��i>C�iB��*����f�jP@^Y�$�K1bږ-+'$��:fv��n�f�}M�����x`:?-�`9#�}7��D�8�e�yA1�}���v�B�Fy=��l(} YK륪�'��S��5
���ZW,�62/|d���R��m�x�u��
�h�k�1VYWz�{���J�<>�^�v�e�v�L��(f{���d���y�|#���V�����g��IU���s�e�>(��3�FϿ���<A�*^)�ohiiiiii�2��������GY����7�4�����Һ�2�f�mX�d���
�j�� �G~%�L.g�$
��f�Y�
�g!\"<�Y%@Vm��d,�d"f�i,�6��+<�LN�3��{lA��5�ZI@5E~zg�#�/c�-oNJ�#�`��E���F�2��O>�'~c�!XFh�"SC��P-	̆`B4�
���B�x�gU���q��~����ލ�ǨX�t'���dsEk��'#_����X�v��
�DBH�b�VL���ͷ#hp|������OM	�" ������4��(B���=O36r��qp��珟�L@T'Ւ�M7l�%�C�P8��1<�]K��n[�<U�<3D8��!biW2O�sP}�mw�η�&�C /�Y�����U�"��TFWj<���۷��gw�mچ!�f���wbJ�)Ad]�FO���E:��)@��:��ۤ4r*��8|�P(F8��a��F��fXE]��1���B'��R���U���5B��2���?g��_������)K�-����E��FT�o�X)
��^�L�L��^K\K�����=c�m�S������O^c�]�Xݿ�+�F2�Zl��(:���O��sտ�}��ެnqg�9��zn�<�ǥ	'����hX�G�-�ӧ5J{@&$솻�~�K%��u�A��ZZZZZZ��x��x=���}�IL----��,��kV��p8 ��Ë�“��U��L�f��ZY����4���P.�a�B�-nj�����|��{!����xQ�2��s"dl P�D��߇��p�~t-_��wލdwHp�"�C#H�- Z��#x�'?��Kc�>���b/��Ϡ���ǨE<��bKc��'>�~һ�� �ar�"��p�C̶N�8�������.d�%�p�<���Ɛ|f�JE��M%x�+������8����DŽQM��/�km �`n��/�����^�{�H]@yd2e�8l{��mmG7_jh�vad����|�����&�+�+f�ʍT�9�.��&���6D���n��:�.#�i��q�\�!�/@�8x�w&",05Y��"�l4ǵK���{�s�~.s�M�9�2䰚��b���:�~��3����?�ޣ'�6\��W�C���zj��Hp)�ev`�s���;�BU�njr.�Eda�u�g�7]�Ș�ہ�ڙ���"�K�)�����l���r�2�<ǬmvZ/A~c�_���7�n���8�jL퍤u5�KF
X��x�~f�	,=�������/�����t�|O{��7�{pf��U��{	*�|��b>�R?TT7�J�U�l�JۻR��.����A}g6�����4$ܶ�Ù��^6�r�W��S�b��!_{���)[��sZZZZZZ��^/ac��>��� ��������B�����|�T� Xg��3�S*�2�f���b!�#iX��*��`R@NB�\)� �%�<�eg��ܳ��J�	�Ma��e0����}KP%����v�[��︉��_y[���g��"v��QLfK�&G�M�$�Y!��a �!�YB8݉p(!`�e࠽4�p<i}�r����a1���y}�~������)�߆j���ޛ7!
��p�D!����0�G��ݍh4"\�r���L\w�G	�~��+O�`�cj�%!�e81бt6�n����Y�=�3;~��T�K`7AƶT�-q��1` �Ξ"����Ӈ��n�ޟ~�=K`p�L���wRW	n�0��h�3�"��0>��`ltS���M�,��`�΃��e����&��+���s�$v=��.sO6���e_�.f��)��i?o�Ib�������=���9�8���,D���֋1�>j��l�#?jN=7�*�[�O1Y�ф�rvő���6��F59é%&A�cLU�K8Z�bC���l�_�c�ưZ�9j���K�<߸�^�s��{��5�x��S���<�(�ޗ7~�:���_�h�y�u5dݓ��z
g�3U�׫z$灕>x	\��rM�?��]��
��4��9{&i�lБ�6�����6Ȕ��>(����g�+��о7�|�/b6�5
C,�����Fkb�}I�J�J�B+��)�;)H���`��w����-
	I�rc����������5�Ʒ�����ɩ)|�?�׾���;n�_���7�/�hM�?��a˖�������˿�G��[Q�/s----��.����CŠ���||��N>i��Tl�P
�|�*GۃfP �jkvZ�_�@f"픋%���ޙ������&<!y�٩�!T
e,��.,�����9���Y���s�&P����,��˂
�G,;�J~�RQx]��=�'m�	[P���I�9D`r�EU�<F�B���43|G��!�R-��y�ho�c{N���s�
NO� �cݰ,�blpH�X*�D��;@ v��?���E�'��
'�����s�S��g!Z��E+���ڟ�������c�F0Q(ڵj�]؋H5�R���pgmKV��r�Lq�[��p�T��G��Ӡc�C��<?�
�r�H�[��>�X�j���y��f���댨z�"-�k�P�ʕ+1v�.N�(!��c�rr�)�s6�O�3�e��9t�8��������wqb�F�6*�TX?|f����OB�E�6,V��F?�xLz�L�F���omf�2s�Ȕ<~ң#`����Њ��Y����z"/�i��2�����Q��[��Ѐ�1ػ5��z����U~w������o����Um�'��Y1:>�8��O�P��6
K����e*p�ٻ[�Fu/�x�1&ù�<��:�_�����&ϔ��ж�8U?�aQ]�f�avnJ�JnJ��=���X�'����=j���<8������-�2κ��A(S�Mz`2&�k��ͺu�"���}8���+�ʘ��001�K�S�s
CS3����=���o�l�@�����������:U��#����-p�K�?��_�ч �/Y�X쟜��9��9��z����]�ׂ��)Q~׎DZe�F��=0�������8@4�D �����ܘ3�ɣ��]�K�*5�#+hDlC	���:���=�«�����.�Dm_:u��Y�`e�D
�	j���u[еr���=�*A��Ù��(�Ю���	�UK�h�q��!`G��F4�{�R]## [v�
�E�WF��FF�0?9�@(FC%�)r82L��g������n���4�}��k�
�Dnzɖ���m�Q|�y\���E��'�4���
���o�|�[��SX�|��ҙ�fۄP�%�F��7~��x�{�|.��C;�Me&n�<�{�-ΉT��݈�މJl1�	�NLпa����c�x�C[:*�#-yI~�#�5a�2��ՃO}�����&�<��錨�a�4��'�
��#|�s� �ۮ�CO>����H��S���0eڐ�9(P1�1��8��ޏ��3(�S@$	V��q|q`[�o����q݆5�G�R&��[���W��! �ɤ���N�/�簜���q�(`r.�k2[y�����s����3����+#���������x����ˇ}߹h��
����~��<�����lh_��Z^�n}�	�em�*�Ͳ�U�j״�߬����F[����4M������3�9X�S}�䰄w�S�ۯ;ުU���z�G�f�q���2/�+�`r�9�5������6���@�@SK�H������9�;��ҴA � ����_;��LX�r�{�ܣ0��W�P�&��t��A�1eQ՗х��c�bpr�׭����l���3��;{�\
�������ؙݛ��f��
e��O��\Vr���2����^	�ExZ�\�g�u���������k.�U���#��H�u�t�"g����B�x������?�˿�'?�s*7�s�����9�|���'���w�o5i������u�e
��i4+�#+��UL�JN���l���?��N({�t�G",+7j��d"J��2T2���NN�arl\<y���$e�5�+o݂x*�����=7�R[�p��a�g	DFc0&��Q)�Z.Xp�Z�I�é6�S��-Q�G�����OIy(�DR�4�0j'K 3|LtT�Z*�}�X19p'�7��Ʒc��6_�Ù��W"K`/���<]����S�b��%,X��D��&�[�!@�.�|&ϟB4E���6�sU��d��Ek����a�C�Daf�� Ek��� �3���E_���n�㏿���C�PB�TŚ�߁ݏ�/<;���AF�Z�*��a�[����K(�5����߿?�����d��d,h�Vnt��I`3
��A�E���ۯ߂��~���y�U�jc�	!��:�1ǼS���4��{?���B��1�@�^�7��Ξ��X�V�<s���њ��u����Pa����Uf�pc��P�k�TwX-��2��A=c�͘Ue�~���
�:�����a6-����mX��X-��*?���a���E�k��P��z[p�c*���t�sr2Z_�����Uς�U�[��*T�r�I/��r��>< �a�c�w�5&�3�sMB;ȹ�51��RgJi8k$�d�S�e=�d;^)�ڗuT�j�}��R!��i/7��=�R�;��8���RA�Ŗ�ל��م�R�!��z�P�YG�<��t;��x�C��Ĝu����`���l�<w3����nԬ�O��l2�;�3�Y�b x2�<�&s��}e��:c��e�拹p�aY�`�1B=��ש\3��%M�t0it��ؼ����������I܋���ȹ�)��3S�K�s����k"��lﭢ�`>��cؽ��g[2����^�t�Y��?�E��k�GC#��|�����ZZZZZ���&�_XR
V��	�gx&W@��Z�(��v�X^&��b�r�,�U�c��8;[Z	��#�i���t�8�3�[�i�8��6t/_����pZ!Ty����ۋ��1T�0X96r�r�B�2�Rc����"ϣI��g,�����zU,�eɵ�d�+�^���������bƸ˩}\���4ϥ����ݴ��w90{'�
�7�v3�{�i��]�-y33��d�栱c�R�}�>�tu��E� �!,�R��'� AA��w�:lȽ�xS�N"���A� ��il�=y���x��}H�,�u��|��L��!)�������'.�w]O3(`&��l�
|�#���K��Xr47��:�
xيA[)�:v^O�[�ƾfQ~��n���� �:�'q��^D��G��y����<���P�9�c)�n�Fh�08:��˗�^�/���)�@Bi`��3k#�+��I���
״�欔EM��Ij{>����8�hn�r�"U������:�B� �
Z�8&�����yX�=�$��9��$��r�e
j�ei�Wᦄ�*��-C�ʶ������ݨ���3=����}�r�|�TOEh��M�Y�K`�>��U�ڨ-�=Xi?x�6���|�"��o���ˑ"�0�5%�)�z[ùm���������[���.�sJ�0y?3�=��.oS�H�ǩ�I��PM�9^�[�*n*s�9�����'w^
��C$�yM
K+���S��XwIdHZ��yz�z���w�`��6���Y'����1�� -----�7�d�X�ϒ�#��O<�>�	b�mD�r�����=� ����-`����gv�[�w��8y��_�o��g愌�W,Ū�0_��ཊ�hiiii�:^�d�4��]�3Y�FN�b^	`$��۷��A�-9�=V�:B�z:��m{9Z.�����ˢ/��ط��R)��+*G[)���8~������.fD�M+\�I�/�"�օp<N��h�7�n�(B�"��ȏ�F��*�L����J /�J�͵���� �%�a��(�<�|r��!M`�kq��$6n���47��c�0X���nlv>�F��лp!�T&3�ލ�t'6�n�7pӇ>�tg�kl�~{բ!k�,��P4���� `�g��c{�#� ��������t ƶk���'�ұ@�\�)�;�e`��2���JG"��Oi����{�B����Z!3���nC&�,�}
�`@��Z�0�t�ʖ�j�u�񼫳ã'��i�*{�d�1��mE:��?���{���4'�0����RT0ၟH������ߝ���+�s�a\�e=�g������
�"G��6�5�Py\M�e1|I��{Sz^������#a��C4;���kx�cM͉~/�F&6��m�c�����jf>�
H��jERr��x~�ބ�7�>վ��r~�'!(�.����֬y`��~�)���s������ɷsh)�I�����\+���z�yY	f��|��i�����z�Y�M�w�t.��=�zOg�~:�J^��nPᗙ�z���5�X7�⺐��u��>��JH���<0��ʈ|��;���;>'�$?^v����iz�\z�2�p��z��k�;�F��]:	�T�8���_ɬ{��R�O�iiiiii���=)��k���/��g����s)������~�8�8��K
?�V�kB6�L����?�����}x���u9�q�ί�闡������H��o*��1�C�B��0��3yN9E�D<i{Q�+��+��V�̖h�TB��9�CE�i�G. �͠��"0�DK��j���,o���gp��aL��Ĭ������2d`�B�ղ��v�d�$�)���R툵w#ڲ@L*3p2���K.��9k��5�!dWlY+�/g����"�,h5��c������ڄ�;�t�+7���0�.���l���ވ����(��;OF�ф{V&�����{�����1tt����&AN�����'�`�-��]=�.݅^�i@����\��ܱ�_�h�'��v�b�;|-�}0
+'_B>m�ڌ�u-�����a�����x,�w�y��!B�����n��f=�/B��c"���2"��E��!`���0�r�2>v�.�bEo�mcsC���y�!|硧1�'#w�Ρ/:5�
@�\�Vs=�э��7nD<�őQt_���^�i����Ť�K\62��V�'�"j�z�%��yAK��R���]P�7ډ�F�,��c̴s�6���Ӿ)���z���^�I	��\�6��%�����m8%�S=�uR����
2���yH���Q����<&����c�coF�롮�:o����l,�Dz1��Һ2��ҋ�KC&��ҁ�p��zPg�@�3O���i�����{��2ܬ���u�_�`R��l��v�����f��ݣ��
n6朕l��S9d���z��D	�=��JӥVw�k�l���Y�Y`���qL�O�^S��������z=�{T��_�5&��zL����90O�#<0����v����kS�vhY�7��Ȕ}�^|�������z�F�G�g2Y;�xzzt	�)���>���^��}�A?y��u��E �.g�������p�-�#Cu�_�o��g���/�?ְN�v��~��XMFSY-----[b�HQ�
�ɉ��yȤb&��i��_�������ajf������.<\l�T�MJ.�=M�1#�g��>�;�{df�Gq��AMR���Bhrd�Fa|e����P*L"ٳ��B�Z(G%[F�`<Պh{�N�[Ҙ�t��g��e��c@�4M"��G9����&�H`�57bzr��!ۍB.�@$V�s���8������]�nَ��,B{��k��3������gO<����Z[-Q^�4���Ǻ[߆�އ�>�hmo�j�C� ����s4ź鈴�qt�cTwa1A�k������uI�h���[�{�\�a�����al��Ƕ�px)<-#!Z�
�c��?���߱}�j$"��O����@n� &ԙ�{�{�<�0���O���5+��Z���6T�{��]�;��Ak�t���p��>��֏0Q c��^�q�&n��W��`ƥ�e0��l~�rS��t�oO���O�=���v$��бQ��q�tB۪r��P�r�p�-��c�tx֬P�>c���Ёf�/�l��F`Ӂ�.��j�5�l"��Y����U��|W��r�A��q(�7�d~h燘��7�P6�
��2~O�Fm�r�Fc�{q�߫��ޣ����|#��k�w#/K�X
/���l��E�j
њ��l�d�t�3�<��!��gJ����.�}����,��G�qzʚ��0OOfSS惗�{����\���f�_��
\=ɵ�?8��Q0�{8�Ͳ�s}��5���6fg=�o�5i�))��ᥖ������OZ�6�ү�&}����kz��׿)�?����#LMMᓿ�sh~�ʾe�u$�CC9Լ���Ԕ�yL)^����wyj�&c���t��;$���~��w��/>�:�r��C�6k�����={y�������I5���Z��R*b�T���9Gp��b"#	;�����^A��vu��X(�X,ju�8��c���Ǎ��K�cfg��C3%1���	D&�	J�c��)T��Z{�{L�,��8���Oñ$�m�^�� ��� 0�C㌢8=A���˃.F���"\m(�@*��)c2׮[���ߎt�"�x�M#��
��U��g0|�zj%��@"���*��{\x82��P0���q'�#�9!R0�	�8S$x��^�5�݆���LO�Ȋ�!�{�6��e���#Xw�;���؇NF��k��~�,���h��8�\��Sx$��k��%�X�q��2�BQߞ����W~�.�
"ݒ@&���V�P+�&��!�Y���h���AM�e��=�x�[��<�<r�
{�|�s_��1L��@8�k�|ǚ�c�&:a��!�
30&΢=@ǖ����>/
Da���x��=��<��9%�L4�rd��:_Yf��ܓشm��`��(��R����T^ޭ�'��Ƒy�Ng1�14��򤲽��vS�m-�Һ��@L
I�_j�R�^r��~/N���j�fm�����r����Q�r5jO��o[mKm��W�����T�k'˨k���\�f�m�5�Ժ*r���k�er^/?8�~��$�P��drx/^U��*�q�v����-�D�sL�)݀�Y7�N��Â��w�ɼ���ٰ��LP�t����9k82��	��K�� ج����P�gk��k	��)��v��M�c��\!------�ׁx^L���~W���/��p'�����%���_�������}��୨ו&���Z�r��m`h_��/	��f�����tC�ޅT�{V~�#�k��Q��ɽ/9����������]>�����~��z=������Ȧ9UHq 82:Ӱ�˕�9+5a� ��%��]-��A�~"��h�EP�@0�|�vH��K�Q*U�D$�}�O\>� _�!C�L^B$3�j)��ea�	RY��&H�N�?~�dp��M�"��E����npIk��R����(j�*�
K������׾p)��$����0��n�HcB�k	����Eb��ܻ��ֽ|�)������1rd"����7oYŇj=��
H��mw߂G~�8�4�`8�TȂ�|][�W`e��]�n|���5hܛҨb�4i=��6��^<�b5D��`cC�

�yt!bI'͓HZ'�u:�Tx��u
Q�<�h����!e�x�P�Z�t�.�ğ��W�/�Wt���
tc�MZ;n��۸QLxK�<|���������ϊu>�k�	 ������x8.�pL�}�މ�%,9䮸�@.+9���f$�(�L�1��{�b���ކ�T3�8t�4֯^n兔���������gk�6���*�z
�����Y���{S��Ӫ�/'��r����2�F�A���S3��H��V�l��Q�Jl�=x%}����>��U�g�l�=ɥ�g�����R�[����F^�46j�Q;��r~]�1�Ҫ?��i�0�k�K�T/D��!��1	>]��z�P�0և;U���G��ci�>Ŀ�5���)�@&'�J��V�J7��Ƽ���+u�ޘ�����h���<�֦�޹ق�a)ә�S�ݩ��e��cpr{�iʎ��i�y�i�d�;uZZZZZZZ�/q�v4��!�D���k�CL4[�-oɰ��^3�ɽ =�{	�HU����=+�<~�����=�?��{�k6mݲ��308"��0�����Ӿ:EH[----���@�R��r�'^�V�t�DW���7=a� 0Y��$�6�3Sn�Mjcɒ�^�j���2����p,���I�p���06E�{n�2��E� Zaj@��
�b"|j0C����I��Z��	2�Z:�^�іv�ۻ➡�Uy�*��<��I"���}4��54�J�B�J ���\��c�C��\��fb�G�1䧦P�ψ��&���{����hlt.Y���{۰��	b8�7�����I"8��k���"K�2�jA"E.S��c��JE�|�;�%��e�zz�Sn�3�%fA�D*Fs��8S1?>��	����3�C���#�6B�0�p��C�yQ#�"�HHDh[,�5�̋Ng<������|�w��Ĺ½x�_�(�l�i���ܳ4�N�_�*,\�w�y���r%�?F��¢�1�T�Q��g��'��W�[�;ld��J4�L���`q��U�,�y/��%qp�nl��F�b��X�ۅ֖�3��.a�a��e[���iy5:�>(��N�Yi(l�o��8XsƧ��5j$q�`jb�s��fi�	^j���sܩ�$U'��c���r;��4��͠&����S�Z�
*�}�!�*ʶ��F��J��?f�
�Zji�|1�x��!@���
�췮��'�5OnUa�o��ٕ�ڣ��3�sN9�Ҿ簟��龜w���e����%s`�|���B|�ةì�A�Ea���T4�e��1��BJ뾍��Y/=_O����P�
wu�:��������VC�(�[M�YYy�V��!\�����r^��d�ϫ
e��F�t6��������Añ�LMgP�{�O�r�|���NE2�b�r��l�$����P��-��2m;D�X���(��&��P!h6��b����vB��������q��|0�"PF�c��0��Z���[h���Hv.A�{9�}H�Ǣ�%HV�p�� A�!~�ʝh��P�H�2��� ��X<�P( ��L��
p������b�k��#F���6
ro�`H���^��=��gѕ�D��~ ي=y�8xRڇ,�=�C4M`��E����D*� d�Gr������Ga&'�yr/Κg>ڹ�l���:lI�\�˯���}(ѱ¾ȗj���L���*9��B��+�菇���1oy�Q��!F�^���������&�K�{:�V~Jf�C������p��w	_��/c���4�*f
e��`"[���X�K:P��ƨ�jE�Oji[�,p���H�ўJ�V�6��ѵd9ֿ�}�[��t����]Ƃ�jwG!z��\��_<�W�PHӢ�0�!Rmɐb"�/�
����5�1�`j�jś�X/A@�~y�+�k5�t=@��p��ji��ȳ��U
��}�(\�U���6���iTV�����SsG�����쳺�:��n6�ќ���5�/.
/����˷�h_�Yc���@�E Xב����
K6nC��Yb6+��(�E,��|��4.�Sk{��qM�l)�)���;^������F�N���a�V���l�N���4�ի+=�jiiiiii��J�[����5����e�\%SI����:��������˄|���X&Gk�D����$��#7:N<0�����L�tzj\�v5i[wg+%m�S[<���ذș8Cl*ox*�G87M�������M���ܣ2�J�~�s@��Ju�!�#T L�,�nG4�}Tk�!�6���bl�qoB>����Jr��P(�T*!�s�E��e��n&	��ް	5#�Rv��v#?Ac�0��.���9Tpqϣ��=��Ǝ@l�&잘A��l[��ʙHc���$R��֍x��]��K�H$��C�`�0m���ZF�Th\1�QDBC��Rx�pX�7����‹?��\�]O�x��x��e�se?�`��I��L��z|-j4�Z��`r�W#�%P�!3;V�#�����Y����6*��<0���!�]$!~��A���_����7��эc
E��4T�W��m�0>�#Ό K��Tj�D��(�fI��bv��i�/\��6"Oh��ok���ʥ.��ݎo=�::�п���6�>|[7�q����^|����Eۗ�l��n?��T��Z#O#��k�jl��{:9>	�,=}56ȉ"n�N���x�hi�~T�����kTο��E٨���-��\j��h��s�?��}��a>sm4-�WJ�J�dv�Q��Μ𨀗BI�ɼ���wTlj|]��r��,�w)����+灉̹��C���4���p�_]��
1��S�^�>�G��g6�k��ŕ�3���u8��p�Xퟮ[+��2------�WN�7m�SO?�׫n��f���y`^-��t	��z̳���TC�^�8���h��!k�w�����V�6�0
�YFP�J���ݍ��(�-����x�V&<�sY\�C5�A����x��r9�sy�q�u��yf5�r���&P�$8@ 0��Y(F$�f��% fD"�ۑ�M��)��W"��e���	`1wU����z̬�O�א��r_֬��kf��rwH����`4�4-JFcC�"L��H8�P4�
�7b��бx5�I
/�P,�p$!rn��2��zS�h�A��!��������PT0i���$��n��ZL\"@L��{�ē΄�}�7ߊJn
�D����Ѷ���6,�)�l���[�0��,�,2�>�\ ����$�ZUxZڡ!x���5�Yx��5'� �l�zr�O�j��׿�3<�s���p��R�by��b�,`+��L�w�S�FgKf�2���frb?�O@=�3g�M��U3�Vr�VE�K�㲖Ad�ڣa��KH��c��`����5�תa�W�{fCb=�GF�H�q�
[p��)�Etv����Ƨ��<Uo*��'�%�����K��ݎ��`��F#o1w���6~��[c)ÜEM
0��f]m��z#�J��悃�i�Qh�+�\�^���[R�#�T�&�������
t�����NB9�n��>��S�����W�TT��Y���2�uT:SWź1�߶���6�������|��.�lކ������������z���__�^�|\�W�7���3I��c����<q�~��_y5_�~�7>#��W�B�LD����s`jiii�G�
Ch"W ~TFvd/��+Y�5	Ju�/�Zr�J58��SI_a�W @�s7��q����f&&	l,$��E53����U�Z0́I��GXF���ҹ�@c��%%Ң|�C�X�އ��A�OA�W�|leF/"31b����3�tr�Nn����Bv��V��co�z�H@;S�d"�,�#��~�,X���DSRi�<��X�q�j%�%��C����0	�>{i�.�
`X&��F�1����ܰc�O#W���X<"	��Y���q��e<w5Q�{��~�	`F�Z�$�{ׇP��@����sO Ib�$�Y8���Ywkv���ʪ�T͋ 2oO+w(w��r8uⴕ��Y�DǼR��W�����|=P3ĺ��=�����!�<9����Ӵ.3���jn�ɋh�%�\��s&G�s�m��t�����99O�:��g�"O��ԩs8p�4�mބ�}�8s��/�d�"<�����J���r��2Z��L1^)�� ?��_V�5ԃ
�'�l�-�����y�K4���=^�JaOZZZZZZ�y��	��k]���X�q<ָ�:�AYr��j6��{�l0����O?n���i�a�jug+��ܟ���Ք��٪�&-��I�{��D�������z��y�<��O^w��|<?���X�x!�lz�B�^Mɼ�4���-��&^���z|��	�}�~����G�����W�����5�L��xc�-y,��F�0[&"�t�t�!�E�hj�'��������4��	 #x%�"�ڃ΢�AN>#;!�"o7���V���{2@��
�Ku,F��U{�r	�˩���N��+(������2|P�����zcgr�6��[ܡ��SOL�hb��Y$G�%!<9����̔t�9&���F�t�f��,b�>je���8J����J���?�ʛ߇*1AP4�l5~t��!�V,���ll��ݍ��[��vC��%���gUEײU8��C8A�t��P���ʹ]h�Gc�{�R�-m���c�O��8���O���;P-)�p����R�,rhr��8C�7	��jeR�e��q�$���s�Z��+�'���rm���5q>�h_�Α�/�;�.Ío{���H1D��"�ֆ��!:	G������C4�߼��`�Z��c�6��|�N_@ɤ��2�9\Fp��f�\���ƭ���'w�ҹ�X�|	:�`灣�q���}�4��Ш1�HV�h��
sf�m~D�+����K�ק�?��U���pZZZZZoP5���y��y�s
y�&�j6�Yv��Fޖ��f�x�Y�U�y���XM�sνn�7�T�^�Y?:5��\�q�f���Ks�ν��}/�4������^Z�x~x������5�_��o��r��s��=13vxW���~㯝�|��?�μ����������/�uW,162�R�	�r~��i�w[=�WO�A�Z���BA䧬��(��!�v5/���y_�/�='/�>-�_�x�˩Q�	��-�HB����0B�ER�h[��f?B�8F�<GۣH�,@�\�~	��0B����p�:Uqq�38��@]���(�1�����MA���������r�5Vr�W.[6�s<r~I������al�RC4݆��U�3���L7@0�$�Y3K8��X}��J�	�[l�
<t�<���[��^v�ю�^l�V��=�ѳh���4b����ny�����o#
a�u��.vh3#�7&_���X}�{��.���Ch���"RۯC|lZxJ��A��BA��'���7�zΞ8"�g�|5*�˙v?S���1��կr SxD��xY:�6��ս|��w�M�a��BF�}Wk����C���X�mB�ҕ"����L&Q��B<Ee/������qg�M�9F��H�S_UJ�C��w\���.‹�R�Q,�_���S�4<�E=97+�
/-.�DY�yҴ�`m���<x�զr��BL��f�JU�-`�]I�)�W�lܴ��֫���v��AKK��T!�Dvf�KW#h�T�w$���W������czS�<�2.�
�j���m]eBܫ�o%uAV��097��u~��nhp�4�m���Q��B�+�BW2�q;�������ޜ��ig@�잉�yĒ�� ؕ�^-------�7���R<���������{�G`3���m����0V�\----���`����.B�F/�ޗ�e�	�-�r��cfzL�E�
]����m�N�������L�T��Х�b�hA�u����yy�W#�P���H�,AjAB�Ò�>��h{?�� �28��ϧ)�0y�$�<��3��fP)�i_PE�)kR�%m����QE�`faz����OⶻnC�s�B����8�
���/�Ƞ�T+�,A�����S?�����䞥��V-�����?��˧�M��;�1Ic��<��8�$�/�6�/<�������Z�(�mo� v>�m�y�x�r܋�Z��Y�r��0i[����˰�۱����N�x��)������+0�eC<+� ��6��'>������Y��g-HY.�����@����)�*"�-_�?��`c����=��c�2U��!��3���y�g'������p�V���\��k7���&3�yn�t
�����KȔ��Bщ!���h�_D�1�'�I}����XDZ���勱i�R�9|�mi,Y҇]G�8��H�:_���'��>����/�c����N������z|^cS~����P_i�W����a���Y�
̜��RK�����u��
����^5Ces]��_��S/w^�{�e6y�t%�C�ʾv瀡o紴�����^����ֶk6�>�����ϡ��3�,N�:#�=o�^�ZZZZM�!��(����%��8Ό�[;iS[O?b��'�k8���	�>E�b�rB��nT%����+�C.,ݳPx>�&�Bq�:!ٳ��.�R-��c"�mij��	,زr@L��9/
�Fqa���p��4�2"�,u�=�`�Q#��!���h�����Y���DC��7
���OF@�9(���kC�.7%`\$��~BHИ7�>~�ALl�dc6�,p���a�E��(n��%xa`}=��nO[�2-���������ѻx��j9>i͢4��1�<���b��%��0��nf�d�b��&<E�W�Gvj/b)�6����5 �Ur�,��"��X�p1>����ߢ}A����>�t<�E��рY�/�E]+�E�ۅ���=�9|���7�AU���Ь�s�R�`���D	$Zڐ^��}-?�*��
�s239�s��cQ�"#`t��\Zi|�}�x�0>8���%�~���y�u��D�al^��|{w�7_�EKaס�u�Fpd)ב�[�1-�m:���xcJp(Cs�`�f���VM_NMWP6�a���x���l���y�l3=�:a���֛^�\i{ZZZZZZZZZZZZZZZohi�9�V�X&B�>��.�
��z�R��ޗZZZZ�����qܾ�FD��F��VZ8�����8n��$Hֳ��c*&<�\�K�S�����EhW�Y%��sV�, ��#�F�s)��}��SF#ǨL ,�35p�~F���'�e�C7j��å�1v����\r��F0�t�Z$��1zb
�f�l
 ��j
��;�g
��
�k�&OO��199���U�LB�Z�	/AzkUZ��Q�G�dJ�7��+�ڃMw��x��P�� �s|�r4��>�o��G�ȋȮ����p�%X��a�G�C.��Y8‹�PeZ��4�R�D�����A��Q���^��r����h��c�{�r�T�
˽Vk+;�cxt�J	)�P�޶IKt\�.��dF
���躺
���g�7_�*Q�.��.��2��	��qZ/����RU��Ǚ/��W��D���c?|�ܴ�yY)�	ZO������<�A�t{���!��3ٙ)��bl*�����AǛ��Mu/@{�"��iZ��3�V�$A�*J8}�̻n�G��v|��'����l����<����8|�<6._�x�
\6	灀j�1�f�1���e����})�;ᆇ������u��>��y^z�ǺTVKKKKKKKKKKKKKKKKK�e@kN�q�
���ܥᥖ���<49�!�e��V����X����۸x��Z�V[�f�x/}�.j�V�bl�2&G��*�gDnMN�B1+|x��U4݋t�
�[���E������K�Nv �N��K�,�?��}CGw#?5d�M���,X�w�nB);e�ഽ�`�X̚�r��h��8O@K�J,�v=�ox���
�Gy�rx�swf���'	��D�<F��hi�5o�Z�!�"8K`/M�P��R��5�V��Q��>���bH.>3�`Q?6��'0C��-	 1dLut�{{�>N�<Cc�}��
S�2��ܠL�j�����h{��h$d�]r�N+���R�ƛ-����5k��_��!Q�/�uB�Lg����5y
�Å~8L��y�s����`�u[	Z�E�Z>֙�I�����[�@kkW�3�~3S8}��<���1��Ρvr'��O�c��-�Y�ɮD$CAP�-m�m�R����ǭ��w�x
���`<_��u+q��I��wm�)��t���Ԝ�L����kl~�:.2S�	s�6�%��C���+`Z7���S-m4L�%��o��
�/��ݰ�ZZZZZZZZZZZZZZZZZZ��ZZZZZWQV�ı�);�%P�`Qx~���އ�`1���Ј�)r����t��2~��2�/�&�	��*�V˴� < 9	��p���;Y����~e"/#�_�O#;6�T�"�*E��؃?�.���C~b� �斃�X��o���A���C�P$���&4I$���6$䠕{�Œ1����T�b,�~�<w?~z�O��s�/�T�R�"��P��F+Lh@�Y�^�D+��at,XL`-- ` ށDհ� &E?���a�m��t2
Y��g�"�4�L�bF��#�ލ�>�q��hC�	Wj�40sx�=F�P$����fyh�L%t�i���Y�ôF� }47m؄����ۏX�U�3�sY�Qe��SC0����7�2���|��l�
;�/?��q�q��R@BZߖ�.�&p��Q�=z�SӈL
���E��8��lE� e��M�DS~���D��Ui�Ãc'@�f�rl^�{��E���mYB����`��8p��B�>K���b�?�F\5k��P���Z�4��5�Bǚ��0C�f�ce&��
/_7��������������������0�SKKKK몊C�rͰ.0FM��5���B�8���;�bf|�T�sѲ�쒨�R.�B�2H0����H��c�G&g��K�c<)X��.�}��7i�\�'";r���3�8�ȷq~�ȏ]"�:"�3#�p������w}��.L�Ey�2�A��\�9c�6�j�6�G0�E�Q1fS@� R]�����;�
e+#�Z%�[,dM�,O?f�o��r/L�[�!��.&8��2�!&w�D��G��@��N��FPik��bdb���4�C��0x�Jb�C
Q&�ُ[�aT	�.]*���g$�mY)�‹��E�2Ls.���|u�����f9�6l�B��Ѵ��r �e�����mw܈�%�O&1>:!�S+�Mۙ��N�i�!{���s��/�2,^,&ŽryRS�T+1��t�xF�f�F�a�.�D$l�o����.�XI�`�Σ��=~����B���lFw��E����ްm���'O����v�ѩ��o}�l�T����>T¹Z�VB�*��V�Y�$�#V��)�	_M��"��b5������������������z	�SKKKK�*�������̈D��-&���Pϟv��a�l�r������0& ���0�SY����N�$-D����<$+�P<&@ �69����Oq_5�݉��(L
x+#�����+�c�=�F���g&�:��%��@8�B��k,�nM��e�ZB���_J@5#�*� ~A����{p���v?򥊀��R� fE�4�v��
%��ayHr��k�Z{�0�|(�D<�I�]ƞ���X+��^@y|�����i1���VLܼu�Ce��L�٤�$
Zk����uw���aLT,��(�i~f{GZp2
��-�ʴ�њ�Ԛ�U�LSd9��{Zr���w��.C[W��~�����N�X�TL�z64K$���>���L��#��+v9�F�8	��z�Z�������ѳt�Ȭ���xM��V�bѷ�j�C��\=O�w&_��۰h�B����T�o���&\�<��?{�(Uq��o�^�#MAE�ޣ�Kl)�hb����4M1��51�Ec���ް`A@����{{�?�L��E�	��̝�{wwv~�;�s�h��\M��m�S��Z9(S���[��Ql�tN˭)-+ڰgJ����`�b�X,��b�X,���b��b�X�m�(h����6���@����><���f֭^o�ޤs���б��L[�(S`�(Wd�*�l�<U�v6�����XU�����k�pTu���9fU;�� �
0nX�H�_��u���P���*�S���9�L��(�]#6,{�5�Q\ZdŒ�v�ƺ
���v�)�f�z꿦�Z�WT���
�U���%h_]m��qz`�~�`����wއu�P�Pg��VVǡ�|B:ǜu-Z��@YU�:����KAGKK���wEY�N&4����P4u"�֯Gs�Nxh�<��Pk�K
�9~t(nIJ�KLX���b��S�]�^��I���z
��9��a-P�6�q��{�u��~Z��r�Js��>
�թ�+�ݰMM�j;�,�I�}�v�U���VO���y*[�H�h�*���:u��G�x��
�S�3Q�IA��U�(([]Z��n:�6��c��C�9j����*�-��ZeC밭)�7E��j����X2s:�
�]����5�b]�q����2���۰N��=��¹�0���1�o/<��dui �ȼG
�SnUs�M%���vK7n:'%=�h�^#yPqS�c��8�gX��༕�b�X,��b�X,��1L��bms��@c͆���Rձ��P�d�Z�p��P��H���xY� TQi���[Z��b�"�+��v�	ij`XI�ɵX�@]e��h߫�����Qu���ڵ���}ذd.�6�ERRn��:�e�џ��q�Z�j�.E�(�P�sw�U�M{�g�e�����霕�8iWaKc���
^V(�پCTwh��=��C�Fi�֡+��I�{�q����z�J��+3yM����†�������Qٱ3re���{��U!|�t��Pծ��|��7��SG<8i6���W�9;9[���ǢC�K-A^����@9a�S��xk£��ݙ=�T�{u�T`P6��SU�o`�:F�	+��7�X��Ǟ}��m��2u�Zh�a^+J�p��A�*������૸H

���hj7���������m$F��u�֚�KP��Iaܰ�;wQ��ʄ���RzW�S� 0���LP�f�9��|6��c񬙘��3X1�mT��d��&�:T����X���Ӏ>���Ŵ�^��<��֣�-My�W�6`@_L|s���ޞ(B@Xi;
!�,�uA�n)'�Y��2u��`3�aHe+�=����&���b�X,��b�X,������b�X�lX�€9�T���?H�#�;�rŒEfj�X\T�fo���xfJpE�a�r4��)�Y�|�v_Bi�;�m�:w�,*U@�L�-��HRA,��S'`�mĺ��Y`*t�ˎ��8�hTt���иn��Ye@*�U����w�b��'�P� WQ��J�Ku�ZrJ'�8W(��cuu%ڵ�F��
��hg�T�sgv���O��&��3QU�
~z˚VQTQ���E�J�,R�۠]�+W�E��A�m޸�o�Vp6��h�X��N]p���X����U�ž�Bu�E���
6�Y�o�6�j�a��w�>����hliV�€D�K3�`^��k�z��/�9
"�)(�zݺո��7��1o�VY���
vj@\��~�'�3�W���:A�y��օ�����0u�뛛Z�9���Ծ��g9k@)mN�j�u���z��R�,Q繴T0ޤ���kY/=�%oOQ�c;�>}w�]�Po�{��ˮ�����IA�N]�㜳�ă�݌�_��.ۣ4i��߉2uM�X��V�5��0��Gf¬:��	/��$��`����͝މ)�}^�̀ΰ�նp��r`�X,��b�X,��b�>�`�X,k�ҋ<��q�J�h	��Щ{W�N�]�
:�(,���'�o_E�Ƃ��P��n�w��/҄qM �ͨY�M��(oW��7vK7�>kޛ�7�u%�~�4�_�\q�����:do=�Tt�i��5hڰ�q=��+���ݨ�7��'�n�
t�mz�>����CL��s�uL�H4���b���hjɣ��XշiK���%
��׮�cIuG�z�IX9{2*:uEqI���j��T
��k�/9�4nQ���R��}1���)P� f^��wD^��W�+�u�����֢�S7<>u6�Ɓ�P�_a�{�3�@̵k7( ((�e΄��y�x�/��'�ʵ���!�vq����"5�#S�t�W���Qh���y�����zC-`+V�NMa��&g`�	W�؂J����e�+P;����#OzWf��RmW�@d���t��R*�JK�q�;v4�5���D�&ӸF�k��S'l\��M��\Qz���+�w�f�������~���hj�c���0�I
���O�����{�X�#w���;��z�����b�g��|�j"��9Dm`�-��\ɒ��سt�Q�K�M�w-���\K!��b�X,��b�X,���b��b�X�m��u�Фs
�����+�TL�2�e�Pf!Z��
"WZ�.�Bm��\�\��4��7�p���+��h��-�F��ԪmKMyu����Gn��߀�+���L���j���y����2n�uˑ6mPGϣ���
^6�l�ܗ���wf���Qr�q�ԧ��7�m�M(W�ՙ��]rХ��F�*�V� ����t�2�|s6�*Ȩ@ZIi1**+оc���ڶ�]G�8�T��?
��.Bss�m�7�|��U�E�y洨�
�
\v�9�>�EU�2
˪;(�Y�W�:tW�Fs]�=���Kg455Q�ZъP�c��ЮH��F
ZL?�"�1��R���{�ҵ5�3A��B�̆ѕ��Q�G������E
8>�-��m�����eK�?��v��k�hQbگ�f�۷�3����>ŔP��7�kM�U��ԴS����˜�����(��s�6����-/��z�Bu�ס~�
���)���疩}UNcC=�͛���¿�o���X�b���*�Lja�;�i�1�8
5���u˭��܌��C]7�X�dƏ�?�2b�Ho����bӁZ�K���J�se�mI���mlc��uw&�
؂s��b�X,��b�X,��z?b��b�X�m�
kV� L*������Ԁ��v#��p�d����{t�L뺔���v�����W�ņ,Ue���ٮ[/�4*��Ҍ�[w_��s����=��wEiu'Tt쮶oBi�N�_�MW�P���%j��}
�.|�U,��
J;�Ð�OBϑ{(Vd�\��զ]�$���W����jw_ie��kը�����H�r̞>ͩ@Yy�͋٩����(+��
�PZ�C�9s_{
K��Q@��B�j�dùjPd��E�jks�j�h�U�Թ���;a��碴��@
1[k���A��}���SH�е����M-�yu>Qw�}�1U{6U�7+{�Ih^�/?�<�M�4��aX��U�my-P��Ħ6T�[\��րGn�<�A5aj�:?y
j	d���uׄ���r�v������+pX�+B��P�S?/*)�O���:���:��{:O��E�a��g�d�,s��*Fy�N(��R��c��w�����}�@�:Lգ�@�%KW`����ޥ;���E+V����ֳ7�}�A��{P���o���)hhhA��M�܌�1�+)7��T��҇T���~_���V��@2�V���bf��+�K�>&n�\��cY,��b�X,��b�X��`�X,kK�����	���
�
�9X�z�<�#t���\.8�4�1Y�jjjĂ�s��!SuT,O�,�dڢ`U9��u��31�k��8-��
��:+9C;Ee��ØSp͵�aX\Y�9b�;o�מ�(����OF�}ǣ�KŨZL�Z
��֭1�y�+���P.E�Zt,��F��U曵��ǝz���|��*pXQV�v�*��ۡ[���Ɖ١�
�M����Y��-6ǧ��>�,�5n¦f0ˍ󳝁���~�~A-/5aWK�ۣ�a#&�u���}�4�iՅ)��~{>��<Ie�c�� ֠HA?vT*�����r&�����nݕ
�
���Qsc�z�Qeu�
~��(����e�$�4�⎫~��^�bA�:�:Gh��Z�M	��i�hqΜ���{�NGK�z��_`��u�E���8jy�v���?}%�����]{�������u�����sX��T�k�﮻�}��&�qu��hj��J7�͝��n�܌�
��u�j���^�Νo\�
���s&͜gB��L���}^�6�zu�n�ជ�@��Дo�����랞d�Iٚ�����uI���+�����b�X,��b�X,��!Kȶf�X,�?��s���!�u<�)�g�Nځ��u�=�aCM�yީkoTw��9$W,����&�(T��vUQ�L�|K��tMX��<��k|S�K��c�Ɂ�+�@qy6�5�$Q��\-S�;��)�7�dž�s̱+�vS �̸��-M�Y��8�*��V���g��ݑ��fs��n��H�H�Uv@���5Uk7�]���@uu��5*��Ǵ7�����o]ĴaU[Zt�09��Q*H�Z��r�]4�{F��)�.A���

5�0�dt�;�6����[_߀u�bɜ���6�Tt@���`u]��C����ګc%�@^�k1o�t����4!ca���ԗ&`��1X<g6����:�Xƞ�jTL�eI�#�y����iS�a�
�.�yD;v�!G���"�e��2rP��e d"�91`T-���<����d2��0��1�M�<Օԏ�
*��n�.��v�RTv�$��ʥ~W�k���r�]�
/�({Ye���PZ��@K�P��f�$]���ZR��cG�k�JͶ�r�zuܼq��}�m̘����<V�!0i������DYqQA�X�������8�h��]m�����eB��%��*$þ�Wm�jiɃ��f݆���b�X,֎'��}��`�X,��m4{���;L���h�?��b�X�m*���#�X,��bmC1�d�X,k�jG�E`�X���x���b�X,��b�X,��b�X��O���b�X,��b�X,��b�X,��bm7b��b�X,��b�X,��b�X,��b��1�d�X,��b�X,��b�X,��b�Xۍ8&��b�X,��b�X,��b�X���f/و
u-��T�Bi������<�υ}��Z=
�B"�k���v�I�_|(,��n��B�#�h˨�"��0�J��n���.	���%ǵ�?���\�dv�
�
e���l'��$����65^DUH3�
�^H3��e	ŬqME��R{=H��u?	i���߂��
ەa�Q٬X0Y,��b�X,��b�X,��b},4{I
���T$�E�#S���kM�4��I�rD��=f"`)��"�a����P-!T��@6�����U�a7��K�����,
WQU��g����>����f��%��c�)dh�Z�Ri9UnL]� �Gu���U�?]��r���p�s��'10R��l�%��������5;�
�u�V��v���"����;�\��	m�Ϲ��zUώ�0A)K�&��b�X,��b�X,��b�X���Z�����h�Q)��P�����bG)-�D�D�6���A�̛;��Q�.Z�܌z\�).R�TH*햶\���0%��
a��C�Ҹ�?(̧ƒU��>/�#�,���s
i��<�3%��J�z��H�R�7�c82�����U�u�To�In1u
�mB{8Ǥ-*:G�yB�;�x�xp�R]��V
A�οvϝ��Akw~��ݒy�V�&��b�X,��b�X,��bm7
�ٕ�

B�����Ұ�8"h2.E���λ֔IM��Z���;X@�W� Z��%�}��K��2X��Dz��
���ܑ�l{��yHK�:�0/<tu�̀7m�.y�n +�i�+ep%z���TЄӅo�4�L�!��"=Y$���@蜛�)M���f�k`!����W���:׫0�(!8�7�ʟ){=$�
j"`��!-�L�spF�p��؟�����b�X,��b�X,��b��������2��x+�`���0�*J�� eB�Z�'�u	�N(�h�'8eٛiF걅�WB��í��C+;5��4L�"��s.&�sP:�&�kQ�:H�:gݔ��y�AQ�'��kb�`��I�^�w��:��$)8i1�S����NaB���f^���$�R��2�Ex0I!q�F��q�k��K�cԵ�@����<
�<�p!iSD�L
&u<a:7\L�J�ܵ�#N�}�֥�*�(�-1�d�X,��b�X,��b�X������p͵7a�+�cؐA��{�@Q���eP�q֌��p�Uף���wƏ0��������8괌SN�;R�s:矃[hڳ��Y��V\�����Y��q_^���)AF �j�&D,�1�Z԰LX�����t!J-xt��:���L�s���aO���p��.���O��m&�h��'����q��`�G�����)�C��sW&���\�.7f����ֶ����-�3)����霥	��T������L2bJj����*�z�p��{�[@�S��	*�ܲ�@h�6#�,��b�X,��b�X,��	-X�?���6�K�KЫWw�1j$9x<*����&�gp�-w�%�g���F�O�t,؁��=��|�</-)�/�?t��;�$�!����-�e�^��}���?��o0g�|�?��q�ע���.�S�QMS�r�[�p��@��w,R�D�R�ZҀPi݂�?��ф�%��/G�2G�S�r5�w�q>RUO�\[�T�֒\�����y�9m�Ci��D��l����,&G�)'�^��C���ˢz��S�4&TkN����HSrj�T���a0��~��Ol�Y�Fj_���(�,L� �ܡ>61��L�cT�(�Џ��3�R��5�BжI�<�w[� �q@׀D��s�����M�0~�LzsZ��9�`��}��܋�b����EuUE��l���w=��s�ccM�ڮ�7�9�`�X,��b�X,��b�X,�UCc#ޜ2}[I���������/ĸ}���DcSs�!7N�<�i�ZK���d:7��cG���W�ěS�yw_cC�K+�����	
����PԷ ��tЊV��lZ�aJ1_-��E�RD���xih'���-��4%"�P��p���8'$9E-��1��)�6����[Ą���g���>�ij�����z�'l]t�X�.��S3u�W?:x��)����RI�6C�����Rʳisf�3�5�:h}?ڎ&���G��;�x��H��9`]$���k`+(�$���
M(�k����ij�Q�5�\���� 
/5��]w�x�q��m�_�|%�9�j�C�R�s��
b���_]�+��,��b�X,��b�X,��A%��Q�E�\��X�h1.�ɯ1o�{x_R;}�!8��ЭKgr�x|�C��\b�6!{.���}td—|��%_���o��?�v����L�
���v�I��T�X=iʫ��Q���,Q4�q���ܚ�'�����9�Hx0��-O��E+L�SS'B����Kr�gz�6$j�}���p���<�!�%\�W���zH�X$�`�X ��B�nׅ�5!YEp�:�h�p�V���ֵܑru�~um!L����+��RD�0�G��/���.�o��im�����,�}F4�Yr�Z�f��6%lA&}�tL�zv��~'oI����%y�%_��6N�3g����_��i����7.5��\�;S���N�K.�%z���O>,��b�X,��b�X,���e'��_|�S�펛6c&��^��,[�v~��kp���29t��ӊ�
\��K�z�
��{{^f�{�����ʣ�3��6��m�'��=��5�j���!�e[1�/"+��񳶴��n����'S!l^�y�?��_��n�}�T{!{���WᲭ����E���;�R��&��q�R��s�u�Y�\���Y
%\j%���„L��QW���MhP��\��@�+��ֹ-]�Y�4%'���B�K�N��	(4�7,Z� ��D"��AI�]�5�R@8�� p.IA�Xx((|*������q�Q8W�^�fj�l�IPU��V�G�kA���T�Ю�IJ�P�ڐ��:5
����x�@_wM�ݹ�6$q���G㽵��]�������]�y�x��4eZ&����K������%�K���x���;p̑���ߝ�ʽӀQ]�YˡfY,��b�X,��b�X,��eg�;v�Q��K��g��9^���ՙe�Ν���7�}�vX�rޜ�i�1r�q�Mx�eL�1���I���[���G��>}{��Κ�.��_h�WVTb���@cS&��:f��ZV��{��.;��_�t�{a"V�Xm�<~߽0p@�6[&Ԅ������k�0w�456�C�:x F��ʯ�
a�F]}^}m�����0h�@L��^x������4�/Xd��i�]Ԝl�̱�iO?�9�lX�Ǐ�:32ū���)S�Vuo��!�9�;vD���<��٦�:���aؐA�c�TVV�u��X�l��װ|�*ҵW�6l0v�y����YY-^��?�2V�Z��];a���A�^=ڪ�?�ꜬUגV�碢"sܧ�}iކ�6x�U�W�)՟+V�V�_��V�`ȐjZ�)ߒ7�io��)v�u�����yx��g@�ݻwŨ���-εG�M(SAN� ��Z8� �u�Q�VX��M	��D{���$�*�V�KI�S�l�Z
 KpLJr���LJ�W�wu�'�휙�����ҷYx�$��thczcI�[)�eh�c���:�)��>��%#Ӟ�?>O'm��31�}mѨstf��0ڊ8L`؜S�D���)�@���K������փM��mi����L�i'k@�h5(x�ײ�1՗�~�׷%
&5����\��vt~�����5��&̬Λ�.M��b�X,��b�X,��%	�
9rW��IS��5
�-Z���W_��^���~�c��;8�f���I�}o��~��ڼ�{�$�	�z��x�������_�_��*L�6�y�Pv}����?�ʿ7�|'6l�G���
��W���'c���׿��?𨂨+
�s*�%&��瞍c�9܃�u�6�6m�Xc�;�����?o�uu
��O�~"��5?��}��|�+8�S�GT�g�{	���g��g�q��…��ܹP�54��k߼L�ߛhP@Յ��ޭ+���w���"8Ag�3��ݕ��f���ٗ�$	�u��p6N8�Fڣ-S��3ޘ4��u�Q��-Q}:l����oa@�����--���G�R}�λ�~�?q����P-�����s����7^��_���+qُ~es�*}�_��W_ǵ��7�Z߀SO�$�?�TUV"�v�͛���L�477�u��3~�������j!qЁ�	`�J�>�
{J<�H�P��2G�(��/%B'��PM�����|�P	��]�����>���h���$�!@FQM	(�)`
Np����\=��!|]�L��n�8����9'�ᖛ��w�I�J���ІDE�������ƍ+e�]��X�A_{���ݝtg�u���dw>�{���-�����.�ҡ`H�y2��R;)��o,�����ѹ)�) �G4�N�݁�}�#]����++�b�X,��b�v|M�1��X,��ڦ�됃�ڌ�L��Mh�ҒGSCS����
^N��\v��MC�z��y���(��vX-4�k������p�M�����xCc#~��p��S���)�v�ھ�����5ђO�x�2\��ߠC��?n�6k7C��o�@]}C��0��oj.�:S�{~"NR����C�7ޘ�C.��a������^��������W�����W��/���o�!�`ь���[��D�-�p�����V;f��?�Q��駞��iX�C�������M����b\�_��wq�տ5�tt�o�-���c�W��?_s��2Y��u�Y��y���'�CmM�o�^ߢ�O��v�s�
)ږ,[�o}�ǘ��B�sv
��N��ߪk�$�_��{�2΍(���!h(ףsK�|:�f����uֱ��z&�aJW����-Ȃ(�����e�p��e�+�Ν�"�%c�(�rw�A��d�Ry5��Q�а�墤����Ew#�c~�JD�#�w��C�>����R����0��`=Am�}i͕�} _`�\�ِf�m�S��4ex�I��f�� Ր2V���acw�vS��뽛RKCP37�8���TA���~Hѽѳ{7HY,��b�X,֎/��>=���b�X,ֶѢ�+�ڲ�
���UN:i�vU�Բ�_x�5����_�^�о��t��[����-Ɗ+�מ�$���kX�j�Y��xW^s=�*+<�EEx��WL$:-v��g^ �)UYK�n3�`u]��	����ׯ7&<�2����i����a��(S��P:�m��}{�D�=�n�:��S��{�=��3/��k0�z�Z�T�}[E�ڒ�S�Ղ�ۜ40}n‹��=l� �}i�k�)�
ihh�}<�/��9ھW��oXN�(����8`�}
�Ԡ�ݹ������1n߽Яo��.��7����c?qN<�hէy��Q<��S��K�{F��ǔ
/�]�<HW�c��}���K���Ǟ���|I"�u��_Yy�qJVV��%U暵�}���N>�$3�ͷܥ��"S+}]i�����=�����S���I"�Q.$��U砖
���L��e���҂Me
�?�ajI(>����0����R�ʐ�UZhI���ѱ�g�)�b��'d�޺+=ФƹP��F9(m>�E�~G��<����|�ц�?2["��Q�����;穴ۀܯ'�|�(8�DU���	a�7��i�'����r�L
&����m��ps‹�bȠ�����:���sȠƥ�)�r,���żN��C���m�C�BY,��b�X,֎��R�X,��b}8���,�!So��v,\��o�[�<�Uf�~����˿��{�΄R�9��.��>�T�J�3?�%l�h!�v7���?ƞcF��o�5���E�fi`H��|N?��]�VA�z|��c��4�;�=<�ij��(0�=���}�3���?e�e�o�N<�0u_谫oL����:Ԭ���9s�1
���U��[�#�~�o����|V͋��#ߣ:W�ϷaZ_�M
�k�å߻�}81iܟ��q�)�Y���mw܋K��U�}��]p�i'פ��?��E>Lf�>��~���;�����z�:/;x���7nS��?y�=��0�~��oo�����Zύ�z�y
֮4G^�p�	�Se?�_~u��>����7؅��:�E_��D��H��2�d�a	�r�ry-���R�8�E�I��@3�P��Jq`�:�KO���V"(#�+3�0�`�Z*�cJ�6�`Ѭ�z�)"A6�9&Z�=B��:��v�箍n_=��@�#�,�3D���%�+UFP�<J�$
���ŇrNJ���4�gR�ECJ�w>�����I"���G�޼��]�|N�ˍ��.3.M
='M�fBhਓHk7�Ѿ���]W�V���A����O�;[}��'�𪂢?��b�X,��b�X,��bmN�=��N�n�k�~��U`/n:biI	Z��T����c���0^f�'��7ֿ�ݻ'�*X:c�;�h=h��n~������*��|�:����	��_��2��\�����͟���J;e�d�n�w�y瞥�\�����9z����>_��o��5�7��`�V���:���$q��G����q:��ƍv�YK��u�ܩ��swu��gJ<�}q�]��������R#>�:lo���>cZ�C.ͦ�>��W^��Z��
:x���n�q{������G���R�J͟u�����չ�B�.Y�-���9zw����n{���Äu�<����=$��0������B�K�h���(�aڤۖ��%�g
N�aY���K�}|1��y9!m'ݮ�売�r'�Tt�S��h�	��3���ai��qh��U���w��6m�9�WDm�lʹ�
/|"
���&�o�I�����p�ϳs�R���7�%�1�v	0u�J&�*�FN<�<���P갲w(�ݔ]h�9p����o\fݚ7�a�	�0W�/.�=j��ӠTCL��b�X,��b�X,��ڴ��Gýw�}��z>�أ��'���%����;�o���2�,�$�k�䊌��UU�8�YYGЫ��aB�j���k�v�:�Z�ڄ�ݚz����۶rW����\�>��y=e�4����Ͽ0�j!|:xޏt;���2�t{۷��3�!:�#m�
6���}QW���yh�v�Z�lذ^xoN��E
�Y��V��zUVk#���K��������z�(�o�Q#G(��2>(���ay���:1�O�jWf�#�.Ĕ�E����;~��ܖqXP�˄"Ex%�y� '!��L��T�L�5�H�c�6�sg
�Q�c��D�>]A�l��޺H�>d@f�^��q���̖�}���^��}��<�X��f]�b�l.�9)2Td���X��Q�LS�pT���9~sö>��<�l|�������@��`Bs��	����
}���j����sҔ��ZW����7�I
05�<�3���A���C���WW���m��j�_���ޜ=g�y��g�X,��b�X,��b�X�ͫ5�
�霃�����p��P\\��f����?:~�����Ol![m]WW�^�<7�%����dv���r�

��e�cI)�\~�ч)���y>�"̟���Ŵ��6)9x��3qkdMk�&[=�����Vډ�J��MKf����y���
̘9�{O7�c�vX��F��|\;�o�+C�mqY	rE9����|pԓUL���&��g�,�(#6�TTT��G���|�eܖy����b�'�5�F,�d����R �LD�OP�Sz�$`4�,�B��ɇ:��ړ�s=PzG�jY	��.�=ꠟs\zPb�f��'�.�pͰ���������g�D3n�ux��I��S-K\	�X��}h
���ݶ��W�i�sZ"Qh��"r}�i.L�϶I�[k��P�Ֆ�;��C�jPy���m�?�S���;��W�q���m�a��^ֳ{7�4��m��/^�i�祗|,��b�X,��b�X,��iى���ϜL�٭[g5ٝ�� NU�[n�O?�
;�<c���İ��q�=�ݏ�T�v�v�aC�	����jxZSSc�\^V���ݻM�Te�v�Z��s�^��oo��В��M���V�r�y��}tS�w萝ЫWw|��ǒ��[�QU]e\��׭[�z�>��l�b�*�=��ێ��d�V���[��>*rnD	�	��4���,8��a_pf�������!�X���H�>0��ʧ�"2�Gp��s@
^����78x<�A�2ML`�4���V9}C�\�I�{Rz��s��}"�xa�졈qa^����BLA0�d�.9J���Y��	��Q�G�Α�q�'�AW�e�O����5�$�>S��������	�l�]�]��oS����is���af5ՏTj��\�z�>�7�Ӡ��b�X,��b�X,��b��FݺvŞ�GEKbώz��c��	����p�_���2�v�i�M�UII1=x�w�#���o����JAF�3�H��Û�׮�`�F*�ڱc�-�b��%��;p���O����r��Bþ��|�{����-�w���<��_�]�o�1��3ٯ_�T���R`�˯Wf��ȟ�I�������N�p�"����;���ٰ�26is�$��� ��1lm�"j Dl�B�����sf��!g��i@xn}�M"�>%Zj�B������kᒸ/R��"���¶�h먔wihw��{���n$#�%<\�0W��vJ�$>���6�2��ҹK�p��T�
�k3�
�ݗ[��(`��&����?�s�_ڄ��v,��b�X,��b�X,���%6�|��
�Mh�WVZ
7A����>�sTn�6	�ɣ��zc�T<���n��p�����?aܥE�u\���៷ݥ��Ɉh DK��=��8�O���}�'�S�uu
f��Ġ����3fb�&�����Ѷ?��
�ԯu�����f̂�/^;�:u4���ҥ�pُ��S��S��O~�;��G�X�$8#n�(��y��B+�N�s0
��rVƨM����S��)9�R|�DTP�W�Ht�����ɳIG�kQ��f�4���tW�w:p�s��EH
Sޥ���l�Q�ľ�ܶս�Dԇ�6Hd�gޡUi�F�]a��i���A�>/t.=<Q;��T�M�B����%�eܯZ�!���o�"���2�lK�]�m�jvX�X,��b�X,��b�X,V+�W�X��:!��U\��?���c�%����Š��V��P���s�/�ƍ��*+1f�H�(�Ñ��=Fbܾ{�^1@��[���W��vC.I����a��Ufk]��O9��׽[TWWx���z��ף[��xc��s��3�
c}�CL���O�K,<���a��~X�f-/^j΅uC~زg���g�z"&�9
2���GO=�<���Q�ڦ�z����Ȃ0��H(��W_0F��P��\�6�v]�NE�SR�/O�Ki�\�2sj�|#�1��%�
(�rX�&��3
I�ߠ‘Xj[p�G��\(Y�{QN��妌���&���()�g��c
�|�},}�M��4e�6��Pq�>�!4����)�wK:0h�ܖ��ik�g�0�������3Y)|�\���6:+<��J�N��g�m���7o\���r`�X,��b�X,��b�X,ֶ�˄�?�q����~Ƽ�}m����ڇG��+������MO=��s3��#��7����j/WcO��{|�l]�IoS�#��a��c�b���ѯo*��MW��W\�$m�.�w�E2h��Q��oϚ�[�7�v7�/�(?y�8��'��T���/w՚������n��^���FϞݣz�#KTTT�k_�**+}_lذS�N3��s��X�GWV�z�
ۛ�>Q�m�v��@�/�~���5��xY�Kp�>o���|dd ��}2�pB}��>�t)z�%-����� ���9�L8Rc���Ki6�.ܨ{_���R��WDu��o�)�����DP>�(�gp7�p䨯<�����f�-RfլJ�j����Gڦɨ��v
�̶A���GA��J� ���֧��I±�����8��M��[���4��pSf��}]���D������qL��b�X,��b�X,��ڌ�d:>�_���3H��2�M��W_���2C-
#~ʘ� ����7.�օ�ҹs�����˟0�Q
k[vr��#FiIIf�����6/���}
��[�.������D;�N���_�����K/F��|�/��7qܱG����R�Ç�W?�L�aǂ*��|�~��/F�~},���6x'��痢w�^D��t��1�n�}!g�,8j[�-R�$8��SpõW��c�N��u����'�pt��GK��Y0&(w��so9�5�I\� -�O}T���6"q������I�A��Btj�T:`�-��(C$V�m�6��і�f�>�$�)E�z�b"��*�z%Ab�ZF�6�&q�J��~��aC�~�����!j���׻ٮ��9B��2�`Y����e��-7���X��ߌ�?�`��];��ޭ�X�o%�����:cv>�7�a�X,��]k���r��`�X,��m4{�����{<u��펶�_E�z�Ʊ虰!�\A�dA�:���*��c��X�j5:�o�!CvB.�l����-o���P߀�N�VQ��ʊ
�~�_��'������M��0��B�\�
�jo��Яoo�'A�2�u���s梡�	�z�@Uw�C�֧��
,]�܄��ڥ3z���
�d�3��:Q�t���V�S����P'���o�C�����m/.�{�ꌋ�>I�˘%�v��k�����G;�B2Z�:�^�ȀLO�Z��Zp�4mB���m���"
?+�M<k� S\k"r���#��p<WG�/#�;�w
�*��!�;O����"m;���B�ߍ��"T�n+Ep�R�M�Nη�i,
>[��-
�k��΋=�?)(d0�>8�>W�n_��GwC���%m��[�G:&��b�X,��b�X,��b}p�-�� elj}��I���Y�Ҧ��|;tx�����[�M��_Mm����x葧�f�z�҆1�ӧ'޿�Fl�:)7��]�C�j�k{���>//����FdJ��q�u={t7���\�q�-��h��u��&\�f���;u��~�]s8����5�ܥ#>*2�.'|L)��brǥ�a�'�#J�sA�����I���퓙���a!>od��d�I��VGD�k_��/u�L #3�Ii��л4]�	��2R���%E��;#z�U[�ɯi�d_;`�Ó�6J�5�.ݻ��͐i3�O�o�:��t���Q�۔JBt�,yvyG��2��8���`��L�i-�i��ԲQ����L��b�X,��b�X,��bmcى����|�(�(��e+țu:��駜��%�?�X��/��=����p�'CiI)f�z�?�V%%�8���Q�fO9r%z�b����l� �]��a'#8hƒ
rsR�U#g���2��
�P�*�3��E�Tfܗ£3|288M��r�	�ձ��AV����cxK�-Y$[�!S5��,���+�z!j��&�kŶ�"^.]����7�o8�>�.BX���l�<H�6
�3;�"�?
ϥW�;�=IL�[�_�L����Է�,X,��bmS��e�`�X,��b�HoM��U�WC����D�O{�)Ǜ�����NW�?��٘��TCS�N��)�OKD����"�s��ۮ>"��4M"� W�B��jTz(G�1q�;�7����2
�!����e�n?d�Ή��|���܆�I���B��R皌������Q��r.PP���Kp&f���3.Ĩ�:ǧs�4N�#	B�E�6����ğ^I0V�
ࣈ�u�: ,���� ���Jc����D�p�����b}l%SqC��J�X,���6�PS�n��b�X,�E�:Di�>��n�F���_�^�ԉ����O���w�����o�+�MƂ�����T��a���q��'b�}���>�K�f^�$���B9�"ǣk�i�B�Җ�_��Qd��?n�1 h�vTpETW���";W��c�\�zE��g2���ѳ��Q�4�M���Ia��i�>�T�9@��e�h!^:nB��L�kN`�ƅ �k��*$%��Ε����)]CQ��0Wn�s2�L���V����b�X,kۈ&��b�X,��u�q���
V�P�:�b��*$��J'��ߪ[�.��}���X�d9�-_n�}�oW��=��k���9�С;�L�X!��Ϭ�C�#6!��i:Ȁ4����S�H��%���d�'�t~��R4�kC�4u�2"i�����83��-Xm��j��&]�
��uU&p�	���
�6eS�'<�K�'R�{�U-	�"��
�-�4����f�KG�x{�F �Y�{J��蘁u�Lفd�P�?���F�nY0Y,��b�X,��b�X,���0IeE����`��h{�$�Xee%�
d�6wn>
�RK0Ԏ��3D�Z�3�
���̴<�C(�y������16��qnB��#	�9�q�`Sd���2�.FV����h��svBh�ZJ��-aΨ�_�¨ZX)�>2�5�0���EE�WF'��M·!�U�#Ԟ.�6r����Է6�o}<N��&Z9F=���4���{��e��)%`�X,��b�X,��b�X,�CQ���.c�o%��GS��!k�\d�#$�!�ṗ��J�n;ýl���h���PD�u���a+)DvdA����+,*��!q�ԏ�����rR�X�%�uz�>�*AY[��(z���%��"Z�DfNZ?���J�\��tigfT���,A�\��Z��ܑ*/($n����9�}��n��`�X,��b�X,��b�X,����p(
���JmbQn�أ瞌���&�)���D���t�Rxǟ])���:'
��4��X�u†k����&�x�MRY"м���}��޾w
B��Qu�߶�$9�ipap#�h�Fe�~�Ȝ�Pi'iܶ���ω~H2u�n]P���눼�BF��<O�+Q_1�ܼ8�,��b�X,��b�X,��bmS��,���z�Ե��N���O��+J�h}x?��܍�5'EM*#�'�d��9'�GYQ~K�gsy+_%+6>�$I���K�ҕ�x/�#}�>��-W�Ç�}������7���e��v�ÔsT���M(��(��.#&2��W]P]W��r���muGNWwJ��i�qW�N	�Ө��Rl������+��bsb��b�X,��b�X,��b�X�D�{�'�Yە\n>z]�K�/�3ϼ���bu�A����G�K�:��,��@��QzG�s�{��=X�s=f,{�1�@�==$>4����CKG��C��it����$�݄��5�Lᠩm��oQ~��6d���ʐ���5��#�:p��%}����oh�1�y���^�5M3 2ln�`J�W�p�o*/ U:w�ag�W�t@6ޡ��{qYm�&��b�X,��b�X,��b���2u:^��*�4u.W��>u<:th��f��%��`λ�
o)-+������2����ߺ�̞g����;������1.��ޘ(2oY�B��,�
.K�h�؁睓{Y��^Bdθ5b�$��S��S�5����	�
a6r�zH(�q39%ݾ	�>)�CP��C�$4�4
�TC`�?S�c9�҄��J���԰�R��G��H�-��΁�2�+d&K�oQ�u'&`��م�][u����5]-ul؟@��R���6���͉&��b�X,��b�X,��bmR��o����M6���۷C쩙:m:�~ífYiI	:`�W--͘9�]��b&����0h��qV�Ǟx�<�"�u����>�	0׭ۀ�s�ù��zk�aA˲�+��J_΀~}��C__º/3�R�$�0�E�\ڕg]��*������� ч��6�,��0��Z�:	dܘ�yJ�LRza�˃��6��|����u�y9%9:���5��*e�])�t��� o����<�2�WZ�bi ��G���y!d`�s}���SAmH���R�$mˠӚ8<*}��1��Wz��#�����R2u��L
�+��ׯ��������K؎���b�X,��b�X,��b�ڔ�X~����������������F\x�wQ���L܏�g/\y��bmN�t��	'��	�}�
�9���{�y�E�披�~��ՏqЁ�C�@d!Ҩ G��%n���4	�
��1�}I�RD�̹;	�E�T��ҕ,|�BE��c��CB2%ȩ�.֛��1@���D�>�c��Ck9���2	��R�!�E�(�[�ALr���)�w��jѓ�U?���ꑯ���qF�ԁ[�7SPUG�Qٕ��c7����Q�F���2g6�?=�}��6#�,��b�X,��b�X,�զ�j��S&~�ʘ���̴�+23����
��Q�ֹ�V%%%��%ᔓ�7��~}{��Mz$�-g���Q��$!⪐��‘�.+r'
�z�#�,�օ�R�U�?�aQ943N>w6(9e�=�h�$R�6d��M�D�HQ�(������0���a��/Dt���:g��!J�3bs�CN��B�}ní���=$��'ᨳ�:=��m�k��B�N1���=j�gO~	0
Gk���+���H� 6��������M�cz+���b�X,��b�X,��b�ڐ�8���A]}�:ZM͍�X�Q�w'��(��ӊr��iK�.7�;u�N�;�	u{D��>:,�%�Q�P���bt����e�̶�

�i��M��|j��m��JQTT��f�����CEyr�\�.����x95_��Kԣt���j��r�*Uf��޽zذ���Z5�:7��9�SUY��+�555޿TT�Su+�J`f፮ϊ+��Ԍ��J�]���̱b���a��h2�(E��P\T�,���ժ~I�R�%�
����q׭[o��w�^�I�ݔ�q��#:|�
��9t���UU�)l�}���e�V`��t����&�CKm�V��G������Zu�U �����Иٶ��T����U��;���Hן�$�G�)�2��B�z�	��H��M�¡ZHgÆ�}t9�&i�!�SI����'@vE�GR��M���:0�5c��#��� Zd0�}���,�LL��� �y�î�:?'�7
�t��\R��zI��h����h��N[&ofDԉ+�'¤�sp���Y�?�����ޝ`smȨN�?����u�sfKn�ŤQ��9B�z�Z�&��b�X,��b�X,��b��E���O}���貟�V��;�<dn����&�Y{r=��s������*�%��݇㇗~���A���K��k��s^FcS#�cC0~,.���)��=�g>�U�;��P75�>��I8���?_�s��g�6�vݍ�Q�N�_��8Ⰳ2�<;�%|�N8�H\��o��̙��鯘��[��Mp�A�����8�O�}��L�?�����O��U
���kгg�~��8��<��e\��o`�S��̞�+��_~]�<��[���8��q�Ǵ��q����ڛ�7�~ΥUVZ��N8�q��]���s�9���f�o}�K��X|�?���̆���U�.��7��Q�!�&Ԣʼ�{p�-�š�k��91=`<���sѧO�6��C����n1��]8���7y<���3�ê5kL�������o��g�z+��~irV�᝷�
�x�9���,d��H�n	��gA�N)�glyTNt�Bp*p��.$*Er��3l�.�T���Z�i��vBD!a�3]*<tԒJ���iU��E��K��eh�a�������3�
ފ���$�'[mbC覰�L�$� #%M��2p눅�<�>l��K���j��B�)�6��]3�.ҤnڭanN	X,��b�X,��b�X,�զB�ì�G+�n��oM�����^Ǝ��S��_��/_�nR�g�ė��]<���$��j�=?Q��᥉�e�'c甔��GT~k��c7��mߘ4�`�7U]�w!�}�/逸��_�?��������XS�?�����S0mY�2�oSu�!7���ҭ�����/�^|����Z�~#��델�?5�.��݇�.�^}}���4�#	�>��{q�׿��˖���,^��_�m�=+�K]�b/��x��77ӎp
��~��+������`2�ͷ���ù_�]hR���;��\i���=� ������7|��b �%��� ��v0Ypf۝x��j!�^�z�GW����4��R�6L�[�nK��h�w�&���y
ET�@1.���/g@�m�g9����K�tS]��<��WG�u7~�H:�k.�e(O$�
I��Svꡢ���QoKY6��@QP�Q��}?9@�fs_F�9�|���.��ض��ذN$�bm�G���R��O���mN��L��b�X,��b�X,��jC��%�o�X�u�I��b��c1j�QhҰ^�H��Oע^A��}{�o����%�p��ٍ�u�h��%K-xH�p�Q��k_�QGb��'�u([
�6n�5���mW�?no�ԡ���
��<`���ڥ3��>{��^���QO�O�<Mջ%�B�ʼn��ٟ��덡Cw2�'M�����m�����y�N��g�~���מ�	���}����&�m9����r�?T�l�@b�;�CD�޽��^{}
n��� ]�h1n�ǝX��Ɯ���J|���
��cF���[�@�~?dz	x�'�l�J���;
쏢\|آ��܎�Ʀʹ��{���^|Uǁ5��
�ϝu���'Хs'���5k�_�Q��p67nX����	��б��A���ǟ�ԩ3�6(m.m׾�\�C
�,�y� �|o��{4vT���2`h�oJ�)�a��͌��8�T�RyTf�4c�%�cpT �vrg:'��%��M�^��J|
���UH,i�͵h��������3FT�lr�����O�*4��6GI ���@�8G��� ���� �x�(db���8��JA�l���fg�`N�w��ʺI6�=��0�o]��,&� �nt��+G�b�����}�p���X���e�X,��b�X,��b�X�6ԭk��?�=�Θ7{��s���T�u���@
!���w2d'����o����-$ޜ���[PR\�eK�9d����O�s�<�R�鲀?���)s��7yu��|���x�g��F	#G�+~w9�$���#�5��C���3g.v�y�Y�ÐΟ�����mB�j�X�q�/�_=��r�jC��O
.��2LV��;O�2͸��5��mj6�����~�z�u���/┓�S�؄����.����7��ߏ<�Ϝu
:u�ys�C��]L�̖�<~��`萝L)'w4N?�|,%G��Ͼ�s?{f��1������T�Ͽ4Q�?�si���L8؞=zl�
˖�4ǐt��p1*+�m?������`�uX�|�|�˟7���;m^J����^���K�Nz����œO?����}{�k����o���/?�ܳMXZP_S��L"s:�$3�R�/r�:Jfi���2^aD*�U�`i!����
�4���
Hj�:G�t�c#w ��1�$��L�>4���LP3qq`�U8�&�qE�q��(0�p}�p�:�E�RZ����?ڋ��w��t�؍)�R��,LOS{iaB��VfN����욥I5n�*u�v����x�ֱ�V�d�X,��b�X,��b�X�M(���y���g�:�84++*�:G��ڭ��X�f-M��z��U�n��ϸ��kp��'z葦)ڵkg�/��w}}}AE��Jf�y��d?���TK��_xٗ����*X��c&j�_���X�
�v�.�u
����r^��f\��~�?߶X�j�q�������N��R�s�&w��ÆR�;���޴����k��?��7���j�A�ܢ���J��6�7R��BI�9g�q2�U�C��Gv�q���ojnF�͛j��Ï<����(���%u�T��{��
Gq0R�W�0�f��oL��=^�_��/)xiݷ��η�J�')��ˎ/h�6>���\�^�9s	R�&��a��c��=�������G~��RF��}Ul��	����~ub�_��q&��Є	j\�d���EA�Z��]��u9�-��>v}"Bo&f�$�okm`�pNEs\�ֵG�~��Ĺ���u�]�0��
��a�Ɣ��'ܣ+#j��c8����@s��ৈ>����][���f���b�X,��b�X,��b�������UϞݱb��6��㨝�oϜ���[��K���y�a��Yg�V�`���E��}0�w�k��j��&�����3�.[����f�n�(hW�)w��a())BS�
I���[]��'�ŋ�b݆�V�7-.*��-������>{��{����5���]�CS��NT�u������ۜz��u�	�_��i�e8���u���ǿ�n.rdj-[�—�s�n�وf�ǫV��;x�qcu��^]�;�˂�=
��O��Bz���da��~:��p��|%t�~���g�m��C���#���)�:su���LmS���7��E̤P�.W&����|מ�Hk��*B�T��T��s�k�g
��8e8��O*��!t�r�#�jG
��?�̴��!l�LO:^B�A/�!�{A��!hCx\�t8q�>G�u��v`�]7���`mA0Y,��b�X,��b�X,kK������x�?��|�uX�|��C~Y���?�`��s��7!`�JK0s�;~���}6l�1�P�N��m]n��:zX[W��ѱ-�v����ݻ��جl?����\�m���{�n�Ȼ*	m0��U{��m+�#��Λ��k����	Ess3���!t�X��.�;�qu��uŇ�w<��9%����s�9�h�lƠ,��6�,�
l�
�n��r9+e���ab����7��,��mG
��6��k[��׵�#ru�j���!��u�.����r��	J�jWeJ}AǤ��sn���L��G��O��~���îYI极���ڎMi/<xt��(ߧujJ�m����NUJ�/��=SD����}�87m��ܷ@�����_������w?��m�o,�7X,��b�X,��b�X,kǓl{N: �fΚ�_��OX�a�٭�����Ɛ�;a`�~&�?o��;�������k׮���o���5
:�Њ
�}�O��KJ�-���%چ746�%.�lXB.����^.l^%�%��٨+"�Om�}�M���:g�^ھ]5���y�`��>�4�L��-K��l�Vv�������>?�
��k�O��yjljF.�=dM,��բ�~��dۏ�\�G�_��em\%���_؝>t��2�-H���#��O�+ѹ�̠���@,pf��Z���x �dj똏�a
�T�Ӏ	Sr.�k�AFa�n�˧�%�g���h�_�1�T��Y�{QZ7�{����u�G��
��sT�ɠ0������,������}��������%Ϥ~D:C*Sa��O��?3#O}3[�"��fUA��IS���KX�X,��b�X,��b�X�����~/�t��_���{�Q�M�'��Al{�	�ݻb�=G�	�Ϸ��g_�`�4!b{������VVV����Ё)oMoU��e+�Sө[��hk����Ʉ�ٳ�_���z	���E
��m���S���Eo���y��_�?&?i�n]q��x���i`��W?B?~�����ߒ�;�e�W��/~�l�������ؕfn�S�X�]�j?
w��S�7ժ����������ȍ睘h/���p�Df�x��3[�\S!�	x[�CJ6B�����������I8:��!����?A!`M�4��"S���ܛ�^�sT�}��0���A ՀR�e"���t�Z�� g������&�NW'WW� �:fB0ڹ"��d�9S�ҁ��턜��B�p���
t,�@ͻ�K��8W��}�ڼ��������ח��J1�e,��b�X,��b�X,��}��3���N�o+��{�G]bw5:��k�S�:\�Sfl�ha*���	[75n����&�d���I�����z��>���i��j����3g�ŗ_�}��[����n�C=��������T�@}c�|jv:��e
^��o7a�%Lh�]v����m�Lz�-���;�e���uSSn��]x����Q����ٳ?���l� �;[xi*���ƍ
|.�G����w�g���Ј��{g|�d����q������:�7�KO=�8�w�mW,^�̔S�`�
7ݎ�}��O�4��y��[��LB&?�����"g_*"xGpϛ"����p9��4��I*'
I���2�R�1��u�!_�"l��(�}" *d�,;F)c`&��|�WR]>K�|��;3�E�/�CB��ҁJ鯛�p�8?n�kiJX4�����hq4�o�sr���c�Ϟ��)��+�˔\��L{��ܦ‡�M�a+���������9%W��4�������'�mm�90�._���x��ҙ��=�ᘣ�1G��f���p�]�mz�芋.<W}�/ه{Ͻ�
��i�ßo0w��5�~�t����7�i�
< ���b�X,��b�X,��bi����j�o�߂�.V�m>p<�:-3n���W��'�ő����F�z�=x�ѧ�$}������ػ�t>�_��*�o������+,?���܀��:,[�2l��ˡ��ٶ��'w�M{�L��5����)�4p ^���!���Ա����C��5]��[����G�[�gbŊUx?��vu�ij_�ʧ����?
��3@�A/-\1|����T�6�0�E���I��a��%�۷V�Y�_���>��+{b��z��a@�nǕ�\��Fv�J?�싸���K�>A�7��?y�	w�t��wc����Q��w�@|��Q/�c��yb��ĵ�݌���`��]���Ѵݎa<�r*��ՅcE�9�9�^gr/Z�g���SCx�z�'A��Ё����[Q�L�Z���!�hz�(rH
Z)<���
�x�H���Xa"�F�ھ���:U"@B�dho��”�o��v�<�3�l��㝐�ĚR�%���P��v�0�������j�q90���Pha��=G�Z�'��x��Εw����ك�l��:�E�n����M4_��i&$��o�À�K/������.���G�mt~�K.�%���O�6�V�����g���r4��˿pN({鲕~?��b�X,��b�X,��q����{�1�������-X��]w��{4:`\f���9^x�A��~����w&�a�ϣOo�/C[4u����w���O4�5j���o�z���W��Ν;b�^{��^��
վ1,��O���x���
�X�j5~{�_[񱢜�w��
��C�?o���/0��--͘:m�Z3����c��ϙ��rK}jן|�1�=��f��p��o�ˉ'�Vݮ
_���L�4��k�(��1[,Z�'��YTT����A�uj��.P�?\9�˿�����שsߨ@�?q��� ��ޭ�9�_�ؽ�P�z?<�̋��yqj�xz��8�ztG�]��4�?	�9z�v�U�kڲ@]���8�q
`���]\(ф^�oj�|���3�P��$&丳~@
=��NHA}�JG؊��
�d7��Һ�ry ��Jr9'<D�NDu\�ՆMf�ܓ��Z�gܓ.'�wJ�}��T�K1G�-��
�6u����Ym�5TTT��X}�\�j]F�!$���Tϋ���zD;$M����))#(-��һW�6��C|T�?4�jK�m��Զ,IlN�Ψt�DRDD�e8��m,B�&��	X���������yy���p��cO+�h?h7n�1�2��?o�o���e�/m��^�3��߇�t9�/9��b�X,��b�X,�Ų�����U㷿��	�*���w羇u�6�c;�99ô,�����Ə�_8�L�;O]��h�/����)V�S?���n#v�F��ԩӱ5�ad�o�w�w����VO����^�/|��(.�e����W���^�[z����UW᷿�����S+T�?q�!��_��.�� �}QQ^�o��.��9�d�L�:��Տ1B�^'
W5�o�Dm]�9��省ClE��v�ZD�D�u���6X�T��/����8�4�s�H��+ѯ_߰�:)?���
��LxL��S����DO1��Ql�.�M]:w�%��9o�P������؈Q	,x4z�l]��x�L/��V���`/�:3�R�+�,,��V/�I�^�W_.�ٚl%�](�~xK�I&>�m�Y������pL�mH&��{�A5_o�/]=j�"]n9s��k�MsTל�p3'���iK��]�ke���!d�j�
S+�#}�[�S��.����׮�x)F�p�zC��0>Ili��<[�El��|�=�yb�g(2�1�
?d�+XVۥ��ܑ�uH&is���L��w��7�ˡ��?���u�Q@s2�ERSS���в�B9�<^VUUi��b�X,��b�X�L�ގ(;I��bm��{��x���''`�Uj�?��}z����ؚ��:�ס`�t��QX�ϝs��:|iIi�پ��_<�l��ŗ^�Z�MEy��n:Dm]]=~|�Lz��w��r;uꀿ]�;���d̜5�--�.�P^ʭѾc�4�ru�E���D{�Mn_����?o܏/��q*677�;h��7no���礟��7�p%&<?�-5`N�v�s��~�������l߻W`PK��}xܱG�g��ʕ�Ѣ��RA�]w�@�h��� ����|'O:�쭩�C��&��o+H7�_�m���ee%f_�����ij֫g�V�9�}�S�y�[���֛���o�i��]�^�]�t��
7�"�%9�[�]�8����ʫ�PW_���G~�ڷ�9�����\��\��:SNg,���!���#w��	/cŪ5(R�@����;��GI��
`�@/%��C�J"kPY8hq�oH�n>g�3O����R�p�D4��%� b�$���Pg|�����˄�y'&IR^OA���V�>��c���tO��eh�qn�������a?!d4P��9��>Ԝ�ם${���Ds�Ӕ����6K���d �Я2@mС�e��P��9;�+���:U�j2nS략�O�����Ć�u�k��.�F�����6�;Ш��w=��}K��P_R�D�X,��b�X,k�j�xo�R���PbF�M���A1��YBD�(�5MkD���6�m�8�;��i뷾�s�a��gJ	wj��e�2�\I|�u���Ֆ�s��L�l�0M&�w]K��G_�{
;)�I
����$|�����U2�4�d�FۧҖ��ש
��'i��f{*�RM|~�����&/Y,냨��'�p4��|h�1h���?�Jڼ�f�����D��2�!��Ҫ���'�9"*)�(̿���go�W�M�-}F��5m���Z�z�q�m^҄�=�������h�VyY9�<�v��#;��[/Ju}�8�D"�0.���cǘ?{y��v�e��+��>�|� 3�ȶd�(|o��n^
��Dm�ڮ{[�����l���$F�>��$�V`v����+��s�N�<���wL�Н�I�†M(L(1G;62��X�����9�eB!X-����pC�^U��Z^DJ�� ��+R�Nad
�@GR�"�9C�o���.�&B�GI��\"��DU��M��7NG{�P��QX�B�*)��m�]闘��"��M��q��rW
���.��U�U{N�r�>w+>�(-7�+��K��ʂ:��5�����[Jw��~;������rj:GzJp:!�I�v�x]��2}
���������AZ-w��?_g��]�9��ԎJ��߼,��b�X,VVm�g�X�Gv2�W���F�'�&%hk
S�&zP0�&d���7�`kBD���X���E����?^R�-?�M�ф���w��#ذU2;�'ܦ2j7�iK%-�|:�V&���;��)I��[���I(:�.O�Gl�;�ͦ>1Nj�FO���Ċm��3X��fJݹvb&��c,���Q��*�)9����^k�'
�\ޖ�J������7�R@�ʼn�Eߘ�I��-��E��&�ojٶ�q�!~������yH�Pv[��:���<F�ɶ�[x.��rs�`�6�on�CEj SL�L�����ɍ�ܘ,u$��+v$�B��rC����G��x*��;�jxc���
�	�������L�i@��r��&?��� �m���2��	=:�(L.��0SrK�0�э�Ʀ!��sB�ѷp��A��t�#�+!�%�!?�����s]c�c:b�a��Uzm��"8h��{�F�v/�n�TXk�ˇ*�>�e��6k��g�c��>tm�S�H�|g�<�3���G����<�ȃq�~c����W��b�X,ksjjj�~X/黫u~��$Mb�O�$L�XP��I�#{��j�J�/M��$�����o�]����_�_JfW"�n�n#��	D�.��خ^a�B�u _~�4�,Xk����?�"e4QBw���^m�2LhI{w���J�މ��%�� Vj����'�y�	*�'Ibܘ	�/�L$���X,kGФ7��ɧ'|�Ivt���Q�
�b}���QRdo�n�c�[6�G�qMZ�9)}�pI�q9���W�r)̫q=������ᲓŮ�;6u�֜]���0
�J�.�Zk��	����i|)�.>2�ԎM
ê۝��z���	��ԿRj�q�R?��G� �._�)���"�{��S��iC�"s������h[I�K3�&����n�!��p�Jl;�yI"����&\���)E3q �ARCoJۭ��Ϝ���t��������q����[�b�Zv��^x�u�ɏ��އ�b�X,�mI��7�������P^^���k��b�O�+�c�T�IA�"DH�	PQb�$l��8�G�$"bs�{WD��*馓\$�'^]�G�m��
�ɐwȷ)�pr	��4���32�w�;'���]�SR�TF��<C��
M���"ڟN����#��ΦQ�;�Ӱ��?��#��ij'{��[Ɵ�,��c���&��|�9_\\�SN�$���V��h�X�G�y�Cms|�go�Y����\v@k	rZ-3Ѕ�	�cf��=a_��[N�9%�����4�������t�D��?[�O�@�Ŕ�bSض��>�Cd�n�O�a����..��%�i�OcGVV��$Ow�������
I�R�,�]L�ƶ�D�Q��e��#����ۆ�m`c*��ۿ��]|*"Jei��H%P-mz�<�%�*�cuM���v0O?�X��򊫮��0�+�W��K�K/��	{�/0�����~z��b�X�B�#�ˏ��O}
X��
G�X����n~�'��d:%"�GD?�]X�ġ�h�8��{kZ$�"�û�۪ۨ�?��D�mk~��? 3�� �O71���	-S�IE1���%��=K������ש��OfM�>o|�Y,��,��k����ir�V.-.ܕ�����qk6h��b�X۷���o�X5[���r�����kQn��<�b�G**ɡa�:�a�r�hJ:�E�YG�g�h�r
ﰌǛ.��Dt��
oZI̪���H`B{'�`;ʲi�-F�I��9/ݘՍMC�YDcSW/��ָG�9�*[��5��h��RJ+`���.��JIu��q���TW{�n�AoJ���l�u�E����b�ƝjszW����#g?�w�'�n�4��>�Ʊ�$�פY�6?�qv��Ԍ�)6p����*��XZ��v�3K��0�\j��y�q��`�Xۇ�Θ�݇؎5e�l9d`_�X���tػ
k��xK;��UWЫ�j���y�������i���X�b�z��['��u�h;;�C�TN"„�k']�I����(�V6kv*���鷕wl��d(��֖�L�D�F�B�e�)Bv�â���>�1�ᵌ�#��ݾ���Nl��cT��<u�I��;�O/�#�wd.�U��bҲ�ꩡ*R�LoWQZ���,�)�~�(��K
p�h9����so��+�����9T�V%���T�S)�CtR��@B�)Dx���8���vn=�]i~c���_x7
:	�9��P�ow�w�s�ɨ]ad���A8XH�̥n�4*��C��:?��_7�a��\�NWF62�D����4'D�b�Di���%�V��|>�܍��f�b@���G���R��W���;0�k��D)=㾊���W�;�+�g�����}K�!n���tbp�b�X,��b�X�</�1V��w~�~CDX�ϙi^	7�� ��0Q$#x��0	��E�����`�x���K�����(0���H�A���nef�(L�c�]�v�$�ae����o��ښ������hf��\���9��6T�-'-��/����.�'w��ܠ���BK�����c�X,֎�h��}�J�Xy�뼸��JKВϛ<�HkQ�0+P�V�Iù�˽?�h&L)9�\��$�)e��O�o1N@ˢd�f�&ܘW���nl�蝰��Y0�j-L~t��oWK����cqZ��n��Hr��p��~9
��:hJmI��*�"�
�@r]W�>�C�J�4*E?�@c[�=�f=cS�W�΃;2q��^�r�0���6v�~c8G��
A�G�;�(ks�X,��b�X,���*	��,�B�P�RD�D3Ӆ��U�_*��9ݹ��/��Ȭ��@�"�VGwU�L�"�� ��52�Etۼo��!f"�̅twe�p�9&4��0����tǽ��H)VZK��)0]�Y+M]LY.������.�؜?����:�PjÄ%�׺Hw��V��&�S/,���?�YC�QN���&tkb��"�6���e�I��Jll)G��g_��E�H���m ��u(�M��HV��FD���@�<�_�(�T
Q�T\�-�~�x�(�x������ڱjh���aW�'�k��չ���v�����!�Cy��3��)b�m���LY��pn����aPzx��"� i]����"�@�� n?}\��c�č�mE�~�JaR4�2��#�F�-�&��b�X,��b��(��@F����顢���~���I�+kˊ�$�~������;��q�	u�:�ǡ	"�w�IF��9*-���dH�	]``6ė��<�]mr� ��� 'L��eIut�[���l��W!*�Mvٹ'���iQ�PZ�F�]���MP�;���LS��Ɇ�I&�.�ه��X,��bm�jN�&Ōo�h���WQQ�	��ϧ(+�GE���)i�\e;�;�\����ܥB��C*�0Jr7�i��vؖ��Ɨ���0�&�G7��їp����i���k���02Nn�sPPȐ�=��ʩq`ބN�-���`(�q���k��X4�2§Q�펶�|�����mjC͆��Syz}^�p?��P�\��ܤ�n�~_{��ϻ(���n'�Вb}<sy���ܘ�a�)�,����6܊�[[�GqRl{lWa��Pي''Y,��*2���O8��e8�A���O����?�u%�@1�,`�~��-�KtW����G��3�M�$H<D֖�J�lJ*]z���x��EO�v�9
��"��$��ɠ4�)
�J[��k�ݣ�Z����O��Ea�ɵYRG�g�G^HrXp鯃$�,��b�X۵�8NQ�$�xgGE��e�oВy4�[�W���R���k��҈�-IY�,��E�0Z��h|+�w�(Ҍ�\��gwL)2�s녱6\��/�G1c?���P9�ͼt�x����0�K�^ʻq�����ʔ����ܦ!��.AD�q����vyQ����ʻp�n�.���rU��utC�H(J��i�;\ωm��D~)�+&�]�씄M�Y"�Z}�����E�6�MDG���ʈ&��b�>	��֠��13�������QR\����/�[�<�N?�8�p��(����7l��
���a{Qm]����c��jP���ǽ�����I�|�`�X,��O��?�@&:Q2��M0�)�h<����p��!b�ǝ~�Cx�O�D��Q��4���� ]DŽ����V�IQֵ��񄖇���p�\�H״��m�)�`xd��4�2um�ϱ)����K�G3��w�hݡv���
t����~�[�b�X,��}��%�H&-�Tsy��E�(p���GeQ�Z�
i)d5�͑�nPfbD7��JU��+%J�!5�B�a\�ǟQHW�IEඉsQf��څ�p�+m%����sڱc��Tc�BB"��^z�霙�O԰V�g<n�7́��al��@�\���o9*nB���&M����=BP8;�$5�f��WҎ	�v��;n���#�;�~x�o΍�� �+��m1�d�X,և�o������KKK0f�n���`Į;�MMvٝ�|�
hhl�U�Q�O�096e�|��������)�I|�{��ŗ_W��
�s�z�ğ�������:0�OP�X,��P�\�…I��Lֿ��(�e&�l��Mh8������h�%��AD���úFP�*b��,(L��ԙ�B���&d�\��;�S��kmO@Ir*ơh��舆?2LHI��>�,�[c�d@t\0"M�� �Iw�K�Dt��ډ�ƜtBT��9�@����q��b�X�G�e��8:T��۳D�ҘL��H���	5�#�/-E�z]���נ�1���R�J�	d
D��G�wp+��i��4���{»=�� �}}J�ayč)�w�q*�o|Z!}�y�f�M"/2�vz�fU�}��qx�Zcn�B|WS��y(M����v��;�T�Ʈ����]���~w��<睜�uj����'/B^K�	�r�Mq
xG���$�{))���J�O��,��b}������؈�^y_���Ƥ)[u���g���ݺᜳN�GR����Sr���Bu�>�T�X,��)�LX&%��o���qAnL�C_��g��0N�~z�%��,�Ɋp�9��B"C���+v�)�&r���v�G���p��^!�&��	"ZN��,᧒l��p��I�+���Ŕ��;*��ҡz�>�:�본="��m�+��$� K��\�BY�m�hB,��9���x^Q?��b�X,k�QBc�4m��[�ԣ"Ti������v����Q�՚��T
.���c�@���/E����a��Z�}'-�4!E�֏}]ְ�ˑ���[��=�.ˆtc4Dc��s"��f��	�+�Mp6��id��]��Ԃ\���uj����ۧ#����B�!j�+*m8[}�v�6�u�jY�zޔھnR�7��[
s�f��E�����1̃��\�G�vL��	a|������"��}����Ѹ�BV��%��e�F�H?&�&nU�"��c���b�X�$JKJp͕�F�v��^���o�j6�ޅ1�wG^�������~5�^�U��(++ǹ����I�565�/�\�H��P�P���u�*�݂�ô���;t@|Ϛ��`�_���E׮�
%%ň��l��O��\�n��*Q\TdŽ�I���b3�5���MM�~UZPfVnp)Q[[g��o_��PT���/�q�FS���ۙI��e�v�Pyee��/+Z���*


f[�w�>��Ȕ�ٳN3�sۨ6646��T��47鰸5t��
ʱe�ڸ�ŪOt��݌��C�g��!�b�X��[.��@=FL��j!�ء�<����e��L6�f��چ�ܑp�nZ�a;�Ft���]�d�[�-�{I�6:~tW��ί�o���@�	�(�����#�=S��4�UD2��"(��t9|������;����O��Hmٶ��O.���-t��sx �����b�X,�%=�a���9%���T�F95�j�&��o�$��Z3�ZZPR�杚Z�<�l1i� JQ��6�SZ�D��TAw0!f}hQr'�(Ge.����PP�GE���(2
2C�0V��"�4NK<ŋ�ޥ��1�J�6�Bmu;.��y�ܓv��x�i�Z�iܪ���i�]���H�$�<�s|J���t���"�$u����ګor�KI 1D@	�a�ʵ���v�*��9��>Ņ�A�e�+�M��~���<�"�9�jK0Y,���J�����C�v�]���	/a��x�7���S�㻗�����s1����‹�����~�]���/c���ʹ���b��e���f�;�sg���w��~Ek0�o�T�S^^���{�5c���k�}��Ǘ~����nO?�"�q˝���BQ�`�
�~��sѷOo��ο����8~q���?]�w罇��~�l\{�-f���2�<� S��|��{������TT�o�����ß��~
�
�٫>{����1GD[I�o/↛���W�Ν;ᔓ���g�
U����o���7�BMM���Ӏ~����~���������aㆍ�ѣ���/ {��w|���c�U��su�GSs3�:�`�����
X�r���g�q2��΍9_�z7�r�.[���R�z�q<h~����_�m�;v/�X,k{�@eDF� 4���d�]E?�cG$ܭ5v
D��O4�L�Yh��w�D�e�ч����9B�+�\� X�`��c�Bg�cI"# �����B����B���:1H�)+r�H�o�бIX&_dt��H&%J(�eJ`�RA���7�<�T�L^�,��b�X;�d^��*}���g]�����H���N�4on�67��9m��c/6�S�$-(*.FyQ���԰/��D�94wU�猻�HXԖJAC�0�sNM�+�1�yi�*��q͍�r4�k�7��rS��>��NFP�?A@��[7w�m#�g$h��e���2�ԍ��~z�����
;^
�Nxx�����ʔƶ"���F;�C�:L�s�ҸUҸUo�O��:��vsn�L}e��Dck�ĵ#㺜���7&F7$����M��z�a�8ۨ'��|#�����b�X�U%IU� 41�j��]~��b����K�:�����^���k=���<�ij����?k�\\|ɏ��r���pC2
+����%��ǟx?��oѨ�QQQ��T�5k���g&�ISp��7�ZO�:���~��k1s�ls���&��g/����7a�D0��,Z�D�i���k���6/�|�q����A��?���i`�u�i�mwܫ��W3�.).A� /Y�W��:�=s~����.]�/+x�|�*�]�qsj�;M�鷾���+��!�XW^}n��>?��`�b��g�C���3��Z�ρu�R����7������p͵7�����r���G�R@�wHS;��nͿ)�;B�o�*W���,���~�5�!P���-��}��/A:?A"���M�C�r:"NH�?��ˑ�@v"�E4�����{�"c���
)B.!gJ��&�|����? �&vL��u�k�˗� �?�A�&����.uwy#L�cU�G)�fR��~�I�s�)���,�	��b�X,��ɚ���eaY��[R�45�YC�\1��wѠK�35lҮ�2�K;.��+�(�%j^��%��|#��ȗ�̌mbx.���Q͎���n��y�ۤ��A���'J���
x�cS��A�x�r��`҂�0��ii�,���N���~��	7Kj��+)���"�t�N���"�M��6'Oc`㤔���b*B��8���F4~�ܤ�5.�+�\�ΈH"�l���=���HI�c3�D<H~\N�S��3�ow�è�U(ƻ,���JC�w��7��Zq�z�]|�����}�8@~���K��{�:n��:x�=���&��_��-�P�t�����S�=���S�(/ð!�p��ſ���3xY���=֪��~�k�㏿�������bĈ]Lߜ�y����6�R����%�n�z ����q�����j�k� ,ܽ����`z�Nq�-�#�fܧZ�?���'��K���v������=���7]c�ͪ~�R�Xsλ�p'=�ޭ���/p�7����� 7;p��XҌ�g�����_�o]t�_����[T}n���/A�/��ٸ��p�������!��b�@Jh��>��D���"2��O+=��4A�cȧ�®�)?$��n]A95A��Φ�I6��� ��"	�'���$|f�!��6n)2 ה/C.#[.��Td���r����t&��"�L\9��_h[P��T5�΄�$~����QY�灧X,��b�8�s6����Xo�qKޛ����L�j"V�����P�J��=)�7�7�X_S��|�I����l�`54����n��	[+;�b��V.D���	�xڱJ����v%�v�m��Q[�wJA�\�T�ۗ��a"�(�I�FbǑi���i_�in�3�P�K{c��y8}nN#%9Pm�ܙ�` ����D�vҀNiv�״����\��n
�LNN�ר�7�7�s�ՙڜ�:?g��T��U��l�lru�2Z��㙷�Zt���3�G[w��
�P�d�X,և*
�~�ǫQZV���:���d��Qo��Ù��<�����ɷ�����O:�<?�ܳ���U}�Ӱ��Qf��/L��=b��:7��eyů/GCc����%E&�j�.]�R��ku,
�N<�h�!��QG�Io����W�홳����x����ڎ�a�1{`K:��Cp�7�(���3/�|
˖�0��W^��5�֙m�t�gѡ};���N2rÆ
x�0f�H�z��
B���zTUU�ܖ�M�W��~�����q���8`U_���Oa���4��0�O<=h�:	U(�{�k��/���_���k�*۬�f�	���k�=G���1���q�0u����1Y,k�\	�raX��1|�'&I�#Zd}��u�OIw[�ret'��8o't�X��}H(~֕B��@Q��.k�M��!�!���!Xp�r�f�~pE!u�͙$�Fw��6R�+��D!א�K���咫3u��Sٮ�ͤ��E�b�>�Z�f
�xc��M5r�h߮���_>6$�t���z��~\��N�9y�T�6�aC�k֮E���0m���#(�qc�I��Sy�.����7̾3g�ﲳ߾���&O������W��ԍMMhhh��U�1l�`�-�~�N�5e�:d��+W�Ve7��'���?	o�����G��a��~㗠u�[o��x��O�^~
6�~Կ�]]�Ǟx#G�P߿)z��)K��\�Z�C�*�7��cg΍������L�:
�ڵ���5���oب������+ʡ�)o�G.\��y
�����߃����õdS�+v�HpM�Ӣ�574!QP��U�SqQ�T4vNɝ��w��h(�s'�p��R�0��8���	���
S�%a�1F�Hm�.O���<Č�Y!�ST�L�ϩ�s�Cܛ��z�"�wQ��mA�3�uZ�$�q*�)�eMM�9�[#����K�ִ07��A�oe��a���6�ڨ��>�m"��S���W�h*�\Z!]jw�����>�M�&��b�>T�0=�ˆ��:�`|VAF ;T6t��զ~x��ݺv��u�W��TZZ֪�
7�5_���,]f@_MM
6�A��
�����JKԏ�&��lv�y��A1ݬ�g�L��M��}�j��}u5��K�\�b��{���~�3��m�0��/5�i��s/�lB�j��Fbu~�
+#-[�n6w����~��ӂ�0-Ѿ};�?�V�\cB�h�<lP�L��m���as��b�Xۉ�u&��/n!q��	��ђB�\�:ܪM�%n����^S*�!E4!(�x0~��p����_�.O'M��$m�J˅u�Bz�RC����U�ubm�¤��.��snBDJ?�pN�cyxY0V2���&v�	���L���Mƺ�#
T�D} ��
y���z����b�>Z�?�.[������W�_�����4h'���b񒥨V@���+V��^cF�7孩(�4p��m6��E�S��D�ڸq����?O�����&����ӳg�)������W��Ï�H��S���ޞ9ӤZ2x'\�k̍����g��Y�(�{�93����#G`ڌ����\���z���T�X����ܱ=ޝ;����	�G��Է��d�(��!��_��wfc��0y�T,^�D=��%�x�7лwO՞A�.��{JK�U?����C1}�sC��k׭�tU�Q�vCǎ1q⫪/���Ν:bݺ��w�u0f�(4*`�ִ�
޵W�Y���e�֭��k-ޙ=�W�Qxw�
��W^1�I�D�Ä��m]� �>���wҤɪ.�aқo��_���*�~{��{����v��}��7��zқS=�~��7�v�:u^�
��W)ؽb�
t��	
�
�c��U�����5�]�oR��4��ҥ���qI�|�!髯��]v���D��y�ڹv�i��I��Ġ�vBUuJ�s�/u�}�̞�.�{�E\|��T�T��e�(|��{
��iQ9�$1c�b���:}
�6�esSZ��h7��>+��@j�XQ��4nra���.r
h)m�G�@��KhL*����2��.�������n��#8S�hn�)u�܍w\��n�+�����,�OI�p�HW���4�L�ĔCc[W[�$3ʵ!xi�nTO[4�@)�~�=S�okC�ڵ��͕�Ⱥ����BJ�ar↿��7
F0�#O
�kܦT�(Ͻ��L[�.�1u�`�X,�C�0?�:`��,P�ҹ�{{����sm� Knr{Y�<;Ю�o~��&w�|���2����G����~AKz��~��+�M6�ҽ��5kיu�{$���mpnqh��Xԃ�=ԏ��ꪨ>v���e��x+���[��ݺv�.C y�j��9��r�:hw��Kn!ȅ��+��a*���b��k�:�A�ত�~��=�O��0"I�]�Bdn��T�M�#rK�����O�]�n��}�Ҹ}h���/�ok��{�I�9�*�n�'�ܕ���5
P5��@5=X��ʄ�[i˷�c�ۆ���岔.�������I�q�XF-ϰX,�GL~iبo̜�_QQ1�vݍ8`��
&���9
s�[�G�Է��Ʃ�f7���ÿ�|��&�Fm]x�ߪ��
H
0�TG�Y�f��y�|�����P�Z�T���7l��ޏ|��
|-ǫoLRe�Gii���ho"��L<�ؓ�ի����xl��O<���/�4Q���xSA���1ۯT�U��=~N9�d�>i�`�y�ax��gH�;�W����8;)Ш�O*+*�qK�j�jA~�1l��E��]0Q����E�Z썴�^�����Ϡ�@�%
�4n˿\{v:E
jYUY��ձ�
�/N|Y�N�60p��/ᓪ�o��|�[����|�Y�����	/(p�w��>{�
��`��_�G%���}�����2P+**��?_����+�����h����4,lT��^�}�5������1���V:����\��i��oM��i�f(������T����k�	
|�6�>��8��~�]j��h����2u�4�Ր�W��G�p��:�t��Mꘃ��`֭]��o{s-�v�L��=�HSΖ~��������k:���m����u�z�Ѭl>v�>osd�:�@QQ��g�бͰ�AI�K�hR�|*�(�9�r�!
A���N����G�k�(��uy*i0�%͞y8i���9�=.{c_ꢮ�j�0���F��2'�
}"@רma�h���2@P[oA}!M�Pg� ��v�����"���܄`���*J��"�}�Ԕ��5��98�F�Y�.MD9;�Ö���mN�����T��vej
K��g�&��b�>T�����C�$ܬ/�����>}�	����ϝ��>w��kr��w3sS:���
��9s6�9��ݻb��a[L���˗�O������U����.�|��1|����(�n�~����ݻ�M}�m��h�\�Y;k��a�v�G��t�p�@c
��~�W^y,���Qds"���g�"���8"�X��;8Գnˀ
m��|��(-�A¯U�#g��D�'���;��0�S����.��vѠ&�/ݱMwp#
#�'3���f�%#Q~N"���pD�&�j땝l�����O�W�6��*C(Y!������8
���b}��|�J���7�r�>i@بS�(��W-���Œ3QQ^n���p�S�n{D�D�9�?��;n��m�u���q���3l�`󝢣�t��Q�3
�+�?[� �7�v�Q��G��#w���M����x�j����ߌ�8�V�^���߈�\{��'q֧O��7�`@�������zM�����+ќoA]]�9N�*W:��gW3g��u��
�����
M��ڍ��A���T��UW���	\��m�5��u�סNշ�ڧ���'O1��+�v�z���f�2u�I�]:w6N�:��v�V��hK��=zv���3�>o��_�s�{Ϭ����a��򘣎��9sU=��]i¿jYUYe�u�������%�q�����Qd��U���VC݅���:����|�
�W��]�˖/�t�w���YUU�=G�ƿ���i���tD�I��Re�B��C���uWs�h��~
.O�9�R�j�ףU�>;�ys
hwo�#@���I^u�����;��u���R�aK���(�)�)L�–�<rek�{��]z�U)����B��"����j��l�K=`�� Z���aMqʁ�܍g��Ι�^��™:X�Ʃ���<)҈��Rh��%��_P�Xy~܏l���8*+qnN�@��^b�t�I��‡�u�LGN�/�MaӤQD��
�N�8s��e�^';�ɲ�}J���ah�y�'��t��*��b�X�Q�_�a�#�'�R+�S�N
/u~����.�����Pa��?������G��l���{�
D�~��?c���]��?�N8�8��sp�]�c�]��������8<��'�\�)s�=v�9RT�������˘3w���
X�lE4M��J��G:��~>s�;��/��'�z�Vmy���b�X�Hf�8�VX�&]\H,�S݅��R:�}M���\FӒxt;9�fƭ&<
*���!��S�̄��I�n�&�'h�kABuT��$�7��ֽ�gY���QԬ�?O|?&~�J��!�� c"\=����	Mq��,?�#�&��.�w�G]m���=�ֹsÓ.,�#���Rv�A�đ��su����`Rg�F��ԩK*��!T��n��_Z���M
��ge���#�G���3u�/a��E3zw��@��t=j��}w���k&���S-�,))6�S[�7&M��l��ew0�����a��3q�m˜j=��̙��g�w=�4���RVVn�ӳgw�[V?撜	;�Y�*��3g�c�.C����0ހ�j�UU6j���ջW/�1\ս\��
j�>�9�o���Վ�g���wTݺt�d��V�W��5�տ)�s�4����JR�[��
t��
%������f��u?w��]T}��:�Ps�’�K��gΩv�j�ٵk�[�����U4<�W�]�;5`�Qp�����=�4.Xl΃���]:u4�a��txۮƅZZVj l7�{t�~���_�YN*�R�ӡC��ln:���iYzv�rV(`VRZl�F���;`���uXYUF]]�I���J%�y�]�V=W$�������-�O_K�� i����p˵�����{Q�-u�Y
2,�%����Ɩ�Ѹ�f�G-w�Tö%���HW� �`f���
]hY���G9���C[Jw9�5��R"��}S��s4F�2!�����O��)��j��]!�4���!���M/� !�\���
ݣ;wn,��/:/�v'��Л;0Y,����n����Jl��õ�{�i��C� � �N�`��n���+��T�Yv�c�H�����Ϝ�?^u��[��Ϻ@��)7?$�x�_�^���f���ƓO?�����1'�eB��PDz{�c�i�8��'�ƛ�497�v��M�۫O���󰭤l?����׿�~x�ƒ=f�t����&���bm�Jr���!��7����,[��]R�(!2{��g� ��ZF�
í����{��d‡�r!�܄��u�Y4�%d���VF�cH_�`���>ĕ�Bd&�܍߈�wab�l�W�;&��a�H�G�v�Ɩi����q���\G�7P�[!|��D���iKז��>�`_��VG��zs��|]
�[QV��f֋�(�'�X]��.�̾�uXO�LԐ#~�}�s}η�yE%E���P@����5�l{�7��g����p���o�^��U�9�Ӧ����/��3NS���ر�g�9ˬ���gn��DK���>����:���^緼��أ�2�N�����'n��"d��N0���9���֣G|󢯚ϼ��b�9��ǘu��ݛ���/~�sf��>s�y��W�dr=&���w����.;��,���~��|���7�vx�<�B��=�<�<t��F����<���C��@�Ϊ?�MB�Լj{�ڮC���{�5nl0j����1B_Ywhib�1�����3N?ռ�9S]� ���/n����D`@��,�#;��M��v1�<�����6����]��ҡA�:ō��:N?��a�{QC����(��	s:l�z�М�ꍍ��X�v]����hl�5���X+�����"�Q-�9~
�|���>sM��`ƥ2\�z"�JB��0~��)l:�4�I�se��8*†���5eF�	�����G��an� x���XYF9.��*`�dsy�>���;錜�v����4&w۸>
�U�����#��ڇ�"Bv�Αp�b�l.�hf�9���Gw�*�츑����b�X��t�d�,/���������"yb��u9�Ȏ�:��z�P*���褏���)',�w����%j ���~������`V+��˰!��_�}��f ��L�G]�tN��%q�q�Pӂ����a�nñ9�r��&�t]7V�"��@��3OE������Ŝ����؄n]:c�}�R?
�6wwj]��o���/����Q��w��5S7
5;�o���?g�<�`�������3^B����om��9���M��v�9��ҵ�Yׅ�D�ҹVn��
�vǽ��`�T��=�P�Y��L�j"��b�Xۣܤ��)\��6��6%=O���H]qva�W�����))�̍�]���Cɨ����f^h�����Fho�K�K:L4��:!\����s�0�c^�� efrEF��z�&�$��	�YyH?�b�?5|�ə�0���9q�S$4�"�n3M�jָ��ۧ��vL	<��D���W��u���
��
�u���y
M
���z�޽��ޣ3�_9��_2���*k濷�Nx�os��GwN[��G�n�:S��
�x��Vۼ�Ƴ�<��o�!�G��}Qؠg�{Im���׮��{�1��u���1'V���8�$��%K���	��j�z�����+���,�!�%�>�����c�6�M���S�9�Ƌ!X[��@����C'�7�Ộ���g+@�a]a���ڒ�oۡ��޶���c"rm�cK����O����u)IZ��q�s���u]�(�?}�v�����N����2�뫭���?�椝�:Dl�FPiޅ���/ez�F����i03>��f��Wj�҆V�'Ũ�k@yy���Ȼ��Ή���K-����k;FL�k��噴�4�!�U4���q9"�!$�#"�������"f��Fcxa���¾��sN��ԍ�i\���v ?�����¯�L�K
�AG~X�m'"��Au=Ł�$�}��fއ2�
$Q�ޛ��JA-<�]���`�X,�C����=�5�oKC����M�S�N��н�4�Q�|s������p�������󦫱N�;=�C�AÃ�ތ0�8�$�wrT�&gӹ&�:p<�=ش�
�ٵ͂��qM�N�z��;Ȅ�iR�g:�NEEYf
����1�
�h�@����#'����|����ݩs��}���~�iu�k��]TO;$���Vg\��̟��֮]��Q�c�9Æ�0B�n��n��!�b�X��[�C5�췕��?΅�zw��d�p�y����r)̒?�f�B�WV�0�����V�ă;�1���f|�\5v�7{lITD1�n����4f���Z8g��<�a��߭-<0u0��"(&l�t�����xr�:2��~6��^�R�%҅�r�JO�T���3������h��^��Ï��F����;
_��<��L�ĺ����ӹ�df[���S^��o����e+𧫯7}߹S'Cg͞�?]u��S��<��SZ݅�h���7W���ɼ��^m���������nu��ar�90�$r2"I̊q�װ��*��5��TDA����I��s~�uw��sC���0(.������n�~]��{�M���K�y�V���?ӡ�Ï<��}�d��[�UJ�w]q1>�OE��u���\̙���/${�<�$W��W��E�ҷ�_�"|;�X��.��4�o~CsL�����(���z� �K�aKy-m�Cұp��\e�$�LR&-�ڐ+�H�,yh�r��\�q-
�g���"�rpɋ<A���<��	�F�t>�&�%���Z&u�-�Vq�#%�ő�5�
܌c�&:99��d�'�k1��Y>rs��1��6Ĭ�f�DL�,�j�EBv��*%h��ΰϏrk��Q�r��
3�pRD�1z¼kS���)�H1�H��V��wo��n��?�'�f@@@@�?�w3$⸓ϲc@9�$7��htc���S�O�_���x�s���B��{^����q��פ�O�v���ׁ�X��ݭ����>�ω"�K_�O�4�e�+��u�G���6���K��^��͑x+�*� �8R�Q>D�<+d�y7ʀH��N��H]5�:>�,���ഭ��!<��Q"tBt&��…�%�RųiE�
&�%�9QR�:��x7a*u8Z��9��)}���TgI����X5V��|�+'I��i�~߮��~���+��5Ay�(wZ[k+֮ۨ�����{Y��̧>�*۳��:Aa�v�؅;wa���_�n��g5j�A���<�+�����u�eW�x�����g��z:{G�wx��Q�I��҂
7#�/�\F���s��ȼW��c\�G7���r���X�j-�Q�^L�2	�3G.����r	qq����N���&�����d�}qǾ�yh]�-mH*��>�T�tNH�QB�t>��:~��4}wy��zg����GԴs�tlnjFye9�L�a��c��S٨�R�Pt�|1��|!.j2,�5�w�8��Vd���Si*�2�ɡN�W�ܢȰj:̩�Or�qiï�]s�8��jDoad��陦�쟭L�u��ʖZ��V�u
j����+�J�`��p�k/L$�0s�|���EV�5]ShVeD���ot��Wi����6���=�w
.īmV�H1�2�r2��%�pk��?:��oL���Jt���7C�λ��_����I��u���`#��u��|C��d���|
_��ob��<�ŗ��9�%���w[
��.��pJ�<��y2����u�����l�E�Y�*?Ԟ"/9��(J_f�"�cCO�<������c_�dSiş���n����]+�{ѾG2Q7	h�H�ҵ��fC�����u�sREv,�[_�Ei��kR���G~&���Ӷ���ṗ,�����~����_�7��!��%�̷gϞT��G��oU���t��-��un:�N�v�=8X�QD��^J�#�~E�^1��yL�R��C�-[��yt�������p�?���
����&�%yV��m�;W\���Y�w���~������!���K���0��@�gJ����,޳���(4��h:�#�.[����п;1{m�]yZZ����5�`���>�>�@g�P����^b����n�m޼�=����(w�.�ռ:_C����获n��֥��u6'
%J���������xd2�ֶV���Btv��Ҝy|�˯`ݺ
X�fMj;w�]��q�A�c�N���/+Dg��{��'kwd�ȩ�"!+*+QT�"yc���g�s&N>�D6�!%�{����[S}O9s&�׵��/K�&���EU����6�#�Eȥ"<'�}�S]F���g����GZ��E��dX�:��E+3��V�N?�
y�M�:/�	K8�����&�
G1r���Z���m�O���9�-*�I	ީ73_����=F&dڤ�t�D��H���&M��]i�,���m;��yN�u�rw�}*�ӛ�9�`����!q���_?�i��?���z�%H�YÆ
�-��	��ͯ��w^�/8��)}�K���j�f�F��š
�yeH7�1�"�{Ѕm��Di��iŃ����^����u%F��>���6�j�7��&�(��q��8E�9�Xpdž|46�2����)G�aB���8M�P�K�cY2W���ꋄ#�y�q�P�n�9&%K_��R�c�i�*';S��H}+9�	�N�3MM�X�as�*Fy�Q���/���Y���&��P���WL�3��X��ܟ�e�G�xV)��/�3*�˹�z��:қ#}��G��޳O͵��}�c������JߌY/������Vީ�aC� �pG6nڄ��7��WSs3��X���QQ�:u��6)q�:�k���Q��B[[ף2[�n�k;w�������㮻9�4��w�ի��:��u�Y�K$]kmm���[��y��X�j5n��f�8�X�n�"�q���'سw�K��J�F�y�y<���(ƒ	�ڵk�o�>��3���e2P�w��
j�I��;wr��=�M�v����{T٭n�t��^`�r����G�*b5��Ä�֭��@���	O=�,�y�kh���r��λT��dK�m۶Cݓ��I��_�;��j�v��6q��֯��w�x͚���t�����]��[nSk���S�طo?�-͓@���k��M\�ւ�p���lرk�n�\ݻo�G>ߎ�g����<���?���>�յ5��
�>��u��E�/���>�7��OJ��~�h��V��c��^��6�{Oc�k۷oSm�����={ݽZ�a�*߄_�;ˑ�b��(�3]D��=�U��|��9MOY��Բ�΅�S3�;A��`,+/�rEz�T������)C3�WCd��	!���(�ȳX�s��͕�����E��i���|���ݴˠ�<�02��	)g���.x֖s��nM�j�?cڋ�DG1Y,�<�i�ya
㭩`+V9�(Fb�!=�َ�H�.{�p�75!+��qƅ��m�8W����մ���d�8�k
��D�G����i�I 𗯁B6     �o��1ӧ�+QPNW�d�g�q
�:�$�$�����CZɑ�P�z&�",AgIAʑk��xO�[�~6O��Gb��.	_�%���߼2��Lf��'q��8eI;n���ᬷ���"��*�rH�%�����%%����I�Z��
k_�"ŎYW5�&k(=ܱ����h�4�6mo<�dɱ@#�y���Nd�M�adjV�T�`�™���'�z���D�R�λ���|�̞�2ڕҾ���g��!C��Iq��3T{����8�{��읶Sت�t6�͠���O������M�P��^|��e����p$`�"�t�]����13�b�Wп_?<�ȣ8z�$���\ED���_���Æa�"��τ�嗾w��>628S�ܬ�7�gϞ�Hڤ���H����F:�I�+W�k��%��ߪ6.�/}&NϩK�lيں:�zǝ8���ڄ��c��W�T<��s�tݿ�O=�jj������O>���v�z$�����b�ѓ�Q�rg�q:�T�	s�o��1]��:|���~|뿿�ɓ&a�"��:s&��=�����Oa��Ax��YL�9���q��'�/�����9L��u���_9l���{1b�P�͡����b��C�Mkq҉��Ow܅�^s5�!�N��*󚫯bo����s��j^�Ud�[�p��?�ơ=u���ۧ{��{�����Θ�s��}���Js�3g>�pyA��=�nܸ	?��<h�uu�8������0騣��s/`橧�E����`�)L^aZQQ����hhl���7f��LD��'��T�(E5��O��I�o~�{�>}*�1w��-�qv��3q�_�S�o�����c�a�1�W��H������9g���s��o?w�}/j��x�V�5�L}/-�Laя(2>�)�2�!`��${Mr�p��8ʅIy�uNq%7���.OQ��z�DYY?;)'f��b�g�>���1	��^ue�oƶ&M�Y"��sE�w&ըG4��0�����L9�#�Ȑ��mҥ(:�.1~�q.$l$=b�����8�—�!���L+M]irjr2�|�Z#K;�31H���arN�xq:S,�����v���Q��̤~��j��7�;��%�@�%����Ol�lJ�Op��4��2��S�w#��h�D��#x`��%ǯ��:ra�Ʋt�º*H�C���YCX�i�ז��++s�[N{/{��>�7&�I�\"��>M|Ŏ?����M�^rK4Ÿ�P[�r*ğ��j?���2���1�����BZr�ڕ뵳��u�Z��p�YW�>H7^_	�z
�yqz$�O��������}>�H�9��<)�����}��ø��K_�/Xr���>�x�4�Q��6��c\�<a�x�yn�ҋ/�\�x��9�+
�t8���I3 o�g�����'��q�~�=��g�{���k'7C)t�;z٥*"f�~u���})��eoWk�Zy�m�������s�i������ի����q�G>�����w\��ܧ1T��x--mغ};{��w �ʘ;�e�y�L�ӧ�C��}�S��~w�ޭ��a�2�(�<,��k�s5�y��z���������NE��g"X�=8d� �wΙl0Ju--�hlhb�^�{a��!L��UD�6��5n�hL>j�6�^��}ջ��D^��&�/Y�m���!�
���޽�~��(�(G���8��Q��=j.|�yذ���%{GN�6Ug�/�/����{�D��G��NE��ݷW����:�0�D�����b͚uL�њI�xd�{�\��[-�!�%7O��y]��+�o��>E�f{�T�ߩ�s��!����1X�r��_{~nެ=�7lڄ����s�fr+��M~�ׯۈѣG��Ћ0g�E*�V�D�;��d2��I���.Ɨ>�Y��"��V�ڳg/�E^�����m���²e+ؠ�����o�I�d�25�fE�nd���*�{ܱ�`�����K��]t�2d�|4h F��#
�0��L�(/+��x��;�=�-%�q̪�E`{�q�R����:�l��E�9E���˙��ٸ�v-@���8m����`#�p��;��t*�da�dN˜Z�O��g���	�p�񨄩��Ğ�nmt��
EBU�֣P�1@:4,��D��:����6���uGI�i�ө'"!ɺ�P�N������f��P�2J�#��E���c�_�"2�	&G|2&3Q�j�̭K��L�ڽ�g��r��C�t��pP�<��6|�	�Z�g�1	c�l�f	睘�j�7��&�)���
N��g�
��4f�/N��
]hV���,�m��z>
3�)V���9�$��9��ޢ�]��1�y��6��)!�Q�\��o.m�^=�vnz�-����'X��u9��qة\���:^{���|��a�"#4�(%�\�߮�U��x�t\��s����Z�s�L���;��#O��
w��~ι�[��tduV�u�����2�(V�S��y
�}F�z4����
���
�����O�%��g?�|��}��Q�n�u���F@��k�2M�p7��f&����(��
?�%2�ӧN��wލ&E^y�eLJV�r�{q��ғ��;f:��/x��gp��q���p�<�v���G8�=6��?�){'N:j<~��8�#�f���M7c谡L�:���p��u�V�>l�P��Ja0_|�%l۶G)M*�G�z<��S8�"[xZw�D��{� #bm�օB���W7!�͢Vq���E��w�<��f�RE�
6��~G�t҉j��R��}��S��l��}z��>��X��Y"�(�*�B�2:��
�T��Q��i���4��V��Wb���I�;ޭ[=
��o��"=�1F��7���ئ�f�	E8��Ѹw�\s��T��b„qطW��Ə��?Ğ��qܸѸ��A[{;���?\��w�����Ɖ�';xFO�=�i�ߟ�T�YL�r4����s�#���E���{�����G�P�Y�Ij򘭬��0�ӧNao�j�z�Bͻ֭]�����D4���3�=��7'�HyJ�LEF\ӆk�K�fD���~�sSDE6(��#����V�&T��(�(��Z�Xj�=����9ʡYDET��Au�Ob��V�����ڒ��`l����^�+�e�0��tD��B{=FF^�V$���D�3���E"�z2)_��i����&���.�*y�|.b�е �D�p,���xeZT&U�I$�7'�5=��*ϓ���ɿ� La�90�4�$eJӑx�1����Iw��\d<y�|x2ٸи�9܄�7j$%�`��x%��8�-���r��x3�Ҕ��S}���M�c
�D���|�	��{�i㱿�	G6h�^W[e>�ߟ7+�lxӟ���C[�~4�ۮ���S9��^FkMm�!V� �g�m�"r^�‘��|��GxZ�hH��4�(]w�SR��p���.�t?64��`J���4*R�r�OHz����5;����Z�\�mA8E����|���f¤�A�tY��ץ�v��0V���FZ���eee8n�T����~�w�|�5A�R�Fx_�6�޴47�Kޣ��
�̨D�^��3�B�Q��N9��W9'&�^�'?��|������/8=������~	��~�J1��/}V%�b��͸��+�Oǟz�4<�c�����%�����ܜ�7t�Y��y�y��/Q_W��o�z���c�>~�I�g��B��֔C��������oD���;Y!��>�̞3�?��?}W_uy��px"<ߡ����N6����o�H5zqD�%���YOf*G���
]�c΁k�g�{��#P?��֣6��M�����xߵ�qemyjώ͖�״1\߶?*�ٳ�t�	�3����m�${���K��o��נ�b�W�Ŷ;��g*
B��J��@�ך�c��ͷp��Hmu6^2>ڰa�"������O�sU{�u��l=h����\J���S��1��s�s~}�߻v����5h�S�ommy���L�e!F����ܓ/��!ܴ�y����[UU�l���g�"{�f�٨���V��c��!�����|�"&7'}4�/�{��Z��+��3��ps����1"$af9.Ɂt��L�k	O�<2�	�J�[�-h3A&�s��y�ɻ��M�KK�IM�Юz��yFqLq:�[���ᇆ�����MOP�G$ދ�Д�/�[3X�V&�m�ԛ����T&�����%���Q���u{n�nQ�J��2�5�����|-̀�����s��7�}<��>���#���׿�?x���l���7�*+�_�&V�^�zw�k�F84�FwrհNY�7����=�3զV*��s3�uO>%��$�M�1'�(=C)�d"2Q�t�kw��d:W�k!���9xt����xdʴ˪I�����uJH��j'���%�t��R)eU�xe�����Ֆ�6��Ve��\8:ܡC_��g8��w��X��Hx�.}쌩��o�����a��L���a;�>G��I��㥹����-|cN=����NkII�0��C�<ѡ̾}�0��9�4=ǝce�R���p����-���Ӝ�/+"tf�c�0a�#0'M���)���
�	"��)%��r>	VJ�$��Y�����%�=U֖�j>��U�謼�~�}�����Y�]��s����^�b.]�t
���ٸö��x�����k�'z�Ÿ��k����qw6��u��(u�.��~Wx=kw8�H�8��0r�Y����G���V˚S�K���X�䠂��Ӳ��Y��8��|2�Uk)B���,?����Xӊ�m�6=��g�;��"Ʒ�W�Zфh%23fOFڑ��L��:��:�|���~�{���P��4nۀ®�,F�>E�j~G=-�^�ږE�b�2�J{Z��^��"0}N{/*�4#�5�,GB��^��E���#jGG+X�iҐ��!r%����C{X[R�B�f�;�r�G�Z��|��v�L�Z#I��'�H,1�������sY2I)�Q����\
-tkz��ؤ�G�^�ƛ�s˶��On��?�U~]���s�Se(v;�ߪ��z�8�k�|��u�c�N�s������‹�F�e��Mx#�[�T�]��U�/E��	����`ͺ�شy�;;~�h���HP[�h���<���[@@@�[V��u
f���IX&!d�$vs���HVѡB9�q�&�R\I'�.�
%:���?TܕN	�(5l��r��:S�H��E���.�hF�+�L҆�J)`�%j����)"Qj�
b3�dM��›�#�%������w'�8ŋ<l�/4�iS&cƴ�1}�d:�!�U
���*|�}Z�M!f����������K�Q#�aꔉ]���	KJ�����е�uՕ�E���=�n#E�\s���ݓ�.%~����S�, on;�٫g��Q����{���v�oI��}����[%@`}}=***q�=M&F��ӜA��"0)�2���Ȭ	.!9̰0I E���(�牨�qhY*5"RR�MYOXj�Bk�V�8��+e�h��wtu�=�-F���o\���+Qװ�
�QӺ����6�@�m/��d��{��7���٣�Q׾���Qؽ	-{�"߰�U>nŸ�)�$F�������
Ѩ�#R2��yD^:�C�f<b�ɛ��^�ȄO�D����H=['cdO�g.6�zĠ�!�R�JL2G��'*8v/�_c�G�2���p�e"ӗ���s��Q��l��R�ܜpF�f��,�;~�KG�i�}J���ß��}�a�"�򒫮ï~{�+נL*k	L��'����~#1o�B���+    �o�eٹk[����9/�$虱s�.�R�Z�������>���
~���;A�����'� ����0��|�
�$-Y��4i6��5���մs;����tV�	�Xj}
��i�M�fіu��Zd��-&�X�{�筽�`�V��L�zn�{��q������:�D���R/W��J��U�Xe��;��)����8�. ��#){��b𠁼6���!�Y��u�%p�	Ǣo�ް_
Y��d�>���0k�K|ܷw/��g?����3���
¥_Y���u�'��"/ߥO†���;�A��%����4d'/�'�\Oȃh�`~��k�-��y��O>˿q��V���2o��^N�	pH"�n�r^���w.yIƱ9O�&{�IEl�+��rX���Y����9U?Ä(�Tz�^&�<yFr�~Cz2�Mʛ)U�z��\��жԖ��o���c�K���rJvSc�rjY�K�m�ۓ�/W�ڨN���22���(1�[����;���o�qd�9��`$2/k�)zX�QB�g�Nd�&��:T.�r����E�'���=֤%��q�&�0�&,II�i�Q��z���I�7q�<��/]X��~v�x�D�Y'�4�0�'��z�e�!�o�8y^��'7�s�g?��5"/�5m�DL;��u�uم��Ǎ-��/��]�{�v�p�b����N;38?R��"a�r"�zq.?�O<�\𶳜�`��x��Yعs��*q�q�0��9'���ͷ���g�:��v7�>�w���&5�[�x���{6�I)xr�$��O~v#[Η�W�{���C�c���k�t���3OV�����|��_��{457�	cp�9g�6��۰}�.��>�^H(y���sT�����)'�"++*ങj<+W��]�_���!n&N���g�[�z��~�cr��qj]g���+W�E/��z�ea�a80$���?�(��ه�=��t��'�x\���-o��ؤ�
�w_ui�-R*K�">��g^�p�>���X�w+EZ����F �i�V�M|@@@���1qp^��*[�k"���5H~i�f���ov'/���*��Ǵ|�0��Oz���_;�x*
���NX�㯣Q,Hx?����5�Jxm�����0Ԡ��ARA���$kkYUq@R��f›�&Pc��8Y��1cm�'�L�Ѕ�8z
K��7Z&es�,��_��o)g?����w��و.�ԨU��9g��ͷ�JRҗ�W6�O=���v�D2�H�^��=���J�}$���|���+\v���7���
���9[["?��d���R47�0i��ڎ�

�٣�	�y y[���T{Ū�jN���=�oK9j������~��4:��mj|jߛԑ������5C�����\�a�F�1�ò\=C���t�V&$�B���R5"�-��HC��M�`UO����e�K���xF",#/
M<!��R�6�e�9�	�­J����<)w&�,{Z��4�=)�-����q
3%�=tDd�P,_�*6�W��X�ObS�@{�i7ieE#([1_��MB�J�H'����+��DV�J���3�W�H!��ov'�I.�t"M�JWƄ�E"K	$c��k"i31|��u�~"J>ر��%M�ˌW���nn�"-�těB`��7�*eru��^ɞ��=�D�漗�����ݝkhj�mw�U)�g��1���C������+����?�	���T���iU��>���q���s�����>	���j|U��_��D�ުڧz4��N>���9.Z�{�{�)��*Bjي��?��"0�x%%����P���X/�����O�J�����"9��V����G1n�H��Ŗ�l�~C��0RX�Rs��}���?s[�(��q�N���T��G�;g&�����'��X�dEJ���=�ܳNS��O�@��سw?.��lU�L7���[���CM`v	����W�9�[����1���݉�T���w���7ܘ�x�	���?�g?�o�9������])��<���W7c�n�|�q�����'O@W���gE�&a��~ED���|�+���5��羢6�m����K��Ym�KAk��%jC�C��W�����ēϺ�Dd��^�*^��}dovm����rl\�CSY�
�X�ة�>��6KA`8tba�ڠ<!�����"����	�瑘��$�;J�##
� ����H	�&-�grD�Bъ��#��Ii�c�2��#�R.Ƃ]�<�Ү��dl�C2��R���$e�
�;��O����S|,l�DM��iv8�S�C��qx<�g*�f�@�����)�{�s�")�0t��Ե��;;v�b"�@9*�����cG��Q#�3�I�7r�pW���߁�}z���[�n��n��-�_]]eڄ"=OCg�(yp�<hu��|�3O��a�Y�YS]������X�z��͛�`�ѩ�;v�QO4ƀ�#	�H��T���=V�
2i�֞g�?�yN8�<�Գ=z���g������vU����ڼ�䱕/�xђ��<�(���s�U�hllD-������	�z��Dy�~��ӟ���-��gDCC#�I�o�~wȈ�A���<�.��J����	]�6tW����ko��.\p�y�@�9R*���:���u(LE���i09#�W���sy!�g��^c����E&��%�	������ʟ�9���`�Ed�ߜ�����p�=���a���!{^Y�ۡ��Q�c"�_����F�R$*���hd�
�h@��	RI$����̝��nd�]c,Ǥ*3��~�PF��U�f{[��'�i��Ȝ�Lke�$/���M�S>�2�,99S"����2i�D��LK��.��=�"���HlsL��'H�B٦�j��^D��ѡ=2K�BXy?iO/G��f�LW�'1��ś�!�����_��5
�J0�"?�ٯ0�x�y�MʓI95���V�R���ǿƴ)G1���s/rn��z3Q:Z){�O����0A�ϐ��}"C�^cS�O��|����&�}�^��N�?j�8�1�$L��6LijnQ��j#u�R��ǟaA�<���22��s�I��8oS������9G��-�ީ6o»U�G/̞�B�嗾�cO)�V��{+�D�Y�Y/9q蜳OgA�?��.���s�<
�̘�6�O1iG�����g?�Q�n�D�g�H{]↟߈gy9�(�^���W^Y�ǟz��3������ؒ�'?�
�;])�.<�l�Z�?��o�;�?��"u�	�
���zf�(E��^��b�RN�oh¯o�������h${J�} �����j�¥��{��S��oc�V����ۑ�'�x,��8�>�V�Y�i���	��x����S9O&=��^H�ݙ������e=)�!c��VD�]`��,�����R�&L��f�1A`8������dX5��)ɩ_\H)]��M/��c�����:�㇆��e��K��Z�'}�U��p���ʙ��E���q�&#��+�U�Q�����k��LV@���"�K���5�Vy�����u�"Ùf�m{�((��4<R���y9������`��ޓ*?R��*ŀ��p���X�̕@*�$�:��Ijq���3��d0��k,�׏;f��D�[�O?��n߆��aӦM��/�~���(�/�SN:�.h�rӦ�M��Ǟ`c��S&c����������n������Ӱo�~�C���?����u�ؽk7��k0l�`�ٻ�������8��h=������F�_��=1n�h<�HS"T�}4�x��A�چ��v��?�1��{��~ǟ9
�g>�	�?���'�՞wV�Z�=���I8D&��8�/xՊ,mS{y"[G��+�y9�gz@�!ER��$�3�Q��0Rd#�m������ߎ��%���)u�C&3�d����!J2[Ee��ɜB�����j��s���挕��xs�zKR/���$I�o�Da�G�TSwq��LNg��|�d�T�\
m���ӞA!N�*ĦgM5&�"�ua�M�xi�,A�q�R��;Q8wR��/�z �6�4�鲱Y�FVI�ؤqH�׼���HLͳZCL��I^O$;)���}���
����d~V -Z	��@�iI
�9!d	I�oț�p����b9z���ᾇO����3qJޗ\�xz�I r�ԓ�u�[�r
�����k���._��c�QгWE`��h�H���w9/���eҋ�}����;�̢%˘�?~4�����f����![����{�}�Cb�\��ۺ������X(���8�w:�1�Gq�ԕ����Y��O����0�$=ԫ
�I����6���^`Q���o}���yg�ĵ�4֮݀�x��*d��A���w���q������W���O~�^~O==K�DeU~���9��9g��^�ĺ�GكtŊ�(�8U*A���uj^��F��k?�j�JF;D@ZOJw_T�?�g>?a4����c
QK����9�u�}�A9w��غm_?�����}�׈��������@�жee9G`�|�q|��~�\X�?~�㧷�?ٍ�n�9n�[��OU�k�nY��̿�p@o��fAH>�*1��5�R"�	e��4e&��=�0��"�<RR��!
Yr9�Aa�
��[����Ȼ4�2j&�g�|�
Voa��X��)�0�F�e�)ҿ�Ӛ�?e]���Ezʔ�2&5>�����)]|�,moC�J�E�8��ׯw���o@[�u�-mW"  �C[[f���m�ً��g�W��U4`�:�tEFފ
N��A�;�6l(����"(���M�c�G��x�Ug�}�_��m�^=q޹gc�%j�;�7lT�P�^v�ލ�J?����K_��M-l�;~�(,[�������ק���(�R{n��|z���نu�6�>��w��I��g����?�\����FMU
���R&G�lي��
4������~�����\�?�y7���#�ȣh����2��Y���t���f)Gf.�a�����e�L�A�sg*9�P$�̢"#����p�fI�
���\���
��F�ȕ�!߬)����ȅ�v�a�W�������Ե���t:O��]���!S��	����gP]lĄ�<�d64e��5�����`=!�9�'�ft�D`q�g=8��q��Is�:O�3�K�N�Dr�U�ӎ��g�.a�S/�xJ��_.�nl�ʘ���D-�ǽ�aqK�\�M�H���_�j-��d�@/��GO�б>��s��,�Iy9��$O��#��+    �+Ȓ�V�"%ytϘ6ٝ�0n���I&���@�)��K�^Ưn�#�|�7�E^6��fIz���{��X���z�:E�mc�o�W����5J��d�2�g�<ŵW]S�c�OŚ��ܼe�"[�oŚu��w��'rB�b�~�op%�)�O�~}������O�䁹΄�%��T�I!e)�gϞ諞mD`�e�p��Y��F�� +�/}�ܵ��t?DZ�ƛ�Ϯ��oKr5���Q#�|=0d���o�Ě%e��ǵ8��M8�����)=�	�6c��m��w�ySs�5M]x:�`�dR�he�&2cW�(%��H����H1���+H[}�#��?Q"u��ߞ��u$��MRth1WҎSRad�i�d�%1%�T�%�%}��|��@��k�1�Kuqiu)N�a�DJ$����[ޱ�r���hLs۴"�'�[$�x���A�|�ɧq��W�Z'��w9��k�^�#�S��۷�ڻ��3�<O��b2r�@�{j������G{���|�<-
���~��=��*2s�Lx�^�^�r��v�Q��&�QD%���GR�k���O��w{�1��N�B�cɳ����ǎ��,��?��s�iJ�8T@^�ڰ,f=Jbp/8�$}	y5f)�z/(��B�f3D�	�E��F�$SNMtfh��~%2.��(�&{>RYCR�\��YY��1��5!I�M
�HgB��m��0�n%��E�jD�f�PMGY��*��Ve&T���l�ljTm��� �z;j�3r�����uvM������k����5��*�gb��$5���]w+�
-�}�'=��v—덑����9�glj��t����F@z�pPxSL�lhl��$r�^��,������P��#�� B��O?�f@@@@�k��s%�Dڕ�"��߿�(�Ȓu������u�gq����_����(t������>)�A�V	YS]��_S[��,�c��t=&
dc_��֤ꑅ���7�O�ISj��4��ۛ	ؖ.��1����"B��O</����Ʀf����z��{i�����7��"�I��g\N�%}'J	��5��/��u~���0pXSNmC@@@@0qG�wmdd��$H�,%����UG�y<���~T��*��R�Q>��u$򤍃�ta�ݥ��H����tq���$�'|�׎L�Į����o�G���/m�R���u�L�3v ����C�v=��\;{�� r��Ɛ'��ޭ��x�e�P�0a�X�oڎݻ᝗_�9����f�?�\�~=&N�������U�{��.DN� �U��.�ujգG�Sn�W'�p<�ǎ��;w�s���������$��L�#��>��������G8��6_p�9���Pe����c��I��c���A���\�aeɓ��4{���9��]W0�Jc�2u2��;/�X�C��]W\ʡ�{�艀�C	�'�(�0��LH
!��Du"��b��cdX�y,�Ȅ���]��z�eY�q�J_N"�2��(Kr��ЮZ抙�ӡXӤ��6I~IM�\ձnM&H/P�A��ьH�=4�(�ev��o���{J�,`CC����ĕңKdX+����)��Xᑳ��ɍ
����'dz� 
�hIJ79�L$�toڷ��u�Db����i�E=�������»�`�c�x�-Յ~37�f����#�$��M>���TxWDҍ���}y�*w���/h�"�N��isl�ae�IJ�)�~���)�����~�9|[�^x�{����u�.m:��1�f���9�|�&()��ĉ�L���a��U��!	+W�Ղ�������ڥk	�(Yjmk ��E��D�1V�^_
����r� "l)���u36oު����S�izRX�e+V�@���V�
*Y�R>���?{W��Q�z���(�E�X�������|��͜�+Pߣ�c�Hڍ�hs��{ќI�}�^E�yY3��K�:�M);��j�>�h]CM2z���鷁4�ekK��V�'
Kz���YpKs-B�O��ũ3Fad�蚜��'�x���)co�=ZBP��DNu#�ׅYCKT�Q�\����,!M�|�f��'��8�VOw��@�G�+��"��}%�~�3=  ��y!����<*�7�»ZaH����=�|��7�rHv�6�APٯ�߇���6�ZԚVu;��c�٧�u��u���1u��S<��ęc��O
gK��Ţ���o8�c�<x�;?~�8W�{��\g䈑��<QEdL���\F����)��?��)S������|���԰X��'��<��X�=#I�*�\�τ|{+��]�����;d${;�8:������]M�-(��D��ߜ(��a?$j$�X�桛<����,�G�8�ޔE#wGL�N�9�V�Em.���4g��%�6%2�В�
"k�{K�ZX�I��t.��}�Gv
Go�iv�ӫ���L�M[&��%�fEOO+�B���"'�':�\��z�;Ǹ&k�Q›�"��罼�=�D�k[��r��g�Z 2tނE���3���`<?���f&-��QÙ,%�Lj�^�!��ܽg/����M_$6)���g���H�1�74�kE����L��1󴓸�Y��g�B>G��U�N�8={t��|T�e/^�/�y�ŎQ���߿/{�K�|����K�m�N��7����p ��m��a|��"T翼��oP�w����z.>���g�Ν\���1ӧ�zи�l݆7
ݺ�a���|<��9liL�q�P�7����ß��~���J�p�1,@���[�Rs����ͷ܎uk7T����=Z�ϕ㴋Z:$���
|��$m�������lEk���U�|�����dz#�?%҄nJ�0�?�u4ue�)��Ñ�pD+Q�U�X��w�Sg"i���،#ɿc��*'�|G���]�y+&����9�iIx�Nʊ��s캛v��o�,���/;m6�F�"��zz��,;/   �F�3��w��
��A�D/\�.�;볳��qW���7 ୏�"��{2�-3b��Ъ�ɼR�$&��L�Ɉː�"K�`#��B�R+j��0}Y4��';nS����<�Z�^]�O�k*�<13Q��{c�,ǖB{
E�ʹ�'�I�B��X�ȴY��*2}�C�R�ۢ�S\Բq�H�Ž�ldٮX�:<�(cH9���+31F�ǘޫ����Z��(����6�lҗ%��a.�Bz?)V^�a�#ݯ�H�D��*1�K��+��6�k"�K#�;�S�Yy\(<��\�8M36��&�$
�_΃ǛB`Rh��=��G������6����Q���/d2��nٶ�	G��羊��}���|��N�Mm|�+�����ڿ���Q�9(�)y	�㘼/�����0���t	�;�E��s��5|������,���3b�P�����[x߇>͹�…知d��J�$���sΞ�͡��2���|�{?����(>��f�-��^����\J�;��^Q	}���ˮ�o��i��~8Pn("&?���p{�y�'?���^\u��a��˼��}�0=���W�3��U\�_�Ç?��hk{#C~
|��DUU5v�ދ��x?����8�!,R.�Q'��_��jާ�سo?�����^���7��� ��`8�?E��}��g��E�^��&��4��{vd�cSC��;\��Z9y�w�p�j���QT����cݲ�~���4�s)b2�@B@Z/G�:���8Ŏ�CJ�vp��L	>)�9yX�!�#T!ݘL^���#�R��8U&='��2N�(ezM�tmR�tf�z��qJ'a�R�sOHM�4��:��	>&��pw�dn´/:��|bYvq=�����-��U���ϝ/�r�����п�p!`I�#�^e�Y���p&�k��I��Ǭ�!OF��LČ�\N��1�
E�)�������"��m�w�����̘X�T…�g�0BeM5��*4���m��e�(�<��*?
2ٌ������ߒ���l�>9G$.׌Ռ���ͪyRh݊2`X=У<�ގ�pt
IG�:�=�y'a�S�:"���1;��caD[��]$��"�PlhQo8v/�L�tY����]٪�Sj�K'y�)�5�=,�k��/��a1-)�D�ޕ�x����O*�7{a�v�_�\�	{�A��� 2���?�ɍ.&�C^��7�,��{��(ߣ���mP�X"1-F���|����ﻊC��ٻ{���+������m��2S�?s>��dž�[��1��k߅~k֥=�N=�8\x�Y������֎��ײ���A;�r��<�x<����y��Q5r�WB�׼�����p'�Y�������5�y�I��{�N,Y���,�yT�5���?�g��͞���Yg��H���W7��e�o��W���w��2���3t�\��KW����/(A9�s�[�Ͻ�R�mw�k+�&5���?�)֪u���|��]��_t�"\���Y_��ϳ��S���+{���{���%jL�<&�(�N��{��oo�M	��ʫ�q����z Ѱ[��^��60�s/��%Y|�{ѣO���g`��eP��M��H�\�䙕#�)?����4&l����
pq�����R�(��B�6\nFK�
8�M��&8ͻ�%�Hly#$�TI�-i�3v�k:�$!�U���%���;�K��C�j?�|��%�[Ӯ�4���c:�RjF�c�2Յ^)	ۮU�ڤ�:q�B��;���H�ݻ�#c(�b��=�}�N%g8*��AЭ[�����`�K9@���`��M�/�,[��&XuM
S��Wt�r�-[���I��ʵ��)��jn��~t��=U�<4�*ْd9Jk0���V%�����s��lC��Q�Xf��4     �ɱ���^��XT���2g�E��X�ľ��vTTV �դg���Ed��래�4�d�P��=&թ�{�I�h���r�/饈Aʙ+�1(
e��BIǪ��T��ȣR��V�5�"��
�ƿ�#hp�H�m��H��t������	�J��y3.�=c>ۅ3db�N��3�r�j'/��p��__�Nv7e�|�.��H���e�҅HdV*�d�\-�-�r�ߤs��)�tNR�oa��ZD�����Rf�؟�p�׎m"#O�r�?j_#����X�^�F�����3446���k4��e@�k��+q���o���ˋV���#�����rn�L��С�PW[�DM�V�o�0�.�<�~�/N�R���B����~�<8�?F��JaDBTEEzt��!�H�0�;v�Fmu
F�V���!�_�?��o���>}�s�e計���Ѐ�+�𳠇RZQ��G�X]�Z��H�^�z�B��Ηs���񴶶a���JQ�uu�����\�:�"�­��"��lllvϯ��sJ���~w�ܩs;�1�<[�d��5j=�
��ԣ�5"�u����ݧ7�#"�i>��&�WK)��]�6���`萁��F�6��pxBb�����Z|�Qz��C�,�)����1򨴷�÷U�ao��>ڈ�d�ZWk�"(^�H�X��M���?�-�к�Q+D�J:�'
�)�&��1,����|>>���#L��:�^&	m9�w
/$.}�ӃKrX+vۊLl�]9ۢ�4�X2P"!��5'(Se*�-b�#u��R
7>�n��Ƕ��P�2!8c����9��؍+���LH̲�2L�v,MH|�3_��/��<����t�O]��'�/t�����.���.|��?ue:��ٲ�7����^��ܵ�?�����_w w����<��/���p�i'�c}z+Yӎa���8�+���W^���uLh^}��xd'~���Y.�hii��"i�=�t|�s�Q߷�~7�p�]��ݕ�U��9���*�m�V���<=�����Z�{�[YgA�#���ǂ�`B���Ʀf����]l����d0D91s����LbV*�TlBǒQаu�6R�Sh��}J�VE�Q����"�+�r{u�|��6mǪ=��|YY9�s�f!����g���75�[e9ds���1�Ʊ�`�|�0w�"�L�H"Q�:��J�4J�
&�B������(|,Ɋr6�?m.M=�X]�ޅ$
��bo[Zu;6��
�k�"�B��VdHd��T�l�wƒ��z��}	,�F"M2�4���&�K�~#iK>ZG��^&#9�'�n"����g{��59��o�
���["��E�Q�tF~���h@@@����ݺ�[�oy.��������3���Lt����:�����u�%�u�(E
���(H@x��Y��=�媪*p���9�";j1m��^�]�-0J)t��4����Y?�<i<R�\����qc1ޝ�lMekO�� �u�%�N�>d���ƭ��2�W���C���^��**�1�6AƤ�R��^�՟ۏ���3�}�#�w��B&ޏ�*Z�}<|+d���X@�Q��LڂYz����fl|Z{������,)|�%�\.7���X4)(|�ܞ��.�V9XE����u�q�2,a�Z�4��*S�^W3~=Kl&�AS%��-�c[OZ�	G��)��z�vV��zdw>�\.�C�� 8�\��3w�������iSJ�g���+.G�m'߽���
��_“O���~�m�=��_x	��r���
�>�KA��{?�)��^W"���KK]�HU��s���c�\�o�̘'"R�eu~Iz�eE�uP�X�TkOJ"�bEV8\,�k�/R��w6�i�\.��,���C�3��`y
�t��km^KmdK�y��^�p���&9�����uUʷYYYV�F5ؽJ.����|�����4�p��	K&
����EV�LN�97fQ�77��:\-���N���dn"='�͛	�s^�6m\w��u�o鑀��5p�91	�;32��d~��$‹յ���zܖ���]��)���H�b���LlB�4d�-M�u� 0_�:��f�����K��G7܈���'��}�8`nL�MD���=�z�5�QR�λ��������D}/��r��aGL,��Ҋf�'�ӆ�mBUMJ�6V���a�
(����6��B_V)`�Eߴ��t�$�6J?��`��@zJ
}����Q�Xq�@Q�hH�`Z�QN��WL���,5.�2ݼ4������)Յ?g� �T�f���^I!�_�RY�I�+�ǘ�i:��Q�9rT��;��y$�K��)�|��(��Gg)x�1���Y�+e(�Fx�eu~L��瞉}�=|�nߎ?�� }�i�ݷ����q��7*Ee���7�7��f�v�����=���+��ݫ>��`�IJy)q��g���s���~7��c�p� �����2�kh�,*���GE������k���r���#VrQ��Q�YpZ�;)�$����[��c�e)&Ec���92�,��6g�^�Z��v�E�FCB��3�Ǥ�A$byU�L�kP��m݃��ث�v5���&6F/Ws���9����eL��ȓ۵4"S�h'ƃ6ӻdBײ�$��(�C�-V�j��?d�EqHGB����B���y���m�V~5Ƈ��C���D��2���5q���H�Md^wA�#�ʽ)D*�0����#��Y3׺%D�XS�&�f@@@@����VП:
�z��<�
8����i��a�S��l�/�N>�
�F�1�<:�hͫ_͡�6������RG��%�ɰޔ�i�a���ԕ�1	�iobӴ�QDZ��)\\�U$mzg����OM���P��Y�R'r�~�ҵ��^@�ORz�j��2���J$�,���q�uu�?'w?�#)�y)�a�B2Y`�Ȳ7�,
���cP����ا��/��O��ފ(|�.Z�5k�c��֬���0���Ç��g�?��߸�G�q�f���p���`@��~����Ͽ�i:�[�x'��7�}�K�>�hw�#��C�ާ���[�b�5;f4PHX"${v�G��c#Ś�"oG&%�{DN��Zyy*�>S
C�lTmۛP��V�^�8"$#c�G�YDTR:���|�i���M���ܜ�<_�㖶6���,W$�"#�+*��ކ��V]V�����
5}`��nX�fΝ�j�ԫ�q�M
K�Rti�<�2N^%94r2���8	wjdJ�(U���cT�-�[Z2؟OGsv�Q�}ވ�N�G	w���
	��t�e�U&�YcJ]/I7a�Y��dsғ���u�w�d������-���Vp$j��l�魒L���L�;P����q�o���7p��� Of@����/lƂ�+�aE�����"&�7B|�C�^���\��kAyU�����p�|	�l��{B�)�K&��H��)"�f	�fy;�q�9�f�R���f��������^���щ@��4���9L"�&�c�ʯ�LX�Vʒk��o�Xj�8Q�x�e	{�j��ӏ��qI;Ko}�8�vpD&�Zrޤ8N��+v�i}T/�Kq�s�W�$;�3���Lb�9�T�s�L.W,8�A�:]�Q}�>���9�߼�/D-���ǒ�+���	��')�K���O������)p
?���u�����W��|���[��IzBf3�^N���I�H�C�2�ʂ��7c��K
Ke��,���d'yh�Z� �5��&��'G��,���뜚Y46���OKk;���˖���DX��YV�k�H�y@�0�꽼F���B��DSK�z���9I����R�?,
���a=Ce,�s�>39-sr�\�'���=���8�O��e.������ڰ�L�	�ϰn�I��p�iO$�p�h�$�DRF$97E��I��%$"�YX�1�\�O���U��Y:�K�„�I���f@@@@@@@�a��}���F��u���E�ޖ\(�3Ǹ(�ȟ�8~����+i�h��¤s$s��RbK8/I_�`!�Fπv�:r�-�
'�0Ni�IY-Vr(/!PG��("�bC"��Mk8lfˤ}�%|�,!&��euB�ն��h��d��H�6=�״�$�L�Ǻ�Ȥ�?:���fl�iא����C^�Y��195���hmk�u���_� �HQ
�&�����oo�5U������w��=Ο�J1y�q3н{=���o�~<�����=Wt>��}�����s]������OƮ]{��3��x��SN:Æ�Pv������[�a�7oٖ��NYS�C@@@@@��
�����{�&�,�gr��+�0�1e3�2�����W��Dd��і�j2�d���,��Iy��d��ù��$e�)
�5�WQ�S�4���%Y��"dž��L^���T�Y������E�͢��
�$����i�;���g����NajI����Ͱg'I������M�X&M(ܬ"y{�G�V�Q��Ʀ6�dY��䮣���"�����¿��p��“KS�d:�B�Y��Sl���v+�V
I�	��I��n��.�^��+L�AE:7ͮe�#��8� p��ض)�����DF����oW�~_��+s��W�)eh�	G�i�-�e{4YG�
Ҩ�𫩪>�)�q�.t���h	�Y}�h����-]]+b�~)�|��4���b�����92�΅����S2H�4�h0��hj�̂�l;>jX`�k&�e�g�p鶄�������$!S���!Mg�|N�W�F�
��K;v��;R�jkjR�w�܅9�^��ḱc0d�@V=i<�~n6{<�\��G�����Z����r0kOJ���O`���j���կ�7n��P����U�U��#pյCC�SoW�?�1\}�8T�y��EY�X$�E�flioG�ȿ�"#��$�,+rNF�(r3�#
3�Y��ަ���2&ye(�i�y�Ic�Da���-���	�*�{ė#�4�hsP�H�z$�����ePP�@A������h>�=E�z���ص�D-0�&�"�B���]"I1�����P��V���V�g0"a������N/]|_�|N
%��1
H"�'m&䥗�~Z�_�M�q�OB"T�Ɨ����F�Q���L��t�@`v���#���`%n�q-�-`�)m�YS/�oص5��E9�2�㦵����B�؀�����1&ME0����0��e�V� e9
w�>�V�H�|��t��a�6Z8E��
��c^�D��H��)Eb�Z�0)�P�R$���ʖd1�%=��b�?|��:/�pZF�D�e�R=k��i	I�kz���%��o$���S�&\��x!��w함�(��,[�
=�T�5/xۙ:�筛���Ր�cSS���=���'���֭��H����O(s���Pr�͍|_����T~����'?�~�׷�ի����b1U��6!_w�ޓ�6z�p4�4#���׬�s�ى-<��}ش}�5���B]�^�Ac�F�d���2�ii�E �pTd"yQr ʁ����������|�������Ѽ|�S��I���<�+�Q^�CA��ru�x4	(��F$I��W{$�<̷�QYY�H�v-O*��V�бԏM�$��`���R�[�j��gh��8o��J6��k�5�G]
���p��/0��<�VL)%�Pn��:4Y�XH�nCxU���Lw����.�yק%-�^;"��t3f[d�a�!^�����'�)�p�A���r��-x�r,x��Vg��!���3���S���)b�� 4�i�<��&1����6t�FlHN�EY��b�*K4��IK�)��5���2z���R�xzJ	k��x_����x���.�c��H��5gJ�B}5!L�]�D1�8��Y�O�L�0�6g�ͦi��M�*��@�G�,$�c�Եc�J�.Rzu��rO]��K4�� �УO*��.�t�q8���Y*��S�*��|�y<�^�6����ǟ�G>�����x���hk�!�&N�����矋e+V������G���P�v�3Ͼ�de.�sk�����R��,�5���W��8�P���m�7`�z������a3y*���l��ѹ�z�Q�L�"A{"�h/�(�󨭨@Q��dTԪH���J'71�h�h�jp�Y���5h�P��T!�D
:�%���ӊ��Z���%��v�UW��V
o��nU�ق��+b2	��$2�����\F�Dbr�.�he_ۄ�U�ݜGK�vt/�ЬZ�ߧ����qړ��Ķ
�ģ�+�c ��3�ʸ�ҫ�ыS�l��$��]OR3��-���D��4}��eJ����d��!��1r��Oo�F��b@@@�A�XF`��)��Z=2���󰔾�#OM�_�D��Ĝ��#4��'1���,=.�C��%�0�vZ��{*&䡥eR�qz�幑���-kY^.|�#����1km�HX�ф���B}J�\�㒼��\���8Y����XMN7A3V�>�蚼lkkłW�j�h;v�WK`ǎ]X�a#6nڌEK�cڔI8гz�
��~����p������翊�K��ΓҰ��3O=�I�]����s���>�Bܑ'�/}����4����]=����
ؼa%6�]���J1������J�3Y��"牤<���yE����sPҳ�[Y/b�8c��-�p��G΋/������튪rMp�>I|+*�4VTUmg����.�*��Y�R�g4yCҘ(���B��8��i<$�%m��^��H+�9�Ӓp�K�oٶ	��w�M͘~�q��(È~=�S$����®$�H���;L��$+�`IC��";)ߑ$��7��Y�$W�^p_�u��71JL##W��HI����Zf@@@@@@@�a
q��^%y�EiBa�RE����
ޢ�&ìw�i.4*��U��BzJ�)JyO$�֮�L}�Sp��&g��ۑ�18E��;�G��%4���Fz}�^��5�_I���̴���=�R��'�["Ց��析��#Sz��I�d��HB��x�'�|���M8c��8j�8<��hij-��5��+�}_��7x9y�IL�:9u}�ܗ������lن//D��ÿ]u��5j8^/jj��/����g�
M�M�7���׽�=7M�͸���`�+�0c�d�����/a��M�E��޽{"     �P�νͨ��1=`D{3ZZ[�����4a��X�p>��j0r���0	��)�@A��Eir`*"�	Du��M~�SH�DǰD]䑎�"'�¶ZSj35u=漘�fd<#Y+�Knt��AQ�L�R�QF�	���N��21�#��<$�؆�MHƌ����'#�w4&�g��G\,�2-,�����M�ؼ|�i���اJGJ����0�^:_>5�D2($%:�VV���I]K�
�w��lti
$myۮ�ؗ/I�� �~o��%?M[�
R�}���8b�[n���V�I�X$���zP
��[�a�
��C7����Q��}�Z��!�lo�t��>��P��0I6�BE���rޢ���0v�̴�y�^#O�c�MCZ�v�(�P�	%�H���ăS8�S�Jۆ���$^�����%}�Ӽ'kfC˄�L�q�<PH�'����d)0�_E`���mPJ?�l,U�3}
�ܷo?�Rd�'?�A�k�n�F�U/�Q[�2��'?��
�='�L��g7�T*4�?���_���z�ٻ˖���e+�����f��ijX�b
�,_���v^~��zw�ŌQ=�����7bosϟ���f�g�>�?d(���+�0�LU%2�h��]�zU��
���rZlC�FY�[Ir������L^I'QY���&Wv���3��C�f8�"�T��VT���a���֒�m�3����$�4did%h5�b[�"iu�҄�%񒌗DƎ3� R(P*Ef�P^Q��܌�O���m�nԕ9}�a>��.�����`�
+�
�}r0��bg<9Ga���/M�J#����,�=vR����eGa�'��,�Ȅ�y��\�	q����B$ؑ)G����}�=���H+��.���Y������)G�i��^k~V�C���)#����A+   �a�S�%��RF�q
GNj�L�TW��K��ϊ��'���0<�
]=ޭ5�����y~J_a��m=ف�K>�e
������ҟ�.o�&�xbo\%c�.g�β���h��
铼��t��0�0�5J��R&�PzS(e|)2��yTVUp����5U՘>�h�П��Ӌϥ��T-U�wO��W
����AT_�:��ѽ�;�t�\����ٽ��2��T�"��=���`�葪��jK*�a����#G�Y�p�>m2�3:婩�;W_y	֬]���wb��!��3�z�m7�����s�fc��m��p���g��+.��"(l�zF��!���ָ;6�����Q��Կ��Ɔ}ص��ԵukW!z����#�N��ǣ���éJņeH�U�f>�1� ��9���vE
Gh�D4f��b-��(�L#K�f���I���b-K[�8���w��Ԟ��N)��1+|�H�T�s+C�\iR&,�Ή�\�����~�1���fi[l��\��V�{��\��&wgb����KF��{!���8#%��粨��
qN�G8Y��1i�z@B����4f+�J���t����+zM���ߖO�I�V�#2m�T���ad��7Zkw�!�o8����o؈iS�Ƙѣ񷢹�+V��ѓ�=�w����+W�c�M�]�|ƌ�-
<���8���Ӷ��Ѧ��!�uZ��e�V3c�=,\�CF�R"u�y�^�$�{�D�^=ё䓘=g�U�ᡣ�Kb�֭hnjQ��|f����֭�������)᱀�;65ץ˖�o�>�޽{�ͿN,^�T)ˆ����[\�jF�������#DwiLKf�Qh��E��x"M:
{�l�m[V{��kij8/Ca혓�h�>�Q��|z���#�n�c4e҇��Lx:�	N�]JkN}D�!c�����z�G�����:�?�֖��u�������Yw�����C'e�j�z��`"SH�C��L�/���{ؑ�>��c����N?U�N鲎�}�����k�>�*����I���G��}������/n��T��#��s�EWR`ee��?���n�u��#����2 �-
�߹�TE}8C�����͍�
8b�{�Lp8��QfQV^��2��G��~(�7a���΅KYf���F��
�so��MM�ذa��k�����M!��
�koI$�R�"e�~�m�hٻ��e�n4d@������D������p��n�0�E�=#y�6��6�ldB�9*��G/�iы�L%�,:�L���Y��ؤ� B�����B����y6U	��\����D�k.W�d�R.kI=K�ҙ=+�!���[���3O�	Q]�m�e��N�r��y��yU�s�1ʓ[ٜ������Q��$�h��Ԥ"y�jR62�	�z���z
�#2EP�h5B���xy�І���~wJ̀����7k׭��g��;���o���[0`�465�be��M�1}^�3�5�ؾs��>�׬G�"�v���V_S���z�g��?�>��‹L8��ʫ�p�31w�<�X�gg���>�A��=�+������[ЯoolRc���U�����\�I'�15�!�Gyy9�]�v�����5�@y.��k�aԨ�X�b�7��o��5k1w�T�jmm����q���`�/a�Q��VE~�zʉضm;V�^���
���K	��Q��w����k��[���ьk�}�j�
�?�zv�3��t��ؽ{Ǝ�f�Ą��;1q�xElnc�6ʵ�k�n^�W.��aC�p��ܵW_y�[{�I���!�ғO>�翬����ީ����w�}ڥ֟�A��c����Jܮ�%	�=z�v�ƍ�Q]S�%���w]�}�H��Jk=mv��J���aBEy���M[bOk�%��r^j�O+r����K<6��>N�,%,��zNmQJ[�q�G�ded�R҉-[t��IhV����J�J��eҮW7鳤;/�oRIzafm1K\��4u�%B�Аxf���G���uq�廎��z�}=u�k\�Ͽ���= � �o�a�#C�ܫ��woo���{&B���c�vn�՟�b"�H�$RO�H��cYT����hS�UmY�� �޷6�a����eD'��D*ҳ����#ɿ��Q��N&#=��/I����j䛳طs+�꺡�{/d�~Is[FF���˰.����"MR^L�&Ev��L&��թ
�b�/�r���;r��dM���}�B���N�a9�Ɛq�=@YV4�e"ck�=�~/
m�Pce�L*'bM^�|��FY�T}�|Ի"S�$yp	K��W���=jj0�.����M�4s΃R��''�V$6�w��L�>��¤\�	�j
#3�m���.P�������Vj�[��-��IC��)�w�33    �
%0��q�;.�O=˞�B	Zo;�,<���L��Q�)'��>?���
���kQ�z�E�eq��g��`��qػw/�ۯ_?�*�����E"���a�8���U�"�)�I���
TD�BE�u�I'τ$�p[�mUכ��$�`���a�&��[��$"o��9|8����r��a�WD y4�����q�" y�IlU�>L�}-�G�a�"DG���ia�n��X�|�������xNDN�7e7EX�(�L�<��%��T��E�X���"�0�W�=z�`rx�"I�w�ܹ��K����c����ǂ���V�V,�O	O�֮g9�Ok��a�"%w���N�C?�={��znڴE�d'Y߯R�)I{ee��g�S�gE^A@@@@����Q:ka���q�=������
�:w�!>��N�\��p�h%id�����$���S/�EA��Ӕ�l*�k-�;y(��x&�ڬ�I:򯺹Joh%C�IIiۗ
K5z�0CZ&�h�=oH���~6e���7=V=R�7p����d��d�r�G�:�G�2#R�I*�I	'o��J)
����JTVT S���<���$��X�,g%Eކ�|�RW�ȌVV�ds��P�����QYSgB�K`�sUR��ʘT��L�FD�L^��?�Etf�F�1-G$��t�Lv7T���ä6�L���V����s�XԎ�\/����ٟ�-`��E����Rͽ��2�l�ͨ�۱��3��,�7'�5b!R�����Y�|�j�L+r���k���.Ш�Q[���3:�(<RQHCA{}��Y2"CF�7]����r	��{$�-S*�ڜ�vAu`i�?m�!ZH�{�쫢 I��x�1m��;��Y����A7p@?TUV��b]m��>/�y	Y%�L9z�*S���j�Ĝ��,P��Ϛ�dbKK�K!�^~�UL�2�55,D���qc�X#b��:��C����K.z;�R}��q��SY׈�"X���H`�ۧ7�j�9�+�4"a��,�ɓ&���'��DR��1�G�F�a�K>?�ׯ�E��ؠA��۸I��5j��J9�����ܬU��|��I,S=Z����6a�8�pt���ئ�E
�V��\C�0�Պp=f�4��$��3�>��q4�re��N]���PmW�u��6�0��-Y۵����*
�{�1��[�m��?ƴ-P__�aC�`�"+I ��i��)<敫ְ7g@@@@��
���!L#G�ٜ3�cz�o��6��pgk��p�HZ�(�(<�cm�	~����1�N.$D�H��(&:	�jOI�4ܸ��t^ʄ4��^�Yi�2�׺G::/J��B�b�f���G�Z	�j�J6 w+��;�U@@@��G�j9yV	��h���l�?L�S�ͨ�X;2�q�I"��;�K��,/�P�و��.a<�?�L���(�ގ��>*�B���**�AYT�)�Ƒ������,_�'�T��<d&rޙ-�y6�ϐR'�QP�&"Ks9CL�'�`�@E�Z*�H�!E&���$�S���ܫ�)�Э�U�,���!g"C˔~��b,�M|Y��8��^����֚IA�(U�f�ubZ�$O�B���&������T�RW�:[@C[�Z�Ld���W�����r�#��$�響F65�0F��)��I<3����u�{��H��4k	�˓�J��UV��w2�#��c�Qa��g���v�I'�}���_�>8J��ճ�;��s��c��ZOSS��"�N;�d�����@�;��O�X��Cj�L����0n�}UI&g�>��c�"I��t0�
3W0�G�HA��ۑ����ܲe{r�p��|��� r����ss��];��Ç�YJο��#Q�^�[::d�w]A�Ȑ�SR��Ԃ��S��g��13:�M�͑��82��-���Gb�����aǤ�Ԙ�/�ý&�MBF�?��i�F���qB��v���L�,��x����Z�PJ�%�����k�/�����'k�G���l"��4�	�]k�a����8���K��N��FJxs�nޘ&3�٭N�m�4�E�����#QlQQ2�I��(+מ�09"�~��sxU�}�Q�a�<�*�ۦM����&6��2٨�69W�5
T��FDb�?,�Z�*��hrӤY L/95�j��Ɯ�ELL���ܓ��k)=3�o�\��9"��t�qѬ����׵0B t�{��ޛQN�������m�ZF��Cj��N"H#2�����
�!:EdC-�z�Ek6�F��xU��\���<���noh(���]�IU�!�=�lt���_�d�įg�ZF�T0�+��Z��l�L���i��m2��4��x���wjbԮw@�f@@@@�?��=���n�yک��5rd'�t֖�~����D���'�iݜxuͱ�߿_?~�޾}�Nפ�u�GW�_�܁�N�<��&@�
��{c��2	h�y@��۠M>I'��zF�����?��Β���K�Eu����&,��V �����PB1��›�7:�n�B�2�s	�	��L�6OeB�J7��!}m��,i.9I����W����*p8�{�4���A0g��*6�îƚV�R��L�e�Xf�V����B$s:_#-�Q�UJ�Ԛoׄf���G��b������Fuu���b�xEj�=�������&�ڤ�f�~2�S�7�4ޒLn
��?���2���p�sVV�|�&�%Si�ds�и�]%y�i���סm�V�$mV��y*�[�U�I��e˘�,J���M
u��&���_��R��o��
&;3���	���Y�&��ت��BTf<�	Ѫ	ii������Ks�_�1Բ��ғ�#�	{�H����Ǧ=��E萾6F�0�.F�	7p 3    ��G�I<��!�]@@@@@��낧I7&)y�IgQ�,����4�u����g���~鑘H�l�2އ�6��K;#����)
��� :��-	�*�ħ#�PB,�1�)�ћ��	C�5�׾Of�9Z�xG^ʤ�]�d�qR�r���
��������n<2+|��PG���k�W�kO(tm�мu�H���P��2�d�y�Y=��
��O@@� O�lY�	$���9dk�2��(�3���Ąe����Y9���LDd%��c�H:%�ȇ����acg�(T,y,f	J�a��E�W���b{���מ�R���W�P�^y8uF��F֋�41T_hoM&E������˅��p���t�;�y�֯�%o;ÇV!�2��iM�T�	U-�C
k�N�\�<��Dvf��5�*�!�ז�o"X�:/g\�ѳ<F�\��M�h��h��L03�hn���4?���f��/32?δn�I)M^QhcI��H�	��2�N���m��=c�j�ca�`����AcS#�\(�9�"7�s���q�䷔hnn%��gr�ƍX�t�B�꒥W��G{{�v���`���x�Յ�s{�I�ٳM�ͬ�{⩧�=ݶ����s������W�k;���F����|M�[�s����[�n�O>����v�|h��>��e������Mcʛy��Ks�۰o�>3�v5�f^G�g��M�l��߇��F̝7�/���sCC�n�
S�6o��{����Z��z4���g���?�I�.�.Z��^�s�j��`�!����n����O^#u�9�=s9z��iN���-�ص{��[������Cҹ�OGKb�
yʋ2]޽,W4D�d��t��#"m��PƐ��O,s>N��#+�J�ӱ�;']Y�Uw.!���i��4���yٱ�K��Yz�݅g(c���e��^�6��O�鮏���Ҕ�nW8Ռ�hb�<pȖ�8�J���z�k�r�t��P`�T��=rp���C���tN^��L;�?�۬���&���l�SޚEsc�ٰt�����*�u�#��7Y���Y����Kc͒s��:�oطX�R�u+c����2^���R�|�D���c]m%*++
�C&W�,�j&D�������V,h��䎴����&�$�xC��q��G�z��v���u�H���������L&r}�'��Qԫh)��eA-�E.9|�HWG�QX�
JĮ�$�ƻi�5�v&Pۊ��#8���*8�^_/ף3L�D*��S�XE
��hdN�8��M�	��3)D-�a�j�^ŭ�Ͷ�{����xD2�%�)��DTf8$�`��f�&|3�]3e��e�c[�޳».4�K��k&G�k��{-̀����7�*�k@�~ث�}��c��عc'
�ښZE�-�����M�i&�gA���J�m�x�ŗp�3��rO����sNG
OQ�viD���׀a��P��܂�^����V�w���n��M�>�+������o�13�a�BE��ء�oEYE9�w놊�r�[�������OᎻ����So�o�СCP]]�
J8�d�D4�1�������2���x�R�x±��rӦ͸��[1�S�l�
�9��Bޮݻѭ��F
W���]�'�~����=�Rs��	�+++�nm]rm���޽V�]�	��a���]�]�va��U��e����K߁�R����ռrj���x
F�ŋ�b��>l�oX���+��9��=jy�q,W�v{�7mR�Ě��q��Iؽ{���=l�Ug��Ν�XX�4i�"M�aڴ)84ᓁ.5�Cl숵6��������K��J��yq�D�뗐d�˲d4���o���vn����ZH�@�LL�25�L
�2a!ˤ)G4
$��2=鑎%�i2V������t�u��i���t�vF�J�˭mB���q@@@�~u���nك�y	��9���x����W_�
,�l^��'���\��ę�WO�U�o�m^����&���@���Y��Q��)�ެGO���		<}�&={�6���>��CH&#{���O�{"L?U⹇#L�c���G�X�(„i1z��g�PD���b<}o�-��o�QU��:�ޙÞ��ӊؽ]�d0Q��f���eN������乬ZO��:V��P{{�ږ�qZ��rf�޵Kz'-eQQV��7Eđ�8ɁA�������eY.���6�gG��RPx$�?��"@�4y��r,BR{s�ЮT�B�bM�f2Y�7j��eԹ�n��D�O��YI�Y#������F��&exV(�c"'a�Au���kV��&�CMEq�̌'�y<��SJ��(����Wi$Ka�Ta�Қ�DF��vh����AJ3V�;�	۶v��֪uhj����N
?�D⑚lE\�a<hK�1֙�.�k-��=���؆��4��ͥ���@cv��2o8H�hQ'��Xp���۶Lx�`FVR#F�@mu
o$|,Q�[�"�z��̈́$���Ȼ�G���h��Z�ݜN�.�5Ԓ��Yh$��R�l+W�aA�|d��y��1f��WT �2��:"
��#1�g���9�P"�l6��Vd%lmm
���d��	�x�$��oh�:t~����\��{�bŪ���U�R��������}��Q�dwm]��6J�NcohhTd�&3:j�&K/�>�˳��Z��v���/Ξ�?�Ɋ��?��<{��n���޽�	'"�����/��HmRۻv�Ay��۪���ȑ#0v�hUn�z�٣��9;L���ʫ<����A�@nnnA@@@@��
��@�5H{����pd�����g�01*�Yhi8G�9OLM�2.�D�ؐ��HJ&ߓ1N{u�m��ۏu�7G$$�
�MH��^�7�X[��xb�Zt�-�OI�!N�c7��S<YBT�u�z`zCseD�8��ݡ���2��H�e�;�|�l@@@���%��W���<���j�9Z�i���ӱ<����o�n��}�"��W)�ϻBo��+�� S����}�;L�mY��O}ǟ��ӥ���3D�ۯ��!�s`�H��1�N�q�El^����1n�!�t�����Tk&�{�PĦ@�����C��z��X� �{�cb���?,�б1vm֭^�a����<�y�F��,b��A��9l@SD�$�,��DJ�,yv&�+�?$o)b�R�e9�*�h�E���x^Z�{�!u����"����V�*j9�C��X��]PR���H&6c3fu>.hr��ՂC��%$e;y�F���t�V-����_�sp�\��j˱k
f�2&,m�ҵ
Wz#���VsM.�="Myj��t�H�XZ���
�ъ$u��U�1p>PCSҽ$2S���z�{kJYD�c$$��dG���.B��{�E{�B&��в��Kp̀����7����رs'���ä���o߁~��b�"��3��Df��׏	�
E�M�4�	��5�F �B�r�R�]��v�I�Hޅ�|�ɹ��z#[]]��2���70�FBTA�=�&x��;v����m�V*r�?~,{��F�ݲu�"�+b��I�v�'[�Q�t�6աr�
��3OÒe�Թ2�s��3��<!ɣ��=���Hp�Qc��sa��{ک�`�mL�S�k�����H��eee5r8��1UUU�5��e���� �~�;�}ح�W�UW\��TW_��6L�6��ξ�4e9�--�Y���8������K�g;{ώ;��v
�'Z���͇֞<0s�����܀�pÐ�.���<��E+`��0
����T2�B�x4z���,��d��J���� �t���4)@�D���!�D�����U�$����1�T�(
�"m�?)}��U#�sI_n�Ll�oƚΕ�*oV/Q��!h�Rxc1���d�{����������T��E
!�����諒i�u�i�~����Om�g��i���Q`�E:"�ߒ����j?c�Z�9��.��m�&C�)G�򵶻��6��0#�в�X'0)�o��@��Tj���Z�g�8a\x���$Oת*����O�Fe��͊�/�g��� 	�C��HFf�$�&u�OvK��>e%4�v)�!�T����16�Z�t=����9o�ɉFe#v�wB�YlM��"�_���<fc80�'D�lN��R{r��L�qB�NŠւ��2�P�����b�d�\�付��21*uU�#&"���5�䱫�
�Zu.M��fI�WQ^��u��;`��n�R5(���x�`�I��-�ژ1�~���m"<c�eT��1�j,报��%����z�q�Z�Pz�{�}��,��$G��W���E���x᮹�R�<7Ei���Ǹ����7�Gd#��h��_����={vh�_߾�����1�d�t��P�w5�� FU�U�&��d\�Kڑ���0��'��@�$���`�;c:��⏩t��5��u ��V�G�P��A�}ԇ�&�%��$���+�Vmm�;�נ�1�׉Nƣ����ޟ'�{v��o��8�!SD"ٽy���$S*�3�ƚ��M�f����HP��]KvI8kj�Ð�¨�4a�<�!�l�*K��y��	A����q�HGo��X��zY����(k�1IeԳ�.�	��=V#����c�	����	�i�]}
T�N��ڱ�S��%���u1��%;	'�f�PN���%�^�u�{�����'!��+�
!d��(�DT�F�}@��{/q�E����>Vm{�R��
���Mk��������P��v�迬�f�?$ӄ�}Ld.�O�#�Nm�֯Tmn֤�a��FMTD�"/��_����E��=f�q��֡�u�vn8���������E��D��L���U9"fuXXz�W+���O�Q�]����O�1����4<��WԜGŨ�Fks(��>RĒ�B���ԓ��Q���p�ɒ�<#�
萰������!;���e)$+�"t�
[4y �Ei��Q%�����'7��hd<���94*U2b{��e?uLam��HG��*${OƲ;3�Om�y&�����*��<�"^9�[��
lTi�c���P���-�5�{'��8����5�X�tQUռ{v��nEf656��G�B����R{���L����EoP�!;(d�����H$0�\4����%�S���y���
��oaB
'��ݛ���#9�̦�H�df���{˭���v�"���oI��#�>���A�e��P��׀�����7y)�5�U$�(~|�bki�ҚJiR��I��H���K��8V���F������|��R�Vi�9�(��h�v)��Y���2��,]�U��҄�Uʘ��f�\�^Y�+׳�+WQ�J%�t�V���?}zv�S�o����[Km�.�c�f��ޑ�i̐��H���IP3x���n.p���t�؛�p�q�Z����z�ꅿ�������l��F�\�
�h��Bˊ����}{э����߿/:��d���E��S-�J�$�Cףr�[}G#2��]�ճ"�I���wrN�Ii,(j	�S���>('|鹀�#��Kޒ:�b�����b������)��kz���C������_$��=)��#I�yOk3�gH�_��Z�wZ�V`�t6�q�	GĎ�L��I�cόa���w��s��/����ֿ���L���t�~6��G�l!��+�H8�J��$�FI<�G���͓(��72!O��L��(�e�ؘ�岈�R�O˒�K9b.���$�(ERA�g�s����K��b�I�e�,�y!U![.4�Z����+������Ln��<"K�W!�(&Rӄ�uě��ׅ�GZNolɣ&������r`f2�8�du��?E�P�Z��=�W�۶l����������,R��xJ=�y�
-�����6��&�({����@q�f�$�;V�d�	S����Î&5�b"[J�˚5(��	��I�j�/�&T��)�ZzO�iJK�t'�|#��TWf@@@@�?��g
��Ԃb��,��}�N\���mߡ!�)/@���Q�%
��c���ݫ�~�S,Q�}���G��>��S2ƴ`�CŢ��]h|�xHk�,�H@g

�D��U����3�W�k�k�y�oT	'*��!�I��Rh"O6k�����+3����t�y)�h�L��c�.\�y��n��
���*����Ԗ��׳/��|�6��[�Dё���4&����%^x��,%�]�i:7N���l.��A^ɕ�_�Vh��)X�|%�O���W9��5�p�qǨ�_��"����ùډ�Ӟ�v�x�91|8&5�/��={�e���`L�|���O?�,���RV����b����yY���[0q�x̙;_��=Q^V�J�]{v���'�ǢEK0l��e��n��1w�5���ޭ�����ѓ&�,{�=���z���,]���|^ye��/S�!�c}]-�#�v)2F�"�W�^�qcǪ1�^5��۷�\gL��k���E2tG�X��X��q�Z���6�y>��8���Q)�/Z3��G�����a�$�&K�*rv���n�z�ܹmJ�2x������_mڸ�߷+�<,�����fL��9�;v�R���C���Ǧ��yL�OBvRO�Զ�RŹ�$���8�g��yY�(���^�c��#h����yVޒ&����eG��K�����)�!�"K��Ӓ}֋�E�bޒ�Q�L�le�9�d�g%���t("�<S��ҧer:g$�"#�b��e!j����y�GcѤ+�8�z��6�Ί:Z�%��Hm<9���pK���*j9�|%YT�T�g��-FO
-k<U#/�3���&7(5L���|%����k�n̝3y
��iՑ�dY��J^�0�1OQ�u���T��u�59;�jY��@�fܧƻ�E`w�"��d6bsZ;(oj��D��M~DX��q����
��=E@�f@@@@��%K�2�HB)A[�nC����P)�(�����y�{�A[[�R��S��	X�n�"9�0r�pUg+��ݧ�r446��3��}
��q��UJ����C��܎W�R���R����
�=�.���n�y�y��魔3��:>t�9f�jc%�Ey97)�L���[)�(?�
QYQ����'���������
��pzCj�X�րIf��<ՂHr_�!S��B�r����Ӥ[6!�غ�mFL�Jӗ�U.A��66T���"8�X*�VÅ_��K;����ß��ڍ[QI���<G�˗$Y���ڌo��&����J&�c����*ejl�>@�2���⾲���yi�Pa�Jq�ګԛ��
2|�H5�)i��a6�؈p�l<�F���H�<��R��R�ԝp���K|L!�����e�а�5U\����
���)�x��W7n�Ğ�tI�<��S�EI�ب�[�q�I� 0f�h,[�[�ocb���T�$yy�������J�b���(Bp�"V�c����݌e˖3�s/���F�쫬�T��8l۶]���ޓ�U�5�1�Fa�ƍ,��جd\2lmmab����KL>.Wr1���dq5f��ݕlL�Z�t�)٘HRR6>���Z�d�N<N��^P�pE��oh��+�B�\���=4��8-f9}�"xW��z���z��Z��i�' �PE׿�]����Q&)'��[o���8� A���%�=M^�Xz�b�.ʠ4�E�A�P�%�K��(�	X:�tmf�ǣ%3�\lS�e��I%���2���{7��_���Ɔ��zfw�ê� DreQ��f2FVT�,jT2���L�e�����{����+]�{>��Rۍ�lh)�w��r���ai�<(3:�,��&�=�����1D���i��-u9��.5�/�j�"�#v�SI�.V��K�٬��əM՜��t�j%^�܄իV���]-%Ӎ1��	����$.���n{� .%=��j��@���|�ifCS3n��Jy�V	�MJ��+/;ƌ��lہk?�9|�W�]�]��oT;�+Ȋz�<Ȥ���_�X�GO>
/�����q�&�L��2%��a��a�1R�,Q
��R:Q�W/UJ����`�*K��d�b�j��;��܎/̞�6��9�����Y�!�n˖�x���
~ܸ��㭷��sk�R�LR�=��,ܱX�f
[�o'/P���)G���<A�0p�"eil,���~�F�$���w~���4*
3)L�Jg�-#�����4.ˤf\Ү0�z���4#*&�t�fN,�Am ��&���E�=cy?i�T��!c>V��ݵ[�D�ZE&��r)�Y�Ջ�c~k�ֵx��x���"۵p���M�E{l��<5c�Fn)�1KM~�L��ě���w��f��U}O�8ӧMŬ^`���\����>}z3�c�.&�r�X$�5z'Yq��/sq�Ȍ"=
�v�:��R�*uO��k�LH�Z��>l��w�1ܾ}�L��<fϙ���a��}ؤ�G�y#��O�g����1�裲Պ(mjnbB����<R�sV��L}G���f%g��qD���j%��d��W"Mi�T�C"[�R�$��y��
�ج����d�G��D�Q�&�T2�#9��FkJeh]G��v��6�?R�YB�K�*S�dʯN��J���Qdf�z�f��ruL�h�Z�1����v#����в�`;1Mbr��bD�Q��	`DNf̔�Fa]�rE��\fКow�@"ͳ���%�����FoeY�(9�d҅�Gm�s��e#舩:'&g�:�l��dٓLŨQ�H����0^��䴌���0aQ�k3k�G2���j��Ʌ67%�p�tHY"�A�^,����#�����c�U�V�!�,�QۜCS���iC]���$KSX\�� ��"RTVU���Q���ք��k��p������/��YО�eJ�:P�UQQ���j�>ߨM,��ﳽ��o����@h�wǛK�����D~��_��SO:�k�)%�&?��H�K���������c�v��W��뿠6(�\��G�N�Զs����>�v�r1    �#���ѧW/��ߵ{/+e�X�~����˱�I��P�-�ج�K������Cc�Q�f^)>(���!�M���%�)R
2�-e�=�ǎ�]���o�>�j��ݪN_V
Q�+
�k��n����*�rʔIx��El%O���QY�)�.\��HYE�)��*2u�A��
8b��I�b5��W�7��C��-)��{s��I㍩�9�NlH<��o!�x�]�lzm:��G�Ʉ$҄fR-
��us��yd���Y�'�%��Q��"[��q�p�9mY�
鑅E��p��9����ӻ	q�s}���'�BzÒ��{k!%���%eRΕ1�L����K�	��
>�M�[�+��S�<���)'��e/����}U�������V���Q��C�	ɱ���Y�k��3Ns�0��9s1C�'�t�r�=�tG$�)�r�	��cnj��O��=v�4WW׋�X02��b��
x�Յhin�0%7�9
A�@0�:L�����SN�[4��&�ץ��q��,�'�ګ�´�R���M�>�5��G�^���&�0f�(=�X{_<o]e��
8\�bB��S���ғ��2_lr���S�PJG^����WD9d�̖o�k"0cr8��͸��l)S�˂�%]
��L�IH#yeft�m�}I)�IN�~In�D �ܙ�'�$K����ul�b�2Ք;��W�����٨%�o?���Μ�P�d�)�E����ͫ��W���?�j1�Q="3O;+��H&c2�RU�k��&2��brXf��0�4ߊ�
�T���.�{�pl߶Mݗv������O��L�j7M���niiT��5�PU���j�oӻu�;��3"J��0eY�2߇�z_�y'f�Nv"x��_��V~��/�'E��'7�W��
�{�h!lٶ�=4�P�F�.)�o���x��v|���)x���掏>z2����Yڲ��J�4�(?�D�h�"<Q`�q�JL�9댙F�a�	�=���\r��SJ"��9���W\~��9�_&     �H���BD�_˙�]����$��(�K2Q9j�xS��$ϦLyB�JCh%����:~�y eCFZ�CM��I�� ��u�Vx ���)���V�1�6m؂Z��*�!�Xq���(���"^�1�۷s,�	�'�2�:yƬ������Q���,�=�V�����ڢQ�8I�-�.�{�z?)P�G�́^��ͭ$�"K>Mt~Y{~�I��Rv�.{*ض�|M�s�cg�H��J��x^���ؿ��s�Jt�S��S��>�T���!����Z��.[��ν�:�(��ouY��"wlر5sD,�N5�qS#��E��G8�V{�&��m0���@R��l�C��G#��ۋ�/��*����*��H�NN��ZG�+�B���A&T�֊�R�������l�۹��@�%%�+����i��
��>��/��a��Q8r<�j���dc�V�����܍Gb<U)/'�e�(
��)2R$l��z�z�Q�S����#�$�$-Xؠ����SX�O�#��ܪ���t����R�ɾv�UW�v����yE�:�gfdH_�|B���G��ڢ�je�mͻвo+j�{���;�ϥ%/���^�!�M9x�u�U���V����O<��7�o����v���z��iI�%yd~�'7����=�>�;o�zO?;�U9����y��v����n�I}��ك�p����N>�yt�7�w���"br̨a����v�����ݶC^��”g(��q�:@��3�|?�������<m�D�s@@@�ᇎ�G�a-:\��bZ�s e�H�K}6D�k;*�Gvq��xR=�2     ��d򍬓���%�|��
�Q���2m���1txXފ����4�tc��bQEү&EMΣ3*qQ4y6M��1&EBBWmS����3�r�+�ИF�%!=R1Q�PH��}��Q�2RذRH)��EզRz�P���"oAR��U.�W^]�㦍�G�^Ki[��;Vxk$:ꝭʴc�w�#9��������z}�y����qd���;>�mtMo�z��VFZl�#ML�SX�)C���0�D5�Fr`V��L�Q���*�4i(��ʄ�q�#@��42��/bm�+/�aY��s�'Z��T�1y+�gu�J�Fq���P+��m��)�+6�-�"ʪ�m݋�_E��UX��s��s�����G���L$4A�Q�ĵ�!���U�G���ޛ�Q���02�.yn�LB;�$���	E�ޙ��S��Eb1QHn�5eoJ�G��[�~�F:���%OU5k����Ĕ:t-S�B���P�I����͐��:׊��zu�T��G�1�LÑ�V�	��t��-xq�n7���?|�)&%Ӧ����ݩg#]#0)iI
�Jǖ�$/M""G+��@"��wj�q�)O ��潼(��I�l��s�"A�_�V�vN;�����vhL�AJ�$���Q(���r6�r~R_��T'   ��G�$L���8�fAd��5�ת'J^G.��hi/8b�,���J�P�6ߣ�/�ވRg]t�/EK�IcA-�չ.C95cVյg��i�29�:�*��:�sl?5��:�2�L���=_d�Qz��2�҆X����e\(bHY�MP�!%I5e9���p��S�s�h^�λ���V��˾|bT:V+����V��S��G�ج�L�IiG)�5�����t��I�z�am��>�[���޵{�R/�/x�_�~5+V�R��5֮[ǟ�]ݺ��}{�����+1�{=��746`��m�~K�H����c����s���"�)�g��X��c�ڵHB&�5�վ7Bǽ��
8����zt���(�F����	w�_�^���+��¹����ȴ-�oS�硍�`�>���}�p#�G2 �T0!`���ۖ��0��Ѳ�M��2)(�sS���VP�&<��|,��Q���j�q�mY��/=���r�<v76�X�B[�;�&�==��؄ϧ��\:�oo�Q߅XG���k�r1x�!MD-�RX�L�]]7��(氹��c.0�x^�F���Y�l���Ur7ye��s�"��Q��i;�/%U��ET�5��P8Y�kEY2��$r��uwo@�u���n;�u*��^��w��E[8G�4:Ǜ�IyN�7�裘�#�LK^��$����#>Dn�se��d����Qù�n��C�>���
J�l�g'�e���|�CD�́Y
"'����>��Ic�1�G&͑�K}��?s����� r�hH4B{!���y�9SU�C}u�S��N�6�p�K��-�%nj�p��5K��"�L��v��i��1m�I3"i�P� Z����9�V�&_Q1&E�%G�LV�b�"�������Q��Q��
6�Be9Y��<G�eYM=e�4J!�аo�"���e�2U[����Q`z��<�7*X�ըHg
Z����x}E�4�2�{�n�Y╩�i�,%��\lݶ
K�-��ѣ��Ҍ��z���������}�‹/)�]�N=�/�СC�q�FΥY]U��;wb���X�|%z���9���&����b��1xu�b\x��ؼy���ƐA����chim徇�}���s��l�r���s!��ƎU���3OŢE�1j�H�4w�y�Ŝw��0h�@l߱�������ЀÆb���G�`��Q'p����ƶm�1q�x�w���ؽg7+�֭߀�Æ�{Ee���f�|�	�ۗ��8g�g�(/G�޽9��V���J5���w�wWk�،�x����3���58p�Σ߂ݻ�`���N�k�lނֶv�|�	ء���+��[�n!+_��l�0��w�+kf�C�k$y+fR}ZL�y	Z%�,o��(tjQ�����l
$���{`rHK�r~i��_%�Fh�K*ٓB�f������ק"��L���L��2���pӞ�8�:�di�P����j�fd*NE���wb@�z�NJ�l߃��6c���UT�Ϡ�5~��Θ�/�	��!�аuV,]QV��#Gq�y�oK�X�^J(�'u�m
�J�Ӧ���3L�����j�dnSh�Y����H�aoV�*S�G1D��e�L"�T�Ӝ�:�[{[;�'k��6��4YE`��d�خ�6�v���ͣ�������y��ED1)0��m{��s_+*kk�$�Co
�I��w��"�vU��$��B��aW;�Of645c˖m�벡������zߕ�����z��/�<F-h�6�'�T����W@@@@@@@@@@@����J��6���"+[H�QY�SJaBh�p�Fic�7XE�L�C��t*%,��,��;B��4u�,��2׹1��)�hn+2Y� e��	2�#�f}B�?�x>
K�1���R猔�%���E:�b�"wO<y�v�y�v��`��,�*09�8�r+�V�b��7�İ�}
����
����M;Bj��BA�D.!}�Я���X�j�i������֤�H��H)T��*+*y���FDZee�" [���ߏ�sI&$ǎ��y����L���b��a��\��[��Mˤ4l�ߨȹv�x��X�d�Rƕa�";��-[�3O=U�{�z�|������m睭��׏�!C�~1XS�-[�`��L���={0`@V�546b��)xi�|�+�`�"EI�:�ԓ���O)s ���3�a֋s0N�c��uj|��'��6Q��ѹX�����;qX�;w�w�^��K�Wԫ{&j+*���p�~JW�S�!���K���uJ�G$m��k���ɓФ�1�7l�0ɹ\���4*��t<����Vd�M�׬[��?V�N�W��<�*��c�G:S�E�PT&�i�lj��\�YM�Up�G$�6\co;�K��\����q۪L�����J�!c��ؔ&4-�”�<29

+u�NI�x#6\ӹ+���N���9&)̬:S^U�֖䪻a��iؼf6�z˛ZY&�)W2Ӟ5���7oŦ��p�?��3H����@݀ι�(R�҄�Qi��8�LX�H��6�����y��X4�I8Yi]�o��I�^:$����O��Ҍ��	M�J�=�
��!�M�SiB���9�e�^


Jf�"C�zzWB�
⧩n����CM�TfY�YM�/�w�D�زG��)26�s�)�yFZ�H�yIy&)���~�=G�u����?����ˑB�Sbmu5^�H��")�+y�r^ʣ':2�`AB�k�'/L
듵K_oLDf"���%�Z᳣�u9Edf�
\[�[��5����,U	�s�njRN�p6��U��:2K����VE�R߹.(�	���^�9�԰˲9V���v������;N�<S��'�j4ߖ�޶��Ru���T��cQS��ƾe;@鋆���N��+⏼#ە�ʆ�$R26�(�ѕEl۾S^}���q��Us�+��B�;���қ/�)ںV�wl�N�M�\Kk;[��ɦ����kwG��ِB�KR�M����&�F�A`��-��8���쭹G�g�"�j�jѷOoL:j�*b���e�d|��Y7vv�ڃaC�(��z��ix�g0~�X&O��޳w�{���lhhĞ={7��ٳ�"UWbĸ���P��Z��n8��lU�^���<j�&kk�ѭ{7�k��N�k_]�'7�xWD�;oN9�D�}�c��e�ק/���%˖a�"���Y�d*�Q��$������y;|V�X��C����
UJ�I�}�g_��2d�My��u�I���l�=���j̃���1g�<L�26l�X���G��+�.����ʪ�á�f�
����#����6jҐ}Zr"ҏ�wM��kS���p�\��<,ڐUd�����+.��~t90�R����v%����6Y��&Ls����hDY&��h�G��J�g�J&��YLy'��)�A��̕�#�H�LY��3���
;v5bX�5�*�e�\����LFSJ9ER4�����]�	rL������FV�4�w,5��W}�7dA��ɛ�b=�lZ�nA��%+��!�Qӣ�*�]�M+��lFj��XɌ����Mn����Y/]�{��w���q�T�<�|�-/C�-&"��8c�w�4���y�{�"����T��c���_�%W_����]�}%|�+����׿����$RpނEx�8�c�E��Uk���!Q}�XJ�yv"0�E}Q�M��I}�aeު�\��S12��'/�|�E��*�0�6����!�B�������6����n����0y|�'������d�U%���^���==9�h�s����kl���Xv�
�	�e��KZ҂���`l�d,'ɖ�,�4�&����]������U��F��E��3juw��^u��V����]A���^�U��xEF+���8���?�����S�G�1ēD�%:�=���٘s>G���_���\�dT���Jv:Xl�Po���f��K���fG�)0>V�P����r�b�OQ`�bY��	��Jt�z�%�-�e�cE�o�
��26kg�K��]�S���RMƭ�lX��̔a�U�e_:7]�������Q:>44���t�Y������{����o���֭�?v���wJ�fعc�~߰޶۴��������c�]��OLM�T-�;�}e��~��qv�'׺}I`[�$=$_�n�^H�Id	.vIf��&W
�7n���4uG�ڭ�a��9�_ٞ�v떭��ݓϿ��3�3r2����k�ۏ���y�_'��<���	5Ϭm�#�VH'���d�r�|�󲐷"/v������i��}�*�>ó�E8�r	�\u���	Q�x��`��߻X0�Kd�%���YDX�c�H��w���\/,Ό�Q!���EFJ����p�Bj
Y�S��0wF��Ac=��7_�ל���H��1t�<��·2��p�p}�ny��cװ�����%����>]��M��'�L��	�����|,�E(q�>��\b���#+B�|l�9K�����_l�%á/f�lHY,#fC��{��g>�e����'��5q���v)�z��ߠDᙠ�nG~�ҿ�)%9I^f���n��7�g���������3>�,u�3H�L7;I��\o~�kV��[�������������S�J�%$e]�j���0\ijݒ�$��Xk�Xlu��[lv���V��}5:�~��=���8���l�������gA��ɶu�Ք��r^�$L)�E��$l}�&����K� J@u����Zl�9�uvg�x-1���K���Ֆ����fk-9o�$iC��:��S�!��nLI��K#UcWT̈́%����'���P�|�U�;R	LW�>;=���e�j���yIǫHG�4o���$
��&�[�y�ג�/���o�S��˴O�>qi
�A_~��㼳3 r�>�'_�����jb��vWF�?F*(P)ܧF��K�g,�L]�����κ/3튴�ɷZ< ��0*d�DjFX��i��[Ձ:+�ԑ���I;>��t�ǒ|\$�)��}�m�I�����$��B��C���1�����T�m֮[��	��y}^IL��r>Dy��T�`�f��:�5��%���%�5�Uo��3q1mv�}�\�/��WU2��S��L66q���]�Wg����J
�m؏��:cMr��s(׭R�����ז��uώ�X7ZE��B��Q•q}��q� �m^�%DK��㫷k,̱�M��D�+�W��~�����5��	Q��۫��8��	Lv+�E�;v����%����k&�����嗄d�v�����KR�_p�Z����W���>�����t,�u�l�1X���qx��:�a)�nJ��ඔ��ĭ��+_ǿ���x�s}��_p����npq����B��(!�$��^��R��YÙ�f��X��A�!2I��	)Xkt�b�%�/���nz�m/��k~Y[\ƬgN�?�z|&H8v�ߒI�a.֚B�v�$�)�Hi[&&��.�%YIb�DlK�T�B�vS��Wr�c��%D/D���*�<f]�o��Zd���T���ݡ_C�-$!�Pyl�Y�=�����$��9:^-b�pE��*�zf��IS�Jqr�&|()�\�K��nC�����]~�y-�ر��\-%,S���=iJ⅏�V�51�2N3b�<���dE}/�wafR\�K[�1��Cz�p:�T���i�`�Z��9�9��؞���[8֙۬$dW�_��S}eH�r����|R������كԩu��`�O�N����n�Y�ت�-k�4O�n�$�?e~ﱫb;�1X��H"Qɵ��l��P%�祲I��؁Hu3_H�XK\�\�=�Wd�u���nꗑ�$D׎�b��ز~kF�T>�/�s��,���*�+��L6m�2~J��d��x̩$�œݸ�tݶ�����Ù��M�ue��.��:^؜��p]���dzU>�cr��F��Y�����	V�����y���_�q�����Z������10;-�Ŝ���36^�_������L�9�B?���y#]	��jc�S���q�!�Bם���|�t6��HȲ���=N"�~�N{�᧕|ۏ�<~�7��n�=��|���=~���Rʵ�ӓ�Q��L�0��Ep�_���З�=�8���{�*-�K2��t����7�V�Z�ݝ��%����<����������?����[�$�⸋+��~�Ą$0\5v�	�y��*�V�>=hj�u����v{���9ߜ��T�K"iCV�����j�R^�F&�ʄQB�1Qɭ�z�Y�!��[)�v���V�wZB�&oEIB�;&;$���S�G0�5'�&%:���˒�h33A��ו����,uD�0��Ŏ�� �u[�{�m����&1T��Q>�r!������c"����94juTdmJ���sbV�ߡTV��HV��a	$����c�w��A��X�fPv7@!�.Wj�&���D��c���'�^I�;'Ϸ���M���2��*��}�K/��F�k�`���2?]=v�v�'e����&����
ϻ
ٞ]�-�V���F�X��[ծ�G�m�(.�`�v-�Ӓ~Y|������y��=�m�Xҽ�K/�H��q�|=y���?|�J���~�܆��ۇ=����ܜzl^|�Ezy>��B�?��^9��r��q��W�V�Id_����+�7��4���c���Bh���C}3=<<<<<�+ ����˝!)�~K]���+ޘ���gb�b��Ӆ`�Nbf�3YV��$�gk�q)��^�,,�f�J<$V�W�GJ(r��|�^�3lg7)�S����"J�J��qdQ�9*$fai��2�eٶa-�$0�Tm��+%Lvl+J $2ס�	�k�k=��t?�cZ��7J���I��el��J��i�I���6
��2�lM�C��V�&�c	�'�cr�t\ǭsW�ϐD��w��ë^p�*h>r�� �.��uB@Iٜ�t�J�..�tn�����i�Կ��I�d.�q�f,�rXj&J�VJ�v�|ᡓ�u�z<�d�$1����X\'�a���G%�432{��~���;3�����7��I~�\��َ�z�����:m%>��j�%�p��g^�˱��\�x諾<���o[�����{�	�z�%I��S�	Q)UvJ��yM�0��E~*K��V�����%4b�U�4�p�{,"蓠����t��-$���ȴI5�w$q����t�uhjodl]���y����UB�bV�!ER�^9��;
�O��r���jmt�۳#��N7�*�J�b���S�/Z)ϱ���'����ǪD�&B��.vm�x5��%ԅb�ݞL�$����g��G~W]����
�Rg*�p�B&�%��%ʐ.�f^�6�$f-�äP#�*��b�<�Kƹ�4b��I]�.��p>I�ư�L����I^�y����ř�Ylڸ����= ��fԅ��k�#����.Q̯�M8pP�XK�K��#�pݵW��G�IҬ���I!����㏣*� _�3�3B(^���'qۗ�"�i���v1�-�!P�cyy�\|����;��|�ɓ���㜒��"�=��5k�o��S�8p�<?�����~T	U�3;7��.�@��.��4[-�x�!lټ	?�W����rż����r͛7mT���{��G��Fϫ��\�<<<<<� )��}�R%&]g_�3X%��J�����S�
*Vt�{o�0�_��T��l�{�,+�CT�4	u,<�~'Q*$ZAb�v����P��43Dg����A�SG�y#b�=�ݔ��s]�^��B�
J����-��9%
�ԑ�Ο^�$6�v��*S��|�l�(�b��]��]E��ǺF�BN'{�:X9��u��i����I��:E��񮐉A�J
�̓��"�V�$�_�Tү�~SRw��A<�ly��r���T�A�E�����F����	�4G�R��d)_+ۮ���z,,��Vx<5����|&8ٷZj�[�w5�B6�}�y&�=��xxxxxxx�ÃA2����EQ�`���d��H2�	�*�V��$%��J����t����m%K��bN;)#�i� ��2v����פ@`Da��,��ք�I2��
��C�ƌ��X�Q!:;B�2q�n4#=M
-�\S�5R�Ϫ���G�h(�BVRv�g~=� �=��t{�It�b��E�!�cEi�	����������җ�48�Va�Z��l>��Ë�`.��������!��qɕ�ɵ��a+R���zҞ|��Жa�He"�H�&�2O ��jx��fB�^G��IHY��J�ێ$�"&�\W�v�J���R�ݮ��S�'p���B���y�w��'`rb###r��CX31���a��G�@��2ŭVk��133���eݦ$��.أ]��f6l��������w�)�΀�������t�����B>�y�>uJ�!۝���>!O��Sbf>?����ϰ��Q�V����I�r�ё��k�L�yR�K�l۶q�WH�Sr��~���GŨ\o#�#r�-V��˵�t�uÉ���ڙZ��q���:��v��k��)GN�F8���qa`$c�_>�k�I����1n�[�8�Ew��������#�Z��E�q/�e�C��L��B�\��N�.Ѹ5V"ӊ��r�촄Ÿ+2)N��I��n�����y�ir��oXGh�Ɲ��Fڡ)�p(9W����~7��qu�)a�9p2�N*6
��
BS=�����.�gdpZ7,�q�»�
���͵�)A�dm��k�_h/r^�,\Ti\{m�\�l۾C�%H�B��0�1H�#�tL�]�iN����Դ��0�4u��Jx���!LV���V�+|~��ON`zxxxxxxx��D�\�Ά$v��9�	%"YI����#I����I_*��
=�
���$c�+��+!��wft�<�w]�E�J>BS�\�)�ɤ�,�١�rW�i��Ԯ�^yI�����̧�{����E�d;I"�+%��,E�0j�m\9�׉C�>'i:A)�����ٳ�٦�"6�41��V�/i������I�X���.:r�9�D�J,F�mq`X+"(V026���Fq��51��v���S%�d���:���?��/�Q�H�R`>���|�zf*s�'&u���Io�05�Pn2�Xhv�d�UV6�|��Q+�a�rQBj&J�B�����e�|��I.Jx��K�=��K�����1�t��_�dž�л�����W%i977��;vhQ�ǯ��*�_�^%X��ٍÇc�m��#��u���՘_X�n!Jy쫮�LI?&�H�	�ɮF��(!��c���/z�����K���E��ɽ{��(M��b��\*�~�]r�&ަ�g�q�ᗿ�%z�I!5��q����:��d^�0�e:9�F�e��
x�q�M7ȸkJؒ��k�8�R���T�������x.�98�X���&SG���e֡�(K�Gȅ�I�&i��V
��+�s���:9-���A�&�B��i݅@u���`,����yY��2v��zd%,C%��T��ȸ���gd�u>fc����W|�ܡeq����#@u�$��R��͕�,D�]��"�6�Y���}�_�^{`�`�'��qh1��$6�.���3{���:��@z�t�jXLIgy��}��{ݦ�1l��f�9|��r��k<+*����k���T��q*�[*�%6�k|�cLl�t��&W%;m�cn��26Xpz7��
|���������;2�<<<<<<�$��"Q/&Lra�ߕ�S��^�}OKʻfrZ�F�<&r�Z�
��C�#�X@O�@��2o�Lj�I�����*��(�S��4��=Q�r�H9�<f�!��6�v�z�b�$g�<-��ɛPkz��V�B^F�Iz
��ܬ	��#IM4e��.����;-{زh7�h������R�!*���
�w�.�g$tl��h�M��%6TBW����;�v;�l߂��a�&�"���c
�)D�V���z!�u5�^T���k�:g)���!I�,�/4���K6GBJ�Rr�����26�����'.���#c�t,��J�[I�\x���kkllĒ�rmCCCJ6fҎ2�o��];�3�ʯ$(3�������bvx�K�����4��Z�x�s�:ި����|���2�8�ݪ}8f;�h�1�ڒ�$.��ݗ2�+�p��=n�ǷkL�8S��pz�-���9�}�Q�d�@�R�OE)�;(U��u*'����N;��?=�2넴��s�#9�?ԖA�^S8�2U�zF|�Rޑ��#��0�E*��Ud��a�j�16�9˱.T�x����Lv!�s�� p�)P�#;Wl�uO�qt��*�N�����T�ӑ�6)A��U�W��k4]���9��J��A������u��u�z/��x-;��<�a�e�b[�0&d�$��4�
��UIZ��/�k�yzo+�&$6$qI��u�r�s��Sx1I\���9��LU{E<����������������8'���$�IhIJ�J�%�FOT��M��f[���C�1J�%��0$�
l�&e� �
%���3?-�^IxP��+ch���f�7�[��x������X;8��bM�-!C	X��di�*л�]�]����ؒ=�6�hu$��5���*�-��د$�TX�付>�H҅I�B�9�������'0[��p��B��{�ˎT�oN�׸\'�y'^��\m���ت�;r�R��o)�����f�r�uI$�d�Zr�B�*�Cٯۨ������T֎M����"6c���᠇�I%�U�	�S���}���+�|���~r�2���sv���>�����=�g�}�-l�t�x������㹅��%܇��Y��;��m���`��JE矨�F��͔3U�m�|lfv�J�e�)-*�`W��G��l?��q��u�J\�預Fj���L8b�;2^M�_dҗk%���w�Zf�dl#�TJֈ5ƻ����ve���u`�eLK5�|>g�
�[Q��u��Ӯ�c4Y5OA_�U;@��#sU��y]&��A=<㞒�ڰ�p44�2t�}��c�8ѱD���S`k�Ls.�Ј�H%�m�"���r��]w=]�u{n�k"��^P�v���1�'��|�����������������9�ա���ծ#�$��ʛ�*kJI��AV���S�4{�o�-�4�?�"�%?�k)�`�C&qjݘY��z^җ1�*������b�d��p�t}iJ(�c%$�Bډ��S����U��\<&�1�BvNW����I]�jU�A�/Sv/B��h�r^�ci9ƑǞ@G�shx�KU�:9��<�X�	XB�2��✎-t��k-H��ݨaffCZ�M��ރ���mI2�(���rn^G���*{���{��̎<��U2V(�|[M�&�W�U9f�r���-�p���r_*r�.;/�5��
��>���A�CߦY�2yW�3e�.�|h�$$��i��Y���1V:
�ը���I�+����ȯ|d�5%��>4�%��H��m��<=W hcv����}i��wzU��קV���� rݘ�cX�E��>����h�Q)��;�C9���M^����υ1�A��҈L+dǣ��y�j�q�J�j� �W��N��WJb5M�~��c���e&������#Q�خS�Pl\�
�&�k����ק��5Hl�S�/�离�~Q#��K��:��)V:rS_�����������������9aɂX�QI�wv�iB%2�06����*ߪӳb��$t��g$���i��Tz'&��aH�K�����2��V����ݎ��A�:�d�+��D�0���W����0F��aݴ�]���������e�����3qR��u�1bWmo�T��˪�)-+��ȵ�<������V{��K�{�ͨ���1��1��b�)`��$d�/!��lغUDMT�2������U{���bdde�3�^�_�&N�KR��Z��v�'�d[�X.^�`��3Vi2����r�FW�+_�,	��V,�k�F��y(��+�[���������'��~
V���vNj��� �h%.��M�%[���`�̣ө��j���a���ˍ������ԑxNkќI��z�.Cl���c)V�;jGg�٧.�l��B�PBSb�8�ˤ�mj�%�h��Gnh����$��b� �!��j"�s�C��'l�W��J�ǵ:01�2+.�:��tf����hf�>�}����#��3�R-Lt�Ԫ���&��kh=��vG���%�3�3����_�֥�NR��*��\En`�O��Э�~��
�b�����'0=<<<<<<<<<<<<΍��%���.I��Lt�Nb��+�()�tI[H��<�Xj���+����=]E~��[�����k+�����HA.L����'�%Ʌnl���*�MH19�DD$�
pRYB��k���H2���@)�ȺCaI�[;#'�|�����T�Ԡ�4S"3�Z#NW]MB4T͹�z��"w�О�AM~n6H�Ȥ�Nܪkz�t�����B�����֌��&�ۡw'���&�s�e�����<;���4%��.�^�����3�J��.�=�)-W��bfѺ/��v��*��Z���ډ}帇������sJ�Q��^�\d��JC���8�O%s&��$_�"�Zl����:츍z,fCpEwv�T��jp�h�]fS�8���S;�t�:���]��ScXd��ߥ���J��199�nkY��q�`�����M@�ӵX�J��
��$wY�h^����z���.H��q��Ԑ��?�;csLR��ƾ{��u[vcdb=��0�U����I����lܵNRw
��3+�T2�Z�m�M�g���C�Q�u��N�o.��+��]E���D��%�Hewc=O&����h���|Zx��������������P2���=�>*����M�X�9�$*��R�Y�FL��,ђ��m��=�<NҌ��A��J��P�BJ6ډfr���IV;������y��ɽB}u`�(��r�%I4�ڒ1��\�R�~�B�vS���Y*�5�������^�gҹXՉ��rޒ!&/��/:� zXr�Iq�\sGcpd˃kQ[�!�:��)�׬@ek9��,�d�1��(��z�6�3��KL^���\]�d�uNll&}�iH����ty��l�+�V�9�J����dn�J�s��]��L�Yu�]1�[�m����������㹁0�U�Ų��`�gEi}r)�n�4c5���
	(Ϛ�oyF�����&N�uu�]���ɖ6�=
��o�ݏ�B���R)۾3Gp����A� +�K�C2�c����T�P9�$u$��̺1]�dEm����y��)�2 �˫sd�
Q�Qב��̼!��JG���6�4Y����Ã=�{��%�۰	�/�k7��RuHƓw���y�v#�3�w��(��>�i�d�wK�~�e��K����`��fR/�k��=���<v]t��g�-`S���<��w��`��r���+C�xx����������������[�Ƶ��ݎ=��s�V�DI\�vj�Le�Z����!{q�!	'�ōY-�G^�C�m'B�uMBk��O�O�z��]�+�!LR��\&e�9Ϣ$�����nR󷌵�=���|�T�m
�؈TJ���]���$�r�c�@��&i�x�B.UB��<y!iO?�5��Gna��6�XDP���{����Vœp5I0�1[�eD�����*CØ=vQ'��k�3�$�i��E��?�z|���IX9_$V��q+B������r.TR��h!t�yZu�^N���������N�Sy�4�uq#2�˴_XF�V�1t�q�#�Զ@;C�Sb���I���e�����5�ĤH3�(4�E�v�<�YX�I�Ǝ;��t���mI���t�oĊn�,��1��0SW����1�Y��^�u������Dv�җ���$s�U�mF^���G�QMl9��)`
�FЮ�u}�n�����G��|celڱ;.����14<jk
w>���y\j�[S�R`ɂ��8�ϱ�1�/]��dyr}�+�+޳׃��$F�m��In.�c,w�;ӓx�=X�@��?sM;i�t�qvx��������������PBP�J�P�&�V�¼ʿvH&���#8uA�"��e�W�0Y��Cs!�4XL�d���^��%�����WiŻ�'a&�"�E09��Q
�?�<0�
w,�l��z\���ϔ���r*�Ս��Vd�x�\�A7���"�+��c�"fgh�V�<�x�0'�jQ$mI`d���L�<�l��;��k�hwd���!�[n��4WAq��N��d���3dU��t�$!�8��=���1�'+�F:/�|��M����Hm$Y��O�Zu<�4����W��!R	2�>ٮ[*i���.X9fU��R�wU9s]��w��4k�K3���e� �Ĥ��@G�upfr�,�����@���L����Y��ʝŽ�(I���	w+�>���ev~��eOI�J��zc�������p���&��A~�/��ѤvN:"1#p���iF�znƦ���'�����3}������8=f`2���$�dhC�w�C`���ܵ]������{��N\�}�}�O��^��$�~a�$�O=����ځ��ؾ�m��<W�:�c-�ם���&ʛJ�m�5��,u��/�X^\B)0����[�R��ǖ�82WG�`L�
�ڋ����K�>Cx���������������`2��B�C^0��%_띌�c��:1տ�%�)��C%���`��%2r(��؍N
�1{���D�!�(��J�+d`X�s�;?���$��<��� Dh��li�a�\�R�!���Vv����O�9w��l���B�PI�y��G�e�S�aɶ�����iO�G�p�d�y�n!1e��N�ۏ���H��S�/.J����$��Z|l=�B�c���/���&Z�M�]��B���x���0Z��T�lP�˧���� D#�FY�=Y�0+ch�2q�4=6��)���,�7��TnL�d9	��-�P.��\.4�%(�^*9,II
����������x� p�oAF�9b0P�t�+�~WZ�y�g��K�}�]w��H�Eo�ʫf]����፹ҝha8���f7c��>��%ɰT����ӂ�10�9�O~/�/>�GI~n�HvW�cS���G��uu�B#H��#��s��+��������w9��,4t��j+	�߉��偒�� /�눂���j��R�R3Ɨ�zH�Ě�*n��B\y�6�޵A��'=i����h�yt�%0�M�88ڿ�Qjw6�9���9��(��NU��3���z�$�#zS�c�}EF^�\��q���VP�V�h4Po���
0���g�|��u>��e�q:<��������������qN�[���v��b
�KqY�\m����Ex����&q�uR&�������B��H�U�v*6�m�z*�d���zܸND�c�<��M0��+��J�g]9��Vu�j�kz�J%R�Ȏ&T�s&qy��ulZf�*�!D��&���%�'T��r���^l_L�]!
�R��<,i��h�%�+��\��zW<�f��/�)DpW.�����~�ο��QS¶#,Jql��E֑ڨ-a��Wbnz���w�[CB�$锓_F�hi.֔��;� 
C��ժyv_&]��HE��WR:�Y�,M�8����`Pe&���ava�r\ץRQ�Q�Ў�IL����=!��8�����������ڷHM6ֺ�U���iG�4�p$�i�i:�1R�J���ZؗM%aE�ɬ�t"/�����,��yJ��ƪ,&#YJ��45�r�?�QE��ka]�=�ə�=��M�^�-��屢 S���2�q�}�a�{����H@J�*	C�dmb�tNǿ���f�?��_(��<�3��D�k
"!˕������3Kr}yl߱��!+Vt^�ZDX,chr�3�ݹ����z�I�u{�/c
��3�x^G��/`~�Q���@�,�3	�i�$N�&ʙDW܎���/�z���T�%8m^<yyvx��������������(�(��%�3�:斖�/�IP%q�J��%x���j2�`Q)��dL�5G�af�GɫP�0�gQ�����v^�Z�4�ZM]�1��!	�U��E�
!1�B �-/	���q����B����iJ�ƁI�
��v`I�^5���T^��H���6�e[C%c&�\ey��2�T�,JP����@II���_C�e�c�~���u�u߼w�=��Ԓ}��'�.� ��u�N���d,L�e�z*�U(�Гsv$�12X��ӧ�XZD1�%}�A �Q�W�(�j�ɱ"N�w4�6TΣэ5�֋M�l��%?��^�幥�p���9�����y/7�Cv����,�p��iU�(�@��̜�'��dz?��{��1<<<<<<�S�
������t6�J8e_�8Q���đo��uY
��3�,P-2�+ұ�.MVddO#�V
J�kC�c�
�C�9���j�i��H��Bn0�r������eV���oc���HH�ĮYj�:�:`Tb�o�w�^W���9d��qʮQ/2��T	W<7񛬒�]��
����;
�1�$u^�&�~�z��X0H�[���P���
�V��H�M�����G���9� �3튔�qV�jSA�
�%)qyA}97�Ĩ]Ytd��\�Fff�n�ۭ����#_,�v�����+������������������9��A�u񱪼���lu�q�Q�E�lW��]���̬�w�X�BxH,5{�p/�"=n�����CB>��H���y)�(I���A�$d�t�tPkuT�U�'g�
Dh��vOƚH����#I��I���&{�}�j�>F��y�NlR[Cł&���1�M!%!�"&�zz��y"i�*��eK;:��`�8L���l���L3�ґ8r�(����JB#������є�D<~�R��mrsŊ���J�Rs����bJ�
:�)�\*�*�fhT$0�v�dvCX�ḫLK:Q���;a9y�9B�;��酦�W�u�.�Mmq	���r_<2�X��{���zxx���C�b��l`ތ�A;!I$"�3r�qyn{U�N�M��"��λ�A��S���X;�v.¼0��|*�-O��&�.㸭DZ�F��<�{�I옓�N��Ȉ6�*���%Yk��#����sq��Q�:�GX�[�uSʸ��%h�J!<cr���L��S+J'%�'o�<ii~���C�cxx��k�u�|���;���o�n�\�Xݚ�c��4>߾}���*B�a*��:)W�7TB�c!A�u���D��k��0Q�2�D�DH� tJ1��%�Ӳ����T��OC���y�����YO`zxxxxxxxxxxxx��[��,]���ʇU
H#��\n�P�Qd�*��$*ɂ���s�K�]hk�$F��G[��\�<�O�ԕg��R����+�-��,���VU9^CR%�6}��Lbt�f�y�/�4��PW�yIJ��mI�����V�d\]XY�Ԍ� J��r��&�r{zm�kK(K(��r]��h�d���1fi��_ФU��(&�$�Q��<�&�P���M(W%$.����sh-�E�I^EZ%_��HbJ�S�*���)\|�EX8uw=� �N��K/��mPـ�%`fY�Tc����U�PI�LT���Pa��2��Drұ�p30�ou,G�#Mȩ\�kSI����j��������������^��3B�En �����p��h۱h�^�kj��㞓��iD]��l��ݗ���(?����2�83�c%��I�f;����Jf���{T�?q���4��H��I�*��8� p�����F��]'%���B?�!�����G$�D�Y�z3���7�g\�ȑ���L"�-�^��o��)|�c#k�<^�����!?v�Q���"p���4u���3��7���F8;9_��!�E����T�X���nG�TH s`$:9��z����)̈́F���6I�������C����z�U����|:x��������������htz8Uk�Li^��N��J�����	�]��n+��CQ��V��^K(���i��n�/�4�c�r��&O�[25O��}E�B�	�z+Ɓ�'�M)є�'f�k4$�b���d�(�v�e��=0]P�0��
��B�v)��䊌a�PBY�DՂ���.f�veV�Z��.=9��;�x�\mj�
�L ɜt�	\��Lz�$�381�G��՚8$��ɔQZ�*�ä��S��[(I���1Vu(ۚc�w���8���C���jEƚQ婺-�=� �)c��կGebB�ܑ�eo����OC��b��5z�<��%��%P2�ˬj�)s���N���s��)�:ϳ�|o߷�l�2�о7�3�ק�<<<<<<��H���Q�/�Z4.M��>�Hx!+�r]��;���d���=���K��yK:�r���s��'6�Zh'�z�*���CAu`�:/e<y翮1c7F�Rn##.%����$O-6\Gd��K�Pcf��4�r��4kk��-�4u!��m-dL��31/�:J��TB�uSZ7d��c-�S˨�5i�m�;v"_�g>�Q|�ӟQ[��}�w�Rb@�d�Ԫal�LV:=����$rצ^���M	L����$��4ҹV�6 ���9�=7�ޮ���Eҭ兰�����g(��zn����OO`zxxxxxxxxxxxx��e�"�2a�y�8R����B���oaI	�Vú���V
B�A}&��m��쀄`�B���$ܴ�2Mt�����7���%��o�%QTʊu�2�B>���e��6�2�&s
Bҕ�$_59N��QI`
QGғI"|��J2�k]��EOv��P$9ڕ���s��(�c�l'=!$c������h�O+I�(D������TG�k6���e,��A����QKB�&�	KZ��A��S"����8"dnI+��d-�g��\X@~dT#�fmvIƄ���e|aG�t��ӑ��R)��#-a���i��A.�^W�,'i�K�y0©����[��W�.���y�Q�]<�'o���w�&SKF\�2�n3�Н����������?�sd!�(̕OVG�!��Ҭ�H?�Uc�9�ҫ��&�Sg�T�y_�N��a��PC���lGn�$�V
Qu��zL��КI�O��XP}6cU� ��:ڈq.-d\J,f������Q_�f�&��g!X�w�<�:Us��2u~��l�w����yQf>�蓚f���ԓ=1�^-e��Uq��8~�.�����)LMMc�2�_����u�������U���K�X��*#*�ۋM.8M�����T����uf��6�,�奔)=6ln��$m�M��~���I���\�����xx�������������� ieRGBԱ�����`�c.H4�n��	N��)����bUʸ
AI���qQ�D���饡V^���Ɂ�$0I䌕r(�1�=t�D�ٻ�.zݮ&��(�$@-� �h�m��0�XR�ɡ'd�RS�\��6m!�4�C�OI<����c���.�$G$e]�T�a�h�B�X�%�)Y��$�rj�SES�F5a�z�Kr����q\�yX�Y�5Qd���D(�
K����`ʒ�)ʷ*p��h<�
�5�X�-� +�Ӣ|�X+	�E9�_H�&֔
�ɼ0���\�;~��uB�v$!��H)ұM-���>�����괬��k`��J���dr�!�l)�4��s���)�MG�QS�.�g���.�ỀW�9@}�q������k�[?}|煀p�=l��<
l�
L�n"s��}�Fynq��c��������xZ�I3�H8�՟�i�8u���Xl����h�W}U��8�Q�}WH=}��iz�v!�*�{�{��f�p�QDs�q��w�]���uزk;
����*�A��>���	\�iv]�1�:�2p������ϋ�����usj|Hr��
A֥jל���t���$e�9^9_BQ+��"����IL<6>��vmæ����H�����;_�5UZ7g���7oHFr*q�9��=����<��-w_�ܴqx�˟F���a[v��I��y�m������$kђ�IG���P��b���K�/��mb�A���ئ>j{Zx��������������`b�DYA�G.���ov"Ɋ<'_Y���=���ڒ�p����@��B>��5�ni�"����͐	���$BH#��L�hճv���~b(Z��Ғ<Q�I���šA���;-���0N8L+�%	��E;	�/�Q�XA��������Wq��Qlܼ	�e���r�
r��VUףA�=���?�����W%�Qƾ����Z-��M%��V]�2_��Y#�(�����r$O܋�iuI����
�	嘭r��zD�����e��̍�/hi�$��j�Tr��)	a���iU>�ܚrQ�W���Ǔ�rS��4Ū��Hev�һ'��Q^�{HO'ٞ�C�f���|W�L�<�50�ɼ�ȸ��#BDn�~2��\�m�s��r�a�˔�v^d��q�,�5�oO��>!/w_|�K��Wy��������\�49�:r��b�Vj9�w�LW���1�l!S�U�C�E�e'��5]9�da.|�X2��(�W��v�� �['g+-J�7�}Ǘ�8ml^3"�`�N	�97�
��Z�GI�N��<#g�~�F:���մe����NR6���
m��
�'�z]�Ӑr�ݘ�2y# U����i�m_F�U��^�%!-
�f��,Q��K/�5B����}���52���}� m�,μH�f�.^�E(�lr���Z�/#K�v���O`�����]�I�;��M۱i�V\p��BJ�����׀�Ȱ��^/QIZ�����2p��К͵�S�����NM�z�$đ��v6TK��d�/��FK�V�����§a����b!��]�f�t�N�J�I�p��D��HI��l[�9e�beI�Hbf�k�#�Y���Ϋ�ݟ��f�{B�I����<�L���g�D�2�d�)��8�M�%����fk�6�v
��r�Z���nۅ��(��<�m�i�('�	�Z�dξ{����8v�1��,��F($�ܑ�h�qG���td�v��1I�Q�q�����ǰ�3#�p�:BbV�8�8'��#K�0����
�ӄL]��/�J�eTeu�$H�8��Id�.j�.�>��d%�Po��GI��n���$�z�Jr�r�J�"���̉�m����Z$:�)��/�u|��*힬ׄ��(S٬9���2�
l�
4��]BT��U�ͺ���c�������u�7��s��ܲ�TcA�ͯ0�L�7}���־��:�E��*d���2Gޭ&�V?���s$N#W�H�0�\�|W>_T{a@Uu��o�RKȰH�O�H�1����@��B��׎B3�tg
V�ȚT��U���;%M_֮#�n�b��U�v�Ե=R���$1S-��]Gif�	8��?'$S*���:i߰������{�](H��[^��9�Ǐ����X�t�7
V����g���u�jg��O*�˹`�-$�Q^��=���O��}*�#��_�$��Ěakd��h��"r+C�j���0#h}�����������������9�V���Kd�A�����kE]�z&���7�X9���s��GOյZ;�����T�E�T0T�/Wp��m��F��j�k��'�'�$Z.	���|l5U:*�ǫ�(D!>%	$��VGHLIL�U�A�T�n�^��K/\�uCL4403����y��/)QȜF�%8���Q,�zXS,h�b0J0K�H�ctt����CB�"�U�K�<���6mف�[��@3��$G�k���B�rƷ����Ǟ�2�2��z�������
�^�%�zݶ�b�eT+e��J����\�%ٵ���=7�P�7���0.�,�Ę�XG�jz9(�+���XB[+�ٷ��.;:C��2v�t�O�|k8�Ͼ�w;N�:�x�	�ͣ�����	�~�����:��K�=�򸇇�����ّY#�#3z2v�q�=B������A��a�cFODƒYWc��f�'��F\�qh��S��7�)ٗ/0�u�/���%�:y3'��(1].�B��i$1o�f[�zq�TF,Hl1�κ.]w%�f�i�O}���y�c�đ�JJړX0�3�Ӽ;�vu.s�kuL���C����/�l��S�%��HP��2�dU%��1�^�7n� ���V��u�T[
�{1���#$�hve\kVF���٘8�B�h�b��#_=`�PU��rMƗW���'�oZ��᪮Q"a�9v��]���˅�?5��-�k���	L�s��#����(�GK��&%��4,����nG�y�͊$1 I�|j�{�>��~��B;�)���}~��&G�"f��l#����%}"K��‚&�#%0#y�_&��7M*�jX�1Q�����%�xM����"���l���5��zC	��?��;���t��&�=�Kfu�G�N8&׻f��R��J)BQ�8==���g����&�8���Lp��!E�'�C�'��ꀌ@�y�����$j��
ϻ�}z/jK%,��*�[��c�%�X�&&ߵ,	��$�di0c�����؜G����)�.�͂V�w%��,I&嘤�Cr=�ٓd�fZ�T��s�D6�6�"ߓ��8c�i+}��}�������顾���"/0"2H��!'�IIΩ���l�nK���y$@�Nv.�[�Qȫ'"����.BǢ��*J�?P�Ku#7��~w�yR��%�Nz	6��D{tK�\���6!?��2949W����z��[RM�$�ɰjl��|��t���d\2N�ֽ�']��4I���
ehJ��jKL�EAblv��8��yN�f�D�:�ש��$zy��31>4�ɵkQ*�1����S���Ï��.B	&A���}���ӑ�<^惙I+��{�Ɩ��*�-�z��.	�^�j���A���VXQ$Uj�|�\�z�q鮍�10Yb�H�Ӿf�����D��yK�Wd��ɑ�R���n"���&zB���*����P봵˰��ta��S�@�!���%|$�tl~I�eJ����m!֪B��E�rʧ,�l��TG��0	�m2/�N�)��$u�X�J�,��`U �rA�ʞ�@UVǍV�F��r�����yw^���:d۵BRVs	&G�P)��Z{m�"ɔ�086�5�U���F�UÀ7j-�S[���KEȵL�߈�$�fX3:&�+	�b�k�8�?J�
�K�I�$Y����n֐�\�4�$����{cW+��h`�s)Dc��CI2(��h����V0THq�&�*U�ڊ��:hH��H�E��5�2���k�d?9��+T9h%Jb�%���w`zxxxxxx<Wp�a��	�h�T,�%��_S���0��,
��WK�^�X��t2��|:�V��#'#�D�YV�5؎�g�W�|i����2I{��rT�VQ�8��iL��q|h�~�R�Tb�E	Ww�D-R�����Rx��ɯ��LsF�fq���B	D%XC���
�2L3jgg�A�1#Y+�+݅��#����N� �%��EFCR�����$��n��k&�s�V���t�Ӛ�d�a���Mk$
t;5 Vw��:�$�65BZ�SK^�.�1:>���1y̩f�B@JT�,2s�JOP'�K�K�I�n�s�JJwEB����	L�s�U��5�j$q�.��J	�#!�j����
���p��i�\w�U'w�P�7���;��:�m(�X,є��b��������A��A���5�4hka�bL��X~'0�'ʨ��uku�<ÄT"ق��7'�"��f"c^�^���B>�{8oM!<�|�A��Q�,�162��v�مeT����K/�Ï<�q���ǐ�P�VVo��;���z
����^�'�P[\�r=���0=����6N-5��Q�kHr�F[���`L;���)��^Z&��;u��!�m�L�,����w�B�1�%s��	U�51G�+9+�rm�,�B�Ŷt��fj
M�ջ�ʡ
����Z�+��@-�G�`O^f�➕3����������w*.��Z��.c�Z�[_�r�����R
����Ξđ#��K<D���Pj=#0)ӡ��$�\����*���ie�虮&�,~3�M�/9~>�Sb��g�7���o��c��<ҼĊB��T��5R���B�M��M�$ӾbGhڭ�
j��`25"Pm �sh�X�b����Qi�d�'I^�9v^�&��)"k*!���u&1k��򻪧�+~�+�&�Ktxe�;w�܅���x�ѽ�(j!��ӑ��r��y��~v��xE�5Q
����jEz��Qg�L-e�36���M���X���9g�$Q#�C?O���]�����3���b����Q�I�s����N�8d���RK	̞���HR
ǚl&+J�Y��ȕ�l�$��������Y��w���|A�\;<��N��f�VSͮ$U�P�Zs�����,�z�bXD��,	��ɂ,=aU�L��9���+I�(	z;���B���j:���WC%IZ݋�<q�
�lZ��!!/��%9;7+ۖ4��j���شm�|�g�Y�'�&�x|?6lX��'N"W(�u�4��R�I�f�����U�;&�¾�cb�l�<�}BȒ	f�c0����c�	����o؁h�ʔ�
��%�ȩȫ�O��ܔť��-�8<���=I�Ч�	��Pժ\�\�ԕ���z��9x2F��E[��D&��X�uIⰳ5W@So	�:X�a���_�_���s�_��_��솿W߹���/�WNa�Z���!��5�j��?�Z!-;8|�>��[�[oC���b�$�;rΑ�R#��9u��"4c��s�aց�$+~�Vu�j�{��6DJ&|ܘĎ�mxp@b�"ˆ�d7%}��ݘ�ؚ1$8����*��'�8����#��TǑ��.�0\�ש���:S�Peس���I��y!Y�n�`�l,\���;S�%M�N�7q��A�����ؼ}'������/�އ����u��	M��4�yE�v5A����ځ�j긹/�&��cw�xS���.o��z�ݫ�e���6�U	_���46��D�"���u���M�S"}t�������������������9����]M�0��l�q��A��.={�!Dd�Ze:�UI
Q�J7�0�>\���ө#քF�Uݥ��U�a�C��l��v�X3%[�/͟�D����Y,��jp�c��q�z�--�X,h%u%_�`e@�ř੔r�
�zɦr�1��J�����%�P
�H��)�L-�9ӯ�n��*��a`pX�6!t7l،��c��"�XF0�����d��	��\L/Bc�N�[Dk6�8�N歌�Q����t��"��C���CLk1�I�I�#����W�|1�D�I}�:'V��>�r	e�?]��s˨�%��1T8WȩL,�;4C�ʅC�3��<�ah8��jxr�������Y���>z���t�pr���I����w�B׽�۶��s�z`f~Q��@h��4�R��4pV�&-K���7��L�S+�����>�yīM@�v[��)�yc�h��X��&TY
�qnC�Ӌ-��-Q=~�F�j'��*��I�
�hO��ؑ�+�i���<$��T�$�1�e�cwz6��ei�ve:�\}|�fޚ�7%\wj6U�e�΋�3����n����ޛ�4�׿���[-j��G���<g���U��g3���v�&&�K�QI�8q��MFW�AoK�]=�z����S�	m�Ֆ���)�3s[�9N�&E�QÑ}��˯���O`zxxxxxxxxxxxx�\���$N�Q�{�b��Y^�^RMP0�~5Z].	�BuI.0�R�-�O+�)횧d��n]J���T@�PA.�i�2�uR!��B�v�d�I4B�
Ur�(`� ,�@q�&+��X�()�$M[IU��OԳf����4�ԓ�ϋ� �����%��Y��b�fKΝjrgb�ݟ�]C����	9~���|���q��;����28�RYL�<����g�;�^Lj��aԓ<F.�J~0��`p���z#B�d.[s�(I���r���O�W@Ҝ�w��t��䢜��9l��<�{e�����r���%�J�ۨͷ��P���e%x�B�r�[B�R&�ɞ��V����rhB^��$��ep��F%xxxxxxxx<W��Y$��B�9!�$�)A���r�!�jwl���[p�_���Ls�NIl7�\����-*);�2�����iĚ��2�/IL�Uc�U\�h�J����
L�Ul�`���#S�\I�iI!��u����/��L'��ʼnNbVID�=�	�X��8
����c��;2�y��'_g�]�I��� �Χ3����1)i;>:�u���@N���>�0��E\y�e,iw,��q�n�W���n�R���E�_L],-cR%�)�ʮI����~'���'�D�����#f�8�ȼ��Q+
��Z�I�֚m:>
���'0=<<<<<<<<<<<<Ή�'Db��*�%�n�B	��^]M@�c'Q'M&�624���L�[MM�BH�e�`�:([�E�YG!��C�rL4
�l�{�P�K~^l��ję$�B|�4%���0:9$C�r��kJ�i���*��
)�'q����ZF]�n;��̘Ǣ�OmZ;��/�(�+�3;?+I����&F��^��_�G�W�&�Bnڶ[���<�#w��7m���9����$��s-T+e��ڲ��2O2��r���t� r2��!d�`� c�j�}T��B
ᆫ�c�ath��[X�EXj7��4W�i�w� 	������4�ٱ��to�r)��
��x�$I����x��Rf�z�nb�����+��U���D�S%ߌIS3Ka%�Q-D⢭�Cذs�J�SB�]��RA1�L7��#�����cWC��y�4M�<�U�ĺ&�K�[��g�l���P=&]�$	T����]�������C�NHJ��רeq�c����Q
�8�H�����q,I\�aga�@sF�2�}R�M���vE*��j�dć��uE��2�E�YY�_����ڒ�y��Љ�x�bJ�u��0���\!0Mַ�c�=u��H��2�}�^O�<�|�D����t��'�mdg͈_���	�,f!��r�^���@b�����O`zxxxxxxxxxxxx��,�C�V!�ba��TҎ�i�� Tv:�d��j��f�
�(��$*�ʅ}.ʻ�qh�z�RY�H� �mM)�����<����K��(X�$e����Q��#�-�s�*D�J����b�x�Jm?|L��9�lwc�"�t:*��0�I��1ILMMMcӦ��:y
�k��~tt333(�ʒ�i��lE���X*�Ѩ�𘐙�$x6nފ¶�����;���硺�<!-KZ���I!9�)�����9�8�O"?8�A������GP�A�C�.ٯ�Ĉ�E����o�W<�5��x�
(�|��>0��HLT19�qrX���E!n]�J&�R*iux*s	J��l��Jzv��XƮ���UM�xxxxxxxx<W��>ƌ9����5i6�QI�T�����(��msBօ��<�f���~�T�j���=�aE��/	4�)��᧲�@�۲.�H��u/"��I�H����o�`����^s`��1�؋\lN/�~��j��u��%��m��0��d�m��|��j�'���Mir�i�߄W��L)$�X�ԕXsxd��rτH��U�E�C�i�r��yKO��\���
���6h{�q<-#l�*�(��\D}B�ub���s����v��#4ѩ�+T�71�MJ송�J��������D��ĩ�S��.h��1�¸T���qh���$-��$jz��'�	QW.J"&�<i�$aո,���M�B~��Ub��"[�L�D�v�8Q��Q���$��_���=�uC23I���f2!�\����a'�(%
<��q�?2��Z[HCKhG���$.�B�R�v�� �����u��zb�~���"Ԗ�P,�qb�$v�܅�G��R@�USRw���Bv104�#��Ё�u�F�&�a�F�Gy�1y~m^G��`Q��c�8=eU�Vc��vX^}�8q�Z��r�e��Ɲ��Anl{��ܧ*a�$	�n�AO��T�U��7I�kr[:ǜ�XsL��.7�^
J}��8�ky7n���CUxxxxxxxx<g�<5܌%�����T=C-��"�0��L��zA�*#|�X(�(-v�犿#��竨2�i�u�ӯ��t��J�&�]D��s��te�c�L����!!d�Z�%�Ȱ�����JU�g}h��"�0�L��u�����q]��1N4Ŏ�B��ؑ��Ɨ�^?;��X�P��Xu>������X3>�7~�b��'��cǎ�u�;5���I�jnӾ�,V�����TM�
���Q^F@}=�:vG��H��]o��ю�$�?E�ĥ�<�=U]ح[�"Lh�oA�#�/�c�R�?G��|2<��������������qN�Z�l�O��%�Y�K��K{�B�ޖբIi�-4��0�r��	>�L>_�$�?�$0:�1e>&�jp��je�Vf'�C�%��Մ<���|�bK�P��r[L�B'�$ߪ�< ����)��^4�x�<t
O,��올�$�3�6�a���{#Bv���W
�Z�ϼ�|��iMq�����BZ�乼�g~~_r9�(��@<~�F�G�s�.*L�<��bN�`M~H��R.�\1� �d�:��[�hb�c�T�(˾��p��+pŮ�t�f<qt̛͆��Ccc(Vp�Y0�"�s
l[7�ɑQ$]��<��B,ʸ�=)�k��)ɲf�!���JR�.K�b����H�K�r+�\�a�FR���E��e!m=�᡾�$��Gԓ�b��������-�'�eG�.���)�sN�FH��K�h����\)駒�$�{�d\Y2.#ӳ|Vgxc&����*ÚZ\H;����$V#�\$��]���>�׶B4��,��"L��U*R'�J2R5OW��<�z	3c�i�}�T����F��,��_$-'h��`.��d�~����?�m�]��
�12P��+1J�PU�M)�k
�I��ߙ��y��p痿�5k��+��k_�j�{��U1D�dY0��t��H]����+��O�9lm�4tV�vֶd�v�-�U��
�S��%vϝ�|���y���4p��N	��T�!�kr�X����`dt�ߍ�	�'����y(��nW;,KBv���k��K����]�"��*�r��n�I
V�:M�bv9�4qҒ���(�/��T	ʼ�jwS�	L���\��ι��61!��H�`P���J�l�yN
)���y����D�E<v���nK&H^vYu=4�{���s����+�}�I�+�p��~\y��������f��b	��رc'�Uruyy	>�M��<�m؀�/�y!t��5���`��	�,M��G�c׮mؿ� �'&0==�����ݖ9�7�~���cEl];��:�^��
�;�ߣ�I�.ă�Z86���y�I!��]_K�_�M��$�J���o����
Ŭ��ɜ�
��3�7X��V[�9�$���r�����>���1\z��8r�6nX�ǧ4ٷe�f:|֯U�J�j@����n��e/�7��b�K5�ܹM�i���ؾ}�a>4<��gr�'O�µ�\�[��Kr�r�z�F��];w��������c���p��	9�M�yxxxxx|�B�:�M�)���&�ʯ|`DX|G+�O��Z%kEv���q�S_�4SI�'˙"�LO#0W	�ZW�|u�|&'��s��mAh>�����{$�b��i`2�Fޅ����
ܾ�J���}!�&˖�T;&��.M��u<�%8ҕw�#a�QUQV�Z���k����㑇�{�טj���sT�F�M1�~7#�z�<W*(���S8x��gu���L�k��98��5���K�)�uKf�=��i��=�i��\a����j1e���eY|��ǀ]�����ϰu��7���
M3�]�'�G�����SLWe�CQ����B!͖&BT���1�8�tc�9MP��[�r^�[m!/�D�F�zdZ��#Ֆ����V	��=!J������),�R�Sz���z�%%7M⚝cX?t�xt���R���K.Ee�:B���]���?��a��C=,���-l�Њk���Gќ=��6N�T��zX;H�K�OѪ�ON��n��%��"��F�0ڍ�J���p��A��-�11�{.�P�A&�zr}�{/v]p	�!4�4��B��;h^�r9�dA�+:
M��*q��9I]I&-�{�w������ ��e!')�{d��S�-,�X[]�fef�VӤφ�Q��smy��	��ν�a�
��yj��۷m�r���xH��q�z��AH̑�a|�/�w�����2��=�Q�Vp���T�Ճ�}�bdx�}�+x�u���{�W����Y�����cL�MM�����FC��o��K.�'?�9�[��x�B����������;��Kd��8��blI2���=UCH%�Ma���^��Z'䜏d�<��(\!�GB*Ӷ
}o���dV�.�s�$l��x �!�ѓ�"��%��9�
�5��K���l`�)Pw�g�S����:),T_�����*A8�\��g�F�ib�ٕ�z��H�ɸ���>њU_��[^�Xb�(W@֦jҫN�yZr����b��v�؆%��(=+���$~����DT���X���n��]����),ג�N�D�0��+T~O��i��{��uCGD�����.�	oޟ�ܛNb+�D��$��N���{Y������,�ǫ!��1���s�-!�z���e�(=���|N)�X�U��x�ʣ����A�nW�"5)X%sO墬:Z�$����񦜇��V�nR^m�~JP*�1:0����|��K�O?��7�q�I<xh�f[Ⱥ:ꭎ��ѦTl�BYr�c@qQyPI�֑�(��y���d{�<�Q����6f�-\}��|�N����B���;��qzz�_~1�����cll۶lAN�ٹy�:9-���r������8�+�p]��ܲu+}�~�ر���7Q(�!��T��w��vvnߴ�7��,I���\����)�*�B|�Sr����f��Y�Wa��Qϥ�	C��������:-M�U+Ej�J�Jhr���t{�=��-	y=66�?_|�BVd�*�Z?y�֯[k�B8��[@���e��V"rӦMB���r���k��mۄ�o�s��T�s�� %�mݢ7|�ȑ#X+�8��G݇K.�G��y�v)I�������SY�[L��$pta_��qh�q��>�q�ȭ%\��i!2yUY�c�<0}�X탙I����d1��})M�5N�Te�}:��q�	��%��Ü��i����Pͺ&y��vL�Yc&�^�.�f|���L����k��+ҩ�ؓ�HQ��a�yA��NJn�qUG����J�=2fd�n�(9���t�l>H"2����C�?MJ̟�x9u�v|"��E����������}�8�~J��%�v����&�w:��z(
�5�SR4uu[�H<FI\7�NjdxZțE��C�^�^S�[>-<��������������qNTdѽ^H���{�~�)l��Q�g�V�S��VҲ�<����4��$�r�)	���Ю�ʤ��I���t�'ЌJ�N��^3e!�����˰y�V�];�X��>�)\2��v��'��h��䉫��*���|	���b�F�|>��b�!��m�/?Q�ylvnuylr�������q������䤐P�x��ǰk�6,��0��5k�aݺ5Bh���k���� ֭�D��[�g�������O`f�$�F'��2�P���0>>��s-��!;h�>'g�P2N{r�z��11Z�kY@)��O��X�6�K
MX�2��r���˘B�֢7O^�.��4�m�ƆMr��nZSA����b��!Kc'���/|��B�xG$5�۽����^�|�>w)6yy&!���Oq6;������ے8%D�����m����������;����HUQ��\Ac��8�'�XA	.>N"L}iY���nHjD���˹nFƝ�
���X��U��Y�&�Fv�9J�)Gy9��缪�'+1�~�C�Y9�\�O��h5�eh�X3�V���3�b�v^���vZE�:{j� ���<�Z5P#�ʅ�#=�H
�:W][�96�F���c��gd��F��v�ڍZ������'���o�^;rSǏi���.�H;-��f�$���W��B3Gnꜩ��ɽ�T�9e|��p��0��ު8*�5K�^���hy�R�˼Er�B亁�ȩ��h����Vˑ�!�����	L�g�GOGG=qo�Uz�gJRƚ��$� `�q�\Py-󔌅�,h�#qU�V:�ۍf�a������$QJ4���Z�<Z��n��\��#B�NO�:j3'%a㮽Gpծ��	�Wo4�dų�����0�bU;%)�ԑqǭ�\�\e�-�
o�PD�-I�f�C���62�G��Ā\��p�6cU�rElܰs���K�����#ǰK��܋�5ؽs�&�O�����0q�F�R�qN&&7�9��=��;vcnv��
J�"��4�5,.�:�C�;<���9%�4T-at����\�U*[�Po��V�!I��<��h��e<6�Ɓcu�	,��X潜��ks�@	��2�'�ꨖ+2B �ul�;����ٞ����<OI�oe{�����]�aV���%�)h�K	P� ��#	FՐ@�DMA�P,h<[s*!�݂rTzaj'���d��I��x-��%4.f_7�5�N�=t�`�c�#獙��*�Ș���l��X�[l�]g"=�[�����yj�0{�$֯]��۷bi�&�������*�������1'�j?�F���c`��<��k��PY��a,�26�M�+Q�P�6��3�:;��M5�~������{q�UW��k�ǚ�ux@���|J�E_��#��h��[�Y�鞝��.���/�hH%��Z@�/�
��	�W�䭻.�P
L�6���+�Vr/y
�-�1H��{=w���>^>�)�	L�s��<�Z��裇�L��M#6�Qz�0��S�K0�ҳd�&�\V��^�d�$��j��Uu;I��R��]$L�gS��S�{����k�Is�H���J��P�}9����<~C��̗0�a\�ReL�hՖѫ-!)��I��<|RӱE�ŮBOQ1�mu034�
���OL�att�/�#[w`n��f��d�m��*bznK�M���b����$�$k�r
�5��m�~�fmI��«BHV��B�ѽb�͘�����<.D��q,՚�➉��\9��[��$�-�C��Q�\9_�\�DU$Dc�".��^�b+����<bI�L���,jr���R1��wJĶ�|�ک$t$�v՞uz�JB�ʕA�ξs#K����}��h�"��������Ƿ�$Q�7�Ibl�!�+����k�u�J�	��r��:�!13���}������X[]����4��Zàyi� 2����(�a���	��)��Z��X�|Փ8���ͯS��T����7�-�1m6m؀-�6� ��~:��F����!�Ҵ��uЯ��d�M�+��m�b�d��8oO�(#Cy� pa�k�.	�bE��q��i=24��SS�ۑ3�VwoU�6#z3�H��<w�?�Rew`xb]��1t��Zb��JS��0��u�N͘�n>tޚ��P"3�`D����}
���P���'0=<<<<<<<<<<<<ΉF��j��uk�$��C9�`mP�b'��f[䩒�*_ŮKJǪĖ�IE��
���RW��ŻR�I⤭(���"�.Z��&����9�P��%!S۝�Jz�z����3��z���>��H��ElܸN�`Y�0�E!`߯����۳d�ڝ�&wTFJ�
&Kބ{�}�7�Ŭ�~��p���",�c<1���H�7��LrDغq�Je��-,/.�{��
i�C�E_<�u���iWjY�r��s��4��SG5��QH�f�:\�1^r�صe�v���>/���c���a1�h)��X�
kרIc���ɽB#�܇n��
��7��@��������eE!H��}��:�O���X�/	�$,�����>��/�333QI:&�8���f;~s���S�ڵ;3;��.�xb�lټS'Oa��vX��/c׮B���رB��i���’�lNLL������[�jp�oK$��q)e`�uǸ��_��s��yF�O!�-�wyrn��]>ϸ55o�V�����{`f��G�k�<03��L6��>J�)�,S��,J���Hۅ$骼l����@Z80��؜磀mjE�����>�'��O�L�c�Z��عk~��G��Q���(2*)�x�Dq�ٖ���IKZF(��
]���k�v�NH�s��!���@�D��ɰF��id���a,���F���B������i6Ƕ	�Ԏ�UP1��Ҵ@�C�c��>�G7�~�g008�$v^���sŸ9��y[����ǂ�\ϼ0��5Τ�2�J�&7ۑ��a��k^B�i�	L�s�X��Bw��uX���M�Ҭ�47���QB9%K��
e!���H�(h�!S�����;6#Wu�d�<W,2�8B.BQ	'N� �����i����bǒ L�y��m��'$��
�XS���|7^}!�"���4%�ĤF���b����Ƈ�ʛ.�o�j	EIL-L�`Æ�Jr.-ֱg�f���ݣ�[*�E�0fn\2�Ӗ�Hk�~^�v��*�S��\�fL�P���&Y+;0yU*�0<<�c�����K^�{���Kv�d[*���f�v�j��ڄ�˕�w2X�P�6N����&r*�+[ �QMW��u��&뢼����%�Hz�#�%�(����q_>~n����j�u���뮻��W���ѣ����Б#�ſ�z���=&��E^��|��x�M7b�cO(��������ݧ�wL�V1=3+?w<����3����S/{�~Ϟ_�s�_>���
Ϻ�Jg�K���g��={�i�z,g�~��x*&28�wM�b�s�g!?�a�3{�����g��s���;�Ϻ!)	�3��8�o��UQD�9Wx�Lɽ�(�P;�<m`�vJ�%�d�;^vR����Xcl܃��\�1�����b4B��Jy#��$��B#�r��ơΕ�S��)ט��I��Nr��S%�AupH� r�����&�C��-�j
�R�I�����y.�����(�S4N���dX�k
��b�R���8���Jl���|\�U����=
C�i��+�,��J�>.�����F�9�\#0c��s֝����ܚ�	�H�qO�!
�Z��bY�08oT�I\Q'%��^�"+�~/�8���������������8'���8o�!�(G�������,�,A�j��O���wP.g�=Lv�	�Җd�@���m_���q]�Y8 b.�|)���1)@��	��{iq�j�IBI�|�%J�2A�$�&0$a�����z]!G���@��HȞK.إ����>�re��P�(��TI?^CQ浍[^t>���іlK�TE�R�m�h�Y��4����$�k4'���J�VS�ӓXXZ�+��%7��=Y,��*�-ێ�M`��}�@!2#v	��M��na.P�+J��Nf���M&�r��1&�o'V�4��Wٱ8pYQI:uB~Ś#o6d^$�E$&�� 
��Y�t]u`�72��)�P�ca~A^�U��\XXTr���y��Q%�٭�F�t� &�ay�}`���x|�ر}���lټ�v#cc����n�r��SB`�ܱ��xb�A|䣟V�c�^{�x�oĺ��]y��̇����>�E8tD���x�o���;�*+�$�
�ا���ǰ\o`b|7<�j�|��]z�qedH�VCU��j2|~~^�kF�lA��Ƨ>��u���U>22���F���.���,��'q�ɧ�j���xͫn9c��}�����=�C^��~�K�iӆ�<���S��G?���W��܁[^���g�!?���.�"%O�1��Е8�#��*��81�|W�����q�T��Į��L�g���f�/x��L~�g��}FGhڱN/F��O��'��+=����$F��H�H_�q�I?�nO��8��T�y9nF��4K�NP��N�$�`U��м9/�a��x��I�XN���7'�>��u��{ep
�Ҁ*xX��]!�cS\�Ʃ�7�Y�~�F��[��kK>�&cSg��I�RW�C=.b-���G2�u�fZK$�Aʣ�3##�)gXg,�^�;NɄ�J�Њylv{��&	���s����$�K;DFK�H�*��"�c�'������a�x�y�
H1Ҧ��*�e!Ob���v7QB1uݓ���%�Q���ԌURj�`��jB�5�	��<�ł�#�ʗ*���Q>�d�%�&���\kvI��I�z��ɼv'VŽ�u��@0Ov[n���2b�����]}h������BS��jwc�(	V�Z�>~_z	�۾A	֩S�삍��=4�9MbPb�nj���)�q$2O�^'O��=>���MX��d�K�G&NdVkG����ך�*F�r�p?��T2�X�,n˜I2)_��I��ݠr�ܗ�M���k.)�ё��vŁ��whޥL%�5@��n�yHV�4�F#�2e���*u漅���b�����_�F,شq�>�}�V���+.G�<��򕟉u��biyY��]����u�f��3�7�_����	�_�����{��=b���w���opˋ_��	���?~��'�~q|櫷���~��~�|���|�k�/��obff��k�O��}�3Z���?�_�w�OՍ�����������R�$9��|F��w��ťRQ%0�@����g�ԩij��+���I.��uTJe�L����{��9���03;�[�'?}��c���u��i�g�&������:q�O
����E/�Q̗��#A�~��|(�/�=x_��O߃��o�^��W:�i�=����?z����ѿ*���/>���7�~�Gp�B�o��Ӯ�3��U�x�۾ߔ `�Z����Ju�o$89�f���PA��g~�K��+-�/Ђ+#��S�θ��jL2�O�
��G})-��{�Z\�����c7��_����@UC���Y��v�)Ij��YG,�_�83vБm�#��1F�u�Ɖ�k��v�I�j�$�.-&5���P�U�Y�4��.灤{,�V�5#ZS�d[&˪z�TTz�jy\����\Üť}�����
	Y�kͣ�k��1��m��֙�ر�8�����v�N���˵0v�^8�ݘ����9I�@/q���α���082���4�0���i`�edm/�;�^�딍����cO�kǧ#�S����Zp7;f5�{�h�*C�
�ܮ'.����������������8'4q�Z�M�*!�I@ȯm%�d.	����M!Kݎv*6�\d�K�P����l�v�`,���n�dY/,k�A�ȇF�%����N^�����X�$��� 	����y4�b�	Y���h��<���aw%3J��
%�LI���ƞ��@��v�k&0-I��;��s(�=I"��h��˹1I�.�f}��yM.�\�J]�g�$�)[��O(I�05��4�d�|������q�1��eIL.����RR��F��_m���yfIU����քL�	���ԺBd�uL��ٙS��^��uk��#dp��DY��L�t� �uZ]T�eX6.Ъ�"�8%��V+�x&����~�����|��|��<<<�~��x����(���-���]!�����iw��
�<��?~>��O�E!oy��J&|�����?��?���������r��?O%��뮹�6n�7���~�_�G|���׿�M\�����w�K.�_~��g�ѣ��?���Ї?�z�����E�:9��x_t�����3��:���?��o���#X39�S���m�Dž>������zIy\z�ڭ���ǰ��}���ǿ�w���q��O���cnvvNe�s�2�g��7f�F:�ɻ�'�凕�$�s͕��'�}�=�2��"�4I�W���s}�3�����y0�]z��E<��è�g����:�o�g����)�I9��w�5X;�O�Oz!�}l�k���������[�l������]���_�S^w�Mox=����O|RU>��oz�A,,.⒋/�5W_��0�b1�v7"pxi&�1c��4�7�d�b��^0�-HMb5�X��F�b/%8]�e�bR+"�
�\�p���8��]o,�s��J,*�
�e�uI��	P�'Ej�����P�3�6��,ȥE��{$�B���PM�W<<�#Q�Y+Tb�p��e�IY��|KVy�*�+��%%UU�W;7e��dԑ�P��<%���F��NBUL�
biv����{��UUYW�`�N�׵S���٩NY�`E�d���^��a�ep��GʺY������^v��d��E�<��u�04I_z!G�`��x����O`zxxxxxxxxxxxx���f�1�ڃU!���v0�_�#�7vIư���p	�BNƱUV�%�016 	��6����9��;@���I�RWAR׮F?,We�@;B�2\v�V��c��Z;*��HQ�DFKH�Nj��<^�t1�K�x-�e����VGƑ*q����	�NW��
��d�c�^��'�I]t�e�X8&�b��%Je�*�ۨ����J�Z4��ք'�d��@[�$0"JW�`���J}�t�"��EM�tI��X\XFN��9M�-45�3އ�WN&O*��%IɤQ+�)��h1����&�(�[k���){�s˥�&�ة���n�ݕk��}mH›�]�[&ѺM&�Xm��%d=<<��Q[��=�+M^
�~�W�{��b7�;������a�������'?�w��H��_�EB�19����?�o1/$��|��g��|n��_�
G��Д����ٟ�Q�[b���/��T�t��Cعc�YF�b߾�TzzfnV	̋��b�%WI�iw��UW�У"��-[������ʐ����S'Ob��x�K_�~�#�LJjS�oܭr��1(�����<��g~�?�;�ġÇ������h�K�N�;�+^��˟�q��x�Td��>��OZ��|f��_��x��oT��]����w�W��W�[!
�'sX�1�W�9	!�����!*g����~�i��O񂛮ǚ5���$Nf�^����;z����rN��}O�С#r��q�h��|��c�^���d|=�G�$/�|��߅r��s�f|/y���J\?_�O~�OMM�;��.��(#���`��3r2տ��X�|f����H0�̻R�m���ӾT�
NJ�Tb��tq��h�"��-BO��%��D�� 2"Q�c���-�K��66��p/��e�7��s1��.�(�h�u^�
T����R���a����̢5�n^oQbߵ��[�����H�ԑ�JH�&�Ky։�!,mڄ���%���*Cۖ��ݎu�:��(���m��Q�
�	됏T�V�:p��^z>�g��f��ur�k��3RV�5e��{���Y'mh�+�K�Mt�2���
oEehX�vS�=�*0��|Zx�������������㜠�(���y���h�����Dž{��D�R�ȠJ�u�&�jm�/�@Q)B��5�êoVuG��lh"��
V���^'N�H\>�u[6a��&�#ee;ͮ�]���vZB��TB+M�
Z�x$Y��R�.��qV=�T+��X(��2Z���� ?��D%H9vA�`5|X��丒1)�-I��P�3i	qa`�,���,I�|Q�ݞʳEB��r�H���٘�h�#�9Q� $���u٧�Z��r�DoK=>k3s��9�X^�i�|"d����C	�$v�RHǶ$#[B.�#��WL�wnvV�2�r�N�-�}�E��j趁�	y�j��mT�k��+���Y>�RX$����|�y����D��|�6�a�{��땸�=�g�}oRB����1���'���K."�Bd=A��ډK���W���S��w�>!��d����x�+^�7Ю���{@�c����xL���c]'$�B�휲#i>F�]~.2���O�׭Ł���QL�� 	��۾�4�
���H��/<�����>r���<C�a�F�4�O?&��Qׯ�Ԯ٧;���>!��z���_xs�3��o�^��|b�!<��#J$s��P;�wv��x��^տo/y��q��?�;�W%����X}�+ފ���I��}�Cd���O�����۔��ܭ_0bʟ�#:���&q��Q!%O��{���^���	��s��|
	y~�]�T9a�6��(Hb�nAv+����3�IC����d�dX�U�B�D=sz�"��w���ԅJPf]��}d����\�\uσP��q�w16��8���,�zKB�l���L"֤h#����u��}"1q~�J��&��:KLk�ah��Y��걦���=iv*�XA�<��k�T#Y�;�MBDrN��,qD��r�L�9])0�ñ\�i�1%���s���v�v�9������Z��D�����[o2��]�Dh�v�/�>��m���FF�uϒ��98T^;`���*�����òNi
�YИڬ1R%������g�'0=<<<<��`�i�|��$��u���Y?�W�p�Lz�
�)�o�}6c�>y�T���Gx9��ew�|�g�͹ǜ�|;r�[<<�kKRsk��-�L�>Vo�L��������L�����h�B*6�ҘyͶ���|A%e�$��y&�0����]���r�dB!V/E�~�T9)&$���r�RI�MID̟8������%G�9#�
�m��K�&��B���ㅄhOMA�ݓ

�L*���(�[�D�Z�B���I
v�9����G���X�cu��kIҔ�IQ��Rb`E7;<�8=qjQ=
������Tz��n��f�VӤ�J}������AG;PI\
1�m�q�4&�������dw%	c��g�L�P�"m%>S�>�n�9�c'94RK�ʜ�c�
�\9�9r��2U�uƄ��)�S���OQ�y[I_I$	YM�_Vۇ�#����������	�u���R?�#GO`dd7�t��_�lT��"��˒���?�JOʯ=��J�~��_�ZA�_3<��#���oۂ'��֮��N�j���w�z]�]��:���]����:\��3C��ؾ}����_~ˋ�DÆ�����9O`��
۷o��-�/M?�ݷ��q�����O�&�Q)^{�R.�7��w�-TO	�׼�\uťȔ ps�_^�O[���#�3	L��>��ߍ��l�g%�ܽ{��cز�M7\'�}���=��o������gK�81S���+/���>��W�B�C���}����oz��0���)����Y^�Cx�w�Q��u��o����׼�*�LR��������y��b�1%��s�
׽Wp���]�*W�]��ʤZg�L�k�#�V�S���쵕I�j����l��&e�&F��h]�il���2oN)��3ƋA&�d��x�^����4sH�;Wo�f'��mF���Qrx
�=UTY-��{��(բ½�ߍc�b�yHlX�a_����|��2�d�8~��u�9��hGb�d���'�02�srޠ�~�(\��^#�Hh�y��6��_�g��	P��5��Ć�@2�.���A��2%ٮ#k��Șl{|�C�E��AY�T�?���|�����җoׅҞ�v�o>�1��E/���p��O���ҋ�n�Q��ԩS���{'~�A�1�*��o}�V��{|?>�m�!��7��4i�#G�᡽��/{��?����s\��>�q��䪫.��^������{�{P%�]s%>����b�r?V�+�c��X����������{tњ��z/~�x?"<��۴����r��)b��ȑ�ȦT��#���x�����.� ��Ƿ�������o���lڴ�����>R��M���~?>����]��ʿ�[o��,<�x�w�ظ�wT����?���{ޠ\�����<Yd?㿏��5�w���y��������A�-Iʝ�A��.��&FoIJ4��
�Q����P9'��|tB%�J|<T�L�t��9\-(I��p&NƆ�h4Cl�1��=1�B�U
�=ّǘt�7c��������I$/՚B�u�,d7F�T⭥�IҥP�T����o��l��n�7�%��J�R:�Q_֯�|��ʱ�g�g��3'�τG�j�����ɸjr&�Ē0�L45��L���U2�R*`y�f2d2���X�-%9Ҷ��]��~/Kh�:J [ګ'c�hB��a�<�H(S�*N�L���r�RAg‰R��\趏091��֍cU�B�%�J��3@��|j�������A�Ⱥ�y�}��?�3}vT�����A����$"��&;���C*�J<���z*f�lK�e��(�茏~�3r���x���ؘ{��d7�����-�ד��)6o��?����3λ�Tc��z>|X��XX\�Ŀ���ٹy��ݺy~�gRȌ��ݗ�����z�g��3)<��~����_�x��I*���t�@ڰn퓎�iӆ��M��u���)ds�q�Z�yO��\g��S����߸�nݒ]��'����[�S�yT���3����1����w�%&غek?��vO�Q���MY�m۶
���)`�ĸTX֯I�S@�
7jr��9aI��������쪾R$v̊�3j�+}�c��\���`�;OL�%Џ3��1�ѣ�q��n�S����vJ�b�sS��Ϻ,W��Xr�=�OJb������Yܝu_*!�'���'�_��D>��s��9���m&qh����vK~�.kh�y�:")��}Y^·����}$k�����6�e]��p|���X��]��[kTn�K\��8���k9/�T^V��uAbݫz�����o��"�H=B�~G�^����{Iox!|�roJS�E��������n��k�$gdE.��<�*�������˩T+�/+RIx��/��3��Kpb�$vnߊw��_j���|lvv33sB|�Õ����5%�W���܁�/�#��yd���KϷ�]�~\�U�ħ>��~T	.$�+�&�n~�'~�>7�f��g5��ٟ�1��?�S
�>.c��F��Pe#�LN�巼��-��u���~$�%0yɹ%����O�;vl�;�Z1Lb���SS�saw����}����!ė�z�Y�]{��3��?|7~��ߎ?"��+/�'>}���p���<�C{��є��|�TBg�������J������S
,�>�+���:���=/JP��|3����sB��y����	ϥ@�%�cF�G�i�[Y������QB�,�����w�W;x&׮��lj�z?�����|�_��J��ۄ���E��k�~L�x�ޏw�x��^��WǎM��w�B'��~��Z�ɿ���~'��عk���
��>��M?���׿�S��~��x��-P^����w��-���#L��A�������DIȮ-�	�(��ұ�&�]�\@�$X �]j_%+��a�#2[B��˒R]��i�zڽ�D/�3���ݼ�3ߜ�lS�'h�M�*�d$�I�ǁRN�&I��k'N�|��^��s�$��{�Ø���V��Dk���$T��v��&R���Ͽ��1;V����F��	Gq�]�쒤����5��bG(���#$1�/��M��.1I��9ݖ�-�k'y�"Ҽ��N��D��ǘ��H�P������<)}K�L&����ɞQ�J�ښTc�CB���2;d<���L��luwM��Ͳ��&�<9�h��1�R����ey��	)��	^%�9ֺ<DŽՆ�&�������T�-M�џ�9n��:���ϗ5՜�> ��<>�[q�e�M��ղ��B���?R���_�8�2-ƽK�
ߗ�э�X��Bb2������/�۟;c;��z�[y�~f�������������+��6�[)	kx���|`MȜ--�$�)�
�\�����e-���ׯ����k��䊑�h���r��M��ݗv��߻�n��xU��� j�[������'�����~�ߺ�3��:��{o����K�(9����="UӰ���ɴZ�\��V)J7�I%�E�q�#�z���-�����Ӻ/��Iҗ��mb�f(�LV��TJ��'&�$��)��,Kl�R�=�$e�\^;����~�����v"��L�>���,I�HKݮ�;}m��	2�3��L̻�ņ�7��8�2J��L��f&=KbV^k���Ʋĝm�R������!��6ts���3^�?wY�����[�m�:�X�M�?���YQB֊���\C�ݓ\wt闫���Ù�gV����e��E��en&p�g�u���F?\.�kE;t�=��{U^�ro��&=>����T�������G���C���}����W��
LL��o>�q�8g�+���_�$>��/	�u%������ib���= ��{ߨ^��G*	�9!G���$�2?��?�[��0�x�+^���}<�/~�v�[;��$�v
q������1��'~H�a�<O�3?��*	C�u�}n��ڧ�y��ӟ��ݏ�UJ�+_�w�Cb�n,��6��?�<&D����r��!�F����S������=~B;�͑cv?��+��O���ֿ��>Nޏ��~|�c�R��O~��Te�.�_/$�����ê��Wݏ��<|w|�n\u�Ex�^'c��s
���~����|��>L����������r��t�#��5B
�|'��.%��X�>x?��ޏ���8~�&�Y���?���W����|����X/�㓷�/��#���{q��Q!�T+�ϼ����M!�/�qL�=<<�}	��+�%8!	�!I�12\⭈0*��=/	�.��,��<
��$9�_�ю#! �`/�1J��)
陓��3��XQ�?$���$�(-U.�B����Y�R$QJ9�]���r��n �WN��k��WތW��FI&_��)�aBFHI&�:�>K2��,�����Ç��h.�ai��gS��-zN.�dj]�������`�Z�xgvvS'N�^� /	j���U�Y7%�u��5%$�	�I\Qo��B�٨�'=B;B�.H•�c�?�c�p�_bQ�;25��f�x\µ�Ey����Ֆ$i]�ΟI���yN��cn~Y�p�Y~���k�u�۔�w�<��A��x�C���������lj�S865�i=֒���Bx�	V����h�uɅ�����[^���7����h���ۏ~���k_}^��i|_��5���W�P	X�w�j���Yw�'?�y������w�ׯ�;��B��/�����x���,1GN�(�'�%�zǝO{�?��}�?{������5��/z�M�Ͽ���ޤg`'%ק�S�W�yFi�����0��Tb��&�Q�՟4�U��G���o��!�_��~�k��W�T��x�7�p��z�+__��ا���gMj5"2�{J���Լb#vر�/0�L�w��I��ɹ�s�L���z�T�R��3�ͺ�q�~���GhM���Vl�"���k�k*Y���9:�H��(B��u{G�f^_�5X%�kݪ,���n��2p����o֭E�!�5v�u:��s3��w���1ѱ�g^�<���0���f\|�Q���[�&��Ό@��cΝ܊E�,X4oӶ��
t�b�*�9�qX�l��{�AZ5�����vy�z�&�ϡ2���i��v����6�
�������@��L;�~��6n�k^u�Vo҃�ϬpjH�.��~�dA�ǏO���#v�U���>���:!���
�NJ������	Hʥ�peI�20b �i�z���/����ޏ���v��Z^ZV�,lc���?����8t�v#<7Ss�J�VϿ�;�e�^���|��C�5pbwdC����k��iǏ��qlU^҂+ޏ�n�V��(�J�[G��
$1��V��`んd���񲗾@+g?���`ǎm���=����p��줼zf���x�	LN��s5Y��[^"��-x�?^��5k��W�D�iB����є$vC��$�KB���I�#G�i�����~�(��򳟕���Kv�uD&�>X9N�%��D%����A�.n��A)ڏ~��ڑKO
�{]M��Rr)X���Ň,Pص��t���`q?+���QH��sU,u�$���`=�\/�i�rE�Kf�;�g�yC�\kN>������d	;.�YΎO����	DU��i�E����X̫v��gFXfwgL_�2v��c�y���~�BJ�:B�lR�5,�<k$�B&�J����K�{�]��Ϊ��ǞU�3Ģ�[�ie��º�a��	T��<��Ǎ&������k7���YO4Q���N�ך����BMI�L�B0��Q�!�D��xKT�:�Q��YE�<W-�E��$h����\���b>玭�<��K��'*#��4~%��OJ��]�������ƅ8||��|�Ko�88[�\v�E���f��u�����0~��K����'���M�{��������Sb��`wϟ�����?�3�׷o݌����|!����'�۳���h�6?s��?�dO/���w��}����#����c,-��w�7
xv�n�A�Z
ޛ�w�>���)�����'�%/:�xG�Q=Bl�{�͟��v�+*ͺY�~����O�:���z�**|�_��n|�<+��Dg��]���@m�{�E���Ǚ�a��I�Fֹ��dX���Jd��	=�ufA[?�|���ԑ��ф���
y�ӈ,T�,Q�x�mp+U2�g���q�ta�X�$��(��8��y8��.4�� 
N{�9�5p>b�+����^��VL��뺌����)�<15������\�E!���v.w^�B#Q9AF"�ybR���%��l�S�-�cS��sp]�69YL�6>��d�K�,P"R�Y�\n�.X�?�u�Bca�tL��.Tn���s�^��j1�4��%N5Ee���IU+`�x*x������\xFe����믻
[�lRy�R��/T9���!!E���?�V����/��-��\[�yI^{�B�4��Y/��x��V�]~�߄={vᣟ����k&p���=���O��,�1,�];�))Z�T���
^�����Z|�s��l�$��5��G?��~�k����4a��_�M7^�O|�V�U�=�@�r���܏�U��?���G��7bphH�]�����JŒP�\pŊc��a��;�O	��2�U�x	�L����.��C�i��L�$�v%`]#���������;u~)�y�F�(���Z�j���
�D�MYY�5	v���c�܏Q����T
�����\�5����k~�{��1��F�ҹ��������|]�s["��`G���[T2���K�~�+_�w��/�?�6=6��
�����~��r�~���&�{)��/>��{�0>:�`�/}���}I�fv/?��3�9MI��o�&���$?��2�JmIn�{J��DJE�s�uMh�$H0�Z_�|�J]�V&S�5�J�Jű����z�B���"!�([ʊh����:T�Q�'�yD�'>����td�������:|��;pr��va�bɑЪ�-��9
�Y�v�*����Ң����L@7ZmMlP�^�u��F�
|v��Z�-ɦ���N�a�Z���H�:�?Q�P�as�S�Z�b����i���LT�PX5;�&��
���e`V��33"�$�4�4�Dr7��(0��H�P�6]&��2�ny/x.�C�^L*MKo!K��Z���'J=<<��q�U�Ꭿ���Jb	KX/,,�m�(�B�V��?y��s�%�k9��P>�lb7�]�ܫ?����bY�f�������iқ*)��?�3�o��F���}彗*��ܭ��������s'�{�.}/���;e]xM�@���ϖ�p���Ub�	�7��Z�jHq���p�NM�=�hc355����mo���x��y*+�q�$����/����ߐ5�Zg�l����Gۯ�U�e\(9�����i��O�X%��}���/~�?�_t�#t����ǞG�����5}}�x��t~�{�:�:�kpNւS'O���k�1��<V@�I��䞑
�N�(T�Q���T:���:�U�5�{N/F�G�Ș(�Ý���"���^Q�'�RG�)��\��
�����e
RG��b��s"�M�K�ݞ�Y	+�3�����p��E�ax�Tq��R�Ƨ�m�ħ�VMJ6��T���]k�eE�y<���G��|���(<��5r�I��'�QeZ�B����C�F��A%9SWd��%�y�u����lx�'��ha����
�i}�ۼq����q�% �5Qu�\~�4~�5d=���R8p$q���ד�>�~2�;������?8.<�����!B\w�U�����
�_�7|׫�}@O8��ݛg��\~�ǯ�}��?�׊H�\,�y�F!���?�;��~�o~ҹv��I�MM�ā�%�T{�k ���)�G��k��oz�k��]w�=��gx?���?���̰�?�lۄ
���@;Ë�4>;��&H�������Kβ����%����G^p���� �o����q�{����lx���d��O����F_���dY��x�z�f��u�y9<<<�}���`���JAe\�$Po/�U�:<�	���I&PHƕ�hwbM�dRL�	0���(�V�j�%q
B�z�P�anɪ�Yq�(���<f��G5/	�z�%bBI��Tr�����M�.��
^����C�1���S�&�urݔ�,�K�Ǡ�+��,�%�M�vM$�H4R*�U�L^q����81[W2S=3]��r���$
�X?9*�(�9X)�o�$2��Zйa�'4!�����HI^�4��@�t���߈D�8ʥBڮH^�/Q���hJ����a�i�iR�	���^����=�2���0ْ�zN�I��U��ޖ��I�oWPr��>��������	����v�3%����\>�s�8�v�ɜR]��o{�vy�_��G��1���ku�Z����?�G>�}G���/�۟��$�>��������T��H^���d�`�c��λ��Z9�g?+����y>����zy���{U��/��5-���W�8v����䚩L���}��\��{��	Ǐ��?��y�V��̏k��CG�}B?_I�^vɅ��{vi�+��G�w�%��-o�£����q�=�a�[�[�F�P�x�״����V�
��ȧT����k�K�yΆB��g��G�c��mؽs�^�G?�I%vX����O��5�`x�!��|�w���^��~a��ݐ�W#�}%��߯*��LA���o7��=%�3�c|H�-g��|mZ#��fJ��Afq���idf�<�|,Ir��T��eiAu��������L�e�IU
#L�����.YҖZQ\��ܸ�&�J���O=$C7fd�_W�r����B�F��w��2����29�;�>qPޣ%���
ǖ�A�Z��tD��|%�kT���z%2?���et���tefd�R�n�e�nZ���:��'.�~��fA��g`x\�|��Wcai	����c�<�'�K��
�KV�����A��A�WG�^�������g�������rɑ��~P�������r�(���l���U��?��v�>艒��&G����!$q(��@��nS̊���Pݤgɠ^W�W鍉���F[0�N�BN;؅��g� wH.u14X��pώ툶L�*T	/�g�r$1�!��P��D�/)K�ޙp�إb$��Uo���׼���={q�m���iژW��f���Im�?&/J��"����V��$��@e�z�ϒ=:c���L,׺�\�Dw�%Œ��.Qʃ�Dl���vH$��`"�"㧴,�t&��:)3Ǯ��U��T��[i�y`����zׇx>�I0Y�%�2�&�d�n&]�hv���~�DU`�g�!:.���Π����M��?y�ʇ��?��۶�����,��K��~ߛ�P/��F��o��_����>m��u>����~���[���|�S�5@���O��/<i,��0����Z �u�
�㡇���)��巨72?�*�
���7oڤ��[�N%PY��D���|�������m_�]�o�t��ܬv�q���{�[��H�D���O`�-�~�wn�=��z|�ӟWoʏ}�s�����-O:�׽�_��y��~���������ӟ�;-�=yjF������{3�P������_�ڝ��7���2�8�.RW��?���o��>��������̦
�5=���k���焔����u�^p���)	�#����h64����%]���3��C|�"П�g3++����!�N��gm���i`��8uݐ�u�i���V��<YG抗��a9ggG�Ī�z��!�&c��-����%��8	�~���cjg�V�<�Q*�U�i�gbD_�%�$���Eփ��kH�59T�h�_}�+c���_���-,���5���8K���������tO��A``H��2i%ʲ,�^kw%�+��'[�'Y��Z˫��g�XڕDɢDP��0��s`&z��
Uu�Ω�n� 
`�}���ԩsn��>�����;����I�*�q�j���)\u�\���1m�Ԧ�!%�F6�$K�kͅGE�6d��w5�j�6�:vag��<t��/����7���#6l���:�a�-վ)C��p���*I�@`�"H��m�W)'���}�F]��z�����7ޜ�9���9������Ҡ��2n���bu���s,�&H�_��yZX��B_�z�G{‹#�K�U���tZ*Z�r�i]%�Z����;�c
Iug�Ϣ'g
Kw*�i���Ht�>��R�H�ow2MS;9���{ۍ��>�W�g���[ZӺJ��$ѻ�%��S�F4�N�s*ya���$mS��%�t�]�.�ES��g9���V��Y�
��A��r��#k�kZ��W[D-�*Y��q�ښ���4d���h?V��r_�oZ�[���$�(yjEA���ֈY��zJq!����h�V���]�_D�w1K|C�#�����?��
�*�gwY�x���u�&�PR�!r��ү��Ƃ��Qj*������7~���m[�V؝�7�&�"��"��+�~�v^}�f����,��竴�������E�͜�av����ÏXM��G_|!���US�~@�_|I�O��q�E�~�B�]�w�Z��]�C;��gI����/k	3�u���{U�J��~�w�?�ٟ\t�]���hya���ZE�!�U~��42Y�ܵ�^E���+�.�8xX�|-�S~�����=��T�d�Et)�ͺ�Ɨ�|�^+��y��>�ݐ��������6ͦ ���\�}�{Y�~�+477K�uq��[�\WIƏv��⏯��\ӵ4�ά�պ��f��kRMm*iY-�Q�L:
�ZM�ɵ����b�_��	�+Q�+�)h�d>.
G-s���J/����n$����q�~��\p֐x7����%�-IJ�P�)O�����nvPI����>��S��.���~� 8� �	�41q�:K��<gy~���G�'�5ܢ�i��A�鍃�e�I�Ҙ�V5c�FVkq�c䱰����F�J�}��P�"���S�U,ZmYIa
��&�C*Z/?���m�yt�Rwl�����Q��y�<�����Y��S�
�a|C�j�{�����U���K�j�V۩�j��C�ݶ?�YPf-��h$d��H�d]�^�t$��iTc0T&5(�C���T�`KMK�i��H�[��$�;ʥ�~^Z�F^ ��B��oY��f�I�Ӆ~�}^�����
�}g�wɅ��ѧ��4TV��RII[-�o��$B��TD�,�y�ZE�H?��j�h�(٧� N�4BR����
���⌬��Q��jD��E5Y4��FX�.r����^�Y�qx����6,t�%�Z�e����@��Vde����Db��һ�C�X�HO!��eX��4�2_a��v%�7:�{��#�-|/��{�iE����q�
�굉,���[����sw|YE��O���<z?��6ӆz�ẝ���^M2Yɖd�vN�/�Eb~���&��Y���kw^M_��ھ�BM%���-47?_E']�N�������<.�?�����{��|�Y��C�/8_KÈ����{���Y���������m���W��ܽ{�֧��\�mȼ->.�|�\�r�sw|�~Q�7mZO���Dk׬�z��1{׻n�?��ߢ�|�.�w�J�
��iI��jz�B"0��=�z�1'O�biz������ラ��߫�ܷo�F���/���],G��$!��$��kI���S.�D���K������z�"�-�Ү���t�2f;�^�M
I�����6�bD��P��Ȣ,� ���Z�F�i%����� �$���8�y���9�ڮ����C��Q���k��l�xS�2�P�3���4�����kF�|_E?:�z3^�k7�%�)�9�zl=�1���a�����X'�LNR%f��V��h��EsJW��Z<���2����M��W����4�q���K�50˺���W���%S��i��:�&pZ�8�ܼx��o�Z������Gx�FvG�,�.XH�j0���/u�`�۲?��~�����zKҜ�P���X�;��|Nv�s)����b��.ջ㥆�`��ŀٹ�	D"]0Y`��	�H�\�(E��$b��BL�;B�֭���}چD�����F;�����Q�-���-͘�J\X�2Y(�ލlR�N#B5�Q�dXȑ(Ϝ��
���,�9K�.�J�:K�ʂ���TSEn�/��ʖy��>��,�J���(Â��B��N"���TSt�]�N��S�ݍ/i�J��)����,‚�׾�TY�����IjJ~�|�5�71>A~
���߶U?��>��/��b���������_=�u�c�kHW���}-�7����WB�:xD#���J�;zob�}���?�5�AjV�p�����v�����Wi����6���v�{��׭���:�zÆ����z���~/G�7��p�i.��A#��9��.���!�]�XDf��,}�&�
+���c�%D/��u�ܐ��[��67!�z�򈴣���ua+�����M�?ג�r��	�zW2e$�E/�R��_/)bS��ctd�
)7�i�̪gi׍�MR�ظ���i�`m���|�/7
�4CH�)e��AFvF�h�*^g�|��\��4��J�0����UCTV"S�_Z��Kbz[�W�vҾi�(^��ymgW������9�&H�fh!O�,C���-��Ǚ�6�i��x]��9j7/�[�򔿝�����N�(�x# "0O&�WE$�‚�@�t�-](�'�K���p">s��mfw.�BΘD���;‡}�33�m�]�uz'�-*�*(z&KfI��m�A$��cmJ3���8����G��Nj�\$:93O�</��5�s��t��)�C���1��u�J���J�[�/5�l�G����ʹ��m���X��9��%�+a���-�X�X�j�4E���~���7^�hs{�v��%�������-��.�gѢ��#5�l1Nֽ��>P��D��
�k���*�
JM�
[�kI�� D�z]KC�,N�^G����}�Ћ/�D7^��.��}�{���� ���$�k)�^nnSi��N�K[��u���m�Sr�Z�ό\-����bYI�(2QSĦVA�$���5�;-g)aC�M�Z��V̎!��|-����#�@�p��f4
'
Λ����(�&�\R	O��NvR"q%��Kc�2>y���Z|�ا!_ Zl���c�����wS��#�lX�keKOKUc����?��%%$�k�e
��M��MB���W� _���3�����ə�zo�eIf�5��V"dMJ9M��� EI��X�B�5�Ҥ/U����@`Xv<H{���v\J+���l)�pT?�\��n���^�g5�������R�^Ꝉ�k'>v��i�����\8=zL�7����x�UR��_���9á������9��m�����C�f�j�ZK���,�̑��3�<GW\��V�Z���wU��3�5����+yY������;���s��l�����j�\Jz���/�C<ւ.,�w�6۲�X�d���}饣��@�7o�?�"�!�jZ���/���p��Ǯ]t�e��|�	]^��AK���/N����t�n�`?"r�X1Q�d�1l����x��I�J{]���^��[�,����q���#�<����c��c��M��r��ύ�"�:� ���M��#rw1��-����42�b���g�'�Pĝ,)�h�Y
]����J�� �:���2-��N'�_�mw�;�=!��Fida�F�r�|��.�A�G$�l��M�gDT�5���EY��zA���a�4ORK�M+i�k�w�����'�~�~t���Zc2,8Y��&�a������:�Z��B�\ko���u��9�E�R��X\vi~n�����<�Dlf�R#�we��v��*I�]����Dn&VI�����]=,��BL�w�lAE�id�Tn�ڧ>�Mڧp'��h�$,�X����PKI_I��:z�V�M��a��J��~�G��R7��kP�I��Qr�j'��f�D.��:z�\}I
\�/.�bޅ���w�J��n�箪���R�Y=�B�^̅Lr�@��Rk�K������=T��m�դ漠�L���2D~��M��v\�Bյl�O��Ƅ��^��Y;�p�
�k���Rފ���^Wҫ���v���-:q��#�y�?o���M]L�����!��в��2U�'��Q#˼��yN��Q�Z/�e������j:�m�zYIJl'��/��`Ooe&$I�f�:��������ʐ�D�����&�e�ɧ��[�N�◾¢����GFF�c����vY�f-�ٻ�ֱy~�}�D������US+���_<K�/�H���џе�줃�ѥ�l�cǎ���y�u�г���Z$ׯ��33��i�9�`�E�{�^�q饼P�@��ܝ��e���$�{���w�����/0�i˖�t��W�=��K\p>]t���olt�.�l=��s��(��;~�.�m�x�0"|�a=�M7^O�?�^ȼ��f0��/��y�6nXO����A����k�bg�x�'��{/}�o>CS����i�;���N��؉��������/�y�"��XD����SK���n���z�.��"�;�s"R�0���yW��z�R�=·���!�T7�Xv_��9??ߘ�)�����S���i��ZA���Z���'�ԯw^}U��Q��Ky>v�ؘ�DZ��%�}<@3'g��u�g���;�y�=�0�y>6�_��'�b}���}H�e���{��gu\�x{Æ
�:qa1|ͪ�z�"�x��C~�&&&��cǏ�%۷�맞�gh;χ<�1���_���߬m�ڵ�_��U��1�|�a>^��z=���/�$ݸi��U��˵���|L�I]��<c2W���ݴy�F�Yq�f�j�����K���$���%b\��g��>�ϊ�6_ػ_k�ğ�j>�� �q��[O��j�H}Hɮ4�����uAA�g�v�e�̢$�[4"7I�	�/Y�;�E�ɝ�e��=��U�Z3���2��X�hc1791���"Jb�@IY��`r;�K1�U�C�Kj9�⇧c뤴��+i��������w����ai�’��ŝ���	�dKK��\\�(���X'I�*�9�
����i�j�+�Q�����Y�kzY��^��%eX�3^���
/BT���Uw�KX9/��>D}R�SF�TR{
-M�����[xK$ŭ,�H�Ж�EKbf�J�f"��-$�%j`x{��ާ��j&X��
���\Cɵg���z6/}�n?	�R��x��ʵRIv��h:�v!�az��s��´���������W�r���4HS﬍$F�T�4��ܨ���������Z۲��a��1���z]��)m]C��B�Y�?������v<٪۱�"�JҐ�ՇL$r}y�E��:��z�	�F�Mq��I����j��:Z�6�x:Z<��[�
k*a���$�x�v�X�T���k�~�SYKK��׹i#��lTUlǴ�IHE,���
��$�
�9�m��E�Cov����m)���pHw�t��[5-ٓO?�Q�"
%�O<�2�I���H�Q��e!
O�����z�P'"��g��v��8/T�x�u*!���w�>���_�?���:��O�8Y��"�4�D�p�z��9U��/̳��^�FE�It�ƍ��_����{~�^�F�wݵײ{�e�s���z��s���iz�-7�x!zrf�.g���;�R*�J:$RJ����={��c�7�Tmx�(�׏���/}��mݪQ("�^8pH#ds^t}��'�i�Gװ|����,$Kd�c�=��2;?�x2�<����y[6ъ�1�q�e,��j��yQS�X�B�I�hvfN����?A�֮Ӌ�^=>v���-�"�<L#2<W�,�킎h��)�"Wo��:����>~݈?�|H
!�왛���|�^����F����#,ή���qm�TiH����X��޽[ە;'E�FQ�l�8[T>��.~
�c�}���#?�?"%�T�Gα;�Q�)`��-����7�L{Y8
��!bSD�̇ԇ��;�o����x�$�H^�2���C��D0�|�X4<��!�O9����X�_ǟ�.��
7\K_��ط��V���[n�]��{�z?�1�?��U���4�R�0�����s+�7�C���w�����/��cx{�t�'N?F'�wP9\��v�R���#�֬[A�֯���1���Ǻz���Fx/%*�"�$M�����^V\Jc,��'y�����YN]�����ֱ�;���27�@s��K���,�_�4z�����K~�9��]����&�����R�J���>���x���p���.<�>.\Y*YK���v�)���&05b�Lta���r�������C�R��hHm�)�U�1�
�1�:��@�rR?�e�?��%���mMqV�!Z�Q����bLiww�Q�W�2/�[���4h��&q��iTA���{�|/s#�r��R+�1�['FR�ynd!/�S����� I|R���V�1�,�O2x�ߧzә^%�5Q�W�f;�QN���E���+5��[��jC:g�c����>U�]�^��D����k�F��?���׌)>�Y�E�&M4���wnL�S�Z�$���L+w�6��u�뛔D�u����Fd&VS>&��E�8::��3+L�I6&�/�t���8s�D#����~
��ӯ�p>F���� ����U��.Ei��qQ@'.^c�8FiZ�H��ב��v]���r��I鈬Ej��4Uj��!�U@&�eg����ӂ�̒H�x7�D;^tх�0��6K��+Wi
�N�͋�c��C����B�V�^�$�>vӦ�a'RMĠ�-,�n��z�c%w�}��z���}����O]�J#�Z,V�1��Cꊐsv֩@IӮ��y��W�`9�_�Դ?��k_E��c��C.v�Y�}�n�;�"���Z�\�D
^z�%m6�BSظq�
�p�r���>K�����\�9����_�G��~���>���`�6�M"47nܢ�=^�]���1�i_t���~�|ȵ�̇�7χ�G�W���,~���c�x���喜�~�4���W'Q��>����qVj*YY$�z[�RY�W�v��u���~�{��TI�y>�i-6��qM�*��ྮ�}<w�v��8o����n:��!�"�d��5���9JZ��DҦ^z�v=ƽ_���b����y�M���{����A�&�0�����<��JF�ynP9i?�Ze��V�����?2VW�$��	��1%�7�|H��j>X8�|�xLc���c���>K��X�f���a>�����?l�<��Vh����F�����!Ǔ�Ly!Ź�`�H�6�5j�I5�}�yW��/�/x{���u+'(����HQ�;k�Â�Ֆ�K�X�ݚ���z�)��]�P�(��ʑ�D��x��BJᴖc�2�y���D-�>r3�f9�NwD�~I����t�w��֛)IM;���!����2;�������B_��m�� Yl�:���v��V��?��z7���T�pt�'��^�TS^O�.vZO��|�!�a'řh;rǽ׺���USS������������Y��x�T`�0"�Sj��T�؝�r�r�2�]��J�摤��9Q)R�J�.�qs�\j}&<6�.�H��E�v��w���Xo����Ic0�L\rM�����{jic%�G�le��J�83����{���2��F�"1���Y�Gn,k�C��6�3�Y��5�KK��BS
1�eL[JRO>g�i�h�>z
i�LK!��5vXMk�G�Ҹ�]{;_����N7Ԃ�P�J��K�j���s�U)[���Tּ�o�4��h4d�z���hrr�"0�m��v]G��/�HƘv6���Q������>f"Jî�eQ���v�\�Z�z����d��Dj5���T�r�\��� =���삠����*@`XvD^
�&��wܼ�����,�~Iz���l�\�2<kr����U��`�&H�`�K/]Ԯ�Ad�|Dd!O"��m=�^����{k��g۶n{��X҇�֭[_��Y4W\q�~�����d��w���T^�W:�,z���Ł����ڪ��HV��[ŢIg�����yK�z���g�~���̇Dt6���|����v[���K/я�UW^?�|l;�|\��q�·_�ͥ�m�|3����n�a�sQ)����A��%c�.�)󱖿��s�P�����[m�_��Ǚ�9F͟���ϯy�MN��!��S3�A*�������_���൳n�6��}�N��~o��
��j9����lI�T����.Pi�IHl�R��P	�k����"m��HR��c�%%���ٔ:8y�c���!��w������z�r��9�攻�Ex���`u.��}����c'���0"ۥ��&��fR��X�����-�[�$.��<IL��li\�bQ�qIV�SS�QX+,͘3!�q�!���m�E���[��p��~��|���Ý��+�C���|�'&��Z�Y]�ݡ�^_��{冷~�/���S��A��*�N�%7��u[H�*לZ:@������xKR�Ց��)שiRI4�0�Iu}�O�We�QIG�zG�	����5�zL-�N�)�uM�/HQ�H����:-e�q��̤���_�H�vj�YӐj7֧� �~r�Z�y�-�ԓO�uf�$�Ƥ�m�4�.̗^��
�z_R��Z��!|��I/��
e����I�Wut髒N������A���#>j�F��ǿ	�F���b�K1��Q�:eE�+�	�maݺ5�~��Eo�"�)/�(r�!r�y��v 0��.:[�L֭]�K�'��l�J˅�mw:��Vc��n:k��4?����mY��N��x���������I����zF"�~�:��n�ݦV�Z��T$YKox3y(��n��&Y�C˜�.��d��)Ԙ\�[Zs21q)7�Aj�<tz�|/5.Kou�U�����q��,$�i�fK�O,7j��VZ@���I�nQ�ŨD���n�1*Q�Q8����9��1
UM�Aޒ�p���ӱ������АZ7d�c�حS�{�p�c�/Fcڸ�u%]��q�-
��[�ᬍ…q�d����Gj�_��ղAjF��;C��Q�2�ڔJi�0"I�N���W50�	�6��[�����±ꋶ�ᵶ���!���x{���[#��E��O�km�W�o�\���nŋϹ%�/�ч�����}MM,�·лAn�+D�YE��>f%fr��&.so�8bV�*i�ј���R�uc4f���\�i^��Q�i�Ry��D�Iv�>�C�k���>��--�����&!���A�*��E#�L%!��U)o����,�f��E)]�\��A�*Ѩ��A��so��`Ǻ�ffg�L��e
��A�z9�/-
4�M�+Q]�3�#)C�O�x'�"k�h�2E�f'�sp�}̉+�%)�FgZeFѩ�T(!ڵT����?Cz�([�E�X���R��Z/4Q]E��X�x% 0�	8�5��3��E�|>r�����O����Z�O��I-"��ȣ���r���y^]ؾe�}�Z.<�A�Fi�h�ݽ{��R���zz���k�O��_�����f_e{���矯κ�]���
�v��}���ÏP}�[G��=��]������(���>�}k��Ï<J�·p�����߽�j���ԩS�q���8��2�)�m�^ڕ��G�W^�0&z_�{+��j]�k!�|;~��O�\��a�!�f�!����gcP��i���H5q��_�����s/k�(�|����3���?H�����p��7��/������ĿU��z?M��{ҎJ�E��K�t�1-���O�
K;ZG�Q�ͯ�$�~�ԃ�(ː�L<��lU	IV�S"<[mIu�4RR�0eÁ�Mu*͢L�(cj�p>z�2�4�&��!�����&�z�jCj֐����(}j�I�*����6l��w\N�B�b�լ�z����zl�R�o�6k³���R��9GQ��%�=�/�fW���-�&Q��Ǥ�}+�ԻeL0�K!��_A �u�Q*�����Eb)}c�Z=o���fU
Zpf�B���廿�w_�[�s��є��㢋.�C�ӱc�iӦ�4::J�?��fYvn޸�^<zT�^}Օ,����9:��QӴ��<�(��q)���拣<tD�@۶m?~�FF�t��qzϻo�c�swh]�cǎѽ��O�����hjj�����>G����_|y�%Z�j�y���.mڼ�|�!��?ςGR�r�"�!_x��O�q��Ж-��(��H�M|/�y��ecc#�oW����b��j��xz���h���KG�������E]�����������s�GuLN��*�33�|�a>�m�x\k{�d�$i�Nͨ����/8@�ca>ީw�}��2;U�=���Z�`��PR�^u�$=��Ct���%�/���V�����f~��>�v���;GFF�\�6�j["0�l٢�|���h��4=}R�,�V/b����ks7�ٳ�-��xR%�	~:|X�%u'��������ϯ��a>��B�_�#<G�u~������ʽ��o��ܮ�|���<��)�r���!BQ�c߾�42:�?��&Zǯ�?���j
Ny����8㚾��+�����%�C}���������G\�?�?�$�<nW!-�w���������ɧ�֟��{�іM�x�i��X�z��Z���O\����3��S_���o��p��fݘ��YY��J6��w��Bt&E4
˾�_U)�,�Z�>ѿ���F����*"/q����Ư����5������X��<�/�i�[�(�D��0�DlJ�]�z��"�TP��G�k�^�Tɖ��E��V��B*WM����q�HS�1�2α���j�Z���I��1l.���|�ա����:U�ʽ���Ī�� 5RR�Xڊя�?U]�Po�B�E�6�c��c	�0e<m
F�2����q��$ڶ�l�1eCۦ�j`�Z��R�z�޹�I��k�yG�*t.���7#��7����H��K/�������5,�DX�ԛaa�׈0OG��	���sZ�ojrRې��믽�&�{I� �P.�Y������z�JZ�v-������a�%fŊ4����D���v�4�ω�D]̲����6��"Ķog��"Uؽg�^܈,�w��ё#G�x"�6l\O�v�E�Q�kXЈd:�Rha~���z'ͳ���r-"�G��[wa�x|X�^s�~-Bq��{�|��xZ�z�w��GĕH��8|�u�u;y�&ul>>��:���իhϻH�6_(�����X�n��ͅ�ȓ<w�t�W�\���eᵝے(ܫ����r����BSD��}{��<�/���L���#/j��������1��VN�,��He9�%�\��"�
�7o�x+�x������q����1Z�r5���ÔF%�I�����6�n�\�C��2�x�v�5:���t�%��ˉ�|�ṅ��H��,�E^�^p����C�_S<��V��~J��������n՟�^oP�|��vi���|�~��+/��~���-�z�v��χH�Y~��|�y�|�|.�ϖܵ)�7䵶��@����$o��rc��t.mDә�������H��TŢP#��2iT��a��^�q��T�Du�چt��f����D�a!�f!r�L�IР�n��5�̊e�t,,"�n�5�˭�պ:Ek�H4�hc��&�WKZe�N�o�l�6E��A~j���W��5�1�5��C"�˸�Cuil%��jl�~�Q���墵�E��ΑJc9]�C��P�2(�8�e5�R��Z����±�f�i%�#�Hl�x��U�A&�e��+�PQu�
ש�[���W��%օ^@kV����6��}�U�<��3�)W�/�P���q�^T
���>A�m٢��2�^���Rv�ݻ�6nڨѐ��dA'�xr�&�J�9�C�u���������=�~��u�J�c,���v����v\J��z^#F��_x���vMu)��ȋ/�8�&�"�d_��hG������D(.,����'*Q�f�����~�p�5tjf�%T��=��:��[�C�������4�R>WA䓈�z>r� ���7�b�2~\��d̥m�2�����@�Q�l�R�a(�r�*2KX1>�ђ�����>mG��H����d$Jsb|\#j��۹�"6/�HZ������U�nf�&b<�i�6ݽ{]q�ezY�G���o�|����ǟ��/�T��K|yM=��St����y"��|H�þ�/��("^�-Qg(PI��(�J���z>�x�m��tG"��Yҕ��q����h����������v�e�Ϋ��~>$�7·�����|^;詧��m叭y�͟���ڒ������{u>�g��"�ŗ^��Y�-�M�r��09eu�֓,C�
C��?R�ʚ��
��J�vfQ�}W�����V"��_IL�"�Q�B�ʬ���jaB��Z�1�P������b]�LӒ奔�iSK��K�,C
X���N�F&v�&BS�x��6�S����iby�Mһ��٘x]K0)*_
�.o�y���L"YK_�Z��J��=�D��~��ւO�v2~���a얪�*�2�M�2�&/��Eوr����P�T�Qq���N(��
�I�E�n�F�ƹ�׃Fj�z��FT�f���.
��	����i:ࢴHM��@`Xv֮]���hjr�ۡ&&Vh�W��.Gք���������yӦj�hk��ڵj�����Z��6���k�w�S1lݢ�nc�I�E����u�uk�V����G����jU�+�W���%�N��OyL��(�����{��*���������mbbb�|�W��mW���.Q���r5d>"�.�n����_ϫ��k�lo�IĬ�u�y�!�r�M�y]c�(�E�F�kߘ��UY�z>�9���u��[G�����^ĸ���+.'ZTվ^<�W�;�~N^��Qc��|Ӎ�����y����z����ac�����6nXO͟����q�sc�O��c�χ|g�wr�.l۶����H&�A�BM�d�R�&�F.jԣ��d�&Y�$�ЅT�Q4���[���P��S�si3�ѕD�e��QdZzV�lt"WU�Iz�\#+�C�2� @E��֞f>�&%2��q��:�!M�D�JZS��y�C/-�+iME�/CT�KR�އ5�wN�)w�W�)їҽ�kq?����8�>�U��~��d�f���mu����٪�b���D��nI$����C���6�,R�㢩^%M�J�\�I�sb�y�e��yg*2E
���U��I��򱫘OS��{"��pi/�Z:]��i#r�b�B���{��K;�ׯ��+��{�vO�q����Wۦ~���+��t�p����u��ѫ�י��L�x�9\�
�&�='�r�Yݚw�c�U�ژ������q��_��G�Z�Hg����D�ڝ�q>^�k�ڑ�+"'%"Q26��ș�%�e�2�&RkȦr8��b
�>V���g{}�è"1q*���:��F].���!����-,bH�b��$�cI�4ūJV��T�	L�ob�J7��Tkr�l��{�!�Q���H�4�m���X#�Y-ɐ.ׅ��c=��!	�.T���>�I��4�!�l��x���A"����m�[[(��ό�IO�I��՘Y�c�i=>�z٢�l,��r�J��,�μ�D8W���9ȇ����̯̏wa+��PP3F�J�K���;-�$��<���2c�-����	L����7ibQ�j�J�Dk�h҈�RSĊ��ڙ��&�Ke^�j�)�	d�F���4�VQh��}),>'��6�-Ko+VKҖJ�$�Q:��%VgQę�Y�X>Ш˼R�5i���
V�����g�b��Z�Ԫex\�;�Q�٩�z>��G��l� &ml�9�:����5kh��5����ju�:�N���Ln�C��w�>A�V���t��6��h�X�3Dl.Ŝa���#c�l�Tdg-
�QAji{%��̅D�Jd�� V_��Lj�X{��g���G5������~q:a�r 0pN �Rj8X������YjW����� ,�|TQ�)[-�)oJE>��,��X�H���-�S��B6~�I"�DF����"*���)��(�,?[�o�@��@���X��,�}L��SY����,1�99NY�-�s��.FiZĦ|�d2/�+�2K,���L��q�q0�YȦ�iw(�5�U�aM趒*ׇ�7�A5M�h�
a�����.�������FSRņ�U�(�2i��Ե�H\>O��4ə�sIt���)rҹJ���l��
�&�s�R/4F�:d�zE 0pN �Id�ȫ\�ò������0e9)�x~�"%����e*�Ґ.��NE�I
��Ԩ̥Z*F	.�T��3n?��H�g+K�ԯ�P��˿��=?7�rl�_[�X�p���6�J	�T�Dt���Յ�]�r������ą�2.�p5A�z뫦G��|5ְL�dLC>ׁ��Έ�e&S�pb�Q"]��I�Pϒ¸�27U�d�f��� Rɞ����Z��8�2G"�Sm�ڭd�[�i�,M^kQQ��的v!�2#
�"
d�!�[Jb�Z���W�"��V�eaK#o̅�:S�~_ka��L-�N�%zP���,��*U��ڗC�KT%����}#�)��ko�)��Δ�D���KYLJ���HWkE��h�7�:�e��iL��E:I?�a�e�Y�d�3H^�N%�0ͪhB�J� �d�:
��BJ�L��X����k�[��S���۝qZ�qm�q�~�ކ�K�u:�J�Z�e�4DqR��iu8IEa��"ec=�8�*�}5��5�ϿD��@�AS�_��R�ƨT���X��wa5R�x޶�וF�FʯM1��m��\��ZC�+��9��,�<$W��ز\���
�cR�R$�B�<����1�HB��(L�z"�
�k�V�d��<[|\���L��w԰�����BƔei��s��U���03Cŀ�`��X�r��:�܏�F:�V�Rtjj�]i)c�\��y9�>KD�"�U�f�53U�jta�S9�Z�X�s�"1F�����ɼBkn�:G����sO=�rsD�p��:�.���vL†T�	�p��)��UigE��$봮MQ��BZ\��J�Ziq�U�[�R-C��|hZؖ�����R��1�^
K�X)������L���o�/��z����@`� �*�vcˢɧaY��S��j4��Il�EJ$�ԁdG)������I��U���0�A���RU�!��uM�jk1�EA3�zl���n�z߷~]y�tr�G��1S{�3�"(�-�.]u&c?�ڪ��YK�
[�eH;[�~�V���,�>������De�Z�:W��Y��*T���!
�����*X�b>�[�>w%Sei���ÈT�7�����������T�������Ԕ���A�4�1�.?���|��*�}��k*\�����J��Kz޶���L56���322Fù�(��u�|E 0pn�L�ī#L2�P,5j҃��j��U�_K�D?,��﫼�XfZSҤ]�Q���u�m��"�J�Q�DZ�e�:5t�Ȥ�Doz�-�K�B���퉨P7mQ{l��]x	�U8j�I>�Е*��ߜe�pP��"ѻ��V�ѢF3>��U��9K?k�4
��sM���$oѢ�jzt���:����V_��l��Gnk��u�?rD�9?;]ES�ĔLѠ�X�?Fhj���i�RR���B*]u�*nc�̆)�B�T��>d)f��N냬�m%ϰ�K_��!+�mM%신P�NgC2���|���Ґz�U?��A
L��Z.�C*5���%M,�D^F'&bra�G󽞦>�-,P>�W)Z�>f�iF�˼ڛU������Շ�[aF�"�4�lH!+юC�z�kOi�k.��X�Q�iYjM�2�4�"�<��KҳF�JvXM�K��T"*���0T����5������[t��#Z�7�5-n��v�BS��������c;���-}o�|Q�,��k�YC���
���~e8O��
�,�5��a�E>�(�>~�ebYE�fI�8�q���S=�$�ۘڗ�OBj`�ִ9��s���Y�\��Yx]����8'��=���$2.a�8�*�2��׹�xt�EP�q��5-k���}s�V)R�`z����k��TZZS"���M�*���(ǖhK��,-�1�))Q3K�*�*�DN&���",Y��u���ښ1e��bM�EM��XR��"
]�j&-M�ʹA
����=ȏ�$tUX�^S��V�'2��z���9vF�Y��I����g@S�$�v۝�����z�>�z�(K��t��!�k��1��lZ���q��S+V���ivv&�U�E*c,Q�Y��lC�\~���A��efuK5u�Eq&��I��2�h�TvFT̺4UAkm�_�2�87`%�*���F�����Q��	u^�����2�ј*��I�V�j�a�B3�6�bH3C�Vl�8t΢*U����BjY�49���jNJ�Kg�j�Tj�Q˵�	�W�ҴO�)�PK}X?�S��OKm�J�Z��N7�HT
��*Q-e�JC9�Ģ��fJ�����v�ݱ���϶􃥮�V���ܢHA"I<��������>&U �F��cV
��9Z:Y��2V�6��ɘ.6F���L�*
�`އ�%��	��؄�󔺛!׋�L4�0��@�F[�Բ�4�Uk`�9�<v�|�mY}�$�y��?=o�b:N�o��/̑z�䉍�Fw�LH'{Z 0pN�db��T#��2��� ԬLT4���Mj�K$X�T��Q>�-0O���U�m�֝�Z�e%�b
Y��䥴��t���4�4*o�����n/u�,�(�P{�Q��T;�(KL�Ԕ�:�4��������]Վh��]���i��d�8d+Q��¶"P��K>F�;�RP䯌M���ְ,��l�Զy��\dQ�A�ʉ�PS��i�P�oI.�=Ckv�X$;�Rm.�V��ue|%-���r�:���f�,�+�js�?"aU����q9OٳuB��ĕ*6U�J�e�tHik�*����-��U\βS�ke��U(�J��@`�
{�{s&��Nd������LmJ�m�U��rO�ނե�T��F���T�c���4����(��R���lW���^��)�Dz���d-��Y��I�a���}L��,1���4�SK3&G�"S�%����m�iz��FZ�}� ��?)�)�S�-E�J�6	$�����HՁD'��!-��9�Z����aa�*����8N��i�چ�aL��C�c"!K��2N&�$S6ν����D�j@ghH��{Y�2�M}Ξ��`-�lo��2����iu�N5�k�4�_O��N�Zf�T��z}.
�,}ùJjb��a٧�49*�g�u�j��i�y�J@`�`a�S�p`��(S��
�H�S�f5�q��TwdD�3f��԰�4����Z�T��\4qu����]�y���m��EQ#1cDbD�Z��f�LjGf����x�\k`�𔚐�H��֎g'1Թ|n�~�w� =�k��J�eH�*Q�D���O��"�$=.�C�]jQ�R�2/L�v;-���FQJ����foMT��3	���� -�ܮ�V��(M�t�ҧvjCJZ_�\l�Vﲴ�ڊD����2HE�b�kd�F�6R�6eqR�B%�DΪ��e�m����,U-o'�V����%�9_H
T�V��j�h��Xߔ�x[�\�hVU�`f�|��)��4:6F��+�L���XI���3�)�8���/���zդc)Sd˽���:�od�z��Xk;&����!�i�ZL'+�pna�:�c4���"X�,'U�I���Nd^f���L�^A��4c�H�
�k(g��-�#Y:K۪��-I	���">�}��+�]9�Q�AH�+VMj*X�R/M�*�3���Ibb֋�u�ؐ�5D2���9����V�RĆ��ܴ�'o'���f�-�2	Z�܆}bV�*um�����Duz���:�9�ƶ���8��9�����gha8��U>�y~���Q�f�D�i��Mt�{�G�ݖ�V}��p�bY%�%��z�G����W�DCn���������N&�	�#S�jM��FG�(�y���=M��B=Eq�W�M�[�I��u%�u��X{��u/����ih���$�7%ڱ�ڏ"�$��%Q�%�|��d!�1����4��5ʲ%r2a�nӠ;��r��E+�Gh�5466N]��c#Z+���t��,�G�Zݶ
���ڿ��V���F`��������R�,2	�1��R�ژX�ۘZ�SuY����S�>��J��,�=jw:*E�@��{�\O##s��蠿�Q��3�42:NW�nr�V[��vL;\��6���2��&��땓��k/�:�/��D����"�ǹ�<x:�e١
kx|F:&)�f�NǂrhR5��R#^=�w�M��������L�\��2�E��tK$�'{'���a�2Kğё�^�z���.��q{^���%���R���}���9��&T�";)�Y��Q�5)�i�r��LC�'I=�R�J��B�1�PG��jt!f�u�⢭�f��z�FM{�j;�(�T�a�FQK�]n�E8	I�+�S'Xt�c"2-��t��4���J&97/R���nC}�*"5_#(5�j���C�J��L��g��@��iJZ]Iu��ץ��5MMkygr����m�L蜹F1J��CM
��--�|�Z�Q��ܽ|�
45��c���ׇ�c�_�ݡщ	�T����v^dӠѢ*c�M�'��K�Y��Zg�χEr{�Jow��v�3�	�s����1�O��u�J:j�K�6˿������U�`5�)�E��##U��(@cĥ�g�΄��Oe�4$�9grT�(��tU�J�F5Jte�*�6��d_ɂ�J�fa".D����7�����3;'��1��s{�,Q�&�S�&��,�Í�ȕshw�RRY�u0��f��1-�dz�~�-�g��Q�ru�8Su�IH�ZG���?��s��Ĥ?#ݎ֑쎌��lw�A`z����^�6�P����ڛ
�L6s:�qM$;M	kqNMN�M�_�Ѡ"/S��ʶ��Yj�xe[��"9��(���]�ωd����W�^ڑ6{��ud��83�8'�B���5�MT�-y��]��<�D��6�Wц~���,�-�I��81ҡK9�E�F�ƢOjdj�R�ꫢG|,L*���Z�����`[��C91�R��9��q���2����T���*K'Ǻ�cy|n���W��4���VR�J��6��kd����s��8�����Լ5J��F�x�x�u���ca١��"e�8Y;�#I2�Z�z�8����JR�2�VilK�ՙZ�j�|.���%��4�TE�E�Jk�]oc���;��Y�I*�d��%���0�uԓ4��&m�DU%P�L�H-�B�Q�i�B�ʸ$<���1�/H� �rI;"�� �b�|�c��IH3*1	���.��],5�Q���m\|��D2j�S�OU0�!�s��IK�*�)E�J]L�t�j5��� �;�L��?IW��?�����}����MӶ͛ian�F�-:��yK_g%�.˸���KGjVڨ���1�̕�
"Rr�a��cl|�&VL,�EsSX�c^Y3�FZX_E�V"��{ZT#.K� ��|'��7�Ix=p6�*9��E�`u7���K�
�,�K.���4,�X_x�NZ�~�E�z�	�ق%��瑴�i���l�&N�sς��	�s�\�E+V2+%SX�LT�Uc�t�"��!�#�)K~~av��NW��QUi�Z�!RO�x>R��)[ö���-B�Ӽ��A�i�Cdd��t�jU��I#4��lYZ֤����Y�Si3�;�K�9�<�ႊ�6KN�3�´7d!�0GO?�$��m�z]�q%�{�޴�Qv���n���qm��#�<IO=�;��}i@k7�O��?��N�Q"E5�1�1ͮV��Q�!�ns���c�6�*52|��y�aZ����B#�� ix�#۱]��TͶ��� Dc\������v=^�
��>B�>���j:u�:������g�;6Fk6l��,0���m���cY
'��F��h��b���d�z���	* 0pN�$ё}T���k�nj:��!�g�z�9�V��r꺂Z,�Tw��|1�(��k>�?Qwr���ᠯ��e��$�*�$
���@�'�)_8Ec��iǵ�/��)�r�B�d	���*5u�ԫt!�i�sZ+3��,1Y@�L#E��ꬮ���me��[��2{� ��.����>քj�����ғNҩAA+[�h��t��!W肋v�cO=C�l�H��>�o�M4}�����n��b5	u2)DVjtd�F��J����Ѵ�&s%L���it�����ZIO>��<6M}����GG_:J4w�>�#?E+�lԈ�$D���R�#Q��Fؚ�s��ٜ�x,t~G��J�|���{�Sof�&:<�iG#h��X����-%\T�Hl�"F5%p�G�n'�!����9�}_�<��s�J��cA5��P�r/a�o%��2��\w�ґ1j�v��۴[-��,���i�c486K�Ś�X���ؘʺ���u��9~N"4�O����h؟���h]�S:�-��ie-��l�|_�V7�$K�J�v+5�YH=�2P���ڏ�P>n�ifj�[�g�s&� %R0g�����%�>IL��m�x=��c��v�y;����}H���1r��`Kku9��g�ޢ���u�4��H��Z�T���j)|��y�4\����,��/P�2��git|�Vm��\���z��U���4�����,5LR�H��P��"�O�,C?D��ڣ4�j��EI!۟~��a�6l�L�ׯ��|��w��q��Z9�A1d���`���Rֲ�T��ֱݻ��p)�3�	�s�����kn��5k)�XJ�@����-�|���TBL%�,��ao��V�R�6�Y�fit�Z�̧���WL�O<N��r�ӧ����g��w��^x�I�t�6z�h�����hj�K��g��V�'�Nc�����[jU��,4u*K�,Q�I��%����C�pY��m��D�نY����
sM�j�L~>�<�Zw2��th�2�X�Q���)�>5K+7��|k�ǡ�R/i�i$a���ʶF�J�N�:M��g����p�F|�HL�jyp��6f��I��??ߣG^�4�s3�4}�8�_A�Ȅnw��:5=��Y���gi[��m�L�~a�B�Z6�*��_��>�_�:�Loڴ�?�i:H�>2Mlx���kV�����=H�腴�^E�s �BS҉�vr=7����.��k�L���%u�i�q*�3��ϓ����h�0K�k6��=t�d�v\~9��}�r�NZ�n��.�XҪU+��_��.��*ڻ7]}�u4��hna��O��m$
��4�,�R�|�NBYgT?\��X�ߏu;�Xd����ŚD5&*�ޓv���Fc��#i�Tv��H"Es�"�$жi3���ǚ���~���m�&�����âmt�K�]~=��Zڰq��,���D�d�rW���W�gP�V�QSd�w&f�^����?�H7�)���v����9����5?��*��#���
��/�AS��x�,�'i����Ɍų�k��}�`�0
�D��W����Ap&�dV�l�g�oE�Е6����<�UD�4-�/UT[*��Τ���q����iㆍqdid_&�	z,�N���3�oH���"�P�'s�:�u4�,��T�9�G���K;���zEI3ss��1���=:FyyT�V)ь�K�V�M�a��/�mU��@��C�L��IAm>N?�c�(��_�w�&RS"�\��"+{���FZZ�Q�2�q��舦�u,�F;)]q�Njkt�I=�����}���4KT"�X��Y5���p��*�V�����54�z�GvQ��i�\%�DU��Z���S�BV?����>�Ӑ�U�Y"��RZJYD���W>�k��xwIƬ;2B]z=�C��Pg�K�֭���#�c���V_��ZZ���B���}�$���ddɯz��վ9�Sjxf�kjZ_�k�kmO�|l���X^�B�&Aps��!�mB���<3�8'a_�j��"��mJ��Y�e�q*XD�^R���8cᘈ��xcI�_O�XŢ��)TGG�T�I�^���m�2��^"�9�"�f�{4��*��I�:
P�V^X�W���&b�ݲ��R�q��ԧCQ�*3E��"9�d-�hKI!;�iQ��T��n��U,�\ծ���.�yA���!	��:59A����}��9�8-������QI',� ���HU����ZJ�4�z�>��|r1neg�~��y�M�+-�����<�,�]�n��}��D�M�ƍ46���eR?*�XcS3��Z��
ѓ��H�$d�]",e��IG�!m��m�^-������-��i��d�L��hb��N�|��N&�	��$e�����f��"�IjP�)�,��i�T/�•?6���NL��ӡ��*c4e�3B��4>2�b*c)8J�v�VNNҀU��f͇����,*AZ'kYJV�H9����$R�`�)iK�ԣ�1���^ΩPy6�[rN�W~I���t�i괽S'����i��h��>�"�������R��Ǻ��Ջ̇�?����
Z3S��I%mi�K�RŭZT�՗�Z��:��R�k)k��܌���#m�)�浭��+MF��D�5��L�����h��f:u�%z�ŗh8X0U\���P�2�J;�Ng�,�i:X�S7{l�$��ح��sa_~VR�J��Dݶd�D��k!�T�˱4��_o�S�E
�&�
Xε�#�,;4���H��R���	k�Fō�:vr֢][Ŗ	A�4��v�Ƨ&5ͪԗ��-�j��vK%�5��dI�R)��(��U6S�ʿY��-ElR��R�DA��ĢDQJ�F�H�$�LcZ�P�R��J���I�M��V�Q�[�~=�͞�c����sc4;;C�����:�\��PRڦ*�\�~"=5��D3�G�Pӓ�-����Mc�csZ��M��R1>����eY�z]X�Q;K��iS�߷HI�drQZ��h��ľ'��L���!�;�"�������-��X�X�3D[:oc�3�,�ԅ��7��E~>��std�]��B��yvan���T^��<�u%���GFi��qZ�f��L��v�t�-��Cڶu�Z>x�֮_����4�R��y[1JΑծT�����S��&��Z�4����R#����F畅�N���(/%ʏ���!�/))�)�R���"7-��iMF}N�'�2/B��IewVj�Ҙ�U�$� ���DZ:��C�d���$a�R����H]�f5�N��@""���Z�.#Z����B��У:ek�J����OiQ��ob5'�c*�Y罐��ڞ����[�����ȧ#T�<���chic�R�!��j\Z�i���(ݭL�F��4�����,�Kə>�c���Kt��:��?�)��DӇ�����m�g�E>��{���8�<~Lk;��ڳg�}���̴E�0+Ed�<3W�ԨR�PW���>)�Sj^��*JK�*2LҟJۣݶ�AjL�ڌ1
��H�3��$zR�ƪ�Z�"=]�/�䴴HA2q(���ך�器\�M%��|��eUvQ�m9��SA�b���5�x3�����qz�m�a�Z:t����%_��*ўr�-�  ��3��+�(�2�I�&"Q�1:3	�v�8����a������������W��.)����[$t^:���%M^V��ƃL��/U��h��2���\�ki��J�����LcMO9�JX/�T�q�_�aN-��f��s�����`��]���C̝T�5�뱸;Ų��:�K7�[������"�|��(���r��,�ڇ�(O�`�0���6�>�e)����n�\Y�|�"��3����b,�����n��5-ExjeI�Vc��~Cm�jhj	O�;�%�JU�DQ^j7<���Z��9=��x��#�T��K�ԃ����k�"F�Ң.��g}rL�2��ѡ
Yh5CC��F�e|�"=љ���A��I\��m��Z��Q�ʨ;ҥ��IZ�r%��x%,4�W�X�S";E8���k���AC�Y_F�)g@aBLd�m�0�F�nX9A�N+���z���R�ٹ���c_�v�K�S'�=1E�
2�	D`���O�W�"Q��ԛ,E�9�.��>�#.�&d$�W��������5
3ɪ4��5)��4�1�Y����Ȗ��,

�6��bY�D����Jtz�j	����̯��aN"ߤ�ťK�������E�v4�+��ͨ|��X��&���WtFi���a��
�=F�US&*Y�Ҁ�!�P#A��Q��/:�2<��dQLmI��P�l_���[�ښRWRT��kJg����_��r3�Y��f�h��Iڽ{�fg�˹K�Q5�I�z����$���
u�l�4�b2�6�1Bև��D_%���(�)Hci�d��/�Sw�Z��:{����V���q��L<��.�y���
�Ï?�l\GX^8����/���e���7g��="0�,���HX�Y���^?x�= 0�,W_��}��
T�5@`� 0g
���L�Y&�p��	8k��M�'v�����/&���7]`B�^+H!8k���5@`� 0g
���L�Y&�p��	8k���5@`� 0g
���L�Y&�p��	8k���5@`�2�m`��t��^�S��#%�O�cB��ht�hr}Bk�Ohӥ�>��o)�Ӟvݓ�އ�JX.E?y����}t??�ugJ�ߖ�؄��ǃO>�^��r�e�������Wl[d�,?o�����	�DJ>yg��2�f�DW�e)�1�������Y�ѽ��L����.{oJ�D&x�$%}~��!���<L����/�!�����GX�ݽ���,g��+�	�t$���;��i�Yn�Δ.{�hJ�kΗ��oIu�'M�"5o�hј`Yزq�~>�;�~>��CoL�"��_�#�������m��`�,K����^�Gy�뇐$	��,(GGidd�EeF����3�л��-i�Ԇ7ObN��7>�8��a��,��aj�M;/XE�i+}�M��u��vp���k�iH�d��ۮI��f])��رc4h||�&&&TXf���̜���S�NQ�ۥ��I�����!z�жߌH�=/�ҏ��X!J��Ѷ�c����/��]}��G�g~�>��{/���׾e��l��!!���e���:�����R".�9B�N�6o�L+W��H�(/�Z���իu�4M�СC�o�=�;���ih�C$氿|u�����v�����5D�	�P��5~T���ϭ ]C���Ct�?���fs����	�������^�a��'O�Ԉ�����Ԕ��}-ȶ7n�}�
��on�ؔ���w����Ԉ�i?N�c�#;y�i?��Jog{��L��T�u�ճ����U������f��kE��}���y�G��K��F���_��G�FV�L�u#���ƛ�x��`����Γw���4�R�R�YNOO��2%�DbJ�S�C�uoN_+RS�>���.#
I���YZ.��,'o��ܳw���}�?���}?D������K�?��Oү���7��}�cʱ��x_�8�m{D{�����V��]�b���ic||��;��{*��Z��������`�ۘ��Z.��,'o�(�FD���s4=}r���_�Ï<F��+�D����m�]��?��f���~��rI��������W}���m۶�g��vz=��~��~���9����5ے*������͛i�����(L�C�utoI�*���׊D7������e�5Jw>~���45ڦ7���?���-��I�#?f"��'h����o��ߤ�Y�I�/���6�p�>=�<�c�g�������_m+_7�?W9���ϛv�H\XX�n�K�I�$�)�y��±_�߳�(]f���9B���7^k�l��r�L�}�G��W��_biy�~H�a����y�>w�EM1{��h�V��K�7O����f��������?�v�"v)"]�C�>OMM�ױ��y��#����>�-�ƴ�Kۍ���H�_�<N�͛�N��0}�ҸN�w�y~~^e�r#RT";����X�������s��в������l��r�̘"����S��v�4����U��X��~X��NNN�޽��g����7����Dq6��Դ�y�M�Uۈ@����*.%jr����a���e� S����y��{2�/_���Y*Ǘc5kf6����<��w~�K��6�G3Ju�6q��
ӷ��i���M*J�e�ݸ�V���i��){ϝ|���=�%����4�=/���l��r�̦��w:Dbʇ 0Fc��2����y��"7�t��y��w�~��s�J�K�E\�8����5D�6�b��?���ki��K�
ѕ�e懿���3�DI�+��O��?�ϟ��/��o��/��G�P�2���%��>�g�ʹ�������g?}�m��,c$���H�7�a�$b�c�,Kʲ�/�*mF���.>��azn@�_�J�{�A��Xnޒ�׃D'��۹�*�����?�S���~�ϸ� o��W��"�~��?����(MτS��FiKڈ2�����w��O|�d��Y���?1ZՄ�~=�|�5� C��V�g釞�;�"c��	��Λ.0�2�D�m��zޢ�%����"%�t�=��c��|��OĥHA���!
��̥Rt)1�t����_m/B�L�1Fw�Ȍ�2�#�͘�W��_־����l�PS�~"Dx�]��y9�[4d3Rr9�6��Zu�[|�����Y���p�Scmz���Xn�|�99YE:�.����/�F?��si]�((�$�����S���m���A��JtcS���������y�_���������θ��� �S"*�~�Գ�����I�#}����P�f��`t�$�	�^��\nD`��&�N.�������ֲ ,���%]}�*z���Xnޒ�Q�Imˇ�#!EX���s*�n���*!��횵&c��3Ebƴ�Rc�)B�4|�ΥHe�#?����!��uח��ў'OaS�J��]w}I�9S�X��,���)҇�y� uBY����>'Q�"2�����֛D|i�I�n�K�~�����9կ��X����/0o�r��7A��ᛶ��l��r��[��������oS�(�R"E�����t[I�*BN�7}�ü��Q�)��>q��D�'ǹ���~ҾLi?��׊�ҼRې~\�_K���?��U��l�~ɇ<�=�C�}���>"P��c_	��r\�^ں�6��{��x�1>��K�"�Ej����K�".e��+k��5�'���>U��7�411A�~M�s�_0��^�G�!ZU�����}�O���0�'Z�Q1�ݴ��(g{����$S�:�?�/��
J��Q�|��_B�HJT���(Q�"/E�-�n)�ǿ��0�'�R����+�ZړJ�Hʥ}���?��T�v�/�C�L�ï"0�Ǖ�$�R���c~���ǤO%z�m�6]�j-ʣ{K���Z�RR��:u����,m%�S���1��h�M�����ԁ���D�yZ6�s��^`�+� g{���z��5�&W��v��m_O
K��_k��W�ǫ�Y�[���ʔ(N��|����Z���8�7�#��i�=9mݙ�
ni��#G����U:���C��ƍ���?1Ԉ�m|��X_{^���v�.%�1�7�/h���W����M��;�<��v^�}�F����o����2�����|�~�m��;��<�{?���o0Ά��W�-I!���#ھ)S�.'����$ū���t��?��H���roƹ�Q$u��}Kٌ�6d�bŊ7,1��Ա1�R�p�m_�KYD޿��5�O~�>����]���i����e��g{����,��ȯ����"2%�������Sq)|�4�{��966�RD��%����q��Þ�/��@����T��F��︜%��*�T�^��6����l��r�D`�+����]#$��繄DDz���iO*�T�SSS�����	)���FY�433C���*Ae?�O��褣�n]�����5Zs�?� M[D��W�I20��4��5��͔�g{���7��mՏs�V��=mk������n�ۙJȑ�:y�$8p��ݮFU�،�e%�r8R��Sq�n��Գy��_�*GE^��m>��i������$��;v�,
��$%r!`ٗDŐ?�ѣ[�XO����yKҲ��^�'�'�	�4$���i�=4P��\ҭ,5G�2Z�z����y�����`�і��J��t:�y�fJs'{MI#/���7�:�t���z��ᅱ>y�>��{��#{��������mW\�BQ�"�J����y�6ɝa�3=~���t����{3m]���uN^i;w�v}��
ϟ�8d���l�\���v��q�4M/�x{��o*S\�)��S�ާ�;S���LE����ia��<��9�}�j?���7C^6Q�S,�,M�z����=O�<��LL��]�QLy���d[����Ʈ_�r�KwM�Y���]��zjvo��*����4��v��]���5�w'�u��v���[ܪ���=X��WR�q�dO`�ulW��_ԥn�h�������|�Qb�P?/����f���#p;	�W��I��D�Ib���>?/�L�8C�,dc��cz$��c��:S�2�R�VJ?]�go396ޡ����&HL�o 0������xG%�{rM)+k�%�iGJS�M�茩`%M�4�K{K:�TAG��U[ߒj���L��+O�_��K��k
�T���&�}J$����n��ٙ%��`3�N�>��k��E����q��s|��vS��c;��d߲굷�%�sU���Ҹ��NR���7��r��DIޣ�g���i?���o���)����vN��W��*X��q�}=5O����|����M���&֌��lܼb��-�4(<e��Q�>�iϮ=T+i�s�%��,�V��]+}"
������וJ~&�D'#�]>Ci�R�i��6��XQ)�����O�	���o	R��o����*�R�dSN�qߎ�m�$�o��G]�9�3��U�Y�.WK��S�:G�@����`Ґ�>��i�<�j�]��P3��!�[�i�ҳD�M ���)G���"��R�olj���fR�U�UWKٗ����P�s�j�)ч�� 3Ù?ZU�_�yÖ6E�˨�<VWI?�Vu8|������
�MSj�v�s�ajB�e;M�7�iA6/r��~���
�2�P�zJ�*[l'EL6�ys��>m�:.���@�#�h��pR~�g�}�U��N��\݁�����2���,0��4}�k��a��a)�IT����ti��Kx�Iir�L$Q�r5J�����E��U�`�#��Ձ�L�U߻�� ��PI��t��܇~Q�F�h�%�����_GJ������ҵ���5�ͅ1�r��[Y��0�U$���OU�z����*e��ۤ�
��������Wm�.�Ȕco���h;��N���h��thvH���%e�ylz���y��ef��YH���EA�LU\�LV\^	�6��Esdd�¹���1�WV��Z�1���}wI�i<]�\��CQ����mA�䶝�~8{�.F�Ց�.D_R3�07��G��J5F�0��%Va��~��ܤ�)^�S+#�(=ӭ���IjC���:�k��/�K��~��e�#
��/��>k���"F�xIf���lD$�X���st�HJV}	�8��]=-���e�e����P
�~�|���b����|H�'G�kO#YJ���^��h�s/�-kKw-ɷ;��5-�pt�	�D�Y���;rqVXBz_GR��ɂ:g���q���V��&s���K%�lAI_��LԸ�7Z�� ���Y�Oא����/��/��k*��U�ӂ�B���Z�Yٌ�\r��뽝I5Ϣͅ�Ơ��N4�,Q�Z=��F�ݢ31�U����%&u� -�hTWĦ�\$aC��8�փ(

����x�\�Y�Ի��^�f���h��uZ�=�0֡���t���VBs����gv�H%o�&�ޝ���LEL�yVs��9�G�b��NR�)3a��T�Le�*�TDm�/y�H-�3d��50���_�@``1!*RTZ)F.ք�,�[J�\#$�!�b��*:���\dB}�;��ư��M�W�ƻ%Ѣd�NI�c[�\���Q�<V�x�p�N�w�6��bc� 2�$�Ƙh��pnU�iՃ�U��Z�.F�z�h^*y�c�R١\4�M���HBW��r���.��,O-��Yb��-�S���j>�ReBe;�"�HI�fA\���YH�K�Y���2DT�F�f��h��Y|���$)f%
S�<�ǒښݩu/��hR�K�o 0P�h���b&PZ�ڔ�i?�"���,�nq
�ؘ�eLB���<�B�AX�P�1q���Ď�\ܶ��ijc'q��p�ԫ�!N]%k5:�%Q������J�y����jh��5-���𬛭�C�Z����X�R�5�"1}8�E•�<Q��7�aK�&$�Z�5��NB�l��!o�bٹ����	uRO���/?E��?�β�9J$el���17����,B�+��ɘ�Q�&�_�;��R�(
n+ձ)ü�^|I��NJ��L~
��VuJ��`�&*Ļ�<�+x� �4�>�4Kip�.�PM4�/b6�CZ�c���7�h>�rM�B�Z�f�frIu\hR�-:Z, �(%��ע��UhbӺ�(A���!�m|���\lYE\��T��\��?MBT+5��:{~Q�-�3i�X�S���}TI�d��}��x�&GZcqx�1ʲ���>��Ѐ���%��а(i��'i���Lm�T��զR#s��k�Q�ZJ�ؔ�̬�*sC�T�h�Pёt��b���Q��I#oE��2�)��|�R��Hh%s������LT�D���V��c��4IG�$���B-H;�h�2Dj&1@�ň��肀t!BqQJP
�*��(��E��-���4��kt��hDߨ?-�ZL�ت��b����#yK}�Q�ԣ��$�#cQ�-r�a,��»J�J����(QL�b@���I���v~�EJu{�ܟ�6��գ���S#4Wxi9�^((/sz��ct�S�2���gm�}�[�ȥ��#7���y��m<\�/E暀N�m���F�͢S��Ky6Y3�T�YO%5�Y��KQ�K{�[�Z���F4&��?��H4@.�qmD�%1�O���P�N�"��,k��x�j�u��'�w�HV�Æ!�ӇcWGu�8-j�����o|v!�2	M�Q��؄��5Th��S��X�c4]�K*u����LG�s����V��룦u�+�x,u!�m�'�՟�)�4�&>�B�����Q�H��}�'h���pXЖI���ջ\���<���9J�����k�ߔ
~m�;mj��<��yn}ayY�V3�5"_�anW��0w�S�³�u�Zd'it*KN�F�-���Regj!�>
��k(ɒŃ����@EB1��(�*�g�gj����ƘHKZ&&�L���r���R��)]� �|�RT���H� G.�~i����LԵ�t��wr.���?2�/��>k�s�����Y�]#�1�U���~I�����~�6	�D
��K�Kh\#^��t��?Z���}���q\p��z�q��Q�G�[<-���w����
nd��Q&�2/5bsn�����Љ9����KI	+��n�,[ՄHԥ���I�ib�Q�>�D�%�MZ�C��e�)�+Y`����v��԰_��e_<^2�I��^�"��Xl̩(�8r�	��f�
8�2,��5�?��K'���ʫ���u��q�
ۿ���U�w��:��^���v���c��^�[�>s��n�������3�H���?�2��u`����������`.�<�K�p|.�4��Z(Y�M�Bt͝(6�u/�~T�_/S��K}�I!u�F��z��5�%c���Vd,�2U�TAYR��18�7�%�L$��YK	���r1en�D��1=l(.j��Q�Ӈt�Tk���WQ�eH��}��7
^�/Z�M���ֲ5a�{��.��T��$"-S��:YJ�����ȩ"���t��T�;��y�|#�i���`�8���TZ�
��A��~����mJ]?O4Z�]hP�M4�W�^j�)�����U���Ep�J_J��0OK_[�u����e���)�~�կ��#��6��﫶��_�{5��#�quW_��ز�R6���u�_�&U����m-A���u����
y�=g�sK�i����2�hi�����RI��Pu����/�G�X �ڽ�(�!�_t���.�tqo�w;�F?;V��+!_u<ޮ�Bmo_�g��Io�mˤy��^ޕ�<�����x,�J����K6�ZNJ?���mS�r�K]?���՛�^��� ���Ee�ϓ7��V�4%����>eyNy���v6Fcc�Ͽ�J�&��P��e��"�_��k\ں�,�F�eeYՓ4	j��Ku�t�>���B[��՚Ich�墾�B3.bF�X6�N\�fT��D\����iYp�ߺPXEM���9�d�\���j�kO&aA8iʶ(<�����o�QFƅܸZ��θ�(q�e�j��c
ѝ��t�T�R����E��찤����v�H��(I-J���%��ټ%���Ж�u�4�g�2Ա�Ȣ$/��a�U�氧���h�a8I_
":�N�-�����%R4s-���S�BM�W�$���v�C{C(�b*��D�F�>Dg��=8��ir�О<.�O�b��*�{|�	o�I�yUUhgT��{��m\�7�X�e_e<�o���y���8�du�����~�Û�������A�C[͜A6j@��5��7V����L�GIl�'Y���cv<=����7�������'�����Nj�;d+�J^��Wsh7 ��\���A�}�Bq��
?�*d}����W⒬�az�J/zQ�T`���"���]i��mYAG�9:tr��߲�����:1�@w}�Q:��Kʌ�X������8w���'���E��_�Gi��5,0�":�P�@`��Z�d^\ج#B��HI�>F1��G�ۨV�B�ϰ0Y�̰�����h�:~…�A
53mѲ�D��~
io}X譒�y;'��?�ݨ��Flq/,<�CV�Q�P��5��(�-�A�B/5R���
����jc�1����J����.<��e}2^WNviǪ/�:�86�����~�%���u[����hg�C�Q�*	s�ДԲ~,�.kYg�]%�s�ݢn?ׅ�Vj�R��[ؖ4�T4H�:![�F�Q���s:�}��ܮ,V�"�ea3��Ƈ.�����l��&���x���ҏ(Z��F��7U��9��k$�@"ω�Lb�_�{�aF~�'��$�_��K�.�k_��4oX�E��n,�K��!B}MyY�)���>��~W�7z��7��{t%|E��i���-�1&�
"V�(xl�(�±쳝oR4�x�N&����]�����	�URt׸	�hѼņbf
7
Q��[��s��]WuD�_�z�b#q����@D�2�U۹�B��Y�Λܴi��q�J�����մ�D__;'f���w<JG��e�٢쌱��'�����
�Y)�)[h�D�Zw;��y��% 0P���a#թ�z�q��Ջj�*�0�W��og��JH�:��EŦ��L$Q�,,��z]\��q�2<�P#���f4����O����B��f�9��T˒&}]���>��L�mu$� y���UID�ȹ��0a1��v��qYONt_�����m�c/���իG4ܳ�ұ���zd//h�7�{�=L�󌟳UVY�-yᰟ�id���E��e�I]�T�v$Z�t6�)�����}�K��i��=�`�Z�Y]ligc��������ᐅiG��R�k�(�	�"'���o���3lOg�ǽ�1����W�L�3l�Z�;ݶK�����o_}
	ȃd��d}��>��I���a'���7����h�z�>i�Q�)�{�Q|.X,�Y�V�>�9����f����R�&�.��m]�߳����sM-�+�5uS�7L�M/����߻����Q����[U�4�1��I>�c�=j\���!��"\�I���7�m������4�u4Վh�M;��*�����.^3�%?��Eb�2�������/E�S����e�����k��z�����F�\�a��9��g陸G�:gE+���ԝ��������~�E�~K'��E(�L�eBم�:����B�;6��j"m=�cQ�Yԡ[�0?5�|#�1,�֑�1>2,кZ�J���}:��J[4g��M�t5
҇�=�+�ꚫ������ti���X|N���ĞN�[T�3
X��7R��s��V}�Z��F��Y���פ�Dan�tӺQ�y�2��Ѯ�X�Ff����l�Q�����2Z�eTH�W�,�I�c�ݡ!��,����FN�����m���M
���f� #[�Ԭ,u��,']򹤗m�B��;��[�j].x{팺T���8'��H��	�׈�O}�st��#/{f���t�5Wі���:L�7w���eY�.<+�x���#�=�=�ؓ���|�i�u�(���c�V��绾Co�X��^�����=�}u�e��M7^���?���{�;}���-Z�f����=vt�crc�ڵk�7_G+WN��޽{��w~Q�q��U�� �)R��G���m���{o{7-r3��5�]�����Ij����}��t��W�8���>+�or��AeH�n)��p�H|���	Y��Τ����}ڢF��{^�S��^VmS�q��\��Mx6���6�,5�K�
�U�LI��|]e�^�&2�V는�%�����Y�Z*��~��)K�n������+�u�E�&!�B��I5��x7�#���+�r�i�N>q�U��[f=�>�즫4Y|
o ��Q'�~59�R������a��{g�����&��W��
�u��{������U�;9�cR�S���Gȷ�D�y�� �Lp+m��m�u��(���O�~�/�
&�"��X��޹�
j���fff�Kw���!�9��U��&�`\�Z�x��h���7�y���i���qA8FnjҰ��T��iX�sn� ���ꢥ�m��$hĞ���l�PlҰO���i�B{u D#�#,Z@���X�����T��0�X��s+��wR�-�b��̐�o�O�v\�9zצ	�p�;|m�Q)�ȑ�>��4�b0�EY^���ZM�6,%Ml�}��Jy~&�pۡ?�@x��~"�.��i�օ9��EeO|SM+�2ɰ��kk�L�ö��JHێ���z2�+��b��,]U
���~>���`��G�gi�ۡ�������YJǏ�_����iۑ��
���/��J��J��+������W^y?����Í6mڸ��wۻ����ǟ�������~׷�F`zn�c�7���jOd���������oWyz:���'~�~�?B[�n�?��S�z�K�_@��|���~��=�k������<�j�ZѸ���xol���K/����zv.�����v��*A4��T�T����^���>b)R�{��e<�ӫV���
>�{Z�S4LѾ�`�<$��
bmK��$�ofD���Y�=5HEk"ѢZ����E16~秮�)�}1��@�ع�#�E���s褉�[�d�iZ}#O�p�U��u`R��Z��Kb?7W-���0�Kή	�PG��&���lH���&=��x
	�������(�)���ufc��Q�c����ҏ_��&�M���Y��-�#��~���{���茘0N[4L�#�x�$�BƏ�zL��냱Q��o��@�54f�[@`,��%_H���-�^�2<���s���y�>�#?�SbO�����䫰8�\�%�W��(�T�����5}s��Q�*�ۈ54)�E�2V�J��
Y��ž���e3YP.|��fܡ�Dj�C���aQ��L�aɷ��c�]-:�԰b�B�+g���jW�!%ҧHB�԰@X��
�R%BU�Fc�9k5^�q��>?���j9�m�8�d��N��H�<1���i����H��n&��xQ���D"J�J&�@<�Ð�6�Ej�ԩ��2�./Wǡ�MM�a[,8;�הE[A��bk+�_���%��z���t��b51_�{��/x&���%`\�����K/��U��s�o�Z��~�i��$���ע�׭]C�YX�yN�S�f����G�+����ߺϫ!?���?;��$��?��U�����1�q�������)˒�.�D%��i:x�E�C���-ڼq}��?��?A��g^���o���~��U���>��R~+}�7�v^u-�х��(��m������Gw=}���mccx���"�ܺ�.�`+�߃�{n%c*X���s�3��U���В<o�j�!����媿�U�]���5R2�//b���嫔�H�x�۬�xl�1p��zjfK�>kgZ��f&o�e���J���&%8���hʲ�
� ��h�aWI�j����8X��@2%x���Y�:��ݨU�N늇�~m����Uj$������N,�4�0��R}_���2#�!�F�&�~��&��)��._M�Z�mEʗmzivHO�p�~�SР7���c�4�k���Q�,G�v�����R�J�vJ��q�L�۟%���5S��%�W"8׀�X��y��s�K/�N���I������HdD7D�H�,�8]�L�di�s&?�`�UdeȂ ��q�ʗ�N�֡/m�4D~�h�}kDd�U"'�9P��B��(�̛T����^�1Y/�n��AX�HZ��F�R�����|-k��/Q����y��t>�mKȿL��q�T�QR��6.0��	}`�8M��J�F=���O-�W����ږ�t��I�,c�2F%uy�O&,8%}+�E��i��D;���ԕ����T�=l6eF����}'�o��r�PN����x!���ӘvRV[e�71Y)� ,s�mv��b����{qa�5#i\�?�2M�D�ߝ���]�/��KC����.��>�M����Q��m~��
}�sw�B�G�N?���S~j��Q���t�EP�E��K��_�Jc��mv�W���f���ѡ�G��g���{�҅l;�~�����HGo��'��~�>���3���{�}�p�5,	�c<�Q��_w5-,�BD���	���{�|7F"�(F��s�k.�S3'��_|��#�j�V��>F�s=j�O��̽��<���B���o�L�;_�T��Z[2F\R]�:I\-��{g1�A�j[i쿋Q����&�m�e1�7�xc�i���tUsv���r�u*��|���+q���J��I|<�
I�n��K�}4	�&A%�z�����)�w n�"KW��zW��k\�,*IS�L\ݰLL ���p��]}���z��rM�NV���*J\->��i�.�lr�PR��P���y·��M���r=�����֍�Ɖ6-�&|M��#�[�y��e�²76B�u�r>��ǐ�jIO[NS�fr��AA=��Y�r�$�|�Ȱ�E����4k��E5�\E$_��D,�d��i����DXKE �,�F��%�x�n-~n�gc)o�K��#Y�Q��(�^�njU>�u�U����6�����n��@�o�^�Kl��
뇝�?��cZ��n8���<�H���W��KBTCX4l^=��`�4��i�/-����
���y��t]XN�� ��o޹v��Z�.�f�d�S���c4�/4�2�1)��dZwM�~��6/�R�NV�5]�)�d\F�c�b3D�s"6��1I��"c^i�̢1y-h���J�GyG����9M\��葸b�a$���x�]w>؀�m�_G��U��6���n���[x/�ر]�y��ΰ���������߮�߿���w����W�����I�ssAҜ�?���Q�z����X����J~��x[��^��}��d�v�۽��F�0�9���/��_}�s�����G��;i˖ʹ|���w��PSG�޻�~��w�����}�=J�����S9�,ZK����Z�ZR���j���S׼�Ҏ�ب�o�)B(_u���Ţ
ɸOY]�(*]��Z���B�>��Igig�_��o���X#��7G�ک�����Cozr�M[���ɋ���8�׬�'��f"���V���vFS���ܔl�L��J~����&2�m%z�#����3�K�r�%��{w�kq{��]�d�\����G���k�	�0��W��*�X��Z�u��K�Zf���my�l�uP��y�Į��޿�L�����y�m�"3]������c5�k�$��ޕ��_S�̋�_>��KI���h�3B�V�|F��v��R�ݥ!���}��6�SO'�Z@�T��ݢR�Yy��5�	�_�?Y/��ݢ=�\��z����i���z���7	Y��BJV���s1*�"1���Tט���iH5�q!m�ݼ徭M����X^��tp��ei�˨�g��vu�H��_xK�'˘�F�D�FaϘ:�>��1�F�Yr��5F�V�diR5 %�d�Oχ(K���N'1+�qq�"aB��j�0>�d��IcH��w��І�3
2�f����4���Bf�j�����L�@x�2O
�]��ʱ��X�i
<Y����r҈�ڜ���cR�R"XY��i!-�Pj�?�Ǜ���uUZ=�ea��uT���%���7�tˀk|.�����n/ٮZ�{��ggf)�ƒ4���뮽��{������ꍄEQ��Yh����I���i�4�t��4��#��DK���7��\Iǎ���|�N���^�Ǚ��k17=}��S�Ҩ��cp���;���I���=�4��g���Upmܸ���G���_߰�c$����_|��5���w��ɓt�h��h�y�h��8�<�[/�����ǟ�뮸\���J�R%��5�3�޷�Q�0v�Q�{W�G�EZ�~��_�z�������LW�sk�f��ǎ���W�e�\�Zc�U��KLV�q��Y�E�ƴ��$K�nYbh�=.�]�!Q�����4�I�ss���
.�[��gm��[v���ι�q�k�/Q�e9�Sc�SIcK�ޜ6��� ��6V.\y�13�<�-����Y�Ҝ�T�x�J��1^�7BY�Z�p����V�M+��XX���^�����}r�8y��ȥƵ�S�9���R�DPJ�m�	�پ�1.�rSRGSb8�r�TY� ��8�8-�����S�	�{����*Âg�����^D���Xˤ�k��#�����[.����G�[b���h�e�
Fde\d�d���%AB���P[��b)޽Ou:;%,����%ճQ0�2\��$�I�:t�-}�snZ��bY{�NB��I2�	L���T�w�V�)�v.�ˤZp���*1��t}�aMSg}#����qZ#�t���S���
.��)5cc��D�g�]0�ѾʹZ�*O�����`h�&)Ky�EI>�EJ�Df,	C����e�V�Pdq0��KL󍬖y��b���%լ,N��/�*���Ի��-�<�rt^F���6���뤒Fxqs�7��h\r�y��Ds��//j�al��C�1�0M���C�����O=��\��BZ����=�X���9p����=����}�k�����-�����KG�ѧ�����M���=���{Q�y:��sw��������46:F�z�Mt�_|��~�9z�蚝W�l?���O�Z,Xff��>�Y���{�y#5oX�_~���_���O��_��_���y}��ԏ�ʕ�^��k�S�α��{�>��>�+���6�gqY���n���N��muGhk�O�>G�
���4m^��֭Ye7�x
��Ct��Ӽ{_ߤSIE�����7ʄt�����=���.�;ޜ�bZZ�Q�W���G�vSK�6���j
��D͛vj���S����{QYF�j��]�l� )-m��Wn����y��Iܢ��Ҥ��I�)D;�{�4k��T�]CI\��1-�m��Br@��ŸU��)���2@$.lf��y�!�|b�ki��ἆAtJ��Z�j�	�_E �1��n��V�\����6��Ќ�|p?�����%���Ԛ[�V�kDgo�M�y� �~���(o�OGiN��v3�I���0����8__�k���n�ߘ@`�
����f�G���.c��("-�Y�O�EP�A�e|̹�����}�{&0���$�����(.v�!�Ղ3u���i@�z`LGQ�E��r�"��A���>#,m��p�ơ�Bb��:��fX/�F���F���Ƃ*i�u8)DH��K�(Έ=&�yec!���!S�8����QI��Z�bk��٬��b��P�+�qu����sU������
IM�����̋����,��cm9�(L�pԅ�B��y�4�L$�.U��x�'��,Yph������m�U�f�5�Ui��sCO�Ŋ�:���ub�>5�?$5_��t��:�O��T�~�%�측��{�26��h�קo���O�Դ��b�ظeB��������"���Az��n^���ضu��7�_�����9�����vm��+.�K/���|�S���Z�R�׷|�,0�Z���<���ei����Y�7r����'~��/�V�ď}��ͯ���K��k��:�o>����O}����1O�6l��Ҟ{����_LW�v%=���bj5�ۀ�ʜv�t3��
W��l|%��O~����{�ߟ>6�^����e��
3V�1J�2��F�F.����.���(a�i��+�u��u���X&��g$�Qo��{;YmƤ!>��r&��{h��_�t�I-m�w�x��>��t�.t}��[�>�W�ucdf23��I��n,J5-+��ǎ�X�y}�Ɣ�z�:���hL�S�FYo�"�s�����vfi��i�	mԿLƺ�P�Dߛ��}���%���k���~o/���>��Âƺ)
\��G�irا�����-�ci����
]�F�x�Mc�-� ���̩�c2��F���:���u.�+#����5�IEND�B`�PK�][$�R4	4	gultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/fonts/ast-block-templates.eotnu�[���4	��LP�h�icomoonRegularVersion 1.0icomoon�0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][!�M��gultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/fonts/ast-block-templates.ttfnu�[����0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][t+���hultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/fonts/ast-block-templates.woffnu�[���wOFF��OS/2``�cmaphTTVҋgasp�glyf���<���head�66 	Zhhea�$$��hmtx�$$�loca��maxp  tname4���J	�post�  ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][�[��RRgultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/fonts/ast-block-templates.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="ast-block-templates" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="maximize" d="M341.333 853.334h-128c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v128c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667zM938.667 597.334v128c0 35.328-14.379 67.413-37.504 90.496s-55.168 37.504-90.496 37.504h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h128c11.776 0 22.4-4.736 30.165-12.501s12.501-18.389 12.501-30.165v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667zM682.667-0h128c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-128c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM85.333 256v-128c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-128c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667z" />
<glyph unicode="&#xe901;" glyph-name="rotate-cw" d="M834.005 312.875c-31.403-88.875-95.787-156.587-174.677-194.261s-171.989-45.269-260.864-13.867-156.587 95.787-194.261 174.677-45.269 171.989-13.867 260.864 95.787 156.587 174.677 194.261 171.989 45.269 260.864 13.867c50.688-17.92 94.251-46.421 127.445-80.299l120.491-113.451h-148.48c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h255.872c0.171 0 0.384 0 0.555 0 5.845 0.043 11.392 1.28 16.469 3.499 5.077 2.176 9.771 5.376 13.824 9.6 0.512 0.512 0.981 1.067 1.451 1.621 3.243 3.712 5.717 7.851 7.467 12.245 1.749 4.352 2.773 9.088 2.944 13.995 0.085 0.555 0.085 1.109 0.085 1.707v256c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-157.227l-124.416 117.12c-42.368 43.179-97.024 78.763-159.915 100.949-111.104 39.296-227.669 29.781-326.144-17.28s-179.072-131.755-218.325-242.859-29.696-227.627 17.323-326.101 131.755-179.072 242.859-218.325 227.627-29.739 326.101 17.323 179.072 131.755 218.325 242.859c7.851 22.229-3.797 46.592-26.027 54.443s-46.592-3.797-54.443-26.027z" />
<glyph unicode="&#xe902;" glyph-name="file" d="M554.667 896h-298.667c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-682.667c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h512c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v469.333c0 11.776-4.779 22.443-12.501 30.165l-298.667 298.667c-4.096 4.096-8.789 7.168-13.824 9.259-5.205 2.176-10.795 3.243-16.341 3.243zM750.336 597.334h-153.003v153.003zM512 810.667v-256c0-23.552 19.115-42.667 42.667-42.667h256v-426.667c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-512c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v682.667c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501z" />
<glyph unicode="&#xe903;" glyph-name="layers" d="M512 805.632l331.264-165.632-331.264-165.632-331.264 165.632zM492.928 891.478l-426.667-213.333c-21.077-10.539-29.611-36.139-19.072-57.216 4.309-8.661 11.136-15.189 19.072-19.072l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259-4.309 8.619-11.179 15.147-19.072 19.072l-426.667 213.333c-12.459 6.229-26.453 5.803-38.144 0zM66.261 175.19l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259zM66.261 388.523l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259z" />
<glyph unicode="&#xe904;" glyph-name="chevron-left" d="M670.165 200.832l-225.835 225.835 225.835 225.835c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-256-256c-16.683-16.683-16.683-43.691 0-60.331l256-256c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" />
</font></defs></svg>PK�][\y=���Uultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/images/plus_sm.svgnu�[���<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<g id="Plus sm">
<path id="Icon" fill-rule="evenodd" clip-rule="evenodd" d="M10 5C10.5523 5 11 5.44772 11 6V9L14 9C14.5523 9 15 9.44772 15 10C15 10.5523 14.5523 11 14 11H11V14C11 14.5523 10.5523 15 10 15C9.44771 15 9 14.5523 9 14V11H6C5.44772 11 5 10.5523 5 10C5 9.44771 5.44772 9 6 9L9 9V6C9 5.44772 9.44771 5 10 5Z" fill="white"/>
</g>
</svg>
PK�][��!!Oultimate-addons-for-gutenberg/lib/gutenberg-templates/admin-assets/js/plugin.jsnu�[���/**
 * AJAX Request Queue
 *
 * - add()
 * - remove()
 * - run()
 * - stop()
 *
 * @since 2.0.0
 */

const AstBlockTemplatesAjaxQueue = ( function () {
	let requests = [];

	return {
		/**
		 * Add AJAX request
		 *
		 * @param {string} opt selected opt.
		 * @since 2.0.0
		 */
		add( opt ) {
			requests.push( opt );
		},

		/**
		 * Remove AJAX request
		 *
		 * @param {string} opt selected opt.
		 * @since 2.0.0
		 */
		remove( opt ) {
			if ( jQuery.inArray( opt, requests ) > -1 ) {
				requests.splice( jQuery.inArray( opt, requests ), 1 );
			}
		},

		/**
		 * Run / Process AJAX request
		 *
		 * @since 2.0.0
		 */
		run() {
			const self = this;
			let oriSuc;

			if ( requests.length ) {
				oriSuc = requests[ 0 ].complete;

				requests[ 0 ].complete = function () {
					if ( typeof oriSuc === 'function' ) {
						oriSuc();
					}
					requests.shift();
					self.run.apply( self, [] );
				};

				jQuery.ajax( requests[ 0 ] );
			} else {
				self.tid = setTimeout( function () {
					self.run.apply( self, [] );
				}, 1000 );
			}
		},

		/**
		 * Stop AJAX request
		 *
		 * @since 2.0.0
		 */
		stop() {
			requests = [];
			clearTimeout( this.tid );
		},
	};
}() );

( function ( $ ) {
	const AstBlockTemplates = {
		remaining_install_plugins: 0,
		remaining_active_plugins: 0,

		init() {
			this._bind();
		},

		/**
		 * Bind
		 */
		_bind() {
			//Page builder installation & save option
			$( document )
				// .on(
				// 	'click',
				// 	'.install-required-plugins',
				// 	AstBlockTemplates._install_required_plugins
				// )
				.on( 'wp-plugin-installing', AstBlockTemplates._pluginInstalling )
				.on( 'wp-plugin-install-error', AstBlockTemplates._installError )
				.on(
					'wp-plugin-install-success',
					AstBlockTemplates._installSuccess
				);
		},

		_installPlugin( plugin_slug ) {
			if (
				wp.updates.shouldRequestFilesystemCredentials &&
				! wp.updates.ajaxLocked
			) {
				wp.updates.requestFilesystemCredentials( event );

				$document.on( 'credential-modal-cancel', function () {
					const $message = $( '.install-now.updating-message' );

					$message
						.removeClass( 'updating-message' )
						.text( wp.updates.l10n.installNow );

					wp.a11y.speak( wp.updates.l10n.updateCancel, 'polite' );
				} );
			}

			wp.updates.queue.push( {
				action: 'install-plugin', // Required action.
				data: {
					slug: plugin_slug,
				},
			} );

			// Required to set queue.
			wp.updates.queueChecker();
		},

		_activatePlugin( plugin_init, plugin_slug ) {
			$.ajax( {
				url: ajaxurl,
				method: 'POST',
				data: {
					action: '',
					plugin_slug,
					plugin_init,
					security: '',
				},
			} )
				.done( function ( response ) {
					if ( response.success ) {
						console.log( plugin_slug + ' activated' );
						// trigger_event();
					} else {
						console.log(
							'Error: ' + response.data && response.data.message
								? response.data.message
								: 'Plugin not activated'
						);
					}
				} )
				.fail( function () {
					console.log( 'activation error' );
				} );
		},

		/**
		 * Installing Plugin
		 *
		 * @param {Object} event event data.
		 */
		_pluginInstalling( event ) {
			event.preventDefault();
			console.log( 'Installing..' );
		},

		/**
		 * Install Error
		 *
		 * @param {Object} event event data.
		 */
		_installError( event ) {
			event.preventDefault();
			console.log( 'Install Error!' );
		},

		/**
		 * Install Success
		 *
		 * @param {Object} event event data.
		 * @param {Array}  args  args data.
		 */
		_installSuccess( event, args ) {
			event.preventDefault();
			const plugin_init = args.slug + '/' + args.slug + '.php';
			const plugin_slug = args.slug;

			// WordPress adds "Activate" button after waiting for 1000ms. So we will run our activation after that.
			setTimeout( function () {
				AstBlockTemplates._activatePlugin( plugin_init, plugin_slug );
			}, 1500 );
		},
	};

	function trigger_event() {
		const custom_event = new Event( 'ast-plugins-install-success' );
		document.dispatchEvent( custom_event );
	}

	$( function () {
		AstBlockTemplates.init();
	} );
}( jQuery ) );
PK�][M,E�MM?ultimate-addons-for-gutenberg/lib/gutenberg-templates/error_lognu�[���[02-Nov-2025 20:24:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-templates.php:21
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-templates.php on line 21
[02-Nov-2025 23:36:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function Gutenberg_Templates\add_action() in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-plugin-loader.php:92
Stack trace:
#0 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-plugin-loader.php(48): Gutenberg_Templates\Ast_Block_Plugin_Loader->__construct()
#1 /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-plugin-loader.php(185): Gutenberg_Templates\Ast_Block_Plugin_Loader::get_instance()
#2 {main}
  thrown in /home/fresvfqn/emergencywaterdamagemanhattan.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-plugin-loader.php on line 92
PK�][^��77Multimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-templates.phpnu�[���<?php
/**
 * Plugin Name: Gutenberg Starter Templates
 * Plugin URI: https://wpastra.com/
 * Description: Gutenberg single page templates, and blocks library to imported your website easily.
 * Version: 2.4.8
 * Author: Brainstorm Force
 * Author URI: https://www.brainstormforce.com
 * Text Domain: ast-block-templates
 *
 * @package Ast Block Templates
 */

/**
 * Set constants.
 */
if ( defined( 'Ast_Block_Templates' ) ) {
	return;
}

if ( apply_filters( 'ast_block_templates_disable', false ) ) {
	return;
}

// Set constants.
if ( ! defined( 'AST_BLOCK_TEMPLATES_LIBRARY_URL' ) ) {
	define( 'AST_BLOCK_TEMPLATES_LIBRARY_URL', trailingslashit( apply_filters( 'ast_block_templates_library_url', 'https://websitedemos.net/' ) ) );
}

define( 'AST_BLOCK_TEMPLATES_VER', '2.4.8' );
define( 'AST_BLOCK_TEMPLATES_FILE', __FILE__ );
define( 'AST_BLOCK_TEMPLATES_BASE', plugin_basename( AST_BLOCK_TEMPLATES_FILE ) );
define( 'AST_BLOCK_TEMPLATES_DIR', plugin_dir_path( AST_BLOCK_TEMPLATES_FILE ) );
define( 'AST_BLOCK_TEMPLATES_URI', plugins_url( '/', AST_BLOCK_TEMPLATES_FILE ) );

if ( ! defined( 'AST_BLOCK_TEMPLATES_JSON_DIR' ) ) {
	$upload_dir = wp_get_upload_dir();
	define( 'AST_BLOCK_TEMPLATES_JSON_DIR', trailingslashit( $upload_dir['basedir'] ) . 'ast-block-templates-json/' );
}

require_once 'class-ast-block-templates.php';
PK�][�t�*7*7Cultimate-addons-for-gutenberg/lib/gutenberg-templates/changelog.txtnu�[���v.2.4.8 - 29-November-2024
Improvement: Improved business description screen for better user experience.
Improvement: UI enhancements for better usability.
Improvement: Improved code quality for enhanced performance and maintainability.

v.2.4.7 - 31-October-2024
Improvement: Generating business description based on the selected language.
Improvement: Optimized styles for better readability and usability on smaller screens.

v.2.4.6 - 14-October-2024
- New: Added source parameters to URLs redirecting to ZipWP for better tracking.

v.2.4.5 - 08-October-2024
Improvement: Removed outdated options data that were previously left undeleted.
Improvement: Optimized server API call execution for better performance.

v.2.4.4 - 30-September-2024
Improvement: Added loading skeleton when uploading the images on AI onboarding.
Improvement: Added images validation on AI onboarding.
Fix: Fixed PHP warning when generating content.

v.2.4.3 - 26-September-2024
Fix: Content was not getting generated in the selected language.

v.2.4.2 - 11-September-2024
New: Introduced filter `ast_block_templates_exclude_post_types` to exclude asset loading for specified post types.
Fix: Resolved CSS conflicts with the WordPress core list block.

v.2.4.1 - 29-August-2024
Improvement: Enhanced API performance by optimizing execution times and reducing delays.
Fix: Corrected styling issues for patterns/pages preview to ensure consistent display.
Fix: Addressed CSS conflicts with SureCart blocks to prevent styling discrepancies.

v.2.4.0 - 08-August-2024
New: Enhanced AI onboarding UI.

v.2.3.6 - 06-August-2024
Fix: Pattern CSS file was not loading correctly.

v.2.3.5 - 06-August-2024
Improvement: Hidden Update Image option until the user personalizes the library.
Improvement: Blocked block pages preview if import is in process.

v.2.3.4 - 02-August-2024
Improvement: Converted spectra common stylesheet to json file instead of option variable.

v.2.3.3 - 30-July-2024
Fix: Resolved issue where the Favorites functionality was not working in certain cases.
Fix: Addressed problem where related block pages were not displaying in some scenarios.
Fix: Content regeneration for a category was not working.

v.2.3.2 - 26-July-2024
Fix: Resolved visibility issue with the "Design Library" button in WordPress 6.6 with full site editor.

v.2.3.1 - 3-July-2024
Fix: Resolved an issue where adding social media URLs caused an error when proceeding to the next step.

v.2.3.0 - 2-July-2024
New: Added a page preview feature along with other page options.
Improvement: Introduced a new "Favorites" tab, separated from Patterns, Pages, and Kits.
Improvement: Added clickable navigation in the sidebar, allowing users to jump to previous steps.
Improvement: Disbaled live preview while inserting the kit into a page.
Improvement: Improved UI/UX for a better user experience.
Fix: Resolved an issue where the Design Library button was not displayed in the Spectra One theme editor when the Gutenberg Plugin was activated.
Fix: Fixed a console error that occurred on the screen of the image when AI data was prefilled.
Fix: Addressed a blank screen issue when accessing the "Design Library" on Bedrock-powered sites.
Fix: Fixed option 'ast-block-templates_data-' was not getting deleted after importing the site template.

v2.2.5 - 27-June-2024
- Fix: Fixed console error causing blank screen in GT AI onboarding if already prefilled.

v2.2.4 - 17-June-2024
- New: Added error boundaries for better error management.
- Improvement: Improved UI for better consistency.
- Improvement: Enhanced error handling during the import process.
- Improvement: Blocked all other actions while inserting the kit into a page.
- Improvement: Added an admin notice for missing file permissions.
- Improvement: Removed validation for the mobile field in AI onboarding.
- Improvement: Added loader while inserting the block.
- Fix: Prevented adding block to new page after Spectra installation.
- Fix: Shuffling of images if changes the orientation multiple times.
- Fix: AI generated business description response count was not working as expected.
- Fix: Fixed issue with authentication redirection.

v2.2.3 - 06-June-2024
- Fix: Resolved Console error for undefined images.

v2.2.2 - 20-May-2024
- Fix: Fixed design library was displaying empty on subfolder sites.

v2.2.1 - 02-May-2024
- Improvement: Better error message handling.
- Improvement: Blocked everything after clicking on the continue button.
- Fix: Removed the hotlinking of websitedemos link after import.

v2.2.0 - 26-April-2024
- Improvement: Revamped AI onboarding with language compatibility.
- Improvement: User Interface Enhancements & tweaks.
- Fix: JSON file names renamed correctly.

v2.1.28 - 12-April-2024
- Fix: Resolved line-height issue for blocks.

v2.1.27 - 9-April-2024
- Fix: Design library button not showing sometime.

v2.1.26 - 9-April-2024
- Fix: Fixed Media library not working.

v2.1.25 - 8-April-2024
- Fix: Custom permission fix for search category API.
- Fix: Fixed an issue where the Personalisation of the library was failing.

v2.1.24 - 5-April-2024
- Fix: Improved parsing mechanism for social media icons to ensure error-free processing.

v2.1.23 - 5-April-2024
- Fix: Pre-selected images were not displaying.

v2.1.22 - 4-April-2024
- Improvement: Updated image replacement mechanisms to enhance compatibility with the ZipWP.

v2.1.21 - 3 April-2024
- New: Added business type selection option in onboarding.
- Improvement: Using a ZipWP constant instead of a URL to facilitate easy overriding from the WordPress configuration.
- Improvement: Automatically prefill business details for sites created through ZipWP.
- Improvement: Moved JSON folder from plugin directory to WP upload folder to address memory issues.

v2.1.20 - 1-April-2024
- Improvement: Added Compatibility for Rank Match SEO plugin.

v2.1.19 - 29-March-2024
- Improvement: Updated the way to call REST API.

v2.1.18 - 14-March-2024
- Improvement: Added a filter to bypass the auth for non authenticated users to be able to import Templates

v2.1.17 - 11-March-2024
- Fix: Fixed broken patterns and pages caused by missing Spectra Plugin.

v2.1.16 - 07-March-2024
- Fix: Resolved an issue where the AI description won't get generated on WordPress.com sites.

v2.1.15 - 01-March-2024
- Improvement: Rename Template kits to Design Library and updated UI.

v2.1.14 - 20-February-2024
- Fix: Changed the button position and fixed console errors.

v2.1.13 - 12-February-2024
- Fix: Resolved an issue where the Template Kit button was not visible due to console error.

v2.1.12 - 07-February-2024
- Fix: Resolved an issue where the Template Kit button was not visible.

v2.1.11 - 30-January-2024
- Improvement: Moved the Template Kits button to the left of the post header center element.

v2.1.10 - 29-January-2024
- Fix: Resolved premium pages import issue in the kits section.

v2.1.9 - 08-January-2024
- Fix: Reverted capabilities check from manage_options to edit_post.

v2.1.8 - 08-January-2024
- Improvement: Show three dots loading indicator when regenerating content for a specific category.
- Improvement: Prevent unnecessary re-render to improve performance and UX.
- Improvement: Improved access control by transitioning from 'edit_post' to 'manage_options' for enhanced user capabilities. 
- Fix: Google map location/address not getting updated.
- Fix: Not showing loading skeleton while regenerating content.
- Fix: 503 Error by removing kits data from the localize variable.

v2.1.7 - 04-January-2024
- Fix: Extra check added for checking wpforms-lite plugin.

v2.1.6 - 03-January-2024
- Fix: Spelling "organization" changed to "organisation".

v2.1.5 - 03-January-2024
- Fix: Tightened the plugin security while importing.

v2.1.4 - 02-January-2024
- Fix: Suggested items were not showing on the empty search results screen.

v2.1.3 - 02-January-2024
- Fix: Showing invalid message on the toaster while generating content.

v2.1.2 - 02-January-2024
- Improvement: Enhanced user experience and streamlined workflow.

v2.1.1 - 30-December-2023
- Fix: Resolved conflict with Gravity Forms plugin by transitioning from localization to using API for patterns and pages data.

v2.1.0 - 27-December-2023
- New: Added site templates kits.
- Fix: Customizer color palette was getting applied in non-adaptive mode.
- Fix: Templates looks broken if Spectra activated while importing template.  

v2.0.19 - 22-December-2023
- New: Added "Revoke Access" button for seamless ZipAI authentication revocation.
- Fix: Resolved issue of patterns/pages importing at last index instead of selected insertion point.
- Fix: Resolved the need for two refreshes to reflect changes in Manage AI feature options.

v2.0.18 - 20-December-2023
- Fix: ZipAI authentication screen is visible even ZipAI Copilot module is disabled. 

v2.0.17 - 19-December-2023
- Improvement: Downloading the selected images in onboarding to media.
- Improvement: Added compatibility for the ZipAI Manage AI feature option.
- Improvement: User Interface Enhancements & tweaks.
- Improvement: Updating Disable AI option value based on Non-Adaptive mode option.
- Fix: Updating Non-Adaptive mode option was not getting enabled after reloading the page. 

v2.0.16 - 15-December-2023
- Improvement: Added RTL compatibility to the new Template Kits library.
- Fix: Generate Content with AI button was not showing if already authorised.

v2.0.15 - 13-December-2023
- Improvement: Added conditional logo for onboarding screen.

v2.0.14 - 13-December-2023
- New: Introduced Non-Adaptive mode option.
- Improvement: Improved pattern and page preview UI.

v2.0.13 - 07-December-2023
- Improvement: Showing Server Traffic Surge toaster.
- Improvement: Updated the flat rates for Pages and Patterns library from 3000 to 5000.

v2.0.12 - 05-December-2023
- Improvement: Added no credit notice in AI onoarding.
- Improvement: Removed Generate Content button if showing welcome scrren.
- Fix: Removed unwanted parameters from URL while passing the success_url for checkout process fir credits purchase.

v2.0.11 - 04-December-2023
- New: Introduced 'ast_block_templates_authorization_url_param' filter for authorization url parameters.

v2.0.10 - 04-December-2023
- Fix: Removed URL parameter after redirection.

v2.0.9 - 04-December-2023
- Synchronised the pattern/page library.

v2.0.8 - 04-December-2023
Improvement: Compatibility with ZipAI authorization.
- Fix: Removed Header and Footer from the preview.
- Fix: Redirction URL not working after authorization.

v2.0.4 - 27-November-2023
- Fix: Success url parameter was missing for some credit purchase url.

v2.0.3 - 27-November-2023
- Fix: Fixed conditional logo for the library.
- Fix: Displaying the default content and toaster error after updating content.

v2.0.2 - 24-November-2023
- Fix: Fixed an issue where the library won't load when integrated with Premium Starter Templates.

v2.0.0 - 24-November-2023
- New: AI based templates

v1.3.3 - 07-Sept-2023
- Fix: Temporary remove Template Kit support to Full Site Editor.

v1.3.2 - 11-July-2023
- Improvement: Added Template Kit support to Full Site Editor.

v1.3.1 - 14-June-2023
- Fix: WP Forms won't get imported due to regression in v1.3.0

v1.3.0 - 13-June-2023
- Improvement: Now we refresh the page and save the content if the required plugins for the template kit are missing.
- Improvement: Tightened the security of the plugin.

v1.2.1 - 19-May-2023
- Fix: Discarded the incorrect null.js generated for the library, instead added main.js.

v1.2.0 - 18-May-2023
- Improvement: Added Premium Block Editor Templates.

v1.1.11 - 20-February-2023
- Improvement: Sync library.

v1.1.10 - 30-January-2023
- Improvement: Capability updated for active plugin.

v1.1.9 - 25-January-2023
- Improvement: Hardened the security.

v1.1.8 - 19-January-2023
- Improvement: Added extra checks while block templates import.

v1.1.7 - 01-September-2022
- Fix: Install and Activate Spectra for light category patterns only.

v1.1.6 - 22-Auguest-2022
- Improvement: Install Spectra while importing Block Patterns and Wireframe Pattern.

v1.1.3 - 19-May-2022
- Improvement: Renamed button text and logo to template kits and spectra logo.

v1.1.2 - 08-March-2022
- Improvement: CSS tweaks for spectra button.

v1.1.1 - 14-February-2022
- Fix: Undefined error for WP_CLI

v1.1.0 - 4-October-2021
- New: Wireframe blocks for Gutenberg - [Doc](https://wpastra.com/docs/starter-templates-wireframe-blocks/)

v1.0.11 - 17-September-2021
- Improvement: Added site URL while importing the demo for analytics.

v1.0.10 - 12-August-2021
- Improvement: Rectified the condition to load the scripts in other screens.
- Fix: Starter template button not visible when gutenberg plugin is activated.

v1.0.9 - 2-August-2021
- Improvement: Rectified the condition to load the scripts in customizer screen.

v1.0.8 - 22-June-2021
- Improvement: Avoided to load the scripts in customizer screen.

v1.0.7 - 13-June-2021
- Improvement: Compatibility to WordPress 5.8.
- Improvement: Added support for dark and light support for block patterns with improved sidebar UI.
- Improvement: Added a filter `ast_block_templates_disable_auto_sync` to disable auto sync feature.
- Fix: Handle the white label support.

v1.0.6 - 24-May-2021
- Improvement: Added auto sync feature.
- Fix: Starter Templates popup opens by default on every page load on Gutenberg pages.

v1.0.5 - 21-May-2021
- Improvement: Added the dark and light filter support for blocks.

v1.0.4 - 14-May-2021
- Fix: Added the dynamic category support for multisites.

v1.0.3 - 10-May-2021
- Improvement: Added the dynamic category support.

v1.0.2 - 09-March-2021
- Improvement: Added a helper function to set the default assets

v1.0.1 - 09-March-2021
- Improvement: Used `version.json` instead of `package.json` to manage the dependency.
- Improvement: Added the suggestion link.
- Improvement: Added filter to disable the Gutenberg Templates.
- Fix: Block pattern category filter keep showing all category.
- Fix: Avoided dynamic json file names for importing.

v1.0.0 - 17-February-2021
- Initial Commit
PK�][��_�Fultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/spectra.svgnu�[���<svg width="71" height="71" viewBox="0 0 71 71" fill="#000000" xmlns="http://www.w3.org/2000/svg">
<path d="M35.292 0C28.3119 0 21.4885 2.08204 15.6848 5.98283C9.88107 9.88362 5.35762 15.428 2.68645 21.9147C0.0152817 28.4015 -0.683625 35.5394 0.678124 42.4257C2.03987 49.312 5.40111 55.6375 10.3368 60.6023C15.2725 65.5671 21.5609 68.9481 28.4068 70.3179C35.2528 71.6876 42.3489 70.9846 48.7976 68.2977C55.2464 65.6108 60.7583 61.0607 64.6362 55.2227C68.5141 49.3848 70.584 42.5212 70.584 35.5C70.58 26.0861 66.8604 17.0588 60.2428 10.4021C53.6251 3.74548 44.6508 0.00401876 35.292 0V0ZM48.5887 40.944C48.5887 41.035 48.5887 41.126 48.5887 41.217V41.4748V41.6416C48.4098 42.6715 48.0307 43.6558 47.4731 44.538L47.1414 45.0081L46.659 45.5692C46.4943 45.781 46.3073 45.9742 46.1012 46.1454V46.2213L45.9957 46.2971L45.7846 46.4639C45.7145 46.5265 45.6388 46.5823 45.5585 46.6307L45.3323 46.7824L28.9753 57.6856C28.8417 57.7759 28.684 57.8235 28.523 57.8221H28.3572C28.2497 57.7996 28.1477 57.7558 28.0571 57.6933C27.9665 57.6309 27.8892 57.5509 27.8296 57.4582C27.8296 57.4582 27.4527 56.7909 27.4225 56.7454V56.5938V56.5179V56.4269V56.3208V56.1995C26.7754 54.513 26.7216 52.6545 27.2701 50.933C27.8187 49.2115 28.9365 47.7307 30.4376 46.7369L38.0659 41.6568C38.1849 41.5771 38.2779 41.4638 38.3329 41.3311C38.388 41.1984 38.4027 41.0522 38.3753 40.9111C38.3479 40.77 38.2796 40.6402 38.1789 40.5381C38.0782 40.436 37.9497 40.3662 37.8096 40.3375L28.8547 38.5177H28.5984H28.523H28.2818H28.0255H27.92H27.7843H27.709L27.4678 38.4267H27.3924H27.2416L27.0004 38.3054L26.7592 38.1841L26.533 38.0476L26.3069 37.9111C25.5952 37.4647 24.959 36.9067 24.4225 36.2582L24.2265 35.9853L24.0004 35.6365C23.421 34.7714 23.0198 33.7984 22.8205 32.7748C22.6211 31.7512 22.6276 30.6979 22.8395 29.6769C22.9971 28.975 23.2455 28.2969 23.5782 27.66C23.6687 27.4932 23.7441 27.3415 23.8345 27.205L23.9702 26.9927C24.067 26.8303 24.1727 26.6733 24.2868 26.5226L24.4225 26.3558L24.5883 26.1587L24.7541 25.9767L24.8597 25.8706L25.0406 25.6886L25.1913 25.5521L25.3572 25.4156L25.5381 25.264H25.6134L25.734 25.1578H25.8094L26.0054 25.0214L42.272 14.1788C42.3763 14.1091 42.4935 14.0612 42.6166 14.038C42.7396 14.0147 42.8661 14.0166 42.9884 14.0435C43.1108 14.0704 43.2265 14.1217 43.3287 14.1944C43.431 14.2672 43.5176 14.3598 43.5836 14.4669L43.7192 14.6944L43.8248 14.9067C43.8248 14.9825 43.9002 15.0432 43.9303 15.1038C43.9303 15.1038 43.9303 15.1038 43.9303 15.1948C43.94 15.2295 43.94 15.2662 43.9303 15.3009V15.3009L44.0208 15.5284C44.0289 15.5684 44.0289 15.6097 44.0208 15.6497C44.0208 15.6497 44.0208 15.6497 44.0208 15.7407C44.6198 17.3996 44.6483 19.2127 44.1017 20.8897C43.555 22.5668 42.4648 24.011 41.0056 24.991L33.4678 30.0256C33.3488 30.1053 33.2559 30.2186 33.2008 30.3513C33.1457 30.484 33.131 30.6302 33.1584 30.7713C33.1858 30.9124 33.2542 31.0422 33.3549 31.1443C33.4555 31.2464 33.584 31.3162 33.7241 31.3449L42.6036 33.1495C44.3808 33.5188 45.9773 34.4922 47.1249 35.9061C48.2726 37.3201 48.9012 39.0884 48.9053 40.9137C48.6188 40.4285 48.5887 40.9137 48.5887 40.9137V40.944Z" fill="white"/>
</svg>
PK�][�,���Nultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/main.js.LICENSE.txtnu�[���/*!
 * is-plain-object <https://github.com/jonschlinkert/is-plain-object>
 *
 * Copyright (c) 2014-2017, Jon Schlinkert.
 * Released under the MIT License.
 */

/**
 * @license
 * Lodash <https://lodash.com/>
 * Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
 * Released under MIT license <https://lodash.com/license>
 * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
 */

/**
 * @license React
 * react-jsx-runtime.production.min.js
 *
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
PK�][j�XA��Kultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/aspect-ratio.svgnu�[���<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<title>aspect_ratio</title>
<path d="M21 19.031v-14.063h-18v14.063h18zM21 3q0.797 0 1.406 0.609t0.609 1.406v13.969q0 0.797-0.609 1.406t-1.406 0.609h-18q-0.797 0-1.406-0.609t-0.609-1.406v-13.969q0-0.797 0.609-1.406t1.406-0.609h18zM6.984 9v3h-1.969v-5.016h4.969v2.016h-3zM18.984 12v5.016h-4.969v-2.016h3v-3h1.969z"></path>
</svg>
PK�][$�R4	4	Xultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/fonts/ast-block-templates.eotnu�[���4	��LP�h�icomoonRegularVersion 1.0icomoon�0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][!�M��Xultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/fonts/ast-block-templates.ttfnu�[����0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][t+���Yultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/fonts/ast-block-templates.woffnu�[���wOFF��OS/2``�cmaphTTVҋgasp�glyf���<���head�66 	Zhhea�$$��hmtx�$$�loca��maxp  tname4���J	�post�  ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][�[��RRXultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/fonts/ast-block-templates.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="ast-block-templates" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="maximize" d="M341.333 853.334h-128c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v128c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667zM938.667 597.334v128c0 35.328-14.379 67.413-37.504 90.496s-55.168 37.504-90.496 37.504h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h128c11.776 0 22.4-4.736 30.165-12.501s12.501-18.389 12.501-30.165v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667zM682.667-0h128c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-128c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM85.333 256v-128c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-128c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667z" />
<glyph unicode="&#xe901;" glyph-name="rotate-cw" d="M834.005 312.875c-31.403-88.875-95.787-156.587-174.677-194.261s-171.989-45.269-260.864-13.867-156.587 95.787-194.261 174.677-45.269 171.989-13.867 260.864 95.787 156.587 174.677 194.261 171.989 45.269 260.864 13.867c50.688-17.92 94.251-46.421 127.445-80.299l120.491-113.451h-148.48c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h255.872c0.171 0 0.384 0 0.555 0 5.845 0.043 11.392 1.28 16.469 3.499 5.077 2.176 9.771 5.376 13.824 9.6 0.512 0.512 0.981 1.067 1.451 1.621 3.243 3.712 5.717 7.851 7.467 12.245 1.749 4.352 2.773 9.088 2.944 13.995 0.085 0.555 0.085 1.109 0.085 1.707v256c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-157.227l-124.416 117.12c-42.368 43.179-97.024 78.763-159.915 100.949-111.104 39.296-227.669 29.781-326.144-17.28s-179.072-131.755-218.325-242.859-29.696-227.627 17.323-326.101 131.755-179.072 242.859-218.325 227.627-29.739 326.101 17.323 179.072 131.755 218.325 242.859c7.851 22.229-3.797 46.592-26.027 54.443s-46.592-3.797-54.443-26.027z" />
<glyph unicode="&#xe902;" glyph-name="file" d="M554.667 896h-298.667c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-682.667c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h512c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v469.333c0 11.776-4.779 22.443-12.501 30.165l-298.667 298.667c-4.096 4.096-8.789 7.168-13.824 9.259-5.205 2.176-10.795 3.243-16.341 3.243zM750.336 597.334h-153.003v153.003zM512 810.667v-256c0-23.552 19.115-42.667 42.667-42.667h256v-426.667c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-512c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v682.667c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501z" />
<glyph unicode="&#xe903;" glyph-name="layers" d="M512 805.632l331.264-165.632-331.264-165.632-331.264 165.632zM492.928 891.478l-426.667-213.333c-21.077-10.539-29.611-36.139-19.072-57.216 4.309-8.661 11.136-15.189 19.072-19.072l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259-4.309 8.619-11.179 15.147-19.072 19.072l-426.667 213.333c-12.459 6.229-26.453 5.803-38.144 0zM66.261 175.19l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259zM66.261 388.523l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259z" />
<glyph unicode="&#xe904;" glyph-name="chevron-left" d="M670.165 200.832l-225.835 225.835 225.835 225.835c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-256-256c-16.683-16.683-16.683-43.691 0-60.331l256-256c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" />
</font></defs></svg>PK�][5��?�S�Swultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/src_components_reusable_single-block_lazy-single-block_js.jsnu�[���"use strict";
/*
 * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
 * This devtool is neither made for production nor for readable output files.
 * It uses "eval()" calls to create a separate source file in the browser devtools.
 * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
 * or disable the default devtool with "devtool: false".
 * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
 */
(globalThis["webpackChunkast_block_templates"] = globalThis["webpackChunkast_block_templates"] || []).push([["src_components_reusable_single-block_lazy-single-block_js"],{

/***/ "./src/components/reusable/single-block/lazy-single-block.js":
/*!*******************************************************************!*\
  !*** ./src/components/reusable/single-block/lazy-single-block.js ***!
  \*******************************************************************/
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {

eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */   \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _wordpress_compose__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @wordpress/compose */ \"./node_modules/@wordpress/compose/build-module/higher-order/compose.js\");\n/* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @wordpress/data */ \"./node_modules/@wordpress/data/build-module/components/use-select/index.js\");\n/* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @wordpress/data */ \"./node_modules/@wordpress/data/build-module/components/use-dispatch/use-dispatch.js\");\n/* harmony import */ var _wordpress_data__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @wordpress/data */ \"./node_modules/@wordpress/data/build-module/components/with-select/index.js\");\n/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @wordpress/element */ \"react\");\n/* harmony import */ var _wordpress_element__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_wordpress_element__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var _utils_helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../utils/helpers */ \"./src/utils/helpers.js\");\n/* harmony import */ var _import_block_button_import_block_button__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../import-block-button/import-block-button */ \"./src/components/reusable/import-block-button/import-block-button.js\");\n/* harmony import */ var _favorite_single_block__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./favorite-single-block */ \"./src/components/reusable/single-block/favorite-single-block.js\");\n/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils.js */ \"./src/components/reusable/single-block/utils.js\");\n/* harmony import */ var _utils_easing_functions__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../utils/easing-functions */ \"./src/utils/easing-functions.js\");\n/* harmony import */ var _fade_in_out_fade_in_out_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../fade-in-out/fade-in-out.js */ \"./src/components/reusable/fade-in-out/fade-in-out.js\");\n\n\n\n\n\n\n\n\n\nconst {\n  spectra_common_styles,\n  is_rtl\n} = ast_block_template_vars;\nconst visibility = {\n  hidden: 'hidden',\n  visible: 'visible'\n};\nconst SingleBlock = ({\n  item,\n  content,\n  stylesheet,\n  astraCustomizer,\n  globalStylesheet,\n  colorPalette,\n  dynamicContent,\n  selectedImages,\n  disableAi,\n  togglePopup,\n  email,\n  phone,\n  address,\n  onClickBlock\n}) => {\n  const thumbnailRef = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useRef)(null);\n  const thumbnailContainerRef = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useRef)(null);\n  const thumbnail_image_url = item['thumbnail-image-url'] || '';\n  const featured_image_url = item['featured-image-url'] || '';\n  const spectraPluginStatus = (0,_utils_helpers__WEBPACK_IMPORTED_MODULE_0__.getSpectraStatus)();\n  let imageCounter = 0;\n  let containerImageCounter = 0;\n  const {\n    importing\n  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_7__[\"default\"])(select => {\n    const {\n      getImporting\n    } = select('ast-block-templates');\n    return {\n      importing: getImporting()\n    };\n  });\n  const {\n    setImporting\n  } = (0,_wordpress_data__WEBPACK_IMPORTED_MODULE_8__[\"default\"])('ast-block-templates');\n  const [selfState, setSelfState] = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useState)({\n    importing: false\n  });\n  const [imageThumbnailURL, setThumbnailImageURL] = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);\n  const [imageFeaturedlURL, setFeaturedImageURL] = (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);\n  const replaceImages = (images, previewImages) => {\n    if (disableAi) {\n      return;\n    }\n    if (Object.keys(dynamicContent).length === 0 || !dynamicContent) {\n      return;\n    }\n    if (!previewImages?.length) {\n      return;\n    }\n    images?.forEach(function (image) {\n      if ((0,_utils_js__WEBPACK_IMPORTED_MODULE_3__.shouldSkipReplacement)(image.src)) {\n        return;\n      }\n      image.onload = () => {\n        // Skip if the image is already replaced.\n        const imageSrc = image.getAttribute('src') || '';\n        if (imageSrc.includes('unsplash') || imageSrc.includes('pexels') || imageSrc.includes('pixabay')) {\n          updateVisibility(image, visibility.visible);\n          return;\n        }\n        const imageUrl = previewImages[imageCounter];\n        if (undefined === imageUrl) {\n          updateVisibility(image, visibility.visible);\n          return;\n        }\n        if (!(imageUrl.url.includes('unsplash') || imageUrl.url.includes('pexels') || imageUrl.url.includes('pixabay'))) {\n          updateVisibility(image, visibility.visible);\n          return;\n        }\n        imageCounter++;\n        if (undefined === previewImages[imageCounter]) {\n          imageCounter = 0;\n        }\n        if ('PICTURE' === image.parentNode.nodeName) {\n          const sourceElements = image.parentNode.querySelectorAll('source');\n          sourceElements.forEach(source => {\n            source.setAttribute('srcset', imageUrl.optimized_url);\n          });\n          const imageElement = image.parentNode.querySelector('img');\n          imageElement.setAttribute('src', imageUrl.optimized_url);\n        } else {\n          const newImage = document.createElement('img');\n          newImage.src = imageUrl.optimized_url;\n          image.parentNode.replaceChild(newImage, image);\n        }\n        updateVisibility(image, visibility.visible);\n      };\n      image.onerror = () => {\n        updateVisibility(image, visibility.visible);\n      };\n    });\n  };\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useEffect)(() => {\n    // This effect will run whenever the importing state changes\n    if (importing) {\n      // Disable click events on all blocks\n      document.querySelectorAll('.single-block').forEach(block => {\n        block.style.pointerEvents = 'none';\n      });\n    } else {\n      // Re-enable click events on all blocks\n      document.querySelectorAll('.single-block').forEach(block => {\n        block.style.pointerEvents = 'auto';\n      });\n    }\n  }, [importing]);\n  const replaceContactDetails = contentStr => {\n    const emailSrc = 'contact@example.com';\n    const phoneSrc = '202-555-0188';\n    const addressSrc = '2360 Hood Avenue, San Diego, CA, 92123';\n    if (email) {\n      contentStr = contentStr.replace(emailSrc, email);\n    }\n    if (phone) {\n      contentStr = contentStr.replace(phoneSrc, phone);\n    }\n    if (address) {\n      contentStr = contentStr.replace(addressSrc, address);\n    }\n    return contentStr;\n  };\n  const replaceContainerImages = (styleContent, images = []) => {\n    if (disableAi) {\n      return styleContent;\n    }\n    if (Object.keys(dynamicContent).length === 0 || !dynamicContent) {\n      return styleContent;\n    }\n    if (images && images.length === 0) {\n      return styleContent;\n    }\n    const backgroundImageRegex = /background-image\\s*:\\s*url\\(['\"]?([^'\")]+)['\"]?\\)/g;\n    const newStyleContent = styleContent.replace(backgroundImageRegex, function (match, imageUrl) {\n      if ((0,_utils_js__WEBPACK_IMPORTED_MODULE_3__.shouldSkipReplacement)(imageUrl)) {\n        return match;\n      }\n      if (!images[containerImageCounter]?.url) {\n        return '';\n      }\n      const currentImageUrl = images[containerImageCounter]?.url;\n      containerImageCounter++;\n      containerImageCounter %= images.length;\n      return 'background-image: url(\"' + currentImageUrl + '\")';\n    });\n    return newStyleContent;\n  };\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useLayoutEffect)(() => {\n    let isMounted = true;\n    const previewImages = selectedImages;\n    const imgThumbnail = new Image();\n    imgThumbnail.src = thumbnail_image_url;\n    const imgFeatured = new Image();\n    imgFeatured.src = featured_image_url;\n    const thumbnailContainer = thumbnailContainerRef.current;\n    function handleThumbnailLoad(image, setURL) {\n      if (isMounted) {\n        image.onload = () => {\n          setURL(image.src);\n        };\n      }\n    }\n    handleThumbnailLoad(imgThumbnail, setThumbnailImageURL);\n    handleThumbnailLoad(imgFeatured, setFeaturedImageURL);\n    const astraWpEditorCss = document.getElementById('astra-wp-editor-styles-inline-css')?.textContent.replace(/:root/g, '.block-container').replace(/body/g, '.block-container'),\n      astraBlockEditorCss = document.getElementById('astra-block-editor-styles-inline-css')?.textContent.replace(/:root/g, '.block-container').replace(/body/g, '.block-container');\n    const wpStylesheet = ast_block_template_vars.wp_stylesheet;\n    let markup = ``;\n    if (stylesheet) {\n      stylesheet = replaceContainerImages(stylesheet, previewImages);\n    }\n    markup += wpStylesheet ? `<style type=\"text/css\" id=\"wp-includes-styles\">${wpStylesheet}</style>` : '';\n    markup += astraCustomizer ? `<style type=\"text/css\" id=\"gt-astra-customizer\">${astraCustomizer}</style>` : '';\n    markup += `<style type=\"text/css\" id=\"gt-spectra-common-stylesheet\">${spectra_common_styles}</style>`;\n    markup = stylesheet ? `${markup} <style type=\"text/css\" id=\"gt-common-stylesheet\">${stylesheet}</style>` : markup;\n    if (globalStylesheet) {\n      markup = markup + `<style type=\"text/css\" id=\"gt-global-stylesheet\"> ${globalStylesheet} </style>`;\n    }\n    if (astraWpEditorCss) {\n      markup = markup + `<style type=\"text/css\" id=\"gt-wpeditor-css\" > ${astraWpEditorCss} </style>`;\n    }\n    if (astraBlockEditorCss) {\n      markup = markup + `<style type=\"text/css\" id=\"gt-blockeditor-css\"> ${astraBlockEditorCss} </style>`;\n    }\n    if (thumbnailContainer && content) {\n      let shadow = thumbnailContainer.shadowRoot;\n      if (shadow === null) {\n        shadow = thumbnailContainer.attachShadow({\n          mode: 'open'\n        });\n      }\n      if (shadow === null) {\n        return;\n      }\n      let original_content = content;\n      if (!disableAi) {\n        const dynamic_content = dynamicContent ?? [];\n        if (dynamic_content && Object.keys(dynamic_content)?.length > 0) {\n          Object.keys(dynamic_content).forEach(key => {\n            original_content = dynamic_content[key] !== null ? original_content.replace(key, dynamic_content[key]) : original_content;\n          });\n        }\n        if (!!dynamicContent && Object.keys(dynamicContent).length > 0) {\n          original_content = replaceContactDetails(original_content);\n          original_content = replaceGoogleMapLocation(original_content);\n        }\n      }\n      shadow.innerHTML = markup + '<div class=\"st-block-container\">' + original_content + '</div>';\n      // shadow.innerHTML = markup + '<div class=\"st-block-container\">' + ast_block_template_vars.header_markup + original_content + ast_block_template_vars.footer_markup + '</div>';\n      colorPalette.forEach((color, index) => {\n        shadow?.host.style.setProperty(`--ast-global-color-${index}`, color);\n      });\n      const images = thumbnailContainer.shadowRoot.querySelectorAll('img');\n      if (shadow) {\n        images.forEach(imageItem => {\n          if ((0,_utils_js__WEBPACK_IMPORTED_MODULE_3__.shouldSkipReplacement)(imageItem.src) || disableAi || previewImages?.length === 0 || Object.keys(dynamicContent).length === 0 || !dynamicContent) {\n            return;\n          }\n          updateVisibility(imageItem, visibility.hidden);\n        });\n        updateScaling();\n        replaceImages(images, previewImages);\n      }\n    }\n    return () => {\n      isMounted = false;\n    };\n  }, [item, disableAi, dynamicContent, selectedImages]);\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useEffect)(() => {\n    const resizeObserver = new ResizeObserver(updateScaling);\n    resizeObserver.observe(document.documentElement);\n    return () => {\n      if (!resizeObserver) {\n        return;\n      }\n      resizeObserver.disconnect();\n    };\n  }, []);\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useEffect)(() => {\n    const astPopup = document.querySelector('#ast-block-templates-modal-wrap');\n    if (!astPopup) {\n      return;\n    }\n    const observer = new MutationObserver(updateScaling);\n    observer.observe(astPopup, {\n      childList: true,\n      attributes: true,\n      subtree: true\n    });\n    return () => {\n      if (!observer) {\n        return;\n      }\n      observer.disconnect();\n    };\n  }, []);\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useEffect)(() => {\n    const thumbnailContainer = thumbnailContainerRef?.current;\n    if (thumbnailContainer) {\n      const shadow = thumbnailContainer.shadowRoot;\n      colorPalette.forEach((color, index) => {\n        if (shadow === null) {\n          return;\n        }\n        shadow.host.style.setProperty(`--ast-global-color-${index}`, color);\n      });\n    }\n  }, [colorPalette]);\n  function updateScaling() {\n    const thumbnail = thumbnailRef?.current;\n    const thumbnailContainer = thumbnailContainerRef?.current;\n    if (!thumbnail || !thumbnailContainer) {\n      return;\n    }\n    const width = thumbnail.parentNode.offsetWidth;\n    const scale = width / 1200;\n    const scaledHeight = scale * thumbnailContainer.offsetHeight;\n    thumbnail.style.transform = `scale(${scale})`;\n    thumbnail.style.height = `${scaledHeight}px`;\n  }\n  const updateVisibility = (element, value) => {\n    if (!element) {\n      return;\n    }\n    element.style.visibility = value;\n  };\n  const replaceGoogleMapLocation = (contentStr = '') => {\n    if (!address) {\n      return contentStr;\n    }\n    const regex = /(src=\"https:\\/\\/maps\\.google\\.com\\/maps\\?q=)([^&]+)(&z=\\d+&hl=en&t=m&output=embed&iwloc=near\")/g;\n    return contentStr.replace(regex, `$1${encodeURIComponent(address)}$3`);\n  };\n  let scrollTimeout = 0;\n  let startScroll = 0;\n  const scrollToPosition = (element, position, duration) => {\n    const start = element.scrollTop;\n    const change = position - start;\n    const increment = 20;\n    let currentTime = 0;\n    const animateScroll = function () {\n      currentTime += increment;\n      const val = _utils_easing_functions__WEBPACK_IMPORTED_MODULE_4__[\"default\"].linearTween(currentTime, start, change, duration);\n      element.scrollTop = val;\n      if (currentTime < duration) {\n        scrollTimeout = setTimeout(animateScroll, increment);\n      }\n    };\n    animateScroll();\n  };\n  const handleScrollDown = () => {\n    if (item.type !== 'page') {\n      return;\n    }\n    const scrollContainer = thumbnailContainerRef.current;\n    if (scrollTimeout) {\n      clearTimeout(scrollTimeout);\n    }\n    startScroll = setTimeout(() => {\n      scrollToPosition(scrollContainer, scrollContainer.scrollHeight, 4000);\n    }, 1000);\n  };\n  const handleScrollUp = () => {\n    if (startScroll) {\n      clearTimeout(startScroll);\n    }\n    const scrollContainer = thumbnailContainerRef.current;\n    if (scrollTimeout) {\n      clearTimeout(scrollTimeout);\n    }\n    scrollToPosition(scrollContainer, 0, 1500);\n  };\n  const getInsertButtonText = () => {\n    if (spectraPluginStatus.notInstalled) {\n      return 'Install Spectra & Insert';\n    }\n    if (spectraPluginStatus.inactive) {\n      return 'Activate Spectra & Insert';\n    }\n    return 'Insert';\n  };\n  const handleOnClickSingleBlock = (event, blockItem) => {\n    if (importing || !event || event.target.closest('.gt-single-block-action-btns') !== null || typeof onClickBlock !== 'function') {\n      return;\n    }\n    onClickBlock(blockItem);\n  };\n\n  // Reset the counter when the popup is closed.\n  (0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.useEffect)(() => {\n    if (!togglePopup) {\n      imageCounter = 0;\n      containerImageCounter = 0;\n    }\n  }, [togglePopup]);\n  const originClass = is_rtl ? 'origin-top-right' : 'origin-top-left';\n  return /*#__PURE__*/React.createElement(_fade_in_out_fade_in_out_js__WEBPACK_IMPORTED_MODULE_5__[\"default\"], {\n    className: (0,_utils_helpers__WEBPACK_IMPORTED_MODULE_0__.classNames)('w-full h-fit', importing ? 'importing' : '')\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    className: (0,_utils_helpers__WEBPACK_IMPORTED_MODULE_0__.classNames)('cursor-pointer relative border border-solid border-border-primary hover:border-accent-spectra transition duration-150 ease-in-out overflow-hidden group', importing && 'border-accent-spectra')\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    className: `thumbnail left-0 m-0 min-h-[auto] overflow-visible text-left top-0 ${originClass} relative pointer-events-none`,\n    ref: thumbnailRef\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    className: \"absolute w-[1200px] pointer-events-none max-h-[1600px] overflow-hidden\",\n    ref: thumbnailContainerRef\n  }, !content && /*#__PURE__*/React.createElement(\"img\", {\n    srcSet: `${imageFeaturedlURL}, ${imageThumbnailURL}`,\n    src: imageThumbnailURL,\n    alt: \"Preview\"\n  }), /*#__PURE__*/React.createElement(\"div\", {\n    className: \"preview\"\n  }, /*#__PURE__*/React.createElement(\"span\", {\n    className: \"ast-block-templates-icon ast-block-templates-icon-search\"\n  })))), /*#__PURE__*/React.createElement(\"div\", {\n    className: (0,_utils_helpers__WEBPACK_IMPORTED_MODULE_0__.classNames)('absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end', importing ? 'pointer-events-none' : ''),\n    onMouseEnter: handleScrollDown,\n    onMouseLeave: handleScrollUp,\n    onClick: e => handleOnClickSingleBlock(e, item),\n    role: \"button\",\n    tabIndex: \"0\",\n    onKeyDown: e => e.key === 'Enter' ? handleOnClickSingleBlock(e, item) : null\n  }, /*#__PURE__*/React.createElement(\"div\", {\n    className: (0,_utils_helpers__WEBPACK_IMPORTED_MODULE_0__.classNames)('gt-single-block-action-btns opacity-100 md:opacity-0 group-hover:opacity-100 w-full flex items-center justify-between px-3 py-2 backdrop-blur-sm bg-white/[0.85] shadow-action-buttons transition-all duration-150 ease-in-out', true === selfState.importing ? 'opacity-100' : '')\n  }, /*#__PURE__*/React.createElement(_import_block_button_import_block_button__WEBPACK_IMPORTED_MODULE_1__[\"default\"], {\n    title: getInsertButtonText(),\n    showIcon: spectraPluginStatus.active,\n    liveRequest: true,\n    item: item,\n    importing: selfState.importing,\n    onClick: () => {\n      setSelfState({\n        ...selfState,\n        importing: true\n      });\n      setImporting(true);\n    },\n    onBlockImport: () => {\n      setSelfState({\n        ...selfState,\n        importing: false\n      });\n      setImporting(false);\n    },\n    onImportFail: () => {\n      setSelfState({\n        ...selfState,\n        importing: false\n      });\n      setImporting(false);\n    }\n  }), /*#__PURE__*/React.createElement(_favorite_single_block__WEBPACK_IMPORTED_MODULE_2__[\"default\"], {\n    item: item\n  })))));\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ((0,_wordpress_compose__WEBPACK_IMPORTED_MODULE_9__[\"default\"])((0,_wordpress_data__WEBPACK_IMPORTED_MODULE_10__[\"default\"])(select => {\n  const {\n    getDisableAi,\n    getDisablePreview,\n    getTogglePopup\n  } = select('ast-block-templates');\n  return {\n    disableAi: getDisableAi(),\n    disablePreview: getDisablePreview(),\n    togglePopup: getTogglePopup()\n  };\n}))((0,_wordpress_element__WEBPACK_IMPORTED_MODULE_6__.memo)(SingleBlock)));\n\n//# sourceURL=webpack://ast-block-templates/./src/components/reusable/single-block/lazy-single-block.js?");

/***/ })

}]);PK�][�Q4y
y
Tultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/starter-template-logo.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
	.st0{opacity:0.5;}
	.st1{fill:#FFFFFF;}
	.st2{opacity:0.8;}
</style>
<g>
	<g class="st0">
		<path class="st1" d="M68.02,6.1l-6.81,2.16l6.14,6.64l10.29,2.99l-2.82-8.47C73.99,6.76,71.01,5.1,68.02,6.1z"/>
		<path class="st1" d="M5.94,32.16l2.32,6.81l6.64-6.14l2.99-10.46l-8.47,2.82C6.6,26.18,4.94,29.34,5.94,32.16z"/>
		<path class="st1" d="M22.37,82.45l2.82,8.47c0.83,2.99,3.98,4.48,6.97,3.65l7.14-2.32l-5.98-6.47L22.37,82.45z"/>
		<path class="st1" d="M94.08,68.18l-2.32-7.14l-6.31,5.98l-3.32,10.95l8.47-2.82C93.41,74.32,95.24,71.16,94.08,68.18z"/>
	</g>
	<g class="st2">
		<path class="st1" d="M55.73,2.45c-2.16-2.32-5.48-2.49-7.8-0.33l-5.98,5.48l11.29,3.32l13.94,4.15l-6.14-6.64L55.73,2.45z"/>
		<path class="st1" d="M2.62,44.27c-2.32,2.16-2.49,5.48-0.33,7.8l5.15,5.64l3.15-10.95l4.15-13.94L8.1,38.96L2.62,44.27z"/>
		<path class="st1" d="M97.73,47.93l-5.15-5.48l-3.32,11.12l-3.98,13.28l6.31-5.98l5.64-5.31C99.72,53.73,99.89,50.25,97.73,47.93z"
			/>
		<path class="st1" d="M33.16,85.6l5.98,6.47l5.15,5.48c2.16,2.32,5.64,2.49,7.8,0.33l5.64-5.15l-10.79-3.15L33.16,85.6z"/>
	</g>
	<path class="st1" d="M92.42,22.36l-14.77-4.32l-10.29-2.99l-13.94-4.15L42.12,7.59L29.51,3.94c-3.15-0.83-6.47,0.83-7.3,3.98
		L17.89,22.7L14.9,33.15L10.75,47.1L7.6,58.05L3.78,71.16c-0.83,3.15,0.83,6.47,3.98,7.3l14.77,4.32l10.79,3.15l13.61,3.98
		l10.79,3.15l12.95,3.82c3.15,0.83,6.47-0.83,7.3-3.98l4.32-14.61l3.32-10.95l3.98-13.28l3.32-11.12l3.82-12.78
		C97.23,26.51,95.57,23.19,92.42,22.36z M67.69,26.68V38.3H52.25l0,0H31.5c0.17-0.83,0.5-1.83,0.83-2.66
		c0.66-1.66,1.66-3.32,3.15-4.65c1.33-1.16,2.99-2.49,4.65-3.15c1.66-0.83,3.65-1.16,5.64-1.16H67.69z M33.33,74.15V62.53h21.41
		c0.33,0,0.83,0,1.16-0.17c0.33-0.17,0.66-0.33,1-0.66c0.33-0.33,0.5-0.66,0.66-1c0.17-0.33,0.17-0.66,0.17-1.16
		c0-0.33,0-0.83-0.17-1.16c-0.17-0.33-0.33-0.66-0.66-1c-0.33-0.33-0.66-0.5-1-0.66c-0.33-0.17-0.66-0.17-1.16-0.17h-8.96
		c-1.83,0-3.98-0.33-5.64-1.16c-1.66-0.66-3.32-1.66-4.65-3.15c-1.16-1.16-2.49-2.99-3.15-4.65c-0.5-1-0.66-1.83-0.83-2.82h14.44
		h6.47h2.49c1.83,0,3.98,0.5,5.64,1.16c1.66,0.66,3.32,1.66,4.65,3.15c1.16,1.16,2.49,2.99,3.15,4.65c0.83,1.66,1.16,3.65,1.16,5.81
		c0,1.83-0.5,3.98-1.16,5.64c-0.66,1.66-1.66,3.32-3.15,4.65c-1.16,1.16-2.99,2.49-4.65,3.15c-1.83,0.83-3.82,1.16-5.81,1.16
		L33.33,74.15L33.33,74.15z"/>
</g>
</svg>
PK�][cN�c

Kultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/spectra-logo.svgnu�[���<svg width="60" height="60" viewBox="0 0 84 85" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M41.7849 0C33.5206 0 25.4419 2.49258 18.5705 7.16254C11.699 11.8325 6.34331 18.4701 3.18071 26.236C0.0181112 34.0018 -0.809377 42.5471 0.802901 50.7913C2.41518 59.0355 6.3948 66.6083 12.2385 72.552C18.0822 78.4958 25.5276 82.5435 33.633 84.1834C41.7385 85.8232 50.1401 84.9816 57.7753 81.7649C65.4105 78.5482 71.9363 73.1008 76.5277 66.1117C81.1191 59.1226 83.5697 50.9057 83.5697 42.5C83.565 31.2298 79.1612 20.4225 71.326 12.4533C63.4908 4.48402 52.8655 0.0048112 41.7849 0ZM57.5278 49.0175C57.5278 49.1264 57.5278 49.2354 57.5278 49.3443V49.6529V49.8526C57.3161 51.0856 56.8673 52.2639 56.207 53.3201L55.8143 53.8829L55.2431 54.5546C55.0482 54.8082 54.8268 55.0396 54.5827 55.2445V55.3353L54.4578 55.4261L54.2079 55.6258C54.1249 55.7007 54.0353 55.7675 53.9402 55.8255L53.6724 56.0071L34.3061 69.0602C34.1479 69.1683 33.9612 69.2253 33.7706 69.2236H33.5743C33.447 69.1967 33.3262 69.1443 33.2189 69.0695C33.1117 68.9947 33.0201 68.899 32.9495 68.7879C32.9495 68.7879 32.5033 67.9891 32.4676 67.9347V67.7531V67.6623V67.5534V67.4263V67.2811C31.7014 65.262 31.6378 63.0371 32.2872 60.9761C32.9366 58.9152 34.2601 57.1424 36.0375 55.9526L45.0691 49.8708C45.2101 49.7754 45.3201 49.6398 45.3853 49.4809C45.4505 49.322 45.4679 49.147 45.4355 48.9781C45.403 48.8091 45.3221 48.6537 45.2029 48.5315C45.0837 48.4093 44.9316 48.3257 44.7657 48.2913L34.1633 46.1128H33.8599H33.7706H33.485H33.1816H33.0567H32.896H32.8068L32.5212 46.0038H32.4319H32.2534L31.9679 45.8586L31.6823 45.7134L31.4145 45.55L31.1468 45.3866C30.3041 44.8521 29.5509 44.1841 28.9156 43.4077L28.6836 43.0809L28.4159 42.6634C27.73 41.6278 27.255 40.4629 27.0189 39.2375C26.7828 38.012 26.7905 36.751 27.0415 35.5286C27.228 34.6884 27.5221 33.8766 27.9161 33.1141C28.0232 32.9144 28.1124 32.7328 28.2195 32.5694L28.3802 32.3153C28.4948 32.1207 28.6199 31.9329 28.755 31.7525L28.9156 31.5528L29.112 31.3167L29.3083 31.0989L29.4333 30.9718L29.6475 30.754L29.8259 30.5906L30.0223 30.4272L30.2365 30.2456H30.3257L30.4685 30.1185H30.5578L30.7898 29.9551L50.049 16.9746C50.1725 16.8912 50.3113 16.8338 50.457 16.806C50.6027 16.7782 50.7524 16.7804 50.8973 16.8126C51.0421 16.8448 51.1791 16.9062 51.3002 16.9933C51.4212 17.0804 51.5238 17.1913 51.6019 17.3195L51.7626 17.5918L51.8875 17.846C51.8875 17.9368 51.9768 18.0094 52.0125 18.082C52.0125 18.082 52.0125 18.082 52.0125 18.191C52.0239 18.2325 52.0239 18.2765 52.0125 18.318L52.1195 18.5904C52.1292 18.6383 52.1292 18.6877 52.1195 18.7356C52.1195 18.7356 52.1195 18.7356 52.1195 18.8445C52.8288 20.8305 52.8625 23.0011 52.2153 25.0089C51.5681 27.0166 50.2774 28.7455 48.5497 29.9188L39.6251 35.9462C39.4842 36.0415 39.3742 36.1772 39.309 36.3361C39.2438 36.495 39.2263 36.6699 39.2588 36.8389C39.2912 37.0078 39.3722 37.1632 39.4914 37.2854C39.6106 37.4077 39.7627 37.4912 39.9286 37.5256L50.4417 39.686C52.5458 40.1281 54.4361 41.2935 55.7948 42.9862C57.1536 44.679 57.8979 46.796 57.9027 48.9812C57.5635 48.4003 57.5278 48.9812 57.5278 48.9812V49.0175Z" fill="url(#paint0_linear_619_170)"/>
<defs>
<linearGradient id="paint0_linear_619_170" x1="1.17098e-05" y1="1.49716e-06" x2="84.02" y2="71.3596" gradientUnits="userSpaceOnUse">
<stop stop-color="#4E01D1"/>
<stop offset="1" stop-color="#6104FF"/>
</linearGradient>
</defs>
</svg>
PK�][��:���Bultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/main.jsnu�[���/*! For license information please see main.js.LICENSE.txt */
(()=>{var e,t,r,n,a={5223:(e,t,r)=>{"use strict";function n(e){return e?(e.nodeName||"").toLowerCase():null}r.d(t,{A:()=>n})},8979:(e,t,r)=>{"use strict";function n(e){if(null==e)return window;if("[object Window]"!==e.toString()){var t=e.ownerDocument;return t&&t.defaultView||window}return e}r.d(t,{A:()=>n})},5581:(e,t,r)=>{"use strict";r.d(t,{Ng:()=>o,sb:()=>i,vq:()=>a});var n=r(8979);function a(e){return e instanceof(0,n.A)(e).Element||e instanceof Element}function i(e){return e instanceof(0,n.A)(e).HTMLElement||e instanceof HTMLElement}function o(e){return"undefined"!=typeof ShadowRoot&&(e instanceof(0,n.A)(e).ShadowRoot||e instanceof ShadowRoot)}},6607:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(5223),a=r(5581);const i={name:"applyStyles",enabled:!0,phase:"write",fn:function(e){var t=e.state;Object.keys(t.elements).forEach((function(e){var r=t.styles[e]||{},i=t.attributes[e]||{},o=t.elements[e];(0,a.sb)(o)&&(0,n.A)(o)&&(Object.assign(o.style,r),Object.keys(i).forEach((function(e){var t=i[e];!1===t?o.removeAttribute(e):o.setAttribute(e,!0===t?"":t)})))}))},effect:function(e){var t=e.state,r={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow),function(){Object.keys(t.elements).forEach((function(e){var i=t.elements[e],o=t.attributes[e]||{},s=Object.keys(t.styles.hasOwnProperty(e)?t.styles[e]:r[e]).reduce((function(e,t){return e[t]="",e}),{});(0,a.sb)(i)&&(0,n.A)(i)&&(Object.assign(i.style,s),Object.keys(o).forEach((function(e){i.removeAttribute(e)})))}))}},requires:["computeStyles"]}},2784:(e,t,r)=>{"use strict";r.d(t,{n4:()=>ye});var n=r(5581),a=Math.max,i=Math.min,o=Math.round,s=r(8979);function l(){var e=navigator.userAgentData;return null!=e&&e.brands&&Array.isArray(e.brands)?e.brands.map((function(e){return e.brand+"/"+e.version})).join(" "):navigator.userAgent}function c(){return!/^((?!chrome|android).)*safari/i.test(l())}function u(e,t,r){void 0===t&&(t=!1),void 0===r&&(r=!1);var a=e.getBoundingClientRect(),i=1,l=1;t&&(0,n.sb)(e)&&(i=e.offsetWidth>0&&o(a.width)/e.offsetWidth||1,l=e.offsetHeight>0&&o(a.height)/e.offsetHeight||1);var u=((0,n.vq)(e)?(0,s.A)(e):window).visualViewport,d=!c()&&r,p=(a.left+(d&&u?u.offsetLeft:0))/i,m=(a.top+(d&&u?u.offsetTop:0))/l,f=a.width/i,g=a.height/l;return{width:f,height:g,top:m,right:p+f,bottom:m+g,left:p,x:p,y:m}}function d(e){var t=(0,s.A)(e);return{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}var p=r(5223);function m(e){return(((0,n.vq)(e)?e.ownerDocument:e.document)||window.document).documentElement}function f(e){return u(m(e)).left+d(e).scrollLeft}function g(e){return(0,s.A)(e).getComputedStyle(e)}function h(e){var t=g(e),r=t.overflow,n=t.overflowX,a=t.overflowY;return/auto|scroll|overlay|hidden/.test(r+a+n)}function y(e,t,r){void 0===r&&(r=!1);var a,i,l=(0,n.sb)(t),c=(0,n.sb)(t)&&function(e){var t=e.getBoundingClientRect(),r=o(t.width)/e.offsetWidth||1,n=o(t.height)/e.offsetHeight||1;return 1!==r||1!==n}(t),g=m(t),y=u(e,c,r),b={scrollLeft:0,scrollTop:0},v={x:0,y:0};return(l||!l&&!r)&&(("body"!==(0,p.A)(t)||h(g))&&(b=(a=t)!==(0,s.A)(a)&&(0,n.sb)(a)?{scrollLeft:(i=a).scrollLeft,scrollTop:i.scrollTop}:d(a)),(0,n.sb)(t)?((v=u(t,!0)).x+=t.clientLeft,v.y+=t.clientTop):g&&(v.x=f(g))),{x:y.left+b.scrollLeft-v.x,y:y.top+b.scrollTop-v.y,width:y.width,height:y.height}}function b(e){var t=u(e),r=e.offsetWidth,n=e.offsetHeight;return Math.abs(t.width-r)<=1&&(r=t.width),Math.abs(t.height-n)<=1&&(n=t.height),{x:e.offsetLeft,y:e.offsetTop,width:r,height:n}}function v(e){return"html"===(0,p.A)(e)?e:e.assignedSlot||e.parentNode||((0,n.Ng)(e)?e.host:null)||m(e)}function w(e){return["html","body","#document"].indexOf((0,p.A)(e))>=0?e.ownerDocument.body:(0,n.sb)(e)&&h(e)?e:w(v(e))}function x(e,t){var r;void 0===t&&(t=[]);var n=w(e),a=n===(null==(r=e.ownerDocument)?void 0:r.body),i=(0,s.A)(n),o=a?[i].concat(i.visualViewport||[],h(n)?n:[]):n,l=t.concat(o);return a?l:l.concat(x(v(o)))}function _(e){return["table","td","th"].indexOf((0,p.A)(e))>=0}function E(e){return(0,n.sb)(e)&&"fixed"!==g(e).position?e.offsetParent:null}function k(e){for(var t=(0,s.A)(e),r=E(e);r&&_(r)&&"static"===g(r).position;)r=E(r);return r&&("html"===(0,p.A)(r)||"body"===(0,p.A)(r)&&"static"===g(r).position)?t:r||function(e){var t=/firefox/i.test(l());if(/Trident/i.test(l())&&(0,n.sb)(e)&&"fixed"===g(e).position)return null;var r=v(e);for((0,n.Ng)(r)&&(r=r.host);(0,n.sb)(r)&&["html","body"].indexOf((0,p.A)(r))<0;){var a=g(r);if("none"!==a.transform||"none"!==a.perspective||"paint"===a.contain||-1!==["transform","perspective"].indexOf(a.willChange)||t&&"filter"===a.willChange||t&&a.filter&&"none"!==a.filter)return r;r=r.parentNode}return null}(e)||t}var S="top",C="bottom",R="right",A="left",P="auto",T=[S,C,R,A],N="start",I="end",O="viewport",L="popper",B=T.reduce((function(e,t){return e.concat([t+"-"+N,t+"-"+I])}),[]),j=[].concat(T,[P]).reduce((function(e,t){return e.concat([t,t+"-"+N,t+"-"+I])}),[]),D=["beforeRead","read","afterRead","beforeMain","main","afterMain","beforeWrite","write","afterWrite"];function F(e){var t=new Map,r=new Set,n=[];function a(e){r.add(e.name),[].concat(e.requires||[],e.requiresIfExists||[]).forEach((function(e){if(!r.has(e)){var n=t.get(e);n&&a(n)}})),n.push(e)}return e.forEach((function(e){t.set(e.name,e)})),e.forEach((function(e){r.has(e.name)||a(e)})),n}var M={placement:"bottom",modifiers:[],strategy:"absolute"};function z(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return!t.some((function(e){return!(e&&"function"==typeof e.getBoundingClientRect)}))}function V(e){void 0===e&&(e={});var t=e,r=t.defaultModifiers,a=void 0===r?[]:r,i=t.defaultOptions,o=void 0===i?M:i;return function(e,t,r){void 0===r&&(r=o);var i,s,l={placement:"bottom",orderedModifiers:[],options:Object.assign({},M,o),modifiersData:{},elements:{reference:e,popper:t},attributes:{},styles:{}},c=[],u=!1,d={state:l,setOptions:function(r){var i="function"==typeof r?r(l.options):r;p(),l.options=Object.assign({},o,l.options,i),l.scrollParents={reference:(0,n.vq)(e)?x(e):e.contextElement?x(e.contextElement):[],popper:x(t)};var s,u,m=function(e){var t=F(e);return D.reduce((function(e,r){return e.concat(t.filter((function(e){return e.phase===r})))}),[])}((s=[].concat(a,l.options.modifiers),u=s.reduce((function(e,t){var r=e[t.name];return e[t.name]=r?Object.assign({},r,t,{options:Object.assign({},r.options,t.options),data:Object.assign({},r.data,t.data)}):t,e}),{}),Object.keys(u).map((function(e){return u[e]}))));return l.orderedModifiers=m.filter((function(e){return e.enabled})),l.orderedModifiers.forEach((function(e){var t=e.name,r=e.options,n=void 0===r?{}:r,a=e.effect;if("function"==typeof a){var i=a({state:l,name:t,instance:d,options:n});c.push(i||function(){})}})),d.update()},forceUpdate:function(){if(!u){var e=l.elements,t=e.reference,r=e.popper;if(z(t,r)){l.rects={reference:y(t,k(r),"fixed"===l.options.strategy),popper:b(r)},l.reset=!1,l.placement=l.options.placement,l.orderedModifiers.forEach((function(e){return l.modifiersData[e.name]=Object.assign({},e.data)}));for(var n=0;n<l.orderedModifiers.length;n++)if(!0!==l.reset){var a=l.orderedModifiers[n],i=a.fn,o=a.options,s=void 0===o?{}:o,c=a.name;"function"==typeof i&&(l=i({state:l,options:s,name:c,instance:d})||l)}else l.reset=!1,n=-1}}},update:(i=function(){return new Promise((function(e){d.forceUpdate(),e(l)}))},function(){return s||(s=new Promise((function(e){Promise.resolve().then((function(){s=void 0,e(i())}))}))),s}),destroy:function(){p(),u=!0}};if(!z(e,t))return d;function p(){c.forEach((function(e){return e()})),c=[]}return d.setOptions(r).then((function(e){!u&&r.onFirstUpdate&&r.onFirstUpdate(e)})),d}}var W={passive:!0};const U={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(e){var t=e.state,r=e.instance,n=e.options,a=n.scroll,i=void 0===a||a,o=n.resize,l=void 0===o||o,c=(0,s.A)(t.elements.popper),u=[].concat(t.scrollParents.reference,t.scrollParents.popper);return i&&u.forEach((function(e){e.addEventListener("scroll",r.update,W)})),l&&c.addEventListener("resize",r.update,W),function(){i&&u.forEach((function(e){e.removeEventListener("scroll",r.update,W)})),l&&c.removeEventListener("resize",r.update,W)}},data:{}};function H(e){return e.split("-")[0]}function $(e){return e.split("-")[1]}function Z(e){return["top","bottom"].indexOf(e)>=0?"x":"y"}function G(e){var t,r=e.reference,n=e.element,a=e.placement,i=a?H(a):null,o=a?$(a):null,s=r.x+r.width/2-n.width/2,l=r.y+r.height/2-n.height/2;switch(i){case S:t={x:s,y:r.y-n.height};break;case C:t={x:s,y:r.y+r.height};break;case R:t={x:r.x+r.width,y:l};break;case A:t={x:r.x-n.width,y:l};break;default:t={x:r.x,y:r.y}}var c=i?Z(i):null;if(null!=c){var u="y"===c?"height":"width";switch(o){case N:t[c]=t[c]-(r[u]/2-n[u]/2);break;case I:t[c]=t[c]+(r[u]/2-n[u]/2)}}return t}const q={name:"popperOffsets",enabled:!0,phase:"read",fn:function(e){var t=e.state,r=e.name;t.modifiersData[r]=G({reference:t.rects.reference,element:t.rects.popper,strategy:"absolute",placement:t.placement})},data:{}};var Y={top:"auto",right:"auto",bottom:"auto",left:"auto"};function K(e){var t,r=e.popper,n=e.popperRect,a=e.placement,i=e.variation,l=e.offsets,c=e.position,u=e.gpuAcceleration,d=e.adaptive,p=e.roundOffsets,f=e.isFixed,h=l.x,y=void 0===h?0:h,b=l.y,v=void 0===b?0:b,w="function"==typeof p?p({x:y,y:v}):{x:y,y:v};y=w.x,v=w.y;var x=l.hasOwnProperty("x"),_=l.hasOwnProperty("y"),E=A,P=S,T=window;if(d){var N=k(r),O="clientHeight",L="clientWidth";N===(0,s.A)(r)&&"static"!==g(N=m(r)).position&&"absolute"===c&&(O="scrollHeight",L="scrollWidth"),(a===S||(a===A||a===R)&&i===I)&&(P=C,v-=(f&&N===T&&T.visualViewport?T.visualViewport.height:N[O])-n.height,v*=u?1:-1),a!==A&&(a!==S&&a!==C||i!==I)||(E=R,y-=(f&&N===T&&T.visualViewport?T.visualViewport.width:N[L])-n.width,y*=u?1:-1)}var B,j=Object.assign({position:c},d&&Y),D=!0===p?function(e,t){var r=e.x,n=e.y,a=t.devicePixelRatio||1;return{x:o(r*a)/a||0,y:o(n*a)/a||0}}({x:y,y:v},(0,s.A)(r)):{x:y,y:v};return y=D.x,v=D.y,u?Object.assign({},j,((B={})[P]=_?"0":"",B[E]=x?"0":"",B.transform=(T.devicePixelRatio||1)<=1?"translate("+y+"px, "+v+"px)":"translate3d("+y+"px, "+v+"px, 0)",B)):Object.assign({},j,((t={})[P]=_?v+"px":"",t[E]=x?y+"px":"",t.transform="",t))}const X={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(e){var t=e.state,r=e.options,n=r.gpuAcceleration,a=void 0===n||n,i=r.adaptive,o=void 0===i||i,s=r.roundOffsets,l=void 0===s||s,c={placement:H(t.placement),variation:$(t.placement),popper:t.elements.popper,popperRect:t.rects.popper,gpuAcceleration:a,isFixed:"fixed"===t.options.strategy};null!=t.modifiersData.popperOffsets&&(t.styles.popper=Object.assign({},t.styles.popper,K(Object.assign({},c,{offsets:t.modifiersData.popperOffsets,position:t.options.strategy,adaptive:o,roundOffsets:l})))),null!=t.modifiersData.arrow&&(t.styles.arrow=Object.assign({},t.styles.arrow,K(Object.assign({},c,{offsets:t.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-placement":t.placement})},data:{}};var J=r(6607);const Q={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(e){var t=e.state,r=e.options,n=e.name,a=r.offset,i=void 0===a?[0,0]:a,o=j.reduce((function(e,r){return e[r]=function(e,t,r){var n=H(e),a=[A,S].indexOf(n)>=0?-1:1,i="function"==typeof r?r(Object.assign({},t,{placement:e})):r,o=i[0],s=i[1];return o=o||0,s=(s||0)*a,[A,R].indexOf(n)>=0?{x:s,y:o}:{x:o,y:s}}(r,t.rects,i),e}),{}),s=o[t.placement],l=s.x,c=s.y;null!=t.modifiersData.popperOffsets&&(t.modifiersData.popperOffsets.x+=l,t.modifiersData.popperOffsets.y+=c),t.modifiersData[n]=o}};var ee={left:"right",right:"left",bottom:"top",top:"bottom"};function te(e){return e.replace(/left|right|bottom|top/g,(function(e){return ee[e]}))}var re={start:"end",end:"start"};function ne(e){return e.replace(/start|end/g,(function(e){return re[e]}))}function ae(e,t){var r=t.getRootNode&&t.getRootNode();if(e.contains(t))return!0;if(r&&(0,n.Ng)(r)){var a=t;do{if(a&&e.isSameNode(a))return!0;a=a.parentNode||a.host}while(a)}return!1}function ie(e){return Object.assign({},e,{left:e.x,top:e.y,right:e.x+e.width,bottom:e.y+e.height})}function oe(e,t,r){return t===O?ie(function(e,t){var r=(0,s.A)(e),n=m(e),a=r.visualViewport,i=n.clientWidth,o=n.clientHeight,l=0,u=0;if(a){i=a.width,o=a.height;var d=c();(d||!d&&"fixed"===t)&&(l=a.offsetLeft,u=a.offsetTop)}return{width:i,height:o,x:l+f(e),y:u}}(e,r)):(0,n.vq)(t)?function(e,t){var r=u(e,!1,"fixed"===t);return r.top=r.top+e.clientTop,r.left=r.left+e.clientLeft,r.bottom=r.top+e.clientHeight,r.right=r.left+e.clientWidth,r.width=e.clientWidth,r.height=e.clientHeight,r.x=r.left,r.y=r.top,r}(t,r):ie(function(e){var t,r=m(e),n=d(e),i=null==(t=e.ownerDocument)?void 0:t.body,o=a(r.scrollWidth,r.clientWidth,i?i.scrollWidth:0,i?i.clientWidth:0),s=a(r.scrollHeight,r.clientHeight,i?i.scrollHeight:0,i?i.clientHeight:0),l=-n.scrollLeft+f(e),c=-n.scrollTop;return"rtl"===g(i||r).direction&&(l+=a(r.clientWidth,i?i.clientWidth:0)-o),{width:o,height:s,x:l,y:c}}(m(e)))}function se(e){return Object.assign({},{top:0,right:0,bottom:0,left:0},e)}function le(e,t){return t.reduce((function(t,r){return t[r]=e,t}),{})}function ce(e,t){void 0===t&&(t={});var r=t,o=r.placement,s=void 0===o?e.placement:o,l=r.strategy,c=void 0===l?e.strategy:l,d=r.boundary,f=void 0===d?"clippingParents":d,h=r.rootBoundary,y=void 0===h?O:h,b=r.elementContext,w=void 0===b?L:b,_=r.altBoundary,E=void 0!==_&&_,A=r.padding,P=void 0===A?0:A,N=se("number"!=typeof P?P:le(P,T)),I=w===L?"reference":L,B=e.rects.popper,j=e.elements[E?I:w],D=function(e,t,r,o){var s="clippingParents"===t?function(e){var t=x(v(e)),r=["absolute","fixed"].indexOf(g(e).position)>=0&&(0,n.sb)(e)?k(e):e;return(0,n.vq)(r)?t.filter((function(e){return(0,n.vq)(e)&&ae(e,r)&&"body"!==(0,p.A)(e)})):[]}(e):[].concat(t),l=[].concat(s,[r]),c=l[0],u=l.reduce((function(t,r){var n=oe(e,r,o);return t.top=a(n.top,t.top),t.right=i(n.right,t.right),t.bottom=i(n.bottom,t.bottom),t.left=a(n.left,t.left),t}),oe(e,c,o));return u.width=u.right-u.left,u.height=u.bottom-u.top,u.x=u.left,u.y=u.top,u}((0,n.vq)(j)?j:j.contextElement||m(e.elements.popper),f,y,c),F=u(e.elements.reference),M=G({reference:F,element:B,strategy:"absolute",placement:s}),z=ie(Object.assign({},B,M)),V=w===L?z:F,W={top:D.top-V.top+N.top,bottom:V.bottom-D.bottom+N.bottom,left:D.left-V.left+N.left,right:V.right-D.right+N.right},U=e.modifiersData.offset;if(w===L&&U){var H=U[s];Object.keys(W).forEach((function(e){var t=[R,C].indexOf(e)>=0?1:-1,r=[S,C].indexOf(e)>=0?"y":"x";W[e]+=H[r]*t}))}return W}const ue={name:"flip",enabled:!0,phase:"main",fn:function(e){var t=e.state,r=e.options,n=e.name;if(!t.modifiersData[n]._skip){for(var a=r.mainAxis,i=void 0===a||a,o=r.altAxis,s=void 0===o||o,l=r.fallbackPlacements,c=r.padding,u=r.boundary,d=r.rootBoundary,p=r.altBoundary,m=r.flipVariations,f=void 0===m||m,g=r.allowedAutoPlacements,h=t.options.placement,y=H(h),b=l||(y!==h&&f?function(e){if(H(e)===P)return[];var t=te(e);return[ne(e),t,ne(t)]}(h):[te(h)]),v=[h].concat(b).reduce((function(e,r){return e.concat(H(r)===P?function(e,t){void 0===t&&(t={});var r=t,n=r.placement,a=r.boundary,i=r.rootBoundary,o=r.padding,s=r.flipVariations,l=r.allowedAutoPlacements,c=void 0===l?j:l,u=$(n),d=u?s?B:B.filter((function(e){return $(e)===u})):T,p=d.filter((function(e){return c.indexOf(e)>=0}));0===p.length&&(p=d);var m=p.reduce((function(t,r){return t[r]=ce(e,{placement:r,boundary:a,rootBoundary:i,padding:o})[H(r)],t}),{});return Object.keys(m).sort((function(e,t){return m[e]-m[t]}))}(t,{placement:r,boundary:u,rootBoundary:d,padding:c,flipVariations:f,allowedAutoPlacements:g}):r)}),[]),w=t.rects.reference,x=t.rects.popper,_=new Map,E=!0,k=v[0],I=0;I<v.length;I++){var O=v[I],L=H(O),D=$(O)===N,F=[S,C].indexOf(L)>=0,M=F?"width":"height",z=ce(t,{placement:O,boundary:u,rootBoundary:d,altBoundary:p,padding:c}),V=F?D?R:A:D?C:S;w[M]>x[M]&&(V=te(V));var W=te(V),U=[];if(i&&U.push(z[L]<=0),s&&U.push(z[V]<=0,z[W]<=0),U.every((function(e){return e}))){k=O,E=!1;break}_.set(O,U)}if(E)for(var Z=function(e){var t=v.find((function(t){var r=_.get(t);if(r)return r.slice(0,e).every((function(e){return e}))}));if(t)return k=t,"break"},G=f?3:1;G>0&&"break"!==Z(G);G--);t.placement!==k&&(t.modifiersData[n]._skip=!0,t.placement=k,t.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function de(e,t,r){return a(e,i(t,r))}const pe={name:"preventOverflow",enabled:!0,phase:"main",fn:function(e){var t=e.state,r=e.options,n=e.name,o=r.mainAxis,s=void 0===o||o,l=r.altAxis,c=void 0!==l&&l,u=r.boundary,d=r.rootBoundary,p=r.altBoundary,m=r.padding,f=r.tether,g=void 0===f||f,h=r.tetherOffset,y=void 0===h?0:h,v=ce(t,{boundary:u,rootBoundary:d,padding:m,altBoundary:p}),w=H(t.placement),x=$(t.placement),_=!x,E=Z(w),P="x"===E?"y":"x",T=t.modifiersData.popperOffsets,I=t.rects.reference,O=t.rects.popper,L="function"==typeof y?y(Object.assign({},t.rects,{placement:t.placement})):y,B="number"==typeof L?{mainAxis:L,altAxis:L}:Object.assign({mainAxis:0,altAxis:0},L),j=t.modifiersData.offset?t.modifiersData.offset[t.placement]:null,D={x:0,y:0};if(T){if(s){var F,M="y"===E?S:A,z="y"===E?C:R,V="y"===E?"height":"width",W=T[E],U=W+v[M],G=W-v[z],q=g?-O[V]/2:0,Y=x===N?I[V]:O[V],K=x===N?-O[V]:-I[V],X=t.elements.arrow,J=g&&X?b(X):{width:0,height:0},Q=t.modifiersData["arrow#persistent"]?t.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},ee=Q[M],te=Q[z],re=de(0,I[V],J[V]),ne=_?I[V]/2-q-re-ee-B.mainAxis:Y-re-ee-B.mainAxis,ae=_?-I[V]/2+q+re+te+B.mainAxis:K+re+te+B.mainAxis,ie=t.elements.arrow&&k(t.elements.arrow),oe=ie?"y"===E?ie.clientTop||0:ie.clientLeft||0:0,se=null!=(F=null==j?void 0:j[E])?F:0,le=W+ae-se,ue=de(g?i(U,W+ne-se-oe):U,W,g?a(G,le):G);T[E]=ue,D[E]=ue-W}if(c){var pe,me="x"===E?S:A,fe="x"===E?C:R,ge=T[P],he="y"===P?"height":"width",ye=ge+v[me],be=ge-v[fe],ve=-1!==[S,A].indexOf(w),we=null!=(pe=null==j?void 0:j[P])?pe:0,xe=ve?ye:ge-I[he]-O[he]-we+B.altAxis,_e=ve?ge+I[he]+O[he]-we-B.altAxis:be,Ee=g&&ve?function(e,t,r){var n=de(e,t,r);return n>r?r:n}(xe,ge,_e):de(g?xe:ye,ge,g?_e:be);T[P]=Ee,D[P]=Ee-ge}t.modifiersData[n]=D}},requiresIfExists:["offset"]},me={name:"arrow",enabled:!0,phase:"main",fn:function(e){var t,r=e.state,n=e.name,a=e.options,i=r.elements.arrow,o=r.modifiersData.popperOffsets,s=H(r.placement),l=Z(s),c=[A,R].indexOf(s)>=0?"height":"width";if(i&&o){var u=function(e,t){return se("number"!=typeof(e="function"==typeof e?e(Object.assign({},t.rects,{placement:t.placement})):e)?e:le(e,T))}(a.padding,r),d=b(i),p="y"===l?S:A,m="y"===l?C:R,f=r.rects.reference[c]+r.rects.reference[l]-o[l]-r.rects.popper[c],g=o[l]-r.rects.reference[l],h=k(i),y=h?"y"===l?h.clientHeight||0:h.clientWidth||0:0,v=f/2-g/2,w=u[p],x=y-d[c]-u[m],_=y/2-d[c]/2+v,E=de(w,_,x),P=l;r.modifiersData[n]=((t={})[P]=E,t.centerOffset=E-_,t)}},effect:function(e){var t=e.state,r=e.options.element,n=void 0===r?"[data-popper-arrow]":r;null!=n&&("string"!=typeof n||(n=t.elements.popper.querySelector(n)))&&ae(t.elements.popper,n)&&(t.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function fe(e,t,r){return void 0===r&&(r={x:0,y:0}),{top:e.top-t.height-r.y,right:e.right-t.width+r.x,bottom:e.bottom-t.height+r.y,left:e.left-t.width-r.x}}function ge(e){return[S,R,C,A].some((function(t){return e[t]>=0}))}const he={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(e){var t=e.state,r=e.name,n=t.rects.reference,a=t.rects.popper,i=t.modifiersData.preventOverflow,o=ce(t,{elementContext:"reference"}),s=ce(t,{altBoundary:!0}),l=fe(o,n),c=fe(s,a,i),u=ge(l),d=ge(c);t.modifiersData[r]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:u,hasPopperEscaped:d},t.attributes.popper=Object.assign({},t.attributes.popper,{"data-popper-reference-hidden":u,"data-popper-escaped":d})}};var ye=V({defaultModifiers:[U,q,X,J.A,Q,ue,pe,me,he]})},3771:(e,t,r)=>{"use strict";r.d(t,{A:()=>a});const n=(e=!1)=>(...t)=>(...r)=>{const n=t.flat();return e&&n.reverse(),n.reduce(((e,t)=>[t(...e)]),r)[0]},a=(n(),n(!0))},6043:(e,t,r)=>{"use strict";r.d(t,{f:()=>o});var n=r(1635),a=r(7482);function i(e,t){var r=e.charAt(0),n=e.substr(1).toLowerCase();return t>0&&r>="0"&&r<="9"?"_"+r+n:""+r.toUpperCase()+n}function o(e,t){return r=>{const n=e(r);return n.displayName=s(t,r),n}}const s=(e,t)=>{const r=t.displayName||t.name||"Component";var o,s;return`${o=null!=e?e:"",void 0===s&&(s={}),(0,a.W)(o,(0,n.Cl)({delimiter:"",transform:i},s))}(${r})`}},9637:(e,t,r)=>{"use strict";r.d(t,{A:()=>l});var n=r(1594),a=r(9166);const i=(0,n.createContext)(a.A),{Consumer:o,Provider:s}=i;function l(){return(0,n.useContext)(i)}},6597:(e,t,r)=>{"use strict";r.d(t,{A:()=>a});var n=r(9637);const a=e=>{const{dispatch:t}=(0,n.A)();return void 0===e?t:t(e)}},3914:(e,t,r)=>{"use strict";r.d(t,{A:()=>p}),r(8939);const n="undefined"==typeof window?e=>{setTimeout((()=>e(Date.now())),0)}:window.requestIdleCallback;var a=r(1594),i=r(8671),o=r(9637);const s=(0,a.createContext)(!1),{Consumer:l,Provider:c}=s,u=(()=>{const e=new Map;let t=!1;const r=a=>{for(const[t,r]of e)if(e.delete(t),r(),"number"==typeof a||a.timeRemaining()<=0)break;0!==e.size?n(r):t=!1};return{add:(a,i)=>{e.set(a,i),t||(t=!0,n(r))},flush:t=>{const r=e.get(t);return void 0!==r&&(e.delete(t),r(),!0)},cancel:t=>e.delete(t),reset:()=>{e.clear(),t=!1}}})();function d(e,t,r){const n=(0,o.A)(),l=(0,a.useContext)(s),c=(0,a.useMemo)((()=>function(e,t){const r=t?e.suspendSelect:e.select,n={};let a,o,s,l,c=!1;const d=new Map;function p(t){var r;return null!==(r=e.stores[t]?.store?.getState?.())&&void 0!==r?r:{}}return(t,m)=>{function f(){if(c&&t===a)return o;const m={current:null},f=e.__unstableMarkListeningStores((()=>t(r,e)),m);if(l)l.updateStores(m.current);else{for(const e of m.current)d.set(e,p(e));l=(t=>{const r=[...t],a=new Set;return{subscribe:function(t){if(c)for(const e of r)d.get(e)!==p(e)&&(c=!1);d.clear();const i=()=>{c=!1,t()},o=()=>{s?u.add(n,i):i()},l=[];function m(t){l.push(e.subscribe(o,t))}for(const e of r)m(e);return a.add(m),()=>{a.delete(m);for(const e of l.values())e?.();u.cancel(n)}},updateStores:function(e){for(const t of e)if(!r.includes(t)){r.push(t);for(const e of a)e(t)}}}})(m.current)}(0,i.Ay)(o,f)||(o=f),a=t,c=!0}return s&&!m&&(c=!1,u.cancel(n)),f(),s=m,{subscribe:l.subscribe,getValue:function(){return f(),o}}}}(n,e)),[n,e]),d=(0,a.useCallback)(t,r),{subscribe:p,getValue:m}=c(d,l),f=(0,a.useSyncExternalStore)(p,m,m);return(0,a.useDebugValue)(f),f}function p(e,t){const r="function"!=typeof e,n=(0,a.useRef)(r);if(r!==n.current){const e=n.current?"static":"mapping";throw new Error(`Switching useSelect from ${e} to ${r?"static":"mapping"} is not allowed`)}return r?(i=e,(0,o.A)().select(i)):d(!1,e,t);var i}},7642:(e,t,r)=>{"use strict";r.d(t,{A:()=>s});var n=r(1594),a=r(6043);const i="undefined"!=typeof window?n.useLayoutEffect:n.useEffect;var o=r(9637);const s=e=>(0,a.f)((t=>r=>{const a=((e,t)=>{const r=(0,o.A)(),a=(0,n.useRef)(e);return i((()=>{a.current=e})),(0,n.useMemo)((()=>{const e=a.current(r.dispatch,r);return Object.fromEntries(Object.entries(e).map((([e,t])=>("function"!=typeof t&&console.warn(`Property ${e} returned from dispatchMap in useDispatchWithMap must be a function.`),[e,(...t)=>a.current(r.dispatch,r)[e](...t)]))))}),[r,...t])})(((t,n)=>e(t,r,n)),[]);return(0,n.createElement)(t,{...r,...a})}),"withDispatch")},8242:(e,t,r)=>{"use strict";r.d(t,{A:()=>l});var n=r(1594),a=r(6043),i=r(8671);const o=(0,a.f)((function(e){return e.prototype instanceof n.Component?class extends e{shouldComponentUpdate(e,t){return!(0,i.Ay)(e,this.props)||!(0,i.Ay)(t,this.state)}}:class extends n.Component{shouldComponentUpdate(e){return!(0,i.Ay)(e,this.props)}render(){return(0,n.createElement)(e,{...this.props})}}}),"pure");var s=r(3914);const l=e=>(0,a.f)((t=>o((r=>{const a=(0,s.A)(((t,n)=>e(t,r,n)));return(0,n.createElement)(t,{...r,...a})}))),"withSelect")},9166:(e,t,r)=>{"use strict";r.d(t,{A:()=>c});var n=r(1892),a=r(3473);const i={name:"core/data",instantiate(e){const t=t=>(r,...n)=>e.select(r)[t](...n),r=t=>(r,...n)=>e.dispatch(r)[t](...n);return{getSelectors:()=>Object.fromEntries(["getIsResolving","hasStartedResolution","hasFinishedResolution","isResolving","getCachedResolvers"].map((e=>[e,t(e)]))),getActions:()=>Object.fromEntries(["startResolution","finishResolution","invalidateResolution","invalidateResolutionForStore","invalidateResolutionForStoreSelector"].map((e=>[e,r(e)]))),subscribe:()=>()=>()=>{}}}};function o(){let e=!1,t=!1;const r=new Set,n=()=>Array.from(r).forEach((e=>e()));return{get isPaused(){return e},subscribe:e=>(r.add(e),()=>r.delete(e)),pause(){e=!0},resume(){e=!1,t&&(t=!1,n())},emit(){e?t=!0:n()}}}var s=r(7203);function l(e){return"string"==typeof e?e:e.name}const c=function(e={},t=null){const r={},c=o();let u=null;function d(){c.emit()}function p(e,n){if(r[e])return console.error('Store "'+e+'" is already registered.'),r[e];const a=n();if("function"!=typeof a.getSelectors)throw new TypeError("store.getSelectors must be a function");if("function"!=typeof a.getActions)throw new TypeError("store.getActions must be a function");if("function"!=typeof a.subscribe)throw new TypeError("store.subscribe must be a function");a.emitter=o();const i=a.subscribe;if(a.subscribe=e=>{const t=a.emitter.subscribe(e),r=i((()=>{a.emitter.isPaused?a.emitter.emit():e()}));return()=>{r?.(),t?.()}},r[e]=a,a.subscribe(d),t)try{(0,s.T)(a.store).registerPrivateActions((0,s.T)(t).privateActionsOf(e)),(0,s.T)(a.store).registerPrivateSelectors((0,s.T)(t).privateSelectorsOf(e))}catch(e){}return a}let m={batch:function(e){c.isPaused?e():(c.pause(),Object.values(r).forEach((e=>e.emitter.pause())),e(),c.resume(),Object.values(r).forEach((e=>e.emitter.resume())))},stores:r,namespaces:r,subscribe:(e,n)=>{if(!n)return c.subscribe(e);const a=l(n),i=r[a];return i?i.subscribe(e):t?t.subscribe(e,n):c.subscribe(e)},select:function(e){const n=l(e);u?.add(n);const a=r[n];return a?a.getSelectors():t?.select(n)},resolveSelect:function(e){const n=l(e);u?.add(n);const a=r[n];return a?a.getResolveSelectors():t&&t.resolveSelect(n)},suspendSelect:function(e){const n=l(e);u?.add(n);const a=r[n];return a?a.getSuspendSelectors():t&&t.suspendSelect(n)},dispatch:function(e){const n=l(e),a=r[n];return a?a.getActions():t&&t.dispatch(n)},use:function(e,t){if(e)return m={...m,...e(m,t)},m},register:function(e){p(e.name,(()=>e.instantiate(m)))},registerGenericStore:function(e,t){(0,n.A)("wp.data.registerGenericStore",{since:"5.9",alternative:"wp.data.register( storeDescriptor )"}),p(e,(()=>t))},registerStore:function(e,t){if(!t.reducer)throw new TypeError("Must specify store reducer");return p(e,(()=>(0,a.A)(e,t).instantiate(m))).store},__unstableMarkListeningStores:function(e,t){u=new Set;try{return e.call(this)}finally{t.current=Array.from(u),u=null}}};m.register(i);for(const[t,r]of Object.entries(e))m.register((0,a.A)(t,r));t&&t.subscribe(d);const f=(g=m,Object.fromEntries(Object.entries(g).map((([e,t])=>"function"!=typeof t?[e,t]:[e,function(){return m[e].apply(null,arguments)}]))));var g;return(0,s.s)(f,{privateActionsOf:e=>{try{return(0,s.T)(r[e].store).privateActions}catch(e){return{}}},privateSelectorsOf:e=>{try{return(0,s.T)(r[e].store).privateSelectors}catch(e){return{}}}}),f}()},7203:(e,t,r)=>{"use strict";r.d(t,{s:()=>u,T:()=>d});const n=["@wordpress/block-directory","@wordpress/block-editor","@wordpress/block-library","@wordpress/blocks","@wordpress/commands","@wordpress/components","@wordpress/core-commands","@wordpress/core-data","@wordpress/customize-widgets","@wordpress/data","@wordpress/edit-post","@wordpress/edit-site","@wordpress/edit-widgets","@wordpress/editor","@wordpress/format-library","@wordpress/interface","@wordpress/patterns","@wordpress/preferences","@wordpress/reusable-blocks","@wordpress/router","@wordpress/dataviews"],a=[];let i;try{i=!process.env.IS_WORDPRESS_CORE}catch(e){i=!0}function o(e,t){if(!e)throw new Error("Cannot lock an undefined object.");c in e||(e[c]={}),l.set(e[c],t)}function s(e){if(!e)throw new Error("Cannot unlock an undefined object.");if(!(c in e))throw new Error("Cannot unlock an object that was not locked before. ");return l.get(e[c])}const l=new WeakMap,c=Symbol("Private API ID"),{lock:u,unlock:d}=((e,t)=>{if(!n.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}". This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);if(!i&&a.includes(t))throw new Error(`You tried to opt-in to unstable APIs as module "${t}" which is already registered. This feature is only for JavaScript modules shipped with WordPress core. Please do not use it in plugins and themes as the unstable APIs will be removed without a warning. If you ignore this error and depend on unstable features, your product will inevitably break on one of the next WordPress releases.`);return a.push(t),{lock:o,unlock:s}})(0,"@wordpress/data")},3473:(e,t,r)=>{"use strict";r.d(t,{A:()=>le});var n={};r.r(n),r.d(n,{countSelectorsByStatus:()=>q,getCachedResolvers:()=>Z,getIsResolving:()=>z,getResolutionError:()=>H,getResolutionState:()=>M,hasFinishedResolution:()=>W,hasResolutionFailed:()=>U,hasResolvingSelectors:()=>G,hasStartedResolution:()=>V,isResolving:()=>$});var a={};function i(e){return i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i(e)}function o(e,t,r){return(t=function(e){var t=function(e,t){if("object"!=i(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var n=r.call(e,"string");if("object"!=i(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==i(t)?t:t+""}(t))in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function s(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function l(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?s(Object(r),!0).forEach((function(t){o(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):s(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function c(e){return"Minified Redux error #"+e+"; visit https://redux.js.org/Errors?code="+e+" for the full message or use the non-minified dev environment for full errors. "}r.r(a),r.d(a,{failResolution:()=>X,failResolutions:()=>ee,finishResolution:()=>K,finishResolutions:()=>Q,invalidateResolution:()=>te,invalidateResolutionForStore:()=>re,invalidateResolutionForStoreSelector:()=>ne,startResolution:()=>Y,startResolutions:()=>J});var u="function"==typeof Symbol&&Symbol.observable||"@@observable",d=function(){return Math.random().toString(36).substring(7).split("").join(".")},p={INIT:"@@redux/INIT"+d(),REPLACE:"@@redux/REPLACE"+d(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+d()}};function m(e,t,r){var n;if("function"==typeof t&&"function"==typeof r||"function"==typeof r&&"function"==typeof arguments[3])throw new Error(c(0));if("function"==typeof t&&void 0===r&&(r=t,t=void 0),void 0!==r){if("function"!=typeof r)throw new Error(c(1));return r(m)(e,t)}if("function"!=typeof e)throw new Error(c(2));var a=e,i=t,o=[],s=o,l=!1;function d(){s===o&&(s=o.slice())}function f(){if(l)throw new Error(c(3));return i}function g(e){if("function"!=typeof e)throw new Error(c(4));if(l)throw new Error(c(5));var t=!0;return d(),s.push(e),function(){if(t){if(l)throw new Error(c(6));t=!1,d();var r=s.indexOf(e);s.splice(r,1),o=null}}}function h(e){if(!function(e){if("object"!=typeof e||null===e)return!1;for(var t=e;null!==Object.getPrototypeOf(t);)t=Object.getPrototypeOf(t);return Object.getPrototypeOf(e)===t}(e))throw new Error(c(7));if(void 0===e.type)throw new Error(c(8));if(l)throw new Error(c(9));try{l=!0,i=a(i,e)}finally{l=!1}for(var t=o=s,r=0;r<t.length;r++)(0,t[r])();return e}return h({type:p.INIT}),(n={dispatch:h,subscribe:g,getState:f,replaceReducer:function(e){if("function"!=typeof e)throw new Error(c(10));a=e,h({type:p.REPLACE})}})[u]=function(){var e,t=g;return(e={subscribe:function(e){if("object"!=typeof e||null===e)throw new Error(c(11));function r(){e.next&&e.next(f())}return r(),{unsubscribe:t(r)}}})[u]=function(){return this},e},n}function f(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return 0===t.length?function(e){return e}:1===t.length?t[0]:t.reduce((function(e,t){return function(){return e(t.apply(void 0,arguments))}}))}function g(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(e){return function(){var r=e.apply(void 0,arguments),n=function(){throw new Error(c(15))},a={getState:r.getState,dispatch:function(){return n.apply(void 0,arguments)}},i=t.map((function(e){return e(a)}));return n=f.apply(void 0,i)(r.dispatch),l(l({},r),{},{dispatch:n})}}}var h=r(5055),y=r.n(h),b=r(5937);function v(e){return!!e&&("object"==typeof e||"function"==typeof e)&&"function"==typeof e.then}var w=r(8270);function x(e){return(0,w.Q)(e)&&"string"==typeof e.type}function _(e={}){return t=>{const r=function(e={},t){const r=Object.entries(e).map((([e,t])=>(r,n,a,i,o)=>{if(l=e,!x(s=r)||s.type!==l)return!1;var s,l;const c=t(r);return v(c)?c.then(i,o):i(c),!0}));r.push(((e,r)=>!!x(e)&&(t(e),r(),!0)));const n=(0,b.create)(r);return e=>new Promise(((r,a)=>n(e,(e=>{x(e)&&t(e),r(e)}),a)))}(e,t.dispatch);return e=>t=>{return(n=t)&&"function"==typeof n[Symbol.iterator]&&"function"==typeof n.next?r(t):e(t);var n}}}var E=r(3771);function k(e){return e.isRegistryControl=!0,e}const S="@@data/SELECT",C="@@data/RESOLVE_SELECT",R="@@data/DISPATCH",A={[S]:k((e=>({storeKey:t,selectorName:r,args:n})=>e.select(t)[r](...n))),[C]:k((e=>({storeKey:t,selectorName:r,args:n})=>{const a=e.select(t)[r].hasResolver?"resolveSelect":"select";return e[a](t)[r](...n)})),[R]:k((e=>({storeKey:t,actionName:r,args:n})=>e.dispatch(t)[r](...n)))};var P=r(7203);const T=()=>e=>t=>v(t)?t.then((t=>{if(t)return e(t)})):e(t),N=(e,t)=>()=>r=>n=>{const a=e.select(t).getCachedResolvers();return Object.entries(a).forEach((([r,a])=>{const i=e.stores[t]?.resolvers?.[r];i&&i.shouldInvalidate&&a.forEach(((a,o)=>{void 0!==a&&("finished"!==a.status&&"error"!==a.status||i.shouldInvalidate(n,...o)&&e.dispatch(t).invalidateResolution(r,o))}))})),r(n)};function I(e){if(null==e)return[];const t=e.length;let r=t;for(;r>0&&void 0===e[r-1];)r--;return r===t?e:e.slice(0,r)}const O=(e=>(t={},r)=>{const n=r.selectorName;if(void 0===n)return t;const a=e(t[n],r);return a===t[n]?t:{...t,[n]:a}})(((e=new(y()),t)=>{switch(t.type){case"START_RESOLUTION":{const r=new(y())(e);return r.set(I(t.args),{status:"resolving"}),r}case"FINISH_RESOLUTION":{const r=new(y())(e);return r.set(I(t.args),{status:"finished"}),r}case"FAIL_RESOLUTION":{const r=new(y())(e);return r.set(I(t.args),{status:"error",error:t.error}),r}case"START_RESOLUTIONS":{const r=new(y())(e);for(const e of t.args)r.set(I(e),{status:"resolving"});return r}case"FINISH_RESOLUTIONS":{const r=new(y())(e);for(const e of t.args)r.set(I(e),{status:"finished"});return r}case"FAIL_RESOLUTIONS":{const r=new(y())(e);return t.args.forEach(((e,n)=>{const a={status:"error",error:void 0},i=t.errors[n];i&&(a.error=i),r.set(I(e),a)})),r}case"INVALIDATE_RESOLUTION":{const r=new(y())(e);return r.delete(I(t.args)),r}}return e}));const L=(e={},t)=>{switch(t.type){case"INVALIDATE_RESOLUTION_FOR_STORE":return{};case"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR":if(t.selectorName in e){const{[t.selectorName]:r,...n}=e;return n}return e;case"START_RESOLUTION":case"FINISH_RESOLUTION":case"FAIL_RESOLUTION":case"START_RESOLUTIONS":case"FINISH_RESOLUTIONS":case"FAIL_RESOLUTIONS":case"INVALIDATE_RESOLUTION":return O(e,t)}return e};var B=r(1892),j={};function D(e){return[e]}function F(e,t,r){var n;if(e.length!==t.length)return!1;for(n=r;n<e.length;n++)if(e[n]!==t[n])return!1;return!0}function M(e,t,r){const n=e[t];if(n)return n.get(I(r))}function z(e,t,r){(0,B.A)("wp.data.select( store ).getIsResolving",{since:"6.6",version:"6.8",alternative:"wp.data.select( store ).getResolutionState"});const n=M(e,t,r);return n&&"resolving"===n.status}function V(e,t,r){return void 0!==M(e,t,r)}function W(e,t,r){const n=M(e,t,r)?.status;return"finished"===n||"error"===n}function U(e,t,r){return"error"===M(e,t,r)?.status}function H(e,t,r){const n=M(e,t,r);return"error"===n?.status?n.error:null}function $(e,t,r){return"resolving"===M(e,t,r)?.status}function Z(e){return e}function G(e){return Object.values(e).some((e=>Array.from(e._map.values()).some((e=>"resolving"===e[1]?.status))))}const q=function(e,t){var r,n=(e=>[e])||D;function a(){r=new WeakMap}function i(){var t,a,i,o,s,l=arguments.length;for(o=new Array(l),i=0;i<l;i++)o[i]=arguments[i];for(t=function(e){var t,n,a,i,o,s=r,l=!0;for(t=0;t<e.length;t++){if(!(o=n=e[t])||"object"!=typeof o){l=!1;break}s.has(n)?s=s.get(n):(a=new WeakMap,s.set(n,a),s=a)}return s.has(j)||((i=function(){var e={clear:function(){e.head=null}};return e}()).isUniqueByDependants=l,s.set(j,i)),s.get(j)}(s=n.apply(null,o)),t.isUniqueByDependants||(t.lastDependants&&!F(s,t.lastDependants,0)&&t.clear(),t.lastDependants=s),a=t.head;a;){if(F(a.args,o,1))return a!==t.head&&(a.prev.next=a.next,a.next&&(a.next.prev=a.prev),a.next=t.head,a.prev=null,t.head.prev=a,t.head=a),a.val;a=a.next}return a={val:e.apply(null,o)},o[0]=null,a.args=o,t.head&&(t.head.prev=a,a.next=t.head),t.head=a,a.val}return i.getDependants=n,i.clear=a,a(),i}((e=>{const t={};return Object.values(e).forEach((e=>Array.from(e._map.values()).forEach((e=>{var r;const n=null!==(r=e[1]?.status)&&void 0!==r?r:"error";t[n]||(t[n]=0),t[n]++})))),t}));function Y(e,t){return{type:"START_RESOLUTION",selectorName:e,args:t}}function K(e,t){return{type:"FINISH_RESOLUTION",selectorName:e,args:t}}function X(e,t,r){return{type:"FAIL_RESOLUTION",selectorName:e,args:t,error:r}}function J(e,t){return{type:"START_RESOLUTIONS",selectorName:e,args:t}}function Q(e,t){return{type:"FINISH_RESOLUTIONS",selectorName:e,args:t}}function ee(e,t,r){return{type:"FAIL_RESOLUTIONS",selectorName:e,args:t,errors:r}}function te(e,t){return{type:"INVALIDATE_RESOLUTION",selectorName:e,args:t}}function re(){return{type:"INVALIDATE_RESOLUTION_FOR_STORE"}}function ne(e){return{type:"INVALIDATE_RESOLUTION_FOR_STORE_SELECTOR",selectorName:e}}const ae=e=>{const t=[...e];for(let e=t.length-1;e>=0;e--)void 0===t[e]&&t.splice(e,1);return t},ie=(e,t)=>Object.fromEntries(Object.entries(null!=e?e:{}).map((([e,r])=>[e,t(r,e)]))),oe=(e,t)=>t instanceof Map?Object.fromEntries(t):t instanceof window.HTMLElement?null:t;function se(e){const t=new WeakMap;return{get(r,n){let a=t.get(r);return a||(a=e(r,n),t.set(r,a)),a}}}function le(e,t){const r={},i={},o={privateActions:r,registerPrivateActions:e=>{Object.assign(r,e)},privateSelectors:i,registerPrivateSelectors:e=>{Object.assign(i,e)}},s={name:e,instantiate:s=>{const l=new Set,c=t.reducer,u=function(e,t,r,n){const a={...t.controls,...A},i=ie(a,(e=>e.isRegistryControl?e(r):e)),o=[g(...[N(r,e),T,_(i),(s=n,()=>e=>t=>"function"==typeof t?t(s):e(t))])];var s;"undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION__&&o.push(window.__REDUX_DEVTOOLS_EXTENSION__({name:e,instanceId:e,serialize:{replacer:oe}}));const{reducer:l,initialState:c}=t,u=function(e){const t=Object.keys(e);return function(r={},n){const a={};let i=!1;for(const o of t){const t=e[o],s=r[o],l=t(s,n);a[o]=l,i=i||l!==s}return i?a:r}}({metadata:L,root:l});return m(u,{root:c},(0,E.A)(o))}(e,t,s,{registry:s,get dispatch(){return v},get select(){return R},get resolveSelect(){return B()}});(0,P.s)(u,o);const d=function(){const e={};return{isRunning:(t,r)=>e[t]&&e[t].get(ae(r)),clear(t,r){e[t]&&e[t].delete(ae(r))},markAsRunning(t,r){e[t]||(e[t]=new(y())),e[t].set(ae(r),!0)}}}();function p(e){return(...t)=>Promise.resolve(u.dispatch(e(...t)))}const f={...ie(a,p),...ie(t.actions,p)},h=se(p),b=new Proxy((()=>{}),{get:(e,t)=>{const n=r[t];return n?h.get(n,t):f[t]}}),v=new Proxy(b,{apply:(e,t,[r])=>u.dispatch(r)});(0,P.s)(f,b);const w=t.resolvers?function(e){return ie(e,(e=>e.fulfill?e:{...e,fulfill:e}))}(t.resolvers):{};function x(e,t){e.isRegistrySelector&&(e.registry=s);const r=(...t)=>{t=ce(e,t);const r=u.__unstableOriginalGetState();return e.isRegistrySelector&&(e.registry=s),e(r.root,...t)};r.__unstableNormalizeArgs=e.__unstableNormalizeArgs;const n=w[t];return n?function(e,t,r,n,a){const i=(...i)=>(function(e){const i=n.getState();if(a.isRunning(t,e)||"function"==typeof r.isFulfilled&&r.isFulfilled(i,...e))return;const{metadata:o}=n.__unstableOriginalGetState();V(o,t,e)||(a.markAsRunning(t,e),setTimeout((async()=>{a.clear(t,e),n.dispatch(Y(t,e));try{const a=r.fulfill(...e);a&&await n.dispatch(a),n.dispatch(K(t,e))}catch(r){n.dispatch(X(t,e,r))}}),0))}(i=ce(e,i)),e(...i));return i.hasResolver=!0,i}(r,t,n,u,d):(r.hasResolver=!1,r)}const k={...ie(n,(function(e){const r=(...r)=>{const n=u.__unstableOriginalGetState(),a=r&&r[0],i=r&&r[1],o=t?.selectors?.[a];return a&&o&&(r[1]=ce(o,i)),e(n.metadata,...r)};return r.hasResolver=!1,r})),...ie(t.selectors,x)},S=se(x);for(const[e,t]of Object.entries(i))S.get(t,e);const C=new Proxy((()=>{}),{get:(e,t)=>{const r=i[t];return r?S.get(r,t):k[t]}}),R=new Proxy(C,{apply:(e,t,[r])=>r(u.__unstableOriginalGetState())});(0,P.s)(k,C);const I=function(e,t){const{getIsResolving:r,hasStartedResolution:n,hasFinishedResolution:a,hasResolutionFailed:i,isResolving:o,getCachedResolvers:s,getResolutionState:l,getResolutionError:c,hasResolvingSelectors:u,countSelectorsByStatus:d,...p}=e;return ie(p,((r,n)=>r.hasResolver?(...a)=>new Promise(((i,o)=>{const s=()=>e.hasFinishedResolution(n,a),l=t=>{if(e.hasResolutionFailed(n,a)){const t=e.getResolutionError(n,a);o(t)}else i(t)},c=()=>r.apply(null,a),u=c();if(s())return l(u);const d=t.subscribe((()=>{s()&&(d(),l(c()))}))})):async(...e)=>r.apply(null,e)))}(k,u),O=function(e,t){return ie(e,((r,n)=>r.hasResolver?(...a)=>{const i=r.apply(null,a);if(e.hasFinishedResolution(n,a)){if(e.hasResolutionFailed(n,a))throw e.getResolutionError(n,a);return i}throw new Promise((r=>{const i=t.subscribe((()=>{e.hasFinishedResolution(n,a)&&(r(),i())}))}))}:r))}(k,u),B=()=>I;u.__unstableOriginalGetState=u.getState,u.getState=()=>u.__unstableOriginalGetState().root;const j=u&&(e=>(l.add(e),()=>l.delete(e)));let D=u.__unstableOriginalGetState();return u.subscribe((()=>{const e=u.__unstableOriginalGetState(),t=e!==D;if(D=e,t)for(const e of l)e()})),{reducer:c,store:u,actions:f,selectors:k,resolvers:w,getSelectors:()=>k,getResolveSelectors:B,getSuspendSelectors:()=>O,getActions:()=>f,subscribe:j}}};return(0,P.s)(s,o),s}function ce(e,t){return e.__unstableNormalizeArgs&&"function"==typeof e.__unstableNormalizeArgs&&t?.length?e.__unstableNormalizeArgs(t):t}},1892:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(6619);const a=Object.create(null);function i(e,t={}){const{since:r,version:i,alternative:o,plugin:s,link:l,hint:c}=t,u=`${e} is deprecated${r?` since version ${r}`:""}${i?` and will be removed${s?` from ${s}`:""} in version ${i}`:""}.${o?` Please use ${o} instead.`:""}${l?` See: ${l}`:""}${c?` Note: ${c}`:""}`;u in a||((0,n.Eo)("deprecated",e,t,u),console.warn(u),a[u]=!0)}},6619:(e,t,r)=>{"use strict";r.d(t,{se:()=>m,Eo:()=>_});const n=function(e){return"string"!=typeof e||""===e?(console.error("The namespace must be a non-empty string."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.\-\/]*$/.test(e)||(console.error("The namespace can only contain numbers, letters, dashes, periods, underscores and slashes."),!1)},a=function(e){return"string"!=typeof e||""===e?(console.error("The hook name must be a non-empty string."),!1):/^__/.test(e)?(console.error("The hook name cannot begin with `__`."),!1):!!/^[a-zA-Z][a-zA-Z0-9_.-]*$/.test(e)||(console.error("The hook name can only contain numbers, letters, dashes, periods and underscores."),!1)},i=function(e,t){return function(r,i,o,s=10){const l=e[t];if(!a(r))return;if(!n(i))return;if("function"!=typeof o)return void console.error("The hook callback must be a function.");if("number"!=typeof s)return void console.error("If specified, the hook priority must be a number.");const c={callback:o,priority:s,namespace:i};if(l[r]){const e=l[r].handlers;let t;for(t=e.length;t>0&&!(s>=e[t-1].priority);t--);t===e.length?e[t]=c:e.splice(t,0,c),l.__current.forEach((e=>{e.name===r&&e.currentIndex>=t&&e.currentIndex++}))}else l[r]={handlers:[c],runs:0};"hookAdded"!==r&&e.doAction("hookAdded",r,i,o,s)}},o=function(e,t,r=!1){return function(i,o){const s=e[t];if(!a(i))return;if(!r&&!n(o))return;if(!s[i])return 0;let l=0;if(r)l=s[i].handlers.length,s[i]={runs:s[i].runs,handlers:[]};else{const e=s[i].handlers;for(let t=e.length-1;t>=0;t--)e[t].namespace===o&&(e.splice(t,1),l++,s.__current.forEach((e=>{e.name===i&&e.currentIndex>=t&&e.currentIndex--})))}return"hookRemoved"!==i&&e.doAction("hookRemoved",i,o),l}},s=function(e,t){return function(r,n){const a=e[t];return void 0!==n?r in a&&a[r].handlers.some((e=>e.namespace===n)):r in a}},l=function(e,t,r=!1){return function(n,...a){const i=e[t];i[n]||(i[n]={handlers:[],runs:0}),i[n].runs++;const o=i[n].handlers;if(!o||!o.length)return r?a[0]:void 0;const s={name:n,currentIndex:0};for(i.__current.push(s);s.currentIndex<o.length;){const e=o[s.currentIndex].callback.apply(null,a);r&&(a[0]=e),s.currentIndex++}return i.__current.pop(),r?a[0]:void 0}},c=function(e,t){return function(){var r;const n=e[t];return null!==(r=n.__current[n.__current.length-1]?.name)&&void 0!==r?r:null}},u=function(e,t){return function(r){const n=e[t];return void 0===r?void 0!==n.__current[0]:!!n.__current[0]&&r===n.__current[0].name}},d=function(e,t){return function(r){const n=e[t];if(a(r))return n[r]&&n[r].runs?n[r].runs:0}};class p{constructor(){this.actions=Object.create(null),this.actions.__current=[],this.filters=Object.create(null),this.filters.__current=[],this.addAction=i(this,"actions"),this.addFilter=i(this,"filters"),this.removeAction=o(this,"actions"),this.removeFilter=o(this,"filters"),this.hasAction=s(this,"actions"),this.hasFilter=s(this,"filters"),this.removeAllActions=o(this,"actions",!0),this.removeAllFilters=o(this,"filters",!0),this.doAction=l(this,"actions"),this.applyFilters=l(this,"filters",!0),this.currentAction=c(this,"actions"),this.currentFilter=c(this,"filters"),this.doingAction=u(this,"actions"),this.doingFilter=u(this,"filters"),this.didAction=d(this,"actions"),this.didFilter=d(this,"filters")}}const m=new p,{addAction:f,addFilter:g,removeAction:h,removeFilter:y,hasAction:b,hasFilter:v,removeAllActions:w,removeAllFilters:x,doAction:_,applyFilters:E,currentAction:k,currentFilter:S,doingAction:C,doingFilter:R,didAction:A,didFilter:P,actions:T,filters:N}=m},1760:(e,t,r)=>{"use strict";r.d(t,{__:()=>y,_n:()=>b,nv:()=>o});var n=r(7604),a=r.n(n);const i=function(e,t){var r,n,a=0;function i(){var i,o,s=r,l=arguments.length;e:for(;s;){if(s.args.length===arguments.length){for(o=0;o<l;o++)if(s.args[o]!==arguments[o]){s=s.next;continue e}return s!==r&&(s===n&&(n=s.prev),s.prev.next=s.next,s.next&&(s.next.prev=s.prev),s.next=r,s.prev=null,r.prev=s,r=s),s.val}s=s.next}for(i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return s={args:i,val:e.apply(null,i)},r?(r.prev=s,s.next=r):n=s,a===t.maxSize?(n=n.prev).next=null:a++,r=s,s.val}return t=t||{},i.clear=function(){r=null,n=null,a=0},i}(console.error);function o(e,...t){try{return a().sprintf(e,...t)}catch(t){return t instanceof Error&&i("sprintf error: \n\n"+t.toString()),e}}var s,l,c,u;s={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},l=["(","?"],c={")":["("],":":["?","?:"]},u=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var d={"!":function(e){return!e},"*":function(e,t){return e*t},"/":function(e,t){return e/t},"%":function(e,t){return e%t},"+":function(e,t){return e+t},"-":function(e,t){return e-t},"<":function(e,t){return e<t},"<=":function(e,t){return e<=t},">":function(e,t){return e>t},">=":function(e,t){return e>=t},"==":function(e,t){return e===t},"!=":function(e,t){return e!==t},"&&":function(e,t){return e&&t},"||":function(e,t){return e||t},"?:":function(e,t,r){if(e)throw t;return r}};var p={contextDelimiter:"",onMissingKey:null};function m(e,t){var r;for(r in this.data=e,this.pluralForms={},this.options={},p)this.options[r]=void 0!==t&&r in t?t[r]:p[r]}m.prototype.getPluralForm=function(e,t){var r,n,a,i,o=this.pluralForms[e];return o||("function"!=typeof(a=(r=this.data[e][""])["Plural-Forms"]||r["plural-forms"]||r.plural_forms)&&(n=function(e){var t,r,n;for(t=e.split(";"),r=0;r<t.length;r++)if(0===(n=t[r].trim()).indexOf("plural="))return n.substr(7)}(r["Plural-Forms"]||r["plural-forms"]||r.plural_forms),i=function(e){var t=function(e){for(var t,r,n,a,i=[],o=[];t=e.match(u);){for(r=t[0],(n=e.substr(0,t.index).trim())&&i.push(n);a=o.pop();){if(c[r]){if(c[r][0]===a){r=c[r][1]||r;break}}else if(l.indexOf(a)>=0||s[a]<s[r]){o.push(a);break}i.push(a)}c[r]||o.push(r),e=e.substr(t.index+r.length)}return(e=e.trim())&&i.push(e),i.concat(o.reverse())}(e);return function(e){return function(e,t){var r,n,a,i,o,s,l=[];for(r=0;r<e.length;r++){if(o=e[r],i=d[o]){for(n=i.length,a=Array(n);n--;)a[n]=l.pop();try{s=i.apply(null,a)}catch(e){return e}}else s=t.hasOwnProperty(o)?t[o]:+o;l.push(s)}return l[0]}(t,e)}}(n),a=function(e){return+i({n:e})}),o=this.pluralForms[e]=a),o(t)},m.prototype.dcnpgettext=function(e,t,r,n,a){var i,o,s;return i=void 0===a?0:this.getPluralForm(e,a),o=r,t&&(o=t+this.options.contextDelimiter+r),(s=this.data[e][o])&&s[i]?s[i]:(this.options.onMissingKey&&this.options.onMissingKey(r,e),0===i?r:n)};const f={plural_forms:e=>1===e?0:1},g=/^i18n\.(n?gettext|has_translation)(_|$)/,h=((e,t,r)=>{const n=new m({}),a=new Set,i=()=>{a.forEach((e=>e()))},o=(e,t="default")=>{n.data[t]={...n.data[t],...e},n.data[t][""]={...f,...n.data[t]?.[""]},delete n.pluralForms[t]},s=(e,t)=>{o(e,t),i()},l=(e="default",t,r,a,i)=>(n.data[e]||o(void 0,e),n.dcnpgettext(e,t,r,a,i)),c=(e="default")=>e,u=(e,t,n)=>{let a=l(n,t,e);return r?(a=r.applyFilters("i18n.gettext_with_context",a,e,t,n),r.applyFilters("i18n.gettext_with_context_"+c(n),a,e,t,n)):a};if(r){const e=e=>{g.test(e)&&i()};r.addAction("hookAdded","core/i18n",e),r.addAction("hookRemoved","core/i18n",e)}return{getLocaleData:(e="default")=>n.data[e],setLocaleData:s,addLocaleData:(e,t="default")=>{n.data[t]={...n.data[t],...e,"":{...f,...n.data[t]?.[""],...e?.[""]}},delete n.pluralForms[t],i()},resetLocaleData:(e,t)=>{n.data={},n.pluralForms={},s(e,t)},subscribe:e=>(a.add(e),()=>a.delete(e)),__:(e,t)=>{let n=l(t,void 0,e);return r?(n=r.applyFilters("i18n.gettext",n,e,t),r.applyFilters("i18n.gettext_"+c(t),n,e,t)):n},_x:u,_n:(e,t,n,a)=>{let i=l(a,void 0,e,t,n);return r?(i=r.applyFilters("i18n.ngettext",i,e,t,n,a),r.applyFilters("i18n.ngettext_"+c(a),i,e,t,n,a)):i},_nx:(e,t,n,a,i)=>{let o=l(i,a,e,t,n);return r?(o=r.applyFilters("i18n.ngettext_with_context",o,e,t,n,a,i),r.applyFilters("i18n.ngettext_with_context_"+c(i),o,e,t,n,a,i)):o},isRTL:()=>"rtl"===u("ltr","text direction"),hasTranslation:(e,t,a)=>{const i=t?t+""+e:e;let o=!!n.data?.[null!=a?a:"default"]?.[i];return r&&(o=r.applyFilters("i18n.has_translation",o,e,t,a),o=r.applyFilters("i18n.has_translation_"+c(a),o,e,t,a)),o}}})(0,0,r(6619).se),y=(h.getLocaleData.bind(h),h.setLocaleData.bind(h),h.resetLocaleData.bind(h),h.subscribe.bind(h),h.__.bind(h)),b=(h._x.bind(h),h._n.bind(h));h._nx.bind(h),h.isRTL.bind(h),h.hasTranslation.bind(h)},8671:(e,t,r)=>{"use strict";function n(e,t){if(e&&t){if(e.constructor===Object&&t.constructor===Object)return function(e,t){if(e===t)return!0;const r=Object.keys(e),n=Object.keys(t);if(r.length!==n.length)return!1;let a=0;for(;a<r.length;){const n=r[a],i=e[n];if(void 0===i&&!t.hasOwnProperty(n)||i!==t[n])return!1;a++}return!0}(e,t);if(Array.isArray(e)&&Array.isArray(t))return function(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let r=0,n=e.length;r<n;r++)if(e[r]!==t[r])return!1;return!0}(e,t)}return e===t}r.d(t,{Ay:()=>n})},9455:(e,t)=>{"use strict";t.A=function(e,t){if(e&&t){var r=Array.isArray(t)?t:t.split(","),n=e.name||"",a=(e.type||"").toLowerCase(),i=a.replace(/\/.*$/,"");return r.some((function(e){var t=e.trim().toLowerCase();return"."===t.charAt(0)?n.toLowerCase().endsWith(t):t.endsWith("/*")?i===t.replace(/\/.*$/,""):a===t}))}return!0}},9583:(e,t,r)=>{"use strict";r.d(t,{A:()=>o});var n=r(6134);function a(){return a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},a.apply(null,arguments)}const{forwardRef:i}=wp.element,o=i((({variant:e="",isSmall:t=!1,hasSuffixIcon:r=!1,hasPrefixIcon:i=!1,type:o="button",className:s,onClick:l,children:c,disabled:u=!1,id:d="",...p},m)=>{const f=t?"small":"base",g={base:{default:"px-4 py-3",hasPrefixIcon:"pl-4 pr-6 py-3",hasSuffixIcon:"pl-4 pr-4 py-3"},small:{default:"px-5 py-2 h-[2.625rem]",hasPrefixIcon:"pl-3 pr-5 py-2 h-[2.625rem]",hasSuffixIcon:"pl-5 pr-3 py-2 h-[2.625rem]"}};return React.createElement("button",a({type:o,className:(0,n.xW)("font-sans group flex items-center justify-center gap-2 rounded-md focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 transition duration-150 ease-in-out cursor-pointer border-0 disabled:bg-button-disabled disabled:text-secondary-text disabled:cursor-not-allowed disabled:border-button-disabled",{primary:"text-white bg-accent-spectra hover:bg-accent-hover-spectra focus-visible:ring-accent-spectra border border-solid border-accent-spectra","ai-primary":"text-white bg-accent-st hover:bg-accent-ai-hover focus-visible:ring-accent-st border border-solid border-accent-st",white:"text-accent-spectra bg-white border border-solid border-accent-spectra focus-visible:ring-accent-spectra","ai-white":"text-accent-st bg-white border border-solid border-accent-st focus-visible:ring-accent-st",dark:"text-white border border-white bg-transparent border-solid",link:"underline border-0 bg-transparent",blank:"bg-transparent border-transparent"}[e],!i&&!r&&g[f].default,{base:"h-[3rem]",small:"h-[2.25rem]"}[f],i&&g[f].hasPrefixIcon,r&&g[f].hasSuffixIcon,{base:"sp-text-base font-medium",small:"sp-text-sm font-medium"}[f],{base:"rounded-md",small:"rounded"}[f],s),onClick:e=>{l&&"function"==typeof l&&l(e)},ref:m,disabled:u,id:d},p),c)}))},6484:(e,t,r)=>{"use strict";r.d(t,{v:()=>o});var n=r(5446),a=r(1760),i=r(4715);const o=e=>{const t=e.message?e.message:e.data;(0,n.oR)((0,i.A)({title:(0,a.__)("Error Occurred!","ast-block-templates"),message:(0,a.nv)((0,a.__)("Error: %s","ast-block-templates"),t.toString())}),i.A.getOptions({type:"error"}))}},7497:(e,t,r)=>{"use strict";r.d(t,{A:()=>s});var n=r(1594),a=r(9120),i=r(3630);function o(){return o=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},o.apply(null,arguments)}const s=(0,n.memo)((({children:e,...t})=>{const[r,s]=(0,a.xQ)(),l=(0,n.useMemo)((()=>({layout:!0,initial:"out",style:{position:r?"static":"absolute"},animate:r?"in":"out",variants:{in:{opacity:1},out:{opacity:0}},onAnimationComplete:()=>!r&&s()})),[r]);return React.createElement(i.P.div,o({},t,l),e)}))},9453:(e,t,r)=>{"use strict";r.d(t,{A:()=>k});var n=r(3771),a=r(3914),i=r(6597),o=r(8242),s=r(7642),l=r(1594),c=r(9583),u=r(6041),d=r(9431),p=r(2513),m=r(9392),f=r(8354),g=r(4403),h=r(6134),y=r(5446),b=r(4715),v=r(4118),w=r(1760);const{post:x}=wp.ajax,{parse:_}=wp.blocks,{bypassAuth:E}=ast_block_template_vars,k=(0,n.A)((0,o.A)((e=>{const{getImportItemInfo:t,getCurrentScreen:r,getSitePreview:n,getActiveBlockPaletteSlug:a,getActivePagePaletteSlug:i,getDisableAi:o,getAdaptiveMode:s}=e("ast-block-templates");return{importItemInfo:t(),sitePreview:n(),currentScreen:r(),activeBlockPaletteSlug:a(),activePagePaletteSlug:i(),disableAI:o(),adaptiveMode:s()}})),(0,s.A)((e=>{const{setImportItemInfo:t,setTogglePopup:r,setOnboardingAiPopup:n}=e("ast-block-templates"),{insertBlocks:a}=wp.data.dispatch("core/block-editor");return{setImportItemInfo:t,onSetTogglePopup:r,insertBlocks:a,setOnboardingAiPopup:n}})))((0,l.memo)((({onImportFail:e,setImportItemInfo:t,requiredPlugins:r,importItemInfo:n,title:o,btnClass:s,insertBlocks:k,onSetTogglePopup:S,item:C,onClick:R,onBlockImport:A,activeBlockPaletteSlug:P,activePagePaletteSlug:T,currentScreen:N,disableAI:I,importing:O=!1,adaptiveMode:L,showIcon:B=!0,children:j})=>{let[D]=(0,l.useState)(n),F=r||[];const M=s||"",[z]=(0,l.useState)(o||(0,w.__)("Import","ast-block-templates")),{index:V}=wp.data.select("core/block-editor").getBlockInsertionPoint(),{importInProgress:W,syncLibNotice:U,stepData:{token:H}}=(0,a.A)((e=>{const{getImportInProgress:t,getNotice:r,getAIStepData:n}=e(v.U);return{importInProgress:t(),syncLibNotice:r(),stepData:n()}}),[]),{setImportInProgress:$,toggleConnectZipAI:Z,setNotice:G}=(0,i.A)(v.U),q="info"===U?.type,Y=(0,h.Fx)(),K=(e,t,r)=>{(0,y.oR)((0,b.A)({title:e,message:t}),b.A.getOptions({type:r}))},X=async()=>{try{G({type:"import-info",message:(0,w.__)("Activating Spectra plugin…","ast-block-templates")}),await(0,d.s)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){$(!1),K("Import failed!","Spectra activation failed!","error")}},J=async()=>{try{G({type:"import-info",message:(0,w.__)("Activating WPForms plugin…","ast-block-templates")}),await(0,d.s)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await re()}catch(e){$(!1),K("Import failed!","WPForms activation failed!","error")}},Q=()=>{const t=D.original_content,r="all-blocks-grid"===N?"block":"page",n="block"===r?D["blocks-category"][0]:D["pages-category"][0],a=D?.id;x({action:"ast_block_templates_import_block",content:t,category:n,id:a,_ajax_nonce:ast_block_template_vars._ajax_nonce,style:"all-blocks-grid"===N?P:T,disableAI:I,block_type:r,adaptiveMode:L}).done((e=>{$(!1);const t=(0,h.XD)(_(e));k(t,V,"",!1),ee(t[0].clientId),S(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open"),(Y.inactive||Y.notInstalled)&&(0,f.mP)(),"function"==typeof A&&A(e,V)})).fail((()=>{$(!1),e(),K("Import failed!","Failed to import the block. Please try again later or contact support for assistance.","error-import")}))},ee=e=>{e&&setTimeout((()=>{const t=te(),r="block-"+e,n=t.getElementById(r);n&&n.scrollIntoView({behavior:"smooth",block:"center",inline:"center"})}),2500)},te=()=>{const e=document.getElementsByClassName("is-tablet-preview"),t=document.getElementsByClassName("is-mobile-preview");if(0!==e.length||0!==t.length){const r=e[0]||t[0];let n=!1;r&&(n=r.getElementsByTagName("iframe")[0]);const a=n?.contentWindow.document||n?.contentDocument;if(a)return a}return document},re=()=>{D?.["post-meta"]?.["astra-site-wpforms-path"]||""?x({action:"ast_block_templates_import_wpforms",id:D?.id,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((()=>{Q()})).fail((()=>{$(!1),K("Import failed!","WPForms import failed!","error")})):Q()},ne=async r=>{W||q||($(!0),"function"==typeof R&&R(r),Y.notInstalled?(await(async()=>{try{G({type:"import-info",message:(0,w.__)("Installing Spectra plugin…","ast-block-templates")}),await(0,d.o)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){$(!1),K("Import failed!","Spectra installation failed!","error")}})(),await X()):Y.inactive&&await X(),(0,m.V)(C.ID,"astra-blocks").then((e=>{t(e),D=e,F=e?.["post-meta"]?.["astra-blocks-required-plugins"]?p.j.parse(e["post-meta"]["astra-blocks-required-plugins"]):[],F.length?"not-installed"===ast_block_template_vars.wpforms_status?(async()=>{try{G({type:"import-info",message:(0,w.__)("Installing WPForms plugin…","ast-block-templates")}),await(0,d.o)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await J()}catch(e){$(!1),K("Import failed!","WPForms installation failed!","error")}})():"inactive"===ast_block_template_vars.wpforms_status?J():re():re()})).catch((t=>{K("Import failed!",t,"error-import"),$(!1),e()})))},ae=async()=>{Z(),(0,h.HU)("ast-import",{blockId:C.ID,blockType:C.type,blockPaletteSlug:P,pagePaletteSlug:T})};return j&&"function"==typeof j?j({onClick:H||E?ne:ae,importInProgress:W,disableImport:q}):j&&"object"==typeof j&&(0,l.isValidElement)(j)?(0,l.cloneElement)(j,{...j?.props??{},importInProgress:W,disableImport:q,onClick:(0,h.OK)(j?.props?.onClick,H||E?ne:ae)}):React.createElement(c.A,{className:(0,h.xW)("min-w-fit h-7 hover:shadow-small sp-text-sm px-3",M,(W&&!O||q)&&"opacity-50 cursor-not-allowed"),type:"button",variant:"primary",onClick:H||E?ne:ae,isSmall:!0,hasPrefixIcon:!O&&B},O?React.createElement(u.A,{className:"size-4 !shrink-0"}):React.createElement(React.Fragment,null,React.createElement(g.A,{className:"size-4 !shrink-0 inline sm:hidden"}),React.createElement("span",{className:"truncate hidden sm:inline"},z)))})))},6041:(e,t,r)=>{"use strict";r.d(t,{A:()=>a});var n=r(6134);const a=({widthClassName:e="w-5",heightClassName:t="h-5",colorClassName:r="text-white",className:a})=>React.createElement("svg",{className:(0,n.xW)("animate-spin",e,t,r,a),xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24"},React.createElement("circle",{className:"opacity-25",cx:"12",cy:"12",r:"10",stroke:"currentColor",strokeWidth:"4"}),React.createElement("path",{className:"opacity-75",fill:"currentColor",d:"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"}))},9260:(e,t,r)=>{"use strict";r.d(t,{A:()=>m});var n=r(3771),a=r(3914),i=r(8242),o=r(7642),s=r(6134),l=r(4361),c=r(860),u=r(2231),d=r(6484);function p(){return p=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},p.apply(null,arguments)}const m=(0,n.A)((0,i.A)((e=>{const{getFilterBlocksByCategory:t,getFilterBlocksPagesByCategory:r,getFilterSitesByCategory:n}=e("ast-block-templates");return{filterBlocksByCategory:t(),filterBlocksPagesByCategory:r(),filterSitesByCategory:n()}})),(0,o.A)((e=>{const{setFavorites:t,setFilterBlocksByCategory:r,setFilterBlocksPagesByCategory:n,setFilterSitesByCategory:a}=e("ast-block-templates");return{setFavorites:t,setFilterBlocksByCategory:r,setFilterBlocksPagesByCategory:n,setFilterSitesByCategory:a}})))((({item:e,className:t,setFavorites:r,setFilterBlocksByCategory:n,filterBlocksByCategory:i,filterBlocksPagesByCategory:o,filterSitesByCategory:m,setFilterBlocksPagesByCategory:f,setFilterSitesByCategory:g,setFilterFavoritres:h,children:y,...b})=>{const{favorites:v,importInProgress:w}=(0,a.A)((e=>{const{getFavorites:t,getImportInProgress:r}=e("ast-block-templates");return{favorites:t(),importInProgress:r()}}),[]),x=[...Array.isArray(v?.block)?v?.block:[],...Array.isArray(v?.page)?v?.page:[],...Array.isArray(v?.site)?v?.site:[]],_=x?.map(Number).includes(+e.ID),E=async t=>{t?.preventDefault(),t?.stopPropagation();const a=e?.type??"site";try{const t=await(0,s.nr)({path:"gutenberg-templates/v1/favorite",data:{type:a,block_id:e.ID,status:!_},method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}});if(!t.success)throw r(t?.data),new Error(t?.message);r(t?.data)}catch(e){(0,d.v)(e)}"favorite"!==i&&"favorite"!==o&&"favorite"!==m||("block"===a&&n(""),"page"===a&&f(""),"site"===a&&g(""),c.A.emit("reset-list-count"))};return y?"function"==typeof y&&y({isFavorite:_,onClickFavorite:E}):React.createElement("button",p({className:(0,s.xW)("flex items-center justify-center rounded-full p-2 bg-white cursor-pointer border border-solid border-border-primary focus:outline-none",_?"":"text-icon-secondary",w&&"disable-click-action",t),onClick:E},b),React.createElement(u.A,{content:_?"Remove from favorites":"Add to favorites"},React.createElement(l.A,{className:(0,s.xW)("w-5 h-5 transition-colors ease-out duration-75",_?"fill-favorite text-favorite":"hover:fill-favorite hover:text-favorite")})))}))},7510:(e,t,r)=>{"use strict";r.d(t,{p:()=>n});const n=e=>{const t=["skip","logo","fav-icon"];for(const r of t)if(e.includes(r))return!0;return!1}},4715:(e,t,r)=>{"use strict";r.d(t,{A:()=>p});var n=r(6867);const a=({title:e="",message:t="",progress:r=0,progressBar:n=!1})=>{const a=e.trim(),i="string"==typeof t?t.trim():t;return React.createElement("div",{className:"space-y-2"},React.createElement("div",{className:"space-y-2 !w-full"},!!a&&React.createElement("h6",{className:"text-background-primary text-sm font-semibold leading-5 m-0 p-0 !w-auto !h-auto"},a),!!i&&React.createElement("p",{className:"text-zip-light-border-primary text-sm font-normal leading- !w-auto !h-auto break-words"},i)),!!n&&React.createElement("div",{className:"py-2 w-full"},React.createElement("div",{className:"w-full max-w-full h-1.5 flex items-center justify-start bg-background-tertiary rounded-full overflow-hidden"},React.createElement("div",{style:{width:`${r}%`},className:"h-full rounded-full bg-accent-spectra transition-[width] ease-in-out duration-150"}))))};var i=r(2988),o=r(2944);const s=({title:e,message:t,showProgress:r=!1,progress:n=0})=>React.createElement(a,{title:e,message:t,progress:n,progressBar:r}),l=()=>React.createElement(n.Lm,{className:"animate-spin w-10 h-10"}),c=()=>React.createElement(i.A,{className:"text-accent-spectra"}),u=()=>React.createElement(o.A,{className:"w-6 h-6 text-accent-spectra"}),d=5e3;s.getOptions=({type:e="success"})=>{switch(e){case"success":return{icon:n.vd,autoClose:d};case"error-import":return{icon:n.is};case"error":return{icon:n.is,autoClose:d};case"sync":return{icon:l};case"personalize":return{icon:c};case"sync-lib-start":return{icon:l,closeButton:!1};case"sync-lib-success":return{icon:n.vd,closeButton:!0,autoClose:d};case"sync-lib-error":return{icon:n.is,closeButton:!0,autoClose:d};case"importing-site":return{icon:u,closeButton:!1};default:return{icon:n.vd}}};const p=new Proxy(s,{get:(e,t)=>t in e?e[t]:s})},2231:(e,t,r)=>{"use strict";r.d(t,{A:()=>le});var n=r(1594),a=r.n(n),i=r(2784),o=r(6607),s="tippy-content",l="tippy-backdrop",c="tippy-arrow",u="tippy-svg-arrow",d={passive:!0,capture:!0},p=function(){return document.body};function m(e,t,r){if(Array.isArray(e)){var n=e[t];return null==n?Array.isArray(r)?r[t]:r:n}return e}function f(e,t){var r={}.toString.call(e);return 0===r.indexOf("[object")&&r.indexOf(t+"]")>-1}function g(e,t){return"function"==typeof e?e.apply(void 0,t):e}function h(e,t){return 0===t?e:function(n){clearTimeout(r),r=setTimeout((function(){e(n)}),t)};var r}function y(e){return[].concat(e)}function b(e,t){-1===e.indexOf(t)&&e.push(t)}function v(e){return[].slice.call(e)}function w(e){return Object.keys(e).reduce((function(t,r){return void 0!==e[r]&&(t[r]=e[r]),t}),{})}function x(){return document.createElement("div")}function _(e){return["Element","Fragment"].some((function(t){return f(e,t)}))}function E(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function k(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function S(e,t,r){var n=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[n](t,r)}))}function C(e,t){for(var r=t;r;){var n;if(e.contains(r))return!0;r=null==r.getRootNode||null==(n=r.getRootNode())?void 0:n.host}return!1}var R={isTouch:!1},A=0;function P(){R.isTouch||(R.isTouch=!0,window.performance&&document.addEventListener("mousemove",T))}function T(){var e=performance.now();e-A<20&&(R.isTouch=!1,document.removeEventListener("mousemove",T)),A=e}function N(){var e,t=document.activeElement;if((e=t)&&e._tippy&&e._tippy.reference===e){var r=t._tippy;t.blur&&!r.state.isVisible&&t.blur()}}var I=!("undefined"==typeof window||"undefined"==typeof document||!window.msCrypto),O=Object.assign({appendTo:p,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),L=Object.keys(O);function B(e){var t=(e.plugins||[]).reduce((function(t,r){var n,a=r.name,i=r.defaultValue;return a&&(t[a]=void 0!==e[a]?e[a]:null!=(n=O[a])?n:i),t}),{});return Object.assign({},e,t)}function j(e,t){var r=Object.assign({},t,{content:g(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(B(Object.assign({},O,{plugins:t}))):L).reduce((function(t,r){var n=(e.getAttribute("data-tippy-"+r)||"").trim();if(!n)return t;if("content"===r)t[r]=n;else try{t[r]=JSON.parse(n)}catch(e){t[r]=n}return t}),{})}(e,t.plugins));return r.aria=Object.assign({},O.aria,r.aria),r.aria={expanded:"auto"===r.aria.expanded?t.interactive:r.aria.expanded,content:"auto"===r.aria.content?t.interactive?null:"describedby":r.aria.content},r}var D=function(){return"innerHTML"};function F(e,t){e[D()]=t}function M(e){var t=x();return!0===e?t.className=c:(t.className=u,_(e)?t.appendChild(e):F(t,e)),t}function z(e,t){_(t.content)?(F(e,""),e.appendChild(t.content)):"function"!=typeof t.content&&(t.allowHTML?F(e,t.content):e.textContent=t.content)}function V(e){var t=e.firstElementChild,r=v(t.children);return{box:t,content:r.find((function(e){return e.classList.contains(s)})),arrow:r.find((function(e){return e.classList.contains(c)||e.classList.contains(u)})),backdrop:r.find((function(e){return e.classList.contains(l)}))}}function W(e){var t=x(),r=x();r.className="tippy-box",r.setAttribute("data-state","hidden"),r.setAttribute("tabindex","-1");var n=x();function a(r,n){var a=V(t),i=a.box,o=a.content,s=a.arrow;n.theme?i.setAttribute("data-theme",n.theme):i.removeAttribute("data-theme"),"string"==typeof n.animation?i.setAttribute("data-animation",n.animation):i.removeAttribute("data-animation"),n.inertia?i.setAttribute("data-inertia",""):i.removeAttribute("data-inertia"),i.style.maxWidth="number"==typeof n.maxWidth?n.maxWidth+"px":n.maxWidth,n.role?i.setAttribute("role",n.role):i.removeAttribute("role"),r.content===n.content&&r.allowHTML===n.allowHTML||z(o,e.props),n.arrow?s?r.arrow!==n.arrow&&(i.removeChild(s),i.appendChild(M(n.arrow))):i.appendChild(M(n.arrow)):s&&i.removeChild(s)}return n.className=s,n.setAttribute("data-state","hidden"),z(n,e.props),t.appendChild(r),r.appendChild(n),a(e.props,e.props),{popper:t,onUpdate:a}}W.$$tippy=!0;var U=1,H=[],$=[];function Z(e,t){var r,n,a,o,s,l,c,u,_=j(e,Object.assign({},O,B(w(t)))),A=!1,P=!1,T=!1,N=!1,L=[],D=h(be,_.interactiveDebounce),F=U++,M=(u=_.plugins).filter((function(e,t){return u.indexOf(e)===t})),z={id:F,reference:e,popper:x(),popperInstance:null,props:_,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:M,clearDelayTimeouts:function(){clearTimeout(r),clearTimeout(n),cancelAnimationFrame(a)},setProps:function(t){if(!z.state.isDestroyed){ae("onBeforeUpdate",[z,t]),he();var r=z.props,n=j(e,Object.assign({},r,w(t),{ignoreAttributes:!0}));z.props=n,ge(),r.interactiveDebounce!==n.interactiveDebounce&&(se(),D=h(be,n.interactiveDebounce)),r.triggerTarget&&!n.triggerTarget?y(r.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):n.triggerTarget&&e.removeAttribute("aria-expanded"),oe(),ne(),G&&G(r,n),z.popperInstance&&(_e(),ke().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)}))),ae("onAfterUpdate",[z,t])}},setContent:function(e){z.setProps({content:e})},show:function(){var e=z.state.isVisible,t=z.state.isDestroyed,r=!z.state.isEnabled,n=R.isTouch&&!z.props.touch,a=m(z.props.duration,0,O.duration);if(!(e||t||r||n||Q().hasAttribute("disabled")||(ae("onShow",[z],!1),!1===z.props.onShow(z)))){if(z.state.isVisible=!0,J()&&(Z.style.visibility="visible"),ne(),de(),z.state.isMounted||(Z.style.transition="none"),J()){var i=te();E([i.box,i.content],0)}var o,s,c;l=function(){var e;if(z.state.isVisible&&!N){if(N=!0,Z.offsetHeight,Z.style.transition=z.props.moveTransition,J()&&z.props.animation){var t=te(),r=t.box,n=t.content;E([r,n],a),k([r,n],"visible")}ie(),oe(),b($,z),null==(e=z.popperInstance)||e.forceUpdate(),ae("onMount",[z]),z.props.animation&&J()&&function(e,t){me(e,(function(){z.state.isShown=!0,ae("onShown",[z])}))}(a)}},s=z.props.appendTo,c=Q(),(o=z.props.interactive&&s===p||"parent"===s?c.parentNode:g(s,[c])).contains(Z)||o.appendChild(Z),z.state.isMounted=!0,_e()}},hide:function(){var e=!z.state.isVisible,t=z.state.isDestroyed,r=!z.state.isEnabled,n=m(z.props.duration,1,O.duration);if(!(e||t||r)&&(ae("onHide",[z],!1),!1!==z.props.onHide(z))){if(z.state.isVisible=!1,z.state.isShown=!1,N=!1,A=!1,J()&&(Z.style.visibility="hidden"),se(),pe(),ne(!0),J()){var a=te(),i=a.box,o=a.content;z.props.animation&&(E([i,o],n),k([i,o],"hidden"))}ie(),oe(),z.props.animation?J()&&function(e,t){me(e,(function(){!z.state.isVisible&&Z.parentNode&&Z.parentNode.contains(Z)&&t()}))}(n,z.unmount):z.unmount()}},hideWithInteractivity:function(e){ee().addEventListener("mousemove",D),b(H,D),D(e)},enable:function(){z.state.isEnabled=!0},disable:function(){z.hide(),z.state.isEnabled=!1},unmount:function(){z.state.isVisible&&z.hide(),z.state.isMounted&&(Ee(),ke().forEach((function(e){e._tippy.unmount()})),Z.parentNode&&Z.parentNode.removeChild(Z),$=$.filter((function(e){return e!==z})),z.state.isMounted=!1,ae("onHidden",[z]))},destroy:function(){z.state.isDestroyed||(z.clearDelayTimeouts(),z.unmount(),he(),delete e._tippy,z.state.isDestroyed=!0,ae("onDestroy",[z]))}};if(!_.render)return z;var W=_.render(z),Z=W.popper,G=W.onUpdate;Z.setAttribute("data-tippy-root",""),Z.id="tippy-"+z.id,z.popper=Z,e._tippy=z,Z._tippy=z;var q=M.map((function(e){return e.fn(z)})),Y=e.hasAttribute("aria-expanded");return ge(),oe(),ne(),ae("onCreate",[z]),_.showOnCreate&&Se(),Z.addEventListener("mouseenter",(function(){z.props.interactive&&z.state.isVisible&&z.clearDelayTimeouts()})),Z.addEventListener("mouseleave",(function(){z.props.interactive&&z.props.trigger.indexOf("mouseenter")>=0&&ee().addEventListener("mousemove",D)})),z;function K(){var e=z.props.touch;return Array.isArray(e)?e:[e,0]}function X(){return"hold"===K()[0]}function J(){var e;return!(null==(e=z.props.render)||!e.$$tippy)}function Q(){return c||e}function ee(){var e,t,r=Q().parentNode;return r?null!=(t=y(r)[0])&&null!=(e=t.ownerDocument)&&e.body?t.ownerDocument:document:document}function te(){return V(Z)}function re(e){return z.state.isMounted&&!z.state.isVisible||R.isTouch||o&&"focus"===o.type?0:m(z.props.delay,e?0:1,O.delay)}function ne(e){void 0===e&&(e=!1),Z.style.pointerEvents=z.props.interactive&&!e?"":"none",Z.style.zIndex=""+z.props.zIndex}function ae(e,t,r){var n;void 0===r&&(r=!0),q.forEach((function(r){r[e]&&r[e].apply(r,t)})),r&&(n=z.props)[e].apply(n,t)}function ie(){var t=z.props.aria;if(t.content){var r="aria-"+t.content,n=Z.id;y(z.props.triggerTarget||e).forEach((function(e){var t=e.getAttribute(r);if(z.state.isVisible)e.setAttribute(r,t?t+" "+n:n);else{var a=t&&t.replace(n,"").trim();a?e.setAttribute(r,a):e.removeAttribute(r)}}))}}function oe(){!Y&&z.props.aria.expanded&&y(z.props.triggerTarget||e).forEach((function(e){z.props.interactive?e.setAttribute("aria-expanded",z.state.isVisible&&e===Q()?"true":"false"):e.removeAttribute("aria-expanded")}))}function se(){ee().removeEventListener("mousemove",D),H=H.filter((function(e){return e!==D}))}function le(t){if(!R.isTouch||!T&&"mousedown"!==t.type){var r=t.composedPath&&t.composedPath()[0]||t.target;if(!z.props.interactive||!C(Z,r)){if(y(z.props.triggerTarget||e).some((function(e){return C(e,r)}))){if(R.isTouch)return;if(z.state.isVisible&&z.props.trigger.indexOf("click")>=0)return}else ae("onClickOutside",[z,t]);!0===z.props.hideOnClick&&(z.clearDelayTimeouts(),z.hide(),P=!0,setTimeout((function(){P=!1})),z.state.isMounted||pe())}}}function ce(){T=!0}function ue(){T=!1}function de(){var e=ee();e.addEventListener("mousedown",le,!0),e.addEventListener("touchend",le,d),e.addEventListener("touchstart",ue,d),e.addEventListener("touchmove",ce,d)}function pe(){var e=ee();e.removeEventListener("mousedown",le,!0),e.removeEventListener("touchend",le,d),e.removeEventListener("touchstart",ue,d),e.removeEventListener("touchmove",ce,d)}function me(e,t){var r=te().box;function n(e){e.target===r&&(S(r,"remove",n),t())}if(0===e)return t();S(r,"remove",s),S(r,"add",n),s=n}function fe(t,r,n){void 0===n&&(n=!1),y(z.props.triggerTarget||e).forEach((function(e){e.addEventListener(t,r,n),L.push({node:e,eventType:t,handler:r,options:n})}))}function ge(){var e;X()&&(fe("touchstart",ye,{passive:!0}),fe("touchend",ve,{passive:!0})),(e=z.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(fe(e,ye),e){case"mouseenter":fe("mouseleave",ve);break;case"focus":fe(I?"focusout":"blur",we);break;case"focusin":fe("focusout",we)}}))}function he(){L.forEach((function(e){var t=e.node,r=e.eventType,n=e.handler,a=e.options;t.removeEventListener(r,n,a)})),L=[]}function ye(e){var t,r=!1;if(z.state.isEnabled&&!xe(e)&&!P){var n="focus"===(null==(t=o)?void 0:t.type);o=e,c=e.currentTarget,oe(),!z.state.isVisible&&f(e,"MouseEvent")&&H.forEach((function(t){return t(e)})),"click"===e.type&&(z.props.trigger.indexOf("mouseenter")<0||A)&&!1!==z.props.hideOnClick&&z.state.isVisible?r=!0:Se(e),"click"===e.type&&(A=!r),r&&!n&&Ce(e)}}function be(e){var t=e.target,r=Q().contains(t)||Z.contains(t);if("mousemove"!==e.type||!r){var n=ke().concat(Z).map((function(e){var t,r=null==(t=e._tippy.popperInstance)?void 0:t.state;return r?{popperRect:e.getBoundingClientRect(),popperState:r,props:_}:null})).filter(Boolean);(function(e,t){var r=t.clientX,n=t.clientY;return e.every((function(e){var t=e.popperRect,a=e.popperState,i=e.props.interactiveBorder,o=a.placement.split("-")[0],s=a.modifiersData.offset;if(!s)return!0;var l="bottom"===o?s.top.y:0,c="top"===o?s.bottom.y:0,u="right"===o?s.left.x:0,d="left"===o?s.right.x:0,p=t.top-n+l>i,m=n-t.bottom-c>i,f=t.left-r+u>i,g=r-t.right-d>i;return p||m||f||g}))})(n,e)&&(se(),Ce(e))}}function ve(e){xe(e)||z.props.trigger.indexOf("click")>=0&&A||(z.props.interactive?z.hideWithInteractivity(e):Ce(e))}function we(e){z.props.trigger.indexOf("focusin")<0&&e.target!==Q()||z.props.interactive&&e.relatedTarget&&Z.contains(e.relatedTarget)||Ce(e)}function xe(e){return!!R.isTouch&&X()!==e.type.indexOf("touch")>=0}function _e(){Ee();var t=z.props,r=t.popperOptions,n=t.placement,a=t.offset,o=t.getReferenceClientRect,s=t.moveTransition,c=J()?V(Z).arrow:null,u=o?{getBoundingClientRect:o,contextElement:o.contextElement||Q()}:e,d=[{name:"offset",options:{offset:a}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!s}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(J()){var r=te().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?r.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?r.setAttribute("data-"+e,""):r.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];J()&&c&&d.push({name:"arrow",options:{element:c,padding:3}}),d.push.apply(d,(null==r?void 0:r.modifiers)||[]),z.popperInstance=(0,i.n4)(u,Z,Object.assign({},r,{placement:n,onFirstUpdate:l,modifiers:d}))}function Ee(){z.popperInstance&&(z.popperInstance.destroy(),z.popperInstance=null)}function ke(){return v(Z.querySelectorAll("[data-tippy-root]"))}function Se(e){z.clearDelayTimeouts(),e&&ae("onTrigger",[z,e]),de();var t=re(!0),n=K(),a=n[0],i=n[1];R.isTouch&&"hold"===a&&i&&(t=i),t?r=setTimeout((function(){z.show()}),t):z.show()}function Ce(e){if(z.clearDelayTimeouts(),ae("onUntrigger",[z,e]),z.state.isVisible){if(!(z.props.trigger.indexOf("mouseenter")>=0&&z.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&A)){var t=re(!1);t?n=setTimeout((function(){z.state.isVisible&&z.hide()}),t):a=requestAnimationFrame((function(){z.hide()}))}}else pe()}}function G(e,t){void 0===t&&(t={});var r=O.plugins.concat(t.plugins||[]);document.addEventListener("touchstart",P,d),window.addEventListener("blur",N);var n,a=Object.assign({},t,{plugins:r}),i=(n=e,_(n)?[n]:function(e){return f(e,"NodeList")}(n)?v(n):Array.isArray(n)?n:v(document.querySelectorAll(n))).reduce((function(e,t){var r=t&&Z(t,a);return r&&e.push(r),e}),[]);return _(e)?i[0]:i}G.defaultProps=O,G.setDefaultProps=function(e){Object.keys(e).forEach((function(t){O[t]=e[t]}))},G.currentInput=R,Object.assign({},o.A,{effect:function(e){var t=e.state,r={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow)}}),G.setDefaultProps({render:W});const q=G;var Y=r(5206);function K(e,t){if(null==e)return{};var r,n,a={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(a[r]=e[r]);return a}var X="undefined"!=typeof window&&"undefined"!=typeof document;function J(e,t){e&&("function"==typeof e&&e(t),{}.hasOwnProperty.call(e,"current")&&(e.current=t))}function Q(){return X&&document.createElement("div")}function ee(e,t){if(e===t)return!0;if("object"==typeof e&&null!=e&&"object"==typeof t&&null!=t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var r in e){if(!t.hasOwnProperty(r))return!1;if(!ee(e[r],t[r]))return!1}return!0}return!1}function te(e){var t=[];return e.forEach((function(e){t.find((function(t){return ee(e,t)}))||t.push(e)})),t}var re=X?n.useLayoutEffect:n.useEffect;function ne(e,t,r){r.split(/\s+/).forEach((function(r){r&&e.classList[t](r)}))}var ae={name:"className",defaultValue:"",fn:function(e){var t=e.popper.firstElementChild,r=function(){var t;return!!(null==(t=e.props.render)?void 0:t.$$tippy)};function n(){e.props.className&&!r()||ne(t,"add",e.props.className)}return{onCreate:n,onBeforeUpdate:function(){r()&&ne(t,"remove",e.props.className)},onAfterUpdate:n}}};function ie(e){return function(t){var r,i,o=t.children,s=t.content,l=t.visible,c=t.singleton,u=t.render,d=t.reference,p=t.disabled,m=void 0!==p&&p,f=t.ignoreAttributes,g=void 0===f||f,h=(t.__source,t.__self,K(t,["children","content","visible","singleton","render","reference","disabled","ignoreAttributes","__source","__self"])),y=void 0!==l,b=void 0!==c,v=(0,n.useState)(!1),w=v[0],x=v[1],_=(0,n.useState)({}),E=_[0],k=_[1],S=(0,n.useState)(),C=S[0],R=S[1],A=(r=function(){return{container:Q(),renders:1}},(i=(0,n.useRef)()).current||(i.current="function"==typeof r?r():r),i.current),P=Object.assign({ignoreAttributes:g},h,{content:A.container});y&&(P.trigger="manual",P.hideOnClick=!1),b&&(m=!0);var T=P,N=P.plugins||[];u&&(T=Object.assign({},P,{plugins:b&&null!=c.data?[].concat(N,[{fn:function(){return{onTrigger:function(e,t){var r=c.data.children.find((function(e){return e.instance.reference===t.currentTarget}));e.state.$$activeSingletonInstance=r.instance,R(r.content)}}}}]):N,render:function(){return{popper:A.container}}}));var I=[d].concat(o?[o.type]:[]);return re((function(){var t=d;d&&d.hasOwnProperty("current")&&(t=d.current);var r=e(t||A.ref||Q(),Object.assign({},T,{plugins:[ae].concat(P.plugins||[])}));return A.instance=r,m&&r.disable(),l&&r.show(),b&&c.hook({instance:r,content:s,props:T,setSingletonContent:R}),x(!0),function(){r.destroy(),null==c||c.cleanup(r)}}),I),re((function(){var e,t,r,n,a;if(1!==A.renders){var i=A.instance;i.setProps((t=i.props,r=T,Object.assign({},r,{popperOptions:Object.assign({},t.popperOptions,r.popperOptions,{modifiers:te([].concat((null==(n=t.popperOptions)?void 0:n.modifiers)||[],(null==(a=r.popperOptions)?void 0:a.modifiers)||[]))})}))),null==(e=i.popperInstance)||e.forceUpdate(),m?i.disable():i.enable(),y&&(l?i.show():i.hide()),b&&c.hook({instance:i,content:s,props:T,setSingletonContent:R})}else A.renders++})),re((function(){var e;if(u){var t=A.instance;t.setProps({popperOptions:Object.assign({},t.props.popperOptions,{modifiers:[].concat(((null==(e=t.props.popperOptions)?void 0:e.modifiers)||[]).filter((function(e){return"$$tippyReact"!==e.name})),[{name:"$$tippyReact",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t,r=e.state,n=null==(t=r.modifiersData)?void 0:t.hide;E.placement===r.placement&&E.referenceHidden===(null==n?void 0:n.isReferenceHidden)&&E.escaped===(null==n?void 0:n.hasPopperEscaped)||k({placement:r.placement,referenceHidden:null==n?void 0:n.isReferenceHidden,escaped:null==n?void 0:n.hasPopperEscaped}),r.attributes.popper={}}}])})})}}),[E.placement,E.referenceHidden,E.escaped].concat(I)),a().createElement(a().Fragment,null,o?(0,n.cloneElement)(o,{ref:function(e){A.ref=e,J(o.ref,e)}}):null,w&&(0,Y.createPortal)(u?u(function(e){var t={"data-placement":e.placement};return e.referenceHidden&&(t["data-reference-hidden"]=""),e.escaped&&(t["data-escaped"]=""),t}(E),C,A.instance):s,A.container))}}var oe=function(e,t){return(0,n.forwardRef)((function(r,i){var o=r.children,s=K(r,["children"]);return a().createElement(e,Object.assign({},t,s),o?(0,n.cloneElement)(o,{ref:function(e){J(i,e),J(o.ref,e)}}):null)}))};const se=oe(ie(q)),le=({content:e,children:t,placement:r="bottom"})=>e?React.createElement(se,{content:e,className:"!bg-tooltip",trigger:"mouseenter",hideOnClick:!0,placement:r,popperOptions:{modifiers:[{name:"preventOverflow",options:{boundary:document.querySelector("#ast-block-templates-modal")}}]},arrow:!0},React.createElement("div",{className:"inline-flex"},t)):React.createElement(n.Fragment,null,t)},6867:(e,t,r)=>{"use strict";r.d(t,{AW:()=>s,C1:()=>_,DE:()=>E,Fi:()=>y,It:()=>l,Lm:()=>d,NR:()=>o,Rk:()=>i,ev:()=>a,fp:()=>v,g9:()=>u,ik:()=>f,is:()=>m,ky:()=>h,oW:()=>g,pd:()=>b,ug:()=>x,vd:()=>p,wT:()=>w,y0:()=>c});const n="var(--colors-accent-spectra)",a=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",x:"0px",y:"0px",width:t,height:r,className:e},React.createElement("path",{fill:"currentColor",d:"M4.015.729C4.828.094 6.391-.087 7.034.037c.644.123.98.48.984.916L8.055 6.5c.003.436-.225.836-.507.89-.283.053-.7-.206-.93-.577L3.685 2.056c-.227-.371-.685-.535.33-1.327zm-.974 10.55 2.953-1.037c.411-.145.78-.548.821-.898.04-.35-.259-.766-.665-.925L3.031 7.192c-.406-.16-.875.218-.998.836 0 0-.074 2.153 0 2.598.075.446.596.799 1.008.653zm5.151.519c.008-.437-.226-.814-.522-.841-.296-.027-.766.223-1.047.556l-2.06 2.452c-.28.333-.141 1.115.268 1.264l2.154.742c.41.148 1.132-.29 1.14-.726l.067-3.447zm5.119-.571-2.583-.737c-.419-.12-.894-.108-1.055.027-.161.133-.121.556.09.938l1.63 2.961c.21.381 1.054.316 1.286-.054 0 0 .982-1.438 1.163-1.978.181-.541-.112-1.038-.531-1.157zm.629-4.164c-.116-.375-.924-1.479-1.361-1.855-.437-.377-.937-.33-1.218.001L9.696 7.178c-.282.331-.358.857-.17 1.165.188.309.689.484 1.115.389l2.879-.53c.52-.124.539-.764.42-1.139z"})),i=({className:e})=>React.createElement("svg",{className:e,xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 24 24",fill:"none"},React.createElement("path",{d:"M12.0003 9.00043V12.7504M2.69702 16.1261C1.83163 17.6261 2.9142 19.5004 4.64593 19.5004H19.3546C21.0863 19.5004 22.1689 17.6261 21.3035 16.1261L13.9492 3.37855C13.0833 1.87772 10.9172 1.87772 10.0513 3.37855L2.69702 16.1261ZM12.0003 15.7504H12.0078V15.7579H12.0003V15.7504Z",stroke:"url(#paint0_linear_17495_33324)",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("defs",null,React.createElement("linearGradient",{id:"paint0_linear_17495_33324",x1:"12.0003",y1:"2.25293",x2:"12.0003",y2:"19.5004",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#B809A7"}),React.createElement("stop",{offset:"0.46875",stopColor:"#E90B76"}),React.createElement("stop",{offset:"1",stopColor:"#FC8536"})))),o=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:t,height:r,viewBox:"0 0 24 24",className:e},React.createElement("path",{fill:"currentColor",d:"M12.545,10.239v3.821h5.445c-0.712,2.315-2.647,3.972-5.445,3.972c-3.332,0-6.033-2.701-6.033-6.032 s2.701-6.032,6.033-6.032c1.498,0,2.866,0.549,3.921,1.453l2.814-2.814C17.503,2.988,15.139,2,12.545,2 C7.021,2,2.543,6.477,2.543,12s4.478,10,10.002,10c8.396,0,10.249-7.85,9.426-11.748L12.545,10.239z"})),s=({className:e})=>React.createElement("svg",{className:e,width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M12.5 5L15 7.5M5 17.5L17.5 5L15 2.5L2.5 15L5 17.5ZM7.5 2.5C7.5 2.94203 7.67559 3.36595 7.98816 3.67851C8.30072 3.99107 8.72464 4.16667 9.16667 4.16667C8.72464 4.16667 8.30072 4.34226 7.98816 4.65482C7.67559 4.96738 7.5 5.39131 7.5 5.83333C7.5 5.39131 7.3244 4.96738 7.01184 4.65482C6.69928 4.34226 6.27536 4.16667 5.83333 4.16667C6.27536 4.16667 6.69928 3.99107 7.01184 3.67851C7.3244 3.36595 7.5 2.94203 7.5 2.5ZM15.8333 10.8333C15.8333 11.2754 16.0089 11.6993 16.3215 12.0118C16.634 12.3244 17.058 12.5 17.5 12.5C17.058 12.5 16.634 12.6756 16.3215 12.9882C16.0089 13.3007 15.8333 13.7246 15.8333 14.1667C15.8333 13.7246 15.6577 13.3007 15.3452 12.9882C15.0326 12.6756 14.6087 12.5 14.1667 12.5C14.6087 12.5 15.0326 12.3244 15.3452 12.0118C15.6577 11.6993 15.8333 11.2754 15.8333 10.8333Z",stroke:"currentColor",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),l=({className:e})=>React.createElement("svg",{className:e,width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{x:"0.5",y:"0.5",width:"23",height:"23",rx:"11.5",fill:"var(--colors-accent-st)"}),React.createElement("path",{d:"M8.25 12.375L11.25 15.375L15.75 8.625",stroke:"white",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("rect",{x:"0.5",y:"0.5",width:"23",height:"23",rx:"11.5",stroke:"var(--colors-accent-st)"})),c=({className:e})=>React.createElement("svg",{className:e,width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M20 40C31.0457 40 40 31.0457 40 20C40 8.95429 31.0457 0 20 0C8.95429 0 0 8.95429 0 20C0 31.0457 8.95429 40 20 40ZM26.1503 25.86C27.3066 25.129 27.9999 23.9058 28 22.5969C28.0001 20.7781 26.6721 19.1963 24.7885 18.7718L19.1451 17.371C18.6131 17.2511 18.4857 16.5951 18.9382 16.3065L23.3349 13.5021C25.3814 12.1967 25.9135 9.58069 24.5234 7.65897C24.3497 7.41874 24.0014 7.35629 23.7455 7.51949L13.8134 14.2191C12.6791 14.9426 12 16.1466 12 17.4342C12 19.2313 13.3121 20.7941 15.1731 21.2135L20.9084 22.635C21.4416 22.7552 21.568 23.4133 21.1131 23.7009L16.6842 26.5008C14.6319 27.7982 14.0882 30.4121 15.4699 32.3392C15.6426 32.5801 15.9906 32.6439 16.2471 32.4817L26.1503 25.86Z",fill:"#5A03EF"})),u=({className:e})=>React.createElement("svg",{className:e,width:"41",height:"40",viewBox:"0 0 41 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{x:"0.5",width:"40",height:"40",rx:"5",fill:"#FF580E"}),React.createElement("path",{d:"M35.3703 14.3008C29.723 14.8988 26.1666 14.8553 25.103 14.8009C24.9934 14.8094 24.9573 14.6297 25.0416 14.5775C28.1077 12.286 29.2383 10.6467 29.5505 10.1205C29.611 10.0473 29.5364 9.93905 29.4487 9.94586C27.9885 9.89943 18.8162 9.72129 13.3453 10.6021C8.50536 11.3656 5.63443 15.0338 5.6516 19.8013C5.66877 24.5688 8.62351 28.5151 12.8936 29.5072C23.7242 31.9981 31.0796 24.1258 32.2937 22.7082C32.3761 22.6333 32.2997 22.5024 32.1883 22.4882L26.6251 22.4635C26.4934 22.4737 26.4556 22.2713 26.5837 22.2157C33.2052 19.1008 35.1223 15.3697 35.4941 14.4738C35.5309 14.3796 35.4581 14.294 35.3484 14.3025L35.3703 14.3008Z",fill:"white"})),d=({className:e})=>React.createElement("svg",{className:e,width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{width:"40",height:"40",rx:"20",fill:"#CADAFE"}),React.createElement("path",{d:"M26 13.334V17.334H22",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M14 20.0004C14.0011 18.8426 14.3371 17.7098 14.9675 16.7388C15.5979 15.7677 16.4959 14.9997 17.553 14.5275C18.6101 14.0553 19.7813 13.8991 20.9252 14.0776C22.0692 14.2562 23.137 14.7619 24 15.5337L26 17.3337",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M14 26.666V22.666H18",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M26 20C25.9989 21.1578 25.6629 22.2905 25.0325 23.2616C24.4021 24.2327 23.5041 25.0007 22.447 25.4729C21.3899 25.9451 20.2187 26.1013 19.0748 25.9228C17.9308 25.7442 16.863 25.2385 16 24.4667L14 22.6667",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),p=({className:e})=>React.createElement("svg",{className:e,width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{width:"40",height:"40",rx:"20",fill:"#A2FCBC"}),React.createElement("path",{d:"M25.3332 16L17.9998 23.3333L14.6665 20",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),m=()=>React.createElement("svg",{width:"40",height:"40",viewBox:"0 0 40 40",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{width:"40",height:"40",rx:"20",fill:"#FEB9AF"}),React.createElement("path",{d:"M26.4866 23.9995L21.1533 14.6662C21.037 14.461 20.8684 14.2903 20.6646 14.1715C20.4608 14.0528 20.2291 13.9902 19.9933 13.9902C19.7574 13.9902 19.5258 14.0528 19.322 14.1715C19.1182 14.2903 18.9496 14.461 18.8333 14.6662L13.5 23.9995C13.3824 24.2031 13.3208 24.4341 13.3213 24.6692C13.3218 24.9042 13.3845 25.135 13.5029 25.338C13.6214 25.5411 13.7914 25.7092 13.9957 25.8254C14.2001 25.9415 14.4316 26.0016 14.6666 25.9995H25.3333C25.5672 25.9993 25.797 25.9375 25.9995 25.8204C26.202 25.7032 26.3701 25.5349 26.487 25.3322C26.6038 25.1296 26.6653 24.8998 26.6653 24.6658C26.6652 24.4319 26.6036 24.2021 26.4866 23.9995Z",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M20 18V20.6667",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M20 23.334H20.0067",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"})),f=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{width:t,height:r,className:e,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{id:"Icon"},React.createElement("path",{id:"Vector",d:"M2.89 2H17.12C17.61 2 18 2.39 18 2.88V17.12C18 17.6 17.61 18 17.12 18H13.04V11.8H15.12L15.43 9.39H13.04V7.85C13.04 7.15 13.24 6.67 14.24 6.67H15.52V4.51C15.3 4.48 14.54 4.42 13.66 4.42C11.81 4.42 10.55 5.54 10.55 7.61V9.39H8.46V11.8H10.55V18H2.89C2.65568 18 2.43081 17.9076 2.26418 17.7429C2.09756 17.5781 2.00263 17.3543 2 17.12V2.88C2 2.39 2.4 2 2.89 2Z",fill:"currentColor"}))),g=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{width:t,height:r,className:e,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{id:"Icon"},React.createElement("path",{id:"Vector",d:"M12.7 10C12.7 8.5 11.5 7.3 10 7.3C8.5 7.3 7.3 8.5 7.3 10C7.3 11.5 8.5 12.7 10 12.7C11.5 12.7 12.7 11.5 12.7 10ZM14.1 10C14.1 12.3 12.3 14.1 10 14.1C7.7 14.1 5.9 12.3 5.9 10C5.9 7.7 7.7 5.9 10 5.9C12.3 5.9 14.1 7.7 14.1 10ZM15.2 5.7C15.2 6.3 14.8 6.7 14.2 6.7C13.6 6.7 13.2 6.3 13.2 5.7C13.2 5.1 13.6 4.7 14.2 4.7C14.8 4.7 15.2 5.2 15.2 5.7ZM10 3.4C8.8 3.4 6.3 3.3 5.3 3.7C4.6 4 4 4.6 3.8 5.3C3.4 6.3 3.5 8.8 3.5 10C3.5 11.2 3.4 13.7 3.8 14.7C4 15.4 4.6 16 5.3 16.2C6.3 16.6 8.9 16.5 10 16.5C11.1 16.5 13.7 16.6 14.7 16.2C15.4 15.9 15.9 15.4 16.2 14.7C16.6 13.6 16.5 11.1 16.5 10C16.5 8.9 16.6 6.3 16.2 5.3C16 4.6 15.4 4 14.7 3.8C13.7 3.3 11.2 3.4 10 3.4ZM18 10V13.3C18 14.5 17.6 15.7 16.7 16.7C15.8 17.6 14.6 18 13.3 18H6.7C5.5 18 4.3 17.6 3.3 16.7C2.5 15.8 2 14.6 2 13.3V10V6.7C2 5.4 2.5 4.2 3.3 3.3C4.3 2.5 5.5 2 6.7 2H13.3C14.5 2 15.7 2.4 16.7 3.3C17.5 4.2 18 5.4 18 6.7V10Z",fill:"currentColor"}))),h=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{width:t,height:r,className:e,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{id:"Icon"},React.createElement("path",{id:"Vector",d:"M2.5002 18H5.5002V6.9H2.5002V18ZM4.0002 2C3.0002 2 2.2002 2.8 2.2002 3.8C2.2002 4.8 3.0002 5.6 4.0002 5.6C5.0002 5.6 5.8002 4.8 5.8002 3.8C5.8002 2.8 5.0002 2 4.0002 2ZM10.6002 8.6V6.9H7.60019V18H10.6002V12.3C10.6002 9.1 14.7002 8.9 14.7002 12.3V18H17.7002V11.2C17.7002 5.8 12.0002 6 10.6002 8.6Z",fill:"currentColor"}))),y=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{width:t,height:r,className:e,viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{id:"Icon"},React.createElement("path",{id:"Vector",d:"M18.9396 4.46023C18.4496 5.19023 17.8296 5.84023 17.1096 6.36023C17.1196 6.51023 17.1196 6.67023 17.1196 6.83023C17.1196 11.6802 13.4296 17.2702 6.68957 17.2702C4.61957 17.2702 2.68957 16.6602 1.05957 15.6202C1.34957 15.6502 1.63957 15.6702 1.93957 15.6702C3.65957 15.6702 5.23957 15.0802 6.48957 14.1002C5.72491 14.0844 4.98429 13.8302 4.37115 13.373C3.758 12.9158 3.30296 12.2786 3.06957 11.5502C3.28957 11.5902 3.51957 11.6202 3.75957 11.6202C4.08957 11.6202 4.41957 11.5702 4.71957 11.4902C3.89017 11.32 3.14485 10.8689 2.60929 10.2131C2.07373 9.55734 1.78068 8.73693 1.77957 7.89023V7.85023C2.27957 8.12023 2.83957 8.29024 3.43957 8.31024C2.93737 7.97337 2.52593 7.51794 2.24163 6.98422C1.95733 6.4505 1.80893 5.85495 1.80957 5.25023C1.80957 4.58023 1.98957 3.95023 2.30957 3.41023C4.11957 5.63023 6.81957 7.09023 9.86957 7.24023C9.80957 6.97023 9.76957 6.69023 9.76957 6.40023C9.77222 5.42862 10.16 4.49771 10.848 3.81161C11.536 3.12552 12.468 2.74023 13.4396 2.74023C14.4996 2.74023 15.4496 3.18023 16.1196 3.90023C16.9496 3.73023 17.7396 3.43023 18.4496 3.01023C18.1696 3.86023 17.5896 4.58023 16.8296 5.03023C17.5582 4.9506 18.27 4.7583 18.9396 4.46023Z",fill:"currentColor"}))),b=({className:e,width:t=20,height:r=20})=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",x:"0px",y:"0px",width:t,height:r,viewBox:"0 0 50 50",className:e},React.createElement("path",{fill:"currentColor",d:"M 44.898438 14.5 C 44.5 12.300781 42.601563 10.699219 40.398438 10.199219 C 37.101563 9.5 31 9 24.398438 9 C 17.800781 9 11.601563 9.5 8.300781 10.199219 C 6.101563 10.699219 4.199219 12.199219 3.800781 14.5 C 3.398438 17 3 20.5 3 25 C 3 29.5 3.398438 33 3.898438 35.5 C 4.300781 37.699219 6.199219 39.300781 8.398438 39.800781 C 11.898438 40.5 17.898438 41 24.5 41 C 31.101563 41 37.101563 40.5 40.601563 39.800781 C 42.800781 39.300781 44.699219 37.800781 45.101563 35.5 C 45.5 33 46 29.398438 46.101563 25 C 45.898438 20.5 45.398438 17 44.898438 14.5 Z M 19 32 L 19 18 L 31.199219 25 Z"})),v=({className:e})=>React.createElement("svg",{width:"36",height:"36",viewBox:"0 0 36 36",fill:"none",xmlns:"http://www.w3.org/2000/svg",className:e},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M28.6229 2.95082H7.37705C4.93251 2.95082 2.95082 4.93251 2.95082 7.37705V28.6229C2.95082 31.0675 4.93251 33.0492 7.37705 33.0492H28.6229C31.0675 33.0492 33.0492 31.0675 33.0492 28.6229V7.37705C33.0492 4.93251 31.0675 2.95082 28.6229 2.95082ZM7.37705 0C3.30282 0 0 3.30282 0 7.37705V28.6229C0 32.6972 3.30282 36 7.37705 36H28.6229C32.6972 36 36 32.6972 36 28.6229V7.37705C36 3.30282 32.6972 0 28.6229 0H7.37705Z",fill:"url(#paint0_linear_368_736)"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M21.7535 11.3258C21.6843 11.264 21.6113 11.2047 21.5345 11.1482C20.8682 10.6576 19.9639 10.4123 18.8217 10.4123C18.0456 10.4123 17.3903 10.5221 16.8558 10.7418C16.3213 10.9541 15.9113 11.2507 15.6258 11.6314C15.3191 12.0511 14.7967 12.3913 14.345 12.134C13.9904 11.932 13.663 11.6828 13.3721 11.392C12.8297 10.8496 12.432 10.1798 12.2155 9.44392C12.1201 9.11973 12.2045 8.76546 12.4597 8.54398C13.0306 8.04862 13.6979 7.63171 14.4616 7.29323C15.7502 6.72213 17.2146 6.43658 18.8547 6.43658C20.5241 6.43658 21.9811 6.72213 23.2258 7.29323C24.4778 7.86434 25.4516 8.65875 26.1472 9.67648C26.4016 10.0488 26.611 10.4426 26.7753 10.858C27.2626 12.0899 26.1379 13.2129 24.8132 13.2129C23.7792 13.2129 22.9514 12.4395 22.1693 11.7088C22.0296 11.5782 21.8913 11.449 21.7535 11.3258ZM14.9448 13.7623C15.1411 13.6856 15.3513 13.8017 15.461 13.9817C15.6514 14.2819 15.9113 14.5418 16.2408 14.7615C16.5703 14.9738 16.951 15.1605 17.383 15.3216C17.815 15.4753 18.2763 15.6071 18.7668 15.717L20.7876 16.2002C21.7688 16.4199 22.6693 16.7127 23.4894 17.0788C24.3094 17.4449 25.0196 17.8952 25.62 18.4297C26.2204 18.9642 26.6853 19.5939 27.0148 20.3187C27.3516 21.0436 27.5237 21.8746 27.531 22.8118C27.5237 24.1883 27.1722 25.3817 26.4767 26.3921C25.7884 27.3952 24.7927 28.175 23.4894 28.7315C22.1934 29.2806 20.6302 29.5552 18.7998 29.5552C16.984 29.5552 15.4025 29.2769 14.0552 28.7205C12.7154 28.164 11.6683 27.3403 10.9142 26.2494C10.5661 25.7375 10.2952 25.1692 10.1014 24.5445C9.71055 23.2844 10.8247 22.1748 12.144 22.1748H12.3151C13.4554 22.1748 14.3025 23.1531 14.9888 24.0638C15.3768 24.5617 15.893 24.9388 16.5373 25.195C17.189 25.444 17.9248 25.5684 18.7449 25.5684C19.5503 25.5684 20.2495 25.4513 20.8426 25.217C21.4429 24.9827 21.9079 24.6569 22.2374 24.2395C22.5668 23.8222 22.7316 23.3426 22.7316 22.8008C22.7316 22.2956 22.5815 21.8709 22.2813 21.5268C21.9884 21.1827 21.5564 20.8898 20.9853 20.6482C20.4215 20.4066 19.7296 20.1869 18.9096 19.9892L16.4605 19.3742C14.8539 18.9834 13.5337 18.4061 12.4999 17.6421C12.2205 17.4356 12.1174 17.0721 12.2155 16.7387C12.432 16.0029 12.8296 15.3332 13.3719 14.7908C13.8206 14.3421 14.3564 13.9924 14.9448 13.7623ZM12.0346 10.6595L11.8194 9.92824C11.8101 9.89649 11.7908 9.86859 11.7643 9.84875C11.7379 9.8289 11.7057 9.81818 11.6726 9.81818C11.6395 9.81818 11.6073 9.8289 11.5809 9.84875C11.5544 9.86859 11.5351 9.89649 11.5259 9.92824L11.3109 10.6595C11.1665 11.15 10.9014 11.5965 10.5397 11.958C10.1781 12.3196 9.73163 12.5847 9.24108 12.729L8.50975 12.9442C8.36331 12.9876 8.36331 13.1949 8.50975 13.2377L9.24108 13.453C9.73157 13.5973 10.178 13.8624 10.5396 14.224C10.9011 14.5855 11.1662 15.0319 11.3106 15.5224L11.5259 16.254C11.569 16.4002 11.7763 16.4002 11.8194 16.254L12.0346 15.5227C12.1789 15.0322 12.444 14.5857 12.8056 14.2241C13.1671 13.8625 13.6136 13.5974 14.1041 13.453L14.8358 13.2377C14.9819 13.1946 14.9819 12.9873 14.8358 12.9445L14.1044 12.7293C13.6139 12.5849 13.1673 12.3198 12.8057 11.9582C12.4441 11.5966 12.179 11.1501 12.0346 10.6595ZM9.42575 14.9796L9.49032 15.199C9.53363 15.3462 9.61317 15.4801 9.72166 15.5886C9.83014 15.6971 9.9641 15.7766 10.1113 15.8199L10.3307 15.8845C10.3745 15.8973 10.3745 15.9595 10.3307 15.9725L10.1112 16.037C9.96402 16.0804 9.83008 16.1599 9.72162 16.2684C9.61315 16.3769 9.53363 16.5108 9.49032 16.658L9.42575 16.8773C9.41282 16.9212 9.35063 16.9212 9.3377 16.8773L9.27313 16.6579C9.22981 16.5107 9.15028 16.3768 9.04181 16.2683C8.93335 16.1599 8.79941 16.0803 8.65227 16.037L8.43287 15.9725C8.38893 15.9596 8.38893 15.8974 8.43287 15.8844L8.65227 15.8198C8.79943 15.7765 8.93339 15.697 9.04187 15.5886C9.15035 15.4801 9.22989 15.3462 9.27322 15.199L9.3377 14.9796C9.34048 14.9701 9.34627 14.9617 9.35421 14.9558C9.36215 14.9498 9.3718 14.9466 9.38172 14.9466C9.39165 14.9466 9.4013 14.9498 9.40924 14.9558C9.41718 14.9617 9.42297 14.9701 9.42575 14.9796ZM9.00521 9.01037L8.90476 8.6691C8.90044 8.65428 8.89143 8.64127 8.87908 8.632C8.86673 8.62274 8.85171 8.61774 8.83628 8.61774C8.82084 8.61774 8.80582 8.62274 8.79347 8.632C8.78112 8.64127 8.77211 8.65428 8.76779 8.6691L8.66749 9.01037C8.60009 9.23928 8.47636 9.44762 8.30761 9.61634C8.13886 9.78506 7.93049 9.90876 7.70156 9.97612L7.36028 10.0766C7.29194 10.0968 7.29194 10.1936 7.36028 10.2135L7.70156 10.314C7.93046 10.3814 8.1388 10.5051 8.30753 10.6738C8.47625 10.8425 8.59996 11.0508 8.66735 11.2797L8.76779 11.6211C8.78791 11.6893 8.88464 11.6893 8.90476 11.6211L9.00521 11.2799C9.07257 11.0509 9.19627 10.8426 9.365 10.6738C9.53372 10.5051 9.74208 10.3814 9.97099 10.314L10.3124 10.2135C10.3806 10.1934 10.3806 10.0967 10.3124 10.0767L9.97113 9.97626C9.74219 9.90889 9.53381 9.78517 9.36506 9.61642C9.19631 9.44768 9.07258 9.2393 9.00521 9.01037Z",fill:"url(#paint1_linear_368_736)"}),React.createElement("defs",null,React.createElement("linearGradient",{id:"paint0_linear_368_736",x1:"2.34446",y1:"35.5775",x2:"14.0671",y2:"-5.20766",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#C639FF"}),React.createElement("stop",{offset:"1",stopColor:"#3662FF"})),React.createElement("linearGradient",{id:"paint1_linear_368_736",x1:"8.62596",y1:"29.2838",x2:"17.0353",y2:"3.69184",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#C639FF"}),React.createElement("stop",{offset:"1",stopColor:"#3662FF"})))),w=({className:e})=>React.createElement("svg",{className:e,width:"27",height:"22",viewBox:"0 0 27 22",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M1 6C1 3.23858 3.23858 1 6 1H21C23.7614 1 26 3.23858 26 6V16C26 18.7614 23.7614 21 21 21H6C3.23858 21 1 18.7614 1 16V6Z",stroke:"url(#paint0_linear_4073_37202)",strokeWidth:"2"}),React.createElement("path",{d:"M13.854 16L10.102 6.2H12.02L15.884 16H13.854ZM6.112 16L9.976 6.2H11.894L8.142 16H6.112ZM7.932 13.844V12.15H14.078V13.844H7.932ZM17.0581 16V6.2H18.9761V16H17.0581Z",fill:"url(#paint1_linear_4073_37202)"}),React.createElement("defs",null,React.createElement("linearGradient",{id:"paint0_linear_4073_37202",x1:"27",y1:"22",x2:"5.45342",y2:"-4.44353",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#FE5BE4"}),React.createElement("stop",{offset:"1",stopColor:n})),React.createElement("linearGradient",{id:"paint1_linear_4073_37202",x1:"21",y1:"16",x2:"11.7692",y2:"2.15385",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#FE5BE4"}),React.createElement("stop",{offset:"1",stopColor:n})))),x=({className:e})=>React.createElement("svg",{className:e,width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M4.1665 18.3333H15.8332",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4.1665 1.66675H15.8332",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M14.1668 18.3333V14.8567C14.1667 14.4147 13.9911 13.9908 13.6785 13.6783L10.0002 10L6.32183 13.6783C6.00925 13.9908 5.83359 14.4147 5.8335 14.8567V18.3333",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M5.8335 1.66675V5.14341C5.83359 5.58541 6.00925 6.00926 6.32183 6.32175L10.0002 10.0001L13.6785 6.32175C13.9911 6.00926 14.1667 5.58541 14.1668 5.14341V1.66675",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),_=({className:e})=>React.createElement("svg",{className:e,width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_739_49927)"},React.createElement("path",{d:"M18.3334 9.23355V10.0002C18.3323 11.7972 17.7504 13.5458 16.6745 14.9851C15.5985 16.4244 14.0861 17.4773 12.3628 17.9868C10.6395 18.4963 8.79774 18.4351 7.11208 17.8124C5.42642 17.1896 3.98723 16.0386 3.00915 14.5311C2.03108 13.0236 1.56651 11.2403 1.68475 9.44714C1.80299 7.65402 2.49769 5.94715 3.66525 4.58111C4.83281 3.21506 6.41067 2.26303 8.16351 1.867C9.91635 1.47097 11.7502 1.65216 13.3917 2.38355",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M7.5 9.16683L10 11.6668L18.3333 3.3335",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_739_49927"},React.createElement("rect",{width:"20",height:"20",fill:"white"})))),E=()=>React.createElement("svg",{width:"18",height:"18",viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_901_38537)"},React.createElement("path",{d:"M18 9C18 4.02944 13.9706 0 9 0C4.02944 0 0 4.02944 0 9C0 13.9706 4.02944 18 9 18C13.9706 18 18 13.9706 18 9Z",fill:"url(#paint0_linear_901_38537)"}),React.createElement("path",{d:"M13.7502 5.84406C13.652 5.75804 13.5327 5.70272 13.406 5.6844C13.2793 5.66609 13.1503 5.68552 13.0336 5.74048L10.8624 6.75372L9.60092 4.36699C9.54062 4.25556 9.45327 4.1629 9.34774 4.09843C9.24222 4.03396 9.1223 4 9.0002 4C8.8781 4 8.75819 4.03396 8.65266 4.09843C8.54714 4.1629 8.45978 4.25556 8.39949 4.36699L7.13798 6.75372L4.96682 5.74048C4.8499 5.6856 4.72068 5.66614 4.59377 5.68431C4.46686 5.70247 4.34733 5.75753 4.24867 5.84326C4.15002 5.929 4.07619 6.04198 4.03552 6.16945C3.99486 6.29692 3.98898 6.43379 4.01855 6.56458L5.10842 11.4416C5.12926 11.536 5.16815 11.625 5.22273 11.7032C5.27731 11.7814 5.34644 11.8471 5.42594 11.8964C5.53358 11.964 5.65664 11.9998 5.78208 12C5.84306 11.9999 6 12 6 12C6 12 9.96618 12 12 12C12.1992 12 12.4081 11.9955 12.5702 11.8964C12.6502 11.8477 12.7197 11.7822 12.7743 11.7039C12.829 11.6256 12.8676 11.5363 12.8877 11.4416L13.9819 6.56458C14.0111 6.43375 14.0049 6.29695 13.964 6.16963C13.923 6.0423 13.849 5.92953 13.7502 5.84406Z",fill:"white"}),React.createElement("path",{d:"M12.5 13H5.5C5.22386 13 5 13.2239 5 13.5C5 13.7761 5.22386 14 5.5 14H12.5C12.7761 14 13 13.7761 13 13.5C13 13.2239 12.7761 13 12.5 13Z",fill:"white"})),React.createElement("defs",null,React.createElement("linearGradient",{id:"paint0_linear_901_38537",x1:"8.175",y1:"1.18801e-05",x2:"22.2753",y2:"0.536807",gradientUnits:"userSpaceOnUse"},React.createElement("stop",{stopColor:"#492CDD"}),React.createElement("stop",{offset:"1",stopColor:"#AD38E2"})),React.createElement("clipPath",{id:"clip0_901_38537"},React.createElement("rect",{width:"18",height:"18",fill:"white"}))))},4118:(e,t,r)=>{"use strict";r.d(t,{U:()=>we});var n={};r.r(n),r.d(n,{DYNAMIC_CONTENT_FLAGS_RESET:()=>B,DYNAMIC_CONTENT_FLAG_SET:()=>L,DYNAMIC_CONTENT_RESYNC_STATUS:()=>O,DYNAMIC_CONTENT_SYNC_COMPLETE:()=>I,DYNAMIC_CONTENT_SYNC_MESSAGE:()=>Z,DYNAMIC_CONTENT_SYNC_START:()=>N,FETCH_FROM_API:()=>te,LOADING_NEXT_STEP:()=>oe,RESET_KEYWORDS_IMAGES_AI_STEP:()=>_,RESET_ONBOARDING_AI_STEPS:()=>R,SET_ALL_SITES:()=>X,SET_BACKGROUND_SYNC_IN_PROGRESS:()=>ie,SET_CREDITS_DETAILS:()=>z,SET_CURRENT_AI_STEP:()=>le,SET_CURRENT_CATEGORY:()=>D,SET_DYNAMIC_CONTENT:()=>j,SET_FILTER_SITES_BY_CATEGORY:()=>Y,SET_FILTER_SITES_BY_SEARCH_TERM:()=>q,SET_HIDE_NOTICE:()=>Q,SET_IMPORT_IN_PROGRESS:()=>F,SET_IS_NEW_USER_ONBOARDING:()=>H,SET_LOADING_BLOCKS_AND_SITES:()=>re,SET_NEXT_AI_STEP:()=>S,SET_NEXT_ONBOARDING_PAGE_AI_STEP:()=>W,SET_ONBOARDING_AI_DETAILS:()=>se,SET_OPEN_AI_API_KEY_AI_STEP:()=>f,SET_PREVIOUS_AI_STEP:()=>k,SET_PREVIOUS_ONBOARDING_PAGE_AI_STEP:()=>U,SET_SHOW_PAGES_ONBOARDING:()=>M,SET_WEBSITE_CONTACT_AI_STEP:()=>E,SET_WEBSITE_DETAILS_AI_STEP:()=>y,SET_WEBSITE_DETAILS_HISTORY_AI_STEP:()=>b,SET_WEBSITE_IMAGES_AI_STEP:()=>w,SET_WEBSITE_IMAGES_PRE_SELECTED_AI_STEP:()=>x,SET_WEBSITE_KEYWORDS_AI_STEP:()=>v,SET_WEBSITE_LANGUAGE_AI_STEP:()=>ae,SET_WEBSITE_LANGUAGE_LIST_AI_STEP:()=>ne,SET_WEBSITE_NAME_AI_STEP:()=>h,SET_WEBSITE_TYPE_AI_STEP:()=>g,SET_WEBSITE_TYPE_LIST_AI_STEP:()=>ee,TOGGLE_ADAPTIVE_MODE:()=>P,TOGGLE_CONNECT_ZIP_AI:()=>J,TOGGLE_DISABLE_AI_CONTENT:()=>A,TOGGLE_DISABLE_LIVE_PREVIEW:()=>T,TOGGLE_ONBOARDING_AI_STEP:()=>C,TOGGLE_ONBOARDING_PAGE_AI:()=>V,TOGGLE_SKIP_ZIP_AI_ONBOARDING:()=>G,TOGGLE_UPDATE_ONBOARDING_IMAGES:()=>$,UPDATE_LICENSE_STATUS:()=>K});var a=r(3473),i=r(9166);i.A.resolveSelect,i.A.suspendSelect,i.A.subscribe,i.A.registerGenericStore,i.A.registerStore,i.A.use;const o=i.A.register;var s=r(2543),l=r(8354);const c=(e,t,r,n,a,i)=>p(t,r,n,a,e,i,"block"),u=(e,t,r,n,a,i)=>p(t,r,n,a,e,i,"page"),d=(e,t,r,n)=>p(e,t,r,n,(0,l.iW)()),p=(e,t,r,n,a,i,o)=>{a||(a=ast_block_template_vars.allBlocks);let l=[];e&&(l=a.filter((t=>t.title.toLowerCase().includes(e.toLowerCase()))));let c=[];if(r&&(c=a.filter((e=>{const t=Object.values(e.tag);if(t.length){for(const e in t)if(t[e].toLowerCase().includes(r.toLowerCase()))return!0;return!1}return!1}))),(e||r)&&(a=(0,s.unionBy)(l,c,"ID")),t)if("favorite"===t){const e=i[o];a=a.filter((t=>e.includes(parseInt(+t.ID))))}else a=a.filter((e=>parseInt(t)===parseInt(e.category)));return n&&(a=a.filter((e=>n===e.filter))),a},m=e=>{let t=[];for(const e in ast_block_template_vars.allSites){const r=ast_block_template_vars.allSites[e],n=r.pages||{};if(Object.values(n).length)for(const e in n)n[e]["site-ID"]=r.ID,n[e]["site-title"]=r.title,t.push(n[e])}let r=[];e&&(r=t.filter((t=>t.title.toLowerCase().includes(e.toLowerCase()))));let n=[];e&&(n=t.filter((t=>t["site-title"].toLowerCase().includes(e.toLowerCase()))));let a=[];return e&&(a=t.filter((t=>{if("tag"in t){const r=Object.values(t.tag)||[];if(r.length)for(const t in r)if(r[t].toLowerCase().includes(e.toLowerCase()))return!0;return!1}return!0}))),e&&(t=(0,s.unionBy)(r,a,n,"ID")),t},f="SET_OPEN_AI_API_KEY_AI_STEP",g="SET_WEBSITE_TYPE_AI_STEP",h="SET_WEBSITE_NAME_AI_STEP",y="SET_WEBSITE_DETAILS_AI_STEP",b="SET_WEBSITE_DETAILS_HISTORY_AI_STEP",v="SET_WEBSITE_KEYWORDS_AI_STEP",w="SET_WEBSITE_IMAGES_AI_STEP",x="SET_WEBSITE_IMAGES_PRE_SELECTED_AI_STEP",_="RESET_KEYWORDS_IMAGES_AI_STEP",E="SET_WEBSITE_CONTACT_AI_STEP",k="SET_PREVIOUS_AI_STEP",S="SET_NEXT_AI_STEP",C="TOGGLE_ONBOARDING_AI_STEP",R="RESET_ONBOARDING_AI_STEPS",A="TOGGLE_DISABLE_AI_CONTENT",P="TOGGLE_ADAPTIVE_MODE",T="TOGGLE_DISABLE_LIVE_PREVIEW",N="DYNAMIC_CONTENT_SYNC_START",I="DYNAMIC_CONTENT_SYNC_COMPLETE",O="DYNAMIC_CONTENT_RESYNC_STATUS",L="DYNAMIC_CONTENT_FLAG_SET",B="DYNAMIC_CONTENT_FLAGS_RESET",j="SET_DYNAMIC_CONTENT",D="SET_CURRENT_CATEGORY",F="SET_IMPORT_IN_PROGRESS",M="SET_SHOW_PAGES_ONBOARDING",z="SET_CREDITS_DETAILS",V="TOGGLE_ONBOARDING_PAGE_AI",W="SET_NEXT_ONBOARDING_PAGE_AI_STEP",U="SET_PREVIOUS_ONBOARDING_PAGE_AI_STEP",H="SET_IS_NEW_USER_ONBOARDING",$="TOGGLE_UPDATE_ONBOARDING_IMAGES",Z="DYNAMIC_CONTENT_SYNC_MESSAGE",G="TOGGLE_SKIP_ZIP_AI_ONBOARDING",q="SET_FILTER_SITES_BY_SEARCH_TERM",Y="SET_FILTER_SITES_BY_CATEGORY",K="UPDATE_LICENSE_STATUS",X="SET_ALL_SITES",J="TOGGLE_CONNECT_ZIP_AI",Q="SET_HIDE_NOTICE",ee="SET_WEBSITE_TYPE_LIST_AI_STEP",te="FETCH_FROM_API",re="SET_LOADING_BLOCKS_AND_SITES",ne="SET_WEBSITE_LANGUAGE_LIST_AI_STEP",ae="SET_WEBSITE_LANGUAGE_AI_STEP",ie="SET_BACKGROUND_SYNC_IN_PROGRESS",oe="LOADING_NEXT_STEP",se="SET_ONBOARDING_AI_DETAILS",le="SET_CURRENT_AI_STEP";var ce=r(6134),ue=r(5878);const de=ast_block_template_vars?.business_details,{selectedImages:pe}=(0,ce._9)(ue.Jm,{}),me=!!ast_block_template_vars.skip_zip_ai_onboarding,fe={togglePopup:!1,loadingBlocksAndSites:!1,importing:!1,allPatternsAndPages:{patterns:[],pages:[]},allBlocks:[],allPatterns:[],allFavorites:[],allPatternsCategories:[],allBlocksPages:[],allPagesCategories:[],allWireframes:(0,l.iW)(),allSites:[],allPages:[],dynamicContent:ast_block_template_vars.dynamic_content,allCategories:[],favorites:ast_block_template_vars.favorites,dynamicContentSyncStatus:{pages:!1,patterns:!1},dynamicContentReSyncStatus:!1,dynamicContentSyncMessage:null,dynamicContentSyncFlags:{patterns:{},pages:{}},currentCategory:{pages:{},patterns:{}},showPagesOnboarding:ast_block_template_vars.show_pages_onboarding,credits:{flatRates:(0,ce.BP)(ast_block_template_vars.flat_rates),...ast_block_template_vars.spec_credit_details},currentScreen:"all-blocks-grid",previousScreen:"",filterSitesByCategory:"",filterSitesBySearchTerm:"",filterBlocksByCategory:"",filterBlocksByColor:"",filterBlocksBySearchTerm:"",filterBlocksPagesByCategory:"",filterBlocksPagesByColor:"",filterBlocksPagesBySearchTerm:"",filterFavoritesBySearchTerm:"",filterPagesByPageType:"",filterPagesBySearchTerm:"",pagePreview:{},sitePreview:{},fullWidthPagePreview:{},fullWidthBlockPreview:{},notice:{},importItemInfo:{},displayDynamicPopup:!1,activeBlockPaletteSlug:"default",activePagePaletteSlug:"default",defaultBlockPalette:(0,l.ob)(),defaultPagePalette:(0,l.Wb)(),activeBlockPalette:{},activePagePalette:{},blockColorPaletteObj:ast_block_template_vars.block_color_palette,pageColorPaletteObj:ast_block_template_vars.page_color_palette,onboardingAI:{showOnboarding:!1,updateImages:!1,currentStep:de?.token?2:1,isNewUser:!!ast_block_template_vars.is_new_user,stepData:{token:de?.token||"",businessType:de?.business_category_name,businessName:de?.business_name||"",businessDetails:de?.business_description||"",businessDetailsHistory:de?.business_description?[de?.business_description]:[],keywords:de?.image_keyword||[],selectedImages:pe?.length?pe:de?.images,imagesPreSelected:!!de?.images?.length||!!de?.images?.length||!1,businessContact:{phone:de?.business_phone||"",email:de?.business_email||"",address:de?.business_address||"",socialMedia:de?.social_profiles||[]},descriptionListStore:{list:[],currentPage:0},siteLanguage:de?.language||"en"}},disableAi:!!ast_block_template_vars?.disable_ai,adaptiveMode:!!ast_block_template_vars?.adaptive_mode,disablePreview:!!ast_block_template_vars?.disable_preview,regeneratingContentCategory:null,importInProgress:!1,skipZipAIOnboarding:me,connectZipAI:!1,onboardingPageAI:{showOnboarding:!1,currentStep:1,stepData:{type:{},description:""},pageContent:{},loadingNextStep:!1},aiDesignCopilot:ast_block_template_vars.ai_design_copilot,aiAssistant:ast_block_template_vars.ai_assistant,licenseStatus:ast_block_template_vars.license_status?"active":"inactive",hideNotice:(0,ce.BP)(ast_block_template_vars.hide_notice),isSyncBusinessDetails:ast_block_template_vars.is_sync_business_details,isPersonalized:ast_block_template_vars.is_personalized,backgroundSyncInProgress:"no"},ge={getTogglePopup:({togglePopup:e})=>e,getAllWireframes:({allWireframes:e})=>e,getAllPatternsAndPages:({allPatternsAndPages:e})=>e,getAllPatterns:({allPatterns:e})=>e,getAllPatternsCategories:({allPatternsCategories:e})=>e,getImporting:({importing:e})=>e,getAllPagesCategories:({allPagesCategories:e})=>e,getDynamicContentSyncFlags:({dynamicContentSyncFlags:e})=>e,getDynamicContentSyncStatus:({dynamicContentSyncStatus:e})=>e,getDynamicContentReSyncStatus:({dynamicContentReSyncStatus:e})=>e,getAllBlocksPages:({allBlocksPages:e})=>e,getAllCategories:({allCategories:e})=>e,getDynamicContent:({dynamicContent:e})=>e,getCurrentCategory:({currentCategory:e})=>e,getFavorites:({favorites:e})=>e,getAllBlocks:({allBlocks:e})=>e,getAllSites:({allSites:e})=>e,getCount:({count:e})=>e,getCurrentScreen:({currentScreen:e})=>e,getPreviousScreen:({previousScreen:e})=>e,getSearchTerm:({searchTerm:e})=>e,getSitePreview:({sitePreview:e})=>e,getNotice:({notice:e})=>e,getImportItemInfo:({importItemInfo:e})=>e,getPagePreview:({pagePreview:e})=>e,getFullWidthPreview:({fullWidthPreview:e})=>e,getFilterBlocksByCategory:({filterBlocksByCategory:e})=>e,getFilterBlocksByColor:({filterBlocksByColor:e})=>e,getDefaultBlockColorPalette:({defaultBlockPalette:e})=>e,getActiveBlockPalette:({activeBlockPalette:e})=>e,getActiveBlockPaletteSlug:({activeBlockPaletteSlug:e})=>e,getDefaultPageColorPalette:({defaultPagePalette:e})=>e,getActivePagePalette:({activePagePalette:e})=>e,getActivePagePaletteSlug:({activePagePaletteSlug:e})=>e,getFilterBlocksBySearchTerm:({filterBlocksBySearchTerm:e})=>e,getFilterPagesByPageType:({filterPagesByPageType:e})=>e,getFilterPagesBySearchTerm:({filterPagesBySearchTerm:e})=>e,getFilterBlocksPagesByCategory:({filterBlocksPagesByCategory:e})=>e,getFilterBlocksPagesByColor:({filterBlocksPagesByColor:e})=>e,getFilterBlocksPagesBySearchTerm:({filterBlocksPagesBySearchTerm:e})=>e,getFilterFavoritres:({filterFavoritesBySearchTerm:e})=>e,getFullWidthPagePreview:({fullWidthPagePreview:e})=>e,getFullWidthBlockPreview:({fullWidthBlockPreview:e})=>e,getAllPages:({allPages:e})=>e,getBlockSearchInput:({blockSearchInput:e})=>e,getDisplayDynamicPopup:({displayDynamicPopup:e})=>e,getOnboardingAI:({onboardingAI:e})=>e,getCurrentAIStep:({onboardingAI:{currentStep:e}})=>e,getAIStepData:({onboardingAI:{stepData:e}})=>e,getDisableAi:({disableAi:e})=>e,getAdaptiveMode:({adaptiveMode:e})=>e,getDisablePreview:({disablePreview:e})=>e,getRegeneratingContentCategory:({regeneratingContentCategory:e})=>e,getImportInProgress:({importInProgress:e})=>e,getShowPagesOnboarding:({showPagesOnboarding:e})=>e,getCreditsDetails:({credits:e})=>e,getOnboardingPageAI:({onboardingPageAI:e})=>e,getDynamicContentSyncMessage:({dynamicContentSyncMessage:e})=>e,getSkipZipAIOnboarding:({skipZipAIOnboarding:e})=>e,getAiDesignCopilotStatus:({aiDesignCopilot:e})=>e,getIsPersonalized:({isPersonalized:e})=>e,getAiAssistantStatus:({aiAssistant:e})=>e,getFilterSitesBySearchTerm:({filterSitesBySearchTerm:e})=>e,getFilterSitesByCategory:({filterSitesByCategory:e})=>e,getLicenseStatus:({licenseStatus:e})=>e,getBlockColorPaletteObj:({blockColorPaletteObj:e})=>e,getPageColorPaletteObj:({pageColorPaletteObj:e})=>e,getConnectZipAI:({connectZipAI:e})=>e,getHideNotice:({hideNotice:e})=>e,getLoadingBlocksAndSites:({loadingBlocksAndSites:e})=>e,getIsSyncBusinessDetails:({isSyncBusinessDetails:e})=>e,getBackgroundSyncStatus:({backgroundSyncInProgress:e})=>e,getLoadingNextStep:({onboardingAI:{loadingNextStep:e}})=>e};function he(e){return i.A.select(e)}const ye={setImporting:e=>({type:"SET_IMPORTING",importing:e}),setTogglePopup:()=>({type:"TOGGLE_POPUP"}),setOnboardingAiPopup:()=>({type:"SET_ONBOARDING_AI_POPUP"}),setFullWidthPagePreview:e=>({type:"FULL_WIDTH_PAGE_PREVIEW",fullWidthPagePreview:e}),setFullWidthBlockPreview:e=>({type:"FULL_WIDTH_BLOCK_PREVIEW",fullWidthBlockPreview:e}),*setCurrentScreen(e){return he(we).getConnectZipAI()&&(yield ye.toggleConnectZipAI()),{type:"SET_CURRENT_SCREEN",currentScreen:e}},setPreviousScreen:e=>({type:"SET_PREVIOUS_SCREEN",previousScreen:e}),setSitePreview:e=>({type:"SET_SITE_PREVIEW",sitePreview:e}),setSearchPagePreview:e=>({type:"SET_SEARCH_PAGE_PREVIEW",item:e}),setNotice:e=>({type:"SET_NOTICE",notice:e}),setPagePreview:e=>({type:"SET_PAGE_PREVIEW",pagePreview:e}),setFullWidthPreview:e=>({type:"SET_FULL_PREVIEW",fullWidthPreview:e}),setSearchTerm:e=>({type:"SEARCH_TERM",searchTerm:e}),setFilterBlocksByCategory:e=>({type:"SET_FILTER_BLOCKS_BY_CATEGORY",filterBlocksByCategory:e}),setFilterBlocksByColor:e=>({type:"SET_FILTER_BLOCKS_BY_COLOR",filterBlocksByColor:e}),setDefaultBlockPalette:e=>({type:"SET_DEFAULT_BLOCK_PALETTE",defaultBlockPalette:e}),setActiveBlockPalette:e=>({type:"SET_ACTIVE_BLOCK_PALETTE",activeBlockPalette:e}),setActiveBlockPaletteSlug:e=>({type:"SET_ACTIVE_BLOCK_PALETTE_SLUG",activeBlockPaletteSlug:e}),setDefaultPagePalette:e=>({type:"SET_DEFAULT_PAGE_PALETTE",defaultPagePalette:e}),setActivePagePalette:e=>({type:"SET_ACTIVE_PAGE_PALETTE",activePagePalette:e}),setActivePagePaletteSlug:e=>({type:"SET_ACTIVE_PAGE_PALETTE_SLUG",activePagePaletteSlug:e}),setImportItemInfo:e=>({type:"SET_IMPORT_ITEM_INFO",importItemInfo:e}),setFilterBlocksBySearchTerm:e=>({type:"SET_FILTER_BLOCKS_BY_SEARCH_TERM",filterBlocksBySearchTerm:e}),setFilterBlocksPagesByCategory:e=>({type:"SET_FILTER_BLOCKS_PAGES_BY_CATEGORY",filterBlocksPagesByCategory:e}),setFilterBlocksPagesByColor:e=>({type:"SET_FILTER_BLOCKS_PAGES_BY_COLOR",filterBlocksPagesByColor:e}),setFilterBlocksPagesBySearchTerm:e=>({type:"SET_FILTER_BLOCKS_PAGES_BY_SEARCH_TERM",filterBlocksPagesBySearchTerm:e}),setFilterFavoritres:e=>({type:"SET_FILTER_FAVORITRES",filterFavoritesBySearchTerm:e}),setFilterSitesByCategory:e=>({type:Y,payload:e}),*setFilterSitesBySearchTerm(e){return yield ye.setFilterSitesByCategory(""),{type:q,payload:e}},setFilterPagesByPageType:e=>({type:"SET_FILTER_PAGES_BY_PAGE_TYPE",filterPagesByPageType:e}),setFilterPagesBySearchTerm:e=>({type:"SET_FILTER_PAGES_BY_SEARCH_TERM",filterPagesBySearchTerm:e}),setAllPages:e=>({type:"SET_ALL_PAGES",allPages:e}),setAllSites:e=>({type:X,payload:e}),setAllPatterns:e=>({type:"SET_ALL_PATTERNS",allPatterns:e}),setCurrentCategory:(e,t)=>({type:"SET_CURRENT_CATEGORY",payload:{type:e,category:t}}),setAllCategories:e=>({type:"SET_ALL_CATEGORIES",allCategories:e}),setDynamicContent:e=>({type:"SET_DYNAMIC_CONTENT",dynamicContent:e}),setFavorites:e=>({type:"SET_FAVORITES",favorites:e}),setState:e=>({type:"SET_STATE",state:e}),setDisplayDynamicPopup:e=>({type:"SET_DISPLAY_DYNAMIC_POPUP",displayDynamicPopup:e}),toggleOnboardingAIStep:e=>({type:C,...!!e&&{payload:e}}),setNextAIStep:()=>({type:S}),setPreviousAIStep:()=>({type:k}),setCurrentAIStep:e=>({type:le,payload:e}),setTokenStep:e=>({type:f,payload:e}),setWebsiteTypeAIStep:e=>({type:g,payload:e}),setWebsiteNameAIStep:e=>({type:h,payload:e}),setWebsiteDetailsAIStep:e=>({type:y,payload:e}),setWebsiteDetailsHistoryAIStep:e=>({type:b,payload:e}),setWebsiteKeywordsAIStep:e=>({type:v,payload:e}),setWebsiteImagesAIStep:e=>({type:w,payload:e}),setWebsiteImagesPreSelectedAIStep:e=>({type:x,payload:e}),resetKeywordsImagesAIStep:()=>({type:_}),setWebsiteContactAIStep:e=>({type:E,payload:e}),resetOnboardingAISteps:()=>({type:R}),toggleDisableAiContent:e=>({type:A,...!!e&&{payload:e}}),toggleAdaptiveMode:e=>({type:P,...!!e&&{payload:e}}),toggleDisableLivePreview:e=>({type:T,...!!e&&{payload:e}}),*dynamicContentSyncStart(e){return he(we).getDynamicContentSyncMessage()&&(yield ye.setDynamicContentSyncMessage(null)),{type:N,payload:e}},*dynamicContentSyncComplete(e,t=null){return t&&(yield ye.setDynamicContentSyncMessage(t)),{type:I,payload:e}},setDynamicContentSyncMessage:e=>({type:Z,payload:e}),dynamicContentReSyncStatus:()=>({type:O}),dynamicContentFlagSet:(e,t)=>({type:L,payload:{key:e,value:t}}),dynamicContentFlagReset(e,t){const r={type:e};return t&&(r.flags=t),{type:B,payload:r}},setAllBlocksData:e=>({type:"SET_ALL_BLOCKS",payload:e}),setRegeneratingContentCategory:e=>({type:"SET_REGENERATING_CONTENT_CATEGORY",regeneratingContentCategory:e}),setImportInProgress:e=>({type:F,payload:e}),setShowPagesOnboarding:()=>({type:M}),setCreditsDetails:e=>({type:z,payload:(0,ce.BP)(e)}),toggleOnboardingPageAI:()=>({type:V}),setNextOnboardingPagesAIStep:()=>({type:W}),setPreviousOnboardingPagesAIStep:()=>({type:U}),setIsNewUserOnboarding:()=>({type:H}),toggleUpdateOnboardingImages:()=>({type:$}),toggleSkipZipAIOnboarding:()=>({type:G}),updateLicenseStatus:e=>({type:K,payload:e}),setBlockColorPaletteObj:e=>({type:"SET_BLOCK_COLOR_PALETTE_OBJ",blockColorPaletteObj:e}),setPageColorPaletteObj:e=>({type:"SET_PAGE_COLOR_PALETTE_OBJ",pageColorPaletteObj:e}),toggleConnectZipAI:()=>({type:J}),setHideNotice:e=>({type:Q,payload:e}),setLoadingBlocksAndSites:e=>({type:re,payload:e}),setIsSyncBusinessDetails:e=>({type:"SET_IS_SYNC_BUSINESS_DETAILS",isSyncBusinessDetails:e}),setIsPersonalized:e=>({type:"SET_IS_PERSONALIZED",isPersonalized:e}),fetchFromAPI:e=>({type:te,path:e}),setBackgroundSyncStatus:e=>({type:ie,payload:e}),*initializeBlocksAndSites(){const e=he(we).getAllPatternsAndPages();if(!(e.patterns.length&&e.pages.length||he(we).getLoadingBlocksAndSites())){yield ye.setLoadingBlocksAndSites(!0);try{const e=yield ye.fetchFromAPI(ue.Uc);if(!e?.success)return ye.setLoadingBlocksAndSites(!0);"yes"===e?.syncing&&(yield ye.setBackgroundSyncStatus("yes"));const t=yield ye.fetchFromAPI("gutenberg-templates/v1/categories"),r=t?.total_requests,n=2,a=Math.ceil(r/n);let i=[],o=[];for(let e=0;e<n;e++){const t=e*a+1,n=Math.min((e+1)*a,r),s=yield ye.fetchFromAPI(`gutenberg-templates/v1/blocks?start=${t}&end=${n}`);i=[...i,...s?.allBlocks],o=[...o,...s?.allBlocksPages]}const s=yield ye.fetchFromAPI("gutenberg-templates/v1/sites");yield ye.setAllCategories(t?.categories),yield ye.setAllSites(s?.sites),yield ye.setAllBlocksData({blocks:i,blocks_pages:o})}catch(e){console.error(e)}finally{return ye.setLoadingBlocksAndSites(!1)}}},setBusinessTypeListAIStep:e=>({type:ee,payload:e}),setSiteLanguageListAIStep:e=>({type:ne,payload:e}),setWebsiteLanguageAIStep:e=>({type:ae,payload:e}),setLoadingNextStep:e=>({type:oe,payload:e}),setOnboardingAIDetails:e=>({type:se,payload:e})},be=ye,ve={FETCH_FROM_API:({path:e})=>(0,ce.nr)({path:e,headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}})},we="ast-block-templates";o((0,a.A)(we,{reducer:(e=fe,t)=>{if("SET_DISPLAY_DYNAMIC_POPUP"===t.type)return{...e,displayDynamicPopup:t.displayDynamicPopup};if("SET_STATE"===t.type)return{...e,...t.state};if("FULL_WIDTH_PAGE_PREVIEW"===t.type)return{...e,fullWidthPagePreview:t.fullWidthPagePreview};if("SET_IMPORTING"===t.type)return{...e,importing:t.importing};if("SET_CURRENT_CATEGORY"===t.type){const{type:r,category:n}=t.payload,a={...e.currentCategory};return{...e,currentCategory:{...a,[r]:n}}}if("FULL_WIDTH_BLOCK_PREVIEW"===t.type)return{...e,fullWidthBlockPreview:t.fullWidthBlockPreview};if("SET_IMPORT_ITEM_INFO"===t.type)return{...e,importItemInfo:t.importItemInfo};if("SET_NOTICE"===t.type)return{...e,notice:t.notice};if("SET_SEARCH_PAGE_PREVIEW"===t.type){let r=[];const n=t.item["site-ID"]||"";return n&&(r=e.allSites.filter((e=>n===e.ID)),r&&(r=r[0])),{...e,sitePreview:r,pagePreview:t.item}}if("SET_CURRENT_SCREEN"===t.type){const r="all-sites-grid"===t.currentScreen||"all-blocks-grid"===t.currentScree?"":e.currentScreen;return{...e,currentScreen:t.currentScreen,previousScreen:r}}if("SET_PREVIOUS_SCREEN"===t.type)return{...e,previousScreen:t.previousScreen};if("TOGGLE_POPUP"===t.type){const t="gt-current-screen-"+ast_block_template_vars.site_host,r="all-single-site-pages"!==localStorage.getItem(t)?localStorage.getItem(t):"";return{...fe,currentScreen:r||fe.currentScreen,togglePopup:!e.togglePopup,filterBlocksByCategory:e.filterBlocksByCategory,filterBlocksByColor:e.filterBlocksByColor,allPatterns:e.allPatterns,allFavorites:e.allFavorites,allBlocksPages:e.allBlocksPages,allWireframes:e.allWireframes,allCategories:e.allCategories,filterBlocksBySearchTerm:e.filterBlocksBySearchTerm,activePalette:e.activePalette,filterBlocksPagesByCategory:e.filterBlocksPagesByCategory,filterBlocksPagesByColor:e.filterBlocksPagesByColor,filterBlocksPagesBySearchTerm:e.filterBlocksPagesBySearchTerm,filterFavoritesBySearchTerm:e.filterFavoritesBySearchTerm,dynamicContent:{...e.dynamicContent},onboardingAI:{...e.onboardingAI},disableAi:e.disableAi,adaptiveMode:e.adaptiveMode,disablePreview:e.disablePreview,showPagesOnboarding:e.showPagesOnboarding,credits:{...e.credits},dynamicContentSyncStatus:{...e.dynamicContentSyncStatus},dynamicContentReSyncStatus:e.dynamicContentReSyncStatus,dynamicContentSyncFlags:{...e.dynamicContentSyncFlags},currentCategory:{...e.currentCategory},regeneratingContentCategory:e.regeneratingContentCategory,skipZipAIOnboarding:e.skipZipAIOnboarding,licenseStatus:e.licenseStatus,hideNotice:{...e.hideNotice},allPagesCategories:e.allPagesCategories,allPatternsCategories:e.allPatternsCategories,allPatternsAndPages:e.allPatternsAndPages,allSites:e.allSites,loadingBlocksAndSites:e.loadingBlocksAndSites,isSyncBusinessDetails:e.isSyncBusinessDetails,isPersonalized:e.isPersonalized,backgroundSyncInProgress:e.backgroundSyncInProgress,importInProgress:e.importInProgress,favorites:e.favorites}}if("SET_ONBOARDING_AI_POPUP"===t.type){const t={...e.onboardingAI};return t.showOnboarding=!e.onboardingAI.showOnboarding,{...e,onboardingAI:t}}if("SET_SITE_PREVIEW"===t.type)return{...e,sitePreview:t.sitePreview};if("SET_PAGE_PREVIEW"===t.type)return{...e,pagePreview:t.pagePreview};if("SET_FULL_PREVIEW"===t.type)return{...e,fullWidthPreview:t.fullWidthPreview};if("SET_DEFAULT_BLOCK_PALETTE"===t.type)return{...e,defaultBlockPalette:t.defaultBlockPalette};if("SET_DEFAULT_PAGE_PALETTE"===t.type)return{...e,defaultPagePalette:t.defaultPagePalette};if("SET_ACTIVE_BLOCK_PALETTE"===t.type)return{...e,activeBlockPalette:t.activeBlockPalette};if("SET_ACTIVE_BLOCK_PALETTE_SLUG"===t.type)return{...e,activeBlockPaletteSlug:t.activeBlockPaletteSlug};if("SET_ACTIVE_PAGE_PALETTE"===t.type)return{...e,activePagePalette:t.activePagePalette};if("SET_ACTIVE_PAGE_PALETTE_SLUG"===t.type)return{...e,activePagePaletteSlug:t.activePagePaletteSlug};if("SET_FILTER_BLOCKS_BY_CATEGORY"===t.type){const r={...e,filterBlocksBySearchTerm:"",filterBlocksByCategory:t.filterBlocksByCategory};return"all-wireframe-grid"===e.currentScreen?r.allWireframes=d("",t.filterBlocksByCategory,"",e.filterBlocksByColor):r.allPatterns=p("",t.filterBlocksByCategory,"",e.filterBlocksByColor,e.allPatternsAndPages.patterns,e.favorites,"block"),r}if("SET_FILTER_BLOCKS_BY_COLOR"===t.type){const r={...e,filterBlocksBySearchTerm:"",filterBlocksByColor:t.filterBlocksByColor};return"all-wireframe-grid"===e.currentScreen?r.allWireframes=d("",e.filterBlocksByCategory,"",t.filterBlocksByColor):r.allPatterns=c("",e.filterBlocksByCategory,"",t.filterBlocksByColor,e.favorites),r}if(t.type===ee)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessTypeList:t.payload}}};if(t.type===ne)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,siteLanguageList:t.payload}}};if(t.type===ae)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,siteLanguage:t.payload},limitExceedModal:{...e.onboardingAI.limitExceedModal,limitExceedModal:t.payload}}};if("SET_FILTER_FAVORITRES"===t.type){const r={...e,filterFavoritesBySearchTerm:t.filterFavoritesBySearchTerm};return r.allFavorites=p(t.filterFavoritesBySearchTerm,r.filterBlocksPagesByCategory,"","",e.allPatternsAndPages.patterns,e.favorites,"block"),r}if("SET_FILTER_BLOCKS_BY_SEARCH_TERM"===t.type){const r={...e,filterBlocksByColor:"",filterBlocksByCategory:"",filterBlocksBySearchTerm:t.filterBlocksBySearchTerm};return"all-wireframe-grid"===e.currentScreen?r.allWireframes=d(t.filterBlocksBySearchTerm,"",t.filterBlocksBySearchTerm,""):r.allPatterns=p(t.filterBlocksBySearchTerm,r.filterBlocksByCategory,"","",e.allPatternsAndPages.patterns,e.favorites,"block"),r}if("SET_FILTER_BLOCKS_PAGES_BY_CATEGORY"===t.type){const r={...e,filterBlocksPagesBySearchTerm:"",filterBlocksPagesByCategory:t.filterBlocksPagesByCategory};return r.allBlocksPages=p(r.filterBlocksPagesBySearchTerm,t.filterBlocksPagesByCategory,"","",e.allPatternsAndPages.pages,e.favorites,"page"),r}if("SET_FILTER_BLOCKS_PAGES_BY_COLOR"===t.type){const r={...e,filterBlocksPagesBySearchTerm:"",filterBlocksPagesByColor:t.filterBlocksPagesByColor};return r.allBlocksPages=u("",e.filterBlocksPagesByCategory,"",t.filterBlocksPagesByColor,e.favorites),r}if("SET_FILTER_BLOCKS_PAGES_BY_SEARCH_TERM"===t.type){const r={...e,filterBlocksPagesByColor:"",filterBlocksPagesByCategory:"",filterBlocksPagesBySearchTerm:t.filterBlocksPagesBySearchTerm};return r.allBlocksPages=p(t.filterBlocksPagesBySearchTerm,r.filterBlocksPagesByCategory,"","",e.allPatternsAndPages.pages,e.favorites,"page"),r}if("SET_FILTER_PAGES_BY_SEARCH_TERM"===t.type)return t.filterPagesBySearchTerm.length?{...e,allPages:m(t.filterPagesBySearchTerm),filterPagesBySearchTerm:t.filterPagesBySearchTerm}:{...e,allPages:[],filterPagesBySearchTerm:t.filterPagesBySearchTerm};if(t.type===C)return{...e,onboardingAI:{...e.onboardingAI,showOnboarding:n?.payload??!e.onboardingAI.showOnboarding,currentStep:e.onboardingAI.stepData.token?2:1,updateImages:!1}};if(t.type===T)return{...e,disablePreview:n?.payload??!e.disablePreview};if(t.type===A)return{...e,disableAi:n?.payload??!e.disableAi};if(t.type===P)return{...e,adaptiveMode:n?.payload??!e.adaptiveMode};if(t.type===S){const t=5,r=e.onboardingAI.currentStep+1;return r>t?e:{...e,onboardingAI:{...e.onboardingAI,currentStep:r}}}if(t.type===k){const t=e.onboardingAI.currentStep-1;return t<0||0===t?e:{...e,onboardingAI:{...e.onboardingAI,currentStep:t}}}if(t.type===le)return{...e,onboardingAI:{...e.onboardingAI,currentStep:t.payload}};if(t.type===g)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessType:t.payload}}};if(t.type===h)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessName:t.payload}}};if(t.type===y)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessDetails:t.payload}}};if(t.type===b)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessDetailsHistory:t.payload}}};if(t.type===E)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,businessContact:t.payload}}};if(t.type===v)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,keywords:t.payload}}};if(t.type===w)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,selectedImages:t.payload}}};if(t.type===x)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,imagesPreSelected:t.payload}}};if(t.type===_)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,keywords:[],selectedImages:[],imagesPreSelected:!1}}};if(t.type===f)return{...e,onboardingAI:{...e.onboardingAI,stepData:{...e.onboardingAI.stepData,token:t.payload}}};if(t.type===R)return{...e,onboardingAI:{...e.onboardingAI,currentStep:1,stepData:{token:"",businessType:"",businessName:"",businessDetails:"",keywords:[],selectedImages:[],imagesPreSelected:!1,businessContact:{phone:"",email:"",address:"",socialMedia:[]}}}};if("SET_ALL_PAGES"===t.type)return{...e,allPages:t.allPages};if("SET_ALL_PATTERNS"===t.type)return{...e,allPatterns:t.allPatterns};if("SET_ALL_CATEGORIES"===t.type)return{...e,allCategories:t.allCategories};if("SET_DYNAMIC_CONTENT"===t.type)return{...e,dynamicContent:t.dynamicContent};if("SET_IS_SYNC_BUSINESS_DETAILS"===t.type)return{...e,isSyncBusinessDetails:t.isSyncBusinessDetails};if("SET_IS_PERSONALIZED"===t.type)return{...e,isPersonalized:t.isPersonalized};if("SET_FAVORITES"===t.type){const{currentScreen:r,filterBlocksPagesByCategory:n,filterBlocksByCategory:a}=e,i={...e,favorites:t.favorites};return"favorite"!==a&&"favorite"!==n||("all-blocks-grid"===r&&(i.allPatterns=c(e.allPatterns,"","favorite","",e.filterBlocksByColor,t.favorites)),"all-block-pages-grid"===r&&(i.allBlocksPages=u(e.allBlocksPages,"","favorite","",e.filterBlocksPagesByColor,t.favorites))),i}if(t.type===N){let r={...e.dynamicContentSyncStatus};return t.payload?r[t.payload]=!0:r={pages:!0,patterns:!0},{...e,dynamicContentSyncStatus:r}}if(t.type===I){let r={...e.dynamicContentSyncStatus};return t.payload?r[t.payload]=!1:r={pages:!1,patterns:!1},{...e,dynamicContentSyncStatus:r}}if(t.type===Z)return{...e,dynamicContentSyncMessage:t.payload};if(t.type===O)return{...e,dynamicContentReSyncStatus:!e.dynamicContentReSyncStatus};if(t.type===L){const r={...e.dynamicContentSyncFlags};return r.patterns?.hasOwnProperty(t.payload.key)&&(r.patterns[t.payload.key]=t.payload.value),r.pages?.hasOwnProperty(t.payload.key)&&(r.pages[t.payload.key]=t.payload.value),{...e,dynamicContentSyncFlags:r}}if(t.type===B){const{dynamicContentSyncFlags:r,allPatternsCategories:n,allPagesCategories:a}=e,i="patterns"===t.payload.type?n:a;return t.payload?.flags&&(r[t.payload.type]=Object.fromEntries(t.payload.flags.map((e=>[e,!1])))),t.payload.flags||i.length===r[t.payload.type]?.length||(r[t.payload.type]=Object.fromEntries(i.map((e=>[e.id,!1])))),Object.keys(r[t.payload.type]).forEach((e=>{r[t.payload.type][e]=!1})),{...e,dynamicContentSyncFlags:{...r}}}if("SET_ALL_BLOCKS"===t.type){let{blocks:r,blocks_pages:n}=t.payload;const a=(0,ce.Sk)(r,e.allCategories),i=(0,ce.NI)(n,e.allCategories);return r=(0,ce.uc)(r,a.categories,"block"),n=(0,ce.uc)(n,i.categories,"page"),{...e,allPatternsAndPages:{patterns:r,pages:n},allPatterns:p(e.filterBlocksBySearchTerm,e.filterBlocksByCategory,"","",r,e.favorites,"block"),allBlocksPages:p(e.filterBlocksPagesBySearchTerm,e.filterBlocksPagesByCategory,"","",n,e.favorites,"page"),allPatternsCategories:a.categories,allPagesCategories:i.categories,dynamicContentSyncFlags:{patterns:Object.fromEntries(a.categories.map((e=>[e.id,!1]))),pages:Object.fromEntries(i.categories.map((e=>[e.id,!1])))}}}if("SET_REGENERATING_CONTENT_CATEGORY"===t.type)return{...e,regeneratingContentCategory:t.regeneratingContentCategory};if(t.type===F)return{...e,importInProgress:t.payload};if(M===t.type)return{...e,showPagesOnboarding:!1};if(t.type===z)return{...e,credits:{...e.credits,...t.payload}};if(t.type===V){const t={...e.onboardingPageAI};return{...fe,onboardingPageAI:{...t,showOnboarding:!t.showOnboarding},togglePopup:!e.togglePopup}}if(t.type===W){const t=3,r=e.onboardingPageAI.currentStep+1;return r>t?e:{...e,onboardingPageAI:{...e.onboardingPageAI,currentStep:r}}}if(t.type===U){const t=e.onboardingPageAI.currentStep-1;return t<0||0===t?e:{...e,onboardingPageAI:{...e.onboardingPageAI,currentStep:t}}}return t.type===H?{...e,onboardingAI:{...e.onboardingAI,isNewUser:!1}}:t.type===$?{...e,onboardingAI:{...e.onboardingAI,showOnboarding:!e.onboardingAI.showOnboarding,updateImages:!e.onboardingAI.updateImages,currentStep:e.onboardingAI.updateImages?1:5}}:t.type===G?{...e,skipZipAIOnboarding:!e.skipZipAIOnboarding}:q===t.type?{...e,filterSitesBySearchTerm:t.payload}:Y===t.type?{...e,filterSitesByCategory:t.payload}:t.type===K?{...e,licenseStatus:t.payload}:t.type===X?{...e,allSites:t.payload}:"SET_BLOCK_COLOR_PALETTE_OBJ"===t.type?{...e,blockColorPaletteObj:t.blockColorPaletteObj}:"SET_PAGE_COLOR_PALETTE_OBJ"===t.type?{...e,pageColorPaletteObj:t.pageColorPaletteObj}:t.type===J?{...e,connectZipAI:!e.connectZipAI}:t.type===Q?{...e,hideNotice:{...e.hideNotice,...t.payload}}:t.type===re?{...e,loadingBlocksAndSites:t.payload}:t.type===ie?{...e,backgroundSyncInProgress:t.payload}:t.type===oe?{...e,onboardingAI:{...e.onboardingAI,loadingNextStep:t.payload}}:t.type===se?{...e,onboardingAI:t.payload}:e},actions:be,selectors:ge,controls:ve}))},5878:(e,t,r)=>{"use strict";r.d(t,{$:()=>i,Jm:()=>n,Uc:()=>a}),ast_block_template_vars.home_url;const n="ast-block-templates",a="gutenberg-templates/v1/setup",i=1e6},5034:(e,t,r)=>{"use strict";r.d(t,{A:()=>a});const n={linearTween:(e,t,r,n)=>r*e/n+t,easeInQuad:(e,t,r,n)=>r*(e/=n)*e+t,easeOutQuad:(e,t,r,n)=>-r*(e/=n)*(e-2)+t,easeInOutQuad:(e,t,r,n)=>(e/=n/2)<1?r/2*e*e+t:-r/2*(--e*(e-2)-1)+t,easeInCubic:(e,t,r,n)=>r*(e/=n)*e*e+t,easeOutCubic:(e,t,r,n)=>(e/=n,r*(--e*e*e+1)+t),easeInOutCubic:(e,t,r,n)=>(e/=n/2)<1?r/2*e*e*e+t:r/2*((e-=2)*e*e+2)+t};Object.seal(n);const a=n},860:(e,t,r)=>{"use strict";r.d(t,{A:()=>n});const n=(()=>{const e={};return Object.seal({on:(t,r)=>{e[t]||(e[t]=[]),e[t].push(r)},emit:(t,...r)=>{const n=e[t];n&&n.forEach((e=>e(...r)))},removeListener:(t,r)=>{const n=e[t];if(n){const e=n.findIndex((e=>e===r));-1!==e&&n.splice(e,1)}},removeAllListeners:t=>{e[t]&&delete e[t]}})})()},8354:(e,t,r)=>{"use strict";r.d(t,{R2:()=>f,Wb:()=>m,i9:()=>h,iW:()=>c,iZ:()=>l,mP:()=>u,ob:()=>p,yL:()=>g});var n=r(2543),a=r.n(n),i=r(6134),o=r(1760),s=r(6484);const l=(e="")=>(e=(e=e.replace("&#038;","&")).replace("&amp;","&"),(e=a()(e)).__wrapped__),c=()=>(()=>{const e={patterns:[],wireframes:[]},{allBlocks:t}=ast_block_template_vars;for(const r in t){const n=t[r].wireframe||{};Object.keys(n).length?e.wireframes.push(t[r]):e.patterns.push(t[r])}return e})().wireframes,u=async()=>{const e=wp.data.select("core/editor")?.getCurrentPostId();if(e){let t;try{t=(0,o.__)("Installed the required plugin. The page will be saved and refreshed.","ast-block-templates"),d("success",t),await wp.data.dispatch("core/editor").savePost(e),window.location.reload()}catch(e){t=(0,o.nv)((0,o.__)("Error saving the page: %s","ast-block-templates"),e),d("error",t)}}},d=(e,t)=>{window.wp.data.dispatch("core/notices").createNotice(e,t,{isDismissible:!0})},p=()=>ast_block_template_vars.block_color_palette["style-1"],m=()=>ast_block_template_vars.page_color_palette["style-1"],f=async(e,t,r,n,a,o,s)=>{const l=[];let c=!1;for(const[s,u]of e.entries())if(u?.id){n(u);try{s===e.length-1&&(c=!0);const n=new window.FormData;n.append("action","ast-block-templates-regenerate"),n.append("security",ast_block_template_vars.ai_content_ajax_nonce),n.append("category",u.id),n.append("regenerate",!1),n.append("block_type",o),n.append("is_last_category",c);const d=await(0,i.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:n});if(d.success)t(d.data.data),r(u.id,!0),a(d.data.spec_credit_details),l.push(!0);else if("api_throttle_error"===d.data.code)throw d}catch(e){if("api_throttle_error"===e.data.code)throw e;l.push(!1)}}return s(!0),l.some((e=>!!e))},g=async e=>{const t={personalizeAi:"personalize-ai",creditWarning:"credit-warning",creditDanger:"credit-danger",buildPageAi:"build-page-ai"};if(t[e])try{const r=new FormData;r.append("action","ast_block_templates_hide_notices"),r.append("notice_type",t[e]),r.append("_ajax_nonce",ast_block_template_vars._ajax_nonce),(await(0,i.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:r})).success}catch(e){(0,s.v)(e)}},h=()=>{const{spec_ai_auth_url:e}=ast_block_template_vars,t=window.location.href+"&ast_action=auth&nonce="+ast_block_template_vars.zipwp_ai_auth_nonce;return`${e}&redirect_url=${encodeURIComponent(t)}`}},6134:(e,t,r)=>{"use strict";r.d(t,{R7:()=>de,nr:()=>ge,OK:()=>K,xW:()=>Y,D6:()=>oe,sg:()=>X,GU:()=>be,ZV:()=>me,Lv:()=>ue,Iq:()=>fe,h7:()=>re,_9:()=>ie,qj:()=>ne,NI:()=>Q,Sk:()=>J,Zz:()=>te,Fx:()=>ce,Bh:()=>ye,XD:()=>se,BP:()=>pe,HU:()=>ae,yI:()=>he,uc:()=>ee});const n="-";function a(e){const t=function(e){const{theme:t,prefix:r}=e,n={nextPart:new Map,validators:[]},a=function(e,t){return t?e.map((([e,r])=>[e,r.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,r])=>[t+e,r]))):e))])):e}(Object.entries(e.classGroups),r);return a.forEach((([e,r])=>{s(r,n,e,t)})),n}(e),{conflictingClassGroups:r,conflictingClassGroupModifiers:a}=e;return{getClassGroupId:function(e){const r=e.split(n);return""===r[0]&&1!==r.length&&r.shift(),i(r,t)||function(e){if(o.test(e)){const t=o.exec(e)[1],r=t?.substring(0,t.indexOf(":"));if(r)return"arbitrary.."+r}}(e)},getConflictingClassGroupIds:function(e,t){const n=r[e]||[];return t&&a[e]?[...n,...a[e]]:n}}}function i(e,t){if(0===e.length)return t.classGroupId;const r=e[0],a=t.nextPart.get(r),o=a?i(e.slice(1),a):void 0;if(o)return o;if(0===t.validators.length)return;const s=e.join(n);return t.validators.find((({validator:e})=>e(s)))?.classGroupId}const o=/^\[(.+)\]$/;function s(e,t,r,n){e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return e.isThemeGetter?void s(e(n),t,r,n):void t.validators.push({validator:e,classGroupId:r});Object.entries(e).forEach((([e,a])=>{s(a,l(t,e),r,n)}))}else(""===e?t:l(t,e)).classGroupId=r}))}function l(e,t){let r=e;return t.split(n).forEach((e=>{r.nextPart.has(e)||r.nextPart.set(e,{nextPart:new Map,validators:[]}),r=r.nextPart.get(e)})),r}function c(e){if(e<1)return{get:()=>{},set:()=>{}};let t=0,r=new Map,n=new Map;function a(a,i){r.set(a,i),t++,t>e&&(t=0,n=r,r=new Map)}return{get(e){let t=r.get(e);return void 0!==t?t:void 0!==(t=n.get(e))?(a(e,t),t):void 0},set(e,t){r.has(e)?r.set(e,t):a(e,t)}}}const u="!";function d(e){const t=e.separator,r=1===t.length,n=t[0],a=t.length;return function(e){const i=[];let o,s=0,l=0;for(let c=0;c<e.length;c++){let u=e[c];if(0===s){if(u===n&&(r||e.slice(c,c+a)===t)){i.push(e.slice(l,c)),l=c+a;continue}if("/"===u){o=c;continue}}"["===u?s++:"]"===u&&s--}const c=0===i.length?e:e.substring(l),d=c.startsWith(u);return{modifiers:i,hasImportantModifier:d,baseClassName:d?c.substring(1):c,maybePostfixModifierPosition:o&&o>l?o-l:void 0}}}const p=/\s+/;function m(){let e,t,r=0,n="";for(;r<arguments.length;)(e=arguments[r++])&&(t=f(e))&&(n&&(n+=" "),n+=t);return n}function f(e){if("string"==typeof e)return e;let t,r="";for(let n=0;n<e.length;n++)e[n]&&(t=f(e[n]))&&(r&&(r+=" "),r+=t);return r}function g(e,...t){let r,n,i,o=function(l){const u=t.reduce(((e,t)=>t(e)),e());return r=function(e){return{cache:c(e.cacheSize),splitModifiers:d(e),...a(e)}}(u),n=r.cache.get,i=r.cache.set,o=s,s(l)};function s(e){const t=n(e);if(t)return t;const a=function(e,t){const{splitModifiers:r,getClassGroupId:n,getConflictingClassGroupIds:a}=t,i=new Set;return e.trim().split(p).map((e=>{const{modifiers:t,hasImportantModifier:a,baseClassName:i,maybePostfixModifierPosition:o}=r(e);let s=n(o?i.substring(0,o):i),l=Boolean(o);if(!s){if(!o)return{isTailwindClass:!1,originalClassName:e};if(s=n(i),!s)return{isTailwindClass:!1,originalClassName:e};l=!1}const c=function(e){if(e.length<=1)return e;const t=[];let r=[];return e.forEach((e=>{"["===e[0]?(t.push(...r.sort(),e),r=[]):r.push(e)})),t.push(...r.sort()),t}(t).join(":");return{isTailwindClass:!0,modifierId:a?c+u:c,classGroupId:s,originalClassName:e,hasPostfixModifier:l}})).reverse().filter((e=>{if(!e.isTailwindClass)return!0;const{modifierId:t,classGroupId:r,hasPostfixModifier:n}=e,o=t+r;return!i.has(o)&&(i.add(o),a(r,n).forEach((e=>i.add(t+e))),!0)})).reverse().map((e=>e.originalClassName)).join(" ")}(e,r);return i(e,a),a}return function(){return o(m.apply(null,arguments))}}function h(e){const t=t=>t[e]||[];return t.isThemeGetter=!0,t}const y=/^\[(?:([a-z-]+):)?(.+)\]$/i,b=/^\d+\/\d+$/,v=new Set(["px","full","screen"]),w=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,x=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,_=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,E=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,k=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;function S(e){return R(e)||v.has(e)||b.test(e)}function C(e){return z(e,"length",V)}function R(e){return Boolean(e)&&!Number.isNaN(Number(e))}function A(e){return z(e,"number",R)}function P(e){return Boolean(e)&&Number.isInteger(Number(e))}function T(e){return e.endsWith("%")&&R(e.slice(0,-1))}function N(e){return y.test(e)}function I(e){return w.test(e)}const O=new Set(["length","size","percentage"]);function L(e){return z(e,O,W)}function B(e){return z(e,"position",W)}const j=new Set(["image","url"]);function D(e){return z(e,j,H)}function F(e){return z(e,"",U)}function M(){return!0}function z(e,t,r){const n=y.exec(e);return!!n&&(n[1]?"string"==typeof t?n[1]===t:t.has(n[1]):r(n[2]))}function V(e){return x.test(e)&&!_.test(e)}function W(){return!1}function U(e){return E.test(e)}function H(e){return k.test(e)}function $(){const e=h("colors"),t=h("spacing"),r=h("blur"),n=h("brightness"),a=h("borderColor"),i=h("borderRadius"),o=h("borderSpacing"),s=h("borderWidth"),l=h("contrast"),c=h("grayscale"),u=h("hueRotate"),d=h("invert"),p=h("gap"),m=h("gradientColorStops"),f=h("gradientColorStopPositions"),g=h("inset"),y=h("margin"),b=h("opacity"),v=h("padding"),w=h("saturate"),x=h("scale"),_=h("sepia"),E=h("skew"),k=h("space"),O=h("translate"),j=()=>["auto",N,t],z=()=>[N,t],V=()=>["",S,C],W=()=>["auto",R,N],U=()=>["","0",N],H=()=>[R,A],$=()=>[R,N];return{cacheSize:500,separator:":",theme:{colors:[M],spacing:[S,C],blur:["none","",I,N],brightness:H(),borderColor:[e],borderRadius:["none","","full",I,N],borderSpacing:z(),borderWidth:V(),contrast:H(),grayscale:U(),hueRotate:$(),invert:U(),gap:z(),gradientColorStops:[e],gradientColorStopPositions:[T,C],inset:j(),margin:j(),opacity:H(),padding:z(),saturate:H(),scale:H(),sepia:U(),skew:$(),space:z(),translate:z()},classGroups:{aspect:[{aspect:["auto","square","video",N]}],container:["container"],columns:[{columns:[I]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",N]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[g]}],"inset-x":[{"inset-x":[g]}],"inset-y":[{"inset-y":[g]}],start:[{start:[g]}],end:[{end:[g]}],top:[{top:[g]}],right:[{right:[g]}],bottom:[{bottom:[g]}],left:[{left:[g]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",P,N]}],basis:[{basis:j()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",N]}],grow:[{grow:U()}],shrink:[{shrink:U()}],order:[{order:["first","last","none",P,N]}],"grid-cols":[{"grid-cols":[M]}],"col-start-end":[{col:["auto",{span:["full",P,N]},N]}],"col-start":[{"col-start":W()}],"col-end":[{"col-end":W()}],"grid-rows":[{"grid-rows":[M]}],"row-start-end":[{row:["auto",{span:[P,N]},N]}],"row-start":[{"row-start":W()}],"row-end":[{"row-end":W()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",N]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",N]}],gap:[{gap:[p]}],"gap-x":[{"gap-x":[p]}],"gap-y":[{"gap-y":[p]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[v]}],px:[{px:[v]}],py:[{py:[v]}],ps:[{ps:[v]}],pe:[{pe:[v]}],pt:[{pt:[v]}],pr:[{pr:[v]}],pb:[{pb:[v]}],pl:[{pl:[v]}],m:[{m:[y]}],mx:[{mx:[y]}],my:[{my:[y]}],ms:[{ms:[y]}],me:[{me:[y]}],mt:[{mt:[y]}],mr:[{mr:[y]}],mb:[{mb:[y]}],ml:[{ml:[y]}],"space-x":[{"space-x":[k]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[k]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",N,t]}],"min-w":[{"min-w":[N,t,"min","max","fit"]}],"max-w":[{"max-w":[N,t,"none","full","min","max","fit","prose",{screen:[I]},I]}],h:[{h:[N,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[N,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[N,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[N,t,"auto","min","max","fit"]}],"font-size":[{text:["base",I,C]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",A]}],"font-family":[{font:[M]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractons"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",N]}],"line-clamp":[{"line-clamp":["none",R,A]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",S,N]}],"list-image":[{"list-image":["none",N]}],"list-style-type":[{list:["none","disc","decimal",N]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[b]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[b]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",S,C]}],"underline-offset":[{"underline-offset":["auto",S,N]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:z()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",N]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",N]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[b]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",B]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",L]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},D]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[f]}],"gradient-via-pos":[{via:[f]}],"gradient-to-pos":[{to:[f]}],"gradient-from":[{from:[m]}],"gradient-via":[{via:[m]}],"gradient-to":[{to:[m]}],rounded:[{rounded:[i]}],"rounded-s":[{"rounded-s":[i]}],"rounded-e":[{"rounded-e":[i]}],"rounded-t":[{"rounded-t":[i]}],"rounded-r":[{"rounded-r":[i]}],"rounded-b":[{"rounded-b":[i]}],"rounded-l":[{"rounded-l":[i]}],"rounded-ss":[{"rounded-ss":[i]}],"rounded-se":[{"rounded-se":[i]}],"rounded-ee":[{"rounded-ee":[i]}],"rounded-es":[{"rounded-es":[i]}],"rounded-tl":[{"rounded-tl":[i]}],"rounded-tr":[{"rounded-tr":[i]}],"rounded-br":[{"rounded-br":[i]}],"rounded-bl":[{"rounded-bl":[i]}],"border-w":[{border:[s]}],"border-w-x":[{"border-x":[s]}],"border-w-y":[{"border-y":[s]}],"border-w-s":[{"border-s":[s]}],"border-w-e":[{"border-e":[s]}],"border-w-t":[{"border-t":[s]}],"border-w-r":[{"border-r":[s]}],"border-w-b":[{"border-b":[s]}],"border-w-l":[{"border-l":[s]}],"border-opacity":[{"border-opacity":[b]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[s]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[s]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[b]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[a]}],"border-color-x":[{"border-x":[a]}],"border-color-y":[{"border-y":[a]}],"border-color-t":[{"border-t":[a]}],"border-color-r":[{"border-r":[a]}],"border-color-b":[{"border-b":[a]}],"border-color-l":[{"border-l":[a]}],"divide-color":[{divide:[a]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[S,N]}],"outline-w":[{outline:[S,C]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:V()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[b]}],"ring-offset-w":[{"ring-offset":[S,C]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",I,F]}],"shadow-color":[{shadow:[M]}],opacity:[{opacity:[b]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[r]}],brightness:[{brightness:[n]}],contrast:[{contrast:[l]}],"drop-shadow":[{"drop-shadow":["","none",I,N]}],grayscale:[{grayscale:[c]}],"hue-rotate":[{"hue-rotate":[u]}],invert:[{invert:[d]}],saturate:[{saturate:[w]}],sepia:[{sepia:[_]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[r]}],"backdrop-brightness":[{"backdrop-brightness":[n]}],"backdrop-contrast":[{"backdrop-contrast":[l]}],"backdrop-grayscale":[{"backdrop-grayscale":[c]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[u]}],"backdrop-invert":[{"backdrop-invert":[d]}],"backdrop-opacity":[{"backdrop-opacity":[b]}],"backdrop-saturate":[{"backdrop-saturate":[w]}],"backdrop-sepia":[{"backdrop-sepia":[_]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[o]}],"border-spacing-x":[{"border-spacing-x":[o]}],"border-spacing-y":[{"border-spacing-y":[o]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",N]}],duration:[{duration:$()}],ease:[{ease:["linear","in","out","in-out",N]}],delay:[{delay:$()}],animate:[{animate:["none","spin","ping","pulse","bounce",N]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[x]}],"scale-x":[{"scale-x":[x]}],"scale-y":[{"scale-y":[x]}],rotate:[{rotate:[P,N]}],"translate-x":[{"translate-x":[O]}],"translate-y":[{"translate-y":[O]}],"skew-x":[{"skew-x":[E]}],"skew-y":[{"skew-y":[E]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",N]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",N]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":z()}],"scroll-mx":[{"scroll-mx":z()}],"scroll-my":[{"scroll-my":z()}],"scroll-ms":[{"scroll-ms":z()}],"scroll-me":[{"scroll-me":z()}],"scroll-mt":[{"scroll-mt":z()}],"scroll-mr":[{"scroll-mr":z()}],"scroll-mb":[{"scroll-mb":z()}],"scroll-ml":[{"scroll-ml":z()}],"scroll-p":[{"scroll-p":z()}],"scroll-px":[{"scroll-px":z()}],"scroll-py":[{"scroll-py":z()}],"scroll-ps":[{"scroll-ps":z()}],"scroll-pe":[{"scroll-pe":z()}],"scroll-pt":[{"scroll-pt":z()}],"scroll-pr":[{"scroll-pr":z()}],"scroll-pb":[{"scroll-pb":z()}],"scroll-pl":[{"scroll-pl":z()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",N]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[S,C,A]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}Symbol.toStringTag;const Z=g($);function G(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(r=G(e[t]))&&(n&&(n+=" "),n+=r)}else for(r in e)e[r]&&(n&&(n+=" "),n+=r);return n}var q=r(6156);const Y=(...e)=>Z(function(){for(var e,t,r=0,n="",a=arguments.length;r<a;r++)(e=arguments[r])&&(t=G(e))&&(n&&(n+=" "),n+=t);return n}(...e)),K=(...e)=>(...t)=>e.forEach((e=>e?.(...t))),X=(e,t,r)=>{let n;return(...a)=>{const i=r&&!n;clearTimeout(n),n=setTimeout((()=>{n=null,r||e(...a)}),t),i&&e(...a)}},J=(e=[],t=[],r="block")=>{const n=new Map,a=new Array;return t?.forEach((t=>{const i=e.find((e=>t.id===e.category)),o=e.filter((e=>t.id===e.category&&e.type===r));i?.category&&t&&(n.has(i.category)||n.set(i.category,t)),a.push(...o)})),{patterns:a,categories:Array.from(n.values())}},Q=(e=[],t=[],r="page")=>{const n=new Map,a=new Array;return t?.forEach((t=>{const i=e.find((e=>t.id===e.category)),o=e.filter((e=>t.id===e.category&&e.type===r));i?.category&&t&&(n.has(i.category)||n.set(i.category,t)),a.push(...o)})),{pages:a,categories:Array.from(n.values())}},ee=(e=[],t=[],r="block")=>{const n=[];return t?.forEach((t=>{const a=e.filter((e=>t.id===e.category&&e.type===r));n.push(...a)})),n},te=e=>Math.floor(e/3)+1,re=e=>e%3+1,ne=(e,t)=>[1,2,3][(t-1+(e-1)%3)%3],ae=(e,t)=>{const r=window.sessionStorage;try{r.setItem(e,JSON.stringify(t))}catch(e){console.error(e)}},ie=(e,t=void 0)=>{const r="undefined"!=typeof sessionStorage?sessionStorage:window.sessionStorage;try{const n=r.getItem(e);return n?JSON.parse(n):t}catch(e){return console.error(e),t}},oe=e=>{const t="undefined"!=typeof sessionStorage?sessionStorage:window.sessionStorage;try{t.removeItem(e)}catch(e){console.error(e)}},se=e=>(e.forEach((e=>{e?.attributes&&(e.attributes.block_id=((e=8)=>{let t="";for(let r=e;r>0;--r)t+="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"[Math.floor(62*Math.random())];return t.toLowerCase()})()),e?.innerBlocks?.length>0&&se(e.innerBlocks)})),e),le=e=>{const t={active:!1,inactive:!1,notInstalled:!1};switch(e){case"active":t.active=!0;break;case"inactive":t.inactive=!0;break;default:t.notInstalled=!0}return t},ce=()=>{const{spectra_status:e}=ast_block_template_vars;return le(e)},ue=()=>{const{astra_sites_pro_status:e}=ast_block_template_vars;return le(e)},de=(e,t=400)=>{e&&(e.style.height="auto",e.scrollHeight>t?(e.style.height=`${t}px`,e.style.overflowY="auto"):(e.style.height=`${e.scrollHeight}px`,e.style.overflowY="hidden"))},pe=e=>{const t={};for(const[r,n]of Object.entries(e))t[r.replace(/_([a-z])/g,((e,t)=>t.toUpperCase()))]=n;return t},me=e=>{if(!e)return"0";const{magnitude:t,suffix:r}=[{magnitude:1e12,suffix:"T"},{magnitude:1e9,suffix:"B"},{magnitude:1e6,suffix:"M"},{magnitude:1e3,suffix:"K"},{magnitude:1,suffix:""}].find((({magnitude:t})=>e>=t)),n=(e/t).toFixed(1).replace(/\.0$/,"");return e<1e3?e.toString():n+r+(e%t>0?"+":"")},fe=e=>e<=10?"text-credit-danger":e<=20?"text-credit-warning":"",ge=window.wp.apiFetch,he=({title:e,message:t})=>e&&t?React.createElement("div",{className:"min-w-[224px]"},React.createElement("p",{className:"text-sm font-semibold text-white leading-5"},e),React.createElement("p",{className:"mt-1 text-sm font-normal text-white leading-5"},t)):React.createElement("span",{className:"text-white text-sm min-w-[224px]"},t),ye=e=>!!(e=>{try{return new URL(e),!0}catch(e){return!1}})(e)&&!!/^[a-zA-Z0-9_\-\. :/]+$/.test(e),be={autoClose:4e3,icon:React.createElement("div",{className:"h-10 !w-10 bg-toast-error-icon flex items-center justify-center rounded-full"},React.createElement(q.A,{className:"w-4 h-4 [&>path]:stroke-[2px]",stroke:"#111827"}))}},9431:(e,t,r)=>{"use strict";r.d(t,{o:()=>i,s:()=>a});var n=r(6484);const a=e=>new Promise(((t,r)=>{const a=new window.FormData;a.append("action","ast_block_templates_activate_plugin"),a.append("init",e.init),a.append("security",ast_block_template_vars._ajax_nonce),wp.apiFetch({url:ast_block_template_vars.ajax_url,method:"POST",body:a}).then((e=>{e.success?t(e):r(e)})).catch((e=>{(0,n.v)(e)}))})),i=e=>new Promise(((t,r)=>{wp.updates.queue.push({action:"install-plugin",data:{slug:e.slug,init:e.init,name:e.name,success(r){t(r,e)},error(t){r(t,e)}}}),wp.updates.queueChecker()}))},9392:(e,t,r)=>{"use strict";r.d(t,{V:()=>a});const{post:n}=wp.ajax,a=(e,t)=>n({action:"ast_block_templates_data_option",id:e,type:t,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((e=>e))},2513:(e,t,r)=>{"use strict";function n(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){const r=[];let n,a=!0,i=!1;try{for(let n,i=e[Symbol.iterator]();!(a=(n=i.next()).done)&&(r.push(n.value),!t||r.length!==t);a=!0);}catch(e){i=!0,n=e}finally{try{a||null===_i.return||_i.return()}finally{if(i)throw n}}return r}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}r.d(t,{j:()=>a});const a={stdClass:function(){},stringify:function(e){const t=new Map([[1/0,"d:INF;"],[-1/0,"d:-INF;"],[NaN,"d:NAN;"],[null,"N;"],[void 0,"N;"]]),r=function(e){const t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:'"';return"".concat((r=e,r?encodeURI(r).match(/(%.)?./g).length:0),":").concat(t[0]).concat(e).concat(t[t.length-1]);var r};let a=0;return function e(i){const o=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(t.has(i))return t.get(i);if(a+=o,"string"==typeof i)return"s:".concat(r(i),";");if("number"==typeof i)return"".concat(Math.round(i)===i?"i":"d",":").concat(`${i}`.toUpperCase().replace(/(-?\d)E/,"$1.0E"),";");if("boolean"==typeof i)return"b:".concat(+i,";");const s=Array.isArray(i)||i.constructor===Object;if(t.set(i,"".concat("rR"[+s],":").concat(a,";")),"function"==typeof i.serialize)return"C:".concat(r(i.constructor.name),":").concat(r(i.serialize(),"{}"));const l=Object.entries(i).filter((e=>{const t=n(e,2);return t[0],"function"!=typeof t[1]}));return(s?"a":"O:".concat(r(i.constructor.name)))+":".concat(l.length,":{").concat(l.map((t=>{const r=n(t,2),a=r[0],i=r[1];return e(s&&/^\d{1,16}$/.test(a)?+a:a,!1)+e(i)})).join(""),"}")}(e)},parse:function(e){const t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.stdClass=a.stdClass;let r=0;const n=[null],i={INF:1/0,"-INF":-1/0,NAN:NaN},o=function(t){const n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:r;throw new Error("Error at ".concat(n,": ").concat(t,"\n").concat(e,"\n").concat(" ".repeat(n),"^"))},s=function(t,n){return t===e.slice(r,r+=t.length)?n:o("Expected '".concat(t,"'"),r-t.length)};function l(t,n){const a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:";";s(":");const i=t.exec(e.slice(r));return i||o("Exected ".concat(n,", but got '").concat(e.slice(r).match(/^[:;{}]|[^:;{}]*/)[0],"'")),r+=i[0].length,s(a,i[0])}function c(t){const n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=r;for(;t>0;){const n=e.charCodeAt(r++);t-=n<128?1:n<2048||n>>11==27?2:3}return t?o("Invalid string length",a-2):s(n,e.slice(a,r))}const u=function(e){return e?t[e]?Object.create(t[e].prototype):new((r={},n=e,a=()=>{},n in r?Object.defineProperty(r,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):r[n]=a,r)[e]):{};var r,n,a},d=function(){return l(/^[01]/,"a '0' or '1'",";")},p=function(){return+l(/^-?\d+/,"an integer",";")},m=function(e){return+l(/^\d+/,"an unsigned integer",e)},f=function(){const e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return c(m(':"'),`"${e}`)};function g(){const t=e[r++];return"s"===t?f(";"):"i"===t?m(";"):o("Expected 's' or 'i' as type for a key, but got ${str[offset-1]}",r-1)}function h(e){for(let t=0,r=m(":{");t<r;t++)e[g()]=y();return s("}",e)}function y(){const t=e[r++].toLowerCase(),a=n.push(null)-1,g="n"===t?s(";",null):"s"===t?f(";"):"b"===t?d():"i"===t?p():"d"===t?function(){const e=l(/^-?(\d+(\.\d+)?(E[+-]\d+)?|INF)|NAN/,"a decimal number",";");return e in i?i[e]:+e}():"a"===t?function(){const e=h({});return Object.keys(e).some(((e,t)=>e!=t))?e:Object.values(e)}():"o"===t?h(u(f())):"c"===t?("function"!=typeof(y=u(f())).unserialize&&o("Instance of ".concat(y.constructor.name,' does not have an "unserialize" method')),y.unserialize(c(m(":{"))),s("}",y)):"r"===t?n[p()]:o("Unexpected type ".concat(t),r-1);var y;return"r"!==t&&(n[a]=g),g}const b=y();return r!==e.length&&o("Unexpected trailing character"),b}}},8723:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,":root {\n  --toastify-color-light: #fff;\n  --toastify-color-dark: #121212;\n  --toastify-color-info: #3498db;\n  --toastify-color-success: #07bc0c;\n  --toastify-color-warning: #f1c40f;\n  --toastify-color-error: #e74c3c;\n  --toastify-color-transparent: rgba(255, 255, 255, 0.7);\n  --toastify-icon-color-info: var(--toastify-color-info);\n  --toastify-icon-color-success: var(--toastify-color-success);\n  --toastify-icon-color-warning: var(--toastify-color-warning);\n  --toastify-icon-color-error: var(--toastify-color-error);\n  --toastify-toast-width: 320px;\n  --toastify-toast-background: #fff;\n  --toastify-toast-min-height: 64px;\n  --toastify-toast-max-height: 800px;\n  --toastify-font-family: sans-serif;\n  --toastify-z-index: 9999;\n  --toastify-text-color-light: #757575;\n  --toastify-text-color-dark: #fff;\n  --toastify-text-color-info: #fff;\n  --toastify-text-color-success: #fff;\n  --toastify-text-color-warning: #fff;\n  --toastify-text-color-error: #fff;\n  --toastify-spinner-color: #616161;\n  --toastify-spinner-color-empty-area: #e0e0e0;\n  --toastify-color-progress-light: linear-gradient(\n    to right,\n    #4cd964,\n    #5ac8fa,\n    #007aff,\n    #34aadc,\n    #5856d6,\n    #ff2d55\n  );\n  --toastify-color-progress-dark: #bb86fc;\n  --toastify-color-progress-info: var(--toastify-color-info);\n  --toastify-color-progress-success: var(--toastify-color-success);\n  --toastify-color-progress-warning: var(--toastify-color-warning);\n  --toastify-color-progress-error: var(--toastify-color-error);\n}\n\n.Toastify__toast-container {\n  z-index: var(--toastify-z-index);\n  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));\n  position: fixed;\n  padding: 4px;\n  width: var(--toastify-toast-width);\n  box-sizing: border-box;\n  color: #fff;\n}\n\n.Toastify__toast-container--top-left {\n  top: 1em;\n  left: 1em;\n}\n\n.Toastify__toast-container--top-center {\n  top: 1em;\n  left: 50%;\n  transform: translateX(-50%);\n}\n\n.Toastify__toast-container--top-right {\n  top: 1em;\n  right: 1em;\n}\n\n.Toastify__toast-container--bottom-left {\n  bottom: 1em;\n  left: 1em;\n}\n\n.Toastify__toast-container--bottom-center {\n  bottom: 1em;\n  left: 50%;\n  transform: translateX(-50%);\n}\n\n.Toastify__toast-container--bottom-right {\n  bottom: 1em;\n  right: 1em;\n}\n\n@media only screen and (max-width : 480px) {\n  .Toastify__toast-container {\n    width: 100vw;\n    padding: 0;\n    left: 0;\n    margin: 0;\n  }\n  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {\n    top: 0;\n    transform: translateX(0);\n  }\n  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {\n    bottom: 0;\n    transform: translateX(0);\n  }\n  .Toastify__toast-container--rtl {\n    right: 0;\n    left: initial;\n  }\n}\n\n.Toastify__toast {\n  position: relative;\n  min-height: var(--toastify-toast-min-height);\n  box-sizing: border-box;\n  margin-bottom: 1rem;\n  padding: 8px;\n  border-radius: 4px;\n  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);\n  display: flex;\n  justify-content: space-between;\n  max-height: var(--toastify-toast-max-height);\n  overflow: hidden;\n  font-family: var(--toastify-font-family);\n  cursor: default;\n  direction: ltr;\n  /* webkit only issue #791 */\n  z-index: 0;\n}\n\n.Toastify__toast--rtl {\n  direction: rtl;\n}\n\n.Toastify__toast--close-on-click {\n  cursor: pointer;\n}\n\n.Toastify__toast-body {\n  margin: auto 0;\n  flex: 1 1 auto;\n  padding: 6px;\n  display: flex;\n  align-items: center;\n}\n\n.Toastify__toast-body > div:last-child {\n  word-break: break-word;\n  flex: 1;\n}\n\n.Toastify__toast-icon {\n  margin-inline-end: 10px;\n  width: 20px;\n  flex-shrink: 0;\n  display: flex;\n}\n\n.Toastify--animate {\n  animation-fill-mode: both;\n  animation-duration: 0.7s;\n}\n\n.Toastify--animate-icon {\n  animation-fill-mode: both;\n  animation-duration: 0.3s;\n}\n\n@media only screen and (max-width : 480px) {\n  .Toastify__toast {\n    margin-bottom: 0;\n    border-radius: 0;\n  }\n}\n\n.Toastify__toast-theme--dark {\n  background: var(--toastify-color-dark);\n  color: var(--toastify-text-color-dark);\n}\n\n.Toastify__toast-theme--light {\n  background: var(--toastify-color-light);\n  color: var(--toastify-text-color-light);\n}\n\n.Toastify__toast-theme--colored.Toastify__toast--default {\n  background: var(--toastify-color-light);\n  color: var(--toastify-text-color-light);\n}\n\n.Toastify__toast-theme--colored.Toastify__toast--info {\n  color: var(--toastify-text-color-info);\n  background: var(--toastify-color-info);\n}\n\n.Toastify__toast-theme--colored.Toastify__toast--success {\n  color: var(--toastify-text-color-success);\n  background: var(--toastify-color-success);\n}\n\n.Toastify__toast-theme--colored.Toastify__toast--warning {\n  color: var(--toastify-text-color-warning);\n  background: var(--toastify-color-warning);\n}\n\n.Toastify__toast-theme--colored.Toastify__toast--error {\n  color: var(--toastify-text-color-error);\n  background: var(--toastify-color-error);\n}\n\n.Toastify__progress-bar-theme--light {\n  background: var(--toastify-color-progress-light);\n}\n\n.Toastify__progress-bar-theme--dark {\n  background: var(--toastify-color-progress-dark);\n}\n\n.Toastify__progress-bar--info {\n  background: var(--toastify-color-progress-info);\n}\n\n.Toastify__progress-bar--success {\n  background: var(--toastify-color-progress-success);\n}\n\n.Toastify__progress-bar--warning {\n  background: var(--toastify-color-progress-warning);\n}\n\n.Toastify__progress-bar--error {\n  background: var(--toastify-color-progress-error);\n}\n\n.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {\n  background: var(--toastify-color-transparent);\n}\n\n.Toastify__close-button {\n  color: #fff;\n  background: transparent;\n  outline: none;\n  border: none;\n  padding: 0;\n  cursor: pointer;\n  opacity: 0.7;\n  transition: 0.3s ease;\n  align-self: flex-start;\n}\n\n.Toastify__close-button--light {\n  color: #000;\n  opacity: 0.3;\n}\n\n.Toastify__close-button > svg {\n  fill: currentColor;\n  height: 16px;\n  width: 14px;\n}\n\n.Toastify__close-button:hover, .Toastify__close-button:focus {\n  opacity: 1;\n}\n\n@keyframes Toastify__trackProgress {\n  0% {\n    transform: scaleX(1);\n  }\n  100% {\n    transform: scaleX(0);\n  }\n}\n\n.Toastify__progress-bar {\n  position: absolute;\n  bottom: 0;\n  left: 0;\n  width: 100%;\n  height: 5px;\n  z-index: var(--toastify-z-index);\n  opacity: 0.7;\n  transform-origin: left;\n}\n\n.Toastify__progress-bar--animated {\n  animation: Toastify__trackProgress linear 1 forwards;\n}\n\n.Toastify__progress-bar--controlled {\n  transition: transform 0.2s;\n}\n\n.Toastify__progress-bar--rtl {\n  right: 0;\n  left: initial;\n  transform-origin: right;\n}\n\n.Toastify__spinner {\n  width: 20px;\n  height: 20px;\n  box-sizing: border-box;\n  border: 2px solid;\n  border-radius: 100%;\n  border-color: var(--toastify-spinner-color-empty-area);\n  border-right-color: var(--toastify-spinner-color);\n  animation: Toastify__spin 0.65s linear infinite;\n}\n\n@keyframes Toastify__bounceInRight {\n  from, 60%, 75%, 90%, to {\n    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);\n  }\n  from {\n    opacity: 0;\n    transform: translate3d(3000px, 0, 0);\n  }\n  60% {\n    opacity: 1;\n    transform: translate3d(-25px, 0, 0);\n  }\n  75% {\n    transform: translate3d(10px, 0, 0);\n  }\n  90% {\n    transform: translate3d(-5px, 0, 0);\n  }\n  to {\n    transform: none;\n  }\n}\n\n@keyframes Toastify__bounceOutRight {\n  20% {\n    opacity: 1;\n    transform: translate3d(-20px, 0, 0);\n  }\n  to {\n    opacity: 0;\n    transform: translate3d(2000px, 0, 0);\n  }\n}\n\n@keyframes Toastify__bounceInLeft {\n  from, 60%, 75%, 90%, to {\n    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);\n  }\n  0% {\n    opacity: 0;\n    transform: translate3d(-3000px, 0, 0);\n  }\n  60% {\n    opacity: 1;\n    transform: translate3d(25px, 0, 0);\n  }\n  75% {\n    transform: translate3d(-10px, 0, 0);\n  }\n  90% {\n    transform: translate3d(5px, 0, 0);\n  }\n  to {\n    transform: none;\n  }\n}\n\n@keyframes Toastify__bounceOutLeft {\n  20% {\n    opacity: 1;\n    transform: translate3d(20px, 0, 0);\n  }\n  to {\n    opacity: 0;\n    transform: translate3d(-2000px, 0, 0);\n  }\n}\n\n@keyframes Toastify__bounceInUp {\n  from, 60%, 75%, 90%, to {\n    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);\n  }\n  from {\n    opacity: 0;\n    transform: translate3d(0, 3000px, 0);\n  }\n  60% {\n    opacity: 1;\n    transform: translate3d(0, -20px, 0);\n  }\n  75% {\n    transform: translate3d(0, 10px, 0);\n  }\n  90% {\n    transform: translate3d(0, -5px, 0);\n  }\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n@keyframes Toastify__bounceOutUp {\n  20% {\n    transform: translate3d(0, -10px, 0);\n  }\n  40%, 45% {\n    opacity: 1;\n    transform: translate3d(0, 20px, 0);\n  }\n  to {\n    opacity: 0;\n    transform: translate3d(0, -2000px, 0);\n  }\n}\n\n@keyframes Toastify__bounceInDown {\n  from, 60%, 75%, 90%, to {\n    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);\n  }\n  0% {\n    opacity: 0;\n    transform: translate3d(0, -3000px, 0);\n  }\n  60% {\n    opacity: 1;\n    transform: translate3d(0, 25px, 0);\n  }\n  75% {\n    transform: translate3d(0, -10px, 0);\n  }\n  90% {\n    transform: translate3d(0, 5px, 0);\n  }\n  to {\n    transform: none;\n  }\n}\n\n@keyframes Toastify__bounceOutDown {\n  20% {\n    transform: translate3d(0, 10px, 0);\n  }\n  40%, 45% {\n    opacity: 1;\n    transform: translate3d(0, -20px, 0);\n  }\n  to {\n    opacity: 0;\n    transform: translate3d(0, 2000px, 0);\n  }\n}\n\n.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {\n  animation-name: Toastify__bounceInLeft;\n}\n\n.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {\n  animation-name: Toastify__bounceInRight;\n}\n\n.Toastify__bounce-enter--top-center {\n  animation-name: Toastify__bounceInDown;\n}\n\n.Toastify__bounce-enter--bottom-center {\n  animation-name: Toastify__bounceInUp;\n}\n\n.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {\n  animation-name: Toastify__bounceOutLeft;\n}\n\n.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {\n  animation-name: Toastify__bounceOutRight;\n}\n\n.Toastify__bounce-exit--top-center {\n  animation-name: Toastify__bounceOutUp;\n}\n\n.Toastify__bounce-exit--bottom-center {\n  animation-name: Toastify__bounceOutDown;\n}\n\n@keyframes Toastify__zoomIn {\n  from {\n    opacity: 0;\n    transform: scale3d(0.3, 0.3, 0.3);\n  }\n  50% {\n    opacity: 1;\n  }\n}\n\n@keyframes Toastify__zoomOut {\n  from {\n    opacity: 1;\n  }\n  50% {\n    opacity: 0;\n    transform: scale3d(0.3, 0.3, 0.3);\n  }\n  to {\n    opacity: 0;\n  }\n}\n\n.Toastify__zoom-enter {\n  animation-name: Toastify__zoomIn;\n}\n\n.Toastify__zoom-exit {\n  animation-name: Toastify__zoomOut;\n}\n\n@keyframes Toastify__flipIn {\n  from {\n    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);\n    animation-timing-function: ease-in;\n    opacity: 0;\n  }\n  40% {\n    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);\n    animation-timing-function: ease-in;\n  }\n  60% {\n    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);\n    opacity: 1;\n  }\n  80% {\n    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);\n  }\n  to {\n    transform: perspective(400px);\n  }\n}\n\n@keyframes Toastify__flipOut {\n  from {\n    transform: perspective(400px);\n  }\n  30% {\n    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);\n    opacity: 1;\n  }\n  to {\n    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);\n    opacity: 0;\n  }\n}\n\n.Toastify__flip-enter {\n  animation-name: Toastify__flipIn;\n}\n\n.Toastify__flip-exit {\n  animation-name: Toastify__flipOut;\n}\n\n@keyframes Toastify__slideInRight {\n  from {\n    transform: translate3d(110%, 0, 0);\n    visibility: visible;\n  }\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideInLeft {\n  from {\n    transform: translate3d(-110%, 0, 0);\n    visibility: visible;\n  }\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideInUp {\n  from {\n    transform: translate3d(0, 110%, 0);\n    visibility: visible;\n  }\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideInDown {\n  from {\n    transform: translate3d(0, -110%, 0);\n    visibility: visible;\n  }\n  to {\n    transform: translate3d(0, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideOutRight {\n  from {\n    transform: translate3d(0, 0, 0);\n  }\n  to {\n    visibility: hidden;\n    transform: translate3d(110%, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideOutLeft {\n  from {\n    transform: translate3d(0, 0, 0);\n  }\n  to {\n    visibility: hidden;\n    transform: translate3d(-110%, 0, 0);\n  }\n}\n\n@keyframes Toastify__slideOutDown {\n  from {\n    transform: translate3d(0, 0, 0);\n  }\n  to {\n    visibility: hidden;\n    transform: translate3d(0, 500px, 0);\n  }\n}\n\n@keyframes Toastify__slideOutUp {\n  from {\n    transform: translate3d(0, 0, 0);\n  }\n  to {\n    visibility: hidden;\n    transform: translate3d(0, -500px, 0);\n  }\n}\n\n.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {\n  animation-name: Toastify__slideInLeft;\n}\n\n.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {\n  animation-name: Toastify__slideInRight;\n}\n\n.Toastify__slide-enter--top-center {\n  animation-name: Toastify__slideInDown;\n}\n\n.Toastify__slide-enter--bottom-center {\n  animation-name: Toastify__slideInUp;\n}\n\n.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {\n  animation-name: Toastify__slideOutLeft;\n}\n\n.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {\n  animation-name: Toastify__slideOutRight;\n}\n\n.Toastify__slide-exit--top-center {\n  animation-name: Toastify__slideOutUp;\n}\n\n.Toastify__slide-exit--bottom-center {\n  animation-name: Toastify__slideOutDown;\n}\n\n@keyframes Toastify__spin {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(360deg);\n  }\n}",""]);const i=a},8087:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,'.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(.54,1.5,.38,1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:transparent;border-style:solid}.tippy-content{position:relative;padding:5px 9px;z-index:1}',""]);const i=a},9552:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".ast-block-templates-content{height:calc(100vh - 55px);overflow-y:auto;color:#444}.ast-block-templates-content img{max-width:100%;vertical-align:middle}.ast-block-templates-content .title{margin:0;font-size:14px;color:#444;margin-bottom:5px}.ast-block-templates-content .title b{font-weight:900}.ast-block-templates-content .sub-title{font-weight:300;font-size:13px}",""]);const i=a},7274:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".ast-block-templates-full-preview{max-height:calc(100vh - 210px);overflow-y:auto;box-shadow:0 0 16px 0 rgba(0,0,0,.12);margin:1.1%}",""]);const i=a},8074:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".ast-block-templates-full-preview{text-align:center}",""]);const i=a},8359:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".back-to-templates{display:inline-block;text-decoration:none;font-size:13px;line-height:26px;height:28px;margin:0;padding:0 10px 1px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;background:#fafafa;border-color:#999;color:#23282d;margin-top:25px}",""]);const i=a},7979:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".ast-block-templates-popup-wrap{position:fixed;left:0;right:0;top:0;bottom:0;background:rgba(49,49,49,.5);z-index:9}.ast-block-templates-popup-wrap.hide{display:none;opacity:0}.ast-block-templates-popup{background:#f2f2f2;margin:0 auto;width:660px;max-height:420px;transform:translate(-50%, -40%);box-sizing:border-box;position:fixed;background-color:#f1f3f5;z-index:100059;text-align:left;top:40%;left:50%;box-shadow:0 3px 6px rgba(0,0,0,.3);border-radius:2px}.ast-block-templates-popup-header{background:#fff;margin-top:0;box-shadow:0 0 8px rgba(0,0,0,.1);margin-bottom:.5em;display:flex;justify-content:space-between}.ast-block-templates-popup-footer{padding:1em 1em 1em 2em;z-index:30;box-sizing:border-box;border-top:1px solid #dcdcdc}.ast-block-templates-popup-footer .button{margin-right:10px}.ast-block-templates-popup-content{display:block;padding:1em 1em 1em 2em;background:#f1f3f5;min-height:200px;overflow:auto;position:relative}.ast-block-templates-popup-heading{font-size:1.3em;margin:0;font-weight:600;padding:1em 1em 1em 2em}.ast-block-templates-popup-close-icon{width:53px;cursor:pointer;border-left:1px solid #eee;color:#aaa;display:flex;align-items:center;justify-content:center;padding:1em 1em 1em 1em}",""]);const i=a},8830:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,'.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=,.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::before,.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::after{border-radius:50%;width:.8em;height:.8em;animation:AsXXEZcf3aQheVWYK96Mjw\\=\\= 1.8s infinite ease-in-out;animation-fill-mode:both}.zZbdFPV0asSP-N8Oh\\+qevA\\=\\={color:#374151;font-size:4px;position:relative;right:-2.5em;text-indent:-9999em;transform:translateZ(0);animation-delay:-0.16s}.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::before,.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::after{content:"";position:absolute;top:0}.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::before{left:-2em;animation-delay:-0.32s}.zZbdFPV0asSP-N8Oh\\+qevA\\=\\=::after{left:2em}@keyframes AsXXEZcf3aQheVWYK96Mjw\\=\\={0%,80%,100%{box-shadow:0 2.5em 0 -1.3em}40%{box-shadow:0 2.5em 0 0}}',""]),a.locals={loaderDots:"zZbdFPV0asSP-N8Oh+qevA==",bblFadInOut:"AsXXEZcf3aQheVWYK96Mjw=="};const i=a},2277:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,".ast-block-templates-content .ast-block-templates-notice-message{margin:.5em 0;padding:2px}.ast-block-templates-content .ast-block-templates-notice{position:relative;margin:25px 50px;margin-bottom:0}.ast-block-templates-grid-blocks .ast-block-templates-notice{margin:0 1.4%}",""]);const i=a},7226:(e,t,r)=>{"use strict";r.r(t),r.d(t,{default:()=>i});var n=r(6314),a=r.n(n)()(!1);a.push([e.id,'*,::before,::after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }.container{width:100%}@media(min-width: 640px){.container{max-width:640px}}@media(min-width: 768px){.container{max-width:768px}}@media(min-width: 1024px){.container{max-width:1024px}}@media(min-width: 1280px){.container{max-width:1280px}}@media(min-width: 1536px){.container{max-width:1536px}}.gt-library-styles :is(.sr-only){position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.gt-library-styles :is(.pointer-events-none){pointer-events:none}.gt-library-styles :is(.visible){visibility:visible}.gt-library-styles :is(.invisible){visibility:hidden}.gt-library-styles :is(.static){position:static}.gt-library-styles :is(.fixed){position:fixed}.gt-library-styles :is(.absolute){position:absolute}.gt-library-styles :is(.relative){position:relative}.gt-library-styles :is(.sticky){position:sticky}.gt-library-styles :is(.inset-0){inset:0px}.gt-library-styles :is(.inset-10){inset:2.5rem}.gt-library-styles :is(.inset-x-0){left:0px;right:0px}.gt-library-styles :is(.inset-y-0){top:0px;bottom:0px}.gt-library-styles :is(.\\!left-auto){left:auto !important}.gt-library-styles :is(.\\!right-5){right:1.25rem !important}.gt-library-styles :is(.-top-1){top:-0.25rem}.gt-library-styles :is(.-top-1\\.5){top:-0.375rem}.gt-library-styles :is(.bottom-0){bottom:0px}.gt-library-styles :is(.bottom-0\\.5){bottom:.125rem}.gt-library-styles :is(.bottom-28){bottom:7rem}.gt-library-styles :is(.bottom-8){bottom:2rem}.gt-library-styles :is(.left-0){left:0px}.gt-library-styles :is(.left-2){left:.5rem}.gt-library-styles :is(.left-2\\.5){left:.625rem}.gt-library-styles :is(.left-4){left:1rem}.gt-library-styles :is(.right-0){right:0px}.gt-library-styles :is(.right-2){right:.5rem}.gt-library-styles :is(.right-3){right:.75rem}.gt-library-styles :is(.right-4){right:1rem}.gt-library-styles :is(.right-\\[6\\.5rem\\]){right:6.5rem}.gt-library-styles :is(.top-0){top:0px}.gt-library-styles :is(.top-2){top:.5rem}.gt-library-styles :is(.top-3){top:.75rem}.gt-library-styles :is(.top-4){top:1rem}.gt-library-styles :is(.top-\\[0\\.875rem\\]){top:.875rem}.gt-library-styles :is(.top-\\[4\\.5rem\\]){top:4.5rem}.gt-library-styles :is(.z-10){z-index:10}.gt-library-styles :is(.z-50){z-index:50}.gt-library-styles :is(.z-\\[1\\]){z-index:1}.gt-library-styles :is(.z-\\[2\\]){z-index:2}.gt-library-styles :is(.z-\\[99999999\\]){z-index:99999999}.gt-library-styles :is(.z-\\[99999\\]){z-index:99999}.gt-library-styles :is(.z-\\[9999\\]){z-index:9999}.gt-library-styles :is(.col-span-12){grid-column:span 12/span 12}.gt-library-styles :is(.col-span-5){grid-column:span 5/span 5}.gt-library-styles :is(.col-span-7){grid-column:span 7/span 7}.gt-library-styles :is(.row-span-2){grid-row:span 2/span 2}.gt-library-styles :is(.row-span-4){grid-row:span 4/span 4}.gt-library-styles :is(.float-none){float:none}.gt-library-styles :is(.\\!m-0){margin:0px !important}.gt-library-styles :is(.m-0){margin:0px}.gt-library-styles :is(.m-auto){margin:auto}.gt-library-styles :is(.\\!mx-0){margin-left:0px !important;margin-right:0px !important}.gt-library-styles :is(.\\!my-0){margin-top:0px !important;margin-bottom:0px !important}.gt-library-styles :is(.\\!my-3){margin-top:.75rem !important;margin-bottom:.75rem !important}.gt-library-styles :is(.-mx-1){margin-left:-0.25rem;margin-right:-0.25rem}.gt-library-styles :is(.mx-1){margin-left:.25rem;margin-right:.25rem}.gt-library-styles :is(.mx-10){margin-left:2.5rem;margin-right:2.5rem}.gt-library-styles :is(.mx-2){margin-left:.5rem;margin-right:.5rem}.gt-library-styles :is(.mx-auto){margin-left:auto;margin-right:auto}.gt-library-styles :is(.my-0){margin-top:0px;margin-bottom:0px}.gt-library-styles :is(.my-2){margin-top:.5rem;margin-bottom:.5rem}.gt-library-styles :is(.my-32){margin-top:8rem;margin-bottom:8rem}.gt-library-styles :is(.my-4){margin-top:1rem;margin-bottom:1rem}.gt-library-styles :is(.my-8){margin-top:2rem;margin-bottom:2rem}.gt-library-styles :is(.\\!-mb-2){margin-bottom:-0.5rem !important}.gt-library-styles :is(.\\!-mr-2){margin-right:-0.5rem !important}.gt-library-styles :is(.\\!mb-1){margin-bottom:.25rem !important}.gt-library-styles :is(.\\!mb-2){margin-bottom:.5rem !important}.gt-library-styles :is(.\\!mb-6){margin-bottom:1.5rem !important}.gt-library-styles :is(.\\!mt-0){margin-top:0px !important}.gt-library-styles :is(.\\!mt-1){margin-top:.25rem !important}.gt-library-styles :is(.\\!mt-5){margin-top:1.25rem !important}.gt-library-styles :is(.-mt-2){margin-top:-0.5rem}.gt-library-styles :is(.-mt-8){margin-top:-2rem}.gt-library-styles :is(.mb-0){margin-bottom:0px}.gt-library-styles :is(.mb-1){margin-bottom:.25rem}.gt-library-styles :is(.mb-10){margin-bottom:2.5rem}.gt-library-styles :is(.mb-12){margin-bottom:3rem}.gt-library-styles :is(.mb-2){margin-bottom:.5rem}.gt-library-styles :is(.mb-4){margin-bottom:1rem}.gt-library-styles :is(.mb-5){margin-bottom:1.25rem}.gt-library-styles :is(.mb-6){margin-bottom:1.5rem}.gt-library-styles :is(.mb-8){margin-bottom:2rem}.gt-library-styles :is(.ml-0){margin-left:0px}.gt-library-styles :is(.ml-1){margin-left:.25rem}.gt-library-styles :is(.ml-2){margin-left:.5rem}.gt-library-styles :is(.ml-auto){margin-left:auto}.gt-library-styles :is(.mr-1){margin-right:.25rem}.gt-library-styles :is(.mr-1\\.5){margin-right:.375rem}.gt-library-styles :is(.mr-2){margin-right:.5rem}.gt-library-styles :is(.mr-3){margin-right:.75rem}.gt-library-styles :is(.mr-auto){margin-right:auto}.gt-library-styles :is(.mt-1){margin-top:.25rem}.gt-library-styles :is(.mt-10){margin-top:2.5rem}.gt-library-styles :is(.mt-12){margin-top:3rem}.gt-library-styles :is(.mt-2){margin-top:.5rem}.gt-library-styles :is(.mt-3){margin-top:.75rem}.gt-library-styles :is(.mt-4){margin-top:1rem}.gt-library-styles :is(.mt-6){margin-top:1.5rem}.gt-library-styles :is(.mt-8){margin-top:2rem}.gt-library-styles :is(.mt-9){margin-top:2.25rem}.gt-library-styles :is(.mt-auto){margin-top:auto}.gt-library-styles :is(.block){display:block}.gt-library-styles :is(.inline-block){display:inline-block}.gt-library-styles :is(.inline){display:inline}.gt-library-styles :is(.flex){display:flex}.gt-library-styles :is(.inline-flex){display:inline-flex}.gt-library-styles :is(.grid){display:grid}.gt-library-styles :is(.hidden){display:none}.gt-library-styles :is(.aspect-\\[1\\/1\\]){aspect-ratio:1/1}.gt-library-styles :is(.aspect-\\[1\\/2\\]){aspect-ratio:1/2}.gt-library-styles :is(.aspect-\\[12\\/8\\]){aspect-ratio:12/8}.gt-library-styles :is(.aspect-\\[13\\/16\\]){aspect-ratio:13/16}.gt-library-styles :is(.aspect-\\[2\\/1\\]){aspect-ratio:2/1}.gt-library-styles :is(.aspect-\\[2\\/2\\]){aspect-ratio:2/2}.gt-library-styles :is(.aspect-\\[3\\/3\\]){aspect-ratio:3/3}.gt-library-styles :is(.aspect-\\[3\\/4\\]){aspect-ratio:3/4}.gt-library-styles :is(.aspect-\\[4\\/3\\]){aspect-ratio:4/3}.gt-library-styles :is(.aspect-\\[6\\/7\\]){aspect-ratio:6/7}.gt-library-styles :is(.aspect-video){aspect-ratio:16/9}.gt-library-styles :is(.size-10){width:2.5rem;height:2.5rem}.gt-library-styles :is(.size-3){width:.75rem;height:.75rem}.gt-library-styles :is(.size-4){width:1rem;height:1rem}.gt-library-styles :is(.size-5){width:1.25rem;height:1.25rem}.gt-library-styles :is(.size-6){width:1.5rem;height:1.5rem}.gt-library-styles :is(.\\!h-6){height:1.5rem !important}.gt-library-styles :is(.\\!h-auto){height:auto !important}.gt-library-styles :is(.h-0){height:0px}.gt-library-styles :is(.h-0\\.5){height:.125rem}.gt-library-styles :is(.h-1){height:.25rem}.gt-library-styles :is(.h-1\\.5){height:.375rem}.gt-library-styles :is(.h-10){height:2.5rem}.gt-library-styles :is(.h-12){height:3rem}.gt-library-styles :is(.h-14){height:3.5rem}.gt-library-styles :is(.h-2){height:.5rem}.gt-library-styles :is(.h-2\\.5){height:.625rem}.gt-library-styles :is(.h-20){height:5rem}.gt-library-styles :is(.h-3){height:.75rem}.gt-library-styles :is(.h-4){height:1rem}.gt-library-styles :is(.h-5){height:1.25rem}.gt-library-styles :is(.h-6){height:1.5rem}.gt-library-styles :is(.h-7){height:1.75rem}.gt-library-styles :is(.h-8){height:2rem}.gt-library-styles :is(.h-\\[1\\.0625rem\\]){height:1.0625rem}.gt-library-styles :is(.h-\\[1\\.8rem\\]){height:1.8rem}.gt-library-styles :is(.h-\\[14px\\]){height:14px}.gt-library-styles :is(.h-\\[2\\.25rem\\]){height:2.25rem}.gt-library-styles :is(.h-\\[2\\.625rem\\]){height:2.625rem}.gt-library-styles :is(.h-\\[3rem\\]){height:3rem}.gt-library-styles :is(.h-\\[4\\.5rem\\]){height:4.5rem}.gt-library-styles :is(.h-\\[50px\\]){height:50px}.gt-library-styles :is(.h-\\[calc\\(100\\%_-_4\\.5rem\\)\\]){height:calc(100% - 4.5rem)}.gt-library-styles :is(.h-\\[calc\\(100vh_-_5rem\\)\\]){height:calc(100vh - 5rem)}.gt-library-styles :is(.h-\\[calc\\(100vh_-_9\\.5rem\\)\\]){height:calc(100vh - 9.5rem)}.gt-library-styles :is(.h-\\[calc\\(100vh_\\/_3\\)\\]){height:33.3333333333vh}.gt-library-styles :is(.h-auto){height:auto}.gt-library-styles :is(.h-fit){height:-moz-fit-content;height:fit-content}.gt-library-styles :is(.h-full){height:100%}.gt-library-styles :is(.h-max){height:max-content}.gt-library-styles :is(.h-px){height:1px}.gt-library-styles :is(.h-screen){height:100vh}.gt-library-styles :is(.max-h-60){max-height:15rem}.gt-library-styles :is(.max-h-\\[150px\\]){max-height:150px}.gt-library-styles :is(.max-h-\\[1600px\\]){max-height:1600px}.gt-library-styles :is(.max-h-\\[248px\\]){max-height:248px}.gt-library-styles :is(.max-h-fit){max-height:-moz-fit-content;max-height:fit-content}.gt-library-styles :is(.max-h-full){max-height:100%}.gt-library-styles :is(.\\!min-h-0){min-height:0px !important}.gt-library-styles :is(.min-h-\\[2rem\\]){min-height:2rem}.gt-library-styles :is(.min-h-\\[3\\.125rem\\]){min-height:3.125rem}.gt-library-styles :is(.min-h-\\[36px\\]){min-height:36px}.gt-library-styles :is(.min-h-\\[45px\\]){min-height:45px}.gt-library-styles :is(.min-h-\\[48px\\]){min-height:48px}.gt-library-styles :is(.min-h-\\[80px\\]){min-height:80px}.gt-library-styles :is(.min-h-\\[auto\\]){min-height:auto}.gt-library-styles :is(.min-h-full){min-height:100%}.gt-library-styles :is(.\\!w-10){width:2.5rem !important}.gt-library-styles :is(.\\!w-\\[30rem\\]){width:30rem !important}.gt-library-styles :is(.\\!w-auto){width:auto !important}.gt-library-styles :is(.\\!w-full){width:100% !important}.gt-library-styles :is(.w-1\\/2){width:50%}.gt-library-styles :is(.w-1\\/3){width:33.333333%}.gt-library-styles :is(.w-1\\/4){width:25%}.gt-library-styles :is(.w-1\\/5){width:20%}.gt-library-styles :is(.w-10){width:2.5rem}.gt-library-styles :is(.w-10\\/12){width:83.333333%}.gt-library-styles :is(.w-11){width:2.75rem}.gt-library-styles :is(.w-11\\/12){width:91.666667%}.gt-library-styles :is(.w-2\\/12){width:16.666667%}.gt-library-styles :is(.w-2\\/4){width:50%}.gt-library-styles :is(.w-2\\/5){width:40%}.gt-library-styles :is(.w-2\\/6){width:33.333333%}.gt-library-styles :is(.w-3){width:.75rem}.gt-library-styles :is(.w-3\\/12){width:25%}.gt-library-styles :is(.w-3\\/4){width:75%}.gt-library-styles :is(.w-3\\/5){width:60%}.gt-library-styles :is(.w-4){width:1rem}.gt-library-styles :is(.w-4\\/5){width:80%}.gt-library-styles :is(.w-4\\/6){width:66.666667%}.gt-library-styles :is(.w-48){width:12rem}.gt-library-styles :is(.w-5){width:1.25rem}.gt-library-styles :is(.w-6){width:1.5rem}.gt-library-styles :is(.w-60){width:15rem}.gt-library-styles :is(.w-64){width:16rem}.gt-library-styles :is(.w-8){width:2rem}.gt-library-styles :is(.w-80){width:20rem}.gt-library-styles :is(.w-\\[1\\.8rem\\]){width:1.8rem}.gt-library-styles :is(.w-\\[100px\\]){width:100px}.gt-library-styles :is(.w-\\[1200px\\]){width:1200px}.gt-library-styles :is(.w-\\[15\\.5rem\\]){width:15.5rem}.gt-library-styles :is(.w-\\[18\\.25rem\\]){width:18.25rem}.gt-library-styles :is(.w-\\[300px\\]){width:300px}.gt-library-styles :is(.w-\\[358px\\]){width:358px}.gt-library-styles :is(.w-\\[45\\%\\]){width:45%}.gt-library-styles :is(.w-\\[48\\%\\]){width:48%}.gt-library-styles :is(.w-\\[520px\\]){width:520px}.gt-library-styles :is(.w-\\[55\\%\\]){width:55%}.gt-library-styles :is(.w-\\[calc\\(100\\%_\\+_2px\\)\\]){width:calc(100% + 2px)}.gt-library-styles :is(.w-auto){width:auto}.gt-library-styles :is(.w-fit){width:-moz-fit-content;width:fit-content}.gt-library-styles :is(.w-full){width:100%}.gt-library-styles :is(.w-max){width:max-content}.gt-library-styles :is(.w-px){width:1px}.gt-library-styles :is(.\\!min-w-\\[50px\\]){min-width:50px !important}.gt-library-styles :is(.min-w-32){min-width:8rem}.gt-library-styles :is(.min-w-\\[10\\.25rem\\]){min-width:10.25rem}.gt-library-styles :is(.min-w-\\[100px\\]){min-width:100px}.gt-library-styles :is(.min-w-\\[224px\\]){min-width:224px}.gt-library-styles :is(.min-w-\\[50px\\]){min-width:50px}.gt-library-styles :is(.min-w-\\[5rem\\]){min-width:5rem}.gt-library-styles :is(.min-w-fit){min-width:-moz-fit-content;min-width:fit-content}.gt-library-styles :is(.min-w-min){min-width:min-content}.gt-library-styles :is(.max-w-60){max-width:15rem}.gt-library-styles :is(.max-w-\\[27\\.375rem\\]){max-width:27.375rem}.gt-library-styles :is(.max-w-\\[35rem\\]){max-width:35rem}.gt-library-styles :is(.max-w-\\[37\\.5rem\\]){max-width:37.5rem}.gt-library-styles :is(.max-w-\\[504px\\]){max-width:504px}.gt-library-styles :is(.max-w-\\[560px\\]){max-width:560px}.gt-library-styles :is(.max-w-\\[590px\\]){max-width:590px}.gt-library-styles :is(.max-w-container){max-width:48rem}.gt-library-styles :is(.max-w-fit){max-width:-moz-fit-content;max-width:fit-content}.gt-library-styles :is(.max-w-full){max-width:100%}.gt-library-styles :is(.max-w-max){max-width:max-content}.gt-library-styles :is(.max-w-xs){max-width:20rem}.gt-library-styles :is(.flex-1){flex:1 1 0%}.gt-library-styles :is(.flex-auto){flex:1 1 auto}.gt-library-styles :is(.flex-shrink-0){flex-shrink:0}.gt-library-styles :is(.\\!shrink-0){flex-shrink:0 !important}.gt-library-styles :is(.shrink-0){flex-shrink:0}.gt-library-styles :is(.flex-grow){flex-grow:1}.gt-library-styles :is(.origin-top-left){transform-origin:top left}.gt-library-styles :is(.origin-top-right){transform-origin:top right}.gt-library-styles :is(.-translate-x-full){--tw-translate-x: -100%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.translate-x-0){--tw-translate-x: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.translate-x-5){--tw-translate-x: 1.25rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.translate-y-0){--tw-translate-y: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.translate-y-4){--tw-translate-y: 1rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.\\!rotate-45){--tw-rotate: 45deg !important;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important}.gt-library-styles :is(.scale-100){--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.scale-95){--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.transform){transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes hourglass{0%,25%{transform:rotate(0deg)}50%,75%{transform:rotate(180deg)}100%{transform:rotate(360deg)}}.gt-library-styles :is(.animate-hour-glass){animation:hourglass 3s linear infinite}.gt-library-styles :is(.animate-none){animation:none}@keyframes pulse{50%{opacity:.5}}.gt-library-styles :is(.animate-pulse){animation:pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite}@keyframes spin{to{transform:rotate(360deg)}}.gt-library-styles :is(.animate-spin){animation:spin 1s linear infinite}.gt-library-styles :is(.\\!cursor-not-allowed){cursor:not-allowed !important}.gt-library-styles :is(.cursor-default){cursor:default}.gt-library-styles :is(.cursor-not-allowed){cursor:not-allowed}.gt-library-styles :is(.cursor-pointer){cursor:pointer}.gt-library-styles :is(.select-none){-webkit-user-select:none;user-select:none}.gt-library-styles :is(.resize){resize:both}.gt-library-styles :is(.scroll-p-0){scroll-padding:0px}.gt-library-styles :is(.appearance-none){appearance:none}.gt-library-styles :is(.auto-rows-auto){grid-auto-rows:auto}.gt-library-styles :is(.auto-rows-min){grid-auto-rows:min-content}.gt-library-styles :is(.grid-cols-1){grid-template-columns:repeat(1, minmax(0, 1fr))}.gt-library-styles :is(.grid-cols-12){grid-template-columns:repeat(12, minmax(0, 1fr))}.gt-library-styles :is(.grid-cols-2){grid-template-columns:repeat(2, minmax(0, 1fr))}.gt-library-styles :is(.grid-cols-4){grid-template-columns:repeat(4, minmax(0, 1fr))}.gt-library-styles :is(.grid-cols-\\[4rem_1fr_4rem\\]){grid-template-columns:4rem 1fr 4rem}.gt-library-styles :is(.grid-rows-1){grid-template-rows:repeat(1, minmax(0, 1fr))}.gt-library-styles :is(.grid-rows-2){grid-template-rows:repeat(2, minmax(0, 1fr))}.gt-library-styles :is(.grid-rows-6){grid-template-rows:repeat(6, minmax(0, 1fr))}.gt-library-styles :is(.grid-rows-\\[4\\.5rem_1fr\\]){grid-template-rows:4.5rem 1fr}.gt-library-styles :is(.grid-rows-\\[80px_1fr\\]){grid-template-rows:80px 1fr}.gt-library-styles :is(.flex-row){flex-direction:row}.gt-library-styles :is(.flex-col){flex-direction:column}.gt-library-styles :is(.flex-wrap){flex-wrap:wrap}.gt-library-styles :is(.flex-nowrap){flex-wrap:nowrap}.gt-library-styles :is(.place-items-end){place-items:end}.gt-library-styles :is(.place-items-center){place-items:center}.gt-library-styles :is(.content-start){align-content:flex-start}.gt-library-styles :is(.content-stretch){align-content:stretch}.gt-library-styles :is(.items-start){align-items:flex-start}.gt-library-styles :is(.items-end){align-items:flex-end}.gt-library-styles :is(.items-center){align-items:center}.gt-library-styles :is(.items-baseline){align-items:baseline}.gt-library-styles :is(.items-stretch){align-items:stretch}.gt-library-styles :is(.justify-start){justify-content:flex-start}.gt-library-styles :is(.justify-end){justify-content:flex-end}.gt-library-styles :is(.justify-center){justify-content:center}.gt-library-styles :is(.justify-between){justify-content:space-between}.gt-library-styles :is(.justify-around){justify-content:space-around}.gt-library-styles :is(.justify-stretch){justify-content:stretch}.gt-library-styles :is(.gap-0){gap:0px}.gt-library-styles :is(.gap-0\\.5){gap:.125rem}.gt-library-styles :is(.gap-1){gap:.25rem}.gt-library-styles :is(.gap-1\\.5){gap:.375rem}.gt-library-styles :is(.gap-10){gap:2.5rem}.gt-library-styles :is(.gap-12){gap:3rem}.gt-library-styles :is(.gap-2){gap:.5rem}.gt-library-styles :is(.gap-2\\.5){gap:.625rem}.gt-library-styles :is(.gap-3){gap:.75rem}.gt-library-styles :is(.gap-4){gap:1rem}.gt-library-styles :is(.gap-5){gap:1.25rem}.gt-library-styles :is(.gap-6){gap:1.5rem}.gt-library-styles :is(.gap-7){gap:1.75rem}.gt-library-styles :is(.gap-8){gap:2rem}.gt-library-styles :is(.gap-x-2){column-gap:.5rem}.gt-library-styles :is(.gap-x-6){column-gap:1.5rem}.gt-library-styles :is(.gap-x-8){column-gap:2rem}.gt-library-styles :is(.gap-y-1){row-gap:.25rem}.gt-library-styles :is(.gap-y-2){row-gap:.5rem}.gt-library-styles :is(.gap-y-5){row-gap:1.25rem}.gt-library-styles :is(.gap-y-6){row-gap:1.5rem}.gt-library-styles :is(.\\!space-y-2>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0 !important;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse))) !important;margin-bottom:calc(.5rem*var(--tw-space-y-reverse)) !important}.gt-library-styles :is(.\\!space-y-4>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0 !important;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse))) !important;margin-bottom:calc(1rem*var(--tw-space-y-reverse)) !important}.gt-library-styles :is(.space-x-1>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(.25rem*var(--tw-space-x-reverse));margin-left:calc(.25rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.space-x-2>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(.5rem*var(--tw-space-x-reverse));margin-left:calc(.5rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.space-x-3>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(.75rem*var(--tw-space-x-reverse));margin-left:calc(.75rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.space-x-4>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.space-x-5>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(1.25rem*var(--tw-space-x-reverse));margin-left:calc(1.25rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.space-y-1>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-2>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-2\\.5>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(.625rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.625rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-3>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.75rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-4>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-5>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-6>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(1.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.5rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-7>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(1.75rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.75rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.space-y-8>:not([hidden])~:not([hidden])){--tw-space-y-reverse: 0;margin-top:calc(2rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(2rem*var(--tw-space-y-reverse))}.gt-library-styles :is(.\\!divide-y>:not([hidden])~:not([hidden])){--tw-divide-y-reverse: 0 !important;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse))) !important;border-bottom-width:calc(1px*var(--tw-divide-y-reverse)) !important}.gt-library-styles :is(.divide-x-0>:not([hidden])~:not([hidden])){--tw-divide-x-reverse: 0;border-right-width:calc(0px*var(--tw-divide-x-reverse));border-left-width:calc(0px*(1 - var(--tw-divide-x-reverse)))}.gt-library-styles :is(.divide-y>:not([hidden])~:not([hidden])){--tw-divide-y-reverse: 0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.gt-library-styles :is(.divide-solid>:not([hidden])~:not([hidden])){border-style:solid}.gt-library-styles :is(.\\!divide-border-primary>:not([hidden])~:not([hidden])){--tw-divide-opacity: 1 !important;border-color:rgb(209 213 219/var(--tw-divide-opacity)) !important}.gt-library-styles :is(.divide-border-primary>:not([hidden])~:not([hidden])){--tw-divide-opacity: 1;border-color:rgb(209 213 219/var(--tw-divide-opacity))}.gt-library-styles :is(.self-start){align-self:flex-start}.gt-library-styles :is(.self-center){align-self:center}.gt-library-styles :is(.self-stretch){align-self:stretch}.gt-library-styles :is(.justify-self-end){justify-self:end}.gt-library-styles :is(.justify-self-center){justify-self:center}.gt-library-styles :is(.overflow-auto){overflow:auto}.gt-library-styles :is(.overflow-hidden){overflow:hidden}.gt-library-styles :is(.overflow-visible){overflow:visible}.gt-library-styles :is(.overflow-x-auto){overflow-x:auto}.gt-library-styles :is(.overflow-y-auto){overflow-y:auto}.gt-library-styles :is(.overflow-x-hidden){overflow-x:hidden}.gt-library-styles :is(.overflow-y-scroll){overflow-y:scroll}.gt-library-styles :is(.truncate){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.gt-library-styles :is(.whitespace-nowrap){white-space:nowrap}.gt-library-styles :is(.whitespace-pre){white-space:pre}.gt-library-styles :is(.text-nowrap){text-wrap:nowrap}.gt-library-styles :is(.break-words){overflow-wrap:break-word}.gt-library-styles :is(.break-keep){word-break:keep-all}.gt-library-styles :is(.\\!rounded-lg){border-radius:.5rem !important}.gt-library-styles :is(.\\!rounded-none){border-radius:0px !important}.gt-library-styles :is(.rounded){border-radius:.25rem}.gt-library-styles :is(.rounded-\\[25px\\]){border-radius:25px}.gt-library-styles :is(.rounded-full){border-radius:9999px}.gt-library-styles :is(.rounded-lg){border-radius:.5rem}.gt-library-styles :is(.rounded-md){border-radius:.375rem}.gt-library-styles :is(.rounded-none){border-radius:0px}.gt-library-styles :is(.rounded-sm){border-radius:.125rem}.gt-library-styles :is(.rounded-xl){border-radius:.75rem}.gt-library-styles :is(.rounded-b-md){border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.gt-library-styles :is(.rounded-b-none){border-bottom-right-radius:0px;border-bottom-left-radius:0px}.gt-library-styles :is(.rounded-t-lg){border-top-left-radius:.5rem;border-top-right-radius:.5rem}.gt-library-styles :is(.\\!border){border-width:1px !important}.gt-library-styles :is(.\\!border-0){border-width:0px !important}.gt-library-styles :is(.border){border-width:1px}.gt-library-styles :is(.border-0){border-width:0px}.gt-library-styles :is(.border-2){border-width:2px}.gt-library-styles :is(.border-x){border-left-width:1px;border-right-width:1px}.gt-library-styles :is(.border-x-4){border-left-width:4px;border-right-width:4px}.gt-library-styles :is(.\\!border-b-0){border-bottom-width:0px !important}.gt-library-styles :is(.\\!border-r-0){border-right-width:0px !important}.gt-library-styles :is(.border-b){border-bottom-width:1px}.gt-library-styles :is(.border-b-0){border-bottom-width:0px}.gt-library-styles :is(.border-l-0){border-left-width:0px}.gt-library-styles :is(.border-r){border-right-width:1px}.gt-library-styles :is(.border-r-0){border-right-width:0px}.gt-library-styles :is(.border-t){border-top-width:1px}.gt-library-styles :is(.border-t-0){border-top-width:0px}.gt-library-styles :is(.border-solid){border-style:solid}.gt-library-styles :is(.border-dashed){border-style:dashed}.gt-library-styles :is(.border-none){border-style:none}.gt-library-styles :is(.\\!border-border-primary){--tw-border-opacity: 1 !important;border-color:rgb(209 213 219/var(--tw-border-opacity)) !important}.gt-library-styles :is(.\\!border-transparent){border-color:rgba(0,0,0,0) !important}.gt-library-styles :is(.border-accent-spectra){--tw-border-opacity: 1;border-color:rgb(37 99 235/var(--tw-border-opacity))}.gt-library-styles :is(.border-accent-st){--tw-border-opacity: 1;border-color:rgb(61 69 146/var(--tw-border-opacity))}.gt-library-styles :is(.border-alert-error){--tw-border-opacity: 1;border-color:rgb(239 68 68/var(--tw-border-opacity))}.gt-library-styles :is(.border-alert-error-text){--tw-border-opacity: 1;border-color:rgb(220 38 38/var(--tw-border-opacity))}.gt-library-styles :is(.border-black\\/\\[0\\.12\\]){border-color:rgba(0,0,0,.12)}.gt-library-styles :is(.border-border-primary){--tw-border-opacity: 1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.gt-library-styles :is(.border-border-secondary){--tw-border-opacity: 1;border-color:rgb(107 114 128/var(--tw-border-opacity))}.gt-library-styles :is(.border-border-tertiary){--tw-border-opacity: 1;border-color:rgb(216 223 233/var(--tw-border-opacity))}.gt-library-styles :is(.border-button-disabled){--tw-border-opacity: 1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.gt-library-styles :is(.border-credit-danger\\/5){border-color:rgba(234,21,34,.05)}.gt-library-styles :is(.border-credit-warning){--tw-border-opacity: 1;border-color:rgb(251 126 10/var(--tw-border-opacity))}.gt-library-styles :is(.border-credit-warning\\/5){border-color:rgba(251,126,10,.05)}.gt-library-styles :is(.border-gray-200){--tw-border-opacity: 1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.gt-library-styles :is(.border-image-selection){--tw-border-opacity: 1;border-color:rgb(255 88 14/var(--tw-border-opacity))}.gt-library-styles :is(.border-secondary-text){--tw-border-opacity: 1;border-color:rgb(156 163 175/var(--tw-border-opacity))}.gt-library-styles :is(.border-step-connector){--tw-border-opacity: 1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.gt-library-styles :is(.border-transparent){border-color:rgba(0,0,0,0)}.gt-library-styles :is(.border-white){--tw-border-opacity: 1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.gt-library-styles :is(.border-zip-dark-theme-border){--tw-border-opacity: 1;border-color:rgb(51 62 82/var(--tw-border-opacity))}.gt-library-styles :is(.border-zip-light-border-primary){--tw-border-opacity: 1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.gt-library-styles :is(.border-b-border-primary){--tw-border-opacity: 1;border-bottom-color:rgb(209 213 219/var(--tw-border-opacity))}.gt-library-styles :is(.border-t-border-primary){--tw-border-opacity: 1;border-top-color:rgb(209 213 219/var(--tw-border-opacity))}.gt-library-styles :is(.\\!bg-tooltip){--tw-bg-opacity: 1 !important;background-color:rgb(51 65 85/var(--tw-bg-opacity)) !important}.gt-library-styles :is(.\\!bg-transparent){background-color:rgba(0,0,0,0) !important}.gt-library-styles :is(.\\!bg-zip-app-light-bg){--tw-bg-opacity: 1 !important;background-color:rgb(240 244 250/var(--tw-bg-opacity)) !important}.gt-library-styles :is(.bg-\\[\\#0BC16A\\]\\/\\[0\\.08\\]){background-color:rgba(11,193,106,.08)}.gt-library-styles :is(.bg-\\[\\#E6FFFA\\]){--tw-bg-opacity: 1;background-color:rgb(230 255 250/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-\\[\\#F0F0FF\\]\\/\\[0\\.9\\]){background-color:rgba(240,240,255,.9)}.gt-library-styles :is(.bg-\\[\\#F6FAFE\\]){--tw-bg-opacity: 1;background-color:rgb(246 250 254/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-accent-spectra){--tw-bg-opacity: 1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-accent-st){--tw-bg-opacity: 1;background-color:rgb(61 69 146/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-alert-error){--tw-bg-opacity: 1;background-color:rgb(239 68 68/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-alert-error-bg){--tw-bg-opacity: 1;background-color:rgb(254 242 242/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-alert-error-text){--tw-bg-opacity: 1;background-color:rgb(220 38 38/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-alert-info-bg){--tw-bg-opacity: 1;background-color:rgb(239 246 255/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-background-primary){--tw-bg-opacity: 1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-background-secondary){--tw-bg-opacity: 1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-background-tertiary){--tw-bg-opacity: 1;background-color:rgb(235 240 251/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-background-tertiary\\/80){background-color:rgba(235,240,251,.8)}.gt-library-styles :is(.bg-background-tertiary\\/\\[0\\.85\\]){background-color:rgba(235,240,251,.85)}.gt-library-styles :is(.bg-black){--tw-bg-opacity: 1;background-color:rgb(0 0 0/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-border-primary){--tw-bg-opacity: 1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-border-secondary){--tw-bg-opacity: 1;background-color:rgb(107 114 128/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-border-secondary\\/80){background-color:rgba(107,114,128,.8)}.gt-library-styles :is(.bg-border-tertiary){--tw-bg-opacity: 1;background-color:rgb(216 223 233/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-button-disabled){--tw-bg-opacity: 1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-credit-danger){--tw-bg-opacity: 1;background-color:rgb(234 21 34/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-credit-danger\\/5){background-color:rgba(234,21,34,.05)}.gt-library-styles :is(.bg-credit-warning){--tw-bg-opacity: 1;background-color:rgb(251 126 10/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-credit-warning\\/5){background-color:rgba(251,126,10,.05)}.gt-library-styles :is(.bg-gray-200){--tw-bg-opacity: 1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-gray-300){--tw-bg-opacity: 1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-gray-500\\/50){background-color:rgba(107,114,128,.5)}.gt-library-styles :is(.bg-gt-container-background){--tw-bg-opacity: 1;background-color:rgb(247 247 249/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-image-selection){--tw-bg-opacity: 1;background-color:rgb(255 88 14/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-nav-active){--tw-bg-opacity: 1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-nav-inactive){--tw-bg-opacity: 1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-orange-50){--tw-bg-opacity: 1;background-color:rgb(255 247 237/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-premium-badge){--tw-bg-opacity: 1;background-color:rgb(255 193 7/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-secondary-text){--tw-bg-opacity: 1;background-color:rgb(156 163 175/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-slate-300){--tw-bg-opacity: 1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-toast-error-icon){--tw-bg-opacity: 1;background-color:rgb(254 185 175/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-transparent){background-color:rgba(0,0,0,0)}.gt-library-styles :is(.bg-white){--tw-bg-opacity: 1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-white\\/95){background-color:rgba(255,255,255,.95)}.gt-library-styles :is(.bg-white\\/\\[0\\.85\\]){background-color:rgba(255,255,255,.85)}.gt-library-styles :is(.bg-zip-app-light-bg){--tw-bg-opacity: 1;background-color:rgb(240 244 250/var(--tw-bg-opacity))}.gt-library-styles :is(.bg-opacity-50){--tw-bg-opacity: 0.5}.gt-library-styles :is(.bg-gradient-to-l){background-image:linear-gradient(to left, var(--tw-gradient-stops))}.gt-library-styles :is(.bg-gradient-to-r){background-image:linear-gradient(to right, var(--tw-gradient-stops))}.gt-library-styles :is(.from-gradient-color-1\\/50){--tw-gradient-from: rgb(184 9 167 / 0.5) var(--tw-gradient-from-position);--tw-gradient-to: rgb(184 9 167 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.gt-library-styles :is(.from-white){--tw-gradient-from: #fff var(--tw-gradient-from-position);--tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.gt-library-styles :is(.from-70\\%){--tw-gradient-from-position: 70%}.gt-library-styles :is(.via-gradient-color-2\\/50){--tw-gradient-to: rgb(233 11 118 / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), rgb(233 11 118 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to)}.gt-library-styles :is(.to-gradient-color-3\\/50){--tw-gradient-to: rgb(252 133 54 / 0.5) var(--tw-gradient-to-position)}.gt-library-styles :is(.to-transparent){--tw-gradient-to: transparent var(--tw-gradient-to-position)}.gt-library-styles :is(.bg-\\[length\\:100\\%_6px\\]){background-size:100% 6px}.gt-library-styles :is(.bg-cover){background-size:cover}.gt-library-styles :is(.bg-bottom){background-position:bottom}.gt-library-styles :is(.bg-top){background-position:top}.gt-library-styles :is(.bg-no-repeat){background-repeat:no-repeat}.gt-library-styles :is(.fill-favorite){fill:#fd3997}.gt-library-styles :is(.stroke-2){stroke-width:2}.gt-library-styles :is(.stroke-\\[1\\]){stroke-width:1}.gt-library-styles :is(.\\!p-0){padding:0px !important}.gt-library-styles :is(.\\!p-2){padding:.5rem !important}.gt-library-styles :is(.\\!p-6){padding:1.5rem !important}.gt-library-styles :is(.p-0){padding:0px}.gt-library-styles :is(.p-0\\.5){padding:.125rem}.gt-library-styles :is(.p-1){padding:.25rem}.gt-library-styles :is(.p-10){padding:2.5rem}.gt-library-styles :is(.p-2){padding:.5rem}.gt-library-styles :is(.p-3){padding:.75rem}.gt-library-styles :is(.p-4){padding:1rem}.gt-library-styles :is(.p-5){padding:1.25rem}.gt-library-styles :is(.p-8){padding:2rem}.gt-library-styles :is(.\\!px-0){padding-left:0px !important;padding-right:0px !important}.gt-library-styles :is(.\\!px-3){padding-left:.75rem !important;padding-right:.75rem !important}.gt-library-styles :is(.\\!px-4){padding-left:1rem !important;padding-right:1rem !important}.gt-library-styles :is(.\\!px-4\\.5){padding-left:1.125rem !important;padding-right:1.125rem !important}.gt-library-styles :is(.\\!py-1){padding-top:.25rem !important;padding-bottom:.25rem !important}.gt-library-styles :is(.\\!py-1\\.5){padding-top:.375rem !important;padding-bottom:.375rem !important}.gt-library-styles :is(.px-0){padding-left:0px;padding-right:0px}.gt-library-styles :is(.px-1){padding-left:.25rem;padding-right:.25rem}.gt-library-styles :is(.px-1\\.5){padding-left:.375rem;padding-right:.375rem}.gt-library-styles :is(.px-10){padding-left:2.5rem;padding-right:2.5rem}.gt-library-styles :is(.px-2){padding-left:.5rem;padding-right:.5rem}.gt-library-styles :is(.px-2\\.5){padding-left:.625rem;padding-right:.625rem}.gt-library-styles :is(.px-3){padding-left:.75rem;padding-right:.75rem}.gt-library-styles :is(.px-3\\.5){padding-left:.875rem;padding-right:.875rem}.gt-library-styles :is(.px-4){padding-left:1rem;padding-right:1rem}.gt-library-styles :is(.px-5){padding-left:1.25rem;padding-right:1.25rem}.gt-library-styles :is(.px-6){padding-left:1.5rem;padding-right:1.5rem}.gt-library-styles :is(.px-7){padding-left:1.75rem;padding-right:1.75rem}.gt-library-styles :is(.px-8){padding-left:2rem;padding-right:2rem}.gt-library-styles :is(.px-\\[1rem\\]){padding-left:1rem;padding-right:1rem}.gt-library-styles :is(.px-\\[4\\.875rem\\]){padding-left:4.875rem;padding-right:4.875rem}.gt-library-styles :is(.px-\\[78px\\]){padding-left:78px;padding-right:78px}.gt-library-styles :is(.py-0){padding-top:0px;padding-bottom:0px}.gt-library-styles :is(.py-0\\.5){padding-top:.125rem;padding-bottom:.125rem}.gt-library-styles :is(.py-1){padding-top:.25rem;padding-bottom:.25rem}.gt-library-styles :is(.py-1\\.5){padding-top:.375rem;padding-bottom:.375rem}.gt-library-styles :is(.py-11){padding-top:2.75rem;padding-bottom:2.75rem}.gt-library-styles :is(.py-12){padding-top:3rem;padding-bottom:3rem}.gt-library-styles :is(.py-2){padding-top:.5rem;padding-bottom:.5rem}.gt-library-styles :is(.py-2\\.5){padding-top:.625rem;padding-bottom:.625rem}.gt-library-styles :is(.py-3){padding-top:.75rem;padding-bottom:.75rem}.gt-library-styles :is(.py-4){padding-top:1rem;padding-bottom:1rem}.gt-library-styles :is(.py-5){padding-top:1.25rem;padding-bottom:1.25rem}.gt-library-styles :is(.py-7){padding-top:1.75rem;padding-bottom:1.75rem}.gt-library-styles :is(.py-8){padding-top:2rem;padding-bottom:2rem}.gt-library-styles :is(.py-\\[3\\.125rem\\]){padding-top:3.125rem;padding-bottom:3.125rem}.gt-library-styles :is(.py-\\[50px\\]){padding-top:50px;padding-bottom:50px}.gt-library-styles :is(.py-px){padding-top:1px;padding-bottom:1px}.gt-library-styles :is(.\\!pl-10){padding-left:2.5rem !important}.gt-library-styles :is(.\\!pl-11){padding-left:2.75rem !important}.gt-library-styles :is(.\\!pl-8){padding-left:2rem !important}.gt-library-styles :is(.\\!pr-0){padding-right:0px !important}.gt-library-styles :is(.\\!pr-10){padding-right:2.5rem !important}.gt-library-styles :is(.\\!pr-11){padding-right:2.75rem !important}.gt-library-styles :is(.pb-0){padding-bottom:0px}.gt-library-styles :is(.pb-10){padding-bottom:2.5rem}.gt-library-styles :is(.pb-2){padding-bottom:.5rem}.gt-library-styles :is(.pb-3){padding-bottom:.75rem}.gt-library-styles :is(.pb-4){padding-bottom:1rem}.gt-library-styles :is(.pb-5){padding-bottom:1.25rem}.gt-library-styles :is(.pb-6){padding-bottom:1.5rem}.gt-library-styles :is(.pb-8){padding-bottom:2rem}.gt-library-styles :is(.pb-px){padding-bottom:1px}.gt-library-styles :is(.pl-0){padding-left:0px}.gt-library-styles :is(.pl-1){padding-left:.25rem}.gt-library-styles :is(.pl-2){padding-left:.5rem}.gt-library-styles :is(.pl-2\\.5){padding-left:.625rem}.gt-library-styles :is(.pl-3){padding-left:.75rem}.gt-library-styles :is(.pl-4){padding-left:1rem}.gt-library-styles :is(.pl-5){padding-left:1.25rem}.gt-library-styles :is(.pl-6){padding-left:1.5rem}.gt-library-styles :is(.pl-8){padding-left:2rem}.gt-library-styles :is(.pl-\\[23px\\]){padding-left:23px}.gt-library-styles :is(.pr-1){padding-right:.25rem}.gt-library-styles :is(.pr-12){padding-right:3rem}.gt-library-styles :is(.pr-2){padding-right:.5rem}.gt-library-styles :is(.pr-3){padding-right:.75rem}.gt-library-styles :is(.pr-4){padding-right:1rem}.gt-library-styles :is(.pr-5){padding-right:1.25rem}.gt-library-styles :is(.pr-6){padding-right:1.5rem}.gt-library-styles :is(.pr-8){padding-right:2rem}.gt-library-styles :is(.pr-9){padding-right:2.25rem}.gt-library-styles :is(.pr-\\[25px\\]){padding-right:25px}.gt-library-styles :is(.pt-0){padding-top:0px}.gt-library-styles :is(.pt-0\\.5){padding-top:.125rem}.gt-library-styles :is(.pt-1){padding-top:.25rem}.gt-library-styles :is(.pt-10){padding-top:2.5rem}.gt-library-styles :is(.pt-12){padding-top:3rem}.gt-library-styles :is(.pt-2){padding-top:.5rem}.gt-library-styles :is(.pt-3){padding-top:.75rem}.gt-library-styles :is(.pt-4){padding-top:1rem}.gt-library-styles :is(.pt-5){padding-top:1.25rem}.gt-library-styles :is(.pt-6){padding-top:1.5rem}.gt-library-styles :is(.pt-8){padding-top:2rem}.gt-library-styles :is(.text-left){text-align:left}.gt-library-styles :is(.text-center){text-align:center}.gt-library-styles :is(.text-right){text-align:right}.gt-library-styles :is(.align-text-top){vertical-align:text-top}.gt-library-styles :is(.font-sans){font-family:Figtree,sans-serif}.gt-library-styles :is(.\\!text-\\[1\\.375rem\\]){font-size:1.375rem !important}.gt-library-styles :is(.\\!text-base){font-size:1rem !important;line-height:1.5rem !important}.gt-library-styles :is(.\\!text-sm){font-size:.875rem !important;line-height:1.25rem !important}.gt-library-styles :is(.\\!text-xs){font-size:.75rem !important;line-height:1rem !important}.gt-library-styles :is(.text-2xl){font-size:1.5rem;line-height:2rem}.gt-library-styles :is(.text-\\[0\\.625rem\\]){font-size:.625rem}.gt-library-styles :is(.text-\\[0\\.92rem\\]){font-size:.92rem}.gt-library-styles :is(.text-\\[0\\.9rem\\]){font-size:.9rem}.gt-library-styles :is(.text-\\[1\\.15rem\\]){font-size:1.15rem}.gt-library-styles :is(.text-\\[1\\.75rem\\]){font-size:1.75rem}.gt-library-styles :is(.text-\\[10px\\]){font-size:10px}.gt-library-styles :is(.text-\\[16px\\]){font-size:16px}.gt-library-styles :is(.text-\\[2rem\\]){font-size:2rem}.gt-library-styles :is(.text-base){font-size:1rem;line-height:1.5rem}.gt-library-styles :is(.text-lg){font-size:1.125rem;line-height:1.75rem}.gt-library-styles :is(.text-sm){font-size:.875rem;line-height:1.25rem}.gt-library-styles :is(.text-xl){font-size:1.25rem;line-height:1.75rem}.gt-library-styles :is(.text-xs){font-size:.75rem;line-height:1rem}.gt-library-styles :is(.\\!font-medium){font-weight:500 !important}.gt-library-styles :is(.\\!font-normal){font-weight:400 !important}.gt-library-styles :is(.\\!font-semibold){font-weight:600 !important}.gt-library-styles :is(.font-bold){font-weight:700}.gt-library-styles :is(.font-medium){font-weight:500}.gt-library-styles :is(.font-normal){font-weight:400}.gt-library-styles :is(.font-semibold){font-weight:600}.gt-library-styles :is(.uppercase){text-transform:uppercase}.gt-library-styles :is(.\\!leading-4){line-height:1rem !important}.gt-library-styles :is(.\\!leading-6){line-height:1.5rem !important}.gt-library-styles :is(.leading-10){line-height:2.5rem}.gt-library-styles :is(.leading-3){line-height:.75rem}.gt-library-styles :is(.leading-4){line-height:1rem}.gt-library-styles :is(.leading-5){line-height:1.25rem}.gt-library-styles :is(.leading-6){line-height:1.5rem}.gt-library-styles :is(.leading-7){line-height:1.75rem}.gt-library-styles :is(.leading-8){line-height:2rem}.gt-library-styles :is(.leading-9){line-height:2.25rem}.gt-library-styles :is(.leading-\\[1\\.875rem\\]){line-height:1.875rem}.gt-library-styles :is(.leading-\\[150\\%\\]){line-height:150%}.gt-library-styles :is(.leading-\\[15px\\]){line-height:15px}.gt-library-styles :is(.leading-\\[2\\.625rem\\]){line-height:2.625rem}.gt-library-styles :is(.leading-\\[21px\\]){line-height:21px}.gt-library-styles :is(.leading-\\[24px\\]){line-height:24px}.gt-library-styles :is(.leading-tight){line-height:1.25}.gt-library-styles :is(.\\!text-accent-spectra){--tw-text-opacity: 1 !important;color:rgb(37 99 235/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-alert-error){--tw-text-opacity: 1 !important;color:rgb(239 68 68/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-black){--tw-text-opacity: 1 !important;color:rgb(0 0 0/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-nav-active){--tw-text-opacity: 1 !important;color:rgb(17 24 39/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-secondary-text){--tw-text-opacity: 1 !important;color:rgb(156 163 175/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-zip-app-heading){--tw-text-opacity: 1 !important;color:rgb(15 23 42/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-zip-app-inactive-icon){--tw-text-opacity: 1 !important;color:rgb(148 163 184/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-zip-app-label){--tw-text-opacity: 1 !important;color:rgb(3 7 18/var(--tw-text-opacity)) !important}.gt-library-styles :is(.\\!text-zip-body-text){--tw-text-opacity: 1 !important;color:rgb(71 85 105/var(--tw-text-opacity)) !important}.gt-library-styles :is(.text-\\[\\#0BC16A\\]){--tw-text-opacity: 1;color:rgb(11 193 106/var(--tw-text-opacity))}.gt-library-styles :is(.text-\\[\\#0F172A\\]){--tw-text-opacity: 1;color:rgb(15 23 42/var(--tw-text-opacity))}.gt-library-styles :is(.text-\\[\\#111827\\]){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.text-\\[\\#475569\\]){--tw-text-opacity: 1;color:rgb(71 85 105/var(--tw-text-opacity))}.gt-library-styles :is(.text-accent-spectra){--tw-text-opacity: 1;color:rgb(37 99 235/var(--tw-text-opacity))}.gt-library-styles :is(.text-accent-st){--tw-text-opacity: 1;color:rgb(61 69 146/var(--tw-text-opacity))}.gt-library-styles :is(.text-alert-error){--tw-text-opacity: 1;color:rgb(239 68 68/var(--tw-text-opacity))}.gt-library-styles :is(.text-alert-info){--tw-text-opacity: 1;color:rgb(59 130 246/var(--tw-text-opacity))}.gt-library-styles :is(.text-background-primary){--tw-text-opacity: 1;color:rgb(255 255 255/var(--tw-text-opacity))}.gt-library-styles :is(.text-black){--tw-text-opacity: 1;color:rgb(0 0 0/var(--tw-text-opacity))}.gt-library-styles :is(.text-body-text){--tw-text-opacity: 1;color:rgb(55 65 81/var(--tw-text-opacity))}.gt-library-styles :is(.text-border-secondary){--tw-text-opacity: 1;color:rgb(107 114 128/var(--tw-text-opacity))}.gt-library-styles :is(.text-border-tertiary){--tw-text-opacity: 1;color:rgb(216 223 233/var(--tw-text-opacity))}.gt-library-styles :is(.text-credit-danger){--tw-text-opacity: 1;color:rgb(234 21 34/var(--tw-text-opacity))}.gt-library-styles :is(.text-credit-notice){--tw-text-opacity: 1;color:rgb(35 78 82/var(--tw-text-opacity))}.gt-library-styles :is(.text-credit-warning){--tw-text-opacity: 1;color:rgb(251 126 10/var(--tw-text-opacity))}.gt-library-styles :is(.text-favorite){--tw-text-opacity: 1;color:rgb(253 57 151/var(--tw-text-opacity))}.gt-library-styles :is(.text-heading-text){--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.gt-library-styles :is(.text-icon-primary){--tw-text-opacity: 1;color:rgb(37 99 235/var(--tw-text-opacity))}.gt-library-styles :is(.text-icon-secondary){--tw-text-opacity: 1;color:rgb(55 65 81/var(--tw-text-opacity))}.gt-library-styles :is(.text-inherit){color:inherit}.gt-library-styles :is(.text-nav-active){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.text-nav-inactive){--tw-text-opacity: 1;color:rgb(55 65 81/var(--tw-text-opacity))}.gt-library-styles :is(.text-orange-400){--tw-text-opacity: 1;color:rgb(251 146 60/var(--tw-text-opacity))}.gt-library-styles :is(.text-secondary-text){--tw-text-opacity: 1;color:rgb(156 163 175/var(--tw-text-opacity))}.gt-library-styles :is(.text-slate-500){--tw-text-opacity: 1;color:rgb(100 116 139/var(--tw-text-opacity))}.gt-library-styles :is(.text-white){--tw-text-opacity: 1;color:rgb(255 255 255/var(--tw-text-opacity))}.gt-library-styles :is(.text-zip-app-heading){--tw-text-opacity: 1;color:rgb(15 23 42/var(--tw-text-opacity))}.gt-library-styles :is(.text-zip-app-inactive-icon){--tw-text-opacity: 1;color:rgb(148 163 184/var(--tw-text-opacity))}.gt-library-styles :is(.text-zip-app-label){--tw-text-opacity: 1;color:rgb(3 7 18/var(--tw-text-opacity))}.gt-library-styles :is(.text-zip-body-text){--tw-text-opacity: 1;color:rgb(71 85 105/var(--tw-text-opacity))}.gt-library-styles :is(.text-zip-light-border-primary){--tw-text-opacity: 1;color:rgb(229 231 235/var(--tw-text-opacity))}.gt-library-styles :is(.underline){text-decoration-line:underline}.gt-library-styles :is(.no-underline){text-decoration-line:none}.gt-library-styles :is(.\\!opacity-80){opacity:.8 !important}.gt-library-styles :is(.opacity-0){opacity:0}.gt-library-styles :is(.opacity-100){opacity:1}.gt-library-styles :is(.opacity-25){opacity:.25}.gt-library-styles :is(.opacity-50){opacity:.5}.gt-library-styles :is(.opacity-75){opacity:.75}.gt-library-styles :is(.\\!shadow-none){--tw-shadow: 0 0 #0000 !important;--tw-shadow-colored: 0 0 #0000 !important;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow) !important}.gt-library-styles :is(.\\!shadow-xlarge){--tw-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.10) !important;--tw-shadow-colored: 0px 24px 48px -12px var(--tw-shadow-color) !important;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow) !important}.gt-library-styles :is(.shadow){--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-action-buttons){--tw-shadow: 0px 0px 40px -8px rgba(0, 0, 0, 0.20);--tw-shadow-colored: 0px 0px 40px -8px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-large){--tw-shadow: 0px 8px 8px -4px rgba(0, 0, 0, 0.03), 0px 20px 24px -4px rgba(0, 0, 0, 0.08);--tw-shadow-colored: 0px 8px 8px -4px var(--tw-shadow-color), 0px 20px 24px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-lg){--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-md){--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-medium){--tw-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);--tw-shadow-colored: 0px 4px 6px -2px var(--tw-shadow-color), 0px 12px 16px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-none){--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-sm){--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-small){--tw-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 4px 8px -2px rgba(0, 0, 0, 0.10);--tw-shadow-colored: 0px 2px 4px -2px var(--tw-shadow-color), 0px 4px 8px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-sync-badge){--tw-shadow: 0px 4px 4px 0px rgba(251, 126, 10, 0.14);--tw-shadow-colored: 0px 4px 4px 0px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-xl){--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.shadow-xlarge){--tw-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.10);--tw-shadow-colored: 0px 24px 48px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.outline-none){outline:2px solid rgba(0,0,0,0);outline-offset:2px}.gt-library-styles :is(.ring-0){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.ring-1){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.ring-2){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.ring-inset){--tw-ring-inset: inset}.gt-library-styles :is(.ring-accent-spectra){--tw-ring-opacity: 1;--tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity))}.gt-library-styles :is(.ring-black){--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.gt-library-styles :is(.ring-transparent){--tw-ring-color: transparent}.gt-library-styles :is(.ring-opacity-5){--tw-ring-opacity: 0.05}.gt-library-styles :is(.ring-offset-4){--tw-ring-offset-width: 4px}.gt-library-styles :is(.blur){--tw-blur: blur(8px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.gt-library-styles :is(.filter){filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.gt-library-styles :is(.backdrop-blur-\\[20px\\]){--tw-backdrop-blur: blur(20px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.gt-library-styles :is(.backdrop-blur-\\[3px\\]){--tw-backdrop-blur: blur(3px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.gt-library-styles :is(.backdrop-blur-\\[6px\\]){--tw-backdrop-blur: blur(6px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.gt-library-styles :is(.backdrop-blur-md){--tw-backdrop-blur: blur(12px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.gt-library-styles :is(.backdrop-blur-sm){--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.gt-library-styles :is(.transition){transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.transition-\\[width\\]){transition-property:width;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.transition-all){transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.transition-colors){transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.transition-opacity){transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.transition-transform){transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.gt-library-styles :is(.duration-100){transition-duration:100ms}.gt-library-styles :is(.duration-150){transition-duration:150ms}.gt-library-styles :is(.duration-200){transition-duration:200ms}.gt-library-styles :is(.duration-300){transition-duration:300ms}.gt-library-styles :is(.duration-75){transition-duration:75ms}.gt-library-styles :is(.ease-in){transition-timing-function:cubic-bezier(0.4, 0, 1, 1)}.gt-library-styles :is(.ease-in-out){transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.gt-library-styles :is(.ease-out){transition-timing-function:cubic-bezier(0, 0, 0.2, 1)}.gt-library-styles :is(.sp-text-base){font-size:1rem;line-height:1.3125rem}.gt-library-styles :is(.sp-text-sm){font-size:.875rem;line-height:1.3125rem}.gt-library-styles :is(.\\[grid-area\\:1\\/3\\]){grid-area:1/3}:root{--colors-heading: #030712;--colors-accent-spectra: #2563eb;--colors-accent-st: #3d4592}html:has(.ast-block-templates-lightbox.open,.uag-block-templates-lightbox.open){font-size:16px}html:not(:has(.ast-block-templates-lightbox.open,.uag-block-templates-lightbox.open)) .invisible{visibility:initial}#ast-block-templates-modal-wrap *{font-family:Figtree,sans-serif !important}.spectra-ai{font-size:16px}.spectra-ai *{font-family:Figtree,sans-serif !important}.spectra-ai h1{margin:0px;padding:0px;font-size:3.5rem;font-weight:600;line-height:120%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai h2{margin:0px;padding:0px;font-size:3rem;font-weight:600;line-height:120%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai h3{margin:0px;padding:0px;font-size:2.5rem;font-weight:600;line-height:120%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai h4{margin:0px;padding:0px;font-size:30px;font-weight:600;line-height:130%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai h5{margin:0px;padding:0px;font-size:1.5rem;font-weight:600;line-height:140%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai h6{margin:0px;padding:0px;font-size:1.25rem;font-weight:600;line-height:140%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai label{margin:0px;padding:0px;font-weight:500;line-height:150%;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity))}.spectra-ai input{height:2.8rem;padding-left:1rem;padding-right:1rem}.spectra-ai textarea{padding-left:1rem;padding-right:1rem}.spectra-ai input,.spectra-ai textarea{border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209 213 219/var(--tw-border-opacity));font-size:1rem;line-height:1.5rem;--tw-text-opacity: 1;color:rgb(60 67 74/var(--tw-text-opacity));--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.spectra-ai input::placeholder,.spectra-ai textarea::placeholder{font-size:1rem;line-height:1.5rem;font-weight:400;line-height:150%}.spectra-ai input ::placeholder,.spectra-ai textarea ::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175/var(--tw-text-opacity))}.spectra-ai a{--tw-text-opacity: 1;color:rgb(37 99 235/var(--tw-text-opacity))}.spectra-ai ::-webkit-scrollbar{width:8px}.spectra-ai ::-webkit-scrollbar-track{border-radius:0}.spectra-ai ::-webkit-scrollbar-thumb{background:#d5d6d7;border-radius:0}.spectra-ai ::-webkit-scrollbar-thumb:hover{background:#cacbcb;cursor:pointer}.spectra-ai :disabled,.spectra-ai [data-disabled=true]{pointer-events:none;opacity:.7}.spectra-ai div:has(>:disabled),.spectra-ai div:has(>[data-disabled=true]){cursor:not-allowed !important}*,::before,::after{margin:0;padding:0;box-sizing:border-box}#ast-block-templates-button-wrap{flex-basis:100%}#ast-block-templates-button{margin:2px;font-size:14px;align-items:center;display:flex;gap:8px;color:#fff}#ast-block-templates-button .logo{width:16px;height:16px;max-width:-moz-fit-content;max-width:fit-content;padding:0}#ast-block-templates-button .logo-btn-label{display:none}@media(min-width: 768px){#ast-block-templates-button .logo-btn-label{display:inline}}#ast-block-templates-button .uagb-template-button-logo{height:16px;width:16px;align-self:center}.ast-block-templates-button{padding:10px}#ast-block-templates-modal{box-shadow:2px 8px 23px 3px rgba(0,0,0,.2);overflow:hidden;background-color:#f1f3f5;max-width:85%;height:calc(100vh - 4em);z-index:9999;margin:2em auto}#ast-block-templates-modal>.inner{position:relative}.ast-block-templates-grid-blocks .button-actions.import-action-start{opacity:1;visibility:visible}.ast-block-templates-grid-blocks .importing .inner .button-actions,.ast-block-templates-grid-blocks .inner:hover .button-actions{opacity:1;visibility:visible}.ast-block-templates-grid-blocks .button-actions{opacity:0;visibility:hidden;margin:0 auto}.ast-block-templates-grid-blocks .heading-wrap .title{margin-bottom:0}.ast-block-templates-grid-blocks .ast-block-templates-grid .item.importing .inner img,.ast-block-templates-grid-blocks .ast-block-templates-grid .item .inner:hover img{filter:blur(1px)}.ast-block-templates-grid-blocks .ast-block-templates-grid .item.importing .inner .heading-wrap,.ast-block-templates-grid-blocks .ast-block-templates-grid .item .inner:hover .heading-wrap{opacity:1;visibility:visible}.ast-block-templates-grid-blocks .ast-block-templates-grid .item .heading-wrap{padding:5px 0;flex-direction:row;align-items:center;position:absolute;top:0;left:0;right:0;bottom:0;opacity:0;visibility:hidden;transition:transform .5s}.ast-block-templates-grid-pages{padding:35px 25px 0 25px}.ast-block-templates-grid-pages .heading-wrap{cursor:pointer}.ast-block-templates-grid-pages,.ast-block-templates-grid-blocks{display:none}.ast-block-templates-grid-pages.active,.ast-block-templates-grid-blocks.active{display:block}@media only screen and (min-width: 768px){.ast-block-templates-single-site-preview .ast-block-templates-grid .item,.ast-block-templates-grid-pages .ast-block-templates-grid .item{width:25%}}.ast-block-templates-grid .item{border:none;margin:0 4% 4% 0;position:relative;width:30.6%;box-sizing:border-box;align-content:flex-start}.ast-block-templates-grid .item.importing .inner,.ast-block-templates-grid .item:hover .inner{box-shadow:0 6px 14px 0 rgba(0,0,0,.12)}.ast-block-templates-grid .item .inner{margin:0;background:#fff;box-shadow:0 4px 10px 0 rgba(0,0,0,.07);position:relative;border-radius:3px;transition:all .4s;padding:5px}.ast-block-templates-grid .item .screenshot{background-position:center top;background-size:100%;background-repeat:no-repeat;border-top-left-radius:2px;border-top-right-radius:2px;overflow:hidden;background-color:#e5e5e5;position:relative;display:block}.ast-block-templates-grid .item .screenshot::after{content:"";display:block;padding-top:118%}.ast-block-templates-grid .item .heading-wrap{display:flex;justify-content:space-between;line-height:1;padding:12px 15px;font-weight:400;border:none;border-bottom-left-radius:2px;border-bottom-right-radius:2px;flex-direction:column}.ast-block-templates-grid .item .heading-wrap .ast-template-import-block-button{padding:6px 14px;min-height:auto;line-height:normal;border-radius:2px}.ast-block-templates-grid .item.importing .preview,.ast-block-templates-grid .item .inner:hover .preview{opacity:1;visibility:visible}.ast-block-templates-grid .item .preview{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer;opacity:0;visibility:hidden;float:none;transition:all .3s;background:rgba(0,0,0,.5)}.ast-block-templates-grid .item .preview .preview-inner{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);font-size:20px;color:#d5dadf}.ast-block-templates-grid .item .import{cursor:pointer;position:relative}.ast-block-templates-grid .item .import .components-spinner{position:absolute;left:-25px;margin:0;top:-2px}.ast-block-templates-grid .item .import .dashicons{height:auto;width:auto;font-size:initial;padding-right:3px}.ast-block-templates-grid-pages .ast-block-templates-grid .item .preview{background:unset}.image-loading{animation-duration:2s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:image-placeholder;animation-timing-function:linear;background:#f6f7f8;background:linear-gradient(to right, #fafafa 8%, #f4f4f4 38%, #fafafa 54%);position:relative}@keyframes image-placeholder{0%{background-position:-150px 0}100%{background-position:150px 0}}.ast-block-templates-grid{display:flex;flex-wrap:wrap}@media only screen and (min-width: 768px){.ast-block-templates-grid{margin:0}.ast-block-templates-grid .item{width:25%;padding:1.4%;margin:0;box-shadow:none}}.blocks-color{width:100%}.block-color-item{padding:6px 18px;display:inline-block;border:1px solid #c8cfd6;cursor:pointer;text-transform:capitalize}.block-color-item:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.block-color-item:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.block-color-item.active,.block-color-item:hover{background:#2271b1;border-color:#2271b1;color:#fff}.block-color-item:nth-child(2){border-right:none;border-left:none}.block-color-list{display:inline-flex}#ast-block-templates-modal-wrap{opacity:0;visibility:hidden;position:fixed;height:100%;width:100%;bottom:0;left:0;background-color:rgba(0,0,0,.8);z-index:99999999}#ast-block-templates-modal-wrap .ast-block-templates-grid>.components-spinner{margin:8em auto auto}#ast-block-templates-modal-wrap.open{opacity:1;visibility:visible}#ast-block-templates-modal-wrap .filter-wrap{display:flex;justify-content:space-between;align-items:center;margin:0 0 15px 0;padding-left:12.55px}#ast-block-templates-modal-wrap .filter-wrap select{margin-right:10px;position:relative;background-size:12px 12px;height:28px;color:#6d7882;border-radius:3px;border-color:#d5dadf;font-size:12px;padding:0 20px 0 10px;appearance:none;-webkit-appearance:none;-moz-appearance:none}#ast-block-templates-modal-wrap .loading{position:relative;background-color:#e2e2e2}#ast-block-templates-modal-wrap .loading::after{display:block;content:"";position:absolute;width:100%;height:100%;transform:translateX(-100%);background:linear-gradient(90deg, rgba(255, 255, 255, 0.1098039216), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.168627451));animation:loading 1.5s infinite}@keyframes loading{100%{transform:translateX(100%)}}#ast-block-templates-modal{width:100%;max-width:100%;box-shadow:none;height:100%;margin:0}.st-block-category{display:flex;align-items:center;justify-content:space-between;cursor:pointer;margin-bottom:12px;color:#6d7882}.st-block-category:hover,.st-block-category.active{color:#2271b1}#ast-block-templates-modal .ast-block-templates-grid-blocks{display:flex;align-items:flex-start}#ast-block-templates-modal .ast-block-templates-grid-blocks .filter-wrap{align-items:flex-start;width:250px;padding:10px 30px 30px 30px;position:fixed;height:calc(100vh - 55px);background-color:rgba(255,255,255,.5);flex-grow:0;overflow-y:auto;box-shadow:2px 8px 23px 3px rgba(0,0,0,.05);z-index:2}#ast-block-templates-modal .ast-block-templates-pattern-grid{width:calc(100% - 250px);margin-left:auto;padding:3em}#ast-block-templates-modal .ast-block-templates-pattern-grid .notice{margin-bottom:1.5em}#ast-block-templates-modal .blocks-color{margin-bottom:40px}#ast-block-templates-modal .filters{margin-top:2em;width:100%}#ast-block-templates-modal .filters h3{color:#1e1e1e;font-size:14px;margin-bottom:20px;margin-top:0}.ast-block-templates-content .single-site .grid-item-badge{background:#ffc107;color:#000;padding:4px 12px;font-size:11px;top:0;right:-5px;text-transform:uppercase;position:absolute;z-index:1;border-radius:2px;font-weight:600;letter-spacing:.3px;transform:translateY(-30%)}.hide-scrollbar{scrollbar-width:none;-ms-overflow-style:none}.hide-scrollbar::-webkit-scrollbar{display:none}#ast-block-templates-modal [data-placeholder]::after{content:" ";box-shadow:0 0 50px 9px #fefefe;position:absolute;top:0;left:-100%;height:100%;animation:loading 1s infinite}@keyframes loading{0%{left:-100%}100%{left:150%}}.scrollbar-hover{scrollbar-width:none;-ms-overflow-style:none}.scrollbar-hover::-webkit-scrollbar,.scrollbar-hover::-webkit-scrollbar-thumb{visibility:hidden}.scrollbar-hover:hover{scrollbar-width:auto;-ms-overflow-style:auto}.scrollbar-hover:hover::-webkit-scrollbar,.scrollbar-hover:hover::-webkit-scrollbar-thumb{visibility:visible !important}@keyframes fade-in-fwd{0%{transform:translateZ(-80px);opacity:0}100%{transform:translateZ(0);opacity:1}}@keyframes fade-out-bck{0%{transform:translateZ(0);opacity:1}100%{transform:translateZ(-80px);opacity:0}}.fade-in-fwd{animation:fade-in-fwd 250ms cubic-bezier(0.39, 0.575, 0.565, 1) both}.fade-out-bck{animation:fade-out-bck 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both}[data-tippy-root]{z-index:99999999 !important}.tippy-content{font-size:.75rem;font-weight:400;line-height:1rem}.tippy-arrow{--tw-text-opacity: 1;color:rgb(51 65 85/var(--tw-text-opacity))}.spectra-ai ::-webkit-scrollbar{width:4px;height:128px}.spectra-ai ::-webkit-scrollbar-thumb{border-radius:2px;opacity:.2;background:var(--dark-background, rgba(31, 39, 51, 0.2))}.ast-thin-scrollbar::-webkit-scrollbar{width:4px}.ast-thin-scrollbar::-webkit-scrollbar-track{border-radius:0}.ast-thin-scrollbar::-webkit-scrollbar-thumb{background:rgba(0,0,0,.1);border-radius:3px}.ast-thin-scrollbar::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.3);cursor:pointer}.ast-hide-scrollbar::-webkit-scrollbar{display:none}.ast-block-templates-modal-open .media-modal{z-index:99999999}@media(min-width: 768px){.ast-block-templates-modal{height:100vh;width:100vh}}.disable-click-action{cursor:not-allowed;pointer-events:none}.gt-library-styles :is(.placeholder\\:\\!text-\\[0\\.9rem\\])::placeholder{font-size:.9rem !important}.gt-library-styles :is(.placeholder\\:\\!text-sm)::placeholder{font-size:.875rem !important;line-height:1.25rem !important}.gt-library-styles :is(.placeholder\\:text-sm)::placeholder{font-size:.875rem;line-height:1.25rem}.gt-library-styles :is(.placeholder\\:\\!text-zip-app-inactive-icon)::placeholder{--tw-text-opacity: 1 !important;color:rgb(148 163 184/var(--tw-text-opacity)) !important}.gt-library-styles :is(.placeholder\\:text-secondary-text)::placeholder{--tw-text-opacity: 1;color:rgb(156 163 175/var(--tw-text-opacity))}.gt-library-styles :is(.before\\:invisible)::before{content:var(--tw-content);visibility:hidden}.gt-library-styles :is(.before\\:relative)::before{content:var(--tw-content);position:relative}.gt-library-styles :is(.before\\:-top-\\[5px\\])::before{content:var(--tw-content);top:-5px}.gt-library-styles :is(.before\\:mx-2)::before{content:var(--tw-content);margin-left:.5rem;margin-right:.5rem}.gt-library-styles :is(.before\\:mx-2\\.5)::before{content:var(--tw-content);margin-left:.625rem;margin-right:.625rem}.gt-library-styles :is(.before\\:block)::before{content:var(--tw-content);display:block}.gt-library-styles :is(.before\\:inline-block)::before{content:var(--tw-content);display:inline-block}.gt-library-styles :is(.before\\:h-0)::before{content:var(--tw-content);height:0px}.gt-library-styles :is(.before\\:h-px)::before{content:var(--tw-content);height:1px}.gt-library-styles :is(.before\\:w-5)::before{content:var(--tw-content);width:1.25rem}.gt-library-styles :is(.before\\:text-sm)::before{content:var(--tw-content);font-size:.875rem;line-height:1.25rem}.gt-library-styles :is(.before\\:font-bold)::before{content:var(--tw-content);font-weight:700}.gt-library-styles :is(.before\\:content-\\[\\\'\\\'\\])::before{--tw-content: "";content:var(--tw-content)}.gt-library-styles :is(.before\\:content-\\[attr\\(data-title\\)\\])::before{--tw-content: attr(data-title);content:var(--tw-content)}.gt-library-styles :is(.after\\:absolute)::after{content:var(--tw-content);position:absolute}.gt-library-styles :is(.after\\:relative)::after{content:var(--tw-content);position:relative}.gt-library-styles :is(.after\\:-top-\\[5px\\])::after{content:var(--tw-content);top:-5px}.gt-library-styles :is(.after\\:bottom-0)::after{content:var(--tw-content);bottom:0px}.gt-library-styles :is(.after\\:right-0)::after{content:var(--tw-content);right:0px}.gt-library-styles :is(.after\\:mx-2)::after{content:var(--tw-content);margin-left:.5rem;margin-right:.5rem}.gt-library-styles :is(.after\\:mx-2\\.5)::after{content:var(--tw-content);margin-left:.625rem;margin-right:.625rem}.gt-library-styles :is(.after\\:inline-block)::after{content:var(--tw-content);display:inline-block}.gt-library-styles :is(.after\\:h-px)::after{content:var(--tw-content);height:1px}.gt-library-styles :is(.after\\:w-5)::after{content:var(--tw-content);width:1.25rem}.gt-library-styles :is(.after\\:w-full)::after{content:var(--tw-content);width:100%}.gt-library-styles :is(.after\\:bg-accent-spectra)::after{content:var(--tw-content);--tw-bg-opacity: 1;background-color:rgb(37 99 235/var(--tw-bg-opacity))}.gt-library-styles :is(.after\\:content-\\[\\"\\"\\])::after{--tw-content: "";content:var(--tw-content)}.gt-library-styles :is(.after\\:content-\\[\\\'\\\'\\])::after{--tw-content: "";content:var(--tw-content)}.gt-library-styles :is(.last\\:\\!mt-2:last-child){margin-top:.5rem !important}.gt-library-styles :is(.last\\:\\!mt-2\\.5:last-child){margin-top:.625rem !important}.gt-library-styles :is(.last\\:\\!mt-5:last-child){margin-top:1.25rem !important}.gt-library-styles :is(.only\\:\\!p-0:only-child){padding:0px !important}.gt-library-styles :is(.only\\:\\!py-0:only-child){padding-top:0px !important;padding-bottom:0px !important}.gt-library-styles :is(.focus-within\\:\\!border-0:focus-within){border-width:0px !important}.gt-library-styles :is(.focus-within\\:border-accent-st:focus-within){--tw-border-opacity: 1;border-color:rgb(61 69 146/var(--tw-border-opacity))}.gt-library-styles :is(.focus-within\\:outline-none:focus-within){outline:2px solid rgba(0,0,0,0);outline-offset:2px}.gt-library-styles :is(.focus-within\\:ring-1:focus-within){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.focus-within\\:ring-accent-spectra:focus-within){--tw-ring-opacity: 1;--tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity))}.gt-library-styles :is(.focus-within\\:ring-accent-st:focus-within){--tw-ring-opacity: 1;--tw-ring-color: rgb(61 69 146 / var(--tw-ring-opacity))}.gt-library-styles :is(.hover\\:border-accent-spectra:hover){--tw-border-opacity: 1;border-color:rgb(37 99 235/var(--tw-border-opacity))}.gt-library-styles :is(.hover\\:\\!bg-zip-app-light-bg:hover){--tw-bg-opacity: 1 !important;background-color:rgb(240 244 250/var(--tw-bg-opacity)) !important}.gt-library-styles :is(.hover\\:bg-accent-ai-hover:hover){--tw-bg-opacity: 1;background-color:rgb(73 83 178/var(--tw-bg-opacity))}.gt-library-styles :is(.hover\\:bg-accent-hover-spectra:hover){--tw-bg-opacity: 1;background-color:rgb(53 116 253/var(--tw-bg-opacity))}.gt-library-styles :is(.hover\\:bg-accent-st\\/90:hover){background-color:rgba(61,69,146,.9)}.gt-library-styles :is(.hover\\:bg-background-secondary:hover){--tw-bg-opacity: 1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.gt-library-styles :is(.hover\\:bg-background-tertiary:hover){--tw-bg-opacity: 1;background-color:rgb(235 240 251/var(--tw-bg-opacity))}.gt-library-styles :is(.hover\\:fill-favorite:hover){fill:#fd3997}.gt-library-styles :is(.hover\\:\\!text-zip-app-heading:hover){--tw-text-opacity: 1 !important;color:rgb(15 23 42/var(--tw-text-opacity)) !important}.gt-library-styles :is(.hover\\:text-\\[\\#111827\\]:hover){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.hover\\:text-favorite:hover){--tw-text-opacity: 1;color:rgb(253 57 151/var(--tw-text-opacity))}.gt-library-styles :is(.hover\\:text-inherit:hover){color:inherit}.gt-library-styles :is(.hover\\:text-nav-active:hover){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.hover\\:shadow-medium:hover){--tw-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.03), 0px 12px 16px -4px rgba(0, 0, 0, 0.08);--tw-shadow-colored: 0px 4px 6px -2px var(--tw-shadow-color), 0px 12px 16px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.hover\\:shadow-small:hover){--tw-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.06), 0px 4px 8px -2px rgba(0, 0, 0, 0.10);--tw-shadow-colored: 0px 2px 4px -2px var(--tw-shadow-color), 0px 4px 8px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.hover\\:shadow-xl:hover){--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.focus\\:\\!border-0:focus){border-width:0px !important}.gt-library-styles :is(.focus\\:border-accent-st:focus){--tw-border-opacity: 1;border-color:rgb(61 69 146/var(--tw-border-opacity))}.gt-library-styles :is(.focus\\:\\!bg-zip-app-light-bg:focus){--tw-bg-opacity: 1 !important;background-color:rgb(240 244 250/var(--tw-bg-opacity)) !important}.gt-library-styles :is(.focus\\:\\!shadow-none:focus){--tw-shadow: 0 0 #0000 !important;--tw-shadow-colored: 0 0 #0000 !important;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow) !important}.gt-library-styles :is(.focus\\:shadow-none:focus){--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.gt-library-styles :is(.focus\\:\\!outline-none:focus){outline:2px solid rgba(0,0,0,0) !important;outline-offset:2px !important}.gt-library-styles :is(.focus\\:outline-none:focus){outline:2px solid rgba(0,0,0,0);outline-offset:2px}.gt-library-styles :is(.focus\\:\\!ring-0:focus){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.gt-library-styles :is(.focus\\:ring-0:focus){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.focus\\:ring-1:focus){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.focus\\:ring-2:focus){--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.gt-library-styles :is(.focus\\:ring-accent-spectra:focus){--tw-ring-opacity: 1;--tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity))}.gt-library-styles :is(.focus\\:ring-accent-st:focus){--tw-ring-opacity: 1;--tw-ring-color: rgb(61 69 146 / var(--tw-ring-opacity))}.gt-library-styles :is(.focus\\:ring-offset-2:focus){--tw-ring-offset-width: 2px}.gt-library-styles :is(.focus-visible\\:outline-none:focus-visible){outline:2px solid rgba(0,0,0,0);outline-offset:2px}.gt-library-styles :is(.focus-visible\\:outline:focus-visible){outline-style:solid}.gt-library-styles :is(.focus-visible\\:outline-2:focus-visible){outline-width:2px}.gt-library-styles :is(.focus-visible\\:outline-offset-2:focus-visible){outline-offset:2px}.gt-library-styles :is(.focus-visible\\:ring-accent-spectra:focus-visible){--tw-ring-opacity: 1;--tw-ring-color: rgb(37 99 235 / var(--tw-ring-opacity))}.gt-library-styles :is(.focus-visible\\:ring-accent-st:focus-visible){--tw-ring-opacity: 1;--tw-ring-color: rgb(61 69 146 / var(--tw-ring-opacity))}.gt-library-styles :is(.active\\:border-accent-st:active){--tw-border-opacity: 1;border-color:rgb(61 69 146/var(--tw-border-opacity))}.gt-library-styles :is(.active\\:bg-background-tertiary:active){--tw-bg-opacity: 1;background-color:rgb(235 240 251/var(--tw-bg-opacity))}.gt-library-styles :is(.active\\:outline-none:active){outline:2px solid rgba(0,0,0,0);outline-offset:2px}.gt-library-styles :is(.active\\:focus\\:text-nav-active:focus:active){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.disabled\\:cursor-not-allowed:disabled){cursor:not-allowed}.gt-library-styles :is(.disabled\\:border-button-disabled:disabled){--tw-border-opacity: 1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.gt-library-styles :is(.disabled\\:bg-accent-st\\/90:disabled){background-color:rgba(61,69,146,.9)}.gt-library-styles :is(.disabled\\:bg-button-disabled:disabled){--tw-bg-opacity: 1;background-color:rgb(229 231 235/var(--tw-bg-opacity))}.gt-library-styles :is(.disabled\\:text-gray-300:disabled){--tw-text-opacity: 1;color:rgb(209 213 219/var(--tw-text-opacity))}.gt-library-styles :is(.disabled\\:text-secondary-text:disabled){--tw-text-opacity: 1;color:rgb(156 163 175/var(--tw-text-opacity))}.gt-library-styles :is(.group:hover .group-hover\\:visible){visibility:visible}.gt-library-styles :is(.group:hover .group-hover\\:border-accent-spectra){--tw-border-opacity: 1;border-color:rgb(37 99 235/var(--tw-border-opacity))}.gt-library-styles :is(.group\\/favorites:hover .group-hover\\/favorites\\:fill-favorite){fill:#fd3997}.gt-library-styles :is(.group\\/favorites:hover .group-hover\\/favorites\\:text-favorite){--tw-text-opacity: 1;color:rgb(253 57 151/var(--tw-text-opacity))}.gt-library-styles :is(.group:hover .group-hover\\:opacity-100){opacity:1}.gt-library-styles :is(.group:active .group-active\\:text-nav-active){--tw-text-opacity: 1;color:rgb(17 24 39/var(--tw-text-opacity))}.gt-library-styles :is(.peer:focus~.peer-focus\\:text-nav-inactive){--tw-text-opacity: 1;color:rgb(55 65 81/var(--tw-text-opacity))}@media not all and (min-width: 1536px){.gt-library-styles :is(.max-2xl\\:hidden){display:none}.gt-library-styles :is(.max-2xl\\:items-start){align-items:flex-start}}@media(max-width: 1024px){.gt-library-styles :is(.max-\\[1024px\\]\\:flex-col){flex-direction:column}}@media(min-width: 640px){.gt-library-styles :is(.sm\\:my-8){margin-top:2rem;margin-bottom:2rem}.gt-library-styles :is(.sm\\:block){display:block}.gt-library-styles :is(.sm\\:inline-block){display:inline-block}.gt-library-styles :is(.sm\\:inline){display:inline}.gt-library-styles :is(.sm\\:flex){display:flex}.gt-library-styles :is(.sm\\:hidden){display:none}.gt-library-styles :is(.sm\\:size-5){width:1.25rem;height:1.25rem}.gt-library-styles :is(.sm\\:size-6){width:1.5rem;height:1.5rem}.gt-library-styles :is(.sm\\:w-52){width:13rem}.gt-library-styles :is(.sm\\:w-full){width:100%}.gt-library-styles :is(.sm\\:max-w-\\[24rem\\]){max-width:24rem}.gt-library-styles :is(.sm\\:max-w-\\[29rem\\]){max-width:29rem}.gt-library-styles :is(.sm\\:max-w-\\[32\\.5rem\\]){max-width:32.5rem}.gt-library-styles :is(.sm\\:max-w-\\[35rem\\]){max-width:35rem}.gt-library-styles :is(.sm\\:max-w-\\[40rem\\]){max-width:40rem}.gt-library-styles :is(.sm\\:translate-y-0){--tw-translate-y: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.sm\\:scale-100){--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.sm\\:scale-95){--tw-scale-x: .95;--tw-scale-y: .95;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.gt-library-styles :is(.sm\\:flex-row){flex-direction:row}.gt-library-styles :is(.sm\\:items-center){align-items:center}.gt-library-styles :is(.sm\\:justify-start){justify-content:flex-start}.gt-library-styles :is(.sm\\:gap-1){gap:.25rem}.gt-library-styles :is(.sm\\:gap-4){gap:1rem}.gt-library-styles :is(.sm\\:gap-5){gap:1.25rem}.gt-library-styles :is(.sm\\:p-0){padding:0px}.gt-library-styles :is(.sm\\:text-sm){font-size:.875rem;line-height:1.25rem}.gt-library-styles :is(.sm\\:before\\:w-12)::before{content:var(--tw-content);width:3rem}.gt-library-styles :is(.sm\\:after\\:w-12)::after{content:var(--tw-content);width:3rem}}@media(min-width: 768px){.gt-library-styles :is(.md\\:ml-12){margin-left:3rem}.gt-library-styles :is(.md\\:ml-auto){margin-left:auto}.gt-library-styles :is(.md\\:mr-0){margin-right:0px}.gt-library-styles :is(.md\\:mt-16){margin-top:4rem}.gt-library-styles :is(.md\\:inline){display:inline}.gt-library-styles :is(.md\\:flex){display:flex}.gt-library-styles :is(.md\\:h-\\[4\\.5rem\\]){height:4.5rem}.gt-library-styles :is(.md\\:w-60){width:15rem}.gt-library-styles :is(.md\\:w-\\[270px\\]){width:270px}.gt-library-styles :is(.md\\:w-fit){width:-moz-fit-content;width:fit-content}.gt-library-styles :is(.md\\:max-w-\\[calc\\(100\\%_-_246px\\)\\]){max-width:calc(100% - 246px)}.gt-library-styles :is(.md\\:grid-cols-2){grid-template-columns:repeat(2, minmax(0, 1fr))}.gt-library-styles :is(.md\\:flex-row){flex-direction:row}.gt-library-styles :is(.md\\:flex-wrap){flex-wrap:wrap}.gt-library-styles :is(.md\\:flex-nowrap){flex-wrap:nowrap}.gt-library-styles :is(.md\\:items-center){align-items:center}.gt-library-styles :is(.md\\:justify-start){justify-content:flex-start}.gt-library-styles :is(.md\\:justify-between){justify-content:space-between}.gt-library-styles :is(.md\\:gap-3){gap:.75rem}.gt-library-styles :is(.md\\:p-0){padding:0px}.gt-library-styles :is(.md\\:px-10){padding-left:2.5rem;padding-right:2.5rem}.gt-library-styles :is(.md\\:px-5){padding-left:1.25rem;padding-right:1.25rem}.gt-library-styles :is(.md\\:px-7){padding-left:1.75rem;padding-right:1.75rem}.gt-library-styles :is(.md\\:py-10){padding-top:2.5rem;padding-bottom:2.5rem}.gt-library-styles :is(.md\\:py-3){padding-top:.75rem;padding-bottom:.75rem}.gt-library-styles :is(.md\\:pb-10){padding-bottom:2.5rem}.gt-library-styles :is(.md\\:pt-10){padding-top:2.5rem}.gt-library-styles :is(.md\\:pt-12){padding-top:3rem}.gt-library-styles :is(.md\\:pt-14){padding-top:3.5rem}.gt-library-styles :is(.md\\:text-base){font-size:1rem;line-height:1.5rem}.gt-library-styles :is(.md\\:opacity-0){opacity:0}@media not all and (min-width: 1024px){.gt-library-styles :is(.md\\:max-lg\\:mx-5){margin-left:1.25rem;margin-right:1.25rem}.gt-library-styles :is(.md\\:max-lg\\:max-w-\\[246px\\]){max-width:246px}.gt-library-styles :is(.md\\:max-lg\\:p-6){padding:1.5rem}.gt-library-styles :is(.md\\:max-lg\\:px-5){padding-left:1.25rem;padding-right:1.25rem}.gt-library-styles :is(.md\\:max-lg\\:py-2){padding-top:.5rem;padding-bottom:.5rem}}}@media(min-width: 1024px){.gt-library-styles :is(.lg\\:mt-24){margin-top:6rem}.gt-library-styles :is(.lg\\:inline){display:inline}.gt-library-styles :is(.lg\\:w-\\[35\\%\\]){width:35%}.gt-library-styles :is(.lg\\:w-\\[65\\%\\]){width:65%}.gt-library-styles :is(.lg\\:w-auto){width:auto}.gt-library-styles :is(.lg\\:w-full){width:100%}.gt-library-styles :is(.lg\\:max-w-\\[280px\\]){max-width:280px}.gt-library-styles :is(.lg\\:flex-1){flex:1 1 0%}.gt-library-styles :is(.lg\\:grow){flex-grow:1}.gt-library-styles :is(.lg\\:grow-\\[2\\]){flex-grow:2}.gt-library-styles :is(.lg\\:grid-cols-2){grid-template-columns:repeat(2, minmax(0, 1fr))}.gt-library-styles :is(.lg\\:grid-cols-3){grid-template-columns:repeat(3, minmax(0, 1fr))}.gt-library-styles :is(.lg\\:flex-nowrap){flex-wrap:nowrap}.gt-library-styles :is(.lg\\:gap-5){gap:1.25rem}.gt-library-styles :is(.lg\\:gap-6){gap:1.5rem}.gt-library-styles :is(.lg\\:p-0){padding:0px}.gt-library-styles :is(.lg\\:p-8){padding:2rem}.gt-library-styles :is(.lg\\:px-0){padding-left:0px;padding-right:0px}.gt-library-styles :is(.lg\\:px-14){padding-left:3.5rem;padding-right:3.5rem}.gt-library-styles :is(.lg\\:px-16){padding-left:4rem;padding-right:4rem}.gt-library-styles :is(.lg\\:px-8){padding-left:2rem;padding-right:2rem}.gt-library-styles :is(.lg\\:pl-3){padding-left:.75rem}.gt-library-styles :is(.lg\\:pt-14){padding-top:3.5rem}.gt-library-styles :is(.lg\\:pt-8){padding-top:2rem}@media not all and (min-width: 1280px){.gt-library-styles :is(.lg\\:max-xl\\:max-w-\\[260px\\]){max-width:260px}}}@media(min-width: 1280px){.gt-library-styles :is(.xl\\:mt-32){margin-top:8rem}.gt-library-styles :is(.xl\\:w-1\\/2){width:50%}.gt-library-styles :is(.xl\\:w-\\[28\\%\\]){width:28%}.gt-library-styles :is(.xl\\:w-\\[72\\%\\]){width:72%}.gt-library-styles :is(.xl\\:max-w-\\[280px\\]){max-width:280px}.gt-library-styles :is(.xl\\:grid-cols-2){grid-template-columns:repeat(2, minmax(0, 1fr))}.gt-library-styles :is(.xl\\:grid-cols-4){grid-template-columns:repeat(4, minmax(0, 1fr))}.gt-library-styles :is(.xl\\:flex-nowrap){flex-wrap:nowrap}.gt-library-styles :is(.xl\\:gap-10){gap:2.5rem}.gt-library-styles :is(.xl\\:p-0){padding:0px}.gt-library-styles :is(.xl\\:px-20){padding-left:5rem;padding-right:5rem}.gt-library-styles :is(.xl\\:pb-20){padding-bottom:5rem}.gt-library-styles :is(.xl\\:pt-12){padding-top:3rem}.gt-library-styles :is(.xl\\:pt-16){padding-top:4rem}}@media(min-width: 1536px){.gt-library-styles :is(.\\32 xl\\:col-span-4){grid-column:span 4/span 4}.gt-library-styles :is(.\\32 xl\\:col-start-5){grid-column-start:5}.gt-library-styles :is(.\\32 xl\\:mb-10){margin-bottom:2.5rem}.gt-library-styles :is(.\\32 xl\\:mb-20){margin-bottom:5rem}.gt-library-styles :is(.\\32 xl\\:mr-5){margin-right:1.25rem}.gt-library-styles :is(.\\32 xl\\:mt-24){margin-top:6rem}.gt-library-styles :is(.\\32 xl\\:hidden){display:none}.gt-library-styles :is(.\\32 xl\\:h-10){height:2.5rem}.gt-library-styles :is(.\\32 xl\\:h-14){height:3.5rem}.gt-library-styles :is(.\\32 xl\\:h-3){height:.75rem}.gt-library-styles :is(.\\32 xl\\:h-4){height:1rem}.gt-library-styles :is(.\\32 xl\\:h-5){height:1.25rem}.gt-library-styles :is(.\\32 xl\\:h-6){height:1.5rem}.gt-library-styles :is(.\\32 xl\\:grid-rows-1){grid-template-rows:repeat(1, minmax(0, 1fr))}.gt-library-styles :is(.\\32 xl\\:gap-5){gap:1.25rem}.gt-library-styles :is(.\\32 xl\\:gap-6){gap:1.5rem}.gt-library-styles :is(.\\32 xl\\:space-x-8>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(2rem*var(--tw-space-x-reverse));margin-left:calc(2rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.\\32 xl\\:space-x-9>:not([hidden])~:not([hidden])){--tw-space-x-reverse: 0;margin-right:calc(2.25rem*var(--tw-space-x-reverse));margin-left:calc(2.25rem*(1 - var(--tw-space-x-reverse)))}.gt-library-styles :is(.\\32 xl\\:px-8){padding-left:2rem;padding-right:2rem}.gt-library-styles :is(.\\32 xl\\:pt-\\[3\\.375rem\\]){padding-top:3.375rem}}.gt-library-styles :is(.\\[\\&\\.Toastify\\\\_\\\\_toast-container--top-right\\]\\:right-\\[4rem\\].Toastify__toast-container--top-right){right:4rem}.gt-library-styles :is(.\\[\\&\\.Toastify\\\\_\\\\_toast-container--top-right\\]\\:top-\\[8rem\\].Toastify__toast-container--top-right){top:8rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-thumb\\:hover\\]\\:bg-black\\/\\[0\\.15\\])::-webkit-scrollbar-thumb:hover{background-color:rgba(0,0,0,.15)}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-thumb\\]\\:w-2)::-webkit-scrollbar-thumb{width:.5rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-thumb\\]\\:rounded-md)::-webkit-scrollbar-thumb{border-radius:.375rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-thumb\\]\\:rounded-none)::-webkit-scrollbar-thumb{border-radius:0px}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-thumb\\]\\:bg-black\\/10)::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.1)}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-track\\]\\:my-1)::-webkit-scrollbar-track{margin-top:.25rem;margin-bottom:.25rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-track\\]\\:rounded-md)::-webkit-scrollbar-track{border-radius:.375rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar-track\\]\\:bg-white)::-webkit-scrollbar-track{--tw-bg-opacity: 1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar\\]\\:w-1)::-webkit-scrollbar{width:.25rem}.gt-library-styles :is(.\\[\\&\\:\\:-webkit-scrollbar\\]\\:w-1\\.5)::-webkit-scrollbar{width:.375rem}.gt-library-styles :is(.\\[\\&\\:has\\(\\.animate-none\\)\\]\\:\\!visible:has(.animate-none)){visibility:visible !important}.gt-library-styles :is(.\\[\\&\\:has\\(\\.max-w-container\\)\\]\\:pb-4:has(.max-w-container)){padding-bottom:1rem}@media(min-width: 768px){.gt-library-styles :is(.md\\:\\[\\&\\:has\\(\\.max-w-container\\)\\]\\:pb-6:has(.max-w-container)){padding-bottom:1.5rem}}@media(min-width: 1024px){.gt-library-styles :is(.lg\\:\\[\\&\\:has\\(\\.max-w-container\\)\\]\\:pb-8:has(.max-w-container)){padding-bottom:2rem}}@media(min-width: 1280px){.gt-library-styles :is(.xl\\:\\[\\&\\:has\\(\\.max-w-container\\)\\]\\:pb-10:has(.max-w-container)){padding-bottom:2.5rem}}.gt-library-styles :is(.\\[\\&\\>\\:first-child\\]\\:pb-2\\.5>:first-child){padding-bottom:.625rem}.gt-library-styles :is(.\\[\\&\\>\\:first-child\\]\\:pb-3>:first-child){padding-bottom:.75rem}.gt-library-styles :is(.\\[\\&\\>\\:last-child\\]\\:pt-2\\.5>:last-child){padding-top:.625rem}.gt-library-styles :is(.\\[\\&\\>\\:last-child\\]\\:pt-3>:last-child){padding-top:.75rem}.gt-library-styles :is(.\\[\\&\\>\\:not\\(\\:first-child\\,\\:last-child\\)\\]\\:py-2\\.5>:not(:first-child,:last-child)){padding-top:.625rem;padding-bottom:.625rem}.gt-library-styles :is(.\\[\\&\\>\\:not\\(\\:first-child\\,\\:last-child\\)\\]\\:py-3>:not(:first-child,:last-child)){padding-top:.75rem;padding-bottom:.75rem}.gt-library-styles :is(.\\[\\&\\>div\\]\\:gap-6>div){gap:1.5rem}.gt-library-styles :is(.\\[\\&\\>div\\]\\:border-x-0>div){border-left-width:0px;border-right-width:0px}.gt-library-styles :is(.\\[\\&\\>path\\]\\:stroke-\\[2px\\]>path){stroke-width:2px}.gt-library-styles :is(.\\[\\&_\\:first-child\\]\\:\\!m-0 :first-child){margin:0px !important}.gt-library-styles :is(.\\[\\&_\\:first-child\\]\\:mr-auto :first-child){margin-right:auto}.gt-library-styles :is(.\\[\\&_\\:first-child\\]\\:w-10 :first-child){width:2.5rem}.gt-library-styles :is(.\\[\\&_\\:last-child\\]\\:w-auto :last-child){width:auto}.gt-library-styles :is(.\\[\\&_svg\\]\\:flex-shrink-0 svg){flex-shrink:0}',""]);const i=a},6314:e=>{"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var r=function(e,t){var r,n,a,i=e[1]||"",o=e[3];if(!o)return i;if(t&&"function"==typeof btoa){var s=(r=o,n=btoa(unescape(encodeURIComponent(JSON.stringify(r)))),a="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(n),"/*# ".concat(a," */")),l=o.sources.map((function(e){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(e," */")}));return[i].concat(l).concat([s]).join("\n")}return[i].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(r,"}"):r})).join("")},t.i=function(e,r,n){"string"==typeof e&&(e=[[null,e,""]]);var a={};if(n)for(var i=0;i<this.length;i++){var o=this[i][0];null!=o&&(a[o]=!0)}for(var s=0;s<e.length;s++){var l=[].concat(e[s]);n&&a[l[0]]||(r&&(l[2]?l[2]="".concat(r," and ").concat(l[2]):l[2]=r),t.push(l))}},t}},5055:e=>{"use strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},t(e)}function r(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function n(e,t){var r=e._map,n=e._arrayTreeMap,a=e._objectTreeMap;if(r.has(t))return r.get(t);for(var i=Object.keys(t).sort(),o=Array.isArray(t)?n:a,s=0;s<i.length;s++){var l=i[s];if(void 0===(o=o.get(l)))return;var c=t[l];if(void 0===(o=o.get(c)))return}var u=o.get("_ekm_value");return u?(r.delete(u[0]),u[0]=t,o.set("_ekm_value",u),r.set(t,u),u):void 0}var a=function(){function e(t){if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.clear(),t instanceof e){var r=[];t.forEach((function(e,t){r.push([t,e])})),t=r}if(null!=t)for(var n=0;n<t.length;n++)this.set(t[n][0],t[n][1])}var a,i;return a=e,i=[{key:"set",value:function(r,n){if(null===r||"object"!==t(r))return this._map.set(r,n),this;for(var a=Object.keys(r).sort(),i=[r,n],o=Array.isArray(r)?this._arrayTreeMap:this._objectTreeMap,s=0;s<a.length;s++){var l=a[s];o.has(l)||o.set(l,new e),o=o.get(l);var c=r[l];o.has(c)||o.set(c,new e),o=o.get(c)}var u=o.get("_ekm_value");return u&&this._map.delete(u[0]),o.set("_ekm_value",i),this._map.set(r,i),this}},{key:"get",value:function(e){if(null===e||"object"!==t(e))return this._map.get(e);var r=n(this,e);return r?r[1]:void 0}},{key:"has",value:function(e){return null===e||"object"!==t(e)?this._map.has(e):void 0!==n(this,e)}},{key:"delete",value:function(e){return!!this.has(e)&&(this.set(e,void 0),!0)}},{key:"forEach",value:function(e){var r=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this;this._map.forEach((function(a,i){null!==i&&"object"===t(i)&&(a=a[1]),e.call(n,a,i,r)}))}},{key:"clear",value:function(){this._map=new Map,this._arrayTreeMap=new Map,this._objectTreeMap=new Map}},{key:"size",get:function(){return this._map.size}}],i&&r(a.prototype,i),e}();e.exports=a},2543:function(e,t,r){var n;e=r.nmd(e),function(){var a,i="Expected a function",o="__lodash_hash_undefined__",s="__lodash_placeholder__",l=32,c=128,u=1/0,d=9007199254740991,p=NaN,m=4294967295,f=[["ary",c],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",l],["partialRight",64],["rearg",256]],g="[object Arguments]",h="[object Array]",y="[object Boolean]",b="[object Date]",v="[object Error]",w="[object Function]",x="[object GeneratorFunction]",_="[object Map]",E="[object Number]",k="[object Object]",S="[object Promise]",C="[object RegExp]",R="[object Set]",A="[object String]",P="[object Symbol]",T="[object WeakMap]",N="[object ArrayBuffer]",I="[object DataView]",O="[object Float32Array]",L="[object Float64Array]",B="[object Int8Array]",j="[object Int16Array]",D="[object Int32Array]",F="[object Uint8Array]",M="[object Uint8ClampedArray]",z="[object Uint16Array]",V="[object Uint32Array]",W=/\b__p \+= '';/g,U=/\b(__p \+=) '' \+/g,H=/(__e\(.*?\)|\b__t\)) \+\n'';/g,$=/&(?:amp|lt|gt|quot|#39);/g,Z=/[&<>"']/g,G=RegExp($.source),q=RegExp(Z.source),Y=/<%-([\s\S]+?)%>/g,K=/<%([\s\S]+?)%>/g,X=/<%=([\s\S]+?)%>/g,J=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,Q=/^\w*$/,ee=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,te=/[\\^$.*+?()[\]{}|]/g,re=RegExp(te.source),ne=/^\s+/,ae=/\s/,ie=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,oe=/\{\n\/\* \[wrapped with (.+)\] \*/,se=/,? & /,le=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ce=/[()=,{}\[\]\/\s]/,ue=/\\(\\)?/g,de=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,pe=/\w*$/,me=/^[-+]0x[0-9a-f]+$/i,fe=/^0b[01]+$/i,ge=/^\[object .+?Constructor\]$/,he=/^0o[0-7]+$/i,ye=/^(?:0|[1-9]\d*)$/,be=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ve=/($^)/,we=/['\n\r\u2028\u2029\\]/g,xe="\\ud800-\\udfff",_e="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",Ee="\\u2700-\\u27bf",ke="a-z\\xdf-\\xf6\\xf8-\\xff",Se="A-Z\\xc0-\\xd6\\xd8-\\xde",Ce="\\ufe0e\\ufe0f",Re="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",Ae="["+xe+"]",Pe="["+Re+"]",Te="["+_e+"]",Ne="\\d+",Ie="["+Ee+"]",Oe="["+ke+"]",Le="[^"+xe+Re+Ne+Ee+ke+Se+"]",Be="\\ud83c[\\udffb-\\udfff]",je="[^"+xe+"]",De="(?:\\ud83c[\\udde6-\\uddff]){2}",Fe="[\\ud800-\\udbff][\\udc00-\\udfff]",Me="["+Se+"]",ze="\\u200d",Ve="(?:"+Oe+"|"+Le+")",We="(?:"+Me+"|"+Le+")",Ue="(?:['’](?:d|ll|m|re|s|t|ve))?",He="(?:['’](?:D|LL|M|RE|S|T|VE))?",$e="(?:"+Te+"|"+Be+")?",Ze="["+Ce+"]?",Ge=Ze+$e+"(?:"+ze+"(?:"+[je,De,Fe].join("|")+")"+Ze+$e+")*",qe="(?:"+[Ie,De,Fe].join("|")+")"+Ge,Ye="(?:"+[je+Te+"?",Te,De,Fe,Ae].join("|")+")",Ke=RegExp("['’]","g"),Xe=RegExp(Te,"g"),Je=RegExp(Be+"(?="+Be+")|"+Ye+Ge,"g"),Qe=RegExp([Me+"?"+Oe+"+"+Ue+"(?="+[Pe,Me,"$"].join("|")+")",We+"+"+He+"(?="+[Pe,Me+Ve,"$"].join("|")+")",Me+"?"+Ve+"+"+Ue,Me+"+"+He,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",Ne,qe].join("|"),"g"),et=RegExp("["+ze+xe+_e+Ce+"]"),tt=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,rt=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],nt=-1,at={};at[O]=at[L]=at[B]=at[j]=at[D]=at[F]=at[M]=at[z]=at[V]=!0,at[g]=at[h]=at[N]=at[y]=at[I]=at[b]=at[v]=at[w]=at[_]=at[E]=at[k]=at[C]=at[R]=at[A]=at[T]=!1;var it={};it[g]=it[h]=it[N]=it[I]=it[y]=it[b]=it[O]=it[L]=it[B]=it[j]=it[D]=it[_]=it[E]=it[k]=it[C]=it[R]=it[A]=it[P]=it[F]=it[M]=it[z]=it[V]=!0,it[v]=it[w]=it[T]=!1;var ot={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},st=parseFloat,lt=parseInt,ct="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,ut="object"==typeof self&&self&&self.Object===Object&&self,dt=ct||ut||Function("return this")(),pt=t&&!t.nodeType&&t,mt=pt&&e&&!e.nodeType&&e,ft=mt&&mt.exports===pt,gt=ft&&ct.process,ht=function(){try{return mt&&mt.require&&mt.require("util").types||gt&&gt.binding&&gt.binding("util")}catch(e){}}(),yt=ht&&ht.isArrayBuffer,bt=ht&&ht.isDate,vt=ht&&ht.isMap,wt=ht&&ht.isRegExp,xt=ht&&ht.isSet,_t=ht&&ht.isTypedArray;function Et(e,t,r){switch(r.length){case 0:return e.call(t);case 1:return e.call(t,r[0]);case 2:return e.call(t,r[0],r[1]);case 3:return e.call(t,r[0],r[1],r[2])}return e.apply(t,r)}function kt(e,t,r,n){for(var a=-1,i=null==e?0:e.length;++a<i;){var o=e[a];t(n,o,r(o),e)}return n}function St(e,t){for(var r=-1,n=null==e?0:e.length;++r<n&&!1!==t(e[r],r,e););return e}function Ct(e,t){for(var r=null==e?0:e.length;r--&&!1!==t(e[r],r,e););return e}function Rt(e,t){for(var r=-1,n=null==e?0:e.length;++r<n;)if(!t(e[r],r,e))return!1;return!0}function At(e,t){for(var r=-1,n=null==e?0:e.length,a=0,i=[];++r<n;){var o=e[r];t(o,r,e)&&(i[a++]=o)}return i}function Pt(e,t){return!(null==e||!e.length)&&Mt(e,t,0)>-1}function Tt(e,t,r){for(var n=-1,a=null==e?0:e.length;++n<a;)if(r(t,e[n]))return!0;return!1}function Nt(e,t){for(var r=-1,n=null==e?0:e.length,a=Array(n);++r<n;)a[r]=t(e[r],r,e);return a}function It(e,t){for(var r=-1,n=t.length,a=e.length;++r<n;)e[a+r]=t[r];return e}function Ot(e,t,r,n){var a=-1,i=null==e?0:e.length;for(n&&i&&(r=e[++a]);++a<i;)r=t(r,e[a],a,e);return r}function Lt(e,t,r,n){var a=null==e?0:e.length;for(n&&a&&(r=e[--a]);a--;)r=t(r,e[a],a,e);return r}function Bt(e,t){for(var r=-1,n=null==e?0:e.length;++r<n;)if(t(e[r],r,e))return!0;return!1}var jt=Ut("length");function Dt(e,t,r){var n;return r(e,(function(e,r,a){if(t(e,r,a))return n=r,!1})),n}function Ft(e,t,r,n){for(var a=e.length,i=r+(n?1:-1);n?i--:++i<a;)if(t(e[i],i,e))return i;return-1}function Mt(e,t,r){return t==t?function(e,t,r){for(var n=r-1,a=e.length;++n<a;)if(e[n]===t)return n;return-1}(e,t,r):Ft(e,Vt,r)}function zt(e,t,r,n){for(var a=r-1,i=e.length;++a<i;)if(n(e[a],t))return a;return-1}function Vt(e){return e!=e}function Wt(e,t){var r=null==e?0:e.length;return r?Zt(e,t)/r:p}function Ut(e){return function(t){return null==t?a:t[e]}}function Ht(e){return function(t){return null==e?a:e[t]}}function $t(e,t,r,n,a){return a(e,(function(e,a,i){r=n?(n=!1,e):t(r,e,a,i)})),r}function Zt(e,t){for(var r,n=-1,i=e.length;++n<i;){var o=t(e[n]);o!==a&&(r=r===a?o:r+o)}return r}function Gt(e,t){for(var r=-1,n=Array(e);++r<e;)n[r]=t(r);return n}function qt(e){return e?e.slice(0,dr(e)+1).replace(ne,""):e}function Yt(e){return function(t){return e(t)}}function Kt(e,t){return Nt(t,(function(t){return e[t]}))}function Xt(e,t){return e.has(t)}function Jt(e,t){for(var r=-1,n=e.length;++r<n&&Mt(t,e[r],0)>-1;);return r}function Qt(e,t){for(var r=e.length;r--&&Mt(t,e[r],0)>-1;);return r}var er=Ht({À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"}),tr=Ht({"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#39;"});function rr(e){return"\\"+ot[e]}function nr(e){return et.test(e)}function ar(e){var t=-1,r=Array(e.size);return e.forEach((function(e,n){r[++t]=[n,e]})),r}function ir(e,t){return function(r){return e(t(r))}}function or(e,t){for(var r=-1,n=e.length,a=0,i=[];++r<n;){var o=e[r];o!==t&&o!==s||(e[r]=s,i[a++]=r)}return i}function sr(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=e})),r}function lr(e){var t=-1,r=Array(e.size);return e.forEach((function(e){r[++t]=[e,e]})),r}function cr(e){return nr(e)?function(e){for(var t=Je.lastIndex=0;Je.test(e);)++t;return t}(e):jt(e)}function ur(e){return nr(e)?function(e){return e.match(Je)||[]}(e):function(e){return e.split("")}(e)}function dr(e){for(var t=e.length;t--&&ae.test(e.charAt(t)););return t}var pr=Ht({"&amp;":"&","&lt;":"<","&gt;":">","&quot;":'"',"&#39;":"'"}),mr=function e(t){var r,n=(t=null==t?dt:mr.defaults(dt.Object(),t,mr.pick(dt,rt))).Array,ae=t.Date,xe=t.Error,_e=t.Function,Ee=t.Math,ke=t.Object,Se=t.RegExp,Ce=t.String,Re=t.TypeError,Ae=n.prototype,Pe=_e.prototype,Te=ke.prototype,Ne=t["__core-js_shared__"],Ie=Pe.toString,Oe=Te.hasOwnProperty,Le=0,Be=(r=/[^.]+$/.exec(Ne&&Ne.keys&&Ne.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"",je=Te.toString,De=Ie.call(ke),Fe=dt._,Me=Se("^"+Ie.call(Oe).replace(te,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),ze=ft?t.Buffer:a,Ve=t.Symbol,We=t.Uint8Array,Ue=ze?ze.allocUnsafe:a,He=ir(ke.getPrototypeOf,ke),$e=ke.create,Ze=Te.propertyIsEnumerable,Ge=Ae.splice,qe=Ve?Ve.isConcatSpreadable:a,Ye=Ve?Ve.iterator:a,Je=Ve?Ve.toStringTag:a,et=function(){try{var e=li(ke,"defineProperty");return e({},"",{}),e}catch(e){}}(),ot=t.clearTimeout!==dt.clearTimeout&&t.clearTimeout,ct=ae&&ae.now!==dt.Date.now&&ae.now,ut=t.setTimeout!==dt.setTimeout&&t.setTimeout,pt=Ee.ceil,mt=Ee.floor,gt=ke.getOwnPropertySymbols,ht=ze?ze.isBuffer:a,jt=t.isFinite,Ht=Ae.join,fr=ir(ke.keys,ke),gr=Ee.max,hr=Ee.min,yr=ae.now,br=t.parseInt,vr=Ee.random,wr=Ae.reverse,xr=li(t,"DataView"),_r=li(t,"Map"),Er=li(t,"Promise"),kr=li(t,"Set"),Sr=li(t,"WeakMap"),Cr=li(ke,"create"),Rr=Sr&&new Sr,Ar={},Pr=ji(xr),Tr=ji(_r),Nr=ji(Er),Ir=ji(kr),Or=ji(Sr),Lr=Ve?Ve.prototype:a,Br=Lr?Lr.valueOf:a,jr=Lr?Lr.toString:a;function Dr(e){if(es(e)&&!Uo(e)&&!(e instanceof Vr)){if(e instanceof zr)return e;if(Oe.call(e,"__wrapped__"))return Di(e)}return new zr(e)}var Fr=function(){function e(){}return function(t){if(!Qo(t))return{};if($e)return $e(t);e.prototype=t;var r=new e;return e.prototype=a,r}}();function Mr(){}function zr(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=a}function Vr(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=m,this.__views__=[]}function Wr(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function Ur(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function Hr(e){var t=-1,r=null==e?0:e.length;for(this.clear();++t<r;){var n=e[t];this.set(n[0],n[1])}}function $r(e){var t=-1,r=null==e?0:e.length;for(this.__data__=new Hr;++t<r;)this.add(e[t])}function Zr(e){var t=this.__data__=new Ur(e);this.size=t.size}function Gr(e,t){var r=Uo(e),n=!r&&Wo(e),a=!r&&!n&&Go(e),i=!r&&!n&&!a&&ls(e),o=r||n||a||i,s=o?Gt(e.length,Ce):[],l=s.length;for(var c in e)!t&&!Oe.call(e,c)||o&&("length"==c||a&&("offset"==c||"parent"==c)||i&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||gi(c,l))||s.push(c);return s}function qr(e){var t=e.length;return t?e[$n(0,t-1)]:a}function Yr(e,t){return Ni(Ca(e),an(t,0,e.length))}function Kr(e){return Ni(Ca(e))}function Xr(e,t,r){(r!==a&&!Mo(e[t],r)||r===a&&!(t in e))&&rn(e,t,r)}function Jr(e,t,r){var n=e[t];Oe.call(e,t)&&Mo(n,r)&&(r!==a||t in e)||rn(e,t,r)}function Qr(e,t){for(var r=e.length;r--;)if(Mo(e[r][0],t))return r;return-1}function en(e,t,r,n){return un(e,(function(e,a,i){t(n,e,r(e),i)})),n}function tn(e,t){return e&&Ra(t,Ts(t),e)}function rn(e,t,r){"__proto__"==t&&et?et(e,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):e[t]=r}function nn(e,t){for(var r=-1,i=t.length,o=n(i),s=null==e;++r<i;)o[r]=s?a:Ss(e,t[r]);return o}function an(e,t,r){return e==e&&(r!==a&&(e=e<=r?e:r),t!==a&&(e=e>=t?e:t)),e}function on(e,t,r,n,i,o){var s,l=1&t,c=2&t,u=4&t;if(r&&(s=i?r(e,n,i,o):r(e)),s!==a)return s;if(!Qo(e))return e;var d=Uo(e);if(d){if(s=function(e){var t=e.length,r=new e.constructor(t);return t&&"string"==typeof e[0]&&Oe.call(e,"index")&&(r.index=e.index,r.input=e.input),r}(e),!l)return Ca(e,s)}else{var p=di(e),m=p==w||p==x;if(Go(e))return wa(e,l);if(p==k||p==g||m&&!i){if(s=c||m?{}:mi(e),!l)return c?function(e,t){return Ra(e,ui(e),t)}(e,function(e,t){return e&&Ra(t,Ns(t),e)}(s,e)):function(e,t){return Ra(e,ci(e),t)}(e,tn(s,e))}else{if(!it[p])return i?e:{};s=function(e,t,r){var n,a=e.constructor;switch(t){case N:return xa(e);case y:case b:return new a(+e);case I:return function(e,t){var r=t?xa(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.byteLength)}(e,r);case O:case L:case B:case j:case D:case F:case M:case z:case V:return _a(e,r);case _:return new a;case E:case A:return new a(e);case C:return function(e){var t=new e.constructor(e.source,pe.exec(e));return t.lastIndex=e.lastIndex,t}(e);case R:return new a;case P:return n=e,Br?ke(Br.call(n)):{}}}(e,p,l)}}o||(o=new Zr);var f=o.get(e);if(f)return f;o.set(e,s),is(e)?e.forEach((function(n){s.add(on(n,t,r,n,e,o))})):ts(e)&&e.forEach((function(n,a){s.set(a,on(n,t,r,a,e,o))}));var h=d?a:(u?c?ti:ei:c?Ns:Ts)(e);return St(h||e,(function(n,a){h&&(n=e[a=n]),Jr(s,a,on(n,t,r,a,e,o))})),s}function sn(e,t,r){var n=r.length;if(null==e)return!n;for(e=ke(e);n--;){var i=r[n],o=t[i],s=e[i];if(s===a&&!(i in e)||!o(s))return!1}return!0}function ln(e,t,r){if("function"!=typeof e)throw new Re(i);return Ri((function(){e.apply(a,r)}),t)}function cn(e,t,r,n){var a=-1,i=Pt,o=!0,s=e.length,l=[],c=t.length;if(!s)return l;r&&(t=Nt(t,Yt(r))),n?(i=Tt,o=!1):t.length>=200&&(i=Xt,o=!1,t=new $r(t));e:for(;++a<s;){var u=e[a],d=null==r?u:r(u);if(u=n||0!==u?u:0,o&&d==d){for(var p=c;p--;)if(t[p]===d)continue e;l.push(u)}else i(t,d,n)||l.push(u)}return l}Dr.templateSettings={escape:Y,evaluate:K,interpolate:X,variable:"",imports:{_:Dr}},Dr.prototype=Mr.prototype,Dr.prototype.constructor=Dr,zr.prototype=Fr(Mr.prototype),zr.prototype.constructor=zr,Vr.prototype=Fr(Mr.prototype),Vr.prototype.constructor=Vr,Wr.prototype.clear=function(){this.__data__=Cr?Cr(null):{},this.size=0},Wr.prototype.delete=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},Wr.prototype.get=function(e){var t=this.__data__;if(Cr){var r=t[e];return r===o?a:r}return Oe.call(t,e)?t[e]:a},Wr.prototype.has=function(e){var t=this.__data__;return Cr?t[e]!==a:Oe.call(t,e)},Wr.prototype.set=function(e,t){var r=this.__data__;return this.size+=this.has(e)?0:1,r[e]=Cr&&t===a?o:t,this},Ur.prototype.clear=function(){this.__data__=[],this.size=0},Ur.prototype.delete=function(e){var t=this.__data__,r=Qr(t,e);return!(r<0||(r==t.length-1?t.pop():Ge.call(t,r,1),--this.size,0))},Ur.prototype.get=function(e){var t=this.__data__,r=Qr(t,e);return r<0?a:t[r][1]},Ur.prototype.has=function(e){return Qr(this.__data__,e)>-1},Ur.prototype.set=function(e,t){var r=this.__data__,n=Qr(r,e);return n<0?(++this.size,r.push([e,t])):r[n][1]=t,this},Hr.prototype.clear=function(){this.size=0,this.__data__={hash:new Wr,map:new(_r||Ur),string:new Wr}},Hr.prototype.delete=function(e){var t=oi(this,e).delete(e);return this.size-=t?1:0,t},Hr.prototype.get=function(e){return oi(this,e).get(e)},Hr.prototype.has=function(e){return oi(this,e).has(e)},Hr.prototype.set=function(e,t){var r=oi(this,e),n=r.size;return r.set(e,t),this.size+=r.size==n?0:1,this},$r.prototype.add=$r.prototype.push=function(e){return this.__data__.set(e,o),this},$r.prototype.has=function(e){return this.__data__.has(e)},Zr.prototype.clear=function(){this.__data__=new Ur,this.size=0},Zr.prototype.delete=function(e){var t=this.__data__,r=t.delete(e);return this.size=t.size,r},Zr.prototype.get=function(e){return this.__data__.get(e)},Zr.prototype.has=function(e){return this.__data__.has(e)},Zr.prototype.set=function(e,t){var r=this.__data__;if(r instanceof Ur){var n=r.__data__;if(!_r||n.length<199)return n.push([e,t]),this.size=++r.size,this;r=this.__data__=new Hr(n)}return r.set(e,t),this.size=r.size,this};var un=Ta(bn),dn=Ta(vn,!0);function pn(e,t){var r=!0;return un(e,(function(e,n,a){return r=!!t(e,n,a)})),r}function mn(e,t,r){for(var n=-1,i=e.length;++n<i;){var o=e[n],s=t(o);if(null!=s&&(l===a?s==s&&!ss(s):r(s,l)))var l=s,c=o}return c}function fn(e,t){var r=[];return un(e,(function(e,n,a){t(e,n,a)&&r.push(e)})),r}function gn(e,t,r,n,a){var i=-1,o=e.length;for(r||(r=fi),a||(a=[]);++i<o;){var s=e[i];t>0&&r(s)?t>1?gn(s,t-1,r,n,a):It(a,s):n||(a[a.length]=s)}return a}var hn=Na(),yn=Na(!0);function bn(e,t){return e&&hn(e,t,Ts)}function vn(e,t){return e&&yn(e,t,Ts)}function wn(e,t){return At(t,(function(t){return Ko(e[t])}))}function xn(e,t){for(var r=0,n=(t=ha(t,e)).length;null!=e&&r<n;)e=e[Bi(t[r++])];return r&&r==n?e:a}function _n(e,t,r){var n=t(e);return Uo(e)?n:It(n,r(e))}function En(e){return null==e?e===a?"[object Undefined]":"[object Null]":Je&&Je in ke(e)?function(e){var t=Oe.call(e,Je),r=e[Je];try{e[Je]=a;var n=!0}catch(e){}var i=je.call(e);return n&&(t?e[Je]=r:delete e[Je]),i}(e):function(e){return je.call(e)}(e)}function kn(e,t){return e>t}function Sn(e,t){return null!=e&&Oe.call(e,t)}function Cn(e,t){return null!=e&&t in ke(e)}function Rn(e,t,r){for(var i=r?Tt:Pt,o=e[0].length,s=e.length,l=s,c=n(s),u=1/0,d=[];l--;){var p=e[l];l&&t&&(p=Nt(p,Yt(t))),u=hr(p.length,u),c[l]=!r&&(t||o>=120&&p.length>=120)?new $r(l&&p):a}p=e[0];var m=-1,f=c[0];e:for(;++m<o&&d.length<u;){var g=p[m],h=t?t(g):g;if(g=r||0!==g?g:0,!(f?Xt(f,h):i(d,h,r))){for(l=s;--l;){var y=c[l];if(!(y?Xt(y,h):i(e[l],h,r)))continue e}f&&f.push(h),d.push(g)}}return d}function An(e,t,r){var n=null==(e=ki(e,t=ha(t,e)))?e:e[Bi(qi(t))];return null==n?a:Et(n,e,r)}function Pn(e){return es(e)&&En(e)==g}function Tn(e,t,r,n,i){return e===t||(null==e||null==t||!es(e)&&!es(t)?e!=e&&t!=t:function(e,t,r,n,i,o){var s=Uo(e),l=Uo(t),c=s?h:di(e),u=l?h:di(t),d=(c=c==g?k:c)==k,p=(u=u==g?k:u)==k,m=c==u;if(m&&Go(e)){if(!Go(t))return!1;s=!0,d=!1}if(m&&!d)return o||(o=new Zr),s||ls(e)?Ja(e,t,r,n,i,o):function(e,t,r,n,a,i,o){switch(r){case I:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)return!1;e=e.buffer,t=t.buffer;case N:return!(e.byteLength!=t.byteLength||!i(new We(e),new We(t)));case y:case b:case E:return Mo(+e,+t);case v:return e.name==t.name&&e.message==t.message;case C:case A:return e==t+"";case _:var s=ar;case R:var l=1&n;if(s||(s=sr),e.size!=t.size&&!l)return!1;var c=o.get(e);if(c)return c==t;n|=2,o.set(e,t);var u=Ja(s(e),s(t),n,a,i,o);return o.delete(e),u;case P:if(Br)return Br.call(e)==Br.call(t)}return!1}(e,t,c,r,n,i,o);if(!(1&r)){var f=d&&Oe.call(e,"__wrapped__"),w=p&&Oe.call(t,"__wrapped__");if(f||w){var x=f?e.value():e,S=w?t.value():t;return o||(o=new Zr),i(x,S,r,n,o)}}return!!m&&(o||(o=new Zr),function(e,t,r,n,i,o){var s=1&r,l=ei(e),c=l.length;if(c!=ei(t).length&&!s)return!1;for(var u=c;u--;){var d=l[u];if(!(s?d in t:Oe.call(t,d)))return!1}var p=o.get(e),m=o.get(t);if(p&&m)return p==t&&m==e;var f=!0;o.set(e,t),o.set(t,e);for(var g=s;++u<c;){var h=e[d=l[u]],y=t[d];if(n)var b=s?n(y,h,d,t,e,o):n(h,y,d,e,t,o);if(!(b===a?h===y||i(h,y,r,n,o):b)){f=!1;break}g||(g="constructor"==d)}if(f&&!g){var v=e.constructor,w=t.constructor;v==w||!("constructor"in e)||!("constructor"in t)||"function"==typeof v&&v instanceof v&&"function"==typeof w&&w instanceof w||(f=!1)}return o.delete(e),o.delete(t),f}(e,t,r,n,i,o))}(e,t,r,n,Tn,i))}function Nn(e,t,r,n){var i=r.length,o=i,s=!n;if(null==e)return!o;for(e=ke(e);i--;){var l=r[i];if(s&&l[2]?l[1]!==e[l[0]]:!(l[0]in e))return!1}for(;++i<o;){var c=(l=r[i])[0],u=e[c],d=l[1];if(s&&l[2]){if(u===a&&!(c in e))return!1}else{var p=new Zr;if(n)var m=n(u,d,c,e,t,p);if(!(m===a?Tn(d,u,3,n,p):m))return!1}}return!0}function In(e){return!(!Qo(e)||(t=e,Be&&Be in t))&&(Ko(e)?Me:ge).test(ji(e));var t}function On(e){return"function"==typeof e?e:null==e?rl:"object"==typeof e?Uo(e)?Fn(e[0],e[1]):Dn(e):dl(e)}function Ln(e){if(!wi(e))return fr(e);var t=[];for(var r in ke(e))Oe.call(e,r)&&"constructor"!=r&&t.push(r);return t}function Bn(e,t){return e<t}function jn(e,t){var r=-1,a=$o(e)?n(e.length):[];return un(e,(function(e,n,i){a[++r]=t(e,n,i)})),a}function Dn(e){var t=si(e);return 1==t.length&&t[0][2]?_i(t[0][0],t[0][1]):function(r){return r===e||Nn(r,e,t)}}function Fn(e,t){return yi(e)&&xi(t)?_i(Bi(e),t):function(r){var n=Ss(r,e);return n===a&&n===t?Cs(r,e):Tn(t,n,3)}}function Mn(e,t,r,n,i){e!==t&&hn(t,(function(o,s){if(i||(i=new Zr),Qo(o))!function(e,t,r,n,i,o,s){var l=Si(e,r),c=Si(t,r),u=s.get(c);if(u)Xr(e,r,u);else{var d=o?o(l,c,r+"",e,t,s):a,p=d===a;if(p){var m=Uo(c),f=!m&&Go(c),g=!m&&!f&&ls(c);d=c,m||f||g?Uo(l)?d=l:Zo(l)?d=Ca(l):f?(p=!1,d=wa(c,!0)):g?(p=!1,d=_a(c,!0)):d=[]:ns(c)||Wo(c)?(d=l,Wo(l)?d=hs(l):Qo(l)&&!Ko(l)||(d=mi(c))):p=!1}p&&(s.set(c,d),i(d,c,n,o,s),s.delete(c)),Xr(e,r,d)}}(e,t,s,r,Mn,n,i);else{var l=n?n(Si(e,s),o,s+"",e,t,i):a;l===a&&(l=o),Xr(e,s,l)}}),Ns)}function zn(e,t){var r=e.length;if(r)return gi(t+=t<0?r:0,r)?e[t]:a}function Vn(e,t,r){t=t.length?Nt(t,(function(e){return Uo(e)?function(t){return xn(t,1===e.length?e[0]:e)}:e})):[rl];var n=-1;t=Nt(t,Yt(ii()));var a=jn(e,(function(e,r,a){var i=Nt(t,(function(t){return t(e)}));return{criteria:i,index:++n,value:e}}));return function(e,t){var n=e.length;for(e.sort((function(e,t){return function(e,t,r){for(var n=-1,a=e.criteria,i=t.criteria,o=a.length,s=r.length;++n<o;){var l=Ea(a[n],i[n]);if(l)return n>=s?l:l*("desc"==r[n]?-1:1)}return e.index-t.index}(e,t,r)}));n--;)e[n]=e[n].value;return e}(a)}function Wn(e,t,r){for(var n=-1,a=t.length,i={};++n<a;){var o=t[n],s=xn(e,o);r(s,o)&&Kn(i,ha(o,e),s)}return i}function Un(e,t,r,n){var a=n?zt:Mt,i=-1,o=t.length,s=e;for(e===t&&(t=Ca(t)),r&&(s=Nt(e,Yt(r)));++i<o;)for(var l=0,c=t[i],u=r?r(c):c;(l=a(s,u,l,n))>-1;)s!==e&&Ge.call(s,l,1),Ge.call(e,l,1);return e}function Hn(e,t){for(var r=e?t.length:0,n=r-1;r--;){var a=t[r];if(r==n||a!==i){var i=a;gi(a)?Ge.call(e,a,1):la(e,a)}}return e}function $n(e,t){return e+mt(vr()*(t-e+1))}function Zn(e,t){var r="";if(!e||t<1||t>d)return r;do{t%2&&(r+=e),(t=mt(t/2))&&(e+=e)}while(t);return r}function Gn(e,t){return Ai(Ei(e,t,rl),e+"")}function qn(e){return qr(Ms(e))}function Yn(e,t){var r=Ms(e);return Ni(r,an(t,0,r.length))}function Kn(e,t,r,n){if(!Qo(e))return e;for(var i=-1,o=(t=ha(t,e)).length,s=o-1,l=e;null!=l&&++i<o;){var c=Bi(t[i]),u=r;if("__proto__"===c||"constructor"===c||"prototype"===c)return e;if(i!=s){var d=l[c];(u=n?n(d,c,l):a)===a&&(u=Qo(d)?d:gi(t[i+1])?[]:{})}Jr(l,c,u),l=l[c]}return e}var Xn=Rr?function(e,t){return Rr.set(e,t),e}:rl,Jn=et?function(e,t){return et(e,"toString",{configurable:!0,enumerable:!1,value:Qs(t),writable:!0})}:rl;function Qn(e){return Ni(Ms(e))}function ea(e,t,r){var a=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(r=r>i?i:r)<0&&(r+=i),i=t>r?0:r-t>>>0,t>>>=0;for(var o=n(i);++a<i;)o[a]=e[a+t];return o}function ta(e,t){var r;return un(e,(function(e,n,a){return!(r=t(e,n,a))})),!!r}function ra(e,t,r){var n=0,a=null==e?n:e.length;if("number"==typeof t&&t==t&&a<=2147483647){for(;n<a;){var i=n+a>>>1,o=e[i];null!==o&&!ss(o)&&(r?o<=t:o<t)?n=i+1:a=i}return a}return na(e,t,rl,r)}function na(e,t,r,n){var i=0,o=null==e?0:e.length;if(0===o)return 0;for(var s=(t=r(t))!=t,l=null===t,c=ss(t),u=t===a;i<o;){var d=mt((i+o)/2),p=r(e[d]),m=p!==a,f=null===p,g=p==p,h=ss(p);if(s)var y=n||g;else y=u?g&&(n||m):l?g&&m&&(n||!f):c?g&&m&&!f&&(n||!h):!f&&!h&&(n?p<=t:p<t);y?i=d+1:o=d}return hr(o,4294967294)}function aa(e,t){for(var r=-1,n=e.length,a=0,i=[];++r<n;){var o=e[r],s=t?t(o):o;if(!r||!Mo(s,l)){var l=s;i[a++]=0===o?0:o}}return i}function ia(e){return"number"==typeof e?e:ss(e)?p:+e}function oa(e){if("string"==typeof e)return e;if(Uo(e))return Nt(e,oa)+"";if(ss(e))return jr?jr.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function sa(e,t,r){var n=-1,a=Pt,i=e.length,o=!0,s=[],l=s;if(r)o=!1,a=Tt;else if(i>=200){var c=t?null:Za(e);if(c)return sr(c);o=!1,a=Xt,l=new $r}else l=t?[]:s;e:for(;++n<i;){var u=e[n],d=t?t(u):u;if(u=r||0!==u?u:0,o&&d==d){for(var p=l.length;p--;)if(l[p]===d)continue e;t&&l.push(d),s.push(u)}else a(l,d,r)||(l!==s&&l.push(d),s.push(u))}return s}function la(e,t){return null==(e=ki(e,t=ha(t,e)))||delete e[Bi(qi(t))]}function ca(e,t,r,n){return Kn(e,t,r(xn(e,t)),n)}function ua(e,t,r,n){for(var a=e.length,i=n?a:-1;(n?i--:++i<a)&&t(e[i],i,e););return r?ea(e,n?0:i,n?i+1:a):ea(e,n?i+1:0,n?a:i)}function da(e,t){var r=e;return r instanceof Vr&&(r=r.value()),Ot(t,(function(e,t){return t.func.apply(t.thisArg,It([e],t.args))}),r)}function pa(e,t,r){var a=e.length;if(a<2)return a?sa(e[0]):[];for(var i=-1,o=n(a);++i<a;)for(var s=e[i],l=-1;++l<a;)l!=i&&(o[i]=cn(o[i]||s,e[l],t,r));return sa(gn(o,1),t,r)}function ma(e,t,r){for(var n=-1,i=e.length,o=t.length,s={};++n<i;){var l=n<o?t[n]:a;r(s,e[n],l)}return s}function fa(e){return Zo(e)?e:[]}function ga(e){return"function"==typeof e?e:rl}function ha(e,t){return Uo(e)?e:yi(e,t)?[e]:Li(ys(e))}var ya=Gn;function ba(e,t,r){var n=e.length;return r=r===a?n:r,!t&&r>=n?e:ea(e,t,r)}var va=ot||function(e){return dt.clearTimeout(e)};function wa(e,t){if(t)return e.slice();var r=e.length,n=Ue?Ue(r):new e.constructor(r);return e.copy(n),n}function xa(e){var t=new e.constructor(e.byteLength);return new We(t).set(new We(e)),t}function _a(e,t){var r=t?xa(e.buffer):e.buffer;return new e.constructor(r,e.byteOffset,e.length)}function Ea(e,t){if(e!==t){var r=e!==a,n=null===e,i=e==e,o=ss(e),s=t!==a,l=null===t,c=t==t,u=ss(t);if(!l&&!u&&!o&&e>t||o&&s&&c&&!l&&!u||n&&s&&c||!r&&c||!i)return 1;if(!n&&!o&&!u&&e<t||u&&r&&i&&!n&&!o||l&&r&&i||!s&&i||!c)return-1}return 0}function ka(e,t,r,a){for(var i=-1,o=e.length,s=r.length,l=-1,c=t.length,u=gr(o-s,0),d=n(c+u),p=!a;++l<c;)d[l]=t[l];for(;++i<s;)(p||i<o)&&(d[r[i]]=e[i]);for(;u--;)d[l++]=e[i++];return d}function Sa(e,t,r,a){for(var i=-1,o=e.length,s=-1,l=r.length,c=-1,u=t.length,d=gr(o-l,0),p=n(d+u),m=!a;++i<d;)p[i]=e[i];for(var f=i;++c<u;)p[f+c]=t[c];for(;++s<l;)(m||i<o)&&(p[f+r[s]]=e[i++]);return p}function Ca(e,t){var r=-1,a=e.length;for(t||(t=n(a));++r<a;)t[r]=e[r];return t}function Ra(e,t,r,n){var i=!r;r||(r={});for(var o=-1,s=t.length;++o<s;){var l=t[o],c=n?n(r[l],e[l],l,r,e):a;c===a&&(c=e[l]),i?rn(r,l,c):Jr(r,l,c)}return r}function Aa(e,t){return function(r,n){var a=Uo(r)?kt:en,i=t?t():{};return a(r,e,ii(n,2),i)}}function Pa(e){return Gn((function(t,r){var n=-1,i=r.length,o=i>1?r[i-1]:a,s=i>2?r[2]:a;for(o=e.length>3&&"function"==typeof o?(i--,o):a,s&&hi(r[0],r[1],s)&&(o=i<3?a:o,i=1),t=ke(t);++n<i;){var l=r[n];l&&e(t,l,n,o)}return t}))}function Ta(e,t){return function(r,n){if(null==r)return r;if(!$o(r))return e(r,n);for(var a=r.length,i=t?a:-1,o=ke(r);(t?i--:++i<a)&&!1!==n(o[i],i,o););return r}}function Na(e){return function(t,r,n){for(var a=-1,i=ke(t),o=n(t),s=o.length;s--;){var l=o[e?s:++a];if(!1===r(i[l],l,i))break}return t}}function Ia(e){return function(t){var r=nr(t=ys(t))?ur(t):a,n=r?r[0]:t.charAt(0),i=r?ba(r,1).join(""):t.slice(1);return n[e]()+i}}function Oa(e){return function(t){return Ot(Ks(Ws(t).replace(Ke,"")),e,"")}}function La(e){return function(){var t=arguments;switch(t.length){case 0:return new e;case 1:return new e(t[0]);case 2:return new e(t[0],t[1]);case 3:return new e(t[0],t[1],t[2]);case 4:return new e(t[0],t[1],t[2],t[3]);case 5:return new e(t[0],t[1],t[2],t[3],t[4]);case 6:return new e(t[0],t[1],t[2],t[3],t[4],t[5]);case 7:return new e(t[0],t[1],t[2],t[3],t[4],t[5],t[6])}var r=Fr(e.prototype),n=e.apply(r,t);return Qo(n)?n:r}}function Ba(e){return function(t,r,n){var i=ke(t);if(!$o(t)){var o=ii(r,3);t=Ts(t),r=function(e){return o(i[e],e,i)}}var s=e(t,r,n);return s>-1?i[o?t[s]:s]:a}}function ja(e){return Qa((function(t){var r=t.length,n=r,o=zr.prototype.thru;for(e&&t.reverse();n--;){var s=t[n];if("function"!=typeof s)throw new Re(i);if(o&&!l&&"wrapper"==ni(s))var l=new zr([],!0)}for(n=l?n:r;++n<r;){var c=ni(s=t[n]),u="wrapper"==c?ri(s):a;l=u&&bi(u[0])&&424==u[1]&&!u[4].length&&1==u[9]?l[ni(u[0])].apply(l,u[3]):1==s.length&&bi(s)?l[c]():l.thru(s)}return function(){var e=arguments,n=e[0];if(l&&1==e.length&&Uo(n))return l.plant(n).value();for(var a=0,i=r?t[a].apply(this,e):n;++a<r;)i=t[a].call(this,i);return i}}))}function Da(e,t,r,i,o,s,l,u,d,p){var m=t&c,f=1&t,g=2&t,h=24&t,y=512&t,b=g?a:La(e);return function c(){for(var v=arguments.length,w=n(v),x=v;x--;)w[x]=arguments[x];if(h)var _=ai(c),E=function(e,t){for(var r=e.length,n=0;r--;)e[r]===t&&++n;return n}(w,_);if(i&&(w=ka(w,i,o,h)),s&&(w=Sa(w,s,l,h)),v-=E,h&&v<p){var k=or(w,_);return Ha(e,t,Da,c.placeholder,r,w,k,u,d,p-v)}var S=f?r:this,C=g?S[e]:e;return v=w.length,u?w=function(e,t){for(var r=e.length,n=hr(t.length,r),i=Ca(e);n--;){var o=t[n];e[n]=gi(o,r)?i[o]:a}return e}(w,u):y&&v>1&&w.reverse(),m&&d<v&&(w.length=d),this&&this!==dt&&this instanceof c&&(C=b||La(C)),C.apply(S,w)}}function Fa(e,t){return function(r,n){return function(e,t,r,n){return bn(e,(function(e,a,i){t(n,r(e),a,i)})),n}(r,e,t(n),{})}}function Ma(e,t){return function(r,n){var i;if(r===a&&n===a)return t;if(r!==a&&(i=r),n!==a){if(i===a)return n;"string"==typeof r||"string"==typeof n?(r=oa(r),n=oa(n)):(r=ia(r),n=ia(n)),i=e(r,n)}return i}}function za(e){return Qa((function(t){return t=Nt(t,Yt(ii())),Gn((function(r){var n=this;return e(t,(function(e){return Et(e,n,r)}))}))}))}function Va(e,t){var r=(t=t===a?" ":oa(t)).length;if(r<2)return r?Zn(t,e):t;var n=Zn(t,pt(e/cr(t)));return nr(t)?ba(ur(n),0,e).join(""):n.slice(0,e)}function Wa(e){return function(t,r,i){return i&&"number"!=typeof i&&hi(t,r,i)&&(r=i=a),t=ps(t),r===a?(r=t,t=0):r=ps(r),function(e,t,r,a){for(var i=-1,o=gr(pt((t-e)/(r||1)),0),s=n(o);o--;)s[a?o:++i]=e,e+=r;return s}(t,r,i=i===a?t<r?1:-1:ps(i),e)}}function Ua(e){return function(t,r){return"string"==typeof t&&"string"==typeof r||(t=gs(t),r=gs(r)),e(t,r)}}function Ha(e,t,r,n,i,o,s,c,u,d){var p=8&t;t|=p?l:64,4&(t&=~(p?64:l))||(t&=-4);var m=[e,t,i,p?o:a,p?s:a,p?a:o,p?a:s,c,u,d],f=r.apply(a,m);return bi(e)&&Ci(f,m),f.placeholder=n,Pi(f,e,t)}function $a(e){var t=Ee[e];return function(e,r){if(e=gs(e),(r=null==r?0:hr(ms(r),292))&&jt(e)){var n=(ys(e)+"e").split("e");return+((n=(ys(t(n[0]+"e"+(+n[1]+r)))+"e").split("e"))[0]+"e"+(+n[1]-r))}return t(e)}}var Za=kr&&1/sr(new kr([,-0]))[1]==u?function(e){return new kr(e)}:sl;function Ga(e){return function(t){var r=di(t);return r==_?ar(t):r==R?lr(t):function(e,t){return Nt(t,(function(t){return[t,e[t]]}))}(t,e(t))}}function qa(e,t,r,o,u,d,p,m){var f=2&t;if(!f&&"function"!=typeof e)throw new Re(i);var g=o?o.length:0;if(g||(t&=-97,o=u=a),p=p===a?p:gr(ms(p),0),m=m===a?m:ms(m),g-=u?u.length:0,64&t){var h=o,y=u;o=u=a}var b=f?a:ri(e),v=[e,t,r,o,u,h,y,d,p,m];if(b&&function(e,t){var r=e[1],n=t[1],a=r|n,i=a<131,o=n==c&&8==r||n==c&&256==r&&e[7].length<=t[8]||384==n&&t[7].length<=t[8]&&8==r;if(!i&&!o)return e;1&n&&(e[2]=t[2],a|=1&r?0:4);var l=t[3];if(l){var u=e[3];e[3]=u?ka(u,l,t[4]):l,e[4]=u?or(e[3],s):t[4]}(l=t[5])&&(u=e[5],e[5]=u?Sa(u,l,t[6]):l,e[6]=u?or(e[5],s):t[6]),(l=t[7])&&(e[7]=l),n&c&&(e[8]=null==e[8]?t[8]:hr(e[8],t[8])),null==e[9]&&(e[9]=t[9]),e[0]=t[0],e[1]=a}(v,b),e=v[0],t=v[1],r=v[2],o=v[3],u=v[4],!(m=v[9]=v[9]===a?f?0:e.length:gr(v[9]-g,0))&&24&t&&(t&=-25),t&&1!=t)w=8==t||16==t?function(e,t,r){var i=La(e);return function o(){for(var s=arguments.length,l=n(s),c=s,u=ai(o);c--;)l[c]=arguments[c];var d=s<3&&l[0]!==u&&l[s-1]!==u?[]:or(l,u);return(s-=d.length)<r?Ha(e,t,Da,o.placeholder,a,l,d,a,a,r-s):Et(this&&this!==dt&&this instanceof o?i:e,this,l)}}(e,t,m):t!=l&&33!=t||u.length?Da.apply(a,v):function(e,t,r,a){var i=1&t,o=La(e);return function t(){for(var s=-1,l=arguments.length,c=-1,u=a.length,d=n(u+l),p=this&&this!==dt&&this instanceof t?o:e;++c<u;)d[c]=a[c];for(;l--;)d[c++]=arguments[++s];return Et(p,i?r:this,d)}}(e,t,r,o);else var w=function(e,t,r){var n=1&t,a=La(e);return function t(){return(this&&this!==dt&&this instanceof t?a:e).apply(n?r:this,arguments)}}(e,t,r);return Pi((b?Xn:Ci)(w,v),e,t)}function Ya(e,t,r,n){return e===a||Mo(e,Te[r])&&!Oe.call(n,r)?t:e}function Ka(e,t,r,n,i,o){return Qo(e)&&Qo(t)&&(o.set(t,e),Mn(e,t,a,Ka,o),o.delete(t)),e}function Xa(e){return ns(e)?a:e}function Ja(e,t,r,n,i,o){var s=1&r,l=e.length,c=t.length;if(l!=c&&!(s&&c>l))return!1;var u=o.get(e),d=o.get(t);if(u&&d)return u==t&&d==e;var p=-1,m=!0,f=2&r?new $r:a;for(o.set(e,t),o.set(t,e);++p<l;){var g=e[p],h=t[p];if(n)var y=s?n(h,g,p,t,e,o):n(g,h,p,e,t,o);if(y!==a){if(y)continue;m=!1;break}if(f){if(!Bt(t,(function(e,t){if(!Xt(f,t)&&(g===e||i(g,e,r,n,o)))return f.push(t)}))){m=!1;break}}else if(g!==h&&!i(g,h,r,n,o)){m=!1;break}}return o.delete(e),o.delete(t),m}function Qa(e){return Ai(Ei(e,a,Ui),e+"")}function ei(e){return _n(e,Ts,ci)}function ti(e){return _n(e,Ns,ui)}var ri=Rr?function(e){return Rr.get(e)}:sl;function ni(e){for(var t=e.name+"",r=Ar[t],n=Oe.call(Ar,t)?r.length:0;n--;){var a=r[n],i=a.func;if(null==i||i==e)return a.name}return t}function ai(e){return(Oe.call(Dr,"placeholder")?Dr:e).placeholder}function ii(){var e=Dr.iteratee||nl;return e=e===nl?On:e,arguments.length?e(arguments[0],arguments[1]):e}function oi(e,t){var r,n,a=e.__data__;return("string"==(n=typeof(r=t))||"number"==n||"symbol"==n||"boolean"==n?"__proto__"!==r:null===r)?a["string"==typeof t?"string":"hash"]:a.map}function si(e){for(var t=Ts(e),r=t.length;r--;){var n=t[r],a=e[n];t[r]=[n,a,xi(a)]}return t}function li(e,t){var r=function(e,t){return null==e?a:e[t]}(e,t);return In(r)?r:a}var ci=gt?function(e){return null==e?[]:(e=ke(e),At(gt(e),(function(t){return Ze.call(e,t)})))}:fl,ui=gt?function(e){for(var t=[];e;)It(t,ci(e)),e=He(e);return t}:fl,di=En;function pi(e,t,r){for(var n=-1,a=(t=ha(t,e)).length,i=!1;++n<a;){var o=Bi(t[n]);if(!(i=null!=e&&r(e,o)))break;e=e[o]}return i||++n!=a?i:!!(a=null==e?0:e.length)&&Jo(a)&&gi(o,a)&&(Uo(e)||Wo(e))}function mi(e){return"function"!=typeof e.constructor||wi(e)?{}:Fr(He(e))}function fi(e){return Uo(e)||Wo(e)||!!(qe&&e&&e[qe])}function gi(e,t){var r=typeof e;return!!(t=null==t?d:t)&&("number"==r||"symbol"!=r&&ye.test(e))&&e>-1&&e%1==0&&e<t}function hi(e,t,r){if(!Qo(r))return!1;var n=typeof t;return!!("number"==n?$o(r)&&gi(t,r.length):"string"==n&&t in r)&&Mo(r[t],e)}function yi(e,t){if(Uo(e))return!1;var r=typeof e;return!("number"!=r&&"symbol"!=r&&"boolean"!=r&&null!=e&&!ss(e))||Q.test(e)||!J.test(e)||null!=t&&e in ke(t)}function bi(e){var t=ni(e),r=Dr[t];if("function"!=typeof r||!(t in Vr.prototype))return!1;if(e===r)return!0;var n=ri(r);return!!n&&e===n[0]}(xr&&di(new xr(new ArrayBuffer(1)))!=I||_r&&di(new _r)!=_||Er&&di(Er.resolve())!=S||kr&&di(new kr)!=R||Sr&&di(new Sr)!=T)&&(di=function(e){var t=En(e),r=t==k?e.constructor:a,n=r?ji(r):"";if(n)switch(n){case Pr:return I;case Tr:return _;case Nr:return S;case Ir:return R;case Or:return T}return t});var vi=Ne?Ko:gl;function wi(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||Te)}function xi(e){return e==e&&!Qo(e)}function _i(e,t){return function(r){return null!=r&&r[e]===t&&(t!==a||e in ke(r))}}function Ei(e,t,r){return t=gr(t===a?e.length-1:t,0),function(){for(var a=arguments,i=-1,o=gr(a.length-t,0),s=n(o);++i<o;)s[i]=a[t+i];i=-1;for(var l=n(t+1);++i<t;)l[i]=a[i];return l[t]=r(s),Et(e,this,l)}}function ki(e,t){return t.length<2?e:xn(e,ea(t,0,-1))}function Si(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]}var Ci=Ti(Xn),Ri=ut||function(e,t){return dt.setTimeout(e,t)},Ai=Ti(Jn);function Pi(e,t,r){var n=t+"";return Ai(e,function(e,t){var r=t.length;if(!r)return e;var n=r-1;return t[n]=(r>1?"& ":"")+t[n],t=t.join(r>2?", ":" "),e.replace(ie,"{\n/* [wrapped with "+t+"] */\n")}(n,function(e,t){return St(f,(function(r){var n="_."+r[0];t&r[1]&&!Pt(e,n)&&e.push(n)})),e.sort()}(function(e){var t=e.match(oe);return t?t[1].split(se):[]}(n),r)))}function Ti(e){var t=0,r=0;return function(){var n=yr(),i=16-(n-r);if(r=n,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(a,arguments)}}function Ni(e,t){var r=-1,n=e.length,i=n-1;for(t=t===a?n:t;++r<t;){var o=$n(r,i),s=e[o];e[o]=e[r],e[r]=s}return e.length=t,e}var Ii,Oi,Li=(Ii=Oo((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(ee,(function(e,r,n,a){t.push(n?a.replace(ue,"$1"):r||e)})),t}),(function(e){return 500===Oi.size&&Oi.clear(),e})),Oi=Ii.cache,Ii);function Bi(e){if("string"==typeof e||ss(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function ji(e){if(null!=e){try{return Ie.call(e)}catch(e){}try{return e+""}catch(e){}}return""}function Di(e){if(e instanceof Vr)return e.clone();var t=new zr(e.__wrapped__,e.__chain__);return t.__actions__=Ca(e.__actions__),t.__index__=e.__index__,t.__values__=e.__values__,t}var Fi=Gn((function(e,t){return Zo(e)?cn(e,gn(t,1,Zo,!0)):[]})),Mi=Gn((function(e,t){var r=qi(t);return Zo(r)&&(r=a),Zo(e)?cn(e,gn(t,1,Zo,!0),ii(r,2)):[]})),zi=Gn((function(e,t){var r=qi(t);return Zo(r)&&(r=a),Zo(e)?cn(e,gn(t,1,Zo,!0),a,r):[]}));function Vi(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var a=null==r?0:ms(r);return a<0&&(a=gr(n+a,0)),Ft(e,ii(t,3),a)}function Wi(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var i=n-1;return r!==a&&(i=ms(r),i=r<0?gr(n+i,0):hr(i,n-1)),Ft(e,ii(t,3),i,!0)}function Ui(e){return null!=e&&e.length?gn(e,1):[]}function Hi(e){return e&&e.length?e[0]:a}var $i=Gn((function(e){var t=Nt(e,fa);return t.length&&t[0]===e[0]?Rn(t):[]})),Zi=Gn((function(e){var t=qi(e),r=Nt(e,fa);return t===qi(r)?t=a:r.pop(),r.length&&r[0]===e[0]?Rn(r,ii(t,2)):[]})),Gi=Gn((function(e){var t=qi(e),r=Nt(e,fa);return(t="function"==typeof t?t:a)&&r.pop(),r.length&&r[0]===e[0]?Rn(r,a,t):[]}));function qi(e){var t=null==e?0:e.length;return t?e[t-1]:a}var Yi=Gn(Ki);function Ki(e,t){return e&&e.length&&t&&t.length?Un(e,t):e}var Xi=Qa((function(e,t){var r=null==e?0:e.length,n=nn(e,t);return Hn(e,Nt(t,(function(e){return gi(e,r)?+e:e})).sort(Ea)),n}));function Ji(e){return null==e?e:wr.call(e)}var Qi=Gn((function(e){return sa(gn(e,1,Zo,!0))})),eo=Gn((function(e){var t=qi(e);return Zo(t)&&(t=a),sa(gn(e,1,Zo,!0),ii(t,2))})),to=Gn((function(e){var t=qi(e);return t="function"==typeof t?t:a,sa(gn(e,1,Zo,!0),a,t)}));function ro(e){if(!e||!e.length)return[];var t=0;return e=At(e,(function(e){if(Zo(e))return t=gr(e.length,t),!0})),Gt(t,(function(t){return Nt(e,Ut(t))}))}function no(e,t){if(!e||!e.length)return[];var r=ro(e);return null==t?r:Nt(r,(function(e){return Et(t,a,e)}))}var ao=Gn((function(e,t){return Zo(e)?cn(e,t):[]})),io=Gn((function(e){return pa(At(e,Zo))})),oo=Gn((function(e){var t=qi(e);return Zo(t)&&(t=a),pa(At(e,Zo),ii(t,2))})),so=Gn((function(e){var t=qi(e);return t="function"==typeof t?t:a,pa(At(e,Zo),a,t)})),lo=Gn(ro),co=Gn((function(e){var t=e.length,r=t>1?e[t-1]:a;return r="function"==typeof r?(e.pop(),r):a,no(e,r)}));function uo(e){var t=Dr(e);return t.__chain__=!0,t}function po(e,t){return t(e)}var mo=Qa((function(e){var t=e.length,r=t?e[0]:0,n=this.__wrapped__,i=function(t){return nn(t,e)};return!(t>1||this.__actions__.length)&&n instanceof Vr&&gi(r)?((n=n.slice(r,+r+(t?1:0))).__actions__.push({func:po,args:[i],thisArg:a}),new zr(n,this.__chain__).thru((function(e){return t&&!e.length&&e.push(a),e}))):this.thru(i)})),fo=Aa((function(e,t,r){Oe.call(e,r)?++e[r]:rn(e,r,1)})),go=Ba(Vi),ho=Ba(Wi);function yo(e,t){return(Uo(e)?St:un)(e,ii(t,3))}function bo(e,t){return(Uo(e)?Ct:dn)(e,ii(t,3))}var vo=Aa((function(e,t,r){Oe.call(e,r)?e[r].push(t):rn(e,r,[t])})),wo=Gn((function(e,t,r){var a=-1,i="function"==typeof t,o=$o(e)?n(e.length):[];return un(e,(function(e){o[++a]=i?Et(t,e,r):An(e,t,r)})),o})),xo=Aa((function(e,t,r){rn(e,r,t)}));function _o(e,t){return(Uo(e)?Nt:jn)(e,ii(t,3))}var Eo=Aa((function(e,t,r){e[r?0:1].push(t)}),(function(){return[[],[]]})),ko=Gn((function(e,t){if(null==e)return[];var r=t.length;return r>1&&hi(e,t[0],t[1])?t=[]:r>2&&hi(t[0],t[1],t[2])&&(t=[t[0]]),Vn(e,gn(t,1),[])})),So=ct||function(){return dt.Date.now()};function Co(e,t,r){return t=r?a:t,t=e&&null==t?e.length:t,qa(e,c,a,a,a,a,t)}function Ro(e,t){var r;if("function"!=typeof t)throw new Re(i);return e=ms(e),function(){return--e>0&&(r=t.apply(this,arguments)),e<=1&&(t=a),r}}var Ao=Gn((function(e,t,r){var n=1;if(r.length){var a=or(r,ai(Ao));n|=l}return qa(e,n,t,r,a)})),Po=Gn((function(e,t,r){var n=3;if(r.length){var a=or(r,ai(Po));n|=l}return qa(t,n,e,r,a)}));function To(e,t,r){var n,o,s,l,c,u,d=0,p=!1,m=!1,f=!0;if("function"!=typeof e)throw new Re(i);function g(t){var r=n,i=o;return n=o=a,d=t,l=e.apply(i,r)}function h(e){var r=e-u;return u===a||r>=t||r<0||m&&e-d>=s}function y(){var e=So();if(h(e))return b(e);c=Ri(y,function(e){var r=t-(e-u);return m?hr(r,s-(e-d)):r}(e))}function b(e){return c=a,f&&n?g(e):(n=o=a,l)}function v(){var e=So(),r=h(e);if(n=arguments,o=this,u=e,r){if(c===a)return function(e){return d=e,c=Ri(y,t),p?g(e):l}(u);if(m)return va(c),c=Ri(y,t),g(u)}return c===a&&(c=Ri(y,t)),l}return t=gs(t)||0,Qo(r)&&(p=!!r.leading,s=(m="maxWait"in r)?gr(gs(r.maxWait)||0,t):s,f="trailing"in r?!!r.trailing:f),v.cancel=function(){c!==a&&va(c),d=0,n=u=o=c=a},v.flush=function(){return c===a?l:b(So())},v}var No=Gn((function(e,t){return ln(e,1,t)})),Io=Gn((function(e,t,r){return ln(e,gs(t)||0,r)}));function Oo(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new Re(i);var r=function(){var n=arguments,a=t?t.apply(this,n):n[0],i=r.cache;if(i.has(a))return i.get(a);var o=e.apply(this,n);return r.cache=i.set(a,o)||i,o};return r.cache=new(Oo.Cache||Hr),r}function Lo(e){if("function"!=typeof e)throw new Re(i);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Oo.Cache=Hr;var Bo=ya((function(e,t){var r=(t=1==t.length&&Uo(t[0])?Nt(t[0],Yt(ii())):Nt(gn(t,1),Yt(ii()))).length;return Gn((function(n){for(var a=-1,i=hr(n.length,r);++a<i;)n[a]=t[a].call(this,n[a]);return Et(e,this,n)}))})),jo=Gn((function(e,t){var r=or(t,ai(jo));return qa(e,l,a,t,r)})),Do=Gn((function(e,t){var r=or(t,ai(Do));return qa(e,64,a,t,r)})),Fo=Qa((function(e,t){return qa(e,256,a,a,a,t)}));function Mo(e,t){return e===t||e!=e&&t!=t}var zo=Ua(kn),Vo=Ua((function(e,t){return e>=t})),Wo=Pn(function(){return arguments}())?Pn:function(e){return es(e)&&Oe.call(e,"callee")&&!Ze.call(e,"callee")},Uo=n.isArray,Ho=yt?Yt(yt):function(e){return es(e)&&En(e)==N};function $o(e){return null!=e&&Jo(e.length)&&!Ko(e)}function Zo(e){return es(e)&&$o(e)}var Go=ht||gl,qo=bt?Yt(bt):function(e){return es(e)&&En(e)==b};function Yo(e){if(!es(e))return!1;var t=En(e);return t==v||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!ns(e)}function Ko(e){if(!Qo(e))return!1;var t=En(e);return t==w||t==x||"[object AsyncFunction]"==t||"[object Proxy]"==t}function Xo(e){return"number"==typeof e&&e==ms(e)}function Jo(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=d}function Qo(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function es(e){return null!=e&&"object"==typeof e}var ts=vt?Yt(vt):function(e){return es(e)&&di(e)==_};function rs(e){return"number"==typeof e||es(e)&&En(e)==E}function ns(e){if(!es(e)||En(e)!=k)return!1;var t=He(e);if(null===t)return!0;var r=Oe.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&Ie.call(r)==De}var as=wt?Yt(wt):function(e){return es(e)&&En(e)==C},is=xt?Yt(xt):function(e){return es(e)&&di(e)==R};function os(e){return"string"==typeof e||!Uo(e)&&es(e)&&En(e)==A}function ss(e){return"symbol"==typeof e||es(e)&&En(e)==P}var ls=_t?Yt(_t):function(e){return es(e)&&Jo(e.length)&&!!at[En(e)]},cs=Ua(Bn),us=Ua((function(e,t){return e<=t}));function ds(e){if(!e)return[];if($o(e))return os(e)?ur(e):Ca(e);if(Ye&&e[Ye])return function(e){for(var t,r=[];!(t=e.next()).done;)r.push(t.value);return r}(e[Ye]());var t=di(e);return(t==_?ar:t==R?sr:Ms)(e)}function ps(e){return e?(e=gs(e))===u||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function ms(e){var t=ps(e),r=t%1;return t==t?r?t-r:t:0}function fs(e){return e?an(ms(e),0,m):0}function gs(e){if("number"==typeof e)return e;if(ss(e))return p;if(Qo(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Qo(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=qt(e);var r=fe.test(e);return r||he.test(e)?lt(e.slice(2),r?2:8):me.test(e)?p:+e}function hs(e){return Ra(e,Ns(e))}function ys(e){return null==e?"":oa(e)}var bs=Pa((function(e,t){if(wi(t)||$o(t))Ra(t,Ts(t),e);else for(var r in t)Oe.call(t,r)&&Jr(e,r,t[r])})),vs=Pa((function(e,t){Ra(t,Ns(t),e)})),ws=Pa((function(e,t,r,n){Ra(t,Ns(t),e,n)})),xs=Pa((function(e,t,r,n){Ra(t,Ts(t),e,n)})),_s=Qa(nn),Es=Gn((function(e,t){e=ke(e);var r=-1,n=t.length,i=n>2?t[2]:a;for(i&&hi(t[0],t[1],i)&&(n=1);++r<n;)for(var o=t[r],s=Ns(o),l=-1,c=s.length;++l<c;){var u=s[l],d=e[u];(d===a||Mo(d,Te[u])&&!Oe.call(e,u))&&(e[u]=o[u])}return e})),ks=Gn((function(e){return e.push(a,Ka),Et(Os,a,e)}));function Ss(e,t,r){var n=null==e?a:xn(e,t);return n===a?r:n}function Cs(e,t){return null!=e&&pi(e,t,Cn)}var Rs=Fa((function(e,t,r){null!=t&&"function"!=typeof t.toString&&(t=je.call(t)),e[t]=r}),Qs(rl)),As=Fa((function(e,t,r){null!=t&&"function"!=typeof t.toString&&(t=je.call(t)),Oe.call(e,t)?e[t].push(r):e[t]=[r]}),ii),Ps=Gn(An);function Ts(e){return $o(e)?Gr(e):Ln(e)}function Ns(e){return $o(e)?Gr(e,!0):function(e){if(!Qo(e))return function(e){var t=[];if(null!=e)for(var r in ke(e))t.push(r);return t}(e);var t=wi(e),r=[];for(var n in e)("constructor"!=n||!t&&Oe.call(e,n))&&r.push(n);return r}(e)}var Is=Pa((function(e,t,r){Mn(e,t,r)})),Os=Pa((function(e,t,r,n){Mn(e,t,r,n)})),Ls=Qa((function(e,t){var r={};if(null==e)return r;var n=!1;t=Nt(t,(function(t){return t=ha(t,e),n||(n=t.length>1),t})),Ra(e,ti(e),r),n&&(r=on(r,7,Xa));for(var a=t.length;a--;)la(r,t[a]);return r})),Bs=Qa((function(e,t){return null==e?{}:function(e,t){return Wn(e,t,(function(t,r){return Cs(e,r)}))}(e,t)}));function js(e,t){if(null==e)return{};var r=Nt(ti(e),(function(e){return[e]}));return t=ii(t),Wn(e,r,(function(e,r){return t(e,r[0])}))}var Ds=Ga(Ts),Fs=Ga(Ns);function Ms(e){return null==e?[]:Kt(e,Ts(e))}var zs=Oa((function(e,t,r){return t=t.toLowerCase(),e+(r?Vs(t):t)}));function Vs(e){return Ys(ys(e).toLowerCase())}function Ws(e){return(e=ys(e))&&e.replace(be,er).replace(Xe,"")}var Us=Oa((function(e,t,r){return e+(r?"-":"")+t.toLowerCase()})),Hs=Oa((function(e,t,r){return e+(r?" ":"")+t.toLowerCase()})),$s=Ia("toLowerCase"),Zs=Oa((function(e,t,r){return e+(r?"_":"")+t.toLowerCase()})),Gs=Oa((function(e,t,r){return e+(r?" ":"")+Ys(t)})),qs=Oa((function(e,t,r){return e+(r?" ":"")+t.toUpperCase()})),Ys=Ia("toUpperCase");function Ks(e,t,r){return e=ys(e),(t=r?a:t)===a?function(e){return tt.test(e)}(e)?function(e){return e.match(Qe)||[]}(e):function(e){return e.match(le)||[]}(e):e.match(t)||[]}var Xs=Gn((function(e,t){try{return Et(e,a,t)}catch(e){return Yo(e)?e:new xe(e)}})),Js=Qa((function(e,t){return St(t,(function(t){t=Bi(t),rn(e,t,Ao(e[t],e))})),e}));function Qs(e){return function(){return e}}var el=ja(),tl=ja(!0);function rl(e){return e}function nl(e){return On("function"==typeof e?e:on(e,1))}var al=Gn((function(e,t){return function(r){return An(r,e,t)}})),il=Gn((function(e,t){return function(r){return An(e,r,t)}}));function ol(e,t,r){var n=Ts(t),a=wn(t,n);null!=r||Qo(t)&&(a.length||!n.length)||(r=t,t=e,e=this,a=wn(t,Ts(t)));var i=!(Qo(r)&&"chain"in r&&!r.chain),o=Ko(e);return St(a,(function(r){var n=t[r];e[r]=n,o&&(e.prototype[r]=function(){var t=this.__chain__;if(i||t){var r=e(this.__wrapped__);return(r.__actions__=Ca(this.__actions__)).push({func:n,args:arguments,thisArg:e}),r.__chain__=t,r}return n.apply(e,It([this.value()],arguments))})})),e}function sl(){}var ll=za(Nt),cl=za(Rt),ul=za(Bt);function dl(e){return yi(e)?Ut(Bi(e)):function(e){return function(t){return xn(t,e)}}(e)}var pl=Wa(),ml=Wa(!0);function fl(){return[]}function gl(){return!1}var hl,yl=Ma((function(e,t){return e+t}),0),bl=$a("ceil"),vl=Ma((function(e,t){return e/t}),1),wl=$a("floor"),xl=Ma((function(e,t){return e*t}),1),_l=$a("round"),El=Ma((function(e,t){return e-t}),0);return Dr.after=function(e,t){if("function"!=typeof t)throw new Re(i);return e=ms(e),function(){if(--e<1)return t.apply(this,arguments)}},Dr.ary=Co,Dr.assign=bs,Dr.assignIn=vs,Dr.assignInWith=ws,Dr.assignWith=xs,Dr.at=_s,Dr.before=Ro,Dr.bind=Ao,Dr.bindAll=Js,Dr.bindKey=Po,Dr.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Uo(e)?e:[e]},Dr.chain=uo,Dr.chunk=function(e,t,r){t=(r?hi(e,t,r):t===a)?1:gr(ms(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,s=0,l=n(pt(i/t));o<i;)l[s++]=ea(e,o,o+=t);return l},Dr.compact=function(e){for(var t=-1,r=null==e?0:e.length,n=0,a=[];++t<r;){var i=e[t];i&&(a[n++]=i)}return a},Dr.concat=function(){var e=arguments.length;if(!e)return[];for(var t=n(e-1),r=arguments[0],a=e;a--;)t[a-1]=arguments[a];return It(Uo(r)?Ca(r):[r],gn(t,1))},Dr.cond=function(e){var t=null==e?0:e.length,r=ii();return e=t?Nt(e,(function(e){if("function"!=typeof e[1])throw new Re(i);return[r(e[0]),e[1]]})):[],Gn((function(r){for(var n=-1;++n<t;){var a=e[n];if(Et(a[0],this,r))return Et(a[1],this,r)}}))},Dr.conforms=function(e){return function(e){var t=Ts(e);return function(r){return sn(r,e,t)}}(on(e,1))},Dr.constant=Qs,Dr.countBy=fo,Dr.create=function(e,t){var r=Fr(e);return null==t?r:tn(r,t)},Dr.curry=function e(t,r,n){var i=qa(t,8,a,a,a,a,a,r=n?a:r);return i.placeholder=e.placeholder,i},Dr.curryRight=function e(t,r,n){var i=qa(t,16,a,a,a,a,a,r=n?a:r);return i.placeholder=e.placeholder,i},Dr.debounce=To,Dr.defaults=Es,Dr.defaultsDeep=ks,Dr.defer=No,Dr.delay=Io,Dr.difference=Fi,Dr.differenceBy=Mi,Dr.differenceWith=zi,Dr.drop=function(e,t,r){var n=null==e?0:e.length;return n?ea(e,(t=r||t===a?1:ms(t))<0?0:t,n):[]},Dr.dropRight=function(e,t,r){var n=null==e?0:e.length;return n?ea(e,0,(t=n-(t=r||t===a?1:ms(t)))<0?0:t):[]},Dr.dropRightWhile=function(e,t){return e&&e.length?ua(e,ii(t,3),!0,!0):[]},Dr.dropWhile=function(e,t){return e&&e.length?ua(e,ii(t,3),!0):[]},Dr.fill=function(e,t,r,n){var i=null==e?0:e.length;return i?(r&&"number"!=typeof r&&hi(e,t,r)&&(r=0,n=i),function(e,t,r,n){var i=e.length;for((r=ms(r))<0&&(r=-r>i?0:i+r),(n=n===a||n>i?i:ms(n))<0&&(n+=i),n=r>n?0:fs(n);r<n;)e[r++]=t;return e}(e,t,r,n)):[]},Dr.filter=function(e,t){return(Uo(e)?At:fn)(e,ii(t,3))},Dr.flatMap=function(e,t){return gn(_o(e,t),1)},Dr.flatMapDeep=function(e,t){return gn(_o(e,t),u)},Dr.flatMapDepth=function(e,t,r){return r=r===a?1:ms(r),gn(_o(e,t),r)},Dr.flatten=Ui,Dr.flattenDeep=function(e){return null!=e&&e.length?gn(e,u):[]},Dr.flattenDepth=function(e,t){return null!=e&&e.length?gn(e,t=t===a?1:ms(t)):[]},Dr.flip=function(e){return qa(e,512)},Dr.flow=el,Dr.flowRight=tl,Dr.fromPairs=function(e){for(var t=-1,r=null==e?0:e.length,n={};++t<r;){var a=e[t];n[a[0]]=a[1]}return n},Dr.functions=function(e){return null==e?[]:wn(e,Ts(e))},Dr.functionsIn=function(e){return null==e?[]:wn(e,Ns(e))},Dr.groupBy=vo,Dr.initial=function(e){return null!=e&&e.length?ea(e,0,-1):[]},Dr.intersection=$i,Dr.intersectionBy=Zi,Dr.intersectionWith=Gi,Dr.invert=Rs,Dr.invertBy=As,Dr.invokeMap=wo,Dr.iteratee=nl,Dr.keyBy=xo,Dr.keys=Ts,Dr.keysIn=Ns,Dr.map=_o,Dr.mapKeys=function(e,t){var r={};return t=ii(t,3),bn(e,(function(e,n,a){rn(r,t(e,n,a),e)})),r},Dr.mapValues=function(e,t){var r={};return t=ii(t,3),bn(e,(function(e,n,a){rn(r,n,t(e,n,a))})),r},Dr.matches=function(e){return Dn(on(e,1))},Dr.matchesProperty=function(e,t){return Fn(e,on(t,1))},Dr.memoize=Oo,Dr.merge=Is,Dr.mergeWith=Os,Dr.method=al,Dr.methodOf=il,Dr.mixin=ol,Dr.negate=Lo,Dr.nthArg=function(e){return e=ms(e),Gn((function(t){return zn(t,e)}))},Dr.omit=Ls,Dr.omitBy=function(e,t){return js(e,Lo(ii(t)))},Dr.once=function(e){return Ro(2,e)},Dr.orderBy=function(e,t,r,n){return null==e?[]:(Uo(t)||(t=null==t?[]:[t]),Uo(r=n?a:r)||(r=null==r?[]:[r]),Vn(e,t,r))},Dr.over=ll,Dr.overArgs=Bo,Dr.overEvery=cl,Dr.overSome=ul,Dr.partial=jo,Dr.partialRight=Do,Dr.partition=Eo,Dr.pick=Bs,Dr.pickBy=js,Dr.property=dl,Dr.propertyOf=function(e){return function(t){return null==e?a:xn(e,t)}},Dr.pull=Yi,Dr.pullAll=Ki,Dr.pullAllBy=function(e,t,r){return e&&e.length&&t&&t.length?Un(e,t,ii(r,2)):e},Dr.pullAllWith=function(e,t,r){return e&&e.length&&t&&t.length?Un(e,t,a,r):e},Dr.pullAt=Xi,Dr.range=pl,Dr.rangeRight=ml,Dr.rearg=Fo,Dr.reject=function(e,t){return(Uo(e)?At:fn)(e,Lo(ii(t,3)))},Dr.remove=function(e,t){var r=[];if(!e||!e.length)return r;var n=-1,a=[],i=e.length;for(t=ii(t,3);++n<i;){var o=e[n];t(o,n,e)&&(r.push(o),a.push(n))}return Hn(e,a),r},Dr.rest=function(e,t){if("function"!=typeof e)throw new Re(i);return Gn(e,t=t===a?t:ms(t))},Dr.reverse=Ji,Dr.sampleSize=function(e,t,r){return t=(r?hi(e,t,r):t===a)?1:ms(t),(Uo(e)?Yr:Yn)(e,t)},Dr.set=function(e,t,r){return null==e?e:Kn(e,t,r)},Dr.setWith=function(e,t,r,n){return n="function"==typeof n?n:a,null==e?e:Kn(e,t,r,n)},Dr.shuffle=function(e){return(Uo(e)?Kr:Qn)(e)},Dr.slice=function(e,t,r){var n=null==e?0:e.length;return n?(r&&"number"!=typeof r&&hi(e,t,r)?(t=0,r=n):(t=null==t?0:ms(t),r=r===a?n:ms(r)),ea(e,t,r)):[]},Dr.sortBy=ko,Dr.sortedUniq=function(e){return e&&e.length?aa(e):[]},Dr.sortedUniqBy=function(e,t){return e&&e.length?aa(e,ii(t,2)):[]},Dr.split=function(e,t,r){return r&&"number"!=typeof r&&hi(e,t,r)&&(t=r=a),(r=r===a?m:r>>>0)?(e=ys(e))&&("string"==typeof t||null!=t&&!as(t))&&!(t=oa(t))&&nr(e)?ba(ur(e),0,r):e.split(t,r):[]},Dr.spread=function(e,t){if("function"!=typeof e)throw new Re(i);return t=null==t?0:gr(ms(t),0),Gn((function(r){var n=r[t],a=ba(r,0,t);return n&&It(a,n),Et(e,this,a)}))},Dr.tail=function(e){var t=null==e?0:e.length;return t?ea(e,1,t):[]},Dr.take=function(e,t,r){return e&&e.length?ea(e,0,(t=r||t===a?1:ms(t))<0?0:t):[]},Dr.takeRight=function(e,t,r){var n=null==e?0:e.length;return n?ea(e,(t=n-(t=r||t===a?1:ms(t)))<0?0:t,n):[]},Dr.takeRightWhile=function(e,t){return e&&e.length?ua(e,ii(t,3),!1,!0):[]},Dr.takeWhile=function(e,t){return e&&e.length?ua(e,ii(t,3)):[]},Dr.tap=function(e,t){return t(e),e},Dr.throttle=function(e,t,r){var n=!0,a=!0;if("function"!=typeof e)throw new Re(i);return Qo(r)&&(n="leading"in r?!!r.leading:n,a="trailing"in r?!!r.trailing:a),To(e,t,{leading:n,maxWait:t,trailing:a})},Dr.thru=po,Dr.toArray=ds,Dr.toPairs=Ds,Dr.toPairsIn=Fs,Dr.toPath=function(e){return Uo(e)?Nt(e,Bi):ss(e)?[e]:Ca(Li(ys(e)))},Dr.toPlainObject=hs,Dr.transform=function(e,t,r){var n=Uo(e),a=n||Go(e)||ls(e);if(t=ii(t,4),null==r){var i=e&&e.constructor;r=a?n?new i:[]:Qo(e)&&Ko(i)?Fr(He(e)):{}}return(a?St:bn)(e,(function(e,n,a){return t(r,e,n,a)})),r},Dr.unary=function(e){return Co(e,1)},Dr.union=Qi,Dr.unionBy=eo,Dr.unionWith=to,Dr.uniq=function(e){return e&&e.length?sa(e):[]},Dr.uniqBy=function(e,t){return e&&e.length?sa(e,ii(t,2)):[]},Dr.uniqWith=function(e,t){return t="function"==typeof t?t:a,e&&e.length?sa(e,a,t):[]},Dr.unset=function(e,t){return null==e||la(e,t)},Dr.unzip=ro,Dr.unzipWith=no,Dr.update=function(e,t,r){return null==e?e:ca(e,t,ga(r))},Dr.updateWith=function(e,t,r,n){return n="function"==typeof n?n:a,null==e?e:ca(e,t,ga(r),n)},Dr.values=Ms,Dr.valuesIn=function(e){return null==e?[]:Kt(e,Ns(e))},Dr.without=ao,Dr.words=Ks,Dr.wrap=function(e,t){return jo(ga(t),e)},Dr.xor=io,Dr.xorBy=oo,Dr.xorWith=so,Dr.zip=lo,Dr.zipObject=function(e,t){return ma(e||[],t||[],Jr)},Dr.zipObjectDeep=function(e,t){return ma(e||[],t||[],Kn)},Dr.zipWith=co,Dr.entries=Ds,Dr.entriesIn=Fs,Dr.extend=vs,Dr.extendWith=ws,ol(Dr,Dr),Dr.add=yl,Dr.attempt=Xs,Dr.camelCase=zs,Dr.capitalize=Vs,Dr.ceil=bl,Dr.clamp=function(e,t,r){return r===a&&(r=t,t=a),r!==a&&(r=(r=gs(r))==r?r:0),t!==a&&(t=(t=gs(t))==t?t:0),an(gs(e),t,r)},Dr.clone=function(e){return on(e,4)},Dr.cloneDeep=function(e){return on(e,5)},Dr.cloneDeepWith=function(e,t){return on(e,5,t="function"==typeof t?t:a)},Dr.cloneWith=function(e,t){return on(e,4,t="function"==typeof t?t:a)},Dr.conformsTo=function(e,t){return null==t||sn(e,t,Ts(t))},Dr.deburr=Ws,Dr.defaultTo=function(e,t){return null==e||e!=e?t:e},Dr.divide=vl,Dr.endsWith=function(e,t,r){e=ys(e),t=oa(t);var n=e.length,i=r=r===a?n:an(ms(r),0,n);return(r-=t.length)>=0&&e.slice(r,i)==t},Dr.eq=Mo,Dr.escape=function(e){return(e=ys(e))&&q.test(e)?e.replace(Z,tr):e},Dr.escapeRegExp=function(e){return(e=ys(e))&&re.test(e)?e.replace(te,"\\$&"):e},Dr.every=function(e,t,r){var n=Uo(e)?Rt:pn;return r&&hi(e,t,r)&&(t=a),n(e,ii(t,3))},Dr.find=go,Dr.findIndex=Vi,Dr.findKey=function(e,t){return Dt(e,ii(t,3),bn)},Dr.findLast=ho,Dr.findLastIndex=Wi,Dr.findLastKey=function(e,t){return Dt(e,ii(t,3),vn)},Dr.floor=wl,Dr.forEach=yo,Dr.forEachRight=bo,Dr.forIn=function(e,t){return null==e?e:hn(e,ii(t,3),Ns)},Dr.forInRight=function(e,t){return null==e?e:yn(e,ii(t,3),Ns)},Dr.forOwn=function(e,t){return e&&bn(e,ii(t,3))},Dr.forOwnRight=function(e,t){return e&&vn(e,ii(t,3))},Dr.get=Ss,Dr.gt=zo,Dr.gte=Vo,Dr.has=function(e,t){return null!=e&&pi(e,t,Sn)},Dr.hasIn=Cs,Dr.head=Hi,Dr.identity=rl,Dr.includes=function(e,t,r,n){e=$o(e)?e:Ms(e),r=r&&!n?ms(r):0;var a=e.length;return r<0&&(r=gr(a+r,0)),os(e)?r<=a&&e.indexOf(t,r)>-1:!!a&&Mt(e,t,r)>-1},Dr.indexOf=function(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var a=null==r?0:ms(r);return a<0&&(a=gr(n+a,0)),Mt(e,t,a)},Dr.inRange=function(e,t,r){return t=ps(t),r===a?(r=t,t=0):r=ps(r),function(e,t,r){return e>=hr(t,r)&&e<gr(t,r)}(e=gs(e),t,r)},Dr.invoke=Ps,Dr.isArguments=Wo,Dr.isArray=Uo,Dr.isArrayBuffer=Ho,Dr.isArrayLike=$o,Dr.isArrayLikeObject=Zo,Dr.isBoolean=function(e){return!0===e||!1===e||es(e)&&En(e)==y},Dr.isBuffer=Go,Dr.isDate=qo,Dr.isElement=function(e){return es(e)&&1===e.nodeType&&!ns(e)},Dr.isEmpty=function(e){if(null==e)return!0;if($o(e)&&(Uo(e)||"string"==typeof e||"function"==typeof e.splice||Go(e)||ls(e)||Wo(e)))return!e.length;var t=di(e);if(t==_||t==R)return!e.size;if(wi(e))return!Ln(e).length;for(var r in e)if(Oe.call(e,r))return!1;return!0},Dr.isEqual=function(e,t){return Tn(e,t)},Dr.isEqualWith=function(e,t,r){var n=(r="function"==typeof r?r:a)?r(e,t):a;return n===a?Tn(e,t,a,r):!!n},Dr.isError=Yo,Dr.isFinite=function(e){return"number"==typeof e&&jt(e)},Dr.isFunction=Ko,Dr.isInteger=Xo,Dr.isLength=Jo,Dr.isMap=ts,Dr.isMatch=function(e,t){return e===t||Nn(e,t,si(t))},Dr.isMatchWith=function(e,t,r){return r="function"==typeof r?r:a,Nn(e,t,si(t),r)},Dr.isNaN=function(e){return rs(e)&&e!=+e},Dr.isNative=function(e){if(vi(e))throw new xe("Unsupported core-js use. Try https://npms.io/search?q=ponyfill.");return In(e)},Dr.isNil=function(e){return null==e},Dr.isNull=function(e){return null===e},Dr.isNumber=rs,Dr.isObject=Qo,Dr.isObjectLike=es,Dr.isPlainObject=ns,Dr.isRegExp=as,Dr.isSafeInteger=function(e){return Xo(e)&&e>=-9007199254740991&&e<=d},Dr.isSet=is,Dr.isString=os,Dr.isSymbol=ss,Dr.isTypedArray=ls,Dr.isUndefined=function(e){return e===a},Dr.isWeakMap=function(e){return es(e)&&di(e)==T},Dr.isWeakSet=function(e){return es(e)&&"[object WeakSet]"==En(e)},Dr.join=function(e,t){return null==e?"":Ht.call(e,t)},Dr.kebabCase=Us,Dr.last=qi,Dr.lastIndexOf=function(e,t,r){var n=null==e?0:e.length;if(!n)return-1;var i=n;return r!==a&&(i=(i=ms(r))<0?gr(n+i,0):hr(i,n-1)),t==t?function(e,t,r){for(var n=r+1;n--;)if(e[n]===t)return n;return n}(e,t,i):Ft(e,Vt,i,!0)},Dr.lowerCase=Hs,Dr.lowerFirst=$s,Dr.lt=cs,Dr.lte=us,Dr.max=function(e){return e&&e.length?mn(e,rl,kn):a},Dr.maxBy=function(e,t){return e&&e.length?mn(e,ii(t,2),kn):a},Dr.mean=function(e){return Wt(e,rl)},Dr.meanBy=function(e,t){return Wt(e,ii(t,2))},Dr.min=function(e){return e&&e.length?mn(e,rl,Bn):a},Dr.minBy=function(e,t){return e&&e.length?mn(e,ii(t,2),Bn):a},Dr.stubArray=fl,Dr.stubFalse=gl,Dr.stubObject=function(){return{}},Dr.stubString=function(){return""},Dr.stubTrue=function(){return!0},Dr.multiply=xl,Dr.nth=function(e,t){return e&&e.length?zn(e,ms(t)):a},Dr.noConflict=function(){return dt._===this&&(dt._=Fe),this},Dr.noop=sl,Dr.now=So,Dr.pad=function(e,t,r){e=ys(e);var n=(t=ms(t))?cr(e):0;if(!t||n>=t)return e;var a=(t-n)/2;return Va(mt(a),r)+e+Va(pt(a),r)},Dr.padEnd=function(e,t,r){e=ys(e);var n=(t=ms(t))?cr(e):0;return t&&n<t?e+Va(t-n,r):e},Dr.padStart=function(e,t,r){e=ys(e);var n=(t=ms(t))?cr(e):0;return t&&n<t?Va(t-n,r)+e:e},Dr.parseInt=function(e,t,r){return r||null==t?t=0:t&&(t=+t),br(ys(e).replace(ne,""),t||0)},Dr.random=function(e,t,r){if(r&&"boolean"!=typeof r&&hi(e,t,r)&&(t=r=a),r===a&&("boolean"==typeof t?(r=t,t=a):"boolean"==typeof e&&(r=e,e=a)),e===a&&t===a?(e=0,t=1):(e=ps(e),t===a?(t=e,e=0):t=ps(t)),e>t){var n=e;e=t,t=n}if(r||e%1||t%1){var i=vr();return hr(e+i*(t-e+st("1e-"+((i+"").length-1))),t)}return $n(e,t)},Dr.reduce=function(e,t,r){var n=Uo(e)?Ot:$t,a=arguments.length<3;return n(e,ii(t,4),r,a,un)},Dr.reduceRight=function(e,t,r){var n=Uo(e)?Lt:$t,a=arguments.length<3;return n(e,ii(t,4),r,a,dn)},Dr.repeat=function(e,t,r){return t=(r?hi(e,t,r):t===a)?1:ms(t),Zn(ys(e),t)},Dr.replace=function(){var e=arguments,t=ys(e[0]);return e.length<3?t:t.replace(e[1],e[2])},Dr.result=function(e,t,r){var n=-1,i=(t=ha(t,e)).length;for(i||(i=1,e=a);++n<i;){var o=null==e?a:e[Bi(t[n])];o===a&&(n=i,o=r),e=Ko(o)?o.call(e):o}return e},Dr.round=_l,Dr.runInContext=e,Dr.sample=function(e){return(Uo(e)?qr:qn)(e)},Dr.size=function(e){if(null==e)return 0;if($o(e))return os(e)?cr(e):e.length;var t=di(e);return t==_||t==R?e.size:Ln(e).length},Dr.snakeCase=Zs,Dr.some=function(e,t,r){var n=Uo(e)?Bt:ta;return r&&hi(e,t,r)&&(t=a),n(e,ii(t,3))},Dr.sortedIndex=function(e,t){return ra(e,t)},Dr.sortedIndexBy=function(e,t,r){return na(e,t,ii(r,2))},Dr.sortedIndexOf=function(e,t){var r=null==e?0:e.length;if(r){var n=ra(e,t);if(n<r&&Mo(e[n],t))return n}return-1},Dr.sortedLastIndex=function(e,t){return ra(e,t,!0)},Dr.sortedLastIndexBy=function(e,t,r){return na(e,t,ii(r,2),!0)},Dr.sortedLastIndexOf=function(e,t){if(null!=e&&e.length){var r=ra(e,t,!0)-1;if(Mo(e[r],t))return r}return-1},Dr.startCase=Gs,Dr.startsWith=function(e,t,r){return e=ys(e),r=null==r?0:an(ms(r),0,e.length),t=oa(t),e.slice(r,r+t.length)==t},Dr.subtract=El,Dr.sum=function(e){return e&&e.length?Zt(e,rl):0},Dr.sumBy=function(e,t){return e&&e.length?Zt(e,ii(t,2)):0},Dr.template=function(e,t,r){var n=Dr.templateSettings;r&&hi(e,t,r)&&(t=a),e=ys(e),t=ws({},t,n,Ya);var i,o,s=ws({},t.imports,n.imports,Ya),l=Ts(s),c=Kt(s,l),u=0,d=t.interpolate||ve,p="__p += '",m=Se((t.escape||ve).source+"|"+d.source+"|"+(d===X?de:ve).source+"|"+(t.evaluate||ve).source+"|$","g"),f="//# sourceURL="+(Oe.call(t,"sourceURL")?(t.sourceURL+"").replace(/\s/g," "):"lodash.templateSources["+ ++nt+"]")+"\n";e.replace(m,(function(t,r,n,a,s,l){return n||(n=a),p+=e.slice(u,l).replace(we,rr),r&&(i=!0,p+="' +\n__e("+r+") +\n'"),s&&(o=!0,p+="';\n"+s+";\n__p += '"),n&&(p+="' +\n((__t = ("+n+")) == null ? '' : __t) +\n'"),u=l+t.length,t})),p+="';\n";var g=Oe.call(t,"variable")&&t.variable;if(g){if(ce.test(g))throw new xe("Invalid `variable` option passed into `_.template`")}else p="with (obj) {\n"+p+"\n}\n";p=(o?p.replace(W,""):p).replace(U,"$1").replace(H,"$1;"),p="function("+(g||"obj")+") {\n"+(g?"":"obj || (obj = {});\n")+"var __t, __p = ''"+(i?", __e = _.escape":"")+(o?", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n":";\n")+p+"return __p\n}";var h=Xs((function(){return _e(l,f+"return "+p).apply(a,c)}));if(h.source=p,Yo(h))throw h;return h},Dr.times=function(e,t){if((e=ms(e))<1||e>d)return[];var r=m,n=hr(e,m);t=ii(t),e-=m;for(var a=Gt(n,t);++r<e;)t(r);return a},Dr.toFinite=ps,Dr.toInteger=ms,Dr.toLength=fs,Dr.toLower=function(e){return ys(e).toLowerCase()},Dr.toNumber=gs,Dr.toSafeInteger=function(e){return e?an(ms(e),-9007199254740991,d):0===e?e:0},Dr.toString=ys,Dr.toUpper=function(e){return ys(e).toUpperCase()},Dr.trim=function(e,t,r){if((e=ys(e))&&(r||t===a))return qt(e);if(!e||!(t=oa(t)))return e;var n=ur(e),i=ur(t);return ba(n,Jt(n,i),Qt(n,i)+1).join("")},Dr.trimEnd=function(e,t,r){if((e=ys(e))&&(r||t===a))return e.slice(0,dr(e)+1);if(!e||!(t=oa(t)))return e;var n=ur(e);return ba(n,0,Qt(n,ur(t))+1).join("")},Dr.trimStart=function(e,t,r){if((e=ys(e))&&(r||t===a))return e.replace(ne,"");if(!e||!(t=oa(t)))return e;var n=ur(e);return ba(n,Jt(n,ur(t))).join("")},Dr.truncate=function(e,t){var r=30,n="...";if(Qo(t)){var i="separator"in t?t.separator:i;r="length"in t?ms(t.length):r,n="omission"in t?oa(t.omission):n}var o=(e=ys(e)).length;if(nr(e)){var s=ur(e);o=s.length}if(r>=o)return e;var l=r-cr(n);if(l<1)return n;var c=s?ba(s,0,l).join(""):e.slice(0,l);if(i===a)return c+n;if(s&&(l+=c.length-l),as(i)){if(e.slice(l).search(i)){var u,d=c;for(i.global||(i=Se(i.source,ys(pe.exec(i))+"g")),i.lastIndex=0;u=i.exec(d);)var p=u.index;c=c.slice(0,p===a?l:p)}}else if(e.indexOf(oa(i),l)!=l){var m=c.lastIndexOf(i);m>-1&&(c=c.slice(0,m))}return c+n},Dr.unescape=function(e){return(e=ys(e))&&G.test(e)?e.replace($,pr):e},Dr.uniqueId=function(e){var t=++Le;return ys(e)+t},Dr.upperCase=qs,Dr.upperFirst=Ys,Dr.each=yo,Dr.eachRight=bo,Dr.first=Hi,ol(Dr,(hl={},bn(Dr,(function(e,t){Oe.call(Dr.prototype,t)||(hl[t]=e)})),hl),{chain:!1}),Dr.VERSION="4.17.21",St(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){Dr[e].placeholder=Dr})),St(["drop","take"],(function(e,t){Vr.prototype[e]=function(r){r=r===a?1:gr(ms(r),0);var n=this.__filtered__&&!t?new Vr(this):this.clone();return n.__filtered__?n.__takeCount__=hr(r,n.__takeCount__):n.__views__.push({size:hr(r,m),type:e+(n.__dir__<0?"Right":"")}),n},Vr.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),St(["filter","map","takeWhile"],(function(e,t){var r=t+1,n=1==r||3==r;Vr.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:ii(e,3),type:r}),t.__filtered__=t.__filtered__||n,t}})),St(["head","last"],(function(e,t){var r="take"+(t?"Right":"");Vr.prototype[e]=function(){return this[r](1).value()[0]}})),St(["initial","tail"],(function(e,t){var r="drop"+(t?"":"Right");Vr.prototype[e]=function(){return this.__filtered__?new Vr(this):this[r](1)}})),Vr.prototype.compact=function(){return this.filter(rl)},Vr.prototype.find=function(e){return this.filter(e).head()},Vr.prototype.findLast=function(e){return this.reverse().find(e)},Vr.prototype.invokeMap=Gn((function(e,t){return"function"==typeof e?new Vr(this):this.map((function(r){return An(r,e,t)}))})),Vr.prototype.reject=function(e){return this.filter(Lo(ii(e)))},Vr.prototype.slice=function(e,t){e=ms(e);var r=this;return r.__filtered__&&(e>0||t<0)?new Vr(r):(e<0?r=r.takeRight(-e):e&&(r=r.drop(e)),t!==a&&(r=(t=ms(t))<0?r.dropRight(-t):r.take(t-e)),r)},Vr.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Vr.prototype.toArray=function(){return this.take(m)},bn(Vr.prototype,(function(e,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),n=/^(?:head|last)$/.test(t),i=Dr[n?"take"+("last"==t?"Right":""):t],o=n||/^find/.test(t);i&&(Dr.prototype[t]=function(){var t=this.__wrapped__,s=n?[1]:arguments,l=t instanceof Vr,c=s[0],u=l||Uo(t),d=function(e){var t=i.apply(Dr,It([e],s));return n&&p?t[0]:t};u&&r&&"function"==typeof c&&1!=c.length&&(l=u=!1);var p=this.__chain__,m=!!this.__actions__.length,f=o&&!p,g=l&&!m;if(!o&&u){t=g?t:new Vr(this);var h=e.apply(t,s);return h.__actions__.push({func:po,args:[d],thisArg:a}),new zr(h,p)}return f&&g?e.apply(this,s):(h=this.thru(d),f?n?h.value()[0]:h.value():h)})})),St(["pop","push","shift","sort","splice","unshift"],(function(e){var t=Ae[e],r=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",n=/^(?:pop|shift)$/.test(e);Dr.prototype[e]=function(){var e=arguments;if(n&&!this.__chain__){var a=this.value();return t.apply(Uo(a)?a:[],e)}return this[r]((function(r){return t.apply(Uo(r)?r:[],e)}))}})),bn(Vr.prototype,(function(e,t){var r=Dr[t];if(r){var n=r.name+"";Oe.call(Ar,n)||(Ar[n]=[]),Ar[n].push({name:t,func:r})}})),Ar[Da(a,2).name]=[{name:"wrapper",func:a}],Vr.prototype.clone=function(){var e=new Vr(this.__wrapped__);return e.__actions__=Ca(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=Ca(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=Ca(this.__views__),e},Vr.prototype.reverse=function(){if(this.__filtered__){var e=new Vr(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Vr.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,r=Uo(e),n=t<0,a=r?e.length:0,i=function(e,t,r){for(var n=-1,a=r.length;++n<a;){var i=r[n],o=i.size;switch(i.type){case"drop":e+=o;break;case"dropRight":t-=o;break;case"take":t=hr(t,e+o);break;case"takeRight":e=gr(e,t-o)}}return{start:e,end:t}}(0,a,this.__views__),o=i.start,s=i.end,l=s-o,c=n?s:o-1,u=this.__iteratees__,d=u.length,p=0,m=hr(l,this.__takeCount__);if(!r||!n&&a==l&&m==l)return da(e,this.__actions__);var f=[];e:for(;l--&&p<m;){for(var g=-1,h=e[c+=t];++g<d;){var y=u[g],b=y.iteratee,v=y.type,w=b(h);if(2==v)h=w;else if(!w){if(1==v)continue e;break e}}f[p++]=h}return f},Dr.prototype.at=mo,Dr.prototype.chain=function(){return uo(this)},Dr.prototype.commit=function(){return new zr(this.value(),this.__chain__)},Dr.prototype.next=function(){this.__values__===a&&(this.__values__=ds(this.value()));var e=this.__index__>=this.__values__.length;return{done:e,value:e?a:this.__values__[this.__index__++]}},Dr.prototype.plant=function(e){for(var t,r=this;r instanceof Mr;){var n=Di(r);n.__index__=0,n.__values__=a,t?i.__wrapped__=n:t=n;var i=n;r=r.__wrapped__}return i.__wrapped__=e,t},Dr.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Vr){var t=e;return this.__actions__.length&&(t=new Vr(this)),(t=t.reverse()).__actions__.push({func:po,args:[Ji],thisArg:a}),new zr(t,this.__chain__)}return this.thru(Ji)},Dr.prototype.toJSON=Dr.prototype.valueOf=Dr.prototype.value=function(){return da(this.__wrapped__,this.__actions__)},Dr.prototype.first=Dr.prototype.head,Ye&&(Dr.prototype[Ye]=function(){return this}),Dr}();dt._=mr,(n=function(){return mr}.call(t,r,t,e))===a||(e.exports=n)}.call(this)},7482:(e,t,r)=>{"use strict";function n(e){return e.toLowerCase()}r.d(t,{W:()=>o});var a=[/([a-z0-9])([A-Z])/g,/([A-Z])([A-Z][a-z])/g],i=/[^A-Z0-9]+/gi;function o(e,t){void 0===t&&(t={});for(var r=t.splitRegexp,o=void 0===r?a:r,l=t.stripRegexp,c=void 0===l?i:l,u=t.transform,d=void 0===u?n:u,p=t.delimiter,m=void 0===p?" ":p,f=s(s(e,o,"$1\0$2"),c,"\0"),g=0,h=f.length;"\0"===f.charAt(g);)g++;for(;"\0"===f.charAt(h-1);)h--;return f.slice(g,h).split("\0").map(d).join(m)}function s(e,t,r){return t instanceof RegExp?e.replace(t,r):t.reduce((function(e,t){return e.replace(t,r)}),e)}},2694:(e,t,r)=>{"use strict";var n=r(6925);function a(){}function i(){}i.resetWarningCache=a,e.exports=function(){function e(e,t,r,a,i,o){if(o!==n){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:a};return r.PropTypes=r,r}},5556:(e,t,r)=>{e.exports=r(2694)()},6925:e=>{"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},7614:function(e,t,r){var n;e.exports=(n=r(1594),function(e){var t={};function r(n){if(t[n])return t[n].exports;var a=t[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,r),a.l=!0,a.exports}return r.m=e,r.c=t,r.d=function(e,t,n){r.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.t=function(e,t){if(1&t&&(e=r(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var a in e)r.d(n,a,function(t){return e[t]}.bind(null,a));return n},r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,"a",t),t},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.p="",r(r.s=4)}([function(e,t,r){e.exports=r(2)()},function(e,t){e.exports=n},function(e,t,r){"use strict";var n=r(3);function a(){}function i(){}i.resetWarningCache=a,e.exports=function(){function e(e,t,r,a,i,o){if(o!==n){var s=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw s.name="Invariant Violation",s}}function t(){return e}e.isRequired=e;var r={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:i,resetWarningCache:a};return r.PropTypes=r,r}},function(e,t,r){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t,r){"use strict";r.r(t);var n=r(1),a=r.n(n),i=r(0),o=r.n(i),s=function(e){return 0!==e};function l(){return(l=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)Object.prototype.hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e}).apply(this,arguments)}function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(e,t){for(var r=0;r<t.length;r++){var n=t[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}function d(e,t){return(d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function p(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var r,n=f(e);if(t){var a=f(this).constructor;r=Reflect.construct(n,arguments,a)}else r=n.apply(this,arguments);return function(e,t){if(t&&("object"===c(t)||"function"==typeof t))return t;if(void 0!==t)throw new TypeError("Derived constructors may only return object or undefined");return m(e)}(this,r)}}function m(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function f(e){return(f=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function g(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}var h=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&d(e,t)}(i,e);var t,r,n=p(i);function i(e){var t;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,i),g(m(t=n.call(this,e)),"continueOpenCollapsible",(function(){var e=m(t).innerRef;t.setState({height:e.scrollHeight,transition:"height ".concat(t.props.transitionTime,"ms ").concat(t.props.easing),isClosed:!1,hasBeenOpened:!0,inTransition:s(e.scrollHeight),shouldOpenOnNextCycle:!1})})),g(m(t),"handleTriggerClick",(function(e){t.props.triggerDisabled||t.state.inTransition||(e.preventDefault(),t.props.handleTriggerClick?t.props.handleTriggerClick(t.props.accordionPosition):!0===t.state.isClosed?(t.openCollapsible(),t.props.onOpening(),t.props.onTriggerOpening()):(t.closeCollapsible(),t.props.onClosing(),t.props.onTriggerClosing()))})),g(m(t),"handleTransitionEnd",(function(e){e.target===t.innerRef&&(t.state.isClosed?(t.setState({inTransition:!1}),t.props.onClose()):(t.setState({height:"auto",overflow:t.props.overflowWhenOpen,inTransition:!1}),t.props.onOpen()))})),g(m(t),"setInnerRef",(function(e){return t.innerRef=e})),t.timeout=void 0,t.contentId=e.contentElementId||"collapsible-content-".concat(Date.now()),t.triggerId=e.triggerElementProps.id||"collapsible-trigger-".concat(Date.now()),e.open?t.state={isClosed:!1,shouldSwitchAutoOnNextCycle:!1,height:"auto",transition:"none",hasBeenOpened:!0,overflow:e.overflowWhenOpen,inTransition:!1}:t.state={isClosed:!0,shouldSwitchAutoOnNextCycle:!1,height:0,transition:"height ".concat(e.transitionTime,"ms ").concat(e.easing),hasBeenOpened:!1,overflow:"hidden",inTransition:!1},t}return t=i,(r=[{key:"componentDidUpdate",value:function(e,t){var r=this;this.state.shouldOpenOnNextCycle&&this.continueOpenCollapsible(),"auto"!==t.height&&0!==t.height||!0!==this.state.shouldSwitchAutoOnNextCycle||(window.clearTimeout(this.timeout),this.timeout=window.setTimeout((function(){r.setState({height:0,overflow:"hidden",isClosed:!0,shouldSwitchAutoOnNextCycle:!1})}),50)),e.open!==this.props.open&&(!0===this.props.open?(this.openCollapsible(),this.props.onOpening()):(this.closeCollapsible(),this.props.onClosing()))}},{key:"componentWillUnmount",value:function(){window.clearTimeout(this.timeout)}},{key:"closeCollapsible",value:function(){var e=this.innerRef;this.setState({shouldSwitchAutoOnNextCycle:!0,height:e.scrollHeight,transition:"height ".concat(this.props.transitionCloseTime?this.props.transitionCloseTime:this.props.transitionTime,"ms ").concat(this.props.easing),inTransition:s(e.scrollHeight)})}},{key:"openCollapsible",value:function(){this.setState({inTransition:s(this.innerRef.scrollHeight),shouldOpenOnNextCycle:!0})}},{key:"renderNonClickableTriggerElement",value:function(){var e=this.props,t=e.triggerSibling,r=e.classParentString;if(!t)return null;switch(c(t)){case"string":return a.a.createElement("span",{className:"".concat(r,"__trigger-sibling")},t);case"function":return t();case"object":return t;default:return null}}},{key:"render",value:function(){var e=this,t={height:this.state.height,WebkitTransition:this.state.transition,msTransition:this.state.transition,transition:this.state.transition,overflow:this.state.overflow},r=this.state.isClosed?"is-closed":"is-open",n=this.props.triggerDisabled?"is-disabled":"",i=!1===this.state.isClosed&&void 0!==this.props.triggerWhenOpen?this.props.triggerWhenOpen:this.props.trigger,o=this.props.contentContainerTagName,s=this.props.triggerTagName,c=this.props.lazyRender&&!this.state.hasBeenOpened&&this.state.isClosed&&!this.state.inTransition?null:this.props.children,u=this.props,d=u.classParentString,p=u.contentOuterClassName,m=u.contentInnerClassName,f="".concat(d,"__trigger ").concat(r," ").concat(n," ").concat(this.state.isClosed?this.props.triggerClassName:this.props.triggerOpenedClassName),g="".concat(d," ").concat(this.state.isClosed?this.props.className:this.props.openedClassName),h="".concat(d,"__contentOuter ").concat(p),y="".concat(d,"__contentInner ").concat(m);return a.a.createElement(o,l({className:g.trim()},this.props.containerElementProps),a.a.createElement(s,l({id:this.triggerId,className:f.trim(),onClick:this.handleTriggerClick,style:this.props.triggerStyle&&this.props.triggerStyle,onKeyPress:function(t){var r=t.key;(" "===r&&"button"!==e.props.triggerTagName.toLowerCase()||"Enter"===r)&&e.handleTriggerClick(t)},tabIndex:this.props.tabIndex&&this.props.tabIndex,"aria-expanded":!this.state.isClosed,"aria-disabled":this.props.triggerDisabled,"aria-controls":this.contentId,role:"button"},this.props.triggerElementProps),i),this.renderNonClickableTriggerElement(),a.a.createElement("div",{id:this.contentId,className:h.trim(),style:t,onTransitionEnd:this.handleTransitionEnd,ref:this.setInnerRef,hidden:this.props.contentHiddenWhenClosed&&this.state.isClosed&&!this.state.inTransition,role:"region","aria-labelledby":this.triggerId},a.a.createElement("div",{className:y.trim()},c)))}}])&&u(t.prototype,r),Object.defineProperty(t,"prototype",{writable:!1}),i}(n.Component);h.propTypes={transitionTime:o.a.number,transitionCloseTime:o.a.number,triggerTagName:o.a.string,easing:o.a.string,open:o.a.bool,containerElementProps:o.a.object,triggerElementProps:o.a.object,contentElementId:o.a.string,classParentString:o.a.string,className:o.a.string,openedClassName:o.a.string,triggerStyle:o.a.object,triggerClassName:o.a.string,triggerOpenedClassName:o.a.string,contentOuterClassName:o.a.string,contentInnerClassName:o.a.string,accordionPosition:o.a.oneOfType([o.a.string,o.a.number]),handleTriggerClick:o.a.func,onOpen:o.a.func,onClose:o.a.func,onOpening:o.a.func,onClosing:o.a.func,onTriggerOpening:o.a.func,onTriggerClosing:o.a.func,trigger:o.a.oneOfType([o.a.string,o.a.element]),triggerWhenOpen:o.a.oneOfType([o.a.string,o.a.element]),triggerDisabled:o.a.bool,lazyRender:o.a.bool,overflowWhenOpen:o.a.oneOf(["hidden","visible","auto","scroll","inherit","initial","unset"]),contentHiddenWhenClosed:o.a.bool,triggerSibling:o.a.oneOfType([o.a.string,o.a.element,o.a.func]),tabIndex:o.a.number,contentContainerTagName:o.a.string,children:o.a.oneOfType([o.a.string,o.a.element])},h.defaultProps={transitionTime:400,transitionCloseTime:null,triggerTagName:"span",easing:"linear",open:!1,classParentString:"Collapsible",triggerDisabled:!1,lazyRender:!1,overflowWhenOpen:"hidden",contentHiddenWhenClosed:!1,openedClassName:"",triggerStyle:null,triggerClassName:"",triggerOpenedClassName:"",contentOuterClassName:"",contentInnerClassName:"",className:"",triggerSibling:null,onOpen:function(){},onClose:function(){},onOpening:function(){},onClosing:function(){},onTriggerOpening:function(){},onTriggerClosing:function(){},tabIndex:null,contentContainerTagName:"div",triggerElementProps:{}},t.default=h}]))},5338:(e,t,r)=>{"use strict";var n=r(5206);t.H=n.createRoot,n.hydrateRoot},1020:(e,t,r)=>{"use strict";var n=r(1594),a=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),o=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};t.jsx=function(e,t,r){var n,l={},c=null,u=null;for(n in void 0!==r&&(c=""+r),void 0!==t.key&&(c=""+t.key),void 0!==t.ref&&(u=t.ref),t)i.call(t,n)&&!s.hasOwnProperty(n)&&(l[n]=t[n]);if(e&&e.defaultProps)for(n in t=e.defaultProps)void 0===l[n]&&(l[n]=t[n]);return{$$typeof:a,type:e,key:c,ref:u,props:l,_owner:o.current}}},4848:(e,t,r)=>{"use strict";e.exports=r(1020)},8939:(e,t,r)=>{var n,a;void 0===(a="function"==typeof(n=function(){"use strict";var e,t,n,a,i,o,s,l,c="undefined"!=typeof window?window:null!=typeof r.g?r.g:this||{},u=c.cancelRequestAnimationFrame&&c.requestAnimationFrame||setTimeout,d=c.cancelRequestAnimationFrame||clearTimeout,p=[],m=0,f=!1,g=7,h=35,y=125,b=0,v=0,w=0,x={get didTimeout(){return!1},timeRemaining:function(){var e=g-(Date.now()-v);return e<0?0:e}},_=(i=function(){g=22,y=66,h=0},l=function(){var e=Date.now()-s;e<99?o=setTimeout(l,99-e):(o=null,i())},function(){s=Date.now(),o||(o=setTimeout(l,99))});function E(){125!=y&&(g=7,y=125,h=35,f&&(f&&(a&&d(a),n&&clearTimeout(n),f=!1),C())),_()}function k(){a=null,n=setTimeout(R,0)}function S(){n=null,u(k)}function C(){f||(t=y-(Date.now()-v),e=Date.now(),f=!0,h&&t<h&&(t=h),t>9?n=setTimeout(S,t):(t=0,S()))}function R(){var r,a,i,o=g>9?9:1;if(v=Date.now(),f=!1,n=null,m>2||v-t-50<e)for(a=0,i=p.length;a<i&&x.timeRemaining()>o;a++)r=p.shift(),w++,r&&r(x);p.length?C():m=0}function A(e){return b++,p.push(e),C(),b}function P(e){var t=e-1-w;p[t]&&(p[t]=null)}if(c.requestIdleCallback&&c.cancelIdleCallback)try{c.requestIdleCallback((function(){}),{timeout:0})}catch(e){!function(e){var t,r;if(c.requestIdleCallback=function(t,r){return r&&"number"==typeof r.timeout?e(t,r.timeout):e(t)},c.IdleCallbackDeadline&&(t=IdleCallbackDeadline.prototype)){if(!(r=Object.getOwnPropertyDescriptor(t,"timeRemaining"))||!r.configurable||!r.get)return;Object.defineProperty(t,"timeRemaining",{value:function(){return r.get.call(this)},enumerable:!0,configurable:!0})}}(c.requestIdleCallback)}else c.requestIdleCallback=A,c.cancelIdleCallback=P,c.document&&document.addEventListener&&(c.addEventListener("scroll",E,!0),c.addEventListener("resize",E),document.addEventListener("focus",E,!0),document.addEventListener("mouseover",E,!0),["click","keypress","touchstart","mousedown"].forEach((function(e){document.addEventListener(e,E,{capture:!0,passive:!0})})),c.MutationObserver&&new MutationObserver(E).observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0}));return{request:A,cancel:P}})?n.apply(t,[]):n)||(e.exports=a)},6080:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.race=t.join=t.fork=t.promise=void 0;var n=o(r(6439)),a=r(3090),i=o(r(6270));function o(e){return e&&e.__esModule?e:{default:e}}var s=t.promise=function(e,t,r,a,i){return!!n.default.promise(e)&&(e.then(t,i),!0)},l=new Map,c=t.fork=function(e,t,r){if(!n.default.fork(e))return!1;var o=Symbol("fork"),s=(0,i.default)();l.set(o,s),r(e.iterator.apply(null,e.args),(function(e){return s.dispatch(e)}),(function(e){return s.dispatch((0,a.error)(e))}));var c=s.subscribe((function(){c(),l.delete(o)}));return t(o),!0},u=t.join=function(e,t,r,a,i){if(!n.default.join(e))return!1;var o,s=l.get(e.task);return s?o=s.subscribe((function(e){o(),t(e)})):i("join error : task not found"),!0},d=t.race=function(e,t,r,a,i){if(!n.default.race(e))return!1;var o,s=!1,l=function(e,r,n){s||(s=!0,e[r]=n,t(e))},c=function(e){s||i(e)};return n.default.array(e.competitors)?(o=e.competitors.map((function(){return!1})),e.competitors.forEach((function(e,t){r(e,(function(e){return l(o,t,e)}),c)}))):function(){var t=Object.keys(e.competitors).reduce((function(e,t){return e[t]=!1,e}),{});Object.keys(e.competitors).forEach((function(n){r(e.competitors[n],(function(e){return l(t,n,e)}),c)}))}(),!0};t.default=[s,c,u,d,function(e,t){if(!n.default.subscribe(e))return!1;if(!n.default.channel(e.channel))throw new Error('the first argument of "subscribe" must be a valid channel');var r=e.channel.subscribe((function(e){r&&r(),t(e)}));return!0}]},323:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.iterator=t.array=t.object=t.error=t.any=void 0;var n,a=(n=r(6439))&&n.__esModule?n:{default:n},i=t.any=function(e,t,r,n){return n(e),!0},o=t.error=function(e,t,r,n,i){return!!a.default.error(e)&&(i(e.error),!0)},s=t.object=function(e,t,r,n,i){if(!a.default.all(e)||!a.default.obj(e.value))return!1;var o={},s=Object.keys(e.value),l=0,c=!1;return s.map((function(t){r(e.value[t],(function(e){return function(e,t){c||(o[e]=t,++l===s.length&&n(o))}(t,e)}),(function(e){return function(e,t){c||(c=!0,i(t))}(0,e)}))})),!0},l=t.array=function(e,t,r,n,i){if(!a.default.all(e)||!a.default.array(e.value))return!1;var o=[],s=0,l=!1;return e.value.map((function(t,a){r(t,(function(t){return function(t,r){l||(o[t]=r,++s===e.value.length&&n(o))}(a,t)}),(function(e){return function(e,t){l||(l=!0,i(t))}(0,e)}))})),!0},c=t.iterator=function(e,t,r,n,i){return!!a.default.iterator(e)&&(r(e,t,i),!0)};t.default=[o,c,l,s,i]},2682:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.cps=t.call=void 0;var n,a=(n=r(6439))&&n.__esModule?n:{default:n},i=t.call=function(e,t,r,n,i){if(!a.default.call(e))return!1;try{t(e.func.apply(e.context,e.args))}catch(e){i(e)}return!0},o=t.cps=function(e,t,r,n,i){var o;return!!a.default.cps(e)&&((o=e.func).call.apply(o,[null].concat(function(e){if(Array.isArray(e)){for(var t=0,r=Array(e.length);t<e.length;t++)r[t]=e[t];return r}return Array.from(e)}(e.args),[function(e,r){e?i(e):t(r)}])),!0)};t.default=[i,o]},8249:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=i(r(323)),a=i(r(6439));function i(e){return e&&e.__esModule?e:{default:e}}function o(e){if(Array.isArray(e)){for(var t=0,r=Array(e.length);t<e.length;t++)r[t]=e[t];return r}return Array.from(e)}t.default=function(){var e=[].concat(o(arguments.length<=0||void 0===arguments[0]?[]:arguments[0]),o(n.default));return function t(r){var n,i,o,s=arguments.length<=1||void 0===arguments[1]?function(){}:arguments[1],l=arguments.length<=2||void 0===arguments[2]?function(){}:arguments[2],c=a.default.iterator(r)?r:regeneratorRuntime.mark((function e(){return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,r;case 2:return e.abrupt("return",e.sent);case 3:case"end":return e.stop()}}),e,this)}))();n=c,i=function(e){return function(t){try{var r=e?n.throw(t):n.next(t),a=r.value;if(r.done)return s(a);o(a)}catch(e){return l(e)}}},o=function r(n){e.some((function(e){return e(n,r,t,i(!1),i(!0))}))},i(!1)()}}},5937:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.wrapControls=t.asyncControls=t.create=void 0;var n=r(3090);Object.keys(n).forEach((function(e){"default"!==e&&Object.defineProperty(t,e,{enumerable:!0,get:function(){return n[e]}})}));var a=s(r(8249)),i=s(r(6080)),o=s(r(2682));function s(e){return e&&e.__esModule?e:{default:e}}t.create=a.default,t.asyncControls=i.default,t.wrapControls=o.default},6270:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=function(){var e=[];return{subscribe:function(t){return e.push(t),function(){e=e.filter((function(e){return e!==t}))}},dispatch:function(t){e.slice().forEach((function(e){return e(t)}))}}}},3090:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createChannel=t.subscribe=t.cps=t.apply=t.call=t.invoke=t.delay=t.race=t.join=t.fork=t.error=t.all=void 0;var n,a=(n=r(9907))&&n.__esModule?n:{default:n};t.all=function(e){return{type:a.default.all,value:e}},t.error=function(e){return{type:a.default.error,error:e}},t.fork=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return{type:a.default.fork,iterator:e,args:r}},t.join=function(e){return{type:a.default.join,task:e}},t.race=function(e){return{type:a.default.race,competitors:e}},t.delay=function(e){return new Promise((function(t){setTimeout((function(){return t(!0)}),e)}))},t.invoke=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return{type:a.default.call,func:e,context:null,args:r}},t.call=function(e,t){for(var r=arguments.length,n=Array(r>2?r-2:0),i=2;i<r;i++)n[i-2]=arguments[i];return{type:a.default.call,func:e,context:t,args:n}},t.apply=function(e,t,r){return{type:a.default.call,func:e,context:t,args:r}},t.cps=function(e){for(var t=arguments.length,r=Array(t>1?t-1:0),n=1;n<t;n++)r[n-1]=arguments[n];return{type:a.default.cps,func:e,args:r}},t.subscribe=function(e){return{type:a.default.subscribe,channel:e}},t.createChannel=function(e){var t=[];return e((function(e){return t.forEach((function(t){return t(e)}))})),{subscribe:function(e){return t.push(e),function(){return t.splice(t.indexOf(e),1)}}}}},6439:(e,t,r)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n,a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol?"symbol":typeof e},i=(n=r(9907))&&n.__esModule?n:{default:n},o={obj:function(e){return"object"===(void 0===e?"undefined":a(e))&&!!e},all:function(e){return o.obj(e)&&e.type===i.default.all},error:function(e){return o.obj(e)&&e.type===i.default.error},array:Array.isArray,func:function(e){return"function"==typeof e},promise:function(e){return e&&o.func(e.then)},iterator:function(e){return e&&o.func(e.next)&&o.func(e.throw)},fork:function(e){return o.obj(e)&&e.type===i.default.fork},join:function(e){return o.obj(e)&&e.type===i.default.join},race:function(e){return o.obj(e)&&e.type===i.default.race},call:function(e){return o.obj(e)&&e.type===i.default.call},cps:function(e){return o.obj(e)&&e.type===i.default.cps},subscribe:function(e){return o.obj(e)&&e.type===i.default.subscribe},channel:function(e){return o.obj(e)&&o.func(e.subscribe)}};t.default=o},9907:(e,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var r={all:Symbol("all"),error:Symbol("error"),fork:Symbol("fork"),join:Symbol("join"),race:Symbol("race"),call:Symbol("call"),cps:Symbol("cps"),subscribe:Symbol("subscribe")};t.default=r},7604:(e,t,r)=>{var n;!function(){"use strict";var a={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function i(e){return function(e,t){var r,n,o,s,l,c,u,d,p,m=1,f=e.length,g="";for(n=0;n<f;n++)if("string"==typeof e[n])g+=e[n];else if("object"==typeof e[n]){if((s=e[n]).keys)for(r=t[m],o=0;o<s.keys.length;o++){if(null==r)throw new Error(i('[sprintf] Cannot access property "%s" of undefined value "%s"',s.keys[o],s.keys[o-1]));r=r[s.keys[o]]}else r=s.param_no?t[s.param_no]:t[m++];if(a.not_type.test(s.type)&&a.not_primitive.test(s.type)&&r instanceof Function&&(r=r()),a.numeric_arg.test(s.type)&&"number"!=typeof r&&isNaN(r))throw new TypeError(i("[sprintf] expecting number but found %T",r));switch(a.number.test(s.type)&&(d=r>=0),s.type){case"b":r=parseInt(r,10).toString(2);break;case"c":r=String.fromCharCode(parseInt(r,10));break;case"d":case"i":r=parseInt(r,10);break;case"j":r=JSON.stringify(r,null,s.width?parseInt(s.width):0);break;case"e":r=s.precision?parseFloat(r).toExponential(s.precision):parseFloat(r).toExponential();break;case"f":r=s.precision?parseFloat(r).toFixed(s.precision):parseFloat(r);break;case"g":r=s.precision?String(Number(r.toPrecision(s.precision))):parseFloat(r);break;case"o":r=(parseInt(r,10)>>>0).toString(8);break;case"s":r=String(r),r=s.precision?r.substring(0,s.precision):r;break;case"t":r=String(!!r),r=s.precision?r.substring(0,s.precision):r;break;case"T":r=Object.prototype.toString.call(r).slice(8,-1).toLowerCase(),r=s.precision?r.substring(0,s.precision):r;break;case"u":r=parseInt(r,10)>>>0;break;case"v":r=r.valueOf(),r=s.precision?r.substring(0,s.precision):r;break;case"x":r=(parseInt(r,10)>>>0).toString(16);break;case"X":r=(parseInt(r,10)>>>0).toString(16).toUpperCase()}a.json.test(s.type)?g+=r:(!a.number.test(s.type)||d&&!s.sign?p="":(p=d?"+":"-",r=r.toString().replace(a.sign,"")),c=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",u=s.width-(p+r).length,l=s.width&&u>0?c.repeat(u):"",g+=s.align?p+r+l:"0"===c?p+l+r:l+p+r)}return g}(function(e){if(s[e])return s[e];for(var t,r=e,n=[],i=0;r;){if(null!==(t=a.text.exec(r)))n.push(t[0]);else if(null!==(t=a.modulo.exec(r)))n.push("%");else{if(null===(t=a.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){i|=1;var o=[],l=t[2],c=[];if(null===(c=a.key.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(o.push(c[1]);""!==(l=l.substring(c[0].length));)if(null!==(c=a.key_access.exec(l)))o.push(c[1]);else{if(null===(c=a.index_access.exec(l)))throw new SyntaxError("[sprintf] failed to parse named argument key");o.push(c[1])}t[2]=o}else i|=2;if(3===i)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");n.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return s[e]=n}(e),arguments)}function o(e,t){return i.apply(null,[e].concat(t||[]))}var s=Object.create(null);t.sprintf=i,t.vsprintf=o,"undefined"!=typeof window&&(window.sprintf=i,window.vsprintf=o,void 0===(n=function(){return{sprintf:i,vsprintf:o}}.call(t,r,t,e))||(e.exports=n))}()},5138:(e,t,r)=>{var n=r(5072),a=r(8723);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},1726:(e,t,r)=>{var n=r(5072),a=r(8087);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},2919:(e,t,r)=>{var n=r(5072),a=r(9552);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},7525:(e,t,r)=>{var n=r(5072),a=r(7274);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},8509:(e,t,r)=>{var n=r(5072),a=r(8074);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},7948:(e,t,r)=>{var n=r(5072),a=r(8359);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},1032:(e,t,r)=>{var n=r(5072),a=r(7979);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},6723:(e,t,r)=>{var n=r(5072),a=r(8830);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},6574:(e,t,r)=>{var n=r(5072),a=r(2277);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},4473:(e,t,r)=>{var n=r(5072),a=r(7226);"string"==typeof(a=a.__esModule?a.default:a)&&(a=[[e.id,a,""]]);n(a,{insert:"head",singleton:!1}),e.exports=a.locals||{}},5072:(e,t,r)=>{"use strict";var n,a=function(){var e={};return function(t){if(void 0===e[t]){var r=document.querySelector(t);if(window.HTMLIFrameElement&&r instanceof window.HTMLIFrameElement)try{r=r.contentDocument.head}catch(e){r=null}e[t]=r}return e[t]}}(),i=[];function o(e){for(var t=-1,r=0;r<i.length;r++)if(i[r].identifier===e){t=r;break}return t}function s(e,t){for(var r={},n=[],a=0;a<e.length;a++){var s=e[a],l=t.base?s[0]+t.base:s[0],c=r[l]||0,u="".concat(l," ").concat(c);r[l]=c+1;var d=o(u),p={css:s[1],media:s[2],sourceMap:s[3]};-1!==d?(i[d].references++,i[d].updater(p)):i.push({identifier:u,updater:g(p,t),references:1}),n.push(u)}return n}function l(e){var t=document.createElement("style"),n=e.attributes||{};if(void 0===n.nonce){var i=r.nc;i&&(n.nonce=i)}if(Object.keys(n).forEach((function(e){t.setAttribute(e,n[e])})),"function"==typeof e.insert)e.insert(t);else{var o=a(e.insert||"head");if(!o)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");o.appendChild(t)}return t}var c,u=(c=[],function(e,t){return c[e]=t,c.filter(Boolean).join("\n")});function d(e,t,r,n){var a=r?"":n.media?"@media ".concat(n.media," {").concat(n.css,"}"):n.css;if(e.styleSheet)e.styleSheet.cssText=u(t,a);else{var i=document.createTextNode(a),o=e.childNodes;o[t]&&e.removeChild(o[t]),o.length?e.insertBefore(i,o[t]):e.appendChild(i)}}function p(e,t,r){var n=r.css,a=r.media,i=r.sourceMap;if(a?e.setAttribute("media",a):e.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(n+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}var m=null,f=0;function g(e,t){var r,n,a;if(t.singleton){var i=f++;r=m||(m=l(t)),n=d.bind(null,r,i,!1),a=d.bind(null,r,i,!0)}else r=l(t),n=p.bind(null,r,t),a=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(r)};return n(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;n(e=t)}else a()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=(void 0===n&&(n=Boolean(window&&document&&document.all&&!window.atob)),n));var r=s(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var n=0;n<r.length;n++){var a=o(r[n]);i[a].references--}for(var l=s(e,t),c=0;c<r.length;c++){var u=o(r[c]);0===i[u].references&&(i[u].updater(),i.splice(u,1))}r=l}}}},1594:e=>{"use strict";e.exports=React},5206:e=>{"use strict";e.exports=ReactDOM},2944:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(1594);function a({title:e,titleId:t,...r},a){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:a,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3"}))}const i=n.forwardRef(a)},2988:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(1594);function a({title:e,titleId:t,...r},a){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:a,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m3.75 13.5 10.5-11.25L12 10.5h8.25L9.75 21.75 12 13.5H3.75Z"}))}const i=n.forwardRef(a)},6156:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(1594);function a({title:e,titleId:t,...r},a){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:a,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126ZM12 15.75h.007v.008H12v-.008Z"}))}const i=n.forwardRef(a)},4361:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(1594);function a({title:e,titleId:t,...r},a){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:a,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12Z"}))}const i=n.forwardRef(a)},4403:(e,t,r)=>{"use strict";r.d(t,{A:()=>i});var n=r(1594);function a({title:e,titleId:t,...r},a){return n.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:a,"aria-labelledby":t},r),e?n.createElement("title",{id:t},e):null,n.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 4.5v15m7.5-7.5h-15"}))}const i=n.forwardRef(a)},6542:(e,t,r)=>{"use strict";r.d(t,{L:()=>le});var n=r(3659);const a=(e,t,r)=>(((1-3*r+3*t)*e+(3*r-6*t))*e+3*t)*e;function i(e,t,r,i){if(e===t&&r===i)return n.l;return n=>0===n||1===n?n:a(function(e,t,r,n,i){let o,s,l=0;do{s=t+(r-t)/2,o=a(s,n,i)-e,o>0?r=s:t=s}while(Math.abs(o)>1e-7&&++l<12);return s}(n,0,1,e,r),t,i)}const o=i(.42,0,1,1),s=i(0,0,.58,1),l=i(.42,0,.58,1),c=e=>Array.isArray(e)&&"number"!=typeof e[0];var u=r(5238),d=r(4868),p=r(3041),m=r(2946);const f=i(.33,1.53,.69,.99),g=(0,m.G)(f),h=(0,p.V)(g),y={linear:n.l,easeIn:o,easeInOut:l,easeOut:s,circIn:d.po,circInOut:d.tn,circOut:d.yT,backIn:g,backInOut:h,backOut:f,anticipate:e=>(e*=2)<1?.5*g(e):.5*(2-Math.pow(2,-10*(e-1)))},b=e=>{if(Array.isArray(e)){(0,u.V)(4===e.length,"Cubic bezier arrays must contain four numerical values.");const[t,r,n,a]=e;return i(t,r,n,a)}return"string"==typeof e?((0,u.V)(void 0!==y[e],`Invalid easing type '${e}'`),y[e]):e};var v=r(7739),w=r(2464),x=r(2839);function _(e,t,r){return r<0&&(r+=1),r>1&&(r-=1),r<1/6?e+6*(t-e)*r:r<.5?t:r<2/3?e+(t-e)*(2/3-r)*6:e}var E=r(5252),k=r(3735),S=r(2027);const C=(e,t,r)=>{const n=e*e;return Math.sqrt(Math.max(0,r*(t*t-n)+n))},R=[E.u,k.B,S.V];function A(e){const t=(r=e,R.find((e=>e.test(r))));var r;(0,u.V)(Boolean(t),`'${e}' is not an animatable color. Use the equivalent color code instead.`);let n=t.parse(e);return t===S.V&&(n=function({hue:e,saturation:t,lightness:r,alpha:n}){e/=360,r/=100;let a=0,i=0,o=0;if(t/=100){const n=r<.5?r*(1+t):r+t-r*t,s=2*r-n;a=_(s,n,e+1/3),i=_(s,n,e),o=_(s,n,e-1/3)}else a=i=o=r;return{red:Math.round(255*a),green:Math.round(255*i),blue:Math.round(255*o),alpha:n}}(n)),n}const P=(e,t)=>{const r=A(e),n=A(t),a={...r};return e=>(a.red=C(r.red,n.red,e),a.green=C(r.green,n.green,e),a.blue=C(r.blue,n.blue,e),a.alpha=(0,x.j)(r.alpha,n.alpha,e),k.B.transform(a))};var T=r(1339),N=r(1614);const I=(e,t)=>r=>`${r>0?t:e}`;function O(e,t){return"number"==typeof e?r=>(0,x.j)(e,t,r):v.y.test(e)?P(e,t):e.startsWith("var(")?I(e,t):j(e,t)}const L=(e,t)=>{const r=[...e],n=r.length,a=e.map(((e,r)=>O(e,t[r])));return e=>{for(let t=0;t<n;t++)r[t]=a[t](e);return r}},B=(e,t)=>{const r={...e,...t},n={};for(const a in r)void 0!==e[a]&&void 0!==t[a]&&(n[a]=O(e[a],t[a]));return e=>{for(const t in n)r[t]=n[t](e);return r}},j=(e,t)=>{const r=N.f.createTransformer(t),n=(0,N.V)(e),a=(0,N.V)(t);return n.numVars===a.numVars&&n.numColors===a.numColors&&n.numNumbers>=a.numNumbers?(0,T.F)(L(n.values,a.values),r):((0,u.$)(!0,`Complex values '${e}' and '${t}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`),I(e,t))};var D=r(7170);const F=(e,t)=>r=>(0,x.j)(e,t,r);function M(e,t,{clamp:r=!0,ease:a,mixer:i}={}){const o=e.length;if((0,u.V)(o===t.length,"Both input and output ranges must be the same length"),1===o)return()=>t[0];e[0]>e[o-1]&&(e=[...e].reverse(),t=[...t].reverse());const s=function(e,t,r){const a=[],i=r||("number"==typeof(o=e[0])?F:"string"==typeof o?v.y.test(o)?P:j:Array.isArray(o)?L:"object"==typeof o?B:F);var o;const s=e.length-1;for(let r=0;r<s;r++){let o=i(e[r],e[r+1]);if(t){const e=Array.isArray(t)?t[r]||n.l:t;o=(0,T.F)(e,o)}a.push(o)}return a}(t,a,i),l=s.length,c=t=>{let r=0;if(l>1)for(;r<e.length-2&&!(t<e[r+1]);r++);const n=(0,D.q)(e[r],e[r+1],t);return s[r](n)};return r?t=>c((0,w.q)(e[0],e[o-1],t)):c}function z({duration:e=300,keyframes:t,times:r,ease:n="easeInOut"}){const a=c(n)?n.map(b):b(n),i={done:!1,value:t[0]},o=function(e,t){return e.map((e=>e*t))}(r&&r.length===t.length?r:function(e){const t=[0];return function(e,t){const r=e[e.length-1];for(let n=1;n<=t;n++){const a=(0,D.q)(0,t,n);e.push((0,x.j)(r,1,a))}}(t,e.length-1),t}(t),e),s=M(o,t,{ease:Array.isArray(a)?a:(u=t,d=a,u.map((()=>d||l)).splice(0,u.length-1))});var u,d;return{calculatedDuration:e,next:t=>(i.value=s(t),i.done=t>=e,i)}}var V=r(4833),W=r(7177);const U=5;function H(e,t,r){const n=Math.max(t-U,0);return(0,W.f)(r-e(n),t-n)}const $=.001,Z=.01,G=10,q=.05,Y=1;const K=12;function X(e,t){return e*Math.sqrt(1-t*t)}const J=["duration","bounce"],Q=["stiffness","damping","mass"];function ee(e,t){return t.some((t=>void 0!==e[t]))}function te({keyframes:e,restDelta:t,restSpeed:r,...n}){const a=e[0],i=e[e.length-1],o={done:!1,value:a},{stiffness:s,damping:l,mass:c,duration:d,velocity:p,isResolvedFromDuration:m}=function(e){let t={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...e};if(!ee(e,Q)&&ee(e,J)){const r=function({duration:e=800,bounce:t=.25,velocity:r=0,mass:n=1}){let a,i;(0,u.$)(e<=(0,V.f)(G),"Spring duration must be 10 seconds or less");let o=1-t;o=(0,w.q)(q,Y,o),e=(0,w.q)(Z,G,(0,V.X)(e)),o<1?(a=t=>{const n=t*o,a=n*e,i=n-r,s=X(t,o),l=Math.exp(-a);return $-i/s*l},i=t=>{const n=t*o*e,i=n*r+r,s=Math.pow(o,2)*Math.pow(t,2)*e,l=Math.exp(-n),c=X(Math.pow(t,2),o);return(-a(t)+$>0?-1:1)*((i-s)*l)/c}):(a=t=>Math.exp(-t*e)*((t-r)*e+1)-$,i=t=>Math.exp(-t*e)*(e*e*(r-t)));const s=function(e,t,r){let n=r;for(let r=1;r<K;r++)n-=e(n)/t(n);return n}(a,i,5/e);if(e=(0,V.f)(e),isNaN(s))return{stiffness:100,damping:10,duration:e};{const t=Math.pow(s,2)*n;return{stiffness:t,damping:2*o*Math.sqrt(n*t),duration:e}}}(e);t={...t,...r,mass:1},t.isResolvedFromDuration=!0}return t}({...n,velocity:-(0,V.X)(n.velocity||0)}),f=p||0,g=l/(2*Math.sqrt(s*c)),h=i-a,y=(0,V.X)(Math.sqrt(s/c)),b=Math.abs(h)<5;let v;if(r||(r=b?.01:2),t||(t=b?.005:.5),g<1){const e=X(y,g);v=t=>{const r=Math.exp(-g*y*t);return i-r*((f+g*y*h)/e*Math.sin(e*t)+h*Math.cos(e*t))}}else if(1===g)v=e=>i-Math.exp(-y*e)*(h+(f+y*h)*e);else{const e=y*Math.sqrt(g*g-1);v=t=>{const r=Math.exp(-g*y*t),n=Math.min(e*t,300);return i-r*((f+g*y*h)*Math.sinh(n)+e*h*Math.cosh(n))/e}}return{calculatedDuration:m&&d||null,next:e=>{const n=v(e);if(m)o.done=e>=d;else{let a=f;0!==e&&(a=g<1?H(v,e,n):0);const s=Math.abs(a)<=r,l=Math.abs(i-n)<=t;o.done=s&&l}return o.value=o.done?i:n,o}}}function re({keyframes:e,velocity:t=0,power:r=.8,timeConstant:n=325,bounceDamping:a=10,bounceStiffness:i=500,modifyTarget:o,min:s,max:l,restDelta:c=.5,restSpeed:u}){const d=e[0],p={done:!1,value:d},m=e=>void 0===s?l:void 0===l||Math.abs(s-e)<Math.abs(l-e)?s:l;let f=r*t;const g=d+f,h=void 0===o?g:o(g);h!==g&&(f=h-d);const y=e=>-f*Math.exp(-e/n),b=e=>h+y(e),v=e=>{const t=y(e),r=b(e);p.done=Math.abs(t)<=c,p.value=p.done?h:r};let w,x;const _=e=>{var t;t=p.value,(void 0!==s&&t<s||void 0!==l&&t>l)&&(w=e,x=te({keyframes:[p.value,m(p.value)],velocity:H(b,e,p.value),damping:a,stiffness:i,restDelta:c,restSpeed:u}))};return _(0),{calculatedDuration:null,next:e=>{let t=!1;return x||void 0!==w||(t=!0,v(e),_(e)),void 0!==w&&e>w?x.next(e-w):(!t&&v(e),p)}}}var ne=r(7745);const ae=e=>{const t=({timestamp:t})=>e(t);return{start:()=>ne.Gt.update(t,!0),stop:()=>(0,ne.WG)(t),now:()=>ne.uv.isProcessing?ne.uv.timestamp:performance.now()}},ie=2e4;function oe(e){let t=0,r=e.next(t);for(;!r.done&&t<ie;)t+=50,r=e.next(t);return t>=ie?1/0:t}const se={decay:re,inertia:re,tween:z,keyframes:z,spring:te};function le({autoplay:e=!0,delay:t=0,driver:r=ae,keyframes:n,type:a="keyframes",repeat:i=0,repeatDelay:o=0,repeatType:s="loop",onPlay:l,onStop:c,onComplete:u,onUpdate:d,...p}){let m,f,g=1,h=!1;const y=()=>{f=new Promise((e=>{m=e}))};let b;y();const v=se[a]||z;let x;v!==z&&"number"!=typeof n[0]&&(x=M([0,100],n,{clamp:!1}),n=[0,100]);const _=v({...p,keyframes:n});let E;"mirror"===s&&(E=v({...p,keyframes:[...n].reverse(),velocity:-(p.velocity||0)}));let k="idle",S=null,C=null,R=null;null===_.calculatedDuration&&i&&(_.calculatedDuration=oe(_));const{calculatedDuration:A}=_;let P=1/0,T=1/0;null!==A&&(P=A+o,T=P*(i+1)-o);let N=0;const I=e=>{if(null===C)return;g>0&&(C=Math.min(C,e)),g<0&&(C=Math.min(e-T/g,C)),N=null!==S?S:Math.round(e-C)*g;const r=N-t*(g>=0?1:-1),a=g>=0?r<0:r>T;N=Math.max(r,0),"finished"===k&&null===S&&(N=T);let l=N,c=_;if(i){const e=Math.min(N,T)/P;let t=Math.floor(e),r=e%1;!r&&e>=1&&(r=1),1===r&&t--,t=Math.min(t,i+1),Boolean(t%2)&&("reverse"===s?(r=1-r,o&&(r-=o/P)):"mirror"===s&&(c=E)),l=(0,w.q)(0,1,r)*P}const u=a?{done:!1,value:n[0]}:c.next(l);x&&(u.value=x(u.value));let{done:p}=u;a||null===A||(p=g>=0?N>=T:N<=0);const m=null===S&&("finished"===k||"running"===k&&p);return d&&d(u.value),m&&B(),u},O=()=>{b&&b.stop(),b=void 0},L=()=>{k="idle",O(),m(),y(),C=R=null},B=()=>{k="finished",u&&u(),O(),m()},j=()=>{if(h)return;b||(b=r(I));const e=b.now();l&&l(),null!==S?C=e-S:C&&"finished"!==k||(C=e),"finished"===k&&y(),R=C,S=null,k="running",b.start()};e&&j();const D={then:(e,t)=>f.then(e,t),get time(){return(0,V.X)(N)},set time(e){e=(0,V.f)(e),N=e,null===S&&b&&0!==g?C=b.now()-e/g:S=e},get duration(){const e=null===_.calculatedDuration?oe(_):_.calculatedDuration;return(0,V.X)(e)},get speed(){return g},set speed(e){e!==g&&b&&(g=e,D.time=(0,V.X)(N))},get state(){return k},play:j,pause:()=>{k="paused",S=N},stop:()=>{h=!0,"idle"!==k&&(k="idle",c&&c(),L())},cancel:()=>{null!==R&&I(R),L()},complete:()=>{k="finished"},sample:e=>(C=0,I(e))};return D}},9120:(e,t,r)=>{"use strict";r.d(t,{xQ:()=>i});var n=r(1594),a=r(6719);function i(){const e=(0,n.useContext)(a.t);if(null===e)return[!0,null];const{isPresent:t,onExitComplete:r,register:i}=e,o=(0,n.useId)();return(0,n.useEffect)((()=>i(o)),[]),!t&&r?[!1,()=>r&&r(o)]:[!0]}},9473:(e,t,r)=>{"use strict";r.d(t,{L:()=>n});const n=(0,r(1594).createContext)({})},3065:(e,t,r)=>{"use strict";r.d(t,{Q:()=>n});const n=(0,r(1594).createContext)({transformPagePoint:e=>e,isStatic:!1,reducedMotion:"never"})},6719:(e,t,r)=>{"use strict";r.d(t,{t:()=>n});const n=(0,r(1594).createContext)(null)},4868:(e,t,r)=>{"use strict";r.d(t,{po:()=>i,tn:()=>s,yT:()=>o});var n=r(3041),a=r(2946);const i=e=>1-Math.sin(Math.acos(e)),o=(0,a.G)(i),s=(0,n.V)(i)},3041:(e,t,r)=>{"use strict";r.d(t,{V:()=>n});const n=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2},2946:(e,t,r)=>{"use strict";r.d(t,{G:()=>n});const n=e=>t=>1-e(1-t)},7745:(e,t,r)=>{"use strict";r.d(t,{WG:()=>s,Gt:()=>o,uv:()=>l,Ci:()=>c});var n=r(3659);class a{constructor(){this.order=[],this.scheduled=new Set}add(e){if(!this.scheduled.has(e))return this.scheduled.add(e),this.order.push(e),!0}remove(e){const t=this.order.indexOf(e);-1!==t&&(this.order.splice(t,1),this.scheduled.delete(e))}clear(){this.order.length=0,this.scheduled.clear()}}const i=["prepare","read","update","preRender","render","postRender"],{schedule:o,cancel:s,state:l,steps:c}=function(e,t){let r=!1,n=!0;const o={delta:0,timestamp:0,isProcessing:!1},s=i.reduce(((e,t)=>(e[t]=function(e){let t=new a,r=new a,n=0,i=!1,o=!1;const s=new WeakSet,l={schedule:(e,a=!1,o=!1)=>{const l=o&&i,c=l?t:r;return a&&s.add(e),c.add(e)&&l&&i&&(n=t.order.length),e},cancel:e=>{r.remove(e),s.delete(e)},process:a=>{if(i)o=!0;else{if(i=!0,[t,r]=[r,t],r.clear(),n=t.order.length,n)for(let r=0;r<n;r++){const n=t.order[r];n(a),s.has(n)&&(l.schedule(n),e())}i=!1,o&&(o=!1,l.process(a))}}};return l}((()=>r=!0)),e)),{}),l=e=>s[e].process(o),c=()=>{const t=performance.now();r=!1,o.delta=n?1e3/60:Math.max(Math.min(t-o.timestamp,40),1),o.timestamp=t,o.isProcessing=!0,i.forEach(l),o.isProcessing=!1,r&&(n=!1,e(c))};return{schedule:i.reduce(((t,a)=>{const i=s[a];return t[a]=(t,a=!1,s=!1)=>(r||(r=!0,n=!0,o.isProcessing||e(c)),i.schedule(t,a,s)),t}),{}),cancel:e=>i.forEach((t=>s[t].cancel(e))),state:o,steps:s}}("undefined"!=typeof requestAnimationFrame?requestAnimationFrame:n.l)},3630:(e,t,r)=>{"use strict";r.d(t,{P:()=>ga});var n=r(1594),a=r(3065);const i=(0,n.createContext)({});var o=r(6719),s=r(5128);const l=(0,n.createContext)({strict:!1}),c=e=>e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase(),u="data-"+c("framerAppearId");function d(e){return e&&"object"==typeof e&&Object.prototype.hasOwnProperty.call(e,"current")}function p(e){return"string"==typeof e||Array.isArray(e)}function m(e){return null!==e&&"object"==typeof e&&"function"==typeof e.start}const f=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],g=["initial",...f];function h(e){return m(e.animate)||g.some((t=>p(e[t])))}function y(e){return Boolean(h(e)||e.variants)}function b(e){return Array.isArray(e)?e.join(" "):e}const v={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},w={};for(const e in v)w[e]={isEnabled:t=>v[e].some((e=>!!t[e]))};var x=r(8288),_=r(9473);const E=(0,n.createContext)({}),k=Symbol.for("motionComponentSymbol");function S({preloadedFeatures:e,createVisualElement:t,useRender:r,useVisualState:c,Component:m}){e&&function(e){for(const t in e)w[t]={...w[t],...e[t]}}(e);const f=(0,n.forwardRef)((function(f,g){let y;const v={...(0,n.useContext)(a.Q),...f,layoutId:C(f)},{isStatic:w}=v,_=function(e){const{initial:t,animate:r}=function(e,t){if(h(e)){const{initial:t,animate:r}=e;return{initial:!1===t||p(t)?t:void 0,animate:p(r)?r:void 0}}return!1!==e.inherit?t:{}}(e,(0,n.useContext)(i));return(0,n.useMemo)((()=>({initial:t,animate:r})),[b(t),b(r)])}(f),k=c(f,w);if(!w&&x.B){_.visualElement=function(e,t,r,c){const{visualElement:d}=(0,n.useContext)(i),p=(0,n.useContext)(l),m=(0,n.useContext)(o.t),f=(0,n.useContext)(a.Q).reducedMotion,g=(0,n.useRef)();c=c||p.renderer,!g.current&&c&&(g.current=c(e,{visualState:t,parent:d,props:r,presenceContext:m,blockInitialAnimation:!!m&&!1===m.initial,reducedMotionConfig:f}));const h=g.current;(0,n.useInsertionEffect)((()=>{h&&h.update(r,m)}));const y=(0,n.useRef)(Boolean(r[u]&&!window.HandoffComplete));return(0,s.E)((()=>{h&&(h.render(),y.current&&h.animationState&&h.animationState.animateChanges())})),(0,n.useEffect)((()=>{h&&(h.updateFeatures(),!y.current&&h.animationState&&h.animationState.animateChanges(),y.current&&(y.current=!1,window.HandoffComplete=!0))})),h}(m,k,v,t);const r=(0,n.useContext)(E),c=(0,n.useContext)(l).strict;_.visualElement&&(y=_.visualElement.loadFeatures(v,c,e,r))}return n.createElement(i.Provider,{value:_},y&&_.visualElement?n.createElement(y,{visualElement:_.visualElement,...v}):null,r(m,f,function(e,t,r){return(0,n.useCallback)((n=>{n&&e.mount&&e.mount(n),t&&(n?t.mount(n):t.unmount()),r&&("function"==typeof r?r(n):d(r)&&(r.current=n))}),[t])}(k,_.visualElement,g),k,w,_.visualElement))}));return f[k]=m,f}function C({layoutId:e}){const t=(0,n.useContext)(_.L).id;return t&&void 0!==e?t+"-"+e:e}function R(e){function t(t,r={}){return S(e(t,r))}if("undefined"==typeof Proxy)return t;const r=new Map;return new Proxy(t,{get:(e,n)=>(r.has(n)||r.set(n,t(n)),r.get(n))})}const A=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function P(e){return"string"==typeof e&&!e.includes("-")&&!!(A.indexOf(e)>-1||/[A-Z]/.test(e))}const T={},N=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],I=new Set(N);function O(e,{layout:t,layoutId:r}){return I.has(e)||e.startsWith("origin")||(t||void 0!==r)&&(!!T[e]||"opacity"===e)}var L=r(9896);const B={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},j=N.length;var D=r(568);const F=(e,t)=>t&&"number"==typeof e?t.transform(e):e;var M=r(563),z=r(5269);const V={...M.ai,transform:Math.round},W={borderWidth:z.px,borderTopWidth:z.px,borderRightWidth:z.px,borderBottomWidth:z.px,borderLeftWidth:z.px,borderRadius:z.px,radius:z.px,borderTopLeftRadius:z.px,borderTopRightRadius:z.px,borderBottomRightRadius:z.px,borderBottomLeftRadius:z.px,width:z.px,maxWidth:z.px,height:z.px,maxHeight:z.px,size:z.px,top:z.px,right:z.px,bottom:z.px,left:z.px,padding:z.px,paddingTop:z.px,paddingRight:z.px,paddingBottom:z.px,paddingLeft:z.px,margin:z.px,marginTop:z.px,marginRight:z.px,marginBottom:z.px,marginLeft:z.px,rotate:z.uj,rotateX:z.uj,rotateY:z.uj,rotateZ:z.uj,scale:M.hs,scaleX:M.hs,scaleY:M.hs,scaleZ:M.hs,skew:z.uj,skewX:z.uj,skewY:z.uj,distance:z.px,translateX:z.px,translateY:z.px,translateZ:z.px,x:z.px,y:z.px,z:z.px,perspective:z.px,transformPerspective:z.px,opacity:M.X4,originX:z.gQ,originY:z.gQ,originZ:z.px,zIndex:V,fillOpacity:M.X4,strokeOpacity:M.X4,numOctaves:V};function U(e,t,r,n){const{style:a,vars:i,transform:o,transformOrigin:s}=e;let l=!1,c=!1,u=!0;for(const e in t){const r=t[e];if((0,D.j4)(e)){i[e]=r;continue}const n=W[e],d=F(r,n);if(I.has(e)){if(l=!0,o[e]=d,!u)continue;r!==(n.default||0)&&(u=!1)}else e.startsWith("origin")?(c=!0,s[e]=d):a[e]=d}if(t.transform||(l||n?a.transform=function(e,{enableHardwareAcceleration:t=!0,allowTransformNone:r=!0},n,a){let i="";for(let t=0;t<j;t++){const r=N[t];void 0!==e[r]&&(i+=`${B[r]||r}(${e[r]}) `)}return t&&!e.z&&(i+="translateZ(0)"),i=i.trim(),a?i=a(e,n?"":i):r&&n&&(i="none"),i}(e.transform,r,u,n):a.transform&&(a.transform="none")),c){const{originX:e="50%",originY:t="50%",originZ:r=0}=s;a.transformOrigin=`${e} ${t} ${r}`}}const H=()=>({style:{},transform:{},transformOrigin:{},vars:{}});function $(e,t,r){for(const n in t)(0,L.S)(t[n])||O(n,r)||(e[n]=t[n])}function Z(e,t,r){const a={},i=function(e,t,r){const a={};return $(a,e.style||{},e),Object.assign(a,function({transformTemplate:e},t,r){return(0,n.useMemo)((()=>{const n=H();return U(n,t,{enableHardwareAcceleration:!r},e),Object.assign({},n.vars,n.style)}),[t])}(e,t,r)),e.transformValues?e.transformValues(a):a}(e,t,r);return e.drag&&!1!==e.dragListener&&(a.draggable=!1,i.userSelect=i.WebkitUserSelect=i.WebkitTouchCallout="none",i.touchAction=!0===e.drag?"none":"pan-"+("x"===e.drag?"y":"x")),void 0===e.tabIndex&&(e.onTap||e.onTapStart||e.whileTap)&&(a.tabIndex=0),a.style=i,a}const G=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","transformValues","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function q(e){return e.startsWith("while")||e.startsWith("drag")&&"draggable"!==e||e.startsWith("layout")||e.startsWith("onTap")||e.startsWith("onPan")||e.startsWith("onLayout")||G.has(e)}let Y=e=>!q(e);try{(K=require("@emotion/is-prop-valid").default)&&(Y=e=>e.startsWith("on")?!q(e):K(e))}catch(e){}var K;function X(e,t,r){return"string"==typeof e?e:z.px.transform(t+r*e)}const J={offset:"stroke-dashoffset",array:"stroke-dasharray"},Q={offset:"strokeDashoffset",array:"strokeDasharray"};function ee(e,{attrX:t,attrY:r,attrScale:n,originX:a,originY:i,pathLength:o,pathSpacing:s=1,pathOffset:l=0,...c},u,d,p){if(U(e,c,u,p),d)return void(e.style.viewBox&&(e.attrs.viewBox=e.style.viewBox));e.attrs=e.style,e.style={};const{attrs:m,style:f,dimensions:g}=e;m.transform&&(g&&(f.transform=m.transform),delete m.transform),g&&(void 0!==a||void 0!==i||f.transform)&&(f.transformOrigin=function(e,t,r){return`${X(t,e.x,e.width)} ${X(r,e.y,e.height)}`}(g,void 0!==a?a:.5,void 0!==i?i:.5)),void 0!==t&&(m.x=t),void 0!==r&&(m.y=r),void 0!==n&&(m.scale=n),void 0!==o&&function(e,t,r=1,n=0,a=!0){e.pathLength=1;const i=a?J:Q;e[i.offset]=z.px.transform(-n);const o=z.px.transform(t),s=z.px.transform(r);e[i.array]=`${o} ${s}`}(m,o,s,l,!1)}const te=()=>({...H(),attrs:{}}),re=e=>"string"==typeof e&&"svg"===e.toLowerCase();function ne(e,t,r,a){const i=(0,n.useMemo)((()=>{const r=te();return ee(r,t,{enableHardwareAcceleration:!1},re(a),e.transformTemplate),{...r.attrs,style:{...r.style}}}),[t]);if(e.style){const t={};$(t,e.style,e),i.style={...t,...i.style}}return i}function ae(e=!1){return(t,r,a,{latestValues:i},o)=>{const s=(P(t)?ne:Z)(r,i,o,t),l=function(e,t,r){const n={};for(const a in e)"values"===a&&"object"==typeof e.values||(Y(a)||!0===r&&q(a)||!t&&!q(a)||e.draggable&&a.startsWith("onDrag"))&&(n[a]=e[a]);return n}(r,"string"==typeof t,e),c={...l,...s,ref:a},{children:u}=r,d=(0,n.useMemo)((()=>(0,L.S)(u)?u.get():u),[u]);return(0,n.createElement)(t,{...c,children:d})}}function ie(e,{style:t,vars:r},n,a){Object.assign(e.style,t,a&&a.getProjectionStyles(n));for(const t in r)e.style.setProperty(t,r[t])}const oe=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function se(e,t,r,n){ie(e,t,void 0,n);for(const r in t.attrs)e.setAttribute(oe.has(r)?r:c(r),t.attrs[r])}function le(e,t){const{style:r}=e,n={};for(const a in r)((0,L.S)(r[a])||t.style&&(0,L.S)(t.style[a])||O(a,e))&&(n[a]=r[a]);return n}function ce(e,t){const r=le(e,t);for(const n in e)((0,L.S)(e[n])||(0,L.S)(t[n]))&&(r[-1!==N.indexOf(n)?"attr"+n.charAt(0).toUpperCase()+n.substring(1):n]=e[n]);return r}function ue(e,t,r,n={},a={}){return"function"==typeof t&&(t=t(void 0!==r?r:e.custom,n,a)),"string"==typeof t&&(t=e.variants&&e.variants[t]),"function"==typeof t&&(t=t(void 0!==r?r:e.custom,n,a)),t}var de=r(8601);const pe=e=>Array.isArray(e),me=e=>Boolean(e&&"object"==typeof e&&e.mix&&e.toValue),fe=e=>pe(e)?e[e.length-1]||0:e;function ge(e){const t=(0,L.S)(e)?e.get():e;return me(t)?t.toValue():t}const he=e=>(t,r)=>{const a=(0,n.useContext)(i),s=(0,n.useContext)(o.t),l=()=>function({scrapeMotionValuesFromProps:e,createRenderState:t,onMount:r},n,a,i){const o={latestValues:ye(n,a,i,e),renderState:t()};return r&&(o.mount=e=>r(n,e,o)),o}(e,t,a,s);return r?l():(0,de.M)(l)};function ye(e,t,r,n){const a={},i=n(e,{});for(const e in i)a[e]=ge(i[e]);let{initial:o,animate:s}=e;const l=h(e),c=y(e);t&&c&&!l&&!1!==e.inherit&&(void 0===o&&(o=t.initial),void 0===s&&(s=t.animate));let u=!!r&&!1===r.initial;u=u||!1===o;const d=u?s:o;return d&&"boolean"!=typeof d&&!m(d)&&(Array.isArray(d)?d:[d]).forEach((t=>{const r=ue(e,t);if(!r)return;const{transitionEnd:n,transition:i,...o}=r;for(const e in o){let t=o[e];Array.isArray(t)&&(t=t[u?t.length-1:0]),null!==t&&(a[e]=t)}for(const e in n)a[e]=n[e]})),a}var be=r(7745);const ve={useVisualState:he({scrapeMotionValuesFromProps:ce,createRenderState:te,onMount:(e,t,{renderState:r,latestValues:n})=>{be.Gt.read((()=>{try{r.dimensions="function"==typeof t.getBBox?t.getBBox():t.getBoundingClientRect()}catch(e){r.dimensions={x:0,y:0,width:0,height:0}}})),be.Gt.render((()=>{ee(r,n,{enableHardwareAcceleration:!1},re(t.tagName),e.transformTemplate),se(t,r)}))}})},we={useVisualState:he({scrapeMotionValuesFromProps:le,createRenderState:H})};function xe(e,t,r,n={passive:!0}){return e.addEventListener(t,r,n),()=>e.removeEventListener(t,r)}const _e=e=>"mouse"===e.pointerType?"number"!=typeof e.button||e.button<=0:!1!==e.isPrimary;function Ee(e,t="page"){return{point:{x:e[t+"X"],y:e[t+"Y"]}}}const ke=e=>t=>_e(t)&&e(t,Ee(t));function Se(e,t,r,n){return xe(e,t,ke(r),n)}var Ce=r(1339);function Re(e){let t=null;return()=>null===t&&(t=e,()=>{t=null})}const Ae=Re("dragHorizontal"),Pe=Re("dragVertical");function Te(e){let t=!1;if("y"===e)t=Pe();else if("x"===e)t=Ae();else{const e=Ae(),r=Pe();e&&r?t=()=>{e(),r()}:(e&&e(),r&&r())}return t}function Ne(){const e=Te(!0);return!e||(e(),!1)}class Ie{constructor(e){this.isMounted=!1,this.node=e}update(){}}function Oe(e,t){const r="pointer"+(t?"enter":"leave"),n="onHover"+(t?"Start":"End");return Se(e.current,r,((r,a)=>{if("touch"===r.pointerType||Ne())return;const i=e.getProps();e.animationState&&i.whileHover&&e.animationState.setActive("whileHover",t),i[n]&&be.Gt.update((()=>i[n](r,a)))}),{passive:!e.getProps()[n]})}const Le=(e,t)=>!!t&&(e===t||Le(e,t.parentElement));var Be=r(3659);function je(e,t){if(!t)return;const r=new PointerEvent("pointer"+e);t(r,Ee(r))}const De=new WeakMap,Fe=new WeakMap,Me=e=>{const t=De.get(e.target);t&&t(e)},ze=e=>{e.forEach(Me)};const Ve={some:0,all:1},We={inView:{Feature:class extends Ie{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){this.unmount();const{viewport:e={}}=this.node.getProps(),{root:t,margin:r,amount:n="some",once:a}=e,i={root:t?t.current:void 0,rootMargin:r,threshold:"number"==typeof n?n:Ve[n]};return function(e,t,r){const n=function({root:e,...t}){const r=e||document;Fe.has(r)||Fe.set(r,{});const n=Fe.get(r),a=JSON.stringify(t);return n[a]||(n[a]=new IntersectionObserver(ze,{root:e,...t})),n[a]}(t);return De.set(e,r),n.observe(e),()=>{De.delete(e),n.unobserve(e)}}(this.node.current,i,(e=>{const{isIntersecting:t}=e;if(this.isInView===t)return;if(this.isInView=t,a&&!t&&this.hasEnteredView)return;t&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",t);const{onViewportEnter:r,onViewportLeave:n}=this.node.getProps(),i=t?r:n;i&&i(e)}))}mount(){this.startObserver()}update(){if("undefined"==typeof IntersectionObserver)return;const{props:e,prevProps:t}=this.node;["amount","margin","root"].some(function({viewport:e={}},{viewport:t={}}={}){return r=>e[r]!==t[r]}(e,t))&&this.startObserver()}unmount(){}}},tap:{Feature:class extends Ie{constructor(){super(...arguments),this.removeStartListeners=Be.l,this.removeEndListeners=Be.l,this.removeAccessibleListeners=Be.l,this.startPointerPress=(e,t)=>{if(this.isPressing)return;this.removeEndListeners();const r=this.node.getProps(),n=Se(window,"pointerup",((e,t)=>{if(!this.checkPressEnd())return;const{onTap:r,onTapCancel:n,globalTapTarget:a}=this.node.getProps();be.Gt.update((()=>{a||Le(this.node.current,e.target)?r&&r(e,t):n&&n(e,t)}))}),{passive:!(r.onTap||r.onPointerUp)}),a=Se(window,"pointercancel",((e,t)=>this.cancelPress(e,t)),{passive:!(r.onTapCancel||r.onPointerCancel)});this.removeEndListeners=(0,Ce.F)(n,a),this.startPress(e,t)},this.startAccessiblePress=()=>{const e=xe(this.node.current,"keydown",(e=>{"Enter"!==e.key||this.isPressing||(this.removeEndListeners(),this.removeEndListeners=xe(this.node.current,"keyup",(e=>{"Enter"===e.key&&this.checkPressEnd()&&je("up",((e,t)=>{const{onTap:r}=this.node.getProps();r&&be.Gt.update((()=>r(e,t)))}))})),je("down",((e,t)=>{this.startPress(e,t)})))})),t=xe(this.node.current,"blur",(()=>{this.isPressing&&je("cancel",((e,t)=>this.cancelPress(e,t)))}));this.removeAccessibleListeners=(0,Ce.F)(e,t)}}startPress(e,t){this.isPressing=!0;const{onTapStart:r,whileTap:n}=this.node.getProps();n&&this.node.animationState&&this.node.animationState.setActive("whileTap",!0),r&&be.Gt.update((()=>r(e,t)))}checkPressEnd(){return this.removeEndListeners(),this.isPressing=!1,this.node.getProps().whileTap&&this.node.animationState&&this.node.animationState.setActive("whileTap",!1),!Ne()}cancelPress(e,t){if(!this.checkPressEnd())return;const{onTapCancel:r}=this.node.getProps();r&&be.Gt.update((()=>r(e,t)))}mount(){const e=this.node.getProps(),t=Se(e.globalTapTarget?window:this.node.current,"pointerdown",this.startPointerPress,{passive:!(e.onTapStart||e.onPointerStart)}),r=xe(this.node.current,"focus",this.startAccessiblePress);this.removeStartListeners=(0,Ce.F)(t,r)}unmount(){this.removeStartListeners(),this.removeEndListeners(),this.removeAccessibleListeners()}}},focus:{Feature:class extends Ie{constructor(){super(...arguments),this.isActive=!1}onFocus(){let e=!1;try{e=this.node.current.matches(":focus-visible")}catch(t){e=!0}e&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){this.isActive&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=(0,Ce.F)(xe(this.node.current,"focus",(()=>this.onFocus())),xe(this.node.current,"blur",(()=>this.onBlur())))}unmount(){}}},hover:{Feature:class extends Ie{mount(){this.unmount=(0,Ce.F)(Oe(this.node,!0),Oe(this.node,!1))}unmount(){}}}};function Ue(e,t){if(!Array.isArray(t))return!1;const r=t.length;if(r!==e.length)return!1;for(let n=0;n<r;n++)if(t[n]!==e[n])return!1;return!0}function He(e,t,r){const n=e.getProps();return ue(n,t,void 0!==r?r:n.custom,function(e){const t={};return e.values.forEach(((e,r)=>t[r]=e.get())),t}(e),function(e){const t={};return e.values.forEach(((e,r)=>t[r]=e.getVelocity())),t}(e))}var $e=r(5238),Ze=r(4833);const Ge=e=>Array.isArray(e)&&"number"==typeof e[0];function qe(e){return Boolean(!e||"string"==typeof e&&Ke[e]||Ge(e)||Array.isArray(e)&&e.every(qe))}const Ye=([e,t,r,n])=>`cubic-bezier(${e}, ${t}, ${r}, ${n})`,Ke={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:Ye([0,.65,.55,1]),circOut:Ye([.55,0,1,.45]),backIn:Ye([.31,.01,.66,-.59]),backOut:Ye([.33,1.53,.69,.99])};function Xe(e){if(e)return Ge(e)?Ye(e):Array.isArray(e)?e.map(Xe):Ke[e]}var Je=r(6542);const Qe=function(e){let t;return()=>(void 0===t&&(t=Object.hasOwnProperty.call(Element.prototype,"animate")),t)}(),et=new Set(["opacity","clipPath","filter","transform","backgroundColor"]);const tt={type:"spring",stiffness:500,damping:25,restSpeed:10},rt={type:"keyframes",duration:.8},nt={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},at=(e,{keyframes:t})=>t.length>2?rt:I.has(e)?e.startsWith("scale")?{type:"spring",stiffness:550,damping:0===t[1]?2*Math.sqrt(550):30,restSpeed:10}:tt:nt;var it=r(1614);const ot=(e,t)=>!("zIndex"===e||"number"!=typeof t&&!Array.isArray(t)&&("string"!=typeof t||!it.f.test(t)&&"0"!==t||t.startsWith("url(")));var st=r(7296);const lt=new Set(["brightness","contrast","saturate","opacity"]);function ct(e){const[t,r]=e.slice(0,-1).split("(");if("drop-shadow"===t)return e;const[n]=r.match(st.SY)||[];if(!n)return e;const a=r.replace(n,"");let i=lt.has(t)?1:0;return n!==r&&(i*=100),t+"("+i+a+")"}const ut=/([a-z-]*)\(.*?\)/g,dt={...it.f,getAnimatableNone:e=>{const t=e.match(ut);return t?t.map(ct).join(" "):e}};var pt=r(7739);const mt={...W,color:pt.y,backgroundColor:pt.y,outlineColor:pt.y,fill:pt.y,stroke:pt.y,borderColor:pt.y,borderTopColor:pt.y,borderRightColor:pt.y,borderBottomColor:pt.y,borderLeftColor:pt.y,filter:dt,WebkitFilter:dt},ft=e=>mt[e];function gt(e,t){let r=ft(e);return r!==dt&&(r=it.f),r.getAnimatableNone?r.getAnimatableNone(t):void 0}const ht=e=>/^0[^.\s]+$/.test(e);function yt(e){return"number"==typeof e?0===e:null!==e?"none"===e||"0"===e||ht(e):void 0}function bt(e,t){return e[t]||e.default||e}const vt=(e,t,r,n={})=>a=>{const i=bt(n,e)||{},o=i.delay||n.delay||0;let{elapsed:s=0}=n;s-=(0,Ze.f)(o);const l=function(e,t,r,n){const a=ot(t,r);let i;i=Array.isArray(r)?[...r]:[null,r];const o=void 0!==n.from?n.from:e.get();let s;const l=[];for(let e=0;e<i.length;e++)null===i[e]&&(i[e]=0===e?o:i[e-1]),yt(i[e])&&l.push(e),"string"==typeof i[e]&&"none"!==i[e]&&"0"!==i[e]&&(s=i[e]);if(a&&l.length&&s)for(let e=0;e<l.length;e++)i[l[e]]=gt(t,s);return i}(t,e,r,i),c=l[0],u=l[l.length-1],d=ot(e,c),p=ot(e,u);(0,$e.$)(d===p,`You are trying to animate ${e} from "${c}" to "${u}". ${c} is not an animatable value - to enable this animation set ${c} to a value animatable to ${u} via the \`style\` property.`);let m={keyframes:l,velocity:t.getVelocity(),ease:"easeOut",...i,delay:-s,onUpdate:e=>{t.set(e),i.onUpdate&&i.onUpdate(e)},onComplete:()=>{a(),i.onComplete&&i.onComplete()}};if(function({when:e,delay:t,delayChildren:r,staggerChildren:n,staggerDirection:a,repeat:i,repeatType:o,repeatDelay:s,from:l,elapsed:c,...u}){return!!Object.keys(u).length}(i)||(m={...m,...at(e,m)}),m.duration&&(m.duration=(0,Ze.f)(m.duration)),m.repeatDelay&&(m.repeatDelay=(0,Ze.f)(m.repeatDelay)),!d||!p||!1===i.type)return function({keyframes:e,delay:t,onUpdate:r,onComplete:n}){const a=()=>(r&&r(e[e.length-1]),n&&n(),{time:0,speed:1,duration:0,play:Be.l,pause:Be.l,stop:Be.l,then:e=>(e(),Promise.resolve()),cancel:Be.l,complete:Be.l});return t?(0,Je.L)({keyframes:[0,1],duration:0,delay:t,onComplete:a}):a()}(m);if(!n.isHandoff&&t.owner&&t.owner.current instanceof HTMLElement&&!t.owner.getProps().onUpdate){const r=function(e,t,{onUpdate:r,onComplete:n,...a}){if(!Qe()||!et.has(t)||a.repeatDelay||"mirror"===a.repeatType||0===a.damping||"inertia"===a.type)return!1;let i,o,s=!1,l=!1;const c=()=>{o=new Promise((e=>{i=e}))};c();let{keyframes:u,duration:d=300,ease:p,times:m}=a;if(((e,t)=>"spring"===t.type||"backgroundColor"===e||!qe(t.ease))(t,a)){const e=(0,Je.L)({...a,repeat:0,delay:0});let t={done:!1,value:u[0]};const r=[];let n=0;for(;!t.done&&n<2e4;)t=e.sample(n),r.push(t.value),n+=10;m=void 0,u=r,d=n-10,p="linear"}const f=function(e,t,r,{delay:n=0,duration:a,repeat:i=0,repeatType:o="loop",ease:s,times:l}={}){const c={[t]:r};l&&(c.offset=l);const u=Xe(s);return Array.isArray(u)&&(c.easing=u),e.animate(c,{delay:n,duration:a,easing:Array.isArray(u)?"linear":u,fill:"both",iterations:i+1,direction:"reverse"===o?"alternate":"normal"})}(e.owner.current,t,u,{...a,duration:d,ease:p,times:m}),g=()=>{l=!1,f.cancel()},h=()=>{l=!0,be.Gt.update(g),i(),c()};return f.onfinish=()=>{l||(e.set(function(e,{repeat:t,repeatType:r="loop"}){return e[t&&"loop"!==r&&t%2==1?0:e.length-1]}(u,a)),n&&n(),h())},{then:(e,t)=>o.then(e,t),attachTimeline:e=>(f.timeline=e,f.onfinish=null,Be.l),get time(){return(0,Ze.X)(f.currentTime||0)},set time(e){f.currentTime=(0,Ze.f)(e)},get speed(){return f.playbackRate},set speed(e){f.playbackRate=e},get duration(){return(0,Ze.X)(d)},play:()=>{s||(f.play(),(0,be.WG)(g))},pause:()=>f.pause(),stop:()=>{if(s=!0,"idle"===f.playState)return;const{currentTime:t}=f;if(t){const r=(0,Je.L)({...a,autoplay:!1});e.setWithVelocity(r.sample(t-10).value,r.sample(t).value,10)}h()},complete:()=>{l||f.finish()},cancel:h}}(t,e,m);if(r)return r}return(0,Je.L)(m)};function wt(e){return Boolean((0,L.S)(e)&&e.add)}const xt=e=>/^\-?\d*\.?\d+$/.test(e);var _t=r(4785);const Et=e=>t=>t.test(e),kt=[M.ai,z.px,z.KN,z.uj,z.vw,z.vh,{test:e=>"auto"===e,parse:e=>e}],St=e=>kt.find(Et(e)),Ct=[...kt,pt.y,it.f];function Rt(e,t,r){e.hasValue(t)?e.getValue(t).set(r):e.addValue(t,(0,_t.OQ)(r))}function At(e,t){if(t)return(t[e]||t.default||t).from}function Pt({protectedKeys:e,needsAnimating:t},r){const n=e.hasOwnProperty(r)&&!0!==t[r];return t[r]=!1,n}function Tt(e,t){const r=e.get();if(!Array.isArray(t))return r!==t;for(let e=0;e<t.length;e++)if(t[e]!==r)return!0}function Nt(e,t,{delay:r=0,transitionOverride:n,type:a}={}){let{transition:i=e.getDefaultTransition(),transitionEnd:o,...s}=e.makeTargetAnimatable(t);const l=e.getValue("willChange");n&&(i=n);const c=[],d=a&&e.animationState&&e.animationState.getState()[a];for(const t in s){const n=e.getValue(t),a=s[t];if(!n||void 0===a||d&&Pt(d,t))continue;const o={delay:r,elapsed:0,...bt(i||{},t)};if(window.HandoffAppearAnimations){const r=e.getProps()[u];if(r){const e=window.HandoffAppearAnimations(r,t,n,be.Gt);null!==e&&(o.elapsed=e,o.isHandoff=!0)}}let p=!o.isHandoff&&!Tt(n,a);if("spring"===o.type&&(n.getVelocity()||o.velocity)&&(p=!1),n.animation&&(p=!1),p)continue;n.start(vt(t,n,a,e.shouldReduceMotion&&I.has(t)?{type:!1}:o));const m=n.animation;wt(l)&&(l.add(t),m.then((()=>l.remove(t)))),c.push(m)}return o&&Promise.all(c).then((()=>{o&&function(e,t){const r=He(e,t);let{transitionEnd:n={},transition:a={},...i}=r?e.makeTargetAnimatable(r,!1):{};i={...i,...n};for(const t in i)Rt(e,t,fe(i[t]))}(e,o)})),c}function It(e,t,r={}){const n=He(e,t,r.custom);let{transition:a=e.getDefaultTransition()||{}}=n||{};r.transitionOverride&&(a=r.transitionOverride);const i=n?()=>Promise.all(Nt(e,n,r)):()=>Promise.resolve(),o=e.variantChildren&&e.variantChildren.size?(n=0)=>{const{delayChildren:i=0,staggerChildren:o,staggerDirection:s}=a;return function(e,t,r=0,n=0,a=1,i){const o=[],s=(e.variantChildren.size-1)*n,l=1===a?(e=0)=>e*n:(e=0)=>s-e*n;return Array.from(e.variantChildren).sort(Ot).forEach(((e,n)=>{e.notify("AnimationStart",t),o.push(It(e,t,{...i,delay:r+l(n)}).then((()=>e.notify("AnimationComplete",t))))})),Promise.all(o)}(e,t,i+n,o,s,r)}:()=>Promise.resolve(),{when:s}=a;if(s){const[e,t]="beforeChildren"===s?[i,o]:[o,i];return e().then((()=>t()))}return Promise.all([i(),o(r.delay)])}function Ot(e,t){return e.sortNodePosition(t)}const Lt=[...f].reverse(),Bt=f.length;function jt(e){let t=function(e){return t=>Promise.all(t.map((({animation:t,options:r})=>function(e,t,r={}){let n;if(e.notify("AnimationStart",t),Array.isArray(t)){const a=t.map((t=>It(e,t,r)));n=Promise.all(a)}else if("string"==typeof t)n=It(e,t,r);else{const a="function"==typeof t?He(e,t,r.custom):t;n=Promise.all(Nt(e,a,r))}return n.then((()=>e.notify("AnimationComplete",t)))}(e,t,r))))}(e);const r={animate:Dt(!0),whileInView:Dt(),whileHover:Dt(),whileTap:Dt(),whileDrag:Dt(),whileFocus:Dt(),exit:Dt()};let n=!0;const a=(t,r)=>{const n=He(e,r);if(n){const{transition:e,transitionEnd:r,...a}=n;t={...t,...a,...r}}return t};function i(i,o){const s=e.getProps(),l=e.getVariantContext(!0)||{},c=[],u=new Set;let d={},f=1/0;for(let t=0;t<Bt;t++){const y=Lt[t],b=r[y],v=void 0!==s[y]?s[y]:l[y],w=p(v),x=y===o?b.isActive:null;!1===x&&(f=t);let _=v===l[y]&&v!==s[y]&&w;if(_&&n&&e.manuallyAnimateOnMount&&(_=!1),b.protectedKeys={...d},!b.isActive&&null===x||!v&&!b.prevProp||m(v)||"boolean"==typeof v)continue;let E=(g=b.prevProp,("string"==typeof(h=v)?h!==g:!!Array.isArray(h)&&!Ue(h,g))||y===o&&b.isActive&&!_&&w||t>f&&w),k=!1;const S=Array.isArray(v)?v:[v];let C=S.reduce(a,{});!1===x&&(C={});const{prevResolvedValues:R={}}=b,A={...R,...C},P=e=>{E=!0,u.has(e)&&(k=!0,u.delete(e)),b.needsAnimating[e]=!0};for(const e in A){const t=C[e],r=R[e];if(d.hasOwnProperty(e))continue;let n=!1;n=pe(t)&&pe(r)?!Ue(t,r):t!==r,n?void 0!==t?P(e):u.add(e):void 0!==t&&u.has(e)?P(e):b.protectedKeys[e]=!0}b.prevProp=v,b.prevResolvedValues=C,b.isActive&&(d={...d,...C}),n&&e.blockInitialAnimation&&(E=!1),!E||_&&!k||c.push(...S.map((e=>({animation:e,options:{type:y,...i}}))))}var g,h;if(u.size){const t={};u.forEach((r=>{const n=e.getBaseTarget(r);void 0!==n&&(t[r]=n)})),c.push({animation:t})}let y=Boolean(c.length);return!n||!1!==s.initial&&s.initial!==s.animate||e.manuallyAnimateOnMount||(y=!1),n=!1,y?t(c):Promise.resolve()}return{animateChanges:i,setActive:function(t,n,a){var o;if(r[t].isActive===n)return Promise.resolve();null===(o=e.variantChildren)||void 0===o||o.forEach((e=>{var r;return null===(r=e.animationState)||void 0===r?void 0:r.setActive(t,n)})),r[t].isActive=n;const s=i(a,t);for(const e in r)r[e].protectedKeys={};return s},setAnimateFunction:function(r){t=r(e)},getState:()=>r}}function Dt(e=!1){return{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}let Ft=0;const Mt={animation:{Feature:class extends Ie{constructor(e){super(e),e.animationState||(e.animationState=jt(e))}updateAnimationControlsSubscription(){const{animate:e}=this.node.getProps();this.unmount(),m(e)&&(this.unmount=e.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){const{animate:e}=this.node.getProps(),{animate:t}=this.node.prevProps||{};e!==t&&this.updateAnimationControlsSubscription()}unmount(){}}},exit:{Feature:class extends Ie{constructor(){super(...arguments),this.id=Ft++}update(){if(!this.node.presenceContext)return;const{isPresent:e,onExitComplete:t,custom:r}=this.node.presenceContext,{isPresent:n}=this.node.prevPresenceContext||{};if(!this.node.animationState||e===n)return;const a=this.node.animationState.setActive("exit",!e,{custom:null!=r?r:this.node.getProps().custom});t&&!e&&a.then((()=>t(this.id)))}mount(){const{register:e}=this.node.presenceContext||{};e&&(this.unmount=e(this.id))}unmount(){}}}},zt=(e,t)=>Math.abs(e-t);class Vt{constructor(e,t,{transformPagePoint:r,contextWindow:n,dragSnapToOrigin:a=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!this.lastMoveEvent||!this.lastMoveEventInfo)return;const e=Ht(this.lastMoveEventInfo,this.history),t=null!==this.startEvent,r=function(e,t){const r=zt(e.x,t.x),n=zt(e.y,t.y);return Math.sqrt(r**2+n**2)}(e.offset,{x:0,y:0})>=3;if(!t&&!r)return;const{point:n}=e,{timestamp:a}=be.uv;this.history.push({...n,timestamp:a});const{onStart:i,onMove:o}=this.handlers;t||(i&&i(this.lastMoveEvent,e),this.startEvent=this.lastMoveEvent),o&&o(this.lastMoveEvent,e)},this.handlePointerMove=(e,t)=>{this.lastMoveEvent=e,this.lastMoveEventInfo=Wt(t,this.transformPagePoint),be.Gt.update(this.updatePoint,!0)},this.handlePointerUp=(e,t)=>{this.end();const{onEnd:r,onSessionEnd:n,resumeAnimation:a}=this.handlers;if(this.dragSnapToOrigin&&a&&a(),!this.lastMoveEvent||!this.lastMoveEventInfo)return;const i=Ht("pointercancel"===e.type?this.lastMoveEventInfo:Wt(t,this.transformPagePoint),this.history);this.startEvent&&r&&r(e,i),n&&n(e,i)},!_e(e))return;this.dragSnapToOrigin=a,this.handlers=t,this.transformPagePoint=r,this.contextWindow=n||window;const i=Wt(Ee(e),this.transformPagePoint),{point:o}=i,{timestamp:s}=be.uv;this.history=[{...o,timestamp:s}];const{onSessionStart:l}=t;l&&l(e,Ht(i,this.history)),this.removeListeners=(0,Ce.F)(Se(this.contextWindow,"pointermove",this.handlePointerMove),Se(this.contextWindow,"pointerup",this.handlePointerUp),Se(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(e){this.handlers=e}end(){this.removeListeners&&this.removeListeners(),(0,be.WG)(this.updatePoint)}}function Wt(e,t){return t?{point:t(e.point)}:e}function Ut(e,t){return{x:e.x-t.x,y:e.y-t.y}}function Ht({point:e},t){return{point:e,delta:Ut(e,Zt(t)),offset:Ut(e,$t(t)),velocity:Gt(t,.1)}}function $t(e){return e[0]}function Zt(e){return e[e.length-1]}function Gt(e,t){if(e.length<2)return{x:0,y:0};let r=e.length-1,n=null;const a=Zt(e);for(;r>=0&&(n=e[r],!(a.timestamp-n.timestamp>(0,Ze.f)(t)));)r--;if(!n)return{x:0,y:0};const i=(0,Ze.X)(a.timestamp-n.timestamp);if(0===i)return{x:0,y:0};const o={x:(a.x-n.x)/i,y:(a.y-n.y)/i};return o.x===1/0&&(o.x=0),o.y===1/0&&(o.y=0),o}var qt=r(7170),Yt=r(2839);function Kt(e){return e.max-e.min}function Xt(e,t=0,r=.01){return Math.abs(e-t)<=r}function Jt(e,t,r,n=.5){e.origin=n,e.originPoint=(0,Yt.j)(t.min,t.max,e.origin),e.scale=Kt(r)/Kt(t),(Xt(e.scale,1,1e-4)||isNaN(e.scale))&&(e.scale=1),e.translate=(0,Yt.j)(r.min,r.max,e.origin)-e.originPoint,(Xt(e.translate)||isNaN(e.translate))&&(e.translate=0)}function Qt(e,t,r,n){Jt(e.x,t.x,r.x,n?n.originX:void 0),Jt(e.y,t.y,r.y,n?n.originY:void 0)}function er(e,t,r){e.min=r.min+t.min,e.max=e.min+Kt(t)}function tr(e,t,r){e.min=t.min-r.min,e.max=e.min+Kt(t)}function rr(e,t,r){tr(e.x,t.x,r.x),tr(e.y,t.y,r.y)}var nr=r(2464);function ar(e,t,r){return{min:void 0!==t?e.min+t:void 0,max:void 0!==r?e.max+r-(e.max-e.min):void 0}}function ir(e,t){let r=t.min-e.min,n=t.max-e.max;return t.max-t.min<e.max-e.min&&([r,n]=[n,r]),{min:r,max:n}}const or=.35;function sr(e,t,r){return{min:lr(e,t),max:lr(e,r)}}function lr(e,t){return"number"==typeof e?e:e[t]||0}const cr=()=>({x:{translate:0,scale:1,origin:0,originPoint:0},y:{translate:0,scale:1,origin:0,originPoint:0}}),ur=()=>({x:{min:0,max:0},y:{min:0,max:0}});function dr(e){return[e("x"),e("y")]}function pr({top:e,left:t,right:r,bottom:n}){return{x:{min:t,max:r},y:{min:e,max:n}}}function mr(e){return void 0===e||1===e}function fr({scale:e,scaleX:t,scaleY:r}){return!mr(e)||!mr(t)||!mr(r)}function gr(e){return fr(e)||hr(e)||e.z||e.rotate||e.rotateX||e.rotateY}function hr(e){return yr(e.x)||yr(e.y)}function yr(e){return e&&"0%"!==e}function br(e,t,r){return r+t*(e-r)}function vr(e,t,r,n,a){return void 0!==a&&(e=br(e,a,n)),br(e,r,n)+t}function wr(e,t=0,r=1,n,a){e.min=vr(e.min,t,r,n,a),e.max=vr(e.max,t,r,n,a)}function xr(e,{x:t,y:r}){wr(e.x,t.translate,t.scale,t.originPoint),wr(e.y,r.translate,r.scale,r.originPoint)}function _r(e){return Number.isInteger(e)||e>1.0000000000001||e<.999999999999?e:1}function Er(e,t){e.min=e.min+t,e.max=e.max+t}function kr(e,t,[r,n,a]){const i=void 0!==t[a]?t[a]:.5,o=(0,Yt.j)(e.min,e.max,i);wr(e,t[r],t[n],o,t.scale)}const Sr=["x","scaleX","originX"],Cr=["y","scaleY","originY"];function Rr(e,t){kr(e.x,t,Sr),kr(e.y,t,Cr)}function Ar(e,t){return pr(function(e,t){if(!t)return e;const r=t({x:e.left,y:e.top}),n=t({x:e.right,y:e.bottom});return{top:r.y,left:r.x,bottom:n.y,right:n.x}}(e.getBoundingClientRect(),t))}const Pr=({current:e})=>e?e.ownerDocument.defaultView:null,Tr=new WeakMap;class Nr{constructor(e){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=ur(),this.visualElement=e}start(e,{snapToCursor:t=!1}={}){const{presenceContext:r}=this.visualElement;if(r&&!1===r.isPresent)return;const{dragSnapToOrigin:n}=this.getProps();this.panSession=new Vt(e,{onSessionStart:e=>{const{dragSnapToOrigin:r}=this.getProps();r?this.pauseAnimation():this.stopAnimation(),t&&this.snapToCursor(Ee(e,"page").point)},onStart:(e,t)=>{const{drag:r,dragPropagation:n,onDragStart:a}=this.getProps();if(r&&!n&&(this.openGlobalLock&&this.openGlobalLock(),this.openGlobalLock=Te(r),!this.openGlobalLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),dr((e=>{let t=this.getAxisMotionValue(e).get()||0;if(z.KN.test(t)){const{projection:r}=this.visualElement;if(r&&r.layout){const n=r.layout.layoutBox[e];n&&(t=Kt(n)*(parseFloat(t)/100))}}this.originPoint[e]=t})),a&&be.Gt.update((()=>a(e,t)),!1,!0);const{animationState:i}=this.visualElement;i&&i.setActive("whileDrag",!0)},onMove:(e,t)=>{const{dragPropagation:r,dragDirectionLock:n,onDirectionLock:a,onDrag:i}=this.getProps();if(!r&&!this.openGlobalLock)return;const{offset:o}=t;if(n&&null===this.currentDirection)return this.currentDirection=function(e,t=10){let r=null;return Math.abs(e.y)>t?r="y":Math.abs(e.x)>t&&(r="x"),r}(o),void(null!==this.currentDirection&&a&&a(this.currentDirection));this.updateAxis("x",t.point,o),this.updateAxis("y",t.point,o),this.visualElement.render(),i&&i(e,t)},onSessionEnd:(e,t)=>this.stop(e,t),resumeAnimation:()=>dr((e=>{var t;return"paused"===this.getAnimationState(e)&&(null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.play())}))},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:n,contextWindow:Pr(this.visualElement)})}stop(e,t){const r=this.isDragging;if(this.cancel(),!r)return;const{velocity:n}=t;this.startAnimation(n);const{onDragEnd:a}=this.getProps();a&&be.Gt.update((()=>a(e,t)))}cancel(){this.isDragging=!1;const{projection:e,animationState:t}=this.visualElement;e&&(e.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;const{dragPropagation:r}=this.getProps();!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),t&&t.setActive("whileDrag",!1)}updateAxis(e,t,r){const{drag:n}=this.getProps();if(!r||!Ir(e,n,this.currentDirection))return;const a=this.getAxisMotionValue(e);let i=this.originPoint[e]+r[e];this.constraints&&this.constraints[e]&&(i=function(e,{min:t,max:r},n){return void 0!==t&&e<t?e=n?(0,Yt.j)(t,e,n.min):Math.max(e,t):void 0!==r&&e>r&&(e=n?(0,Yt.j)(r,e,n.max):Math.min(e,r)),e}(i,this.constraints[e],this.elastic[e])),a.set(i)}resolveConstraints(){var e;const{dragConstraints:t,dragElastic:r}=this.getProps(),n=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):null===(e=this.visualElement.projection)||void 0===e?void 0:e.layout,a=this.constraints;t&&d(t)?this.constraints||(this.constraints=this.resolveRefConstraints()):this.constraints=!(!t||!n)&&function(e,{top:t,left:r,bottom:n,right:a}){return{x:ar(e.x,r,a),y:ar(e.y,t,n)}}(n.layoutBox,t),this.elastic=function(e=or){return!1===e?e=0:!0===e&&(e=or),{x:sr(e,"left","right"),y:sr(e,"top","bottom")}}(r),a!==this.constraints&&n&&this.constraints&&!this.hasMutatedConstraints&&dr((e=>{this.getAxisMotionValue(e)&&(this.constraints[e]=function(e,t){const r={};return void 0!==t.min&&(r.min=t.min-e.min),void 0!==t.max&&(r.max=t.max-e.min),r}(n.layoutBox[e],this.constraints[e]))}))}resolveRefConstraints(){const{dragConstraints:e,onMeasureDragConstraints:t}=this.getProps();if(!e||!d(e))return!1;const r=e.current;(0,$e.V)(null!==r,"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.");const{projection:n}=this.visualElement;if(!n||!n.layout)return!1;const a=function(e,t,r){const n=Ar(e,r),{scroll:a}=t;return a&&(Er(n.x,a.offset.x),Er(n.y,a.offset.y)),n}(r,n.root,this.visualElement.getTransformPagePoint());let i=function(e,t){return{x:ir(e.x,t.x),y:ir(e.y,t.y)}}(n.layout.layoutBox,a);if(t){const e=t(function({x:e,y:t}){return{top:t.min,right:e.max,bottom:t.max,left:e.min}}(i));this.hasMutatedConstraints=!!e,e&&(i=pr(e))}return i}startAnimation(e){const{drag:t,dragMomentum:r,dragElastic:n,dragTransition:a,dragSnapToOrigin:i,onDragTransitionEnd:o}=this.getProps(),s=this.constraints||{},l=dr((o=>{if(!Ir(o,t,this.currentDirection))return;let l=s&&s[o]||{};i&&(l={min:0,max:0});const c=n?200:1e6,u=n?40:1e7,d={type:"inertia",velocity:r?e[o]:0,bounceStiffness:c,bounceDamping:u,timeConstant:750,restDelta:1,restSpeed:10,...a,...l};return this.startAxisValueAnimation(o,d)}));return Promise.all(l).then(o)}startAxisValueAnimation(e,t){const r=this.getAxisMotionValue(e);return r.start(vt(e,r,0,t))}stopAnimation(){dr((e=>this.getAxisMotionValue(e).stop()))}pauseAnimation(){dr((e=>{var t;return null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.pause()}))}getAnimationState(e){var t;return null===(t=this.getAxisMotionValue(e).animation)||void 0===t?void 0:t.state}getAxisMotionValue(e){const t="_drag"+e.toUpperCase(),r=this.visualElement.getProps();return r[t]||this.visualElement.getValue(e,(r.initial?r.initial[e]:void 0)||0)}snapToCursor(e){dr((t=>{const{drag:r}=this.getProps();if(!Ir(t,r,this.currentDirection))return;const{projection:n}=this.visualElement,a=this.getAxisMotionValue(t);if(n&&n.layout){const{min:r,max:i}=n.layout.layoutBox[t];a.set(e[t]-(0,Yt.j)(r,i,.5))}}))}scalePositionWithinConstraints(){if(!this.visualElement.current)return;const{drag:e,dragConstraints:t}=this.getProps(),{projection:r}=this.visualElement;if(!d(t)||!r||!this.constraints)return;this.stopAnimation();const n={x:0,y:0};dr((e=>{const t=this.getAxisMotionValue(e);if(t){const r=t.get();n[e]=function(e,t){let r=.5;const n=Kt(e),a=Kt(t);return a>n?r=(0,qt.q)(t.min,t.max-n,e.min):n>a&&(r=(0,qt.q)(e.min,e.max-a,t.min)),(0,nr.q)(0,1,r)}({min:r,max:r},this.constraints[e])}}));const{transformTemplate:a}=this.visualElement.getProps();this.visualElement.current.style.transform=a?a({},""):"none",r.root&&r.root.updateScroll(),r.updateLayout(),this.resolveConstraints(),dr((t=>{if(!Ir(t,e,null))return;const r=this.getAxisMotionValue(t),{min:a,max:i}=this.constraints[t];r.set((0,Yt.j)(a,i,n[t]))}))}addListeners(){if(!this.visualElement.current)return;Tr.set(this.visualElement,this);const e=Se(this.visualElement.current,"pointerdown",(e=>{const{drag:t,dragListener:r=!0}=this.getProps();t&&r&&this.start(e)})),t=()=>{const{dragConstraints:e}=this.getProps();d(e)&&(this.constraints=this.resolveRefConstraints())},{projection:r}=this.visualElement,n=r.addEventListener("measure",t);r&&!r.layout&&(r.root&&r.root.updateScroll(),r.updateLayout()),t();const a=xe(window,"resize",(()=>this.scalePositionWithinConstraints())),i=r.addEventListener("didUpdate",(({delta:e,hasLayoutChanged:t})=>{this.isDragging&&t&&(dr((t=>{const r=this.getAxisMotionValue(t);r&&(this.originPoint[t]+=e[t].translate,r.set(r.get()+e[t].translate))})),this.visualElement.render())}));return()=>{a(),e(),n(),i&&i()}}getProps(){const e=this.visualElement.getProps(),{drag:t=!1,dragDirectionLock:r=!1,dragPropagation:n=!1,dragConstraints:a=!1,dragElastic:i=or,dragMomentum:o=!0}=e;return{...e,drag:t,dragDirectionLock:r,dragPropagation:n,dragConstraints:a,dragElastic:i,dragMomentum:o}}}function Ir(e,t,r){return!(!0!==t&&t!==e||null!==r&&r!==e)}const Or=e=>(t,r)=>{e&&be.Gt.update((()=>e(t,r)))};var Lr=r(9120);const Br={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function jr(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}const Dr={correct:(e,t)=>{if(!t.target)return e;if("string"==typeof e){if(!z.px.test(e))return e;e=parseFloat(e)}return`${jr(e,t.target.x)}% ${jr(e,t.target.y)}%`}},Fr={correct:(e,{treeScale:t,projectionDelta:r})=>{const n=e,a=it.f.parse(e);if(a.length>5)return n;const i=it.f.createTransformer(e),o="number"!=typeof a[0]?1:0,s=r.x.scale*t.x,l=r.y.scale*t.y;a[0+o]/=s,a[1+o]/=l;const c=(0,Yt.j)(s,l,.5);return"number"==typeof a[2+o]&&(a[2+o]/=c),"number"==typeof a[3+o]&&(a[3+o]/=c),i(a)}};class Mr extends n.Component{componentDidMount(){const{visualElement:e,layoutGroup:t,switchLayoutGroup:r,layoutId:n}=this.props,{projection:a}=e;var i;i=Vr,Object.assign(T,i),a&&(t.group&&t.group.add(a),r&&r.register&&n&&r.register(a),a.root.didUpdate(),a.addEventListener("animationComplete",(()=>{this.safeToRemove()})),a.setOptions({...a.options,onExitComplete:()=>this.safeToRemove()})),Br.hasEverUpdated=!0}getSnapshotBeforeUpdate(e){const{layoutDependency:t,visualElement:r,drag:n,isPresent:a}=this.props,i=r.projection;return i?(i.isPresent=a,n||e.layoutDependency!==t||void 0===t?i.willUpdate():this.safeToRemove(),e.isPresent!==a&&(a?i.promote():i.relegate()||be.Gt.postRender((()=>{const e=i.getStack();e&&e.members.length||this.safeToRemove()}))),null):null}componentDidUpdate(){const{projection:e}=this.props.visualElement;e&&(e.root.didUpdate(),queueMicrotask((()=>{!e.currentAnimation&&e.isLead()&&this.safeToRemove()})))}componentWillUnmount(){const{visualElement:e,layoutGroup:t,switchLayoutGroup:r}=this.props,{projection:n}=e;n&&(n.scheduleCheckAfterUnmount(),t&&t.group&&t.group.remove(n),r&&r.deregister&&r.deregister(n))}safeToRemove(){const{safeToRemove:e}=this.props;e&&e()}render(){return null}}function zr(e){const[t,r]=(0,Lr.xQ)(),a=(0,n.useContext)(_.L);return n.createElement(Mr,{...e,layoutGroup:a,switchLayoutGroup:(0,n.useContext)(E),isPresent:t,safeToRemove:r})}const Vr={borderRadius:{...Dr,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:Dr,borderTopRightRadius:Dr,borderBottomLeftRadius:Dr,borderBottomRightRadius:Dr,boxShadow:Fr};var Wr=r(2606),Ur=r(4868);const Hr=["TopLeft","TopRight","BottomLeft","BottomRight"],$r=Hr.length,Zr=e=>"string"==typeof e?parseFloat(e):e,Gr=e=>"number"==typeof e||z.px.test(e);function qr(e,t){return void 0!==e[t]?e[t]:e.borderRadius}const Yr=Xr(0,.5,Ur.yT),Kr=Xr(.5,.95,Be.l);function Xr(e,t,r){return n=>n<e?0:n>t?1:r((0,qt.q)(e,t,n))}function Jr(e,t){e.min=t.min,e.max=t.max}function Qr(e,t){Jr(e.x,t.x),Jr(e.y,t.y)}function en(e,t,r,n,a){return e=br(e-=t,1/r,n),void 0!==a&&(e=br(e,1/a,n)),e}function tn(e,t,[r,n,a],i,o){!function(e,t=0,r=1,n=.5,a,i=e,o=e){if(z.KN.test(t)&&(t=parseFloat(t),t=(0,Yt.j)(o.min,o.max,t/100)-o.min),"number"!=typeof t)return;let s=(0,Yt.j)(i.min,i.max,n);e===i&&(s-=t),e.min=en(e.min,t,r,s,a),e.max=en(e.max,t,r,s,a)}(e,t[r],t[n],t[a],t.scale,i,o)}const rn=["x","scaleX","originX"],nn=["y","scaleY","originY"];function an(e,t,r,n){tn(e.x,t,rn,r?r.x:void 0,n?n.x:void 0),tn(e.y,t,nn,r?r.y:void 0,n?n.y:void 0)}function on(e){return 0===e.translate&&1===e.scale}function sn(e){return on(e.x)&&on(e.y)}function ln(e,t){return Math.round(e.x.min)===Math.round(t.x.min)&&Math.round(e.x.max)===Math.round(t.x.max)&&Math.round(e.y.min)===Math.round(t.y.min)&&Math.round(e.y.max)===Math.round(t.y.max)}function cn(e){return Kt(e.x)/Kt(e.y)}var un=r(2358);class dn{constructor(){this.members=[]}add(e){(0,un.Kq)(this.members,e),e.scheduleRender()}remove(e){if((0,un.Ai)(this.members,e),e===this.prevLead&&(this.prevLead=void 0),e===this.lead){const e=this.members[this.members.length-1];e&&this.promote(e)}}relegate(e){const t=this.members.findIndex((t=>e===t));if(0===t)return!1;let r;for(let e=t;e>=0;e--){const t=this.members[e];if(!1!==t.isPresent){r=t;break}}return!!r&&(this.promote(r),!0)}promote(e,t){const r=this.lead;if(e!==r&&(this.prevLead=r,this.lead=e,e.show(),r)){r.instance&&r.scheduleRender(),e.scheduleRender(),e.resumeFrom=r,t&&(e.resumeFrom.preserveOpacity=!0),r.snapshot&&(e.snapshot=r.snapshot,e.snapshot.latestValues=r.animationValues||r.latestValues),e.root&&e.root.isUpdating&&(e.isLayoutDirty=!0);const{crossfade:n}=e.options;!1===n&&r.hide()}}exitAnimationComplete(){this.members.forEach((e=>{const{options:t,resumingFrom:r}=e;t.onExitComplete&&t.onExitComplete(),r&&r.options.onExitComplete&&r.options.onExitComplete()}))}scheduleRender(){this.members.forEach((e=>{e.instance&&e.scheduleRender(!1)}))}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}function pn(e,t,r){let n="";const a=e.x.translate/t.x,i=e.y.translate/t.y;if((a||i)&&(n=`translate3d(${a}px, ${i}px, 0) `),1===t.x&&1===t.y||(n+=`scale(${1/t.x}, ${1/t.y}) `),r){const{rotate:e,rotateX:t,rotateY:a}=r;e&&(n+=`rotate(${e}deg) `),t&&(n+=`rotateX(${t}deg) `),a&&(n+=`rotateY(${a}deg) `)}const o=e.x.scale*t.x,s=e.y.scale*t.y;return 1===o&&1===s||(n+=`scale(${o}, ${s})`),n||"none"}const mn=(e,t)=>e.depth-t.depth;class fn{constructor(){this.children=[],this.isDirty=!1}add(e){(0,un.Kq)(this.children,e),this.isDirty=!0}remove(e){(0,un.Ai)(this.children,e),this.isDirty=!0}forEach(e){this.isDirty&&this.children.sort(mn),this.isDirty=!1,this.children.forEach(e)}}const gn=["","X","Y","Z"],hn={visibility:"hidden"};let yn=0;const bn={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0};function vn({attachResizeListener:e,defaultParent:t,measureScroll:r,checkIsScrollRoot:n,resetTransform:a}){return class{constructor(e={},r=(null==t?void 0:t())){this.id=yn++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{var e;this.projectionUpdateScheduled=!1,bn.totalNodes=bn.resolvedTargetDeltas=bn.recalculatedProjection=0,this.nodes.forEach(_n),this.nodes.forEach(Pn),this.nodes.forEach(Tn),this.nodes.forEach(En),e=bn,window.MotionDebug&&window.MotionDebug.record(e)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=e,this.root=r?r.root||r:this,this.path=r?[...r.path,r]:[],this.parent=r,this.depth=r?r.depth+1:0;for(let e=0;e<this.path.length;e++)this.path[e].shouldResetTransform=!0;this.root===this&&(this.nodes=new fn)}addEventListener(e,t){return this.eventHandlers.has(e)||this.eventHandlers.set(e,new Wr.v),this.eventHandlers.get(e).add(t)}notifyListeners(e,...t){const r=this.eventHandlers.get(e);r&&r.notify(...t)}hasListeners(e){return this.eventHandlers.has(e)}mount(t,r=this.root.hasTreeAnimated){if(this.instance)return;var n;this.isSVG=(n=t)instanceof SVGElement&&"svg"!==n.tagName,this.instance=t;const{layoutId:a,layout:i,visualElement:o}=this.options;if(o&&!o.current&&o.mount(t),this.root.nodes.add(this),this.parent&&this.parent.children.add(this),r&&(i||a)&&(this.isLayoutDirty=!0),e){let r;const n=()=>this.root.updateBlockedByResize=!1;e(t,(()=>{this.root.updateBlockedByResize=!0,r&&r(),r=function(e,t){const r=performance.now(),n=({timestamp:t})=>{const a=t-r;a>=250&&((0,be.WG)(n),e(a-250))};return be.Gt.read(n,!0),()=>(0,be.WG)(n)}(n),Br.hasAnimatedSinceResize&&(Br.hasAnimatedSinceResize=!1,this.nodes.forEach(An))}))}a&&this.root.registerSharedNode(a,this),!1!==this.options.animate&&o&&(a||i)&&this.addEventListener("didUpdate",(({delta:e,hasLayoutChanged:t,hasRelativeTargetChanged:r,layout:n})=>{if(this.isTreeAnimationBlocked())return this.target=void 0,void(this.relativeTarget=void 0);const a=this.options.transition||o.getDefaultTransition()||jn,{onLayoutAnimationStart:i,onLayoutAnimationComplete:s}=o.getProps(),l=!this.targetLayout||!ln(this.targetLayout,n)||r,c=!t&&r;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||c||t&&(l||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(e,c);const t={...bt(a,"layout"),onPlay:i,onComplete:s};(o.shouldReduceMotion||this.options.layoutRoot)&&(t.delay=0,t.type=!1),this.startAnimation(t)}else t||An(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=n}))}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);const e=this.getStack();e&&e.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,(0,be.WG)(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){this.isUpdateBlocked()||(this.isUpdating=!0,this.nodes&&this.nodes.forEach(Nn),this.animationId++)}getTransformTemplate(){const{visualElement:e}=this.options;return e&&e.getProps().transformTemplate}willUpdate(e=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked())return void(this.options.onExitComplete&&this.options.onExitComplete());if(!this.root.isUpdating&&this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let e=0;e<this.path.length;e++){const t=this.path[e];t.shouldResetTransform=!0,t.updateScroll("snapshot"),t.options.layoutRoot&&t.willUpdate(!1)}const{layoutId:t,layout:r}=this.options;if(void 0===t&&!r)return;const n=this.getTransformTemplate();this.prevTransformTemplateValue=n?n(this.latestValues,""):void 0,this.updateSnapshot(),e&&this.notifyListeners("willUpdate")}update(){if(this.updateScheduled=!1,this.isUpdateBlocked())return this.unblockUpdate(),this.clearAllSnapshots(),void this.nodes.forEach(Sn);this.isUpdating||this.nodes.forEach(Cn),this.isUpdating=!1,this.nodes.forEach(Rn),this.nodes.forEach(wn),this.nodes.forEach(xn),this.clearAllSnapshots();const e=performance.now();be.uv.delta=(0,nr.q)(0,1e3/60,e-be.uv.timestamp),be.uv.timestamp=e,be.uv.isProcessing=!0,be.Ci.update.process(be.uv),be.Ci.preRender.process(be.uv),be.Ci.render.process(be.uv),be.uv.isProcessing=!1}didUpdate(){this.updateScheduled||(this.updateScheduled=!0,queueMicrotask((()=>this.update())))}clearAllSnapshots(){this.nodes.forEach(kn),this.sharedNodes.forEach(In)}scheduleUpdateProjection(){this.projectionUpdateScheduled||(this.projectionUpdateScheduled=!0,be.Gt.preRender(this.updateProjection,!1,!0))}scheduleCheckAfterUnmount(){be.Gt.postRender((()=>{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()}))}updateSnapshot(){!this.snapshot&&this.instance&&(this.snapshot=this.measure())}updateLayout(){if(!this.instance)return;if(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead()||this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let e=0;e<this.path.length;e++)this.path[e].updateScroll();const e=this.layout;this.layout=this.measure(!1),this.layoutCorrected=ur(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners("measure",this.layout.layoutBox);const{visualElement:t}=this.options;t&&t.notify("LayoutMeasure",this.layout.layoutBox,e?e.layoutBox:void 0)}updateScroll(e="measure"){let t=Boolean(this.options.layoutScroll&&this.instance);this.scroll&&this.scroll.animationId===this.root.animationId&&this.scroll.phase===e&&(t=!1),t&&(this.scroll={animationId:this.root.animationId,phase:e,isRoot:n(this.instance),offset:r(this.instance)})}resetTransform(){if(!a)return;const e=this.isLayoutDirty||this.shouldResetTransform,t=this.projectionDelta&&!sn(this.projectionDelta),r=this.getTransformTemplate(),n=r?r(this.latestValues,""):void 0,i=n!==this.prevTransformTemplateValue;e&&(t||gr(this.latestValues)||i)&&(a(this.instance,n),this.shouldResetTransform=!1,this.scheduleRender())}measure(e=!0){const t=this.measurePageBox();let r=this.removeElementScroll(t);var n;return e&&(r=this.removeTransform(r)),Mn((n=r).x),Mn(n.y),{animationId:this.root.animationId,measuredBox:t,layoutBox:r,latestValues:{},source:this.id}}measurePageBox(){const{visualElement:e}=this.options;if(!e)return ur();const t=e.measureViewportBox(),{scroll:r}=this.root;return r&&(Er(t.x,r.offset.x),Er(t.y,r.offset.y)),t}removeElementScroll(e){const t=ur();Qr(t,e);for(let r=0;r<this.path.length;r++){const n=this.path[r],{scroll:a,options:i}=n;if(n!==this.root&&a&&i.layoutScroll){if(a.isRoot){Qr(t,e);const{scroll:r}=this.root;r&&(Er(t.x,-r.offset.x),Er(t.y,-r.offset.y))}Er(t.x,a.offset.x),Er(t.y,a.offset.y)}}return t}applyTransform(e,t=!1){const r=ur();Qr(r,e);for(let e=0;e<this.path.length;e++){const n=this.path[e];!t&&n.options.layoutScroll&&n.scroll&&n!==n.root&&Rr(r,{x:-n.scroll.offset.x,y:-n.scroll.offset.y}),gr(n.latestValues)&&Rr(r,n.latestValues)}return gr(this.latestValues)&&Rr(r,this.latestValues),r}removeTransform(e){const t=ur();Qr(t,e);for(let e=0;e<this.path.length;e++){const r=this.path[e];if(!r.instance)continue;if(!gr(r.latestValues))continue;fr(r.latestValues)&&r.updateSnapshot();const n=ur();Qr(n,r.measurePageBox()),an(t,r.latestValues,r.snapshot?r.snapshot.layoutBox:void 0,n)}return gr(this.latestValues)&&an(t,this.latestValues),t}setTargetDelta(e){this.targetDelta=e,this.root.scheduleUpdateProjection(),this.isProjectionDirty=!0}setOptions(e){this.options={...this.options,...e,crossfade:void 0===e.crossfade||e.crossfade}}clearMeasurements(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1}forceRelativeParentToResolveTarget(){this.relativeParent&&this.relativeParent.resolvedRelativeTargetAt!==be.uv.timestamp&&this.relativeParent.resolveTargetDelta(!0)}resolveTargetDelta(e=!1){var t;const r=this.getLead();this.isProjectionDirty||(this.isProjectionDirty=r.isProjectionDirty),this.isTransformDirty||(this.isTransformDirty=r.isTransformDirty),this.isSharedProjectionDirty||(this.isSharedProjectionDirty=r.isSharedProjectionDirty);const n=Boolean(this.resumingFrom)||this!==r;if(!(e||n&&this.isSharedProjectionDirty||this.isProjectionDirty||(null===(t=this.parent)||void 0===t?void 0:t.isProjectionDirty)||this.attemptToResolveRelativeTarget))return;const{layout:a,layoutId:i}=this.options;if(this.layout&&(a||i)){if(this.resolvedRelativeTargetAt=be.uv.timestamp,!this.targetDelta&&!this.relativeTarget){const e=this.getClosestProjectingParent();e&&e.layout&&1!==this.animationProgress?(this.relativeParent=e,this.forceRelativeParentToResolveTarget(),this.relativeTarget=ur(),this.relativeTargetOrigin=ur(),rr(this.relativeTargetOrigin,this.layout.layoutBox,e.layout.layoutBox),Qr(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}if(this.relativeTarget||this.targetDelta){var o,s,l;if(this.target||(this.target=ur(),this.targetWithTransforms=ur()),this.relativeTarget&&this.relativeTargetOrigin&&this.relativeParent&&this.relativeParent.target?(this.forceRelativeParentToResolveTarget(),o=this.target,s=this.relativeTarget,l=this.relativeParent.target,er(o.x,s.x,l.x),er(o.y,s.y,l.y)):this.targetDelta?(Boolean(this.resumingFrom)?this.target=this.applyTransform(this.layout.layoutBox):Qr(this.target,this.layout.layoutBox),xr(this.target,this.targetDelta)):Qr(this.target,this.layout.layoutBox),this.attemptToResolveRelativeTarget){this.attemptToResolveRelativeTarget=!1;const e=this.getClosestProjectingParent();e&&Boolean(e.resumingFrom)===Boolean(this.resumingFrom)&&!e.options.layoutScroll&&e.target&&1!==this.animationProgress?(this.relativeParent=e,this.forceRelativeParentToResolveTarget(),this.relativeTarget=ur(),this.relativeTargetOrigin=ur(),rr(this.relativeTargetOrigin,this.target,e.target),Qr(this.relativeTarget,this.relativeTargetOrigin)):this.relativeParent=this.relativeTarget=void 0}bn.resolvedTargetDeltas++}}}getClosestProjectingParent(){if(this.parent&&!fr(this.parent.latestValues)&&!hr(this.parent.latestValues))return this.parent.isProjecting()?this.parent:this.parent.getClosestProjectingParent()}isProjecting(){return Boolean((this.relativeTarget||this.targetDelta||this.options.layoutRoot)&&this.layout)}calcProjection(){var e;const t=this.getLead(),r=Boolean(this.resumingFrom)||this!==t;let n=!0;if((this.isProjectionDirty||(null===(e=this.parent)||void 0===e?void 0:e.isProjectionDirty))&&(n=!1),r&&(this.isSharedProjectionDirty||this.isTransformDirty)&&(n=!1),this.resolvedRelativeTargetAt===be.uv.timestamp&&(n=!1),n)return;const{layout:a,layoutId:i}=this.options;if(this.isTreeAnimating=Boolean(this.parent&&this.parent.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!this.layout||!a&&!i)return;Qr(this.layoutCorrected,this.layout.layoutBox);const o=this.treeScale.x,s=this.treeScale.y;!function(e,t,r,n=!1){const a=r.length;if(!a)return;let i,o;t.x=t.y=1;for(let s=0;s<a;s++){i=r[s],o=i.projectionDelta;const a=i.instance;a&&a.style&&"contents"===a.style.display||(n&&i.options.layoutScroll&&i.scroll&&i!==i.root&&Rr(e,{x:-i.scroll.offset.x,y:-i.scroll.offset.y}),o&&(t.x*=o.x.scale,t.y*=o.y.scale,xr(e,o)),n&&gr(i.latestValues)&&Rr(e,i.latestValues))}t.x=_r(t.x),t.y=_r(t.y)}(this.layoutCorrected,this.treeScale,this.path,r),!t.layout||t.target||1===this.treeScale.x&&1===this.treeScale.y||(t.target=t.layout.layoutBox);const{target:l}=t;if(!l)return void(this.projectionTransform&&(this.projectionDelta=cr(),this.projectionTransform="none",this.scheduleRender()));this.projectionDelta||(this.projectionDelta=cr(),this.projectionDeltaWithTransform=cr());const c=this.projectionTransform;Qt(this.projectionDelta,this.layoutCorrected,l,this.latestValues),this.projectionTransform=pn(this.projectionDelta,this.treeScale),this.projectionTransform===c&&this.treeScale.x===o&&this.treeScale.y===s||(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",l)),bn.recalculatedProjection++}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(e=!0){if(this.options.scheduleRender&&this.options.scheduleRender(),e){const e=this.getStack();e&&e.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}setAnimationOrigin(e,t=!1){const r=this.snapshot,n=r?r.latestValues:{},a={...this.latestValues},i=cr();this.relativeParent&&this.relativeParent.options.layoutRoot||(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!t;const o=ur(),s=(r?r.source:void 0)!==(this.layout?this.layout.source:void 0),l=this.getStack(),c=!l||l.members.length<=1,u=Boolean(s&&!c&&!0===this.options.crossfade&&!this.path.some(Bn));let d;this.animationProgress=0,this.mixTargetDelta=t=>{const r=t/1e3;var l,p,m,f,g,h;On(i.x,e.x,r),On(i.y,e.y,r),this.setTargetDelta(i),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout&&(rr(o,this.layout.layoutBox,this.relativeParent.layout.layoutBox),m=this.relativeTarget,f=this.relativeTargetOrigin,g=o,h=r,Ln(m.x,f.x,g.x,h),Ln(m.y,f.y,g.y,h),d&&(l=this.relativeTarget,p=d,l.x.min===p.x.min&&l.x.max===p.x.max&&l.y.min===p.y.min&&l.y.max===p.y.max)&&(this.isProjectionDirty=!1),d||(d=ur()),Qr(d,this.relativeTarget)),s&&(this.animationValues=a,function(e,t,r,n,a,i){a?(e.opacity=(0,Yt.j)(0,void 0!==r.opacity?r.opacity:1,Yr(n)),e.opacityExit=(0,Yt.j)(void 0!==t.opacity?t.opacity:1,0,Kr(n))):i&&(e.opacity=(0,Yt.j)(void 0!==t.opacity?t.opacity:1,void 0!==r.opacity?r.opacity:1,n));for(let a=0;a<$r;a++){const i=`border${Hr[a]}Radius`;let o=qr(t,i),s=qr(r,i);void 0===o&&void 0===s||(o||(o=0),s||(s=0),0===o||0===s||Gr(o)===Gr(s)?(e[i]=Math.max((0,Yt.j)(Zr(o),Zr(s),n),0),(z.KN.test(s)||z.KN.test(o))&&(e[i]+="%")):e[i]=s)}(t.rotate||r.rotate)&&(e.rotate=(0,Yt.j)(t.rotate||0,r.rotate||0,n))}(a,n,this.latestValues,r,u,c)),this.root.scheduleUpdateProjection(),this.scheduleRender(),this.animationProgress=r},this.mixTargetDelta(this.options.layoutRoot?1e3:0)}startAnimation(e){this.notifyListeners("animationStart"),this.currentAnimation&&this.currentAnimation.stop(),this.resumingFrom&&this.resumingFrom.currentAnimation&&this.resumingFrom.currentAnimation.stop(),this.pendingAnimation&&((0,be.WG)(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=be.Gt.update((()=>{Br.hasAnimatedSinceResize=!0,this.currentAnimation=function(e,t,r){const n=(0,L.S)(0)?0:(0,_t.OQ)(0);return n.start(vt("",n,1e3,r)),n.animation}(0,0,{...e,onUpdate:t=>{this.mixTargetDelta(t),e.onUpdate&&e.onUpdate(t)},onComplete:()=>{e.onComplete&&e.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0}))}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);const e=this.getStack();e&&e.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(1e3),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){const e=this.getLead();let{targetWithTransforms:t,target:r,layout:n,latestValues:a}=e;if(t&&r&&n){if(this!==e&&this.layout&&n&&zn(this.options.animationType,this.layout.layoutBox,n.layoutBox)){r=this.target||ur();const t=Kt(this.layout.layoutBox.x);r.x.min=e.target.x.min,r.x.max=r.x.min+t;const n=Kt(this.layout.layoutBox.y);r.y.min=e.target.y.min,r.y.max=r.y.min+n}Qr(t,r),Rr(t,a),Qt(this.projectionDeltaWithTransform,this.layoutCorrected,t,a)}}registerSharedNode(e,t){this.sharedNodes.has(e)||this.sharedNodes.set(e,new dn),this.sharedNodes.get(e).add(t);const r=t.options.initialPromotionConfig;t.promote({transition:r?r.transition:void 0,preserveFollowOpacity:r&&r.shouldPreserveFollowOpacity?r.shouldPreserveFollowOpacity(t):void 0})}isLead(){const e=this.getStack();return!e||e.lead===this}getLead(){var e;const{layoutId:t}=this.options;return t&&(null===(e=this.getStack())||void 0===e?void 0:e.lead)||this}getPrevLead(){var e;const{layoutId:t}=this.options;return t?null===(e=this.getStack())||void 0===e?void 0:e.prevLead:void 0}getStack(){const{layoutId:e}=this.options;if(e)return this.root.sharedNodes.get(e)}promote({needsReset:e,transition:t,preserveFollowOpacity:r}={}){const n=this.getStack();n&&n.promote(this,r),e&&(this.projectionDelta=void 0,this.needsReset=!0),t&&this.setOptions({transition:t})}relegate(){const e=this.getStack();return!!e&&e.relegate(this)}resetRotation(){const{visualElement:e}=this.options;if(!e)return;let t=!1;const{latestValues:r}=e;if((r.rotate||r.rotateX||r.rotateY||r.rotateZ)&&(t=!0),!t)return;const n={};for(let t=0;t<gn.length;t++){const a="rotate"+gn[t];r[a]&&(n[a]=r[a],e.setStaticValue(a,0))}e.render();for(const t in n)e.setStaticValue(t,n[t]);e.scheduleRender()}getProjectionStyles(e){var t,r;if(!this.instance||this.isSVG)return;if(!this.isVisible)return hn;const n={visibility:""},a=this.getTransformTemplate();if(this.needsReset)return this.needsReset=!1,n.opacity="",n.pointerEvents=ge(null==e?void 0:e.pointerEvents)||"",n.transform=a?a(this.latestValues,""):"none",n;const i=this.getLead();if(!this.projectionDelta||!this.layout||!i.target){const t={};return this.options.layoutId&&(t.opacity=void 0!==this.latestValues.opacity?this.latestValues.opacity:1,t.pointerEvents=ge(null==e?void 0:e.pointerEvents)||""),this.hasProjected&&!gr(this.latestValues)&&(t.transform=a?a({},""):"none",this.hasProjected=!1),t}const o=i.animationValues||i.latestValues;this.applyTransformsToTarget(),n.transform=pn(this.projectionDeltaWithTransform,this.treeScale,o),a&&(n.transform=a(o,n.transform));const{x:s,y:l}=this.projectionDelta;n.transformOrigin=`${100*s.origin}% ${100*l.origin}% 0`,i.animationValues?n.opacity=i===this?null!==(r=null!==(t=o.opacity)&&void 0!==t?t:this.latestValues.opacity)&&void 0!==r?r:1:this.preserveOpacity?this.latestValues.opacity:o.opacityExit:n.opacity=i===this?void 0!==o.opacity?o.opacity:"":void 0!==o.opacityExit?o.opacityExit:0;for(const e in T){if(void 0===o[e])continue;const{correct:t,applyTo:r}=T[e],a="none"===n.transform?o[e]:t(o[e],i);if(r){const e=r.length;for(let t=0;t<e;t++)n[r[t]]=a}else n[e]=a}return this.options.layoutId&&(n.pointerEvents=i===this?ge(null==e?void 0:e.pointerEvents)||"":"none"),n}clearSnapshot(){this.resumeFrom=this.snapshot=void 0}resetTree(){this.root.nodes.forEach((e=>{var t;return null===(t=e.currentAnimation)||void 0===t?void 0:t.stop()})),this.root.nodes.forEach(Sn),this.root.sharedNodes.clear()}}}function wn(e){e.updateLayout()}function xn(e){var t;const r=(null===(t=e.resumeFrom)||void 0===t?void 0:t.snapshot)||e.snapshot;if(e.isLead()&&e.layout&&r&&e.hasListeners("didUpdate")){const{layoutBox:t,measuredBox:n}=e.layout,{animationType:a}=e.options,i=r.source!==e.layout.source;"size"===a?dr((e=>{const n=i?r.measuredBox[e]:r.layoutBox[e],a=Kt(n);n.min=t[e].min,n.max=n.min+a})):zn(a,r.layoutBox,t)&&dr((n=>{const a=i?r.measuredBox[n]:r.layoutBox[n],o=Kt(t[n]);a.max=a.min+o,e.relativeTarget&&!e.currentAnimation&&(e.isProjectionDirty=!0,e.relativeTarget[n].max=e.relativeTarget[n].min+o)}));const o=cr();Qt(o,t,r.layoutBox);const s=cr();i?Qt(s,e.applyTransform(n,!0),r.measuredBox):Qt(s,t,r.layoutBox);const l=!sn(o);let c=!1;if(!e.resumeFrom){const n=e.getClosestProjectingParent();if(n&&!n.resumeFrom){const{snapshot:a,layout:i}=n;if(a&&i){const o=ur();rr(o,r.layoutBox,a.layoutBox);const s=ur();rr(s,t,i.layoutBox),ln(o,s)||(c=!0),n.options.layoutRoot&&(e.relativeTarget=s,e.relativeTargetOrigin=o,e.relativeParent=n)}}}e.notifyListeners("didUpdate",{layout:t,snapshot:r,delta:s,layoutDelta:o,hasLayoutChanged:l,hasRelativeTargetChanged:c})}else if(e.isLead()){const{onExitComplete:t}=e.options;t&&t()}e.options.transition=void 0}function _n(e){bn.totalNodes++,e.parent&&(e.isProjecting()||(e.isProjectionDirty=e.parent.isProjectionDirty),e.isSharedProjectionDirty||(e.isSharedProjectionDirty=Boolean(e.isProjectionDirty||e.parent.isProjectionDirty||e.parent.isSharedProjectionDirty)),e.isTransformDirty||(e.isTransformDirty=e.parent.isTransformDirty))}function En(e){e.isProjectionDirty=e.isSharedProjectionDirty=e.isTransformDirty=!1}function kn(e){e.clearSnapshot()}function Sn(e){e.clearMeasurements()}function Cn(e){e.isLayoutDirty=!1}function Rn(e){const{visualElement:t}=e.options;t&&t.getProps().onBeforeLayoutMeasure&&t.notify("BeforeLayoutMeasure"),e.resetTransform()}function An(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0,e.isProjectionDirty=!0}function Pn(e){e.resolveTargetDelta()}function Tn(e){e.calcProjection()}function Nn(e){e.resetRotation()}function In(e){e.removeLeadSnapshot()}function On(e,t,r){e.translate=(0,Yt.j)(t.translate,0,r),e.scale=(0,Yt.j)(t.scale,1,r),e.origin=t.origin,e.originPoint=t.originPoint}function Ln(e,t,r,n){e.min=(0,Yt.j)(t.min,r.min,n),e.max=(0,Yt.j)(t.max,r.max,n)}function Bn(e){return e.animationValues&&void 0!==e.animationValues.opacityExit}const jn={duration:.45,ease:[.4,0,.1,1]},Dn=e=>"undefined"!=typeof navigator&&navigator.userAgent.toLowerCase().includes(e),Fn=Dn("applewebkit/")&&!Dn("chrome/")?Math.round:Be.l;function Mn(e){e.min=Fn(e.min),e.max=Fn(e.max)}function zn(e,t,r){return"position"===e||"preserve-aspect"===e&&!Xt(cn(t),cn(r),.2)}const Vn=vn({attachResizeListener:(e,t)=>xe(e,"resize",t),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),Wn={current:void 0},Un=vn({measureScroll:e=>({x:e.scrollLeft,y:e.scrollTop}),defaultParent:()=>{if(!Wn.current){const e=new Vn({});e.mount(window),e.setOptions({layoutScroll:!0}),Wn.current=e}return Wn.current},resetTransform:(e,t)=>{e.style.transform=void 0!==t?t:"none"},checkIsScrollRoot:e=>Boolean("fixed"===window.getComputedStyle(e).position)}),Hn={pan:{Feature:class extends Ie{constructor(){super(...arguments),this.removePointerDownListener=Be.l}onPointerDown(e){this.session=new Vt(e,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:Pr(this.node)})}createPanHandlers(){const{onPanSessionStart:e,onPanStart:t,onPan:r,onPanEnd:n}=this.node.getProps();return{onSessionStart:Or(e),onStart:Or(t),onMove:r,onEnd:(e,t)=>{delete this.session,n&&be.Gt.update((()=>n(e,t)))}}}mount(){this.removePointerDownListener=Se(this.node.current,"pointerdown",(e=>this.onPointerDown(e)))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}},drag:{Feature:class extends Ie{constructor(e){super(e),this.removeGroupControls=Be.l,this.removeListeners=Be.l,this.controls=new Nr(e)}mount(){const{dragControls:e}=this.node.getProps();e&&(this.removeGroupControls=e.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||Be.l}unmount(){this.removeGroupControls(),this.removeListeners()}},ProjectionNode:Un,MeasureLayout:zr}},$n=/var\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\)/;function Zn(e,t,r=1){(0,$e.V)(r<=4,`Max CSS variable fallback depth detected in property "${e}". This may indicate a circular fallback dependency.`);const[n,a]=function(e){const t=$n.exec(e);if(!t)return[,];const[,r,n]=t;return[r,n]}(e);if(!n)return;const i=window.getComputedStyle(t).getPropertyValue(n);if(i){const e=i.trim();return xt(e)?parseFloat(e):e}return(0,D.pG)(a)?Zn(a,t,r+1):a}const Gn=new Set(["width","height","top","left","right","bottom","x","y","translateX","translateY"]),qn=e=>Gn.has(e),Yn=e=>e===M.ai||e===z.px,Kn=(e,t)=>parseFloat(e.split(", ")[t]),Xn=(e,t)=>(r,{transform:n})=>{if("none"===n||!n)return 0;const a=n.match(/^matrix3d\((.+)\)$/);if(a)return Kn(a[1],t);{const t=n.match(/^matrix\((.+)\)$/);return t?Kn(t[1],e):0}},Jn=new Set(["x","y","z"]),Qn=N.filter((e=>!Jn.has(e))),ea={width:({x:e},{paddingLeft:t="0",paddingRight:r="0"})=>e.max-e.min-parseFloat(t)-parseFloat(r),height:({y:e},{paddingTop:t="0",paddingBottom:r="0"})=>e.max-e.min-parseFloat(t)-parseFloat(r),top:(e,{top:t})=>parseFloat(t),left:(e,{left:t})=>parseFloat(t),bottom:({y:e},{top:t})=>parseFloat(t)+(e.max-e.min),right:({x:e},{left:t})=>parseFloat(t)+(e.max-e.min),x:Xn(4,13),y:Xn(5,14)};ea.translateX=ea.x,ea.translateY=ea.y;function ta(e,t,r,n){return(e=>Object.keys(e).some(qn))(t)?((e,t,r={},n={})=>{t={...t},n={...n};const a=Object.keys(t).filter(qn);let i=[],o=!1;const s=[];if(a.forEach((a=>{const l=e.getValue(a);if(!e.hasValue(a))return;let c=r[a],u=St(c);const d=t[a];let p;if(pe(d)){const e=d.length,t=null===d[0]?1:0;c=d[t],u=St(c);for(let r=t;r<e&&null!==d[r];r++)p?(0,$e.V)(St(d[r])===p,"All keyframes must be of the same type"):(p=St(d[r]),(0,$e.V)(p===u||Yn(u)&&Yn(p),"Keyframes must be of the same dimension as the current value"))}else p=St(d);if(u!==p)if(Yn(u)&&Yn(p)){const e=l.get();"string"==typeof e&&l.set(parseFloat(e)),"string"==typeof d?t[a]=parseFloat(d):Array.isArray(d)&&p===z.px&&(t[a]=d.map(parseFloat))}else(null==u?void 0:u.transform)&&(null==p?void 0:p.transform)&&(0===c||0===d)?0===c?l.set(p.transform(c)):t[a]=u.transform(d):(o||(i=function(e){const t=[];return Qn.forEach((r=>{const n=e.getValue(r);void 0!==n&&(t.push([r,n.get()]),n.set(r.startsWith("scale")?1:0))})),t.length&&e.render(),t}(e),o=!0),s.push(a),n[a]=void 0!==n[a]?n[a]:t[a],l.jump(d))})),s.length){const r=s.indexOf("height")>=0?window.pageYOffset:null,a=((e,t,r)=>{const n=t.measureViewportBox(),a=t.current,i=getComputedStyle(a),{display:o}=i,s={};"none"===o&&t.setStaticValue("display",e.display||"block"),r.forEach((e=>{s[e]=ea[e](n,i)})),t.render();const l=t.measureViewportBox();return r.forEach((r=>{const n=t.getValue(r);n&&n.jump(s[r]),e[r]=ea[r](l,i)})),e})(t,e,s);return i.length&&i.forEach((([t,r])=>{e.getValue(t).set(r)})),e.render(),x.B&&null!==r&&window.scrollTo({top:r}),{target:a,transitionEnd:n}}return{target:t,transitionEnd:n}})(e,t,r,n):{target:t,transitionEnd:n}}const ra={current:null},na={current:!1},aa=new WeakMap,ia=Object.keys(w),oa=ia.length,sa=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"],la=g.length;class ca{constructor({parent:e,props:t,presenceContext:r,reducedMotionConfig:n,visualState:a},i={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.scheduleRender=()=>be.Gt.render(this.render,!1,!0);const{latestValues:o,renderState:s}=a;this.latestValues=o,this.baseTarget={...o},this.initialValues=t.initial?{...o}:{},this.renderState=s,this.parent=e,this.props=t,this.presenceContext=r,this.depth=e?e.depth+1:0,this.reducedMotionConfig=n,this.options=i,this.isControllingVariants=h(t),this.isVariantNode=y(t),this.isVariantNode&&(this.variantChildren=new Set),this.manuallyAnimateOnMount=Boolean(e&&e.current);const{willChange:l,...c}=this.scrapeMotionValuesFromProps(t,{});for(const e in c){const t=c[e];void 0!==o[e]&&(0,L.S)(t)&&(t.set(o[e],!1),wt(l)&&l.add(e))}}scrapeMotionValuesFromProps(e,t){return{}}mount(e){this.current=e,aa.set(e,this),this.projection&&!this.projection.instance&&this.projection.mount(e),this.parent&&this.isVariantNode&&!this.isControllingVariants&&(this.removeFromVariantTree=this.parent.addVariantChild(this)),this.values.forEach(((e,t)=>this.bindToMotionValue(t,e))),na.current||function(){if(na.current=!0,x.B)if(window.matchMedia){const e=window.matchMedia("(prefers-reduced-motion)"),t=()=>ra.current=e.matches;e.addListener(t),t()}else ra.current=!1}(),this.shouldReduceMotion="never"!==this.reducedMotionConfig&&("always"===this.reducedMotionConfig||ra.current),this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){aa.delete(this.current),this.projection&&this.projection.unmount(),(0,be.WG)(this.notifyUpdate),(0,be.WG)(this.render),this.valueSubscriptions.forEach((e=>e())),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this);for(const e in this.events)this.events[e].clear();for(const e in this.features)this.features[e].unmount();this.current=null}bindToMotionValue(e,t){const r=I.has(e),n=t.on("change",(t=>{this.latestValues[e]=t,this.props.onUpdate&&be.Gt.update(this.notifyUpdate,!1,!0),r&&this.projection&&(this.projection.isTransformDirty=!0)})),a=t.on("renderRequest",this.scheduleRender);this.valueSubscriptions.set(e,(()=>{n(),a()}))}sortNodePosition(e){return this.current&&this.sortInstanceNodePosition&&this.type===e.type?this.sortInstanceNodePosition(this.current,e.current):0}loadFeatures({children:e,...t},r,n,a){let i,o;for(let e=0;e<oa;e++){const r=ia[e],{isEnabled:n,Feature:a,ProjectionNode:s,MeasureLayout:l}=w[r];s&&(i=s),n(t)&&(!this.features[r]&&a&&(this.features[r]=new a(this)),l&&(o=l))}if(("html"===this.type||"svg"===this.type)&&!this.projection&&i){this.projection=new i(this.latestValues,this.parent&&this.parent.projection);const{layoutId:e,layout:r,drag:n,dragConstraints:o,layoutScroll:s,layoutRoot:l}=t;this.projection.setOptions({layoutId:e,layout:r,alwaysMeasureLayout:Boolean(n)||o&&d(o),visualElement:this,scheduleRender:()=>this.scheduleRender(),animationType:"string"==typeof r?r:"both",initialPromotionConfig:a,layoutScroll:s,layoutRoot:l})}return o}updateFeatures(){for(const e in this.features){const t=this.features[e];t.isMounted?t.update():(t.mount(),t.isMounted=!0)}}triggerBuild(){this.build(this.renderState,this.latestValues,this.options,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):ur()}getStaticValue(e){return this.latestValues[e]}setStaticValue(e,t){this.latestValues[e]=t}makeTargetAnimatable(e,t=!0){return this.makeTargetAnimatableFromInstance(e,this.props,t)}update(e,t){(e.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=e,this.prevPresenceContext=this.presenceContext,this.presenceContext=t;for(let t=0;t<sa.length;t++){const r=sa[t];this.propEventSubscriptions[r]&&(this.propEventSubscriptions[r](),delete this.propEventSubscriptions[r]);const n=e["on"+r];n&&(this.propEventSubscriptions[r]=this.on(r,n))}this.prevMotionValues=function(e,t,r){const{willChange:n}=t;for(const a in t){const i=t[a],o=r[a];if((0,L.S)(i))e.addValue(a,i),wt(n)&&n.add(a);else if((0,L.S)(o))e.addValue(a,(0,_t.OQ)(i,{owner:e})),wt(n)&&n.remove(a);else if(o!==i)if(e.hasValue(a)){const t=e.getValue(a);!t.hasAnimated&&t.set(i)}else{const t=e.getStaticValue(a);e.addValue(a,(0,_t.OQ)(void 0!==t?t:i,{owner:e}))}}for(const n in r)void 0===t[n]&&e.removeValue(n);return t}(this,this.scrapeMotionValuesFromProps(e,this.prevProps),this.prevMotionValues),this.handleChildMotionValue&&this.handleChildMotionValue()}getProps(){return this.props}getVariant(e){return this.props.variants?this.props.variants[e]:void 0}getDefaultTransition(){return this.props.transition}getTransformPagePoint(){return this.props.transformPagePoint}getClosestVariantNode(){return this.isVariantNode?this:this.parent?this.parent.getClosestVariantNode():void 0}getVariantContext(e=!1){if(e)return this.parent?this.parent.getVariantContext():void 0;if(!this.isControllingVariants){const e=this.parent&&this.parent.getVariantContext()||{};return void 0!==this.props.initial&&(e.initial=this.props.initial),e}const t={};for(let e=0;e<la;e++){const r=g[e],n=this.props[r];(p(n)||!1===n)&&(t[r]=n)}return t}addVariantChild(e){const t=this.getClosestVariantNode();if(t)return t.variantChildren&&t.variantChildren.add(e),()=>t.variantChildren.delete(e)}addValue(e,t){t!==this.values.get(e)&&(this.removeValue(e),this.bindToMotionValue(e,t)),this.values.set(e,t),this.latestValues[e]=t.get()}removeValue(e){this.values.delete(e);const t=this.valueSubscriptions.get(e);t&&(t(),this.valueSubscriptions.delete(e)),delete this.latestValues[e],this.removeValueFromRenderState(e,this.renderState)}hasValue(e){return this.values.has(e)}getValue(e,t){if(this.props.values&&this.props.values[e])return this.props.values[e];let r=this.values.get(e);return void 0===r&&void 0!==t&&(r=(0,_t.OQ)(t,{owner:this}),this.addValue(e,r)),r}readValue(e){var t;return void 0===this.latestValues[e]&&this.current?null!==(t=this.getBaseTargetFromProps(this.props,e))&&void 0!==t?t:this.readValueFromInstance(this.current,e,this.options):this.latestValues[e]}setBaseTarget(e,t){this.baseTarget[e]=t}getBaseTarget(e){var t;const{initial:r}=this.props,n="string"==typeof r||"object"==typeof r?null===(t=ue(this.props,r))||void 0===t?void 0:t[e]:void 0;if(r&&void 0!==n)return n;const a=this.getBaseTargetFromProps(this.props,e);return void 0===a||(0,L.S)(a)?void 0!==this.initialValues[e]&&void 0===n?void 0:this.baseTarget[e]:a}on(e,t){return this.events[e]||(this.events[e]=new Wr.v),this.events[e].add(t)}notify(e,...t){this.events[e]&&this.events[e].notify(...t)}}class ua extends ca{sortInstanceNodePosition(e,t){return 2&e.compareDocumentPosition(t)?1:-1}getBaseTargetFromProps(e,t){return e.style?e.style[t]:void 0}removeValueFromRenderState(e,{vars:t,style:r}){delete t[e],delete r[e]}makeTargetAnimatableFromInstance({transition:e,transitionEnd:t,...r},{transformValues:n},a){let i=function(e,t,r){const n={};for(const a in e){const e=At(a,t);if(void 0!==e)n[a]=e;else{const e=r.getValue(a);e&&(n[a]=e.get())}}return n}(r,e||{},this);if(n&&(t&&(t=n(t)),r&&(r=n(r)),i&&(i=n(i))),a){!function(e,t,r){var n,a;const i=Object.keys(t).filter((t=>!e.hasValue(t))),o=i.length;var s;if(o)for(let l=0;l<o;l++){const o=i[l],c=t[o];let u=null;Array.isArray(c)&&(u=c[0]),null===u&&(u=null!==(a=null!==(n=r[o])&&void 0!==n?n:e.readValue(o))&&void 0!==a?a:t[o]),null!=u&&("string"==typeof u&&(xt(u)||ht(u))?u=parseFloat(u):(s=u,!Ct.find(Et(s))&&it.f.test(c)&&(u=gt(o,c))),e.addValue(o,(0,_t.OQ)(u,{owner:e})),void 0===r[o]&&(r[o]=u),null!==u&&e.setBaseTarget(o,u))}}(this,r,i);const e=((e,t,r,n)=>{const a=function(e,{...t},r){const n=e.current;if(!(n instanceof Element))return{target:t,transitionEnd:r};r&&(r={...r}),e.values.forEach((e=>{const t=e.get();if(!(0,D.pG)(t))return;const r=Zn(t,n);r&&e.set(r)}));for(const e in t){const a=t[e];if(!(0,D.pG)(a))continue;const i=Zn(a,n);i&&(t[e]=i,r||(r={}),void 0===r[e]&&(r[e]=a))}return{target:t,transitionEnd:r}}(e,t,n);return ta(e,t=a.target,r,n=a.transitionEnd)})(this,r,i,t);t=e.transitionEnd,r=e.target}return{transition:e,transitionEnd:t,...r}}}class da extends ua{constructor(){super(...arguments),this.type="html"}readValueFromInstance(e,t){if(I.has(t)){const e=ft(t);return e&&e.default||0}{const n=(r=e,window.getComputedStyle(r)),a=((0,D.j4)(t)?n.getPropertyValue(t):n[t])||0;return"string"==typeof a?a.trim():a}var r}measureInstanceViewportBox(e,{transformPagePoint:t}){return Ar(e,t)}build(e,t,r,n){U(e,t,r,n.transformTemplate)}scrapeMotionValuesFromProps(e,t){return le(e,t)}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);const{children:e}=this.props;(0,L.S)(e)&&(this.childSubscription=e.on("change",(e=>{this.current&&(this.current.textContent=`${e}`)})))}renderInstance(e,t,r,n){ie(e,t,r,n)}}class pa extends ua{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1}getBaseTargetFromProps(e,t){return e[t]}readValueFromInstance(e,t){if(I.has(t)){const e=ft(t);return e&&e.default||0}return t=oe.has(t)?t:c(t),e.getAttribute(t)}measureInstanceViewportBox(){return ur()}scrapeMotionValuesFromProps(e,t){return ce(e,t)}build(e,t,r,n){ee(e,t,r,this.isSVGTag,n.transformTemplate)}renderInstance(e,t,r,n){se(e,t,0,n)}mount(e){this.isSVGTag=re(e.tagName),super.mount(e)}}const ma=(e,t)=>P(e)?new pa(t,{enableHardwareAcceleration:!1}):new da(t,{enableHardwareAcceleration:!0}),fa={...Mt,...We,...Hn,layout:{ProjectionNode:Un,MeasureLayout:zr}},ga=R(((e,t)=>function(e,{forwardMotionProps:t=!1},r,n){return{...P(e)?ve:we,preloadedFeatures:r,useRender:ae(t),createVisualElement:n,Component:e}}(e,t,fa,ma)))},568:(e,t,r)=>{"use strict";r.d(t,{j4:()=>a,pG:()=>i,z2:()=>o});const n=e=>t=>"string"==typeof t&&t.startsWith(e),a=n("--"),i=n("var(--"),o=/var\s*\(\s*--[\w-]+(\s*,\s*(?:(?:[^)(]|\((?:[^)(]+|\([^)(]*\))*\))*)+)?\s*\)/g},2358:(e,t,r)=>{"use strict";function n(e,t){-1===e.indexOf(t)&&e.push(t)}function a(e,t){const r=e.indexOf(t);r>-1&&e.splice(r,1)}r.d(t,{Ai:()=>a,Kq:()=>n})},2464:(e,t,r)=>{"use strict";r.d(t,{q:()=>n});const n=(e,t,r)=>Math.min(Math.max(r,e),t)},5238:(e,t,r)=>{"use strict";r.d(t,{$:()=>a,V:()=>i});var n=r(3659);let a=n.l,i=n.l},8288:(e,t,r)=>{"use strict";r.d(t,{B:()=>n});const n="undefined"!=typeof document},2839:(e,t,r)=>{"use strict";r.d(t,{j:()=>n});const n=(e,t,r)=>-r*e+r*t+e},3659:(e,t,r)=>{"use strict";r.d(t,{l:()=>n});const n=e=>e},1339:(e,t,r)=>{"use strict";r.d(t,{F:()=>a});const n=(e,t)=>r=>t(e(r)),a=(...e)=>e.reduce(n)},7170:(e,t,r)=>{"use strict";r.d(t,{q:()=>n});const n=(e,t,r)=>{const n=t-e;return 0===n?1:(r-e)/n}},2606:(e,t,r)=>{"use strict";r.d(t,{v:()=>a});var n=r(2358);class a{constructor(){this.subscriptions=[]}add(e){return(0,n.Kq)(this.subscriptions,e),()=>(0,n.Ai)(this.subscriptions,e)}notify(e,t,r){const n=this.subscriptions.length;if(n)if(1===n)this.subscriptions[0](e,t,r);else for(let a=0;a<n;a++){const n=this.subscriptions[a];n&&n(e,t,r)}}getSize(){return this.subscriptions.length}clear(){this.subscriptions.length=0}}},4833:(e,t,r)=>{"use strict";r.d(t,{X:()=>a,f:()=>n});const n=e=>1e3*e,a=e=>e/1e3},8601:(e,t,r)=>{"use strict";r.d(t,{M:()=>a});var n=r(1594);function a(e){const t=(0,n.useRef)(null);return null===t.current&&(t.current=e()),t.current}},5128:(e,t,r)=>{"use strict";r.d(t,{E:()=>a});var n=r(1594);const a=r(8288).B?n.useLayoutEffect:n.useEffect},7177:(e,t,r)=>{"use strict";function n(e,t){return t?e*(1e3/t):0}r.d(t,{f:()=>n})},4785:(e,t,r)=>{"use strict";r.d(t,{OQ:()=>l});var n=r(2606),a=r(7177),i=r(7745);const o={current:void 0};class s{constructor(e,t={}){var r;this.version="10.18.0",this.timeDelta=0,this.lastUpdated=0,this.canTrackVelocity=!1,this.events={},this.updateAndNotify=(e,t=!0)=>{this.prev=this.current,this.current=e;const{delta:r,timestamp:n}=i.uv;this.lastUpdated!==n&&(this.timeDelta=r,this.lastUpdated=n,i.Gt.postRender(this.scheduleVelocityCheck)),this.prev!==this.current&&this.events.change&&this.events.change.notify(this.current),this.events.velocityChange&&this.events.velocityChange.notify(this.getVelocity()),t&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.scheduleVelocityCheck=()=>i.Gt.postRender(this.velocityCheck),this.velocityCheck=({timestamp:e})=>{e!==this.lastUpdated&&(this.prev=this.current,this.events.velocityChange&&this.events.velocityChange.notify(this.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=e,this.canTrackVelocity=(r=this.current,!isNaN(parseFloat(r))),this.owner=t.owner}onChange(e){return this.on("change",e)}on(e,t){this.events[e]||(this.events[e]=new n.v);const r=this.events[e].add(t);return"change"===e?()=>{r(),i.Gt.read((()=>{this.events.change.getSize()||this.stop()}))}:r}clearListeners(){for(const e in this.events)this.events[e].clear()}attach(e,t){this.passiveEffect=e,this.stopPassiveEffect=t}set(e,t=!0){t&&this.passiveEffect?this.passiveEffect(e,this.updateAndNotify):this.updateAndNotify(e,t)}setWithVelocity(e,t,r){this.set(t),this.prev=e,this.timeDelta=r}jump(e){this.updateAndNotify(e),this.prev=e,this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return o.current&&o.current.push(this),this.current}getPrevious(){return this.prev}getVelocity(){return this.canTrackVelocity?(0,a.f)(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0}start(e){return this.stop(),new Promise((t=>{this.hasAnimated=!0,this.animation=e(t),this.events.animationStart&&this.events.animationStart.notify()})).then((()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()}))}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function l(e,t){return new s(e,t)}},5252:(e,t,r)=>{"use strict";r.d(t,{u:()=>a});var n=r(3735);const a={test:(0,r(8304).$)("#"),parse:function(e){let t="",r="",n="",a="";return e.length>5?(t=e.substring(1,3),r=e.substring(3,5),n=e.substring(5,7),a=e.substring(7,9)):(t=e.substring(1,2),r=e.substring(2,3),n=e.substring(3,4),a=e.substring(4,5),t+=t,r+=r,n+=n,a+=a),{red:parseInt(t,16),green:parseInt(r,16),blue:parseInt(n,16),alpha:a?parseInt(a,16)/255:1}},transform:n.B.transform}},2027:(e,t,r)=>{"use strict";r.d(t,{V:()=>s});var n=r(563),a=r(5269),i=r(7296),o=r(8304);const s={test:(0,o.$)("hsl","hue"),parse:(0,o.q)("hue","saturation","lightness"),transform:({hue:e,saturation:t,lightness:r,alpha:o=1})=>"hsla("+Math.round(e)+", "+a.KN.transform((0,i.aj)(t))+", "+a.KN.transform((0,i.aj)(r))+", "+(0,i.aj)(n.X4.transform(o))+")"}},7739:(e,t,r)=>{"use strict";r.d(t,{y:()=>s});var n=r(7296),a=r(5252),i=r(2027),o=r(3735);const s={test:e=>o.B.test(e)||a.u.test(e)||i.V.test(e),parse:e=>o.B.test(e)?o.B.parse(e):i.V.test(e)?i.V.parse(e):a.u.parse(e),transform:e=>(0,n.Kg)(e)?e:e.hasOwnProperty("red")?o.B.transform(e):i.V.transform(e)}},3735:(e,t,r)=>{"use strict";r.d(t,{B:()=>l});var n=r(2464),a=r(563),i=r(7296),o=r(8304);const s={...a.ai,transform:e=>Math.round((e=>(0,n.q)(0,255,e))(e))},l={test:(0,o.$)("rgb","red"),parse:(0,o.q)("red","green","blue"),transform:({red:e,green:t,blue:r,alpha:n=1})=>"rgba("+s.transform(e)+", "+s.transform(t)+", "+s.transform(r)+", "+(0,i.aj)(a.X4.transform(n))+")"}},8304:(e,t,r)=>{"use strict";r.d(t,{$:()=>a,q:()=>i});var n=r(7296);const a=(e,t)=>r=>Boolean((0,n.Kg)(r)&&n.Fl.test(r)&&r.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(r,t)),i=(e,t,r)=>a=>{if(!(0,n.Kg)(a))return a;const[i,o,s,l]=a.match(n.SY);return{[e]:parseFloat(i),[t]:parseFloat(o),[r]:parseFloat(s),alpha:void 0!==l?parseFloat(l):1}}},1614:(e,t,r)=>{"use strict";r.d(t,{V:()=>p,f:()=>h});var n=r(568),a=r(3659),i=r(7739),o=r(563),s=r(7296);const l={regex:n.z2,countKey:"Vars",token:"${v}",parse:a.l},c={regex:s.ne,countKey:"Colors",token:"${c}",parse:i.y.parse},u={regex:s.SY,countKey:"Numbers",token:"${n}",parse:o.ai.parse};function d(e,{regex:t,countKey:r,token:n,parse:a}){const i=e.tokenised.match(t);i&&(e["num"+r]=i.length,e.tokenised=e.tokenised.replace(t,n),e.values.push(...i.map(a)))}function p(e){const t=e.toString(),r={value:t,tokenised:t,values:[],numVars:0,numColors:0,numNumbers:0};return r.value.includes("var(--")&&d(r,l),d(r,c),d(r,u),r}function m(e){return p(e).values}function f(e){const{values:t,numColors:r,numVars:n,tokenised:a}=p(e),o=t.length;return e=>{let t=a;for(let a=0;a<o;a++)t=a<n?t.replace(l.token,e[a]):a<n+r?t.replace(c.token,i.y.transform(e[a])):t.replace(u.token,(0,s.aj)(e[a]));return t}}const g=e=>"number"==typeof e?0:e,h={test:function(e){var t,r;return isNaN(e)&&(0,s.Kg)(e)&&((null===(t=e.match(s.SY))||void 0===t?void 0:t.length)||0)+((null===(r=e.match(s.ne))||void 0===r?void 0:r.length)||0)>0},parse:m,createTransformer:f,getAnimatableNone:function(e){const t=m(e);return f(e)(t.map(g))}}},563:(e,t,r)=>{"use strict";r.d(t,{X4:()=>i,ai:()=>a,hs:()=>o});var n=r(2464);const a={test:e=>"number"==typeof e,parse:parseFloat,transform:e=>e},i={...a,transform:e=>(0,n.q)(0,1,e)},o={...a,default:1}},5269:(e,t,r)=>{"use strict";r.d(t,{KN:()=>o,gQ:()=>u,px:()=>s,uj:()=>i,vh:()=>l,vw:()=>c});var n=r(7296);const a=e=>({test:t=>(0,n.Kg)(t)&&t.endsWith(e)&&1===t.split(" ").length,parse:parseFloat,transform:t=>`${t}${e}`}),i=a("deg"),o=a("%"),s=a("px"),l=a("vh"),c=a("vw"),u={...o,parse:e=>o.parse(e)/100,transform:e=>o.transform(100*e)}},7296:(e,t,r)=>{"use strict";r.d(t,{Fl:()=>o,Kg:()=>s,SY:()=>a,aj:()=>n,ne:()=>i});const n=e=>Math.round(1e5*e)/1e5,a=/(-)?([\d]*\.?[\d])+/g,i=/(#[0-9a-f]{3,8}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))/gi,o=/^(#[0-9a-f]{3,8}|(rgb|hsl)a?\((-?[\d\.]+%?[,\s]+){2}(-?[\d\.]+%?)\s*[\,\/]?\s*[\d\.]*%?\))$/i;function s(e){return"string"==typeof e}},9896:(e,t,r)=>{"use strict";r.d(t,{S:()=>n});const n=e=>Boolean(e&&e.getVelocity)},8270:(e,t,r)=>{"use strict";function n(e){return"[object Object]"===Object.prototype.toString.call(e)}function a(e){var t,r;return!1!==n(e)&&(void 0===(t=e.constructor)||!1!==n(r=t.prototype)&&!1!==r.hasOwnProperty("isPrototypeOf"))}r.d(t,{Q:()=>a})},5446:(e,t,r)=>{"use strict";r.d(t,{N9:()=>S,nk:()=>d,oR:()=>B});var n=r(1594);function a(e){var t,r,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(r=a(e[t]))&&(n&&(n+=" "),n+=r);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}const i=function(){for(var e,t,r=0,n="";r<arguments.length;)(e=arguments[r++])&&(t=a(e))&&(n&&(n+=" "),n+=t);return n},o=e=>"number"==typeof e&&!isNaN(e),s=e=>"string"==typeof e,l=e=>"function"==typeof e,c=e=>s(e)||l(e)?e:null,u=e=>(0,n.isValidElement)(e)||s(e)||l(e)||o(e);function d(e){let{enter:t,exit:r,appendPosition:a=!1,collapse:i=!0,collapseDuration:o=300}=e;return function(e){let{children:s,position:l,preventExitTransition:c,done:u,nodeRef:d,isIn:p}=e;const m=a?`${t}--${l}`:t,f=a?`${r}--${l}`:r,g=(0,n.useRef)(0);return(0,n.useLayoutEffect)((()=>{const e=d.current,t=m.split(" "),r=n=>{n.target===d.current&&(e.dispatchEvent(new Event("d")),e.removeEventListener("animationend",r),e.removeEventListener("animationcancel",r),0===g.current&&"animationcancel"!==n.type&&e.classList.remove(...t))};e.classList.add(...t),e.addEventListener("animationend",r),e.addEventListener("animationcancel",r)}),[]),(0,n.useEffect)((()=>{const e=d.current,t=()=>{e.removeEventListener("animationend",t),i?function(e,t,r){void 0===r&&(r=300);const{scrollHeight:n,style:a}=e;requestAnimationFrame((()=>{a.minHeight="initial",a.height=n+"px",a.transition=`all ${r}ms`,requestAnimationFrame((()=>{a.height="0",a.padding="0",a.margin="0",setTimeout(t,r)}))}))}(e,u,o):u()};p||(c?t():(g.current=1,e.className+=` ${f}`,e.addEventListener("animationend",t)))}),[p]),n.createElement(n.Fragment,null,s)}}function p(e,t){return null!=e?{content:e.content,containerId:e.props.containerId,id:e.props.toastId,theme:e.props.theme,type:e.props.type,data:e.props.data||{},isLoading:e.props.isLoading,icon:e.props.icon,status:t}:{}}const m={list:new Map,emitQueue:new Map,on(e,t){return this.list.has(e)||this.list.set(e,[]),this.list.get(e).push(t),this},off(e,t){if(t){const r=this.list.get(e).filter((e=>e!==t));return this.list.set(e,r),this}return this.list.delete(e),this},cancelEmit(e){const t=this.emitQueue.get(e);return t&&(t.forEach(clearTimeout),this.emitQueue.delete(e)),this},emit(e){this.list.has(e)&&this.list.get(e).forEach((t=>{const r=setTimeout((()=>{t(...[].slice.call(arguments,1))}),0);this.emitQueue.has(e)||this.emitQueue.set(e,[]),this.emitQueue.get(e).push(r)}))}},f=e=>{let{theme:t,type:r,...a}=e;return n.createElement("svg",{viewBox:"0 0 24 24",width:"100%",height:"100%",fill:"colored"===t?"currentColor":`var(--toastify-icon-color-${r})`,...a})},g={info:function(e){return n.createElement(f,{...e},n.createElement("path",{d:"M12 0a12 12 0 1012 12A12.013 12.013 0 0012 0zm.25 5a1.5 1.5 0 11-1.5 1.5 1.5 1.5 0 011.5-1.5zm2.25 13.5h-4a1 1 0 010-2h.75a.25.25 0 00.25-.25v-4.5a.25.25 0 00-.25-.25h-.75a1 1 0 010-2h1a2 2 0 012 2v4.75a.25.25 0 00.25.25h.75a1 1 0 110 2z"}))},warning:function(e){return n.createElement(f,{...e},n.createElement("path",{d:"M23.32 17.191L15.438 2.184C14.728.833 13.416 0 11.996 0c-1.42 0-2.733.833-3.443 2.184L.533 17.448a4.744 4.744 0 000 4.368C1.243 23.167 2.555 24 3.975 24h16.05C22.22 24 24 22.044 24 19.632c0-.904-.251-1.746-.68-2.44zm-9.622 1.46c0 1.033-.724 1.823-1.698 1.823s-1.698-.79-1.698-1.822v-.043c0-1.028.724-1.822 1.698-1.822s1.698.79 1.698 1.822v.043zm.039-12.285l-.84 8.06c-.057.581-.408.943-.897.943-.49 0-.84-.367-.896-.942l-.84-8.065c-.057-.624.25-1.095.779-1.095h1.91c.528.005.84.476.784 1.1z"}))},success:function(e){return n.createElement(f,{...e},n.createElement("path",{d:"M12 0a12 12 0 1012 12A12.014 12.014 0 0012 0zm6.927 8.2l-6.845 9.289a1.011 1.011 0 01-1.43.188l-4.888-3.908a1 1 0 111.25-1.562l4.076 3.261 6.227-8.451a1 1 0 111.61 1.183z"}))},error:function(e){return n.createElement(f,{...e},n.createElement("path",{d:"M11.983 0a12.206 12.206 0 00-8.51 3.653A11.8 11.8 0 000 12.207 11.779 11.779 0 0011.8 24h.214A12.111 12.111 0 0024 11.791 11.766 11.766 0 0011.983 0zM10.5 16.542a1.476 1.476 0 011.449-1.53h.027a1.527 1.527 0 011.523 1.47 1.475 1.475 0 01-1.449 1.53h-.027a1.529 1.529 0 01-1.523-1.47zM11 12.5v-6a1 1 0 012 0v6a1 1 0 11-2 0z"}))},spinner:function(){return n.createElement("div",{className:"Toastify__spinner"})}};function h(e){const[,t]=(0,n.useReducer)((e=>e+1),0),[r,a]=(0,n.useState)([]),i=(0,n.useRef)(null),d=(0,n.useRef)(new Map).current,f=e=>-1!==r.indexOf(e),h=(0,n.useRef)({toastKey:1,displayedToast:0,count:0,queue:[],props:e,containerId:null,isToastActive:f,getToast:e=>d.get(e)}).current;function y(e){let{containerId:t}=e;const{limit:r}=h.props;!r||t&&h.containerId!==t||(h.count-=h.queue.length,h.queue=[])}function b(e){a((t=>null==e?[]:t.filter((t=>t!==e))))}function v(){const{toastContent:e,toastProps:t,staleId:r}=h.queue.shift();x(e,t,r)}function w(e,r){let{delay:a,staleId:f,...y}=r;if(!u(e)||function(e){return!i.current||h.props.enableMultiContainer&&e.containerId!==h.props.containerId||d.has(e.toastId)&&null==e.updateId}(y))return;const{toastId:w,updateId:_,data:E}=y,{props:k}=h,S=()=>b(w),C=null==_;C&&h.count++;const R={...k,style:k.toastStyle,key:h.toastKey++,...Object.fromEntries(Object.entries(y).filter((e=>{let[t,r]=e;return null!=r}))),toastId:w,updateId:_,data:E,closeToast:S,isIn:!1,className:c(y.className||k.toastClassName),bodyClassName:c(y.bodyClassName||k.bodyClassName),progressClassName:c(y.progressClassName||k.progressClassName),autoClose:!y.isLoading&&(A=y.autoClose,P=k.autoClose,!1===A||o(A)&&A>0?A:P),deleteToast(){const e=p(d.get(w),"removed");d.delete(w),m.emit(4,e);const r=h.queue.length;if(h.count=null==w?h.count-h.displayedToast:h.count-1,h.count<0&&(h.count=0),r>0){const e=null==w?h.props.limit:1;if(1===r||1===e)h.displayedToast++,v();else{const t=e>r?r:e;h.displayedToast=t;for(let e=0;e<t;e++)v()}}else t()}};var A,P;R.iconOut=function(e){let{theme:t,type:r,isLoading:a,icon:i}=e,c=null;const u={theme:t,type:r};return!1===i||(l(i)?c=i(u):(0,n.isValidElement)(i)?c=(0,n.cloneElement)(i,u):s(i)||o(i)?c=i:a?c=g.spinner():(e=>e in g)(r)&&(c=g[r](u))),c}(R),l(y.onOpen)&&(R.onOpen=y.onOpen),l(y.onClose)&&(R.onClose=y.onClose),R.closeButton=k.closeButton,!1===y.closeButton||u(y.closeButton)?R.closeButton=y.closeButton:!0===y.closeButton&&(R.closeButton=!u(k.closeButton)||k.closeButton);let T=e;(0,n.isValidElement)(e)&&!s(e.type)?T=(0,n.cloneElement)(e,{closeToast:S,toastProps:R,data:E}):l(e)&&(T=e({closeToast:S,toastProps:R,data:E})),k.limit&&k.limit>0&&h.count>k.limit&&C?h.queue.push({toastContent:T,toastProps:R,staleId:f}):o(a)?setTimeout((()=>{x(T,R,f)}),a):x(T,R,f)}function x(e,t,r){const{toastId:n}=t;r&&d.delete(r);const i={content:e,props:t};d.set(n,i),a((e=>[...e,n].filter((e=>e!==r)))),m.emit(4,p(i,null==i.props.updateId?"added":"updated"))}return(0,n.useEffect)((()=>(h.containerId=e.containerId,m.cancelEmit(3).on(0,w).on(1,(e=>i.current&&b(e))).on(5,y).emit(2,h),()=>{d.clear(),m.emit(3,h)})),[]),(0,n.useEffect)((()=>{h.props=e,h.isToastActive=f,h.displayedToast=r.length})),{getToastToRender:function(t){const r=new Map,n=Array.from(d.values());return e.newestOnTop&&n.reverse(),n.forEach((e=>{const{position:t}=e.props;r.has(t)||r.set(t,[]),r.get(t).push(e)})),Array.from(r,(e=>t(e[0],e[1])))},containerRef:i,isToastActive:f}}function y(e){return e.targetTouches&&e.targetTouches.length>=1?e.targetTouches[0].clientX:e.clientX}function b(e){return e.targetTouches&&e.targetTouches.length>=1?e.targetTouches[0].clientY:e.clientY}function v(e){const[t,r]=(0,n.useState)(!1),[a,i]=(0,n.useState)(!1),o=(0,n.useRef)(null),s=(0,n.useRef)({start:0,x:0,y:0,delta:0,removalDistance:0,canCloseOnClick:!0,canDrag:!1,boundingRect:null,didMove:!1}).current,c=(0,n.useRef)(e),{autoClose:u,pauseOnHover:d,closeToast:p,onClick:m,closeOnClick:f}=e;function g(t){if(e.draggable){"touchstart"===t.nativeEvent.type&&t.nativeEvent.preventDefault(),s.didMove=!1,document.addEventListener("mousemove",x),document.addEventListener("mouseup",_),document.addEventListener("touchmove",x),document.addEventListener("touchend",_);const r=o.current;s.canCloseOnClick=!0,s.canDrag=!0,s.boundingRect=r.getBoundingClientRect(),r.style.transition="",s.x=y(t.nativeEvent),s.y=b(t.nativeEvent),"x"===e.draggableDirection?(s.start=s.x,s.removalDistance=r.offsetWidth*(e.draggablePercent/100)):(s.start=s.y,s.removalDistance=r.offsetHeight*(80===e.draggablePercent?1.5*e.draggablePercent:e.draggablePercent/100))}}function h(t){if(s.boundingRect){const{top:r,bottom:n,left:a,right:i}=s.boundingRect;"touchend"!==t.nativeEvent.type&&e.pauseOnHover&&s.x>=a&&s.x<=i&&s.y>=r&&s.y<=n?w():v()}}function v(){r(!0)}function w(){r(!1)}function x(r){const n=o.current;s.canDrag&&n&&(s.didMove=!0,t&&w(),s.x=y(r),s.y=b(r),s.delta="x"===e.draggableDirection?s.x-s.start:s.y-s.start,s.start!==s.x&&(s.canCloseOnClick=!1),n.style.transform=`translate${e.draggableDirection}(${s.delta}px)`,n.style.opacity=""+(1-Math.abs(s.delta/s.removalDistance)))}function _(){document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",_),document.removeEventListener("touchmove",x),document.removeEventListener("touchend",_);const t=o.current;if(s.canDrag&&s.didMove&&t){if(s.canDrag=!1,Math.abs(s.delta)>s.removalDistance)return i(!0),void e.closeToast();t.style.transition="transform 0.2s, opacity 0.2s",t.style.transform=`translate${e.draggableDirection}(0)`,t.style.opacity="1"}}(0,n.useEffect)((()=>{c.current=e})),(0,n.useEffect)((()=>(o.current&&o.current.addEventListener("d",v,{once:!0}),l(e.onOpen)&&e.onOpen((0,n.isValidElement)(e.children)&&e.children.props),()=>{const e=c.current;l(e.onClose)&&e.onClose((0,n.isValidElement)(e.children)&&e.children.props)})),[]),(0,n.useEffect)((()=>(e.pauseOnFocusLoss&&(document.hasFocus()||w(),window.addEventListener("focus",v),window.addEventListener("blur",w)),()=>{e.pauseOnFocusLoss&&(window.removeEventListener("focus",v),window.removeEventListener("blur",w))})),[e.pauseOnFocusLoss]);const E={onMouseDown:g,onTouchStart:g,onMouseUp:h,onTouchEnd:h};return u&&d&&(E.onMouseEnter=w,E.onMouseLeave=v),f&&(E.onClick=e=>{m&&m(e),s.canCloseOnClick&&p()}),{playToast:v,pauseToast:w,isRunning:t,preventExitTransition:a,toastRef:o,eventHandlers:E}}function w(e){let{closeToast:t,theme:r,ariaLabel:a="close"}=e;return n.createElement("button",{className:`Toastify__close-button Toastify__close-button--${r}`,type:"button",onClick:e=>{e.stopPropagation(),t(e)},"aria-label":a},n.createElement("svg",{"aria-hidden":"true",viewBox:"0 0 14 16"},n.createElement("path",{fillRule:"evenodd",d:"M7.71 8.23l3.75 3.75-1.48 1.48-3.75-3.75-3.75 3.75L1 11.98l3.75-3.75L1 4.48 2.48 3l3.75 3.75L9.98 3l1.48 1.48-3.75 3.75z"})))}function x(e){let{delay:t,isRunning:r,closeToast:a,type:o="default",hide:s,className:c,style:u,controlledProgress:d,progress:p,rtl:m,isIn:f,theme:g}=e;const h=s||d&&0===p,y={...u,animationDuration:`${t}ms`,animationPlayState:r?"running":"paused",opacity:h?0:1};d&&(y.transform=`scaleX(${p})`);const b=i("Toastify__progress-bar",d?"Toastify__progress-bar--controlled":"Toastify__progress-bar--animated",`Toastify__progress-bar-theme--${g}`,`Toastify__progress-bar--${o}`,{"Toastify__progress-bar--rtl":m}),v=l(c)?c({rtl:m,type:o,defaultClassName:b}):i(b,c);return n.createElement("div",{role:"progressbar","aria-hidden":h?"true":"false","aria-label":"notification timer",className:v,style:y,[d&&p>=1?"onTransitionEnd":"onAnimationEnd"]:d&&p<1?null:()=>{f&&a()}})}const _=e=>{const{isRunning:t,preventExitTransition:r,toastRef:a,eventHandlers:o}=v(e),{closeButton:s,children:c,autoClose:u,onClick:d,type:p,hideProgressBar:m,closeToast:f,transition:g,position:h,className:y,style:b,bodyClassName:_,bodyStyle:E,progressClassName:k,progressStyle:S,updateId:C,role:R,progress:A,rtl:P,toastId:T,deleteToast:N,isIn:I,isLoading:O,iconOut:L,closeOnClick:B,theme:j}=e,D=i("Toastify__toast",`Toastify__toast-theme--${j}`,`Toastify__toast--${p}`,{"Toastify__toast--rtl":P},{"Toastify__toast--close-on-click":B}),F=l(y)?y({rtl:P,position:h,type:p,defaultClassName:D}):i(D,y),M=!!A||!u,z={closeToast:f,type:p,theme:j};let V=null;return!1===s||(V=l(s)?s(z):(0,n.isValidElement)(s)?(0,n.cloneElement)(s,z):w(z)),n.createElement(g,{isIn:I,done:N,position:h,preventExitTransition:r,nodeRef:a},n.createElement("div",{id:T,onClick:d,className:F,...o,style:b,ref:a},n.createElement("div",{...I&&{role:R},className:l(_)?_({type:p}):i("Toastify__toast-body",_),style:E},null!=L&&n.createElement("div",{className:i("Toastify__toast-icon",{"Toastify--animate-icon Toastify__zoom-enter":!O})},L),n.createElement("div",null,c)),V,n.createElement(x,{...C&&!M?{key:`pb-${C}`}:{},rtl:P,theme:j,delay:u,isRunning:t,isIn:I,closeToast:f,hide:m,type:p,style:S,className:k,controlledProgress:M,progress:A||0})))},E=function(e,t){return void 0===t&&(t=!1),{enter:`Toastify--animate Toastify__${e}-enter`,exit:`Toastify--animate Toastify__${e}-exit`,appendPosition:t}},k=d(E("bounce",!0)),S=(d(E("slide",!0)),d(E("zoom")),d(E("flip")),(0,n.forwardRef)(((e,t)=>{const{getToastToRender:r,containerRef:a,isToastActive:o}=h(e),{className:s,style:u,rtl:d,containerId:p}=e;function m(e){const t=i("Toastify__toast-container",`Toastify__toast-container--${e}`,{"Toastify__toast-container--rtl":d});return l(s)?s({position:e,rtl:d,defaultClassName:t}):i(t,c(s))}return(0,n.useEffect)((()=>{t&&(t.current=a.current)}),[]),n.createElement("div",{ref:a,className:"Toastify",id:p},r(((e,t)=>{const r=t.length?{...u}:{...u,pointerEvents:"none"};return n.createElement("div",{className:m(e),style:r,key:`container-${e}`},t.map(((e,r)=>{let{content:a,props:i}=e;return n.createElement(_,{...i,isIn:o(i.toastId),style:{...i.style,"--nth":r+1,"--len":t.length},key:`toast-${i.key}`},a)})))})))})));S.displayName="ToastContainer",S.defaultProps={position:"top-right",transition:k,autoClose:5e3,closeButton:w,pauseOnHover:!0,pauseOnFocusLoss:!0,closeOnClick:!0,draggable:!0,draggablePercent:80,draggableDirection:"x",role:"alert",theme:"light"};let C,R=new Map,A=[],P=1;function T(){return""+P++}function N(e){return e&&(s(e.toastId)||o(e.toastId))?e.toastId:T()}function I(e,t){return R.size>0?m.emit(0,e,t):A.push({content:e,options:t}),t.toastId}function O(e,t){return{...t,type:t&&t.type||e,toastId:N(t)}}function L(e){return(t,r)=>I(t,O(e,r))}function B(e,t){return I(e,O("default",t))}B.loading=(e,t)=>I(e,O("default",{isLoading:!0,autoClose:!1,closeOnClick:!1,closeButton:!1,draggable:!1,...t})),B.promise=function(e,t,r){let n,{pending:a,error:i,success:o}=t;a&&(n=s(a)?B.loading(a,r):B.loading(a.render,{...r,...a}));const c={isLoading:null,autoClose:null,closeOnClick:null,closeButton:null,draggable:null},u=(e,t,a)=>{if(null==t)return void B.dismiss(n);const i={type:e,...c,...r,data:a},o=s(t)?{render:t}:t;return n?B.update(n,{...i,...o}):B(o.render,{...i,...o}),a},d=l(e)?e():e;return d.then((e=>u("success",o,e))).catch((e=>u("error",i,e))),d},B.success=L("success"),B.info=L("info"),B.error=L("error"),B.warning=L("warning"),B.warn=B.warning,B.dark=(e,t)=>I(e,O("default",{theme:"dark",...t})),B.dismiss=e=>{R.size>0?m.emit(1,e):A=A.filter((t=>null!=e&&t.options.toastId!==e))},B.clearWaitingQueue=function(e){return void 0===e&&(e={}),m.emit(5,e)},B.isActive=e=>{let t=!1;return R.forEach((r=>{r.isToastActive&&r.isToastActive(e)&&(t=!0)})),t},B.update=function(e,t){void 0===t&&(t={}),setTimeout((()=>{const r=function(e,t){let{containerId:r}=t;const n=R.get(r||C);return n&&n.getToast(e)}(e,t);if(r){const{props:n,content:a}=r,i={delay:100,...n,...t,toastId:t.toastId||e,updateId:T()};i.toastId!==e&&(i.staleId=e);const o=i.render||a;delete i.render,I(o,i)}}),0)},B.done=e=>{B.update(e,{progress:1})},B.onChange=e=>(m.on(4,e),()=>{m.off(4,e)}),B.POSITION={TOP_LEFT:"top-left",TOP_RIGHT:"top-right",TOP_CENTER:"top-center",BOTTOM_LEFT:"bottom-left",BOTTOM_RIGHT:"bottom-right",BOTTOM_CENTER:"bottom-center"},B.TYPE={INFO:"info",SUCCESS:"success",WARNING:"warning",ERROR:"error",DEFAULT:"default"},m.on(2,(e=>{C=e.containerId||e,R.set(C,e),A.forEach((e=>{m.emit(0,e.content,e.options)})),A=[]})).on(3,(e=>{R.delete(e.containerId||e),0===R.size&&m.off(0).off(1).off(5)}))},1635:(e,t,r)=>{"use strict";r.d(t,{Cl:()=>n,YH:()=>i,fX:()=>s,sH:()=>a,zs:()=>o});var n=function(){return n=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},n.apply(this,arguments)};function a(e,t,r,n){return new(r||(r=Promise))((function(a,i){function o(e){try{l(n.next(e))}catch(e){i(e)}}function s(e){try{l(n.throw(e))}catch(e){i(e)}}function l(e){var t;e.done?a(e.value):(t=e.value,t instanceof r?t:new r((function(e){e(t)}))).then(o,s)}l((n=n.apply(e,t||[])).next())}))}function i(e,t){var r,n,a,i,o={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]};return i={next:s(0),throw:s(1),return:s(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function s(s){return function(l){return function(s){if(r)throw new TypeError("Generator is already executing.");for(;i&&(i=0,s[0]&&(o=0)),o;)try{if(r=1,n&&(a=2&s[0]?n.return:s[0]?n.throw||((a=n.return)&&a.call(n),0):n.next)&&!(a=a.call(n,s[1])).done)return a;switch(n=0,a&&(s=[2&s[0],a.value]),s[0]){case 0:case 1:a=s;break;case 4:return o.label++,{value:s[1],done:!1};case 5:o.label++,n=s[1],s=[0];continue;case 7:s=o.ops.pop(),o.trys.pop();continue;default:if(!((a=(a=o.trys).length>0&&a[a.length-1])||6!==s[0]&&2!==s[0])){o=0;continue}if(3===s[0]&&(!a||s[1]>a[0]&&s[1]<a[3])){o.label=s[1];break}if(6===s[0]&&o.label<a[1]){o.label=a[1],a=s;break}if(a&&o.label<a[2]){o.label=a[2],o.ops.push(s);break}a[2]&&o.ops.pop(),o.trys.pop();continue}s=t.call(e,o)}catch(e){s=[6,e],n=0}finally{r=a=0}if(5&s[0])throw s[1];return{value:s[0]?s[1]:void 0,done:!0}}([s,l])}}}function o(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,a,i=r.call(e),o=[];try{for(;(void 0===t||t-- >0)&&!(n=i.next()).done;)o.push(n.value)}catch(e){a={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(a)throw a.error}}return o}function s(e,t,r){if(r||2===arguments.length)for(var n,a=0,i=t.length;a<i;a++)!n&&a in t||(n||(n=Array.prototype.slice.call(t,0,a)),n[a]=t[a]);return e.concat(n||Array.prototype.slice.call(t))}Object.create,Object.create,"function"==typeof SuppressedError&&SuppressedError}},i={};function o(e){var t=i[e];if(void 0!==t)return t.exports;var r=i[e]={id:e,loaded:!1,exports:{}};return a[e].call(r.exports,r,r.exports,o),r.loaded=!0,r.exports}o.m=a,o.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return o.d(t,{a:t}),t},t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,o.t=function(r,n){if(1&n&&(r=this(r)),8&n)return r;if("object"==typeof r&&r){if(4&n&&r.__esModule)return r;if(16&n&&"function"==typeof r.then)return r}var a=Object.create(null);o.r(a);var i={};e=e||[null,t({}),t([]),t(t)];for(var s=2&n&&r;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((e=>i[e]=()=>r[e]));return i.default=()=>r,o.d(a,i),a},o.d=(e,t)=>{for(var r in t)o.o(t,r)&&!o.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},o.f={},o.e=e=>Promise.all(Object.keys(o.f).reduce(((t,r)=>(o.f[r](e,t),t)),[])),o.u=e=>e+".js",o.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),o.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r={},n="ast-block-templates:",o.l=(e,t,a,i)=>{if(r[e])r[e].push(t);else{var s,l;if(void 0!==a)for(var c=document.getElementsByTagName("script"),u=0;u<c.length;u++){var d=c[u];if(d.getAttribute("src")==e||d.getAttribute("data-webpack")==n+a){s=d;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,o.nc&&s.setAttribute("nonce",o.nc),s.setAttribute("data-webpack",n+a),s.src=e),r[e]=[t];var p=(t,n)=>{s.onerror=s.onload=null,clearTimeout(m);var a=r[e];if(delete r[e],s.parentNode&&s.parentNode.removeChild(s),a&&a.forEach((e=>e(n))),t)return t(n)},m=setTimeout(p.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=p.bind(null,s.onerror),s.onload=p.bind(null,s.onload),l&&document.head.appendChild(s)}},o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{var e;o.g.importScripts&&(e=o.g.location+"");var t=o.g.document;if(!e&&t&&(t.currentScript&&(e=t.currentScript.src),!e)){var r=t.getElementsByTagName("script");if(r.length)for(var n=r.length-1;n>-1&&(!e||!/^http(s?):/.test(e));)e=r[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),o.p=e})(),(()=>{var e={792:0};o.f.j=(t,r)=>{var n=o.o(e,t)?e[t]:void 0;if(0!==n)if(n)r.push(n[2]);else{var a=new Promise(((r,a)=>n=e[t]=[r,a]));r.push(n[2]=a);var i=o.p+o.u(t),s=new Error;o.l(i,(r=>{if(o.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var a=r&&("load"===r.type?"missing":r.type),i=r&&r.target&&r.target.src;s.message="Loading chunk "+t+" failed.\n("+a+": "+i+")",s.name="ChunkLoadError",s.type=a,s.request=i,n[1](s)}}),"chunk-"+t,t)}};var t=(t,r)=>{var n,a,[i,s,l]=r,c=0;if(i.some((t=>0!==e[t]))){for(n in s)o.o(s,n)&&(o.m[n]=s[n]);l&&l(o)}for(t&&t(r);c<i.length;c++)a=i[c],o.o(e,a)&&e[a]&&e[a][0](),e[a]=0},r=globalThis.webpackChunkast_block_templates=globalThis.webpackChunkast_block_templates||[];r.forEach(t.bind(null,0)),r.push=t.bind(null,r.push.bind(r))})(),o.nc=void 0;var s={};(()=>{"use strict";o.d(s,{c:()=>wb});var e=o(3771),t=o(3914),r=o(6597),n=o(7642),a=o(8242),i=o(1594),l=o.t(i,2),c=o.n(i),u=o(1760);function d({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M16.023 9.348h4.992v-.001M2.985 19.644v-4.992m0 0h4.992m-4.993 0 3.181 3.183a8.25 8.25 0 0 0 13.803-3.7M4.031 9.865a8.25 8.25 0 0 1 13.803-3.7l3.181 3.182m0-4.991v4.99"}))}const p=i.forwardRef(d);function m({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18 18 6M6 6l12 12"}))}const f=i.forwardRef(m);var g=o(4118);const h=(e="",t="")=>((e="",t="",r="#9E9E9E")=>{e&&console.log(`%c ${e}  `,`color: ${r}; font-weight: lighter;`,t)})(e,t,"#F20404");var y=o(6134),b=o(2231);function v(){return v=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},v.apply(null,arguments)}const{forwardRef:w}=wp.element,x=w((({className:e,tooltip:r,children:n,...a},i)=>{const{importInProgress:o}=(0,t.A)((e=>{const{getImportInProgress:t}=e(g.U);return{importInProgress:t()}}),[]);return React.createElement(b.A,{content:r},React.createElement("button",v({ref:i,className:(0,y.xW)("flex items-center justify-center w-10 h-10 rounded-full p-2 text-nav-inactive active:focus:text-nav-active disabled:cursor-not-allowed disabled:text-gray-300 hover:bg-background-tertiary active:bg-background-tertiary transition duration-150 ease-in-out bg-transparent border-0 [&_svg]:flex-shrink-0 cursor-pointer flex-col",o&&"disable-click-action",e)},a),n))}));function _({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m16.862 4.487 1.687-1.688a1.875 1.875 0 1 1 2.652 2.652L10.582 16.07a4.5 4.5 0 0 1-1.897 1.13L6 18l.8-2.685a4.5 4.5 0 0 1 1.13-1.897l8.932-8.931Zm0 0L19.5 7.125M18 14v4.75A2.25 2.25 0 0 1 15.75 21H5.25A2.25 2.25 0 0 1 3 18.75V8.25A2.25 2.25 0 0 1 5.25 6H10"}))}const E=i.forwardRef(_);function k({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M19.5 12c0-1.232-.046-2.453-.138-3.662a4.006 4.006 0 0 0-3.7-3.7 48.678 48.678 0 0 0-7.324 0 4.006 4.006 0 0 0-3.7 3.7c-.017.22-.032.441-.046.662M19.5 12l3-3m-3 3-3-3m-12 3c0 1.232.046 2.453.138 3.662a4.006 4.006 0 0 0 3.7 3.7 48.656 48.656 0 0 0 7.324 0 4.006 4.006 0 0 0 3.7-3.7c.017-.22.032-.441.046-.662M4.5 12l3 3m-3-3-3 3"}))}const S=i.forwardRef(k);function C({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9.594 3.94c.09-.542.56-.94 1.11-.94h2.593c.55 0 1.02.398 1.11.94l.213 1.281c.063.374.313.686.645.87.074.04.147.083.22.127.325.196.72.257 1.075.124l1.217-.456a1.125 1.125 0 0 1 1.37.49l1.296 2.247a1.125 1.125 0 0 1-.26 1.431l-1.003.827c-.293.241-.438.613-.43.992a7.723 7.723 0 0 1 0 .255c-.008.378.137.75.43.991l1.004.827c.424.35.534.955.26 1.43l-1.298 2.247a1.125 1.125 0 0 1-1.369.491l-1.217-.456c-.355-.133-.75-.072-1.076.124a6.47 6.47 0 0 1-.22.128c-.331.183-.581.495-.644.869l-.213 1.281c-.09.543-.56.94-1.11.94h-2.594c-.55 0-1.019-.398-1.11-.94l-.213-1.281c-.062-.374-.312-.686-.644-.87a6.52 6.52 0 0 1-.22-.127c-.325-.196-.72-.257-1.076-.124l-1.217.456a1.125 1.125 0 0 1-1.369-.49l-1.297-2.247a1.125 1.125 0 0 1 .26-1.431l1.004-.827c.292-.24.437-.613.43-.991a6.932 6.932 0 0 1 0-.255c.007-.38-.138-.751-.43-.992l-1.004-.827a1.125 1.125 0 0 1-.26-1.43l1.297-2.247a1.125 1.125 0 0 1 1.37-.491l1.216.456c.356.133.751.072 1.076-.124.072-.044.146-.086.22-.128.332-.183.582-.495.644-.869l.214-1.28Z"}),i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"}))}const R=i.forwardRef(C);function A({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{fillRule:"evenodd",d:"M1.5 6a2.25 2.25 0 0 1 2.25-2.25h16.5A2.25 2.25 0 0 1 22.5 6v12a2.25 2.25 0 0 1-2.25 2.25H3.75A2.25 2.25 0 0 1 1.5 18V6ZM3 16.06V18c0 .414.336.75.75.75h16.5A.75.75 0 0 0 21 18v-1.94l-2.69-2.689a1.5 1.5 0 0 0-2.12 0l-.88.879.97.97a.75.75 0 1 1-1.06 1.06l-5.16-5.159a1.5 1.5 0 0 0-2.12 0L3 16.061Zm10.125-7.81a1.125 1.125 0 1 1 2.25 0 1.125 1.125 0 0 1-2.25 0Z",clipRule:"evenodd"}))}const P=i.forwardRef(A);function T({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{fillRule:"evenodd",d:"M2.25 12c0-5.385 4.365-9.75 9.75-9.75s9.75 4.365 9.75 9.75-4.365 9.75-9.75 9.75S2.25 17.385 2.25 12ZM9 8.25a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75h.75a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75H9Zm5.25 0a.75.75 0 0 0-.75.75v6c0 .414.336.75.75.75H15a.75.75 0 0 0 .75-.75V9a.75.75 0 0 0-.75-.75h-.75Z",clipRule:"evenodd"}))}const N=i.forwardRef(T);function I({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{fillRule:"evenodd",d:"M1.5 7.125c0-1.036.84-1.875 1.875-1.875h6c1.036 0 1.875.84 1.875 1.875v3.75c0 1.036-.84 1.875-1.875 1.875h-6A1.875 1.875 0 0 1 1.5 10.875v-3.75Zm12 1.5c0-1.036.84-1.875 1.875-1.875h5.25c1.035 0 1.875.84 1.875 1.875v8.25c0 1.035-.84 1.875-1.875 1.875h-5.25a1.875 1.875 0 0 1-1.875-1.875v-8.25ZM3 16.125c0-1.036.84-1.875 1.875-1.875h5.25c1.036 0 1.875.84 1.875 1.875v2.25c0 1.035-.84 1.875-1.875 1.875h-5.25A1.875 1.875 0 0 1 3 18.375v-2.25Z",clipRule:"evenodd"}))}const O=i.forwardRef(I);function L(e){var t;return"undefined"!=typeof window&&null!=window.navigator&&((null===(t=window.navigator.userAgentData)||void 0===t?void 0:t.brands.some((t=>e.test(t.brand))))||e.test(window.navigator.userAgent))}function B(e){var t;return"undefined"!=typeof window&&null!=window.navigator&&e.test((null===(t=window.navigator.userAgentData)||void 0===t?void 0:t.platform)||window.navigator.platform)}function j(e){let t=null;return()=>(null==t&&(t=e()),t)}const D=j((function(){return B(/^Mac/i)})),F=j((function(){return B(/^iPhone/i)})),M=j((function(){return B(/^iPad/i)||D()&&navigator.maxTouchPoints>1})),z=j((function(){return F()||M()})),V=(j((function(){return D()||z()})),j((function(){return L(/AppleWebKit/i)&&!V()})),j((function(){return L(/Chrome/i)}))),W=j((function(){return L(/Android/i)}));j((function(){return L(/Firefox/i)}));const U=e=>{var t;return null!==(t=null==e?void 0:e.ownerDocument)&&void 0!==t?t:document},H=e=>e&&"window"in e&&e.window===e?e:U(e).defaultView||window;let $=null,Z=new Set,G=new Map,q=!1,Y=!1;const K={Tab:!0,Escape:!0};function X(e,t){for(let r of Z)r(e,t)}function J(e){q=!0,function(e){return!(e.metaKey||!D()&&e.altKey||e.ctrlKey||"Control"===e.key||"Shift"===e.key||"Meta"===e.key)}(e)&&($="keyboard",X("keyboard",e))}function Q(e){$="pointer","mousedown"!==e.type&&"pointerdown"!==e.type||(q=!0,X("pointer",e))}function ee(e){var t;(0===(t=e).mozInputSource&&t.isTrusted||(W()&&t.pointerType?"click"===t.type&&1===t.buttons:0===t.detail&&!t.pointerType))&&(q=!0,$="virtual")}function te(e){e.target!==window&&e.target!==document&&(q||Y||($="virtual",X("virtual",e)),q=!1,Y=!1)}function re(){q=!1,Y=!0}function ne(e){if("undefined"==typeof window||G.get(H(e)))return;const t=H(e),r=U(e);let n=t.HTMLElement.prototype.focus;t.HTMLElement.prototype.focus=function(){q=!0,n.apply(this,arguments)},r.addEventListener("keydown",J,!0),r.addEventListener("keyup",J,!0),r.addEventListener("click",ee,!0),t.addEventListener("focus",te,!0),t.addEventListener("blur",re,!1),"undefined"!=typeof PointerEvent?(r.addEventListener("pointerdown",Q,!0),r.addEventListener("pointermove",Q,!0),r.addEventListener("pointerup",Q,!0)):(r.addEventListener("mousedown",Q,!0),r.addEventListener("mousemove",Q,!0),r.addEventListener("mouseup",Q,!0)),t.addEventListener("beforeunload",(()=>{ae(e)}),{once:!0}),G.set(t,{focus:n})}const ae=(e,t)=>{const r=H(e),n=U(e);t&&n.removeEventListener("DOMContentLoaded",t),G.has(r)&&(r.HTMLElement.prototype.focus=G.get(r).focus,n.removeEventListener("keydown",J,!0),n.removeEventListener("keyup",J,!0),n.removeEventListener("click",ee,!0),r.removeEventListener("focus",te,!0),r.removeEventListener("blur",re,!1),"undefined"!=typeof PointerEvent?(n.removeEventListener("pointerdown",Q,!0),n.removeEventListener("pointermove",Q,!0),n.removeEventListener("pointerup",Q,!0)):(n.removeEventListener("mousedown",Q,!0),n.removeEventListener("mousemove",Q,!0),n.removeEventListener("mouseup",Q,!0)),G.delete(r))};function ie(){return"pointer"!==$}"undefined"!=typeof document&&function(e){const t=U(e);let r;"loading"!==t.readyState?ne(e):(r=()=>{ne(e)},t.addEventListener("DOMContentLoaded",r))}();const oe=new Set(["checkbox","radio","range","color","file","image","button","submit","reset"]);const se="undefined"!=typeof document?i.useLayoutEffect:()=>{};class le{isDefaultPrevented(){return this.nativeEvent.defaultPrevented}preventDefault(){this.defaultPrevented=!0,this.nativeEvent.preventDefault()}stopPropagation(){this.nativeEvent.stopPropagation(),this.isPropagationStopped=()=>!0}isPropagationStopped(){return!1}persist(){}constructor(e,t){this.nativeEvent=t,this.target=t.target,this.currentTarget=t.currentTarget,this.relatedTarget=t.relatedTarget,this.bubbles=t.bubbles,this.cancelable=t.cancelable,this.defaultPrevented=t.defaultPrevented,this.eventPhase=t.eventPhase,this.isTrusted=t.isTrusted,this.timeStamp=t.timeStamp,this.type=e}}function ce(e){let t=(0,i.useRef)({isFocused:!1,observer:null});se((()=>{const e=t.current;return()=>{e.observer&&(e.observer.disconnect(),e.observer=null)}}),[]);let r=function(e){const t=(0,i.useRef)(null);return se((()=>{t.current=e}),[e]),(0,i.useCallback)(((...e)=>{const r=t.current;return null==r?void 0:r(...e)}),[])}((t=>{null==e||e(t)}));return(0,i.useCallback)((e=>{if(e.target instanceof HTMLButtonElement||e.target instanceof HTMLInputElement||e.target instanceof HTMLTextAreaElement||e.target instanceof HTMLSelectElement){t.current.isFocused=!0;let n=e.target,a=e=>{t.current.isFocused=!1,n.disabled&&r(new le("blur",e)),t.current.observer&&(t.current.observer.disconnect(),t.current.observer=null)};n.addEventListener("focusout",a,{once:!0}),t.current.observer=new MutationObserver((()=>{if(t.current.isFocused&&n.disabled){var e;null===(e=t.current.observer)||void 0===e||e.disconnect();let r=n===document.activeElement?null:document.activeElement;n.dispatchEvent(new FocusEvent("blur",{relatedTarget:r})),n.dispatchEvent(new FocusEvent("focusout",{bubbles:!0,relatedTarget:r}))}})),t.current.observer.observe(n,{attributes:!0,attributeFilter:["disabled"]})}}),[r])}function ue(e={}){let{autoFocus:t=!1,isTextInput:r,within:n}=e,a=(0,i.useRef)({isFocused:!1,isFocusVisible:t||ie()}),[o,s]=(0,i.useState)(!1),[l,c]=(0,i.useState)((()=>a.current.isFocused&&a.current.isFocusVisible)),u=(0,i.useCallback)((()=>c(a.current.isFocused&&a.current.isFocusVisible)),[]),d=(0,i.useCallback)((e=>{a.current.isFocused=e,s(e),u()}),[u]);var p,m,f;p=e=>{a.current.isFocusVisible=e,u()},m=[],f={isTextInput:r},ne(),(0,i.useEffect)((()=>{let e=(e,t)=>{(function(e,t,r){var n;const a="undefined"!=typeof window?H(null==r?void 0:r.target).HTMLInputElement:HTMLInputElement,i="undefined"!=typeof window?H(null==r?void 0:r.target).HTMLTextAreaElement:HTMLTextAreaElement,o="undefined"!=typeof window?H(null==r?void 0:r.target).HTMLElement:HTMLElement,s="undefined"!=typeof window?H(null==r?void 0:r.target).KeyboardEvent:KeyboardEvent;return!((e=e||(null==r?void 0:r.target)instanceof a&&!oe.has(null==r||null===(n=r.target)||void 0===n?void 0:n.type)||(null==r?void 0:r.target)instanceof i||(null==r?void 0:r.target)instanceof o&&(null==r?void 0:r.target.isContentEditable))&&"keyboard"===t&&r instanceof s&&!K[r.key])})(!!(null==f?void 0:f.isTextInput),e,t)&&p(ie())};return Z.add(e),()=>{Z.delete(e)}}),m);let{focusProps:g}=function(e){let{isDisabled:t,onFocus:r,onBlur:n,onFocusChange:a}=e;const o=(0,i.useCallback)((e=>{if(e.target===e.currentTarget)return n&&n(e),a&&a(!1),!0}),[n,a]),s=ce(o),l=(0,i.useCallback)((e=>{const t=U(e.target);e.target===e.currentTarget&&t.activeElement===e.target&&(r&&r(e),a&&a(!0),s(e))}),[a,r,s]);return{focusProps:{onFocus:!t&&(r||a||n)?l:void 0,onBlur:t||!n&&!a?void 0:o}}}({isDisabled:n,onFocusChange:d}),{focusWithinProps:h}=function(e){let{isDisabled:t,onBlurWithin:r,onFocusWithin:n,onFocusWithinChange:a}=e,o=(0,i.useRef)({isFocusWithin:!1}),s=(0,i.useCallback)((e=>{o.current.isFocusWithin&&!e.currentTarget.contains(e.relatedTarget)&&(o.current.isFocusWithin=!1,r&&r(e),a&&a(!1))}),[r,a,o]),l=ce(s),c=(0,i.useCallback)((e=>{o.current.isFocusWithin||document.activeElement!==e.target||(n&&n(e),a&&a(!0),o.current.isFocusWithin=!0,l(e))}),[n,a,l]);return t?{focusWithinProps:{onFocus:void 0,onBlur:void 0}}:{focusWithinProps:{onFocus:c,onBlur:s}}}({isDisabled:!n,onFocusWithinChange:d});return{isFocused:o,isFocusVisible:l,focusProps:n?h:g}}let de=!1,pe=0;function me(){de=!0,setTimeout((()=>{de=!1}),50)}function fe(e){"touch"===e.pointerType&&me()}function ge(){if("undefined"!=typeof document)return"undefined"!=typeof PointerEvent?document.addEventListener("pointerup",fe):document.addEventListener("touchend",me),pe++,()=>{pe--,pe>0||("undefined"!=typeof PointerEvent?document.removeEventListener("pointerup",fe):document.removeEventListener("touchend",me))}}function he(e){let{onHoverStart:t,onHoverChange:r,onHoverEnd:n,isDisabled:a}=e,[o,s]=(0,i.useState)(!1),l=(0,i.useRef)({isHovered:!1,ignoreEmulatedMouseEvents:!1,pointerType:"",target:null}).current;(0,i.useEffect)(ge,[]);let{hoverProps:c,triggerHoverEnd:u}=(0,i.useMemo)((()=>{let e=(e,n)=>{if(l.pointerType=n,a||"touch"===n||l.isHovered||!e.currentTarget.contains(e.target))return;l.isHovered=!0;let i=e.currentTarget;l.target=i,t&&t({type:"hoverstart",target:i,pointerType:n}),r&&r(!0),s(!0)},i=(e,t)=>{if(l.pointerType="",l.target=null,"touch"===t||!l.isHovered)return;l.isHovered=!1;let a=e.currentTarget;n&&n({type:"hoverend",target:a,pointerType:t}),r&&r(!1),s(!1)},o={};return"undefined"!=typeof PointerEvent?(o.onPointerEnter=t=>{de&&"mouse"===t.pointerType||e(t,t.pointerType)},o.onPointerLeave=e=>{!a&&e.currentTarget.contains(e.target)&&i(e,e.pointerType)}):(o.onTouchStart=()=>{l.ignoreEmulatedMouseEvents=!0},o.onMouseEnter=t=>{l.ignoreEmulatedMouseEvents||de||e(t,"mouse"),l.ignoreEmulatedMouseEvents=!1},o.onMouseLeave=e=>{!a&&e.currentTarget.contains(e.target)&&i(e,"mouse")}),{hoverProps:o,triggerHoverEnd:i}}),[t,r,n,a,l]);return(0,i.useEffect)((()=>{a&&u({currentTarget:l.target},l.pointerType)}),[a]),{hoverProps:c,isHovered:o}}var ye=o(5206),be=Object.defineProperty,ve=(e,t,r)=>(((e,t,r)=>{t in e?be(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r})(e,"symbol"!=typeof t?t+"":t,r),r);let we=new class{constructor(){ve(this,"current",this.detect()),ve(this,"handoffState","pending"),ve(this,"currentId",0)}set(e){this.current!==e&&(this.handoffState="pending",this.currentId=0,this.current=e)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return"server"===this.current}get isClient(){return"client"===this.current}detect(){return"undefined"==typeof window||"undefined"==typeof document?"server":"client"}handoff(){"pending"===this.handoffState&&(this.handoffState="complete")}get isHandoffComplete(){return"complete"===this.handoffState}};function xe(e){return we.isServer?null:e instanceof Node?e.ownerDocument:null!=e&&e.hasOwnProperty("current")&&e.current instanceof Node?e.current.ownerDocument:document}function _e(e){"function"==typeof queueMicrotask?queueMicrotask(e):Promise.resolve().then(e).catch((e=>setTimeout((()=>{throw e}))))}function Ee(){let e=[],t={addEventListener:(e,r,n,a)=>(e.addEventListener(r,n,a),t.add((()=>e.removeEventListener(r,n,a)))),requestAnimationFrame(...e){let r=requestAnimationFrame(...e);return t.add((()=>cancelAnimationFrame(r)))},nextFrame:(...e)=>t.requestAnimationFrame((()=>t.requestAnimationFrame(...e))),setTimeout(...e){let r=setTimeout(...e);return t.add((()=>clearTimeout(r)))},microTask(...e){let r={current:!0};return _e((()=>{r.current&&e[0]()})),t.add((()=>{r.current=!1}))},style(e,t,r){let n=e.style.getPropertyValue(t);return Object.assign(e.style,{[t]:r}),this.add((()=>{Object.assign(e.style,{[t]:n})}))},group(e){let t=Ee();return e(t),this.add((()=>t.dispose()))},add:t=>(e.includes(t)||e.push(t),()=>{let r=e.indexOf(t);if(r>=0)for(let t of e.splice(r,1))t()}),dispose(){for(let t of e.splice(0))t()}};return t}function ke(){let[e]=(0,i.useState)(Ee);return(0,i.useEffect)((()=>()=>e.dispose()),[e]),e}let Se=(e,t)=>{we.isServer?(0,i.useEffect)(e,t):(0,i.useLayoutEffect)(e,t)};function Ce(e){let t=(0,i.useRef)(e);return Se((()=>{t.current=e}),[e]),t}let Re=function(e){let t=Ce(e);return i.useCallback(((...e)=>t.current(...e)),[t])};function Ae({disabled:e=!1}={}){let t=(0,i.useRef)(null),[r,n]=(0,i.useState)(!1),a=ke(),o=Re((()=>{t.current=null,n(!1),a.dispose()})),s=Re((e=>{if(a.dispose(),null===t.current){t.current=e.currentTarget,n(!0);{let r=xe(e.currentTarget);a.addEventListener(r,"pointerup",o,!1),a.addEventListener(r,"pointermove",(e=>{if(t.current){let r=function(e){let t=e.width/2,r=e.height/2;return{top:e.clientY-r,right:e.clientX+t,bottom:e.clientY+r,left:e.clientX-t}}(e);n(function(e,t){return!(!e||!t||e.right<t.left||e.left>t.right||e.bottom<t.top||e.top>t.bottom)}(r,t.current.getBoundingClientRect()))}}),!1),a.addEventListener(r,"pointercancel",o,!1)}}}));return{pressed:r,pressProps:e?{}:{onPointerDown:s,onPointerUp:o,onClick:o}}}function Pe(e,t){let r=(0,i.useRef)({left:0,top:0});if(Se((()=>{if(!t)return;let e=t.getBoundingClientRect();e&&(r.current=e)}),[e,t]),null==t||!e||t===document.activeElement)return!1;let n=t.getBoundingClientRect();return n.top!==r.current.top||n.left!==r.current.left}function Te(e,t=!1){let[r,n]=(0,i.useReducer)((()=>({})),{}),a=(0,i.useMemo)((()=>function(e){if(null===e)return{width:0,height:0};let{width:t,height:r}=e.getBoundingClientRect();return{width:t,height:r}}(e)),[e,r]);return Se((()=>{if(!e)return;let t=new ResizeObserver(n);return t.observe(e),()=>{t.disconnect()}}),[e]),t?{width:`${a.width}px`,height:`${a.height}px`}:a}class Ne extends Map{constructor(e){super(),this.factory=e}get(e){let t=super.get(e);return void 0===t&&(t=this.factory(e),this.set(e,t)),t}}function Ie(e,t){let r=e(),n=new Set;return{getSnapshot:()=>r,subscribe:e=>(n.add(e),()=>n.delete(e)),dispatch(e,...a){let i=t[e].call(r,...a);i&&(r=i,n.forEach((e=>e())))}}}function Oe(e){return(0,i.useSyncExternalStore)(e.subscribe,e.getSnapshot,e.getSnapshot)}let Le=new Ne((()=>Ie((()=>[]),{ADD(e){return this.includes(e)?this:[...this,e]},REMOVE(e){let t=this.indexOf(e);if(-1===t)return this;let r=this.slice();return r.splice(t,1),r}})));function Be(e,t){let r=Le.get(t),n=(0,i.useId)(),a=Oe(r);if(Se((()=>{if(e)return r.dispatch("ADD",n),()=>r.dispatch("REMOVE",n)}),[r,e]),!e)return!1;let o=a.indexOf(n),s=a.length;return-1===o&&(o=s,s+=1),o===s-1}let je=new Map,De=new Map;function Fe(e){var t;let r=null!=(t=De.get(e))?t:0;return De.set(e,r+1),0!==r||(je.set(e,{"aria-hidden":e.getAttribute("aria-hidden"),inert:e.inert}),e.setAttribute("aria-hidden","true"),e.inert=!0),()=>function(e){var t;let r=null!=(t=De.get(e))?t:1;if(1===r?De.delete(e):De.set(e,r-1),1!==r)return;let n=je.get(e);n&&(null===n["aria-hidden"]?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n["aria-hidden"]),e.inert=n.inert,je.delete(e))}(e)}function Me(e,{allowed:t,disallowed:r}={}){let n=Be(e,"inert-others");Se((()=>{var e,a;if(!n)return;let i=Ee();for(let t of null!=(e=null==r?void 0:r())?e:[])t&&i.add(Fe(t));let o=null!=(a=null==t?void 0:t())?a:[];for(let e of o){if(!e)continue;let t=xe(e);if(!t)continue;let r=e.parentElement;for(;r&&r!==t.body;){for(let e of r.children)o.some((t=>e.contains(t)))||i.add(Fe(e));r=r.parentElement}}return i.dispose}),[n,t,r])}function ze(e,t,r){let n=Ce((e=>{let t=e.getBoundingClientRect();0===t.x&&0===t.y&&0===t.width&&0===t.height&&r()}));(0,i.useEffect)((()=>{if(!e)return;let r=null===t?null:t instanceof HTMLElement?t:t.current;if(!r)return;let a=Ee();if("undefined"!=typeof ResizeObserver){let e=new ResizeObserver((()=>n.current(r)));e.observe(r),a.add((()=>e.disconnect()))}if("undefined"!=typeof IntersectionObserver){let e=new IntersectionObserver((()=>n.current(r)));e.observe(r),a.add((()=>e.disconnect()))}return()=>a.dispose()}),[t,n,e])}function Ve(e,t,...r){if(e in t){let n=t[e];return"function"==typeof n?n(...r):n}let n=new Error(`Tried to handle "${e}" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map((e=>`"${e}"`)).join(", ")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,Ve),n}let We=["[contentEditable=true]","[tabindex]","a[href]","area[href]","button:not([disabled])","iframe","input:not([disabled])","select:not([disabled])","textarea:not([disabled])"].map((e=>`${e}:not([tabindex='-1'])`)).join(","),Ue=["[data-autofocus]"].map((e=>`${e}:not([tabindex='-1'])`)).join(",");var He,$e,Ze=(($e=Ze||{})[$e.First=1]="First",$e[$e.Previous=2]="Previous",$e[$e.Next=4]="Next",$e[$e.Last=8]="Last",$e[$e.WrapAround=16]="WrapAround",$e[$e.NoScroll=32]="NoScroll",$e[$e.AutoFocus=64]="AutoFocus",$e),Ge=((He=Ge||{})[He.Error=0]="Error",He[He.Overflow=1]="Overflow",He[He.Success=2]="Success",He[He.Underflow=3]="Underflow",He),qe=(e=>(e[e.Previous=-1]="Previous",e[e.Next=1]="Next",e))(qe||{});function Ye(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(We)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}var Ke=(e=>(e[e.Strict=0]="Strict",e[e.Loose=1]="Loose",e))(Ke||{});function Xe(e,t=0){var r;return e!==(null==(r=xe(e))?void 0:r.body)&&Ve(t,{0:()=>e.matches(We),1(){let t=e;for(;null!==t;){if(t.matches(We))return!0;t=t.parentElement}return!1}})}function Je(e){let t=xe(e);Ee().nextFrame((()=>{t&&!Xe(t.activeElement,0)&&et(e)}))}var Qe=(e=>(e[e.Keyboard=0]="Keyboard",e[e.Mouse=1]="Mouse",e))(Qe||{});function et(e){null==e||e.focus({preventScroll:!0})}"undefined"!=typeof window&&"undefined"!=typeof document&&(document.addEventListener("keydown",(e=>{e.metaKey||e.altKey||e.ctrlKey||(document.documentElement.dataset.headlessuiFocusVisible="")}),!0),document.addEventListener("click",(e=>{1===e.detail?delete document.documentElement.dataset.headlessuiFocusVisible:0===e.detail&&(document.documentElement.dataset.headlessuiFocusVisible="")}),!0));let tt=["textarea","input"].join(",");function rt(e,t=(e=>e)){return e.slice().sort(((e,r)=>{let n=t(e),a=t(r);if(null===n||null===a)return 0;let i=n.compareDocumentPosition(a);return i&Node.DOCUMENT_POSITION_FOLLOWING?-1:i&Node.DOCUMENT_POSITION_PRECEDING?1:0}))}function nt(e,t){return at(Ye(),t,{relativeTo:e})}function at(e,t,{sorted:r=!0,relativeTo:n=null,skipElements:a=[]}={}){let i=Array.isArray(e)?e.length>0?e[0].ownerDocument:document:e.ownerDocument,o=Array.isArray(e)?r?rt(e):e:64&t?function(e=document.body){return null==e?[]:Array.from(e.querySelectorAll(Ue)).sort(((e,t)=>Math.sign((e.tabIndex||Number.MAX_SAFE_INTEGER)-(t.tabIndex||Number.MAX_SAFE_INTEGER))))}(e):Ye(e);a.length>0&&o.length>1&&(o=o.filter((e=>!a.some((t=>null!=t&&"current"in t?(null==t?void 0:t.current)===e:t===e))))),n=null!=n?n:i.activeElement;let s,l=(()=>{if(5&t)return 1;if(10&t)return-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),c=(()=>{if(1&t)return 0;if(2&t)return Math.max(0,o.indexOf(n))-1;if(4&t)return Math.max(0,o.indexOf(n))+1;if(8&t)return o.length-1;throw new Error("Missing Focus.First, Focus.Previous, Focus.Next or Focus.Last")})(),u=32&t?{preventScroll:!0}:{},d=0,p=o.length;do{if(d>=p||d+p<=0)return 0;let e=c+d;if(16&t)e=(e+p)%p;else{if(e<0)return 3;if(e>=p)return 1}s=o[e],null==s||s.focus(u),d+=l}while(s!==i.activeElement);return 6&t&&function(e){var t,r;return null!=(r=null==(t=null==e?void 0:e.matches)?void 0:t.call(e,tt))&&r}(s)&&s.select(),2}function it(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}function ot(){return it()||/Android/gi.test(window.navigator.userAgent)}function st(e,t,r,n){let a=Ce(r);(0,i.useEffect)((()=>{if(e)return document.addEventListener(t,r,n),()=>document.removeEventListener(t,r,n);function r(e){a.current(e)}}),[e,t,n])}function lt(e,t,r,n){let a=Ce(r);(0,i.useEffect)((()=>{if(e)return window.addEventListener(t,r,n),()=>window.removeEventListener(t,r,n);function r(e){a.current(e)}}),[e,t,n])}function ct(e,t,r){let n=Be(e,"outside-click"),a=Ce(r),o=(0,i.useCallback)((function(e,r){if(e.defaultPrevented)return;let n=r(e);if(null===n||!n.getRootNode().contains(n)||!n.isConnected)return;let i=function e(t){return"function"==typeof t?e(t()):Array.isArray(t)||t instanceof Set?t:[t]}(t);for(let t of i)if(null!==t&&(t.contains(n)||e.composed&&e.composedPath().includes(t)))return;return!Xe(n,Ke.Loose)&&-1!==n.tabIndex&&e.preventDefault(),a.current(e,n)}),[a,t]),s=(0,i.useRef)(null);st(n,"pointerdown",(e=>{var t,r;s.current=(null==(r=null==(t=e.composedPath)?void 0:t.call(e))?void 0:r[0])||e.target}),!0),st(n,"mousedown",(e=>{var t,r;s.current=(null==(r=null==(t=e.composedPath)?void 0:t.call(e))?void 0:r[0])||e.target}),!0),st(n,"click",(e=>{ot()||s.current&&(o(e,(()=>s.current)),s.current=null)}),!0);let l=(0,i.useRef)({x:0,y:0});st(n,"touchstart",(e=>{l.current.x=e.touches[0].clientX,l.current.y=e.touches[0].clientY}),!0),st(n,"touchend",(e=>{let t=e.changedTouches[0].clientX,r=e.changedTouches[0].clientY;if(!(Math.abs(t-l.current.x)>=30||Math.abs(r-l.current.y)>=30))return o(e,(()=>e.target instanceof HTMLElement?e.target:null))}),!0),lt(n,"blur",(e=>o(e,(()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null))),!0)}function ut(...e){return(0,i.useMemo)((()=>xe(...e)),[...e])}function dt(e,t){return(0,i.useMemo)((()=>{var r;if(e.type)return e.type;let n=null!=(r=e.as)?r:"button";return"string"==typeof n&&"button"===n.toLowerCase()||"BUTTON"===(null==t?void 0:t.tagName)&&!t.hasAttribute("type")?"button":void 0}),[e.type,e.as,t])}function pt(){let e;return{before({doc:t}){var r;let n=t.documentElement,a=null!=(r=t.defaultView)?r:window;e=Math.max(0,a.innerWidth-n.clientWidth)},after({doc:t,d:r}){let n=t.documentElement,a=Math.max(0,n.clientWidth-n.offsetWidth),i=Math.max(0,e-a);r.style(n,"paddingRight",`${i}px`)}}}function mt(){return it()?{before({doc:e,d:t,meta:r}){function n(e){return r.containers.flatMap((e=>e())).some((t=>t.contains(e)))}t.microTask((()=>{var r;if("auto"!==window.getComputedStyle(e.documentElement).scrollBehavior){let r=Ee();r.style(e.documentElement,"scrollBehavior","auto"),t.add((()=>t.microTask((()=>r.dispose()))))}let a=null!=(r=window.scrollY)?r:window.pageYOffset,i=null;t.addEventListener(e,"click",(t=>{if(t.target instanceof HTMLElement)try{let r=t.target.closest("a");if(!r)return;let{hash:a}=new URL(r.href),o=e.querySelector(a);o&&!n(o)&&(i=o)}catch{}}),!0),t.addEventListener(e,"touchstart",(e=>{if(e.target instanceof HTMLElement)if(n(e.target)){let r=e.target;for(;r.parentElement&&n(r.parentElement);)r=r.parentElement;t.style(r,"overscrollBehavior","contain")}else t.style(e.target,"touchAction","none")})),t.addEventListener(e,"touchmove",(e=>{if(e.target instanceof HTMLElement){if("INPUT"===e.target.tagName)return;if(n(e.target)){let t=e.target;for(;t.parentElement&&""!==t.dataset.headlessuiPortal&&!(t.scrollHeight>t.clientHeight||t.scrollWidth>t.clientWidth);)t=t.parentElement;""===t.dataset.headlessuiPortal&&e.preventDefault()}else e.preventDefault()}}),{passive:!1}),t.add((()=>{var e;let t=null!=(e=window.scrollY)?e:window.pageYOffset;a!==t&&window.scrollTo(0,a),i&&i.isConnected&&(i.scrollIntoView({block:"nearest"}),i=null)}))}))}}:{}}function ft(e){let t={};for(let r of e)Object.assign(t,r(t));return t}let gt=Ie((()=>new Map),{PUSH(e,t){var r;let n=null!=(r=this.get(e))?r:{doc:e,count:0,d:Ee(),meta:new Set};return n.count++,n.meta.add(t),this.set(e,n),this},POP(e,t){let r=this.get(e);return r&&(r.count--,r.meta.delete(t)),this},SCROLL_PREVENT({doc:e,d:t,meta:r}){let n={doc:e,d:t,meta:ft(r)},a=[mt(),pt(),{before({doc:e,d:t}){t.style(e.documentElement,"overflow","hidden")}}];a.forEach((({before:e})=>null==e?void 0:e(n))),a.forEach((({after:e})=>null==e?void 0:e(n)))},SCROLL_ALLOW({d:e}){e.dispose()},TEARDOWN({doc:e}){this.delete(e)}});function ht(e,t,r=(()=>[document.body])){!function(e,t,r=(()=>({containers:[]}))){let n=Oe(gt),a=t?n.get(t):void 0;!!a&&a.count;Se((()=>{if(t&&e)return gt.dispatch("PUSH",t,r),()=>gt.dispatch("POP",t,r)}),[e,t])}(Be(e,"scroll-lock"),t,(e=>{var t;return{containers:[...null!=(t=e.containers)?t:[],r]}}))}gt.subscribe((()=>{let e=gt.getSnapshot(),t=new Map;for(let[r]of e)t.set(r,r.documentElement.style.overflow);for(let r of e.values()){let e="hidden"===t.get(r.doc),n=0!==r.count;(n&&!e||!n&&e)&&gt.dispatch(r.count>0?"SCROLL_PREVENT":"SCROLL_ALLOW",r),0===r.count&&gt.dispatch("TEARDOWN",r)}}));let yt=Symbol();function bt(...e){let t=(0,i.useRef)(e);(0,i.useEffect)((()=>{t.current=e}),[e]);let r=Re((e=>{for(let r of t.current)null!=r&&("function"==typeof r?r(e):r.current=e)}));return e.every((e=>null==e||(null==e?void 0:e[yt])))?void 0:r}let vt=/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g;function wt(e){var t,r;let n=null!=(t=e.innerText)?t:"",a=e.cloneNode(!0);if(!(a instanceof HTMLElement))return n;let i=!1;for(let e of a.querySelectorAll('[hidden],[aria-hidden],[role="img"]'))e.remove(),i=!0;let o=i?null!=(r=a.innerText)?r:"":n;return vt.test(o)&&(o=o.replace(vt,"")),o}function xt(e){let t=(0,i.useRef)(""),r=(0,i.useRef)("");return Re((()=>{let n=e.current;if(!n)return"";let a=n.innerText;if(t.current===a)return r.current;let i=function(e){let t=e.getAttribute("aria-label");if("string"==typeof t)return t.trim();let r=e.getAttribute("aria-labelledby");if(r){let e=r.split(" ").map((e=>{let t=document.getElementById(e);if(t){let e=t.getAttribute("aria-label");return"string"==typeof e?e.trim():wt(t).trim()}return null})).filter(Boolean);if(e.length>0)return e.join(", ")}return wt(e).trim()}(n).trim().toLowerCase();return t.current=a,r.current=i,i}))}function _t(e){return[e.screenX,e.screenY]}function Et(){let e=(0,i.useRef)([-1,-1]);return{wasMoved(t){let r=_t(t);return(e.current[0]!==r[0]||e.current[1]!==r[1])&&(e.current=r,!0)},update(t){e.current=_t(t)}}}var kt,St;"undefined"!=typeof process&&"undefined"!=typeof globalThis&&"undefined"!=typeof Element&&"test"===(null==(kt=null==process?void 0:process.env)?void 0:kt.NODE_ENV)&&void 0===(null==(St=null==Element?void 0:Element.prototype)?void 0:St.getAnimations)&&(Element.prototype.getAnimations=function(){return console.warn(["Headless UI has polyfilled `Element.prototype.getAnimations` for your tests.","Please install a proper polyfill e.g. `jsdom-testing-mocks`, to silence these warnings.","","Example usage:","```js","import { mockAnimationsApi } from 'jsdom-testing-mocks'","mockAnimationsApi()","```"].join("\n")),[]});var Ct,Rt=((Ct=Rt||{})[Ct.None=0]="None",Ct[Ct.Closed=1]="Closed",Ct[Ct.Enter=2]="Enter",Ct[Ct.Leave=4]="Leave",Ct);function At(e){let t={};for(let r in e)!0===e[r]&&(t[`data-${r}`]="");return t}function Pt(e,t,r,n){let[a,o]=(0,i.useState)(r),{hasFlag:s,addFlag:l,removeFlag:c}=function(e=0){let[t,r]=(0,i.useState)(e),n=(0,i.useCallback)((e=>r(e)),[t]),a=(0,i.useCallback)((e=>r((t=>t|e))),[t]),o=(0,i.useCallback)((e=>(t&e)===e),[t]),s=(0,i.useCallback)((e=>r((t=>t&~e))),[r]),l=(0,i.useCallback)((e=>r((t=>t^e))),[r]);return{flags:t,setFlag:n,addFlag:a,hasFlag:o,removeFlag:s,toggleFlag:l}}(e&&a?3:0),u=(0,i.useRef)(!1),d=(0,i.useRef)(!1),p=ke();return Se((()=>{var a;if(e)return r&&o(!0),t?(null==(a=null==n?void 0:n.start)||a.call(n,r),function(e,{prepare:t,run:r,done:n,inFlight:a}){let i=Ee();return function(e,{inFlight:t,prepare:r}){if(null!=t&&t.current)return void r();let n=e.style.transition;e.style.transition="none",r(),e.offsetHeight,e.style.transition=n}(e,{prepare:t,inFlight:a}),i.nextFrame((()=>{r(),i.requestAnimationFrame((()=>{i.add(function(e,t){var r,n;let a=Ee();if(!e)return a.dispose;let i=!1;a.add((()=>{i=!0}));let o=null!=(n=null==(r=e.getAnimations)?void 0:r.call(e).filter((e=>e instanceof CSSTransition)))?n:[];return 0===o.length?(t(),a.dispose):(Promise.allSettled(o.map((e=>e.finished))).then((()=>{i||t()})),a.dispose)}(e,n))}))})),i.dispose}(t,{inFlight:u,prepare(){d.current?d.current=!1:d.current=u.current,u.current=!0,!d.current&&(r?(l(3),c(4)):(l(4),c(2)))},run(){d.current?r?(c(3),l(4)):(c(4),l(3)):r?c(1):l(1)},done(){var e;d.current&&"function"==typeof t.getAnimations&&t.getAnimations().length>0||(u.current=!1,c(7),r||o(!1),null==(e=null==n?void 0:n.end)||e.call(n,r))}})):void(r&&l(3))}),[e,r,t,p]),e?[a,{closed:s(1),enter:s(2),leave:s(4),transition:s(2)||s(4)}]:[r,{closed:void 0,enter:void 0,leave:void 0,transition:void 0}]}const Tt=Math.min,Nt=Math.max,It=Math.round,Ot=Math.floor,Lt=e=>({x:e,y:e}),Bt={left:"right",right:"left",bottom:"top",top:"bottom"},jt={start:"end",end:"start"};function Dt(e,t,r){return Nt(e,Tt(t,r))}function Ft(e,t){return"function"==typeof e?e(t):e}function Mt(e){return e.split("-")[0]}function zt(e){return e.split("-")[1]}function Vt(e){return"x"===e?"y":"x"}function Wt(e){return"y"===e?"height":"width"}function Ut(e){return["top","bottom"].includes(Mt(e))?"y":"x"}function Ht(e){return Vt(Ut(e))}function $t(e){return e.replace(/start|end/g,(e=>jt[e]))}function Zt(e){return e.replace(/left|right|bottom|top/g,(e=>Bt[e]))}function Gt(e){const{x:t,y:r,width:n,height:a}=e;return{width:n,height:a,top:r,left:t,right:t+n,bottom:r+a,x:t,y:r}}function qt(){return"undefined"!=typeof window}function Yt(e){return Jt(e)?(e.nodeName||"").toLowerCase():"#document"}function Kt(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function Xt(e){var t;return null==(t=(Jt(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Jt(e){return!!qt()&&(e instanceof Node||e instanceof Kt(e).Node)}function Qt(e){return!!qt()&&(e instanceof Element||e instanceof Kt(e).Element)}function er(e){return!!qt()&&(e instanceof HTMLElement||e instanceof Kt(e).HTMLElement)}function tr(e){return!(!qt()||"undefined"==typeof ShadowRoot)&&(e instanceof ShadowRoot||e instanceof Kt(e).ShadowRoot)}function rr(e){const{overflow:t,overflowX:r,overflowY:n,display:a}=lr(e);return/auto|scroll|overlay|hidden|clip/.test(t+n+r)&&!["inline","contents"].includes(a)}function nr(e){return["table","td","th"].includes(Yt(e))}function ar(e){return[":popover-open",":modal"].some((t=>{try{return e.matches(t)}catch(e){return!1}}))}function ir(e){const t=or(),r=Qt(e)?lr(e):e;return"none"!==r.transform||"none"!==r.perspective||!!r.containerType&&"normal"!==r.containerType||!t&&!!r.backdropFilter&&"none"!==r.backdropFilter||!t&&!!r.filter&&"none"!==r.filter||["transform","perspective","filter"].some((e=>(r.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(r.contain||"").includes(e)))}function or(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function sr(e){return["html","body","#document"].includes(Yt(e))}function lr(e){return Kt(e).getComputedStyle(e)}function cr(e){return Qt(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function ur(e){if("html"===Yt(e))return e;const t=e.assignedSlot||e.parentNode||tr(e)&&e.host||Xt(e);return tr(t)?t.host:t}function dr(e){const t=ur(e);return sr(t)?e.ownerDocument?e.ownerDocument.body:e.body:er(t)&&rr(t)?t:dr(t)}function pr(e,t,r){var n;void 0===t&&(t=[]),void 0===r&&(r=!0);const a=dr(e),i=a===(null==(n=e.ownerDocument)?void 0:n.body),o=Kt(a);if(i){const e=function(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}(o);return t.concat(o,o.visualViewport||[],rr(a)?a:[],e&&r?pr(e):[])}return t.concat(a,pr(a,[],r))}function mr(e,t,r){let{reference:n,floating:a}=e;const i=Ut(t),o=Ht(t),s=Wt(o),l=Mt(t),c="y"===i,u=n.x+n.width/2-a.width/2,d=n.y+n.height/2-a.height/2,p=n[s]/2-a[s]/2;let m;switch(l){case"top":m={x:u,y:n.y-a.height};break;case"bottom":m={x:u,y:n.y+n.height};break;case"right":m={x:n.x+n.width,y:d};break;case"left":m={x:n.x-a.width,y:d};break;default:m={x:n.x,y:n.y}}switch(zt(t)){case"start":m[o]-=p*(r&&c?-1:1);break;case"end":m[o]+=p*(r&&c?-1:1)}return m}async function fr(e,t){var r;void 0===t&&(t={});const{x:n,y:a,platform:i,rects:o,elements:s,strategy:l}=e,{boundary:c="clippingAncestors",rootBoundary:u="viewport",elementContext:d="floating",altBoundary:p=!1,padding:m=0}=Ft(t,e),f=function(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}(m),g=s[p?"floating"===d?"reference":"floating":d],h=Gt(await i.getClippingRect({element:null==(r=await(null==i.isElement?void 0:i.isElement(g)))||r?g:g.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(s.floating)),boundary:c,rootBoundary:u,strategy:l})),y="floating"===d?{x:n,y:a,width:o.floating.width,height:o.floating.height}:o.reference,b=await(null==i.getOffsetParent?void 0:i.getOffsetParent(s.floating)),v=await(null==i.isElement?void 0:i.isElement(b))&&await(null==i.getScale?void 0:i.getScale(b))||{x:1,y:1},w=Gt(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:y,offsetParent:b,strategy:l}):y);return{top:(h.top-w.top+f.top)/v.y,bottom:(w.bottom-h.bottom+f.bottom)/v.y,left:(h.left-w.left+f.left)/v.x,right:(w.right-h.right+f.right)/v.x}}function gr(e){const t=lr(e);let r=parseFloat(t.width)||0,n=parseFloat(t.height)||0;const a=er(e),i=a?e.offsetWidth:r,o=a?e.offsetHeight:n,s=It(r)!==i||It(n)!==o;return s&&(r=i,n=o),{width:r,height:n,$:s}}function hr(e){return Qt(e)?e:e.contextElement}function yr(e){const t=hr(e);if(!er(t))return Lt(1);const r=t.getBoundingClientRect(),{width:n,height:a,$:i}=gr(t);let o=(i?It(r.width):r.width)/n,s=(i?It(r.height):r.height)/a;return o&&Number.isFinite(o)||(o=1),s&&Number.isFinite(s)||(s=1),{x:o,y:s}}const br=Lt(0);function vr(e){const t=Kt(e);return or()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:br}function wr(e,t,r,n){void 0===t&&(t=!1),void 0===r&&(r=!1);const a=e.getBoundingClientRect(),i=hr(e);let o=Lt(1);t&&(n?Qt(n)&&(o=yr(n)):o=yr(e));const s=function(e,t,r){return void 0===t&&(t=!1),!(!r||t&&r!==Kt(e))&&t}(i,r,n)?vr(i):Lt(0);let l=(a.left+s.x)/o.x,c=(a.top+s.y)/o.y,u=a.width/o.x,d=a.height/o.y;if(i){const e=Kt(i),t=n&&Qt(n)?Kt(n):n;let r=e,a=r.frameElement;for(;a&&n&&t!==r;){const e=yr(a),t=a.getBoundingClientRect(),n=lr(a),i=t.left+(a.clientLeft+parseFloat(n.paddingLeft))*e.x,o=t.top+(a.clientTop+parseFloat(n.paddingTop))*e.y;l*=e.x,c*=e.y,u*=e.x,d*=e.y,l+=i,c+=o,r=Kt(a),a=r.frameElement}}return Gt({width:u,height:d,x:l,y:c})}function xr(e){return wr(Xt(e)).left+cr(e).scrollLeft}function _r(e,t,r){let n;if("viewport"===t)n=function(e,t){const r=Kt(e),n=Xt(e),a=r.visualViewport;let i=n.clientWidth,o=n.clientHeight,s=0,l=0;if(a){i=a.width,o=a.height;const e=or();(!e||e&&"fixed"===t)&&(s=a.offsetLeft,l=a.offsetTop)}return{width:i,height:o,x:s,y:l}}(e,r);else if("document"===t)n=function(e){const t=Xt(e),r=cr(e),n=e.ownerDocument.body,a=Nt(t.scrollWidth,t.clientWidth,n.scrollWidth,n.clientWidth),i=Nt(t.scrollHeight,t.clientHeight,n.scrollHeight,n.clientHeight);let o=-r.scrollLeft+xr(e);const s=-r.scrollTop;return"rtl"===lr(n).direction&&(o+=Nt(t.clientWidth,n.clientWidth)-a),{width:a,height:i,x:o,y:s}}(Xt(e));else if(Qt(t))n=function(e,t){const r=wr(e,!0,"fixed"===t),n=r.top+e.clientTop,a=r.left+e.clientLeft,i=er(e)?yr(e):Lt(1);return{width:e.clientWidth*i.x,height:e.clientHeight*i.y,x:a*i.x,y:n*i.y}}(t,r);else{const r=vr(e);n={...t,x:t.x-r.x,y:t.y-r.y}}return Gt(n)}function Er(e,t){const r=ur(e);return!(r===t||!Qt(r)||sr(r))&&("fixed"===lr(r).position||Er(r,t))}function kr(e,t,r){const n=er(t),a=Xt(t),i="fixed"===r,o=wr(e,!0,i,t);let s={scrollLeft:0,scrollTop:0};const l=Lt(0);if(n||!n&&!i)if(("body"!==Yt(t)||rr(a))&&(s=cr(t)),n){const e=wr(t,!0,i,t);l.x=e.x+t.clientLeft,l.y=e.y+t.clientTop}else a&&(l.x=xr(a));return{x:o.left+s.scrollLeft-l.x,y:o.top+s.scrollTop-l.y,width:o.width,height:o.height}}function Sr(e){return"static"===lr(e).position}function Cr(e,t){return er(e)&&"fixed"!==lr(e).position?t?t(e):e.offsetParent:null}function Rr(e,t){const r=Kt(e);if(ar(e))return r;if(!er(e)){let t=ur(e);for(;t&&!sr(t);){if(Qt(t)&&!Sr(t))return t;t=ur(t)}return r}let n=Cr(e,t);for(;n&&nr(n)&&Sr(n);)n=Cr(n,t);return n&&sr(n)&&Sr(n)&&!ir(n)?r:n||function(e){let t=ur(e);for(;er(t)&&!sr(t);){if(ir(t))return t;if(ar(t))return null;t=ur(t)}return null}(e)||r}const Ar={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:r,offsetParent:n,strategy:a}=e;const i="fixed"===a,o=Xt(n),s=!!t&&ar(t.floating);if(n===o||s&&i)return r;let l={scrollLeft:0,scrollTop:0},c=Lt(1);const u=Lt(0),d=er(n);if((d||!d&&!i)&&(("body"!==Yt(n)||rr(o))&&(l=cr(n)),er(n))){const e=wr(n);c=yr(n),u.x=e.x+n.clientLeft,u.y=e.y+n.clientTop}return{width:r.width*c.x,height:r.height*c.y,x:r.x*c.x-l.scrollLeft*c.x+u.x,y:r.y*c.y-l.scrollTop*c.y+u.y}},getDocumentElement:Xt,getClippingRect:function(e){let{element:t,boundary:r,rootBoundary:n,strategy:a}=e;const i=[..."clippingAncestors"===r?ar(t)?[]:function(e,t){const r=t.get(e);if(r)return r;let n=pr(e,[],!1).filter((e=>Qt(e)&&"body"!==Yt(e))),a=null;const i="fixed"===lr(e).position;let o=i?ur(e):e;for(;Qt(o)&&!sr(o);){const t=lr(o),r=ir(o);r||"fixed"!==t.position||(a=null),(i?!r&&!a:!r&&"static"===t.position&&a&&["absolute","fixed"].includes(a.position)||rr(o)&&!r&&Er(e,o))?n=n.filter((e=>e!==o)):a=t,o=ur(o)}return t.set(e,n),n}(t,this._c):[].concat(r),n],o=i[0],s=i.reduce(((e,r)=>{const n=_r(t,r,a);return e.top=Nt(n.top,e.top),e.right=Tt(n.right,e.right),e.bottom=Tt(n.bottom,e.bottom),e.left=Nt(n.left,e.left),e}),_r(t,o,a));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}},getOffsetParent:Rr,getElementRects:async function(e){const t=this.getOffsetParent||Rr,r=this.getDimensions,n=await r(e.floating);return{reference:kr(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:n.width,height:n.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:t,height:r}=gr(e);return{width:t,height:r}},getScale:yr,isElement:Qt,isRTL:function(e){return"rtl"===lr(e).direction}};function Pr(e,t,r,n){void 0===n&&(n={});const{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:o="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:l=!1}=n,c=hr(e),u=a||i?[...c?pr(c):[],...pr(t)]:[];u.forEach((e=>{a&&e.addEventListener("scroll",r,{passive:!0}),i&&e.addEventListener("resize",r)}));const d=c&&s?function(e,t){let r,n=null;const a=Xt(e);function i(){var e;clearTimeout(r),null==(e=n)||e.disconnect(),n=null}return function o(s,l){void 0===s&&(s=!1),void 0===l&&(l=1),i();const{left:c,top:u,width:d,height:p}=e.getBoundingClientRect();if(s||t(),!d||!p)return;const m={rootMargin:-Ot(u)+"px "+-Ot(a.clientWidth-(c+d))+"px "+-Ot(a.clientHeight-(u+p))+"px "+-Ot(c)+"px",threshold:Nt(0,Tt(1,l))||1};let f=!0;function g(e){const t=e[0].intersectionRatio;if(t!==l){if(!f)return o();t?o(!1,t):r=setTimeout((()=>{o(!1,1e-7)}),1e3)}f=!1}try{n=new IntersectionObserver(g,{...m,root:a.ownerDocument})}catch(e){n=new IntersectionObserver(g,m)}n.observe(e)}(!0),i}(c,r):null;let p,m=-1,f=null;o&&(f=new ResizeObserver((e=>{let[n]=e;n&&n.target===c&&f&&(f.unobserve(t),cancelAnimationFrame(m),m=requestAnimationFrame((()=>{var e;null==(e=f)||e.observe(t)}))),r()})),c&&!l&&f.observe(c),f.observe(t));let g=l?wr(e):null;return l&&function t(){const n=wr(e);!g||n.x===g.x&&n.y===g.y&&n.width===g.width&&n.height===g.height||r(),g=n,p=requestAnimationFrame(t)}(),r(),()=>{var e;u.forEach((e=>{a&&e.removeEventListener("scroll",r),i&&e.removeEventListener("resize",r)})),null==d||d(),null==(e=f)||e.disconnect(),f=null,l&&cancelAnimationFrame(p)}}const Tr=fr,Nr=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var r,n;const{x:a,y:i,placement:o,middlewareData:s}=t,l=await async function(e,t){const{placement:r,platform:n,elements:a}=e,i=await(null==n.isRTL?void 0:n.isRTL(a.floating)),o=Mt(r),s=zt(r),l="y"===Ut(r),c=["left","top"].includes(o)?-1:1,u=i&&l?-1:1,d=Ft(t,e);let{mainAxis:p,crossAxis:m,alignmentAxis:f}="number"==typeof d?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return s&&"number"==typeof f&&(m="end"===s?-1*f:f),l?{x:m*u,y:p*c}:{x:p*c,y:m*u}}(t,e);return o===(null==(r=s.offset)?void 0:r.placement)&&null!=(n=s.arrow)&&n.alignmentOffset?{}:{x:a+l.x,y:i+l.y,data:{...l,placement:o}}}}},Ir=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:r,y:n,placement:a}=t,{mainAxis:i=!0,crossAxis:o=!1,limiter:s={fn:e=>{let{x:t,y:r}=e;return{x:t,y:r}}},...l}=Ft(e,t),c={x:r,y:n},u=await fr(t,l),d=Ut(Mt(a)),p=Vt(d);let m=c[p],f=c[d];if(i){const e="y"===p?"bottom":"right";m=Dt(m+u["y"===p?"top":"left"],m,m-u[e])}if(o){const e="y"===d?"bottom":"right";f=Dt(f+u["y"===d?"top":"left"],f,f-u[e])}const g=s.fn({...t,[p]:m,[d]:f});return{...g,data:{x:g.x-r,y:g.y-n}}}}},Or=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var r,n;const{placement:a,middlewareData:i,rects:o,initialPlacement:s,platform:l,elements:c}=t,{mainAxis:u=!0,crossAxis:d=!0,fallbackPlacements:p,fallbackStrategy:m="bestFit",fallbackAxisSideDirection:f="none",flipAlignment:g=!0,...h}=Ft(e,t);if(null!=(r=i.arrow)&&r.alignmentOffset)return{};const y=Mt(a),b=Ut(s),v=Mt(s)===s,w=await(null==l.isRTL?void 0:l.isRTL(c.floating)),x=p||(v||!g?[Zt(s)]:function(e){const t=Zt(e);return[$t(e),t,$t(t)]}(s)),_="none"!==f;!p&&_&&x.push(...function(e,t,r,n){const a=zt(e);let i=function(e,t,r){const n=["left","right"],a=["right","left"],i=["top","bottom"],o=["bottom","top"];switch(e){case"top":case"bottom":return r?t?a:n:t?n:a;case"left":case"right":return t?i:o;default:return[]}}(Mt(e),"start"===r,n);return a&&(i=i.map((e=>e+"-"+a)),t&&(i=i.concat(i.map($t)))),i}(s,g,f,w));const E=[s,...x],k=await fr(t,h),S=[];let C=(null==(n=i.flip)?void 0:n.overflows)||[];if(u&&S.push(k[y]),d){const e=function(e,t,r){void 0===r&&(r=!1);const n=zt(e),a=Ht(e),i=Wt(a);let o="x"===a?n===(r?"end":"start")?"right":"left":"start"===n?"bottom":"top";return t.reference[i]>t.floating[i]&&(o=Zt(o)),[o,Zt(o)]}(a,o,w);S.push(k[e[0]],k[e[1]])}if(C=[...C,{placement:a,overflows:S}],!S.every((e=>e<=0))){var R,A;const e=((null==(R=i.flip)?void 0:R.index)||0)+1,t=E[e];if(t)return{data:{index:e,overflows:C},reset:{placement:t}};let r=null==(A=C.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:A.placement;if(!r)switch(m){case"bestFit":{var P;const e=null==(P=C.filter((e=>{if(_){const t=Ut(e.placement);return t===b||"y"===t}return!0})).map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:P[0];e&&(r=e);break}case"initialPlacement":r=s}if(a!==r)return{reset:{placement:r}}}return{}}}},Lr=function(e){return void 0===e&&(e={}),{name:"size",options:e,async fn(t){const{placement:r,rects:n,platform:a,elements:i}=t,{apply:o=(()=>{}),...s}=Ft(e,t),l=await fr(t,s),c=Mt(r),u=zt(r),d="y"===Ut(r),{width:p,height:m}=n.floating;let f,g;"top"===c||"bottom"===c?(f=c,g=u===(await(null==a.isRTL?void 0:a.isRTL(i.floating))?"start":"end")?"left":"right"):(g=c,f="end"===u?"top":"bottom");const h=m-l.top-l.bottom,y=p-l.left-l.right,b=Tt(m-l[f],h),v=Tt(p-l[g],y),w=!t.middlewareData.shift;let x=b,_=v;if(d?_=u||w?Tt(v,y):y:x=u||w?Tt(b,h):h,w&&!u){const e=Nt(l.left,0),t=Nt(l.right,0),r=Nt(l.top,0),n=Nt(l.bottom,0);d?_=p-2*(0!==e||0!==t?e+t:Nt(l.left,l.right)):x=m-2*(0!==r||0!==n?r+n:Nt(l.top,l.bottom))}await o({...t,availableWidth:_,availableHeight:x});const E=await a.getDimensions(i.floating);return p!==E.width||m!==E.height?{reset:{rects:!0}}:{}}}},Br=(e,t,r)=>{const n=new Map,a={platform:Ar,...r},i={...a.platform,_c:n};return(async(e,t,r)=>{const{placement:n="bottom",strategy:a="absolute",middleware:i=[],platform:o}=r,s=i.filter(Boolean),l=await(null==o.isRTL?void 0:o.isRTL(t));let c=await o.getElementRects({reference:e,floating:t,strategy:a}),{x:u,y:d}=mr(c,n,l),p=n,m={},f=0;for(let r=0;r<s.length;r++){const{name:i,fn:g}=s[r],{x:h,y,data:b,reset:v}=await g({x:u,y:d,initialPlacement:n,placement:p,strategy:a,middlewareData:m,rects:c,platform:o,elements:{reference:e,floating:t}});u=null!=h?h:u,d=null!=y?y:d,m={...m,[i]:{...m[i],...b}},v&&f<=50&&(f++,"object"==typeof v&&(v.placement&&(p=v.placement),v.rects&&(c=!0===v.rects?await o.getElementRects({reference:e,floating:t,strategy:a}):v.rects),({x:u,y:d}=mr(c,p,l))),r=-1)}return{x:u,y:d,placement:p,strategy:a,middlewareData:m}})(e,t,{...a,platform:i})};var jr="undefined"!=typeof document?i.useLayoutEffect:i.useEffect;function Dr(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let r,n,a;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(r=e.length,r!==t.length)return!1;for(n=r;0!=n--;)if(!Dr(e[n],t[n]))return!1;return!0}if(a=Object.keys(e),r=a.length,r!==Object.keys(t).length)return!1;for(n=r;0!=n--;)if(!{}.hasOwnProperty.call(t,a[n]))return!1;for(n=r;0!=n--;){const r=a[n];if(!("_owner"===r&&e.$$typeof||Dr(e[r],t[r])))return!1}return!0}return e!=e&&t!=t}function Fr(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function Mr(e,t){const r=Fr(e);return Math.round(t*r)/r}function zr(e){const t=i.useRef(e);return jr((()=>{t.current=e})),t}const Vr=(e,t)=>({...Nr(e),options:[e,t]}),Wr=(e,t)=>({...Or(e),options:[e,t]}),Ur=(e,t)=>({...Lr(e),options:[e,t]}),Hr={...l},$r=Hr.useInsertionEffect||(e=>e());function Zr(e){const t=i.useRef((()=>{}));return $r((()=>{t.current=e})),i.useCallback((function(){for(var e=arguments.length,r=new Array(e),n=0;n<e;n++)r[n]=arguments[n];return null==t.current?void 0:t.current(...r)}),[])}var Gr="undefined"!=typeof document?i.useLayoutEffect:i.useEffect;let qr=!1,Yr=0;const Kr=()=>"floating-ui-"+Math.random().toString(36).slice(2,6)+Yr++,Xr=Hr.useId||function(){const[e,t]=i.useState((()=>qr?Kr():void 0));return Gr((()=>{null==e&&t(Kr())}),[]),i.useEffect((()=>{qr=!0}),[]),e};const Jr=i.createContext(null),Qr=i.createContext(null),en=()=>{var e;return(null==(e=i.useContext(Jr))?void 0:e.id)||null},tn=()=>i.useContext(Qr),rn="data-floating-ui-focusable";function nn(e){void 0===e&&(e={});const{nodeId:t}=e,r=function(e){const{open:t=!1,onOpenChange:r,elements:n}=e,a=Xr(),o=i.useRef({}),[s]=i.useState((()=>function(){const e=new Map;return{emit(t,r){var n;null==(n=e.get(t))||n.forEach((e=>e(r)))},on(t,r){e.set(t,[...e.get(t)||[],r])},off(t,r){var n;e.set(t,(null==(n=e.get(t))?void 0:n.filter((e=>e!==r)))||[])}}}())),l=null!=en(),[c,u]=i.useState(n.reference),d=Zr(((e,t,n)=>{o.current.openEvent=e?t:void 0,s.emit("openchange",{open:e,event:t,reason:n,nested:l}),null==r||r(e,t,n)})),p=i.useMemo((()=>({setPositionReference:u})),[]),m=i.useMemo((()=>({reference:c||n.reference||null,floating:n.floating||null,domReference:n.reference})),[c,n.reference,n.floating]);return i.useMemo((()=>({dataRef:o,open:t,onOpenChange:d,elements:m,events:s,floatingId:a,refs:p})),[t,d,m,s,a,p])}({...e,elements:{reference:null,floating:null,...e.elements}}),n=e.rootContext||r,a=n.elements,[o,s]=i.useState(null),[l,c]=i.useState(null),u=(null==a?void 0:a.reference)||o,d=i.useRef(null),p=tn();Gr((()=>{u&&(d.current=u)}),[u]);const m=function(e){void 0===e&&(e={});const{placement:t="bottom",strategy:r="absolute",middleware:n=[],platform:a,elements:{reference:o,floating:s}={},transform:l=!0,whileElementsMounted:c,open:u}=e,[d,p]=i.useState({x:0,y:0,strategy:r,placement:t,middlewareData:{},isPositioned:!1}),[m,f]=i.useState(n);Dr(m,n)||f(n);const[g,h]=i.useState(null),[y,b]=i.useState(null),v=i.useCallback((e=>{e!==E.current&&(E.current=e,h(e))}),[]),w=i.useCallback((e=>{e!==k.current&&(k.current=e,b(e))}),[]),x=o||g,_=s||y,E=i.useRef(null),k=i.useRef(null),S=i.useRef(d),C=null!=c,R=zr(c),A=zr(a),P=zr(u),T=i.useCallback((()=>{if(!E.current||!k.current)return;const e={placement:t,strategy:r,middleware:m};A.current&&(e.platform=A.current),Br(E.current,k.current,e).then((e=>{const t={...e,isPositioned:!1!==P.current};N.current&&!Dr(S.current,t)&&(S.current=t,ye.flushSync((()=>{p(t)})))}))}),[m,t,r,A,P]);jr((()=>{!1===u&&S.current.isPositioned&&(S.current.isPositioned=!1,p((e=>({...e,isPositioned:!1}))))}),[u]);const N=i.useRef(!1);jr((()=>(N.current=!0,()=>{N.current=!1})),[]),jr((()=>{if(x&&(E.current=x),_&&(k.current=_),x&&_){if(R.current)return R.current(x,_,T);T()}}),[x,_,T,R,C]);const I=i.useMemo((()=>({reference:E,floating:k,setReference:v,setFloating:w})),[v,w]),O=i.useMemo((()=>({reference:x,floating:_})),[x,_]),L=i.useMemo((()=>{const e={position:r,left:0,top:0};if(!O.floating)return e;const t=Mr(O.floating,d.x),n=Mr(O.floating,d.y);return l?{...e,transform:"translate("+t+"px, "+n+"px)",...Fr(O.floating)>=1.5&&{willChange:"transform"}}:{position:r,left:t,top:n}}),[r,l,O.floating,d.x,d.y]);return i.useMemo((()=>({...d,update:T,refs:I,elements:O,floatingStyles:L})),[d,T,I,O,L])}({...e,elements:{...a,...l&&{reference:l}}}),f=i.useCallback((e=>{const t=Qt(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),contextElement:e}:e;c(t),m.refs.setReference(t)}),[m.refs]),g=i.useCallback((e=>{(Qt(e)||null===e)&&(d.current=e,s(e)),(Qt(m.refs.reference.current)||null===m.refs.reference.current||null!==e&&!Qt(e))&&m.refs.setReference(e)}),[m.refs]),h=i.useMemo((()=>({...m.refs,setReference:g,setPositionReference:f,domReference:d})),[m.refs,g,f]),y=i.useMemo((()=>({...m.elements,domReference:u})),[m.elements,u]),b=i.useMemo((()=>({...m,...n,refs:h,elements:y,nodeId:t})),[m,h,y,t,n]);return Gr((()=>{n.dataRef.current.floatingContext=b;const e=null==p?void 0:p.nodesRef.current.find((e=>e.id===t));e&&(e.context=b)})),i.useMemo((()=>({...m,context:b,refs:h,elements:y})),[m,h,y,b])}const an="active",on="selected";function sn(e,t,r){const n=new Map,a="item"===r;let i=e;if(a&&e){const{[an]:t,[on]:r,...n}=e;i=n}return{..."floating"===r&&{tabIndex:-1,[rn]:""},...i,...t.map((t=>{const n=t?t[r]:null;return"function"==typeof n?e?n(e):null:n})).concat(e).reduce(((e,t)=>t?(Object.entries(t).forEach((t=>{let[r,i]=t;var o;a&&[an,on].includes(r)||(0===r.indexOf("on")?(n.has(r)||n.set(r,[]),"function"==typeof i&&(null==(o=n.get(r))||o.push(i),e[r]=function(){for(var e,t=arguments.length,a=new Array(t),i=0;i<t;i++)a[i]=arguments[i];return null==(e=n.get(r))?void 0:e.map((e=>e(...a))).find((e=>void 0!==e))})):e[r]=i)})),e):e),{})}}function ln(e,t){return{...e,rects:{...e.rects,floating:{...e.rects.floating,height:t}}}}let cn=(0,i.createContext)({styles:void 0,setReference:()=>{},setFloating:()=>{},getReferenceProps:()=>({}),getFloatingProps:()=>({}),slot:{}});cn.displayName="FloatingContext";let un=(0,i.createContext)(null);function dn(e){return(0,i.useMemo)((()=>e?"string"==typeof e?{to:e}:e:null),[e])}function pn(){return(0,i.useContext)(cn).setReference}function mn(){return(0,i.useContext)(cn).getReferenceProps}function fn(){let{getFloatingProps:e,slot:t}=(0,i.useContext)(cn);return(0,i.useCallback)(((...r)=>Object.assign({},e(...r),{"data-anchor":t.anchor})),[e,t])}function gn(e=null){!1===e&&(e=null),"string"==typeof e&&(e={to:e});let t=(0,i.useContext)(un),r=(0,i.useMemo)((()=>e),[JSON.stringify(e,((e,t)=>{var r;return null!=(r=null==t?void 0:t.outerHTML)?r:t}))]);Se((()=>{null==t||t(null!=r?r:null)}),[t,r]);let n=(0,i.useContext)(cn);return(0,i.useMemo)((()=>[n.setFloating,e?n.styles:{}]),[n.setFloating,e,n.styles])}un.displayName="PlacementContext";function hn({children:e,enabled:t=!0}){let[r,n]=(0,i.useState)(null),[a,o]=(0,i.useState)(0),s=(0,i.useRef)(null),[l,c]=(0,i.useState)(null);!function(e){Se((()=>{if(!e)return;let t=new MutationObserver((()=>{let t=window.getComputedStyle(e).maxHeight,r=parseFloat(t);if(isNaN(r))return;let n=parseInt(t);isNaN(n)||r!==n&&(e.style.maxHeight=`${Math.ceil(r)}px`)}));return t.observe(e,{attributes:!0,attributeFilter:["style"]}),()=>{t.disconnect()}}),[e])}(l);let u=t&&null!==r&&null!==l,{to:d="bottom",gap:p=0,offset:m=0,padding:f=0,inner:g}=function(e,t){var r,n,a;let i=yn(null!=(r=null==e?void 0:e.gap)?r:"var(--anchor-gap, 0)",t),o=yn(null!=(n=null==e?void 0:e.offset)?n:"var(--anchor-offset, 0)",t),s=yn(null!=(a=null==e?void 0:e.padding)?a:"var(--anchor-padding, 0)",t);return{...e,gap:i,offset:o,padding:s}}(r,l),[h,y="center"]=d.split(" ");Se((()=>{u&&o(0)}),[u]);let{refs:b,floatingStyles:v,context:w}=nn({open:u,placement:"selection"===h?"center"===y?"bottom":`bottom-${y}`:"center"===y?`${h}`:`${h}-${y}`,strategy:"absolute",transform:!1,middleware:[Vr({mainAxis:"selection"===h?0:p,crossAxis:m}),(k={padding:f},{...Ir(k),options:[k,S]}),"selection"!==h&&Wr({padding:f}),"selection"===h&&g?(E={...g,padding:f,overflowRef:s,offset:a,minItemsVisible:4,referenceOverflowThreshold:f,onFallbackChange(e){var t,r;if(!e)return;let n=w.elements.floating;if(!n)return;let a=parseFloat(getComputedStyle(n).scrollPaddingBottom)||0,i=Math.min(4,n.childElementCount),s=0,l=0;for(let e of null!=(r=null==(t=w.elements.floating)?void 0:t.childNodes)?r:[])if(e instanceof HTMLElement){let t=e.offsetTop,r=t+e.clientHeight+a,o=n.scrollTop,c=o+n.clientHeight;if(!(t>=o&&r<=c)){l=Math.max(0,Math.min(r,c)-Math.max(t,o)),s=e.clientHeight;break}i--}i>=1&&o((e=>{let t=s*i-l+a;return e>=t?e:t}))}},{name:"inner",options:E,async fn(e){const{listRef:t,overflowRef:r,onFallbackChange:n,offset:a=0,index:i=0,minItemsVisible:o=4,referenceOverflowThreshold:s=0,scrollRef:l,...c}=Ft(E,e),{rects:u,elements:{floating:d}}=e,p=t.current[i],m=(null==l?void 0:l.current)||d,f=d.clientTop||m.clientTop,g=0!==d.clientTop,h=0!==m.clientTop,y=d===m;if(!p)return{};const b={...e,...await Vr(-p.offsetTop-d.clientTop-u.reference.height/2-p.offsetHeight/2-a).fn(e)},v=await Tr(ln(b,m.scrollHeight+f+d.clientTop),c),w=await Tr(b,{...c,elementContext:"reference"}),x=Nt(0,v.top),_=b.y+x,k=m.scrollHeight>m.clientHeight,S=k?e=>e:It,C=S(Nt(0,m.scrollHeight+(g&&y||h?2*f:0)-x-Nt(0,v.bottom)));if(m.style.maxHeight=C+"px",m.scrollTop=x,n){const e=k&&m.offsetHeight<p.offsetHeight*o-1||w.top>=-s||w.bottom>=-s;ye.flushSync((()=>n(e)))}return r&&(r.current=await Tr(ln({...b,y:_},m.offsetHeight+f+d.clientTop),c)),{y:_}}}):null,Ur({padding:f,apply({availableWidth:e,availableHeight:t,elements:r}){Object.assign(r.floating.style,{overflow:"auto",maxWidth:`${e}px`,maxHeight:`min(var(--anchor-max-height, 100vh), ${t}px)`})}})].filter(Boolean),whileElementsMounted:Pr}),[x=h,_=y]=w.placement.split("-");var E,k,S;"selection"===h&&(x="selection");let C=(0,i.useMemo)((()=>({anchor:[x,_].filter(Boolean).join(" ")})),[x,_]),R=function(e,t){const{open:r,elements:n}=e,{enabled:a=!0,overflowRef:o,scrollRef:s,onChange:l}=t,c=Zr(l),u=i.useRef(!1),d=i.useRef(null),p=i.useRef(null);i.useEffect((()=>{if(!a)return;function e(e){if(e.ctrlKey||!t||null==o.current)return;const r=e.deltaY,n=o.current.top>=-.5,a=o.current.bottom>=-.5,i=t.scrollHeight-t.clientHeight,s=r<0?-1:1,l=r<0?"max":"min";t.scrollHeight<=t.clientHeight||(!n&&r>0||!a&&r<0?(e.preventDefault(),ye.flushSync((()=>{c((e=>e+Math[l](r,i*s)))}))):/firefox/i.test(function(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map((e=>{let{brand:t,version:r}=e;return t+"/"+r})).join(" "):navigator.userAgent}())&&(t.scrollTop+=r))}const t=(null==s?void 0:s.current)||n.floating;return r&&t?(t.addEventListener("wheel",e),requestAnimationFrame((()=>{d.current=t.scrollTop,null!=o.current&&(p.current={...o.current})})),()=>{d.current=null,p.current=null,t.removeEventListener("wheel",e)}):void 0}),[a,r,n.floating,o,s,c]);const m=i.useMemo((()=>({onKeyDown(){u.current=!0},onWheel(){u.current=!1},onPointerMove(){u.current=!1},onScroll(){const e=(null==s?void 0:s.current)||n.floating;if(o.current&&e&&u.current){if(null!==d.current){const t=e.scrollTop-d.current;(o.current.bottom<-.5&&t<-1||o.current.top<-.5&&t>1)&&ye.flushSync((()=>c((e=>e+t))))}requestAnimationFrame((()=>{d.current=e.scrollTop}))}}})),[n.floating,c,o,s]);return i.useMemo((()=>a?{floating:m}:{}),[a,m])}(w,{overflowRef:s,onChange:o}),{getReferenceProps:A,getFloatingProps:P}=function(e){void 0===e&&(e=[]);const t=e.map((e=>null==e?void 0:e.reference)),r=e.map((e=>null==e?void 0:e.floating)),n=e.map((e=>null==e?void 0:e.item)),a=i.useCallback((t=>sn(t,e,"reference")),t),o=i.useCallback((t=>sn(t,e,"floating")),r),s=i.useCallback((t=>sn(t,e,"item")),n);return i.useMemo((()=>({getReferenceProps:a,getFloatingProps:o,getItemProps:s})),[a,o,s])}([R]),T=Re((e=>{c(e),b.setFloating(e)}));return i.createElement(un.Provider,{value:n},i.createElement(cn.Provider,{value:{setFloating:T,setReference:b.setReference,styles:v,getReferenceProps:A,getFloatingProps:P,slot:C}},e))}function yn(e,t,r=void 0){let n=ke(),a=Re(((e,t)=>{if(null==e)return[r,null];if("number"==typeof e)return[e,null];if("string"==typeof e){if(!t)return[r,null];let a=vn(e,t);return[a,r=>{let i=bn(e);{let o=i.map((e=>window.getComputedStyle(t).getPropertyValue(e)));n.requestAnimationFrame((function s(){n.nextFrame(s);let l=!1;for(let[e,r]of i.entries()){let n=window.getComputedStyle(t).getPropertyValue(r);if(o[e]!==n){o[e]=n,l=!0;break}}if(!l)return;let c=vn(e,t);a!==c&&(r(c),a=c)}))}return n.dispose}]}return[r,null]})),o=(0,i.useMemo)((()=>a(e,t)[0]),[e,t]),[s=o,l]=(0,i.useState)();return Se((()=>{let[r,n]=a(e,t);if(l(r),n)return n(l)}),[e,t]),s}function bn(e){let t=/var\((.*)\)/.exec(e);if(t){let e=t[1].indexOf(",");if(-1===e)return[t[1]];let r=t[1].slice(0,e).trim(),n=t[1].slice(e+1).trim();return n?[r,...bn(n)]:[r]}return[]}function vn(e,t){let r=document.createElement("div");t.appendChild(r),r.style.setProperty("margin-top","0px","important"),r.style.setProperty("margin-top",e,"important");let n=parseFloat(window.getComputedStyle(r).marginTop)||0;return t.removeChild(r),n}let wn=(0,i.createContext)(null);wn.displayName="OpenClosedContext";var xn=(e=>(e[e.Open=1]="Open",e[e.Closed=2]="Closed",e[e.Closing=4]="Closing",e[e.Opening=8]="Opening",e))(xn||{});function _n(){return(0,i.useContext)(wn)}function En({value:e,children:t}){return i.createElement(wn.Provider,{value:e},t)}function kn({children:e}){return i.createElement(wn.Provider,{value:null},e)}function Sn(e){let t=e.parentElement,r=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(r=t),t=t.parentElement;let n=""===(null==t?void 0:t.getAttribute("disabled"));return(!n||!function(e){if(!e)return!1;let t=e.previousElementSibling;for(;null!==t;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}(r))&&n}var Cn,Rn=((Cn=Rn||{})[Cn.First=0]="First",Cn[Cn.Previous=1]="Previous",Cn[Cn.Next=2]="Next",Cn[Cn.Last=3]="Last",Cn[Cn.Specific=4]="Specific",Cn[Cn.Nothing=5]="Nothing",Cn);function An(e,t){let r=t.resolveItems();if(r.length<=0)return null;let n=t.resolveActiveIndex(),a=null!=n?n:-1;switch(e.focus){case 0:for(let e=0;e<r.length;++e)if(!t.resolveDisabled(r[e],e,r))return e;return n;case 1:-1===a&&(a=r.length);for(let e=a-1;e>=0;--e)if(!t.resolveDisabled(r[e],e,r))return e;return n;case 2:for(let e=a+1;e<r.length;++e)if(!t.resolveDisabled(r[e],e,r))return e;return n;case 3:for(let e=r.length-1;e>=0;--e)if(!t.resolveDisabled(r[e],e,r))return e;return n;case 4:for(let n=0;n<r.length;++n)if(t.resolveId(r[n],n,r)===e.id)return n;return n;case 5:return null;default:!function(e){throw new Error("Unexpected object: "+e)}(e)}}function Pn(...e){return Array.from(new Set(e.flatMap((e=>"string"==typeof e?e.split(" "):[])))).filter(Boolean).join(" ")}var Tn=(e=>(e[e.None=0]="None",e[e.RenderStrategy=1]="RenderStrategy",e[e.Static=2]="Static",e))(Tn||{}),Nn=(e=>(e[e.Unmount=0]="Unmount",e[e.Hidden=1]="Hidden",e))(Nn||{});function In(){let e=function(){let e=(0,i.useRef)([]),t=(0,i.useCallback)((t=>{for(let r of e.current)null!=r&&("function"==typeof r?r(t):r.current=t)}),[]);return(...r)=>{if(!r.every((e=>null==e)))return e.current=r,t}}();return(0,i.useCallback)((t=>function({ourProps:e,theirProps:t,slot:r,defaultTag:n,features:a,visible:i=!0,name:o,mergeRefs:s}){s=null!=s?s:Ln;let l=Bn(t,e);if(i)return On(l,r,n,o,s);let c=null!=a?a:0;if(2&c){let{static:e=!1,...t}=l;if(e)return On(t,r,n,o,s)}if(1&c){let{unmount:e=!0,...t}=l;return Ve(e?0:1,{0:()=>null,1:()=>On({...t,hidden:!0,style:{display:"none"}},r,n,o,s)})}return On(l,r,n,o,s)}({mergeRefs:e,...t})),[e])}function On(e,t={},r,n,a){let{as:o=r,children:s,refName:l="ref",...c}=Mn(e,["unmount","static"]),u=void 0!==e.ref?{[l]:e.ref}:{},d="function"==typeof s?s(t):s;"className"in c&&c.className&&"function"==typeof c.className&&(c.className=c.className(t)),c["aria-labelledby"]&&c["aria-labelledby"]===c.id&&(c["aria-labelledby"]=void 0);let p={};if(t){let e=!1,r=[];for(let[n,a]of Object.entries(t))"boolean"==typeof a&&(e=!0),!0===a&&r.push(n.replace(/([A-Z])/g,(e=>`-${e.toLowerCase()}`)));if(e){p["data-headlessui-state"]=r.join(" ");for(let e of r)p[`data-${e}`]=""}}if(o===i.Fragment&&(Object.keys(Fn(c)).length>0||Object.keys(Fn(p)).length>0)){if((0,i.isValidElement)(d)&&!(Array.isArray(d)&&d.length>1)){let e=d.props,t=null==e?void 0:e.className,r="function"==typeof t?(...e)=>Pn(t(...e),c.className):Pn(t,c.className),n=r?{className:r}:{},o=Bn(d.props,Fn(Mn(c,["ref"])));for(let e in p)e in o&&delete p[e];return(0,i.cloneElement)(d,Object.assign({},o,p,u,{ref:a(d.ref,u.ref)},n))}if(Object.keys(Fn(c)).length>0)throw new Error(['Passing props on "Fragment"!',"",`The current component <${n} /> is rendering a "Fragment".`,"However we need to passthrough the following props:",Object.keys(Fn(c)).concat(Object.keys(Fn(p))).map((e=>`  - ${e}`)).join("\n"),"","You can apply a few solutions:",['Add an `as="..."` prop, to ensure that we render an actual element instead of a "Fragment".',"Render a single element as the child so that we can forward the props onto that element."].map((e=>`  - ${e}`)).join("\n")].join("\n"))}return(0,i.createElement)(o,Object.assign({},Mn(c,["ref"]),o!==i.Fragment&&u,o!==i.Fragment&&p),d)}function Ln(...e){return e.every((e=>null==e))?void 0:t=>{for(let r of e)null!=r&&("function"==typeof r?r(t):r.current=t)}}function Bn(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},r={};for(let n of e)for(let e in n)e.startsWith("on")&&"function"==typeof n[e]?(null!=r[e]||(r[e]=[]),r[e].push(n[e])):t[e]=n[e];if(t.disabled||t["aria-disabled"])for(let e in r)/^(on(?:Click|Pointer|Mouse|Key)(?:Down|Up|Press)?)$/.test(e)&&(r[e]=[e=>{var t;return null==(t=null==e?void 0:e.preventDefault)?void 0:t.call(e)}]);for(let e in r)Object.assign(t,{[e](t,...n){let a=r[e];for(let e of a){if((t instanceof Event||(null==t?void 0:t.nativeEvent)instanceof Event)&&t.defaultPrevented)return;e(t,...n)}}});return t}function jn(...e){if(0===e.length)return{};if(1===e.length)return e[0];let t={},r={};for(let n of e)for(let e in n)e.startsWith("on")&&"function"==typeof n[e]?(null!=r[e]||(r[e]=[]),r[e].push(n[e])):t[e]=n[e];for(let e in r)Object.assign(t,{[e](...t){let n=r[e];for(let e of n)null==e||e(...t)}});return t}function Dn(e){var t;return Object.assign((0,i.forwardRef)(e),{displayName:null!=(t=e.displayName)?t:e.name})}function Fn(e){let t=Object.assign({},e);for(let e in t)void 0===t[e]&&delete t[e];return t}function Mn(e,t=[]){let r=Object.assign({},e);for(let e of t)e in r&&delete r[e];return r}let zn=(0,i.createContext)(void 0);function Vn(){return(0,i.useContext)(zn)}let Wn=(0,i.createContext)(null);function Un(){let e=(0,i.useContext)(Wn);if(null===e){let e=new Error("You used a <Description /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,Un),e}return e}function Hn(){let[e,t]=(0,i.useState)([]);return[e.length>0?e.join(" "):void 0,(0,i.useMemo)((()=>function(e){let r=Re((e=>(t((t=>[...t,e])),()=>t((t=>{let r=t.slice(),n=r.indexOf(e);return-1!==n&&r.splice(n,1),r}))))),n=(0,i.useMemo)((()=>({register:r,slot:e.slot,name:e.name,props:e.props,value:e.value})),[r,e.slot,e.name,e.props,e.value]);return i.createElement(Wn.Provider,{value:n},e.children)}),[t])]}Wn.displayName="DescriptionContext";let $n=Dn((function(e,t){let r=(0,i.useId)(),n=Vn(),{id:a=`headlessui-description-${r}`,...o}=e,s=Un(),l=bt(t);Se((()=>s.register(a)),[a,s.register]);let c=n||!1,u=(0,i.useMemo)((()=>({...s.slot,disabled:c})),[s.slot,c]),d={ref:l,...s.props,id:a};return In()({ourProps:d,theirProps:o,slot:u,defaultTag:"p",name:s.name||"Description"})})),Zn=Object.assign($n,{});var Gn=(e=>(e.Space=" ",e.Enter="Enter",e.Escape="Escape",e.Backspace="Backspace",e.Delete="Delete",e.ArrowLeft="ArrowLeft",e.ArrowUp="ArrowUp",e.ArrowRight="ArrowRight",e.ArrowDown="ArrowDown",e.Home="Home",e.End="End",e.PageUp="PageUp",e.PageDown="PageDown",e.Tab="Tab",e))(Gn||{});let qn=(0,i.createContext)(void 0);function Yn(){return(0,i.useContext)(qn)}let Kn=(0,i.createContext)(null);function Xn(){let e=(0,i.useContext)(Kn);if(null===e){let e=new Error("You used a <Label /> component, but it is not inside a relevant parent.");throw Error.captureStackTrace&&Error.captureStackTrace(e,Xn),e}return e}function Jn(e){var t,r,n;let a=null!=(r=null==(t=(0,i.useContext)(Kn))?void 0:t.value)?r:void 0;return(null!=(n=null==e?void 0:e.length)?n:0)>0?[a,...e].filter(Boolean).join(" "):a}function Qn({inherit:e=!1}={}){let t=Jn(),[r,n]=(0,i.useState)([]),a=e?[t,...r].filter(Boolean):r;return[a.length>0?a.join(" "):void 0,(0,i.useMemo)((()=>function(e){let t=Re((e=>(n((t=>[...t,e])),()=>n((t=>{let r=t.slice(),n=r.indexOf(e);return-1!==n&&r.splice(n,1),r}))))),r=(0,i.useMemo)((()=>({register:t,slot:e.slot,name:e.name,props:e.props,value:e.value})),[t,e.slot,e.name,e.props,e.value]);return i.createElement(Kn.Provider,{value:r},e.children)}),[n])]}Kn.displayName="LabelContext";let ea=Dn((function(e,t){var r;let n=(0,i.useId)(),a=Xn(),o=Yn(),s=Vn(),{id:l=`headlessui-label-${n}`,htmlFor:c=(null!=o?o:null==(r=a.props)?void 0:r.htmlFor),passive:u=!1,...d}=e,p=bt(t);Se((()=>a.register(l)),[l,a.register]);let m=Re((e=>{let t=e.currentTarget;if(t instanceof HTMLLabelElement&&e.preventDefault(),a.props&&"onClick"in a.props&&"function"==typeof a.props.onClick&&a.props.onClick(e),t instanceof HTMLLabelElement){let e=document.getElementById(t.htmlFor);if(e){let t=e.getAttribute("disabled");if("true"===t||""===t)return;let r=e.getAttribute("aria-disabled");if("true"===r||""===r)return;(e instanceof HTMLInputElement&&("radio"===e.type||"checkbox"===e.type)||"radio"===e.role||"checkbox"===e.role||"switch"===e.role)&&e.click(),e.focus({preventScroll:!0})}}})),f=s||!1,g=(0,i.useMemo)((()=>({...a.slot,disabled:f})),[a.slot,f]),h={ref:p,...a.props,id:l,htmlFor:c,onClick:m};return u&&("onClick"in h&&(delete h.htmlFor,delete h.onClick),"onClick"in d&&delete d.onClick),In()({ourProps:h,theirProps:d,slot:g,defaultTag:c?"label":"div",name:a.name||"Label"})})),ta=Object.assign(ea,{});function ra(e){let t=Re(e),r=(0,i.useRef)(!1);(0,i.useEffect)((()=>(r.current=!1,()=>{r.current=!0,_e((()=>{r.current&&t()}))})),[t])}function na(){let e=function(){let e="undefined"==typeof document;return"useSyncExternalStore"in l&&(e=>e.useSyncExternalStore)(l)((()=>()=>{}),(()=>!1),(()=>!e))}(),[t,r]=i.useState(we.isHandoffComplete);return t&&!1===we.isHandoffComplete&&r(!1),i.useEffect((()=>{!0!==t&&r(!0)}),[t]),i.useEffect((()=>we.handoff()),[]),!e&&t}let aa=(0,i.createContext)(!1);function ia(e){return i.createElement(aa.Provider,{value:e.force},e.children)}let oa=i.Fragment,sa=Dn((function(e,t){let r=e,n=(0,i.useRef)(null),a=bt(function(e,t=!0){return Object.assign(e,{[yt]:t})}((e=>{n.current=e})),t),o=ut(n),s=function(e){let t=(0,i.useContext)(aa),r=(0,i.useContext)(ca),n=ut(e),[a,o]=(0,i.useState)((()=>{var e;if(!t&&null!==r)return null!=(e=r.current)?e:null;if(we.isServer)return null;let a=null==n?void 0:n.getElementById("headlessui-portal-root");if(a)return a;if(null===n)return null;let i=n.createElement("div");return i.setAttribute("id","headlessui-portal-root"),n.body.appendChild(i)}));return(0,i.useEffect)((()=>{null!==a&&(null!=n&&n.body.contains(a)||null==n||n.body.appendChild(a))}),[a,n]),(0,i.useEffect)((()=>{t||null!==r&&o(r.current)}),[r,o,t]),a}(n),[l]=(0,i.useState)((()=>{var e;return we.isServer?null:null!=(e=null==o?void 0:o.createElement("div"))?e:null})),c=(0,i.useContext)(ua),u=na();Se((()=>{!s||!l||s.contains(l)||(l.setAttribute("data-headlessui-portal",""),s.appendChild(l))}),[s,l]),Se((()=>{if(l&&c)return c.register(l)}),[c,l]),ra((()=>{var e;!s||!l||(l instanceof Node&&s.contains(l)&&s.removeChild(l),s.childNodes.length<=0&&(null==(e=s.parentElement)||e.removeChild(s)))}));let d=In();return u&&s&&l?(0,ye.createPortal)(d({ourProps:{ref:a},theirProps:r,slot:{},defaultTag:oa,name:"Portal"}),l):null})),la=i.Fragment,ca=(0,i.createContext)(null),ua=(0,i.createContext)(null),da=Dn((function(e,t){let r=bt(t),{enabled:n=!0,...a}=e,o=In();return n?i.createElement(sa,{...a,ref:r}):o({ourProps:{ref:r},theirProps:a,slot:{},defaultTag:oa,name:"Portal"})})),pa=Dn((function(e,t){let{target:r,...n}=e,a={ref:bt(t)},o=In();return i.createElement(ca.Provider,{value:r},o({ourProps:a,theirProps:n,defaultTag:la,name:"Popover.Group"}))})),ma=Object.assign(da,{Group:pa});var fa=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(fa||{}),ga=(e=>(e[e.Pointer=0]="Pointer",e[e.Other=1]="Other",e))(ga||{}),ha=(e=>(e[e.OpenMenu=0]="OpenMenu",e[e.CloseMenu=1]="CloseMenu",e[e.GoToItem=2]="GoToItem",e[e.Search=3]="Search",e[e.ClearSearch=4]="ClearSearch",e[e.RegisterItem=5]="RegisterItem",e[e.UnregisterItem=6]="UnregisterItem",e[e.SetButtonElement=7]="SetButtonElement",e[e.SetItemsElement=8]="SetItemsElement",e))(ha||{});function ya(e,t=(e=>e)){let r=null!==e.activeItemIndex?e.items[e.activeItemIndex]:null,n=rt(t(e.items.slice()),(e=>e.dataRef.current.domRef.current)),a=r?n.indexOf(r):null;return-1===a&&(a=null),{items:n,activeItemIndex:a}}let ba={1:e=>1===e.menuState?e:{...e,activeItemIndex:null,menuState:1},0:e=>0===e.menuState?e:{...e,__demoMode:!1,menuState:0},2:(e,t)=>{var r,n,a,i,o;if(1===e.menuState)return e;let s={...e,searchQuery:"",activationTrigger:null!=(r=t.trigger)?r:1,__demoMode:!1};if(t.focus===Rn.Nothing)return{...s,activeItemIndex:null};if(t.focus===Rn.Specific)return{...s,activeItemIndex:e.items.findIndex((e=>e.id===t.id))};if(t.focus===Rn.Previous){let r=e.activeItemIndex;if(null!==r){let i=e.items[r].dataRef.current.domRef,o=An(t,{resolveItems:()=>e.items,resolveActiveIndex:()=>e.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==o){let t=e.items[o].dataRef.current.domRef;if((null==(n=i.current)?void 0:n.previousElementSibling)===t.current||null===(null==(a=t.current)?void 0:a.previousElementSibling))return{...s,activeItemIndex:o}}}}else if(t.focus===Rn.Next){let r=e.activeItemIndex;if(null!==r){let n=e.items[r].dataRef.current.domRef,a=An(t,{resolveItems:()=>e.items,resolveActiveIndex:()=>e.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==a){let t=e.items[a].dataRef.current.domRef;if((null==(i=n.current)?void 0:i.nextElementSibling)===t.current||null===(null==(o=t.current)?void 0:o.nextElementSibling))return{...s,activeItemIndex:a}}}}let l=ya(e),c=An(t,{resolveItems:()=>l.items,resolveActiveIndex:()=>l.activeItemIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});return{...s,...l,activeItemIndex:c}},3:(e,t)=>{let r=""!==e.searchQuery?0:1,n=e.searchQuery+t.value.toLowerCase(),a=(null!==e.activeItemIndex?e.items.slice(e.activeItemIndex+r).concat(e.items.slice(0,e.activeItemIndex+r)):e.items).find((e=>{var t;return(null==(t=e.dataRef.current.textValue)?void 0:t.startsWith(n))&&!e.dataRef.current.disabled})),i=a?e.items.indexOf(a):-1;return-1===i||i===e.activeItemIndex?{...e,searchQuery:n}:{...e,searchQuery:n,activeItemIndex:i,activationTrigger:1}},4:e=>""===e.searchQuery?e:{...e,searchQuery:"",searchActiveItemIndex:null},5:(e,t)=>{let r=ya(e,(e=>[...e,{id:t.id,dataRef:t.dataRef}]));return{...e,...r}},6:(e,t)=>{let r=ya(e,(e=>{let r=e.findIndex((e=>e.id===t.id));return-1!==r&&e.splice(r,1),e}));return{...e,...r,activationTrigger:1}},7:(e,t)=>e.buttonElement===t.element?e:{...e,buttonElement:t.element},8:(e,t)=>e.itemsElement===t.element?e:{...e,itemsElement:t.element}},va=(0,i.createContext)(null);function wa(e){let t=(0,i.useContext)(va);if(null===t){let t=new Error(`<${e} /> is missing a parent <Menu /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,wa),t}return t}function xa(e,t){return Ve(t.type,ba,e,t)}va.displayName="MenuContext";let _a=i.Fragment,Ea=Tn.RenderStrategy|Tn.Static,ka=i.Fragment,Sa=Dn((function(e,t){let{__demoMode:r=!1,...n}=e,a=(0,i.useReducer)(xa,{__demoMode:r,menuState:r?0:1,buttonElement:null,itemsElement:null,items:[],searchQuery:"",activeItemIndex:null,activationTrigger:1}),[{menuState:o,itemsElement:s,buttonElement:l},c]=a,u=bt(t);ct(0===o,[l,s],((e,t)=>{c({type:1}),Xe(t,Ke.Loose)||(e.preventDefault(),null==l||l.focus())}));let d=Re((()=>{c({type:1})})),p=(0,i.useMemo)((()=>({open:0===o,close:d})),[o,d]),m={ref:u},f=In();return i.createElement(hn,null,i.createElement(va.Provider,{value:a},i.createElement(En,{value:Ve(o,{0:xn.Open,1:xn.Closed})},f({ourProps:m,theirProps:n,slot:p,defaultTag:_a,name:"Menu"}))))})),Ca=Dn((function(e,t){var r;let n=(0,i.useId)(),{id:a=`headlessui-menu-button-${n}`,disabled:o=!1,autoFocus:s=!1,...l}=e,[c,u]=wa("Menu.Button"),d=mn(),p=bt(t,pn(),Re((e=>u({type:7,element:e})))),m=Re((e=>{switch(e.key){case Gn.Space:case Gn.Enter:case Gn.ArrowDown:e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>u({type:0}))),u({type:2,focus:Rn.First});break;case Gn.ArrowUp:e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>u({type:0}))),u({type:2,focus:Rn.Last})}})),f=Re((e=>{e.key===Gn.Space&&e.preventDefault()})),g=Re((e=>{var t;if(Sn(e.currentTarget))return e.preventDefault();o||(0===c.menuState?((0,ye.flushSync)((()=>u({type:1}))),null==(t=c.buttonElement)||t.focus({preventScroll:!0})):(e.preventDefault(),u({type:0})))})),{isFocusVisible:h,focusProps:y}=ue({autoFocus:s}),{isHovered:b,hoverProps:v}=he({isDisabled:o}),{pressed:w,pressProps:x}=Ae({disabled:o}),_=(0,i.useMemo)((()=>({open:0===c.menuState,active:w||0===c.menuState,disabled:o,hover:b,focus:h,autofocus:s})),[c,b,h,w,o,s]),E=jn(d(),{ref:p,id:a,type:dt(e,c.buttonElement),"aria-haspopup":"menu","aria-controls":null==(r=c.itemsElement)?void 0:r.id,"aria-expanded":0===c.menuState,disabled:o||void 0,autoFocus:s,onKeyDown:m,onKeyUp:f,onClick:g},y,v,x);return In()({ourProps:E,theirProps:l,slot:_,defaultTag:"button",name:"Menu.Button"})})),Ra=Dn((function(e,t){var r,n;let a=(0,i.useId)(),{id:o=`headlessui-menu-items-${a}`,anchor:s,portal:l=!1,modal:c=!0,transition:u=!1,...d}=e,p=dn(s),[m,f]=wa("Menu.Items"),[g,h]=gn(p),y=fn(),[b,v]=(0,i.useState)(null),w=bt(t,p?g:null,Re((e=>f({type:8,element:e}))),v),x=ut(m.itemsElement);p&&(l=!0);let _=_n(),[E,k]=Pt(u,b,null!==_?(_&xn.Open)===xn.Open:0===m.menuState);ze(E,m.buttonElement,(()=>{f({type:1})})),ht(!m.__demoMode&&c&&0===m.menuState,x),Me(!m.__demoMode&&c&&0===m.menuState,{allowed:(0,i.useCallback)((()=>[m.buttonElement,m.itemsElement]),[m.buttonElement,m.itemsElement])});let S=!Pe(0!==m.menuState,m.buttonElement)&&E;(0,i.useEffect)((()=>{let e=m.itemsElement;e&&0===m.menuState&&e!==(null==x?void 0:x.activeElement)&&e.focus({preventScroll:!0})}),[m.menuState,m.itemsElement,x]),function(e,{container:t,accept:r,walk:n}){let a=(0,i.useRef)(r),o=(0,i.useRef)(n);(0,i.useEffect)((()=>{a.current=r,o.current=n}),[r,n]),Se((()=>{if(!t||!e)return;let r=xe(t);if(!r)return;let n=a.current,i=o.current,s=Object.assign((e=>n(e)),{acceptNode:n}),l=r.createTreeWalker(t,NodeFilter.SHOW_ELEMENT,s,!1);for(;l.nextNode();)i(l.currentNode)}),[t,e,a,o])}(0===m.menuState,{container:m.itemsElement,accept:e=>"menuitem"===e.getAttribute("role")?NodeFilter.FILTER_REJECT:e.hasAttribute("role")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT,walk(e){e.setAttribute("role","none")}});let C=ke(),R=Re((e=>{var t,r,n;switch(C.dispose(),e.key){case Gn.Space:if(""!==m.searchQuery)return e.preventDefault(),e.stopPropagation(),f({type:3,value:e.key});case Gn.Enter:if(e.preventDefault(),e.stopPropagation(),f({type:1}),null!==m.activeItemIndex){let{dataRef:e}=m.items[m.activeItemIndex];null==(r=null==(t=e.current)?void 0:t.domRef.current)||r.click()}Je(m.buttonElement);break;case Gn.ArrowDown:return e.preventDefault(),e.stopPropagation(),f({type:2,focus:Rn.Next});case Gn.ArrowUp:return e.preventDefault(),e.stopPropagation(),f({type:2,focus:Rn.Previous});case Gn.Home:case Gn.PageUp:return e.preventDefault(),e.stopPropagation(),f({type:2,focus:Rn.First});case Gn.End:case Gn.PageDown:return e.preventDefault(),e.stopPropagation(),f({type:2,focus:Rn.Last});case Gn.Escape:e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>f({type:1}))),null==(n=m.buttonElement)||n.focus({preventScroll:!0});break;case Gn.Tab:e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>f({type:1}))),nt(m.buttonElement,e.shiftKey?Ze.Previous:Ze.Next);break;default:1===e.key.length&&(f({type:3,value:e.key}),C.setTimeout((()=>f({type:4})),350))}})),A=Re((e=>{e.key===Gn.Space&&e.preventDefault()})),P=(0,i.useMemo)((()=>({open:0===m.menuState})),[m.menuState]),T=jn(p?y():{},{"aria-activedescendant":null===m.activeItemIndex||null==(r=m.items[m.activeItemIndex])?void 0:r.id,"aria-labelledby":null==(n=m.buttonElement)?void 0:n.id,id:o,onKeyDown:R,onKeyUp:A,role:"menu",tabIndex:0===m.menuState?0:void 0,ref:w,style:{...d.style,...h,"--button-width":Te(m.buttonElement,!0).width},...At(k)}),N=In();return i.createElement(ma,{enabled:!!l&&(e.static||E)},N({ourProps:T,theirProps:d,slot:P,defaultTag:"div",features:Ea,visible:S,name:"Menu.Items"}))})),Aa=Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-menu-item-${r}`,disabled:a=!1,...o}=e,[s,l]=wa("Menu.Item"),c=null!==s.activeItemIndex&&s.items[s.activeItemIndex].id===n,u=(0,i.useRef)(null),d=bt(t,u);Se((()=>{if(!s.__demoMode&&0===s.menuState&&c&&0!==s.activationTrigger)return Ee().requestAnimationFrame((()=>{var e,t;null==(t=null==(e=u.current)?void 0:e.scrollIntoView)||t.call(e,{block:"nearest"})}))}),[s.__demoMode,u,c,s.menuState,s.activationTrigger,s.activeItemIndex]);let p=xt(u),m=(0,i.useRef)({disabled:a,domRef:u,get textValue(){return p()}});Se((()=>{m.current.disabled=a}),[m,a]),Se((()=>(l({type:5,id:n,dataRef:m}),()=>l({type:6,id:n}))),[m,n]);let f=Re((()=>{l({type:1})})),g=Re((e=>{if(a)return e.preventDefault();l({type:1}),Je(s.buttonElement)})),h=Re((()=>{if(a)return l({type:2,focus:Rn.Nothing});l({type:2,focus:Rn.Specific,id:n})})),y=Et(),b=Re((e=>{y.update(e),!a&&(c||l({type:2,focus:Rn.Specific,id:n,trigger:0}))})),v=Re((e=>{y.wasMoved(e)&&(a||c||l({type:2,focus:Rn.Specific,id:n,trigger:0}))})),w=Re((e=>{y.wasMoved(e)&&(a||c&&l({type:2,focus:Rn.Nothing}))})),[x,_]=Qn(),[E,k]=Hn(),S=(0,i.useMemo)((()=>({active:c,focus:c,disabled:a,close:f})),[c,a,f]),C={id:n,ref:d,role:"menuitem",tabIndex:!0===a?void 0:-1,"aria-disabled":!0===a||void 0,"aria-labelledby":x,"aria-describedby":E,disabled:void 0,onClick:g,onFocus:h,onPointerEnter:b,onMouseEnter:b,onPointerMove:v,onMouseMove:v,onPointerLeave:w,onMouseLeave:w},R=In();return i.createElement(_,null,i.createElement(k,null,R({ourProps:C,theirProps:o,slot:S,defaultTag:ka,name:"Menu.Item"})))})),Pa=Dn((function(e,t){let[r,n]=Qn(),a=e,o={ref:t,"aria-labelledby":r,role:"group"},s=In();return i.createElement(n,null,s({ourProps:o,theirProps:a,slot:{},defaultTag:"div",name:"Menu.Section"}))})),Ta=Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-menu-heading-${r}`,...a}=e,o=Xn();Se((()=>o.register(n)),[n,o.register]);let s={id:n,ref:t,role:"presentation",...o.props};return In()({ourProps:s,theirProps:a,slot:{},defaultTag:"header",name:"Menu.Heading"})})),Na=Dn((function(e,t){let r=e,n={ref:t,role:"separator"};return In()({ourProps:n,theirProps:r,slot:{},defaultTag:"div",name:"Menu.Separator"})})),Ia=Object.assign(Sa,{Button:Ca,Items:Ra,Item:Aa,Section:Pa,Heading:Ta,Separator:Na});function Oa(){let e=(0,i.useRef)(!1);return Se((()=>(e.current=!0,()=>{e.current=!1})),[]),e}function La(e){var t;return!!(e.enter||e.enterFrom||e.enterTo||e.leave||e.leaveFrom||e.leaveTo)||(null!=(t=e.as)?t:za)!==i.Fragment||1===i.Children.count(e.children)}let Ba=(0,i.createContext)(null);Ba.displayName="TransitionContext";var ja=(e=>(e.Visible="visible",e.Hidden="hidden",e))(ja||{});let Da=(0,i.createContext)(null);function Fa(e){return"children"in e?Fa(e.children):e.current.filter((({el:e})=>null!==e.current)).filter((({state:e})=>"visible"===e)).length>0}function Ma(e,t){let r=Ce(e),n=(0,i.useRef)([]),a=Oa(),o=ke(),s=Re(((e,t=Nn.Hidden)=>{let i=n.current.findIndex((({el:t})=>t===e));-1!==i&&(Ve(t,{[Nn.Unmount](){n.current.splice(i,1)},[Nn.Hidden](){n.current[i].state="hidden"}}),o.microTask((()=>{var e;!Fa(n)&&a.current&&(null==(e=r.current)||e.call(r))})))})),l=Re((e=>{let t=n.current.find((({el:t})=>t===e));return t?"visible"!==t.state&&(t.state="visible"):n.current.push({el:e,state:"visible"}),()=>s(e,Nn.Unmount)})),c=(0,i.useRef)([]),u=(0,i.useRef)(Promise.resolve()),d=(0,i.useRef)({enter:[],leave:[]}),p=Re(((e,r,n)=>{c.current.splice(0),t&&(t.chains.current[r]=t.chains.current[r].filter((([t])=>t!==e))),null==t||t.chains.current[r].push([e,new Promise((e=>{c.current.push(e)}))]),null==t||t.chains.current[r].push([e,new Promise((e=>{Promise.all(d.current[r].map((([e,t])=>t))).then((()=>e()))}))]),"enter"===r?u.current=u.current.then((()=>null==t?void 0:t.wait.current)).then((()=>n(r))):n(r)})),m=Re(((e,t,r)=>{Promise.all(d.current[t].splice(0).map((([e,t])=>t))).then((()=>{var e;null==(e=c.current.shift())||e()})).then((()=>r(t)))}));return(0,i.useMemo)((()=>({children:n,register:l,unregister:s,onStart:p,onStop:m,wait:u,chains:d})),[l,s,n,p,m,d,u])}Da.displayName="NestingContext";let za=i.Fragment,Va=Tn.RenderStrategy,Wa=Dn((function(e,t){let{show:r,appear:n=!1,unmount:a=!0,...o}=e,s=(0,i.useRef)(null),l=bt(...La(e)?[s,t]:null===t?[]:[t]);na();let c=_n();if(void 0===r&&null!==c&&(r=(c&xn.Open)===xn.Open),void 0===r)throw new Error("A <Transition /> is used but it is missing a `show={true | false}` prop.");let[u,d]=(0,i.useState)(r?"visible":"hidden"),p=Ma((()=>{r||d("hidden")})),[m,f]=(0,i.useState)(!0),g=(0,i.useRef)([r]);Se((()=>{!1!==m&&g.current[g.current.length-1]!==r&&(g.current.push(r),f(!1))}),[g,r]);let h=(0,i.useMemo)((()=>({show:r,appear:n,initial:m})),[r,n,m]);Se((()=>{r?d("visible"):!Fa(p)&&null!==s.current&&d("hidden")}),[r,p]);let y={unmount:a},b=Re((()=>{var t;m&&f(!1),null==(t=e.beforeEnter)||t.call(e)})),v=Re((()=>{var t;m&&f(!1),null==(t=e.beforeLeave)||t.call(e)})),w=In();return i.createElement(Da.Provider,{value:p},i.createElement(Ba.Provider,{value:h},w({ourProps:{...y,as:i.Fragment,children:i.createElement(Ua,{ref:l,...y,...o,beforeEnter:b,beforeLeave:v})},theirProps:{},defaultTag:i.Fragment,features:Va,visible:"visible"===u,name:"Transition"})))})),Ua=Dn((function(e,t){var r,n;let{transition:a=!0,beforeEnter:o,afterEnter:s,beforeLeave:l,afterLeave:c,enter:u,enterFrom:d,enterTo:p,entered:m,leave:f,leaveFrom:g,leaveTo:h,...y}=e,[b,v]=(0,i.useState)(null),w=(0,i.useRef)(null),x=La(e),_=bt(...x?[w,t,v]:null===t?[]:[t]),E=null==(r=y.unmount)||r?Nn.Unmount:Nn.Hidden,{show:k,appear:S,initial:C}=function(){let e=(0,i.useContext)(Ba);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),[R,A]=(0,i.useState)(k?"visible":"hidden"),P=function(){let e=(0,i.useContext)(Da);if(null===e)throw new Error("A <Transition.Child /> is used but it is missing a parent <Transition /> or <Transition.Root />.");return e}(),{register:T,unregister:N}=P;Se((()=>T(w)),[T,w]),Se((()=>{if(E===Nn.Hidden&&w.current)return k&&"visible"!==R?void A("visible"):Ve(R,{hidden:()=>N(w),visible:()=>T(w)})}),[R,w,T,N,k,E]);let I=na();Se((()=>{if(x&&I&&"visible"===R&&null===w.current)throw new Error("Did you forget to passthrough the `ref` to the actual DOM node?")}),[w,R,I,x]);let O=C&&!S,L=S&&k&&C,B=(0,i.useRef)(!1),j=Ma((()=>{B.current||(A("hidden"),N(w))}),P),D=Re((e=>{B.current=!0;let t=e?"enter":"leave";j.onStart(w,t,(e=>{"enter"===e?null==o||o():"leave"===e&&(null==l||l())}))})),F=Re((e=>{let t=e?"enter":"leave";B.current=!1,j.onStop(w,t,(e=>{"enter"===e?null==s||s():"leave"===e&&(null==c||c())})),"leave"===t&&!Fa(j)&&(A("hidden"),N(w))}));(0,i.useEffect)((()=>{x&&a||(D(k),F(k))}),[k,x,a]);let M=!(!a||!x||!I||O),[,z]=Pt(M,b,k,{start:D,end:F}),V=Fn({ref:_,className:(null==(n=Pn(y.className,L&&u,L&&d,z.enter&&u,z.enter&&z.closed&&d,z.enter&&!z.closed&&p,z.leave&&f,z.leave&&!z.closed&&g,z.leave&&z.closed&&h,!z.transition&&k&&m))?void 0:n.trim())||void 0,...At(z)}),W=0;"visible"===R&&(W|=xn.Open),"hidden"===R&&(W|=xn.Closed),z.enter&&(W|=xn.Opening),z.leave&&(W|=xn.Closing);let U=In();return i.createElement(Da.Provider,{value:j},i.createElement(En,{value:W},U({ourProps:V,theirProps:y,defaultTag:za,features:Va,visible:"visible"===R,name:"Transition.Child"})))})),Ha=Dn((function(e,t){let r=null!==(0,i.useContext)(Ba),n=null!==_n();return i.createElement(i.Fragment,null,!r&&n?i.createElement(Wa,{ref:t,...e}):i.createElement(Ua,{ref:t,...e}))})),$a=Object.assign(Wa,{Child:Ha,Root:Wa});var Za=o(2784);const{useRef:Ga,useCallback:qa,useMemo:Ya}=wp.element,Ka=e=>{const t=Ga(null),r=Ga(null),n=Ga((()=>{})),a=qa((()=>{t.current&&r.current&&(n.current&&n.current(),n.current=(0,Za.n4)(t.current,r.current,e).destroy)}),[t,r,n,e]);return Ya((()=>[e=>{t.current=e,a()},e=>{r.current=e,a()}]),[t,r,a])},Xa=({placement:e="right",width:t="w-48",contentClassName:r="py-1 bg-white",trigger:n,offset:a=[0,0],children:o,disabled:s=!1,mainClassName:l=""})=>{let c="bottom-end";switch(e){case"left":c="bottom-start";break;case"right":default:c="bottom-end";break;case"top-start":c="top-start"}const[u,d]=Ka({placement:c,strategy:"fixed",modifiers:[{name:"offset",options:{offset:a}}]});switch(t?.toString()){case"48":t="w-48";break;case"60":t="w-60";break;case"72.5":t="w-[18.25rem]";break;case"80":t="w-80";break;default:t=t||"w-48"}return React.createElement(Ia,{as:"div",className:(0,y.xW)("relative",l)},(({open:e})=>React.createElement(React.Fragment,null,React.createElement(Ca,{ref:u,as:i.Fragment,disabled:s},n),React.createElement("div",{ref:d,className:"z-50"},React.createElement($a,{show:e,as:i.Fragment,enter:"transition ease-out duration-200",enterFrom:"transform opacity-0 scale-95",enterTo:"transform opacity-100 scale-100",leave:"transition ease-in duration-75",leaveFrom:"transform opacity-100 scale-100",leaveTo:"transform opacity-0 scale-95"},React.createElement("div",{className:(0,y.xW)("mb-2 mt-4 !-mr-2 rounded-md shadow-lg",t)},React.createElement(Ra,{className:(0,y.xW)("rounded-md focus:outline-none ring-1 ring-black ring-opacity-5",r)},o)))))))};Xa.Item=Aa;const Ja=Xa,Qa=({className:e})=>React.createElement("hr",{className:(0,y.xW)("border-t-0 border-l-0 border-r-0 border-b border-border-primary",e)});var ei=o(6867),ti=o(6484);function ri(){return ri=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ri.apply(null,arguments)}const ni=(0,e.A)((0,a.A)((e=>{const{getDisableAi:t,getDisablePreview:r,getAdaptiveMode:n,getAiDesignCopilotStatus:a,getIsPersonalized:i}=e("ast-block-templates");return{disableAi:t(),adaptiveMode:n(),disablePreview:r(),aiCopilotStatus:a(),isPersonalized:i()}})),(0,n.A)((e=>{const{setCurrentScreen:t,setAllBlocksData:r,setFilterBlocksByCategory:n,setTokenStep:a,setActiveBlockPaletteSlug:i,setActiveBlockPalette:o,setActivePagePaletteSlug:s,setActivePagePalette:l,setBlockColorPaletteObj:c,setPageColorPaletteObj:u}=e("ast-block-templates");return{setCurrentScreen:t,setAllBlocksData:r,setFilterBlocksByCategory:n,setTokenStep:a,setActiveBlockPaletteSlug:i,setActiveBlockPalette:o,setActivePagePaletteSlug:s,setActivePagePalette:l,setBlockColorPaletteObj:c,setPageColorPaletteObj:u}})))((0,i.memo)((({disableAi:e,adaptiveMode:n,isPersonalized:a,setAllBlocksData:i,setFilterBlocksByCategory:o,setTokenStep:s,setActiveBlockPaletteSlug:l,setActiveBlockPalette:c,setActivePagePaletteSlug:d,setActivePagePalette:p,setBlockColorPaletteObj:m,setPageColorPaletteObj:f})=>{const{toggleOnboardingAIStep:h,resetOnboardingAISteps:b,toggleDisableAiContent:v,toggleAdaptiveMode:w,setDynamicContent:_,setFilterBlocksPagesByCategory:k,setNotice:C,toggleUpdateOnboardingImages:A}=(0,r.A)(g.U),{aiStepData:{token:T,businessDetails:I,selectedImages:L}}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return{aiStepData:t()}}),[]),{dynamicContentSyncStatus:B}=(0,t.A)((e=>{const{getDynamicContentSyncStatus:t}=e(g.U);return{dynamicContentSyncStatus:t()}})),j=async(e,t)=>{const r={key:e,value:t};try{const e=await(0,y.nr)({path:"gutenberg-templates/v1/settings",data:r,method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}});if(e.success&&i(e.blocks),!e.success)throw new Error(e?.data?.data)}catch(e){(0,ti.v)(e)}},D=[{label:()=>T&&I?(0,u.__)("Update AI","ast-block-templates"):React.createElement("span",{className:"flex items-center justify-start gap-2"},(0,u.__)("Personalize Library","ast-block-templates"),React.createElement(ei.wT,null)),description:()=>T&&I?(0,u.__)("Update the details for the AI to suggest new text and images.","ast-block-templates"):(0,u.__)("Add details for the AI to suggest relevant text and images.","ast-block-templates"),icon:React.createElement(E,{className:"text-icon-secondary h-5 w-5"}),onClick:e=>{e.preventDefault(),h(!0)},isHide:!1,isDisabled:e||!n},{label:()=>(0,u.__)("Update images","ast-block-templates"),description:(0,u.__)("Revise the previously entered information from AI setup.","ast-block-templates"),icon:React.createElement(P,{className:"text-icon-secondary h-5 w-5"}),onClick:e=>{e.preventDefault(),A()},isHide:!T||!L?.length||!a,isDisabled:e||!n||!T||!I},{label:()=>(0,u.__)("Reset AI Information","ast-block-templates"),description:(0,u.__)("Reset the previously entered information from AI setup and erase all the generated AI content.","ast-block-templates"),icon:React.createElement(S,{className:"text-icon-secondary h-5 w-5"}),onClick:()=>{if(!confirm("Are you sure you want to reset the business details and erase the generated content?"))return;const e=new window.FormData;e.append("action","ast-block-templates-reset-business-details"),e.append("security",ast_block_template_vars.reset_details_ajax_nonce),wp.apiFetch({url:ast_block_template_vars.ajax_url,method:"POST",body:e}).then((e=>{e.success?(C({type:"success",message:"Reset done successfully!"}),b(),e.data.token&&s(e.data.token),_({}),k(""),o("")):C({type:"error",message:"Reset Failed!"})}))},isHide:e||"yes"!==ast_block_template_vars.debug_mode||!n,isDisabled:!1},{label:()=>React.createElement("div",{className:"flex justify-between"},React.createElement("span",null,(0,u.__)("Disable AI","ast-block-templates")),React.createElement("button",{type:"button",className:(0,y.xW)("bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-accent-spectra focus:ring-offset-2",e?"bg-accent-spectra":"bg-gray-200"),role:"switch","aria-checked":"false",onClick:()=>{v(!e),j("disable_ai",!e)}},React.createElement("span",{className:"sr-only"},"Use setting"),React.createElement("span",{"aria-hidden":"true",className:(0,y.xW)("translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out",e?"translate-x-5":"translate-x-0")}))),description:(0,u.__)("This option will preview & import only wireframe (default) content and images.","ast-block-templates"),icon:React.createElement(N,{className:"text-icon-secondary h-5 w-5"}),onClick:()=>{},isHide:!I,isDisabled:!n},{label:()=>React.createElement("div",{className:"flex justify-between"},React.createElement("span",null,(0,u.__)("Adaptive Mode","ast-block-templates")),React.createElement("button",{type:"button",className:(0,y.xW)("bg-gray-200 relative inline-flex h-6 w-11 flex-shrink-0 cursor-pointer rounded-full border-2 border-transparent transition-colors duration-200 ease-in-out focus:outline-none focus:ring-2 focus:ring-accent-spectra focus:ring-offset-2",n?"bg-accent-spectra":"bg-gray-200"),role:"switch","aria-checked":"true",onClick:async()=>{w(!0),j("adaptive_mode",!n),n&&!e&&v(!0),!n&&e&&v(!0);const t=new window.FormData;t.append("action","ast_block_templates_color_palette"),t.append("_ajax_nonce",ast_block_template_vars._ajax_nonce),t.append("adaptive_mode",!n);const r=await(0,y.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:t});r&&(l("style-1"),c(r.data?.block["style-1"]),m(r.data?.block),d("style-1"),p(r.data?.page["style-1"]),f(r.data?.page))}},React.createElement("span",{className:"sr-only"},"Use setting"),React.createElement("span",{"aria-hidden":"true",className:(0,y.xW)("translate-x-0 pointer-events-none inline-block h-5 w-5 transform rounded-full bg-white shadow ring-0 transition duration-200 ease-in-out",n?"translate-x-5":"translate-x-0")}))),description:(0,u.__)("Disabling Adaptive Mode shows templates without personalized text, images, and theme styling.","ast-block-templates"),icon:React.createElement(O,{className:"text-icon-secondary h-5 w-5"}),onClick:()=>{}}];return React.createElement(Ja,{trigger:React.createElement(x,{disabled:Object.values(B).some((e=>!!e)),tooltip:"Settings"},React.createElement(R,{className:"h-6 w-6"})),align:"top",placement:"right",width:"w-[358px]",contentClassName:"px-2 py-3 bg-white border border-solid border-border-primary",wrapperClassName:"shadow-large"},D.map(((e,t)=>e.isHide?null:React.createElement("div",{key:t},React.createElement(Ja.Item,ri({as:"div",className:(0,y.xW)(e.isHide?"hidden":"","px-2 py-3 grid grid-cols-1 gap-y-1 gap-x-2 justify-center h-fit transition duration-150 ease-in-out rounded-md hover:bg-background-secondary",e.isDisabled&&"opacity-50 cursor-not-allowed pointer-events-none")},{onClick:e.onClick}),React.createElement("div",{className:"flex flex-col items-start gap-1"},React.createElement("span",{className:"text-base font-medium leading-6 text-nav-inactive w-full"},e.label()),React.createElement("p",{className:"m-0 text-sm text-border-secondary leading-5 font-normal"},"function"==typeof e.description?e.description():e.description))),t!==D.length-1&&React.createElement(Qa,{className:"p-0 mx-2 my-4"})))))})));var ai=o(2988),ii=o(9583);const oi=()=>{const{setCreditsDetails:e}=(0,r.A)(g.U),{percentage:n,total:a,used:i,status:o,flatRates:{patternsLibrary:s,pagesLibrary:l,patternsCategory:c,pagesCategory:u},free_user:d}=(0,t.A)((e=>{const{getCreditsDetails:t}=e(g.U);return t()}),[]),p=a-i,m=p/a*100,f=e=>{const t={normal:!1,warning:!1,danger:!1};return e<=10?t.danger=!0:e<=20?t.warning=!0:t.normal=!0,t};return{percentage:n,remainingPercentage:m,total:a,used:i,remaining:p,status:o,patternsLibraryRate:s,pagesLibraryRate:l,patternsCategoryRate:c,pagesCategoryRate:u,creditsColorClassName:(0,y.Iq)(n),formatNumber:y.ZV,setCreditsDetails:e,currentBalanceStatus:f(m),getBalanceStatus:f,isFreeUser:d}};function si(e,t,r,n){let a=Ce(r);(0,i.useEffect)((()=>{function r(e){a.current(e)}return(e=null!=e?e:window).addEventListener(t,r,n),()=>e.removeEventListener(t,r,n)}),[e,t,n])}var li=(e=>(e[e.None=1]="None",e[e.Focusable=2]="Focusable",e[e.Hidden=4]="Hidden",e))(li||{});let ci=Dn((function(e,t){var r;let{features:n=1,...a}=e,i={ref:t,"aria-hidden":!(2&~n)||(null!=(r=a["aria-hidden"])?r:void 0),hidden:!(4&~n)||void 0,style:{position:"fixed",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:"hidden",clip:"rect(0, 0, 0, 0)",whiteSpace:"nowrap",borderWidth:"0",...!(4&~n)&&!!(2&~n)&&{display:"none"}}};return In()({ourProps:i,theirProps:a,slot:{},defaultTag:"span",name:"Hidden"})})),ui=(0,i.createContext)(null);function di({children:e,node:t}){let[r,n]=(0,i.useState)(null),a=pi(null!=t?t:r);return i.createElement(ui.Provider,{value:a},e,null===a&&i.createElement(ci,{features:li.Hidden,ref:e=>{var t,r;if(e)for(let a of null!=(r=null==(t=xe(e))?void 0:t.querySelectorAll("html > *, body > *"))?r:[])if(a!==document.body&&a!==document.head&&a instanceof HTMLElement&&null!=a&&a.contains(e)){n(a);break}}}))}function pi(e=null){var t;return null!=(t=(0,i.useContext)(ui))?t:e}let mi=(0,i.createContext)((()=>{}));function fi({value:e,children:t}){return i.createElement(mi.Provider,{value:e},t)}var gi=(e=>(e[e.Forwards=0]="Forwards",e[e.Backwards=1]="Backwards",e))(gi||{});function hi(e,t){let r=(0,i.useRef)([]),n=Re(e);(0,i.useEffect)((()=>{let e=[...r.current];for(let[a,i]of t.entries())if(r.current[a]!==i){let a=n(t,e);return r.current=t,a}}),[n,...t])}let yi=[];function bi(e){if(!e)return new Set;if("function"==typeof e)return new Set(e());let t=new Set;for(let r of e.current)r.current instanceof HTMLElement&&t.add(r.current);return t}!function(e){function t(){"loading"!==document.readyState&&((()=>{function e(e){if(!(e.target instanceof HTMLElement)||e.target===document.body||yi[0]===e.target)return;let t=e.target;t=t.closest(We),yi.unshift(null!=t?t:e.target),yi=yi.filter((e=>null!=e&&e.isConnected)),yi.splice(10)}window.addEventListener("click",e,{capture:!0}),window.addEventListener("mousedown",e,{capture:!0}),window.addEventListener("focus",e,{capture:!0}),document.body.addEventListener("click",e,{capture:!0}),document.body.addEventListener("mousedown",e,{capture:!0}),document.body.addEventListener("focus",e,{capture:!0})})(),document.removeEventListener("DOMContentLoaded",t))}"undefined"!=typeof window&&"undefined"!=typeof document&&(document.addEventListener("DOMContentLoaded",t),t())}();var vi=(e=>(e[e.None=0]="None",e[e.InitialFocus=1]="InitialFocus",e[e.TabLock=2]="TabLock",e[e.FocusLock=4]="FocusLock",e[e.RestoreFocus=8]="RestoreFocus",e[e.AutoFocus=16]="AutoFocus",e))(vi||{});let wi=Dn((function(e,t){let r=(0,i.useRef)(null),n=bt(r,t),{initialFocus:a,initialFocusFallback:o,containers:s,features:l=15,...c}=e;na()||(l=0);let u=ut(r);!function(e,{ownerDocument:t}){let r=!!(8&e),n=function(e=!0){let t=(0,i.useRef)(yi.slice());return hi((([e],[r])=>{!0===r&&!1===e&&_e((()=>{t.current.splice(0)})),!1===r&&!0===e&&(t.current=yi.slice())}),[e,yi,t]),Re((()=>{var e;return null!=(e=t.current.find((e=>null!=e&&e.isConnected)))?e:null}))}(r);hi((()=>{r||(null==t?void 0:t.activeElement)===(null==t?void 0:t.body)&&et(n())}),[r]),ra((()=>{r&&et(n())}))}(l,{ownerDocument:u});let d=function(e,{ownerDocument:t,container:r,initialFocus:n,initialFocusFallback:a}){let o=(0,i.useRef)(null),s=Be(!!(1&e),"focus-trap#initial-focus"),l=Oa();return hi((()=>{if(0===e)return;if(!s)return void(null!=a&&a.current&&et(a.current));let i=r.current;i&&_e((()=>{if(!l.current)return;let r=null==t?void 0:t.activeElement;if(null!=n&&n.current){if((null==n?void 0:n.current)===r)return void(o.current=r)}else if(i.contains(r))return void(o.current=r);if(null!=n&&n.current)et(n.current);else{if(16&e){if(at(i,Ze.First|Ze.AutoFocus)!==Ge.Error)return}else if(at(i,Ze.First)!==Ge.Error)return;if(null!=a&&a.current&&(et(a.current),(null==t?void 0:t.activeElement)===a.current))return;console.warn("There are no focusable elements inside the <FocusTrap />")}o.current=null==t?void 0:t.activeElement}))}),[a,s,e]),o}(l,{ownerDocument:u,container:r,initialFocus:a,initialFocusFallback:o});!function(e,{ownerDocument:t,container:r,containers:n,previousActiveElement:a}){let i=Oa(),o=!!(4&e);si(null==t?void 0:t.defaultView,"focus",(e=>{if(!o||!i.current)return;let t=bi(n);r.current instanceof HTMLElement&&t.add(r.current);let s=a.current;if(!s)return;let l=e.target;l&&l instanceof HTMLElement?_i(t,l)?(a.current=l,et(l)):(e.preventDefault(),e.stopPropagation(),et(s)):et(a.current)}),!0)}(l,{ownerDocument:u,container:r,containers:s,previousActiveElement:d});let p=function(){let e=(0,i.useRef)(0);return lt(!0,"keydown",(t=>{"Tab"===t.key&&(e.current=t.shiftKey?1:0)}),!0),e}(),m=Re((e=>{let t=r.current;t&&Ve(p.current,{[gi.Forwards]:()=>{at(t,Ze.First,{skipElements:[e.relatedTarget,o]})},[gi.Backwards]:()=>{at(t,Ze.Last,{skipElements:[e.relatedTarget,o]})}})})),f=Be(!!(2&l),"focus-trap#tab-lock"),g=ke(),h=(0,i.useRef)(!1),y={ref:n,onKeyDown(e){"Tab"==e.key&&(h.current=!0,g.requestAnimationFrame((()=>{h.current=!1})))},onBlur(e){if(!(4&l))return;let t=bi(s);r.current instanceof HTMLElement&&t.add(r.current);let n=e.relatedTarget;n instanceof HTMLElement&&"true"!==n.dataset.headlessuiFocusGuard&&(_i(t,n)||(h.current?at(r.current,Ve(p.current,{[gi.Forwards]:()=>Ze.Next,[gi.Backwards]:()=>Ze.Previous})|Ze.WrapAround,{relativeTo:e.target}):e.target instanceof HTMLElement&&et(e.target)))}},b=In();return i.createElement(i.Fragment,null,f&&i.createElement(ci,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:m,features:li.Focusable}),b({ourProps:y,theirProps:c,defaultTag:"div",name:"FocusTrap"}),f&&i.createElement(ci,{as:"button",type:"button","data-headlessui-focus-guard":!0,onFocus:m,features:li.Focusable}))})),xi=Object.assign(wi,{features:vi});function _i(e,t){for(let r of e)if(r.contains(t))return!0;return!1}var Ei=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(Ei||{}),ki=(e=>(e[e.SetTitleId=0]="SetTitleId",e))(ki||{});let Si={0:(e,t)=>e.titleId===t.id?e:{...e,titleId:t.id}},Ci=(0,i.createContext)(null);function Ri(e){let t=(0,i.useContext)(Ci);if(null===t){let t=new Error(`<${e} /> is missing a parent <Dialog /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Ri),t}return t}function Ai(e,t){return Ve(t.type,Si,e,t)}Ci.displayName="DialogContext";let Pi=Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-dialog-${r}`,open:a,onClose:o,initialFocus:s,role:l="dialog",autoFocus:c=!0,__demoMode:u=!1,unmount:d=!1,...p}=e,m=(0,i.useRef)(!1);l="dialog"===l||"alertdialog"===l?l:(m.current||(m.current=!0,console.warn(`Invalid role [${l}] passed to <Dialog />. Only \`dialog\` and and \`alertdialog\` are supported. Using \`dialog\` instead.`)),"dialog");let f=_n();void 0===a&&null!==f&&(a=(f&xn.Open)===xn.Open);let g=(0,i.useRef)(null),h=bt(g,t),y=ut(g),b=a?0:1,[v,w]=(0,i.useReducer)(Ai,{titleId:null,descriptionId:null,panelRef:(0,i.createRef)()}),x=Re((()=>o(!1))),_=Re((e=>w({type:0,id:e}))),E=!!na()&&0===b,[k,S]=function(){let e=(0,i.useContext)(ua),t=(0,i.useRef)([]),r=Re((r=>(t.current.push(r),e&&e.register(r),()=>n(r)))),n=Re((r=>{let n=t.current.indexOf(r);-1!==n&&t.current.splice(n,1),e&&e.unregister(r)})),a=(0,i.useMemo)((()=>({register:r,unregister:n,portals:t})),[r,n,t]);return[t,(0,i.useMemo)((()=>function({children:e}){return i.createElement(ua.Provider,{value:a},e)}),[a])]}(),C={get current(){var e;return null!=(e=v.panelRef.current)?e:g.current}},R=pi(),{resolveContainers:A}=function({defaultContainers:e=[],portals:t,mainTreeNode:r}={}){let n=ut(r),a=Re((()=>{var a,i;let o=[];for(let t of e)null!==t&&(t instanceof HTMLElement?o.push(t):"current"in t&&t.current instanceof HTMLElement&&o.push(t.current));if(null!=t&&t.current)for(let e of t.current)o.push(e);for(let e of null!=(a=null==n?void 0:n.querySelectorAll("html > *, body > *"))?a:[])e!==document.body&&e!==document.head&&e instanceof HTMLElement&&"headlessui-portal-root"!==e.id&&(r&&(e.contains(r)||e.contains(null==(i=null==r?void 0:r.getRootNode())?void 0:i.host))||o.some((t=>e.contains(t)))||o.push(e));return o}));return{resolveContainers:a,contains:Re((e=>a().some((t=>t.contains(e)))))}}({mainTreeNode:R,portals:k,defaultContainers:[C]}),P=null!==f&&(f&xn.Closing)===xn.Closing;Me(!u&&!P&&E,{allowed:Re((()=>{var e,t;return[null!=(t=null==(e=g.current)?void 0:e.closest("[data-headlessui-portal]"))?t:null]})),disallowed:Re((()=>{var e;return[null!=(e=null==R?void 0:R.closest("body > *:not(#headlessui-portal-root)"))?e:null]}))}),ct(E,A,(e=>{e.preventDefault(),x()})),function(e,t=("undefined"!=typeof document?document.defaultView:null),r){let n=Be(e,"escape");si(t,"keydown",(e=>{n&&(e.defaultPrevented||e.key===Gn.Escape&&r(e))}))}(E,null==y?void 0:y.defaultView,(e=>{e.preventDefault(),e.stopPropagation(),document.activeElement&&"blur"in document.activeElement&&"function"==typeof document.activeElement.blur&&document.activeElement.blur(),x()})),ht(!u&&!P&&E,y,A),ze(E,g,x);let[T,N]=Hn(),I=(0,i.useMemo)((()=>[{dialogState:b,close:x,setTitleId:_,unmount:d},v]),[b,v,x,_,d]),O=(0,i.useMemo)((()=>({open:0===b})),[b]),L={ref:h,id:n,role:l,tabIndex:-1,"aria-modal":u?void 0:0===b||void 0,"aria-labelledby":v.titleId,"aria-describedby":T,unmount:d},B=!function(){var e;let[t]=(0,i.useState)((()=>"undefined"!=typeof window&&"function"==typeof window.matchMedia?window.matchMedia("(pointer: coarse)"):null)),[r,n]=(0,i.useState)(null!=(e=null==t?void 0:t.matches)&&e);return Se((()=>{if(t)return t.addEventListener("change",e),()=>t.removeEventListener("change",e);function e(e){n(e.matches)}}),[t]),r}(),j=vi.None;E&&!u&&(j|=vi.RestoreFocus,j|=vi.TabLock,c&&(j|=vi.AutoFocus),B&&(j|=vi.InitialFocus));let D=In();return i.createElement(kn,null,i.createElement(ia,{force:!0},i.createElement(ma,null,i.createElement(Ci.Provider,{value:I},i.createElement(pa,{target:g},i.createElement(ia,{force:!1},i.createElement(N,{slot:O},i.createElement(S,null,i.createElement(xi,{initialFocus:s,initialFocusFallback:g,containers:A,features:j},i.createElement(fi,{value:x},D({ourProps:L,theirProps:p,slot:O,defaultTag:Ti,features:Ni,visible:0===b,name:"Dialog"})))))))))))})),Ti="div",Ni=Tn.RenderStrategy|Tn.Static,Ii=Dn((function(e,t){let{transition:r=!1,open:n,...a}=e,o=_n(),s=e.hasOwnProperty("open")||null!==o,l=e.hasOwnProperty("onClose");if(!s&&!l)throw new Error("You have to provide an `open` and an `onClose` prop to the `Dialog` component.");if(!s)throw new Error("You provided an `onClose` prop to the `Dialog`, but forgot an `open` prop.");if(!l)throw new Error("You provided an `open` prop to the `Dialog`, but forgot an `onClose` prop.");if(!o&&"boolean"!=typeof e.open)throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${e.open}`);if("function"!=typeof e.onClose)throw new Error(`You provided an \`onClose\` prop to the \`Dialog\`, but the value is not a function. Received: ${e.onClose}`);return void 0===n&&!r||a.static?i.createElement(di,null,i.createElement(Pi,{ref:t,open:n,...a})):i.createElement(di,null,i.createElement($a,{show:n,transition:r,unmount:a.unmount},i.createElement(Pi,{ref:t,...a})))})),Oi=Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-dialog-panel-${r}`,transition:a=!1,...o}=e,[{dialogState:s,unmount:l},c]=Ri("Dialog.Panel"),u=bt(t,c.panelRef),d=(0,i.useMemo)((()=>({open:0===s})),[s]),p={ref:u,id:n,onClick:Re((e=>{e.stopPropagation()}))},m=a?Ha:i.Fragment,f=a?{unmount:l}:{},g=In();return i.createElement(m,{...f},g({ourProps:p,theirProps:o,slot:d,defaultTag:"div",name:"Dialog.Panel"}))})),Li=(Dn((function(e,t){let{transition:r=!1,...n}=e,[{dialogState:a,unmount:o}]=Ri("Dialog.Backdrop"),s=(0,i.useMemo)((()=>({open:0===a})),[a]),l={ref:t,"aria-hidden":!0},c=r?Ha:i.Fragment,u=r?{unmount:o}:{},d=In();return i.createElement(c,{...u},d({ourProps:l,theirProps:n,slot:s,defaultTag:"div",name:"Dialog.Backdrop"}))})),Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-dialog-title-${r}`,...a}=e,[{dialogState:o,setTitleId:s}]=Ri("Dialog.Title"),l=bt(t);(0,i.useEffect)((()=>(s(n),()=>s(null))),[n,s]);let c=(0,i.useMemo)((()=>({open:0===o})),[o]),u={ref:l,id:n};return In()({ourProps:u,theirProps:a,slot:c,defaultTag:"h2",name:"Dialog.Title"})}))),Bi=Object.assign(Ii,{Panel:Oi,Title:Li,Description:Zn});const ji=({open:e=!1,setOpen:t,width:r=520,overflowHidden:n=!0,children:a,overlayClassName:o="",closeButton:s=!0,className:l})=>{let c="max-w-[35rem]";switch(r?.toString()){case"640":c="sm:max-w-[40rem]";break;case"520":c="sm:max-w-[32.5rem]";break;case"464":c="sm:max-w-[29rem]";break;case"300":c="sm:max-w-[24rem]";break;default:c="sm:max-w-[35rem]"}return React.createElement($a.Root,{show:e||!1,as:i.Fragment},React.createElement(Bi,{as:"div",className:"spectra-ai relative z-[99999999]",onClose:t},React.createElement($a.Child,{as:i.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0",enterTo:"opacity-100",leave:"ease-in duration-200",leaveFrom:"opacity-100",leaveTo:"opacity-0"},React.createElement("div",{className:(0,y.xW)("fixed inset-10 bg-background-tertiary/80 transition-opacity backdrop-blur-[20px] rounded-lg",o)})),React.createElement("div",{className:"fixed inset-0 z-10 overflow-y-auto"},React.createElement("div",{className:"flex min-h-full items-center justify-center p-4 text-center sm:items-center sm:p-0"},React.createElement($a.Child,{as:i.Fragment,enter:"ease-out duration-300",enterFrom:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",enterTo:"opacity-100 translate-y-0 sm:scale-100",leave:"ease-in duration-200",leaveFrom:"opacity-100 translate-y-0 sm:scale-100",leaveTo:"opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"},React.createElement(Bi.Panel,{className:(0,y.xW)("relative w-full transform rounded-lg bg-white px-8 pt-8 pb-6 text-left shadow-xl transition-all sm:my-8 sm:w-full",c,n&&"overflow-hidden",l)},s&&React.createElement("div",{className:"absolute right-0 top-0 pr-3 pt-3 block"},React.createElement("button",{type:"button",className:"rounded-md bg-white text-nav-inactive hover:text-nav-active outline-none border-0 focus:outline-none transition duration-150 ease-in-out cursor-pointer",onClick:()=>t(!1)},React.createElement("span",{className:"sr-only"},"Close"),React.createElement(f,{className:"h-5 w-5","aria-hidden":"true"}))),React.createElement("div",{className:"space-y-6"},a)))))))},Di=({children:e,className:t,as:r="h5"})=>React.createElement(Bi.Title,{as:r,className:(0,y.xW)("flex items-center text-2xl font-semibold leading-8 text-heading-text space-x-3",t)},e);ji.Title=Di;const Fi=ji;function Mi({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v3.75m9-.75a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 3.75h.008v.008H12v-.008Z"}))}const zi=i.forwardRef(Mi);var Vi=o(6041);const Wi=({open:e,setOpen:t,title:r,description:n,confirmBtnTitle:a="Confirm",cancelBtnTitle:o="Cancel",onClickConfirm:s,onClickCancel:l,variant:c="danger"})=>{const[u,d]=(0,i.useState)(!1),p={iconBackground:{info:"bg-alert-info-bg",danger:"bg-alert-error-bg"},icon:{info:React.createElement(zi,{className:"w-8 h-8 text-alert-info"}),danger:React.createElement(zi,{className:"w-8 h-8 text-alert-error"})},confirmButton:{info:{className:"!w-auto"},danger:{className:"bg-alert-error border-alert-error text-white"}}};return React.createElement(Fi,{open:e,setOpen:t,overlayClassName:"bg-border-secondary/80",width:640},React.createElement("div",{className:"flex items-start justify-start gap-4"},React.createElement("span",{className:(0,y.xW)("w-auto h-auto flex items-center justify-center p-3 bg-alert-error-bg rounded-full",p.iconBackground[c])},p.icon[c]??p.icon.danger),React.createElement("div",{className:"space-y-6"},React.createElement("div",{className:"space-y-2"},React.createElement(Fi.Title,{className:"!text-[1.375rem]"},r),React.createElement("p",{className:"m-0 text-base font-normal text-body-text"},n)),React.createElement("div",{className:"flex items-center justify-start gap-3"},React.createElement(ii.A,{ref:e=>{e&&setTimeout((()=>{if(0===e.offsetWidth)return;const t=e.offsetWidth;e.style.width=`${t}px`}),350)},className:(0,y.xW)(p.confirmButton[c].className),variant:"primary",onClick:async e=>{u||(d(!0),"function"==typeof s&&(await s(e),d(!1)))}},u?React.createElement(Vi.A,null):a),React.createElement(ii.A,{className:"bg-white border-border-primary text-nav-inactive",variant:"primary",onClick:e=>{"function"==typeof l&&l(e,!1)}},o)))))},Ui=()=>{const{resetOnboardingAISteps:e}=(0,r.A)(g.U),{token:n,importInProgress:a}=(0,t.A)((e=>{const{getAIStepData:t,getImportInProgress:r}=e(g.U);return{importInProgress:r(),token:t()}}),[]),{status:o,remaining:s,currentBalanceStatus:l}=oi(),[c,d]=(0,i.useState)(!1),p=e=>()=>{window.open(ast_block_template_vars.get_more_credits_url,"_blank"),"function"==typeof e&&e()},m=(0,i.useCallback)((async()=>{try{(await(0,y.nr)({path:"gutenberg-templates/v1/revoke-access",method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}})).success&&e()}catch(e){(0,ti.v)(e)}finally{d(!1)}}),[]);return"success"===o&&n?React.createElement(React.Fragment,null,React.createElement(Ja,{trigger:({open:e})=>React.createElement("button",{className:(0,y.xW)("min-h-[36px] flex items-center justify-center group text-sm leading-[21px] font-normal text-body-text border border-solid border-border-primary focus:outline-none bg-transparent lg:pl-3 rounded cursor-pointer pl-0",e&&"bg-background-secondary",l.danger&&"bg-credit-danger/5 text-credit-danger border-credit-danger/5",l.warning&&"bg-credit-warning/5 text-credit-warning border-credit-warning/5",a&&"disable-click-action")},React.createElement("span",{className:"hidden lg:inline"},(0,y.ZV)(s)),React.createElement("span",{className:"p-2 flex items-center justify-center"},React.createElement(ai.A,{className:(0,y.xW)("w-5 h-5 text-nav-inactive group-active:text-nav-active transition-colors duration-150 ease-in-out",l.danger&&"text-credit-danger",l.warning&&"text-credit-warning")}))),placement:"right",width:"w-64",contentClassName:"border border-solid border-border-primary pt-3 pb-4 px-4 bg-white"},React.createElement(Ja.Item,null,(({close:e})=>React.createElement("div",{className:"w-full space-y-4",onClick:e=>{e.stopPropagation(),e.preventDefault()},role:"button",tabIndex:"0",onKeyDown:e=>{"Enter"===e.key&&(e.stopPropagation(),e.preventDefault())}},React.createElement("div",{className:"w-full space-y-2"},React.createElement("div",{className:"flex items-center justify-between w-"},React.createElement("span",{className:"text-sm font-medium text-heading-text"},s.toString().replace(/\B(?=(\d{3})+(?!\d))/g,",")," ",(0,u.__)("AI Credits in Your Account","ast-block-templates")))),React.createElement("p",{className:"m-0 text-border-secondary text-sm font-normal leading-5"},"Credits are used to personalize templates with AI."),React.createElement(ii.A,{className:"w-full bg-background-tertiary text-accent-spectra",variant:"blank",onClick:p(e),isSmall:!0},(0,u.__)("Buy AI Credits","ast-block-templates")))))),React.createElement(Wi,{open:c,setOpen:d,title:(0,u.__)("Revoke Access","ast-block-templates"),description:`${(0,u.__)("Are you sure you wish to revoke the authorization token?","ast-block-templates")}\n${(0,u.__)("You will need to re-authorize Zip to use it again.","ast-block-templates")}`,confirmBtnTitle:(0,u.__)("Revoke","ast-block-templates"),cancelBtnTitle:(0,u.__)("Cancel","ast-block-templates"),onClickCancel:()=>d(!1),onClickConfirm:m})):null};function Hi(){return Hi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Hi.apply(null,arguments)}const{post:$i}=wp.ajax,Zi=(0,e.A)((0,n.A)((e=>{const{setNotice:t}=e(g.U),{setAllPages:r,setSitePreview:n,setCurrentScreen:a,setFilterPagesBySearchTerm:i,setFilterBlocksBySearchTerm:o,setAllBlocksData:s,setAllCategories:l,setOnboardingAiPopup:c}=e(g.U);return{setNotice:t,updateCurrentScreen(e){r([]),n({}),i(""),o(""),a(e)},setAllBlocksData:s,setAllCategories:l,setOnboardingAiPopup:c}})),(0,a.A)((e=>{const{getNotice:t,getDynamicContentSyncStatus:r,getCurrentScreen:n,getShowPagesOnboarding:a,getAdaptiveMode:i,getDisableAi:o}=e(g.U);return{notice:t(),dynamicContentSyncStatus:r(),currentScreen:n(),showPagesOnboarding:a(),adaptiveMode:i(),disableAi:o()}})))((0,i.memo)((({setNotice:e,dynamicContentSyncStatus:n,setAllBlocksData:a,setAllCategories:o,adaptiveMode:s,disableAi:l})=>{const c=e=>(e.returnValue=(0,u.__)("Are you sure you want to cancel the content generation process?","ast-block-templates"),e);(0,i.useEffect)((()=>{if(Object.values(n).some((e=>!!e)))return window.addEventListener("beforeunload",c),()=>window.removeEventListener("beforeunload",c)}),[n]);const{setTogglePopup:d,setAllSites:m,setBackgroundSyncStatus:b}=(0,r.A)(g.U),{stepData:v,syncProgressStatus:w}=(0,t.A)((e=>{const{getOnboardingAI:t,getBackgroundSyncStatus:r}=e(g.U);return{...t(),syncProgressStatus:r()}}),[]),_="yes"===w?"Library syncing is in progress. Refresh the page for updates.":"Sync Library",[E,k]=(0,i.useState)({isProcessing:"",buttonText:_}),{isProcessing:S,buttonText:C}=E,R=async(t,r)=>{await $i({action:"ast-block-templates-import-sites",page_no:t,total:r,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((n=>{n.status?(k({isProcessing:"process",buttonText:`Imported ${t} of ${r} site..`}),t===r&&(o(n.data?.categories),a(n.data?.allBlocks),m(n.data?.allSites),e({type:"success"}),b("no"),k({isProcessing:"complete",buttonText:"Sync Complete"}))):k({isProcessing:"error",buttonText:`Error ${n.data}`})}))},A=async(e,t)=>{await $i({action:"ast-block-templates-import-blocks",page_no:e,total:t,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((r=>{r.status?(k({isProcessing:"process",buttonText:`Imported ${e} of ${t} block..`}),e===t&&(async()=>{await $i({action:"ast-block-templates-get-sites-request-count",_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((e=>{if(e.status){k({isProcessing:"process",buttonText:"Importing Sites.."});const t=e.data;for(let e=1;e<=t;e++)R(e,t)}else k({isProcessing:"complete",buttonText:"Importing Sites Failed"})})).fail((e=>{h("fail",e)}))})()):k({isProcessing:"error",buttonText:`Error ${r.data}`})}))};return React.createElement("div",{className:"justify-self-end flex items-center gap-0.5 sm:gap-1 md:gap-3 w-max"},React.createElement("span",{className:"hidden sm:inline"},s&&!l&&React.createElement(Ui,null)),(()=>{let e=!0;return v.token&&(e=!0),e})()&&React.createElement(x,Hi({className:(0,y.xW)("relative","process"===S&&"cursor-not-allowed"),disabled:Object.values(n).some((e=>!!e)),tooltip:_},"process"!==S&&{onClick:t=>{t.preventDefault(),Object.values(n).some((e=>!!e))||(e({type:"info"}),k({isProcessing:"process",buttonText:"Syncing library.."}),(async()=>{try{await $i({action:"ast-block-templates-check-sync-library-status",_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((async t=>{if(t.status)if("updated"===t.data)k({isProcessing:"complete",buttonText:"Library is up-to date!"}),e({type:"success"}),b("no");else{const e=t.data.pages;for(let t=1;t<=e;t++)await A(t,e)}else e({type:"error",message:`Error! ${t.message}`}),k({isProcessing:"complete",buttonText:`Error! ${t.message}`})})).fail((e=>{h("fail",e)}))}catch(e){h("Complete: Failed",e)}})())}}),React.createElement("span",{className:(0,y.xW)("inline-flex","process"===S&&"animate-spin")},React.createElement(p,{className:"h-6 w-6"})),React.createElement("span",{className:"sr-only"},C),"yes"===w&&React.createElement("div",{className:"absolute bottom-0.5 flex justify-center items-center gap-2 px-1 pb-px rounded border border-solid border-credit-warning bg-credit-warning shadow-sync-badge"},React.createElement("span",{className:"text-white text-[10px] font-medium leading-[15px]"},(0,u.__)("Syncing","ast-block-templates")))),React.createElement("span",{className:"sm:flex hidden"},React.createElement(ni,null)),React.createElement("div",{className:"w-px h-5 bg-border-primary"}),React.createElement(x,{onClick:()=>{d(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open"),(0,y.D6)("ast-import-id"),(0,y.D6)("ast-free-ai-content"),(0,y.D6)("ast-sites-visible-items"),(0,y.D6)("ast-sites-scroll-position"),(0,y.D6)("ast-pages-scroll-position"),(0,y.D6)("ast-pages-visible-items")},tooltip:"Close"},React.createElement(f,{className:"size-4 sm:size-6"})))}))),Gi=()=>React.createElement("div",{className:"flex items-center gap-2"},!ast_block_template_vars.is_white_label&&("active"===ast_block_template_vars.astra_sites_status||"active"===ast_block_template_vars.astra_sites_pro_status?React.createElement(ei.fp,{className:"w-[1.8rem] h-[1.8rem]"}):React.createElement(ei.y0,{className:"w-[1.8rem] h-[1.8rem]"})),React.createElement("span",{className:"text-[1.15rem] font-semibold text-heading-text leading-[1.875rem] hidden md:inline"},(0,u.__)("Design Library","ast-block-templates")));function qi({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M15.75 19.5 8.25 12l7.5-7.5"}))}const Yi=i.forwardRef(qi);function Ki({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m8.25 4.5 7.5 7.5-7.5 7.5"}))}const Xi=i.forwardRef(Ki),Ji=[{name:(0,u.__)("Patterns","ast-block-templates"),slug:"all-blocks-grid"},{name:(0,u.__)("Pages","ast-block-templates"),slug:"all-block-pages-grid",childScreens:["single-block-page-full-preview"]},{name:(0,u.__)("Kits","ast-block-templates"),slug:"all-sites-grid",childScreens:["all-single-site-pages"]},{name:(0,u.__)("Favorites","ast-block-templates"),slug:"all-favorites"}],Qi=(0,e.A)((0,a.A)((e=>{const{getFavorites:t,getSitePreview:r,getCurrentScreen:n}=e("ast-block-templates");return{favorites:t(),preview:r(),currentScreen:n()}})),(0,n.A)((e=>{const{setAllPages:t,setSitePreview:r,setTogglePopup:n,setCurrentScreen:a,setFilterPagesBySearchTerm:i,setFilterBlocksBySearchTerm:o,setFilterBlocksPagesBySearchTerm:s,setFilterSitesBySearchTerm:l}=e("ast-block-templates");return{updateCurrentScreen(e){t([]),r({}),i(""),o(""),s(""),l(""),a(e)},onSetSitePreview:r,onSetTogglePopup:n}})))((0,i.memo)((({currentScreen:e,updateCurrentScreen:r})=>{const{importInProgress:n}=(0,t.A)((e=>{const{getImportInProgress:t}=e(g.U);return{importInProgress:t()}}),[]),[a,o]=(0,i.useState)(0),[s,l]=(0,i.useState)(window.innerWidth<830);(0,i.useEffect)((()=>{const e=()=>l(window.innerWidth<830);return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)}),[window.innerWidth]);const c=(t,n)=>{t.preventDefault(),n!==e&&"function"==typeof r&&(r(n),(0,y.D6)("ast-sites-scroll-position"),(0,y.D6)("ast-pages-scroll-position"))},u=e=>()=>{o((t=>Math.max(0,Math.min(t+e,Ji.length-2))))},d=s?Ji.slice(a,a+2):Ji;return React.createElement("div",{className:"h-full flex items-center justify-self-center sm:justify-start mx-2 md:ml-12"},s&&a>0&&React.createElement(Yi,{className:"h-5 w-5 text-secondary-text cursor-pointer",onClick:u(-1)}),d.map(((t,r)=>{return React.createElement("div",{key:r,className:(0,y.xW)("cursor-pointer h-full flex items-center relative px-3.5 md:px-7 py-1.5 md:py-3 font-semibold text-sm md:text-base text-secondary-text md:max-lg:px-5 md:max-lg:py-2",(a=t.slug,(a===e||t?.childScreens?.includes(e))&&'text-nav-active bg-background-tertiary after:content-[""] after:absolute after:bottom-0 after:right-0 after:w-full after:h-px after:bg-accent-spectra transition duration-150 ease-in-out'),n&&"disable-click-action"),onClick:e=>c(e,t.slug),role:"button",tabIndex:"0",onKeyDown:e=>"Enter"===e.key?c(e,t.slug):null},React.createElement("span",null,t.name));var a})),s&&a<Ji.length-2&&React.createElement(Xi,{className:"h-5 w-5 text-secondary-text cursor-pointer",onClick:u(1)}))}))),eo=()=>React.createElement("div",{className:"spectra-ai h-14 md:h-[4.5rem] w-full flex justify-between items-center bg-white border-0 border-b border-solid border-b-border-primary px-2.5 md:px-5"},React.createElement(Gi,null),React.createElement(Qi,null),React.createElement(Zi,null));function to(){return to=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},to.apply(null,arguments)}const ro=(0,i.forwardRef)((({type:e=1,className:t,...r},n)=>React.createElement("div",to({ref:n,className:(0,y.xW)("p-4 w-full h-[calc(100vh_/_3)]",t)},r),(()=>{switch(e.toString()){case"1":return React.createElement("div",{className:"w-full h-full grid grid-cols-12 grid-rows-1 items-stretch space-x-5 2xl:space-x-9 bg-white pt-8 2xl:pt-[3.375rem] px-4 2xl:px-8 border border-solid border-border-primary overflow-hidden"},React.createElement("div",{className:"col-span-5 space-y-2.5"},React.createElement("div",{className:"h-3 2xl:h-6 w-full overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-6 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-3 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-3 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"w-2/5 flex items-center gap-2"},React.createElement("div",{className:"h-2.5 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2.5 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-2/5 last:!mt-5 flex justify-between items-center"},React.createElement("div",{className:"h-3 2xl:h-5 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-5 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}))),React.createElement("div",{className:"col-span-7 h-full overflow-hidden relative bg-gray-200","data-placeholder":!0}));case"2":return React.createElement("div",{className:"w-full h-full grid grid-cols-1 grid-rows-6 gap-y-2 items-stretch bg-white pt-8 2xl:pt-[3.375rem] px-4 2xl:px-8 border border-solid border-border-primary overflow-hidden"},React.createElement("div",{className:"row-span-2 flex items-start justify-between gap-8"},React.createElement("div",{className:"w-1/2 space-y-2"},React.createElement("div",{className:"h-3 2xl:h-6 w-full overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-6 w-4/5 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-1/2 space-y-2"},React.createElement("div",{className:"h-2 2xl:h-3 w-full overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-3 w-3/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-6 w-1/4 last:!mt-2.5 overflow-hidden relative bg-gray-200","data-placeholder":!0}))),React.createElement("div",{className:"row-span-4 h-full overflow-hidden relative bg-gray-200","data-placeholder":!0}));case"3":return React.createElement("div",{className:"w-full h-full grid grid-cols-1 grid-rows-6 items-stretch bg-white pt-8 2xl:pt-[3.375rem] px-4 2xl:px-8 border border-solid border-border-primary overflow-hidden"},React.createElement("div",{className:"row-span-4 flex items-start space-x-4 2xl:space-x-8 justify-between"},React.createElement("div",{className:"w-1/2 space-y-2.5"},React.createElement("div",{className:"h-3 2xl:h-6 w-3/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-6 w-2/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-3 w-3/5 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-3 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-1/2 h-full flex items-center gap-2"},React.createElement("div",{className:"h-full w-full overflow-hidden relative bg-gray-200","data-placeholder":!0}))),React.createElement("div",{className:"row-span-2 w-full flex items-center justify-between gap-2"},React.createElement("div",{className:"w-1/3 space-y-2.5"},React.createElement("div",{className:"h-2 2xl:h-4 w-2/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-1/3 space-y-2.5"},React.createElement("div",{className:"h-2 2xl:h-4 w-2/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-1/3 space-y-2.5"},React.createElement("div",{className:"h-2 2xl:h-4 w-2/4 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}))));default:return React.createElement("div",{className:"w-full h-full grid grid-cols-12 grid-rows-1 items-stretch space-x-3 2xl:space-x-9 bg-white pt-8 2xl:pt-[3.375rem] px-4 2xl:px-8 border border-solid border-border-primary overflow-hidden"},React.createElement("div",{className:"col-span-5 space-y-2.5"},React.createElement("div",{className:"h-3 2xl:h-6 w-full overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-3 2xl:h-6 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-1.5 2xl:h-3 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-1.5 2xl:h-3 w-10/12 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"w-2/5 flex items-center gap-2"},React.createElement("div",{className:"h-2 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2 2xl:h-4 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0})),React.createElement("div",{className:"w-2/5 last:!mt-5 flex justify-between items-center"},React.createElement("div",{className:"h-2.5 2xl:h-5 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}),React.createElement("div",{className:"h-2.5 2xl:h-5 w-1/3 overflow-hidden relative bg-gray-200","data-placeholder":!0}))),React.createElement("div",{className:"col-span-7 h-full overflow-hidden relative bg-gray-200","data-placeholder":!0}))}})()))),no=ro,ao=(0,i.lazy)((()=>o.e(910).then(o.bind(o,1910)))),io=(0,e.A)((0,n.A)((e=>{const{setImportItemInfo:t,setFullWidthBlockPreview:r,setCurrentScreen:n}=e("ast-block-templates");return{setImportItemInfo:t,updateFullWidthBlockPreview(e){r(e),n("full-width-block-preview")}}})))((0,i.memo)((({index:e,setImportItemInfo:t,updateFullWidthBlockPreview:r,item:n,content:a,stylesheet:o,astraCustomizer:s,globalStylesheet:l,colorPalette:u,dynamicContent:d,selectedImages:p,email:m,phone:f,address:g,onClickBlock:h})=>c().createElement(i.Suspense,{fallback:c().createElement(no,{type:(0,y.qj)((0,y.Zz)(e),(0,y.h7)(e))})},c().createElement(ao,{setImportItemInfo:t,updateFullWidthBlockPreview:r,item:n,content:a,stylesheet:o,astraCustomizer:s,globalStylesheet:l,colorPalette:u,dynamicContent:d,selectedImages:p,email:m,phone:f,address:g,onClickBlock:h}))),((e,t)=>!(JSON.stringify(e.item)!==JSON.stringify(t.item)||e.content!==t.content||e.stylesheet!==t.stylesheet||e.astraCustomizer!==t.astraCustomizer||e.globalStylesheet!==t.globalStylesheet||e.colorPalette!==t.colorPalette||JSON.stringify(e.dynamicContent)!==JSON.stringify(t.dynamicContent)||JSON.stringify(e.selectedImages)!==JSON.stringify(t.selectedImages)||e.email!==t.email||e.phone!==t.phone||e.address!==t.address)))),{compose:oo}=wp.compose,{memo:so}=wp.element,{withSelect:lo}=wp.data,co=oo(lo((e=>{const{getFilterBlocksBySearchTerm:t}=e("ast-block-templates");return{filterBlocksBySearchTerm:t()}})))(so((({value:e,options:t,allCount:r,onChange:n,filterBlocksBySearchTerm:a})=>React.createElement("div",{className:"st-block-categories-wrap"},React.createElement("h3",null,(0,u.__)("Categories","ast-block-templates")),React.createElement("div",{className:"st-block-categories-list"},React.createElement("div",{className:"st-block-category "+(a||""!==e?"":"active"),onClick:e=>{"function"==typeof n&&n(e,"")},role:"button",tabIndex:0,onKeyDown:e=>{"function"==typeof n&&n(e,"")}},React.createElement("span",{className:"st-block-category-title"},"All"),React.createElement("span",{className:"st-block-category-count"},r)),Object.values(t).map((t=>React.createElement("div",{key:t.id,className:"st-block-category "+(e===t.id?"active":""),onClick:e=>{"function"==typeof n&&n(e,t)},role:"button",tabIndex:0,onKeyDown:e=>{"function"==typeof n&&n(e,t)}},React.createElement("span",{className:"st-block-category-title"},t.name),React.createElement("span",{className:"st-block-category-count"},t.count))))))))),{compose:uo}=wp.compose,{memo:po}=wp.element,{withSelect:mo,withDispatch:fo}=wp.data,go=uo(mo((e=>{const{getFilterBlocksByCategory:t,getFilterBlocksByColor:r}=e("ast-block-templates");return{filterBlocksByCategory:t(),filterBlocksByColor:r()}})),fo((e=>{const{setFilterBlocksByCategory:t}=e("ast-block-templates");return{setFilterBlocksByCategory:t}})))(po((({filterBlocksByCategory:e,setFilterBlocksByCategory:t,filterBlocksByColor:r})=>{const n=[];let a=0;for(const e in ast_block_template_vars.allBlocks){const t=ast_block_template_vars.allBlocks[e].filter||"",i=ast_block_template_vars.allBlocks[e].wireframe||{};if(Object.keys(i).length){const i="object"==typeof ast_block_template_vars.allBlocks[e].category?0:parseInt(ast_block_template_vars.allBlocks[e].category);if(!n[i]){const e=ast_block_template_vars.allCategories.filter((e=>e.id===i)),t=e.length?e[0]:{};t.id=i,t.count=0,n[i]=t}(!r||r&&t===r)&&(n[i].count=parseInt(n[i].count)+1,a+=1)}}return n.sort(((e,t)=>{const r=e.name?e.name.toUpperCase():"",n=t.name?t.name.toUpperCase():"";return r<n?-1:r>n?1:0})),React.createElement(co,{value:e,allCount:a,options:n,onChange:(e,r)=>{t(r?r.id:"")}})}))),{compose:ho}=wp.compose,{memo:yo}=wp.element,{withSelect:bo,withDispatch:vo}=wp.data,wo=ho(bo((e=>{const{getFilterBlocksByColor:t,getAllBlocks:r}=e("ast-block-templates");return{filterBlocksByColor:t(),allBlocks:r()}})),vo((e=>{const{setFilterBlocksByColor:t}=e("ast-block-templates");return{setFilterBlocksByColor:t}})))(yo((({filterBlocksByColor:e,setFilterBlocksByColor:t,allBlocks:r})=>{if(!r)return;const n=[];return r.map((e=>(e.filter&&!n.includes(e.filter)&&n.push(e.filter),null))),n.length<=1?"":React.createElement("div",{className:"blocks-color"},React.createElement("h3",null,(0,u.__)("Filter by Color","ast-block-templates")),React.createElement("div",{className:"block-color-list"},React.createElement("div",{className:"block-color-item "+(e?"":"active"),onClick:()=>t(""),role:"button",tabIndex:0,onKeyDown:()=>t("")},"ast-block-templates"),n.map((r=>React.createElement("div",{key:r,className:"block-color-item "+(e===r?"active":""),onClick:()=>t(r),role:"button",tabIndex:0,onKeyDown:()=>t(r)},r)))))}))),{memo:xo}=wp.element,_o=xo((()=>React.createElement("div",{className:"filter-wrap ast-block-templates-block-grid-filters"},React.createElement("div",{className:"filters"},React.createElement(wo,null),React.createElement(go,null)))));function Eo({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"}))}const ko=i.forwardRef(Eo),So=({keyword:e})=>React.createElement("div",{className:"flex flex-col sm:flex-row items-start justify-start gap-6 p-5 bg-background-secondary w-full h-fit rounded-lg"},React.createElement(ko,{className:"w-10 h-10 text-accent-spectra"}),React.createElement("div",{className:"space-y-1"},React.createElement("h6",{className:"text-heading-text text-xl font-semibold leading-7 m-0 p-0"},"Your search - ",e," - did not match any pattern designs."),React.createElement("p",{className:"m-0 p-0 text-body-text text-base font-normal leading-6"},"Try searching with different keywords")));o(7948);const Co=({afterClick:e})=>React.createElement("span",null,React.createElement("span",{className:"back-to-templates",onClick:t=>{e&&e(t)},role:"button",tabIndex:0,onKeyDown:t=>{e&&e(t)}},(0,u.__)("Back to Templates","ast-block-templates")));o(6574);const Ro=(0,e.A)((0,n.A)((e=>{const{setNotice:t}=e(g.U);return{setNotice:t}})),(0,a.A)((e=>{const{getNotice:t}=e(g.U);return{notice:t()}})))((0,i.memo)((({notice:e,setNotice:t})=>{if(!Object.keys(e).length)return null;const{type:r,message:n}=e;return React.createElement("div",{className:`ast-block-templates-notice notice notice-${r}`},React.createElement("div",{className:"ast-block-templates-notice-message"},n),React.createElement("button",{type:"button",className:"notice-dismiss",onClick:()=>t({})},React.createElement("span",{className:"screen-reader-text"},"Dismiss")))}))),{compose:Ao}=wp.compose,{withSelect:Po,withDispatch:To}=wp.data,{memo:No,useEffect:Io,useState:Oo}=wp.element,Lo=Ao(To((e=>{const{setFilterBlocksBySearchTerm:t,setFilterBlocksByCategory:r,setActivePalette:n}=e("ast-block-templates");return{setFilterBlocksByCategory:r,setFilterBlocksBySearchTerm:t,setActivePalette:n}})),Po((e=>{const{getAllWireframes:t,getFilterBlocksByCategory:r,getFilterBlocksByColor:n,getDefaultColorPalette:a,getActivePalette:i,getAllCategories:o}=e("ast-block-templates");return{filterBlocksByCategory:r(),filterBlocksByColor:n(),allWireframes:t(),defaultPalette:a(),activePalette:i(),allCategories:o()}})))(No((({filterBlocksByColor:e,setFilterBlocksBySearchTerm:t,allWireframes:r,defaultPalette:n,activePalette:a,allCategories:i})=>{const o=[],s=[];let l=0;const[c,u]=Oo(!1);for(const t in r){const n=r[t].filter||"",a="object"==typeof r[t].category?0:parseInt(r[t].category);if(!s[a]){const e=i.filter((e=>e.id===a)),t=e.length?e[0]:{};t.id=a,t.count=0,s[a]=t}(!e||e&&n===e)&&(s[a].count=parseInt(s[a].count)+1,l+=1,o.push(r[t]))}Io((()=>{c&&(d(),p())}),[c]);const d=()=>{document.querySelectorAll(".sd-container").forEach((e=>{const t=e.querySelector(".thumbnail");if(t){const r=t.offsetHeight,n=t.style.transform.match(/scale\((.*?)\)/);if(n){const t=parseFloat(n[1]);e.style.height=r*t+"px"}}}))},p=()=>{const e=document.getElementById("ast-block-templates-grid-blocks");e&&new Masonry(e)},[m,f]=Oo(10),g=Object.keys(a).length>0?a.colors:n.colors,h=()=>{window.innerHeight+window.scrollY>=document.body.offsetHeight-500&&o.length>m&&f((e=>e+10))};Io((()=>{const e=((e,t)=>{let r;return(...t)=>{clearTimeout(r),r=setTimeout((()=>e(...t)),200)}})(h),t=document.getElementsByClassName("ast-block-templates-content");if(t.length>0){const r=t[0];return r.addEventListener("scroll",e),()=>r.removeEventListener("scroll",e)}}),[h]);const y=o.slice(0,m);return React.createElement("div",{className:"ast-block-templates-grid-blocks active"},React.createElement(_o,null),React.createElement("div",{className:"ast-block-templates-pattern-grid"},React.createElement(Ro,null),React.createElement("div",{className:"ast-block-templates-grid",id:"ast-block-templates-grid-blocks"},y.length?y.map(((e,t)=>React.createElement(io,{key:e.ID,item:e,InitMasonry:p,content:e.content,stylesheet:e.stylesheet,astraCustomizer:e.astra_customizer,colorPalette:g,onMount:()=>(e=>{e===o.length-1&&u(!0)})(t)}))):React.createElement(So,null,React.createElement(Co,{afterClick:()=>{t("")}})))))})));const Bo=(e,t,r)=>{let n,a,i,o,s,l=0,c=0,u=!1,d=!1,p=!0;function m(t){const r=n,o=a;return n=void 0,a=void 0,c=t,i=e.apply(o,r),i}function f(e,t){o=setTimeout(e,t)}function g(e){return e-(s||0)}function h(e){const r=g(e);return void 0===s||r>=t||r<0||d&&e-c>=l}function y(){const e=Date.now();if(h(e))return v(e);f(y,function(e){const r=g(e),n=e-c,a=t-r;return d?Math.min(a,l-n):a}(e))}function b(){o=void 0}function v(e){return b(),p&&n?m(e):(n=a=void 0,i)}function w(){return void 0!==o}function x(...e){const r=Date.now(),o=h(r);if(n=e,a=this,s=r,o){if(!w())return function(e){return c=e,f(y,t),u?m(e):i}(s);if(d)return f(y,t),m(s)}return w()||f(y,t),i}return r&&(u=!!r.leading,d="maxWait"in r,void 0!==r.maxWait&&(l=Math.max(r.maxWait,t)),p="trailing"in r?!!r.trailing:p),x.cancel=function(){void 0!==o&&clearTimeout(o),c=0,b(),n=s=a=void 0},x.flush=function(){return w()?v(Date.now()):i},x.pending=w,x};function jo(e,t,r){const n=(a=()=>Bo(e,null!=t?t:0,r),o=[e,t,r],s=(0,i.useState)((function(){return{inputs:o,result:a()}}))[0],l=(0,i.useRef)(!0),c=(0,i.useRef)(s),u=l.current||Boolean(o&&c.current.inputs&&function(e,t){if(e.length!==t.length)return!1;for(var r=0;r<e.length;r++)if(e[r]!==t[r])return!1;return!0}(o,c.current.inputs))?c.current:{inputs:o,result:a()},(0,i.useEffect)((function(){l.current=!1,c.current=u}),[u]),u.result);var a,o,s,l,c,u;return(0,i.useEffect)((()=>()=>n.cancel()),[n]),n}var Do=o(6723),Fo=o.n(Do);const Mo=()=>React.createElement("div",{className:"spectra-ai flex items-start w-5 h-5"},React.createElement("span",{className:Fo().loaderDots}));function zo({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"}))}const Vo=i.forwardRef(zo);var Wo=o(8354);const Uo=({categoryName:e,onClick:r,disabled:n=!1,boxText:a,children:i})=>{const{remaining:o,pagesCategoryRate:s,patternsCategoryRate:l,currentBalanceStatus:c}=oi(),d=(0,t.A)((e=>{const{getCurrentScreen:t}=e(g.U);return t()}),[]),p="all-block-pages-grid"===d?s:l,m="all-block-pages-grid"===d?"page":"pattern",f=o<p||o<=0,h=e=>t=>{f||"function"==typeof r&&(r(t),"function"==typeof e&&e())},b=e=>{window.open(ast_block_template_vars.get_more_credits_url,"_blank"),"function"==typeof e&&e()};return React.createElement(Ja,{trigger:({open:e})=>React.createElement("button",{className:(0,y.xW)("[&:has(.animate-none)]:!visible group-hover:visible flex items-center justify-center group border-0 focus:outline-none bg-transparent rounded cursor-pointer",!e&&"invisible"),disabled:n},i),placement:"right",width:"w-[15.5rem]",contentClassName:"border border-solid border-border-primary pt-3 pb-4 px-4 bg-white",offset:[13,5]},React.createElement(Ja.Item,null,(({close:t})=>React.createElement("div",{className:"w-full space-y-4",onClick:e=>{e.stopPropagation(),e.preventDefault()},role:"button",tabIndex:"0",onKeyDown:e=>{"Enter"===e.key&&(e.stopPropagation(),e.preventDefault())}},React.createElement("p",{className:"text-sm font-normal leading-[21px] text-body-text m-0 p-0"},"This will personalize the"," ",React.createElement("span",{className:"font-medium"},e)," ",m,"s again."),React.createElement("div",{className:"flex flex-col gap-2"},React.createElement(ii.A,{className:(0,y.xW)("w-full bg-background-tertiary text-accent-spectra !text-sm",f&&"bg-button-disabled text-secondary-text"),variant:"blank",onClick:h(t),isSmall:!0,disabled:f},a," (",(0,y.ZV)(p)," ","Credits)"),React.createElement("p",{className:(0,y.xW)("w-full m-0 p-0 text-sm font-normal text-secondary-text text-center",c.warning&&"text-credit-warning",c.danger&&"text-credit-danger")},o?.toLocaleString()," ",(0,u.__)("AI Credits remaining","ast-block-templates")),React.createElement("hr",{className:"border-t-border-primary border-b-0 my-2"}),React.createElement("div",{onClick:()=>b(t),className:"m-0 block text-sm font-normal !text-accent-spectra underline text-center",role:"button",tabIndex:"0",onKeyDown:e=>"Enter"===e.key?b(t):null},"ast-block-templates"))))))};function Ho({category:e,isActive:n,onClick:a,disableAi:o}){const[s,l]=(0,i.useState)(!1),{setDynamicContent:c,setNotice:u,dynamicContentFlagSet:d,dynamicContentSyncComplete:p,dynamicContentReSyncStatus:m,setCurrentCategory:f,setRegeneratingContentCategory:h,setCreditsDetails:b}=(0,r.A)(g.U),{dynamicContentSyncFlags:v,dynamicContentSyncStatus:w,currentScreen:x,allPatternsCategories:_,allPagesCategories:E,dynamicContent:k,reSyncStatus:S,regeneratingContentCategory:C,businessDetails:R,importInProgress:A}=(0,t.A)((e=>{const{getDynamicContentSyncFlags:t,getDynamicContentSyncStatus:r,getCurrentScreen:n,getAllPatternsCategories:a,getAllPagesCategories:i,getDynamicContent:o,getDynamicContentReSyncStatus:s,getRegeneratingContentCategory:l,getAIStepData:c,getImportInProgress:u}=e(g.U);return{dynamicContentSyncFlags:t(),dynamicContentSyncStatus:r(),currentScreen:n(),allPatternsCategories:a(),allPagesCategories:i(),dynamicContent:o(),reSyncStatus:s(),regeneratingContentCategory:l(),businessDetails:c()?.businessDetails,importInProgress:u()}}),[]),P="all-block-pages-grid"===x?"pages":"patterns",T=()=>{let t={};switch(x){case"all-block-pages-grid":t=v.pages;break;case"all-blocks-grid":t=v.patterns}return!(S||("favorite"!==e.id&&""!==e.id||!w[P])&&(!1!==t[e.id]||!w[P]))},N=Array.from(("pages"===P?E:_).reduce(((e,t)=>(e.has(t.id)||e.set(t.id,t),e)),new Map).values()),I=k&&Object.keys(k).length>0||!!R&&k&&!Object.keys(k).length,O="pages"===P&&!!k&&!k.hasOwnProperty(e.id),L=S&&C===e.id;return React.createElement("div",{className:(0,y.xW)("group flex items-center justify-between px-3 py-2 rounded text-base cursor-pointer hover:bg-background-tertiary transition duration-150 ease-in-out",n&&"bg-background-tertiary",A&&"disable-click-action"),onClick:a,role:"button",tabIndex:0,onKeyDown:e=>"Enter"===e.key?a():null},React.createElement("span",{className:(0,y.xW)("leading-6 inline-flex items-start gap-2 text-[0.92rem]",n?"text-nav-active font-medium":"text-nav-inactive font-normal")},e.name),React.createElement("span",{className:(0,y.xW)("leading-6 font-normal",n?"text-body-text":"text-secondary-text")},"Favorites"!==e.name&&(T()||L)&&React.createElement(Mo,null)),""!==e.id&&"favorite"!==e.id&&!T()&&!L&&!o&&I&&!w[P]&&React.createElement(Uo,{categoryName:e.name,onClick:async t=>{if(t.preventDefault(),t.stopPropagation(),s)return;if(S)return!1;if(!e)return;let r;r=e?.id&&e.name?`Personalizing "${e.name}"`:"Personalizing",u({type:"personalize",title:r,message:"Please wait a few moments. We are personalizing the selected category."}),h(e?.id??""),m(),l(!0);let n=!1;if(e?.id)try{n=await(async e=>{try{const t=new window.FormData;t.append("action","ast-block-templates-regenerate"),t.append("security",ast_block_template_vars.ai_content_ajax_nonce),t.append("category",e),t.append("regenerate",!0),t.append("block_type","all-blocks-grid"===x?"block":"page");const r=await(0,y.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:t});if(!r.success)throw new Error(r?.data?.data);if(r.success)return c(r.data.data),d(e,!0),b(r.data.spec_credit_details),!0;if("api_throttle_error"===r.data.code)throw r;return!1}catch(e){if((0,ti.v)(e),"api_throttle_error"===e.data.code)throw e;return!1}})(e?.id)}catch(e){n=e}else n=await(0,Wo.R2)(N,c,d,(e=>f(P,e)),b,"all-block-pages-grid"===x?"page":"block");l(!1),u("object"==typeof n&&"api_throttle_error"===n?.data?.code?{type:"error",title:"Check Back Soon",message:React.createElement(React.Fragment,null,"We are currently experiencing exceptionally high demand. Please try again in 5 minutes. If the error persists, kindly contact us through the website:",React.createElement("a",{href:"https://zipwp.com/contact",target:"_blank",rel:"noreferrer"}," ","https://zipwp.com/contact"),".")}:{type:n?"success":"error",title:n?"Library Personalized":"Library Personalization Failed",message:n?"Your library personalized successfully.":"Something went wrong, please try again"}),p(),m(),h(null)},disabled:s,boxText:"Personalize"},React.createElement("span",{className:(0,y.xW)("leading-6 inline-flex text-accent-spectra",s&&"animate-none")},O&&!s?React.createElement(Vo,{className:"h-5 w-5"}):React.createElement(ai.A,{className:"h-5 w-5"}))))}const $o=(0,e.A)((0,a.A)((e=>{const{getDisableAi:t,getLoadingBlocksAndSites:r}=e(g.U);return{disableAi:t(),loadingBlocksAndSites:r()}})))((0,i.memo)((({value:e,list:t,allCount:r,favoriteCount:n,onChange:a,hasSearchTerm:o,dynamicContentSyncFlags:s,disableAi:l,loadingBlocksAndSites:c})=>{let u=[{id:"",name:"All",count:r},...t];0===n&&(u=[{id:"",name:"All",count:r},...t]);const d=(0,i.useCallback)((t=>!o&&""===e&&""===t.id||e===t.id),[e,o]),p=e=>t=>{"function"==typeof a&&a(t,e)};return c?Array.from({length:5}).map(((e,t)=>React.createElement("div",{key:t,"data-placeholder":!0,className:"relative w-full h-10 rounded bg-gray-200"}))):React.createElement("div",{className:"spectra-ai flex flex-col flex-1 gap-1 overflow-auto -mx-1 p-0.5 scrollbar-hover"},u.map((e=>React.createElement(Ho,{key:e?.id,category:e,isActive:d(e),onClick:p(e),dynamicContentSyncFlags:s,disableAi:l}))))})));var Zo=o(860);const Go=(0,e.A)((0,a.A)((e=>{const{getFilterBlocksByCategory:t,getFilterBlocksByColor:r,getAllPatternsAndPages:n,getAllCategories:a}=e("ast-block-templates");return{filterBlocksByCategory:t(),filterBlocksByColor:r(),allPatterns:n()?.patterns,allCategories:a()}})),(0,n.A)((e=>{const{setFilterBlocksByCategory:t,setAllPatterns:r,setAllBlocksData:n}=e("ast-block-templates");return{setFilterBlocksByCategory:t,setAllPatterns:r,setAllBlocksData:n}})))((0,i.memo)((({filterBlocksByCategory:e,setFilterBlocksByCategory:r,allPatterns:n,allCategories:a})=>{const o=(0,i.useRef)(null),s={};let l=0;const{favorites:c}=(0,t.A)((e=>{const{getFavorites:t}=e("ast-block-templates");return{favorites:t()}}),[]);if(!n)return null;for(const e in a){let t=0;for(const r in n)a[e].id===n[r].category&&t++;0!==t&&(s[e]=a[e],s[e].count=t,l+=t)}const u=Object.keys(s).map((e=>s[e]));return React.createElement($o,{value:e,allCount:l,favoriteCount:c?.block?Object.keys(c?.block)?.length:0,list:u,onChange:(e,t)=>{""!==t.id?r(t.id):r(""),o.current!==t.id&&(o.current=t.id,Zo.A.emit("reset-list-count"))}})}))),qo=({selected:e,options:r,onChange:n,tabIndex:a})=>{const{importInProgress:i}=(0,t.A)((e=>{const{getImportInProgress:t}=e(g.U);return{importInProgress:t()}}),[]);return React.createElement("div",{className:"flex items-center gap-4"},Object.values(r).map(((t,r)=>{const o=t.title||"",s=t.default_color||"";return React.createElement("div",{key:r,className:(0,y.xW)("w-6 h-6 rounded-full cursor-pointer",t.slug===e?"ring-2 ring-offset-4 ring-accent-spectra":"",i&&"disable-click-action"),onClick:e=>{n(e,t)},onKeyDown:e=>{((e,t)=>{38===(e=e||window.event).keyCode?e.target.previousSibling&&e.target.previousSibling.focus():40===e.keyCode?e.target.nextSibling&&e.target.nextSibling.focus():13===e.keyCode&&n(e,t)})(e,t)},tabIndex:a,role:"button"},React.createElement("span",{className:"sr-only"},o),React.createElement("div",{className:"w-full h-full rounded-full border border-solid border-black/[0.12]",style:{backgroundColor:s}}))})))},Yo=(0,e.A)((0,a.A)((e=>{const{getDefaultBlockColorPalette:t,getActiveBlockPalette:r,getActiveBlockPaletteSlug:n,getDefaultPageColorPalette:a,getActivePagePalette:i,getActivePagePaletteSlug:o,getCurrentScreen:s,getBlockColorPaletteObj:l,getPageColorPaletteObj:c}=e(g.U);return{defaultBlockPalette:t(),activeBlockPalette:r(),activeBlockPaletteSlug:n(),defaultPagePalette:a(),activePagePalette:i(),activePagePaletteSlug:o(),currentScreen:s(),blockColorPaletteObj:l(),pageColorPaletteObj:c()}})),(0,n.A)((e=>{const{setActiveBlockPalette:t,setActiveBlockPaletteSlug:r,setActivePagePalette:n,setActivePagePaletteSlug:a}=e(g.U);return{setActiveBlockPalette:t,setActiveBlockPaletteSlug:r,setActivePagePalette:n,setActivePagePaletteSlug:a}})))((0,i.memo)((({setActiveBlockPalette:e,activeBlockPaletteSlug:t,setActiveBlockPaletteSlug:r,setActivePagePalette:n,activePagePaletteSlug:a,setActivePagePaletteSlug:i,currentScreen:o,blockColorPaletteObj:s,pageColorPaletteObj:l})=>{const c=s,d=l;return React.createElement("div",{className:"flex items-center justify-between gap-7 px-2 py-1 min-h-[2rem]"},React.createElement("span",{className:"text-base font-semibold leading-6 text-heading-text"},(0,u.__)("Color Styles: ","ast-block-templates")),React.createElement(qo,{selected:"all-blocks-grid"===o?t:a,options:"all-blocks-grid"===o?c:d,onChange:(t,a)=>{((t,a)=>{a&&("all-blocks-grid"===o?(r(a.slug),e(a)):(i(a.slug),n(a)))})(0,a)},tabIndex:"0",type:"others"}))})));function Ko(){return Ko=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Ko.apply(null,arguments)}const{forwardRef:Xo,useMemo:Jo}=wp.element,Qo=Xo((({disabled:e=!1,className:r,inputClassName:n,error:a,name:i,validations:o,label:s,noBorder:l,height:c="[42px]",labelColorClassName:u="text-zip-app-heading",enableDebounce:d,onChange:p,prefixIcon:m,suffixIcon:f,prefixIconClassName:h,suffixIconClassName:b,enableAutoGrow:v=!1,register:w,...x},_)=>{const{ref:E,...k}=Jo((()=>"function"==typeof w?w(i,o):{}),[i,w,o]),{importInProgress:S}=(0,t.A)((e=>{const{getImportInProgress:t}=e(g.U);return{importInProgress:t()}}),[]);return React.createElement("div",{className:r},s&&React.createElement("label",{htmlFor:i,className:(0,y.xW)("text-sm font-medium text-zip-app-heading",u)},s,o?.required&&React.createElement("span",{className:"text-alert-error"}," *")),React.createElement("div",{className:"flex relative items-center"},m&&React.createElement("div",{className:h},m),React.createElement("div",{className:(0,y.xW)(v?"relative overflow-hidden flex justify-start items-center":"w-full")},React.createElement("input",Ko({ref:e=>{if(e&&"function"==typeof E&&E(e),_)switch(typeof _){case"function":_(e);break;case"object":_.current=e}},name:i,disabled:e,className:(0,y.xW)("w-full px-[1rem] placeholder:text-secondary-text rounded-md outline-none text-sm placeholder:!text-sm",`h-${c}`,s?"mt-2":"",l?"bg-transparent":"px-3 border border-solid focus:ring-1 focus:ring-accent-st",a?(l?"":"shadow-error")+"  border-alert-error  focus:border-accent-st":(l?"":"shadow-sm")+"  border-border-primary focus:border-accent-st",v&&"absolute left-0 min-w-[50px]",e?"cursor-not-allowed":"",n,S&&"disable-click-action"),onChange:d?(0,y.sg)(p,500):p},x,k)),v&&React.createElement("span",{className:"invisible inline whitespace-pre text-[0.9rem]"},x.value||x.placeholder)),f&&React.createElement("div",{className:b},f)),a&&React.createElement("div",{className:"mt-1 text-sm text-alert-error "},a.message))})),es=({className:e})=>{const{searchString:n}=(0,t.A)((e=>{const{getFilterBlocksBySearchTerm:t,getFilterBlocksPagesBySearchTerm:r,getCurrentScreen:n,getFilterSitesBySearchTerm:a,getFilterFavoritres:i}=e(g.U);return"all-sites-grid"===n()?{searchString:a()}:"all-block-pages-grid"===n()?{searchString:r()}:"all-favorites"===n()?{searchString:i()}:{searchString:t()}})),{setFullWidthBlockPreview:a,setFilterBlocksBySearchTerm:i,setFilterBlocksPagesBySearchTerm:o,setFilterSitesBySearchTerm:s,setFilterFavoritres:l}=(0,r.A)(g.U),c=(0,t.A)((e=>e(g.U).getCurrentScreen()));return React.createElement(Qo,{className:(0,y.xW)("w-full",e),inputClassName:"bg-background-secondary !border-transparent !text-base pr-9 focus:ring-accent-spectra",placeholder:"Search...",suffixIcon:n?.trim()?React.createElement("button",{onClick:()=>{i(""),o(""),s(""),l(""),Zo.A.emit("reset-list-count")},className:"flex items-center justify-center h-5 w-5 border-0 focus:outline-none bg-transparent cursor-pointer"},React.createElement(f,{className:"w-5 h-5 text-icon-secondary"})):React.createElement(ko,{className:"w-5 h-5 text-icon-secondary"}),suffixIconClassName:(0,y.xW)(!n?.trim()&&"pointer-events-none","absolute right-4 flex items-center"),height:"[2.8rem]",value:n,onChange:e=>{switch(a({}),Zo.A.emit("reset-list-count"),c){case"all-sites-grid":s(e.target.value);break;case"all-block-pages-grid":o(e.target.value);break;case"all-favorites":l(e.target.value);break;default:i(e.target.value)}},prefixIconClassName:"absolute left-4 flex items-center"})};function ts(){return ts=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ts.apply(null,arguments)}const{memo:rs}=wp.element,ns=rs((({className:e,...r})=>{const{adaptiveMode:n}=(0,t.A)((e=>{const{getAdaptiveMode:t}=e(g.U);return{adaptiveMode:t()}}));return React.createElement("div",ts({className:(0,y.xW)("spectra-ai w-full lg:max-w-[280px] self-stretch bg-white border-0 border-r border-solid border-border-primary md:max-lg:max-w-[246px] xl:max-w-[280px] lg:max-xl:max-w-[260px] hidden sm:block max-w-60",e)},r),React.createElement("div",{className:"h-full w-full flex flex-col gap-5 py-5 px-4"},React.createElement(es,null),React.createElement(Qa,{className:"mx-2"}),React.createElement(Go,null),n&&React.createElement("div",{className:"mt-auto space-y-5 min-h-[3.125rem]"},React.createElement(Qa,{className:"mx-2"}),React.createElement(Yo,null))))}));var as=o(4848),is=[640,786,1024,1280,1536],os=(e,t)=>{let r=Object.keys((e=>Array.isArray(e)?(e=>e.reduce(((e,t,r)=>"number"!=typeof t?e:{...e,[is[r]]:t}),{}))(e):e)(e)).map(Number).sort(((e,t)=>e-t)),n=null;for(let e of r)t>e&&(n=e);return null!=n?n:r[0]},ss=e=>{let t="object"==typeof e,r=((e=!0)=>{let[t,r]=(0,i.useState)(window.innerWidth),n=(0,i.useCallback)((()=>{r(window.innerWidth)}),[]);return(0,i.useEffect)((()=>(e?window.addEventListener("resize",n):window.removeEventListener("resize",n),()=>{window.removeEventListener("resize",n)})),[e,n]),t})(t);return(0,i.useMemo)((()=>{var n;if(!t)return null!=e?e:3;let a=os(e,r);return null!=(n=e[a])?n:3}),[t,r,e])},ls=(0,i.createContext)({column:0,position:0}),cs=(0,i.forwardRef)(((e,t)=>{let{gap:r,as:n="div",columnProps:a,columns:o,...s}=e,l=(0,i.useId)(),c=((e,t)=>{let r=ss(t);return(0,i.useMemo)((()=>{let t=(e=>Array.from({length:e},(()=>[])))(r);return i.Children.forEach(e,((e,n)=>{(0,i.isValidElement)(e)&&t[n%r].push(e)})),t}),[r,e])})(e.children,o);return(0,as.jsx)(n,{"data-masonry-id":`Masonry-${l}`,...s,style:{display:"flex",gap:r,...s.style},ref:t,children:c.map(((e,t)=>(0,as.jsx)(n,{"data-masonry-column":t+1,...a,style:{display:"flex",flex:1,flexDirection:"column",gap:r,...null==a?void 0:a.style},children:e.map(((e,r)=>(0,as.jsx)(ls.Provider,{value:{column:t,position:r},children:e},`Masonry__Column_Child_${l}_${r}`)))},`Masonry__Column_${l}_${t}`)))})})),us=cs;function ds({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m15.75 10.5 4.72-4.72a.75.75 0 0 1 1.28.53v11.38a.75.75 0 0 1-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 0 0 2.25-2.25v-9a2.25 2.25 0 0 0-2.25-2.25h-9A2.25 2.25 0 0 0 2.25 7.5v9a2.25 2.25 0 0 0 2.25 2.25Z"}))}const ps=i.forwardRef(ds),ms=({videoIntroURL:e,className:t})=>React.createElement("a",{className:(0,y.xW)("no-underline text-[#111827] hover:text-[#111827] items-center gap-2 focus:shadow-none","2xl:mr-5",t),href:e,target:"_blank",rel:"noreferrer"},React.createElement(ps,{className:"w-4 h-4"}),React.createElement("span",{className:"underline text-inherit hover:text-inherit"},"How it works?")),fs=({type:e,icon:t,message:r,ctaLink:n,ctaText:a,rounded:i=0,onClose:o,className:s,isClose:l=!0,hasVideoIntro:c=!1,videoIntroURL:u})=>{const d={success:{text:"text-heading-text",icon:"text-[#0BC16A]",background:"bg-[#0BC16A]/[0.08]"},warning:{text:"text-heading-text",icon:"text-credit-warning",background:"bg-credit-warning/5"},error:{text:"text-heading-text",icon:"text-credit-danger",background:"bg-credit-danger/5"},info:{text:"text-heading-text",icon:"text-accent-spectra",background:"bg-background-tertiary"},notice:{text:"text-heading-text",icon:"text-credit-notice",background:"bg-[#E6FFFA]"}};return React.createElement("div",{className:(0,y.xW)("px-10 py-5 flex justify-between",d[e]?.background,{0:"rounded-none",4:"rounded",6:"rounded-md",8:"rounded-lg"}[i],s)},React.createElement("div",{className:"flex items-center gap-2 flex-grow max-2xl:items-start"},React.createElement("div",{className:(0,y.xW)("flex items-center",d[e]?.icon)},!!t&&t),React.createElement("div",{className:"flex-1 flex justify-start items-center gap-3"},React.createElement("div",{className:(0,y.xW)("text-sm m-0",d[e]?.text)},!!r&&r),React.createElement("div",{className:"text-sm m-0"},!!n&&React.createElement("a",{href:n,target:"_blank",className:"whitespace-nowrap font-normal !text-accent-spectra",rel:"noreferrer"},!!a&&a)),l&&React.createElement("button",{onClick:e=>{"function"==typeof o&&o(e)},className:"ml-auto bg-transparent border-0 focus:outline-none cursor-pointer p-2"},React.createElement(f,{className:"w-5 h-5 text-heading-text"})))),c&&u&&React.createElement(ms,{className:"flex max-2xl:hidden",videoIntroURL:u}))};function gs({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 3c2.755 0 5.455.232 8.083.678.533.09.917.556.917 1.096v1.044a2.25 2.25 0 0 1-.659 1.591l-5.432 5.432a2.25 2.25 0 0 0-.659 1.591v2.927a2.25 2.25 0 0 1-1.244 2.013L9.75 21v-6.568a2.25 2.25 0 0 0-.659-1.591L3.659 7.409A2.25 2.25 0 0 1 3 5.818V4.774c0-.54.384-1.006.917-1.096A48.32 48.32 0 0 1 12 3Z"}))}const hs=i.forwardRef(gs);function ys({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9 12.75 11.25 15 15 9.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z"}))}const bs=i.forwardRef(ys);var vs=o(6156);function ws(){return ws=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ws.apply(null,arguments)}const xs=e=>{const{className:t,wrapperClass:r,open:n,children:a,onClose:i,...o}=e;return React.createElement("div",ws({className:(0,y.xW)("absolute w-full h-full z-[99999] transition-transform bg-gray-500/50",n?"":"-translate-x-full",t)},o),React.createElement(ii.A,{onClick:()=>i(),className:"absolute right-4 top-4 bg-white rounded-full p-4 px-3",variant:"blank"},React.createElement(f,{className:"size-6"})),React.createElement("div",{className:(0,y.xW)("bg-white h-full shadow-xl w-3/4",r)},a))},_s=(0,e.A)((0,n.A)((e=>{const{setFilterBlocksBySearchTerm:t,setFilterBlocksByCategory:r,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i}=e(g.U);return{setFilterBlocksByCategory:r,setFilterBlocksBySearchTerm:t,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i}})),(0,a.A)((e=>{const{getAllPatterns:t,getAllCategories:r,getFilterBlocksByCategory:n,getFilterBlocksByColor:a,getDefaultBlockColorPalette:i,getActiveBlockPalette:o,getDynamicContent:s,getAIStepData:l,getFilterBlocksBySearchTerm:c,getDynamicContentSyncStatus:u,getDynamicContentSyncFlags:d,getAllPatternsCategories:p,getDynamicContentReSyncStatus:m,getRegeneratingContentCategory:f,getAdaptiveMode:h,getHideNotice:y,getSkipZipAIOnboarding:b,getDisableAi:v,getIsSyncBusinessDetails:w}=e(g.U);return{filterBlocksByCategory:n(),filterBlocksByColor:a(),allPatterns:t(),defaultPalette:i(),activePalette:o(),dynamicContent:s(),selectedImages:l().selectedImages,allCategories:r(),searchTerm:c(),syncStatus:u()?.patterns,syncFlags:d(),allPatternsCategories:p(),reSyncStatus:m(),regeneratingContentCategory:f(),adaptiveMode:h(),hideNotice:y(),skipZipAIOnboarding:b(),disableAi:v(),isSyncBusinessDetails:w()}})))((0,i.memo)((({filterBlocksByCategory:e,allPatterns:r,allPatternsCategories:n,defaultPalette:a,activePalette:o,dynamicContent:s,selectedImages:l,syncFlags:c,syncStatus:d,searchTerm:p,reSyncStatus:m,regeneratingContentCategory:f,adaptiveMode:h,hideNotice:b,setHideNotice:v,toggleOnboardingAIStep:w,disableAi:x,isSyncBusinessDetails:_})=>{const[E,k]=(0,i.useState)(!1),S=r,C="https://youtu.be/Zpkgw9USlEc",{stepsData:{businessContact:R,businessDetails:A,token:P},allPatternsAndPages:T,loadingBlocksAndSites:N}=(0,t.A)((e=>{const{getAIStepData:t,getAllPatternsAndPages:r,getLoadingBlocksAndSites:n}=e(g.U);return{stepsData:t(),allPatternsAndPages:r(),loadingBlocksAndSites:n()}})),{currentBalanceStatus:I,remaining:O}=oi(),L=n.slice(0,2).map((({name:e})=>e)).join(", "),B=(0,y._9)("ast-free-ai-content",!1),j={show:!!B&&I.warning&&I.danger||I.warning&&!b.creditWarning||I.danger&&!b.creditDanger||!1,variantAndType:!!B&&{variant:"success",type:"freeAiContent"}||I.warning&&{variant:"warning",type:"creditWarning"}||I.danger&&{variant:"error",type:"creditDanger"},message:!!B&&`Your ${L} content is ready to shine. Ready to personalize the your entire library?`||0===O&&"You're out of AI credits. Personalize the design library with content and images tailored to your website project"||(I.warning||I.danger)&&"You're almost out of AI credits. Personalize the design library with content and images tailored to your website project"};(0,i.useEffect)((()=>{Zo.A.on("reset-list-count",(()=>F(10)))}),[]);const[D,F]=(0,i.useState)(10),M=Object.keys(o).length>0?o.colors:a.colors,z=jo((()=>{if(H())return;const e=p&&!S.length?T.patterns:S;window.innerHeight+window.scrollY>=document.body.offsetHeight-500&&e.length>D&&F((e=>e+10))}),200),V=S.slice(0,D),W=e=>Math.floor(e/3)+1,U=()=>{if(""===e){const e=n.reduce(((e,t)=>(t.count,null)),0);return e>10?e:10}const t=n.find((t=>t.id===e)),r=t?.count?t.count:10;return t?.count>10?10:r},H=()=>!!N||!(!m||f!==e)||!(!m||""!==f)||!!d&&!(!d||(!Object.values(c.patterns).every((e=>!1===e))||""!==e)&&(""===e||!Object.keys(c.patterns).map(Number).includes(e)||c.patterns[e])),$=e=>()=>{(0,y.D6)("ast-free-ai-content"),v({[e]:!0}),"freeAiContent"!==e&&(0,Wo.yL)(e)},Z=V?.length||""===p?[]:T.patterns,G=(0,i.useMemo)((()=>(()=>{let e=1,t=0;return()=>{return e>3&&(e=1),t===U()-1&&(t=0),React.createElement(no,{key:t,type:(r=W(t++),n=e++,[1,2,3][(n-1+(r-1)%3)%3])});var r,n}})()),[]);return React.createElement("div",{className:"relative ast-block-templates-grid-blocks active h-full"},React.createElement(ii.A,{className:"absolute right-4 bottom-8 z-[9999] py-2 px-3.5 bg-accent-spectra shadow-xl sm:hidden",onClick:()=>k(!0)},React.createElement(hs,{className:"size-5 text-white"})),React.createElement(xs,{open:E,onClose:()=>k(!1),className:"sm:hidden",children:React.createElement(ns,{className:"block sm:hidden h-full !w-full",style:{maxWidth:"100%"}})}),React.createElement(ns,null),React.createElement("div",{onScroll:z,className:"ast-scrolling-container w-full md:ml-auto h-full overflow-auto md:max-w-[calc(100%_-_246px)]"},j.show&&P&&React.createElement(fs,{type:j.variantAndType.variant,message:j.message,icon:"success"===j.variantAndType.variant?React.createElement(bs,{className:"w-6 h-6"}):React.createElement(vs.A,{className:"w-6 h-6"}),ctaLink:ast_block_template_vars.get_more_credits_url,ctaText:(0,u.__)("Buy AI Credits","ast-block-templates"),onClose:$(j.variantAndType.type)}),!b.personalizeAi&&P&&(!A||A&&"yes"===_)&&!x&&!p&&!I.warning&&!I.danger&&React.createElement(fs,{className:"pl-6 py-4 !pr-0 mx-10 mt-9 md:max-lg:mx-5 hidden sm:block",rounded:8,type:"info",message:React.createElement("div",{className:"grid grid-cols-4 grid-rows-2 2xl:grid-rows-1 items-center justify-start gap-2 max-2xl:items-start"},React.createElement("span",{className:"col-span-12 2xl:col-span-4 "},(0,u.__)("Did you know, you can personalize this design library with content and images tailored to your website project?","ast-block-templates")),React.createElement("div",{className:"col-span-12 2xl:col-start-5 flex flex-col md:flex-row gap-5 items-baseline md:items-center"},React.createElement(ii.A,{id:"ast-block-template-setup-ai-btn",className:"min-w-fit",variant:"primary",isSmall:!0,onClick:()=>{$("personalizeAi")(),w(!0)}},"Personalize Library with AI"),C&&React.createElement(ms,{className:"flex 2xl:hidden",videoIntroURL:C}))),icon:React.createElement(Vo,{className:"w-6 h-6"}),onClose:$("personalizeAi"),isClose:!1,hasVideoIntro:!0,videoIntroURL:C}),React.createElement("div",{className:"h-full w-full p-10 md:max-lg:p-6"},!V.length&&""!==p&&React.createElement("div",{className:"pb-4"},React.createElement(So,{keyword:p}),React.createElement("h6",{className:"m-0 mt-10 text-heading-text text-xl font-semibold leading-7"},"Other suggested pattern designs")),React.createElement(us,{columns:{640:1,768:2,1024:3},gap:32,className:"ast-block-templates-grid",id:"ast-block-templates-grid-blocks"},(()=>{if(H()){const e=U();return Array(e>10?10:e).fill(1)}const e=Object.entries(c.patterns);return!m&&d&&e.some((([,e])=>!1===e))?V.filter((e=>!1!==c.patterns[e.category])):V.length||""===p?V:Z.slice(0,D)})()?.map(((e,t)=>((e,t)=>H()?G():React.createElement(io,{key:e.ID,index:t,item:e,content:e.content,stylesheet:e.stylesheet,astraCustomizer:h?ast_block_template_vars.astra_customizer_css:ast_block_template_vars.server_astra_customizer_css,globalStylesheet:e.global_stylesheet,colorPalette:M,dynamicContent:s[e.category]??[],selectedImages:l,email:R.email,phone:R.phone,address:R.address}))(e,t)))),React.createElement("div",{className:"h-10 w-full mb-10"}))))}))),{post:Es}=wp.ajax,{parse:ks}=wp.blocks,Ss=(e,t,r,n,a,i,o,s)=>{Es({action:"ast_block_templates_kit_importer",api_uri:e,id:s,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((e=>{!function(e,t,r,n,a,i,o){Es({action:"ast_block_templates_import_template_kit",content:e,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((e=>{n(ks(e),t,r),"function"==typeof i&&i(),a(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open");const o=(0,y.Fx)();(o.notInstalled||o.inactive)&&(0,Wo.mP)()})).fail((()=>{"function"==typeof o&&o()}))}(e,n,a,t,r,i,o)})).fail((e=>{h("fail",e),"function"==typeof o&&o()}))};var Cs=o(9431),Rs=o(9392),As=o(2944),Ps=o(5446),Ts=o(4715);const{post:Ns}=wp.ajax,Is=(0,i.memo)((({className:e,disabled:n})=>{const{insertBlocks:a}=wp.data.dispatch("core/block-editor"),{pagePreview:o}=(0,t.A)((e=>{const{getPagePreview:t}=e(g.U);return{pagePreview:t()}}),[]),{setTogglePopup:s,setImportInProgress:l}=(0,r.A)(g.U);let c=[];const[d,p]=(0,i.useState)(!1),[m,f]=(0,i.useState)(!1),h=(0,i.useRef)(null),b=o,v=o["required-plugins"]?o["required-plugins"].filter((e=>"wpforms-lite"===e.slug)):[],w=(0,y.Fx)(),{insertIndex:x,insertClientID:_}=wp.data.useSelect((e=>{const{index:t,rootClientId:r}=e("core/block-editor").getBlockInsertionPoint();return{insertIndex:t,insertClientID:r}}),[]),E=({title:e,message:t,type:r})=>{if(!h.current)return h.current=(0,Ps.oR)((0,Ts.A)({title:e,message:t}),Ts.A.getOptions({type:r}));Ps.oR.update(h.current,{...Ts.A.getOptions({type:r}),render:(0,Ts.A)({title:e,message:t})})},k=()=>{E({title:"Failed!",message:"Failed to insert template.",type:"error"})},S=async()=>{try{await(0,Cs.s)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){R(!1),k()}},C=()=>{(0,Cs.s)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}).then((()=>{A()})).catch((()=>{R(!1),k()}))},R=e=>{p(e),l(e)},A=()=>{const e=c["astra-site-wpforms-path"]||"",t=c["site-pages-required-plugins"]&&c["site-pages-required-plugins"].some((e=>"wpforms-lite"===e.slug));e&&t?P(e):Ss(b["astra-page-api-url"],a,s,x,_,(()=>{R(!1),E({title:"Template Inserted",message:"Template inserted successfully.",type:"success"})}),k,b?.ID)},P=()=>{Ns({action:"ast_block_templates_import_wpforms",id:b.ID,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((()=>{Ss(b["astra-page-api-url"],a,s,x,_)})).fail((()=>{R(!1),k()}))},T=async()=>{d||n||(p(!0),l(!0),E({title:"Inserting Template..",message:"Inserting selected template.",type:"importing-site"}),w.notInstalled?await(async()=>{try{await(0,Cs.o)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"}),await S()}catch(e){R(!1),k()}})():w.inactive&&await S(),(0,Rs.V)(b.ID,"site-pages").then((e=>{c=e,v.length?"not-installed"===ast_block_template_vars.wpforms_status?(0,Cs.o)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}).then((()=>{C()})).catch((()=>{R(!1),k()})):"inactive"===ast_block_template_vars.wpforms_status?C():A():A()})))};return React.createElement(React.Fragment,null,React.createElement(ii.A,{className:(0,y.xW)("lg:grow-[2] w-full lg:w-auto min-w-fit",e),variant:"primary",hasSuffixIcon:w.active,onClick:()=>{if(!n)return"yes"===o["dynamic-page"]?f(!0):void T()},disabled:n||d},w.notInstalled?(0,u.__)("Install Spectra & Insert","ast-block-templates"):w.inactive?(0,u.__)("Activate Spectra & Insert","ast-block-templates"):React.createElement(React.Fragment,null,React.createElement("span",{className:"hidden sm:inline"},"Insert Template"),React.createElement(As.A,{className:"sm:size-5 size-6"}))),React.createElement(Wi,{open:m,setOpen:f,title:"Heads Up!",description:(0,u.__)("This template includes dynamic content that won't carry over with the import. You'll need to manually add this dynamic data to the page.","ast-block-templates"),confirmBtnTitle:(0,u.__)("Skip & Import"),cancelBtnTitle:(0,u.__)("Cancel"),onClickConfirm:()=>{f(!1),T()},onClickCancel:()=>f(!1),variant:"info"}))}));o(1032);const Os=(0,e.A)((0,a.A)((e=>{const{getDisplayDynamicPopup:t,getPagePreview:r}=e(g.U);return{pagePreview:r(),displayDynamicPopup:t()}})),(0,n.A)((e=>{const{setDisplayDynamicPopup:t}=e("ast-block-templates");return{setDisplayDynamicPopup:t}})))((0,i.memo)((({pagePreview:e,displayDynamicPopup:t,setDisplayDynamicPopup:r})=>{const n=!1===t?"hide":"",a=()=>{r(!1)},o=e=>{e.target===document.querySelector(".ast-block-templates-popup-wrap")&&a()};return(0,i.useEffect)((()=>(document.addEventListener("click",o),()=>{document.removeEventListener("click",o)}))),React.createElement(i.Fragment,null,React.createElement("div",{className:`ast-block-templates-popup-wrap ${n}`},React.createElement("div",{className:"ast-block-templates-popup"},React.createElement("div",{className:"ast-block-templates-popup-header"},React.createElement("h3",{className:"ast-block-templates-popup-heading"},(0,u.__)("Heads Up!","ast-block-templates")),React.createElement("span",{className:"ast-block-templates-popup-close-icon",onClick:a,role:"button",tabIndex:0,onKeyDown:a},React.createElement("span",{className:"dashicons close dashicons-no-alt"}))),React.createElement("div",{className:"ast-block-templates-popup-content"},React.createElement("p",null,(0,u.__)("The page template you are about to import contains a dynamic widget/module. Please note this dynamic data will not be available with the imported page.","ast-block-templates")),React.createElement("p",null,(0,u.__)("You will need to add it manually on the page.","ast-block-templates"))),React.createElement("div",{className:"ast-block-templates-popup-footer"},React.createElement(Is,{title:(0,u.nv)((0,u.__)('Skip & Import "%s" Page',"ast-block-templates"),e.title),item:e}),React.createElement("div",{className:"button",onClick:a,role:"button",tabIndex:0,onKeyDown:a},(0,u.__)("Cancel","ast-block-templates"))))))}))),Ls=(0,e.A)((0,a.A)((e=>{const{getPagePreview:t,getImportInProgress:r}=e("ast-block-templates");return{pagePreview:t(),importInProgress:r()}})),(0,n.A)((e=>{const{setPagePreview:t,setFullWidthPagePreview:r,setCurrentScreen:n,setImportItemInfo:a}=e("ast-block-templates");return{setImportItemInfo:a,setPagePreview:t,updateFullWidthPagePreview(e){r(e),n("full-width-page-preview")}}})))((0,i.memo)((({item:e,pagePreview:t,setPagePreview:r,setImportItemInfo:n,importInProgress:a})=>{const i=e["thumbnail-image-url"]||`${ast_block_template_vars.uri}dist/placeholder.png`;return React.createElement("div",{className:(0,y.xW)("w-full content-start relative"),onClick:()=>{a||(n(e),r(e))}},React.createElement("div",{className:(0,y.xW)("relative cursor-pointer",a&&"cursor-not-allowed pointer-events-none")},React.createElement("div",{className:(0,y.xW)("bg-top bg-cover bg-no-repeat overflow-hidden bg-gray-300 block aspect-[6/7]"),style:{backgroundImage:`url('${i}')`}},React.createElement("div",{className:(0,y.xW)("absolute top-0 left-0 w-full h-full cursor-pointer opacity-0 invisible float-none transition-all duration-300 bg-black bg-opacity-50")},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"}))),React.createElement("div",{className:(0,y.xW)("absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end overflow-hidden border border-solid border-border-primary transition duration-150 ease-in-out",t.ID===e.ID?"border-accent-spectra shadow-large":"")},React.createElement("div",{className:(0,y.xW)("w-full flex items-center justify-between gap-3 py-2 pl-4 pr-3 bg-white/95 shadow-action-buttons backdrop-blur-[3px]")},React.createElement("div",null,React.createElement("p",{className:(0,y.xW)("title","m-0 text-base text-heading-text font-semibold leading-6")},(0,Wo.iZ)(e.title)))))))})));var Bs=o(4361);function js({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M2.036 12.322a1.012 1.012 0 0 1 0-.639C3.423 7.51 7.36 4.5 12 4.5c4.638 0 8.573 3.007 9.963 7.178.07.207.07.431 0 .639C20.577 16.49 16.64 19.5 12 19.5c-4.638 0-8.573-3.007-9.963-7.178Z"}),i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M15 12a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z"}))}const Ds=i.forwardRef(js);function Fs({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M13.5 4.5 21 12m0 0-7.5 7.5M21 12H3"}))}const Ms=i.forwardRef(Fs),zs=({className:e})=>React.createElement("span",{className:(0,y.xW)("py-1 px-2 text-xs leading-3 text-heading-text font-semibold rounded bg-premium-badge uppercase",e)},"Premium");var Vs=o(9260),Ws=e=>"checkbox"===e.type,Us=e=>e instanceof Date,Hs=e=>null==e;const $s=e=>"object"==typeof e;var Zs=e=>!Hs(e)&&!Array.isArray(e)&&$s(e)&&!Us(e),Gs=e=>Zs(e)&&e.target?Ws(e.target)?e.target.checked:e.target.value:e,qs=(e,t)=>e.has((e=>e.substring(0,e.search(/\.\d+(\.|$)/))||e)(t)),Ys=e=>{const t=e.constructor&&e.constructor.prototype;return Zs(t)&&t.hasOwnProperty("isPrototypeOf")},Ks="undefined"!=typeof window&&void 0!==window.HTMLElement&&"undefined"!=typeof document;function Xs(e){let t;const r=Array.isArray(e);if(e instanceof Date)t=new Date(e);else if(e instanceof Set)t=new Set(e);else{if(Ks&&(e instanceof Blob||e instanceof FileList)||!r&&!Zs(e))return e;if(t=r?[]:{},r||Ys(e))for(const r in e)e.hasOwnProperty(r)&&(t[r]=Xs(e[r]));else t=e}return t}var Js=e=>Array.isArray(e)?e.filter(Boolean):[],Qs=e=>void 0===e,el=(e,t,r)=>{if(!t||!Zs(e))return r;const n=Js(t.split(/[,[\].]+?/)).reduce(((e,t)=>Hs(e)?e:e[t]),e);return Qs(n)||n===e?Qs(e[t])?r:e[t]:n},tl=e=>"boolean"==typeof e,rl=e=>/^\w*$/.test(e),nl=e=>Js(e.replace(/["|']|\]/g,"").split(/\.|\[/)),al=(e,t,r)=>{let n=-1;const a=rl(t)?[t]:nl(t),i=a.length,o=i-1;for(;++n<i;){const t=a[n];let i=r;if(n!==o){const r=e[t];i=Zs(r)||Array.isArray(r)?r:isNaN(+a[n+1])?{}:[]}if("__proto__"===t)return;e[t]=i,e=e[t]}return e};const il={BLUR:"blur",FOCUS_OUT:"focusout",CHANGE:"change"},ol={onBlur:"onBlur",onChange:"onChange",onSubmit:"onSubmit",onTouched:"onTouched",all:"all"},sl="pattern",ll="required";i.createContext(null);var cl=e=>Zs(e)&&!Object.keys(e).length,ul=e=>Array.isArray(e)?e:[e];var dl=e=>"string"==typeof e,pl=(e,t,r,n,a)=>dl(e)?(n&&t.watch.add(e),el(r,e,a)):Array.isArray(e)?e.map((e=>(n&&t.watch.add(e),el(r,e)))):(n&&(t.watchAll=!0),r),ml=(e,t,r,n,a)=>t?{...r[e],types:{...r[e]&&r[e].types?r[e].types:{},[n]:a||!0}}:{},fl=e=>({isOnSubmit:!e||e===ol.onSubmit,isOnBlur:e===ol.onBlur,isOnChange:e===ol.onChange,isOnAll:e===ol.all,isOnTouch:e===ol.onTouched}),gl=(e,t,r)=>!r&&(t.watchAll||t.watch.has(e)||[...t.watch].some((t=>e.startsWith(t)&&/^\.\w+/.test(e.slice(t.length)))));const hl=(e,t,r,n)=>{for(const a of r||Object.keys(e)){const r=el(e,a);if(r){const{_f:e,...i}=r;if(e){if(e.refs&&e.refs[0]&&t(e.refs[0],a)&&!n)break;if(e.ref&&t(e.ref,e.name)&&!n)break;hl(i,t)}else Zs(i)&&hl(i,t)}}};var yl=(e,t,r)=>{const n=Js(el(e,r));return al(n,"root",t[r]),al(e,r,n),e},bl=e=>"file"===e.type,vl=e=>"function"==typeof e,wl=e=>{if(!Ks)return!1;const t=e?e.ownerDocument:0;return e instanceof(t&&t.defaultView?t.defaultView.HTMLElement:HTMLElement)},xl=e=>dl(e),_l=e=>"radio"===e.type,El=e=>e instanceof RegExp;const kl={value:!1,isValid:!1},Sl={value:!0,isValid:!0};var Cl=e=>{if(Array.isArray(e)){if(e.length>1){const t=e.filter((e=>e&&e.checked&&!e.disabled)).map((e=>e.value));return{value:t,isValid:!!t.length}}return e[0].checked&&!e[0].disabled?e[0].attributes&&!Qs(e[0].attributes.value)?Qs(e[0].value)||""===e[0].value?Sl:{value:e[0].value,isValid:!0}:Sl:kl}return kl};const Rl={isValid:!1,value:null};var Al=e=>Array.isArray(e)?e.reduce(((e,t)=>t&&t.checked&&!t.disabled?{isValid:!0,value:t.value}:e),Rl):Rl;function Pl(e,t,r="validate"){if(xl(e)||Array.isArray(e)&&e.every(xl)||tl(e)&&!e)return{type:r,message:xl(e)?e:"",ref:t}}var Tl=e=>Zs(e)&&!El(e)?e:{value:e,message:""},Nl=async(e,t,r,n,a)=>{const{ref:i,refs:o,required:s,maxLength:l,minLength:c,min:u,max:d,pattern:p,validate:m,name:f,valueAsNumber:g,mount:h,disabled:y}=e._f,b=el(t,f);if(!h||y)return{};const v=o?o[0]:i,w=e=>{n&&v.reportValidity&&(v.setCustomValidity(tl(e)?"":e||""),v.reportValidity())},x={},_=_l(i),E=Ws(i),k=_||E,S=(g||bl(i))&&Qs(i.value)&&Qs(b)||wl(i)&&""===i.value||""===b||Array.isArray(b)&&!b.length,C=ml.bind(null,f,r,x),R=(e,t,r,n="maxLength",a="minLength")=>{const o=e?t:r;x[f]={type:e?n:a,message:o,ref:i,...C(e?n:a,o)}};if(a?!Array.isArray(b)||!b.length:s&&(!k&&(S||Hs(b))||tl(b)&&!b||E&&!Cl(o).isValid||_&&!Al(o).isValid)){const{value:e,message:t}=xl(s)?{value:!!s,message:s}:Tl(s);if(e&&(x[f]={type:ll,message:t,ref:v,...C(ll,t)},!r))return w(t),x}if(!(S||Hs(u)&&Hs(d))){let e,t;const n=Tl(d),a=Tl(u);if(Hs(b)||isNaN(b)){const r=i.valueAsDate||new Date(b),o=e=>new Date((new Date).toDateString()+" "+e),s="time"==i.type,l="week"==i.type;dl(n.value)&&b&&(e=s?o(b)>o(n.value):l?b>n.value:r>new Date(n.value)),dl(a.value)&&b&&(t=s?o(b)<o(a.value):l?b<a.value:r<new Date(a.value))}else{const r=i.valueAsNumber||(b?+b:b);Hs(n.value)||(e=r>n.value),Hs(a.value)||(t=r<a.value)}if((e||t)&&(R(!!e,n.message,a.message,"max","min"),!r))return w(x[f].message),x}if((l||c)&&!S&&(dl(b)||a&&Array.isArray(b))){const e=Tl(l),t=Tl(c),n=!Hs(e.value)&&b.length>+e.value,a=!Hs(t.value)&&b.length<+t.value;if((n||a)&&(R(n,e.message,t.message),!r))return w(x[f].message),x}if(p&&!S&&dl(b)){const{value:e,message:t}=Tl(p);if(El(e)&&!b.match(e)&&(x[f]={type:sl,message:t,ref:i,...C(sl,t)},!r))return w(t),x}if(m)if(vl(m)){const e=Pl(await m(b,t),v);if(e&&(x[f]={...e,...C("validate",e.message)},!r))return w(e.message),x}else if(Zs(m)){let e={};for(const n in m){if(!cl(e)&&!r)break;const a=Pl(await m[n](b,t),v,n);a&&(e={...a,...C(n,a.message)},w(a.message),r&&(x[f]=e))}if(!cl(e)&&(x[f]={ref:v,...e},!r))return x}return w(!0),x};function Il(e,t){const r=Array.isArray(t)?t:rl(t)?[t]:nl(t),n=1===r.length?e:function(e,t){const r=t.slice(0,-1).length;let n=0;for(;n<r;)e=Qs(e)?n++:e[t[n++]];return e}(e,r),a=r.length-1,i=r[a];return n&&delete n[i],0!==a&&(Zs(n)&&cl(n)||Array.isArray(n)&&function(e){for(const t in e)if(e.hasOwnProperty(t)&&!Qs(e[t]))return!1;return!0}(n))&&Il(e,r.slice(0,-1)),e}var Ol=()=>{let e=[];return{get observers(){return e},next:t=>{for(const r of e)r.next&&r.next(t)},subscribe:t=>(e.push(t),{unsubscribe:()=>{e=e.filter((e=>e!==t))}}),unsubscribe:()=>{e=[]}}},Ll=e=>Hs(e)||!$s(e);function Bl(e,t){if(Ll(e)||Ll(t))return e===t;if(Us(e)&&Us(t))return e.getTime()===t.getTime();const r=Object.keys(e),n=Object.keys(t);if(r.length!==n.length)return!1;for(const a of r){const r=e[a];if(!n.includes(a))return!1;if("ref"!==a){const e=t[a];if(Us(r)&&Us(e)||Zs(r)&&Zs(e)||Array.isArray(r)&&Array.isArray(e)?!Bl(r,e):r!==e)return!1}}return!0}var jl=e=>"select-multiple"===e.type,Dl=e=>_l(e)||Ws(e),Fl=e=>wl(e)&&e.isConnected,Ml=e=>{for(const t in e)if(vl(e[t]))return!0;return!1};function zl(e,t={}){const r=Array.isArray(e);if(Zs(e)||r)for(const r in e)Array.isArray(e[r])||Zs(e[r])&&!Ml(e[r])?(t[r]=Array.isArray(e[r])?[]:{},zl(e[r],t[r])):Hs(e[r])||(t[r]=!0);return t}function Vl(e,t,r){const n=Array.isArray(e);if(Zs(e)||n)for(const n in e)Array.isArray(e[n])||Zs(e[n])&&!Ml(e[n])?Qs(t)||Ll(r[n])?r[n]=Array.isArray(e[n])?zl(e[n],[]):{...zl(e[n])}:Vl(e[n],Hs(t)?{}:t[n],r[n]):r[n]=!Bl(e[n],t[n]);return r}var Wl=(e,t)=>Vl(e,t,zl(t)),Ul=(e,{valueAsNumber:t,valueAsDate:r,setValueAs:n})=>Qs(e)?e:t?""===e?NaN:e?+e:e:r&&dl(e)?new Date(e):n?n(e):e;function Hl(e){const t=e.ref;if(!(e.refs?e.refs.every((e=>e.disabled)):t.disabled))return bl(t)?t.files:_l(t)?Al(e.refs).value:jl(t)?[...t.selectedOptions].map((({value:e})=>e)):Ws(t)?Cl(e.refs).value:Ul(Qs(t.value)?e.ref.value:t.value,e)}var $l=(e,t,r,n)=>{const a={};for(const r of e){const e=el(t,r);e&&al(a,r,e._f)}return{criteriaMode:r,names:[...e],fields:a,shouldUseNativeValidation:n}},Zl=e=>Qs(e)?e:El(e)?e.source:Zs(e)?El(e.value)?e.value.source:e.value:e,Gl=e=>e.mount&&(e.required||e.min||e.max||e.maxLength||e.minLength||e.pattern||e.validate);function ql(e,t,r){const n=el(e,r);if(n||rl(r))return{error:n,name:r};const a=r.split(".");for(;a.length;){const n=a.join("."),i=el(t,n),o=el(e,n);if(i&&!Array.isArray(i)&&r!==n)return{name:r};if(o&&o.type)return{name:n,error:o};a.pop()}return{name:r}}var Yl=(e,t,r,n,a)=>!a.isOnAll&&(!r&&a.isOnTouch?!(t||e):(r?n.isOnBlur:a.isOnBlur)?!e:!(r?n.isOnChange:a.isOnChange)||e),Kl=(e,t)=>!Js(el(e,t)).length&&Il(e,t);const Xl={mode:ol.onSubmit,reValidateMode:ol.onChange,shouldFocusError:!0};function Jl(e={}){let t,r={...Xl,...e},n={submitCount:0,isDirty:!1,isLoading:vl(r.defaultValues),isValidating:!1,isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,touchedFields:{},dirtyFields:{},validatingFields:{},errors:r.errors||{},disabled:r.disabled||!1},a={},i=(Zs(r.defaultValues)||Zs(r.values))&&Xs(r.defaultValues||r.values)||{},o=r.shouldUnregister?{}:Xs(i),s={action:!1,mount:!1,watch:!1},l={mount:new Set,unMount:new Set,array:new Set,watch:new Set},c=0;const u={isDirty:!1,dirtyFields:!1,validatingFields:!1,touchedFields:!1,isValidating:!1,isValid:!1,errors:!1},d={values:Ol(),array:Ol(),state:Ol()},p=fl(r.mode),m=fl(r.reValidateMode),f=r.criteriaMode===ol.all,g=async e=>{if(u.isValid||e){const e=r.resolver?cl((await v()).errors):await w(a,!0);e!==n.isValid&&d.state.next({isValid:e})}},h=(e,t)=>{(u.isValidating||u.validatingFields)&&((e||Array.from(l.mount)).forEach((e=>{e&&(t?al(n.validatingFields,e,t):Il(n.validatingFields,e))})),d.state.next({validatingFields:n.validatingFields,isValidating:!cl(n.validatingFields)}))},y=(e,t,r,n)=>{const l=el(a,e);if(l){const a=el(o,e,Qs(r)?el(i,e):r);Qs(a)||n&&n.defaultChecked||t?al(o,e,t?a:Hl(l._f)):E(e,a),s.mount&&g()}},b=(e,t,r,o,s)=>{let l=!1,c=!1;const p={name:e},m=!!(el(a,e)&&el(a,e)._f&&el(a,e)._f.disabled);if(!r||o){u.isDirty&&(c=n.isDirty,n.isDirty=p.isDirty=x(),l=c!==p.isDirty);const r=m||Bl(el(i,e),t);c=!(m||!el(n.dirtyFields,e)),r||m?Il(n.dirtyFields,e):al(n.dirtyFields,e,!0),p.dirtyFields=n.dirtyFields,l=l||u.dirtyFields&&c!==!r}if(r){const t=el(n.touchedFields,e);t||(al(n.touchedFields,e,r),p.touchedFields=n.touchedFields,l=l||u.touchedFields&&t!==r)}return l&&s&&d.state.next(p),l?p:{}},v=async e=>{h(e,!0);const t=await r.resolver(o,r.context,$l(e||l.mount,a,r.criteriaMode,r.shouldUseNativeValidation));return h(e),t},w=async(e,t,a={valid:!0})=>{for(const i in e){const s=e[i];if(s){const{_f:e,...c}=s;if(e){const c=l.array.has(e.name);h([i],!0);const u=await Nl(s,o,f,r.shouldUseNativeValidation&&!t,c);if(h([i]),u[e.name]&&(a.valid=!1,t))break;!t&&(el(u,e.name)?c?yl(n.errors,u,e.name):al(n.errors,e.name,u[e.name]):Il(n.errors,e.name))}c&&await w(c,t,a)}}return a.valid},x=(e,t)=>(e&&t&&al(o,e,t),!Bl(P(),i)),_=(e,t,r)=>pl(e,l,{...s.mount?o:Qs(t)?i:dl(e)?{[e]:t}:t},r,t),E=(e,t,r={})=>{const n=el(a,e);let i=t;if(n){const r=n._f;r&&(!r.disabled&&al(o,e,Ul(t,r)),i=wl(r.ref)&&Hs(t)?"":t,jl(r.ref)?[...r.ref.options].forEach((e=>e.selected=i.includes(e.value))):r.refs?Ws(r.ref)?r.refs.length>1?r.refs.forEach((e=>(!e.defaultChecked||!e.disabled)&&(e.checked=Array.isArray(i)?!!i.find((t=>t===e.value)):i===e.value))):r.refs[0]&&(r.refs[0].checked=!!i):r.refs.forEach((e=>e.checked=e.value===i)):bl(r.ref)?r.ref.value="":(r.ref.value=i,r.ref.type||d.values.next({name:e,values:{...o}})))}(r.shouldDirty||r.shouldTouch)&&b(e,i,r.shouldTouch,r.shouldDirty,!0),r.shouldValidate&&A(e)},k=(e,t,r)=>{for(const n in t){const i=t[n],o=`${e}.${n}`,s=el(a,o);!l.array.has(e)&&Ll(i)&&(!s||s._f)||Us(i)?E(o,i,r):k(o,i,r)}},S=(e,t,r={})=>{const c=el(a,e),p=l.array.has(e),m=Xs(t);al(o,e,m),p?(d.array.next({name:e,values:{...o}}),(u.isDirty||u.dirtyFields)&&r.shouldDirty&&d.state.next({name:e,dirtyFields:Wl(i,o),isDirty:x(e,m)})):!c||c._f||Hs(m)?E(e,m,r):k(e,m,r),gl(e,l)&&d.state.next({...n}),d.values.next({name:s.mount?e:void 0,values:{...o}})},C=async i=>{s.mount=!0;const y=i.target;let x=y.name,_=!0;const E=el(a,x),k=e=>{_=Number.isNaN(e)||e===el(o,x,e)};if(E){let s,S;const C=y.type?Hl(E._f):Gs(i),R=i.type===il.BLUR||i.type===il.FOCUS_OUT,P=!Gl(E._f)&&!r.resolver&&!el(n.errors,x)&&!E._f.deps||Yl(R,el(n.touchedFields,x),n.isSubmitted,m,p),T=gl(x,l,R);al(o,x,C),R?(E._f.onBlur&&E._f.onBlur(i),t&&t(0)):E._f.onChange&&E._f.onChange(i);const N=b(x,C,R,!1),I=!cl(N)||T;if(!R&&d.values.next({name:x,type:i.type,values:{...o}}),P)return u.isValid&&g(),I&&d.state.next({name:x,...T?{}:N});if(!R&&T&&d.state.next({...n}),r.resolver){const{errors:e}=await v([x]);if(k(C),_){const t=ql(n.errors,a,x),r=ql(e,a,t.name||x);s=r.error,x=r.name,S=cl(e)}}else h([x],!0),s=(await Nl(E,o,f,r.shouldUseNativeValidation))[x],h([x]),k(C),_&&(s?S=!1:u.isValid&&(S=await w(a,!0)));_&&(E._f.deps&&A(E._f.deps),((r,a,i,o)=>{const s=el(n.errors,r),l=u.isValid&&tl(a)&&n.isValid!==a;var p;if(e.delayError&&i?(p=()=>((e,t)=>{al(n.errors,e,t),d.state.next({errors:n.errors})})(r,i),t=e=>{clearTimeout(c),c=setTimeout(p,e)},t(e.delayError)):(clearTimeout(c),t=null,i?al(n.errors,r,i):Il(n.errors,r)),(i?!Bl(s,i):s)||!cl(o)||l){const e={...o,...l&&tl(a)?{isValid:a}:{},errors:n.errors,name:r};n={...n,...e},d.state.next(e)}})(x,S,s,N))}},R=(e,t)=>{if(el(n.errors,t)&&e.focus)return e.focus(),1},A=async(e,t={})=>{let i,o;const s=ul(e);if(r.resolver){const t=await(async e=>{const{errors:t}=await v(e);if(e)for(const r of e){const e=el(t,r);e?al(n.errors,r,e):Il(n.errors,r)}else n.errors=t;return t})(Qs(e)?e:s);i=cl(t),o=e?!s.some((e=>el(t,e))):i}else e?(o=(await Promise.all(s.map((async e=>{const t=el(a,e);return await w(t&&t._f?{[e]:t}:t)})))).every(Boolean),(o||n.isValid)&&g()):o=i=await w(a);return d.state.next({...!dl(e)||u.isValid&&i!==n.isValid?{}:{name:e},...r.resolver||!e?{isValid:i}:{},errors:n.errors}),t.shouldFocus&&!o&&hl(a,R,e?s:l.mount),o},P=e=>{const t={...s.mount?o:i};return Qs(e)?t:dl(e)?el(t,e):e.map((e=>el(t,e)))},T=(e,t)=>({invalid:!!el((t||n).errors,e),isDirty:!!el((t||n).dirtyFields,e),error:el((t||n).errors,e),isValidating:!!el(n.validatingFields,e),isTouched:!!el((t||n).touchedFields,e)}),N=(e,t,r)=>{const i=(el(a,e,{_f:{}})._f||{}).ref,o=el(n.errors,e)||{},{ref:s,message:l,type:c,...u}=o;al(n.errors,e,{...u,...t,ref:i}),d.state.next({name:e,errors:n.errors,isValid:!1}),r&&r.shouldFocus&&i&&i.focus&&i.focus()},I=(e,t={})=>{for(const s of e?ul(e):l.mount)l.mount.delete(s),l.array.delete(s),t.keepValue||(Il(a,s),Il(o,s)),!t.keepError&&Il(n.errors,s),!t.keepDirty&&Il(n.dirtyFields,s),!t.keepTouched&&Il(n.touchedFields,s),!t.keepIsValidating&&Il(n.validatingFields,s),!r.shouldUnregister&&!t.keepDefaultValue&&Il(i,s);d.values.next({values:{...o}}),d.state.next({...n,...t.keepDirty?{isDirty:x()}:{}}),!t.keepIsValid&&g()},O=({disabled:e,name:t,field:r,fields:n,value:a})=>{if(tl(e)&&s.mount||e){const i=e?void 0:Qs(a)?Hl(r?r._f:el(n,t)._f):a;al(o,t,i),b(t,i,!1,!1,!0)}},L=(e,t={})=>{let n=el(a,e);const o=tl(t.disabled);return al(a,e,{...n||{},_f:{...n&&n._f?n._f:{ref:{name:e}},name:e,mount:!0,...t}}),l.mount.add(e),n?O({field:n,disabled:t.disabled,name:e,value:t.value}):y(e,!0,t.value),{...o?{disabled:t.disabled}:{},...r.progressive?{required:!!t.required,min:Zl(t.min),max:Zl(t.max),minLength:Zl(t.minLength),maxLength:Zl(t.maxLength),pattern:Zl(t.pattern)}:{},name:e,onChange:C,onBlur:C,ref:o=>{if(o){L(e,t),n=el(a,e);const r=Qs(o.value)&&o.querySelectorAll&&o.querySelectorAll("input,select,textarea")[0]||o,s=Dl(r),l=n._f.refs||[];if(s?l.find((e=>e===r)):r===n._f.ref)return;al(a,e,{_f:{...n._f,...s?{refs:[...l.filter(Fl),r,...Array.isArray(el(i,e))?[{}]:[]],ref:{type:r.type,name:e}}:{ref:r}}}),y(e,!1,void 0,r)}else n=el(a,e,{}),n._f&&(n._f.mount=!1),(r.shouldUnregister||t.shouldUnregister)&&(!qs(l.array,e)||!s.action)&&l.unMount.add(e)}}},B=()=>r.shouldFocusError&&hl(a,R,l.mount),j=(e,t)=>async i=>{let s;i&&(i.preventDefault&&i.preventDefault(),i.persist&&i.persist());let l=Xs(o);if(d.state.next({isSubmitting:!0}),r.resolver){const{errors:e,values:t}=await v();n.errors=e,l=t}else await w(a);if(Il(n.errors,"root"),cl(n.errors)){d.state.next({errors:{}});try{await e(l,i)}catch(e){s=e}}else t&&await t({...n.errors},i),B(),setTimeout(B);if(d.state.next({isSubmitted:!0,isSubmitting:!1,isSubmitSuccessful:cl(n.errors)&&!s,submitCount:n.submitCount+1,errors:n.errors}),s)throw s},D=(t,r={})=>{const c=t?Xs(t):i,p=Xs(c),m=cl(t),f=m?i:p;if(r.keepDefaultValues||(i=c),!r.keepValues){if(r.keepDirtyValues)for(const e of l.mount)el(n.dirtyFields,e)?al(f,e,el(o,e)):S(e,el(f,e));else{if(Ks&&Qs(t))for(const e of l.mount){const t=el(a,e);if(t&&t._f){const e=Array.isArray(t._f.refs)?t._f.refs[0]:t._f.ref;if(wl(e)){const t=e.closest("form");if(t){t.reset();break}}}}a={}}o=e.shouldUnregister?r.keepDefaultValues?Xs(i):{}:Xs(f),d.array.next({values:{...f}}),d.values.next({values:{...f}})}l={mount:r.keepDirtyValues?l.mount:new Set,unMount:new Set,array:new Set,watch:new Set,watchAll:!1,focus:""},s.mount=!u.isValid||!!r.keepIsValid||!!r.keepDirtyValues,s.watch=!!e.shouldUnregister,d.state.next({submitCount:r.keepSubmitCount?n.submitCount:0,isDirty:!m&&(r.keepDirty?n.isDirty:!(!r.keepDefaultValues||Bl(t,i))),isSubmitted:!!r.keepIsSubmitted&&n.isSubmitted,dirtyFields:m?[]:r.keepDirtyValues?r.keepDefaultValues&&o?Wl(i,o):n.dirtyFields:r.keepDefaultValues&&t?Wl(i,t):r.keepDirty?n.dirtyFields:{},touchedFields:r.keepTouched?n.touchedFields:{},errors:r.keepErrors?n.errors:{},isSubmitSuccessful:!!r.keepIsSubmitSuccessful&&n.isSubmitSuccessful,isSubmitting:!1})},F=(e,t)=>D(vl(e)?e(o):e,t);return{control:{register:L,unregister:I,getFieldState:T,handleSubmit:j,setError:N,_executeSchema:v,_getWatch:_,_getDirty:x,_updateValid:g,_removeUnmounted:()=>{for(const e of l.unMount){const t=el(a,e);t&&(t._f.refs?t._f.refs.every((e=>!Fl(e))):!Fl(t._f.ref))&&I(e)}l.unMount=new Set},_updateFieldArray:(e,t=[],r,l,c=!0,p=!0)=>{if(l&&r){if(s.action=!0,p&&Array.isArray(el(a,e))){const t=r(el(a,e),l.argA,l.argB);c&&al(a,e,t)}if(p&&Array.isArray(el(n.errors,e))){const t=r(el(n.errors,e),l.argA,l.argB);c&&al(n.errors,e,t),Kl(n.errors,e)}if(u.touchedFields&&p&&Array.isArray(el(n.touchedFields,e))){const t=r(el(n.touchedFields,e),l.argA,l.argB);c&&al(n.touchedFields,e,t)}u.dirtyFields&&(n.dirtyFields=Wl(i,o)),d.state.next({name:e,isDirty:x(e,t),dirtyFields:n.dirtyFields,errors:n.errors,isValid:n.isValid})}else al(o,e,t)},_updateDisabledField:O,_getFieldArray:t=>Js(el(s.mount?o:i,t,e.shouldUnregister?el(i,t,[]):[])),_reset:D,_resetDefaultValues:()=>vl(r.defaultValues)&&r.defaultValues().then((e=>{F(e,r.resetOptions),d.state.next({isLoading:!1})})),_updateFormState:e=>{n={...n,...e}},_disableForm:e=>{tl(e)&&(d.state.next({disabled:e}),hl(a,((t,r)=>{const n=el(a,r);n&&(t.disabled=n._f.disabled||e,Array.isArray(n._f.refs)&&n._f.refs.forEach((t=>{t.disabled=n._f.disabled||e})))}),0,!1))},_subjects:d,_proxyFormState:u,_setErrors:e=>{n.errors=e,d.state.next({errors:n.errors,isValid:!1})},get _fields(){return a},get _formValues(){return o},get _state(){return s},set _state(e){s=e},get _defaultValues(){return i},get _names(){return l},set _names(e){l=e},get _formState(){return n},set _formState(e){n=e},get _options(){return r},set _options(e){r={...r,...e}}},trigger:A,register:L,handleSubmit:j,watch:(e,t)=>vl(e)?d.values.subscribe({next:r=>e(_(void 0,t),r)}):_(e,t,!0),setValue:S,getValues:P,reset:F,resetField:(e,t={})=>{el(a,e)&&(Qs(t.defaultValue)?S(e,Xs(el(i,e))):(S(e,t.defaultValue),al(i,e,Xs(t.defaultValue))),t.keepTouched||Il(n.touchedFields,e),t.keepDirty||(Il(n.dirtyFields,e),n.isDirty=t.defaultValue?x(e,Xs(el(i,e))):x()),t.keepError||(Il(n.errors,e),u.isValid&&g()),d.state.next({...n}))},clearErrors:e=>{e&&ul(e).forEach((e=>Il(n.errors,e))),d.state.next({errors:e?n.errors:{}})},unregister:I,setError:N,setFocus:(e,t={})=>{const r=el(a,e),n=r&&r._f;if(n){const e=n.refs?n.refs[0]:n.ref;e.focus&&(e.focus(),t.shouldSelect&&e.select())}},getFieldState:T}}function Ql(e={}){const t=i.useRef(),r=i.useRef(),[n,a]=i.useState({isDirty:!1,isValidating:!1,isLoading:vl(e.defaultValues),isSubmitted:!1,isSubmitting:!1,isSubmitSuccessful:!1,isValid:!1,submitCount:0,dirtyFields:{},touchedFields:{},validatingFields:{},errors:e.errors||{},disabled:e.disabled||!1,defaultValues:vl(e.defaultValues)?void 0:e.defaultValues});t.current||(t.current={...Jl(e),formState:n});const o=t.current.control;return o._options=e,function(e){const t=i.useRef(e);t.current=e,i.useEffect((()=>{const r=!e.disabled&&t.current.subject&&t.current.subject.subscribe({next:t.current.next});return()=>{r&&r.unsubscribe()}}),[e.disabled])}({subject:o._subjects.state,next:e=>{((e,t,r,n)=>{r(e);const{name:a,...i}=e;return cl(i)||Object.keys(i).length>=Object.keys(t).length||Object.keys(i).find((e=>t[e]===(!n||ol.all)))})(e,o._proxyFormState,o._updateFormState,!0)&&a({...o._formState})}}),i.useEffect((()=>o._disableForm(e.disabled)),[o,e.disabled]),i.useEffect((()=>{if(o._proxyFormState.isDirty){const e=o._getDirty();e!==n.isDirty&&o._subjects.state.next({isDirty:e})}}),[o,n.isDirty]),i.useEffect((()=>{e.values&&!Bl(e.values,r.current)?(o._reset(e.values,o._options.resetOptions),r.current=e.values,a((e=>({...e})))):o._resetDefaultValues()}),[e.values,o]),i.useEffect((()=>{e.errors&&o._setErrors(e.errors)}),[e.errors,o]),i.useEffect((()=>{o._state.mount||(o._updateValid(),o._state.mount=!0),o._state.watch&&(o._state.watch=!1,o._subjects.state.next({...o._formState})),o._removeUnmounted()})),i.useEffect((()=>{e.shouldUnregister&&o._subjects.values.next({values:o._getWatch()})}),[e.shouldUnregister,o]),t.current.formState=((e,t,r,n=!0)=>{const a={defaultValues:t._defaultValues};for(const i in e)Object.defineProperty(a,i,{get:()=>{const a=i;return t._proxyFormState[a]!==ol.all&&(t._proxyFormState[a]=!n||ol.all),r&&(r[a]=!0),e[a]}});return a})(n,o),t.current}const ec="loading",tc=()=>{const{licenseStatus:e}=(0,t.A)((e=>{const{getLicenseStatus:t}=e(g.U);return{licenseStatus:t()}}),[]),{updateLicenseStatus:n}=(0,r.A)(g.U),[a,o]=(0,i.useState)("");return{licenseStatus:e,getAstraSitesProStatus:y.Lv,handleActivateLicense:async e=>{if(a!==ec){o(ec);try{const t=await(0,y.nr)({path:"/wp-json/bsf-core/v1/license/activate",data:{"license-key":e,"product-id":"astra-pro-sites"},method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}});if(t.success)return o("success"),(0,Ps.oR)((0,Ts.A)({title:"Successfully activated!",message:"Your license key has been activated successfully."}),Ts.A.getOptions({type:"success"})),n("active"),t;throw t}catch(e){return o("error"),(0,Ps.oR)((0,Ts.A)({title:"Failed to activate!",message:e?.message??"Your license key could not be activated."}),Ts.A.getOptions({type:"error"})),console.error(e),e}}},loadingStatus:a}},rc=()=>{const{loadingStatus:e,licenseStatus:t,getAstraSitesProStatus:r,handleActivateLicense:n}=tc(),a=r(),{register:o,handleSubmit:s,formState:{errors:l},setFocus:c}=Ql({defaultValues:{licenseKey:""}}),d=()=>a.notInstalled||a.inactive?"free":"premium";return(0,i.useEffect)((()=>{c("licenseKey")}),[]),"active"!==t&&React.createElement("div",{className:"spectra-ai p-4 space-y-4 rounded bg-background-tertiary"},React.createElement("div",{className:"space-y-2"},React.createElement("div",{className:"flex items-center justify-start gap-2"},React.createElement(ei.DE,null),React.createElement("p",{className:"m-0 text-base font-semibold text-heading-text"},"Premium Template")),React.createElement("p",{className:"m-0 text-sm font-normal text-body-text"},"free"===d()?(0,u.__)("Access this template and all others with Essentials & Business Toolkit package starting at just $79.","ast-block-templates"):(0,u.__)("Please Enter your Licence Key","ast-block-templates"))),"premium"===d()&&React.createElement("form",{className:"m-0 p-0",onSubmit:s((async({licenseKey:e})=>{await n(e)}))},React.createElement(Qo,{className:"w-full",inputClassName:"!pr-11",type:"text",id:"licenseKey",name:"licenseKey",placeholder:(0,u.__)("License key","ast-block-templates"),register:o,error:l.licenseKey,validations:{required:{value:!0,message:"License key is required"}},suffixIcon:React.createElement("button",{type:"submit",className:"border-0 bg-transparent focus:outline-none inline-flex items-center justify-center cursor-pointer p-3"},"loading"===e?React.createElement(p,{className:"w-5 h-5 text-icon-secondary animate-spin"}):React.createElement(Xi,{className:"w-5 h-5 text-icon-secondary"})),suffixIconClassName:"absolute right-4 flex items-center right-0"})),"premium"===d()&&React.createElement("div",{className:"m-0"},React.createElement("p",{className:"m-0 text-sm font-normal text-body-text"},React.createElement("span",{className:"font-semibold text-heading-text"},"Need help?")," ","Get in touch with our"," ",React.createElement("a",{href:"https://wpastra.com/contact",target:"_blank",className:"text-accent-spectra",rel:"noreferrer"},"support team"),".")))},nc=(0,e.A)((0,a.A)((e=>{const{getPagePreview:t,getSitePreview:r}=e("ast-block-templates");return{sitePreview:r(),pagePreview:t()}})))((0,i.memo)((function({sitePreview:e,pagePreview:n}){const{setCurrentScreen:a}=(0,r.A)(g.U),{licenseStatus:o,getAstraSitesProStatus:s}=tc(),l=s(),{importInProgress:c,previousScreen:d}=(0,t.A)((e=>{const{getImportInProgress:t,getPreviousScreen:r}=e(g.U);return{importInProgress:t(),previousScreen:r()}}),[]);if(!Object.keys(e).length)return"";e?.type||(e.type="site");const p=Object.values(e.pages)||[],m=n["featured-image-url"]||`${ast_block_template_vars.uri}dist/placeholder.png`,f="free"===e["astra-sites-type"],h=!f&&"active"!==o,b=!f&&"active"!==o&&!l.active;return React.createElement(i.Fragment,null,React.createElement(Os,null),React.createElement("div",{className:(0,y.xW)("flex h-full pt-6 px-10 mx-auto gap-10")},React.createElement("div",{className:(0,y.xW)("flex-1 h-full")},React.createElement("div",{className:"h-full flex flex-col items-stretch justify-stretch space-y-6"},React.createElement("div",{className:"flex flex-col sm:flex-row items-start justify-start gap-2 sm:gap-5"},React.createElement(ii.A,{className:(0,y.xW)("inline-flex pl-1 py-1 pr-2 h-7 gap-1 border-border-primary text-body-text",c&&"disable-click-action"),variant:"white",hasPrefixIcon:!0,isSmall:!0,onClick:()=>{a("all-favorites"===d?"all-favorites":"all-sites-grid")}},React.createElement(Yi,{className:"w-4 h-4"}),React.createElement("span",null,"Back")),React.createElement("div",{className:"space-x-3"},React.createElement("p",{className:"m-0 text-xl font-semibold inline-block"},e?.title),"free"!==e["astra-sites-type"]&&React.createElement(zs,{className:"align-text-top"}))),React.createElement("div",{className:(0,y.xW)("flex-1 w-full overflow-y-auto h-screen bg-gray-300 block ast-thin-scrollbar !mb-6")},React.createElement("img",{className:"w-full",src:m,alt:"screenshot",onLoad:e=>{e.target.parentElement.classList.remove("bg-gray-300")}})))),React.createElement("div",{className:(0,y.xW)("flex flex-col w-2/5 lg:w-[35%] h-full")},React.createElement("div",{className:"flex items-center justify-between gap-2 mb-6"},React.createElement("p",{className:"m-0 hidden sm:block text-xl font-semibold"},(0,u.nv)("%s (%s)",(0,u._n)("Page","Pages",p.length,"ast-block-templates"),p.length)),React.createElement(Vs.A,{item:e},(({isFavorite:e,onClickFavorite:t})=>React.createElement("button",{className:"min-w-fit inline-flex items-center justify-start gap-2 border-0 focus:outline-none bg-transparent cursor-pointer text-nav-active group/favorites",onClick:t},React.createElement(Bs.A,{className:(0,y.xW)("size-6 sm:size-5 transition-colors ease-out duration-150",e?"fill-favorite text-favorite":"group-hover/favorites:fill-favorite group-hover/favorites:text-favorite")}),React.createElement("span",{className:"text-base font-medium hidden sm:inline"},e?"Remove from favorites":"Add to favorites"))))),React.createElement("div",{className:"flex-1 overflow-y-auto ast-thin-scrollbar -mx-1"},React.createElement("div",{className:(0,y.xW)("grid grid-cols-1 lg:grid-cols-2 auto-rows-auto gap-10 border-x-4 border-solid border-transparent")},p.length?p.map((e=>React.createElement(Ls,{key:e.ID,item:e}))):React.createElement("div",{className:"no-search-result"},React.createElement("h3",null,(0,u.__)("No Result Found","ast-block-templates")),React.createElement("p",null,(0,u.__)("The search result not found. Try another search.","ast-block-templates"))))),React.createElement("div",{className:"py-8 space-y-6"},!f&&React.createElement(rc,null),React.createElement("div",{className:"min-w-min flex flex-wrap xl:flex-nowrap gap-6 items-center justify-center"},React.createElement(ii.A,{className:"lg:grow w-full lg:w-auto min-w-fit",variant:"white",hasSuffixIcon:!0,onClick:()=>{window.open(n["astra-page-url"]+"?customize=template","_blank")},disabled:c},React.createElement("span",{className:"hidden sm:inline"},(0,u.__)("Live Preview","ast-block-templates")),React.createElement(Ds,{className:"size-6 sm:size-5"})),b?React.createElement(ii.A,{variant:"primary",className:"lg:grow-[2] w-full lg:w-auto min-w-fit",onClick:()=>{window.open(ast_block_template_vars.getProURL,"_blank")},hasSuffixIcon:!0},React.createElement("span",null,(0,u.__)("Get Access","ast-block-templates")),React.createElement(Ms,{className:"w-5 h-5"})):React.createElement(Is,{disabled:h}))))))})));var ac=o(7497);const ic=(0,e.A)((0,a.A)((e=>{const{getSitePreview:t}=e("ast-block-templates");return{preview:t}})),(0,n.A)((e=>{const{setSitePreview:t,setPagePreview:r,setCurrentScreen:n,setImportItemInfo:a}=e("ast-block-templates");return{setSitePreview(e){const a=Object.values(e.pages).length?Object.values(e.pages)[0]:[];r(a),t(e),n("all-single-site-pages")},setImportItemInfo:a}})))((0,i.memo)((({setSitePreview:e,item:t,setImportItemInfo:r})=>{const n=t["thumbnail-image-url"]||"",a=t.pages?t.pages.length:0,o=a<=1?"Template":"Templates",[s,l]=(0,i.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`),c=t["astra-sites-type"];return(0,i.useEffect)((()=>{let e=!0;const t=new Image;return t.src=n,t.onload=()=>{e&&l(t.src)},()=>{e=!1}}),[s]),React.createElement(ac.A,{className:(0,y.xW)("border-none w-full content-start relative")},React.createElement("div",{className:(0,y.xW)("inner","m-0 bg-white relative transition-all border border-solid border-border-primary cursor-pointer"),onClick:()=>{e(t),r(t)}},"free"!==c&&React.createElement(zs,{className:"absolute top-3 right-3"}),React.createElement("div",{className:(0,y.xW)("bg-top bg-cover bg-no-repeat overflow-hidden bg-gray-300 block aspect-[13/16]"),style:{backgroundImage:`url('${s}')`}},React.createElement("div",{className:(0,y.xW)("absolute top-0 left-0 w-full h-full cursor-pointer opacity-0 invisible float-none transition-all duration-300 bg-black bg-opacity-50")},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"}))),React.createElement("div",{className:"absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end overflow-hidden"},React.createElement("div",{className:(0,y.xW)("w-full flex items-center justify-between gap-3 py-2 pl-4 pr-3 bg-white/95 shadow-action-buttons backdrop-blur-[3px]")},React.createElement("div",null,React.createElement("p",{className:(0,y.xW)("m-0 text-base text-heading-text font-semibold leading-6")},(0,Wo.iZ)(t.title)),a?React.createElement("p",{className:"m-0 text-sm text-body-text font-normal leading-5 sub-title"},`${a} ${o}`):""),React.createElement(Vs.A,{item:t})))))}))),oc=(0,e.A)((0,a.A)((e=>{const{getAllPages:t,getCurrentScreen:r,getAllSites:n}=e("ast-block-templates");return{currentScreen:r(),allSites:n(),allPages:t()}})))((0,i.memo)((({allSites:e})=>{const{searchTerm:n,favorites:a,categoryFilter:o,loadingBlocksAndSites:s}=(0,t.A)((e=>{const{getFilterSitesBySearchTerm:t,getFavorites:r,getFilterSitesByCategory:n,getLoadingBlocksAndSites:a}=e(g.U);return{searchTerm:t(),favorites:r()?.site??[],categoryFilter:n(),loadingBlocksAndSites:a()}}),[]),{setFilterSitesBySearchTerm:l}=(0,r.A)(g.U),c=Object.values(e).map((e=>(e.type="site",e))).filter((e=>{if("favorite"===o)return a.map(Number).includes(+e.ID);if(!n)return!0;const t=Object.values(e.tag).map((e=>e.toLowerCase()));return e.title.toLowerCase().includes(n.toLowerCase())||t.includes(n.toLowerCase())})),u=(0,y._9)("ast-sites-visible-items")||12,d=(0,y._9)("ast-sites-scroll-position")||0,[p,m]=(0,i.useState)(u),f=(0,i.useRef)(null),h=(0,i.useCallback)((()=>{const{scrollTop:t,clientHeight:r,scrollHeight:n}=f.current;(0,y.HU)("ast-sites-scroll-position",t),e.length<=p||t+r>=n-r/2&&m((e=>((0,y.HU)("ast-sites-visible-items",e+12),e+12)))}),[]),b=(0,i.useCallback)((e=>{Zo.A.emit("reset-list-count"),l("")}),[]);if((0,i.useEffect)((()=>{f.current=document.getElementById("ast-template-kits-list");const e=f.current;if(e)return e.addEventListener("scroll",h),d&&e.scrollTo({top:d}),()=>{e.removeEventListener("scroll",h)}}),[]),(0,i.useEffect)((()=>{Zo.A.on("reset-list-count",(()=>{m(12),(0,y.D6)("ast-sites-visible-items"),(0,y.D6)("ast-sites-scroll-position")}))}),[]),s)return React.createElement("div",{className:"grid auto-rows-auto gap-8 grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"},Array.from({length:12}).map(((e,t)=>React.createElement(no,{type:t%2?3:2,key:t}))));const v=c.slice(0,p);return React.createElement("div",{className:(0,y.xW)("grid auto-rows-auto gap-8",v.length?"grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4":"grid-cols-1")},v.length?v.map((e=>React.createElement(ic,{key:e.ID,item:e}))):React.createElement("div",{className:"mx-auto mt-10 md:mt-16 lg:mt-24 xl:mt-32 space-y-6 text-center w-full"},React.createElement("div",{className:"space-y-2.5"},React.createElement("p",{className:"m-0 text-lg font-semibold text-heading-text"},"Sorry No Results Found 😕"),React.createElement("p",{className:"m-0 text-base font-normal text-body-text"},"Don’t see a template you would like to import?",React.createElement("br",null),React.createElement("a",{href:"https://wpastra.com/sites-suggestions/",className:"no-underline text-accent-spectra",target:"_blank"},"Make a template suggestion!"))),React.createElement(ii.A,{onClick:b,variant:"white",className:"mx-auto border-border-secondary text-border-secondary"},"Back to Templates")))}))),sc=(0,i.memo)((function(){const{myFavoritesActive:e}=(0,t.A)((e=>{const{getFilterSitesByCategory:t}=e(g.U);return{myFavoritesActive:"favorite"===t()}}),[]),{setFilterSitesByCategory:n}=(0,r.A)(g.U);return React.createElement("div",{id:"ast-template-kits-list",className:"h-full overflow-y-auto px-10 pb-10 pt-6"},React.createElement("div",{className:"flex flex-col sm:flex-row items-center justify-between mb-6 gap-4"},e?React.createElement(ii.A,{className:"inline-flex pl-1 py-1 pr-2 h-7 gap-1 border-border-primary text-body-text",variant:"white",hasPrefixIcon:!0,isSmall:!0,onClick:()=>{n("")}},React.createElement(Yi,{className:"w-4 h-4"}),React.createElement("span",null,"Back")):React.createElement("p",{className:"m-0 text-xl font-semibold inline-block"},"Template Kits"),React.createElement("div",{className:"flex items-center gap-10"},React.createElement(es,{className:"w-full md:w-[270px]",placeholder:"Search.."}))),React.createElement(oc,null))}));o(7525);const lc=(0,e.A)((0,a.A)((e=>{const{getFullWidthBlockPreview:t}=e("ast-block-templates");return{blockPreview:t()}})))((0,i.memo)((({blockPreview:e})=>{const t=e["featured-image-url"]||`${ast_block_template_vars.uri}dist/placeholder.png`;return React.createElement("div",{className:"ast-block-templates-full-preview"},React.createElement("img",{src:t,alt:"Preview"}))})));o(8509);const cc=(0,e.A)((0,a.A)((e=>{const{getFullWidthPagePreview:t}=e("ast-block-templates");return{pagePreview:t()}})))((0,i.memo)((({pagePreview:e})=>{const t=e["featured-image-url"]||"";return React.createElement("div",{className:"ast-block-templates-full-preview"},React.createElement("img",{src:t,alt:"Preview"}))}))),uc=()=>React.createElement("div",null,"All signle pages"),dc=(0,e.A)((0,a.A)((e=>{const{getFilterBlocksPagesByCategory:t,getFilterBlocksPagesByColor:r,getAllPatternsAndPages:n,getAllCategories:a}=e("ast-block-templates");return{filterBlocksByCategory:t(),filterBlocksByColor:r(),allPages:n()?.pages,allCategories:a()}})),(0,n.A)((e=>{const{setFilterBlocksPagesByCategory:t}=e("ast-block-templates");return{setFilterBlocksPagesByCategory:t}})))((0,i.memo)((({filterBlocksByCategory:e,setFilterBlocksPagesByCategory:r,allPages:n,allCategories:a})=>{const i={};let o=0;for(const e in a){let t=0;for(const r in n)a[e].id===n[r].category&&t++;0!==t&&(i[e]=a[e],i[e].count=t,o+=t)}const s=Object.keys(i).map((e=>i[e])),{favorites:l}=(0,t.A)((e=>{const{getFavorites:t}=e("ast-block-templates");return{favorites:t()}}));return React.createElement($o,{value:e,allCount:o,favoriteCount:l?.page?Object.keys(l?.page)?.length:0,list:s,onChange:(e,t)=>{""!==t.id?r(t.id):r("")}})})));function pc(){return pc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},pc.apply(null,arguments)}const{memo:mc}=wp.element,fc=mc((({className:e,...r})=>{const{adaptiveMode:n}=(0,t.A)((e=>{const{getAdaptiveMode:t}=e(g.U);return{adaptiveMode:t()}}));return React.createElement("div",pc({className:(0,y.xW)("spectra-ai w-full lg:max-w-[280px] self-stretch bg-white border-0 border-r border-solid border-border-primary md:max-lg:max-w-[246px] xl:max-w-[280px] lg:max-xl:max-w-[260px] hidden sm:block max-w-60",e)},r),React.createElement("div",{className:"h-full w-full flex flex-col gap-5 py-5 px-4"},React.createElement(es,null),React.createElement(Qa,{className:"mx-2"}),React.createElement(dc,null),n&&React.createElement("div",{className:"mt-auto space-y-5 min-h-[3.125rem]"},React.createElement(Qa,{className:"mx-2"}),React.createElement(Yo,null))))})),gc=(0,e.A)((0,n.A)((e=>{const{setFilterBlocksPagesBySearchTerm:t,setFilterBlocksPagesByCategory:r,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i,setPagePreview:o,setCurrentScreen:s}=e(g.U);return{setFilterBlocksPagesByCategory:r,setFilterBlocksPagesBySearchTerm:t,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i,setFullPagePreview(e){o(e),s("single-block-page-full-preview")}}})),(0,a.A)((e=>{const{getAllBlocksPages:t,getAllCategories:r,getFilterBlocksPagesByCategory:n,getFilterBlocksPagesByColor:a,getDefaultPageColorPalette:i,getActivePagePalette:o,getDynamicContent:s,getAIStepData:l,getFilterBlocksPagesBySearchTerm:c,getDynamicContentSyncStatus:u,getDynamicContentSyncFlags:d,getAllPagesCategories:p,getDynamicContentReSyncStatus:m,getRegeneratingContentCategory:f,getAdaptiveMode:h,getHideNotice:y,getDisableAi:b,getIsSyncBusinessDetails:v}=e(g.U);return{filterBlocksPagesByCategory:n(),filterBlocksByColor:a(),allPages:t(),defaultPalette:i(),activePalette:o(),dynamicContent:s(),selectedImages:l().selectedImages,allCategories:r(),searchTerm:c(),syncStatus:u()?.pages,syncFlags:d(),allPagesCategories:p(),reSyncStatus:m(),regeneratingContentCategory:f(),adaptiveMode:h(),hideNotice:y(),disableAi:b(),isSyncBusinessDetails:v()}})))((0,i.memo)((({allPages:e,defaultPalette:r,activePalette:n,dynamicContent:a,selectedImages:o,filterBlocksPagesByCategory:s,allPagesCategories:l,searchTerm:c,syncFlags:d,syncStatus:p,reSyncStatus:m,regeneratingContentCategory:f,adaptiveMode:h,hideNotice:b,setHideNotice:v,disableAi:w,isSyncBusinessDetails:x,toggleOnboardingAIStep:_,setFullPagePreview:E})=>{const[k,S]=(0,i.useState)(!1),C=e,R="https://youtu.be/Zpkgw9USlEc",{stepsData:{businessContact:A,businessDetails:P,token:T},allPatternsAndPages:N,loadingBlocksAndSites:I}=(0,t.A)((e=>{const{getAIStepData:t,getAllPatternsAndPages:r,getLoadingBlocksAndSites:n}=e(g.U);return{stepsData:t(),allPatternsAndPages:r(),loadingBlocksAndSites:n()}})),O=(0,i.useRef)(null),{currentBalanceStatus:L,remaining:B}=oi(),j={show:L.warning&&!b.creditWarning||L.danger&&!b.creditDanger||!1,variantAndType:L.warning&&{variant:"warning",type:"creditWarning"}||L.danger&&{variant:"error",type:"creditDanger"},message:0===B?"You're out of AI credits. Personalize the design library with content and images tailored to your website project":(L.warning||L.danger)&&"You're almost out of AI credits. Personalize the design library with content and images tailored to your website project"},D=e=>()=>{v({[e]:!0}),(0,Wo.yL)(e)};(0,i.useEffect)((()=>{Zo.A.on("reset-list-count",(()=>{M(10),(0,y.D6)("ast-pages-visible-items"),(0,y.D6)("ast-pages-scroll-position")}))}),[]),(0,i.useEffect)((()=>{O.current&&(O.current.scrollTop=(0,y._9)("ast-pages-scroll-position")||0)}),[]);const[F,M]=(0,i.useState)((0,y._9)("ast-pages-visible-items")||10),z=Object.keys(n).length>0?n.colors:r.colors,V=()=>{const e=c&&!C.length?N.pages:C;window.innerHeight+window.scrollY>=document.body.offsetHeight-500&&e.length>F&&M((e=>e+10))};(0,i.useEffect)((()=>{const e=((e,t)=>{let r;return(...t)=>{clearTimeout(r),r=setTimeout((()=>e(...t)),200)}})(V),t=document.getElementsByClassName("ast-scrolling-container");if(t.length>0){const r=t[0];return r.addEventListener("scroll",e),()=>r.removeEventListener("scroll",e)}}),[V]);const W=jo(V,200),U=C.slice(0,F),H=e=>Math.floor(e/3)+1,$=()=>!!I||!(!m||f!==s)||!(!m||""!==f)||!!p&&!(!p||(!Object.values(d.pages).every((e=>!1===e))||""!==s)&&(""===s||!Object.keys(d.pages).map(Number).includes(s)||d.pages[s])),Z=U?.length||""===c?[]:N.pages,G=()=>{if(""===s){const e=l.reduce(((e,t)=>(t.count,null)),0);return e>10?e:10}const e=l.find((e=>e.id===s)),t=e?.count?e.count:10;return e?.count>10?10:t},q=(0,i.useMemo)((()=>(()=>{let e=1,t=0;return()=>{return e>3&&(e=1),t===G()-1&&(t=0),React.createElement(no,{key:t,type:(r=H(t++),n=e++,[1,2,3][(n-1+(r-1)%3)%3])});var r,n}})()),[]);return React.createElement("div",{className:"relative ast-block-templates-grid-blocks active h-full"},React.createElement(ii.A,{className:"absolute right-4 bottom-8 z-[9999] py-2 px-3.5 bg-accent-spectra shadow-xl sm:hidden",onClick:()=>S(!0)},React.createElement(hs,{className:"size-5 text-white"})),React.createElement(xs,{open:k,onClose:()=>S(!1),className:"sm:hidden",children:React.createElement(fc,{className:"block sm:hidden h-full !w-full",style:{maxWidth:"100%"}})}),React.createElement(fc,null),React.createElement("div",{onScroll:e=>{W(),(0,y.HU)("ast-pages-scroll-position",e.target.scrollTop),(0,y.HU)("ast-pages-visible-items",F)},className:"ast-scrolling-container w-full md:ml-auto h-full overflow-auto md:max-w-[calc(100%_-_246px)]",ref:O},j.show&&!!T&&React.createElement(fs,{type:j.variantAndType.variant,message:j.message,icon:React.createElement(vs.A,{className:"w-6 h-6"}),ctaLink:ast_block_template_vars.get_more_credits_url,ctaText:(0,u.__)("Buy AI Credits","ast-block-templates"),onClose:D(j.variantAndType.type)}),!(b.personalizeAi||!T||P&&(!P||"yes"!==x)||w||c||L.warning||L.danger)&&React.createElement(fs,{className:"pl-6 py-4 pr-4 mx-10 mt-9 md:max-lg:mx-5 hidden sm:block",rounded:8,type:"info",message:React.createElement("div",{className:"grid grid-cols-4 grid-rows-2 2xl:grid-rows-1 items-center justify-start gap-2 max-2xl:items-start"},React.createElement("span",{className:"col-span-12 2xl:col-span-4 "},(0,u.__)("Did you know, you can personalize this design library with content and images tailored to your website project?","ast-block-templates")),React.createElement("div",{className:"col-span-12 2xl:col-start-5 flex flex-col md:flex-row gap-5 items-baseline md:items-center"},React.createElement(ii.A,{id:"ast-block-template-setup-ai-btn",className:"min-w-fit",variant:"primary",isSmall:!0,onClick:()=>{D("personalizeAi")(),_(!0)}},"Personalize Library with AI"),R&&React.createElement(ms,{className:"flex 2xl:hidden",videoIntroURL:R}))),icon:React.createElement(Vo,{className:"w-6 h-6"}),onClose:D("personalizeAi"),isClose:!1,hasVideoIntro:!0,videoIntroURL:R}),React.createElement("div",{className:"h-full w-full p-10 md:max-lg:p-6"},!U.length&&""!==c&&React.createElement("div",{className:"pb-4"},React.createElement(So,{keyword:c}),React.createElement("h6",{className:"m-0 mt-10 text-heading-text text-xl font-semibold leading-7"},"Other suggested pattern designs")),React.createElement(us,{columns:{640:1,768:2,1024:3},gap:32,className:"ast-block-templates-grid",id:"ast-block-templates-grid-blocks-pages"},(()=>{if($()){const e=G();return Array(e>10?10:e).fill(1)}const e=Object.entries(d.pages);return!m&&p&&e.some((([,e])=>!1===e))?U.filter((e=>!1!==d.pages[e.category])):U.length||""===c?U:Z.slice(0,F)})()?.map(((e,t)=>((e,t)=>$()?q():React.createElement(io,{key:e.ID,index:t,item:e,content:e.content,stylesheet:e.stylesheet,astraCustomizer:h?ast_block_template_vars.astra_customizer_css:ast_block_template_vars.server_astra_customizer_css,globalStylesheet:e.global_stylesheet,colorPalette:z,dynamicContent:a[e.category]??[],selectedImages:o,email:A.email,phone:A.phone,address:A.address,onClickBlock:E}))(e,t)))),React.createElement("div",{className:"h-10 w-full mb-10"}))))})));function hc({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m6.115 5.19.319 1.913A6 6 0 0 0 8.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 0 0 2.288-4.042 1.087 1.087 0 0 0-.358-1.099l-1.33-1.108c-.251-.21-.582-.299-.905-.245l-1.17.195a1.125 1.125 0 0 1-.98-.314l-.295-.295a1.125 1.125 0 0 1 0-1.591l.13-.132a1.125 1.125 0 0 1 1.3-.21l.603.302a.809.809 0 0 0 1.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 0 0 1.528-1.732l.146-.292M6.115 5.19A9 9 0 1 0 17.18 4.64M6.115 5.19A8.965 8.965 0 0 1 12 3c1.929 0 3.716.607 5.18 1.64"}))}const yc=i.forwardRef(hc);function bc({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M4.5 12h15m0 0-6.75-6.75M19.5 12l-6.75 6.75"}))}const vc=i.forwardRef(bc),{images:wc}=ast_block_template_vars,xc=[{icon:ei.C1,text:(0,u.__)("Updated templates design library","ast-block-templates")},{icon:ai.A,text:(0,u.__)("Free AI credits to create personalized content","ast-block-templates")},{icon:Vo,text:(0,u.__)("Easily find stunning images for your website","ast-block-templates")},{icon:yc,text:(0,u.__)("Localized your website to any language","ast-block-templates")}],_c=()=>{const{toggleSkipZipAIOnboarding:e,toggleConnectZipAI:t}=(0,r.A)(g.U),[n,a]=(0,i.useState)(!1),o=(0,i.useCallback)((async()=>{if(n)return;a(!0);const t=new window.FormData;t.append("action","ast_skip_zip_ai_onboarding"),t.append("security",ast_block_template_vars.skip_zip_ai_onboarding_nonce);try{const r=await(0,y.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:t});if(r.success?e():(console.group("Onboarding Skip Failed!"),console.log(r),console.groupEnd()),!r.success)throw new Error(r.data)}catch(e){(0,ti.v)(e)}finally{a(!1)}}),[]),s=(0,i.useCallback)((()=>"active"===ast_block_template_vars.astra_sites_status||"active"===ast_block_template_vars.astra_sites_pro_status?React.createElement(ei.fp,{className:"w-10 h-10"}):React.createElement(ei.y0,{className:"w-10 h-10"})),[]);return React.createElement("div",{className:"relative h-full w-full",style:{backgroundImage:`url('${wc}background.png')`}},React.createElement("div",{className:"spectra-ai absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-center bg-background-tertiary/[0.85] backdrop-blur-[6px] z-[1]"},React.createElement("div",{className:"p-10 flex flex-col gap-8 max-w-[560px] border border-solid border-border-primary rounded-lg shadow-small bg-white"},React.createElement("div",{className:"space-y-5"},React.createElement("div",{className:"space-y-2"},s(),React.createElement("h4",{className:"text-[2rem] font-semibold leading-[2.625rem]"},(0,u.__)("Access Design Library","ast-block-templates")),React.createElement("p",{className:"text-base font-normal leading-6 text-body-text"},(0,u.__)("Get access to our library of hundreds of pixel-perfect, designer-made templates by creating a free account on ZipWP.","ast-block-templates")," ",React.createElement("br",null),React.createElement("span",null,(0,u.__)("Plus, you will get these extra benefits:","ast-block-templates")))),React.createElement("ul",{className:"!space-y-4"},xc.map(((e,t)=>React.createElement("li",{key:t,className:"m-0 flex gap-3 items-center justify-start"},React.createElement(e.icon,{className:"w-5 h-5 text-accent-spectra stroke-2"}),React.createElement("p",{className:"text-zip-app-heading text-base font-medium leading-6 m-0"},e.text)))))),React.createElement("div",{className:"flex flex-col md:flex-row flex-nowrap md:flex-wrap justify-start items-center gap-2"},React.createElement(ii.A,{variant:"primary",hasSuffixIcon:!0,className:"w-full md:w-fit min-w-[10.25rem]",onClick:async()=>{await o(),window.location.href=(0,Wo.i9)()}},n?React.createElement(Vi.A,null):React.createElement(React.Fragment,null,React.createElement("span",null,"Get Started"),React.createElement(vc,{className:"w-6 h-6"}))),React.createElement(ii.A,{variant:"link",className:"text-secondary-text w-full md:w-fit min-w-[5rem]",onClick:async()=>{t(),(0,y.D6)("ast-import"),await o()}},(0,u.__)("Cancel","ast-block-templates"))))))},{images:Ec}=ast_block_template_vars,kc=()=>{const{setShowPagesOnboarding:e,setCurrentCategory:n,setDynamicContent:a,dynamicContentFlagSet:i,dynamicContentSyncStart:o,dynamicContentFlagReset:s,dynamicContentSyncComplete:l,setCreditsDetails:c,setIsPersonalized:d}=(0,r.A)(g.U),{remaining:p,pagesLibraryRate:m}=oi(),{allPagesCategories:f,credits:h}=(0,t.A)((e=>{const{getAllPagesCategories:t,getCreditsDetails:r}=e(g.U);return{allPagesCategories:t(),credits:r()}}),[]),b=h.free_user||p<m,v=async()=>{try{await(0,y.nr)({path:"gutenberg-templates/v1/pages-onboarding",method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}})}catch(e){(0,ti.v)(e)}};return React.createElement("div",{className:"spectra-ai relative w-full h-full",style:{backgroundImage:`url('${Ec}background.png')`}},React.createElement("div",{className:"absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-center bg-background-tertiary/[0.85] backdrop-blur-[6px] z-[1]"},React.createElement("div",{className:"w-full max-w-[504px] h-max px-8 pt-8 pb-6 shadow-small rounded-lg space-y-8 bg-white"},React.createElement("div",{className:"space-y-2"},React.createElement(Vo,{className:"w-10 h-10 text-icon-primary stroke-[1]"}),React.createElement("h5",{className:"text-2xl font-semibold text-heading-text"},(0,u.__)("Generate Content for Pages","ast-block-templates")),React.createElement("p",{className:"text-body-text text-base"},(0,u.__)('Get the content for all your pages with just a click. You can generate content page by page by making use of the "Skip" option. We\'re here to make everything easy and tailored to suit your needs perfectly!',"ast-block-templates"))),React.createElement("div",{className:"space-y-4"},React.createElement(ii.A,{className:"w-full",variant:"primary",onClick:async()=>{const t="pages";s(t),o(t),e(),v();let r=!1;try{r=await(0,Wo.R2)(f,a,i,(e=>n(t,e)),c,"page",d)}catch(e){r=e}"object"==typeof r&&"api_throttle_error"===r?.data?.code&&(r={type:"error",title:"Check Back Soon",message:React.createElement(React.Fragment,null,"We are currently experiencing exceptionally high demand. Please try again in 5 minutes. If the error persists, kindly contact us through the website:",React.createElement("a",{href:"https://zipwp.com/contact",target:"_blank",rel:"noreferrer"}," ","https://zipwp.com/contact"),".")}),l(t,"object"==typeof r?r:null),n(t,{})},hasSuffixIcon:!0,disabled:b},React.createElement("span",null,(0,u.nv)((0,u.__)("Let’s Go (%s Credits)","ast-block-templates"),(0,y.ZV)(m))),React.createElement(Ms,{className:"w-5 h-5"})),b&&React.createElement("p",{className:"text-credit-danger text-center"},p," credits remaining"),React.createElement("button",{className:"w-full border-0 bg-transparent outline-none focus:outline-none active:outline-none underline text-base font-normal leading-6 text-center text-secondary-text cursor-pointer",onClick:()=>{v(),e()}},(0,u.__)("Skip","ast-block-templates"))))))};function Sc({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m19.5 8.25-7.5 7.5-7.5-7.5"}))}const Cc=i.forwardRef(Sc),Rc={all:{value:"all",label:"All"},Patterns:{value:"pattern",label:"Pattern"},Pages:{value:"pages",label:"Pages"},Kits:{value:"kits",label:"Kits"}},Ac=(0,e.A)((0,n.A)((e=>{const{setFilterBlocksBySearchTerm:t,setFilterBlocksByCategory:r,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i}=e(g.U);return{setFilterBlocksByCategory:r,setFilterBlocksBySearchTerm:t,setActiveBlockPalette:n,setHideNotice:a,toggleOnboardingAIStep:i}})),(0,a.A)((e=>{const{getAllPatterns:t,getAllCategories:r,getFilterBlocksByCategory:n,getFilterBlocksByColor:a,getDefaultBlockColorPalette:i,getActiveBlockPalette:o,getDynamicContent:s,getAIStepData:l,getFilterFavoritres:c,getDynamicContentSyncStatus:u,getDynamicContentSyncFlags:d,getAllPatternsCategories:p,getDynamicContentReSyncStatus:m,getRegeneratingContentCategory:f,getAdaptiveMode:h,getHideNotice:y,getSkipZipAIOnboarding:b,getDisableAi:v,getIsSyncBusinessDetails:w}=e(g.U);return{filterBlocksByCategory:n(),filterBlocksByColor:a(),allPatterns:t(),defaultPalette:i(),activePalette:o(),dynamicContent:s(),selectedImages:l().selectedImages,allCategories:r(),searchTerm:c(),syncStatus:u()?.patterns,syncFlags:d(),allPatternsCategories:p(),reSyncStatus:m(),regeneratingContentCategory:f(),adaptiveMode:h(),hideNotice:y(),skipZipAIOnboarding:b(),disableAi:v(),isSyncBusinessDetails:w()}})))((0,i.memo)((({filterBlocksByCategory:e,allPatterns:r,allPatternsCategories:n,defaultPalette:a,activePalette:o,dynamicContent:s,selectedImages:l,syncFlags:c,syncStatus:d,searchTerm:p,reSyncStatus:m,regeneratingContentCategory:f,adaptiveMode:h})=>{const y=r,{stepsData:{businessContact:b},allPatternsAndPages:v,loadingBlocksAndSites:w,favorites:x,allSites:_}=(0,t.A)((e=>{const{getAIStepData:t,getAllPatternsAndPages:r,getAllSites:n,getLoadingBlocksAndSites:a,getFavorites:i}=e(g.U);return{stepsData:t(),allPatternsAndPages:r(),allSites:n(),loadingBlocksAndSites:a(),favorites:i()}})),E=[...Array.isArray(x?.block)?x?.block:[],...Array.isArray(x?.page)?x?.page:[],...Array.isArray(x?.site)?x?.site:[]],k=_.filter((e=>E.includes(parseInt(+e.ID)))),S=v.patterns.filter((e=>E.includes(parseInt(+e.ID)))),C=v.pages.filter((e=>E.includes(parseInt(+e.ID)))),R=[...S,...C,...k],[A,P]=(0,i.useState)(Rc.all);(0,i.useEffect)((()=>{Zo.A.on("reset-list-count",(()=>N(10)))}),[]);const[T,N]=(0,i.useState)(10),I=Object.keys(o).length>0?o.colors:a.colors,O=jo((()=>{if(j())return;const e=p&&!y.length?R:y;window.innerHeight+window.scrollY>=document.body.offsetHeight-500&&e.length>T&&N((e=>e+10))}),200),L=e=>Math.floor(e/3)+1,B=()=>{if(""===e){const e=n.reduce(((e,t)=>(t.count,null)),0);return e>10?e:10}const t=n.find((t=>t.id===e)),r=t?.count?t.count:10;return t?.count>10?10:r},j=()=>!!w||!(!m||f!==e)||!(!m||""!==f)||!!d&&!(!d||(!Object.values(c.patterns).every((e=>!1===e))||""!==e)&&(""===e||!Object.keys(c.patterns).map(Number).includes(e)||c.patterns[e])),D=(()=>{let e=[...R];return A&&"all"!==A.value&&(e=e.filter((e=>{switch(A.value){case"pattern":return S.includes(e);case"pages":return C.includes(e);case"kits":return k.includes(e);default:return!0}}))),p&&(e=e.filter((e=>e.title.toLowerCase().includes(p.toLowerCase())))),e})(),F=(0,i.useMemo)((()=>(()=>{let e=1,t=0;return()=>{return e>3&&(e=1),t===B()-1&&(t=0),React.createElement(no,{key:t,type:(r=L(t++),n=e++,[1,2,3][(n-1+(r-1)%3)%3])});var r,n}})()),[]);return React.createElement("div",{id:"ast-template-kits-list",onScroll:O,className:"h-full overflow-y-auto px-10 pb-10 pt-6"},React.createElement("div",{className:"flex items-center justify-between mb-6"},React.createElement("p",{className:"m-0 text-xl font-semibold sm:inline-block hidden min-w-32"},(0,u.__)("My Favorites","ast-block-templates")),React.createElement("div",{className:"flex flex-col justify-end sm:flex-row items-center px-0 gap-2 sm:gap-4 lg:gap-6 w-full"},React.createElement("div",{className:"w-full sm:w-52 border border-solid border-border-primary rounded-md py-2.5 px-2"},React.createElement(Ja,{placement:"right",trigger:React.createElement("div",{className:"flex items-center gap-2 min-w-32 cursor-pointer"},React.createElement("span",{className:"font-normal text-base leading-[150%]"},"",A.label),React.createElement(Cc,{className:"w-5 h-5 text-app-inactive-icon ml-auto"})),align:"top",contentClassName:"border border-solid border-border-primary p-4 bg-white [&>:first-child]:pb-3 [&>:last-child]:pt-3 [&>:not(:first-child,:last-child)]:py-3 !divide-y !divide-border-primary divide-solid divide-x-0"},Object.values(Rc).map(((e,t)=>{return React.createElement(Ja.Item,{as:"div",key:t,className:"only:!p-0"},React.createElement("button",{type:"button",className:"w-full flex items-center gap-2 px-1.5 py-1 text-sm font-normal leading-5 text-body-text hover:bg-background-secondary transition duration-150 ease-in-out space-x-2 rounded bg-white border-none cursor-pointer",onClick:(r=e,()=>{P(r)})},e.label));var r})))),React.createElement(es,{className:"!text-base w-full md:w-60",placeholder:"Search.."}))),React.createElement("div",{className:"ast-scrolling-container w-full max-w-full ml-auto h-full "},!j()&&0===D.length&&React.createElement(React.Fragment,null,p?React.createElement("div",{className:"mx-auto mt-10 md:mt-16 lg:mt-24 xl:mt-32 space-y-6 text-center"},React.createElement("div",{className:"space-y-2.5"},React.createElement("p",{className:"m-0 text-lg font-semibold text-heading-text"},(0,u.__)("Sorry No Favorites Found 😕","ast-block-templates")))):React.createElement(fs,{className:"p-10 !pl-8 !rounded-lg md:max-lg:mx-5 bg-background-secondary flex items-center",rounded:4,type:"info",message:React.createElement("div",{className:"flex flex-col md:flex-row items-start gap-4 w-full"},React.createElement("div",{className:"flex-shrink-0 pt-1"},React.createElement(Bs.A,{className:"w-10 h-10 text-accent-spectra"})),React.createElement("div",{className:"flex flex-col items-start leading-tight"},React.createElement("span",{className:"text-xl font-bold text-heading-text mb-1"},(0,u.__)("No favorites added.","ast-block-templates")),React.createElement("span",{className:"text-base font-normal text-body-text leading-6"},(0,u.__)("Your favorite templates will be displayed here. You do not have any favorites yet. Click the heart icon and start adding them!","ast-block-templates")))),isClose:!1})),React.createElement("div",{className:"h-full w-full py-4 md:py-10 md:max-lg:p-6"},React.createElement(us,{columns:{220:1,640:2,1024:3},gap:32,className:"ast-block-templates-grid",id:"ast-block-templates-grid-blocks"},(()=>{if(j()){const e=B();return Array(e>10?10:e).fill(1)}return D.slice(0,T)})()?.map(((e,t)=>((e,t)=>j()?F():"block"===e.type||"page"===e.type?React.createElement(io,{key:e.ID,index:t,item:e,content:e.content,stylesheet:e.stylesheet,astraCustomizer:h?ast_block_template_vars.astra_customizer_css:ast_block_template_vars.server_astra_customizer_css,globalStylesheet:e.global_stylesheet,colorPalette:I,dynamicContent:s[e.category]??[],selectedImages:l,email:b.email,phone:b.phone,address:b.address}):React.createElement(ic,{key:e.ID,item:e}))(e,t)))),React.createElement("div",{className:"h-10 w-full mb-10"}))))})));var Pc=o(8270),Tc=o(1635),Nc=o(7482);function Ic(e,t){return void 0===t&&(t={}),function(e,t){return void 0===t&&(t={}),(0,Nc.W)(e,(0,Tc.Cl)({delimiter:"."},t))}(e,(0,Tc.Cl)({delimiter:"-"},t))}const Oc=/[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;function Lc(e){return e.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi,"&amp;")}function Bc(e){return function(e){return e.replace(/>/g,"&gt;")}(function(e){return e.replace(/"/g,"&quot;")}(Lc(e)))}function jc({children:e,...t}){let r="";return i.Children.toArray(e).forEach((e=>{"string"==typeof e&&""!==e.trim()&&(r+=e)})),(0,i.createElement)("div",{dangerouslySetInnerHTML:{__html:r},...t})}const{Provider:Dc,Consumer:Fc}=(0,i.createContext)(void 0),Mc=(0,i.forwardRef)((()=>null)),zc=new Set(["string","boolean","number"]),Vc=new Set(["area","base","br","col","command","embed","hr","img","input","keygen","link","meta","param","source","track","wbr"]),Wc=new Set(["allowfullscreen","allowpaymentrequest","allowusermedia","async","autofocus","autoplay","checked","controls","default","defer","disabled","download","formnovalidate","hidden","ismap","itemscope","loop","multiple","muted","nomodule","novalidate","open","playsinline","readonly","required","reversed","selected","typemustmatch"]),Uc=new Set(["autocapitalize","autocomplete","charset","contenteditable","crossorigin","decoding","dir","draggable","enctype","formenctype","formmethod","http-equiv","inputmode","kind","method","preload","scope","shape","spellcheck","translate","type","wrap"]),Hc=new Set(["animation","animationIterationCount","baselineShift","borderImageOutset","borderImageSlice","borderImageWidth","columnCount","cx","cy","fillOpacity","flexGrow","flexShrink","floodOpacity","fontWeight","gridColumnEnd","gridColumnStart","gridRowEnd","gridRowStart","lineHeight","opacity","order","orphans","r","rx","ry","shapeImageThreshold","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","tabSize","widows","x","y","zIndex","zoom"]);function $c(e,t){return t.some((t=>0===e.indexOf(t)))}function Zc(e){return"key"===e||"children"===e}function Gc(e,t){return"style"===e?function(e){if(!(0,Pc.Q)(e))return e;let t;for(const r in e){const n=e[r];null!=n&&(t?t+=";":t="",t+=Jc(r)+":"+Qc(r,n))}return t}(t):t}const qc=["accentHeight","alignmentBaseline","arabicForm","baselineShift","capHeight","clipPath","clipRule","colorInterpolation","colorInterpolationFilters","colorProfile","colorRendering","dominantBaseline","enableBackground","fillOpacity","fillRule","floodColor","floodOpacity","fontFamily","fontSize","fontSizeAdjust","fontStretch","fontStyle","fontVariant","fontWeight","glyphName","glyphOrientationHorizontal","glyphOrientationVertical","horizAdvX","horizOriginX","imageRendering","letterSpacing","lightingColor","markerEnd","markerMid","markerStart","overlinePosition","overlineThickness","paintOrder","panose1","pointerEvents","renderingIntent","shapeRendering","stopColor","stopOpacity","strikethroughPosition","strikethroughThickness","strokeDasharray","strokeDashoffset","strokeLinecap","strokeLinejoin","strokeMiterlimit","strokeOpacity","strokeWidth","textAnchor","textDecoration","textRendering","underlinePosition","underlineThickness","unicodeBidi","unicodeRange","unitsPerEm","vAlphabetic","vHanging","vIdeographic","vMathematical","vectorEffect","vertAdvY","vertOriginX","vertOriginY","wordSpacing","writingMode","xmlnsXlink","xHeight"].reduce(((e,t)=>(e[t.toLowerCase()]=t,e)),{}),Yc=["allowReorder","attributeName","attributeType","autoReverse","baseFrequency","baseProfile","calcMode","clipPathUnits","contentScriptType","contentStyleType","diffuseConstant","edgeMode","externalResourcesRequired","filterRes","filterUnits","glyphRef","gradientTransform","gradientUnits","kernelMatrix","kernelUnitLength","keyPoints","keySplines","keyTimes","lengthAdjust","limitingConeAngle","markerHeight","markerUnits","markerWidth","maskContentUnits","maskUnits","numOctaves","pathLength","patternContentUnits","patternTransform","patternUnits","pointsAtX","pointsAtY","pointsAtZ","preserveAlpha","preserveAspectRatio","primitiveUnits","refX","refY","repeatCount","repeatDur","requiredExtensions","requiredFeatures","specularConstant","specularExponent","spreadMethod","startOffset","stdDeviation","stitchTiles","suppressContentEditableWarning","suppressHydrationWarning","surfaceScale","systemLanguage","tableValues","targetX","targetY","textLength","viewBox","viewTarget","xChannelSelector","yChannelSelector"].reduce(((e,t)=>(e[t.toLowerCase()]=t,e)),{}),Kc=["xlink:actuate","xlink:arcrole","xlink:href","xlink:role","xlink:show","xlink:title","xlink:type","xml:base","xml:lang","xml:space","xmlns:xlink"].reduce(((e,t)=>(e[t.replace(":","").toLowerCase()]=t,e)),{});function Xc(e){switch(e){case"htmlFor":return"for";case"className":return"class"}const t=e.toLowerCase();return Yc[t]?Yc[t]:qc[t]?Ic(qc[t]):Kc[t]?Kc[t]:t}function Jc(e){return e.startsWith("--")?e:$c(e,["ms","O","Moz","Webkit"])?"-"+Ic(e):Ic(e)}function Qc(e,t){return"number"!=typeof t||0===t||Hc.has(e)?t:t+"px"}function eu(e,t,r={}){if(null==e||!1===e)return"";if(Array.isArray(e))return ru(e,t,r);switch(typeof e){case"string":return Lc(e).replace(/</g,"&lt;");case"number":return e.toString()}const{type:n,props:a}=e;switch(n){case i.StrictMode:case i.Fragment:return ru(a.children,t,r);case jc:const{children:e,...n}=a;return tu(Object.keys(n).length?"div":null,{...n,dangerouslySetInnerHTML:{__html:e}},t,r)}switch(typeof n){case"string":return tu(n,a,t,r);case"function":return n.prototype&&"function"==typeof n.prototype.render?function(e,t,r,n={}){const a=new e(t,n);"function"==typeof a.getChildContext&&Object.assign(n,a.getChildContext());return eu(a.render(),r,n)}(n,a,t,r):eu(n(a,r),t,r)}switch(n&&n.$$typeof){case Dc.$$typeof:return ru(a.children,a.value,r);case Fc.$$typeof:return eu(a.children(t||n._currentValue),t,r);case Mc.$$typeof:return eu(n.render(a),t,r)}return""}function tu(e,t,r,n={}){let a="";if("textarea"===e&&t.hasOwnProperty("value")){a=ru(t.value,r,n);const{value:e,...i}=t;t=i}else t.dangerouslySetInnerHTML&&"string"==typeof t.dangerouslySetInnerHTML.__html?a=t.dangerouslySetInnerHTML.__html:void 0!==t.children&&(a=ru(t.children,r,n));if(!e)return a;const i=function(e){let t="";for(const n in e){const a=Xc(n);if(r=a,Oc.test(r))continue;let i=Gc(n,e[n]);if(!zc.has(typeof i))continue;if(Zc(n))continue;const o=Wc.has(a);if(o&&!1===i)continue;const s=o||$c(n,["data-","aria-"])||Uc.has(a);("boolean"!=typeof i||s)&&(t+=" "+a,o||("string"==typeof i&&(i=Bc(i)),t+='="'+i+'"'))}var r;return t}(t);return Vc.has(e)?"<"+e+i+"/>":"<"+e+i+">"+a+"</"+e+">"}function ru(e,t,r={}){let n="";e=Array.isArray(e)?e:[e];for(let a=0;a<e.length;a++)n+=eu(e[a],t,r);return n}const nu=eu;var au=o(2513);const{post:iu}=wp.ajax,{parse:ou}=wp.blocks;o(2919);const su=(()=>{const e={};return Object.seal({on:(t,r)=>{const n=`ast:${t}`;e[n]||(e[n]=r),document.addEventListener(n,r)},emit:(e,t)=>{const r=new CustomEvent(`ast:${e}`,{detail:t});document.dispatchEvent(r)},off:(t,r)=>{const n=`ast:${t}`;e[n]&&document.removeEventListener(n,r)}})})(),{images:lu}=ast_block_template_vars,cu=()=>{const{importInProgress:e,notice:n}=(0,t.A)((e=>{const{getImportInProgress:t,getNotice:r}=e(g.U);return{importInProgress:t(),notice:r()}}),[]),{setImportInProgress:a}=(0,r.A)(g.U);return!(!e||"import-info"!==n?.type&&"import-error"!==n?.type)&&React.createElement("div",{className:"absolute inset-x-0 top-[4.5rem] h-[calc(100%_-_4.5rem)] w-full",style:{backgroundImage:`url('${lu}background.png')`}},React.createElement("div",{className:"absolute inset-0 backdrop-blur-md bg-[#F0F0FF]/[0.9]"}),React.createElement("div",{className:"relative w-full h-full grid grid-cols-1 grid-rows-1 place-items-center z-[1]"},React.createElement("div",{className:(0,y.xW)("h-auto w-full -mt-8 flex items-center justify-center flex-col rounded-lg py-7 px-10 border border-solid border-zip-light-border-primary shadow-xlarge bg-white","import-error"===n?.type?"max-w-[27.375rem]":"max-w-xs")},"import-error"===n?.type?React.createElement(ei.Rk,{className:"size-5"}):React.createElement(ei.ug,{className:"mx-auto text-accent-spectra animate-hour-glass"}),React.createElement("h6",{className:"mt-4 mb-1 text-center text-base font-medium text-zip-app-heading"},"import-error"===n?.type?n?.title:(0,u.__)("Please wait a moment","ast-block-templates")),React.createElement("p",{className:"m-0 text-center text-sm font-normal text-slate-500",dangerouslySetInnerHTML:{__html:n.message}}),"import-error"===n?.type&&React.createElement(ii.A,{variant:"primary",className:"mt-6",onClick:()=>{a(!1)},isSmall:!0},(0,u.__)("Back to Main Screen","ast-block-templates")))))};var uu=o(7510),du=o(5034);function pu(){return pu=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},pu.apply(null,arguments)}const{spectra_common_styles:mu,is_rtl:fu}=ast_block_template_vars,gu="visible",hu=(0,e.A)((0,a.A)((e=>{const{getDisableAi:t,getTogglePopup:r}=e(g.U);return{disableAi:t(),togglePopup:r()}})))((0,i.memo)((({item:e,content:t,stylesheet:r,astraCustomizer:n,globalStylesheet:a,colorPalette:o,dynamicContent:s,selectedImages:l,disableAi:c,togglePopup:u,email:d,phone:p,address:m,onClickBlock:f,className:g="",fullPreview:h=!1,disableAutoScroll:b=!1})=>{const v=(0,i.useRef)(null),w=(0,i.useRef)(null),x=e["thumbnail-image-url"]||"",_=e["featured-image-url"]||"";let E=0,k=0;const[S,C]=(0,i.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`),[R,A]=(0,i.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);function P(){const e=v?.current,t=w?.current;if(!e||!t)return;const r=e.parentNode.offsetWidth/1200,n=r*t.offsetHeight;e.style.transform=`scale(${r})`,e.style.height=`${n}px`}(0,i.useLayoutEffect)((()=>{let e=!0;const i=l,u=new Image;u.src=x;const f=new Image;f.src=_;const g=w.current;function h(t,r){e&&(t.onload=()=>{r(t.src)})}h(u,C),h(f,A);const y=document.getElementById("astra-wp-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container"),b=document.getElementById("astra-block-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container");let v="";if(r&&(r=((e,t=[])=>c?e:0!==Object.keys(s).length&&s?t&&0===t.length?e:e.replace(/background-image\s*:\s*url\(['"]?([^'")]+)['"]?\)/g,(function(e,r){if((0,uu.p)(r))return e;if(!t[k]?.url)return"";const n=t[k]?.url;return k++,k%=t.length,'background-image: url("'+n+'")'})):e)(r,i)),v+=n?`<style type="text/css" id="gt-astra-customizer">${n}</style>`:"",v+=`<style type="text/css" id="gt-spectra-common-stylesheet">${mu}</style>`,v=r?`${v} <style type="text/css" id="gt-common-stylesheet">${r}</style>`:v,a&&(v+=`<style type="text/css" id="gt-global-stylesheet"> ${a} </style>`),y&&(v+=`<style type="text/css" id="gt-wpeditor-css" > ${y} </style>`),b&&(v+=`<style type="text/css" id="gt-blockeditor-css"> ${b} </style>`),g&&t){let e=g.shadowRoot;if(null===e&&(e=g.attachShadow({mode:"open"})),null===e)return;let r=t;if(!c){const e=s??[];e&&Object.keys(e)?.length>0&&Object.keys(e).forEach((t=>{r=null!==e[t]?r.replace(t,e[t]):r})),s&&Object.keys(s).length>0&&(S=r,d&&(S=S.replace("contact@example.com",d)),p&&(S=S.replace("202-555-0188",p)),m&&(S=S.replace("2360 Hood Avenue, San Diego, CA, 92123",m)),r=S,r=N(r))}e.innerHTML=v+'<div class="st-block-container">'+r+"</div>",o.forEach(((t,r)=>{e?.host.style.setProperty(`--ast-global-color-${r}`,t)}));const n=g.shadowRoot.querySelectorAll("img");e&&(n.forEach((e=>{(0,uu.p)(e.src)||c||0===i?.length||0===Object.keys(s).length||!s||T(e,"hidden")})),P(),((e,t)=>{c||0!==Object.keys(s).length&&s&&t?.length&&e?.forEach((function(e){(0,uu.p)(e.src)||(e.onload=()=>{const r=e.getAttribute("src")||"";if(r.includes("unsplash")||r.includes("pexels")||r.includes("pixabay"))return void T(e,gu);const n=t[E];if(void 0!==n)if(n.url.includes("unsplash")||n.url.includes("pexels")||n.url.includes("pixabay")){if(E++,void 0===t[E]&&(E=0),"PICTURE"===e.parentNode.nodeName)e.parentNode.querySelectorAll("source").forEach((e=>{e.setAttribute("srcset",n.optimized_url)})),e.parentNode.querySelector("img").setAttribute("src",n.optimized_url);else{const t=document.createElement("img");t.src=n.optimized_url,e.parentNode.replaceChild(t,e)}T(e,gu)}else T(e,gu);else T(e,gu)},e.onerror=()=>{T(e,gu)})}))})(n,i))}var S;return()=>{e=!1}}),[e,c,s,l]),(0,i.useEffect)((()=>{const e=new ResizeObserver(P);return e.observe(document.documentElement),()=>{e&&e.disconnect()}}),[]),(0,i.useEffect)((()=>{const e=document.querySelector("#ast-block-templates-modal-wrap");if(!e)return;const t=new MutationObserver(P);return t.observe(e,{childList:!0,attributes:!0,subtree:!0}),()=>{t&&t.disconnect()}}),[]),(0,i.useEffect)((()=>{const e=w?.current;if(e){const t=e.shadowRoot;o.forEach(((e,r)=>{null!==t&&t.host.style.setProperty(`--ast-global-color-${r}`,e)}))}}),[o]);const T=(e,t)=>{e&&(e.style.visibility=t)},N=(e="")=>m?e.replace(/(src="https:\/\/maps\.google\.com\/maps\?q=)([^&]+)(&z=\d+&hl=en&t=m&output=embed&iwloc=near")/g,`$1${encodeURIComponent(m)}$3`):e;let I=0,O=0;const L=(e,t,r)=>{const n=e.scrollTop,a=t-n;let i=0;const o=function(){i+=20;const t=du.A.linearTween(i,n,a,r);e.scrollTop=t,i<r&&(I=setTimeout(o,20))};o()},B=(e,t)=>{e&&null===e.target.closest(".gt-single-block-action-btns")&&"function"==typeof f&&f(t)};(0,i.useEffect)((()=>{u||(E=0,k=0)}),[u]);const j=fu?"origin-top-right":"origin-top-left";return React.createElement("div",{className:(0,y.xW)("cursor-pointer relative border border-solid border-border-primary overflow-hidden group",g)},React.createElement("div",{className:(0,y.xW)("thumbnail left-0 m-0 min-h-[auto] overflow-visible text-left top-0 relative pointer-events-none",j),ref:v},React.createElement("div",{className:(0,y.xW)("absolute w-[1200px] pointer-events-none overflow-hidden",h?"max-h-fit":"max-h-[1600px]"),ref:w},!t&&React.createElement("img",{srcSet:`${R}, ${S}`,src:S,alt:"Preview"}),React.createElement("div",{className:"preview"},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"})))),!h&&React.createElement("div",pu({className:"absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end",onClick:t=>B(t,e)},b&&{onMouseEnter:()=>{if("page"!==e.type)return;const t=w.current;I&&clearTimeout(I),O=setTimeout((()=>{L(t,t.scrollHeight,4e3)}),1e3)},onMouseLeave:()=>{O&&clearTimeout(O);const e=w.current;I&&clearTimeout(I),L(e,0,1500)}},{role:"button",tabIndex:"0",onKeyDown:t=>"Enter"===t.key?B(t,e):null})))})));var yu=o(9453);const bu=(0,i.memo)((()=>{const{setCurrentScreen:e,setPagePreview:n}=(0,r.A)(g.U),{pagePreviewItem:a,adaptiveMode:o,defaultPalette:s,activePalette:l,dynamicContent:c,selectedImages:d,businessContact:p,allPages:m,importInProgress:f}=(0,t.A)((e=>{const{getPagePreview:t,getAdaptiveMode:r,getDefaultPageColorPalette:n,getActivePagePalette:a,getDynamicContent:i,getAIStepData:o,getAllBlocksPages:s,getImportInProgress:l}=e(g.U);return{pagePreviewItem:t(),adaptiveMode:r(),defaultPalette:n(),activePalette:a(),dynamicContent:i(),selectedImages:o().selectedImages,businessContact:o().businessContact,allPages:s(),importInProgress:l()}})),[h,b]=(0,i.useState)(!1),v=(0,y.Fx)(),w=()=>v.notInstalled?(0,u.__)("Install Spectra & Insert","ast-block-templates"):v.inactive?(0,u.__)("Activate Spectra & Insert","ast-block-templates"):(0,u.__)("Insert","ast-block-templates"),x=e=>()=>{n(e)},_=Object.keys(l).length>0?l.colors:s.colors,E=m.filter((e=>e.category===a.category));return React.createElement("div",{className:"flex h-full pt-6 px-10 mx-auto gap-10"},React.createElement("div",{className:"flex-1 h-full"},React.createElement("div",{className:"h-full flex flex-col items-stretch justify-stretch space-y-6"},React.createElement("div",{className:"flex flex-col sm:flex-row items-start justify-start gap-5"},React.createElement(ii.A,{className:(0,y.xW)("inline-flex pl-1 py-1 pr-2 h-7 gap-1 border-border-primary text-body-text"),variant:"white",hasPrefixIcon:!0,isSmall:!0,onClick:()=>e("all-block-pages-grid")},React.createElement(Yi,{className:"w-4 h-4"}),React.createElement("span",null,"Back")),React.createElement("h5",{className:"m-0 text-xl font-semibold inline-block"},"Page Preview")),React.createElement("div",{className:"h-full w-full overflow-y-auto ast-thin-scrollbar !mb-6"},React.createElement(hu,{item:a,content:a.content,stylesheet:a.stylesheet,astraCustomizer:o?ast_block_template_vars.astra_customizer_css:ast_block_template_vars.server_astra_customizer_css,globalStylesheet:a.global_stylesheet,colorPalette:_,dynamicContent:c[a.category]??[],selectedImages:d,email:p.email,phone:p.phone,address:p.address,fullPreview:!0})))),React.createElement("div",{className:"flex flex-col w-2/6 lg:w-[35%] h-full"},React.createElement("h5",{className:"m-0 text-xl font-semibold inline-block mb-6"},"Other Designs"),React.createElement("div",{className:"grid grid-cols-1 xl:grid-cols-2 auto-rows-auto overflow-y-auto ast-thin-scrollbar gap-2.5 lg:gap-5 xl:gap-10"},E.map((e=>React.createElement("div",{key:e.ID,className:(0,y.xW)("w-full h-fit hover:shadow-xl group transition ease-in-out duration-150",f&&"pointer-events-none !cursor-not-allowed")},React.createElement(hu,{className:"group-hover:border-accent-spectra transition ease-in-out duration-150",item:e,content:e.content,stylesheet:e.stylesheet,astraCustomizer:o?ast_block_template_vars.astra_customizer_css:ast_block_template_vars.server_astra_customizer_css,globalStylesheet:e.global_stylesheet,colorPalette:_,dynamicContent:c[e.category]??[],selectedImages:d,email:p.email,phone:p.phone,address:p.address,onClickBlock:x(e)}))))),React.createElement("div",{className:"pt-8 pb-6 mt-auto"},React.createElement("div",{className:"flex flex-wrap xl:flex-nowrap gap-6 items-center justify-center"},React.createElement(Vs.A,{item:a},(({isFavorite:e,onClickFavorite:t})=>React.createElement(ii.A,{className:(0,y.xW)("xl:w-1/2 w-full truncate",f&&"pointer-events-none !cursor-not-allowed"),variant:"white",hasSuffixIcon:!0,onClick:t},React.createElement("span",{className:"hidden sm:inline text-base font-medium truncate"},e?"Remove from favorites":"Add to favorites"),React.createElement(Bs.A,{className:(0,y.xW)("shrink-0 size-6 sm:size-5 transition-colors ease-out duration-150",e?"fill-favorite text-favorite":"group-hover/favorites:fill-favorite group-hover/favorites:text-favorite")})))),React.createElement(yu.A,{title:w(),showIcon:v.active,liveRequest:!0,item:a,importing:h,onClick:()=>{b(!0)},onBlockImport:()=>{b(!1),e("all-block-pages-grid")},onImportFail:()=>{b(!1)}},(({onClick:e,disableImport:t})=>React.createElement(ii.A,{className:(0,y.xW)("w-full xl:w-1/2 relative truncate"),variant:"primary",hasSuffixIcon:v.active,onClick:e,disabled:t||f&&!h},React.createElement("span",{className:(0,y.xW)("hidden sm:inline truncate",h&&"invisible")},w()),React.createElement(As.A,{className:(0,y.xW)("sm:size-5 size-6 shrink-0",h&&"invisible")}),h&&React.createElement("span",{className:"absolute top-0 left-0 w-full h-full flex items-center justify-center"},React.createElement(Vi.A,null)))))))))})),vu=({filterPagesBySearchTerm:e,currentScreen:r})=>{const{showPagesOnboarding:n,stepData:{businessDetails:a},dynamicContentSyncStatus:o,disableAi:s}=(0,t.A)((e=>{const{getShowPagesOnboarding:t,getAIStepData:r,getDynamicContentSyncStatus:n,getDisableAi:a}=e(g.U);return{showPagesOnboarding:t(),stepData:r(),dynamicContentSyncStatus:n(),disableAi:a()}}),[]);return(0,i.useEffect)((()=>{localStorage.setItem("gt-current-screen-"+ast_block_template_vars.site_host,r)}),[r]),"all-single-pages"===r?React.createElement(uc,null):"all-wireframe-grid"===r?React.createElement(Lo,null):"all-blocks-grid"===r?React.createElement(_s,null):"all-block-pages-grid"===r?n&&a&&!o.pages&&!s?React.createElement(kc,null):React.createElement(gc,null):"single-block-page-full-preview"===r?React.createElement(bu,null):e||"all-single-site-pages"!==r?"all-favorites"===r?React.createElement(Ac,null):"all-sites-grid"===r?React.createElement(sc,null):"full-width-block-preview"===r?React.createElement(lc,null):"full-width-page-preview"===r?React.createElement(cc,null):void 0:React.createElement(nc,null)},wu=(0,e.A)((0,a.A)((e=>{const{getFilterPagesBySearchTerm:t,getSitePreview:r,getCurrentScreen:n,getTogglePopup:a,getConnectZipAI:i}=e("ast-block-templates");return{filterPagesBySearchTerm:t(),sitePreview:r(),currentScreen:n(),togglePopup:a(),connectZipAI:i()}})),(0,n.A)((e=>{const{setActiveBlockPaletteSlug:t,setActiveBlockPalette:r,setActivePagePaletteSlug:n,setActivePagePalette:a,toggleOnboardingAIStep:i}=e("ast-block-templates");return{setActiveBlockPaletteSlug:t,setActiveBlockPalette:r,setActivePagePaletteSlug:n,setActivePagePalette:a,toggleOnboardingAIStep:i}})))((0,i.memo)((({sitePreview:e,currentScreen:n,togglePopup:a,setActiveBlockPaletteSlug:o,setActiveBlockPalette:s,setActivePagePaletteSlug:l,setActivePagePalette:c,connectZipAI:d,toggleOnboardingAIStep:p})=>{const{token:m=null}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return{...t()}}),[]),{initializeBlocksAndSites:f}=(0,r.A)(g.U);(0,i.useEffect)((()=>{!0===a&&(document.body.classList.add("ast-block-templates-modal-open"),document.getElementById("ast-block-templates-modal-wrap").classList.add("open"),o("style-1"),s(ast_block_template_vars.block_color_palette["style-1"]),l("style-1"),c(ast_block_template_vars.page_color_palette["style-1"]))}),[a,n,e]);const{initiateImportProcess:h}=((e=!1)=>{const{index:n}=wp.data.select("core/block-editor").getBlockInsertionPoint(),{insertBlocks:a}=wp.data.dispatch("core/block-editor"),{importInProgress:o,importItemInfo:s,activePagePaletteSlug:l,activeBlockPaletteSlug:c,currentScreen:d,disableAI:p,togglePopup:m}=(0,t.A)((e=>{const{getImportInProgress:t,getAIStepData:r,getImportItemInfo:n,getCurrentScreen:a,getActiveBlockPaletteSlug:i,getActivePagePaletteSlug:o,getDisableAi:s,getTogglePopup:l}=e(g.U);return{importInProgress:t(),stepData:r(),importItemInfo:n(),activePagePaletteSlug:o(),currentScreen:a(),activeBlockPaletteSlug:i(),disableAI:s(),togglePopup:l()}}),[]),{setImportInProgress:f,setTogglePopup:h,setImportItemInfo:b,setNotice:v}=(0,r.A)(g.U),w=(0,y.Fx)();let[x]=(0,i.useState)(s),_=[];const E=e=>{const t=React.createElement("a",{href:"https://wpastra.com/contact",target:"_blank",rel:"noreferrer"},(0,u.__)("support team","ast-block-templates")),r=`\n\t\t\t<span className='block'>\n\t\t\t\t${(0,u.nv)((0,u.__)("If this error continues please contact our %1$s.","ast-block-templates"),nu(t))}\n\t\t\t</span>\n\t\t`;v({type:"import-error",title:"Oops, something went wrong!",message:nu(React.createElement("span",{className:"block"},e))+r})},k=(e="info",t="",r="default")=>{wp?.data.dispatch("core/notices").createNotice(e,t,{isDismissible:!0,type:r})},S=async()=>{try{v({type:"import-info",message:(0,u.__)("Activating Spectra plugin…","ast-block-templates")}),await(0,Cs.s)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){throw new Error((0,u.__)("Failed to active Spectra. Please try again later.","ast-block-templates"),{cause:"customError"})}},C=async()=>{try{v({type:"import-info",message:(0,u.__)("Activating WPForms plugin…","ast-block-templates")}),await(0,Cs.s)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await A()}catch(e){throw new Error((0,u.__)("Failed to active WPForms. Please try again later.","ast-block-templates"),{cause:"customError"})}},R=(t,{type:r,colorPalette:i})=>{const o=x.original_content,s=!!r&&r||("all-blocks-grid"===d?"block":"page"),m="block"===s?x["blocks-category"][0]:x["pages-category"][0],g=!!i&&i||("block"===s?c:l),b=x?.id;iu({action:"ast_block_templates_import_block",content:o,category:m,id:b,_ajax_nonce:ast_block_template_vars._ajax_nonce,style:g,disableAI:p,block_type:s}).done((r=>{f(!1);const i=(0,y.XD)(ou(r));a(i,n,"",!1),e&&h(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open"),"function"==typeof t&&t(r,n),k("success","The block has been imported successfully."),"active"!==ast_block_template_vars.spectra_status&&(0,Wo.mP)()})).fail((()=>{throw new Error((0,u.__)("Failed to import the block. Please try again later.","ast-block-templates"),{cause:"customError"})}))},A=(e,{type:t,colorPalette:r})=>{x?.["post-meta"]?.["astra-site-wpforms-path"]?(e=>{iu({action:"ast_block_templates_import_wpforms",id:x?.id,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((()=>{R(e)})).fail((()=>{throw new Error((0,u.__)("Failed import WPForms. Please try again later.","ast-block-templates"),{cause:"customError"})}))})(e):R(e,{type:t,colorPalette:r})};return{initiateImportProcess:async({blockId:e,type:t,colorPalette:r},n)=>{if(!o){f(!0),m||h();try{w.notInstalled?(await(async()=>{try{v({type:"import-info",message:(0,u.__)("Installing Spectra plugin…","ast-block-templates")}),await(0,Cs.o)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){throw new Error((0,u.__)("Failed to install Spectra. Please try again later.","ast-block-templates"),{cause:"customError"})}})(),await S()):w.inactive&&await S();const a=await(0,Rs.V)(e,"astra-blocks");b(a),x=a,_=a?.["post-meta"]?.["astra-blocks-required-plugins"]?au.j.parse(a["post-meta"]["astra-blocks-required-plugins"]):[],_.length?"not-installed"===ast_block_template_vars.wpforms_status?(await(async()=>{try{v({type:"import-info",message:(0,u.__)("Installing WPForms plugin…","ast-block-templates")}),await(0,Cs.o)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"})}catch(e){throw new Error((0,u.__)("Failed to install WPForms. Please try again later.","ast-block-templates"),{cause:"customError"})}})(),await C()):"inactive"===ast_block_template_vars.wpforms_status?await C():await A(n,{type:t,colorPalette:r}):await A(n,{type:t,colorPalette:r})}catch(e){if("customError"===e?.cause)return void E(e.message);k("error","Failed to import the block. Please try again later or contact support for assistance."),E((0,u.__)("Failed to fetch block data. Please try again later.","ast-block-templates"))}}}}})(!0);return(0,i.useEffect)((()=>{const e="ast-import",t=(0,y._9)(e);if(!t||!m)return(0,y.D6)(e);const{blockId:r,blockType:n,blockPaletteSlug:a,pagePaletteSlug:i}=t;h({blockId:r,colorPalette:"block"===n?a:i,type:n}),(0,y.D6)(e),wb()}),[]),(0,i.useEffect)((()=>{su.on("open-onboarding-ai",(()=>{p(!0)}))}),[]),(0,i.useEffect)((()=>{f()}),[]),React.createElement("div",{className:"bg-white h-[calc(100vh_-_9.5rem)]"},d?React.createElement(_c,null):React.createElement(vu,{currentScreen:n}),React.createElement(cu,null))})));function xu({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m4.5 12.75 6 6 9-13.5"}))}const _u=i.forwardRef(xu);var Eu=o(6607),ku="tippy-content",Su="tippy-backdrop",Cu="tippy-arrow",Ru="tippy-svg-arrow",Au={passive:!0,capture:!0},Pu=function(){return document.body};function Tu(e,t,r){if(Array.isArray(e)){var n=e[t];return null==n?Array.isArray(r)?r[t]:r:n}return e}function Nu(e,t){var r={}.toString.call(e);return 0===r.indexOf("[object")&&r.indexOf(t+"]")>-1}function Iu(e,t){return"function"==typeof e?e.apply(void 0,t):e}function Ou(e,t){return 0===t?e:function(n){clearTimeout(r),r=setTimeout((function(){e(n)}),t)};var r}function Lu(e){return[].concat(e)}function Bu(e,t){-1===e.indexOf(t)&&e.push(t)}function ju(e){return[].slice.call(e)}function Du(e){return Object.keys(e).reduce((function(t,r){return void 0!==e[r]&&(t[r]=e[r]),t}),{})}function Fu(e){return["Element","Fragment"].some((function(t){return Nu(e,t)}))}function Mu(e,t){e.forEach((function(e){e&&(e.style.transitionDuration=t+"ms")}))}function zu(e,t){e.forEach((function(e){e&&e.setAttribute("data-state",t)}))}function Vu(e,t,r){var n=t+"EventListener";["transitionend","webkitTransitionEnd"].forEach((function(t){e[n](t,r)}))}function Wu(e,t){for(var r=t;r;){var n;if(e.contains(r))return!0;r=null==r.getRootNode||null==(n=r.getRootNode())?void 0:n.host}return!1}var Uu={isTouch:!1},Hu=0;function $u(){Uu.isTouch||(Uu.isTouch=!0,window.performance&&document.addEventListener("mousemove",Zu))}function Zu(){var e=performance.now();e-Hu<20&&(Uu.isTouch=!1,document.removeEventListener("mousemove",Zu)),Hu=e}function Gu(){var e,t=document.activeElement;if((e=t)&&e._tippy&&e._tippy.reference===e){var r=t._tippy;t.blur&&!r.state.isVisible&&t.blur()}}var qu=!("undefined"==typeof window||"undefined"==typeof document||!window.msCrypto),Yu=Object.assign({appendTo:Pu,aria:{content:"auto",expanded:"auto"},delay:0,duration:[300,250],getReferenceClientRect:null,hideOnClick:!0,ignoreAttributes:!1,interactive:!1,interactiveBorder:2,interactiveDebounce:0,moveTransition:"",offset:[0,10],onAfterUpdate:function(){},onBeforeUpdate:function(){},onCreate:function(){},onDestroy:function(){},onHidden:function(){},onHide:function(){},onMount:function(){},onShow:function(){},onShown:function(){},onTrigger:function(){},onUntrigger:function(){},onClickOutside:function(){},placement:"top",plugins:[],popperOptions:{},render:null,showOnCreate:!1,touch:!0,trigger:"mouseenter focus",triggerTarget:null},{animateFill:!1,followCursor:!1,inlinePositioning:!1,sticky:!1},{allowHTML:!1,animation:"fade",arrow:!0,content:"",inertia:!1,maxWidth:350,role:"tooltip",theme:"",zIndex:9999}),Ku=Object.keys(Yu);function Xu(e){var t=(e.plugins||[]).reduce((function(t,r){var n,a=r.name,i=r.defaultValue;return a&&(t[a]=void 0!==e[a]?e[a]:null!=(n=Yu[a])?n:i),t}),{});return Object.assign({},e,t)}function Ju(e,t){var r=Object.assign({},t,{content:Iu(t.content,[e])},t.ignoreAttributes?{}:function(e,t){return(t?Object.keys(Xu(Object.assign({},Yu,{plugins:t}))):Ku).reduce((function(t,r){var n=(e.getAttribute("data-tippy-"+r)||"").trim();if(!n)return t;if("content"===r)t[r]=n;else try{t[r]=JSON.parse(n)}catch(e){t[r]=n}return t}),{})}(e,t.plugins));return r.aria=Object.assign({},Yu.aria,r.aria),r.aria={expanded:"auto"===r.aria.expanded?t.interactive:r.aria.expanded,content:"auto"===r.aria.content?t.interactive?null:"describedby":r.aria.content},r}function Qu(e){var t=e.firstElementChild,r=ju(t.children);return{box:t,content:r.find((function(e){return e.classList.contains(ku)})),arrow:r.find((function(e){return e.classList.contains(Cu)||e.classList.contains(Ru)})),backdrop:r.find((function(e){return e.classList.contains(Su)}))}}var ed=1,td=[],rd=[];function nd(e,t){var r,n,a,i,o,s,l,c,u=Ju(e,Object.assign({},Yu,Xu(Du(t)))),d=!1,p=!1,m=!1,f=!1,g=[],h=Ou(G,u.interactiveDebounce),y=ed++,b=(c=u.plugins).filter((function(e,t){return c.indexOf(e)===t})),v={id:y,reference:e,popper:document.createElement("div"),popperInstance:null,props:u,state:{isEnabled:!0,isVisible:!1,isDestroyed:!1,isMounted:!1,isShown:!1},plugins:b,clearDelayTimeouts:function(){clearTimeout(r),clearTimeout(n),cancelAnimationFrame(a)},setProps:function(t){if(!v.state.isDestroyed){O("onBeforeUpdate",[v,t]),$();var r=v.props,n=Ju(e,Object.assign({},r,Du(t),{ignoreAttributes:!0}));v.props=n,H(),r.interactiveDebounce!==n.interactiveDebounce&&(j(),h=Ou(G,n.interactiveDebounce)),r.triggerTarget&&!n.triggerTarget?Lu(r.triggerTarget).forEach((function(e){e.removeAttribute("aria-expanded")})):n.triggerTarget&&e.removeAttribute("aria-expanded"),B(),I(),_&&_(r,n),v.popperInstance&&(X(),Q().forEach((function(e){requestAnimationFrame(e._tippy.popperInstance.forceUpdate)}))),O("onAfterUpdate",[v,t])}},setContent:function(e){v.setProps({content:e})},show:function(){var e=v.state.isVisible,t=v.state.isDestroyed,r=!v.state.isEnabled,n=Uu.isTouch&&!v.props.touch,a=Tu(v.props.duration,0,Yu.duration);if(!(e||t||r||n||A().hasAttribute("disabled")||(O("onShow",[v],!1),!1===v.props.onShow(v)))){if(v.state.isVisible=!0,R()&&(x.style.visibility="visible"),I(),z(),v.state.isMounted||(x.style.transition="none"),R()){var i=T();Mu([i.box,i.content],0)}var o,l,c;s=function(){var e;if(v.state.isVisible&&!f){if(f=!0,x.offsetHeight,x.style.transition=v.props.moveTransition,R()&&v.props.animation){var t=T(),r=t.box,n=t.content;Mu([r,n],a),zu([r,n],"visible")}L(),B(),Bu(rd,v),null==(e=v.popperInstance)||e.forceUpdate(),O("onMount",[v]),v.props.animation&&R()&&function(e,t){W(e,(function(){v.state.isShown=!0,O("onShown",[v])}))}(a)}},l=v.props.appendTo,c=A(),(o=v.props.interactive&&l===Pu||"parent"===l?c.parentNode:Iu(l,[c])).contains(x)||o.appendChild(x),v.state.isMounted=!0,X()}},hide:function(){var e=!v.state.isVisible,t=v.state.isDestroyed,r=!v.state.isEnabled,n=Tu(v.props.duration,1,Yu.duration);if(!(e||t||r)&&(O("onHide",[v],!1),!1!==v.props.onHide(v))){if(v.state.isVisible=!1,v.state.isShown=!1,f=!1,d=!1,R()&&(x.style.visibility="hidden"),j(),V(),I(!0),R()){var a=T(),i=a.box,o=a.content;v.props.animation&&(Mu([i,o],n),zu([i,o],"hidden"))}L(),B(),v.props.animation?R()&&function(e,t){W(e,(function(){!v.state.isVisible&&x.parentNode&&x.parentNode.contains(x)&&t()}))}(n,v.unmount):v.unmount()}},hideWithInteractivity:function(e){P().addEventListener("mousemove",h),Bu(td,h),h(e)},enable:function(){v.state.isEnabled=!0},disable:function(){v.hide(),v.state.isEnabled=!1},unmount:function(){v.state.isVisible&&v.hide(),v.state.isMounted&&(J(),Q().forEach((function(e){e._tippy.unmount()})),x.parentNode&&x.parentNode.removeChild(x),rd=rd.filter((function(e){return e!==v})),v.state.isMounted=!1,O("onHidden",[v]))},destroy:function(){v.state.isDestroyed||(v.clearDelayTimeouts(),v.unmount(),$(),delete e._tippy,v.state.isDestroyed=!0,O("onDestroy",[v]))}};if(!u.render)return v;var w=u.render(v),x=w.popper,_=w.onUpdate;x.setAttribute("data-tippy-root",""),x.id="tippy-"+v.id,v.popper=x,e._tippy=v,x._tippy=v;var E=b.map((function(e){return e.fn(v)})),k=e.hasAttribute("aria-expanded");return H(),B(),I(),O("onCreate",[v]),u.showOnCreate&&ee(),x.addEventListener("mouseenter",(function(){v.props.interactive&&v.state.isVisible&&v.clearDelayTimeouts()})),x.addEventListener("mouseleave",(function(){v.props.interactive&&v.props.trigger.indexOf("mouseenter")>=0&&P().addEventListener("mousemove",h)})),v;function S(){var e=v.props.touch;return Array.isArray(e)?e:[e,0]}function C(){return"hold"===S()[0]}function R(){var e;return!(null==(e=v.props.render)||!e.$$tippy)}function A(){return l||e}function P(){var e,t,r=A().parentNode;return r?null!=(t=Lu(r)[0])&&null!=(e=t.ownerDocument)&&e.body?t.ownerDocument:document:document}function T(){return Qu(x)}function N(e){return v.state.isMounted&&!v.state.isVisible||Uu.isTouch||i&&"focus"===i.type?0:Tu(v.props.delay,e?0:1,Yu.delay)}function I(e){void 0===e&&(e=!1),x.style.pointerEvents=v.props.interactive&&!e?"":"none",x.style.zIndex=""+v.props.zIndex}function O(e,t,r){var n;void 0===r&&(r=!0),E.forEach((function(r){r[e]&&r[e].apply(r,t)})),r&&(n=v.props)[e].apply(n,t)}function L(){var t=v.props.aria;if(t.content){var r="aria-"+t.content,n=x.id;Lu(v.props.triggerTarget||e).forEach((function(e){var t=e.getAttribute(r);if(v.state.isVisible)e.setAttribute(r,t?t+" "+n:n);else{var a=t&&t.replace(n,"").trim();a?e.setAttribute(r,a):e.removeAttribute(r)}}))}}function B(){!k&&v.props.aria.expanded&&Lu(v.props.triggerTarget||e).forEach((function(e){v.props.interactive?e.setAttribute("aria-expanded",v.state.isVisible&&e===A()?"true":"false"):e.removeAttribute("aria-expanded")}))}function j(){P().removeEventListener("mousemove",h),td=td.filter((function(e){return e!==h}))}function D(t){if(!Uu.isTouch||!m&&"mousedown"!==t.type){var r=t.composedPath&&t.composedPath()[0]||t.target;if(!v.props.interactive||!Wu(x,r)){if(Lu(v.props.triggerTarget||e).some((function(e){return Wu(e,r)}))){if(Uu.isTouch)return;if(v.state.isVisible&&v.props.trigger.indexOf("click")>=0)return}else O("onClickOutside",[v,t]);!0===v.props.hideOnClick&&(v.clearDelayTimeouts(),v.hide(),p=!0,setTimeout((function(){p=!1})),v.state.isMounted||V())}}}function F(){m=!0}function M(){m=!1}function z(){var e=P();e.addEventListener("mousedown",D,!0),e.addEventListener("touchend",D,Au),e.addEventListener("touchstart",M,Au),e.addEventListener("touchmove",F,Au)}function V(){var e=P();e.removeEventListener("mousedown",D,!0),e.removeEventListener("touchend",D,Au),e.removeEventListener("touchstart",M,Au),e.removeEventListener("touchmove",F,Au)}function W(e,t){var r=T().box;function n(e){e.target===r&&(Vu(r,"remove",n),t())}if(0===e)return t();Vu(r,"remove",o),Vu(r,"add",n),o=n}function U(t,r,n){void 0===n&&(n=!1),Lu(v.props.triggerTarget||e).forEach((function(e){e.addEventListener(t,r,n),g.push({node:e,eventType:t,handler:r,options:n})}))}function H(){var e;C()&&(U("touchstart",Z,{passive:!0}),U("touchend",q,{passive:!0})),(e=v.props.trigger,e.split(/\s+/).filter(Boolean)).forEach((function(e){if("manual"!==e)switch(U(e,Z),e){case"mouseenter":U("mouseleave",q);break;case"focus":U(qu?"focusout":"blur",Y);break;case"focusin":U("focusout",Y)}}))}function $(){g.forEach((function(e){var t=e.node,r=e.eventType,n=e.handler,a=e.options;t.removeEventListener(r,n,a)})),g=[]}function Z(e){var t,r=!1;if(v.state.isEnabled&&!K(e)&&!p){var n="focus"===(null==(t=i)?void 0:t.type);i=e,l=e.currentTarget,B(),!v.state.isVisible&&Nu(e,"MouseEvent")&&td.forEach((function(t){return t(e)})),"click"===e.type&&(v.props.trigger.indexOf("mouseenter")<0||d)&&!1!==v.props.hideOnClick&&v.state.isVisible?r=!0:ee(e),"click"===e.type&&(d=!r),r&&!n&&te(e)}}function G(e){var t=e.target,r=A().contains(t)||x.contains(t);if("mousemove"!==e.type||!r){var n=Q().concat(x).map((function(e){var t,r=null==(t=e._tippy.popperInstance)?void 0:t.state;return r?{popperRect:e.getBoundingClientRect(),popperState:r,props:u}:null})).filter(Boolean);(function(e,t){var r=t.clientX,n=t.clientY;return e.every((function(e){var t=e.popperRect,a=e.popperState,i=e.props.interactiveBorder,o=a.placement.split("-")[0],s=a.modifiersData.offset;if(!s)return!0;var l="bottom"===o?s.top.y:0,c="top"===o?s.bottom.y:0,u="right"===o?s.left.x:0,d="left"===o?s.right.x:0,p=t.top-n+l>i,m=n-t.bottom-c>i,f=t.left-r+u>i,g=r-t.right-d>i;return p||m||f||g}))})(n,e)&&(j(),te(e))}}function q(e){K(e)||v.props.trigger.indexOf("click")>=0&&d||(v.props.interactive?v.hideWithInteractivity(e):te(e))}function Y(e){v.props.trigger.indexOf("focusin")<0&&e.target!==A()||v.props.interactive&&e.relatedTarget&&x.contains(e.relatedTarget)||te(e)}function K(e){return!!Uu.isTouch&&C()!==e.type.indexOf("touch")>=0}function X(){J();var t=v.props,r=t.popperOptions,n=t.placement,a=t.offset,i=t.getReferenceClientRect,o=t.moveTransition,l=R()?Qu(x).arrow:null,c=i?{getBoundingClientRect:i,contextElement:i.contextElement||A()}:e,u=[{name:"offset",options:{offset:a}},{name:"preventOverflow",options:{padding:{top:2,bottom:2,left:5,right:5}}},{name:"flip",options:{padding:5}},{name:"computeStyles",options:{adaptive:!o}},{name:"$$tippy",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t=e.state;if(R()){var r=T().box;["placement","reference-hidden","escaped"].forEach((function(e){"placement"===e?r.setAttribute("data-placement",t.placement):t.attributes.popper["data-popper-"+e]?r.setAttribute("data-"+e,""):r.removeAttribute("data-"+e)})),t.attributes.popper={}}}}];R()&&l&&u.push({name:"arrow",options:{element:l,padding:3}}),u.push.apply(u,(null==r?void 0:r.modifiers)||[]),v.popperInstance=(0,Za.n4)(c,x,Object.assign({},r,{placement:n,onFirstUpdate:s,modifiers:u}))}function J(){v.popperInstance&&(v.popperInstance.destroy(),v.popperInstance=null)}function Q(){return ju(x.querySelectorAll("[data-tippy-root]"))}function ee(e){v.clearDelayTimeouts(),e&&O("onTrigger",[v,e]),z();var t=N(!0),n=S(),a=n[0],i=n[1];Uu.isTouch&&"hold"===a&&i&&(t=i),t?r=setTimeout((function(){v.show()}),t):v.show()}function te(e){if(v.clearDelayTimeouts(),O("onUntrigger",[v,e]),v.state.isVisible){if(!(v.props.trigger.indexOf("mouseenter")>=0&&v.props.trigger.indexOf("click")>=0&&["mouseleave","mousemove"].indexOf(e.type)>=0&&d)){var t=N(!1);t?n=setTimeout((function(){v.state.isVisible&&v.hide()}),t):a=requestAnimationFrame((function(){v.hide()}))}}else V()}}function ad(e,t){void 0===t&&(t={});var r=Yu.plugins.concat(t.plugins||[]);document.addEventListener("touchstart",$u,Au),window.addEventListener("blur",Gu);var n,a=Object.assign({},t,{plugins:r}),i=(n=e,Fu(n)?[n]:function(e){return Nu(e,"NodeList")}(n)?ju(n):Array.isArray(n)?n:ju(document.querySelectorAll(n))).reduce((function(e,t){var r=t&&nd(t,a);return r&&e.push(r),e}),[]);return Fu(e)?i[0]:i}ad.defaultProps=Yu,ad.setDefaultProps=function(e){Object.keys(e).forEach((function(t){Yu[t]=e[t]}))},ad.currentInput=Uu,Object.assign({},Eu.A,{effect:function(e){var t=e.state,r={popper:{position:t.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};Object.assign(t.elements.popper.style,r.popper),t.styles=r,t.elements.arrow&&Object.assign(t.elements.arrow.style,r.arrow)}}),ad.setDefaultProps({animation:!1});const id=ad;function od(e,t){if(null==e)return{};var r,n,a={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(a[r]=e[r]);return a}var sd="undefined"!=typeof window&&"undefined"!=typeof document;function ld(e,t){e&&("function"==typeof e&&e(t),{}.hasOwnProperty.call(e,"current")&&(e.current=t))}function cd(){return sd&&document.createElement("div")}function ud(e,t){if(e===t)return!0;if("object"==typeof e&&null!=e&&"object"==typeof t&&null!=t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(var r in e){if(!t.hasOwnProperty(r))return!1;if(!ud(e[r],t[r]))return!1}return!0}return!1}function dd(e){var t=[];return e.forEach((function(e){t.find((function(t){return ud(e,t)}))||t.push(e)})),t}var pd=sd?i.useLayoutEffect:i.useEffect;function md(e,t,r){r.split(/\s+/).forEach((function(r){r&&e.classList[t](r)}))}var fd={name:"className",defaultValue:"",fn:function(e){var t=e.popper.firstElementChild,r=function(){var t;return!!(null==(t=e.props.render)?void 0:t.$$tippy)};function n(){e.props.className&&!r()||md(t,"add",e.props.className)}return{onCreate:n,onBeforeUpdate:function(){r()&&md(t,"remove",e.props.className)},onAfterUpdate:n}}};function gd(e){return function(t){var r,n,a=t.children,o=t.content,s=t.visible,l=t.singleton,u=t.render,d=t.reference,p=t.disabled,m=void 0!==p&&p,f=t.ignoreAttributes,g=void 0===f||f,h=(t.__source,t.__self,od(t,["children","content","visible","singleton","render","reference","disabled","ignoreAttributes","__source","__self"])),y=void 0!==s,b=void 0!==l,v=(0,i.useState)(!1),w=v[0],x=v[1],_=(0,i.useState)({}),E=_[0],k=_[1],S=(0,i.useState)(),C=S[0],R=S[1],A=(r=function(){return{container:cd(),renders:1}},(n=(0,i.useRef)()).current||(n.current="function"==typeof r?r():r),n.current),P=Object.assign({ignoreAttributes:g},h,{content:A.container});y&&(P.trigger="manual",P.hideOnClick=!1),b&&(m=!0);var T=P,N=P.plugins||[];u&&(T=Object.assign({},P,{plugins:b&&null!=l.data?[].concat(N,[{fn:function(){return{onTrigger:function(e,t){var r=l.data.children.find((function(e){return e.instance.reference===t.currentTarget}));e.state.$$activeSingletonInstance=r.instance,R(r.content)}}}}]):N,render:function(){return{popper:A.container}}}));var I=[d].concat(a?[a.type]:[]);return pd((function(){var t=d;d&&d.hasOwnProperty("current")&&(t=d.current);var r=e(t||A.ref||cd(),Object.assign({},T,{plugins:[fd].concat(P.plugins||[])}));return A.instance=r,m&&r.disable(),s&&r.show(),b&&l.hook({instance:r,content:o,props:T,setSingletonContent:R}),x(!0),function(){r.destroy(),null==l||l.cleanup(r)}}),I),pd((function(){var e,t,r,n,a;if(1!==A.renders){var i=A.instance;i.setProps((t=i.props,r=T,Object.assign({},r,{popperOptions:Object.assign({},t.popperOptions,r.popperOptions,{modifiers:dd([].concat((null==(n=t.popperOptions)?void 0:n.modifiers)||[],(null==(a=r.popperOptions)?void 0:a.modifiers)||[]))})}))),null==(e=i.popperInstance)||e.forceUpdate(),m?i.disable():i.enable(),y&&(s?i.show():i.hide()),b&&l.hook({instance:i,content:o,props:T,setSingletonContent:R})}else A.renders++})),pd((function(){var e;if(u){var t=A.instance;t.setProps({popperOptions:Object.assign({},t.props.popperOptions,{modifiers:[].concat(((null==(e=t.props.popperOptions)?void 0:e.modifiers)||[]).filter((function(e){return"$$tippyReact"!==e.name})),[{name:"$$tippyReact",enabled:!0,phase:"beforeWrite",requires:["computeStyles"],fn:function(e){var t,r=e.state,n=null==(t=r.modifiersData)?void 0:t.hide;E.placement===r.placement&&E.referenceHidden===(null==n?void 0:n.isReferenceHidden)&&E.escaped===(null==n?void 0:n.hasPopperEscaped)||k({placement:r.placement,referenceHidden:null==n?void 0:n.isReferenceHidden,escaped:null==n?void 0:n.hasPopperEscaped}),r.attributes.popper={}}}])})})}}),[E.placement,E.referenceHidden,E.escaped].concat(I)),c().createElement(c().Fragment,null,a?(0,i.cloneElement)(a,{ref:function(e){A.ref=e,ld(a.ref,e)}}):null,w&&(0,ye.createPortal)(u?u(function(e){var t={"data-placement":e.placement};return e.referenceHidden&&(t["data-reference-hidden"]=""),e.escaped&&(t["data-escaped"]=""),t}(E),C,A.instance):o,A.container))}}var hd=function(e,t){return(0,i.forwardRef)((function(r,n){var a=r.children,o=od(r,["children"]);return c().createElement(e,Object.assign({},t,o),a?(0,i.cloneElement)(a,{ref:function(e){ld(n,e),ld(a.ref,e)}}):null)}))};const yd=hd(gd(id),{render:function(){return""}});var bd=o(9896),vd=o(4785),wd=o(3065),xd=o(8601),_d=o(5128),Ed=o(6542),kd=o(4833),Sd=o(7745);var Cd=o(3630);function Rd(){return Rd=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Rd.apply(null,arguments)}const Ad=({onExit:e,placement:t="auto"})=>{const[r,n]=(0,i.useState)(!1),a=function(e,t={}){const{isStatic:r}=(0,i.useContext)(wd.Q),n=(0,i.useRef)(null),a=function(e){const t=(0,xd.M)((()=>(0,vd.OQ)(e))),{isStatic:r}=(0,i.useContext)(wd.Q);if(r){const[,r]=(0,i.useState)(e);(0,i.useEffect)((()=>t.on("change",r)),[])}return t}((0,bd.S)(e)?e.get():e),o=()=>{n.current&&n.current.stop()};return(0,i.useInsertionEffect)((()=>a.attach(((e,i)=>{if(r)return i(e);if(o(),n.current=(0,Ed.L)({keyframes:[a.get(),e],velocity:a.getVelocity(),type:"spring",restDelta:.001,restSpeed:.01,...t,onUpdate:i}),!Sd.uv.isProcessing){const e=performance.now()-Sd.uv.timestamp;e<30&&(n.current.time=(0,kd.X)(e))}return a.get()}),o)),[JSON.stringify(t)]),(0,_d.E)((()=>{if((0,bd.S)(e))return e.on("change",(e=>a.set(parseFloat(e))))}),[a]),a}(0,{damping:30,stiffness:300}),o=()=>{n((e=>!e))};return React.createElement(yd,{visible:r,onClickOutside:o,onMount:()=>{a.set(1)},onHide:()=>{a.set(0)},render:t=>React.createElement(Cd.P.div,Rd({className:"flex flex-col items-start gap-5 w-[300px] h-auto bg-white rounded-lg shadow-xl p-4 border border-solid border-border-primary",style:{opacity:a}},t),React.createElement("div",{className:"w-full space-y-2"},React.createElement("p",{className:"m-0 !text-zip-app-heading !text-base !font-semibold"},(0,u.__)("Are you sure?","ast-block-templates")),React.createElement("p",{className:"m-0 !text-zip-body-text !text-sm !font-normal"},(0,u.__)("If you prefer to continue, press “Cancel”.","ast-block-templates"))),React.createElement("div",{className:"flex justify-end gap-3 w-full"},React.createElement(ii.A,{className:"h-auto text-zip-app-heading !text-xs font-semibold !py-1.5 !px-3 rounded border border-solid border-border-primary shadow-sm",type:"button",variant:"blank",onClick:o},React.createElement("span",null,(0,u.__)("Cancel","ast-block-templates"))),React.createElement(ii.A,{className:"h-auto text-white !text-xs font-semibold !py-1.5 !px-3 rounded border border-solid border-alert-error-text bg-alert-error-text shadow-sm",type:"button",variant:"blank",onClick:e},React.createElement("span",null,(0,u.__)("Exit","ast-block-templates")))),React.createElement("div",{"data-popper-arrow":!0,className:"-top-1.5 !border-border-primary absolute size-3 bg-white !rotate-45 !border !right-5 !left-auto border-solid !border-b-0 !border-r-0"})),interactive:!0,interactiveBorder:20,placement:t},React.createElement("button",{onClick:o,className:"p-0 border-0 w-auto h-auto bg-transparent cursor-pointer focus:outline-none"},React.createElement(f,{className:"w-6 h-6 text-icon-secondary"})))};function Pd(){return Pd=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Pd.apply(null,arguments)}const{forwardRef:Td,useMemo:Nd}=wp.element,Id=Td((({disabled:e=!1,className:t,textAreaClassName:r="",error:n,register:a,name:i,validations:o,label:s,...l},c)=>{const{ref:u,...d}=Nd((()=>"function"==typeof a?a(i,o):{}),[i,a,o]);return React.createElement("div",{className:t},s&&React.createElement("label",{htmlFor:i,className:"text-sm font-medium text-zip-app-heading"},s),React.createElement("div",{className:"relative"},React.createElement("textarea",Pd({ref:e=>{if(e&&"function"==typeof u&&u(e),c)switch(typeof c){case"function":c(e);break;case"object":c.current=e}},name:i,disabled:e,className:`${s?"mt-2":""} w-full placeholder:zw-placeholder zw-input !text-sm rounded-md border outline-none focus:ring-1 focus:ring-accent-st p-4 ${n?"shadow-error border-alert-error  focus:border-accent-st ":"shadow-sm border-zip-light-border-primary focus:border-accent-st"} ${r}`},l,d))),n&&React.createElement("p",{className:"mt-1 text-sm text-alert-error "},n.message))})),Od=({continueButtonText:e="Next",previousButtonText:n="Back",onClickContinue:a,onClickPrevious:o,onClickSkip:s,disableContinue:l,loading:c=!1,className:u})=>{const{setLoadingNextStep:d}=(0,r.A)(g.U),{loadingNextStep:p}=(0,t.A)((e=>{const{getLoadingNextStep:t}=e(g.U);return{loadingNextStep:t()}}),[]),m=async(e,t)=>{p||(d(!0),"function"==typeof t&&await t(e),d(!1))};return(0,i.useEffect)((()=>{p!==c&&d(c)}),[c]),React.createElement("div",{className:(0,y.xW)("w-full flex items-center gap-4 flex-wrap md:flex-nowrap",u)},React.createElement("div",{className:"flex gap-4"},React.createElement(ii.A,{type:"submit",className:"relative !px-4.5 !leading-4 h-auto",onClick:e=>m(e,a),variant:"ai-primary",disabled:l,hasSuffixIcon:!0},React.createElement("span",{className:(0,y.xW)((p||c)&&"invisible")},e),React.createElement(Ms,{className:(0,y.xW)("w-4 h-4",(p||c)&&"invisible")}),(p||c)&&React.createElement("span",{className:"absolute inset-0 flex items-center justify-center"},React.createElement(Vi.A,null))),"function"==typeof o&&React.createElement(ii.A,{type:"button",className:"!px-4.5 !leading-4 h-auto",onClick:e=>m(e,o),variant:"ai-white"},React.createElement("span",null,n))),"function"==typeof s&&React.createElement(ii.A,{type:"button",className:"mr-auto ml-0 md:mr-0 md:ml-auto text-secondary-text !px-4.5 !leading-4 h-auto",onClick:e=>m(e,s),variant:"blank"},"Skip Step"))};var Ld=o(4403);const Bd=e=>{switch(e){case"Facebook":case"Twitter":case"Instagram":case"LinkedIn":case"YouTube":return(0,u.nv)((0,u.__)("Enter your %s account URL","ast-block-templates"),e);case"Google My Business":return(0,u.__)("Enter your Google Business URL","ast-block-templates");case"Yelp":return(0,u.__)("Enter your Yelp business URL","ast-block-templates");default:return(0,u.__)("Enter your account URL","ast-block-templates")}},jd=({socialMedia:e,onRemove:t,onEdit:r})=>{const[n,a]=(0,i.useState)(!1),[o,s]=(0,i.useState)(e.url),l=(e="")=>{""!==e?(r(e.trim()),a(!1)):a(!1)},c=Bd(e.name);return React.createElement("div",{key:e.id,className:"relative h-[50px] pl-[23px] pr-[25px] rounded-[25px] bg-white flex items-center gap-3 shadow-sm border border-solid border-border-primary",onDoubleClick:()=>{a(!0)}},!n&&React.createElement("div",{role:"button",className:"absolute top-0 right-0 w-4 h-4 rounded-full flex items-center justify-center cursor-pointer bg-nav-inactive",onClick:t,tabIndex:0,onKeyDown:t},React.createElement(f,{className:"w-4 h-4 text-white"})),React.createElement(e.icon,{className:"shrink-0 text-nav-active inline-block"}),n?React.createElement(Qo,{ref:e=>{e&&e.focus()},name:"socialMediaURL",inputClassName:"!border-0 !px-0 !bg-transparent !shadow-none focus:!ring-0 focus:!ring-0 px-0 min-w-fit placeholder:!text-[0.9rem] rounded-none flex-grow !text-black",value:o,onChange:e=>{s(e.target.value)},className:"w-full",placeholder:c,noBorder:!0,onBlur:()=>{l(o)},onKeyDown:e=>{"Enter"===e.key?(e.preventDefault(),l(o)):"Escape"===e.key&&l()},enableAutoGrow:!0}):React.createElement("p",{className:"text-sm font-medium text-nav-inactive"},e.url))},Dd=({list:e,onChange:t})=>{const r=[{name:"Facebook",id:"facebook",icon:ei.ik},{name:"Twitter",id:"twitter",icon:ei.Fi},{name:"Instagram",id:"instagram",icon:ei.oW},{name:"LinkedIn",id:"linkedin",icon:ei.ky},{name:"YouTube",id:"youtube",icon:ei.pd},{name:"Google My Business",id:"google",icon:ei.NR},{name:"Yelp",id:"yelp",icon:ei.ev}],[n,a]=(0,i.useState)(null),[o,s]=(0,i.useState)(""),l=e=>{if(""===e)return!0;const t=e.startsWith("https://");try{const r=new URL(e).hostname;return t&&!!r}catch(e){return!1}},c=t=>{if(0===e.length)return t;const r=e.map((e=>e.id));return t.filter((e=>!r.includes(e.id)))},d=r=>{if("string"!=typeof o||!o?.trim())return;const i=o.trim(),c=[...e,{...n,url:i,valid:l(i)}];t(c),a(null),s("")},p=(0,i.useMemo)((()=>e.map((e=>{const t=e.url,n=l(t,e.id);return{...e,url:t,valid:n,icon:r.find((t=>t.id===e.id))?.icon}}))),[e]);return React.createElement("div",null,React.createElement("div",{className:"text-sm font-medium mb-5 text-zip-app-heading flex gap-1 items-center"},(0,u.__)("Social Media","ast-block-templates"),React.createElement(b.A,{placement:"top",content:React.createElement(React.Fragment,null,(0,u.__)("Please enter a full URL. Eg. https://twitter.com/abcd, https://instagram.com/abcd, https://facebook.com/abcd","ast-block-templates"))},React.createElement(zi,{className:"w-4 h-4"}))),React.createElement("div",{className:"flex items-start gap-4 flex-wrap"},p?.length>0&&React.createElement("div",{className:"flex items-start gap-4 flex-wrap"},p.map((r=>React.createElement("div",{key:r.id},React.createElement(jd,{socialMedia:r,onRemove:()=>{t(p.filter((e=>e.id!==r.id)))},onEdit:n=>((r,n)=>{const a=e.map((e=>{if(e.id===r){const t=n.trim();return{...e,url:t,valid:l(t)}}return e}));t(a)})(r.id,n)}),!r.valid&&React.createElement("div",{className:"p-3"},React.createElement("p",{className:"!m-0 !p-0 !text-alert-error !text-sm"},(0,u.__)("This might not be a valid URL.","ast-block-templates"))))))),(()=>{if(n){const e=n?Bd(n.name):"Enter your account URL";return React.createElement("div",{className:"h-[50px] w-[520px] rounded-[25px] bg-white flex items-center border border-solid border-border-primary"},React.createElement(Qo,{value:o,onChange:e=>{s(e.target.value)},ref:e=>{e&&e.focus()},name:"socialMediaURL",inputClassName:"!pr-10 !pl-11 !border-0 !bg-transparent !shadow-none focus:!ring-0",className:"w-full",placeholder:e,noBorder:!0,prefixIconClassName:"absolute left-4 flex items-center",prefixIcon:React.createElement(n.icon,{className:"text-nav-active inline-block"}),onBlur:e=>{e.preventDefault(),d(n.id)},onKeyDown:e=>{"Enter"===e.key?(e.preventDefault(),d(n.id)):"Escape"===e.key&&(a(null),s(""))}}))}return c(r).length?React.createElement(Ja,{width:"60",contentClassName:"p-4 bg-white [&>:first-child]:pb-2.5 [&>:last-child]:pt-2.5 [&>:not(:first-child,:last-child)]:py-2.5 !divide-y !divide-border-primary divide-solid divide-x-0",trigger:React.createElement("div",{className:"p-3 rounded-full flex items-center justify-center bg-white cursor-pointer border border-border-primary border-solid shadow-sm"},React.createElement(Ld.A,{className:"w-6 h-6 text-accent-ai"})),placement:"top-start"},c(r).map(((e,t)=>React.createElement(Ja.Item,{as:"div",role:"none",key:t,className:"only:!py-0",onClick:()=>a(e)},React.createElement("button",{onClick:()=>null,type:"button",className:"w-full flex items-center text-sm font-normal text-left py-2 px-2 leading-5 hover:bg-background-secondary focus:outline-none transition duration-150 ease-in-out space-x-2 rounded bg-transparent border-0 cursor-pointer"},React.createElement(e.icon,{className:"text-nav-inactive inline-block"}),React.createElement("span",{className:"text-body-text"},e.name)))))):""})()))};var Fd,Md;!function(e){e.assertEqual=e=>e,e.assertIs=function(e){},e.assertNever=function(e){throw new Error},e.arrayToEnum=e=>{const t={};for(const r of e)t[r]=r;return t},e.getValidEnumValues=t=>{const r=e.objectKeys(t).filter((e=>"number"!=typeof t[t[e]])),n={};for(const e of r)n[e]=t[e];return e.objectValues(n)},e.objectValues=t=>e.objectKeys(t).map((function(e){return t[e]})),e.objectKeys="function"==typeof Object.keys?e=>Object.keys(e):e=>{const t=[];for(const r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.push(r);return t},e.find=(e,t)=>{for(const r of e)if(t(r))return r},e.isInteger="function"==typeof Number.isInteger?e=>Number.isInteger(e):e=>"number"==typeof e&&isFinite(e)&&Math.floor(e)===e,e.joinValues=function(e,t=" | "){return e.map((e=>"string"==typeof e?`'${e}'`:e)).join(t)},e.jsonStringifyReplacer=(e,t)=>"bigint"==typeof t?t.toString():t}(Fd||(Fd={})),function(e){e.mergeShapes=(e,t)=>({...e,...t})}(Md||(Md={}));const zd=Fd.arrayToEnum(["string","nan","number","integer","float","boolean","date","bigint","symbol","function","undefined","null","array","object","unknown","promise","void","never","map","set"]),Vd=e=>{switch(typeof e){case"undefined":return zd.undefined;case"string":return zd.string;case"number":return isNaN(e)?zd.nan:zd.number;case"boolean":return zd.boolean;case"function":return zd.function;case"bigint":return zd.bigint;case"symbol":return zd.symbol;case"object":return Array.isArray(e)?zd.array:null===e?zd.null:e.then&&"function"==typeof e.then&&e.catch&&"function"==typeof e.catch?zd.promise:"undefined"!=typeof Map&&e instanceof Map?zd.map:"undefined"!=typeof Set&&e instanceof Set?zd.set:"undefined"!=typeof Date&&e instanceof Date?zd.date:zd.object;default:return zd.unknown}},Wd=Fd.arrayToEnum(["invalid_type","invalid_literal","custom","invalid_union","invalid_union_discriminator","invalid_enum_value","unrecognized_keys","invalid_arguments","invalid_return_type","invalid_date","invalid_string","too_small","too_big","invalid_intersection_types","not_multiple_of","not_finite"]);class Ud extends Error{constructor(e){super(),this.issues=[],this.addIssue=e=>{this.issues=[...this.issues,e]},this.addIssues=(e=[])=>{this.issues=[...this.issues,...e]};const t=new.target.prototype;Object.setPrototypeOf?Object.setPrototypeOf(this,t):this.__proto__=t,this.name="ZodError",this.issues=e}get errors(){return this.issues}format(e){const t=e||function(e){return e.message},r={_errors:[]},n=e=>{for(const a of e.issues)if("invalid_union"===a.code)a.unionErrors.map(n);else if("invalid_return_type"===a.code)n(a.returnTypeError);else if("invalid_arguments"===a.code)n(a.argumentsError);else if(0===a.path.length)r._errors.push(t(a));else{let e=r,n=0;for(;n<a.path.length;){const r=a.path[n];n===a.path.length-1?(e[r]=e[r]||{_errors:[]},e[r]._errors.push(t(a))):e[r]=e[r]||{_errors:[]},e=e[r],n++}}};return n(this),r}static assert(e){if(!(e instanceof Ud))throw new Error(`Not a ZodError: ${e}`)}toString(){return this.message}get message(){return JSON.stringify(this.issues,Fd.jsonStringifyReplacer,2)}get isEmpty(){return 0===this.issues.length}flatten(e=(e=>e.message)){const t={},r=[];for(const n of this.issues)n.path.length>0?(t[n.path[0]]=t[n.path[0]]||[],t[n.path[0]].push(e(n))):r.push(e(n));return{formErrors:r,fieldErrors:t}}get formErrors(){return this.flatten()}}Ud.create=e=>new Ud(e);const Hd=(e,t)=>{let r;switch(e.code){case Wd.invalid_type:r=e.received===zd.undefined?"Required":`Expected ${e.expected}, received ${e.received}`;break;case Wd.invalid_literal:r=`Invalid literal value, expected ${JSON.stringify(e.expected,Fd.jsonStringifyReplacer)}`;break;case Wd.unrecognized_keys:r=`Unrecognized key(s) in object: ${Fd.joinValues(e.keys,", ")}`;break;case Wd.invalid_union:r="Invalid input";break;case Wd.invalid_union_discriminator:r=`Invalid discriminator value. Expected ${Fd.joinValues(e.options)}`;break;case Wd.invalid_enum_value:r=`Invalid enum value. Expected ${Fd.joinValues(e.options)}, received '${e.received}'`;break;case Wd.invalid_arguments:r="Invalid function arguments";break;case Wd.invalid_return_type:r="Invalid function return type";break;case Wd.invalid_date:r="Invalid date";break;case Wd.invalid_string:"object"==typeof e.validation?"includes"in e.validation?(r=`Invalid input: must include "${e.validation.includes}"`,"number"==typeof e.validation.position&&(r=`${r} at one or more positions greater than or equal to ${e.validation.position}`)):"startsWith"in e.validation?r=`Invalid input: must start with "${e.validation.startsWith}"`:"endsWith"in e.validation?r=`Invalid input: must end with "${e.validation.endsWith}"`:Fd.assertNever(e.validation):r="regex"!==e.validation?`Invalid ${e.validation}`:"Invalid";break;case Wd.too_small:r="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at least":"more than"} ${e.minimum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at least":"over"} ${e.minimum} character(s)`:"number"===e.type?`Number must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${e.minimum}`:"date"===e.type?`Date must be ${e.exact?"exactly equal to ":e.inclusive?"greater than or equal to ":"greater than "}${new Date(Number(e.minimum))}`:"Invalid input";break;case Wd.too_big:r="array"===e.type?`Array must contain ${e.exact?"exactly":e.inclusive?"at most":"less than"} ${e.maximum} element(s)`:"string"===e.type?`String must contain ${e.exact?"exactly":e.inclusive?"at most":"under"} ${e.maximum} character(s)`:"number"===e.type?`Number must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"bigint"===e.type?`BigInt must be ${e.exact?"exactly":e.inclusive?"less than or equal to":"less than"} ${e.maximum}`:"date"===e.type?`Date must be ${e.exact?"exactly":e.inclusive?"smaller than or equal to":"smaller than"} ${new Date(Number(e.maximum))}`:"Invalid input";break;case Wd.custom:r="Invalid input";break;case Wd.invalid_intersection_types:r="Intersection results could not be merged";break;case Wd.not_multiple_of:r=`Number must be a multiple of ${e.multipleOf}`;break;case Wd.not_finite:r="Number must be finite";break;default:r=t.defaultError,Fd.assertNever(e)}return{message:r}};let $d=Hd;function Zd(){return $d}const Gd=e=>{const{data:t,path:r,errorMaps:n,issueData:a}=e,i=[...r,...a.path||[]],o={...a,path:i};if(void 0!==a.message)return{...a,path:i,message:a.message};let s="";const l=n.filter((e=>!!e)).slice().reverse();for(const e of l)s=e(o,{data:t,defaultError:s}).message;return{...a,path:i,message:s}};function qd(e,t){const r=Zd(),n=Gd({issueData:t,data:e.data,path:e.path,errorMaps:[e.common.contextualErrorMap,e.schemaErrorMap,r,r===Hd?void 0:Hd].filter((e=>!!e))});e.common.issues.push(n)}class Yd{constructor(){this.value="valid"}dirty(){"valid"===this.value&&(this.value="dirty")}abort(){"aborted"!==this.value&&(this.value="aborted")}static mergeArray(e,t){const r=[];for(const n of t){if("aborted"===n.status)return Kd;"dirty"===n.status&&e.dirty(),r.push(n.value)}return{status:e.value,value:r}}static async mergeObjectAsync(e,t){const r=[];for(const e of t){const t=await e.key,n=await e.value;r.push({key:t,value:n})}return Yd.mergeObjectSync(e,r)}static mergeObjectSync(e,t){const r={};for(const n of t){const{key:t,value:a}=n;if("aborted"===t.status)return Kd;if("aborted"===a.status)return Kd;"dirty"===t.status&&e.dirty(),"dirty"===a.status&&e.dirty(),"__proto__"===t.value||void 0===a.value&&!n.alwaysSet||(r[t.value]=a.value)}return{status:e.value,value:r}}}const Kd=Object.freeze({status:"aborted"}),Xd=e=>({status:"dirty",value:e}),Jd=e=>({status:"valid",value:e}),Qd=e=>"aborted"===e.status,ep=e=>"dirty"===e.status,tp=e=>"valid"===e.status,rp=e=>"undefined"!=typeof Promise&&e instanceof Promise;function np(e,t,r,n){if("a"===r&&!n)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!n:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===r?n:"a"===r?n.call(e):n?n.value:t.get(e)}function ap(e,t,r,n,a){if("m"===n)throw new TypeError("Private method is not writable");if("a"===n&&!a)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!a:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===n?a.call(e,r):a?a.value=r:t.set(e,r),r}var ip,op,sp;"function"==typeof SuppressedError&&SuppressedError,function(e){e.errToObj=e=>"string"==typeof e?{message:e}:e||{},e.toString=e=>"string"==typeof e?e:null==e?void 0:e.message}(ip||(ip={}));class lp{constructor(e,t,r,n){this._cachedPath=[],this.parent=e,this.data=t,this._path=r,this._key=n}get path(){return this._cachedPath.length||(this._key instanceof Array?this._cachedPath.push(...this._path,...this._key):this._cachedPath.push(...this._path,this._key)),this._cachedPath}}const cp=(e,t)=>{if(tp(t))return{success:!0,data:t.value};if(!e.common.issues.length)throw new Error("Validation failed but no issues detected.");return{success:!1,get error(){if(this._error)return this._error;const t=new Ud(e.common.issues);return this._error=t,this._error}}};function up(e){if(!e)return{};const{errorMap:t,invalid_type_error:r,required_error:n,description:a}=e;if(t&&(r||n))throw new Error('Can\'t use "invalid_type_error" or "required_error" in conjunction with custom error map.');return t?{errorMap:t,description:a}:{errorMap:(t,a)=>{var i,o;const{message:s}=e;return"invalid_enum_value"===t.code?{message:null!=s?s:a.defaultError}:void 0===a.data?{message:null!==(i=null!=s?s:n)&&void 0!==i?i:a.defaultError}:"invalid_type"!==t.code?{message:a.defaultError}:{message:null!==(o=null!=s?s:r)&&void 0!==o?o:a.defaultError}},description:a}}class dp{constructor(e){this.spa=this.safeParseAsync,this._def=e,this.parse=this.parse.bind(this),this.safeParse=this.safeParse.bind(this),this.parseAsync=this.parseAsync.bind(this),this.safeParseAsync=this.safeParseAsync.bind(this),this.spa=this.spa.bind(this),this.refine=this.refine.bind(this),this.refinement=this.refinement.bind(this),this.superRefine=this.superRefine.bind(this),this.optional=this.optional.bind(this),this.nullable=this.nullable.bind(this),this.nullish=this.nullish.bind(this),this.array=this.array.bind(this),this.promise=this.promise.bind(this),this.or=this.or.bind(this),this.and=this.and.bind(this),this.transform=this.transform.bind(this),this.brand=this.brand.bind(this),this.default=this.default.bind(this),this.catch=this.catch.bind(this),this.describe=this.describe.bind(this),this.pipe=this.pipe.bind(this),this.readonly=this.readonly.bind(this),this.isNullable=this.isNullable.bind(this),this.isOptional=this.isOptional.bind(this)}get description(){return this._def.description}_getType(e){return Vd(e.data)}_getOrReturnCtx(e,t){return t||{common:e.parent.common,data:e.data,parsedType:Vd(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}_processInputParams(e){return{status:new Yd,ctx:{common:e.parent.common,data:e.data,parsedType:Vd(e.data),schemaErrorMap:this._def.errorMap,path:e.path,parent:e.parent}}}_parseSync(e){const t=this._parse(e);if(rp(t))throw new Error("Synchronous parse encountered promise.");return t}_parseAsync(e){const t=this._parse(e);return Promise.resolve(t)}parse(e,t){const r=this.safeParse(e,t);if(r.success)return r.data;throw r.error}safeParse(e,t){var r;const n={common:{issues:[],async:null!==(r=null==t?void 0:t.async)&&void 0!==r&&r,contextualErrorMap:null==t?void 0:t.errorMap},path:(null==t?void 0:t.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:Vd(e)},a=this._parseSync({data:e,path:n.path,parent:n});return cp(n,a)}async parseAsync(e,t){const r=await this.safeParseAsync(e,t);if(r.success)return r.data;throw r.error}async safeParseAsync(e,t){const r={common:{issues:[],contextualErrorMap:null==t?void 0:t.errorMap,async:!0},path:(null==t?void 0:t.path)||[],schemaErrorMap:this._def.errorMap,parent:null,data:e,parsedType:Vd(e)},n=this._parse({data:e,path:r.path,parent:r}),a=await(rp(n)?n:Promise.resolve(n));return cp(r,a)}refine(e,t){const r=e=>"string"==typeof t||void 0===t?{message:t}:"function"==typeof t?t(e):t;return this._refinement(((t,n)=>{const a=e(t),i=()=>n.addIssue({code:Wd.custom,...r(t)});return"undefined"!=typeof Promise&&a instanceof Promise?a.then((e=>!!e||(i(),!1))):!!a||(i(),!1)}))}refinement(e,t){return this._refinement(((r,n)=>!!e(r)||(n.addIssue("function"==typeof t?t(r,n):t),!1)))}_refinement(e){return new om({schema:this,typeName:bm.ZodEffects,effect:{type:"refinement",refinement:e}})}superRefine(e){return this._refinement(e)}optional(){return sm.create(this,this._def)}nullable(){return lm.create(this,this._def)}nullish(){return this.nullable().optional()}array(){return Vp.create(this,this._def)}promise(){return im.create(this,this._def)}or(e){return Hp.create([this,e],this._def)}and(e){return qp.create(this,e,this._def)}transform(e){return new om({...up(this._def),schema:this,typeName:bm.ZodEffects,effect:{type:"transform",transform:e}})}default(e){const t="function"==typeof e?e:()=>e;return new cm({...up(this._def),innerType:this,defaultValue:t,typeName:bm.ZodDefault})}brand(){return new mm({typeName:bm.ZodBranded,type:this,...up(this._def)})}catch(e){const t="function"==typeof e?e:()=>e;return new um({...up(this._def),innerType:this,catchValue:t,typeName:bm.ZodCatch})}describe(e){return new(0,this.constructor)({...this._def,description:e})}pipe(e){return fm.create(this,e)}readonly(){return gm.create(this)}isOptional(){return this.safeParse(void 0).success}isNullable(){return this.safeParse(null).success}}const pp=/^c[^\s-]{8,}$/i,mp=/^[0-9a-z]+$/,fp=/^[0-9A-HJKMNP-TV-Z]{26}$/,gp=/^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i,hp=/^[a-z0-9_-]{21}$/i,yp=/^[-+]?P(?!$)(?:(?:[-+]?\d+Y)|(?:[-+]?\d+[.,]\d+Y$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:(?:[-+]?\d+W)|(?:[-+]?\d+[.,]\d+W$))?(?:(?:[-+]?\d+D)|(?:[-+]?\d+[.,]\d+D$))?(?:T(?=[\d+-])(?:(?:[-+]?\d+H)|(?:[-+]?\d+[.,]\d+H$))?(?:(?:[-+]?\d+M)|(?:[-+]?\d+[.,]\d+M$))?(?:[-+]?\d+(?:[.,]\d+)?S)?)??$/,bp=/^(?!\.)(?!.*\.\.)([A-Z0-9_'+\-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i;let vp;const xp=/^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/,_p=/^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/,Ep=/^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/,kp="((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))",Sp=new RegExp(`^${kp}$`);function Cp(e){let t="([01]\\d|2[0-3]):[0-5]\\d:[0-5]\\d";return e.precision?t=`${t}\\.\\d{${e.precision}}`:null==e.precision&&(t=`${t}(\\.\\d+)?`),t}function Rp(e){let t=`${kp}T${Cp(e)}`;const r=[];return r.push(e.local?"Z?":"Z"),e.offset&&r.push("([+-]\\d{2}:?\\d{2})"),t=`${t}(${r.join("|")})`,new RegExp(`^${t}$`)}class Ap extends dp{_parse(e){if(this._def.coerce&&(e.data=String(e.data)),this._getType(e)!==zd.string){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.string,received:t.parsedType}),Kd}const t=new Yd;let r;for(const i of this._def.checks)if("min"===i.kind)e.data.length<i.value&&(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),t.dirty());else if("max"===i.kind)e.data.length>i.value&&(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!1,message:i.message}),t.dirty());else if("length"===i.kind){const n=e.data.length>i.value,a=e.data.length<i.value;(n||a)&&(r=this._getOrReturnCtx(e,r),n?qd(r,{code:Wd.too_big,maximum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}):a&&qd(r,{code:Wd.too_small,minimum:i.value,type:"string",inclusive:!0,exact:!0,message:i.message}),t.dirty())}else if("email"===i.kind)bp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"email",code:Wd.invalid_string,message:i.message}),t.dirty());else if("emoji"===i.kind)vp||(vp=new RegExp("^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$","u")),vp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"emoji",code:Wd.invalid_string,message:i.message}),t.dirty());else if("uuid"===i.kind)gp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"uuid",code:Wd.invalid_string,message:i.message}),t.dirty());else if("nanoid"===i.kind)hp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"nanoid",code:Wd.invalid_string,message:i.message}),t.dirty());else if("cuid"===i.kind)pp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"cuid",code:Wd.invalid_string,message:i.message}),t.dirty());else if("cuid2"===i.kind)mp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"cuid2",code:Wd.invalid_string,message:i.message}),t.dirty());else if("ulid"===i.kind)fp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"ulid",code:Wd.invalid_string,message:i.message}),t.dirty());else if("url"===i.kind)try{new URL(e.data)}catch(n){r=this._getOrReturnCtx(e,r),qd(r,{validation:"url",code:Wd.invalid_string,message:i.message}),t.dirty()}else"regex"===i.kind?(i.regex.lastIndex=0,i.regex.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"regex",code:Wd.invalid_string,message:i.message}),t.dirty())):"trim"===i.kind?e.data=e.data.trim():"includes"===i.kind?e.data.includes(i.value,i.position)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:{includes:i.value,position:i.position},message:i.message}),t.dirty()):"toLowerCase"===i.kind?e.data=e.data.toLowerCase():"toUpperCase"===i.kind?e.data=e.data.toUpperCase():"startsWith"===i.kind?e.data.startsWith(i.value)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:{startsWith:i.value},message:i.message}),t.dirty()):"endsWith"===i.kind?e.data.endsWith(i.value)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:{endsWith:i.value},message:i.message}),t.dirty()):"datetime"===i.kind?Rp(i).test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:"datetime",message:i.message}),t.dirty()):"date"===i.kind?Sp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:"date",message:i.message}),t.dirty()):"time"===i.kind?new RegExp(`^${Cp(i)}$`).test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.invalid_string,validation:"time",message:i.message}),t.dirty()):"duration"===i.kind?yp.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"duration",code:Wd.invalid_string,message:i.message}),t.dirty()):"ip"===i.kind?(n=e.data,("v4"!==(a=i.version)&&a||!xp.test(n))&&("v6"!==a&&a||!_p.test(n))&&(r=this._getOrReturnCtx(e,r),qd(r,{validation:"ip",code:Wd.invalid_string,message:i.message}),t.dirty())):"base64"===i.kind?Ep.test(e.data)||(r=this._getOrReturnCtx(e,r),qd(r,{validation:"base64",code:Wd.invalid_string,message:i.message}),t.dirty()):Fd.assertNever(i);var n,a;return{status:t.value,value:e.data}}_regex(e,t,r){return this.refinement((t=>e.test(t)),{validation:t,code:Wd.invalid_string,...ip.errToObj(r)})}_addCheck(e){return new Ap({...this._def,checks:[...this._def.checks,e]})}email(e){return this._addCheck({kind:"email",...ip.errToObj(e)})}url(e){return this._addCheck({kind:"url",...ip.errToObj(e)})}emoji(e){return this._addCheck({kind:"emoji",...ip.errToObj(e)})}uuid(e){return this._addCheck({kind:"uuid",...ip.errToObj(e)})}nanoid(e){return this._addCheck({kind:"nanoid",...ip.errToObj(e)})}cuid(e){return this._addCheck({kind:"cuid",...ip.errToObj(e)})}cuid2(e){return this._addCheck({kind:"cuid2",...ip.errToObj(e)})}ulid(e){return this._addCheck({kind:"ulid",...ip.errToObj(e)})}base64(e){return this._addCheck({kind:"base64",...ip.errToObj(e)})}ip(e){return this._addCheck({kind:"ip",...ip.errToObj(e)})}datetime(e){var t,r;return"string"==typeof e?this._addCheck({kind:"datetime",precision:null,offset:!1,local:!1,message:e}):this._addCheck({kind:"datetime",precision:void 0===(null==e?void 0:e.precision)?null:null==e?void 0:e.precision,offset:null!==(t=null==e?void 0:e.offset)&&void 0!==t&&t,local:null!==(r=null==e?void 0:e.local)&&void 0!==r&&r,...ip.errToObj(null==e?void 0:e.message)})}date(e){return this._addCheck({kind:"date",message:e})}time(e){return"string"==typeof e?this._addCheck({kind:"time",precision:null,message:e}):this._addCheck({kind:"time",precision:void 0===(null==e?void 0:e.precision)?null:null==e?void 0:e.precision,...ip.errToObj(null==e?void 0:e.message)})}duration(e){return this._addCheck({kind:"duration",...ip.errToObj(e)})}regex(e,t){return this._addCheck({kind:"regex",regex:e,...ip.errToObj(t)})}includes(e,t){return this._addCheck({kind:"includes",value:e,position:null==t?void 0:t.position,...ip.errToObj(null==t?void 0:t.message)})}startsWith(e,t){return this._addCheck({kind:"startsWith",value:e,...ip.errToObj(t)})}endsWith(e,t){return this._addCheck({kind:"endsWith",value:e,...ip.errToObj(t)})}min(e,t){return this._addCheck({kind:"min",value:e,...ip.errToObj(t)})}max(e,t){return this._addCheck({kind:"max",value:e,...ip.errToObj(t)})}length(e,t){return this._addCheck({kind:"length",value:e,...ip.errToObj(t)})}nonempty(e){return this.min(1,ip.errToObj(e))}trim(){return new Ap({...this._def,checks:[...this._def.checks,{kind:"trim"}]})}toLowerCase(){return new Ap({...this._def,checks:[...this._def.checks,{kind:"toLowerCase"}]})}toUpperCase(){return new Ap({...this._def,checks:[...this._def.checks,{kind:"toUpperCase"}]})}get isDatetime(){return!!this._def.checks.find((e=>"datetime"===e.kind))}get isDate(){return!!this._def.checks.find((e=>"date"===e.kind))}get isTime(){return!!this._def.checks.find((e=>"time"===e.kind))}get isDuration(){return!!this._def.checks.find((e=>"duration"===e.kind))}get isEmail(){return!!this._def.checks.find((e=>"email"===e.kind))}get isURL(){return!!this._def.checks.find((e=>"url"===e.kind))}get isEmoji(){return!!this._def.checks.find((e=>"emoji"===e.kind))}get isUUID(){return!!this._def.checks.find((e=>"uuid"===e.kind))}get isNANOID(){return!!this._def.checks.find((e=>"nanoid"===e.kind))}get isCUID(){return!!this._def.checks.find((e=>"cuid"===e.kind))}get isCUID2(){return!!this._def.checks.find((e=>"cuid2"===e.kind))}get isULID(){return!!this._def.checks.find((e=>"ulid"===e.kind))}get isIP(){return!!this._def.checks.find((e=>"ip"===e.kind))}get isBase64(){return!!this._def.checks.find((e=>"base64"===e.kind))}get minLength(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxLength(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}}function Pp(e,t){const r=(e.toString().split(".")[1]||"").length,n=(t.toString().split(".")[1]||"").length,a=r>n?r:n;return parseInt(e.toFixed(a).replace(".",""))%parseInt(t.toFixed(a).replace(".",""))/Math.pow(10,a)}Ap.create=e=>{var t;return new Ap({checks:[],typeName:bm.ZodString,coerce:null!==(t=null==e?void 0:e.coerce)&&void 0!==t&&t,...up(e)})};class Tp extends dp{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte,this.step=this.multipleOf}_parse(e){if(this._def.coerce&&(e.data=Number(e.data)),this._getType(e)!==zd.number){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.number,received:t.parsedType}),Kd}let t;const r=new Yd;for(const n of this._def.checks)"int"===n.kind?Fd.isInteger(e.data)||(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.invalid_type,expected:"integer",received:"float",message:n.message}),r.dirty()):"min"===n.kind?(n.inclusive?e.data<n.value:e.data<=n.value)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.too_small,minimum:n.value,type:"number",inclusive:n.inclusive,exact:!1,message:n.message}),r.dirty()):"max"===n.kind?(n.inclusive?e.data>n.value:e.data>=n.value)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.too_big,maximum:n.value,type:"number",inclusive:n.inclusive,exact:!1,message:n.message}),r.dirty()):"multipleOf"===n.kind?0!==Pp(e.data,n.value)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.not_multiple_of,multipleOf:n.value,message:n.message}),r.dirty()):"finite"===n.kind?Number.isFinite(e.data)||(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.not_finite,message:n.message}),r.dirty()):Fd.assertNever(n);return{status:r.value,value:e.data}}gte(e,t){return this.setLimit("min",e,!0,ip.toString(t))}gt(e,t){return this.setLimit("min",e,!1,ip.toString(t))}lte(e,t){return this.setLimit("max",e,!0,ip.toString(t))}lt(e,t){return this.setLimit("max",e,!1,ip.toString(t))}setLimit(e,t,r,n){return new Tp({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:r,message:ip.toString(n)}]})}_addCheck(e){return new Tp({...this._def,checks:[...this._def.checks,e]})}int(e){return this._addCheck({kind:"int",message:ip.toString(e)})}positive(e){return this._addCheck({kind:"min",value:0,inclusive:!1,message:ip.toString(e)})}negative(e){return this._addCheck({kind:"max",value:0,inclusive:!1,message:ip.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:0,inclusive:!0,message:ip.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:0,inclusive:!0,message:ip.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:ip.toString(t)})}finite(e){return this._addCheck({kind:"finite",message:ip.toString(e)})}safe(e){return this._addCheck({kind:"min",inclusive:!0,value:Number.MIN_SAFE_INTEGER,message:ip.toString(e)})._addCheck({kind:"max",inclusive:!0,value:Number.MAX_SAFE_INTEGER,message:ip.toString(e)})}get minValue(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}get isInt(){return!!this._def.checks.find((e=>"int"===e.kind||"multipleOf"===e.kind&&Fd.isInteger(e.value)))}get isFinite(){let e=null,t=null;for(const r of this._def.checks){if("finite"===r.kind||"int"===r.kind||"multipleOf"===r.kind)return!0;"min"===r.kind?(null===t||r.value>t)&&(t=r.value):"max"===r.kind&&(null===e||r.value<e)&&(e=r.value)}return Number.isFinite(t)&&Number.isFinite(e)}}Tp.create=e=>new Tp({checks:[],typeName:bm.ZodNumber,coerce:(null==e?void 0:e.coerce)||!1,...up(e)});class Np extends dp{constructor(){super(...arguments),this.min=this.gte,this.max=this.lte}_parse(e){if(this._def.coerce&&(e.data=BigInt(e.data)),this._getType(e)!==zd.bigint){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.bigint,received:t.parsedType}),Kd}let t;const r=new Yd;for(const n of this._def.checks)"min"===n.kind?(n.inclusive?e.data<n.value:e.data<=n.value)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.too_small,type:"bigint",minimum:n.value,inclusive:n.inclusive,message:n.message}),r.dirty()):"max"===n.kind?(n.inclusive?e.data>n.value:e.data>=n.value)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.too_big,type:"bigint",maximum:n.value,inclusive:n.inclusive,message:n.message}),r.dirty()):"multipleOf"===n.kind?e.data%n.value!==BigInt(0)&&(t=this._getOrReturnCtx(e,t),qd(t,{code:Wd.not_multiple_of,multipleOf:n.value,message:n.message}),r.dirty()):Fd.assertNever(n);return{status:r.value,value:e.data}}gte(e,t){return this.setLimit("min",e,!0,ip.toString(t))}gt(e,t){return this.setLimit("min",e,!1,ip.toString(t))}lte(e,t){return this.setLimit("max",e,!0,ip.toString(t))}lt(e,t){return this.setLimit("max",e,!1,ip.toString(t))}setLimit(e,t,r,n){return new Np({...this._def,checks:[...this._def.checks,{kind:e,value:t,inclusive:r,message:ip.toString(n)}]})}_addCheck(e){return new Np({...this._def,checks:[...this._def.checks,e]})}positive(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!1,message:ip.toString(e)})}negative(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!1,message:ip.toString(e)})}nonpositive(e){return this._addCheck({kind:"max",value:BigInt(0),inclusive:!0,message:ip.toString(e)})}nonnegative(e){return this._addCheck({kind:"min",value:BigInt(0),inclusive:!0,message:ip.toString(e)})}multipleOf(e,t){return this._addCheck({kind:"multipleOf",value:e,message:ip.toString(t)})}get minValue(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return e}get maxValue(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return e}}Np.create=e=>{var t;return new Np({checks:[],typeName:bm.ZodBigInt,coerce:null!==(t=null==e?void 0:e.coerce)&&void 0!==t&&t,...up(e)})};class Ip extends dp{_parse(e){if(this._def.coerce&&(e.data=Boolean(e.data)),this._getType(e)!==zd.boolean){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.boolean,received:t.parsedType}),Kd}return Jd(e.data)}}Ip.create=e=>new Ip({typeName:bm.ZodBoolean,coerce:(null==e?void 0:e.coerce)||!1,...up(e)});class Op extends dp{_parse(e){if(this._def.coerce&&(e.data=new Date(e.data)),this._getType(e)!==zd.date){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.date,received:t.parsedType}),Kd}if(isNaN(e.data.getTime()))return qd(this._getOrReturnCtx(e),{code:Wd.invalid_date}),Kd;const t=new Yd;let r;for(const n of this._def.checks)"min"===n.kind?e.data.getTime()<n.value&&(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.too_small,message:n.message,inclusive:!0,exact:!1,minimum:n.value,type:"date"}),t.dirty()):"max"===n.kind?e.data.getTime()>n.value&&(r=this._getOrReturnCtx(e,r),qd(r,{code:Wd.too_big,message:n.message,inclusive:!0,exact:!1,maximum:n.value,type:"date"}),t.dirty()):Fd.assertNever(n);return{status:t.value,value:new Date(e.data.getTime())}}_addCheck(e){return new Op({...this._def,checks:[...this._def.checks,e]})}min(e,t){return this._addCheck({kind:"min",value:e.getTime(),message:ip.toString(t)})}max(e,t){return this._addCheck({kind:"max",value:e.getTime(),message:ip.toString(t)})}get minDate(){let e=null;for(const t of this._def.checks)"min"===t.kind&&(null===e||t.value>e)&&(e=t.value);return null!=e?new Date(e):null}get maxDate(){let e=null;for(const t of this._def.checks)"max"===t.kind&&(null===e||t.value<e)&&(e=t.value);return null!=e?new Date(e):null}}Op.create=e=>new Op({checks:[],coerce:(null==e?void 0:e.coerce)||!1,typeName:bm.ZodDate,...up(e)});class Lp extends dp{_parse(e){if(this._getType(e)!==zd.symbol){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.symbol,received:t.parsedType}),Kd}return Jd(e.data)}}Lp.create=e=>new Lp({typeName:bm.ZodSymbol,...up(e)});class Bp extends dp{_parse(e){if(this._getType(e)!==zd.undefined){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.undefined,received:t.parsedType}),Kd}return Jd(e.data)}}Bp.create=e=>new Bp({typeName:bm.ZodUndefined,...up(e)});class jp extends dp{_parse(e){if(this._getType(e)!==zd.null){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.null,received:t.parsedType}),Kd}return Jd(e.data)}}jp.create=e=>new jp({typeName:bm.ZodNull,...up(e)});class Dp extends dp{constructor(){super(...arguments),this._any=!0}_parse(e){return Jd(e.data)}}Dp.create=e=>new Dp({typeName:bm.ZodAny,...up(e)});class Fp extends dp{constructor(){super(...arguments),this._unknown=!0}_parse(e){return Jd(e.data)}}Fp.create=e=>new Fp({typeName:bm.ZodUnknown,...up(e)});class Mp extends dp{_parse(e){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.never,received:t.parsedType}),Kd}}Mp.create=e=>new Mp({typeName:bm.ZodNever,...up(e)});class zp extends dp{_parse(e){if(this._getType(e)!==zd.undefined){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.void,received:t.parsedType}),Kd}return Jd(e.data)}}zp.create=e=>new zp({typeName:bm.ZodVoid,...up(e)});class Vp extends dp{_parse(e){const{ctx:t,status:r}=this._processInputParams(e),n=this._def;if(t.parsedType!==zd.array)return qd(t,{code:Wd.invalid_type,expected:zd.array,received:t.parsedType}),Kd;if(null!==n.exactLength){const e=t.data.length>n.exactLength.value,a=t.data.length<n.exactLength.value;(e||a)&&(qd(t,{code:e?Wd.too_big:Wd.too_small,minimum:a?n.exactLength.value:void 0,maximum:e?n.exactLength.value:void 0,type:"array",inclusive:!0,exact:!0,message:n.exactLength.message}),r.dirty())}if(null!==n.minLength&&t.data.length<n.minLength.value&&(qd(t,{code:Wd.too_small,minimum:n.minLength.value,type:"array",inclusive:!0,exact:!1,message:n.minLength.message}),r.dirty()),null!==n.maxLength&&t.data.length>n.maxLength.value&&(qd(t,{code:Wd.too_big,maximum:n.maxLength.value,type:"array",inclusive:!0,exact:!1,message:n.maxLength.message}),r.dirty()),t.common.async)return Promise.all([...t.data].map(((e,r)=>n.type._parseAsync(new lp(t,e,t.path,r))))).then((e=>Yd.mergeArray(r,e)));const a=[...t.data].map(((e,r)=>n.type._parseSync(new lp(t,e,t.path,r))));return Yd.mergeArray(r,a)}get element(){return this._def.type}min(e,t){return new Vp({...this._def,minLength:{value:e,message:ip.toString(t)}})}max(e,t){return new Vp({...this._def,maxLength:{value:e,message:ip.toString(t)}})}length(e,t){return new Vp({...this._def,exactLength:{value:e,message:ip.toString(t)}})}nonempty(e){return this.min(1,e)}}function Wp(e){if(e instanceof Up){const t={};for(const r in e.shape){const n=e.shape[r];t[r]=sm.create(Wp(n))}return new Up({...e._def,shape:()=>t})}return e instanceof Vp?new Vp({...e._def,type:Wp(e.element)}):e instanceof sm?sm.create(Wp(e.unwrap())):e instanceof lm?lm.create(Wp(e.unwrap())):e instanceof Yp?Yp.create(e.items.map((e=>Wp(e)))):e}Vp.create=(e,t)=>new Vp({type:e,minLength:null,maxLength:null,exactLength:null,typeName:bm.ZodArray,...up(t)});class Up extends dp{constructor(){super(...arguments),this._cached=null,this.nonstrict=this.passthrough,this.augment=this.extend}_getCached(){if(null!==this._cached)return this._cached;const e=this._def.shape(),t=Fd.objectKeys(e);return this._cached={shape:e,keys:t}}_parse(e){if(this._getType(e)!==zd.object){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.object,received:t.parsedType}),Kd}const{status:t,ctx:r}=this._processInputParams(e),{shape:n,keys:a}=this._getCached(),i=[];if(!(this._def.catchall instanceof Mp&&"strip"===this._def.unknownKeys))for(const e in r.data)a.includes(e)||i.push(e);const o=[];for(const e of a){const t=n[e],a=r.data[e];o.push({key:{status:"valid",value:e},value:t._parse(new lp(r,a,r.path,e)),alwaysSet:e in r.data})}if(this._def.catchall instanceof Mp){const e=this._def.unknownKeys;if("passthrough"===e)for(const e of i)o.push({key:{status:"valid",value:e},value:{status:"valid",value:r.data[e]}});else if("strict"===e)i.length>0&&(qd(r,{code:Wd.unrecognized_keys,keys:i}),t.dirty());else if("strip"!==e)throw new Error("Internal ZodObject error: invalid unknownKeys value.")}else{const e=this._def.catchall;for(const t of i){const n=r.data[t];o.push({key:{status:"valid",value:t},value:e._parse(new lp(r,n,r.path,t)),alwaysSet:t in r.data})}}return r.common.async?Promise.resolve().then((async()=>{const e=[];for(const t of o){const r=await t.key,n=await t.value;e.push({key:r,value:n,alwaysSet:t.alwaysSet})}return e})).then((e=>Yd.mergeObjectSync(t,e))):Yd.mergeObjectSync(t,o)}get shape(){return this._def.shape()}strict(e){return ip.errToObj,new Up({...this._def,unknownKeys:"strict",...void 0!==e?{errorMap:(t,r)=>{var n,a,i,o;const s=null!==(i=null===(a=(n=this._def).errorMap)||void 0===a?void 0:a.call(n,t,r).message)&&void 0!==i?i:r.defaultError;return"unrecognized_keys"===t.code?{message:null!==(o=ip.errToObj(e).message)&&void 0!==o?o:s}:{message:s}}}:{}})}strip(){return new Up({...this._def,unknownKeys:"strip"})}passthrough(){return new Up({...this._def,unknownKeys:"passthrough"})}extend(e){return new Up({...this._def,shape:()=>({...this._def.shape(),...e})})}merge(e){return new Up({unknownKeys:e._def.unknownKeys,catchall:e._def.catchall,shape:()=>({...this._def.shape(),...e._def.shape()}),typeName:bm.ZodObject})}setKey(e,t){return this.augment({[e]:t})}catchall(e){return new Up({...this._def,catchall:e})}pick(e){const t={};return Fd.objectKeys(e).forEach((r=>{e[r]&&this.shape[r]&&(t[r]=this.shape[r])})),new Up({...this._def,shape:()=>t})}omit(e){const t={};return Fd.objectKeys(this.shape).forEach((r=>{e[r]||(t[r]=this.shape[r])})),new Up({...this._def,shape:()=>t})}deepPartial(){return Wp(this)}partial(e){const t={};return Fd.objectKeys(this.shape).forEach((r=>{const n=this.shape[r];e&&!e[r]?t[r]=n:t[r]=n.optional()})),new Up({...this._def,shape:()=>t})}required(e){const t={};return Fd.objectKeys(this.shape).forEach((r=>{if(e&&!e[r])t[r]=this.shape[r];else{let e=this.shape[r];for(;e instanceof sm;)e=e._def.innerType;t[r]=e}})),new Up({...this._def,shape:()=>t})}keyof(){return rm(Fd.objectKeys(this.shape))}}Up.create=(e,t)=>new Up({shape:()=>e,unknownKeys:"strip",catchall:Mp.create(),typeName:bm.ZodObject,...up(t)}),Up.strictCreate=(e,t)=>new Up({shape:()=>e,unknownKeys:"strict",catchall:Mp.create(),typeName:bm.ZodObject,...up(t)}),Up.lazycreate=(e,t)=>new Up({shape:e,unknownKeys:"strip",catchall:Mp.create(),typeName:bm.ZodObject,...up(t)});class Hp extends dp{_parse(e){const{ctx:t}=this._processInputParams(e),r=this._def.options;if(t.common.async)return Promise.all(r.map((async e=>{const r={...t,common:{...t.common,issues:[]},parent:null};return{result:await e._parseAsync({data:t.data,path:t.path,parent:r}),ctx:r}}))).then((function(e){for(const t of e)if("valid"===t.result.status)return t.result;for(const r of e)if("dirty"===r.result.status)return t.common.issues.push(...r.ctx.common.issues),r.result;const r=e.map((e=>new Ud(e.ctx.common.issues)));return qd(t,{code:Wd.invalid_union,unionErrors:r}),Kd}));{let e;const n=[];for(const a of r){const r={...t,common:{...t.common,issues:[]},parent:null},i=a._parseSync({data:t.data,path:t.path,parent:r});if("valid"===i.status)return i;"dirty"!==i.status||e||(e={result:i,ctx:r}),r.common.issues.length&&n.push(r.common.issues)}if(e)return t.common.issues.push(...e.ctx.common.issues),e.result;const a=n.map((e=>new Ud(e)));return qd(t,{code:Wd.invalid_union,unionErrors:a}),Kd}}get options(){return this._def.options}}Hp.create=(e,t)=>new Hp({options:e,typeName:bm.ZodUnion,...up(t)});const $p=e=>e instanceof em?$p(e.schema):e instanceof om?$p(e.innerType()):e instanceof tm?[e.value]:e instanceof nm?e.options:e instanceof am?Fd.objectValues(e.enum):e instanceof cm?$p(e._def.innerType):e instanceof Bp?[void 0]:e instanceof jp?[null]:e instanceof sm?[void 0,...$p(e.unwrap())]:e instanceof lm?[null,...$p(e.unwrap())]:e instanceof mm||e instanceof gm?$p(e.unwrap()):e instanceof um?$p(e._def.innerType):[];class Zp extends dp{_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==zd.object)return qd(t,{code:Wd.invalid_type,expected:zd.object,received:t.parsedType}),Kd;const r=this.discriminator,n=t.data[r],a=this.optionsMap.get(n);return a?t.common.async?a._parseAsync({data:t.data,path:t.path,parent:t}):a._parseSync({data:t.data,path:t.path,parent:t}):(qd(t,{code:Wd.invalid_union_discriminator,options:Array.from(this.optionsMap.keys()),path:[r]}),Kd)}get discriminator(){return this._def.discriminator}get options(){return this._def.options}get optionsMap(){return this._def.optionsMap}static create(e,t,r){const n=new Map;for(const r of t){const t=$p(r.shape[e]);if(!t.length)throw new Error(`A discriminator value for key \`${e}\` could not be extracted from all schema options`);for(const a of t){if(n.has(a))throw new Error(`Discriminator property ${String(e)} has duplicate value ${String(a)}`);n.set(a,r)}}return new Zp({typeName:bm.ZodDiscriminatedUnion,discriminator:e,options:t,optionsMap:n,...up(r)})}}function Gp(e,t){const r=Vd(e),n=Vd(t);if(e===t)return{valid:!0,data:e};if(r===zd.object&&n===zd.object){const r=Fd.objectKeys(t),n=Fd.objectKeys(e).filter((e=>-1!==r.indexOf(e))),a={...e,...t};for(const r of n){const n=Gp(e[r],t[r]);if(!n.valid)return{valid:!1};a[r]=n.data}return{valid:!0,data:a}}if(r===zd.array&&n===zd.array){if(e.length!==t.length)return{valid:!1};const r=[];for(let n=0;n<e.length;n++){const a=Gp(e[n],t[n]);if(!a.valid)return{valid:!1};r.push(a.data)}return{valid:!0,data:r}}return r===zd.date&&n===zd.date&&+e==+t?{valid:!0,data:e}:{valid:!1}}class qp extends dp{_parse(e){const{status:t,ctx:r}=this._processInputParams(e),n=(e,n)=>{if(Qd(e)||Qd(n))return Kd;const a=Gp(e.value,n.value);return a.valid?((ep(e)||ep(n))&&t.dirty(),{status:t.value,value:a.data}):(qd(r,{code:Wd.invalid_intersection_types}),Kd)};return r.common.async?Promise.all([this._def.left._parseAsync({data:r.data,path:r.path,parent:r}),this._def.right._parseAsync({data:r.data,path:r.path,parent:r})]).then((([e,t])=>n(e,t))):n(this._def.left._parseSync({data:r.data,path:r.path,parent:r}),this._def.right._parseSync({data:r.data,path:r.path,parent:r}))}}qp.create=(e,t,r)=>new qp({left:e,right:t,typeName:bm.ZodIntersection,...up(r)});class Yp extends dp{_parse(e){const{status:t,ctx:r}=this._processInputParams(e);if(r.parsedType!==zd.array)return qd(r,{code:Wd.invalid_type,expected:zd.array,received:r.parsedType}),Kd;if(r.data.length<this._def.items.length)return qd(r,{code:Wd.too_small,minimum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),Kd;!this._def.rest&&r.data.length>this._def.items.length&&(qd(r,{code:Wd.too_big,maximum:this._def.items.length,inclusive:!0,exact:!1,type:"array"}),t.dirty());const n=[...r.data].map(((e,t)=>{const n=this._def.items[t]||this._def.rest;return n?n._parse(new lp(r,e,r.path,t)):null})).filter((e=>!!e));return r.common.async?Promise.all(n).then((e=>Yd.mergeArray(t,e))):Yd.mergeArray(t,n)}get items(){return this._def.items}rest(e){return new Yp({...this._def,rest:e})}}Yp.create=(e,t)=>{if(!Array.isArray(e))throw new Error("You must pass an array of schemas to z.tuple([ ... ])");return new Yp({items:e,typeName:bm.ZodTuple,rest:null,...up(t)})};class Kp extends dp{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:r}=this._processInputParams(e);if(r.parsedType!==zd.object)return qd(r,{code:Wd.invalid_type,expected:zd.object,received:r.parsedType}),Kd;const n=[],a=this._def.keyType,i=this._def.valueType;for(const e in r.data)n.push({key:a._parse(new lp(r,e,r.path,e)),value:i._parse(new lp(r,r.data[e],r.path,e)),alwaysSet:e in r.data});return r.common.async?Yd.mergeObjectAsync(t,n):Yd.mergeObjectSync(t,n)}get element(){return this._def.valueType}static create(e,t,r){return new Kp(t instanceof dp?{keyType:e,valueType:t,typeName:bm.ZodRecord,...up(r)}:{keyType:Ap.create(),valueType:e,typeName:bm.ZodRecord,...up(t)})}}class Xp extends dp{get keySchema(){return this._def.keyType}get valueSchema(){return this._def.valueType}_parse(e){const{status:t,ctx:r}=this._processInputParams(e);if(r.parsedType!==zd.map)return qd(r,{code:Wd.invalid_type,expected:zd.map,received:r.parsedType}),Kd;const n=this._def.keyType,a=this._def.valueType,i=[...r.data.entries()].map((([e,t],i)=>({key:n._parse(new lp(r,e,r.path,[i,"key"])),value:a._parse(new lp(r,t,r.path,[i,"value"]))})));if(r.common.async){const e=new Map;return Promise.resolve().then((async()=>{for(const r of i){const n=await r.key,a=await r.value;if("aborted"===n.status||"aborted"===a.status)return Kd;"dirty"!==n.status&&"dirty"!==a.status||t.dirty(),e.set(n.value,a.value)}return{status:t.value,value:e}}))}{const e=new Map;for(const r of i){const n=r.key,a=r.value;if("aborted"===n.status||"aborted"===a.status)return Kd;"dirty"!==n.status&&"dirty"!==a.status||t.dirty(),e.set(n.value,a.value)}return{status:t.value,value:e}}}}Xp.create=(e,t,r)=>new Xp({valueType:t,keyType:e,typeName:bm.ZodMap,...up(r)});class Jp extends dp{_parse(e){const{status:t,ctx:r}=this._processInputParams(e);if(r.parsedType!==zd.set)return qd(r,{code:Wd.invalid_type,expected:zd.set,received:r.parsedType}),Kd;const n=this._def;null!==n.minSize&&r.data.size<n.minSize.value&&(qd(r,{code:Wd.too_small,minimum:n.minSize.value,type:"set",inclusive:!0,exact:!1,message:n.minSize.message}),t.dirty()),null!==n.maxSize&&r.data.size>n.maxSize.value&&(qd(r,{code:Wd.too_big,maximum:n.maxSize.value,type:"set",inclusive:!0,exact:!1,message:n.maxSize.message}),t.dirty());const a=this._def.valueType;function i(e){const r=new Set;for(const n of e){if("aborted"===n.status)return Kd;"dirty"===n.status&&t.dirty(),r.add(n.value)}return{status:t.value,value:r}}const o=[...r.data.values()].map(((e,t)=>a._parse(new lp(r,e,r.path,t))));return r.common.async?Promise.all(o).then((e=>i(e))):i(o)}min(e,t){return new Jp({...this._def,minSize:{value:e,message:ip.toString(t)}})}max(e,t){return new Jp({...this._def,maxSize:{value:e,message:ip.toString(t)}})}size(e,t){return this.min(e,t).max(e,t)}nonempty(e){return this.min(1,e)}}Jp.create=(e,t)=>new Jp({valueType:e,minSize:null,maxSize:null,typeName:bm.ZodSet,...up(t)});class Qp extends dp{constructor(){super(...arguments),this.validate=this.implement}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==zd.function)return qd(t,{code:Wd.invalid_type,expected:zd.function,received:t.parsedType}),Kd;function r(e,r){return Gd({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,Zd(),Hd].filter((e=>!!e)),issueData:{code:Wd.invalid_arguments,argumentsError:r}})}function n(e,r){return Gd({data:e,path:t.path,errorMaps:[t.common.contextualErrorMap,t.schemaErrorMap,Zd(),Hd].filter((e=>!!e)),issueData:{code:Wd.invalid_return_type,returnTypeError:r}})}const a={errorMap:t.common.contextualErrorMap},i=t.data;if(this._def.returns instanceof im){const e=this;return Jd((async function(...t){const o=new Ud([]),s=await e._def.args.parseAsync(t,a).catch((e=>{throw o.addIssue(r(t,e)),o})),l=await Reflect.apply(i,this,s),c=await e._def.returns._def.type.parseAsync(l,a).catch((e=>{throw o.addIssue(n(l,e)),o}));return c}))}{const e=this;return Jd((function(...t){const o=e._def.args.safeParse(t,a);if(!o.success)throw new Ud([r(t,o.error)]);const s=Reflect.apply(i,this,o.data),l=e._def.returns.safeParse(s,a);if(!l.success)throw new Ud([n(s,l.error)]);return l.data}))}}parameters(){return this._def.args}returnType(){return this._def.returns}args(...e){return new Qp({...this._def,args:Yp.create(e).rest(Fp.create())})}returns(e){return new Qp({...this._def,returns:e})}implement(e){return this.parse(e)}strictImplement(e){return this.parse(e)}static create(e,t,r){return new Qp({args:e||Yp.create([]).rest(Fp.create()),returns:t||Fp.create(),typeName:bm.ZodFunction,...up(r)})}}class em extends dp{get schema(){return this._def.getter()}_parse(e){const{ctx:t}=this._processInputParams(e);return this._def.getter()._parse({data:t.data,path:t.path,parent:t})}}em.create=(e,t)=>new em({getter:e,typeName:bm.ZodLazy,...up(t)});class tm extends dp{_parse(e){if(e.data!==this._def.value){const t=this._getOrReturnCtx(e);return qd(t,{received:t.data,code:Wd.invalid_literal,expected:this._def.value}),Kd}return{status:"valid",value:e.data}}get value(){return this._def.value}}function rm(e,t){return new nm({values:e,typeName:bm.ZodEnum,...up(t)})}tm.create=(e,t)=>new tm({value:e,typeName:bm.ZodLiteral,...up(t)});class nm extends dp{constructor(){super(...arguments),op.set(this,void 0)}_parse(e){if("string"!=typeof e.data){const t=this._getOrReturnCtx(e),r=this._def.values;return qd(t,{expected:Fd.joinValues(r),received:t.parsedType,code:Wd.invalid_type}),Kd}if(np(this,op,"f")||ap(this,op,new Set(this._def.values),"f"),!np(this,op,"f").has(e.data)){const t=this._getOrReturnCtx(e),r=this._def.values;return qd(t,{received:t.data,code:Wd.invalid_enum_value,options:r}),Kd}return Jd(e.data)}get options(){return this._def.values}get enum(){const e={};for(const t of this._def.values)e[t]=t;return e}get Values(){const e={};for(const t of this._def.values)e[t]=t;return e}get Enum(){const e={};for(const t of this._def.values)e[t]=t;return e}extract(e,t=this._def){return nm.create(e,{...this._def,...t})}exclude(e,t=this._def){return nm.create(this.options.filter((t=>!e.includes(t))),{...this._def,...t})}}op=new WeakMap,nm.create=rm;class am extends dp{constructor(){super(...arguments),sp.set(this,void 0)}_parse(e){const t=Fd.getValidEnumValues(this._def.values),r=this._getOrReturnCtx(e);if(r.parsedType!==zd.string&&r.parsedType!==zd.number){const e=Fd.objectValues(t);return qd(r,{expected:Fd.joinValues(e),received:r.parsedType,code:Wd.invalid_type}),Kd}if(np(this,sp,"f")||ap(this,sp,new Set(Fd.getValidEnumValues(this._def.values)),"f"),!np(this,sp,"f").has(e.data)){const e=Fd.objectValues(t);return qd(r,{received:r.data,code:Wd.invalid_enum_value,options:e}),Kd}return Jd(e.data)}get enum(){return this._def.values}}sp=new WeakMap,am.create=(e,t)=>new am({values:e,typeName:bm.ZodNativeEnum,...up(t)});class im extends dp{unwrap(){return this._def.type}_parse(e){const{ctx:t}=this._processInputParams(e);if(t.parsedType!==zd.promise&&!1===t.common.async)return qd(t,{code:Wd.invalid_type,expected:zd.promise,received:t.parsedType}),Kd;const r=t.parsedType===zd.promise?t.data:Promise.resolve(t.data);return Jd(r.then((e=>this._def.type.parseAsync(e,{path:t.path,errorMap:t.common.contextualErrorMap}))))}}im.create=(e,t)=>new im({type:e,typeName:bm.ZodPromise,...up(t)});class om extends dp{innerType(){return this._def.schema}sourceType(){return this._def.schema._def.typeName===bm.ZodEffects?this._def.schema.sourceType():this._def.schema}_parse(e){const{status:t,ctx:r}=this._processInputParams(e),n=this._def.effect||null,a={addIssue:e=>{qd(r,e),e.fatal?t.abort():t.dirty()},get path(){return r.path}};if(a.addIssue=a.addIssue.bind(a),"preprocess"===n.type){const e=n.transform(r.data,a);if(r.common.async)return Promise.resolve(e).then((async e=>{if("aborted"===t.value)return Kd;const n=await this._def.schema._parseAsync({data:e,path:r.path,parent:r});return"aborted"===n.status?Kd:"dirty"===n.status||"dirty"===t.value?Xd(n.value):n}));{if("aborted"===t.value)return Kd;const n=this._def.schema._parseSync({data:e,path:r.path,parent:r});return"aborted"===n.status?Kd:"dirty"===n.status||"dirty"===t.value?Xd(n.value):n}}if("refinement"===n.type){const e=e=>{const t=n.refinement(e,a);if(r.common.async)return Promise.resolve(t);if(t instanceof Promise)throw new Error("Async refinement encountered during synchronous parse operation. Use .parseAsync instead.");return e};if(!1===r.common.async){const n=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});return"aborted"===n.status?Kd:("dirty"===n.status&&t.dirty(),e(n.value),{status:t.value,value:n.value})}return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then((r=>"aborted"===r.status?Kd:("dirty"===r.status&&t.dirty(),e(r.value).then((()=>({status:t.value,value:r.value}))))))}if("transform"===n.type){if(!1===r.common.async){const e=this._def.schema._parseSync({data:r.data,path:r.path,parent:r});if(!tp(e))return e;const i=n.transform(e.value,a);if(i instanceof Promise)throw new Error("Asynchronous transform encountered during synchronous parse operation. Use .parseAsync instead.");return{status:t.value,value:i}}return this._def.schema._parseAsync({data:r.data,path:r.path,parent:r}).then((e=>tp(e)?Promise.resolve(n.transform(e.value,a)).then((e=>({status:t.value,value:e}))):e))}Fd.assertNever(n)}}om.create=(e,t,r)=>new om({schema:e,typeName:bm.ZodEffects,effect:t,...up(r)}),om.createWithPreprocess=(e,t,r)=>new om({schema:t,effect:{type:"preprocess",transform:e},typeName:bm.ZodEffects,...up(r)});class sm extends dp{_parse(e){return this._getType(e)===zd.undefined?Jd(void 0):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}sm.create=(e,t)=>new sm({innerType:e,typeName:bm.ZodOptional,...up(t)});class lm extends dp{_parse(e){return this._getType(e)===zd.null?Jd(null):this._def.innerType._parse(e)}unwrap(){return this._def.innerType}}lm.create=(e,t)=>new lm({innerType:e,typeName:bm.ZodNullable,...up(t)});class cm extends dp{_parse(e){const{ctx:t}=this._processInputParams(e);let r=t.data;return t.parsedType===zd.undefined&&(r=this._def.defaultValue()),this._def.innerType._parse({data:r,path:t.path,parent:t})}removeDefault(){return this._def.innerType}}cm.create=(e,t)=>new cm({innerType:e,typeName:bm.ZodDefault,defaultValue:"function"==typeof t.default?t.default:()=>t.default,...up(t)});class um extends dp{_parse(e){const{ctx:t}=this._processInputParams(e),r={...t,common:{...t.common,issues:[]}},n=this._def.innerType._parse({data:r.data,path:r.path,parent:{...r}});return rp(n)?n.then((e=>({status:"valid",value:"valid"===e.status?e.value:this._def.catchValue({get error(){return new Ud(r.common.issues)},input:r.data})}))):{status:"valid",value:"valid"===n.status?n.value:this._def.catchValue({get error(){return new Ud(r.common.issues)},input:r.data})}}removeCatch(){return this._def.innerType}}um.create=(e,t)=>new um({innerType:e,typeName:bm.ZodCatch,catchValue:"function"==typeof t.catch?t.catch:()=>t.catch,...up(t)});class dm extends dp{_parse(e){if(this._getType(e)!==zd.nan){const t=this._getOrReturnCtx(e);return qd(t,{code:Wd.invalid_type,expected:zd.nan,received:t.parsedType}),Kd}return{status:"valid",value:e.data}}}dm.create=e=>new dm({typeName:bm.ZodNaN,...up(e)});const pm=Symbol("zod_brand");class mm extends dp{_parse(e){const{ctx:t}=this._processInputParams(e),r=t.data;return this._def.type._parse({data:r,path:t.path,parent:t})}unwrap(){return this._def.type}}class fm extends dp{_parse(e){const{status:t,ctx:r}=this._processInputParams(e);if(r.common.async)return(async()=>{const e=await this._def.in._parseAsync({data:r.data,path:r.path,parent:r});return"aborted"===e.status?Kd:"dirty"===e.status?(t.dirty(),Xd(e.value)):this._def.out._parseAsync({data:e.value,path:r.path,parent:r})})();{const e=this._def.in._parseSync({data:r.data,path:r.path,parent:r});return"aborted"===e.status?Kd:"dirty"===e.status?(t.dirty(),{status:"dirty",value:e.value}):this._def.out._parseSync({data:e.value,path:r.path,parent:r})}}static create(e,t){return new fm({in:e,out:t,typeName:bm.ZodPipeline})}}class gm extends dp{_parse(e){const t=this._def.innerType._parse(e),r=e=>(tp(e)&&(e.value=Object.freeze(e.value)),e);return rp(t)?t.then((e=>r(e))):r(t)}unwrap(){return this._def.innerType}}function hm(e,t={},r){return e?Dp.create().superRefine(((n,a)=>{var i,o;if(!e(n)){const e="function"==typeof t?t(n):"string"==typeof t?{message:t}:t,s=null===(o=null!==(i=e.fatal)&&void 0!==i?i:r)||void 0===o||o,l="string"==typeof e?{message:e}:e;a.addIssue({code:"custom",...l,fatal:s})}})):Dp.create()}gm.create=(e,t)=>new gm({innerType:e,typeName:bm.ZodReadonly,...up(t)});const ym={object:Up.lazycreate};var bm;!function(e){e.ZodString="ZodString",e.ZodNumber="ZodNumber",e.ZodNaN="ZodNaN",e.ZodBigInt="ZodBigInt",e.ZodBoolean="ZodBoolean",e.ZodDate="ZodDate",e.ZodSymbol="ZodSymbol",e.ZodUndefined="ZodUndefined",e.ZodNull="ZodNull",e.ZodAny="ZodAny",e.ZodUnknown="ZodUnknown",e.ZodNever="ZodNever",e.ZodVoid="ZodVoid",e.ZodArray="ZodArray",e.ZodObject="ZodObject",e.ZodUnion="ZodUnion",e.ZodDiscriminatedUnion="ZodDiscriminatedUnion",e.ZodIntersection="ZodIntersection",e.ZodTuple="ZodTuple",e.ZodRecord="ZodRecord",e.ZodMap="ZodMap",e.ZodSet="ZodSet",e.ZodFunction="ZodFunction",e.ZodLazy="ZodLazy",e.ZodLiteral="ZodLiteral",e.ZodEnum="ZodEnum",e.ZodEffects="ZodEffects",e.ZodNativeEnum="ZodNativeEnum",e.ZodOptional="ZodOptional",e.ZodNullable="ZodNullable",e.ZodDefault="ZodDefault",e.ZodCatch="ZodCatch",e.ZodPromise="ZodPromise",e.ZodBranded="ZodBranded",e.ZodPipeline="ZodPipeline",e.ZodReadonly="ZodReadonly"}(bm||(bm={}));const vm=Ap.create,wm=Tp.create,xm=dm.create,_m=Np.create,Em=Ip.create,km=Op.create,Sm=Lp.create,Cm=Bp.create,Rm=jp.create,Am=Dp.create,Pm=Fp.create,Tm=Mp.create,Nm=zp.create,Im=Vp.create,Om=Up.create,Lm=Up.strictCreate,Bm=Hp.create,jm=Zp.create,Dm=qp.create,Fm=Yp.create,Mm=Kp.create,zm=Xp.create,Vm=Jp.create,Wm=Qp.create,Um=em.create,Hm=tm.create,$m=nm.create,Zm=am.create,Gm=im.create,qm=om.create,Ym=sm.create,Km=lm.create,Xm=om.createWithPreprocess,Jm=fm.create,Qm={string:e=>Ap.create({...e,coerce:!0}),number:e=>Tp.create({...e,coerce:!0}),boolean:e=>Ip.create({...e,coerce:!0}),bigint:e=>Np.create({...e,coerce:!0}),date:e=>Op.create({...e,coerce:!0})},ef=Kd;var tf=Object.freeze({__proto__:null,defaultErrorMap:Hd,setErrorMap:function(e){$d=e},getErrorMap:Zd,makeIssue:Gd,EMPTY_PATH:[],addIssueToContext:qd,ParseStatus:Yd,INVALID:Kd,DIRTY:Xd,OK:Jd,isAborted:Qd,isDirty:ep,isValid:tp,isAsync:rp,get util(){return Fd},get objectUtil(){return Md},ZodParsedType:zd,getParsedType:Vd,ZodType:dp,datetimeRegex:Rp,ZodString:Ap,ZodNumber:Tp,ZodBigInt:Np,ZodBoolean:Ip,ZodDate:Op,ZodSymbol:Lp,ZodUndefined:Bp,ZodNull:jp,ZodAny:Dp,ZodUnknown:Fp,ZodNever:Mp,ZodVoid:zp,ZodArray:Vp,ZodObject:Up,ZodUnion:Hp,ZodDiscriminatedUnion:Zp,ZodIntersection:qp,ZodTuple:Yp,ZodRecord:Kp,ZodMap:Xp,ZodSet:Jp,ZodFunction:Qp,ZodLazy:em,ZodLiteral:tm,ZodEnum:nm,ZodNativeEnum:am,ZodPromise:im,ZodEffects:om,ZodTransformer:om,ZodOptional:sm,ZodNullable:lm,ZodDefault:cm,ZodCatch:um,ZodNaN:dm,BRAND:pm,ZodBranded:mm,ZodPipeline:fm,ZodReadonly:gm,custom:hm,Schema:dp,ZodSchema:dp,late:ym,get ZodFirstPartyTypeKind(){return bm},coerce:Qm,any:Am,array:Im,bigint:_m,boolean:Em,date:km,discriminatedUnion:jm,effect:qm,enum:$m,function:Wm,instanceof:(e,t={message:`Input not instance of ${e.name}`})=>hm((t=>t instanceof e),t),intersection:Dm,lazy:Um,literal:Hm,map:zm,nan:xm,nativeEnum:Zm,never:Tm,null:Rm,nullable:Km,number:wm,object:Om,oboolean:()=>Em().optional(),onumber:()=>wm().optional(),optional:Ym,ostring:()=>vm().optional(),pipeline:Jm,preprocess:Xm,promise:Gm,record:Mm,set:Vm,strictObject:Lm,string:vm,symbol:Sm,transformer:qm,tuple:Fm,undefined:Cm,union:Bm,unknown:Pm,void:Nm,NEVER:ef,ZodIssueCode:Wd,quotelessJson:e=>JSON.stringify(e,null,2).replace(/"([^"]+)":/g,"$1:"),ZodError:Ud});const rf=({text:e})=>c().createElement("span",{className:"text-center text-zip-app-heading relative"},c().createElement("span",{className:"bg-gradient-to-r from-gradient-color-1/50 via-gradient-color-2/50 to-gradient-color-3/50  bg-[length:100%_6px] bg-no-repeat bg-bottom pb-0 "},e));function nf(){return nf=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},nf.apply(null,arguments)}const af=({children:e,className:t,as:r="div",...n})=>React.createElement(r,nf({className:(0,y.xW)("max-w-container w-full bg-white p-8 flex flex-col gap-8 rounded-xl shadow",t)},n),e),of=/^[a-z0-9!'#$%&*+\/=?^_`{|}~-]+(?:\.[a-z0-9!'#$%&*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-zA-Z]{2,}$/i,sf=e=>e.map((e=>{const t=e?.type?e?.type:e?.id;return{type:t,id:t,url:e?.url}})),lf=e=>e.filter((e=>e.valid)),cf=e=>{const t=tf.object({email:tf.string().refine((e=>""===e||of.test(e)),{message:(0,u.__)("(Please enter a valid email","ast-block-templates")}),address:tf.string().optional()}).safeParse(e);return t?.success?t.data:{...e,...t.error.issues.reduce(((e,t)=>(e[t.path[0]]="",e)),{})}},uf=(0,e.A)((0,n.A)((e=>{const{setNextAIStep:t,setPreviousAIStep:r}=e("ast-block-templates");return{onClickContinue:t,onClickPrevious:r,onClickSkip:t}})))((({onClickContinue:e,onClickPrevious:n,onClickSkip:a})=>{const{businessContact:o}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()})),{setWebsiteContactAIStep:s}=(0,r.A)(g.U),[l,c]=(0,i.useState)(sf(o.socialMedia??[])?.map((e=>({...e,valid:!0})))),d=(0,i.useRef)({...o,socialMedia:sf(o?.socialMedia??[])?.map((e=>({...e,valid:!0})))}),{register:p,handleSubmit:m,formState:{errors:f},setFocus:h,watch:y}=Ql({defaultValues:{...o}});(0,i.useEffect)((()=>{h("email")}),[h]);const{businessName:b}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()})),v=l.some((e=>!e.valid));return React.createElement(af,{as:"form",className:"w-full max-w-container flex flex-col gap-4 pb-10",action:"#",onSubmit:m((t=>{s({...t,socialMedia:sf(l)}),e()}))},React.createElement("div",{className:"text-zip-app-heading text-[1.75rem] font-semibold leading-9"},(0,u.__)("How can people get in touch with ","ast-block-templates"),React.createElement(rf,{text:b}),"?"),React.createElement("p",{className:"text-zip-body-text text-base font-normal"},(0,u.__)("Please provide the contact information details below. These will be used on the website.","ast-block-templates")),React.createElement("div",{className:"space-y-5"},React.createElement("div",{className:"flex justify-between gap-x-8 items-start w-full"},React.createElement(Qo,{className:"w-full",type:"text",name:"email",id:"email",label:"Email",placeholder:"Your email",register:p,error:f.email,validations:{pattern:{value:of,message:(0,u.__)("Please enter a valid email","ast-block-templates")}},prefixIconClassName:"absolute left-4 flex items-center"}),React.createElement(Qo,{className:"w-full",type:"text",name:"phone",id:"phone",label:"Phone Number",placeholder:"Your phone number",register:p,error:f.phone,prefixIconClassName:"absolute left-4 flex items-center"})),React.createElement(Id,{rows:4,name:"address",id:"address",label:"Address",placeholder:"",register:p,error:f.address}),React.createElement(Dd,{list:l,onChange:e=>{c(e)}})),React.createElement(Qa,null),React.createElement(Od,{onClickPrevious:async()=>{const e=y(),t=cf(e);s({...t,socialMedia:sf(lf(l))}),n()},onClickSkip:async()=>{const{socialMedia:e=[],...t}=d.current,r=cf(t);s({...r,socialMedia:sf(lf(e))}),a()},disableContinue:v}))})),df=({heading:e,subHeading:t,className:r})=>React.createElement("div",{className:(0,y.xW)("space-y-3",r)},!!e&&React.createElement("div",{className:"text-zip-app-label text-[1.75rem] font-semibold leading-9"},e),!!t&&React.createElement("p",{className:"text-body-text text-base font-normal"},t));function pf(e,t){return null!==e&&null!==t&&"object"==typeof e&&"object"==typeof t&&"id"in e&&"id"in t?e.id===t.id:e===t}function mf(e={},t=null,r=[]){for(let[n,a]of Object.entries(e))gf(r,ff(t,n),a);return r}function ff(e,t){return e?e+"["+t+"]":t}function gf(e,t,r){if(Array.isArray(r))for(let[n,a]of r.entries())gf(e,ff(t,n.toString()),a);else r instanceof Date?e.push([t,r.toISOString()]):"boolean"==typeof r?e.push([t,r?"1":"0"]):"string"==typeof r?e.push([t,r]):"number"==typeof r?e.push([t,`${r}`]):null==r?e.push([t,""]):mf(r,t,e)}let hf=(0,i.createContext)(null);function yf({children:e}){let t=(0,i.useContext)(hf);if(!t)return i.createElement(i.Fragment,null,e);let{target:r}=t;return r?(0,ye.createPortal)(i.createElement(i.Fragment,null,e),r):null}function bf({data:e,form:t,disabled:r,onReset:n,overrides:a}){let[o,s]=(0,i.useState)(null),l=ke();return(0,i.useEffect)((()=>{if(n&&o)return l.addEventListener(o,"reset",n)}),[o,t,n]),i.createElement(yf,null,i.createElement(vf,{setForm:s,formId:t}),mf(e).map((([e,n])=>i.createElement(ci,{features:li.Hidden,...Fn({key:e,as:"input",type:"hidden",hidden:!0,readOnly:!0,form:t,disabled:r,name:e,value:n,...a})}))))}function vf({setForm:e,formId:t}){return(0,i.useEffect)((()=>{if(t){let r=document.getElementById(t);r&&e(r)}}),[e,t]),t?null:i.createElement(ci,{features:li.Hidden,as:"input",type:"hidden",hidden:!0,readOnly:!0,ref:t=>{if(!t)return;let r=t.closest("form");r&&e(r)}})}var wf=(e=>(e[e.Open=0]="Open",e[e.Closed=1]="Closed",e))(wf||{}),xf=(e=>(e[e.Single=0]="Single",e[e.Multi=1]="Multi",e))(xf||{}),_f=(e=>(e[e.Pointer=0]="Pointer",e[e.Other=1]="Other",e))(_f||{}),Ef=(e=>(e[e.OpenListbox=0]="OpenListbox",e[e.CloseListbox=1]="CloseListbox",e[e.GoToOption=2]="GoToOption",e[e.Search=3]="Search",e[e.ClearSearch=4]="ClearSearch",e[e.RegisterOption=5]="RegisterOption",e[e.UnregisterOption=6]="UnregisterOption",e[e.SetButtonElement=7]="SetButtonElement",e[e.SetOptionsElement=8]="SetOptionsElement",e))(Ef||{});function kf(e,t=(e=>e)){let r=null!==e.activeOptionIndex?e.options[e.activeOptionIndex]:null,n=rt(t(e.options.slice()),(e=>e.dataRef.current.domRef.current)),a=r?n.indexOf(r):null;return-1===a&&(a=null),{options:n,activeOptionIndex:a}}let Sf={1:e=>e.dataRef.current.disabled||1===e.listboxState?e:{...e,activeOptionIndex:null,listboxState:1,__demoMode:!1},0(e){if(e.dataRef.current.disabled||0===e.listboxState)return e;let t=e.activeOptionIndex,{isSelected:r}=e.dataRef.current,n=e.options.findIndex((e=>r(e.dataRef.current.value)));return-1!==n&&(t=n),{...e,listboxState:0,activeOptionIndex:t,__demoMode:!1}},2(e,t){var r,n,a,i,o;if(e.dataRef.current.disabled||1===e.listboxState)return e;let s={...e,searchQuery:"",activationTrigger:null!=(r=t.trigger)?r:1,__demoMode:!1};if(t.focus===Rn.Nothing)return{...s,activeOptionIndex:null};if(t.focus===Rn.Specific)return{...s,activeOptionIndex:e.options.findIndex((e=>e.id===t.id))};if(t.focus===Rn.Previous){let r=e.activeOptionIndex;if(null!==r){let i=e.options[r].dataRef.current.domRef,o=An(t,{resolveItems:()=>e.options,resolveActiveIndex:()=>e.activeOptionIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==o){let t=e.options[o].dataRef.current.domRef;if((null==(n=i.current)?void 0:n.previousElementSibling)===t.current||null===(null==(a=t.current)?void 0:a.previousElementSibling))return{...s,activeOptionIndex:o}}}}else if(t.focus===Rn.Next){let r=e.activeOptionIndex;if(null!==r){let n=e.options[r].dataRef.current.domRef,a=An(t,{resolveItems:()=>e.options,resolveActiveIndex:()=>e.activeOptionIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});if(null!==a){let t=e.options[a].dataRef.current.domRef;if((null==(i=n.current)?void 0:i.nextElementSibling)===t.current||null===(null==(o=t.current)?void 0:o.nextElementSibling))return{...s,activeOptionIndex:a}}}}let l=kf(e),c=An(t,{resolveItems:()=>l.options,resolveActiveIndex:()=>l.activeOptionIndex,resolveId:e=>e.id,resolveDisabled:e=>e.dataRef.current.disabled});return{...s,...l,activeOptionIndex:c}},3:(e,t)=>{if(e.dataRef.current.disabled||1===e.listboxState)return e;let r=""!==e.searchQuery?0:1,n=e.searchQuery+t.value.toLowerCase(),a=(null!==e.activeOptionIndex?e.options.slice(e.activeOptionIndex+r).concat(e.options.slice(0,e.activeOptionIndex+r)):e.options).find((e=>{var t;return!e.dataRef.current.disabled&&(null==(t=e.dataRef.current.textValue)?void 0:t.startsWith(n))})),i=a?e.options.indexOf(a):-1;return-1===i||i===e.activeOptionIndex?{...e,searchQuery:n}:{...e,searchQuery:n,activeOptionIndex:i,activationTrigger:1}},4:e=>e.dataRef.current.disabled||1===e.listboxState||""===e.searchQuery?e:{...e,searchQuery:""},5:(e,t)=>{let r={id:t.id,dataRef:t.dataRef},n=kf(e,(e=>[...e,r]));return null===e.activeOptionIndex&&e.dataRef.current.isSelected(t.dataRef.current.value)&&(n.activeOptionIndex=n.options.indexOf(r)),{...e,...n}},6:(e,t)=>{let r=kf(e,(e=>{let r=e.findIndex((e=>e.id===t.id));return-1!==r&&e.splice(r,1),e}));return{...e,...r,activationTrigger:1}},7:(e,t)=>e.buttonElement===t.element?e:{...e,buttonElement:t.element},8:(e,t)=>e.optionsElement===t.element?e:{...e,optionsElement:t.element}},Cf=(0,i.createContext)(null);function Rf(e){let t=(0,i.useContext)(Cf);if(null===t){let t=new Error(`<${e} /> is missing a parent <Listbox /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Rf),t}return t}Cf.displayName="ListboxActionsContext";let Af=(0,i.createContext)(null);function Pf(e){let t=(0,i.useContext)(Af);if(null===t){let t=new Error(`<${e} /> is missing a parent <Listbox /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(t,Pf),t}return t}function Tf(e,t){return Ve(t.type,Sf,e,t)}Af.displayName="ListboxDataContext";let Nf=i.Fragment,If=(0,i.createContext)(!1),Of=Tn.RenderStrategy|Tn.Static,Lf=i.Fragment,Bf=Dn((function(e,t){var r;let n=Vn(),{value:a,defaultValue:o,form:s,name:l,onChange:c,by:u,invalid:d=!1,disabled:p=n||!1,horizontal:m=!1,multiple:f=!1,__demoMode:g=!1,...h}=e;const y=m?"horizontal":"vertical";let b=bt(t),v=function(e){let[t]=(0,i.useState)(e);return t}(o),[w=(f?[]:void 0),x]=function(e,t,r){let[n,a]=(0,i.useState)(r),o=void 0!==e,s=(0,i.useRef)(o),l=(0,i.useRef)(!1),c=(0,i.useRef)(!1);return!o||s.current||l.current?!o&&s.current&&!c.current&&(c.current=!0,s.current=o,console.error("A component is changing from controlled to uncontrolled. This may be caused by the value changing from a defined value to undefined, which should not happen.")):(l.current=!0,s.current=o,console.error("A component is changing from uncontrolled to controlled. This may be caused by the value changing from undefined to a defined value, which should not happen.")),[o?e:n,Re((e=>(o||a(e),null==t?void 0:t(e))))]}(a,c,v),[_,E]=(0,i.useReducer)(Tf,{dataRef:(0,i.createRef)(),listboxState:g?0:1,options:[],searchQuery:"",activeOptionIndex:null,activationTrigger:1,optionsVisible:!1,buttonElement:null,optionsElement:null,__demoMode:g}),k=(0,i.useRef)({static:!1,hold:!1}),S=(0,i.useRef)(new Map),C=function(e=pf){return(0,i.useCallback)(((t,r)=>{if("string"==typeof e){let n=e;return(null==t?void 0:t[n])===(null==r?void 0:r[n])}return e(t,r)}),[e])}(u),R=(0,i.useCallback)((e=>Ve(A.mode,{1:()=>w.some((t=>C(t,e))),0:()=>C(w,e)})),[w]),A=(0,i.useMemo)((()=>({..._,value:w,disabled:p,invalid:d,mode:f?1:0,orientation:y,compare:C,isSelected:R,optionsPropsRef:k,listRef:S})),[w,p,d,f,_,S]);Se((()=>{_.dataRef.current=A}),[A]),ct(0===A.listboxState,[A.buttonElement,A.optionsElement],((e,t)=>{var r;E({type:1}),Xe(t,Ke.Loose)||(e.preventDefault(),null==(r=A.buttonElement)||r.focus())}));let P=(0,i.useMemo)((()=>({open:0===A.listboxState,disabled:p,invalid:d,value:w})),[A,p,w,d]),T=Re((e=>{let t=A.options.find((t=>t.id===e));t&&D(t.dataRef.current.value)})),N=Re((()=>{if(null!==A.activeOptionIndex){let{dataRef:e,id:t}=A.options[A.activeOptionIndex];D(e.current.value),E({type:2,focus:Rn.Specific,id:t})}})),I=Re((()=>E({type:0}))),O=Re((()=>E({type:1}))),L=ke(),B=Re(((e,t,r)=>{L.dispose(),L.microTask((()=>e===Rn.Specific?E({type:2,focus:Rn.Specific,id:t,trigger:r}):E({type:2,focus:e,trigger:r})))})),j=Re(((e,t)=>(E({type:5,id:e,dataRef:t}),()=>E({type:6,id:e})))),D=Re((e=>Ve(A.mode,{0:()=>null==x?void 0:x(e),1(){let t=A.value.slice(),r=t.findIndex((t=>C(t,e)));return-1===r?t.push(e):t.splice(r,1),null==x?void 0:x(t)}}))),F=Re((e=>E({type:3,value:e}))),M=Re((()=>E({type:4}))),z=Re((e=>{E({type:7,element:e})})),V=Re((e=>{E({type:8,element:e})})),W=(0,i.useMemo)((()=>({onChange:D,registerOption:j,goToOption:B,closeListbox:O,openListbox:I,selectActiveOption:N,selectOption:T,search:F,clearSearch:M,setButtonElement:z,setOptionsElement:V})),[]),[U,H]=Qn({inherit:!0}),$={ref:b},Z=(0,i.useCallback)((()=>{if(void 0!==v)return null==x?void 0:x(v)}),[x,v]),G=In();return i.createElement(H,{value:U,props:{htmlFor:null==(r=A.buttonElement)?void 0:r.id},slot:{open:0===A.listboxState,disabled:p}},i.createElement(hn,null,i.createElement(Cf.Provider,{value:W},i.createElement(Af.Provider,{value:A},i.createElement(En,{value:Ve(A.listboxState,{0:xn.Open,1:xn.Closed})},null!=l&&null!=w&&i.createElement(bf,{disabled:p,data:{[l]:w},form:s,onReset:Z}),G({ourProps:$,theirProps:h,slot:P,defaultTag:Nf,name:"Listbox"}))))))})),jf=Dn((function(e,t){var r;let n=Pf("Listbox.Button"),a=Rf("Listbox.Button"),o=(0,i.useId)(),s=Yn(),{id:l=s||`headlessui-listbox-button-${o}`,disabled:c=n.disabled||!1,autoFocus:u=!1,...d}=e,p=bt(t,pn(),a.setButtonElement),m=mn(),f=Re((e=>{switch(e.key){case Gn.Enter:!function(e){var t,r;let n=null!=(t=null==e?void 0:e.form)?t:e.closest("form");if(n){for(let t of n.elements)if(t!==e&&("INPUT"===t.tagName&&"submit"===t.type||"BUTTON"===t.tagName&&"submit"===t.type||"INPUT"===t.nodeName&&"image"===t.type))return void t.click();null==(r=n.requestSubmit)||r.call(n)}}(e.currentTarget);break;case Gn.Space:case Gn.ArrowDown:e.preventDefault(),(0,ye.flushSync)((()=>a.openListbox())),n.value||a.goToOption(Rn.First);break;case Gn.ArrowUp:e.preventDefault(),(0,ye.flushSync)((()=>a.openListbox())),n.value||a.goToOption(Rn.Last)}})),g=Re((e=>{e.key===Gn.Space&&e.preventDefault()})),h=Re((e=>{var t;if(Sn(e.currentTarget))return e.preventDefault();0===n.listboxState?((0,ye.flushSync)((()=>a.closeListbox())),null==(t=n.buttonElement)||t.focus({preventScroll:!0})):(e.preventDefault(),a.openListbox())})),y=Re((e=>e.preventDefault())),b=Jn([l]),v=function(){var e,t;return null!=(t=null==(e=(0,i.useContext)(Wn))?void 0:e.value)?t:void 0}(),{isFocusVisible:w,focusProps:x}=ue({autoFocus:u}),{isHovered:_,hoverProps:E}=he({isDisabled:c}),{pressed:k,pressProps:S}=Ae({disabled:c}),C=(0,i.useMemo)((()=>({open:0===n.listboxState,active:k||0===n.listboxState,disabled:c,invalid:n.invalid,value:n.value,hover:_,focus:w,autofocus:u})),[n.listboxState,n.value,c,_,w,k,n.invalid,u]),R=jn(m(),{ref:p,id:l,type:dt(e,n.buttonElement),"aria-haspopup":"listbox","aria-controls":null==(r=n.optionsElement)?void 0:r.id,"aria-expanded":0===n.listboxState,"aria-labelledby":b,"aria-describedby":v,disabled:c||void 0,autoFocus:u,onKeyDown:f,onKeyUp:g,onKeyPress:y,onClick:h},x,E,S);return In()({ourProps:R,theirProps:d,slot:C,defaultTag:"button",name:"Listbox.Button"})})),Df=ta,Ff=Dn((function(e,t){var r,n;let a=(0,i.useId)(),{id:o=`headlessui-listbox-options-${a}`,anchor:s,portal:l=!1,modal:c=!0,transition:u=!1,...d}=e,p=dn(s),[m,f]=(0,i.useState)(null);p&&(l=!0);let g=Pf("Listbox.Options"),h=Rf("Listbox.Options"),y=ut(g.optionsElement),b=_n(),[v,w]=Pt(u,m,null!==b?(b&xn.Open)===xn.Open:0===g.listboxState);ze(v,g.buttonElement,h.closeListbox),ht(!g.__demoMode&&c&&0===g.listboxState,y),Me(!g.__demoMode&&c&&0===g.listboxState,{allowed:(0,i.useCallback)((()=>[g.buttonElement,g.optionsElement]),[g.buttonElement,g.optionsElement])});let x=!Pe(0!==g.listboxState,g.buttonElement)&&v,_=function(e,t){let[r,n]=(0,i.useState)(t);return!e&&r!==t&&n(t),e?r:t}(v&&1===g.listboxState,g.value),E=Re((e=>g.compare(_,e))),k=(0,i.useMemo)((()=>{var e;if(null==p||null==(e=null==p?void 0:p.to)||!e.includes("selection"))return null;let t=g.options.findIndex((e=>E(e.dataRef.current.value)));return-1===t&&(t=0),t}),[p,g.options]),S=(()=>{if(null==p)return;if(null===k)return{...p,inner:void 0};let e=Array.from(g.listRef.current.values());return{...p,inner:{listRef:{current:e},index:k}}})(),[C,R]=gn(S),A=fn(),P=bt(t,p?C:null,h.setOptionsElement,f),T=ke();(0,i.useEffect)((()=>{var e;let t=g.optionsElement;t&&0===g.listboxState&&t!==(null==(e=xe(t))?void 0:e.activeElement)&&(null==t||t.focus({preventScroll:!0}))}),[g.listboxState,g.optionsElement]);let N=Re((e=>{var t,r;switch(T.dispose(),e.key){case Gn.Space:if(""!==g.searchQuery)return e.preventDefault(),e.stopPropagation(),h.search(e.key);case Gn.Enter:if(e.preventDefault(),e.stopPropagation(),null!==g.activeOptionIndex){let{dataRef:e}=g.options[g.activeOptionIndex];h.onChange(e.current.value)}0===g.mode&&((0,ye.flushSync)((()=>h.closeListbox())),null==(t=g.buttonElement)||t.focus({preventScroll:!0}));break;case Ve(g.orientation,{vertical:Gn.ArrowDown,horizontal:Gn.ArrowRight}):return e.preventDefault(),e.stopPropagation(),h.goToOption(Rn.Next);case Ve(g.orientation,{vertical:Gn.ArrowUp,horizontal:Gn.ArrowLeft}):return e.preventDefault(),e.stopPropagation(),h.goToOption(Rn.Previous);case Gn.Home:case Gn.PageUp:return e.preventDefault(),e.stopPropagation(),h.goToOption(Rn.First);case Gn.End:case Gn.PageDown:return e.preventDefault(),e.stopPropagation(),h.goToOption(Rn.Last);case Gn.Escape:return e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>h.closeListbox())),void(null==(r=g.buttonElement)||r.focus({preventScroll:!0}));case Gn.Tab:e.preventDefault(),e.stopPropagation(),(0,ye.flushSync)((()=>h.closeListbox())),nt(g.buttonElement,e.shiftKey?Ze.Previous:Ze.Next);break;default:1===e.key.length&&(h.search(e.key),T.setTimeout((()=>h.clearSearch()),350))}})),I=null==(r=g.buttonElement)?void 0:r.id,O=(0,i.useMemo)((()=>({open:0===g.listboxState})),[g.listboxState]),L=jn(p?A():{},{id:o,ref:P,"aria-activedescendant":null===g.activeOptionIndex||null==(n=g.options[g.activeOptionIndex])?void 0:n.id,"aria-multiselectable":1===g.mode||void 0,"aria-labelledby":I,"aria-orientation":g.orientation,onKeyDown:N,role:"listbox",tabIndex:0===g.listboxState?0:void 0,style:{...d.style,...R,"--button-width":Te(g.buttonElement,!0).width},...At(w)}),B=In();return i.createElement(ma,{enabled:!!l&&(e.static||v)},i.createElement(Af.Provider,{value:1===g.mode?g:{...g,isSelected:E}},B({ourProps:L,theirProps:d,slot:O,defaultTag:"div",features:Of,visible:x,name:"Listbox.Options"})))})),Mf=Dn((function(e,t){let r=(0,i.useId)(),{id:n=`headlessui-listbox-option-${r}`,disabled:a=!1,value:o,...s}=e,l=!0===(0,i.useContext)(If),c=Pf("Listbox.Option"),u=Rf("Listbox.Option"),d=null!==c.activeOptionIndex&&c.options[c.activeOptionIndex].id===n,p=c.isSelected(o),m=(0,i.useRef)(null),f=xt(m),g=Ce({disabled:a,value:o,domRef:m,get textValue(){return f()}}),h=bt(t,m,(e=>{e?c.listRef.current.set(n,e):c.listRef.current.delete(n)}));Se((()=>{if(!c.__demoMode&&0===c.listboxState&&d&&0!==c.activationTrigger)return Ee().requestAnimationFrame((()=>{var e,t;null==(t=null==(e=m.current)?void 0:e.scrollIntoView)||t.call(e,{block:"nearest"})}))}),[m,d,c.__demoMode,c.listboxState,c.activationTrigger,c.activeOptionIndex]),Se((()=>{if(!l)return u.registerOption(n,g)}),[g,n,l]);let y=Re((e=>{var t;if(a)return e.preventDefault();u.onChange(o),0===c.mode&&((0,ye.flushSync)((()=>u.closeListbox())),null==(t=c.buttonElement)||t.focus({preventScroll:!0}))})),b=Re((()=>{if(a)return u.goToOption(Rn.Nothing);u.goToOption(Rn.Specific,n)})),v=Et(),w=Re((e=>{v.update(e),!a&&(d||u.goToOption(Rn.Specific,n,0))})),x=Re((e=>{v.wasMoved(e)&&(a||d||u.goToOption(Rn.Specific,n,0))})),_=Re((e=>{v.wasMoved(e)&&(a||d&&u.goToOption(Rn.Nothing))})),E=(0,i.useMemo)((()=>({active:d,focus:d,selected:p,disabled:a,selectedOption:p&&l})),[d,p,a,l]),k=l?{}:{id:n,ref:h,role:"option",tabIndex:!0===a?void 0:-1,"aria-disabled":!0===a||void 0,"aria-selected":p,disabled:void 0,onClick:y,onFocus:b,onPointerEnter:w,onMouseEnter:w,onPointerMove:x,onMouseMove:x,onPointerLeave:_,onMouseLeave:_},S=In();return!p&&l?null:S({ourProps:k,theirProps:s,slot:E,defaultTag:"div",name:"Listbox.Option"})})),zf=Dn((function(e,t){let{options:r,placeholder:n,...a}=e,o={ref:bt(t)},s=Pf("ListboxSelectedOption"),l=(0,i.useMemo)((()=>({})),[]),c=void 0===s.value||null===s.value||1===s.mode&&Array.isArray(s.value)&&0===s.value.length,u=In();return i.createElement(If.Provider,{value:!0},u({ourProps:o,theirProps:{...a,children:i.createElement(i.Fragment,null,n&&c?n:r)},slot:l,defaultTag:Lf,name:"ListboxSelectedOption"}))})),Vf=Object.assign(Bf,{Button:jf,Label:Df,Options:Ff,Option:Mf,SelectedOption:zf});function Wf({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m11.25 11.25.041-.02a.75.75 0 0 1 1.063.852l-.708 2.836a.75.75 0 0 0 1.063.853l.041-.021M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9-3.75h.008v.008H12V8.25Z"}))}const Uf=i.forwardRef(Wf),Hf=({onSelect:e,value:r,showLabel:n,classNameChild:a="py-3 pl-4 pr-12",classNameParent:o="mt-2",placement:s="right",label:l="This website will be in",tooltipText:c=""})=>{const{siteLanguageList:u}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()})),[d,p]=(0,i.useState)(u.find((e=>"en"===e.code))),[m,f]=(0,i.useState)("");let h="bottom-end";h="left"===s?"bottom-start":"bottom-end";const[v,w]=Ka({placement:h,modifiers:[{name:"offset",options:{offset:[0,0]}}]}),x=e=>{f(e.target.value)},_=u.filter((e=>e.name.toLowerCase().includes(m.toLowerCase())));return(0,i.useEffect)((()=>{r&&r.code!==d.code&&p("string"==typeof r?u.find((e=>e.code===r)):r)}),[r]),React.createElement(Vf,{value:d,onChange:t=>{p(t),"function"==typeof e&&e(t)}},(({open:e})=>React.createElement(React.Fragment,null,n&&React.createElement(Vf.Label,{className:"text-base font-semibold flex leading-6 text-zip-app-heading"},c&&React.createElement("div",{className:"mr-1 pt-0.5"},React.createElement(b.A,{content:c},React.createElement(Uf,{className:"w-4 h-4"}))),l),React.createElement("div",{className:(0,y.xW)("relative",o)},React.createElement(Vf.Button,{ref:v,className:(0,y.xW)("min-h-[48px] relative w-full cursor-default rounded-md bg-white text-zip-app-heading shadow-sm border border-solid border-border-primary focus:border-accent-st active:border-accent-st ring-1 ring-inset ring-transparent focus:outline-none active:outline-none focus:ring-accent-st","text-base font-normal text-left leading-6")},React.createElement("div",{className:(0,y.xW)("inline-flex items-center gap-2 w-full max-w-container relative",a)},React.createElement("span",{className:"min-w-fit uppercase text-center text-sm text-zip-app-heading font-semibold leading-5"},d.code),React.createElement("span",{className:"!shrink-0 w-px h-[14px] bg-border-tertiary"}),React.createElement("span",{className:"w-full text-base font-normal leading-6 block truncate"},d.name," ","en"===d.code&&"(Default)")),React.createElement("span",{className:"pointer-events-none absolute inset-y-0 right-0 flex items-center pr-4"},React.createElement(Cc,{className:"h-5 w-5 text-zip-app-heading","aria-hidden":"true"}))),React.createElement($a,{show:e,as:i.Fragment,leave:"transition ease-in duration-100",leaveFrom:"opacity-100",leaveTo:"opacity-0"},React.createElement(Vf.Options,{ref:w,className:(0,y.xW)("w-full absolute z-10 !mt-1 !mb-1 rounded-md bg-white p-4 space-y-3 text-base font-normal leading-6 shadow-xl border-0 ring-0 focus:outline-none")},React.createElement("div",{className:"group relative flex flex-1 rounded-md bg-white focus-within:ring-1 focus-within:outline-none focus-within:ring-accent-st border border-solid border-border-tertiary shadow-sm focus-within:border-accent-st transition duration-150 ease-in-out"},React.createElement("label",{htmlFor:"search-field",className:"sr-only"},"Search"),React.createElement(ko,{className:"pointer-events-none absolute inset-y-0 left-2.5 h-full w-5 text-app-inactive-icon group-focus-within:text-app-active-icon transition duration-150 ease-in-out","aria-hidden":"true"}),React.createElement("input",{ref:e=>{e&&e.focus()},className:"appearance-none text-base h-[2.625rem] block w-full !border-0 py-0 !pl-10 pr-5 text-zip-app-heading placeholder:!text-zip-app-inactive-icon focus:ring-0 sm:text-sm bg-transparent focus:outline-none focus:!shadow-none focus:!border-0 focus-within:!border-0",placeholder:"Search Language",type:"search",value:m,onChange:x,name:"search"})),React.createElement("div",{className:(0,y.xW)("max-h-60 w-full overflow-x-hidden overflow-y-auto space-y-1","[&::-webkit-scrollbar]:w-1.5 [&::-webkit-scrollbar-thumb]:rounded-md [&::-webkit-scrollbar-thumb]:bg-dark-app-background/20 [&::-webkit-scrollbar-thumb:hover]:bg-dark-app-background/30 [&::-webkit-scrollbar-track]:bg-white [&::-webkit-scrollbar-track]:my-1 [&::-webkit-scrollbar-track]:rounded-md scroll-p-0")},_.length>0&&_.map((e=>React.createElement(Vf.Option,{key:e.code,as:i.Fragment,value:e},(({active:t})=>React.createElement("div",{className:(0,y.xW)("w-full max-w-container relative flex items-center justify-between cursor-default select-none py-2 pl-3 pr-2 rounded",(d.code===e.code||t)&&"bg-alert-info-bg")},React.createElement("div",{className:"w-full flex items-center gap-2"},React.createElement("span",{className:"min-w-fit uppercase text-center text-sm text-zip-app-heading font-semibold leading-5"},e.code),React.createElement("span",{className:"w-px h-[14px] bg-border-tertiary !shrink-0"}),React.createElement("span",{className:(0,y.xW)("w-full truncate font-normal text-base leading-6",d.code===e.code?"text-zip-app-heading":"text-app-text")},e.name)),d.code===e.code&&React.createElement("span",{className:(0,y.xW)("absolute inset-y-0 right-0 flex items-center pr-4")},React.createElement(ei.It,{className:"h-6 w-6","aria-hidden":"true"}))))))),0===_.length&&React.createElement("div",{className:"relative cursor-default select-none py-2 px-4 text-base font-normal text-app-text"},"Nothing found"))))))))},$f=()=>{const{setWebsiteLanguageAIStep:e}=(0,r.A)(g.U),{siteLanguage:n,siteLanguageList:a}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()}));return c().createElement("div",{className:"flex flex-col items-start gap-x-2"},c().createElement("h5",{className:"text-zip-app-heading !text-sm flex !font-medium leading-6 items-center !mb-2"},"The website will be in:",c().createElement("div",{className:"ml-1 pt-1"})),a&&0!==a.length?c().createElement(Hf,{onSelect:t=>{e(t.code)},value:a.find((e=>e.code===n)),showLabel:!1,classNameParent:"w-full",classNameChild:"py-2 pl-3 pr-8"}):c().createElement("div",{className:"h-12 w-full inline-flex justify-start items-center gap-2 border border-solid border-border-tertiary py-2 pl-3 pr-8 rounded-md shadow-sm"},c().createElement("div",{className:"w-8 h-full bg-gray-300 animate-pulse"}),c().createElement("span",{className:"!shrink-0 w-px h-[14px] bg-border-tertiary"}),c().createElement("div",{className:"w-full h-full bg-gray-300 animate-pulse"})))},{useState:Zf,useEffect:Gf,useCallback:qf,useMemo:Yf}=wp.element,Kf=(e,t,r=null)=>{const[n,a]=Zf(e),i=qf((e=>{r&&"function"==typeof r&&r(e),a(e)}),[r]);return Gf((()=>{const r=setTimeout((()=>{i(e)}),t);return()=>{clearTimeout(r)}}),[e,t,i]),Yf((()=>n),[n])};function Xf(){return Xf=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Xf.apply(null,arguments)}const Jf={closed:{opacity:0},open:{opacity:1,transition:{delayChildren:.05,staggerChildren:.05}}},Qf={open:{y:0,opacity:1},closed:{y:20,opacity:0}},eg=()=>{const{setWebsiteTypeAIStep:e,setBusinessTypeListAIStep:n}=(0,r.A)(g.U),{businessType:a,businessTypeList:o}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()})),[s,l]=Ka({placement:"bottom",modifiers:[{name:"offset",options:{offset:[0,0]}},{name:"flip",enabled:!1},{name:"preventOverflow",options:{boundariesElement:"viewport"}}]}),[c,u]=(0,i.useState)(!1),[d,p]=(0,i.useState)(!1),m=(0,i.useRef)(null),h=(0,i.useRef)(null),{register:b,setValue:v,reset:w,setFocus:x,watch:_}=Ql({defaultValues:{keyword:a??""}}),E=_("keyword"),k=Kf(E,300),S=e=>{E||""===a||v("keyword",a),E&&a&&E!==a&&v("keyword",E),u(!1),e&&e?.blur()},C=(0,i.useCallback)((()=>{(async(e="")=>{m.current&&(m.current.abort(),m.current=null),p(!0),m.current=new AbortController;try{const t=await(0,y.nr)({path:"zipwp/v1/search-category",method:"POST",data:{keyword:e},headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce},signal:m.current.signal});if(!t.success)throw new Error(t?.data?.data);n(t?.data?.data),p(!1)}catch(e){if("AbortError"===e.name)return;(0,ti.v)(e),p(!1)}})(c?k:"")}),[k]);(0,i.useEffect)((()=>{C()}),[C]);const R=e=>{const t=document.getElementById("business-types-suggestions");t&&!t.contains(e.target)&&S()};(0,i.useEffect)((()=>(document.addEventListener("mousedown",R),()=>document.removeEventListener("mousedown",R))),[R]);const A=()=>{try{const e=o&&Array.isArray(o)?o:[];if(!E)return e;const t=e?.find((({document:e})=>e.name?.toLowerCase()?.trim()===E?.toLowerCase()?.trim()));return t?e:[{document:{name:E},highlight:{name:{matched_tokens:[E.trim()]}}},...e]}catch(e){return[]}};return React.createElement("div",{id:"business-types-suggestions",ref:s,className:(0,y.xW)("relative pr-3 pl-4 py-3 bg-white rounded-md border border-solid border-border-primary w-full",{"pb-0 rounded-b-none border-b-0 shadow-md":c}),onKeyDown:e=>{const t=document.getElementById("business-types-suggestions");if(!t)return;const r=Array.from(t.querySelectorAll('button, input, [tabindex]:not([tabindex="-1"])'));let n=r.indexOf(document.activeElement);switch(e.key){case"Escape":S(e?.target);break;case"ArrowUp":n--,n<0&&(n=r.length-1),r[n].focus(),e.preventDefault();break;case"ArrowDown":n++,n>=r.length&&(n=0),r[n].focus(),e.preventDefault()}},role:"presentation"},React.createElement("div",{className:"flex items-center justify-start w-full gap-2"},d&&c?React.createElement(Vi.A,{className:"text-accent-st w-4 h-4"}):E?React.createElement("button",{className:"inline-flex !p-0 !m-0 border-0 !bg-transparent focus:outline-none cursor-pointer",onClick:()=>{h.current&&(h.current.scrollTop=0),w({keyword:""}),e(""),c&&setTimeout((()=>{x("keyword")}),10)}},React.createElement(f,{className:"w-4 h-4 !text-zip-app-inactive-icon peer-focus:text-nav-inactive stroke-2 !shrink-0"})):React.createElement(ko,{className:"w-4 h-4 text-zip-app-inactive-icon peer-focus:text-nav-inactive !shrink-0"}),React.createElement("input",Xf({className:"!h-auto !px-0 !mx-0 !border-0 !rounded-none !min-h-0 !shadow-none focus:ring-0 focus:!outline-none focus:!shadow-none w-full text-sm placeholder:text-sm placeholder:!text-zip-app-inactive-icon",type:"text",placeholder:"Type to search",onFocus:()=>u(!0),autoComplete:"off"},b("keyword")))),React.createElement("div",{ref:l,className:(0,y.xW)("w-[calc(100%_+_2px)] px-3 pb-3 z-10 bg-white shadow-md border-x border-b border-t-0 border-solid border-border-primary rounded-b-md",{invisible:!c})},c&&React.createElement("hr",{className:"!mx-0 !my-3 border-t border-solid border-b-0 border-border-primary",tabIndex:-1}),React.createElement("div",{ref:h,className:"max-h-[150px] w-full overflow-y-auto overflow-x-hidden [&::-webkit-scrollbar-thumb:hover]:bg-black/[0.15] [&::-webkit-scrollbar-thumb]:w-2 [&::-webkit-scrollbar-thumb]:rounded-none [&::-webkit-scrollbar]:w-1 [&::-webkit-scrollbar-thumb]:bg-black/10"},React.createElement(Cd.P.div,{className:"w-full flex flex-col gap-1 justify-start",initial:!1,animate:c?"open":"closed",variants:Jf},A()?.length>0&&A().map((({document:t,highlight:r})=>React.createElement(Cd.P.button,{key:t.name,className:(0,y.xW)("flex items-center justify-start w-full gap-2 py-2 px-3 bg-background-tertiary rounded border-0 !bg-transparent hover:!bg-zip-app-light-bg focus:!bg-zip-app-light-bg !text-zip-body-text hover:!text-zip-app-heading focus:outline-none focus:!shadow-none",{"!bg-zip-app-light-bg !text-zip-app-heading":t.name===a},"text-left"),onClick:()=>{v("keyword",t.name),e(t.name),u(!1)},variants:Qf},((e,t)=>{if(!t)return e;const{name:{matched_tokens:r}}=t,n=e.split(new RegExp(`(${r.join("|")})`,"gi"));return React.createElement("span",null,n.map(((e,t)=>r.includes(e)?React.createElement("span",{key:t,className:"font-semibold"},e):e)))})(t.name,r))))))))},tg=(0,e.A)((0,n.A)((e=>{const{setNextAIStep:t}=e(g.U);return{onClickContinue:t}})))((({onClickContinue:e})=>{const{setSiteLanguageListAIStep:n,setWebsiteNameAIStep:a}=(0,r.A)(g.U),{businessType:o,siteLanguageList:s,businessName:l}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()}));(0,i.useEffect)((()=>{s?.length||(async()=>{try{const e=await(0,y.nr)({path:"zipwp/v1/site-languages",method:"GET",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce}});if(!e.success)throw new Error(e?.data?.data);n(e?.data?.data)}catch(e){(0,ti.v)(e)}})()}),[s]);const{register:c,formState:{errors:d},setFocus:p,watch:m}=Ql({defaultValues:{businessName:l}}),f=m("businessName");return(0,i.useEffect)((()=>{p("businessName")}),[p]),React.createElement(af,null,React.createElement(df,{heading:"Let's build your website!",subHeading:"Please share some basic details of the website to get started."}),React.createElement("div",{className:"w-full max-w-container flex flex-col gap-8"},React.createElement("div",{className:"!space-y-2"},React.createElement("h5",{className:"text-zip-app-heading !text-sm flex !font-medium leading-6 items-center !mb-2"},(0,u.__)("Name of the website:","ast-block-templates")),React.createElement(Qo,{className:"w-full",name:"businessName",placeholder:(0,u.__)("Enter name or title of the website","ast-block-templates"),register:c,maxLength:100,validations:{required:"Name is required",maxLength:100},error:d.businessName,height:"12"})),React.createElement("div",{className:"w-full flex items-start justify-start flex-wrap max-[1024px]:flex-col lg:flex-nowrap gap-8"},React.createElement("div",{className:"min-h-[48px] lg:w-full lg:flex-1 w-full !space-y-2"},React.createElement("h5",{className:"text-zip-app-heading !text-sm flex !font-medium leading-6 items-center"},(0,u.__)("This website is for:","ast-block-templates")),React.createElement(eg,null)),React.createElement("div",{className:"min-h-[48px] lg:w-full lg:flex-1 w-full !space-y-2"},React.createElement($f,null)))),React.createElement(Qa,null),React.createElement(Od,{onClickContinue:()=>{o&&""!==o&&(a(f),e())},disableContinue:!o||!f}))})),rg=()=>{const{token:e}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return t()})),{handleSubmit:r,setFocus:n}=Ql({defaultValues:{token:e}});(0,i.useEffect)((()=>{n("apiKey")}),[n]);const a=[{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_2919_32447)"},React.createElement("path",{d:"M13.2617 1.47461C13.2617 0.787597 12.6875 0.203125 12.0005 0.203125C11.3135 0.203125 10.729 0.787597 10.729 1.47461V4.60205C10.729 5.28906 11.3135 5.86328 12.0005 5.86328C12.6875 5.86328 13.2617 5.28906 13.2617 4.60205V1.47461ZM16.4199 5.86328C15.9482 6.34521 15.9482 7.16553 16.4405 7.65771C16.9121 8.1294 17.7426 8.1294 18.2246 7.63721L20.3676 5.49414C20.8496 5.02247 20.8394 4.1919 20.3472 3.69971C19.8755 3.21777 19.0449 3.23828 18.563 3.72021L16.4199 5.86328ZM5.76611 7.63721C6.24805 8.1294 7.07861 8.1294 7.55029 7.65771C8.04248 7.16553 8.04248 6.34521 7.57081 5.86328L5.43799 3.72021C4.95605 3.23828 4.12549 3.21777 3.65381 3.69971C3.16162 4.18164 3.16162 5.01221 3.63331 5.48388L5.76611 7.63721ZM19.9575 22.3925C20.5727 23.018 21.6186 23.0078 22.2236 22.3925C22.8287 21.767 22.8287 20.752 22.2236 20.1265L12.4927 10.3237C11.8774 9.7085 10.8315 9.7085 10.2266 10.3237C9.61133 10.9492 9.62158 11.9644 10.2266 12.5796L19.9575 22.3925ZM1.39795 10.7954C0.710938 10.7954 0.136719 11.3696 0.136719 12.0566C0.136719 12.7437 0.710938 13.3179 1.39795 13.3179H4.52539C5.2124 13.3179 5.79688 12.7437 5.79688 12.0566C5.79688 11.3696 5.2124 10.7954 4.52539 10.7954H1.39795ZM22.5927 13.3179C23.2797 13.3179 23.8643 12.7437 23.8643 12.0566C23.8643 11.3696 23.2797 10.7954 22.5927 10.7954H19.4756C18.7886 10.7954 18.204 11.3696 18.204 12.0566C18.204 12.7437 18.7886 13.3179 19.4756 13.3179H22.5927ZM14.4409 15.2045L11.2417 11.9951C10.9853 11.749 10.8931 11.4312 11.1494 11.1851C11.375 10.9595 11.7031 11.0415 11.9595 11.2979L15.1382 14.4868L14.4409 15.2045ZM3.63331 18.5986C3.15137 19.0805 3.14111 19.9111 3.61279 20.3828C4.09472 20.875 4.92529 20.8853 5.40722 20.4136L7.55029 18.2705C8.03222 17.7886 8.04248 16.9682 7.57081 16.4863C7.08887 16.0043 6.25831 15.9941 5.77637 16.4659L3.63331 18.5986ZM13.2617 19.5215C13.2617 18.8345 12.6875 18.25 12.0005 18.25C11.3135 18.25 10.729 18.8345 10.729 19.5215V22.6387C10.729 23.3257 11.3135 23.9102 12.0005 23.9102C12.6875 23.9102 13.2617 23.3257 13.2617 22.6387V19.5215Z",fill:"#2563EB"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_2919_32447"},React.createElement("rect",{width:"24",height:"24",fill:"white"})))),title:"Craft Compelling Content",description:"With our AI, you can effortlessly create persuasive and engaging copy that resonates with your audience."},{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M19.4666 2.3999C20.6448 2.3999 21.5999 3.34194 21.5999 4.50401L21.5999 8.09583C21.5999 9.2579 20.6448 10.1999 19.4666 10.1999H16.2666C15.0884 10.1999 14.1332 9.2579 14.1332 8.09583L14.1332 4.50401C14.1332 3.34194 15.0884 2.3999 16.2666 2.3999L19.4666 2.3999Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4.53323 2.3999C3.35503 2.3999 2.3999 3.34194 2.3999 4.50401L2.39991 8.09583C2.39991 9.2579 3.35504 10.1999 4.53324 10.1999H7.73324C8.91145 10.1999 9.86658 9.2579 9.86658 8.09583L9.86657 4.50401C9.86657 3.34194 8.91144 2.3999 7.73323 2.3999L4.53323 2.3999Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M19.4666 13.7999C20.6448 13.7999 21.5999 14.742 21.5999 15.9041V19.4958C21.5999 20.6579 20.6448 21.5999 19.4666 21.5999H16.2666C15.0884 21.5999 14.1332 20.6579 14.1332 19.4958L14.1332 15.9041C14.1332 14.742 15.0884 13.7999 16.2666 13.7999H19.4666Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4.53324 13.7999C3.35504 13.7999 2.39991 14.742 2.39991 15.9041L2.39991 19.4958C2.39991 20.6579 3.35504 21.5999 4.53325 21.5999H7.73325C8.91145 21.5999 9.86658 20.6579 9.86658 19.4958L9.86657 15.9041C9.86657 14.742 8.91145 13.7999 7.73324 13.7999H4.53324Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:"AI-Powered Block Patterns",description:"Our AI can personalize and customize the block patterns and section templates to tailor them to your website's unique needs."},{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("g",{clipPath:"url(#clip0_2919_32460)"},React.createElement("path",{d:"M24 12C24 5.376 18.624 0 12 0C5.376 0 0 5.376 0 12C0 18.624 5.376 24 12 24C18.624 24 24 18.624 24 12ZM12 1.212C17.964 1.212 22.788 6.036 22.788 12C22.788 17.964 17.964 22.788 12 22.788C6.036 22.788 1.212 17.964 1.212 12C1.212 6.036 6.036 1.212 12 1.212ZM9.612 17.784L5.952 7.932C6.54 7.896 7.212 7.836 7.212 7.836C7.728 7.776 7.668 6.624 7.14 6.648C7.14 6.648 5.592 6.768 4.584 6.768C4.404 6.768 4.188 6.768 3.96 6.756C5.688 4.152 8.64 2.436 12 2.436C14.508 2.436 16.788 3.384 18.492 4.944C17.772 4.848 16.752 5.364 16.752 6.648C16.752 7.44 17.208 8.112 17.7 8.904C18.072 9.552 18.3 10.368 18.3 11.556C18.3 13.164 16.776 16.932 16.776 16.932L13.524 7.932C14.1 7.896 14.424 7.74 14.424 7.74C14.94 7.68 14.88 6.42 14.364 6.444C14.364 6.444 12.804 6.576 11.796 6.576C10.86 6.576 9.264 6.444 9.264 6.444C8.748 6.42 8.688 7.716 9.204 7.74L10.212 7.836L11.556 11.484L9.612 17.784ZM16.836 20.364L19.968 12C19.968 12 20.772 9.972 20.436 7.428C21.192 8.796 21.564 10.332 21.564 12C21.564 15.552 19.692 18.696 16.836 20.364ZM3.216 8.124L7.8 20.7C4.596 19.14 2.436 15.804 2.436 12C2.436 10.608 2.676 9.324 3.216 8.124ZM12.156 13.56L14.904 21.06C14.004 21.384 13.02 21.564 12 21.564C11.136 21.564 10.308 21.432 9.528 21.204L12.156 13.56Z",fill:"#2563EB"})),React.createElement("defs",null,React.createElement("clipPath",{id:"clip0_2919_32460"},React.createElement("rect",{width:"24",height:"24",fill:"white"})))),title:"WordPress Wizardry",description:"Got questions? Our AI has the answers. Whether it's troubleshooting or customizing your site, we got your back."},{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2 3.97434C2 2.88394 2.89543 2 4 2H20C21.1046 2 22 2.88394 22 3.97434V20.0257C22 21.1161 21.1046 22 20 22H4C2.89543 22 2 21.1161 2 20.0257V3.97434Z",stroke:"#2563EB",strokeWidth:"1.7"}),React.createElement("path",{d:"M4.35748 5.44157C4.35748 4.89637 4.8052 4.4544 5.35748 4.4544H18.6426C19.1949 4.4544 19.6426 4.89637 19.6426 5.44157V7.94377C19.6426 8.48897 19.1949 8.93094 18.6426 8.93094H5.35748C4.8052 8.93094 4.35748 8.48897 4.35748 7.94377V5.44157Z",stroke:"#2563EB",strokeWidth:"1.7"}),React.createElement("path",{d:"M8.29303 11.1402C8.84531 11.1402 9.29303 11.5822 9.29303 12.1274L9.29303 18.7411C9.29303 19.2863 8.84531 19.7283 8.29303 19.7283H5.35742C4.80514 19.7283 4.35742 19.2863 4.35742 18.7411L4.35742 12.1274C4.35742 11.5822 4.80514 11.1402 5.35742 11.1402H8.29303Z",stroke:"#2563EB",strokeWidth:"1.7"}),React.createElement("path",{d:"M18.6426 11.1402C19.1949 11.1402 19.6426 11.5822 19.6426 12.1274V18.7411C19.6426 19.2863 19.1949 19.7283 18.6426 19.7283H12.3755C11.8233 19.7283 11.3755 19.2863 11.3755 18.7411V12.1274C11.3755 11.5822 11.8233 11.1402 12.3755 11.1402H18.6426Z",stroke:"#2563EB",strokeWidth:"1.7"})),title:"Personalized Templates",description:"Say goodbye to generic designs and say hello to our AI-personalized page templates, tailored just for you."},{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M9.5999 14.9999L6.5999 11.9999L9.5999 8.9999M14.3999 8.9999L17.3999 11.9999L14.3999 14.9999M4.7999 21.5999C3.47442 21.5999 2.3999 20.5254 2.3999 19.1999V4.7999C2.3999 3.47442 3.47442 2.3999 4.7999 2.3999H19.1999C20.5254 2.3999 21.5999 3.47442 21.5999 4.7999V19.1999C21.5999 20.5254 20.5254 21.5999 19.1999 21.5999H4.7999Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:"Generate Custom Code",description:"No more struggling with complex coding issues. Our AI can generate custom code, functions, and CSS tailored to your needs."},{icon:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2.9999 7.7999H20.9999M17.9999 11.9999H5.9999M13.1999 16.7999H5.9999M5.9999 21.5999H17.9999C19.9881 21.5999 21.5999 19.9881 21.5999 17.9999V5.9999C21.5999 4.01168 19.9881 2.3999 17.9999 2.3999H5.9999C4.01168 2.3999 2.3999 4.01168 2.3999 5.9999V17.9999C2.3999 19.9881 4.01168 21.5999 5.9999 21.5999Z",stroke:"#2563EB",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"})),title:"Custom Pages with AI",description:"With our AI by your side, you can create beautiful, 100% custom web pages without the need for any design or coding skills."}],o=(0,i.useMemo)((()=>{const e=[];let t=[];for(let r=0;r<a.length;r++)t.push(a[r]),2===t.length&&(e.push(t),t=[]);return t.length>0&&e.push(t),e.map(((t,r)=>React.createElement(React.Fragment,null,React.createElement("div",{className:"flex justify-between items-center gap-12"},t.map((e=>(({icon:e,title:t,description:r})=>React.createElement("div",{className:"flex w-[48%]"},React.createElement("div",{className:"mr-3"},e),React.createElement("div",{className:"space-y-2"},React.createElement("p",{className:"m-0 text-base font-semibold text-heading-text"},t),React.createElement("p",{className:"m-0 text-sm font-normal text-body-text"},r))))(e)))),r<e.length-1&&React.createElement(Qa,{className:"w-full"}))))}),[]);return React.createElement("form",{className:"max-w-container mx-auto flex flex-col gap-10 pb-5 pt-12 md:pb-10 md:pt-14 xl:pt-16 xl:pb-20",onSubmit:r((()=>{window.location.href=(0,Wo.i9)()}))},React.createElement("div",{className:"flex items-center justify-center gap-3"},"active"===ast_block_template_vars.astra_sites_status||"active"===ast_block_template_vars.astra_sites_pro_status?React.createElement(ei.fp,{className:"w-10 h-10"}):React.createElement(ei.y0,{className:"w-10 h-10"}),React.createElement(Ld.A,{className:"w-4 h-4 text-icon-secondary",strokeWidth:"2"}),React.createElement(ei.g9,{className:"w-10 h-10"})),React.createElement("div",{className:"flex flex-col items-center justify-center gap-6"},React.createElement(df,{className:"text-center",heading:React.createElement(React.Fragment,null,"Build 10x Faster with ",React.createElement("br",null),"Starter Templates & ZipWP")}),React.createElement(ii.A,{type:"button",variant:"ai-primary",onClick:()=>{window.location.href=(0,Wo.i9)()},hasSuffixIcon:!0},React.createElement("span",null,"Get Started with Free 1000 Credits"),React.createElement(Ms,{className:"w-5 h-5"})),React.createElement("p",{className:"m-0 text-base font-normal"},"Already have one?"," ",React.createElement(ii.A,{type:"submit",variant:"blank",className:"font-normal underline text-accent-st p-0 inline-flex"},"Connect an Account"))),React.createElement("div",{className:"border border-solid border-border-primary rounded-lg gap-8 flex flex-wrap py-11 px-10 shadow-medium bg-white"},o))};var ng=function(){return ng=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var a in t=arguments[r])Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},ng.apply(this,arguments)},ag=function(e,t){var r={};for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&t.indexOf(n)<0&&(r[n]=e[n]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(n=Object.getOwnPropertySymbols(e);a<n.length;a++)t.indexOf(n[a])<0&&Object.prototype.propertyIsEnumerable.call(e,n[a])&&(r[n[a]]=e[n[a]])}return r},ig=Symbol("NiceModalId"),og={},sg=c().createContext(og),lg=c().createContext(null),cg={},ug={},dg=0,pg=function(){throw new Error("No dispatch method detected, did you embed your app with NiceModal.Provider?")},mg=function(){return"_nice_modal_"+dg++},fg=function(e,t){var r,n,a;switch(void 0===e&&(e=og),t.type){case"nice-modal/show":var i=t.payload,o=i.modalId,s=i.args;return ng(ng({},e),((r={})[o]=ng(ng({},e[o]),{id:o,args:s,visible:!!ug[o],delayVisible:!ug[o]}),r));case"nice-modal/hide":return e[o=t.payload.modalId]?ng(ng({},e),((n={})[o]=ng(ng({},e[o]),{visible:!1}),n)):e;case"nice-modal/remove":o=t.payload.modalId;var l=ng({},e);return delete l[o],l;case"nice-modal/set-flags":var c=t.payload,u=(o=c.modalId,c.flags);return ng(ng({},e),((a={})[o]=ng(ng({},e[o]),u),a));default:return e}},gg={},hg={},yg=function(e){return"string"==typeof e?e:(e[ig]||(e[ig]=mg()),e[ig])};function bg(e,t){var r=yg(e);if("string"==typeof e||cg[r]||_g(r,e),pg(function(e,t){return{type:"nice-modal/show",payload:{modalId:e,args:t}}}(r,t)),!gg[r]){var n,a,i=new Promise((function(e,t){n=e,a=t}));gg[r]={resolve:n,reject:a,promise:i}}return gg[r].promise}function vg(e){var t=yg(e);if(pg(function(e){return{type:"nice-modal/hide",payload:{modalId:e}}}(t)),delete gg[t],!hg[t]){var r,n,a=new Promise((function(e,t){r=e,n=t}));hg[t]={resolve:r,reject:n,promise:a}}return hg[t].promise}var wg=function(e){var t=yg(e);pg(function(e){return{type:"nice-modal/remove",payload:{modalId:e}}}(t)),delete gg[t],delete hg[t]};function xg(e,t){var r,n=(0,i.useContext)(sg),a=(0,i.useContext)(lg),o=e&&"string"!=typeof e;if(!(r=e?yg(e):a))throw new Error("No modal id found in NiceModal.useModal.");var s=r;(0,i.useEffect)((function(){o&&!cg[s]&&_g(s,e,t)}),[o,s,e,t]);var l=n[s],c=(0,i.useCallback)((function(e){return bg(s,e)}),[s]),u=(0,i.useCallback)((function(){return vg(s)}),[s]),d=(0,i.useCallback)((function(){return wg(s)}),[s]),p=(0,i.useCallback)((function(e){var t;null===(t=gg[s])||void 0===t||t.resolve(e),delete gg[s]}),[s]),m=(0,i.useCallback)((function(e){var t;null===(t=gg[s])||void 0===t||t.reject(e),delete gg[s]}),[s]),f=(0,i.useCallback)((function(e){var t;null===(t=hg[s])||void 0===t||t.resolve(e),delete hg[s]}),[s]);return(0,i.useMemo)((function(){return{id:s,args:null==l?void 0:l.args,visible:!!(null==l?void 0:l.visible),keepMounted:!!(null==l?void 0:l.keepMounted),show:c,hide:u,remove:d,resolve:p,reject:m,resolveHide:f}}),[s,null==l?void 0:l.args,null==l?void 0:l.visible,null==l?void 0:l.keepMounted,c,u,d,p,m,f])}var _g=function(e,t,r){cg[e]?cg[e].props=r:cg[e]={comp:t,props:r}},Eg=function(){var e=(0,i.useContext)(sg),t=Object.keys(e).filter((function(t){return!!e[t]}));t.forEach((function(e){cg[e]||ug[e]||console.warn("No modal found for id: "+e+". Please check the id or if it is registered or declared via JSX.")}));var r=t.filter((function(e){return cg[e]})).map((function(e){return ng({id:e},cg[e])}));return c().createElement(c().Fragment,null,r.map((function(e){return c().createElement(e.comp,ng({key:e.id,id:e.id},e.props))})))},kg=function(e){var t=e.children,r=(0,i.useReducer)(fg,og),n=r[0];return pg=r[1],c().createElement(sg.Provider,{value:n},t,c().createElement(Eg,null))},Sg={Provider:function(e){var t=e.children,r=e.dispatch,n=e.modals;return r&&n?(pg=r,c().createElement(sg.Provider,{value:n},t,c().createElement(Eg,null))):c().createElement(kg,null,t)},ModalDef:function(e){var t=e.id,r=e.component;return(0,i.useEffect)((function(){return _g(t,r),function(){!function(e){delete cg[e]}(t)}}),[t,r]),null},ModalHolder:function(e){var t,r=e.modal,n=e.handler,a=void 0===n?{}:n,o=ag(e,["modal","handler"]),s=(0,i.useMemo)((function(){return mg()}),[]),l="string"==typeof r?null===(t=cg[r])||void 0===t?void 0:t.comp:r;if(!a)throw new Error("No handler found in NiceModal.ModalHolder.");if(!l)throw new Error("No modal found for id: "+r+" in NiceModal.ModalHolder.");return a.show=(0,i.useCallback)((function(e){return bg(s,e)}),[s]),a.hide=(0,i.useCallback)((function(){return vg(s)}),[s]),c().createElement(l,ng({id:s},o))},NiceModalContext:sg,create:function(e){return function(t){var r,n=t.defaultVisible,a=t.keepMounted,o=t.id,s=ag(t,["defaultVisible","keepMounted","id"]),l=xg(o),u=l.args,d=l.show,p=(0,i.useContext)(sg),m=!!p[o];(0,i.useEffect)((function(){return n&&d(),ug[o]=!0,function(){delete ug[o]}}),[o,d,n]),(0,i.useEffect)((function(){a&&pg({type:"nice-modal/set-flags",payload:{modalId:o,flags:{keepMounted:!0}}})}),[o,a]);var f=null===(r=p[o])||void 0===r?void 0:r.delayVisible;return(0,i.useEffect)((function(){f&&d(u)}),[f,u,d]),m?c().createElement(lg.Provider,{value:o},c().createElement(e,ng({},s,u))):null}},register:_g,getModal:function(e){var t;return null===(t=cg[e])||void 0===t?void 0:t.comp},show:bg,hide:vg,remove:wg,useModal:xg,reducer:fg,antdModal:function(e){return{visible:e.visible,onOk:function(){return e.hide()},onCancel:function(){return e.hide()},afterClose:function(){e.resolveHide(),e.keepMounted||e.remove()}}},antdDrawer:function(e){return{visible:e.visible,onClose:function(){return e.hide()},afterVisibleChange:function(t){t||e.resolveHide(),!t&&!e.keepMounted&&e.remove()}}},muiDialog:function(e){return{open:e.visible,onClose:function(){return e.hide()},onExited:function(){e.resolveHide(),!e.keepMounted&&e.remove()}}},bootstrapDialog:function(e){return{show:e.visible,onHide:function(){return e.hide()},onExited:function(){e.resolveHide(),!e.keepMounted&&e.remove()}}}};const Cg=Sg,Rg=({className:e})=>React.createElement("div",{className:(0,y.xW)("w-full h-10 bg-gray-300 rounded animate-pulse",e)}),Ag="IMPROVE_USING_AI_MODAL",Pg=((e,t)=>{const r=Cg.create((({handleFetchSuggestion:e})=>{const t=xg(Ag),[r,n]=(0,i.useState)(null),[a,o]=(0,i.useState)(!1),s=(0,i.useCallback)((()=>a?React.createElement(Vi.A,null):r?(0,u.__)("Use this","ai-builder"):(0,u.__)("Improve Using AI","ai-builder")),[a,r]),l=()=>{t.resolve(""),t.hide(),t.remove()};return React.createElement(ji,{open:t.visible,setOpen:l,onFullyClose:t.remove,width:480,className:"!p-6 !w-[30rem]"},React.createElement(Di,null,React.createElement("span",{className:"flex items-center space-x-1 gap-2"},React.createElement(ei.Rk,{className:"w-6 h-6 "}),React.createElement("div",{className:"font-semibold text-lg text-black"},(0,u.__)("Add More Business Details","ai-builder")))),React.createElement("div",{className:"text-app-text !mt-5 text-base !opacity-80"},(0,u.__)("The business details provided are not enough to create the website content. Please describe your business with more details, or use AI to write it for you.","ai-builder")),r&&React.createElement("div",{className:"w-full mb-2"},React.createElement("p",{className:"text-base leading-6 font-semibold p-2 mb-0"},(0,u.__)("A good business description is:","ai-builder")),React.createElement("div",{className:"bg-[#F6FAFE] p-4 rounded-lg shadow-sm"},React.createElement("p",{className:"text-sm leading-5 my-0"},r))),a&&React.createElement("div",{className:"w-full mb-2"},React.createElement(Rg,{className:"h-20"})),React.createElement("div",{className:"flex flex-col pt-2 !mt-5 gap-y-5"},React.createElement("div",{className:"flex gap-4 items-center space-x-3"},React.createElement(ii.A,{className:"w-full h-10 !text-sm bg-accent-st hover:bg-accent-st/90 border border-accent-st disabled:bg-accent-st/90",variant:"primary",disabled:a,onClick:async()=>{if(!a&&r)return t.resolve(r),t.hide(),void n(null);o(!0);const i=await e();n(i),o(!1)}},s()),React.createElement(ii.A,{className:"w-full h-10 !text-sm border-gray-200 text-black",variant:"white",onClick:l},r?(0,u.__)("Close","ai-builder"):(0,u.__)("I'll Write by Myself","ai-builder")))))}));return Cg.register(t,r),{...r,show:e=>Cg.show(t,e)}})(0,Ag),Tg=(0,e.A)((0,n.A)((e=>{const{setNextAIStep:t,setPreviousAIStep:r}=e("ast-block-templates");return{onClickContinue:t,onClickPrevious:r}})))((({onClickContinue:e,onClickPrevious:n})=>{const{businessDetails:a,businessType:o,businessName:s,businessDetailsHistory:l,descriptionListStore:c,loadingNextStep:d,siteLanguage:p,siteLanguageList:m}=(0,t.A)((e=>{const{getAIStepData:t,getLoadingNextStep:r}=e(g.U);return{...t(),loadingNextStep:r()}})),f=(0,t.A)((e=>{const{getOnboardingAI:t}=e(g.U);return t()})),{setWebsiteDetailsAIStep:h,setWebsiteKeywordsAIStep:b,resetKeywordsImagesAIStep:v,setWebsiteDetailsHistoryAIStep:w,setOnboardingAIDetails:x}=(0,r.A)(g.U),[_,E]=(0,i.useState)(!1),[k,S]=(0,i.useState)(!1),[C]=(0,i.useState)(l),R=(0,i.useRef)(a),A=(0,i.useRef)(null),{register:P,handleSubmit:T,formState:{errors:N},watch:I,setValue:O,setFocus:L}=Ql({defaultValues:{businessDetails:a}}),B=I("businessDetails"),j=async()=>{try{const e=(async({businessName:e,formBusinessDetails:t,businessType:r,siteLanguage:n})=>{try{const a=await(0,y.nr)({path:"gutenberg-templates/v1/description",method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce},data:{business_name:e,business_description:t,category:r,language:n}});if(a?.success)return a?.data?.data;console.error(a?.data?.data)}catch(e){Ps.oR.error((0,y.yI)(e))}})({businessName:s,businessType:o,formBusinessDetails:B,siteLanguage:p});return e}catch(e){console.log(e)}},D=(e,t)=>("name"===t&&(t=s),React.createElement("div",{className:"text-[1.75rem] font-semibold leading-9"},e[0],React.createElement(rf,{text:s}),e[1])),F={business:{question:D`What is ${"name"}? Please describe the business.`,description:"Please be as descriptive as you can. Share details such as services, products, goals, etc."},person:{question:D`Who is ${"name"}? Tell us more about the person.`,description:"Please be as descriptive as you can. Share details such as what they do, their expertise, offerings, etc."},"personal-website":{question:D`Who is ${"name"}? Tell us more about the person.`,description:"Please be as descriptive as you can. Share details such as what they do, their expertise, offerings, etc."},organisation:{question:D`What is ${"name"}? Please describe the organisation.`,description:"Please be as descriptive as you can. Share details such as services, programs, mission, vision, etc."},restaurant:{question:D`What is ${"name"}? Tell us more about the restaurant.`,description:"Please be as descriptive as you can. Share details such as a brief about the restaurant, specialty, menu, etc."},product:{question:D`What is ${"name"}? Share more details about the product.`,description:"Please be as descriptive as you can. Share details such as a brief about the product, features, some USPs, etc."},event:{question:D`Tell us more about ${"name"}.`,description:"Please be as descriptive as you can. Share details such as Event information date, venue, some highlights, etc."},"landing-page":{question:D`Share more details about ${"name"}.`,description:"Please be as descriptive as you can. Share details such as a brief about the product, features, some USPs, etc."},medical:{question:D`Tell us more about the  ${"name"}.`,description:"Please be as descriptive as you can. Share details such as treatments, procedures, facilities, etc."},unknown:{question:D`Please describe ${"name"} in a few words.`}};(0,i.useEffect)((()=>{L("businessDetails")}),[L]),(0,i.useLayoutEffect)((()=>{W(B);const e=A.current;e&&(0,y.R7)(e)}),[B]);const{list:M,currentPage:z}=c||{},V=e=>{const t=e?z+1:z-1,r=z-1,n=[...M];M[r]!==B&&(n[r]=B),O("businessDetails",n[t-1]),x({...f,stepData:{...f.stepData,descriptionListStore:{...c,list:n,currentPage:t}}})},W=(e,t)=>{e?.trim()!==a?.trim()&&x({...f,stepData:{...f.stepData,businessDetails:B,...!t&&{keywords:[],selectedImages:[],imagesPreSelected:!1},templateList:[]}})};return React.createElement(af,{as:"form",action:"#",onSubmit:T((async t=>{let{businessDetails:r}=t;if(r.length<200){if(L("businessDetails"),r=await Pg.show({handleFetchSuggestion:j}),!r)return;O("businessDetails",r,{shouldValidate:!0})}else h(t.businessDetails),w(C),R.current!==t.businessDetails&&v(),await(async e=>{if(!k&&R.current!==e){S(!0);try{const t=await(0,y.nr)({path:"gutenberg-templates/v1/keywords",method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce},data:{business_name:s,business_description:e,category:o}});if(t.success){const e=JSON.parse(t.data?.data);b(Array.isArray(e)?e:Object.values(e))}if(!t.success)throw new Error(t?.data?.data)}catch(e){(0,ti.v)(e)}finally{S(!1)}}})(t.businessDetails),e()}))},React.createElement(df,{heading:F[o?.toLowerCase()]?.question??F.unknown.question,subHeading:(e=>F[e]?.description??(0,u.__)("The best way to describe anything is by answering a few WH questions. Who, What, Where, Why, When, etc.","ast-block-templates"))(o?.replaceAll(" ","-")?.toLowerCase())}),React.createElement("div",null,React.createElement("div",{className:(0,y.xW)("ml-0 w-full text-right text-sm font-medium leading-5 text-app-text mb-2 -mt-2")},(0,u.__)("Characters: ","ai-builder"),React.createElement("span",null,B.length)," / 1000"),React.createElement(Id,{ref:A,rows:8,className:"w-full",placeholder:"E.g. Mantra Minds is a yoga studio located in Chino Hills, California. The studio offers a variety of classes such as Hatha yoga, Vinyasa flow, and Restorative yoga. The studio is led by Jane, an experienced and certified yoga instructor with over 10 years of teaching expertise. The welcoming atmosphere and personalized Jane make it a favorite among yoga enthusiasts in the area.",name:"businessDetails",register:P,maxLength:1e3,validations:{required:"Details are required",maxLength:1e3},error:N.businessDetails,disabled:_||d}),React.createElement("div",{className:"flex gap-3 justify-between items-center mt-3"},React.createElement("button",{type:"button",onClick:async e=>{if(e?.preventDefault(),e?.stopPropagation(),_)return;E(!0);const t=[B];try{const e=m?.find((e=>e.code===(p||"en"))),r=await(0,y.nr)({path:"gutenberg-templates/v1/description",method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce},data:{business_name:s,business_description:B,category:o,language_name:e?.name}});if(r.success){const e=r.data?.data||[];void 0!==e&&(t.push(e),(e=>{if(!Array.isArray(e))return;const t=e.filter((e=>0!==e?.trim()?.length&&!M?.includes(e))),r=[...M,...t];x({...f,stepData:{...f.stepData,descriptionListStore:{list:r,currentPage:r.length},businessDetails:B,templateList:[]}})})(t),O("businessDetails",e,{shouldValidate:!0}))}r.success||(0,Ps.oR)((0,Ts.A)({title:(0,u.__)("Description Generation Error!","ast-block-templates"),message:(0,u.__)("Failed to generate business description using AI. Please retry or enter details manually.","ast-block-templates")}),Ts.A.getOptions({type:"error"}))}catch(e){}finally{E(!1)}},className:"flex items-center gap-2 w-fit text-accent-st bg-transparent border-0 cursor-pointer",disabled:d},_?React.createElement(Vi.A,{className:"text-accent-ai"}):React.createElement(React.Fragment,null,React.createElement(ei.AW,{className:"w-5 h-5 transition duration-150 ease-in-out"}),React.createElement("span",null,I("businessDetails")?.length?"Improve Using AI":"Write Using AI"))),z>0&&M?.length>1&&React.createElement("div",{className:"flex gap-2 items-center justify-end w-[100px] cursor-default text-zip-body-text"},React.createElement("div",{className:"w-5"},1!==z?React.createElement(Yi,{className:"w-5 cursor-pointer text-zip-body-text flex justify-center",onClick:()=>V(!1),"data-disabled":d}):React.createElement(Yi,{className:"w-5 text-border-tertiary flex justify-center cursor-not-allowed","data-disabled":"true"})),React.createElement("div",{className:"zw-sm-semibold cursor-default self-stretch flex items-end"},z," /"," ",M?.length),React.createElement("div",{className:"w-5"},z!==M?.length?React.createElement(Xi,{className:"w-5 cursor-pointer text-zip-body-text flex justify-center",onClick:()=>V(!0),"data-disabled":d}):React.createElement(Xi,{className:"w-5 text-border-tertiary flex justify-center","data-disabled":"true"}))))),React.createElement(Qa,null),React.createElement(Od,{onClickPrevious:n,loading:k}))}));function Ng(){return Ng=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Ng.apply(null,arguments)}class Ig extends i.Component{constructor(e){super(e),this.state={hasError:!1}}static getDerivedStateFromError(){return{hasError:!0}}componentDidCatch(e,t){console.error("ErrorBoundary caught an error",e,t)}retryStep=()=>{};handleClosePopUop=e=>{e?.preventDefault(),e?.stopPropagation(),this.props.toggleOnboardingAIStep()};render(){return this.state.hasError?React.createElement("div",{className:"h-screen w-full bg-st-background-secondary grid grid-cols-1 grid-rows-[80px_1fr]"},React.createElement("div",{className:"grid grid-cols-1 auto-rows-min gap-4 w-full max-w-[590px] my-32 mx-auto text-center px-5 lg:px-0"},React.createElement("div",{className:"space-y-3"},React.createElement(ei.Rk,{className:"text-center space-y-3 w-6 h-6 mx-auto "}),React.createElement("h5",null,(0,u.__)("Oops , Something went wrong!","ast-block-template")),React.createElement("p",{className:"text-zip-body-text",dangerouslySetInnerHTML:{__html:(0,u.nv)((0,u.__)('There was a problem processing the request. Please try again. If this error continues please contact our <a href="%1$s">support team</a>.',"ast-block-templates"),"https://wpastra.com/contact")}})),React.createElement("div",{className:"flex justify-center space-x-4"},React.createElement(ii.A,{type:"button",variant:"primary",className:"mt-4 w-fit mx-auto",isSmall:!0,onClick:this.handleClosePopUop},(0,u.__)("Back to Main Screen","ast-block-template"))))):this.props.children}}const Og=e=>{const{toggleOnboardingAIStep:t}=(0,r.A)(g.U);return React.createElement(Ig,Ng({},e,{toggleOnboardingAIStep:t}))};function Lg({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5m-13.5-9L12 3m0 0 4.5 4.5M12 3v13.5"}))}const Bg=i.forwardRef(Lg);function jg({title:e,titleId:t,...r},n){return i.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},r),e?i.createElement("title",{id:t},e):null,i.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"m4.5 15.75 7.5-7.5 7.5 7.5"}))}const Dg=i.forwardRef(jg);function Fg(){const e=(0,i.useRef)(!1);return(0,_d.E)((()=>(e.current=!0,()=>{e.current=!1})),[]),e}var Mg=o(6719);class zg extends i.Component{getSnapshotBeforeUpdate(e){const t=this.props.childRef.current;if(t&&e.isPresent&&!this.props.isPresent){const e=this.props.sizeRef.current;e.height=t.offsetHeight||0,e.width=t.offsetWidth||0,e.top=t.offsetTop,e.left=t.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function Vg({children:e,isPresent:t}){const r=(0,i.useId)(),n=(0,i.useRef)(null),a=(0,i.useRef)({width:0,height:0,top:0,left:0});return(0,i.useInsertionEffect)((()=>{const{width:e,height:i,top:o,left:s}=a.current;if(t||!n.current||!e||!i)return;n.current.dataset.motionPopId=r;const l=document.createElement("style");return document.head.appendChild(l),l.sheet&&l.sheet.insertRule(`\n          [data-motion-pop-id="${r}"] {\n            position: absolute !important;\n            width: ${e}px !important;\n            height: ${i}px !important;\n            top: ${o}px !important;\n            left: ${s}px !important;\n          }\n        `),()=>{document.head.removeChild(l)}}),[t]),i.createElement(zg,{isPresent:t,childRef:n,sizeRef:a},i.cloneElement(e,{ref:n}))}const Wg=({children:e,initial:t,isPresent:r,onExitComplete:n,custom:a,presenceAffectsLayout:o,mode:s})=>{const l=(0,xd.M)(Ug),c=(0,i.useId)(),u=(0,i.useMemo)((()=>({id:c,initial:t,isPresent:r,custom:a,onExitComplete:e=>{l.set(e,!0);for(const e of l.values())if(!e)return;n&&n()},register:e=>(l.set(e,!1),()=>l.delete(e))})),o?void 0:[r]);return(0,i.useMemo)((()=>{l.forEach(((e,t)=>l.set(t,!1)))}),[r]),i.useEffect((()=>{!r&&!l.size&&n&&n()}),[r]),"popLayout"===s&&(e=i.createElement(Vg,{isPresent:r},e)),i.createElement(Mg.t.Provider,{value:u},e)};function Ug(){return new Map}var Hg=o(9473),$g=o(5238);const Zg=e=>e.key||"",Gg=({children:e,custom:t,initial:r=!0,onExitComplete:n,exitBeforeEnter:a,presenceAffectsLayout:o=!0,mode:s="sync"})=>{(0,$g.V)(!a,"Replace exitBeforeEnter with mode='wait'");const l=(0,i.useContext)(Hg.L).forceRender||function(){const e=Fg(),[t,r]=(0,i.useState)(0),n=(0,i.useCallback)((()=>{e.current&&r(t+1)}),[t]);return[(0,i.useCallback)((()=>Sd.Gt.postRender(n)),[n]),t]}()[0],c=Fg(),u=function(e){const t=[];return i.Children.forEach(e,(e=>{(0,i.isValidElement)(e)&&t.push(e)})),t}(e);let d=u;const p=(0,i.useRef)(new Map).current,m=(0,i.useRef)(d),f=(0,i.useRef)(new Map).current,g=(0,i.useRef)(!0);var h;if((0,_d.E)((()=>{g.current=!1,function(e,t){e.forEach((e=>{const r=Zg(e);t.set(r,e)}))}(u,f),m.current=d})),h=()=>{g.current=!0,f.clear(),p.clear()},(0,i.useEffect)((()=>()=>h()),[]),g.current)return i.createElement(i.Fragment,null,d.map((e=>i.createElement(Wg,{key:Zg(e),isPresent:!0,initial:!!r&&void 0,presenceAffectsLayout:o,mode:s},e))));d=[...d];const y=m.current.map(Zg),b=u.map(Zg),v=y.length;for(let e=0;e<v;e++){const t=y[e];-1!==b.indexOf(t)||p.has(t)||p.set(t,void 0)}return"wait"===s&&p.size&&(d=[]),p.forEach(((e,r)=>{if(-1!==b.indexOf(r))return;const a=f.get(r);if(!a)return;const g=y.indexOf(r);let h=e;if(!h){const e=()=>{p.delete(r);const e=Array.from(f.keys()).filter((e=>!b.includes(e)));if(e.forEach((e=>f.delete(e))),m.current=u.filter((t=>{const n=Zg(t);return n===r||e.includes(n)})),!p.size){if(!1===c.current)return;l(),n&&n()}};h=i.createElement(Wg,{key:Zg(a),isPresent:!1,onExitComplete:e,custom:t,presenceAffectsLayout:o,mode:s},a),p.set(r,h)}d.splice(g,0,h)})),d=d.map((e=>{const t=e.key;return p.has(t)?e:i.createElement(Wg,{key:Zg(e),isPresent:!0,presenceAffectsLayout:o,mode:s},e)})),i.createElement(i.Fragment,null,p.size?d:d.map((e=>(0,i.cloneElement)(e))))};var qg=o(5556),Yg=o.n(qg),Kg=new Map([["aac","audio/aac"],["abw","application/x-abiword"],["arc","application/x-freearc"],["avif","image/avif"],["avi","video/x-msvideo"],["azw","application/vnd.amazon.ebook"],["bin","application/octet-stream"],["bmp","image/bmp"],["bz","application/x-bzip"],["bz2","application/x-bzip2"],["cda","application/x-cdf"],["csh","application/x-csh"],["css","text/css"],["csv","text/csv"],["doc","application/msword"],["docx","application/vnd.openxmlformats-officedocument.wordprocessingml.document"],["eot","application/vnd.ms-fontobject"],["epub","application/epub+zip"],["gz","application/gzip"],["gif","image/gif"],["heic","image/heic"],["heif","image/heif"],["htm","text/html"],["html","text/html"],["ico","image/vnd.microsoft.icon"],["ics","text/calendar"],["jar","application/java-archive"],["jpeg","image/jpeg"],["jpg","image/jpeg"],["js","text/javascript"],["json","application/json"],["jsonld","application/ld+json"],["mid","audio/midi"],["midi","audio/midi"],["mjs","text/javascript"],["mp3","audio/mpeg"],["mp4","video/mp4"],["mpeg","video/mpeg"],["mpkg","application/vnd.apple.installer+xml"],["odp","application/vnd.oasis.opendocument.presentation"],["ods","application/vnd.oasis.opendocument.spreadsheet"],["odt","application/vnd.oasis.opendocument.text"],["oga","audio/ogg"],["ogv","video/ogg"],["ogx","application/ogg"],["opus","audio/opus"],["otf","font/otf"],["png","image/png"],["pdf","application/pdf"],["php","application/x-httpd-php"],["ppt","application/vnd.ms-powerpoint"],["pptx","application/vnd.openxmlformats-officedocument.presentationml.presentation"],["rar","application/vnd.rar"],["rtf","application/rtf"],["sh","application/x-sh"],["svg","image/svg+xml"],["swf","application/x-shockwave-flash"],["tar","application/x-tar"],["tif","image/tiff"],["tiff","image/tiff"],["ts","video/mp2t"],["ttf","font/ttf"],["txt","text/plain"],["vsd","application/vnd.visio"],["wav","audio/wav"],["weba","audio/webm"],["webm","video/webm"],["webp","image/webp"],["woff","font/woff"],["woff2","font/woff2"],["xhtml","application/xhtml+xml"],["xls","application/vnd.ms-excel"],["xlsx","application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"],["xml","application/xml"],["xul","application/vnd.mozilla.xul+xml"],["zip","application/zip"],["7z","application/x-7z-compressed"],["mkv","video/x-matroska"],["mov","video/quicktime"],["msg","application/vnd.ms-outlook"]]);function Xg(e,t){var r=function(e){var t=e.name;if(t&&-1!==t.lastIndexOf(".")&&!e.type){var r=t.split(".").pop().toLowerCase(),n=Kg.get(r);n&&Object.defineProperty(e,"type",{value:n,writable:!1,configurable:!1,enumerable:!0})}return e}(e);if("string"!=typeof r.path){var n=e.webkitRelativePath;Object.defineProperty(r,"path",{value:"string"==typeof t?t:"string"==typeof n&&n.length>0?n:e.name,writable:!1,configurable:!1,enumerable:!0})}return r}var Jg=[".DS_Store","Thumbs.db"];function Qg(e){return"object"==typeof e&&null!==e}function eh(e){return ah(e.target.files).map((function(e){return Xg(e)}))}function th(e){return(0,Tc.sH)(this,void 0,void 0,(function(){return(0,Tc.YH)(this,(function(t){switch(t.label){case 0:return[4,Promise.all(e.map((function(e){return e.getFile()})))];case 1:return[2,t.sent().map((function(e){return Xg(e)}))]}}))}))}function rh(e,t){return(0,Tc.sH)(this,void 0,void 0,(function(){var r;return(0,Tc.YH)(this,(function(n){switch(n.label){case 0:return e.items?(r=ah(e.items).filter((function(e){return"file"===e.kind})),"drop"!==t?[2,r]:[4,Promise.all(r.map(ih))]):[3,2];case 1:return[2,nh(oh(n.sent()))];case 2:return[2,nh(ah(e.files).map((function(e){return Xg(e)})))]}}))}))}function nh(e){return e.filter((function(e){return-1===Jg.indexOf(e.name)}))}function ah(e){if(null===e)return[];for(var t=[],r=0;r<e.length;r++){var n=e[r];t.push(n)}return t}function ih(e){if("function"!=typeof e.webkitGetAsEntry)return sh(e);var t=e.webkitGetAsEntry();return t&&t.isDirectory?ch(t):sh(e)}function oh(e){return e.reduce((function(e,t){return(0,Tc.fX)((0,Tc.fX)([],(0,Tc.zs)(e),!1),(0,Tc.zs)(Array.isArray(t)?oh(t):[t]),!1)}),[])}function sh(e){var t=e.getAsFile();if(!t)return Promise.reject("".concat(e," is not a File"));var r=Xg(t);return Promise.resolve(r)}function lh(e){return(0,Tc.sH)(this,void 0,void 0,(function(){return(0,Tc.YH)(this,(function(t){return[2,e.isDirectory?ch(e):uh(e)]}))}))}function ch(e){var t=e.createReader();return new Promise((function(e,r){var n=[];!function a(){var i=this;t.readEntries((function(t){return(0,Tc.sH)(i,void 0,void 0,(function(){var i,o,s;return(0,Tc.YH)(this,(function(l){switch(l.label){case 0:if(t.length)return[3,5];l.label=1;case 1:return l.trys.push([1,3,,4]),[4,Promise.all(n)];case 2:return i=l.sent(),e(i),[3,4];case 3:return o=l.sent(),r(o),[3,4];case 4:return[3,6];case 5:s=Promise.all(t.map(lh)),n.push(s),a(),l.label=6;case 6:return[2]}}))}))}),(function(e){r(e)}))}()}))}function uh(e){return(0,Tc.sH)(this,void 0,void 0,(function(){return(0,Tc.YH)(this,(function(t){return[2,new Promise((function(t,r){e.file((function(r){var n=Xg(r,e.fullPath);t(n)}),(function(e){r(e)}))}))]}))}))}var dh=o(9455);function ph(e){return function(e){if(Array.isArray(e))return bh(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||yh(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function mh(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function fh(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?mh(Object(r),!0).forEach((function(t){gh(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):mh(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function gh(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function hh(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i=[],o=!0,s=!1;try{for(r=r.call(e);!(o=(n=r.next()).done)&&(i.push(n.value),!t||i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{o||null==r.return||r.return()}finally{if(s)throw a}}return i}}(e,t)||yh(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function yh(e,t){if(e){if("string"==typeof e)return bh(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?bh(e,t):void 0}}function bh(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}var vh=function(e){e=Array.isArray(e)&&1===e.length?e[0]:e;var t=Array.isArray(e)?"one of ".concat(e.join(", ")):e;return{code:"file-invalid-type",message:"File type must be ".concat(t)}},wh=function(e){return{code:"file-too-large",message:"File is larger than ".concat(e," ").concat(1===e?"byte":"bytes")}},xh=function(e){return{code:"file-too-small",message:"File is smaller than ".concat(e," ").concat(1===e?"byte":"bytes")}},_h={code:"too-many-files",message:"Too many files"};function Eh(e,t){var r="application/x-moz-file"===e.type||(0,dh.A)(e,t);return[r,r?null:vh(t)]}function kh(e,t,r){if(Sh(e.size))if(Sh(t)&&Sh(r)){if(e.size>r)return[!1,wh(r)];if(e.size<t)return[!1,xh(t)]}else{if(Sh(t)&&e.size<t)return[!1,xh(t)];if(Sh(r)&&e.size>r)return[!1,wh(r)]}return[!0,null]}function Sh(e){return null!=e}function Ch(e){return"function"==typeof e.isPropagationStopped?e.isPropagationStopped():void 0!==e.cancelBubble&&e.cancelBubble}function Rh(e){return e.dataTransfer?Array.prototype.some.call(e.dataTransfer.types,(function(e){return"Files"===e||"application/x-moz-file"===e})):!!e.target&&!!e.target.files}function Ah(e){e.preventDefault()}function Ph(){for(var e=arguments.length,t=new Array(e),r=0;r<e;r++)t[r]=arguments[r];return function(e){for(var r=arguments.length,n=new Array(r>1?r-1:0),a=1;a<r;a++)n[a-1]=arguments[a];return t.some((function(t){return!Ch(e)&&t&&t.apply(void 0,[e].concat(n)),Ch(e)}))}}function Th(e){return"audio/*"===e||"video/*"===e||"image/*"===e||"text/*"===e||/\w+\/[-+.\w]+/g.test(e)}function Nh(e){return/^.*\.[\w]+$/.test(e)}var Ih=["children"],Oh=["open"],Lh=["refKey","role","onKeyDown","onFocus","onBlur","onClick","onDragEnter","onDragOver","onDragLeave","onDrop"],Bh=["refKey","onChange","onClick"];function jh(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,a,i=[],o=!0,s=!1;try{for(r=r.call(e);!(o=(n=r.next()).done)&&(i.push(n.value),!t||i.length!==t);o=!0);}catch(e){s=!0,a=e}finally{try{o||null==r.return||r.return()}finally{if(s)throw a}}return i}}(e,t)||Dh(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Dh(e,t){if(e){if("string"==typeof e)return Fh(e,t);var r=Object.prototype.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?Fh(e,t):void 0}}function Fh(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=new Array(t);r<t;r++)n[r]=e[r];return n}function Mh(e,t){var r=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),r.push.apply(r,n)}return r}function zh(e){for(var t=1;t<arguments.length;t++){var r=null!=arguments[t]?arguments[t]:{};t%2?Mh(Object(r),!0).forEach((function(t){Vh(e,t,r[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(r)):Mh(Object(r)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(r,t))}))}return e}function Vh(e,t,r){return t in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r,e}function Wh(e,t){if(null==e)return{};var r,n,a=function(e,t){if(null==e)return{};var r,n,a={},i=Object.keys(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||(a[r]=e[r]);return a}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(n=0;n<i.length;n++)r=i[n],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r])}return a}var Uh=(0,i.forwardRef)((function(e,t){var r=e.children,n=Zh(Wh(e,Ih)),a=n.open,o=Wh(n,Oh);return(0,i.useImperativeHandle)(t,(function(){return{open:a}}),[a]),c().createElement(i.Fragment,null,r(zh(zh({},o),{},{open:a})))}));Uh.displayName="Dropzone";var Hh={disabled:!1,getFilesFromEvent:function(e){return(0,Tc.sH)(this,void 0,void 0,(function(){return(0,Tc.YH)(this,(function(t){return Qg(e)&&Qg(e.dataTransfer)?[2,rh(e.dataTransfer,e.type)]:Qg(r=e)&&Qg(r.target)?[2,eh(e)]:Array.isArray(e)&&e.every((function(e){return"getFile"in e&&"function"==typeof e.getFile}))?[2,th(e)]:[2,[]];var r}))}))},maxSize:1/0,minSize:0,multiple:!0,maxFiles:0,preventDropOnDocument:!0,noClick:!1,noKeyboard:!1,noDrag:!1,noDragEventsBubbling:!1,validator:null,useFsAccessApi:!0,autoFocus:!1};Uh.defaultProps=Hh,Uh.propTypes={children:Yg().func,accept:Yg().objectOf(Yg().arrayOf(Yg().string)),multiple:Yg().bool,preventDropOnDocument:Yg().bool,noClick:Yg().bool,noKeyboard:Yg().bool,noDrag:Yg().bool,noDragEventsBubbling:Yg().bool,minSize:Yg().number,maxSize:Yg().number,maxFiles:Yg().number,disabled:Yg().bool,getFilesFromEvent:Yg().func,onFileDialogCancel:Yg().func,onFileDialogOpen:Yg().func,useFsAccessApi:Yg().bool,autoFocus:Yg().bool,onDragEnter:Yg().func,onDragLeave:Yg().func,onDragOver:Yg().func,onDrop:Yg().func,onDropAccepted:Yg().func,onDropRejected:Yg().func,onError:Yg().func,validator:Yg().func};var $h={isFocused:!1,isFileDialogActive:!1,isDragActive:!1,isDragAccept:!1,isDragReject:!1,acceptedFiles:[],fileRejections:[]};function Zh(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=zh(zh({},Hh),e),r=t.accept,n=t.disabled,a=t.getFilesFromEvent,o=t.maxSize,s=t.minSize,l=t.multiple,c=t.maxFiles,u=t.onDragEnter,d=t.onDragLeave,p=t.onDragOver,m=t.onDrop,f=t.onDropAccepted,g=t.onDropRejected,h=t.onFileDialogCancel,y=t.onFileDialogOpen,b=t.useFsAccessApi,v=t.autoFocus,w=t.preventDropOnDocument,x=t.noClick,_=t.noKeyboard,E=t.noDrag,k=t.noDragEventsBubbling,S=t.onError,C=t.validator,R=(0,i.useMemo)((function(){return function(e){if(Sh(e))return Object.entries(e).reduce((function(e,t){var r=hh(t,2),n=r[0],a=r[1];return[].concat(ph(e),[n],ph(a))}),[]).filter((function(e){return Th(e)||Nh(e)})).join(",")}(r)}),[r]),A=(0,i.useMemo)((function(){return function(e){return Sh(e)?[{description:"Files",accept:Object.entries(e).filter((function(e){var t=hh(e,2),r=t[0],n=t[1],a=!0;return Th(r)||(console.warn('Skipped "'.concat(r,'" because it is not a valid MIME type. Check https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types for a list of valid MIME types.')),a=!1),Array.isArray(n)&&n.every(Nh)||(console.warn('Skipped "'.concat(r,'" because an invalid file extension was provided.')),a=!1),a})).reduce((function(e,t){var r=hh(t,2),n=r[0],a=r[1];return fh(fh({},e),{},gh({},n,a))}),{})}]:e}(r)}),[r]),P=(0,i.useMemo)((function(){return"function"==typeof y?y:qh}),[y]),T=(0,i.useMemo)((function(){return"function"==typeof h?h:qh}),[h]),N=(0,i.useRef)(null),I=(0,i.useRef)(null),O=jh((0,i.useReducer)(Gh,$h),2),L=O[0],B=O[1],j=L.isFocused,D=L.isFileDialogActive,F=(0,i.useRef)("undefined"!=typeof window&&window.isSecureContext&&b&&"showOpenFilePicker"in window),M=function(){!F.current&&D&&setTimeout((function(){I.current&&(I.current.files.length||(B({type:"closeDialog"}),T()))}),300)};(0,i.useEffect)((function(){return window.addEventListener("focus",M,!1),function(){window.removeEventListener("focus",M,!1)}}),[I,D,T,F]);var z=(0,i.useRef)([]),V=function(e){N.current&&N.current.contains(e.target)||(e.preventDefault(),z.current=[])};(0,i.useEffect)((function(){return w&&(document.addEventListener("dragover",Ah,!1),document.addEventListener("drop",V,!1)),function(){w&&(document.removeEventListener("dragover",Ah),document.removeEventListener("drop",V))}}),[N,w]),(0,i.useEffect)((function(){return!n&&v&&N.current&&N.current.focus(),function(){}}),[N,v,n]);var W=(0,i.useCallback)((function(e){S?S(e):console.error(e)}),[S]),U=(0,i.useCallback)((function(e){var t;e.preventDefault(),e.persist(),re(e),z.current=[].concat(function(e){if(Array.isArray(e))return Fh(e)}(t=z.current)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(t)||Dh(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),[e.target]),Rh(e)&&Promise.resolve(a(e)).then((function(t){if(!Ch(e)||k){var r=t.length,n=r>0&&function(e){var t=e.files,r=e.accept,n=e.minSize,a=e.maxSize,i=e.multiple,o=e.maxFiles,s=e.validator;return!(!i&&t.length>1||i&&o>=1&&t.length>o)&&t.every((function(e){var t=hh(Eh(e,r),1)[0],i=hh(kh(e,n,a),1)[0],o=s?s(e):null;return t&&i&&!o}))}({files:t,accept:R,minSize:s,maxSize:o,multiple:l,maxFiles:c,validator:C});B({isDragAccept:n,isDragReject:r>0&&!n,isDragActive:!0,type:"setDraggedFiles"}),u&&u(e)}})).catch((function(e){return W(e)}))}),[a,u,W,k,R,s,o,l,c,C]),H=(0,i.useCallback)((function(e){e.preventDefault(),e.persist(),re(e);var t=Rh(e);if(t&&e.dataTransfer)try{e.dataTransfer.dropEffect="copy"}catch(e){}return t&&p&&p(e),!1}),[p,k]),$=(0,i.useCallback)((function(e){e.preventDefault(),e.persist(),re(e);var t=z.current.filter((function(e){return N.current&&N.current.contains(e)})),r=t.indexOf(e.target);-1!==r&&t.splice(r,1),z.current=t,t.length>0||(B({type:"setDraggedFiles",isDragActive:!1,isDragAccept:!1,isDragReject:!1}),Rh(e)&&d&&d(e))}),[N,d,k]),Z=(0,i.useCallback)((function(e,t){var r=[],n=[];e.forEach((function(e){var t=jh(Eh(e,R),2),a=t[0],i=t[1],l=jh(kh(e,s,o),2),c=l[0],u=l[1],d=C?C(e):null;if(a&&c&&!d)r.push(e);else{var p=[i,u];d&&(p=p.concat(d)),n.push({file:e,errors:p.filter((function(e){return e}))})}})),(!l&&r.length>1||l&&c>=1&&r.length>c)&&(r.forEach((function(e){n.push({file:e,errors:[_h]})})),r.splice(0)),B({acceptedFiles:r,fileRejections:n,type:"setFiles"}),m&&m(r,n,t),n.length>0&&g&&g(n,t),r.length>0&&f&&f(r,t)}),[B,l,R,s,o,c,m,f,g,C]),G=(0,i.useCallback)((function(e){e.preventDefault(),e.persist(),re(e),z.current=[],Rh(e)&&Promise.resolve(a(e)).then((function(t){Ch(e)&&!k||Z(t,e)})).catch((function(e){return W(e)})),B({type:"reset"})}),[a,Z,W,k]),q=(0,i.useCallback)((function(){if(F.current){B({type:"openDialog"}),P();var e={multiple:l,types:A};window.showOpenFilePicker(e).then((function(e){return a(e)})).then((function(e){Z(e,null),B({type:"closeDialog"})})).catch((function(e){!function(e){return e instanceof DOMException&&("AbortError"===e.name||e.code===e.ABORT_ERR)}(e)?function(e){return e instanceof DOMException&&("SecurityError"===e.name||e.code===e.SECURITY_ERR)}(e)?(F.current=!1,I.current?(I.current.value=null,I.current.click()):W(new Error("Cannot open the file picker because the https://developer.mozilla.org/en-US/docs/Web/API/File_System_Access_API is not supported and no <input> was provided."))):W(e):(T(e),B({type:"closeDialog"}))}))}else I.current&&(B({type:"openDialog"}),P(),I.current.value=null,I.current.click())}),[B,P,T,b,Z,W,A,l]),Y=(0,i.useCallback)((function(e){N.current&&N.current.isEqualNode(e.target)&&(" "!==e.key&&"Enter"!==e.key&&32!==e.keyCode&&13!==e.keyCode||(e.preventDefault(),q()))}),[N,q]),K=(0,i.useCallback)((function(){B({type:"focus"})}),[]),X=(0,i.useCallback)((function(){B({type:"blur"})}),[]),J=(0,i.useCallback)((function(){x||(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:window.navigator.userAgent;return function(e){return-1!==e.indexOf("MSIE")||-1!==e.indexOf("Trident/")}(e)||function(e){return-1!==e.indexOf("Edge/")}(e)}()?setTimeout(q,0):q())}),[x,q]),Q=function(e){return n?null:e},ee=function(e){return _?null:Q(e)},te=function(e){return E?null:Q(e)},re=function(e){k&&e.stopPropagation()},ne=(0,i.useMemo)((function(){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.refKey,r=void 0===t?"ref":t,a=e.role,i=e.onKeyDown,o=e.onFocus,s=e.onBlur,l=e.onClick,c=e.onDragEnter,u=e.onDragOver,d=e.onDragLeave,p=e.onDrop,m=Wh(e,Lh);return zh(zh(Vh({onKeyDown:ee(Ph(i,Y)),onFocus:ee(Ph(o,K)),onBlur:ee(Ph(s,X)),onClick:Q(Ph(l,J)),onDragEnter:te(Ph(c,U)),onDragOver:te(Ph(u,H)),onDragLeave:te(Ph(d,$)),onDrop:te(Ph(p,G)),role:"string"==typeof a&&""!==a?a:"presentation"},r,N),n||_?{}:{tabIndex:0}),m)}}),[N,Y,K,X,J,U,H,$,G,_,E,n]),ae=(0,i.useCallback)((function(e){e.stopPropagation()}),[]),ie=(0,i.useMemo)((function(){return function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.refKey,r=void 0===t?"ref":t,n=e.onChange,a=e.onClick,i=Wh(e,Bh);return zh(zh({},Vh({accept:R,multiple:l,type:"file",style:{display:"none"},onChange:Q(Ph(n,G)),onClick:Q(Ph(a,ae)),tabIndex:-1},r,I)),i)}}),[I,r,l,G,n]);return zh(zh({},L),{},{isFocused:j&&!n,getRootProps:ne,getInputProps:ie,rootRef:N,inputRef:I,open:Q(q)})}function Gh(e,t){switch(t.type){case"focus":return zh(zh({},e),{},{isFocused:!0});case"blur":return zh(zh({},e),{},{isFocused:!1});case"openDialog":return zh(zh({},$h),{},{isFileDialogActive:!0});case"closeDialog":return zh(zh({},e),{},{isFileDialogActive:!1});case"setDraggedFiles":return zh(zh({},e),{},{isDragActive:t.isDragActive,isDragAccept:t.isDragAccept,isDragReject:t.isDragReject});case"setFiles":return zh(zh({},e),{},{acceptedFiles:t.acceptedFiles,fileRejections:t.fileRejections});case"reset":return zh({},$h);default:return e}}function qh(){}var Yh=o(5878);const{useState:Kh,useEffect:Xh,useRef:Jh}=wp.element,Qh=({className:e,onClick:t,children:r})=>{const n=e=>{"function"==typeof t&&t(e)};return React.createElement("div",{onClick:n,className:(0,y.xW)(e),role:"button",tabIndex:"0",onKeyDown:e=>"Enter"===e.key?n:null},r)};function ey(){return ey=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ey.apply(null,arguments)}const ty="default",ry="selection",ny=(0,i.memo)((({image:e,isSelected:t,onClick:r,variant:n="default",...a})=>{return React.createElement(Cd.P.div,ey({key:e.id,initial:{opacity:0},animate:{opacity:1},transition:{duration:.15},exit:{opacity:0}},a),React.createElement(Qh,{key:e?.id,className:(0,y.xW)("flex relative overflow-hidden rounded-lg border-2 border-solid border-transparent",n===ty&&"cursor-pointer",n===ty&&t&&"border-image-selection"),onClick:(i=e,e=>{e?.preventDefault(),e?.stopPropagation(),n===ry&&t||r(i)})},React.createElement("img",{className:"inline-block h-fit w-full relative aspect-[12/8] bg-background-secondary",src:e.optimized_url,alt:e?.description??"",loading:"lazy",onLoad:e=>{e.target.classList.remove("aspect-[12/8]")}}),(()=>{return t?n===ry?React.createElement("button",{onClick:(a=e,e=>{e?.preventDefault(),e?.stopPropagation(),r(a)}),className:"flex items-center justify-center absolute top-2 right-2 p-1 bg-white rounded-full border border-solid border-zip-dark-theme-border cursor-pointer focus:outline-none focus-visible:outline-none"},React.createElement(f,{className:"w-4 h-4 text-zip-app-heading"})):React.createElement("div",{className:"inline-flex absolute top-2 right-2 p-1 bg-image-selection rounded-full pointer-events-none"},React.createElement(_u,{className:"w-4 h-4 text-white"})):null;var a})()),e?.author_name&&React.createElement("a",{href:e?.author_url,target:"_blank",className:"block w-11/12 mt-1 mx-1 text-[0.625rem] font-normal leading-3 !text-secondary-text no-underline",rel:"noreferrer"},"by ",e.author_name," via"," ",e.engine?e.engine.charAt(0).toUpperCase()+e.engine.slice(1):"Default"));var i}),((e,t)=>String(e.image.id)===String(t.image.id)&&e.isSelected===t.isSelected&&e.onClick===t.onClick&&e.variant===t.variant));function ay(){return ay=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},ay.apply(null,arguments)}const{useState:iy,useRef:oy,useEffect:sy}=wp.element,ly=({className:e,keywordClassName:t,keywords:r,onClick:n,...a})=>{const[i,o]=iy(0),[s,l]=iy(!1),[c,u]=iy(!1),d=oy(null);sy((()=>{if(!d.current)return;const{scrollWidth:e,clientWidth:t}=d.current;l(i>0),u(i<e-t)}),[r,i]);const p=e=>()=>{"function"==typeof n&&n(e)},m=(e,t)=>{e&&e.scrollTo({left:t,behavior:"smooth"})};return React.createElement("div",ay({className:(0,y.xW)("relative flex flex-row items-start",e)},a),s&&React.createElement("button",{className:"absolute inset-y-0 left-0 px-1.5 py-0.5 cursor-pointer text-app-inactive-icon hover:text-app-active-icon bg-gradient-to-r from-70% from-white to-transparent transition duration-150 ease-in-out border-none bg-transparent",onClick:()=>{m(d.current,0)}},React.createElement(Yi,{className:"w-6 h-6"})),React.createElement("div",{className:"flex flex-row flex-nowrap gap-2 overflow-x-auto hide-scrollbar",ref:d,onScroll:e=>{const{scrollLeft:t,scrollWidth:r,clientWidth:n}=e.target;o(t),l(t>0),u(t<r-n)}},r.map(((e,r)=>React.createElement("div",{key:r,className:(0,y.xW)("px-3 py-1 text-sm font-normal leading-5 rounded-full shadow-sm cursor-pointer text-app-text whitespace-nowrap border border-solid",t),onClick:p(e),role:"button",tabIndex:"0",onKeyDown:t=>"Enter"===t.key?p(e):null},e)))),c&&React.createElement("button",{className:"absolute inset-y-0 right-0 px-1.5 py-0.5 cursor-pointer text-app-inactive-icon hover:text-app-active-icon bg-gradient-to-l from-70% from-white to-transparent transition duration-150 ease-in-out border-none bg-transparent",onClick:()=>{const e=d.current;m(e,e.scrollWidth)}},React.createElement(Xi,{className:"w-6 h-6"})))},cy=[],uy=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Select.extend({featuredImageToolbar(t){this.createSelectToolbar(t,{text:e.media.view.l10n.setFeaturedImage,state:this.options.state})},editState(){const t=this.state("featured-image").get("selection"),r=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(r),r.loadEditor()},createStates:function(){this.on("toolbar:create:featured-image",this.featuredImageToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.FeaturedImage,new e.media.controller.EditImage({model:this.options.editImage})])}})},dy=()=>{const{wp:e}=window;return e.media.view.MediaFrame.Post.extend({galleryToolbar(){const t=this.state().get("editing");this.toolbar.set(new e.media.view.Toolbar({controller:this,items:{insert:{style:"primary",text:t?e.media.view.l10n.updateGallery:e.media.view.l10n.insertGallery,priority:80,requires:{library:!0},click(){const e=this.controller,t=e.state();e.close(),t.trigger("update",t.get("library")),e.setState(e.options.state),e.reset()}}}}))},editState(){const t=this.state("gallery").get("selection"),r=new e.media.view.EditImage({model:t.single(),controller:this}).render();this.content.set(r),r.loadEditor()},createStates:function(){this.on("toolbar:create:main-gallery",this.galleryToolbar,this),this.on("content:render:edit-image",this.editState,this),this.states.add([new e.media.controller.Library({id:"gallery",title:e.media.view.l10n.createGalleryTitle,priority:40,toolbar:"main-gallery",filterable:"uploaded",multiple:"add",editable:!1,library:e.media.query({type:"image",...this.options.library})}),new e.media.controller.EditImage({model:this.options.editImage}),new e.media.controller.GalleryEdit({library:this.options.selection,editing:this.options.editing,menu:"gallery",displaySettings:!1,multiple:!0}),new e.media.controller.GalleryAdd])}})},py=e=>["sizes","mime","type","subtype","id","url","alt","link","caption"].reduce(((t,r)=>(e?.hasOwnProperty(r)&&(t[r]=e[r]),t)),{}),my=e=>{const{wp:t}=window;return t.media.query({order:"ASC",orderby:"post__in",post__in:e,posts_per_page:-1,query:!0,type:"image"})};class fy extends i.Component{constructor(){super(...arguments),this.openModal=this.openModal.bind(this),this.onOpen=this.onOpen.bind(this),this.onSelect=this.onSelect.bind(this),this.onUpdate=this.onUpdate.bind(this),this.onClose=this.onClose.bind(this)}initializeListeners(){this.frame.on("select",this.onSelect),this.frame.on("update",this.onUpdate),this.frame.on("open",this.onOpen),this.frame.on("close",this.onClose)}buildAndSetGalleryFrame(){const{addToGallery:e=!1,allowedTypes:t,multiple:r=!1,value:n=cy}=this.props;if(n===this.lastGalleryValue)return;const{wp:a}=window;let i;this.lastGalleryValue=n,this.frame&&this.frame.remove(),i=e?"gallery-library":n&&n.length?"gallery-edit":"gallery",this.GalleryDetailsMediaFrame||(this.GalleryDetailsMediaFrame=dy());const o=my(n),s=new a.media.model.Selection(o.models,{props:o.props.toJSON(),multiple:r});this.frame=new this.GalleryDetailsMediaFrame({mimeType:t,state:i,multiple:r,selection:s,editing:!(!n||!n.length)}),a.media.frame=this.frame,this.initializeListeners()}buildAndSetFeatureImageFrame(){const{wp:e}=window,{value:t,multiple:r,allowedTypes:n}=this.props,a=uy(),i=my(t),o=new e.media.model.Selection(i.models,{props:i.props.toJSON()});this.frame=new a({mimeType:n,state:"featured-image",multiple:r,selection:o,editing:t}),e.media.frame=this.frame,e.media.view.settings.post={...e.media.view.settings.post,featuredImageId:t||-1}}componentWillUnmount(){this.frame?.remove()}onUpdate(e){const{onSelect:t,multiple:r=!1}=this.props,n=this.frame.state(),a=e||n.get("selection");a&&a.models.length&&t(r?a.models.map((e=>py(e.toJSON()))):py(a.models[0].toJSON()))}onSelect(){const{onSelect:e,multiple:t=!1}=this.props,r=this.frame.state().get("selection").toJSON();e(t?r:r[0])}onOpen(){const{wp:e}=window,{value:t}=this.props;if(this.updateCollection(),this.props.mode&&this.frame.content.mode(this.props.mode),!(Array.isArray(t)?t?.length:t))return;const r=this.props.gallery,n=this.frame.state().get("selection"),a=Array.isArray(t)?t:[t];r||a.forEach((t=>{n.add(e.media.attachment(t))}));const i=my(a);i.more().done((function(){r&&i?.models?.length&&n.add(i.models)}))}onClose(){const{onClose:e}=this.props;e&&e()}updateCollection(){const e=this.frame.content.get();if(e&&e.collection){const t=e.collection;t.toArray().forEach((e=>e.trigger("destroy",e))),t.mirroring._hasMore=!0,t.more()}}openModal(){const{allowedTypes:e,gallery:t=!1,unstableFeaturedImageFlow:r=!1,modalClass:n,multiple:a=!1,title:i=(0,u.__)("Select or Upload Media")}=this.props,{wp:o}=window;if(t)this.buildAndSetGalleryFrame();else{const t={title:i,multiple:a};e&&(t.library={type:e}),this.frame=o.media(t)}n&&this.frame.$el.addClass(n),r&&this.buildAndSetFeatureImageFrame(),this.initializeListeners(),this.frame.open()}render(){return this.props.render({open:this.openModal})}}const gy=fy,hy=(e,t)=>{let r,n,a=e.path;return"string"==typeof e.namespace&&"string"==typeof e.endpoint&&(r=e.namespace.replace(/^\/|\/$/g,""),n=e.endpoint.replace(/^\//,""),a=n?r+"/"+n:r),delete e.namespace,delete e.endpoint,t({...e,path:a})};function yy(e){const t=e.split("?"),r=t[1],n=t[0];return r?n+"?"+r.split("&").map((e=>e.split("="))).map((e=>e.map(decodeURIComponent))).sort(((e,t)=>e[0].localeCompare(t[0]))).map((e=>e.map(encodeURIComponent))).map((e=>e.join("="))).join("&"):n}function by(e){try{return decodeURIComponent(e)}catch(t){return e}}function vy(e){return(function(e){let t;try{t=new URL(e,"http://example.com").search.substring(1)}catch(e){}if(t)return t}(e)||"").replace(/\+/g,"%20").split("&").reduce(((e,t)=>{const[r,n=""]=t.split("=").filter(Boolean).map(by);return r&&function(e,t,r){const n=t.length,a=n-1;for(let i=0;i<n;i++){let n=t[i];!n&&Array.isArray(e)&&(n=e.length.toString()),n=["__proto__","constructor","prototype"].includes(n)?n.toUpperCase():n;const o=!isNaN(Number(t[i+1]));e[n]=i===a?r:e[n]||(o?[]:{}),Array.isArray(e[n])&&!o&&(e[n]={...e[n]}),e=e[n]}}(e,r.replace(/\]/g,"").split("["),n),e}),Object.create(null))}function wy(e){let t="";const r=Object.entries(e);let n;for(;n=r.shift();){let[e,a]=n;if(Array.isArray(a)||a&&a.constructor===Object){const t=Object.entries(a).reverse();for(const[n,a]of t)r.unshift([`${e}[${n}]`,a])}else void 0!==a&&(null===a&&(a=""),t+="&"+[e,a].map(encodeURIComponent).join("="))}return t.substr(1)}function xy(e="",t){if(!t||!Object.keys(t).length)return e;let r=e;const n=e.indexOf("?");return-1!==n&&(t=Object.assign(vy(e),t),r=r.substr(0,n)),r+"?"+wy(t)}function _y(e,t){return Promise.resolve(t?e.body:new window.Response(JSON.stringify(e.body),{status:200,statusText:"OK",headers:e.headers}))}const Ey=({path:e,url:t,...r},n)=>({...r,url:t&&xy(t,n),path:e&&xy(e,n)}),ky=e=>e.json?e.json():Promise.reject(e),Sy=e=>{const{next:t}=(e=>{if(!e)return{};const t=e.match(/<([^>]+)>; rel="next"/);return t?{next:t[1]}:{}})(e.headers.get("link"));return t},Cy=async(e,t)=>{if(!1===e.parse)return t(e);if(!(e=>{const t=!!e.path&&-1!==e.path.indexOf("per_page=-1"),r=!!e.url&&-1!==e.url.indexOf("per_page=-1");return t||r})(e))return t(e);const r=await zy({...Ey(e,{per_page:100}),parse:!1}),n=await ky(r);if(!Array.isArray(n))return n;let a=Sy(r);if(!a)return n;let i=[].concat(n);for(;a;){const t=await zy({...e,path:void 0,url:a,parse:!1}),r=await ky(t);i=i.concat(r),a=Sy(t)}return i},Ry=new Set(["PATCH","PUT","DELETE"]),Ay="GET";function Py(e,t){return vy(e)[t]}function Ty(e,t){return void 0!==Py(e,t)}const Ny=(e,t=!0)=>Promise.resolve(((e,t=!0)=>t?204===e.status?null:e.json?e.json():Promise.reject(e):e)(e,t)).catch((e=>Iy(e,t)));function Iy(e,t=!0){if(!t)throw e;return(e=>{const t={code:"invalid_json",message:(0,u.__)("The response is not a valid JSON response.")};if(!e||!e.json)throw t;return e.json().catch((()=>{throw t}))})(e).then((e=>{const t={code:"unknown_error",message:(0,u.__)("An unknown error occurred.")};throw e||t}))}function Oy(e,...t){const r=e.indexOf("?");if(-1===r)return e;const n=vy(e),a=e.substr(0,r);t.forEach((e=>delete n[e]));const i=wy(n);return i?a+"?"+i:a}const Ly={Accept:"application/json, */*;q=0.1"},By={credentials:"include"},jy=[(e,t)=>("string"!=typeof e.url||Ty(e.url,"_locale")||(e.url=xy(e.url,{_locale:"user"})),"string"!=typeof e.path||Ty(e.path,"_locale")||(e.path=xy(e.path,{_locale:"user"})),t(e)),hy,(e,t)=>{const{method:r=Ay}=e;return Ry.has(r.toUpperCase())&&(e={...e,headers:{...e.headers,"X-HTTP-Method-Override":r,"Content-Type":"application/json"},method:"POST"}),t(e)},Cy],Dy=e=>{if(e.status>=200&&e.status<300)return e;throw e};let Fy=e=>{const{url:t,path:r,data:n,parse:a=!0,...i}=e;let{body:o,headers:s}=e;return s={...Ly,...s},n&&(o=JSON.stringify(n),s["Content-Type"]="application/json"),window.fetch(t||r||window.location.href,{...By,...i,body:o,headers:s}).then((e=>Promise.resolve(e).then(Dy).catch((e=>Iy(e,a))).then((e=>Ny(e,a)))),(e=>{if(e&&"AbortError"===e.name)throw e;throw{code:"fetch_error",message:(0,u.__)("You are probably offline.")}}))};function My(e){return jy.reduceRight(((e,t)=>r=>t(r,e)),Fy)(e).catch((t=>"rest_cookie_invalid_nonce"!==t.code?Promise.reject(t):window.fetch(My.nonceEndpoint).then(Dy).then((e=>e.text())).then((t=>(My.nonceMiddleware.nonce=t,My(e))))))}My.use=function(e){jy.unshift(e)},My.setFetchHandler=function(e){Fy=e},My.createNonceMiddleware=function(e){const t=(e,r)=>{const{headers:n={}}=e;for(const a in n)if("x-wp-nonce"===a.toLowerCase()&&n[a]===t.nonce)return r(e);return r({...e,headers:{...n,"X-WP-Nonce":t.nonce}})};return t.nonce=e,t},My.createPreloadingMiddleware=function(e){const t=Object.fromEntries(Object.entries(e).map((([e,t])=>[yy(e),t])));return(e,r)=>{const{parse:n=!0}=e;let a=e.path;if(!a&&e.url){const{rest_route:t,...r}=vy(e.url);"string"==typeof t&&(a=xy(t,r))}if("string"!=typeof a)return r(e);const i=e.method||"GET",o=yy(a);if("GET"===i&&t[o]){const e=t[o];return delete t[o],_y(e,!!n)}if("OPTIONS"===i&&t[i]&&t[i][o]){const e=t[i][o];return delete t[i][o],_y(e,!!n)}return r(e)}},My.createRootURLMiddleware=e=>(t,r)=>hy(t,(t=>{let n,a=t.url,i=t.path;return"string"==typeof i&&(n=e,-1!==e.indexOf("?")&&(i=i.replace("?","&")),i=i.replace(/^\//,""),"string"==typeof n&&-1!==n.indexOf("?")&&(i=i.replace("?","&")),a=n+i),r({...t,url:a})})),My.fetchAllMiddleware=Cy,My.mediaUploadMiddleware=(e,t)=>{if(!function(e){const t=!!e.method&&"POST"===e.method;return(!!e.path&&-1!==e.path.indexOf("/wp/v2/media")||!!e.url&&-1!==e.url.indexOf("/wp/v2/media"))&&t}(e))return t(e);let r=0;const n=e=>(r++,t({path:`/wp/v2/media/${e}/post-process`,method:"POST",data:{action:"create-image-subsizes"},parse:!1}).catch((()=>r<5?n(e):(t({path:`/wp/v2/media/${e}?force=true`,method:"DELETE"}),Promise.reject()))));return t({...e,parse:!1}).catch((t=>{const r=t.headers.get("x-wp-upload-attachment-id");return t.status>=500&&t.status<600&&r?n(r).catch((()=>!1!==e.parse?Promise.reject({code:"post_process",message:(0,u.__)("Media upload failed. If this is a photo or a large image, please scale it down and try again.")}):Promise.reject(t))):Iy(t,e.parse)})).then((t=>Ny(t,e.parse)))},My.createThemePreviewMiddleware=e=>(t,r)=>{if("string"==typeof t.url){const r=Py(t.url,"wp_theme_preview");void 0===r?t.url=xy(t.url,{wp_theme_preview:e}):""===r&&(t.url=Oy(t.url,"wp_theme_preview"))}if("string"==typeof t.path){const r=Py(t.path,"wp_theme_preview");void 0===r?t.path=xy(t.path,{wp_theme_preview:e}):""===r&&(t.path=Oy(t.path,"wp_theme_preview"))}return r(t)};const zy=My,Vy=(0,i.memo)((({render:e})=>{const{setWebsiteImagesAIStep:n}=(0,r.A)(g.U),{stepsData:{selectedImages:a=[]}}=(0,t.A)((e=>{const{getAIStepData:t}=e(g.U);return{stepsData:t()}}),[]);return React.createElement(React.Fragment,null,React.createElement(gy,{mode:"upload",allowedTypes:["image"],render:"function"==typeof e?e:({open:e})=>React.createElement("button",{type:"button",onClick:e,className:(0,y.xW)("flex flex-col items-center justify-center gap-3 py-[50px] px-[78px] aspect-video bg-zip-app-light-bg border border-solid border-border-tertiary rounded cursor-pointer")},React.createElement(Bg,{className:"w-6 h-6 text-accent-st"}),React.createElement("span",{className:"min-w-fit break-keep text-nowrap whitespace-nowrap text-base font-semibold text-zip-body-text"},(0,u.__)("Upload images","ast-block-templates"))),onSelect:e=>{const t=e.map((e=>(0,y.Bh)(e?.url)?e:(Ps.oR.error((0,y.yI)({message:(0,u.nv)((0,u.__)("Invalid file name! Please avoid special characters. (%s)","ast-block-templates"),e?.filename)}),y.GU),null))).filter((e=>null!==e)).map((e=>({id:String(e.id),url:e?.originalImageURL??e.url,optimized_url:e?.sizes?.large?.url??e.url,engine:"",description:e?.description??"",orientation:e?.orientation??(e?.width>e?.height?"landscape":"portrait"),author_name:e?.author_name??"",author_url:""}))).filter((e=>-1===a?.findIndex((t=>String(t.id)===String(e.id)))));n([...a,...t])},multiple:!0}))})),Wy=({open:e=!1,setOpen:r=(()=>{}),onClickGenerate:n,onClickSave:a})=>{const[o,s]=(0,i.useState)(!1),[l,c]=(0,i.useState)(!1),{remaining:d,patternsLibraryRate:p,patternsCategoryRate:m,isFreeUser:f}=oi(),{businessType:h,businessName:b,businessDetails:v,allPatternsCategories:w,isNewUser:x}=(0,t.A)((e=>{const{getAIStepData:t,getOnboardingAI:r,getAllPatternsCategories:n}=e(g.U);return{...t(),allPatternsCategories:n(),isNewUser:r()?.isNewUser}}),[]),_=f&&d<2*m||!f&&d<p||d<=0,E=w.slice(0,2).map((({name:e})=>e)).join(" and "),k=[{key:h,label:"Business Type"},{key:b,label:"Business Name"},{key:v,label:"Business Description"}],S=async e=>{_||o||(s(!0),"function"==typeof n&&(f&&(0,y.HU)("ast-free-ai-content",Math.random().toString(36).substring(2)),await n(e),s(!1),r(!1)))},C=()=>{window.open(ast_block_template_vars.get_more_credits_url,"_blank")};return React.createElement(Fi,{open:e,setOpen:r,width:520,closeButton:!1},_?React.createElement(i.Fragment,null,React.createElement("div",{className:"space-y-2"},React.createElement(Fi.Title,null,(0,u.__)("Uh Oh, you're out of AI credits 😕","ast-block-templates")),React.createElement("p",{className:"text-body-text text-base font-normal m-0"},(0,u.__)("With AI credits, you have the power to personalize the design library with unique copy and beautiful images specific to your website.","ast-block-templates")),React.createElement("p",{className:"text-body-text text-base font-normal m-0"},(0,u.nv)((0,u.__)("Your account has %1$s AI credits left. If you want to personalize the entire design library with content and images tailored to your business and website project, you'll require %2$s credits.","ast-block-templates"),d,p))),React.createElement(ii.A,{variant:"ai-primary",className:"w-full min-h-[45px]",hasSuffixIcon:!0,onClick:C},React.createElement("span",null,"Unlock 200,000 Credits for Just $39"),React.createElement(Ms,{className:"h-5 w-5"}))):f&&d>0?React.createElement(i.Fragment,null,React.createElement("div",{className:"space-y-7 p-4 lg:p-8 bg-background-tertiary rounded-lg"},React.createElement("div",{className:"space-y-3"},React.createElement(Fi.Title,null,"Yay, you're almost there! 😍"),React.createElement("p",{className:"text-body-text m-0 text-sm font-normal"},"With AI credits, you have the power to personalize the design library with unique copy and beautiful images specific to your website."),React.createElement("p",{className:"text-body-text m-0 text-sm font-normal"},"Your free account includes 1000 AI credits. If you want to personalize the entire design library with content and images tailored to your business and website project, you'll require"," ",p," credits.")),React.createElement(ii.A,{className:"w-full min-h-[45px]",variant:"ai-primary",onClick:C},(0,u.__)("Unlock 200,000 AI Credits for Just $39","ast-block-templates"))),React.createElement("div",{className:"!-mb-2 !mt-0 px-4 lg:px-8 pt-4 lg:pt-8 pb-2 space-y-7"},React.createElement("div",{className:"space-y-3"},React.createElement("h6",{className:"text-xl font-bold leading-7"},(0,u.__)("Want to see how this works?","ast-block-templates")),React.createElement("p",{className:"text-body-text m-0 text-sm font-normal"},(0,u.nv)((0,u.__)("Begin with the 1000 AI credits provided when you signed up for your free account. With this, you can personalize templates in the %s categories.","ast-block-templates"),E)),React.createElement("p",{className:"text-body-text m-0 text-sm font-normal"},(0,u.__)("You can easily purchase additional AI credits later anytime.","ast-block-templates"))),React.createElement(ii.A,{className:"w-full min-h-[45px] text-body-text border-border-secondary border border-solid",variant:"blank",onClick:S},o?React.createElement(Vi.A,{className:"text-body-text"}):React.createElement(React.Fragment,null,"Try It Using Free 1000 Credits")))):React.createElement(i.Fragment,null,React.createElement("div",{className:"space-y-2"},React.createElement(Fi.Title,null,"Yay, you're almost there! 😍"),React.createElement("p",{className:"text-body-text"},"This will personalize the entire design library, and it will consume"," ",f?2*m:p," ","AI credits from your account.")),React.createElement("div",{className:"p-5 border border-solid border-border-primary rounded-md max-h-[248px] overflow-y-scroll"},k.map((({key:e,label:t},r)=>React.createElement(i.Fragment,{key:r},React.createElement("div",{className:"text-heading-text text-base"},React.createElement("p",{className:"font-semibold !m-0 !p-0"},t),React.createElement("p",{className:"font-normal !m-0 !p-0"},e)),r<k.length-1&&React.createElement("hr",{className:"border-t-border-primary my-4"}))))),React.createElement("div",{className:"space-y-3"},React.createElement("div",{className:"flex items-center gap-3"},React.createElement(ii.A,{className:(0,y.xW)("w-full min-w-fit min-h-[45px]"),variant:"ai-primary",hasSuffixIcon:!x&&!o,onClick:S},o?React.createElement(Vi.A,null):x?React.createElement(React.Fragment,null,React.createElement("span",null,"Personalize Library (",f?2*m:(0,y.ZV)(p)," ","Credits)"),React.createElement(Ms,{className:"h-5 w-5"})):React.createElement(React.Fragment,null,React.createElement("span",null,"Personalize"))),!x&&React.createElement(ii.A,{className:(0,y.xW)("w-full min-h-[45px]"),variant:"ai-white",onClick:async e=>{l||(c(!0),"function"==typeof a&&(await a(e),c(!1),r(!1)))}},l?React.createElement(Vi.A,{className:"text-accent-ai"}):React.createElement("span",null,"Save & Exit"))))),React.createElement("button",{className:"w-full text-base font-medium text-secondary-text text-center underline border-none cursor-pointer bg-transparent",onClick:()=>r(!1)},"Back"))};var Uy=o(2543);function Hy(){return Hy=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var r=arguments[t];for(var n in r)({}).hasOwnProperty.call(r,n)&&(e[n]=r[n])}return e},Hy.apply(null,arguments)}const{uploadMedia:$y}=wp.mediaUtils,Zy={all:{value:"all",label:"All Orientations"},landscape:{value:"landscape",label:"Landscape"},portrait:{value:"portrait",label:"Portrait"}},Gy=[{label:"Search Results",value:"all"},{label:(0,u.__)("Upload Your Images","ast-block-templates"),value:"upload"},{label:"Selected Images",value:"selected"}],qy=["pexels","unsplash"],Yy=(e=15)=>{const t=["aspect-[1/1]","aspect-[1/2]","aspect-[2/1]","aspect-[2/2]","aspect-[3/3]","aspect-[4/3]","aspect-[3/4]"];let r=0;return Array.from({length:e}).map(((e,n)=>(r=r===t.length?0:r,React.createElement(Qh,{key:n,className:(0,y.xW)("relative overflow-hidden rounded-lg","bg-slate-300 rounded-lg relative animate-pulse",t[r++])}))))},Ky=(0,e.A)((0,n.A)((e=>{const{setPreviousAIStep:t,setDynamicContent:r,setCurrentCategory:n,setIsSyncBusinessDetails:a}=e("ast-block-templates");return{onClickPrevious:t,setDynamicContent:r,setCurrentCategory:n,setIsSyncBusinessDetails:a}})))((({onClickPrevious:e,setDynamicContent:n,setIsSyncBusinessDetails:a})=>{const{setWebsiteImagesAIStep:o,setCurrentCategory:s,toggleOnboardingAIStep:l,dynamicContentFlagSet:c,dynamicContentSyncStart:d,dynamicContentSyncComplete:p,dynamicContentFlagReset:m,setCreditsDetails:h,setIsNewUserOnboarding:b,setIsPersonalized:v}=(0,r.A)(g.U),{stepsData:{businessName:w,selectedImages:x=[],keywords:_=[],businessType:E,businessDetails:k,businessContact:S,siteLanguage:C,siteLanguageList:R},allPatternsCategories:A,updateImages:P,isNewUser:T}=(0,t.A)((e=>{const{getAIStepData:t,getAllPatternsCategories:r,getDynamicContent:n,getOnboardingAI:a}=e(g.U),i=a();return{stepsData:t(),allPatternsCategories:r(),dynamicContent:n(),updateImages:i?.updateImages,isNewUser:i?.isNewUser}})),N=(0,i.useRef)([]),I=R?.find((e=>e.code===(C||"en"))),[O,L]=(0,i.useState)(Zy.all),[B,j]=(0,i.useState)(_?.length>0?_[0]:""),[D,F]=(0,i.useState)([]),[M,z]=(0,i.useState)(0),[V,W]=(0,i.useState)([]),[U,H]=(0,i.useState)(1),[$,Z]=(0,i.useState)(!0),[G,q]=(0,i.useState)(!1),[Y,K]=(0,i.useState)(!1),[X,J]=(0,i.useState)(!1),[Q,ee]=(0,i.useState)("all"),[te,re]=(0,i.useState)(!1),[ne,ae]=Ka({placement:"bottom",modifiers:[{name:"offset",options:{offset:[0,0]}}]});(0,i.useEffect)((()=>{o((0,Uy.uniqBy)([...x,...D.map((e=>({id:String(e.id),url:e?.originalImageURL??e.url,optimized_url:e?.sizes?.large?.url??e.url,engine:"",description:"",orientation:e?.orientation??(e?.width>e?.height?"landscape":"portrait"),author_name:e?.author_name??"",author_url:""})))],"id"))}),[D.length]);const ie=(0,i.useRef)(null),oe=(0,i.useRef)(!1),se=(0,i.useRef)(new Set),le=(0,i.useRef)(null),{getRootProps:ce,getInputProps:ue}=Zh({accept:{"image/png":[".png"],"image/jpeg":[".jpeg",".jpg"]},noClick:!0,noKeyboard:!0,onDropAccepted:async e=>{F([]),z(e.length),e.forEach((async e=>{try{await $y({filesList:[e],onFileChange:e=>{if(e[0].id){if(!(0,y.Bh)(e[0]?.url))return Ps.oR.error((0,y.yI)({message:(0,u.nv)((0,u.__)("Invalid file name! Please avoid special characters. (%s)","ast-block-templates"),e[0].title)}),y.GU),void z((e=>e-1));F((t=>[...t,...e])),z((e=>e-1))}}})}catch(e){console.error(e),Ps.oR.error((0,y.yI)({message:e.message.toString()}),y.GU),z((e=>e-1))}}))},maxFiles:20,maxSize:5*Yh.$,onDropRejected:e=>{e.length>20?Ps.oR.error((0,y.yI)({message:(0,u.__)("You can only upload 20 images at once","ast-block-templates")}),y.GU):e.forEach((({errors:e,file:t})=>{Ps.oR.error((0,y.yI)({message:`${e[0].message} (${t?.name})`}),y.GU)}))}}),{register:de,handleSubmit:pe,setValue:me,reset:fe,setFocus:ge,watch:he}=Ql({defaultValues:{keyword:B}}),ye=he("keyword"),be=Kf(B,500),ve=Kf(O,500),{isFreeUser:we}=oi(),xe=async e=>{e.preventDefault();const t=new window.FormData;t.append("action","ast-block-templates-ai-content"),t.append("security",ast_block_template_vars.ai_content_ajax_nonce),t.append("business_name",w),t.append("business_desc",k),t.append("business_category",E),t.append("images",JSON.stringify(x)),t.append("image_keyword",JSON.stringify(_)),t.append("business_address",S?.address||""),t.append("business_phone",S?.phone||""),t.append("business_email",S?.email||""),t.append("language",JSON.stringify(I)),t.append("social_profiles",JSON.stringify(S?.socialMedia||[])),t.append("save_only",!0);try{const e=await(0,y.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:t});if(!e.success)throw new Error(e?.data?.data);l(),e?.data.images.length>0&&o(e.data.images),a(!1)}catch(e){(0,ti.v)(e)}},_e=()=>[...new Set(_)].filter((e=>""===B.trim()||e?.toLowerCase()!==B?.toLowerCase())),Ee=e=>{const t=x?.filter((t=>t.id===e.id));return t?.length>0},ke=(0,i.useCallback)((e=>{let t=[];Ee(e)?(e.id=String(e.id),t=x?.filter((t=>t.id!==e.id))):t=[...x,e],o(t)}),[x,o]),Se=()=>{N.current.length&&(N.current.forEach((e=>e.abort())),N.current=[],W([]))},Ce=async e=>{let t=B;"string"!=typeof B||B&&""!==B.trim()||(t=w);const r={keywords:t,orientation:O.value,per_page:20,page:U};try{const t=new AbortController;N.current.push(t);const n=await(0,y.nr)({path:"gutenberg-templates/v1/images",data:{...r,engine:e},method:"POST",headers:{"X-WP-Nonce":ast_block_template_vars.rest_api_nonce},signal:t.signal}),a=n.data?.data||[];if(!n.success)throw new Error(n?.data?.data);0===a?.length&&se.current.add(e);const i=a?.length>0?a.map((e=>({...e,id:String(e.id)}))).filter((e=>!x?.some((t=>t.id===e.id)))):[];return W((e=>((e,t)=>{const r=new Map;return[...e,...t].forEach((e=>{r.has(e.id)||r.set(e.id,e)})),Array.from(r.values())})(e,i))),a?.length||0}catch(e){if("AbortError"===e.name)throw e;(0,ti.v)(e)}return 0},Re=()=>{J(!0)};(0,i.useEffect)((()=>{oe.current=!1,(async()=>{try{q(!0);const e=[];for(const t of qy)if(!se.current.has(t)){const r=await Ce(t);e.push(r)}Math.max(e.filter(Boolean))<20?Z(!1):Z(!0),oe.current=!0,q(!1)}catch(e){if("AbortError"===e.name)return;oe.current=!0,q(!1),(0,ti.v)(e)}})()}),[be,ve,U]),(0,i.useEffect)((()=>{oe.current=!1,se.current.clear(),H(1),W([])}),[B,O]),(0,i.useEffect)((()=>{ge("keyword")}),[]);const Ae=(e=[])=>e.filter((e=>!e.engine)),Pe=(e=[])=>e.filter((e=>e.engine&&"placeholder"!==e.engine)),Te=e=>{!te&&_e()?.length&&("click"!==e?.type&&"keydown"!==e?.type||re(!0))},Ne=e=>{const t=document.getElementById("search-images-wrapper");t&&!t.contains(e.target)&&re(!1)};(0,i.useEffect)((()=>(document.addEventListener("mousedown",Ne),()=>document.removeEventListener("mousedown",Ne))),[Ne]);const Ie=(()=>{switch(Q){case Gy[0].value:return G?[...V,...Yy()]:V;case Gy[1].value:return[...Ae(x),...M?Yy(M):[]];case Gy[2].value:return Pe(x);default:return G?[...V,...Yy()]:V}})();return React.createElement("div",{ref:ie,className:"w-full flex flex-col flex-auto h-full overflow-y-auto",onScroll:e=>{if(!e)return;if((e=>{if(!e)return;const{scrollTop:t}=e.target;t>50&&!Y&&K(!0),t<=50&&Y&&K(!1)})(e),!$||G)return;const{scrollTop:t,scrollHeight:r,clientHeight:n}=ie.current;t+n>=r-200&&H((e=>e+1))}},React.createElement("div",{className:"w-full space-y-6"},React.createElement(df,{className:"pt-5 md:pt-12 px-5 md:px-10 lg:px-14 xl:px-20 max-w-fit mx-auto !text-zip-app-label",heading:"Select the Images"}),React.createElement("form",{className:"w-full overflow-visible min-h-[3.125rem]",onSubmit:pe((e=>{Se(),j(e.keyword)}))},React.createElement("div",{id:"search-images-wrapper",ref:ne,className:(0,y.xW)("relative w-full max-w-[37.5rem] mx-auto pl-4 pr-12 py-3 border border-button-disabled rounded-md shadow bg-white z-[2]",{"pb-0 rounded-b-none border-b-0 shadow-md":te}),onClick:e=>{"search-images-wrapper"===e.target.id&&(ge("keyword"),!te&&_e()?.length&&re(!0))},role:"button",tabIndex:"0",onKeyDown:e=>{if("Enter"===e.key){if("search-images-wrapper"!==e.target.id)return;if(ge("keyword"),te||!_e()?.length)return;re(!0)}}},React.createElement("div",{className:"absolute top-[0.875rem] right-3 flex items-center"},React.createElement("button",{type:"button",className:"w-auto h-auto p-0 flex items-center justify-center cursor-pointer bg-transparent border-0 focus:outline-none",onClick:()=>{ye&&(j(""),fe({keyword:""}))}},ye?React.createElement(f,{className:"w-5 h-5 text-zip-app-inactive-icon"}):React.createElement(ko,{className:"w-5 h-5 text-zip-app-inactive-icon"}))),React.createElement("input",Hy({className:"!text-sm placeholder:text-sm p-0 border-0 w-full h-6 shadow-none focus:outline-none focus:ring-0 focus-visible:outline-none",placeholder:"Add more relevant keywords...",autoComplete:"off",onKeyDown:Te,onClick:Te},de("keyword"))),React.createElement("div",{ref:ae,className:(0,y.xW)("w-[calc(100%_+_2px)] px-3 pb-4 z-10 bg-white shadow-md border-x border-b border-t-0 border-solid border-border-tertiary rounded-b-md",{invisible:!te})},te&&React.createElement("hr",{className:"!mx-0 !my-3 border-t border-solid border-b-0 border-border-tertiary",tabIndex:-1}),React.createElement("h6",{className:"flex items-center justify-start gap-1.5 text-sm font-medium mb-4"},React.createElement("span",null,(0,u.__)("Suggested Keywords","ast-block-templates")),React.createElement(Vo,{className:"inline-block size-4"})),React.createElement(ly,{keywordClassName:"border-zip-light-border-primary bg-background-secondary",keywords:_e(),onClick:e=>{Se(),j(e),me("keyword",e),re(!1)}}))))),React.createElement("div",{className:"pt-4 px-5 md:px-10 lg:px-14 xl:px-20 sticky top-0 space-y-4 z-[1] bg-gt-container-background"},React.createElement("div",{className:"rounded-t-lg pt-2 pb-4"},React.createElement("div",{className:"flex items-center justify-between"},React.createElement("div",{className:"flex items-center gap-1 text-sm font-normal leading-[21px]"},React.createElement("div",{className:"flex items-center justify-start gap-3"},Gy.map((e=>React.createElement("button",{className:(0,y.xW)("relative before:content-[attr(data-title)] before:block before:font-bold before:text-sm before:invisible before:h-0","px-0 py-3 border-0 bg-transparent text-sm font-semibold text-accent-st cursor-pointer focus-visible:outline-none focus:outline-none active:outline-none transition-colors ease-in-out duration-150",e.value!==Q&&"font-normal text-body-text"),key:e.value,type:"button",onClick:()=>ee(e.value),"data-title":e.label},e.label,e.value===Gy[2].value&&!!Pe(x)?.length&&` (${Pe(x)?.length})`,e.value===Gy[1].value&&!!Ae(x)?.length&&` (${Ae(x)?.length})`,e.value===Q&&React.createElement("span",{className:"absolute bottom-0 inset-x-0 w-full h-0.5 bg-accent-ai"})))))),Q===Gy[0].value&&React.createElement(Ja,{placement:"right",trigger:React.createElement("div",{className:(0,y.xW)("flex items-center gap-2 min-w-[100px] py-3 pl-4 pr-3 cursor-pointer border border-border-primary rounded-md")},React.createElement("span",{className:"text-sm font-normal text-body-text leading-[150%]"},O.label),React.createElement(Cc,{className:"w-5 h-5 text-app-inactive-icon"})),align:"top",width:"48",contentClassName:"p-1 bg-white"},Object.values(Zy).map(((e,t)=>{return React.createElement(Ja.Item,{as:"div",key:t,className:"only:!p-0"},React.createElement("button",{type:"button",className:"w-full flex items-center justify-between gap-2 py-1.5 px-2 text-sm font-normal leading-5 text-body-text hover:bg-background-secondary transition duration-150 ease-in-out space-x-2 rounded bg-white border-none cursor-pointer",onClick:(r=e,()=>{r!==O&&Se(),L(r)})},React.createElement("span",null,e.label),e.value===O.value&&React.createElement(_u,{className:"w-4 h-4 text-heading-text"})));var r}))),Q===Gy[2].value&&!!x?.length&&React.createElement("button",{onClick:e=>{e.preventDefault(),e.stopPropagation(),o(x.filter((e=>!e.engine)))},className:"px-1 py-px bg-transparent border border-solid border-border-primary rounded text-xs leading-4 text-body-text cursor-pointer"},(0,u.__)("Clear","ast-block-templates")),Q===Gy[1].value&&React.createElement(Vy,{render:({open:e})=>React.createElement("button",{ref:le,className:"px-0 bg-transparent border-none rounded text-xs leading-5 font-semibold text-accent-st cursor-pointer inline-flex items-center justify-end gap-2",onClick:e},React.createElement(Bg,{className:"w-4 h-4 text-zip-app-inactive-icon",strokeWidth:2}),React.createElement("span",null,(0,u.__)("Upload Your Images","ast-block-templates")))})))),React.createElement("div",{className:"py-4 px-5 md:px-10 lg:px-14 xl:px-20 flex flex-col flex-auto relative"},Q===Gy[1].value&&!Ie.length&&React.createElement("div",Hy({className:(0,y.xW)("relative flex flex-col items-center justify-center gap-3 py-[3.125rem] px-4 bg-background-primary border border-dashed border-border-tertiary rounded cursor-pointer")},ce()),React.createElement("input",ue()),React.createElement(Bg,{className:"w-6 h-6 text-zip-app-inactive-icon"}),React.createElement("p",{className:"text-zip-body-text text-base !my-0"},React.createElement("span",{className:"text-accent-st min-w-fit break-keep text-nowrap whitespace-nowrap font-semibold mr-1"},(0,u.__)("Upload images","ast-block-templates")),(0,u.__)("or drop your images here (Max 20)","ast-block-templates")),React.createElement("p",{className:"text-zip-body-text text-base !my-0"},(0,u.__)("PNG, JPG, JPEG","ast-block-templates")),React.createElement("p",{className:"text-zip-body-text text-base !my-0"},(0,u.__)("Max size: 5 MB per file","ast-block-templates")),React.createElement("div",{className:"absolute inset-0",onClick:()=>{le?.current&&le?.current.click()},tabIndex:0,role:"button",onKeyDown:e=>{(le?.current||"Enter"===e.key)&&le?.current.click()}})),React.createElement(Gg,null,Ie?.length>0&&React.createElement(us,{className:"gap-6 [&>div]:gap-6",columns:{default:1,220:2,767:3,1024:3,1280:5,1920:6}},Ie.map((e=>e?.optimized_url&&"placeholder"!==e?.engine?React.createElement(ny,{key:e.id,image:e,isSelected:Ee(e),onClick:ke,variant:Q===Gy[2].value||Q===Gy[1].value?"selection":"default"}):React.createElement(i.Fragment,{key:Math.random().toString(36).substring(2,10)},e))))),Q===Gy[0].value&&!G&&!V.length&&oe.current&&React.createElement("div",{className:"flex flex-col items-center justify-center h-full"},React.createElement("p",{className:"text-secondary-text text-center px-10 py-5 border-2 border-dashed border-border-primary rounded-md"},B.length?React.createElement(React.Fragment,null,(0,u.__)("We couldn`t find anything with your keyword.","ast-block-templates"),React.createElement("br",null),(0,u.__)("Try to refine your search.","ast-block-templates")):React.createElement(React.Fragment,null,(0,u.__)("Find the perfect images for your website by entering a keyword or selecting from the suggested options.","ast-block-templates")))),Q===Gy[0].value&&!G&&!$&&!!V.length&&React.createElement("div",{className:"pb-5 pt-10 flex flex-col items-center justify-center h-full"},React.createElement("p",{className:"text-secondary-text text-sm leading-5 text-center after:mx-2.5 after:content-[''] after:inline-block after:w-5 sm:after:w-12 after:h-px after:bg-app-border after:relative after:-top-[5px] before:mx-2.5 before:content-[''] before:inline-block before:w-5 sm:before:w-12 before:h-px before:bg-app-border before:relative before:-top-[5px]"},(0,u.__)("End of the search results","ast-block-templates"))),Q===Gy[2].value&&!Pe(x).length&&React.createElement("div",{className:"flex flex-col items-center justify-center h-full"},React.createElement("p",{className:"text-secondary-text text-center px-10 py-5 border-2 border-dashed border-border-primary rounded-md"},(0,u.__)("No images are selected yet.","ast-block-templates")))),Y&&React.createElement("div",{className:"absolute right-[6.5rem] bottom-28 ml-auto"},React.createElement("button",{type:"button",className:"absolute bottom-0 right-0 z-10 w-8 h-8 rounded-full bg-accent-st border-0 border-solid text-white flex items-center justify-center shadow-sm cursor-pointer",onClick:()=>{ie.current&&(K(!1),ie.current.scrollTo({top:0,behavior:"smooth"}))}},React.createElement(Dg,{className:"w-5 h-5"}))),React.createElement("div",{className:"min-h-[80px] py-4 px-5 md:px-10 lg:px-14 xl:px-20 sticky bottom-0 bg-gt-container-background"},React.createElement(Od,P?{continueButtonText:"Save & Exit",onClickContinue:xe}:{onClickContinue:Re,onClickSkip:Re,onClickPrevious:e})),React.createElement(Wy,{open:X,setOpen:J,onClickGenerate:async e=>{e.preventDefault();const t=new window.FormData;t.append("action","ast-block-templates-ai-content"),t.append("security",ast_block_template_vars.ai_content_ajax_nonce),t.append("business_name",w),t.append("business_desc",k),t.append("business_category",E),t.append("images",JSON.stringify(x)),t.append("image_keyword",JSON.stringify(_)),t.append("business_address",S?.address||""),t.append("business_phone",S?.phone||""),t.append("business_email",S?.email||""),t.append("language",JSON.stringify(I)),t.append("social_profiles",JSON.stringify(S?.socialMedia||[]));try{const e=await(0,y.nr)({url:ast_block_template_vars.ajax_url,method:"POST",body:t});e.success&&(a(!1),l(),e?.data.images.length>0&&o(e.data.images))}catch(e){(0,ti.v)(e)}const r="patterns",i=we?A.slice(0,2):A;m(r,we?i.map((e=>e.id)):null),d(r);let u=!1;try{u=await(0,Wo.R2)(i,n,c,(e=>s(r,e)),h,"block",v)}catch(e){u=e}"object"==typeof u&&"api_throttle_error"===u?.data?.code&&(u={type:"error",title:"Check Back Soon",message:React.createElement(React.Fragment,null,"We are currently experiencing exceptionally high demand. Please try again in 5 minutes. If the error persists, kindly contact us through the website:",React.createElement("a",{href:"https://zipwp.com/contact",target:"_blank",rel:"noreferrer"}," ","https://zipwp.com/contact"),".")}),p(r,"object"==typeof u?u:null),s(r,{}),T&&u&&b()},onClickSave:xe}))})),Xy=[{name:(0,u.__)("Connect","ast-block-templates"),description:(0,u.__)("Connect your account","ast-block-templates"),screen:"api-key",component:React.createElement(rg,null)},{name:(0,u.__)("Let's Start","ast-block-templates"),description:(0,u.__)("Name, language & type","ast-block-templates"),screen:"type",component:React.createElement(tg,null)},{name:"Describe",description:"Some details please",screen:"details",component:React.createElement(Tg,null)},{name:"Contact",description:"How can people get in touch",screen:"contact-details",component:React.createElement(uf,null)},{name:"Images",description:"Select relevant images",screen:"images",component:React.createElement(Ky,null),classNames:"p-0 md:p-0 lg:p-0 xl:p-0"}],Jy=(0,e.A)((0,a.A)((e=>{const{getTogglePopup:t,getSitePreview:r,getCurrentScreen:n,setCurrentScreen:a,getCurrentAIStep:i}=e("ast-block-templates");return{togglePopup:t(),sitePreview:r(),currentScreen:n(),setCurrentScreen:a,currentStep:i()}})),(0,n.A)((e=>{const{toggleOnboardingAIStep:t,setCurrentAIStep:r}=e("ast-block-templates");return{toggleOnboardingAIStep:t,setCurrentAIStep:r}})))((0,i.memo)((({togglePopup:e,currentScreen:t,sitePreview:r,toggleOnboardingAIStep:n,currentStep:a,setCurrentAIStep:o})=>{(0,i.useEffect)((()=>{e?(document.body.classList.add("ast-block-templates-modal-open"),document.getElementById("ast-block-templates-modal-wrap").classList.add("open")):(document.body.classList.remove("ast-block-templates-modal-open"),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"))}),[e,t,r]);const s=e=>{1!==e&&e<=a&&o(e)},l=1===a;return React.createElement("div",{id:"spectra-onboarding-ai",className:"h-[calc(100vh_-_5rem)] font-sans grid grid-cols-1 shadow-medium grid-rows-[4.5rem_1fr]"},React.createElement("header",{className:"grid grid-cols-[4rem_1fr_4rem] items-center justify-between md:justify-start w-full h-full z-10 bg-white shadow-md"},React.createElement("div",{className:"relative flex size-10 shrink-0 items-center mx-auto"},"active"===ast_block_template_vars.astra_sites_status||"active"===ast_block_template_vars.astra_sites_pro_status?React.createElement(ei.fp,{className:"size-10"}):React.createElement(ei.y0,{className:"size-10"})),React.createElement("nav",{className:"w-full h-full hidden md:flex items-center justify-center gap-4 flex-1"},Xy.map((({name:e},t)=>{return l||0!==t?React.createElement(i.Fragment,{key:t},React.createElement("div",{className:(0,y.xW)("flex gap-3",t+1<a&&0!==t?"cursor-pointer":"cursor-default"),onClick:()=>s(t+1),role:"button",tabIndex:"0",onKeyDown:e=>"Enter"===e.key?s(t+1):null},React.createElement("div",{className:(0,y.xW)("flex flex-col gap-y-1 items-center",t===Xy.length-1?"justify-start":"justify-center")},React.createElement("div",{className:(0,y.xW)("rounded-full border border-border-primary text-xs font-semibold flex items-center justify-center w-6 h-6",(r=a,n=t,r===n+1?"border-accent-st bg-white text-accent-st border-solid":r>n+1?"bg-secondary-text text-white border-secondary-text border-solid":"border-solid border-step-connector text-secondary-text"))},a>t+1?React.createElement(_u,{className:"h-3 w-3"}):React.createElement("span",null,t+Number(l)))),React.createElement("div",{className:(0,y.xW)("text-sm font-medium text-secondary-text pt-0.5",a===t+1&&"text-accent-st")},e)),Xy.length-1>t&&React.createElement("div",{className:(0,y.xW)("w-8 h-px self-center","bg-border-primary")})):React.createElement(i.Fragment,{key:t});var r,n}))),React.createElement("div",{className:"[grid-area:1/3] flex items-center justify-center mx-auto"},React.createElement(Ad,{onExit:e=>{e?.preventDefault(),e?.stopPropagation(),n()}}))),React.createElement("main",{id:"sp-onboarding-content-wrapper",className:"flex-1 overflow-x-hidden h-full bg-gt-container-background"},React.createElement(Og,null,React.createElement("div",{className:"h-full w-full relative flex"},React.createElement("div",{className:(0,y.xW)("w-full max-h-full flex flex-col flex-auto items-center overflow-y-auto",!l&&"px-5 pt-5 [&:has(.max-w-container)]:pb-4 md:px-10 md:pt-10 md:[&:has(.max-w-container)]:pb-6 lg:px-14 lg:pt-14 lg:[&:has(.max-w-container)]:pb-8 xl:px-20 xl:pt-12 xl:[&:has(.max-w-container)]:pb-10",Xy[a-1]?.classNames)},Xy[a-1]?.component)))))})));o(5138);const Qy=e=>{const{syncFlags:r,syncStatus:n,reSyncCatContent:a,currentCategory:o,syncMessage:s}=(0,t.A)((t=>{const{getDynamicContentSyncStatus:r,getDynamicContentSyncFlags:n,getDynamicContentReSyncStatus:a,getCurrentCategory:i,getDynamicContentSyncMessage:o}=t(g.U);return{syncStatus:r()[e],syncFlags:n()[e],reSyncCatContent:a(),currentCategory:i()[e],syncMessage:o()}})),l=(0,i.useRef)(null);(0,i.useEffect)((()=>{if(a)return;const e=()=>{const e=Object.values(r),t=e.reduce(((e,t)=>t?e+1:e),0);return Math.round(t/e.length*100)};n&&null===l.current&&o?.name&&(l.current=(0,Ps.oR)((0,Ts.A)({title:'Personalizing "'+o?.name+'"',message:"Please wait a few moments. We are personalizing categories.",showProgress:!0,progress:e()}),Ts.A.getOptions({type:"sync"}))),null!==l.current&&o?.name&&Ps.oR.update(l.current,{...Ts.A.getOptions({type:"sync"}),render:(0,Ts.A)({title:'Personalizing "'+o?.name+'"',message:"Please wait a few moments. We are personalizing categories.",showProgress:!0,progress:e()})}),n||null===l.current||100!==e()||(Ps.oR.update(l.current,{...Ts.A.getOptions({type:"success"}),render:(0,Ts.A)({title:"Library Personalized",message:"Your library personalized successfully."})}),l.current=null),!n&&null!==l.current&&e()<100&&s&&(Ps.oR.update(l.current,{...Ts.A.getOptions({type:s.type}),render:(0,Ts.A)({title:s.title,message:s.message})}),l.current=null),!n&&null!==l.current&&e()<100&&(Ps.oR.update(l.current,{...Ts.A.getOptions({type:"error"}),render:(0,Ts.A)({title:"Error!",message:"An error occurred while personalizing. Please try again."})}),l.current=null)}),[n,r,o,a,l])},eb=()=>{const{setTogglePopup:e}=(0,r.A)(g.U);return React.createElement("div",{className:"spectra-ai h-[4.5rem] w-full grid grid-cols-2 grid-rows-1 items-center bg-white border-0 border-b border-solid border-b-border-primary px-5"},React.createElement("div",{className:"flex items-center gap-3"},React.createElement(ei.y0,{className:"w-10 h-10 !shrink-0"}),React.createElement("div",{className:"h-[1.0625rem] w-px !shrink-0 bg-border-primary"}),React.createElement("span",{className:"text-[1.15rem] font-semibold text-heading-text leading-[1.875rem]"},(0,u.__)("Build using AI","ast-block-templates"))),React.createElement("button",{className:"ml-auto border-0 bg-transparent outline-none focus:outline-none active:outline-none text-nav-inactive hover:text-nav-active cursor-pointer flex items-center justify-center rounded-full p-2 hover:bg-background-tertiary active:bg-background-tertiary transition-colors ease-in-out duration-150"},React.createElement(f,{className:"w-5 h-5 transition-colors duration-150 ease-in-out",onClick:()=>{e(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open")}})))},tb=[{id:1,name:"Home"},{id:2,name:"About"},{id:3,name:"Services"},{id:4,name:"Contact"},{id:5,name:"Blog"},{id:6,name:"Landing Page"},{id:7,name:"Something Else"}],rb=({type:e,selected:t,onClick:r,className:n})=>{const{name:a,prefixIcon:i,suffixIcon:o}=e,s=(e,t)=>{e?.preventDefault(),e?.stopPropagation(),"function"==typeof r&&r(t)};return React.createElement("div",{onClick:t=>s(t,e),className:(0,y.xW)("flex items-center justify-center gap-2 py-3 font-medium hover:shadow-medium transition duration-150 ease-in-out cursor-pointer border border-solid rounded-full hover:border-accent-spectra",t?"text-heading-text border-accent-spectra shadow-medium bg-white":"text-body-text border-transparent bg-background-secondary",!i&&!o&&"px-8",i&&!o&&"pr-8 pl-6",!i&&o&&"pl-8 pr-6",n),role:"button",tabIndex:"0",onKeyDown:t=>"Enter"===t.key?s(t,e):null},!!i&&i,React.createElement("span",null,a),!!o&&o)},nb=()=>{const[e,t]=(0,i.useState)("Home"),[n,a]=(0,i.useState)(!1),{setNextOnboardingPagesAIStep:o}=(0,r.A)(g.U);return React.createElement(i.Fragment,null,React.createElement(eb,null),React.createElement("div",{className:"w-full max-w-container px-10 lg:px-16 xl:px-20 py-12 mx-auto pt-10"},React.createElement("h4",{className:"font-semibold text-[2rem] leading-10 text-[#0F172A] m-0"},"What kind of page are you building?"),React.createElement("p",{className:"leading-6 text-base text-[#475569]"},"Let's get started by choosing the page you're designing."),React.createElement("div",{className:"my-8 flex gap-4 flex-wrap"},tb.length>0&&tb?.map((r=>React.createElement(rb,{className:"py-2 px-6 font-medium text-sm leading-[21px]",key:r.id,type:r,onClick:()=>{return t((e=r).name),void(7===e.id?(console.log(e.id),a(!0)):a(!1));var e},selected:e===r.name})))),n&&React.createElement("div",{className:"mb-8"},React.createElement(Qo,{placeholder:"Enter page name here",label:"Give it a name"})),React.createElement(ii.A,{variant:"primary",className:"w-full rounded-md",onClick:o,hasSuffixIcon:!0,isSmall:!0},React.createElement("span",null,"Next"),React.createElement(Ms,{className:"w-4 h-4"}))))},ab=()=>{const{setPreviousOnboardingPagesAIStep:e,setNextOnboardingPagesAIStep:t}=(0,r.A)(g.U);return React.createElement(i.Fragment,null,React.createElement(eb,null),React.createElement("div",{className:"w-full max-w-container px-10 lg:px-16 xl:px-20 py-12 mx-auto pt-10 space-y-8"},React.createElement("div",{className:"space-y-3"},React.createElement("h4",{className:"m-0"},"Please describe this page in few words"),React.createElement("p",{className:"m-0 leading-6 text-base text-body-text"},"Be as descriptive as you can. Share your vision for this page.")),React.createElement("div",{className:"space-y-3"},React.createElement(Id,{name:"description",className:"mt-8 w-full placeholder-[#9CA3secondary-text",placeholder:"On this page, I want to write about the founder of this business. Her name is Amber Kardile. She started this company 6 years ago. Her background is in service industry and education in psychology.",validations:{required:"Description is required"},rows:"5"}),React.createElement("div",{className:"flex items-center gap-2 mt-2 text-accent-spectra cursor-pointer"},React.createElement(ei.AW,{className:"w-5 h-5 transition duration-150 ease-in-out"}),React.createElement("span",{className:"font-semibold text-sm transition duration-150 ease-in-out"},"Write Using AI"))),React.createElement("div",null,React.createElement("div",{className:"flex flex-row gap-4"},React.createElement(ii.A,{variant:"primary",hasSuffixIcon:!0,className:"w-3/4 rounded-md",onClick:t},React.createElement("span",null,"Start Building (84 Credits)"),React.createElement(Ms,{className:"w-4 h-4"})),React.createElement(ii.A,{variant:"white",className:"w-1/4 rounded-md",onClick:e},React.createElement("span",null,"Previous Step"))),React.createElement("div",{className:"flex items-center justify-center mt-3 w-3/4"},React.createElement("span",{className:""},"968 Credits remaining")))))},ib=()=>React.createElement("div",{className:"w-full h-full bg-white shadow-xlarge"},React.createElement("div",{className:"w-full h-full overflow-hidden"},React.createElement("div",{className:"px-5 pt-5"},React.createElement("div",{className:"flex items-center justify-between mb-12 2xl:mb-20 overflow-hidden"},React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-8 2xl:h-10 w-3/12"}),React.createElement("div",{className:"flex gap-4 2xl:gap-5 w-full justify-center items-center overflow-hidden"},React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-3 2xl:h-4 w-2/12"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-3 2xl:h-4 w-2/12"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-3 2xl:h-4 w-2/12"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-3 2xl:h-4 w-2/12"})),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-8 2xl:h-10 w-3/12"})),React.createElement("div",{className:"flex flex-col gap-4 2xl:gap-5 items-center mb-8 2xl:mb-10 overflow-hidden"},React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-8 2xl:h-10 w-4/6"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-8 2xl:h-10 w-1/2"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-4 2xl:h-5 w-3/4"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-4 2xl:h-5 w-4/6"})),React.createElement("div",{className:"flex gap-4 2xl:gap-6 justify-center overflow-hidden"},React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-12 2xl:h-14 w-1/5"}),React.createElement("div",{"data-placeholder":!0,className:"relative bg-gray-200 h-12 2xl:h-14 w-1/5"}))),React.createElement("div",{"data-placeholder":!0,className:"relative mt-12 2xl:mt-24 bg-gray-200 h-full w-full"})));var ob=o(7614),sb=o.n(ob);const lb=({trigger:e,children:t})=>{const[r,n]=(0,i.useState)(!1);return React.createElement("div",{className:"bg-white relative"},React.createElement("div",{className:"absolute top-4 right-0 w-6 h-6 pointer-events-none "},r?React.createElement(Dg,{className:"text-app-body-text"}):React.createElement(Cc,{className:"text-app-body-text"})),React.createElement(sb(),{trigger:e,triggerClassName:"block py-4 pr-8 text-[16px] font-semibold leading-[24px]",triggerOpenedClassName:"block py-4 pr-8 text-[16px] font-semibold leading-[24px]",contentInnerClassName:"pb-5",transitionTime:200,transitionCloseTime:200,onOpen:()=>n(!0),onClose:()=>n(!1)},t))},cb=()=>{const{setTogglePopup:e,setPreviousOnboardingPagesAIStep:t}=(0,r.A)(g.U);return React.createElement("div",{className:"flex items-stretch flex-1"},React.createElement("div",{className:"xl:w-[72%] lg:w-[65%] w-[55%] flex flex-col items-start justify-start bg-background-secondary relative h-full"},React.createElement("div",{className:"py-4 px-5"},React.createElement(ei.y0,{className:"w-10 h-10"})),React.createElement("div",{className:"flex-1 px-[4.875rem] w-full"},React.createElement(ib,null))),React.createElement("div",{className:"xl:w-[28%] lg:w-[35%] w-[45%] pt-8 pb-5 px-8 bg-white relative flex flex-col"},React.createElement("div",{className:"flex items-start justify-between"},React.createElement("h5",{className:"m-0"},"Build Your Page"),React.createElement("button",{className:"border-0 bg-transparent outline-none focus:outline-none active:outline-none text-nav-inactive hover:text-nav-active cursor-pointer flex items-center justify-center rounded-full p-2 hover:bg-background-tertiary active:bg-background-tertiary transition-colors ease-in-out duration-150",onClick:()=>{e(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open")}},React.createElement(f,{className:"w-5 h-5"}))),React.createElement("p",{className:"text-sm font-normal text-body-text mt-2 mb-8"},"Craft your page by selecting designs section by section. Personalize your design and have your page ready in no time."),React.createElement("div",{className:"flex flex-col gap-2 items-center justify-center px-2 pb-8 w-full"},React.createElement("div",{className:"flex justify-around w-full flex-wrap"},React.createElement("div",{className:"flex flex-col divide-y divide-border-primary divide-solid [&>div]:border-x-0"},React.createElement(lb,{trigger:"1. Page Header"},"ZipWP is different from other AI website builders in so many ways. It's free so there's no monthly charge to use it, or the website you build with it."),React.createElement(lb,{trigger:"2. Intro"},"ZipWP is different from other AI website builders in so many ways. It's free so there's no monthly charge to use it, or the website you build with it."),React.createElement(lb,{trigger:"3. Team Member"},"ZipWP is different from other AI website builders in so many ways. It's free so there's no monthly charge to use it, or the website you build with it."),React.createElement(lb,{trigger:"4. Join The Team"},"ZipWP is different from other AI website builders in so many ways. It's free so there's no monthly charge to use it, or the website you build with it."),React.createElement(lb,{trigger:"5. Image Gallery"},"ZipWP is different from other AI website builders in so many ways. It's free so there's no monthly charge to use it, or the website you build with it.")))),React.createElement("div",{className:"w-full flex justify-between items-center gap-2 mt-auto"},React.createElement(ii.A,{variant:"blank",className:"text-secondary-text font-medium leading-4 bg-transparent border-0 text-base",onClick:t},"Previous Step"),React.createElement(ii.A,{variant:"primary",hasPrefixIcon:!0,className:"rounded-md",onClick:()=>{}},React.createElement("span",null,"Build Page"),React.createElement(Ms,{className:"w-4 h-4"})))))},ub=[React.createElement(nb,{key:"type-selection"}),React.createElement(ab,{key:"description"}),React.createElement(cb,{key:"build-page"})],db=()=>{const{togglePopup:e,currentStep:r}=(0,t.A)((e=>{const{getTogglePopup:t,getOnboardingPageAI:r}=e(g.U);return{togglePopup:t(),...r()}}),[]);return(0,i.useEffect)((()=>{if(!0===e){document.body.classList.add("ast-block-templates-modal-open");const e=document.getElementById("ast-block-templates-modal-wrap");if(!e)return;e.classList.add("open")}}),[e]),React.createElement("div",{className:"spectra-ai flex-1 overflow-x-hidden h-[calc(100vh_-_5rem)] bg-white"},React.createElement("div",{className:"w-full h-full flex flex-col mx-auto"},ub[r-1]))},pb=(0,e.A)((0,n.A)((e=>{const{setTogglePopup:t}=e("ast-block-templates");return{onSetTogglePopup:t}})))((0,i.memo)((({onSetTogglePopup:e})=>((0,i.useEffect)((()=>{wp.data.subscribe((()=>{setTimeout((()=>{(()=>{const t=document.querySelector("#ast-block-templates-button-wrap");if(!t)return null;if(document.getElementById("ast-block-templates-button"))return null;const r=document.createElement("button");r.id="ast-block-templates-button",r.className="components-button is-primary",r.onclick=e,r.innerHTML=ast_block_template_vars.display_button_logo&&""===ast_block_template_vars.white_label_name?`<img\n                src=${"active"===ast_block_template_vars.astra_sites_status||"active"===ast_block_template_vars.astra_sites_pro_status?ast_block_template_vars.st_button_logo:ast_block_template_vars.button_logo}\n                class="logo ${ast_block_template_vars.button_class}"\n                alt="Button Logo"\n            />`:"",r.innerHTML+=ast_block_template_vars.white_label_name?'<span class="logo-btn-label">'+ast_block_template_vars.white_label_name+"</span>":'<span class="logo-btn-label">'+ast_block_template_vars.button_text+"</span>",t.appendChild(r)})()}),100)}))}),[]),null))));o(1726);const mb=()=>(0,ye.createPortal)(React.createElement("div",{id:"headlessui-portal-root",className:"gt-library-styles"},React.createElement("div",null)),document.body),fb=(0,e.A)((0,n.A)((e=>{const{setTogglePopup:t}=e("ast-block-templates");return{onSetTogglePopup:t}})))((0,i.memo)((({onSetTogglePopup:e})=>{const{onboardingAI:{showOnboarding:n},onboardingPageAI:{showOnboarding:a}}=(0,t.A)((e=>{const{getOnboardingAI:t,getOnboardingPageAI:r}=e(g.U);return{onboardingAI:t(),onboardingPageAI:r()}}),[]),o=(0,Ps.nk)({enter:"fade-in-fwd",exit:"fade-out-bck"}),{toggleOnboardingPageAI:s}=(0,r.A)(g.U);Qy("pages"),Qy("patterns"),(()=>{const{notice:e}=(0,t.A)((e=>{const{getNotice:t}=e(g.U);return{notice:t()}})),r=(0,i.useRef)(null);(0,i.useEffect)((()=>{const{type:t,title:n,message:a}=e;"info"!==t&&"personalize"!==t||r.current||(r.current=(0,Ps.oR)((0,Ts.A)({title:n||"Syncing design library",message:a||"Please wait for a few moment, we are syncing the library"}),Ts.A.getOptions({type:"personalize"===t?"personalize":"sync-lib-start"}))),"success"===t&&r.current&&(Ps.oR.update(r.current,{...Ts.A.getOptions({type:"sync-lib-success"}),render:(0,Ts.A)({title:n||"Successfully synced!",message:a||"Syncing design library is completed"})}),r.current=null),"error"===t&&r.current&&(Ps.oR.update(r.current,{...Ts.A.getOptions({type:"sync-lib-error"}),render:(0,Ts.A)({title:n||"Syncing failed!",message:a||"Syncing design library is failed"})}),r.current=null)}),[e])})();const l=t=>{t.target===document.getElementById("ast-block-templates-modal-wrap")&&(document.body.classList.remove("ast-block-templates-modal-open"),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),e())};(0,i.useEffect)((()=>(document.addEventListener("click",l),()=>{document.removeEventListener("click",l)}))),(0,i.useEffect)((()=>(su.on("toggle-onboarding-page-ai",s),()=>{su.off("toggle-onboarding-page-ai",s)})),[]);const c=(0,i.useCallback)((()=>{(0,y.D6)("ast-sites-visible-items"),(0,y.D6)("ast-sites-scroll-position"),(0,y.D6)("ast-pages-scroll-position"),(0,y.D6)("ast-pages-visible-items"),(0,y.D6)("ast-free-ai-content")}),[]);return(0,i.useEffect)((()=>(window.addEventListener("beforeunload",c),()=>window.removeEventListener("beforeunload",c))),[]),React.createElement(i.Fragment,null,React.createElement(pb,null),React.createElement(Ps.N9,{position:Ps.oR.POSITION.TOP_RIGHT,autoClose:!1,closeOnClick:!1,closeButton:({closeToast:e})=>React.createElement("button",{className:"bg-transparent border-0 m-0 p-0 focus:outline-none cursor-pointer flex items-center justify-center mt-2 self-start",onClick:e},React.createElement(f,{className:"w-4 h-4 text-background-primary"})),className:"[&.Toastify\\_\\_toast-container--top-right]:top-[8rem] [&.Toastify\\_\\_toast-container--top-right]:right-[4rem]",bodyClassName:"bg-nav-active flex-row gap-4 items-start !p-2 [&_:last-child]:w-auto [&_:first-child]:!m-0 [&_:first-child]:mr-auto [&_:first-child]:w-10",toastClassName:"bg-nav-active !p-2 !shadow-xlarge !rounded-lg",transition:o,hideProgressBar:!0}),React.createElement("div",{className:"inner"},a?React.createElement(db,null):n?React.createElement(Cg.Provider,null,React.createElement(Jy,null)):React.createElement(i.Fragment,null,React.createElement(eo,null),React.createElement(wu,null))),React.createElement(mb,null))})));var gb=o(5338);o(4473),document.addEventListener("DOMContentLoaded",(function(){wp.data.subscribe((function(){if(setTimeout((function(){!function(){if(!vb&&!document.querySelector(".edit-post-header-toolbar"))return null;if(document.querySelector("#ast-block-templates-button-wrap"))return null;if(ast_block_template_vars.is_white_label)return null;const e=document.createElement("div");e.id="ast-block-templates-button-wrap";let t=document.querySelector(".edit-post-header-toolbar");t||(t=document.querySelector(".edit-site-header-edit-mode__start")),t?.appendChild(e)}(),yb||function(){if(vb&&!document.getElementById("ast-block-templates-button-wrap"))return null;const e=document.getElementById("ast-block-templates-modal-root");if(document.getElementById("ast-block-templates-button")&&e)return null;const t=document.createElement("div");t.id="ast-block-templates-modal-root",t.classList.add("gt-library-styles");const r=document.createElement("div");r.id="ast-block-templates-modal-wrap",r.classList.add(ast_block_template_vars.popup_class,"p-10","backdrop-blur-sm","bg-border-secondary"),r.innerHTML='<div id="ast-block-templates-modal" class="rounded-lg spectra-ai"></div>',e||(t.appendChild(r),document.body.appendChild(t));const n=document.getElementById("ast-block-templates-modal");n&&(yb=(0,gb.H)(n),yb.render(React.createElement(fb,null)))}()}),100),(ast_block_template_vars.open_ai_auth||ast_block_template_vars.credit_purchased)&&!hb&&!bb){const e=document.getElementById("ast-block-templates-button");e&&setTimeout((()=>{hb||(e.click(),wb(),ast_block_template_vars.show_onboarding&&ast_block_template_vars.open_ai_auth&&su.emit("open-onboarding-ai"),hb=!0)}),400)}}))}));let hb=!1,yb=null;const bb=(0,y._9)("ast-import"),vb=document.getElementById("site-editor");function wb(){const e=new URL(window.location.href);["ast_action","token","nonce","sc_order","credit_token","email"].forEach((t=>{e.searchParams.has(t)&&e.searchParams.delete(t)}));const t=e.toString();window.history.replaceState({},"",t)}})()})();PK�][����Rultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/placeholder_200_200.pngnu�[����PNG


IHDR��=��f cHRMz&�����u0�`:�p��Q<bKGD���̿tIME�	,+�(@
�IDATx���[�\u����?��;��J�mw[$ /���}�Ř�`P�i�0Q4��T��H�D|C#�h�PyҀ`�B��Qh��v�s��|83sΙ�]�����4;{f������Ic�_���������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z���Ņ�{r�8G
Ai�zc�O�w���%��I��)�'��0��_6֏����o�)+�����dH��+Q�f�&�8�r�8��ք��d��%�Y�����z	+Ȩ8TA@Ud�n�<��I��h��<m|�X����-#��r�
��W�@D�6]'븂S2��b�En4�F�EĹM�j�D^ʜ����<�׮�˥�o������M�$y\W���,O4�7���	����\.�^��f�٦`}�i�/f'�8)�fq��^�\�z=�����O���O�/��P��jn�(q=�WA.��y�}Q��M�ui)l�]�U
��
��Uze����5�!W¬�Y�j@V��\�H7�BT;e��R�/'<�M�u�ov��F��}���qU�hnW�1լ�*�O��
��Z�m���e��]R�ﯰ���.񚢺\�K���-��A�^++U�0kaAPUvX5���YQ����亮$�Ut�\��K���Z3�BdT�ف6��\[�d/[خo�`�>���*\0��@E�g,T��	.�]l�?8�JN<�+���\�Jz�����s�qFdZ�����*�vb՜WVp%�,Y���X����k,�B��aʰL��6�E��F��le�d�5!V'�mny09uF�p�C�o�	��Qsu�y�*��*���kB��N�fX�a��[Qd+����%Ck^A.�7�i�(^L�jb�<
.�֡���3nX?O�f��6W+C/^Ib�0֬L]*i�!�R+V�sw�����{)�����#I��DXg;t�R����Yr�~��m�
�q����r-�Z�֮`��������j_PY�W
��v�B��f�EX}��Ǘ��LU*a^�\,��J�PD��#ET�uE��>��{ԡQX_��a��("zB����}�Q%R�YU�~Wdz��=I$N��U�ٱ"6�<���T)x���^�/_z�#\���.D:���V`}U|G}^EWQ�9��7>�O+�z�7�Ȇ�*m6��"���@�9RNXV�ˀ`?ң}e�I�dN�N$>,kKƷFPX���]��dG�,����Ï�~�S�I(��V���S�
pPQN"U�Ȁ��G�n���4��xz���N��\�qh޵�t`��:�#�mé�p�㾚Ϻ��պz����#|2�V�ϻʤ(�K"]`��4N��Kzae��½<�����\�a0��o��s�����(VTuvwk�~���4�6
��檹��ӕ�Y���-?^@G��u�$z�(�d��̲d���5���:t�� ݭ��� 7��.�V�0;z�5�7(\r�f��c�eXSS�)Y�
�^y�:��_T�>YI��=��3r�dDwY���y�N���a]6�0Z{󆰂��0���q����)"s:��<3��X��¨�ha"��;�����J���L���X�*�^f�G���*p���u6]f�)?��.=T��)?�.�UP�+�pfK��y����m<<�5���\��Ar�kI40����L�8+`���tA���F�s�AQ�"�#�5]pHw��|�<�*?�hz6��%�ߪʰ��,ĨŽ�������*�o�Jbk�������\�'DߠYik����
#��*s@"��`e�������Zs�r�=u��|��4�ÌݔL�;�⽼���Bc��G�܃ ��}�=n%K�?��
B	f��:��ꤼ)>��%�${Ɗormt��"SzieB�?�V-�R��ō0CP��Ȝ.���s7'ո$O��/��7;_=w���+A�-�>�Y��+�"�H{ua�8&�ɵ-A�'�e>���𽑱e*���7ˏe	�Y���[�frMK�4v'ώ�x@wk������8T+���P�N��W�X.Ɇ%˺���#���"�le�Db�2��=NX�@�X�o�.+�g�f�;����aٖ!z�+�׿�PJ�Em��e=�^���B^w�<:>҆��s�qXA�)�C��&ݨf������֝�u��V
A���NNs��'�I�I��ן�J'S/��=��kd�:j%�+؀c�!�S��@m�Oh?��,L���t�O�Ť�Dj�.u�Q�$��	���9��<�'����?�=巰�
�A��H�`eV���1]�n��4+��<™��`��E����h[�(U0�*�R`R�娜.�3tq{35�پ��O���W��kd���,�'/�L0.�n|��iR���jD����`��N��\�L1C*�*��Ԗ�|&?�m8�rߒ���Zp?y�\��W�V�"�k��6�_�������.T�5��X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X����6��\P8��IEND�B`�PK�][G�������Jultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/placeholder.pngnu�[����PNG


IHDR�e�8�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:5BD0F4D7A47611E98288E8AFD3CC7D76" xmpMM:DocumentID="xmp.did:5BD0F4D8A47611E98288E8AFD3CC7D76"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5BD0F4D5A47611E98288E8AFD3CC7D76" stRef:documentID="xmp.did:5BD0F4D6A47611E98288E8AFD3CC7D76"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����lIDATx����\�y0��g�` 	�IQ�LQ")��d��dɲ�7�SNU�7�T�O�|˷T��*N��*ɒ-��F�ↅ$�m0k���9�|���r��;H�~U]����{�����o��o$@�$	@�$	�$	@�$	@$	@�$	@�		�$	@�$	@$	@�$	@�	@�$	@�$@@$	@�$	@�	@�$	@�$@�$	@�$	�p@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$@@$	@�$	@�	@�$	@�$@�$	@�$	��	@�$	@�$@�$	@�$	�$	@�$	@$$@�$	@�$	�$	@�$	@$	@�$	@�	G$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	�����g�Ł���bggg�~4?�����<��Ã����?�pp�ر�����G>|x��|���>���c|��ڵk��|��SO
���o������|\���w���3�����n��F�������[[[��^^^=zt�ꫯN�>=x�wv��o|c0;;�����SSS����ƍ��{lp������������=���6�}{饗�N��}Mܖ'N�'���_�]��~����>8x���|���k�������`}}}p�̙�իW��x����'���͛��ׯ���/^y��}�r���ϕ���m��v�c�k�����������u���so_���w�/,>��V8^���w�[|>�p���9=���{�7x��ww�/.+.3��q��"�\�=ގ92�x���ҥK�������y����o��{�w_����{�'v���_�rw_����c�u�f�|����!nc���ٳgw��xN�v���#��X�֏?�xw��6�e��g�o��I\n�/��������ǎ?�{ܳ��k/�.^wq�'O��=��5q��<���q\~܏�����y�����?^'���_��,�,։ˏ����㱏��^?'쿡C�F�%FcP�%[�b@��
��!��ǧ�n�-�����rn�:uj���>z&����C������, �o��M�@��h~�ι��@܈�ps/�޳����n��ظؘ_��'n ��b������_τ�1?�W��;!���v�ڡ�����������σ1���n������nkr�g�9��b�a/�yff����\�w�:¶Ŏ�G�ѭ��1�p����a����^� &�����c� [~�̸��|�d��ŀ{��<����ƍ�o��Ɖ��K!���o
��b춟�>�x��| �,�c o��)�_�\L,��c/����{������^��+�� X[[[�ɇ�ׯ���5�.����D@|�j��ȯ��� �t���������/���K�����[[[��G������XW �|Ky��n�ٲ��t�ʞ=�����V��r�AzY���q4����ѽ�@��x�ǝ�����t����իWυ���qA6�@"$�
���;����������ފ�_Z]]���3!�=���@>��^��{���eAv����X�ue�~˖�t���*	�C�@�An��	���ka�㘂�H�G}�I��fL������!�%%	��� 7�C� ����/����F�O�~ �-!릟�.�{Az�3���l��Ɍ�p��"���ІK�.��r8N!�_���\�|�r>p>�>� ��[L�p���{��q:�Csss_��7o�<nƖ����ٔle��Yp\V 5/
�ė
H}]1�/nK���^
��eu�)%��X�0�<k�c�Bx���������ٳg�[^^>�
�PL$�Y���g��c������/�Ǐ]�|����R�:�����ﹺ �*/v�O}�$@qS���8ƿl�=��G<�_YY\�r��p���|,2xnkk�,��}հ@*e�����������<x�X0ݸq�H���СC���˺���l||մx� �n�j"c�$@���>_�0���~f	�lXD��a��p�c-���p^��_�olllܸt��/����0�������������Oq8�
@cpǥOOO?˓����̉�2V�?_��{|YP_P�	T�+	P�e���{!��bπ���$InH�n2�ڵk����?�<;;�q8?����;���htkaa���:��lڽP���Ơ2���ߑ�?='���`\~�[��S��Q�W@1�͒uC���KIT�m*���7l�~�M�W��Ǥx��ޓ�����{*�ǧ¹��˩��f��onn����	�3YP����(���=}��!�Jx�Pt�u��m��|�� ��p(ۮ���}.uۻ��j�ŤF~=�d�������-��9�ߘ��]	�_�W��ă|˧	����ؽ?�ӛ������ۏ�ǿ677�[���?�_�=�ln�|����gI�|��o�ο?p��m�q�e���G���m�ZN��	Uǧny�{�۶7T#g��x>���.����b~~�����ŭ��8CÁ�^���ϸ�0����_�~����Jx�K��h:>��[�W�6����9_'�*���K~����v-6�Z7 5I�R��mG�fC�O����������o����nooߎ�l�B��ϐ,�A�#kkk����>Dž�offf��8���Z|Y��b�YU ?>�j��7_/u8@S ����R�,�����h�� n��+[g�����B�};��?
���{���������V���1���C���h4�Z��677?m�/���@4@���O-�W�Hյ�@�N�� 5yP�����)�k�^!�߭~�fx�7õ�r�ԩ����z�neC@�@�AY�}�n6ܟ�Ǐ�;w�����i��s� ���lJ�,��
����'	��Ʊ���VL��A񹬇@||ggg�ƍ�?x�������	��cǎ��� ���x�X����>��?����B��pl흛����>���.�e�Ȃ�lV����n~������|�uj��e�=^5
a�8��H)>�eۋ-����{��.��o�	?\__��p<^���~?\??��	f�H�]�������ڗ._���p�x�7�)zJ7�Iu=��L���dz�0��}�KB��m
vI���x[�q��+���O/..��������b�m�=	���ܽ�777o�ï���|y<?�ג�<N��U�.��
PL��ה\(�٭��U�֔�K@��P��Aն��ߟ��e���^����������D��N_�p�_��������@�C�G����8��7n��_
A�WVV��[6�_j�~>�N	���yJ��*(�d�A� �.�OM&�mޗ��ΐO,�k+� �H�掇����s�Z�O����+N���v���СC_�Fτ����ك��.���)�ӕ��8`�X�� 9%IPL*4U�/&
�L�W���c�6aR��'���R��n��ˌ����\���zss������lXH@B�5�]�C���kמ�y��K!�惸���)~�kڶn�	������U-�m�Y|O�c����<�4PL>�0��u�֫���_
��/��~����a@�eYP5�g?�������^���Y�����=k������&�oS ������z��Ji��*tX��)�떑��h[;�n�UǸX��K���}���5wxzz�ۣ�蹰�_/--}4����@�Ġ+v���\�<����G!�z.+Ζ{���u����5�L
j۾7E>ARL"t
��&&ُ�k%e��\��EvL�1>��s��}��'ܿ�V��������ǯ_��l�^����?�ʺ\�T�
t���z�`U _l����r���xWȩS���wiկ���K�~��~m�}�l
�:�������	��õsn{{��O2P"ȳ���E�Ξ=�յ���@j:��_�
�)�+�W&�@h3;@�`����&��Gۂ��t�OM"�M<t9oU����z�+8�A�v��������Ι���R�$���񶽽�Z�����1�
���Ȫƹw	8��K�/Pֺݦ�$q�1�k�KZ�-��6wIr�����)�ڮ�jZ�b
����	�􏦦�~ێO:ܗ�`-��.]\�|��kkk����>�Le]���a��
WmMS���u-�U�x�:�%%@-l{^����!����Tl0%�3Iχ����|�|�fc��p8�����x��s��cx�Sp��P����(M��������?����N��dC1`m2I��6��?KAa�5m{]/�I�]66��e~ʮӬ.EL�YZYY��p����x�+�ݢw\�B������W�~7K�?
���߷��.%8O���@��J\�o]*�W�6�K~��@�!�m�
��
(Vm�$5�zU��H�窞��b�Y�����t���õ���/����»���$��e�P���]�[�cw�C`4WVͿL�.�}�Š�K��N��ߩ����Д�x-U�\�$M�ۓ����W��`uuujqq����Lxn�_�}��#�,���+++�N�>�߅ ����se��UE�RД9�ۼ6%��땐1l<�	^����°��S�J�DLݞ�m�tx@]�f�GUR%ۏ�#������0�g��p'��	�C�3X[[�µk׾�:�����6=��ަ��M%��Ϸ���K1������������V�c�Ǿu=��lZ���֭[��ۿ���|?��95��3%�b�[MC�h4�qx�+����j|u�����zU�����eT�]����w��P7�A�F��]k �M�t���j�ɔ࿬�Il����y&�O_�p����;O�I������/@�{Fp�������z���ŋ��z.k�o\NR0.l�/��6�60M
6S���&�N96M�KILz��m{�w9�u�d�uSL�2���h4�OW�\9:;;�/a����,--���&�[b�����X���͛7_������5�k�����U�o
�Z�S�uS��k��n�m� T�.����d�-3k=�*�W(��ix@Y��9-&����O�m6�~�z������`yy�$��Ā桇:t��������	�-Ŗ̺ �K�:�ty���U���$A�P��y�V��S��p��X^�2�fo�*D8�m��\��;;;��s��|
�'�U���^���м�~?4KUU�S*��\�[S𕲌���W�/�4�t�������C���D��4�.�(�����$�D�:�����I�^ U몛=��������������kkk�n�Z�A&��Ů�����ӧ�2��l6G{]��6�飅:eu�	��b]w��u���~��n1���IJ���mo�|bb���4B�ve������w���8�������n���]�x��|��h���ÇK[���sU��`���{��t]�ɦ�/%�Q�\�:\����>�M����\�9�MAnۀ�kM����,�VI�ǬwH]���H�g,����{��tpjj�Wᵱ���	%$���;��N\�z�/Csrqqq�ry�twY� �.kn�Wx)���}v��+~W��Mb�K�|�x���>���ۏ�T6ĠkR��5=�������X;#<�g����ן
��qx�Ӌ#K6�LELdjjj���r�ҥK?��X�x�&YKi�v�[�)�{;��eC����:��x�Ǣ�JM��%��Ǩ�5ٶ@cq}�Y���I�?G����G�<��S�7n�����5Ȋm�9s�'$��^�3�~��#���=�����>kd�Kʼ�U[]@\p�����t�o�ݽj��Z��`�n�)��{[�N�W�e�jXG�>W�ߦ}�2�?_�j*���U�]���,nGSB�X�q��ͳ��x&<��;;;k����x ��!7�l�
T1����̏F��VVV�*#K1�C�$�r{��׽��r�f����*؝�x�I�QW]�ͱ܏�MID����f%Ƚ��p���y��E7���$@�{� @/i0���777������?k�oP���v	�&
�'
���Qת�f{ڴ�
HS��+�ަa�{�N�����N��HM������� �O������ƫ/^���)�`?s!����ڷC@r$��-%0��W@�@�M�m��I<��}��~�Ǥ���X����v�$7�e�zz������o~s��ŋ�����a7�D
�;�^�5.�V��ٰ�O�۷����c��]���=�G%�*7�Z`m�`��V@�(`�iS��|����秡k:��崝֯l;��QW7�x�R�6��A�i����PUǡ�VL9Fu�q~{b�?�?�����v�9��5��G9r�޾\�[�ҟo��������[[[�
�Ǒ|���A�$-�]�}U�/NS�L��(�3��mz�)��1M=�M�s�I�6ǩ�1�24�����������o~�����ۯ���n-��<����ŀb4
���v+�ǂb1��\*��;N����/��^5�=ߒ]֢Zx�-�ka�6�H�>��9�����2�@�@�n���ǩ)�m�! e٩�I�
���)CXR�HU�>�}���{5|^��IX�zS�	�{�u.
q��^{��666��w�K�d󓗵LOR�/5�j3u�$-�MSvIF�&�lˤl���޶	�6�W��fjȲ��mχIg���G�.@�uS���������o�~����M�9��>��j��nll�y�$_d��
[�J���l<� .��`���b��U	���I�1)>�_]��G@^�3����e�ˮ��c���lcլ	]�M4]�m{�kB�[��>~?3==�9���0���!
!؟^[[;q���v���(EU7��,�I���8�Z���zH���u�b`��9*;��k�k�V�O�N�\�)�]�l��&ȟ�������'gggg���a����wP��yw2������'VVV�j���8�͸���]���[���LR�-��|SU��}+����T_���|?�U5��}O.�P���4���0���}��Eq�M��O��~���133�mv$G��S����Ȧ�/^�x��ի?���Z�Z�낟>
�u�"�M%����i��lw��
��O�$@���d�+?�c�}��)�F��.�L�
�hSg�m©�p`>흧����~�_333�����~��@��%�^�!@�-x��٣�/_����R~�S��:Sޛ�:޶'@���w}�����*Ī@|���k�Z����m�$)�&M:���e۝�	n��ۏ�kf����­�~������w߽'�#~��mnn^{���į~���ӧO���)
u�[]��.S�l{U+y������l��WuS �fj�܆��4�/���@�}MzYQ����+;��ɦI���	)�d�=�y�Z�����ԝ�I��766���塇��gI�,� ��`�Ġ�^Jܼys�:4�����c�/..~T�:��m��gݘ+��G����^�0�9���I���*����ȶ+����WWW�>�oKKK�N��7k�`4u��
_��'�������o��Vܮ׆��s���U���8N���|]��G�4IQ��������:�eS�U���*ߴ/m{e���(
L]^j�|u%�.�m�|ݬm��yo�<d[�{b��`{{{�'@x�oܸ1��u;&��9��7@� �>���w[\����^�|^h*>�6 �wMO�2޵�^ۡU��u}}%f��)���]���-V7��|�M(���j�G�mk�_M�-��F�={�����+��333jH�_~�Ỿ
��?v�p�­�����C�
�ͷm���זu�$c���n� %8M
����.�ї�/�WA>�o:�U�Q���=ʦYLI|Tmo�DB�rS��^3��uy�Y���mWq(M�
�w����a8^�yQ?��)���
Y�����n޼y���믅_e��Z�S����t-�v�[�C�,��s������n/{���`���4-�g��̷I��%i�$'����'������w�[~��Ɋ�@���n�wC�bп��>x��G+++�Ν;�߇/��c7�|pQ6F��teMLY+o��4?$��������7U�O
�Rfh�%P�Kb��@���&@j �4�DY��dF�$Q� ��K����.���!�����흻�,1�=Z]]�+�A��K�gϞ�9s&&���Dz1���m�ବ`]_c�K�Jo��cly�c��	R���M�t9V}\wUAz۞)�N�&��)���6%����o\�zu�رco�8qbp����˗w��z @O蝔����08|��+W�<�����8'x1P)����6)M�X���l`����Q�&`��U�Զ	:Sj,�-;���X�>�+x���c\��65#R��7�F���(羦���<�)�Y���Y��w�߂��=��{1��a�=����
��������G¯�
��T
��xJ�Ѧ�m��pM�Z<I�m��㪞kS��=ME�����]��~�I�&}��^m�
wIM>���N��	��������c��>P@���n�wR,�u�ر����c���׿^�w.(ʂ�|��M�����iL|U�R`�`,��A�~_�2���}e�Wv���m:oe�>R�e�vj�zU����,�m�	Х�@��eƆ��H��ЦN�=�3[��]������ӏ<��0�w, @O—�;��ت�}��DZ��wvvN�/������7e�����b�d]0۴���;%+�m���}��nZ^Yb��4s)�#%11I��K�}�≓��H�>�zS��󡪻�DX�{��h4zykk���0�����b��!$��矿����7�O��>w��!~a~~��^����V{�
�R�ʲ�۲q�Miש�R�.�S׮�_�`5�.@��W����i��y�.�)Ce���zm�Y��p|<��������A����~x߃���?��e�y�����q����)�KUS���.�u�f�rR{)�u�<�m��k�-��05xo�Om�.��H�N�߷�=<��oS��� a��"�Ax�cJR��3�fփ�sss677����z���Bo��$@�
���.?N1�ꩧv���W�\y=<�}����.��R�n=uQ��Z��l-�?UAr�`?[���1�s��^����s[\����4����������۱�tt���}OĖ�x`���v�w�����-..�Uc�S����U�K�t}u�K�1��w�^��6s�w	��^[�
]5o}U�_���	���&R�����-�e�A�i-�$���הxLݖ�3M�����k׮���J< p_�ck�[l�E�N�>��իW����ý,��V�>�ߍ�d�}�t��I�Y?�A��L��
�c��.�i�1e��RĤa\^�����kkk����ҭ���[܃�k4�F�x;�Ŀ���[U��6S���Cj-�����q�M]һs���m�Ӫ�nmfNH
P��eǣp�~_��6�}:���W�K��f����#�j;�E�g��Y����酝�����?;t���c����?�Ϗ����˃>��K�K���7@S�������m�ĺ�e����m+�=U�d�e�M��|b�p�~��?b�[�DZi}\+��t�u���#��f��S
)�q-G{S��>������M(����O�;�8
__A��|޻_ַ��	_ܿ���"�_�˂�6��e��RǍ�U��
|�jk�����u`�B�}M/�G���x�S�m���C@������=/��S�eխ��u=
�dO��5Y55`�J>>��l@l����}����}aaa��ɓ����q	R������<V���~`}}����X6�_��j�N�
w��q��R��M �����ş�Z	��iL��G��K���1�}��^~�!*]�S7�f�m?��������1���F	R������}!?s�L����K���ּ��k�`��}U��������z9���淭m��"n�-̓$�����J������*�Z�M���&�ݏc�:�Aj���A|�:S{tM�=���e����z=\7����߮���Ҟ>HPbnn��e�^��������˗�w��@#uo۠��l]e�,o�`k�e���;�n��p������v��O�9z1<>U6����eI��s�������mq'�]^�f�E�M��Y����M�__�=�ss����ȑ#7���%$H[����8����֭���ק����/�ٗ�b񮔖�`���Y�_*�^_�?e��{��km{����ε�H�j_v��G�DD�k���x|>ܽ��?��0�7¯�ޫ��|��Z��$o���fBSO��c]���a-���P�`� �픇��<�?s{3�<��������p;���}�P	�, �U�?��ç���w����fI��PU�?�^U�)X���f�|�c)��e>�|+u�-ũ��˖��7����Z��,����v���#MAm�uן/@�WO�6�यms~'M<�%nR??��c�7��k����>|-^Y/$���X��O>���[�b�n>�o
��/��~U٦*Uj�9�&a��$۶wĀ흪c�[��n��_�q��mϵ�F���I���\G}���`�WK���w��h4z6��������ܶ��4�q�F���r]�v�k�Uc�S[u����v��S]�����(��5�rW��+�}�ȟ�6A�^��ŤS~ʷ�m��b/��e���k���GJo�����U��]?w�K{�u\��i��e�)�V�P��8 ����})<�Q�;�T�	��^�=b��ŋ�9s教����u��A}�q�]���`�n;'�~�5pj;]]Y�Ŕcץ+|�
�^�^�N���僷p�l���~��z���"u�uC&I��%8�$���6=R�[�Y�K,nll<���}������o�vq$ȉU����������+���f�r������|O��A\��)�H��.�nӃ��̪��MwWW�)pL���ڶ�rE�~R�|YO��ڟ����b�XW�1*kQ���ޔuǦ�hzMjȮ��.=�z��=ܥ�oF\�^��?
������ �=S@��_�Sd_�/^�8{�ҥoƩ���M����)AW��,�i
�RZ�۾w�*�9޼�T���o���篩p���w�܎I�?t9��1E�~N������Y9��	�?<��tcc������~@�s!|q�x�*�����x<�f�?_w�o���	0I�m_I�>��.��m�j�.{��{xJ���Hٲ�$=���#\���;"w�"<���p�P���k�xL����z)k�
���}��L�߶b�\�k�n=m��L青�	�3[�u�3��7���q8|lyy���w����?}	
&�u�_����8@ۀ�}WT�S=��7�
��6% .�v0̭��[u˯ٮ����Nz�'�5R7w}�1n�`*K�l�c��Pd��Uq�R�Q�9Ge3C���߱�F�ѿ��Ύ�c�����p�?�{c�g��c/�����@�.O
��Ah���֕:�\�r���T0�u�k�!5@�Z\�x�Ė���,֏�Yϯ�u�Z��Xv��f��*>�OUχ����q�aeu�Si�$�ztI`���I��R�%��g��Y^^~mzz��;r�H�� �����ַ+W�,���}#���ڏq�)]�'m�Ͽ��ꚺ�Bx�m�d<x��}�~[5�DSRhϏ�s]�f�kS�o�9髎o�P��=R��u�	��yN	�zvL�Ϊ}���z&�b����% @�����}i<OgɄ���'	j�]�p�2]
U󛷝"���{-��Ӷ��Ӻue��K��z8��ȊE��p{=��YPYw��^5SC��l?ʪ��M���,b۞��2�
�5}�\U�!�֗Rw!u�Uɖ�{�uvdmm�[���k(��p�!��A|�[4]�~�����o��U���@�n����nZF]Q��צJp'n�.;n)�2e���[��X�/�����Ax�m�O�
���U���k��q�ؗ�'��m�q��Pձ��3�rǿ?����h:7�d6��
�;C�;�G�C
�\`�lakkk&�]�"�v8@ʜ��ڥ�u1��K
�Ul�2��j��.�QJ���m�qվ�	A�Z�>Ğ#	E��	��w�ϥ��(R��6]իz4�6]�S��O��>�lӣ��1H��p--lll���?>|���"�1p�"N�u������q�bπ��lm��7wR�X��u��& ��i�u��m������0%!�%��]�W>8��.���9i{W%��Ɇ�lll�p�С�8q�vJ�$�U���lǀ?��]__,|ٞ_��KvJ��$@��S����4��
��_\vUi��s�W�cM����ˎ����o�﫩	�� ����
�ޑ���X��y��vI0���'�'0���c�S��lڟ������������O�ߪ��N� �Ѷ@8^�v��x�r���t-T�%h
қO�% ew�b}M�ڥ��:UCR�Mۖ�t�%��%u*Ŗ�<�&މ�P���dq�I�P`q?S��l��%��I�eeC9�s&�6�ݲ����.��5���~unn?>����@���r�/��_�5��{�=��������o�R��>���@�)��&y���)�'R��+��~ҩ�g8�.�.�����;�z�v�y$%�;�VB_I�6��:l���0iO���r-$$�b/�/mnn�- ��X(�M�3����K!�z�j�1��
$�N-�&1д�ԤC�2꺘�C�tU��$S���b��X�u��Z������!�g��l��+�87��Ow	ț�I�	���)�rr�cP�7"[WU �3Y����)�v�…3����qȒ$��}/v�M�\�zu��o>����xq�&�~��Q���k��O�5�MM���5,�Jx݅6�B���k�=��V�-U%'��\���>*�7�?z�9�]�2�
Ә��X7��h4:<==}haaa=^cqȈZ���/&Ɏ��������e-��BrmZ��䓌��m�@�k�v�ti�}i3�ZJ���*�uS�5�e�矲1�m�i�b�?����{�cͫͪ �l�ĶI��2�ƿW��쳓8�"鳕�l���I��U�qYM��!-U����3�(\��f�)O��\��㏓��z���>�\?{�5��� ]�)�U�l۲
�]��.)0I�.���Y��_4^����KFT�����[�=G��,�
H�-��d�~-�,����鼶�Q�g7��o�k����<yr3&���^	�	)�l�����$�ŋͦ,�Z�6E��u��]l�-��8���tieI�>�M�RƝ�����[����iʶ1f]��`�'�}?,�o��h�N���b�볬U��U�e�~ݩ$@��<T�eH����G�6��p�d�].��@ྒྷ�%?~C����Vi��n�u��R�ķ
T��'@�X�,(��)Ѫ��bQ������n 6����޾~=ե�^<n�g�^�	�\l���X��y��m}������y(;�333��kW�\��'�Xˮ7$�K_����0���ڵk��z뭗C�w<����7}�Nii�zmS��V�`<���j:�|p�:�zպ��p�k	-�:�,kJD������Y���A[���{���!�"����(?�#e���Av_I��}��]f�hsʂ�>�YW�!�f-�F�������)'���gZ��9z����7n�8��j��m[���%P�
���]���D�S�Y�����=ܶC�V���uvm�
��~�o��4%�S�?U�%N���_'w3���a�d[_ǹj���.��+W�|���8�		��R]��:v�������dl���^���������%hH�2��}�=R�4�UT/덐z�o���X�U������NQU\_LBŢ�]��}���ˎU]��m�k�9��MR�(H�V��u�JU��dJYχ��&�	Pv���)&�����p�������@�r��������={vp���X��M���B�oA��2n��tO������U�d?�����J��)�Ϫ���8�y�s���0A�tX��p{�,A�zͤ���k�~���b?��OR����&�3Y<Oq��������d�^������@%V�___?x���P��U�w�Z��?U=R�Ⲁ�*��+XX���ʦ�Y@]Vd�n�w��eۑ�j�TA�l��H�"&�n}��{o��?W��:�e�<�a)�
�z]֭�M���MM��u�o���ǔmi����ML\���߲�ݼysw����S�N�>���p0|i~qzz����պ �*�h�R?i@Д|�j�+�W|6�M�i�E��A�~�m{���p/i���_�Q�>�*�$�(lϹp�>��MД��Zk
��&���q]���mLIƵ:��M���z}mW6�D����˗�9t��oz�Ok� pߨ*����|�ᇷ��/ǿ�e-f��$bS0�� -
��������q�m0��mkk�p4i��lH��~��?��������*K���5�2t��z�y���Iz�mol���8�����c]�$�/O>�d��YcΦ�~���ZV5���'@S��.AL6��M���v[=���!eeY�kqª��n���S������/~sҠ=[~O	�S�ڸ�u��寉�i#��3�6Qu��q4}�����뭬E�kb���i�L�6T
m�d�I4;;�d�ߺr�Jp���F$>�Μ9Sh/--��2g_�S��)�S���m��K݁���.�MW��X����]g`({,���������:�k,v��?\���˹I=V}%���b����o���8_�y��{����t������H�w66�0��AF��ܹ��x���px0h�N� %�K}_��&�� ;kEl;�ZYz�$J]]�����zM�\v^��=k�������q���5r�}&l����ӏ{���.=ꦴ�Z$�j�U۝��2L�� �s��}�jQ&�Lğ�t�ȑ�P�uw��	 p�<����Xl)������;S�N�Z�3��wi��$(�+����v���n^��I+��-�x�c�������G�w���W���n�kV��c\�$���ˤuʎ�$	���G��t=v�e����V_�'$>._��_�cg��}�ȑGCp6�6��R�n\pS���L��e���z���e-�MIYW�u��ߺ�?�����G{���e����"���}��O��n~�y�:�]���ڶ�ฬ�<���;U�d�~���I�[Q7#BU�
{�7�p���8�ɯ��u ~A�ձϟ??���Z��|�nʼ��S�����{�� �m)��M���-�����g��h�ϒM�@��ޗ�m[��T�\�K�-�uXLU�˾�͔�g/��ץ$�>Su�-ۯ,���xyy��G}tp���A~�H$>�^z��=c1��_�r�…'c���
�M�o�V7�#�(����YgU�i���S�]w<���eǡ)�Pv^�^��u����3��Wrҗ�}/���+kQ/;.M�_��eJ�xǤE�k2e\S��$T��3R���3��1Qz\�S�u��K��|"+X\XX�������Gw8��`�;vl��?����m��m]�c�4Xk�M����$D�bp{A�G�z��׹�����Uh�c�q'_o�u	lS��}��>�]�(m�]�h�Ɂ���VWW���O>�	�2�=���/}��|a>t�� |9~aff&9��2��q�*�w	v���Ŗ�6=���.I��Z)�.�����mM���k��VҰ
��g(.+&���ò^�Z,;�e-�U�J���1�E���g����e�!��YжO�5Y6������F�}
�1�y��sׯ_��L��b�kȮ\��t�ܹg���'
�����o��|p�u~�ݖS��U�/,uE��l����_�������:Y
?���g	��`��d�%l�7�^�M�kS/ehE��н��p����Iz������8��ĉ�G@��!���{�X/--
~����\�|y��d�)��Tp����R�����e�i�m��)Ɏ�cUբ�ڝ=[G,�^�ӲD٘�,�걫�ca{LYS;�uWUq?58��ު׶)b8���5a�@���k5��s�oܱc�J{4 �3�>�B�������cSA�j�us1@(v#�cN�I�o���m�ke/Se�uYb�.iѴ�@����vl�������X["�����p����Z���}��ҵ[�4�MI���9��[��V��)�Z�2���P0~rb{{��7n��H�~�����������͛�������j�ҚX�dH���uۊ��OQV��6��^�-�1@��gffn�u�+{o�Ǒ�k�D����"Q,��/����nM��s�Z��ݮ���m~��1���V�}ۺ-�TIIIq	$�-3�1��9.�/�=<A|�`"3#<"<<��?�Ǘ���.glۭ�qǺ�K�pL�)��3u��FL�ɵJ
j���a$���eP���}njj�2B�}�x�������:?�޼ys˽{���{v�f�SjQW���!
R�i����ģ����H�M�c�>;�+�O��s����]W���7�=d@�K�<Zl�>�T���z�BcrR�=�a�w��m�I������ ��̓���+y�м���������u�V�K��4k�f1��)�%u��Y��1�E��u,J(��������'��<6v�bK,��s׵�z[�rIĖ�+�7Bz]���p���n�{�H
(�>������������˜F)0���E?�B�^���J�f���}J\�K��")�<`!as)V}$��O��QRJ��h+��q�Q�m"�쿪,�9��]UM���Y�!ǖ��3�2�E
99�M�6�cҶ��<���d轫O]c�v<�8{{{k�Je
�[�\lhn޼�P�򲰰�ϖ<���n_��жҺ��~L��� 4ØC�-��Fg�3��-�#�r�
��v�kl%i?�,�����)F��� 5�I�-��^���t�=�Ǿ�����w�_�~p��=���`c��߮��0+�˃�x�V��*$\��6����w���g��Ys鬾4��u=5)�/{���gGW��hL|����⮹-[�g���^M@�b;'3�`���o��g��1I��K�<Kb=l�'I�(9f�8m��9c��x�Z�V��_�lh._��pf�^��---�)7m�Csj6�"Y�m����n��q�Ov�*$�$$at�D�L�q���e���R��z��F�Ԍ�R#@��
�ą�'@�y��)�w��~�zGGG7
#	 �N�f�Ν;7299�Z�-$F}I�R����m�$6KM.S�/�y�U+����OJ��u��Q�}��� �����y���5V�����e@��py브>� �v�Ң�!�u$��ig�Z�n�AU0����g�]����k׮m�r����)�$&��+I�UT8�l�#�d�)}f�?3a�1������yz���{'� ��.:���x3߻Jĥ����%�h�#S~�rQ<JtcXL���z��,/..>�޽�J��r	`]111�:;�íV��� m>�K�-�]�O,ź_�Ā�X�"%]3�!Ѯ���v.��vSB3�$�>�)�X������=��D��w�!H�T2�q"͆�ຮ�ۤ�ܸ��W�"�ލ1���g(C����=@����I����~����o�Z�8N�E��IDR#@�
�)��1��a����S}G�r�>��3~<��?g��vw韩2���L�]�vb�J��M���M̬��i�<���vml^"*�I�P���+////�`�
˭[�����j�*,��l_�>i�u��k=W&�������ǂ~���A�?�\7f&;4#l۞����%�X\�4t��]��$T��6�b�8�D�$��+�÷��r���w���7�n�Qh����R��g4���\��/���nqqq�^k���K)t`�.]��:�W��I��X���lƊ+�K�1, C�$I�|�,��_�ϔ�r��c�p�q�@�ϖ��n�X��Ӹ�c��eU;���n��rUK��Pi?�� �>��Mr�R<b�;|��_ٶm[�?��l(���dz_=333u~U�����X!���b�uw���C��5S�CԻ .a�2�m���~��+Â2(����{RO
I�wC�J���
%��ұ�-��+�H�)!@�ĒˤN˓�|��6,���o{�߿�����۷o�tE�5����+z�Le��\Q����Y吻��.g<���.��os�o����d���Mm���V�+R�T�@O��.�1��K �+
S�"=V��O(�����m�p�/O�v�����oR~�?	��Z���E����5ts�"�*u��U���%�ص�?����p5�P8I�J�.�eR�2����Gj��"b>�=�2�S�(���Ƞ��	U���}׆`�
�իW�!xdii�i=���:���M<��z{���\iI5�'@�8`����.M��>��҅�*)������}w1טRmӘ��J����n�=[%W��f�%��|�\���Ǣ��M���9��Ϙ�3���{M�]!ٯ�:�Z��M5z?��ؐLOO�� -5��톨�MzV$^�Hi������|���r���n���W�mB3q,����$	��_z<�	.��<��PJxN.#��>PF�
,����h��!���w�P�L�.w�Pr2ɬ`j�<�Bh�5%�Z���`l}s��r�L���?o�F�Z�:��
I�c��x���YZqB:�b�+����������U�3�~�b�+�@R$߈�p��4����'0��dbb������.�2o[G	�\��}��EĀ�А3�Zl��ꠛ����KKK��}.�����'��W����x��B�e��y$�I=��l8b
Y��0�Ƈ���288�޺u+�c`c2??�S��7+��TA��.��C��1��	�\}��v�~Ɣ��yL���Y��7]�;1�K��EU(*���/�i
�]����B0��#�}ǣ>�V�Pc�fԑ�-Bl�U>�G�@R4Gj$ӏ�sV����;lF����o��oj�ZY��5��N�8��&)�2lH�-�����A7t���n��F$^8�DK��W��}�G���g|	}k4�%��%�3
N��8���,�w�}"����.b��Txevv�gff�9�XC^y啞7n��R��M�rd�Xt�,�$[�_�4�Y����Z'�� ���.��e�_!�sBR�Pj�������<���uM��yD��V�{��2}_����3�����w�es<5HǤt�P	i؀�K�������`�
�ݻw+���#����-}��		������Ģ���IP.���{�R��r]?}�?#�Ҕ�?r,�Az�����kL�Jҥ�����M9����1�#�1��b��v`�1==���ՠ��\4{w(ɗ-N=f�5U�ǞG����m��S�E}h;ױ��GX��5�:�_�ղf��vvr쿤/l�%b�A�s
��i�������0�,���5^|�I￘�ȖO�FS����Ҽ�l�|�߄Nh�@�٬�ws��`�
������*�,���C���w�Gu�Ou�O1\��SO�g��6]��l�Tjf�	�5���p��+��о�t�\��z�j�.cK�@ݗ��CHTdž!���o�nk�	��yC�\o�ZUب�~z�-��Sc���k-�^"tRŏ��RglSfE}��E����J���<����;h��z�ÀDp淳�W4�ώ�J�Wuφ��H3�K�G:ދ����;#��Br.�0�IηcX�k�gQ�6&�F�j+�'}ЏqM�|_ĕ�t�͐1n�.q���.�h�|#�~�#t�Īc��O��;/�6	I��Z�Ͼ��{9� cV]p��9TUiAo�u,����
S�%c�i������x�o�~߼�UEki(�\�cg�R�C�~|��^H�P����Ԥ3���?}v�����<�_4Ѣ��vz٥��zC̘����5ף>;F��"����YjI�@l�ǘ� U�:���
�
��RY!���	L�{������V�Ue
�ْ��0��������F�T#H���\N�M�'1u�^o�{L�\V��Y�#����s�y�ĸ�����t�ߩ��g�|Nrc̲|��b�А�@;�8�sA�l^��q3F}a1�EK��uHl��D��i4c����.��"8��r�3K��t��Q�<��C���9�c�ZUq�Yڣv�Q{{٣��
6q���1F�gh�g]}G�u�
�uvU����pi����%�X����
��Z�V���H�����`�����b��>{h�M.��+u�"�����"e�|b0V��&Aty������v����8y���Q��T�O||J�K�u�4[��^gv�c3þa�h��-/�ƩoJǀ/'�m]���8&_���u�7�cJ��=�h����������|�N5H���a\�O�~zL�A�@z�z�6ɱ��I���>y�.Դ���}�n�G@rm����+V^��ζ�������h�c��Kt�7��ih�IC7��g���]���)���E��L����n������4>>�� �pl2Ň�y�`3��b/�*;�1b?F<�x�� �b�7ډo��?o�4��s�r	HS�f�}�ٕ-��G�1����W%���bƀ�b
1�S�鶮k�3�����v��?�z�J�o�T�<�NJ�؇�n	��X�,��}��b<
z{{?�5^t���ҙ��R*��T�\��7��8�=C�����[��+���ĩ�
>u��wQ�Ljt���
�(:6c��'��J��0���k�v3!��]j�H5d�B	bfL�}n���1,..6���;�N�^O�Iv��+݀�3�H�&ң�G]�POB�Ѡ�O������^���wU��O�l`�x|�
���,jI5��r�������B����|Ƀz��[+�C�6C�鋳�)�g��r���\��3�$yE�g+�y@���I�1»c��>�Z�c�Y���\�uJq���>c�&H�f�.��Px���a�G\�1ԯFΌM����{�]��b�ö^�;��^(�_�k{���A����8h�=%nC��mY�Ca�z�v�v�I���/�c��x���9���	ƛ���]��<]��ԧ/�"ܖ;��l�d���76�ܻ)�����s�u�:����lL�����z0�yh�m�RQ�~�� z>O��۽廣$dڹƈ*ї��#!}P�+�6a*?��K���Y��K��e4�����Ͷ
1�����
yN��O�-��l��@�l�Kc���A0�ce�s[,���6���O�cv����ղ�G'!�9/-��m��\c�N-P���Ա?���s��#�|I�,uA�V���wf_��O5��������z�`c�f�X�DB���*��(T�O� 16u���P�m	�L�ۙ���_���^�Ry�v�17F���+�5�P}�@��q��\��f��%�󝇤�1K��jГf��a�<9�����!<~�q�9���d�����n	����
���O�n�\>�kƕ^�Z�:�K�������m����a`�y:�/��_��7[���}��B���{2%9��ﻯ�s��q���U�7�h��"��s����bm�A
KJH�/c��\ǥ'i����s�����?����@�8�霞u%K4�V�W�m<R�m6HĪ���j.�f��l�D��I(�پ��@?��a"���}H���S
��u��Vr'���_4�:��G�	 1(�b�se7���1<�e,����^<���MCQQ�����?�����B��p�Wb�\J�%�ؑz�NJ�ت��}9���I�27! ����,�g>�ۄY(�W.O�P���m�glHqe��JL�z�z|�,�y������{9��3��?W{t�C���6!�r-}�G�E�n��D�M�>r��|E/�X��3�s�����C}n�s�Y|_��~��ő�G��l��0����l|7y�a �>c�����:��%R�v�rzG��I�?L��KQ[o�J�M�>�%=�C�7�0����3�}SzD��yZ��X����T& �Wb�Z�{�g�R��v�����F�ߠ��A`�����=�K��.�R�QDx��ӜmuKju��A�NЅdGT](��ӹ���
xɘ����{A�'�Br�ta��F��'b�t���R��"m���n�H�"���!�7n%m�f�]�A�ܗ��5�6C���s�6*�X!k�]��":G��}ڄ��|M�.%�YJ(�k�ǹ��:��:��[NkP���+�#����:3&�8#P�_V�Ӱa;��1mw��\!-!�,)�W�`!�z�#|y
�U6��"-��6K���̇k���:1Ƅ�8���Ķ.2r���ͦZ����E�ֻJ�u*��E�L�uZ^0=M�'�����$�S���GG��b�l���8�I
��$��~\-۸3�(��͘��oHђ��Ŕ/��K�`C�b{pv	l] t�Ϗ�btIDwq+�\��$�,��%`-�D�j�
3墿��x��Ε��V�=��q����dOb=N$FC@��e.v,����v�h��$1����2��<\�
�g�{�w %��}�/��B�:��T��N�@@�6$�մM��D[n�3��j0+#��S��
�ܶ���L�T����A�3	B��&[^�%��Rx.O	Z��s��u���9i��Exv-k�ׯ���/~���"G>
�31��N5�ʭ[�zv�܉��XT*��-�;$<���C���6I�Gј|Ӡas��%d$}����---��l1�I� jS����&�c{S�L0dp�QӀ�^igcf��c�����m��ןK�d����0���	 58��\J�ͭ��},�ͱ��>��y��j��|�̙3=���*���5`3�֎Z�vOZ��}�U8ev:f��%Rk����UI!�<l��0��=z��=T���E�Hc�clL��˾�9�����Ǫ�����1K�>�Ь!��bg�%��e\H��Sr��bWb
;���ˠ <`
�V��F�:k����YJs&�\'VH�j����k?)n�Q�f-v]��Hh�Z�x�:�Gr	vn���tC�c{��+�fh}} ���f��� ���/i߳��_�?gh�Hm��^��X�W���h;q%�4���'@lL��H��$��ք*0t��{��}�;������!���Ec�sfp/Rڬ��)��0f̐��&G�>}���q�?	�ú�B�杒A�b�9Z�/
f�@bst{̇�Y��c��c	��s�[�Å#zsV�����U���J���]�Μ������v�:���|.�hzF����}!*���T8��UY͎��&���Aǿ9�o~�J�g���g�5�Yz;�z�=�{��w�<;�b��
�ϫ@�;���5��~
e�B�����2t�岑��`��jX�^���f/�>���z�8I�o�x(:�j#T{=���h-z�u.w}�r@�W��WTB���4g�Cۚz�h_T*��]�>����E\�S��p�7@�Y���'�Xb+t�`���jlH���g��w���`��}W�sSȄf���	PTێ=T����,��t�mgv�3��AQ��39g�W�3/�ޢ�ʡk�+�(��Fe�/94���%S?L�r��eO�)ėį�/��[Z��4�I�$��G���w�rѹ��j��lHFGG'9�U����Ճ}�Y8[���D`� �	�␘Jj�}�D�*�G׊.σOs�n�S�<K{�O��%�L��Vڵ�x�^�h��T��q��>#=��v��Ԑ�I�v�^�7�?������R�4�J���{Q��<���tvQz�1���6���z��:"��s)W_��~�Oj�
z��]�c�ƄهZH��4��?�9�G�x�R;��w��$B>7����u�#��N��g��Z��^�0�ΩS�z���=�:ݱ]�8fߺ�XcɌoH�����,��%����W��&��g��9
��%3�U&^ue�%�t��nX1�E%�䒈�D`�H�X?�?���} 	P�.���vy˜���&���Q�h����E��v,�Ěw�
Bؐ9rd�@�Z�>L��AP�E'����M�H����\����r�oR[%���)#�pop�����/9�}�8��p��>ޖ�Q�Ŕ@j�p	n�>�k�:��>r%2,��ψЩ�rzxx��6$���M���}љG�H�ӗ
:�xr�^�dT�z؎���R�t��5�g�9�?���S{��\�,Mg�[�9Qe,sp�Du��Cj��CBT:�����Ԑ���y@b�U�
E���#�9��gqq��۷W�߻w/��`c�m�6������k���u[N}x���ݹ���u�[�t�_9�;{}����z�6_W�$�b1�pc�����&}v'������_�P��^��E.���A��6�K*��\�j��Tꙝ��ܿu��_�A������˂P�n���߆P3�Ҝ�^>���cw�c�ؐAB_��'�����n������2����֏>�|.Y��t��S}2Ŋ���Nh̹>W���ws��`�
)��%ʹjb=�,aM.�r��~2z؝�y�&��^��8F䇄�Tp��.�
�h�2��t�rVOXZZ�I��V��b�s��#�ܬ�����.5�h�c��_�)�4\��\��o��\e�l�Dro��W���>�!)�#Rc�o[u��R�Y���`��q��{�ܹsߒ�9���2��n�j9��WhV\�;4�'�R��O�ѱU��ֺf����2�������Fm���>V��b�~m��k���~PǗ��
>��{�X�V�I��s��Q�m9*�$z4��wn1��+�Cw�w������������/I+�C�Ĵ�"�$��<��c�H|}O��z��t,�sf��vޠ�JRa�>7��c�:m3I~׭{��/�P{��6���R�|�}!�Oф���9��c4
�l�bfhh�-�'0�O�?��O=�n��{�n����04����Q��O�	�z��p���Hg=�F#������M5��I�TT�}��C�ަ1����c�P��7�%�2c�q('@̘�=Zl^-��m^���CƯT��:�v��gGGGW�0�!9z��j<x��O��y%�Šz�f�ϝQ=G����d�'�x=� QY�s��q�A�i�4�_b�3�_� ch����ܦ�lO
_�%�\�1��_"�C��%(M��M#�-����Ҫ1�6$O?��z�op)�F��6�>sgξ}����p���y�;s��\��O]������\ɹ=.u���_���kF�%VC.����#>�H[������b]�.��6����.����f>��{�wL�ry���di~~��~�{�9�0��b����=�v��l����m3m�,�+I_Q����&�@��asqօ��A}�V�}���������l��K���|�mL���n����z��e�~^�Ě��s�ٶ�y=H���%.��P�G�d|ٌ�}�Z�ilE	@�6��3+<s�ڵ����=*Fܗ��	Շ_O��,�q%5�u��)卑��R;����P��y�-���n��5��!{(�rj����2z1�\B;�Xc�,A��ҽtO"�T�����P��lh� �L ��m�������lf2@���	������3��)�')��Be�B��ȖLMߎ�Y*��gs<���+PX$Әy�ݦ��L�����z�Yw����6q�e��j�6-�]5�>�U��o��P3I�4AaLߚ�FB���������]C@�66gϞ}��<33�R�լ��ٵ�����vV��N��^*�?u�8�cJ�=�ȗدס3[��Z�5��F����w��9
@�ks�֑�\F���E?&�t#����y@���l@@�64��Ù����{���+�fs���J�e��&J��f�]"W�l����͖�xHDog�I���n��^��R��6�S�����%��X��Ӯd��#���.��*��-�lc�7�.I�R ��-��M�ǎe�^�z��C�0������;w�E�����av�J�r�ڵk����U�1	�n�N��Zjy�G�i�v�`�I�S���C|�~٫#c��h9�r�TB��c��k��z>���b�~����O,����_H�K��������k��噙��w�`�w�y�A��P��X����}z��y��^6��Ҭ���}I�8�(�%͋u���V����>�C��ǿy��Ez=�C�����
��1n�gJ�e�|��Cׁ���]�?�b�P�Vs�N���s5����+#�cƦy?I�9z���%������㸿��^��rU��[���$�9w�܅F���L�{�սO�I��B"�}l2B�z,:K���Z�A��N�s.�L�Wz5E\��}����~XZZ��K�]�?��c�w�9=b=�B	=��޵U�{�188xj׮]+��`�333�P���uv?�6K��=}���~o�it��j�{f�t���ў�6���5�5�J�󴚉,�M��c����x��,���mq����12EK���k�h4DƝ���0AzsH�?�='�`���/)����!��R��7�>믾��?�N�t��������`�

'���w���$�S�	��dr9��c\�s�&��-��6�`�A"�"���\���-�����k,�t�$5�L&w<��I���Cq�8��P������dЏ�.5)`��ܕ�<���<��<~��T*��ܹS�߽6{@�c�駟�l,x�X=8��y&���˗w�<1b�5w���e��V	��g1�%I��Y�B��͗��?�!�Y��u�Ď���߫{0��E����<-_��—�g�6�1���^������+�
M��i���"	��q��.��r����\*�{�������w�==����<�)`M9t�����=�����w)�q�[l�
8�,�E�@�mC��Bm����/�м���/ÞC��1����!*�@J�v�1�҇Gs�.,�o��N��U�@���t��3�}���E��B!j�]z\)�2������m����H�<`�u
�6��������)�Cƀ���ED�� ��;�5�{D��xl�Q��rUj�MNhfIO��q.
Z����:��f����K��5�*�ܡekH���n.#�ˋ'���i#�`��<N�'�����'���<[��ӧO���E�,�}��= וБ���-�7UT���?u�O��!Ay��y2��\}�(hj����m�R[�8I�<�=�.���ѬK����������'R�X���CFJ�}���o�����ԲJ�2�lx�M\�]�w��q�>�t����Q����m�p���+N��BL���
Uo��Q�����q�,fr�+��:�Y��0�R_�<�����^��L��+�ܦ}m��q������?ku�.�#/t
H�o�q��
b�x,�e��<���_5���u1���E�x���L�y�������ː���<󸸸8I��V�ba���9����������(㏤�b����>����d�z���se�_;6�u�@��QO�"�Jhg�Ӕ�I���~4��y��ل�AZ�V�Pߧ���o˖-�Vؠ��W�^��C<�����Y��1�.� ��"0�� ǾCB�'�XT���OrƓ��6&^���<��l��~��eZNJ���@%�YjQ��x��[���x���q:�7���/�۷o�Z�[@'���={n޹sg�� 4ckp@�v6c��$@�u�!�>I��R?��!�x�PՆH��J�5n�c��u���Դ7gi;�Iz�\�BT���q��K��~��P��ؼ�s�x��=��6����?���6?==݃�<V<x��=00�x�ʕ/�_���Z�n�`jLrh[I²#CJ��}K�W�%�J�ґ����u��az)�j�K�yb��%��Dt>J��x��=f�`�H�]Z�r5�6~WK��}�T �T�mo�e��b����?��`��E__ߏ�K��8������U̇�T�g�C�)`U���N_�}�H�fB�y!�D�K��P�����rŬ�̿��������B�
s�'���4<>>�l߾t��G���ϡF�#��o�>��'�SJ]J�_s}�7���yO�<v��a+��p�
��Llٲ�/���L�
�М9s�*&���{�FGG��Ƙ)Sf�$B["�S�E�M�Ͷ�1w>?�s[	�L�^��JE���|	<����ɐ�
�}\+��e#�t�p��iZF�¼��L��	p��2F%!6�k���<�j��٥�
0������[�l�9p�@sjj��3g�ۼy�&����Kڵ8��1��ĢĀ �H�p�ە�^��>O}y6���k�Q����~=��{��a#�_��@0��ek׍\�!���X9Jm�W�K�+��>#���i��н뽠�<��������⩧��~��+���g��[�J�f�Yn�xu������.�6"���3�9���׫�r��+a(M�f�fFm�}��x�y�+9�S�|�yZޥ~p�[�+u���Яujb��cSc�S��;w���j��=2��xq��E��<��l6{&&&������{M61�Ȯ`}V<v3&�@zLE�l�	��e���\�Yt��E���|S?G��䚩�T�5۬���Y�_�MDV�|�����)��@}��g׸�)�0���d�r�7DŽ�^���<���v�}�=�oߎ�<~��
�7�O?�����܅���o�u�Ԝ+	���O�;6\ gl�MXؼr���'%�I���~l�H��m�ȑȬ�
���>{�p���2��ű�	�|�2���`Q�M��8\�]Z��ki3B��?1!?��B�"���{�ڝ���X�q2��o��`c��/x�g=x���ӭV��R��o
��.Q�qWH��Nl��"���k��f�0�@	�Z�v"G�?g�q���-1�9�,�����O���S���e��+�IUR��Eͬ�v�sH����w�IE�Y�Cb���Ԁ �<�>���q׮]�Xqջ�>��ܾ}�?����~�z���=T��.����j|��:T7<�OW�ܸ��;��/yRb����O�㦶^.��}!1hs���v�|�z��yD�"�S��	��c#�8���ij�=z�HƳXO��*Y�� i_��,//���<
|}`�cnn.��s�Ξ��ѳgΜ��.���!�-M��ѭ���Rb��������3�V�2m��t���b_�*��F��T>�̥?������.����(r߸��o�����f����Ξ��!��\�v��ɓ'���i��lKf�m����.��]e�\�J��ۏ�H�g�g3��[}�Y�P_�DB�_*��0�����_�H@��J�N���
��M�)�r�W�gW��N΀ծPMg�n�r)���a���^
�Q{o�R��1�2|�����/�'���7Ǖ-?�>�o_�Z�vo߾}�u�p���$��+������Z�֘�����"i����1�j��Os�:�<��5|KV�D)��c�*qG�
X�����Y7d��o�oZ�3��C!���D�p��_t�<f�x�yR%�c
�F�c��~'����ݻ�j�ڪw�x,i4�u8c���`�k����'�|�V����M1g���_!O�P-z� ��$K�E���j
�I�L��93�s[tl��2(��p	z�5��Y�!��r�zU�mCh�ۯ�:'rD-��8"�$-o���\cU����AWI>�{Ǘ`2�`a���I��D�_��w��|O�K��Ƃ��پ}�x�ʉ'n�Z�=��ܖ};$ʥ��m�["2�66#z���n Qy,��>{c��j�mUI ׬���m}l���{�}�B����|.,6y���$��S:޷�Q*�u�����f������?ݵk�$;ggg�0����K�Y���;�aZ��m��V��%�m"@!zVo�>B�6+)
/�x�nߝ��	Z�jNa��A��J��3�ΰW#�R&z�גǙ�\�oZ���������q�: g���k�^��R�1�Ĕ��^�P��K��o� 0C.����^�k$3��0����*b:tvbb�Ź���l<���O�1���)����Ug݄�,	�MCI���7{d�8gj�*K}�,���a�Ef�c�T�T���/��c�[���!����	g��E7~?�ʃ$d�P��W��Ϗ��L��?<�pL��L�\^�T*<��U����6�#=!�v[�AW�9sv�7��־O\�I�Ԭ��g��&�J��J@����N�3:�����|�<��{�}yr�[��G��$����r��kW(���2��0�mG�2�C�q�*��>��y���,_��30�O����sss���=���ӧO�l~~~�sĸ��\�K��
'�v���x�>Ǭ/�k�����W�c���K8�\w�)2nbc٩�_��j�Ym6�uj����Lv�hy�H���E�Xqy�Ĵ[�V���s�?NĘ�s�#f6Y�����ޡ�.��y�
��p%�+*8l.��m��e�|߹*������.W�?�g実��gcf_J�)��	L��B�'�5�y��,�/h��>���st�
�+Dd0�\%����D\w�`
|��Ɨ$���oٲ哽{�N�}x��͊�b�g3w��q��=h��ks���T�+���Po���"J|�m3���9g�os�/�����C��ض�@����i���3uQ�[�s\?�o�~|���	ѡE�|B�N��f��k���o�>t#��{�\.�����x��	P���x�֭�ggg_PIMo���\J��/A��:���������v�}.nj#�Q�V{r�E"�I:�1eLЅ�D���x���FLGl��9�l\ۗ�����g1�p�b�;�^�v�fپP�ʘ�{(W�œF|O��<�?<<|�~�Z�w�`C�S�I������R�V{��HN*�cʼnjG������)"T\"Re|'�w2d����M�-v��yWy���t!��2<�J���/&T�6��>���L?K��i���l�������f	<�8%q�9
F�=o��z�N^偳X��O������)i&�Ϟ={�E�3�<�݉'�O

�@t�T�5��y�K��D��e���c��q�k�j3�ĺ٧R+Dt�о;o.--�)R�O�
��̑�/�fs�o3�%6�Am�����uβ������ߢo����8i)�5��:�۷/i;�m\�ꫯN�@}�6/�1��& �G]|��n!�b;n_i3���J��'�Y������U�8;������I�7�ǹ��TDJ�J(����>�����7�8_�`�b�U;<;͟�Ҏ�Թ��'��ۦ��b*#�^��\۹Ƨ~��o����ؑ���6�3��9u���.	��
�޽{�U­��Ab�����xWY8�z�	�E����d�n볷f��DQó�[̙lW��>��-�66��m��vW��-��|��%��dc�� �~B�aZ*��Z����3.��k�~��y���������l(�u?,�>�l�ʕ+9r��g�%�6���7;,46������r���uH�}F�����^Չw�,%"Ssе��n�q��S�W��T���.!'W�y�FW{6��)�8B��1}��+W�Z��ǃ�'1܀-D�hy;d�)zmRו}\��/aeg�~ǎ����p،/�ౄ�G*<+��۷o�=88x��r�zStC8�����e,��X��<��r
B}��$	�,<��ϑ��Hy�N���Ƹr�:B�]�Nɕ�cB���TX�t�j�����.��W�8� 5��@�=W��Q���	�طm�!{�V�}F4K��3ʮ8s�|��"�%,��{�m&Ց����EQ쿾�kFކ�ܟ �ޓ���	�:碮��Y�nlu�C��
�c���>�+|��Kz���j
�����i��-�r!�$|�f��g3�v�xppp5if���`�
���T�J\ܽ{�g�޽�ą����z�zW}����2��j��<v�Jė���1ŸE�T�ض�8�$$�Hk�K���F�c&�S�T^�c�S7���W�UH�i���C�n%5�_�Ā�k���8|���7�j__��{ԨD�`����<S900М��9B�U6u����>��k�Hx��U�;&O�����^!�q7F���C�gA�@�K��� ��("cg�5H���x�<O��kN�}Q��ņ"u��mqL��\�{"�ʳ��1�\��u
����ߙ�}���D��
b�T�~���]���˗����,X\b�H���ef�W�T>p6�]��m&ڋ=~�k3�g���ʩI�(ݚ1�%t%4
Dk����a��8���.xUH�a�SZޠ�7$�S�)cB�Ǥr�zYLm�&�֜�a�#��<�j��m��'��	����V��c����i��|���?ض��#F�����W�%&�߇�Y���y��{���fY%9��UJ��6n�,�Sq�w-\���7�_xx���V���!@�t��m�8I˛����W�֟�F�:j���ܨT*g�7�<??��������>���3C�_\�t�5~�O�Ɲk&����)�����]"�ň*�Vd�߆2���о����c��M�|]�S_B�Ão����n��ƭ�8S�����^���y�^+���OOi���k������\�VW������"2�|dooaa��7�|s�Dа�,�C��׋��-Y��;%���J�q�q�V�^fr��.��>R�O}�_���.��rp��P�<�^J�:��A�|]��"6uq�Y���]�nB�5�F6�p��y[2�C�2�A�j0�q�/�����sCCCg�z���r���x��`/��W^y��/���o���$��%�R�iHp���4V�%Y����|�����%�R��1�$�wܗ�����s����pK�'�����<W-�|7]���zöMn�ߵR������0���uS�p�q]�3�����t�����o����;���	�'	=@gkK�-۽{wO__�W�\�����fB@_�|�FyH��J���p�l�D��}'�j���]'&���_?v�%�8�w��Kz�ucC��L%����a���O��+Z��Aa-Ѝ*��`��Ӵ��f�t#\#4n$!�c����ߙ�����
###�	ϊ� �Dm�s�ΎR�T�T*?�_��ޛ1�m}�o
7׬9�NF��$WL��q����l�Ll�Y"�t��T쥸�K�-�Dž����NQ�)���0L�%z���*/��Q:����]}jKkܑ�3���e��x��ws۶m��Í�W��^`��<333��遼�j�

�صk�9��!~p����D.��o�f�Y�T*�/Tv�x���\J8�Hz��_7h��c�x��K=�\���	��...r���U߫|�b&Z���@�Z^y���	]� �+cccz��g�pߺu�a.0���s��,�<سe˖�G���n����D��%�qa&�Ӆ��	`�Vs%<�#��"Ij��x��eK�!����+�<�x\3�R/�q�=L~�"�Q|����w�1Z^t�B�����4
9���9ѹ���T*��o6*rS�^��?�@?DwC��dhccc�'�xⳋ/�-l	Ma��^�,-E&�1�$qu�㊼.���v��
�oNO��!V��'7Ej7�7/4^���l����Q���!`��F�y�v.)1�����u;y7��?C��V�����0��
����$�{��o��������?7<<���ɕP�D���o� ��P�V��~�r��y���$��c����n�!A�����)�C��A@�d��7J�F�a@����3���z}���:�������HV�*C�0uo�kϿ%CCC޳g�-��W���vU����D�/���G���;�Ƙ+�&��4�Ј9��>z�#$m��?o�P3c�]���w��E����c=2]�������2�ޤ�-��k��
-K�-�Β+X��Y�Mv=��p�):��)��ꃐ�H�ס�4O���j�+��`cFWB��Τ�M��}vv��t����?����/���>a��Y~�@wm���ǟj�D��@mˡz�v(��v�$k9�����f^��YjsYz�<�<�s6OI�E��Gh�/���d��M�5v�����cyy�A�T:A��߿߳V�7`�
��v3سgO�֭[�ۿ��W�\yvll���O�U�b�$t���GG{>�Y��,��F�����$�~�9��},�>�%	m���үl,�D�;w��r�T�M0H`��
���Ç�4==���j�W�U�,tjR@���r�1AA��	|���>$n�1��>!X�L_̱�f�C��mS�)�T�ێ�5&mcC2k/�V�:O�ܟ4\&���Ԉ��	a^�8G��m۶��ƀn�,<�0_���
�A��k׮�W�^�_聾�Y�%��'tl�,�t]� ���ODm��R����-�:�n�k )��֓��,z
\Ƙ�㷛�V��}h��Qz]���{XA�Dn߾�&�a�������������_����;�Hq��]��f���0�ah_*�\1�~(�%_�`�Kqi
쐡�<g�̶d�ތ��%����m�p��HI�g��-tŬ��;��E�6[���֭[?�φ�F����a&��>���5ۗ��Zy�7N]�t����]�Z�G��Ʊ"0䮯��ąZ?&��&zb!��K4��׻={k
[^�r	�q�釢���}�W�ƍ"���uc�(�a,R�.5��.ŧ�S��O�ܹ��m�zfff�*Q�	���?_��<�����+���;���� ���,�1�7����i�K�*`m�]�s_�lv��}e��Ҍ6/�!(6)�kݘ,�E)�ߖS·mȋ×�3�#ŷ����J���j����6ǿ(�0(H��������pgǎߺu��k6\��p!@��2gL��\��1�%��bUQ��"��>�*���͗�0�<���w�1�#b���z��U��{ӣ��G�ƫ��������F�1M����<�n���!���c�jF������ѥ��7������!q�*|��^԰ ]�JE�}̹K�)ƔP�Ô����n�,�FY�X�GL�>�3�RJ��?�x�������<��P�@.Uz�����ei�޽߿����.N
苋O��&�%6��|��r~�=���OX��ٲ�w���b�C�[<��X�|�u���"��d1/���yl�����9ƿZ�~��SO��˃���*�V�J��G�;v��=���_�r�ʿ��O�]��Q�~Eg�s��2;�]�>rzH���G��Yy�Aj��2�=/���%���f1F��}�2p�����̕A��߃�T�6��m�%�j�@T򽵆���X���Wg����g<��o����.--U9�W:�+I`&k�F�b��x�c�|�:���|�15�'Nc�خw��C�������)�Z��u,ҙyɵ�Ǭy
���$�fy�#�+� -����'�r������0�g��PY�Ub����K۶m;z�Ν��fUb,V�圩��������6
�=$ۯ�>S\�mb5�D�Z\א�HbȊ��O=���ǣBlH�O����ku�~V�3�@�?�@�y��8l���_���-�F�%�Np�V2jR��5ck�<$2C�P���W'�ͺn�ᶉ}���dž
��RE���l�CB9V�ڌ7�����-��R"�4�*E���*�:W�����m�QF?F��N����wt����Kn�@f�����q��䙿�������?///�i9���ğ-)YNÄtfX�����'`�1+�iN͉�*��"<G��}����|C���KKƆb���&�9��SO]�'&&VÑ8�G� �@��z��>������{�����_�u���������l�tX:K\T\�f�%I�b������S�͋&dl���)F�'C�8�I�'�6p�}�_my'\�.t͋#\	����:,��~?�s�Ώh�X��ݻwc�`�m���z1p6pN���ϳ;�����?;v�7���'K���_*�	cDlȸ�V��q7�C�z�F7�E̒zE�`�s]'[?��A�Ծ�7������t�?`���5�0�"/��Һ;�����L��?����������l6W���Ţ�-6��;I>��*��cf�c��Sf��}��E7���tQ��Z�K�J���0�Ar����`��,0�O�Ʒ�X\�'�Y~}?�|����<���>z�2<<�灁�yN@����.C{��
\
L	�={�ܠc���˗�����f�<�/��4�!ō�7s�>�s��O�n�Ze◜�.�sT����O�L�id���`;]�+�A��[t�~H�3�^�C���`�355�.��C�\^5l߾����ŏo޼�+~����r_���˸on��j�����������&�s�'�ݏ-�h�������r�y�T!��&��c���nP�y ��3����ِG��j���޽O���ǜ�o�� <?�������S+|exx�������6c�]"���s4$H\m�\�U{���Oɼ�p��u9f�6]�sVBU���
W��00I�x\�:�+�_�}�:���mб~@o��h�]���9�b����"-�����~�>���n$���.Wxj�1�y��k����mu��Զm�5��Ա��e̸
%�K��XW%faa��l6�@��-ݳm���xp���z�����হ���M�!��N-�']Go[�(O_VzIb>��2�k�\��@�J/)!(�?�q��ҹ���P�֕�M��A�50��G��)% %����o;3���V�վ�Yè�<"8�~��J�&*Z$(��w~~����[�kz�QAZk^R���x��H�+�*b��2��K�J�%Ĝ{�q�f��,b���g	�o?��o~s���رc��<j����u{l��d�w�Z�������,�.�WD��D�4)`h��ؐ�O�5."�sr�0p�/��b�P�xH�A���CG���m�s�y��wx���j�����~�J�	������u}|,0�@�o�6� �ѻ��p�59l��
?s}iU�y�!E]�C�J��K�7&�}��5"��4��db7Ǽ��!�����}�޽{=sssp��8�O���h��'a�BB�0�+�'�=7�ՅO�Rp���M��f�c<��ٹ�O �
�XQ��.A��2�&�s%�,R�!���@�J�'iS��x�-�Jg���{fffD�:��ZG�4��qN�3 ��5�]�z�>���Jvs�7fۘvr�3ֽ�����-���,ү9�;��W�8�F��ܲe˙��~�������?ߋ��eD	";���###'Xpp�qH���aL�3��R�5�P�!O3���^0����d��}�ڱUC��GWiC�q�Er-m���(�_̸t���#�܏o�XBo�Syې�_X\\�����8Т{3�`�=�:	�c[�n=�„��p�K�{~Ι�@B?�H��'cM�6|%m���+��w�Z�C!ヾ?���R������R��W���j��0��:F?= IqU�����ry��o7�� �l�K�����%9R�ڙ1�Bq��s�	E۶1e�\�b�}yb����K�"��K�'�W1�
]K���lH�����>�A��J���y�f����nvv��Ν;��*T�@:�����T���/��F�Qc�d�l���z��
%��5`�e�Rf�C��)Ƕ^
>��);v��\Es �N��jK��1��T*]�T*�S�����A"�K�.��=88����D��p��ɽ{�~���/���9.G�]5��D��ֱ���Ifd׺�r�������	��%r�q����1UA7�5�M�WFGG�X����
���
�+/�"hya��_뭷����]vC��v�b2�
۷����W��'�l^�R�����x)�X!��1I��fd)�g!%����b�55��m\�x��Ɠ�lii�c���C�Z�K�/��!�S�\t
�<[y�С�w�y�I��g����k�ʩ�q=/z.���9�r�$��rb�)j��a��;����<�###�t���,�լ?�=C�������bf�?�N��K<�f/��h�cr	/�j�j��f�]��'Ch��A f�5�sf8U�����%�{�.�
�爯̤�m�f++�n���^����7}�$��EJ��`ѿ�����[��_*��������ݘmNm;���d����}R�w�Q������~���>l�P�4��T*��Nr�0X��xa1�:���!Q3��*q�f��T^�V�L__*P}y�s��n11��b]��B��n����%��r�r,.1�i�
}�9/_�J�j��8g���R�t�^���^/�{Ϋ�`]��D���\�|׮]߾��:88xmaaaU��r��t]S���������2Jt���"}���\���z>���W3�$���޽���r�����6
��ֽ�a�3�۶m��T*�P*����xv���g�� R3���>#��[@��5�|U\�0&3|HXJs����6��x���1R�|h��|	�qb+��ޫ��N�ј��������`�@�e���e�V��رc��T*s*9�OH�U��)�eɵ^����^_4>�Q��@�+e������������J��^A�?l$�###�:�۶m��
�%�Y�ƗKֵ���D�>���	D�1×��h�<I��0H�k���&�K���G�_v����mo�=77�^1�����{�\���0N�	�`�Y��}��Mnٲ�I}P*�Vl	�|%%b��0v	��1e������Q���tdH���~�:q��'�x����]z��-��%�X�7�ͥJ�rr߾}�����ݻwfG�	)�X�eI�y3@y�b���SDJf�M���.4���� �iŅԤ����s1�5��Ÿ=]��r�I��k׮3XJ����"hxx�۽{����oq�ƍ��8P�լ^"�%b��!����f�U�B��t��΀wc�|�*��5k��n-�����G<�{{{�ر�h�T�|zz�ŕ1*�
~<�����O=�T㗿�������^�ߞ���	���X(|@�	�7��!�]�m�R�C���L��>S�b=b\�]Ǥ����@�PჅ�����j�����S�����_������a7i6�?p��7n�>11q�?���r�l^��7Ş�����ţY��%0m%�����%��1 H��?�̸�Dz�6����q�\�C[8��<}ǥ����[�l9�n��Ѳ��8x<��G��a�X�[�����}���FB�zoooϜ*暁uչ���ğ^ 6�>��cb�s��e�UB��3����"H	�P��7�����?{�������~��/����[���q�x���@�0%���_|�ҍ7^�u�ֳ���C<���Jι�����ٻf�z�=�X�F�f�m��<G����|�"�mǢ��䊶��O�%F�P�f���pU��T*͍���u��vmz���*s	��`]X,�l*��J�Ҥώlݺ�_�l��-.�M�͠n�13�Ef��&�g7e���g!��$����Ÿ�K�����_>����1��?v��֥!@�,S�j��;��O/^|�ԩS/��z\�M���m���n�ޕ0T�w���c����Jƈ�ظ|[?���E��1�o��n3p8�~�KKK����{��_�<<��~0���bC��� ���y��'/�y��Ń$�FX��l+�3WR@�s_	�����e>U@K�Ŋw���DЗ\1�X� R$�F���Э���o���?%����7-����,��o��"1�����g}}}or~z_U���sW	>��:�������x�"�cDk쬾��C"8�`���<�c*Z�@�
�������0�����<�����ڧ�z}���<t>@�Z�ҪP�ց���J��-��({g~~~��*�!�6��*��wR]�C�Ǣ3���R��V�1Ű�g��?���D��Xܶm����}�����������l�$l�����?,--
��?<==�,}�����G�ݖ��%X�㐱 e�޷�ԣ �'��<R���tO�����Yy�w-���j�Vv��-lh�z��'{TY?_�@ �!@�3o�ۍ������^|��/�]����˗��7@�C���M�f�MA���ݾH��:�/L�o�^b8��ߕSA{H��cǎ���z���ݻLNN�,,,D�����Y�r����o^/�J�'����Wo߾}����3����c�C�[�@��@yH����\R�
�D���zݧ���~�`~���}N�s����v�Ķm���5����ձ��`�	J�����,n���ŕ����7n��S�V��j���S�T~$�sC��ѮK��E�2�S����N��ߑ�o�ٳ��f�yv��퓴�2'���~���u�����%�D��;v\&���n#Qwpnnn�+
�j�U��ܺC�J�)Âϻ V�J�sd��:��OH�*�ֳe���}���}��_�Vy����W�z����Woܸ����5`�9<���v���lٲ囡��/^����w�>�9==�j`c�.�m�Ѭ���2?�
y�����O-3���>��JC�QAo�a���!�z_����[�ٔ�o0?Q�l.Wh�Z����n?��sg���g��]���Os�7'y�ux8��_�@�=������.1mfϏ=_�'@�����9�6���������w�n�z��ի�=~�����8��;���B��w�y�Եk�?~� }���%��@%��)��R�x{�h
e��% 4E~CA�4a�ABjL�*��m	]�U���ǐ�L�����⽧�z�;���ݸqc�M����A��������.�g�:T���gΜ�C_
�8U1�,9��+ÿ����b��m9$��.�3�/]׶^�p�QBr�l�a���kD��>��{�N,,,��ҥK+��Q��W���3�0���Ž2������	�'���W���{�…�I`n/��u�>o�<L�Ϥ���~��AZ��l3��Ė�/�;Aj�����xFe�~��k3�k׮�y�/�]�6����ylll���=�܏�>`Cc�yX�ȭ��M��O<���/�^�p�-;i���R�=���?����韹ĭ�b�H�
��Wd�ض\�q�}�����/L��n�{���gϞ�O�<y���o��355�˃���3����T
X5lݺ��駟�w���?������׿�{���_}��f�9B���~�D�>Cn��L�+�z��-a�K����+3h�8���m[3d��F�O���h��$�g�y�˽��gϝ;����[ٽ{wϗ_~����e,Я	���dCW�������g��������Nb�r���r���ׯ��~?}��g�� ��|����YzЗ7�%�s ��c������@Pߩ�Է�J�27>>>w�/'''��#f�إ��ٳ�8��0ɨ�l�xr�"�ܳg�	��.]�4�w������s����ݻwok���c�'���N��� 6����溡�\��.��vC��#A��>^�חK�Rs۶m�I�s�ƍ�ԗ�###/��r�…=_}���Č��@!X�6��eZ��ݻ���7ߜ$���[�F��j�K/�4�h4�����u�Y��_�(�"VO�Z�{�'�m����pW~���x!�o������6�0}}}��훢u����_ںu���>�`vv����u�yu��`�]�r�@�;�
ScccS���oznܸq��ɓc��ټw���j������f�%�[go�/��X/9(��7��3���R�o����i��~`�ί,������������e:�w�ޝ���4888����O�j��G�^���nA�~`]�Pf��0}v������g�yf5���ӧǮ]�64;;;6<<�|��'w�Z�=�f�N��Js<~���O-�=l]�ے��j;���E�2D���B������$��.�@(�Js$�[��������U�?>>�p�{tޫ3�ʍ_oW�G��$P��m.�$���ۻsss�<x�����Α0._�|y��ݻ�����f�Y�uv���.��[��nj��6wy/�g^t��R�����l>*8��*���ʢ�mP�hY���}@dzD�]_XX��Y{چ�!,���6��Ʀ�z��������=�����A��~��5
肜��	�;�%�y�^x����}����ty~~�J�:;;;H-..��6+Q��V��۷W���~����j��f�9KB�g�؎�+H�/�:�hY$a�n�ݻw����=Ǐ_5��J�%d�c�
P3��@��s��ju��xV_/��P�^��~��_�>|��Ν;�N�l��i�
+�ރ���֟���v�'a��p=�����)�ϋ龯�x�:y��0�`�0�``�0��0�``��?v�@���0�����````�`����````�����
````����````�����````����`````����````����````����````����````�����````����`````����````�����````����````����````����`````����````������````����`````����````����````����````����````���%�X����_IEND�B`�PK�][��i-
-
Cultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/logo.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In SVG - Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
	.st0{opacity:0.83;enable-background:new    ;}
	.st1{fill:#95F9EF;}
	.st2{opacity:0.53;enable-background:new    ;}
	.st3{fill:url(#SVGID_1_);}
	.st4{opacity:0.7;enable-background:new    ;}
	.st5{fill:url(#SVGID_2_);}
	.st6{fill:#FFFFFF;}
</style>
<g>
	<g class="st0">
		<path class="st1" d="M26.8,88L9,33.5C8,30.7,9.6,27.8,12.2,27L66.8,9.2c2.7-0.9,5.7,0.6,6.4,3.2l17.9,54.6
			c0.9,2.7-0.6,5.7-3.2,6.4l-54.6,18C30.5,92.2,27.6,90.8,26.8,88z"/>
	</g>
	<g class="st2">
		
			<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="4.238" y1="739.9995" x2="95.762" y2="739.9995" gradientTransform="matrix(1 0 0 1 0 -690)">
			<stop  offset="0" style="stop-color:#00E97B"/>
			<stop  offset="1" style="stop-color:#00F9D7"/>
		</linearGradient>
		<path class="st3" d="M44.7,94.3L5.6,52c-1.9-2.1-1.8-5.3,0.3-7.3L48.1,5.4c2.1-1.9,5.3-1.8,7.2,0.3L94.4,48
			c1.9,2.1,1.8,5.3-0.3,7.3L51.9,94.6C50,96.6,46.6,96.4,44.7,94.3z"/>
	</g>
	<g class="st4">
		
			<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="296.5753" y1="-720.5554" x2="368.5928" y2="-720.5554" gradientTransform="matrix(0.9591 0.2829 0.2829 -0.9591 -65.1611 -734.9626)">
			<stop  offset="0" style="stop-color:#00DBDE"/>
			<stop  offset="1" style="stop-color:#FC00FF"/>
		</linearGradient>
		<path class="st5" d="M69.2,93.3L10.6,76.1c-2.9-0.8-4.5-3.9-3.7-6.8l17.2-58.6c0.8-2.9,3.9-4.5,6.8-3.7l58.6,17.2
			c2.9,0.8,4.5,3.9,3.7,6.8L75.9,89.6C75.1,92.5,72,94.1,69.2,93.3z"/>
	</g>
	<g>
		<path class="st6" d="M51.9,39.1L51.9,39.1h14.4V28.4H45.9c-1.9,0-3.7,0.3-5.3,1.1c-1.6,0.6-3.1,1.8-4.4,2.9
			c-1.3,1.3-2.2,2.7-2.9,4.4c-0.4,0.7-0.6,1.6-0.8,2.4L51.9,39.1L51.9,39.1z"/>
		<path class="st6" d="M66.9,53.3c-0.6-1.6-1.8-3.2-2.9-4.4c-1.3-1.3-2.7-2.2-4.4-2.9c-1.6-0.6-3.5-1.1-5.3-1.1h-2.4h-6H32.5
			c0.2,0.9,0.5,1.7,0.8,2.6c0.6,1.6,1.8,3.2,2.9,4.4c1.3,1.3,2.7,2.2,4.4,2.9c1.6,0.8,3.5,1.1,5.3,1.1h8.4c0.5,0,0.8,0,1.1,0.2
			c0.3,0.2,0.6,0.3,0.9,0.6c0.3,0.3,0.5,0.6,0.6,0.9c0.2,0.3,0.2,0.8,0.2,1.1c0,0.5,0,0.8-0.2,1.1c-0.2,0.3-0.3,0.6-0.6,0.9
			c-0.3,0.3-0.6,0.5-0.9,0.6c-0.3,0.2-0.8,0.2-1.1,0.2h-20v10.8h19.8c1.9,0,3.7-0.3,5.5-1.1c1.6-0.6,3.2-1.8,4.4-2.9
			c1.3-1.3,2.2-2.7,2.9-4.4c0.6-1.6,1.1-3.5,1.1-5.3C68,56.6,67.7,54.9,66.9,53.3z"/>
	</g>
</g>
</svg>
PK�][���4��Aultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/910.jsnu�[���"use strict";(globalThis.webpackChunkast_block_templates=globalThis.webpackChunkast_block_templates||[]).push([[910],{1910:(e,t,o)=>{o.r(t),o.d(t,{default:()=>h});var s=o(3771),l=o(3914),n=o(6597),r=o(8242),c=o(1594),a=o(6134),i=o(9453),u=o(9260),p=o(7510),m=o(5034),d=o(7497);const{spectra_common_styles:g,is_rtl:b}=ast_block_template_vars,y="visible",h=(0,s.A)((0,r.A)((e=>{const{getDisableAi:t,getDisablePreview:o,getTogglePopup:s}=e("ast-block-templates");return{disableAi:t(),disablePreview:o(),togglePopup:s()}})))((0,c.memo)((({item:e,content:t,stylesheet:o,astraCustomizer:s,globalStylesheet:r,colorPalette:h,dynamicContent:f,selectedImages:v,disableAi:k,togglePopup:E,email:w,phone:x,address:_,onClickBlock:A})=>{const R=(0,c.useRef)(null),$=(0,c.useRef)(null),I=e["thumbnail-image-url"]||"",S=e["featured-image-url"]||"",N=(0,a.Fx)();let C=0,T=0;const{importing:P}=(0,l.A)((e=>{const{getImporting:t}=e("ast-block-templates");return{importing:t()}})),{setImporting:q}=(0,n.A)("ast-block-templates"),[O,j]=(0,c.useState)({importing:!1}),[z,W]=(0,c.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`),[B,D]=(0,c.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);function H(){const e=R?.current,t=$?.current;if(!e||!t)return;const o=e.parentNode.offsetWidth/1200,s=o*t.offsetHeight;e.style.transform=`scale(${o})`,e.style.height=`${s}px`}(0,c.useEffect)((()=>{P?document.querySelectorAll(".single-block").forEach((e=>{e.style.pointerEvents="none"})):document.querySelectorAll(".single-block").forEach((e=>{e.style.pointerEvents="auto"}))}),[P]),(0,c.useLayoutEffect)((()=>{let e=!0;const l=v,n=new Image;n.src=I;const c=new Image;c.src=S;const a=$.current;function i(t,o){e&&(t.onload=()=>{o(t.src)})}i(n,W),i(c,D);const u=document.getElementById("astra-wp-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container"),m=document.getElementById("astra-block-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container"),d=ast_block_template_vars.wp_stylesheet;let b="";if(o&&(o=((e,t=[])=>k?e:0!==Object.keys(f).length&&f?t&&0===t.length?e:e.replace(/background-image\s*:\s*url\(['"]?([^'")]+)['"]?\)/g,(function(e,o){if((0,p.p)(o))return e;if(!t[T]?.url)return"";const s=t[T]?.url;return T++,T%=t.length,'background-image: url("'+s+'")'})):e)(o,l)),b+=d?`<style type="text/css" id="wp-includes-styles">${d}</style>`:"",b+=s?`<style type="text/css" id="gt-astra-customizer">${s}</style>`:"",b+=`<style type="text/css" id="gt-spectra-common-stylesheet">${g}</style>`,b=o?`${b} <style type="text/css" id="gt-common-stylesheet">${o}</style>`:b,r&&(b+=`<style type="text/css" id="gt-global-stylesheet"> ${r} </style>`),u&&(b+=`<style type="text/css" id="gt-wpeditor-css" > ${u} </style>`),m&&(b+=`<style type="text/css" id="gt-blockeditor-css"> ${m} </style>`),a&&t){let e=a.shadowRoot;if(null===e&&(e=a.attachShadow({mode:"open"})),null===e)return;let o=t;if(!k){const e=f??[];e&&Object.keys(e)?.length>0&&Object.keys(e).forEach((t=>{o=null!==e[t]?o.replace(t,e[t]):o})),f&&Object.keys(f).length>0&&(E=o,w&&(E=E.replace("contact@example.com",w)),x&&(E=E.replace("202-555-0188",x)),_&&(E=E.replace("2360 Hood Avenue, San Diego, CA, 92123",_)),o=E,o=M(o))}e.innerHTML=b+'<div class="st-block-container">'+o+"</div>",h.forEach(((t,o)=>{e?.host.style.setProperty(`--ast-global-color-${o}`,t)}));const s=a.shadowRoot.querySelectorAll("img");e&&(s.forEach((e=>{(0,p.p)(e.src)||k||0===l?.length||0===Object.keys(f).length||!f||L(e,"hidden")})),H(),((e,t)=>{k||0!==Object.keys(f).length&&f&&t?.length&&e?.forEach((function(e){(0,p.p)(e.src)||(e.onload=()=>{const o=e.getAttribute("src")||"";if(o.includes("unsplash")||o.includes("pexels")||o.includes("pixabay"))return void L(e,y);const s=t[C];if(void 0!==s)if(s.url.includes("unsplash")||s.url.includes("pexels")||s.url.includes("pixabay")){if(C++,void 0===t[C]&&(C=0),"PICTURE"===e.parentNode.nodeName)e.parentNode.querySelectorAll("source").forEach((e=>{e.setAttribute("srcset",s.optimized_url)})),e.parentNode.querySelector("img").setAttribute("src",s.optimized_url);else{const t=document.createElement("img");t.src=s.optimized_url,e.parentNode.replaceChild(t,e)}L(e,y)}else L(e,y);else L(e,y)},e.onerror=()=>{L(e,y)})}))})(s,l))}var E;return()=>{e=!1}}),[e,k,f,v]),(0,c.useEffect)((()=>{const e=new ResizeObserver(H);return e.observe(document.documentElement),()=>{e&&e.disconnect()}}),[]),(0,c.useEffect)((()=>{const e=document.querySelector("#ast-block-templates-modal-wrap");if(!e)return;const t=new MutationObserver(H);return t.observe(e,{childList:!0,attributes:!0,subtree:!0}),()=>{t&&t.disconnect()}}),[]),(0,c.useEffect)((()=>{const e=$?.current;if(e){const t=e.shadowRoot;h.forEach(((e,o)=>{null!==t&&t.host.style.setProperty(`--ast-global-color-${o}`,e)}))}}),[h]);const L=(e,t)=>{e&&(e.style.visibility=t)},M=(e="")=>_?e.replace(/(src="https:\/\/maps\.google\.com\/maps\?q=)([^&]+)(&z=\d+&hl=en&t=m&output=embed&iwloc=near")/g,`$1${encodeURIComponent(_)}$3`):e;let F=0,U=0;const K=(e,t,o)=>{const s=e.scrollTop,l=t-s;let n=0;const r=function(){n+=20;const t=m.A.linearTween(n,s,l,o);e.scrollTop=t,n<o&&(F=setTimeout(r,20))};r()},G=(e,t)=>{!P&&e&&null===e.target.closest(".gt-single-block-action-btns")&&"function"==typeof A&&A(t)};(0,c.useEffect)((()=>{E||(C=0,T=0)}),[E]);const J=b?"origin-top-right":"origin-top-left";return React.createElement(d.A,{className:(0,a.xW)("w-full h-fit",P?"importing":"")},React.createElement("div",{className:(0,a.xW)("cursor-pointer relative border border-solid border-border-primary hover:border-accent-spectra transition duration-150 ease-in-out overflow-hidden group",P&&"border-accent-spectra")},React.createElement("div",{className:`thumbnail left-0 m-0 min-h-[auto] overflow-visible text-left top-0 ${J} relative pointer-events-none`,ref:R},React.createElement("div",{className:"absolute w-[1200px] pointer-events-none max-h-[1600px] overflow-hidden",ref:$},!t&&React.createElement("img",{srcSet:`${B}, ${z}`,src:z,alt:"Preview"}),React.createElement("div",{className:"preview"},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"})))),React.createElement("div",{className:(0,a.xW)("absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end",P?"pointer-events-none":""),onMouseEnter:()=>{if("page"!==e.type)return;const t=$.current;F&&clearTimeout(F),U=setTimeout((()=>{K(t,t.scrollHeight,4e3)}),1e3)},onMouseLeave:()=>{U&&clearTimeout(U);const e=$.current;F&&clearTimeout(F),K(e,0,1500)},onClick:t=>G(t,e),role:"button",tabIndex:"0",onKeyDown:t=>"Enter"===t.key?G(t,e):null},React.createElement("div",{className:(0,a.xW)("gt-single-block-action-btns opacity-100 md:opacity-0 group-hover:opacity-100 w-full flex items-center justify-between px-3 py-2 backdrop-blur-sm bg-white/[0.85] shadow-action-buttons transition-all duration-150 ease-in-out",!0===O.importing?"opacity-100":"")},React.createElement(i.A,{title:N.notInstalled?"Install Spectra & Insert":N.inactive?"Activate Spectra & Insert":"Insert",showIcon:N.active,liveRequest:!0,item:e,importing:O.importing,onClick:()=>{j({...O,importing:!0}),q(!0)},onBlockImport:()=>{j({...O,importing:!1}),q(!1)},onImportFail:()=>{j({...O,importing:!1}),q(!1)}}),React.createElement(u.A,{item:e})))))})))}}]);PK�][��D,11Aultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/870.jsnu�[���"use strict";(self.webpackChunkast_block_templates=self.webpackChunkast_block_templates||[]).push([[870],{7870:function(e,t,o){o.r(t),o.d(t,{default:function(){return T}});var a=o(5711),s=o(5940),r=o(7363),n=o(8195),l=o(5302),c=o(1882),i=o(8096),p=o(5868),m=o(4142),u=o(9148),d=o(6128),g=o(1569),b=o(5622),f=o(8680),y=o(1277),h=o(7712),k=o(3698),v=o(1890);const{post:I}=wp.ajax,{parse:w}=wp.blocks,{bypassAuth:_}=ast_block_template_vars;var P=(0,a.Z)((0,s.Z)((e=>{const{getImportItemInfo:t,getCurrentScreen:o,getSitePreview:a,getActiveBlockPaletteSlug:s,getActivePagePaletteSlug:r,getDisableAi:n,getAdaptiveMode:l}=e("ast-block-templates");return{importItemInfo:t(),sitePreview:a(),currentScreen:o(),activeBlockPaletteSlug:s(),activePagePaletteSlug:r(),disableAI:n(),adaptiveMode:l()}})),(0,i.Z)((e=>{const{setImportItemInfo:t,setTogglePopup:o,setOnboardingAiPopup:a}=e("ast-block-templates"),{insertBlocks:s}=wp.data.dispatch("core/block-editor");return{setImportItemInfo:t,onSetTogglePopup:o,insertBlocks:s,setOnboardingAiPopup:a}})))((0,r.memo)((e=>{let{onImportFail:t,setImportItemInfo:o,requiredPlugins:a,importItemInfo:s,title:i,btnClass:P,insertBlocks:E,onSetTogglePopup:S,item:A,onClick:x,onBlockImport:N,activeBlockPaletteSlug:R,activePagePaletteSlug:C,currentScreen:$,disableAI:T,importing:j=!1,adaptiveMode:B,showIcon:O=!0}=e,[Z]=(0,r.useState)(s),L=a||[];const F=P||"",[D]=(0,r.useState)(i||"Import"),{index:q}=wp.data.select("core/block-editor").getBlockInsertionPoint(),{importInProgress:W,syncLibNotice:M,stepData:{token:z}}=(0,l.Z)((e=>{const{getImportInProgress:t,getNotice:o,getAIStepData:a}=e(k.L);return{importInProgress:t(),syncLibNotice:o(),stepData:a()}}),[]),{setImportInProgress:H,toggleConnectZipAI:K,setNotice:Q}=(0,c.Z)(k.L),U="info"===M?.type,V=(0,n.gt)(),G=(e,t,o)=>{(0,y.Am)((0,h.Z)({title:e,message:t}),h.Z.getOptions({type:o}))},J=async()=>{try{Q({type:"import-info",message:(0,v.__)("Activating Spectra plugin…","ast-block-templates")}),await(0,u.j)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){H(!1),G("Import failed!","Spectra activation failed!","error")}},X=async()=>{try{Q({type:"import-info",message:(0,v.__)("Activating WPForms plugin…","ast-block-templates")}),await(0,u.j)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await oe()}catch(e){H(!1),G("Import failed!","WPForms activation failed!","error")}},Y=()=>{const e=Z.original_content,o="all-blocks-grid"===$?"block":"page",a="block"===o?Z["blocks-category"][0]:Z["pages-category"][0];I({action:"ast_block_templates_import_block",content:e,category:a,_ajax_nonce:ast_block_template_vars._ajax_nonce,style:"all-blocks-grid"===$?R:C,disableAI:T,block_type:o,adaptiveMode:B}).done((e=>{H(!1);const t=(0,n.CN)(w(e));E(t,q,"",!1),ee(t[0].clientId),S(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open"),(V.inactive||V.notInstalled)&&(0,b.iP)(),"function"==typeof N&&N(e,q)})).fail((()=>{H(!1),t(),G("Import failed!","Failed to import the block. Please try again later or contact support for assistance.","error-import")}))},ee=e=>{e&&setTimeout((()=>{const t=te(),o="block-"+e,a=t.getElementById(o);a&&a.scrollIntoView({behavior:"smooth",block:"center",inline:"center"})}),2500)},te=()=>{const e=document.getElementsByClassName("is-tablet-preview"),t=document.getElementsByClassName("is-mobile-preview");if(0!==e.length||0!==t.length){const o=e[0]||t[0];let a=!1;o&&(a=o.getElementsByTagName("iframe")[0]);const s=a?.contentWindow.document||a?.contentDocument;if(s)return s}return document},oe=()=>{Z?.["post-meta"]?.["astra-site-wpforms-path"]||""?I({action:"ast_block_templates_import_wpforms",id:Z.id,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((()=>{Y()})).fail((()=>{H(!1),G("Import failed!","WPForms import failed!","error")})):Y()};return React.createElement(p.Z,{className:(0,n.AK)("min-w-[4.875rem] h-7 hover:shadow-small sp-text-sm",F,(W&&!j||U)&&"opacity-50 cursor-not-allowed"),type:"button",variant:"primary",onClick:z||_?async e=>{W||U||(H(!0),"function"==typeof x&&x(e),V.notInstalled?(await(async()=>{try{Q({type:"import-info",message:(0,v.__)("Installing Spectra plugin…","ast-block-templates")}),await(0,u.H)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){H(!1),G("Import failed!","Spectra installation failed!","error")}})(),await J()):V.inactive&&await J(),(0,g.I)(A.ID,"astra-blocks").then((e=>{o(e),Z=e,L=e?.["post-meta"]?.["astra-blocks-required-plugins"]?d.t.parse(e["post-meta"]["astra-blocks-required-plugins"]):[],L.length?"not-installed"===ast_block_template_vars.wpforms_status?(async()=>{try{Q({type:"import-info",message:(0,v.__)("Installing WPForms plugin…","ast-block-templates")}),await(0,u.H)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await X()}catch(e){H(!1),G("Import failed!","WPForms installation failed!","error")}})():"inactive"===ast_block_template_vars.wpforms_status?X():oe():oe()})).catch((e=>{G("Import failed!",e,"error-import"),H(!1),t()})))}:async()=>{K(),(0,n.jw)("ast-import",{blockId:A.ID,blockType:A.type,blockPaletteSlug:R,pagePaletteSlug:C})},isSmall:!0,hasPrefixIcon:!j&&O},j?React.createElement(m.Z,{className:"h-4 w-4 !shrink-0"}):React.createElement(React.Fragment,null,O&&React.createElement(f.Z,{className:"h-4 w-4 !shrink-0"}),React.createElement("span",{className:"truncate"},D)))}))),E=o(168);const S=e=>{const t=["skip","logo","fav-icon"];for(const o of t)if(e.includes(o))return!0;return!1},A={linearTween(e,t,o,a){return o*e/a+t},easeInQuad(e,t,o,a){return o*(e/=a)*e+t},easeOutQuad(e,t,o,a){return-o*(e/=a)*(e-2)+t},easeInOutQuad(e,t,o,a){return(e/=a/2)<1?o/2*e*e+t:-o/2*(--e*(e-2)-1)+t},easeInCubic(e,t,o,a){return o*(e/=a)*e*e+t},easeOutCubic(e,t,o,a){return e/=a,o*(--e*e*e+1)+t},easeInOutCubic(e,t,o,a){return(e/=a/2)<1?o/2*e*e*e+t:o/2*((e-=2)*e*e+2)+t}};Object.seal(A);var x=A,N=o(3433);const{spectra_common_styles:R,is_rtl:C}=ast_block_template_vars,$="visible";var T=(0,a.Z)((0,s.Z)((e=>{const{getDisableAi:t,getDisablePreview:o,getTogglePopup:a}=e("ast-block-templates");return{disableAi:t(),disablePreview:o(),togglePopup:a()}})))((0,r.memo)((e=>{let{item:t,content:o,stylesheet:a,astraCustomizer:s,globalStylesheet:l,colorPalette:c,dynamicContent:i,selectedImages:p,disableAi:m,togglePopup:u,email:d,phone:g,address:b}=e;const f=(0,r.useRef)(null),y=(0,r.useRef)(null),h=t["thumbnail-image-url"]||"",k=t["featured-image-url"]||"",v=(0,n.gt)();let I=0,w=0;const[_,A]=(0,r.useState)({importing:!1}),[T,j]=(0,r.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`),[B,O]=(0,r.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);function Z(){const e=f?.current,t=y?.current;if(!e||!t)return;const o=e.parentNode.offsetWidth/1200,a=o*t.offsetHeight;e.style.transform=`scale(${o})`,e.style.height=`${a}px`}(0,r.useLayoutEffect)((()=>{let e=!0;const t=p,r=new Image;r.src=h;const n=new Image;n.src=k;const u=y.current;function f(t,o){e&&(t.onload=()=>{o(t.src)})}f(r,j),f(n,O);const v=document.getElementById("astra-wp-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container"),_=document.getElementById("astra-block-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container");let P="";if(a&&(a=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return m?e:0!==Object.keys(i).length&&i?t&&0===t.length?e:e.replace(/background-image\s*:\s*url\(['"]?([^'")]+)['"]?\)/g,(function(e,o){if(S(o))return e;if(!t[w]?.url)return"";const a=t[w]?.url;return w++,w%=t.length,'background-image: url("'+a+'")'})):e}(a,t)),P+=s?`<style type="text/css" id="gt-astra-customizer">${s}</style>`:"",P+=`<style type="text/css" id="gt-spectra-common-stylesheet">${R}</style>`,P=a?`${P} <style type="text/css" id="gt-common-stylesheet">${a}</style>`:P,l&&(P+=`<style type="text/css" id="gt-global-stylesheet"> ${l} </style>`),v&&(P+=`<style type="text/css" id="gt-wpeditor-css" > ${v} </style>`),_&&(P+=`<style type="text/css" id="gt-blockeditor-css"> ${_} </style>`),u&&o){let e=u.shadowRoot;if(null===e&&(e=u.attachShadow({mode:"open"})),null===e)return;let a=o;if(!m){const e=i??[];e&&Object.keys(e)?.length>0&&Object.keys(e).forEach((t=>{a=null!==e[t]?a.replace(t,e[t]):a})),i&&Object.keys(i).length>0&&(E=a,d&&(E=E.replace("contact@example.com",d)),g&&(E=E.replace("202-555-0188",g)),b&&(E=E.replace("2360 Hood Avenue, San Diego, CA, 92123",b)),a=E,a=F(a))}e.innerHTML=P+'<div class="st-block-container">'+a+"</div>",c.forEach(((t,o)=>{e?.host.style.setProperty(`--ast-global-color-${o}`,t)}));const s=u.shadowRoot.querySelectorAll("img");e&&(s.forEach((e=>{S(e.src)||m||0===t?.length||0===Object.keys(i).length||!i||L(e,"hidden")})),Z(),((e,t)=>{m||0!==Object.keys(i).length&&i&&t?.length&&e?.forEach((function(e){S(e.src)||(e.onload=()=>{const o=e.getAttribute("src")||"";if(o.includes("unsplash")||o.includes("pexels")||o.includes("pixabay"))return void L(e,$);const a=t[I];if(void 0!==a)if(a.url.includes("unsplash")||a.url.includes("pexels")||a.url.includes("pixabay")){if(I++,void 0===t[I]&&(I=0),"PICTURE"===e.parentNode.nodeName)e.parentNode.querySelectorAll("source").forEach((e=>{e.setAttribute("srcset",a.optimized_url)})),e.parentNode.querySelector("img").setAttribute("src",a.optimized_url);else{const t=document.createElement("img");t.src=a.optimized_url,e.parentNode.replaceChild(t,e)}L(e,$)}else L(e,$);else L(e,$)},e.onerror=()=>{L(e,$)})}))})(s,t))}var E;return()=>{e=!1}}),[t,m,i,p]),(0,r.useEffect)((()=>{const e=new ResizeObserver(Z);return e.observe(document.documentElement),()=>{e&&e.disconnect()}}),[]),(0,r.useEffect)((()=>{const e=document.querySelector("#ast-block-templates-modal-wrap");if(!e)return;const t=new MutationObserver(Z);return t.observe(e,{childList:!0,attributes:!0,subtree:!0}),()=>{t&&t.disconnect()}}),[]),(0,r.useEffect)((()=>{const e=y?.current;if(e){const t=e.shadowRoot;c.forEach(((e,o)=>{null!==t&&t.host.style.setProperty(`--ast-global-color-${o}`,e)}))}}),[c]);const L=(e,t)=>{e&&(e.style.visibility=t)},F=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return b?e.replace(/(src="https:\/\/maps\.google\.com\/maps\?q=)([^&]+)(&z=\d+&hl=en&t=m&output=embed&iwloc=near")/g,`$1${encodeURIComponent(b)}$3`):e};let D=0,q=0;const W=(e,t,o)=>{const a=e.scrollTop,s=t-a;let r=0;const n=function(){r+=20;const t=x.linearTween(r,a,s,o);e.scrollTop=t,r<o&&(D=setTimeout(n,20))};n()};(0,r.useEffect)((()=>{u||(I=0,w=0)}),[u]);const M=C?"origin-top-right":"origin-top-left";return React.createElement(N.Z,{className:(0,n.AK)("w-full h-fit",!0===_.importing?"importing":"")},React.createElement("div",{className:(0,n.AK)("cursor-pointer relative border border-solid border-border-primary hover:border-accent-spectra transition duration-150 ease-in-out overflow-hidden group",_.importing&&"border-accent-spectra")},React.createElement("div",{className:`thumbnail left-0 m-0 min-h-[auto] overflow-visible text-left top-0 ${M} relative pointer-events-none`,ref:f},React.createElement("div",{className:"absolute w-[1200px] pointer-events-none max-h-[1600px] overflow-hidden",ref:y},!o&&React.createElement("img",{srcSet:`${B}, ${T}`,src:T,alt:"Preview"}),React.createElement("div",{className:"preview"},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"})))),React.createElement("div",{className:"absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end",onMouseEnter:()=>{if("page"!==t.type)return;const e=y.current;D&&clearTimeout(D),q=setTimeout((()=>{W(e,e.scrollHeight,4e3)}),1e3)},onMouseLeave:()=>{q&&clearTimeout(q);const e=y.current;D&&clearTimeout(D),W(e,0,1500)}},React.createElement("div",{className:(0,n.AK)("opacity-0 group-hover:opacity-100 w-full flex items-center justify-between px-3 py-2 backdrop-blur-sm bg-white/[0.85] shadow-action-buttons transition-all duration-150 ease-in-out",!0===_.importing?"opacity-100":"")},React.createElement(P,{title:v.notInstalled?"Install Spectra & Insert":v.inactive?"Activate Spectra & Insert":"Insert",showIcon:v.active,liveRequest:!0,item:t,importing:_.importing,onClick:()=>{A({..._,importing:!0})},onBlockImport:()=>{A({..._,importing:!1})},onImportFail:()=>{A({..._,importing:!1})}}),React.createElement(E.Z,{item:t})))))})))}}]);PK�][����Dultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/style.cssnu�[���@font-face {
	font-family: ast-block-templates;
	src: url( "fonts/ast-block-templates.eot?p3u0q1" );
	src:
		url( "fonts/ast-block-templates.eot?p3u0q1#iefix" ) format( "embedded-opentype" ),
		url( "fonts/ast-block-templates.ttf?p3u0q1" ) format( "truetype" ),
		url( "fonts/ast-block-templates.woff?p3u0q1" ) format( "woff" ),
		url( "fonts/ast-block-templates.svg?p3u0q1#ast-block-templates" ) format( "svg" );
	font-weight: 400;
	font-style: normal;
	font-display: block;
}

[class^="ast-block-templates-icon-"],
[class*=" ast-block-templates-icon-"] {

	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: ast-block-templates, sans-serif !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ast-block-templates-icon-chevron-left::before {
	content: "\e904";
}

.ast-block-templates-icon-pages::before {
	content: "\e902";
}

.ast-block-templates-icon-patterns::before {
	content: "\e903";
}

.ast-block-templates-icon-wireframe::before {
	content: "\e900";
}

.ast-block-templates-icon-refresh::before {
	content: "\e901";
}
PK�][�4�AU0U0Aultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/138.jsnu�[���"use strict";(globalThis.webpackChunkast_block_templates=globalThis.webpackChunkast_block_templates||[]).push([[138],{3138:(e,t,o)=>{o.r(t),o.d(t,{default:()=>$});var a=o(3771),s=o(8242),r=o(1594),n=o(6134),l=o(3914),c=o(6597),i=o(7642),p=o(9583),m=o(6041),u=o(9431),d=o(2513),g=o(9392),b=o(8354),f=o(4403),y=o(5446),h=o(4715),k=o(8330),v=o(1760);const{post:I}=wp.ajax,{parse:w}=wp.blocks,{bypassAuth:_}=ast_block_template_vars,P=(0,a.A)((0,s.A)((e=>{const{getImportItemInfo:t,getCurrentScreen:o,getSitePreview:a,getActiveBlockPaletteSlug:s,getActivePagePaletteSlug:r,getDisableAi:n,getAdaptiveMode:l}=e("ast-block-templates");return{importItemInfo:t(),sitePreview:a(),currentScreen:o(),activeBlockPaletteSlug:s(),activePagePaletteSlug:r(),disableAI:n(),adaptiveMode:l()}})),(0,i.A)((e=>{const{setImportItemInfo:t,setTogglePopup:o,setOnboardingAiPopup:a}=e("ast-block-templates"),{insertBlocks:s}=wp.data.dispatch("core/block-editor");return{setImportItemInfo:t,onSetTogglePopup:o,insertBlocks:s,setOnboardingAiPopup:a}})))((0,r.memo)((({onImportFail:e,setImportItemInfo:t,requiredPlugins:o,importItemInfo:a,title:s,btnClass:i,insertBlocks:P,onSetTogglePopup:A,item:E,onClick:S,onBlockImport:x,activeBlockPaletteSlug:R,activePagePaletteSlug:N,currentScreen:C,disableAI:T,importing:$=!1,adaptiveMode:B,showIcon:O=!0})=>{let[j]=(0,r.useState)(a),F=o||[];const W=i||"",[D]=(0,r.useState)(s||"Import"),{index:L}=wp.data.select("core/block-editor").getBlockInsertionPoint(),{importInProgress:q,syncLibNotice:M,stepData:{token:z}}=(0,l.A)((e=>{const{getImportInProgress:t,getNotice:o,getAIStepData:a}=e(k.U);return{importInProgress:t(),syncLibNotice:o(),stepData:a()}}),[]),{setImportInProgress:H,toggleConnectZipAI:U,setNotice:Q}=(0,c.A)(k.U),V="info"===M?.type,X=(0,n.Fx)(),Z=(e,t,o)=>{(0,y.oR)((0,h.A)({title:e,message:t}),h.A.getOptions({type:o}))},G=async()=>{try{Q({type:"import-info",message:(0,v.__)("Activating Spectra plugin…","ast-block-templates")}),await(0,u.s)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){H(!1),Z("Import failed!","Spectra activation failed!","error")}},J=async()=>{try{Q({type:"import-info",message:(0,v.__)("Activating WPForms plugin…","ast-block-templates")}),await(0,u.s)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await te()}catch(e){H(!1),Z("Import failed!","WPForms activation failed!","error")}},K=()=>{const t=j.original_content,o="all-blocks-grid"===C?"block":"page",a="block"===o?j["blocks-category"][0]:j["pages-category"][0];I({action:"ast_block_templates_import_block",content:t,category:a,_ajax_nonce:ast_block_template_vars._ajax_nonce,style:"all-blocks-grid"===C?R:N,disableAI:T,block_type:o,adaptiveMode:B}).done((e=>{H(!1);const t=(0,n.XD)(w(e));P(t,L,"",!1),Y(t[0].clientId),A(),document.getElementById("ast-block-templates-modal-wrap").classList.remove("open"),document.body.classList.remove("ast-block-templates-modal-open"),(X.inactive||X.notInstalled)&&(0,b.mP)(),"function"==typeof x&&x(e,L)})).fail((()=>{H(!1),e(),Z("Import failed!","Failed to import the block. Please try again later or contact support for assistance.","error-import")}))},Y=e=>{e&&setTimeout((()=>{const t=ee(),o="block-"+e,a=t.getElementById(o);a&&a.scrollIntoView({behavior:"smooth",block:"center",inline:"center"})}),2500)},ee=()=>{const e=document.getElementsByClassName("is-tablet-preview"),t=document.getElementsByClassName("is-mobile-preview");if(0!==e.length||0!==t.length){const o=e[0]||t[0];let a=!1;o&&(a=o.getElementsByTagName("iframe")[0]);const s=a?.contentWindow.document||a?.contentDocument;if(s)return s}return document},te=()=>{j?.["post-meta"]?.["astra-site-wpforms-path"]||""?I({action:"ast_block_templates_import_wpforms",id:j.id,_ajax_nonce:ast_block_template_vars._ajax_nonce}).done((()=>{K()})).fail((()=>{H(!1),Z("Import failed!","WPForms import failed!","error")})):K()};return React.createElement(p.A,{className:(0,n.xW)("min-w-[4.875rem] h-7 hover:shadow-small sp-text-sm",W,(q&&!$||V)&&"opacity-50 cursor-not-allowed"),type:"button",variant:"primary",onClick:z||_?async o=>{q||V||(H(!0),"function"==typeof S&&S(o),X.notInstalled?(await(async()=>{try{Q({type:"import-info",message:(0,v.__)("Installing Spectra plugin…","ast-block-templates")}),await(0,u.o)({slug:"ultimate-addons-for-gutenberg",init:"ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php",name:"Spectra"})}catch(e){H(!1),Z("Import failed!","Spectra installation failed!","error")}})(),await G()):X.inactive&&await G(),(0,g.V)(E.ID,"astra-blocks").then((e=>{t(e),j=e,F=e?.["post-meta"]?.["astra-blocks-required-plugins"]?d.j.parse(e["post-meta"]["astra-blocks-required-plugins"]):[],F.length?"not-installed"===ast_block_template_vars.wpforms_status?(async()=>{try{Q({type:"import-info",message:(0,v.__)("Installing WPForms plugin…","ast-block-templates")}),await(0,u.o)({slug:"wpforms-lite",init:"wpforms-lite/wpforms.php",name:"WPForms Lite"}),await J()}catch(e){H(!1),Z("Import failed!","WPForms installation failed!","error")}})():"inactive"===ast_block_template_vars.wpforms_status?J():te():te()})).catch((t=>{Z("Import failed!",t,"error-import"),H(!1),e()})))}:async()=>{U(),(0,n.HU)("ast-import",{blockId:E.ID,blockType:E.type,blockPaletteSlug:R,pagePaletteSlug:N})},isSmall:!0,hasPrefixIcon:!$&&O},$?React.createElement(m.A,{className:"h-4 w-4 !shrink-0"}):React.createElement(React.Fragment,null,O&&React.createElement(f.A,{className:"h-4 w-4 !shrink-0"}),React.createElement("span",{className:"truncate"},D)))})));var A=o(9260);const E=e=>{const t=["skip","logo","fav-icon"];for(const o of t)if(e.includes(o))return!0;return!1},S={linearTween:(e,t,o,a)=>o*e/a+t,easeInQuad:(e,t,o,a)=>o*(e/=a)*e+t,easeOutQuad:(e,t,o,a)=>-o*(e/=a)*(e-2)+t,easeInOutQuad:(e,t,o,a)=>(e/=a/2)<1?o/2*e*e+t:-o/2*(--e*(e-2)-1)+t,easeInCubic:(e,t,o,a)=>o*(e/=a)*e*e+t,easeOutCubic:(e,t,o,a)=>(e/=a,o*(--e*e*e+1)+t),easeInOutCubic:(e,t,o,a)=>(e/=a/2)<1?o/2*e*e*e+t:o/2*((e-=2)*e*e+2)+t};Object.seal(S);const x=S;var R=o(7497);const{spectra_common_styles:N,is_rtl:C}=ast_block_template_vars,T="visible",$=(0,a.A)((0,s.A)((e=>{const{getDisableAi:t,getDisablePreview:o,getTogglePopup:a}=e("ast-block-templates");return{disableAi:t(),disablePreview:o(),togglePopup:a()}})))((0,r.memo)((({item:e,content:t,stylesheet:o,astraCustomizer:a,globalStylesheet:s,colorPalette:l,dynamicContent:c,selectedImages:i,disableAi:p,togglePopup:m,email:u,phone:d,address:g})=>{const b=(0,r.useRef)(null),f=(0,r.useRef)(null),y=e["thumbnail-image-url"]||"",h=e["featured-image-url"]||"",k=(0,n.Fx)();let v=0,I=0;const[w,_]=(0,r.useState)({importing:!1}),[S,$]=(0,r.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`),[B,O]=(0,r.useState)(`${ast_block_template_vars.uri}dist/placeholder_200_200.png`);function j(){const e=b?.current,t=f?.current;if(!e||!t)return;const o=e.parentNode.offsetWidth/1200,a=o*t.offsetHeight;e.style.transform=`scale(${o})`,e.style.height=`${a}px`}(0,r.useLayoutEffect)((()=>{let e=!0;const r=i,n=new Image;n.src=y;const m=new Image;m.src=h;const b=f.current;function k(t,o){e&&(t.onload=()=>{o(t.src)})}k(n,$),k(m,O);const w=document.getElementById("astra-wp-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container"),_=document.getElementById("astra-block-editor-styles-inline-css")?.textContent.replace(/:root/g,".block-container").replace(/body/g,".block-container");let P="";if(o&&(o=((e,t=[])=>p?e:0!==Object.keys(c).length&&c?t&&0===t.length?e:e.replace(/background-image\s*:\s*url\(['"]?([^'")]+)['"]?\)/g,(function(e,o){if(E(o))return e;if(!t[I]?.url)return"";const a=t[I]?.url;return I++,I%=t.length,'background-image: url("'+a+'")'})):e)(o,r)),P+=a?`<style type="text/css" id="gt-astra-customizer">${a}</style>`:"",P+=`<style type="text/css" id="gt-spectra-common-stylesheet">${N}</style>`,P=o?`${P} <style type="text/css" id="gt-common-stylesheet">${o}</style>`:P,s&&(P+=`<style type="text/css" id="gt-global-stylesheet"> ${s} </style>`),w&&(P+=`<style type="text/css" id="gt-wpeditor-css" > ${w} </style>`),_&&(P+=`<style type="text/css" id="gt-blockeditor-css"> ${_} </style>`),b&&t){let e=b.shadowRoot;if(null===e&&(e=b.attachShadow({mode:"open"})),null===e)return;let o=t;if(!p){const e=c??[];e&&Object.keys(e)?.length>0&&Object.keys(e).forEach((t=>{o=null!==e[t]?o.replace(t,e[t]):o})),c&&Object.keys(c).length>0&&(A=o,u&&(A=A.replace("contact@example.com",u)),d&&(A=A.replace("202-555-0188",d)),g&&(A=A.replace("2360 Hood Avenue, San Diego, CA, 92123",g)),o=A,o=W(o))}e.innerHTML=P+'<div class="st-block-container">'+o+"</div>",l.forEach(((t,o)=>{e?.host.style.setProperty(`--ast-global-color-${o}`,t)}));const a=b.shadowRoot.querySelectorAll("img");e&&(a.forEach((e=>{E(e.src)||p||0===r?.length||0===Object.keys(c).length||!c||F(e,"hidden")})),j(),((e,t)=>{p||0!==Object.keys(c).length&&c&&t?.length&&e?.forEach((function(e){E(e.src)||(e.onload=()=>{const o=e.getAttribute("src")||"";if(o.includes("unsplash")||o.includes("pexels")||o.includes("pixabay"))return void F(e,T);const a=t[v];if(void 0!==a)if(a.url.includes("unsplash")||a.url.includes("pexels")||a.url.includes("pixabay")){if(v++,void 0===t[v]&&(v=0),"PICTURE"===e.parentNode.nodeName)e.parentNode.querySelectorAll("source").forEach((e=>{e.setAttribute("srcset",a.optimized_url)})),e.parentNode.querySelector("img").setAttribute("src",a.optimized_url);else{const t=document.createElement("img");t.src=a.optimized_url,e.parentNode.replaceChild(t,e)}F(e,T)}else F(e,T);else F(e,T)},e.onerror=()=>{F(e,T)})}))})(a,r))}var A;return()=>{e=!1}}),[e,p,c,i]),(0,r.useEffect)((()=>{const e=new ResizeObserver(j);return e.observe(document.documentElement),()=>{e&&e.disconnect()}}),[]),(0,r.useEffect)((()=>{const e=document.querySelector("#ast-block-templates-modal-wrap");if(!e)return;const t=new MutationObserver(j);return t.observe(e,{childList:!0,attributes:!0,subtree:!0}),()=>{t&&t.disconnect()}}),[]),(0,r.useEffect)((()=>{const e=f?.current;if(e){const t=e.shadowRoot;l.forEach(((e,o)=>{null!==t&&t.host.style.setProperty(`--ast-global-color-${o}`,e)}))}}),[l]);const F=(e,t)=>{e&&(e.style.visibility=t)},W=(e="")=>g?e.replace(/(src="https:\/\/maps\.google\.com\/maps\?q=)([^&]+)(&z=\d+&hl=en&t=m&output=embed&iwloc=near")/g,`$1${encodeURIComponent(g)}$3`):e;let D=0,L=0;const q=(e,t,o)=>{const a=e.scrollTop,s=t-a;let r=0;const n=function(){r+=20;const t=x.linearTween(r,a,s,o);e.scrollTop=t,r<o&&(D=setTimeout(n,20))};n()};(0,r.useEffect)((()=>{m||(v=0,I=0)}),[m]);const M=C?"origin-top-right":"origin-top-left";return React.createElement(R.A,{className:(0,n.xW)("w-full h-fit",!0===w.importing?"importing":"")},React.createElement("div",{className:(0,n.xW)("cursor-pointer relative border border-solid border-border-primary hover:border-accent-spectra transition duration-150 ease-in-out overflow-hidden group",w.importing&&"border-accent-spectra")},React.createElement("div",{className:`thumbnail left-0 m-0 min-h-[auto] overflow-visible text-left top-0 ${M} relative pointer-events-none`,ref:b},React.createElement("div",{className:"absolute w-[1200px] pointer-events-none max-h-[1600px] overflow-hidden",ref:f},!t&&React.createElement("img",{srcSet:`${B}, ${S}`,src:S,alt:"Preview"}),React.createElement("div",{className:"preview"},React.createElement("span",{className:"ast-block-templates-icon ast-block-templates-icon-search"})))),React.createElement("div",{className:"absolute inset-0 grid grid-cols-1 grid-rows-1 place-items-end",onMouseEnter:()=>{if("page"!==e.type)return;const t=f.current;D&&clearTimeout(D),L=setTimeout((()=>{q(t,t.scrollHeight,4e3)}),1e3)},onMouseLeave:()=>{L&&clearTimeout(L);const e=f.current;D&&clearTimeout(D),q(e,0,1500)}},React.createElement("div",{className:(0,n.xW)("opacity-0 group-hover:opacity-100 w-full flex items-center justify-between px-3 py-2 backdrop-blur-sm bg-white/[0.85] shadow-action-buttons transition-all duration-150 ease-in-out",!0===w.importing?"opacity-100":"")},React.createElement(P,{title:k.notInstalled?"Install Spectra & Insert":k.inactive?"Activate Spectra & Insert":"Insert",showIcon:k.active,liveRequest:!0,item:e,importing:w.importing,onClick:()=>{_({...w,importing:!0})},onBlockImport:()=>{_({...w,importing:!1})},onImportFail:()=>{_({...w,importing:!1})}}),React.createElement(A.A,{item:e})))))})))}}]);PK�][��.%%Aultimate-addons-for-gutenberg/lib/gutenberg-templates/dist/st.svgnu�[���<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.2429 7.34463H18.3616C12.2771 7.34463 7.34463 12.2771 7.34463 18.3616V71.2429C7.34463 77.3274 12.2771 82.2598 18.3616 82.2598H71.2429C77.3274 82.2598 82.2598 77.3274 82.2598 71.2429V18.3616C82.2598 12.2771 77.3274 7.34463 71.2429 7.34463ZM18.3616 0C8.22076 0 0 8.22075 0 18.3616V71.2429C0 81.3837 8.22075 89.6045 18.3616 89.6045H71.2429C81.3837 89.6045 89.6045 81.3837 89.6045 71.2429V18.3616C89.6045 8.22076 81.3837 0 71.2429 0H18.3616Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.1449 28.1896C53.9728 28.0356 53.7911 27.8882 53.5998 27.7474C51.9414 26.5264 49.6907 25.9159 46.8478 25.9159C44.916 25.9159 43.285 26.1892 41.9546 26.7359C40.6243 27.2644 39.6037 28.0025 38.893 28.9502C38.1294 29.995 36.829 30.8418 35.7046 30.2012C34.8223 29.6985 34.0076 29.0784 33.2839 28.3548C31.9339 27.0047 30.944 25.3377 30.405 23.5061C30.1674 22.6988 30.3776 21.8165 31.0133 21.265C32.434 20.0323 34.0947 18.9948 35.9954 18.1524C39.2028 16.7309 42.8476 16.0202 46.9298 16.0202C51.0849 16.0202 54.7115 16.7309 57.8095 18.1524C60.9259 19.5739 63.3496 21.5512 65.0809 24.0843C65.7142 25.011 66.2354 25.9913 66.6443 27.0252C67.8571 30.0913 65.0579 32.8866 61.7607 32.8866C59.1869 32.8866 57.1265 30.9615 55.18 29.1429L55.1799 29.1428C54.8321 28.8178 54.4878 28.4962 54.1449 28.1896ZM37.1987 34.2544C37.6871 34.0635 38.21 34.3524 38.4829 34.8001C38.9568 35.5473 39.6037 36.1942 40.4238 36.7409C41.2439 37.2694 42.1915 37.7342 43.2667 38.1351C44.342 38.5178 45.4901 38.8458 46.7111 39.1192L51.7409 40.322C54.183 40.8687 56.4245 41.5977 58.4656 42.5089C60.5067 43.4201 62.2744 44.5408 63.7688 45.8712C65.2632 47.2015 66.4204 48.7688 67.2405 50.573C68.0788 52.3772 68.5071 54.4456 68.5253 56.7783C68.5071 60.2044 67.6323 63.1749 65.901 65.6898C64.188 68.1865 61.7095 70.1274 58.4656 71.5124C55.2399 72.8792 51.3491 73.5626 46.7931 73.5626C42.2735 73.5626 38.3371 72.8701 34.9839 71.4851C31.6489 70.1001 29.0429 68.0499 27.1658 65.3345C26.2995 64.0605 25.6252 62.646 25.1428 61.091C24.1699 57.9547 26.943 55.1928 30.2268 55.1928H30.6526C33.4909 55.1928 35.5992 57.6279 37.3075 59.8946C38.2734 61.1338 39.5582 62.0724 41.1619 62.7102C42.7838 63.3298 44.6153 63.6396 46.6564 63.6396C48.6611 63.6396 50.4015 63.3481 51.8776 62.7649C53.372 62.1817 54.5292 61.3707 55.3493 60.332C56.1694 59.2932 56.5794 58.0995 56.5794 56.7509C56.5794 55.4935 56.2058 54.4365 55.4586 53.58C54.7297 52.7234 53.6545 51.9945 52.233 51.3931C50.8297 50.7917 49.1076 50.245 47.0665 49.7529L40.9705 48.2221C36.9718 47.2494 33.6859 45.8124 31.1129 43.9111C30.4174 43.3972 30.1608 42.4925 30.405 41.6629C30.9439 39.8315 31.9336 38.1645 33.2834 36.8145C34.4003 35.6975 35.7342 34.827 37.1987 34.2544ZM29.9545 26.532L29.4188 24.7118C29.3957 24.6328 29.3476 24.5633 29.2818 24.5139C29.2159 24.4645 29.1358 24.4378 29.0535 24.4378C28.9712 24.4378 28.8911 24.4645 28.8252 24.5139C28.7593 24.5633 28.7113 24.6328 28.6882 24.7118L28.1532 26.532C27.7938 27.7529 27.1338 28.8641 26.2338 29.764C25.3338 30.6639 24.2224 31.3236 23.0014 31.6829L21.1811 32.2186C20.8166 32.3267 20.8166 32.8426 21.1811 32.9491L23.0014 33.4849C24.2222 33.8442 25.3335 34.5041 26.2334 35.4039C27.1333 36.3038 27.7931 37.415 28.1525 38.6358L28.6882 40.4568C28.7955 40.8205 29.3115 40.8205 29.4188 40.4568L29.9545 38.6365C30.3138 37.4156 30.9736 36.3043 31.8735 35.4042C32.7734 34.5042 33.8847 33.8443 35.1056 33.4849L36.9266 32.9491C37.2904 32.8419 37.2904 32.3259 36.9266 32.2194L35.1064 31.6837C33.8853 31.3243 32.7738 30.6645 31.8738 29.7644C30.9738 28.8644 30.3138 27.753 29.9545 26.532ZM23.461 37.2817L23.6218 37.8277C23.7296 38.194 23.9275 38.5275 24.1975 38.7975C24.4676 39.0675 24.801 39.2654 25.1673 39.3732L25.7134 39.5339C25.8225 39.5659 25.8225 39.7207 25.7134 39.7529L25.1671 39.9136C24.8008 40.0214 24.4674 40.2194 24.1975 40.4894C23.9275 40.7594 23.7295 41.0928 23.6218 41.4591L23.461 42.0051C23.4288 42.1143 23.2741 42.1143 23.2419 42.0051L23.0812 41.4589C22.9733 41.0926 22.7754 40.7593 22.5054 40.4893C22.2354 40.2193 21.9021 40.0214 21.5358 39.9136L20.9897 39.7529C20.8804 39.7209 20.8804 39.5661 20.9897 39.5337L21.5358 39.373C21.9021 39.2652 22.2355 39.0673 22.5055 38.7973C22.7756 38.5274 22.9735 38.194 23.0814 37.8277L23.2419 37.2817C23.2488 37.2579 23.2632 37.2371 23.283 37.2223C23.3027 37.2075 23.3268 37.1995 23.3515 37.1995C23.3762 37.1995 23.4002 37.2075 23.4199 37.2223C23.4397 37.2371 23.4541 37.2579 23.461 37.2817ZM22.4142 22.428L22.1642 21.5786C22.1535 21.5417 22.131 21.5093 22.1003 21.4863C22.0696 21.4632 22.0322 21.4508 21.9938 21.4508C21.9554 21.4508 21.918 21.4632 21.8872 21.4863C21.8565 21.5093 21.8341 21.5417 21.8233 21.5786L21.5737 22.428C21.4059 22.9978 21.0979 23.5164 20.6779 23.9363C20.2579 24.3562 19.7392 24.6641 19.1695 24.8318L18.32 25.0818C18.1499 25.1322 18.1499 25.373 18.32 25.4227L19.1695 25.6727C19.7392 25.8404 20.2578 26.1483 20.6777 26.5683C21.0977 26.9882 21.4056 27.5068 21.5733 28.0765L21.8233 28.9263C21.8734 29.096 22.1142 29.096 22.1642 28.9263L22.4142 28.0768C22.5819 27.507 22.8898 26.9884 23.3098 26.5684C23.7297 26.1484 24.2483 25.8404 24.8181 25.6727L25.6679 25.4227C25.8377 25.3726 25.8377 25.1319 25.6679 25.0821L24.8184 24.8321C24.2486 24.6645 23.7299 24.3565 23.3099 23.9365C22.8899 23.5165 22.5819 22.9978 22.4142 22.428Z" fill="white"/>
</svg>PK�][��kccSultimate-addons-for-gutenberg/lib/gutenberg-templates/class-ast-block-templates.phpnu�[���<?php
/**
 * Init
 *
 * @since 2.0.0
 * @package Ast Block Templates
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Ast_Block_Templates' ) ) :

	/**
	 * Admin
	 */
	class Ast_Block_Templates {

		/**
		 * Instance
		 *
		 * @since 2.0.0
		 * @var (Object) Ast_Block_Templates
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.0.0
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.0.0
		 */
		private function __construct() {
			require_once AST_BLOCK_TEMPLATES_DIR . 'ast-block-plugin-loader.php';
		}

	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Ast_Block_Templates::get_instance();

endif;
PK�][dT�bbMultimate-addons-for-gutenberg/lib/gutenberg-templates/webpack-block.config.jsnu�[���const defaults = require( '@wordpress/scripts/config/webpack.config' );

module.exports = defaultsPK�][��_�Hultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/spectra.svgnu�[���<svg width="71" height="71" viewBox="0 0 71 71" fill="#000000" xmlns="http://www.w3.org/2000/svg">
<path d="M35.292 0C28.3119 0 21.4885 2.08204 15.6848 5.98283C9.88107 9.88362 5.35762 15.428 2.68645 21.9147C0.0152817 28.4015 -0.683625 35.5394 0.678124 42.4257C2.03987 49.312 5.40111 55.6375 10.3368 60.6023C15.2725 65.5671 21.5609 68.9481 28.4068 70.3179C35.2528 71.6876 42.3489 70.9846 48.7976 68.2977C55.2464 65.6108 60.7583 61.0607 64.6362 55.2227C68.5141 49.3848 70.584 42.5212 70.584 35.5C70.58 26.0861 66.8604 17.0588 60.2428 10.4021C53.6251 3.74548 44.6508 0.00401876 35.292 0V0ZM48.5887 40.944C48.5887 41.035 48.5887 41.126 48.5887 41.217V41.4748V41.6416C48.4098 42.6715 48.0307 43.6558 47.4731 44.538L47.1414 45.0081L46.659 45.5692C46.4943 45.781 46.3073 45.9742 46.1012 46.1454V46.2213L45.9957 46.2971L45.7846 46.4639C45.7145 46.5265 45.6388 46.5823 45.5585 46.6307L45.3323 46.7824L28.9753 57.6856C28.8417 57.7759 28.684 57.8235 28.523 57.8221H28.3572C28.2497 57.7996 28.1477 57.7558 28.0571 57.6933C27.9665 57.6309 27.8892 57.5509 27.8296 57.4582C27.8296 57.4582 27.4527 56.7909 27.4225 56.7454V56.5938V56.5179V56.4269V56.3208V56.1995C26.7754 54.513 26.7216 52.6545 27.2701 50.933C27.8187 49.2115 28.9365 47.7307 30.4376 46.7369L38.0659 41.6568C38.1849 41.5771 38.2779 41.4638 38.3329 41.3311C38.388 41.1984 38.4027 41.0522 38.3753 40.9111C38.3479 40.77 38.2796 40.6402 38.1789 40.5381C38.0782 40.436 37.9497 40.3662 37.8096 40.3375L28.8547 38.5177H28.5984H28.523H28.2818H28.0255H27.92H27.7843H27.709L27.4678 38.4267H27.3924H27.2416L27.0004 38.3054L26.7592 38.1841L26.533 38.0476L26.3069 37.9111C25.5952 37.4647 24.959 36.9067 24.4225 36.2582L24.2265 35.9853L24.0004 35.6365C23.421 34.7714 23.0198 33.7984 22.8205 32.7748C22.6211 31.7512 22.6276 30.6979 22.8395 29.6769C22.9971 28.975 23.2455 28.2969 23.5782 27.66C23.6687 27.4932 23.7441 27.3415 23.8345 27.205L23.9702 26.9927C24.067 26.8303 24.1727 26.6733 24.2868 26.5226L24.4225 26.3558L24.5883 26.1587L24.7541 25.9767L24.8597 25.8706L25.0406 25.6886L25.1913 25.5521L25.3572 25.4156L25.5381 25.264H25.6134L25.734 25.1578H25.8094L26.0054 25.0214L42.272 14.1788C42.3763 14.1091 42.4935 14.0612 42.6166 14.038C42.7396 14.0147 42.8661 14.0166 42.9884 14.0435C43.1108 14.0704 43.2265 14.1217 43.3287 14.1944C43.431 14.2672 43.5176 14.3598 43.5836 14.4669L43.7192 14.6944L43.8248 14.9067C43.8248 14.9825 43.9002 15.0432 43.9303 15.1038C43.9303 15.1038 43.9303 15.1038 43.9303 15.1948C43.94 15.2295 43.94 15.2662 43.9303 15.3009V15.3009L44.0208 15.5284C44.0289 15.5684 44.0289 15.6097 44.0208 15.6497C44.0208 15.6497 44.0208 15.6497 44.0208 15.7407C44.6198 17.3996 44.6483 19.2127 44.1017 20.8897C43.555 22.5668 42.4648 24.011 41.0056 24.991L33.4678 30.0256C33.3488 30.1053 33.2559 30.2186 33.2008 30.3513C33.1457 30.484 33.131 30.6302 33.1584 30.7713C33.1858 30.9124 33.2542 31.0422 33.3549 31.1443C33.4555 31.2464 33.584 31.3162 33.7241 31.3449L42.6036 33.1495C44.3808 33.5188 45.9773 34.4922 47.1249 35.9061C48.2726 37.3201 48.9012 39.0884 48.9053 40.9137C48.6188 40.4285 48.5887 40.9137 48.5887 40.9137V40.944Z" fill="white"/>
</svg>
PK�][j�XA��Multimate-addons-for-gutenberg/lib/gutenberg-templates/assets/aspect-ratio.svgnu�[���<!-- Generated by IcoMoon.io -->
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
<title>aspect_ratio</title>
<path d="M21 19.031v-14.063h-18v14.063h18zM21 3q0.797 0 1.406 0.609t0.609 1.406v13.969q0 0.797-0.609 1.406t-1.406 0.609h-18q-0.797 0-1.406-0.609t-0.609-1.406v-13.969q0-0.797 0.609-1.406t1.406-0.609h18zM6.984 9v3h-1.969v-5.016h4.969v2.016h-3zM18.984 12v5.016h-4.969v-2.016h3v-3h1.969z"></path>
</svg>
PK�][$�R4	4	Zultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/fonts/ast-block-templates.eotnu�[���4	��LP�h�icomoonRegularVersion 1.0icomoon�0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][!�M��Zultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/fonts/ast-block-templates.ttfnu�[����0OS/2��`cmapVҋTgasppglyf<���x�head 	Z46hhea��l$hmtx��$loca���maxpt� name�J	���postp ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][t+���[ultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/fonts/ast-block-templates.woffnu�[���wOFF��OS/2``�cmaphTTVҋgasp�glyf���<���head�66 	Zhhea�$$��hmtx�$$�loca��maxp  tname4���J	�post�  ��������3	@����@�@ 8
 ����� ���������797979U�U8Tq#"326=467>;2654&#54&'.+";23263267>=4&#"+";2654&+"&'.=4&#"U�/�V/����/���/��U.��	��/	���/��	�/	�YQo'.'.7>7>#"3!021267>7463>7>5<14&#"'.'&'&676767>7676&'&B\;;�CBd	\;;�C&@y�} P0)+*S((%%!!8
=%$****S((%%!!9 9Cc	\;<�BCc	
)q�u 4
>$%)**+S('%%"!8
>$%) ����� #>!"3!267>54&'.'.##5'3!#!"&'.5467>3+��///��ÙU	�		�/�U//�*�ՙ=��U�	/���|.B
%%27%>'.'%&"67%>'.%&527%>'.%&K����8�U
�		�
�U		�U�		�"�h�h"�		�"�h�h"&�����!	��!	��3��"��"���"��"b���%'764'&"2764'���

$�

$

���#
�
#�

#
�h�_<�݀b�݀b�������	UY�/b
�^�8^	r�`6uK
�		g	=	|	 	R	
4�icomoonicomoonVersion 1.0Version 1.0icomoonicomoonicomoonicomoonRegularRegularicomoonicomoonFont generated by IcoMoon.Font generated by IcoMoon.PK�][�[��RRZultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/fonts/ast-block-templates.svgnu�[���<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata>Generated by IcoMoon</metadata>
<defs>
<font id="ast-block-templates" horiz-adv-x="1024">
<font-face units-per-em="1024" ascent="960" descent="-64" />
<missing-glyph horiz-adv-x="1024" />
<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
<glyph unicode="&#xe900;" glyph-name="maximize" d="M341.333 853.334h-128c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667v128c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667zM938.667 597.334v128c0 35.328-14.379 67.413-37.504 90.496s-55.168 37.504-90.496 37.504h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h128c11.776 0 22.4-4.736 30.165-12.501s12.501-18.389 12.501-30.165v-128c0-23.552 19.115-42.667 42.667-42.667s42.667 19.115 42.667 42.667zM682.667-0h128c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-128c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-128c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667zM85.333 256v-128c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h128c23.552 0 42.667 19.115 42.667 42.667s-19.115 42.667-42.667 42.667h-128c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v128c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667z" />
<glyph unicode="&#xe901;" glyph-name="rotate-cw" d="M834.005 312.875c-31.403-88.875-95.787-156.587-174.677-194.261s-171.989-45.269-260.864-13.867-156.587 95.787-194.261 174.677-45.269 171.989-13.867 260.864 95.787 156.587 174.677 194.261 171.989 45.269 260.864 13.867c50.688-17.92 94.251-46.421 127.445-80.299l120.491-113.451h-148.48c-23.552 0-42.667-19.115-42.667-42.667s19.115-42.667 42.667-42.667h255.872c0.171 0 0.384 0 0.555 0 5.845 0.043 11.392 1.28 16.469 3.499 5.077 2.176 9.771 5.376 13.824 9.6 0.512 0.512 0.981 1.067 1.451 1.621 3.243 3.712 5.717 7.851 7.467 12.245 1.749 4.352 2.773 9.088 2.944 13.995 0.085 0.555 0.085 1.109 0.085 1.707v256c0 23.552-19.115 42.667-42.667 42.667s-42.667-19.115-42.667-42.667v-157.227l-124.416 117.12c-42.368 43.179-97.024 78.763-159.915 100.949-111.104 39.296-227.669 29.781-326.144-17.28s-179.072-131.755-218.325-242.859-29.696-227.627 17.323-326.101 131.755-179.072 242.859-218.325 227.627-29.739 326.101 17.323 179.072 131.755 218.325 242.859c7.851 22.229-3.797 46.592-26.027 54.443s-46.592-3.797-54.443-26.027z" />
<glyph unicode="&#xe902;" glyph-name="file" d="M554.667 896h-298.667c-35.328 0-67.413-14.379-90.496-37.504s-37.504-55.168-37.504-90.496v-682.667c0-35.328 14.379-67.413 37.504-90.496s55.168-37.504 90.496-37.504h512c35.328 0 67.413 14.379 90.496 37.504s37.504 55.168 37.504 90.496v469.333c0 11.776-4.779 22.443-12.501 30.165l-298.667 298.667c-4.096 4.096-8.789 7.168-13.824 9.259-5.205 2.176-10.795 3.243-16.341 3.243zM750.336 597.334h-153.003v153.003zM512 810.667v-256c0-23.552 19.115-42.667 42.667-42.667h256v-426.667c0-11.776-4.736-22.4-12.501-30.165s-18.389-12.501-30.165-12.501h-512c-11.776 0-22.4 4.736-30.165 12.501s-12.501 18.389-12.501 30.165v682.667c0 11.776 4.736 22.4 12.501 30.165s18.389 12.501 30.165 12.501z" />
<glyph unicode="&#xe903;" glyph-name="layers" d="M512 805.632l331.264-165.632-331.264-165.632-331.264 165.632zM492.928 891.478l-426.667-213.333c-21.077-10.539-29.611-36.139-19.072-57.216 4.309-8.661 11.136-15.189 19.072-19.072l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259-4.309 8.619-11.179 15.147-19.072 19.072l-426.667 213.333c-12.459 6.229-26.453 5.803-38.144 0zM66.261 175.19l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259zM66.261 388.523l426.667-213.333c12.459-6.229 26.453-5.803 38.144 0l426.667 213.333c21.077 10.539 29.611 36.181 19.072 57.259s-36.181 29.611-57.259 19.072l-407.552-203.819-407.595 203.776c-21.077 10.539-46.72 2.005-57.259-19.072s-2.005-46.72 19.072-57.259z" />
<glyph unicode="&#xe904;" glyph-name="chevron-left" d="M670.165 200.832l-225.835 225.835 225.835 225.835c16.683 16.683 16.683 43.691 0 60.331s-43.691 16.683-60.331 0l-256-256c-16.683-16.683-16.683-43.691 0-60.331l256-256c16.683-16.683 43.691-16.683 60.331 0s16.683 43.691 0 60.331z" />
</font></defs></svg>PK�][�Q4y
y
Vultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/starter-template-logo.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 25.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
	.st0{opacity:0.5;}
	.st1{fill:#FFFFFF;}
	.st2{opacity:0.8;}
</style>
<g>
	<g class="st0">
		<path class="st1" d="M68.02,6.1l-6.81,2.16l6.14,6.64l10.29,2.99l-2.82-8.47C73.99,6.76,71.01,5.1,68.02,6.1z"/>
		<path class="st1" d="M5.94,32.16l2.32,6.81l6.64-6.14l2.99-10.46l-8.47,2.82C6.6,26.18,4.94,29.34,5.94,32.16z"/>
		<path class="st1" d="M22.37,82.45l2.82,8.47c0.83,2.99,3.98,4.48,6.97,3.65l7.14-2.32l-5.98-6.47L22.37,82.45z"/>
		<path class="st1" d="M94.08,68.18l-2.32-7.14l-6.31,5.98l-3.32,10.95l8.47-2.82C93.41,74.32,95.24,71.16,94.08,68.18z"/>
	</g>
	<g class="st2">
		<path class="st1" d="M55.73,2.45c-2.16-2.32-5.48-2.49-7.8-0.33l-5.98,5.48l11.29,3.32l13.94,4.15l-6.14-6.64L55.73,2.45z"/>
		<path class="st1" d="M2.62,44.27c-2.32,2.16-2.49,5.48-0.33,7.8l5.15,5.64l3.15-10.95l4.15-13.94L8.1,38.96L2.62,44.27z"/>
		<path class="st1" d="M97.73,47.93l-5.15-5.48l-3.32,11.12l-3.98,13.28l6.31-5.98l5.64-5.31C99.72,53.73,99.89,50.25,97.73,47.93z"
			/>
		<path class="st1" d="M33.16,85.6l5.98,6.47l5.15,5.48c2.16,2.32,5.64,2.49,7.8,0.33l5.64-5.15l-10.79-3.15L33.16,85.6z"/>
	</g>
	<path class="st1" d="M92.42,22.36l-14.77-4.32l-10.29-2.99l-13.94-4.15L42.12,7.59L29.51,3.94c-3.15-0.83-6.47,0.83-7.3,3.98
		L17.89,22.7L14.9,33.15L10.75,47.1L7.6,58.05L3.78,71.16c-0.83,3.15,0.83,6.47,3.98,7.3l14.77,4.32l10.79,3.15l13.61,3.98
		l10.79,3.15l12.95,3.82c3.15,0.83,6.47-0.83,7.3-3.98l4.32-14.61l3.32-10.95l3.98-13.28l3.32-11.12l3.82-12.78
		C97.23,26.51,95.57,23.19,92.42,22.36z M67.69,26.68V38.3H52.25l0,0H31.5c0.17-0.83,0.5-1.83,0.83-2.66
		c0.66-1.66,1.66-3.32,3.15-4.65c1.33-1.16,2.99-2.49,4.65-3.15c1.66-0.83,3.65-1.16,5.64-1.16H67.69z M33.33,74.15V62.53h21.41
		c0.33,0,0.83,0,1.16-0.17c0.33-0.17,0.66-0.33,1-0.66c0.33-0.33,0.5-0.66,0.66-1c0.17-0.33,0.17-0.66,0.17-1.16
		c0-0.33,0-0.83-0.17-1.16c-0.17-0.33-0.33-0.66-0.66-1c-0.33-0.33-0.66-0.5-1-0.66c-0.33-0.17-0.66-0.17-1.16-0.17h-8.96
		c-1.83,0-3.98-0.33-5.64-1.16c-1.66-0.66-3.32-1.66-4.65-3.15c-1.16-1.16-2.49-2.99-3.15-4.65c-0.5-1-0.66-1.83-0.83-2.82h14.44
		h6.47h2.49c1.83,0,3.98,0.5,5.64,1.16c1.66,0.66,3.32,1.66,4.65,3.15c1.16,1.16,2.49,2.99,3.15,4.65c0.83,1.66,1.16,3.65,1.16,5.81
		c0,1.83-0.5,3.98-1.16,5.64c-0.66,1.66-1.66,3.32-3.15,4.65c-1.16,1.16-2.99,2.49-4.65,3.15c-1.83,0.83-3.82,1.16-5.81,1.16
		L33.33,74.15L33.33,74.15z"/>
</g>
</svg>
PK�][cN�c

Multimate-addons-for-gutenberg/lib/gutenberg-templates/assets/spectra-logo.svgnu�[���<svg width="60" height="60" viewBox="0 0 84 85" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M41.7849 0C33.5206 0 25.4419 2.49258 18.5705 7.16254C11.699 11.8325 6.34331 18.4701 3.18071 26.236C0.0181112 34.0018 -0.809377 42.5471 0.802901 50.7913C2.41518 59.0355 6.3948 66.6083 12.2385 72.552C18.0822 78.4958 25.5276 82.5435 33.633 84.1834C41.7385 85.8232 50.1401 84.9816 57.7753 81.7649C65.4105 78.5482 71.9363 73.1008 76.5277 66.1117C81.1191 59.1226 83.5697 50.9057 83.5697 42.5C83.565 31.2298 79.1612 20.4225 71.326 12.4533C63.4908 4.48402 52.8655 0.0048112 41.7849 0ZM57.5278 49.0175C57.5278 49.1264 57.5278 49.2354 57.5278 49.3443V49.6529V49.8526C57.3161 51.0856 56.8673 52.2639 56.207 53.3201L55.8143 53.8829L55.2431 54.5546C55.0482 54.8082 54.8268 55.0396 54.5827 55.2445V55.3353L54.4578 55.4261L54.2079 55.6258C54.1249 55.7007 54.0353 55.7675 53.9402 55.8255L53.6724 56.0071L34.3061 69.0602C34.1479 69.1683 33.9612 69.2253 33.7706 69.2236H33.5743C33.447 69.1967 33.3262 69.1443 33.2189 69.0695C33.1117 68.9947 33.0201 68.899 32.9495 68.7879C32.9495 68.7879 32.5033 67.9891 32.4676 67.9347V67.7531V67.6623V67.5534V67.4263V67.2811C31.7014 65.262 31.6378 63.0371 32.2872 60.9761C32.9366 58.9152 34.2601 57.1424 36.0375 55.9526L45.0691 49.8708C45.2101 49.7754 45.3201 49.6398 45.3853 49.4809C45.4505 49.322 45.4679 49.147 45.4355 48.9781C45.403 48.8091 45.3221 48.6537 45.2029 48.5315C45.0837 48.4093 44.9316 48.3257 44.7657 48.2913L34.1633 46.1128H33.8599H33.7706H33.485H33.1816H33.0567H32.896H32.8068L32.5212 46.0038H32.4319H32.2534L31.9679 45.8586L31.6823 45.7134L31.4145 45.55L31.1468 45.3866C30.3041 44.8521 29.5509 44.1841 28.9156 43.4077L28.6836 43.0809L28.4159 42.6634C27.73 41.6278 27.255 40.4629 27.0189 39.2375C26.7828 38.012 26.7905 36.751 27.0415 35.5286C27.228 34.6884 27.5221 33.8766 27.9161 33.1141C28.0232 32.9144 28.1124 32.7328 28.2195 32.5694L28.3802 32.3153C28.4948 32.1207 28.6199 31.9329 28.755 31.7525L28.9156 31.5528L29.112 31.3167L29.3083 31.0989L29.4333 30.9718L29.6475 30.754L29.8259 30.5906L30.0223 30.4272L30.2365 30.2456H30.3257L30.4685 30.1185H30.5578L30.7898 29.9551L50.049 16.9746C50.1725 16.8912 50.3113 16.8338 50.457 16.806C50.6027 16.7782 50.7524 16.7804 50.8973 16.8126C51.0421 16.8448 51.1791 16.9062 51.3002 16.9933C51.4212 17.0804 51.5238 17.1913 51.6019 17.3195L51.7626 17.5918L51.8875 17.846C51.8875 17.9368 51.9768 18.0094 52.0125 18.082C52.0125 18.082 52.0125 18.082 52.0125 18.191C52.0239 18.2325 52.0239 18.2765 52.0125 18.318L52.1195 18.5904C52.1292 18.6383 52.1292 18.6877 52.1195 18.7356C52.1195 18.7356 52.1195 18.7356 52.1195 18.8445C52.8288 20.8305 52.8625 23.0011 52.2153 25.0089C51.5681 27.0166 50.2774 28.7455 48.5497 29.9188L39.6251 35.9462C39.4842 36.0415 39.3742 36.1772 39.309 36.3361C39.2438 36.495 39.2263 36.6699 39.2588 36.8389C39.2912 37.0078 39.3722 37.1632 39.4914 37.2854C39.6106 37.4077 39.7627 37.4912 39.9286 37.5256L50.4417 39.686C52.5458 40.1281 54.4361 41.2935 55.7948 42.9862C57.1536 44.679 57.8979 46.796 57.9027 48.9812C57.5635 48.4003 57.5278 48.9812 57.5278 48.9812V49.0175Z" fill="url(#paint0_linear_619_170)"/>
<defs>
<linearGradient id="paint0_linear_619_170" x1="1.17098e-05" y1="1.49716e-06" x2="84.02" y2="71.3596" gradientUnits="userSpaceOnUse">
<stop stop-color="#4E01D1"/>
<stop offset="1" stop-color="#6104FF"/>
</linearGradient>
</defs>
</svg>
PK�][����Tultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/placeholder_200_200.pngnu�[����PNG


IHDR��=��f cHRMz&�����u0�`:�p��Q<bKGD���̿tIME�	,+�(@
�IDATx���[�\u����?��;��J�mw[$ /���}�Ř�`P�i�0Q4��T��H�D|C#�h�PyҀ`�B��Qh��v�s��|83sΙ�]�����4;{f������Ic�_���������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z�������Z���Ņ�{r�8G
Ai�zc�O�w���%��I��)�'��0��_6֏����o�)+�����dH��+Q�f�&�8�r�8��ք��d��%�Y�����z	+Ȩ8TA@Ud�n�<��I��h��<m|�X����-#��r�
��W�@D�6]'븂S2��b�En4�F�EĹM�j�D^ʜ����<�׮�˥�o������M�$y\W���,O4�7���	����\.�^��f�٦`}�i�/f'�8)�fq��^�\�z=�����O���O�/��P��jn�(q=�WA.��y�}Q��M�ui)l�]�U
��
��Uze����5�!W¬�Y�j@V��\�H7�BT;e��R�/'<�M�u�ov��F��}���qU�hnW�1լ�*�O��
��Z�m���e��]R�ﯰ���.񚢺\�K���-��A�^++U�0kaAPUvX5���YQ����亮$�Ut�\��K���Z3�BdT�ف6��\[�d/[خo�`�>���*\0��@E�g,T��	.�]l�?8�JN<�+���\�Jz�����s�qFdZ�����*�vb՜WVp%�,Y���X����k,�B��aʰL��6�E��F��le�d�5!V'�mny09uF�p�C�o�	��Qsu�y�*��*���kB��N�fX�a��[Qd+����%Ck^A.�7�i�(^L�jb�<
.�֡���3nX?O�f��6W+C/^Ib�0֬L]*i�!�R+V�sw�����{)�����#I��DXg;t�R����Yr�~��m�
�q����r-�Z�֮`��������j_PY�W
��v�B��f�EX}��Ǘ��LU*a^�\,��J�PD��#ET�uE��>��{ԡQX_��a��("zB����}�Q%R�YU�~Wdz��=I$N��U�ٱ"6�<���T)x���^�/_z�#\���.D:���V`}U|G}^EWQ�9��7>�O+�z�7�Ȇ�*m6��"���@�9RNXV�ˀ`?ң}e�I�dN�N$>,kKƷFPX���]��dG�,����Ï�~�S�I(��V���S�
pPQN"U�Ȁ��G�n���4��xz���N��\�qh޵�t`��:�#�mé�p�㾚Ϻ��պz����#|2�V�ϻʤ(�K"]`��4N��Kzae��½<�����\�a0��o��s�����(VTuvwk�~���4�6
��檹��ӕ�Y���-?^@G��u�$z�(�d��̲d���5���:t�� ݭ��� 7��.�V�0;z�5�7(\r�f��c�eXSS�)Y�
�^y�:��_T�>YI��=��3r�dDwY���y�N���a]6�0Z{󆰂��0���q����)"s:��<3��X��¨�ha"��;�����J���L���X�*�^f�G���*p���u6]f�)?��.=T��)?�.�UP�+�pfK��y����m<<�5���\��Ar�kI40����L�8+`���tA���F�s�AQ�"�#�5]pHw��|�<�*?�hz6��%�ߪʰ��,ĨŽ�������*�o�Jbk�������\�'DߠYik����
#��*s@"��`e�������Zs�r�=u��|��4�ÌݔL�;�⽼���Bc��G�܃ ��}�=n%K�?��
B	f��:��ꤼ)>��%�${Ɗormt��"SzieB�?�V-�R��ō0CP��Ȝ.���s7'ո$O��/��7;_=w���+A�-�>�Y��+�"�H{ua�8&�ɵ-A�'�e>���𽑱e*���7ˏe	�Y���[�frMK�4v'ώ�x@wk������8T+���P�N��W�X.Ɇ%˺���#���"�le�Db�2��=NX�@�X�o�.+�g�f�;����aٖ!z�+�׿�PJ�Em��e=�^���B^w�<:>҆��s�qXA�)�C��&ݨf������֝�u��V
A���NNs��'�I�I��ן�J'S/��=��kd�:j%�+؀c�!�S��@m�Oh?��,L���t�O�Ť�Dj�.u�Q�$��	���9��<�'����?�=巰�
�A��H�`eV���1]�n��4+��<™��`��E����h[�(U0�*�R`R�娜.�3tq{35�پ��O���W��kd���,�'/�L0.�n|��iR���jD����`��N��\�L1C*�*��Ԗ�|&?�m8�rߒ���Zp?y�\��W�V�"�k��6�_�������.T�5��X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X��X-��X���X����6��\P8��IEND�B`�PK�][G�������Lultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/placeholder.pngnu�[����PNG


IHDR�e�8�tEXtSoftwareAdobe ImageReadyq�e<"iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#" xmp:CreatorTool="Adobe Photoshop CS6 (Windows)" xmpMM:InstanceID="xmp.iid:5BD0F4D7A47611E98288E8AFD3CC7D76" xmpMM:DocumentID="xmp.did:5BD0F4D8A47611E98288E8AFD3CC7D76"> <xmpMM:DerivedFrom stRef:instanceID="xmp.iid:5BD0F4D5A47611E98288E8AFD3CC7D76" stRef:documentID="xmp.did:5BD0F4D6A47611E98288E8AFD3CC7D76"/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="r"?>����lIDATx����\�y0��g�` 	�IQ�LQ")��d��dɲ�7�SNU�7�T�O�|˷T��*N��*ɒ-��F�ↅ$�m0k���9�|���r��;H�~U]����{�����o��o$@�$	@�$	�$	@�$	@$	@�$	@�		�$	@�$	@$	@�$	@�	@�$	@�$@@$	@�$	@�	@�$	@�$@�$	@�$	�p@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$	�$	@�$	@$	@�$	@�	@�$	@�$@@$	@�$	@�	@�$	@�$@�$	@�$	��	@�$	@�$@�$	@�$	�$	@�$	@$$@�$	@�$	�$	@�$	@$	@�$	@�	G$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	@�$	@�	@�$	@�$@�$	@�$	�$	�����g�Ł���bggg�~4?�����<��Ã����?�pp�ر�����G>|x��|���>���c|��ڵk��|��SO
���o������|\���w���3�����n��F�������[[[��^^^=zt�ꫯN�>=x�wv��o|c0;;�����SSS����ƍ��{lp������������=���6�}{饗�N��}Mܖ'N�'���_�]��~����>8x���|���k�������`}}}p�̙�իW��x����'���͛��ׯ���/^y��}�r���ϕ���m��v�c�k�����������u���so_���w�/,>��V8^���w�[|>�p���9=���{�7x��ww�/.+.3��q��"�\�=ގ92�x���ҥK�������y����o��{�w_����{�'v���_�rw_����c�u�f�|����!nc���ٳgw��xN�v���#��X�֏?�xw��6�e��g�o��I\n�/��������ǎ?�{ܳ��k/�.^wq�'O��=��5q��<���q\~܏�����y�����?^'���_��,�,։ˏ����㱏��^?'쿡C�F�%FcP�%[�b@��
��!��ǧ�n�-�����rn�:uj���>z&����C������, �o��M�@��h~�ι��@܈�ps/�޳����n��ظؘ_��'n ��b������_τ�1?�W��;!���v�ڡ�����������σ1���n������nkr�g�9��b�a/�yff����\�w�:¶Ŏ�G�ѭ��1�p����a����^� &�����c� [~�̸��|�d��ŀ{��<����ƍ�o��Ɖ��K!���o
��b춟�>�x��| �,�c o��)�_�\L,��c/����{������^��+�� X[[[�ɇ�ׯ���5�.����D@|�j��ȯ��� �t���������/���K�����[[[��G������XW �|Ky��n�ٲ��t�ʞ=�����V��r�AzY���q4����ѽ�@��x�ǝ�����t����իWυ���qA6�@"$�
���;����������ފ�_Z]]���3!�=���@>��^��{���eAv����X�ue�~˖�t���*	�C�@�An��	���ka�㘂�H�G}�I��fL������!�%%	��� 7�C� ����/����F�O�~ �-!릟�.�{Az�3���l��Ɍ�p��"���ІK�.��r8N!�_���\�|�r>p>�>� ��[L�p���{��q:�Csss_��7o�<nƖ����ٔle��Yp\V 5/
�ė
H}]1�/nK���^
��eu�)%��X�0�<k�c�Bx���������ٳg�[^^>�
�PL$�Y���g��c������/�Ǐ]�|����R�:�����ﹺ �*/v�O}�$@qS���8ƿl�=��G<�_YY\�r��p���|,2xnkk�,��}հ@*e�����������<x�X0ݸq�H���СC���˺���l||մx� �n�j"c�$@���>_�0���~f	�lXD��a��p�c-���p^��_�olllܸt��/����0�������������Oq8�
@cpǥOOO?˓����̉�2V�?_��{|YP_P�	T�+	P�e���{!��bπ���$InH�n2�ڵk����?�<;;�q8?����;���htkaa���:��lڽP���Ơ2���ߑ�?='���`\~�[��S��Q�W@1�͒uC���KIT�m*���7l�~�M�W��Ǥx��ޓ�����{*�ǧ¹��˩��f��onn����	�3YP����(���=}��!�Jx�Pt�u��m��|�� ��p(ۮ���}.uۻ��j�ŤF~=�d�������-��9�ߘ��]	�_�W��ă|˧	����ؽ?�ӛ������ۏ�ǿ677�[���?�_�=�ln�|����gI�|��o�ο?p��m�q�e���G���m�ZN��	Uǧny�{�۶7T#g��x>���.����b~~�����ŭ��8CÁ�^���ϸ�0����_�~����Jx�K��h:>��[�W�6����9_'�*���K~����v-6�Z7 5I�R��mG�fC�O����������o����nooߎ�l�B��ϐ,�A�#kkk����>Dž�offf��8���Z|Y��b�YU ?>�j��7_/u8@S ����R�,�����h�� n��+[g�����B�};��?
���{���������V���1���C���h4�Z��677?m�/���@4@���O-�W�Hյ�@�N�� 5yP�����)�k�^!�߭~�fx�7õ�r�ԩ����z�neC@�@�AY�}�n6ܟ�Ǐ�;w�����i��s� ���lJ�,��
����'	��Ʊ���VL��A񹬇@||ggg�ƍ�?x�������	��cǎ��� ���x�X����>��?����B��pl흛����>���.�e�Ȃ�lV����n~������|�uj��e�=^5
a�8��H)>�eۋ-����{��.��o�	?\__��p<^���~?\??��	f�H�]�������ڗ._���p�x�7�)zJ7�Iu=��L���dz�0��}�KB��m
vI���x[�q��+���O/..��������b�m�=	���ܽ�777o�ï���|y<?�ג�<N��U�.��
PL��ה\(�٭��U�֔�K@��P��Aն��ߟ��e���^����������D��N_�p�_��������@�C�G����8��7n��_
A�WVV��[6�_j�~>�N	���yJ��*(�d�A� �.�OM&�mޗ��ΐO,�k+� �H�掇����s�Z�O����+N���v���СC_�Fτ����ك��.���)�ӕ��8`�X�� 9%IPL*4U�/&
�L�W���c�6aR��'���R��n��ˌ����\���zss������lXH@B�5�]�C���kמ�y��K!�惸���)~�kڶn�	������U-�m�Y|O�c����<�4PL>�0��u�֫���_
��/��~����a@�eYP5�g?�������^���Y�����=k������&�oS ������z��Ji��*tX��)�떑��h[;�n�UǸX��K���}���5wxzz�ۣ�蹰�_/--}4����@�Ġ+v���\�<����G!�z.+Ζ{���u����5�L
j۾7E>ARL"t
��&&ُ�k%e��\��EvL�1>��s��}��'ܿ�V��������ǯ_��l�^����?�ʺ\�T�
t���z�`U _l����r���xWȩS���wiկ���K�~��~m�}�l
�:�������	��õsn{{��O2P"ȳ���E�Ξ=�յ���@j:��_�
�)�+�W&�@h3;@�`����&��Gۂ��t�OM"�M<t9oU����z�+8�A�v��������Ι���R�$���񶽽�Z�����1�
���Ȫƹw	8��K�/Pֺݦ�$q�1�k�KZ�-��6wIr�����)�ڮ�jZ�b
����	�􏦦�~ێO:ܗ�`-��.]\�|��kkk����>�Le]���a��
WmMS���u-�U�x�:�%%@-l{^����!����Tl0%�3Iχ����|�|�fc��p8�����x��s��cx�Sp��P����(M��������?����N��dC1`m2I��6��?KAa�5m{]/�I�]66��e~ʮӬ.EL�YZYY��p����x�+�ݢw\�B������W�~7K�?
���߷��.%8O���@��J\�o]*�W�6�K~��@�!�m�
��
(Vm�$5�zU��H�窞��b�Y�����t���õ���/����»���$��e�P���]�[�cw�C`4WVͿL�.�}�Š�K��N��ߩ����Д�x-U�\�$M�ۓ����W��`uuujqq����Lxn�_�}��#�,���+++�N�>�߅ ����se��UE�RД9�ۼ6%��땐1l<�	^����°��S�J�DLݞ�m�tx@]�f�GUR%ۏ�#������0�g��p'��	�C�3X[[�µk׾�:�����6=��ަ��M%��Ϸ���K1������������V�c�Ǿu=��lZ���֭[��ۿ���|?��95��3%�b�[MC�h4�qx�+����j|u�����zU�����eT�]����w��P7�A�F��]k �M�t���j�ɔ࿬�Il����y&�O_�p����;O�I������/@�{Fp�������z���ŋ��z.k�o\NR0.l�/��6�60M
6S���&�N96M�KILz��m{�w9�u�d�uSL�2���h4�OW�\9:;;�/a����,--���&�[b�����X���͛7_������5�k�����U�o
�Z�S�uS��k��n�m� T�.����d�-3k=�*�W(��ix@Y��9-&����O�m6�~�z������`yy�$��Ā桇:t��������	�-Ŗ̺ �K�:�ty���U���$A�P��y�V��S��p��X^�2�fo�*D8�m��\��;;;��s��|
�'�U���^���м�~?4KUU�S*��\�[S𕲌���W�/�4�t�������C���D��4�.�(�����$�D�:�����I�^ U몛=��������������kkk�n�Z�A&��Ů�����ӧ�2��l6G{]��6�飅:eu�	��b]w��u���~��n1���IJ���mo�|bb���4B�ve������w���8�������n���]�x��|��h���ÇK[���sU��`���{��t]�ɦ�/%�Q�\�:\����>�M����\�9�MAnۀ�kM����,�VI�ǬwH]���H�g,����{��tpjj�Wᵱ���	%$���;��N\�z�/Csrqqq�ry�twY� �.kn�Wx)���}v��+~W��Mb�K�|�x���>���ۏ�T6ĠkR��5=�������X;#<�g����ן
��qx�Ӌ#K6�LELdjjj���r�ҥK?��X�x�&YKi�v�[�)�{;��eC����:��x�Ǣ�JM��%��Ǩ�5ٶ@cq}�Y���I�?G����G�<��S�7n�����5Ȋm�9s�'$��^�3�~��#���=�����>kd�Kʼ�U[]@\p�����t�o�ݽj��Z��`�n�)��{[�N�W�e�jXG�>W�ߦ}�2�?_�j*���U�]���,nGSB�X�q��ͳ��x&<��;;;k����x ��!7�l�
T1����̏F��VVV�*#K1�C�$�r{��׽��r�f����*؝�x�I�QW]�ͱ܏�MID����f%Ƚ��p���y��E7���$@�{� @/i0���777������?k�oP���v	�&
�'
���Qת�f{ڴ�
HS��+�ަa�{�N�����N��HM������� �O������ƫ/^���)�`?s!����ڷC@r$��-%0��W@�@�M�m��I<��}��~�Ǥ���X����v�$7�e�zz������o~s��ŋ�����a7�D
�;�^�5.�V��ٰ�O�۷����c��]���=�G%�*7�Z`m�`��V@�(`�iS��|����秡k:��崝֯l;��QW7�x�R�6��A�i����PUǡ�VL9Fu�q~{b�?�?�����v�9��5��G9r�޾\�[�ҟo��������[[[�
�Ǒ|���A�$-�]�}U�/NS�L��(�3��mz�)��1M=�M�s�I�6ǩ�1�24�����������o~�����ۯ���n-��<����ŀb4
���v+�ǂb1��\*��;N����/��^5�=ߒ]֢Zx�-�ka�6�H�>��9�����2�@�@�n���ǩ)�m�! e٩�I�
���)CXR�HU�>�}���{5|^��IX�zS�	�{�u.
q��^{��666��w�K�d󓗵LOR�/5�j3u�$-�MSvIF�&�lˤl���޶	�6�W��fjȲ��mχIg���G�.@�uS���������o�~����M�9��>��j��nll�y�$_d��
[�J���l<� .��`���b��U	���I�1)>�_]��G@^�3����e�ˮ��c���lcլ	]�M4]�m{�kB�[��>~?3==�9���0���!
!؟^[[;q���v���(EU7��,�I���8�Z���zH���u�b`��9*;��k�k�V�O�N�\�)�]�l��&ȟ�������'gggg���a����wP��yw2������'VVV�j���8�͸���]���[���LR�-��|SU��}+����T_���|?�U5��}O.�P���4���0���}��Eq�M��O��~���133�mv$G��S����Ȧ�/^�x��ի?���Z�Z�낟>
�u�"�M%����i��lw��
��O�$@���d�+?�c�}��)�F��.�L�
�hSg�m©�p`>흧����~�_333�����~��@��%�^�!@�-x��٣�/_����R~�S��:Sޛ�:޶'@���w}�����*Ī@|���k�Z����m�$)�&M:���e۝�	n��ۏ�kf����­�~������w߽'�#~��mnn^{���į~���ӧO���)
u�[]��.S�l{U+y������l��WuS �fj�܆��4�/���@�}MzYQ����+;��ɦI���	)�d�=�y�Z�����ԝ�I��766���塇��gI�,� ��`�Ġ�^Jܼys�:4�����c�/..~T�:��m��gݘ+��G����^�0�9���I���*����ȶ+����WWW�>�oKKK�N��7k�`4u��
_��'�������o��Vܮ׆��s���U���8N���|]��G�4IQ��������:�eS�U���*ߴ/m{e���(
L]^j�|u%�.�m�|ݬm��yo�<d[�{b��`{{{�'@x�oܸ1��u;&��9��7@� �>���w[\����^�|^h*>�6 �wMO�2޵�^ۡU��u}}%f��)���]���-V7��|�M(���j�G�mk�_M�-��F�={�����+��333jH�_~�Ỿ
��?v�p�­�����C�
�ͷm���זu�$c���n� %8M
����.�ї�/�WA>�o:�U�Q���=ʦYLI|Tmo�DB�rS��^3��uy�Y���mWq(M�
�w����a8^�yQ?��)���
Y�����n޼y���믅_e��Z�S����t-�v�[�C�,��s������n/{���`���4-�g��̷I��%i�$'����'������w�[~��Ɋ�@���n�wC�bп��>x��G+++�Ν;�߇/��c7�|pQ6F��teMLY+o��4?$��������7U�O
�Rfh�%P�Kb��@���&@j �4�DY��dF�$Q� ��K����.���!�����흻�,1�=Z]]�+�A��K�gϞ�9s&&���Dz1���m�ବ`]_c�K�Jo��cly�c��	R���M�t9V}\wUAz۞)�N�&��)���6%����o\�zu�رco�8qbp����˗w��z @O蝔����08|��+W�<�����8'x1P)����6)M�X���l`����Q�&`��U�Զ	:Sj,�-;���X�>�+x���c\��65#R��7�F���(羦���<�)�Y���Y��w�߂��=��{1��a�=����
��������G¯�
��T
��xJ�Ѧ�m��pM�Z<I�m��㪞kS��=ME�����]��~�I�&}��^m�
wIM>���N��	��������c��>P@���n�wR,�u�ر����c���׿^�w.(ʂ�|��M�����iL|U�R`�`,��A�~_�2���}e�Wv���m:oe�>R�e�vj�zU����,�m�	Х�@��eƆ��H��ЦN�=�3[��]������ӏ<��0�w, @O—�;��ت�}��DZ��wvvN�/������7e�����b�d]0۴���;%+�m���}��nZ^Yb��4s)�#%11I��K�}�≓��H�>�zS��󡪻�DX�{��h4zykk���0�����b��!$��矿����7�O��>w��!~a~~��^����V{�
�R�ʲ�۲q�Miש�R�.�S׮�_�`5�.@��W����i��y�.�)Ce���zm�Y��p|<��������A����~x߃���?��e�y�����q����)�KUS���.�u�f�rR{)�u�<�m��k�-��05xo�Om�.��H�N�߷�=<��oS��� a��"�Ax�cJR��3�fփ�sss677����z���Bo��$@�
���.?N1�ꩧv���W�\y=<�}����.��R�n=uQ��Z��l-�?UAr�`?[���1�s��^����s[\����4����������۱�tt���}OĖ�x`���v�w�����-..�Uc�S����U�K�t}u�K�1��w�^��6s�w	��^[�
]5o}U�_���	���&R�����-�e�A�i-�$���הxLݖ�3M�����k׮���J< p_�ck�[l�E�N�>��իW����ý,��V�>�ߍ�d�}�t��I�Y?�A��L��
�c��.�i�1e��RĤa\^�����kkk����ҭ���[܃�k4�F�x;�Ŀ���[U��6S���Cj-�����q�M]һs���m�Ӫ�nmfNH
P��eǣp�~_��6�}:���W�K��f����#�j;�E�g��Y����酝�����?;t���c����?�Ϗ����˃>��K�K���7@S�������m�ĺ�e����m+�=U�d�e�M��|b�p�~��?b�[�DZi}\+��t�u���#��f��S
)�q-G{S��>������M(����O�;�8
__A��|޻_ַ��	_ܿ���"�_�˂�6��e��RǍ�U��
|�jk�����u`�B�}M/�G���x�S�m���C@������=/��S�eխ��u=
�dO��5Y55`�J>>��l@l����}����}aaa��ɓ����q	R������<V���~`}}����X6�_��j�N�
w��q��R��M �����ş�Z	��iL��G��K���1�}��^~�!*]�S7�f�m?��������1���F	R������}!?s�L����K���ּ��k�`��}U��������z9���淭m��"n�-̓$�����J������*�Z�M���&�ݏc�:�Aj���A|�:S{tM�=���e����z=\7����߮���Ҟ>HPbnn��e�^��������˗�w��@#uo۠��l]e�,o�`k�e���;�n��p������v��O�9z1<>U6����eI��s�������mq'�]^�f�E�M��Y����M�__�=�ss����ȑ#7���%$H[����8����֭���ק����/�ٗ�b񮔖�`���Y�_*�^_�?e��{��km{����ε�H�j_v��G�DD�k���x|>ܽ��?��0�7¯�ޫ��|��Z��$o���fBSO��c]���a-���P�`� �픇��<�?s{3�<��������p;���}�P	�, �U�?��ç���w����fI��PU�?�^U�)X���f�|�c)��e>�|+u�-ũ��˖��7����Z��,����v���#MAm�uן/@�WO�6�यms~'M<�%nR??��c�7��k����>|-^Y/$���X��O>���[�b�n>�o
��/��~U٦*Uj�9�&a��$۶wĀ흪c�[��n��_�q��mϵ�F���I���\G}���`�WK���w��h4z6��������ܶ��4�q�F���r]�v�k�Uc�S[u����v��S]�����(��5�rW��+�}�ȟ�6A�^��ŤS~ʷ�m��b/��e���k���GJo�����U��]?w�K{�u\��i��e�)�V�P��8 ����})<�Q�;�T�	��^�=b��ŋ�9s教����u��A}�q�]���`�n;'�~�5pj;]]Y�Ŕcץ+|�
�^�^�N���僷p�l���~��z���"u�uC&I��%8�$���6=R�[�Y�K,nll<���}������o�vq$ȉU����������+���f�r������|O��A\��)�H��.�nӃ��̪��MwWW�)pL���ڶ�rE�~R�|YO��ڟ����b�XW�1*kQ���ޔuǦ�hzMjȮ��.=�z��=ܥ�oF\�^��?
������ �=S@��_�Sd_�/^�8{�ҥoƩ���M����)AW��,�i
�RZ�۾w�*�9޼�T���o���篩p���w�܎I�?t9��1E�~N������Y9��	�?<��tcc������~@�s!|q�x�*�����x<�f�?_w�o���	0I�m_I�>��.��m�j�.{��{xJ���Hٲ�$=���#\���;"w�"<���p�P���k�xL����z)k�
���}��L�߶b�\�k�n=m��L青�	�3[�u�3��7���q8|lyy���w����?}	
&�u�_����8@ۀ�}WT�S=��7�
��6% .�v0̭��[u˯ٮ����Nz�'�5R7w}�1n�`*K�l�c��Pd��Uq�R�Q�9Ge3C���߱�F�ѿ��Ύ�c�����p�?�{c�g��c/�����@�.O
��Ah���֕:�\�r���T0�u�k�!5@�Z\�x�Ė���,֏�Yϯ�u�Z��Xv��f��*>�OUχ����q�aeu�Si�$�ztI`���I��R�%��g��Y^^~mzz��;r�H�� �����ַ+W�,���}#���ڏq�)]�'m�Ͽ��ꚺ�Bx�m�d<x��}�~[5�DSRhϏ�s]�f�kS�o�9髎o�P��=R��u�	��yN	�zvL�Ϊ}���z&�b����% @�����}i<OgɄ���'	j�]�p�2]
U󛷝"���{-��Ӷ��Ӻue��K��z8��ȊE��p{=��YPYw��^5SC��l?ʪ��M���,b۞��2�
�5}�\U�!�֗Rw!u�Uɖ�{�uvdmm�[���k(��p�!��A|�[4]�~�����o��U���@�n����nZF]Q��צJp'n�.;n)�2e���[��X�/�����Ax�m�O�
���U���k��q�ؗ�'��m�q��Pձ��3�rǿ?����h:7�d6��
�;C�;�G�C
�\`�lakkk&�]�"�v8@ʜ��ڥ�u1��K
�Ul�2��j��.�QJ���m�qվ�	A�Z�>Ğ#	E��	��w�ϥ��(R��6]իz4�6]�S��O��>�lӣ��1H��p--lll���?>|���"�1p�"N�u������q�bπ��lm��7wR�X��u��& ��i�u��m������0%!�%��]�W>8��.���9i{W%��Ɇ�lll�p�С�8q�vJ�$�U���lǀ?��]__,|ٞ_��KvJ��$@��S����4��
��_\vUi��s�W�cM����ˎ����o�﫩	�� ����
�ޑ���X��y��vI0���'�'0���c�S��lڟ������������O�ߪ��N� �Ѷ@8^�v��x�r���t-T�%h
қO�% ew�b}M�ڥ��:UCR�Mۖ�t�%��%u*Ŗ�<�&މ�P���dq�I�P`q?S��l��%��I�eeC9�s&�6�ݲ����.��5���~unn?>����@���r�/��_�5��{�=��������o�R��>���@�)��&y���)�'R��+��~ҩ�g8�.�.�����;�z�v�y$%�;�VB_I�6��:l���0iO���r-$$�b/�/mnn�- ��X(�M�3����K!�z�j�1��
$�N-�&1д�ԤC�2꺘�C�tU��$S���b��X�u��Z������!�g��l��+�87��Ow	ț�I�	���)�rr�cP�7"[WU �3Y����)�v�…3����qȒ$��}/v�M�\�zu��o>����xq�&�~��Q���k��O�5�MM���5,�Jx݅6�B���k�=��V�-U%'��\���>*�7�?z�9�]�2�
Ә��X7��h4:<==}haaa=^cqȈZ���/&Ɏ��������e-��BrmZ��䓌��m�@�k�v�ti�}i3�ZJ���*�uS�5�e�矲1�m�i�b�?����{�cͫͪ �l�ĶI��2�ƿW��쳓8�"鳕�l���I��U�qYM��!-U����3�(\��f�)O��\��㏓��z���>�\?{�5��� ]�)�U�l۲
�]��.)0I�.���Y��_4^����KFT�����[�=G��,�
H�-��d�~-�,����鼶�Q�g7��o�k����<yr3&���^	�	)�l�����$�ŋͦ,�Z�6E��u��]l�-��8���tieI�>�M�RƝ�����[����iʶ1f]��`�'�}?,�o��h�N���b�볬U��U�e�~ݩ$@��<T�eH����G�6��p�d�].��@ྒྷ�%?~C����Vi��n�u��R�ķ
T��'@�X�,(��)Ѫ��bQ������n 6����޾~=ե�^<n�g�^�	�\l���X��y��m}������y(;�333��kW�\��'�Xˮ7$�K_����0���ڵk��z뭗C�w<����7}�Nii�zmS��V�`<���j:�|p�:�zպ��p�k	-�:�,kJD������Y���A[���{���!�"����(?�#e���Av_I��}��]f�hsʂ�>�YW�!�f-�F�������)'���gZ��9z����7n�8��j��m[���%P�
���]���D�S�Y�����=ܶC�V���uvm�
��~�o��4%�S�?U�%N���_'w3���a�d[_ǹj���.��+W�|���8�		��R]��:v�������dl���^���������%hH�2��}�=R�4�UT/덐z�o���X�U������NQU\_LBŢ�]��}���ˎU]��m�k�9��MR�(H�V��u�JU��dJYχ��&�	Pv���)&�����p�������@�r��������={vp���X��M���B�oA��2n��tO������U�d?�����J��)�Ϫ���8�y�s���0A�tX��p{�,A�zͤ���k�~���b?��OR����&�3Y<Oq��������d�^������@%V�___?x���P��U�w�Z��?U=R�Ⲁ�*��+XX���ʦ�Y@]Vd�n�w��eۑ�j�TA�l��H�"&�n}��{o��?W��:�e�<�a)�
�z]֭�M���MM��u�o���ǔmi����ML\���߲�ݼysw����S�N�>���p0|i~qzz����պ �*�h�R?i@Д|�j�+�W|6�M�i�E��A�~�m{���p/i���_�Q�>�*�$�(lϹp�>��MД��Zk
��&���q]���mLIƵ:��M���z}mW6�D����˗�9t��oz�Ok� pߨ*����|�ᇷ��/ǿ�e-f��$bS0�� -
��������q�m0��mkk�p4i��lH��~��?��������*K���5�2t��z�y���Iz�mol���8�����c]�$�/O>�d��YcΦ�~���ZV5���'@S��.AL6��M���v[=���!eeY�kqª��n���S������/~sҠ=[~O	�S�ڸ�u��寉�i#��3�6Qu��q4}�����뭬E�kb���i�L�6T
m�d�I4;;�d�ߺr�Jp���F$>�Μ9Sh/--��2g_�S��)�S���m��K݁���.�MW��X����]g`({,���������:�k,v��?\���˹I=V}%���b����o���8_�y��{����t������H�w66�0��AF��ܹ��x���px0h�N� %�K}_��&�� ;kEl;�ZYz�$J]]�����zM�\v^��=k�������q���5r�}&l����ӏ{���.=ꦴ�Z$�j�U۝��2L�� �s��}�jQ&�Lğ�t�ȑ�P�uw��	 p�<����Xl)������;S�N�Z�3��wi��$(�+����v���n^��I+��-�x�c�������G�w���W���n�kV��c\�$���ˤuʎ�$	���G��t=v�e����V_�'$>._��_�cg��}�ȑGCp6�6��R�n\pS���L��e���z���e-�MIYW�u��ߺ�?�����G{���e����"���}��O��n~�y�:�]���ڶ�ฬ�<���;U�d�~���I�[Q7#BU�
{�7�p���8�ɯ��u ~A�ձϟ??���Z��|�nʼ��S�����{�� �m)��M���-�����g��h�ϒM�@��ޗ�m[��T�\�K�-�uXLU�˾�͔�g/��ץ$�>Su�-ۯ,���xyy��G}tp���A~�H$>�^z��=c1��_�r�…'c���
�M�o�V7�#�(����YgU�i���S�]w<���eǡ)�Pv^�^��u����3��Wrҗ�}/���+kQ/;.M�_��eJ�xǤE�k2e\S��$T��3R���3��1Qz\�S�u��K��|"+X\XX�������Gw8��`�;vl��?����m��m]�c�4Xk�M����$D�bp{A�G�z��׹�����Uh�c�q'_o�u	lS��}��>�]�(m�]�h�Ɂ���VWW���O>�	�2�=���/}��|a>t�� |9~aff&9��2��q�*�w	v���Ŗ�6=���.I��Z)�.�����mM���k��VҰ
��g(.+&���ò^�Z,;�e-�U�J���1�E���g����e�!��YжO�5Y6������F�}
�1�y��sׯ_��L��b�kȮ\��t�ܹg���'
�����o��|p�u~�ݖS��U�/,uE��l����_�������:Y
?���g	��`��d�%l�7�^�M�kS/ehE��н��p����Iz������8��ĉ�G@��!���{�X/--
~����\�|y��d�)��Tp����R�����e�i�m��)Ɏ�cUբ�ڝ=[G,�^�ӲD٘�,�걫�ca{LYS;�uWUq?58��ު׶)b8���5a�@���k5��s�oܱc�J{4 �3�>�B�������cSA�j�us1@(v#�cN�I�o���m�ke/Se�uYb�.iѴ�@����vl�������X["�����p����Z���}��ҵ[�4�MI���9��[��V��)�Z�2���P0~rb{{��7n��H�~�����������͛�������j�ҚX�dH���uۊ��OQV��6��^�-�1@��gffn�u�+{o�Ǒ�k�D����"Q,��/����nM��s�Z��ݮ���m~��1���V�}ۺ-�TIIIq	$�-3�1��9.�/�=<A|�`"3#<"<<��?�Ǘ���.glۭ�qǺ�K�pL�)��3u��FL�ɵJ
j���a$���eP���}njj�2B�}�x�������:?�޼ys˽{���{v�f�SjQW���!
R�i����ģ����H�M�c�>;�+�O��s����]W���7�=d@�K�<Zl�>�T���z�BcrR�=�a�w��m�I������ ��̓���+y�м���������u�V�K��4k�f1��)�%u��Y��1�E��u,J(��������'��<6v�bK,��s׵�z[�rIĖ�+�7Bz]���p���n�{�H
(�>������������˜F)0���E?�B�^���J�f���}J\�K��")�<`!as)V}$��O��QRJ��h+��q�Q�m"�쿪,�9��]UM���Y�!ǖ��3�2�E
99�M�6�cҶ��<���d轫O]c�v<�8{{{k�Je
�[�\lhn޼�P�򲰰�ϖ<���n_��жҺ��~L��� 4ØC�-��Fg�3��-�#�r�
��v�kl%i?�,�����)F��� 5�I�-��^���t�=�Ǿ�����w�_�~p��=���`c��߮��0+�˃�x�V��*$\��6����w���g��Ys鬾4��u=5)�/{���gGW��hL|����⮹-[�g���^M@�b;'3�`���o��g��1I��K�<Kb=l�'I�(9f�8m��9c��x�Z�V��_�lh._��pf�^��---�)7m�Csj6�"Y�m����n��q�Ov�*$�$$at�D�L�q���e���R��z��F�Ԍ�R#@��
�ą�'@�y��)�w��~�zGGG7
#	 �N�f�Ν;7299�Z�-$F}I�R����m�$6KM.S�/�y�U+����OJ��u��Q�}��� �����y���5V�����e@��py브>� �v�Ң�!�u$��ig�Z�n�AU0����g�]����k׮m�r����)�$&��+I�UT8�l�#�d�)}f�?3a�1������yz���{'� ��.:���x3߻Jĥ����%�h�#S~�rQ<JtcXL���z��,/..>�޽�J��r	`]111�:;�íV��� m>�K�-�]�O,ź_�Ā�X�"%]3�!Ѯ���v.��vSB3�$�>�)�X������=��D��w�!H�T2�q"͆�ຮ�ۤ�ܸ��W�"�ލ1���g(C����=@����I����~����o�Z�8N�E��IDR#@�
�)��1��a����S}G�r�>��3~<��?g��vw韩2���L�]�vb�J��M���M̬��i�<���vml^"*�I�P���+////�`�
˭[�����j�*,��l_�>i�u��k=W&�������ǂ~���A�?�\7f&;4#l۞����%�X\�4t��]��$T��6�b�8�D�$��+�÷��r���w���7�n�Qh����R��g4���\��/���nqqq�^k���K)t`�.]��:�W��I��X���lƊ+�K�1, C�$I�|�,��_�ϔ�r��c�p�q�@�ϖ��n�X��Ӹ�c��eU;���n��rUK��Pi?�� �>��Mr�R<b�;|��_ٶm[�?��l(���dz_=333u~U�����X!���b�uw���C��5S�CԻ .a�2�m���~��+Â2(����{RO
I�wC�J���
%��ұ�-��+�H�)!@�ĒˤN˓�|��6,���o{�߿�����۷o�tE�5����+z�Le��\Q����Y吻��.g<���.��os�o����d���Mm���V�+R�T�@O��.�1��K �+
S�"=V��O(�����m�p�/O�v�����oR~�?	��Z���E����5ts�"�*u��U���%�ص�?����p5�P8I�J�.�eR�2����Gj��"b>�=�2�S�(���Ƞ��	U���}׆`�
�իW�!xdii�i=���:���M<��z{���\iI5�'@�8`����.M��>��҅�*)������}w1טRmӘ��J����n�=[%W��f�%��|�\���Ǣ��M���9��Ϙ�3���{M�]!ٯ�:�Z��M5z?��ؐLOO�� -5��톨�MzV$^�Hi������|���r���n���W�mB3q,����$	��_z<�	.��<��PJxN.#��>PF�
,����h��!���w�P�L�.w�Pr2ɬ`j�<�Bh�5%�Z���`l}s��r�L���?o�F�Z�:��
I�c��x���YZqB:�b�+����������U�3�~�b�+�@R$߈�p��4����'0��dbb������.�2o[G	�\��}��EĀ�А3�Zl��ꠛ����KKK��}.�����'��W����x��B�e��y$�I=��l8b
Y��0�Ƈ���288�޺u+�c`c2??�S��7+��TA��.��C��1��	�\}��v�~Ɣ��yL���Y��7]�;1�K��EU(*���/�i
�]����B0��#�}ǣ>�V�Pc�fԑ�-Bl�U>�G�@R4Gj$ӏ�sV����;lF����o��oj�ZY��5��N�8��&)�2lH�-�����A7t���n��F$^8�DK��W��}�G���g|	}k4�%��%�3
N��8���,�w�}"����.b��Txevv�gff�9�XC^y啞7n��R��M�rd�Xt�,�$[�_�4�Y����Z'�� ���.��e�_!�sBR�Pj�������<���uM��yD��V�{��2}_����3�����w�es<5HǤt�P	i؀�K�������`�
�ݻw+���#����-}��		������Ģ���IP.���{�R��r]?}�?#�Ҕ�?r,�Az�����kL�Jҥ�����M9����1�#�1��b��v`�1==���ՠ��\4{w(ɗ-N=f�5U�ǞG����m��S�E}h;ױ��GX��5�:�_�ղf��vvr쿤/l�%b�A�s
��i�������0�,���5^|�I￘�ȖO�FS����Ҽ�l�|�߄Nh�@�٬�ws��`�
������*�,���C���w�Gu�Ou�O1\��SO�g��6]��l�Tjf�	�5���p��+��о�t�\��z�j�.cK�@ݗ��CHTdž!���o�nk�	��yC�\o�ZUب�~z�-��Sc���k-�^"tRŏ��RglSfE}��E����J���<����;h��z�ÀDp淳�W4�ώ�J�Wuφ��H3�K�G:ދ����;#��Br.�0�IηcX�k�gQ�6&�F�j+�'}ЏqM�|_ĕ�t�͐1n�.q���.�h�|#�~�#t�Īc��O��;/�6	I��Z�Ͼ��{9� cV]p��9TUiAo�u,����
S�%c�i������x�o�~߼�UEki(�\�cg�R�C�~|��^H�P����Ԥ3���?}v�����<�_4Ѣ��vz٥��zC̘����5ף>;F��"����YjI�@l�ǘ� U�:���
�
��RY!���	L�{������V�Ue
�ْ��0��������F�T#H���\N�M�'1u�^o�{L�\V��Y�#����s�y�ĸ�����t�ߩ��g�|Nrc̲|��b�А�@;�8�sA�l^��q3F}a1�EK��uHl��D��i4c����.��"8��r�3K��t��Q�<��C���9�c�ZUq�Yڣv�Q{{٣��
6q���1F�gh�g]}G�u�
�uvU����pi����%�X����
��Z�V���H�����`�����b��>{h�M.��+u�"�����"e�|b0V��&Aty������v����8y���Q��T�O||J�K�u�4[��^gv�c3þa�h��-/�ƩoJǀ/'�m]���8&_���u�7�cJ��=�h����������|�N5H���a\�O�~zL�A�@z�z�6ɱ��I���>y�.Դ���}�n�G@rm����+V^��ζ�������h�c��Kt�7��ih�IC7��g���]���)���E��L����n������4>>�� �pl2Ň�y�`3��b/�*;�1b?F<�x�� �b�7ډo��?o�4��s�r	HS�f�}�ٕ-��G�1����W%���bƀ�b
1�S�鶮k�3�����v��?�z�J�o�T�<�NJ�؇�n	��X�,��}��b<
z{{?�5^t���ҙ��R*��T�\��7��8�=C�����[��+���ĩ�
>u��wQ�Ljt���
�(:6c��'��J��0���k�v3!��]j�H5d�B	bfL�}n���1,..6���;�N�^O�Iv��+݀�3�H�&ң�G]�POB�Ѡ�O������^���wU��O�l`�x|�
���,jI5��r�������B����|Ƀz��[+�C�6C�鋳�)�g��r���\��3�$yE�g+�y@���I�1»c��>�Z�c�Y���\�uJq���>c�&H�f�.��Px���a�G\�1ԯFΌM����{�]��b�ö^�;��^(�_�k{���A����8h�=%nC��mY�Ca�z�v�v�I���/�c��x���9���	ƛ���]��<]��ԧ/�"ܖ;��l�d���76�ܻ)�����s�u�:����lL�����z0�yh�m�RQ�~�� z>O��۽廣$dڹƈ*ї��#!}P�+�6a*?��K���Y��K��e4�����Ͷ
1�����
yN��O�-��l��@�l�Kc���A0�ce�s[,���6���O�cv����ղ�G'!�9/-��m��\c�N-P���Ա?���s��#�|I�,uA�V���wf_��O5��������z�`c�f�X�DB���*��(T�O� 16u���P�m	�L�ۙ���_���^�Ry�v�17F���+�5�P}�@��q��\��f��%�󝇤�1K��jГf��a�<9�����!<~�q�9���d�����n	����
���O�n�\>�kƕ^�Z�:�K�������m����a`�y:�/��_��7[���}��B���{2%9��ﻯ�s��q���U�7�h��"��s����bm�A
KJH�/c��\ǥ'i����s�����?����@�8�霞u%K4�V�W�m<R�m6HĪ���j.�f��l�D��I(�پ��@?��a"���}H���S
��u��Vr'���_4�:��G�	 1(�b�se7���1<�e,����^<���MCQQ�����?�����B��p�Wb�\J�%�ؑz�NJ�ت��}9���I�27! ����,�g>�ۄY(�W.O�P���m�glHqe��JL�z�z|�,�y������{9��3��?W{t�C���6!�r-}�G�E�n��D�M�>r��|E/�X��3�s�����C}n�s�Y|_��~��ő�G��l��0����l|7y�a �>c�����:��%R�v�rzG��I�?L��KQ[o�J�M�>�%=�C�7�0����3�}SzD��yZ��X����T& �Wb�Z�{�g�R��v�����F�ߠ��A`�����=�K��.�R�QDx��ӜmuKju��A�NЅdGT](��ӹ���
xɘ����{A�'�Br�ta��F��'b�t���R��"m���n�H�"���!�7n%m�f�]�A�ܗ��5�6C���s�6*�X!k�]��":G��}ڄ��|M�.%�YJ(�k�ǹ��:��:��[NkP���+�#����:3&�8#P�_V�Ӱa;��1mw��\!-!�,)�W�`!�z�#|y
�U6��"-��6K���̇k���:1Ƅ�8���Ķ.2r���ͦZ����E�ֻJ�u*��E�L�uZ^0=M�'�����$�S���GG��b�l���8�I
��$��~\-۸3�(��͘��oHђ��Ŕ/��K�`C�b{pv	l] t�Ϗ�btIDwq+�\��$�,��%`-�D�j�
3墿��x��Ε��V�=��q����dOb=N$FC@��e.v,����v�h��$1����2��<\�
�g�{�w %��}�/��B�:��T��N�@@�6$�մM��D[n�3��j0+#��S��
�ܶ���L�T����A�3	B��&[^�%��Rx.O	Z��s��u���9i��Exv-k�ׯ���/~���"G>
�31��N5�ʭ[�zv�܉��XT*��-�;$<���C���6I�Gј|Ӡas��%d$}����---��l1�I� jS����&�c{S�L0dp�QӀ�^igcf��c�����m��ןK�d����0���	 58��\J�ͭ��},�ͱ��>��y��j��|�̙3=���*���5`3�֎Z�vOZ��}�U8ev:f��%Rk����UI!�<l��0��=z��=T���E�Hc�clL��˾�9�����Ǫ�����1K�>�Ь!��bg�%��e\H��Sr��bWb
;���ˠ <`
�V��F�:k����YJs&�\'VH�j����k?)n�Q�f-v]��Hh�Z�x�:�Gr	vn���tC�c{��+�fh}} ���f��� ���/i߳��_�?gh�Hm��^��X�W���h;q%�4���'@lL��H��$��ք*0t��{��}�;������!���Ec�sfp/Rڬ��)��0f̐��&G�>}���q�?	�ú�B�杒A�b�9Z�/
f�@bst{̇�Y��c��c	��s�[�Å#zsV�����U���J���]�Μ������v�:���|.�hzF����}!*���T8��UY͎��&���Aǿ9�o~�J�g���g�5�Yz;�z�=�{��w�<;�b��
�ϫ@�;���5��~
e�B�����2t�岑��`��jX�^���f/�>���z�8I�o�x(:�j#T{=���h-z�u.w}�r@�W��WTB���4g�Cۚz�h_T*��]�>����E\�S��p�7@�Y���'�Xb+t�`���jlH���g��w���`��}W�sSȄf���	PTێ=T����,��t�mgv�3��AQ��39g�W�3/�ޢ�ʡk�+�(��Fe�/94���%S?L�r��eO�)ėį�/��[Z��4�I�$��G���w�rѹ��j��lHFGG'9�U����Ճ}�Y8[���D`� �	�␘Jj�}�D�*�G׊.σOs�n�S�<K{�O��%�L��Vڵ�x�^�h��T��q��>#=��v��Ԑ�I�v�^�7�?������R�4�J���{Q��<���tvQz�1���6���z��:"��s)W_��~�Oj�
z��]�c�ƄهZH��4��?�9�G�x�R;��w��$B>7����u�#��N��g��Z��^�0�ΩS�z���=�:ݱ]�8fߺ�XcɌoH�����,��%����W��&��g��9
��%3�U&^ue�%�t��nX1�E%�䒈�D`�H�X?�?���} 	P�.���vy˜���&���Q�h����E��v,�Ěw�
Bؐ9rd�@�Z�>L��AP�E'����M�H����\����r�oR[%���)#�pop�����/9�}�8��p��>ޖ�Q�Ŕ@j�p	n�>�k�:��>r%2,��ψЩ�rzxx��6$���M���}љG�H�ӗ
:�xr�^�dT�z؎���R�t��5�g�9�?���S{��\�,Mg�[�9Qe,sp�Du��Cj��CBT:�����Ԑ���y@b�U�
E���#�9��gqq��۷W�߻w/��`c�m�6������k���u[N}x���ݹ���u�[�t�_9�;{}����z�6_W�$�b1�pc�����&}v'������_�P��^��E.���A��6�K*��\�j��Tꙝ��ܿu��_�A������˂P�n���߆P3�Ҝ�^>���cw�c�ؐAB_��'�����n������2����֏>�|.Y��t��S}2Ŋ���Nh̹>W���ws��`�
)��%ʹjb=�,aM.�r��~2z؝�y�&��^��8F䇄�Tp��.�
�h�2��t�rVOXZZ�I��V��b�s��#�ܬ�����.5�h�c��_�)�4\��\��o��\e�l�Dro��W���>�!)�#Rc�o[u��R�Y���`��q��{�ܹsߒ�9���2��n�j9��WhV\�;4�'�R��O�ѱU��ֺf����2�������Fm���>V��b�~m��k���~PǗ��
>��{�X�V�I��s��Q�m9*�$z4��wn1��+�Cw�w������������/I+�C�Ĵ�"�$��<��c�H|}O��z��t,�sf��vޠ�JRa�>7��c�:m3I~׭{��/�P{��6���R�|�}!�Oф���9��c4
�l�bfhh�-�'0�O�?��O=�n��{�n����04����Q��O�	�z��p���Hg=�F#������M5��I�TT�}��C�ަ1����c�P��7�%�2c�q('@̘�=Zl^-��m^���CƯT��:�v��gGGGW�0�!9z��j<x��O��y%�Šz�f�ϝQ=G����d�'�x=� QY�s��q�A�i�4�_b�3�_� ch����ܦ�lO
_�%�\�1��_"�C��%(M��M#�-����Ҫ1�6$O?��z�op)�F��6�>sgξ}����p���y�;s��\��O]������\ɹ=.u���_���kF�%VC.����#>�H[������b]�.��6����.����f>��{�wL�ry���di~~��~�{�9�0��b����=�v��l����m3m�,�+I_Q����&�@��asqօ��A}�V�}���������l��K���|�mL���n����z��e�~^�Ě��s�ٶ�y=H���%.��P�G�d|ٌ�}�Z�ilE	@�6��3+<s�ڵ����=*Fܗ��	Շ_O��,�q%5�u��)卑��R;����P��y�-���n��5��!{(�rj����2z1�\B;�Xc�,A��ҽtO"�T�����P��lh� �L ��m�������lf2@���	������3��)�')��Be�B��ȖLMߎ�Y*��gs<���+PX$Әy�ݦ��L�����z�Yw����6q�e��j�6-�]5�>�U��o��P3I�4AaLߚ�FB���������]C@�66gϞ}��<33�R�լ��ٵ�����vV��N��^*�?u�8�cJ�=�ȗدס3[��Z�5��F����w��9
@�ks�֑�\F���E?&�t#����y@���l@@�64��Ù����{���+�fs���J�e��&J��f�]"W�l����͖�xHDog�I���n��^��R��6�S�����%��X��Ӯd��#���.��*��-�lc�7�.I�R ��-��M�ǎe�^�z��C�0������;w�E�����av�J�r�ڵk����U�1	�n�N��Zjy�G�i�v�`�I�S���C|�~٫#c��h9�r�TB��c��k��z>���b�~����O,����_H�K��������k��噙��w�`�w�y�A��P��X����}z��y��^6��Ҭ���}I�8�(�%͋u���V����>�C��ǿy��Ez=�C�����
��1n�gJ�e�|��Cׁ���]�?�b�P�Vs�N���s5����+#�cƦy?I�9z���%������㸿��^��rU��[���$�9w�܅F���L�{�սO�I��B"�}l2B�z,:K���Z�A��N�s.�L�Wz5E\��}����~XZZ��K�]�?��c�w�9=b=�B	=��޵U�{�188xj׮]+��`�333�P���uv?�6K��=}���~o�it��j�{f�t���ў�6���5�5�J�󴚉,�M��c����x��,���mq����12EK���k�h4DƝ���0AzsH�?�='�`���/)����!��R��7�>믾��?�N�t��������`�

'���w���$�S�	��dr9��c\�s�&��-��6�`�A"�"���\���-�����k,�t�$5�L&w<��I���Cq�8��P������dЏ�.5)`��ܕ�<���<��<~��T*��ܹS�߽6{@�c�駟�l,x�X=8��y&���˗w�<1b�5w���e��V	��g1�%I��Y�B��͗��?�!�Y��u�Ď���߫{0��E����<-_��—�g�6�1���^������+�
M��i���"	��q��.��r����\*�{�������w�==����<�)`M9t�����=�����w)�q�[l�
8�,�E�@�mC��Bm����/�м���/ÞC��1����!*�@J�v�1�҇Gs�.,�o��N��U�@���t��3�}���E��B!j�]z\)�2������m����H�<`�u
�6��������)�Cƀ���ED�� ��;�5�{D��xl�Q��rUj�MNhfIO��q.
Z����:��f����K��5�*�ܡekH���n.#�ˋ'���i#�`��<N�'�����'���<[��ӧO���E�,�}��= וБ���-�7UT���?u�O��!Ay��y2��\}�(hj����m�R[�8I�<�=�.���ѬK����������'R�X���CFJ�}���o�����ԲJ�2�lx�M\�]�w��q�>�t����Q����m�p���+N��BL���
Uo��Q�����q�,fr�+��:�Y��0�R_�<�����^��L��+�ܦ}m��q������?ku�.�#/t
H�o�q��
b�x,�e��<���_5���u1���E�x���L�y�������ː���<󸸸8I��V�ba���9����������(㏤�b����>����d�z���se�_;6�u�@��QO�"�Jhg�Ӕ�I���~4��y��ل�AZ�V�Pߧ���o˖-�Vؠ��W�^��C<�����Y��1�.� ��"0�� ǾCB�'�XT���OrƓ��6&^���<��l��~��eZNJ���@%�YjQ��x��[���x���q:�7���/�۷o�Z�[@'���={n޹sg�� 4ckp@�v6c��$@�u�!�>I��R?��!�x�PՆH��J�5n�c��u���Դ7gi;�Iz�\�BT���q��K��~��P��ؼ�s�x��=��6����?���6?==݃�<V<x��=00�x�ʕ/�_���Z�n�`jLrh[I²#CJ��}K�W�%�J�ґ����u��az)�j�K�yb��%��Dt>J��x��=f�`�H�]Z�r5�6~WK��}�T �T�mo�e��b����?��`��E__ߏ�K��8������U̇�T�g�C�)`U���N_�}�H�fB�y!�D�K��P�����rŬ�̿��������B�
s�'���4<>>�l߾t��G���ϡF�#��o�>��'�SJ]J�_s}�7���yO�<v��a+��p�
��Llٲ�/���L�
�М9s�*&���{�FGG��Ƙ)Sf�$B["�S�E�M�Ͷ�1w>?�s[	�L�^��JE���|	<����ɐ�
�}\+��e#�t�p��iZF�¼��L��	p��2F%!6�k���<�j��٥�
0������[�l�9p�@sjj��3g�ۼy�&����Kڵ8��1��ĢĀ �H�p�ە�^��>O}y6���k�Q����~=��{��a#�_��@0��ek׍\�!���X9Jm�W�K�+��>#���i��н뽠�<��������⩧��~��+���g��[�J�f�Yn�xu������.�6"���3�9���׫�r��+a(M�f�fFm�}��x�y�+9�S�|�yZޥ~p�[�+u���Яujb��cSc�S��;w���j��=2��xq��E��<��l6{&&&������{M61�Ȯ`}V<v3&�@zLE�l�	��e���\�Yt��E���|S?G��䚩�T�5۬���Y�_�MDV�|�����)��@}��g׸�)�0���d�r�7DŽ�^���<���v�}�=�oߎ�<~��
�7�O?�����܅���o�u�Ԝ+	���O�;6\ gl�MXؼr���'%�I���~l�H��m�ȑȬ�
���>{�p���2��ű�	�|�2���`Q�M��8\�]Z��ki3B��?1!?��B�"���{�ڝ���X�q2��o��`c��/x�g=x���ӭV��R��o
��.Q�qWH��Nl��"���k��f�0�@	�Z�v"G�?g�q���-1�9�,�����O���S���e��+�IUR��Eͬ�v�sH����w�IE�Y�Cb���Ԁ �<�>���q׮]�Xqջ�>��ܾ}�?����~�z���=T��.����j|��:T7<�OW�ܸ��;��/yRb����O�㦶^.��}!1hs���v�|�z��yD�"�S��	��c#�8���ij�=z�HƳXO��*Y�� i_��,//���<
|}`�cnn.��s�Ξ��ѳgΜ��.���!�-M��ѭ���Rb��������3�V�2m��t���b_�*��F��T>�̥?������.����(r߸��o�����f����Ξ��!��\�v��ɓ'���i��lKf�m����.��]e�\�J��ۏ�H�g�g3��[}�Y�P_�DB�_*��0�����_�H@��J�N���
��M�)�r�W�gW��N΀ծPMg�n�r)���a���^
�Q{o�R��1�2|�����/�'���7Ǖ-?�>�o_�Z�vo߾}�u�p���$��+������Z�֘�����"i����1�j��Os�:�<��5|KV�D)��c�*qG�
X�����Y7d��o�oZ�3��C!���D�p��_t�<f�x�yR%�c
�F�c��~'����ݻ�j�ڪw�x,i4�u8c���`�k����'�|�V����M1g���_!O�P-z� ��$K�E���j
�I�L��93�s[tl��2(��p	z�5��Y�!��r�zU�mCh�ۯ�:'rD-��8"�$-o���\cU����AWI>�{Ǘ`2�`a���I��D�_��w��|O�K��Ƃ��پ}�x�ʉ'n�Z�=��ܖ};$ʥ��m�["2�66#z���n Qy,��>{c��j�mUI ׬���m}l���{�}�B����|.,6y���$��S:޷�Q*�u�����f������?ݵk�$;ggg�0����K�Y���;�aZ��m��V��%�m"@!zVo�>B�6+)
/�x�nߝ��	Z�jNa��A��J��3�ΰW#�R&z�גǙ�\�oZ���������q�: g���k�^��R�1�Ĕ��^�P��K��o� 0C.����^�k$3��0����*b:tvbb�Ź���l<���O�1���)����Ug݄�,	�MCI���7{d�8gj�*K}�,���a�Ef�c�T�T���/��c�[���!����	g��E7~?�ʃ$d�P��W��Ϗ��L��?<�pL��L�\^�T*<��U����6�#=!�v[�AW�9sv�7��־O\�I�Ԭ��g��&�J��J@����N�3:�����|�<��{�}yr�[��G��$����r��kW(���2��0�mG�2�C�q�*��>��y���,_��30�O����sss���=���ӧO�l~~~�sĸ��\�K��
'�v���x�>Ǭ/�k�����W�c���K8�\w�)2nbc٩�_��j�Ym6�uj����Lv�hy�H���E�Xqy�Ĵ[�V���s�?NĘ�s�#f6Y�����ޡ�.��y�
��p%�+*8l.��m��e�|߹*������.W�?�g実��gcf_J�)��	L��B�'�5�y��,�/h��>���st�
�+Dd0�\%����D\w�`
|��Ɨ$���oٲ哽{�N�}x��͊�b�g3w��q��=h��ks���T�+���Po���"J|�m3���9g�os�/�����C��ض�@����i���3uQ�[�s\?�o�~|���	ѡE�|B�N��f��k���o�>t#��{�\.�����x��	P���x�֭�ggg_PIMo���\J��/A��:���������v�}.nj#�Q�V{r�E"�I:�1eLЅ�D���x���FLGl��9�l\ۗ�����g1�p�b�;�^�v�fپP�ʘ�{(W�œF|O��<�?<<|�~�Z�w�`C�S�I������R�V{��HN*�cʼnjG������)"T\"Re|'�w2d����M�-v��yWy���t!��2<�J���/&T�6��>���L?K��i���l�������f	<�8%q�9
F�=o��z�N^偳X��O������)i&�Ϟ={�E�3�<�݉'�O

�@t�T�5��y�K��D��e���c��q�k�j3�ĺ٧R+Dt�о;o.--�)R�O�
��̑�/�fs�o3�%6�Am�����uβ������ߢo����8i)�5��:�۷/i;�m\�ꫯN�@}�6/�1��& �G]|��n!�b;n_i3���J��'�Y������U�8;������I�7�ǹ��TDJ�J(����>�����7�8_�`�b�U;<;͟�Ҏ�Թ��'��ۦ��b*#�^��\۹Ƨ~��o����ؑ���6�3��9u���.	��
�޽{�U­��Ab�����xWY8�z�	�E����d�n볷f��DQó�[̙lW��>��-�66��m��vW��-��|��%��dc�� �~B�aZ*��Z����3.��k�~��y���������l(�u?,�>�l�ʕ+9r��g�%�6���7;,46������r���uH�}F�����^Չw�,%"Ssе��n�q��S�W��T���.!'W�y�FW{6��)�8B��1}��+W�Z��ǃ�'1܀-D�hy;d�)zmRו}\��/aeg�~ǎ����p،/�ౄ�G*<+��۷o�=88x��r�zStC8�����e,��X��<��r
B}��$	�,<��ϑ��Hy�N���Ƹr�:B�]�Nɕ�cB���TX�t�j�����.��W�8� 5��@�=W��Q���	�طm�!{�V�}F4K��3ʮ8s�|��"�%,��{�m&Ց����EQ쿾�kFކ�ܟ �ޓ���	�:碮��Y�nlu�C��
�c���>�+|��Kz���j
�����i��-�r!�$|�f��g3�v�xppp5if���`�
���T�J\ܽ{�g�޽�ą����z�zW}����2��j��<v�Jė���1ŸE�T�ض�8�$$�Hk�K���F�c&�S�T^�c�S7���W�UH�i���C�n%5�_�Ā�k���8|���7�j__��{ԨD�`����<S900М��9B�U6u����>��k�Hx��U�;&O�����^!�q7F���C�gA�@�K��� ��("cg�5H���x�<O��kN�}Q��ņ"u��mqL��\�{"�ʳ��1�\��u
����ߙ�}���D��
b�T�~���]���˗����,X\b�H���ef�W�T>p6�]��m&ڋ=~�k3�g���ʩI�(ݚ1�%t%4
Dk����a��8���.xUH�a�SZޠ�7$�S�)cB�Ǥr�zYLm�&�֜�a�#��<�j��m��'��	����V��c����i��|���?ض��#F�����W�%&�߇�Y���y��{���fY%9��UJ��6n�,�Sq�w-\���7�_xx���V���!@�t��m�8I˛����W�֟�F�:j���ܨT*g�7�<??��������>���3C�_\�t�5~�O�Ɲk&����)�����]"�ň*�Vd�߆2���о����c��M�|]�S_B�Ão����n��ƭ�8S�����^���y�^+���OOi���k������\�VW������"2�|dooaa��7�|s�Dа�,�C��׋��-Y��;%���J�q�q�V�^fr��.��>R�O}�_���.��rp��P�<�^J�:��A�|]��"6uq�Y���]�nB�5�F6�p��y[2�C�2�A�j0�q�/�����sCCCg�z���r���x��`/��W^y��/���o���$��%�R�iHp���4V�%Y����|�����%�R��1�$�wܗ�����s����pK�'�����<W-�|7]���zöMn�ߵR������0���uS�p�q]�3�����t�����o����;���	�'	=@gkK�-۽{wO__�W�\�����fB@_�|�FyH��J���p�l�D��}'�j���]'&���_?v�%�8�w��Kz�ucC��L%����a���O��+Z��Aa-Ѝ*��`��Ӵ��f�t#\#4n$!�c����ߙ�����
###�	ϊ� �Dm�s�ΎR�T�T*?�_��ޛ1�m}�o
7׬9�NF��$WL��q����l�Ll�Y"�t��T쥸�K�-�Dž����NQ�)���0L�%z���*/��Q:����]}jKkܑ�3���e��x��ws۶m��Í�W��^`��<333��遼�j�

�صk�9��!~p����D.��o�f�Y�T*�/Tv�x���\J8�Hz��_7h��c�x��K=�\���	��...r���U߫|�b&Z���@�Z^y���	]� �+cccz��g�pߺu�a.0���s��,�<سe˖�G���n����D��%�qa&�Ӆ��	`�Vs%<�#��"Ij��x��eK�!����+�<�x\3�R/�q�=L~�"�Q|����w�1Z^t�B�����4
9���9ѹ���T*��o6*rS�^��?�@?DwC��dhccc�'�xⳋ/�-l	Ma��^�,-E&�1�$qu�㊼.���v��
�oNO��!V��'7Ej7�7/4^���l����Q���!`��F�y�v.)1�����u;y7��?C��V�����0��
����$�{��o��������?7<<���ɕP�D���o� ��P�V��~�r��y���$��c����n�!A�����)�C��A@�d��7J�F�a@����3���z}���:�������HV�*C�0uo�kϿ%CCC޳g�-��W���vU����D�/���G���;�Ƙ+�&��4�Ј9��>z�#$m��?o�P3c�]���w��E����c=2]�������2�ޤ�-��k��
-K�-�Β+X��Y�Mv=��p�):��)��ꃐ�H�ס�4O���j�+��`cFWB��Τ�M��}vv��t����?����/���>a��Y~�@wm���ǟj�D��@mˡz�v(��v�$k9�����f^��YjsYz�<�<�s6OI�E��Gh�/���d��M�5v�����cyy�A�T:A��߿߳V�7`�
��v3سgO�֭[�ۿ��W�\yvll���O�U�b�$t���GG{>�Y��,��F�����$�~�9��},�>�%	m���үl,�D�;w��r�T�M0H`��
���Ç�4==���j�W�U�,tjR@���r�1AA��	|���>$n�1��>!X�L_̱�f�C��mS�)�T�ێ�5&mcC2k/�V�:O�ܟ4\&���Ԉ��	a^�8G��m۶��ƀn�,<�0_���
�A��k׮�W�^�_聾�Y�%��'tl�,�t]� ���ODm��R����-�:�n�k )��֓��,z
\Ƙ�㷛�V��}h��Qz]���{XA�Dn߾�&�a�������������_����;�Hq��]��f���0�ah_*�\1�~(�%_�`�Kqi
쐡�<g�̶d�ތ��%����m�p��HI�g��-tŬ��;��E�6[���֭[?�φ�F����a&��>���5ۗ��Zy�7N]�t����]�Z�G��Ʊ"0䮯��ąZ?&��&zb!��K4��׻={k
[^�r	�q�釢���}�W�ƍ"���uc�(�a,R�.5��.ŧ�S��O�ܹ��m�zfff�*Q�	���?_��<�����+���;���� ���,�1�7����i�K�*`m�]�s_�lv��}e��Ҍ6/�!(6)�kݘ,�E)�ߖS·mȋ×�3�#ŷ����J���j����6ǿ(�0(H��������pgǎߺu��k6\��p!@��2gL��\��1�%��bUQ��"��>�*���͗�0�<���w�1�#b���z��U��{ӣ��G�ƫ��������F�1M����<�n���!���c�jF������ѥ��7������!q�*|��^԰ ]�JE�}̹K�)ƔP�Ô����n�,�FY�X�GL�>�3�RJ��?�x�������<��P�@.Uz�����ei�޽߿����.N
苋O��&�%6��|��r~�=���OX��ٲ�w���b�C�[<��X�|�u���"��d1/���yl�����9ƿZ�~��SO��˃���*�V�J��G�;v��=���_�r�ʿ��O�]��Q�~Eg�s��2;�]�>rzH���G��Yy�Aj��2�=/���%���f1F��}�2p�����̕A��߃�T�6��m�%�j�@T򽵆���X���Wg����g<��o����.--U9�W:�+I`&k�F�b��x�c�|�:���|�15�'Nc�خw��C�������)�Z��u,ҙyɵ�Ǭy
���$�fy�#�+� -����'�r������0�g��PY�Ub����K۶m;z�Ν��fUb,V�圩��������6
�=$ۯ�>S\�mb5�D�Z\א�HbȊ��O=���ǣBlH�O����ku�~V�3�@�?�@�y��8l���_���-�F�%�Np�V2jR��5ck�<$2C�P���W'�ͺn�ᶉ}���dž
��RE���l�CB9V�ڌ7�����-��R"�4�*E���*�:W�����m�QF?F��N����wt����Kn�@f�����q��䙿�������?///�i9���ğ-)YNÄtfX�����'`�1+�iN͉�*��"<G��}����|C���KKƆb���&�9��SO]�'&&VÑ8�G� �@��z��>������{�����_�u���������l�tX:K\T\�f�%I�b������S�͋&dl���)F�'C�8�I�'�6p�}�_my'\�.t͋#\	����:,��~?�s�Ώh�X��ݻwc�`�m���z1p6pN���ϳ;�����?;v�7���'K���_*�	cDlȸ�V��q7�C�z�F7�E̒zE�`�s]'[?��A�Ծ�7������t�?`���5�0�"/��Һ;�����L��?����������l6W���Ţ�-6��;I>��*��cf�c��Sf��}��E7���tQ��Z�K�J���0�Ar����`��,0�O�Ʒ�X\�'�Y~}?�|����<���>z�2<<�灁�yN@����.C{��
\
L	�={�ܠc���˗�����f�<�/��4�!ō�7s�>�s��O�n�Ze◜�.�sT����O�L�id���`;]�+�A��[t�~H�3�^�C���`�355�.��C�\^5l߾����ŏo޼�+~����r_���˸on��j�����������&�s�'�ݏ-�h�������r�y�T!��&��c���nP�y ��3����ِG��j���޽O���ǜ�o�� <?�������S+|exx�������6c�]"���s4$H\m�\�U{���Oɼ�p��u9f�6]�sVBU���
W��00I�x\�:�+�_�}�:���mб~@o��h�]���9�b����"-�����~�>���n$���.Wxj�1�y��k����mu��Զm�5��Ա��e̸
%�K��XW%faa��l6�@��-ݳm���xp���z�����হ���M�!��N-�']Go[�(O_VzIb>��2�k�\��@�J/)!(�?�q��ҹ���P�֕�M��A�50��G��)% %����o;3���V�վ�Yè�<"8�~��J�&*Z$(��w~~����[�kz�QAZk^R���x��H�+�*b��2��K�J�%Ĝ{�q�f��,b���g	�o?��o~s���رc��<j����u{l��d�w�Z�������,�.�WD��D�4)`h��ؐ�O�5."�sr�0p�/��b�P�xH�A���CG���m�s�y��wx���j�����~�J�	������u}|,0�@�o�6� �ѻ��p�59l��
?s}iU�y�!E]�C�J��K�7&�}��5"��4��db7Ǽ��!�����}�޽{=sssp��8�O���h��'a�BB�0�+�'�=7�ՅO�Rp���M��f�c<��ٹ�O �
�XQ��.A��2�&�s%�,R�!���@�J�'iS��x�-�Jg���{fffD�:��ZG�4��qN�3 ��5�]�z�>���Jvs�7fۘvr�3ֽ�����-���,ү9�;��W�8�F��ܲe˙��~�������?ߋ��eD	";���###'Xpp�qH���aL�3��R�5�P�!O3���^0����d��}�ڱUC��GWiC�q�Er-m���(�_̸t���#�܏o�XBo�Syې�_X\\�����8Т{3�`�=�:	�c[�n=�„��p�K�{~Ι�@B?�H��'cM�6|%m���+��w�Z�C!ヾ?���R������R��W���j��0��:F?= IqU�����ry��o7�� �l�K�����%9R�ڙ1�Bq��s�	E۶1e�\�b�}yb����K�"��K�'�W1�
]K���lH�����>�A��J���y�f����nvv��Ν;��*T�@:�����T���/��F�Qc�d�l���z��
%��5`�e�Rf�C��)Ƕ^
>��);v��\Es �N��jK��1��T*]�T*�S�����A"�K�.��=88����D��p��ɽ{�~���/���9.G�]5��D��ֱ���Ifd׺�r�������	��%r�q����1UA7�5�M�WFGG�X����
���
�+/�"hya��_뭷����]vC��v�b2�
۷����W��'�l^�R�����x)�X!��1I��fd)�g!%����b�55��m\�x��Ɠ�lii�c���C�Z�K�/��!�S�\t
�<[y�С�w�y�I��g����k�ʩ�q=/z.���9�r�$��rb�)j��a��;����<�###�t���,�լ?�=C�������bf�?�N��K<�f/��h�cr	/�j�j��f�]��'Ch��A f�5�sf8U�����%�{�.�
�爯̤�m�f++�n���^����7}�$��EJ��`ѿ�����[��_*��������ݘmNm;���d����}R�w�Q������~���>l�P�4��T*��Nr�0X��xa1�:���!Q3��*q�f��T^�V�L__*P}y�s��n11��b]��B��n����%��r�r,.1�i�
}�9/_�J�j��8g���R�t�^���^/�{Ϋ�`]��D���\�|׮]߾��:88xmaaaU��r��t]S���������2Jt���"}���\���z>���W3�$���޽���r�����6
��ֽ�a�3�۶m��T*�P*����xv���g�� R3���>#��[@��5�|U\�0&3|HXJs����6��x���1R�|h��|	�qb+��ޫ��N�ј��������`�@�e���e�V��رc��T*s*9�OH�U��)�eɵ^����^_4>�Q��@�+e������������J��^A�?l$�###�:�۶m��
�%�Y�ƗKֵ���D�>���	D�1×��h�<I��0H�k���&�K���G�_v����mo�=77�^1�����{�\���0N�	�`�Y��}��Mnٲ�I}P*�Vl	�|%%b��0v	��1e������Q���tdH���~�:q��'�x����]z��-��%�X�7�ͥJ�rr߾}�����ݻwfG�	)�X�eI�y3@y�b���SDJf�M���.4���� �iŅԤ����s1�5��Ÿ=]��r�I��k׮3XJ����"hxx�۽{����oq�ƍ��8P�լ^"�%b��!����f�U�B��t��΀wc�|�*��5k��n-�����G<�{{{�ر�h�T�|zz�ŕ1*�
~<�����O=�T㗿�������^�ߞ���	���X(|@�	�7��!�]�m�R�C���L��>S�b=b\�]Ǥ����@�PჅ�����j�����S�����_������a7i6�?p��7n�>11q�?���r�l^��7Ş�����ţY��%0m%�����%��1 H��?�̸�Dz�6����q�\�C[8��<}ǥ����[�l9�n��Ѳ��8x<��G��a�X�[�����}���FB�zoooϜ*暁uչ���ğ^ 6�>��cb�s��e�UB��3����"H	�P��7�����?{�������~��/����[���q�x���@�0%���_|�ҍ7^�u�ֳ���C<���Jι�����ٻf�z�=�X�F�f�m��<G����|�"�mǢ��䊶��O�%F�P�f���pU��T*͍���u��vmz���*s	��`]X,�l*��J�Ҥώlݺ�_�l��-.�M�͠n�13�Ef��&�g7e���g!��$����Ÿ�K�����_>����1��?v��֥!@�,S�j��;��O/^|�ԩS/��z\�M���m���n�ޕ0T�w���c����Jƈ�ظ|[?���E��1�o��n3p8�~�KKK����{��_�<<��~0���bC��� ���y��'/�y��Ń$�FX��l+�3WR@�s_	�����e>U@K�Ŋw���DЗ\1�X� R$�F���Э���o���?%����7-����,��o��"1�����g}}}or~z_U���sW	>��:�������x�"�cDk쬾��C"8�`���<�c*Z�@�
�������0�����<�����ڧ�z}���<t>@�Z�ҪP�ց���J��-��({g~~~��*�!�6��*��wR]�C�Ǣ3���R��V�1Ű�g��?���D��Xܶm����}�����������l�$l�����?,--
��?<==�,}�����G�ݖ��%X�㐱 e�޷�ԣ �'��<R���tO�����Yy�w-���j�Vv��-lh�z��'{TY?_�@ �!@�3o�ۍ������^|��/�]����˗��7@�C���M�f�MA���ݾH��:�/L�o�^b8��ߕSA{H��cǎ���z���ݻLNN�,,,D�����Y�r����o^/�J�'����Wo߾}����3����c�C�[�@��@yH����\R�
�D���zݧ���~�`~���}N�s����v�Ķm���5����ձ��`�	J�����,n���ŕ����7n��S�V��j���S�T~$�sC��ѮK��E�2�S����N��ߑ�o�ٳ��f�yv��퓴�2'���~���u�����%�D��;v\&���n#Qwpnnn�+
�j�U��ܺC�J�)Âϻ V�J�sd��:��OH�*�ֳe���}���}��_�Vy����W�z����Woܸ����5`�9<���v���lٲ囡��/^����w�>�9==�j`c�.�m�Ѭ���2?�
y�����O-3���>��JC�QAo�a���!�z_����[�ٔ�o0?Q�l.Wh�Z����n?��sg���g��]���Os�7'y�ux8��_�@�=������.1mfϏ=_�'@�����9�6���������w�n�z��ի�=~�����8��;���B��w�y�Եk�?~� }���%��@%��)��R�x{�h
e��% 4E~CA�4a�ABjL�*��m	]�U���ǐ�L�����⽧�z�;���ݸqc�M����A��������.�g�:T���gΜ�C_
�8U1�,9��+ÿ����b��m9$��.�3�/]׶^�p�QBr�l�a���kD��>��{�N,,,��ҥK+��Q��W���3�0���Ž2������	�'���W���{�…�I`n/��u�>o�<L�Ϥ���~��AZ��l3��Ė�/�;Aj�����xFe�~��k3�k׮�y�/�]�6����ylll���=�܏�>`Cc�yX�ȭ��M��O<���/�^�p�-;i���R�=���?����韹ĭ�b�H�
��Wd�ض\�q�}�����/L��n�{���gϞ�O�<y���o��355�˃���3����T
X5lݺ��駟�w���?������׿�{���_}��f�9B���~�D�>Cn��L�+�z��-a�K����+3h�8���m[3d��F�O���h��$�g�y�˽��gϝ;����[ٽ{wϗ_~����e,Я	���dCW�������g��������Nb�r���r���ׯ��~?}��g�� ��|����YzЗ7�%�s ��c������@Pߩ�Է�J�27>>>w�/'''��#f�إ��ٳ�8��0ɨ�l�xr�"�ܳg�	��.]�4�w������s����ݻwok���c�'���N��� 6����溡�\��.��vC��#A��>^�חK�Rs۶m�I�s�ƍ�ԗ�###/��r�…=_}���Č��@!X�6��eZ��ݻ���7ߜ$���[�F��j�K/�4�h4�����u�Y��_�(�"VO�Z�{�'�m����pW~���x!�o������6�0}}}��훢u����_ںu���>�`vv����u�yu��`�]�r�@�;�
ScccS���oznܸq��ɓc��ټw���j������f�%�[go�/��X/9(��7��3���R�o����i��~`�ί,������������e:�w�ޝ���4888����O�j��G�^���nA�~`]�Pf��0}v������g�yf5���ӧǮ]�64;;;6<<�|��'w�Z�=�f�N��Js<~���O-�=l]�ے��j;���E�2D���B������$��.�@(�Js$�[��������U�?>>�p�{tޫ3�ʍ_oW�G��$P��m.�$���ۻsss�<x�����Α0._�|y��ݻ�����f�Y�uv���.��[��nj��6wy/�g^t��R�����l>*8��*���ʢ�mP�hY���}@dzD�]_XX��Y{چ�!,���6��Ʀ�z��������=�����A��~��5
肜��	�;�%�y�^x����}����ty~~�J�:;;;H-..��6+Q��V��۷W���~����j��f�9KB�g�؎�+H�/�:�hY$a�n�ݻw����=Ǐ_5��J�%d�c�
P3��@��s��ju��xV_/��P�^��~��_�>|��Ν;�N�l��i�
+�ރ���֟���v�'a��p=�����)�ϋ龯�x�:y��0�`�0�``�0��0�``��?v�@���0�����````�`����````�����
````����````�����````����`````����````����````����````����````�����````����`````����````�����````����````����````����`````����````������````����`````����````����````����````����````���%�X����_IEND�B`�PK�][��i-
-
Eultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/logo.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In SVG - Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve">
<style type="text/css">
	.st0{opacity:0.83;enable-background:new    ;}
	.st1{fill:#95F9EF;}
	.st2{opacity:0.53;enable-background:new    ;}
	.st3{fill:url(#SVGID_1_);}
	.st4{opacity:0.7;enable-background:new    ;}
	.st5{fill:url(#SVGID_2_);}
	.st6{fill:#FFFFFF;}
</style>
<g>
	<g class="st0">
		<path class="st1" d="M26.8,88L9,33.5C8,30.7,9.6,27.8,12.2,27L66.8,9.2c2.7-0.9,5.7,0.6,6.4,3.2l17.9,54.6
			c0.9,2.7-0.6,5.7-3.2,6.4l-54.6,18C30.5,92.2,27.6,90.8,26.8,88z"/>
	</g>
	<g class="st2">
		
			<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="4.238" y1="739.9995" x2="95.762" y2="739.9995" gradientTransform="matrix(1 0 0 1 0 -690)">
			<stop  offset="0" style="stop-color:#00E97B"/>
			<stop  offset="1" style="stop-color:#00F9D7"/>
		</linearGradient>
		<path class="st3" d="M44.7,94.3L5.6,52c-1.9-2.1-1.8-5.3,0.3-7.3L48.1,5.4c2.1-1.9,5.3-1.8,7.2,0.3L94.4,48
			c1.9,2.1,1.8,5.3-0.3,7.3L51.9,94.6C50,96.6,46.6,96.4,44.7,94.3z"/>
	</g>
	<g class="st4">
		
			<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="296.5753" y1="-720.5554" x2="368.5928" y2="-720.5554" gradientTransform="matrix(0.9591 0.2829 0.2829 -0.9591 -65.1611 -734.9626)">
			<stop  offset="0" style="stop-color:#00DBDE"/>
			<stop  offset="1" style="stop-color:#FC00FF"/>
		</linearGradient>
		<path class="st5" d="M69.2,93.3L10.6,76.1c-2.9-0.8-4.5-3.9-3.7-6.8l17.2-58.6c0.8-2.9,3.9-4.5,6.8-3.7l58.6,17.2
			c2.9,0.8,4.5,3.9,3.7,6.8L75.9,89.6C75.1,92.5,72,94.1,69.2,93.3z"/>
	</g>
	<g>
		<path class="st6" d="M51.9,39.1L51.9,39.1h14.4V28.4H45.9c-1.9,0-3.7,0.3-5.3,1.1c-1.6,0.6-3.1,1.8-4.4,2.9
			c-1.3,1.3-2.2,2.7-2.9,4.4c-0.4,0.7-0.6,1.6-0.8,2.4L51.9,39.1L51.9,39.1z"/>
		<path class="st6" d="M66.9,53.3c-0.6-1.6-1.8-3.2-2.9-4.4c-1.3-1.3-2.7-2.2-4.4-2.9c-1.6-0.6-3.5-1.1-5.3-1.1h-2.4h-6H32.5
			c0.2,0.9,0.5,1.7,0.8,2.6c0.6,1.6,1.8,3.2,2.9,4.4c1.3,1.3,2.7,2.2,4.4,2.9c1.6,0.8,3.5,1.1,5.3,1.1h8.4c0.5,0,0.8,0,1.1,0.2
			c0.3,0.2,0.6,0.3,0.9,0.6c0.3,0.3,0.5,0.6,0.6,0.9c0.2,0.3,0.2,0.8,0.2,1.1c0,0.5,0,0.8-0.2,1.1c-0.2,0.3-0.3,0.6-0.6,0.9
			c-0.3,0.3-0.6,0.5-0.9,0.6c-0.3,0.2-0.8,0.2-1.1,0.2h-20v10.8h19.8c1.9,0,3.7-0.3,5.5-1.1c1.6-0.6,3.2-1.8,4.4-2.9
			c1.3-1.3,2.2-2.7,2.9-4.4c0.6-1.6,1.1-3.5,1.1-5.3C68,56.6,67.7,54.9,66.9,53.3z"/>
	</g>
</g>
</svg>
PK�][����Fultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/style.cssnu�[���@font-face {
	font-family: ast-block-templates;
	src: url( "fonts/ast-block-templates.eot?p3u0q1" );
	src:
		url( "fonts/ast-block-templates.eot?p3u0q1#iefix" ) format( "embedded-opentype" ),
		url( "fonts/ast-block-templates.ttf?p3u0q1" ) format( "truetype" ),
		url( "fonts/ast-block-templates.woff?p3u0q1" ) format( "woff" ),
		url( "fonts/ast-block-templates.svg?p3u0q1#ast-block-templates" ) format( "svg" );
	font-weight: 400;
	font-style: normal;
	font-display: block;
}

[class^="ast-block-templates-icon-"],
[class*=" ast-block-templates-icon-"] {

	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: ast-block-templates, sans-serif !important;
	speak: never;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ast-block-templates-icon-chevron-left::before {
	content: "\e904";
}

.ast-block-templates-icon-pages::before {
	content: "\e902";
}

.ast-block-templates-icon-patterns::before {
	content: "\e903";
}

.ast-block-templates-icon-wireframe::before {
	content: "\e900";
}

.ast-block-templates-icon-refresh::before {
	content: "\e901";
}
PK�][��.%%Cultimate-addons-for-gutenberg/lib/gutenberg-templates/assets/st.svgnu�[���<svg width="90" height="90" viewBox="0 0 90 90" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.2429 7.34463H18.3616C12.2771 7.34463 7.34463 12.2771 7.34463 18.3616V71.2429C7.34463 77.3274 12.2771 82.2598 18.3616 82.2598H71.2429C77.3274 82.2598 82.2598 77.3274 82.2598 71.2429V18.3616C82.2598 12.2771 77.3274 7.34463 71.2429 7.34463ZM18.3616 0C8.22076 0 0 8.22075 0 18.3616V71.2429C0 81.3837 8.22075 89.6045 18.3616 89.6045H71.2429C81.3837 89.6045 89.6045 81.3837 89.6045 71.2429V18.3616C89.6045 8.22076 81.3837 0 71.2429 0H18.3616Z" fill="white"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M54.1449 28.1896C53.9728 28.0356 53.7911 27.8882 53.5998 27.7474C51.9414 26.5264 49.6907 25.9159 46.8478 25.9159C44.916 25.9159 43.285 26.1892 41.9546 26.7359C40.6243 27.2644 39.6037 28.0025 38.893 28.9502C38.1294 29.995 36.829 30.8418 35.7046 30.2012C34.8223 29.6985 34.0076 29.0784 33.2839 28.3548C31.9339 27.0047 30.944 25.3377 30.405 23.5061C30.1674 22.6988 30.3776 21.8165 31.0133 21.265C32.434 20.0323 34.0947 18.9948 35.9954 18.1524C39.2028 16.7309 42.8476 16.0202 46.9298 16.0202C51.0849 16.0202 54.7115 16.7309 57.8095 18.1524C60.9259 19.5739 63.3496 21.5512 65.0809 24.0843C65.7142 25.011 66.2354 25.9913 66.6443 27.0252C67.8571 30.0913 65.0579 32.8866 61.7607 32.8866C59.1869 32.8866 57.1265 30.9615 55.18 29.1429L55.1799 29.1428C54.8321 28.8178 54.4878 28.4962 54.1449 28.1896ZM37.1987 34.2544C37.6871 34.0635 38.21 34.3524 38.4829 34.8001C38.9568 35.5473 39.6037 36.1942 40.4238 36.7409C41.2439 37.2694 42.1915 37.7342 43.2667 38.1351C44.342 38.5178 45.4901 38.8458 46.7111 39.1192L51.7409 40.322C54.183 40.8687 56.4245 41.5977 58.4656 42.5089C60.5067 43.4201 62.2744 44.5408 63.7688 45.8712C65.2632 47.2015 66.4204 48.7688 67.2405 50.573C68.0788 52.3772 68.5071 54.4456 68.5253 56.7783C68.5071 60.2044 67.6323 63.1749 65.901 65.6898C64.188 68.1865 61.7095 70.1274 58.4656 71.5124C55.2399 72.8792 51.3491 73.5626 46.7931 73.5626C42.2735 73.5626 38.3371 72.8701 34.9839 71.4851C31.6489 70.1001 29.0429 68.0499 27.1658 65.3345C26.2995 64.0605 25.6252 62.646 25.1428 61.091C24.1699 57.9547 26.943 55.1928 30.2268 55.1928H30.6526C33.4909 55.1928 35.5992 57.6279 37.3075 59.8946C38.2734 61.1338 39.5582 62.0724 41.1619 62.7102C42.7838 63.3298 44.6153 63.6396 46.6564 63.6396C48.6611 63.6396 50.4015 63.3481 51.8776 62.7649C53.372 62.1817 54.5292 61.3707 55.3493 60.332C56.1694 59.2932 56.5794 58.0995 56.5794 56.7509C56.5794 55.4935 56.2058 54.4365 55.4586 53.58C54.7297 52.7234 53.6545 51.9945 52.233 51.3931C50.8297 50.7917 49.1076 50.245 47.0665 49.7529L40.9705 48.2221C36.9718 47.2494 33.6859 45.8124 31.1129 43.9111C30.4174 43.3972 30.1608 42.4925 30.405 41.6629C30.9439 39.8315 31.9336 38.1645 33.2834 36.8145C34.4003 35.6975 35.7342 34.827 37.1987 34.2544ZM29.9545 26.532L29.4188 24.7118C29.3957 24.6328 29.3476 24.5633 29.2818 24.5139C29.2159 24.4645 29.1358 24.4378 29.0535 24.4378C28.9712 24.4378 28.8911 24.4645 28.8252 24.5139C28.7593 24.5633 28.7113 24.6328 28.6882 24.7118L28.1532 26.532C27.7938 27.7529 27.1338 28.8641 26.2338 29.764C25.3338 30.6639 24.2224 31.3236 23.0014 31.6829L21.1811 32.2186C20.8166 32.3267 20.8166 32.8426 21.1811 32.9491L23.0014 33.4849C24.2222 33.8442 25.3335 34.5041 26.2334 35.4039C27.1333 36.3038 27.7931 37.415 28.1525 38.6358L28.6882 40.4568C28.7955 40.8205 29.3115 40.8205 29.4188 40.4568L29.9545 38.6365C30.3138 37.4156 30.9736 36.3043 31.8735 35.4042C32.7734 34.5042 33.8847 33.8443 35.1056 33.4849L36.9266 32.9491C37.2904 32.8419 37.2904 32.3259 36.9266 32.2194L35.1064 31.6837C33.8853 31.3243 32.7738 30.6645 31.8738 29.7644C30.9738 28.8644 30.3138 27.753 29.9545 26.532ZM23.461 37.2817L23.6218 37.8277C23.7296 38.194 23.9275 38.5275 24.1975 38.7975C24.4676 39.0675 24.801 39.2654 25.1673 39.3732L25.7134 39.5339C25.8225 39.5659 25.8225 39.7207 25.7134 39.7529L25.1671 39.9136C24.8008 40.0214 24.4674 40.2194 24.1975 40.4894C23.9275 40.7594 23.7295 41.0928 23.6218 41.4591L23.461 42.0051C23.4288 42.1143 23.2741 42.1143 23.2419 42.0051L23.0812 41.4589C22.9733 41.0926 22.7754 40.7593 22.5054 40.4893C22.2354 40.2193 21.9021 40.0214 21.5358 39.9136L20.9897 39.7529C20.8804 39.7209 20.8804 39.5661 20.9897 39.5337L21.5358 39.373C21.9021 39.2652 22.2355 39.0673 22.5055 38.7973C22.7756 38.5274 22.9735 38.194 23.0814 37.8277L23.2419 37.2817C23.2488 37.2579 23.2632 37.2371 23.283 37.2223C23.3027 37.2075 23.3268 37.1995 23.3515 37.1995C23.3762 37.1995 23.4002 37.2075 23.4199 37.2223C23.4397 37.2371 23.4541 37.2579 23.461 37.2817ZM22.4142 22.428L22.1642 21.5786C22.1535 21.5417 22.131 21.5093 22.1003 21.4863C22.0696 21.4632 22.0322 21.4508 21.9938 21.4508C21.9554 21.4508 21.918 21.4632 21.8872 21.4863C21.8565 21.5093 21.8341 21.5417 21.8233 21.5786L21.5737 22.428C21.4059 22.9978 21.0979 23.5164 20.6779 23.9363C20.2579 24.3562 19.7392 24.6641 19.1695 24.8318L18.32 25.0818C18.1499 25.1322 18.1499 25.373 18.32 25.4227L19.1695 25.6727C19.7392 25.8404 20.2578 26.1483 20.6777 26.5683C21.0977 26.9882 21.4056 27.5068 21.5733 28.0765L21.8233 28.9263C21.8734 29.096 22.1142 29.096 22.1642 28.9263L22.4142 28.0768C22.5819 27.507 22.8898 26.9884 23.3098 26.5684C23.7297 26.1484 24.2483 25.8404 24.8181 25.6727L25.6679 25.4227C25.8377 25.3726 25.8377 25.1319 25.6679 25.0821L24.8184 24.8321C24.2486 24.6645 23.7299 24.3565 23.3099 23.9365C22.8899 23.5165 22.5819 22.9978 22.4142 22.428Z" fill="white"/>
</svg>PK�][��G66Qultimate-addons-for-gutenberg/lib/gutenberg-templates/ast-block-plugin-loader.phpnu�[���<?php
/**
 * Plugin Loader.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates;

use Gutenberg_Templates\Inc\Api\Api_Init;
use Gutenberg_Templates\Inc\Importer\Sync_Library;
use Gutenberg_Templates\Inc\Importer\Sync_Library_WP_CLI;
use Gutenberg_Templates\Inc\Importer\Plugin;
use Gutenberg_Templates\Inc\Importer\Image_Importer;
use Gutenberg_Templates\Inc\Importer\Updater;
use Gutenberg_Templates\Inc\Content\Ai_Content;
use Gutenberg_Templates\Inc\Traits\Upgrade;
use Gutenberg_Templates\Inc\Importer\Template_Kit_Importer;
use Gutenberg_Templates\Inc\Block\Spectra_AI_Block;
use Gutenberg_Templates\Inc\Classes\Ast_Block_Templates_Zipwp_Api;
use Gutenberg_Templates\Inc\Classes\Ast_Block_Templates_Notices;

/**
 * Ast_Block_Plugin_Loader
 *
 * @since 2.0.0
 */
class Ast_Block_Plugin_Loader {

	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 2.0.0
	 */
	private static $instance = null;

	/**
	 * Initiator
	 *
	 * @since 2.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Autoload classes.
	 *
	 * @param string $class class name.
	 *
	 * @return void
	 */
	public function autoload( $class ) {
		if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
			return;
		}

		$class_to_load = $class;

		$filename = strtolower(
			(string) preg_replace(
				array( '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ),
				array( '', '$1-$2', '-', DIRECTORY_SEPARATOR ),
				$class_to_load
			)
		);

		$file = AST_BLOCK_TEMPLATES_DIR . $filename . '.php';

		// if the file redable, include it.
		if ( is_readable( $file ) ) {
			require_once $file;
		}
	}

	/**
	 * Constructor
	 *
	 * @since 2.0.0
	 */
	public function __construct() {

		spl_autoload_register( array( $this, 'autoload' ) );

		add_action( 'wp_loaded', array( $this, 'load_textdomain' ) );
		add_action( 'wp_loaded', array( $this, 'load_classes' ), 999 );
	}

	/**
	 * Loads plugin classes as per requirement.
	 *
	 * @return void
	 * @since  2.0.0
	 */
	public function load_classes() {

		require_once AST_BLOCK_TEMPLATES_DIR . 'inc/classes/ast-block-templates-notices.php';

		if ( ! Ast_Block_Templates_Notices::instance()->has_file_read_write() ) {
			return;
		}

		Ast_Block_Templates_Zipwp_Api::instance();
		Api_Init::instance();
		Template_Kit_Importer::instance();
		Plugin::instance();
		Image_Importer::instance();
		Sync_Library::instance();
		Sync_Library_WP_CLI::instance();
		Ai_Content::instance();
		Upgrade::instance();
		Updater::instance();
		//phpcs:disable Squiz
		// Spectra_AI_Block::get_instance();
		//phpcs:enable Squiz

	}

	/**
	 * Load Plugin Text Domain.
	 * This will load the translation textdomain depending on the file priorities.
	 *      1. Global Languages /wp-content/languages/gutenberg-templates/ folder
	 *      2. Local dorectory /wp-content/plugins/gutenberg-templates/languages/ folder
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function load_textdomain() {
		// Default languages directory.
		$lang_dir = AST_BLOCK_TEMPLATES_DIR . 'languages/';

		/**
		 * Filters the languages directory path to use for plugin.
		 *
		 * @param string $lang_dir The languages directory path.
		 */
		$lang_dir = apply_filters( 'wpb_languages_directory', $lang_dir );

		// Traditional WordPress plugin locale filter.
		global $wp_version;

		$get_locale = get_locale();

		if ( $wp_version >= 4.7 ) {
			$get_locale = get_user_locale();
		}

		/**
		 * Language Locale for plugin
		 *
		 * @var string $get_locale The locale to use.
		 * Uses get_user_locale()` in WordPress 4.7 or greater,
		 * otherwise uses `get_locale()`.
		 */
		$locale = apply_filters( 'plugin_locale', $get_locale, 'ast-block-templates' );
		$mofile = sprintf( '%1$s-%2$s.mo', 'ast-block-templates', $locale );

		// Setup paths to current locale file.
		$mofile_global = WP_LANG_DIR . '/plugins/' . $mofile;
		$mofile_local  = $lang_dir . $mofile;

		if ( file_exists( $mofile_global ) ) {
			// Look in global /wp-content/languages/gutenberg-templates/ folder.
			load_textdomain( 'ast-block-templates', $mofile_global );
		} elseif ( file_exists( $mofile_local ) ) {
			// Look in local /wp-content/plugins/gutenberg-templates/languages/ folder.
			load_textdomain( 'ast-block-templates', $mofile_local );
		} else {
			// Load the default language files.
			load_plugin_textdomain( 'ast-block-templates', false, $lang_dir );
		}
	}
}

/**
 * Kicking this off by calling 'get_instance()' method
 */
Ast_Block_Plugin_Loader::get_instance();
PK�][��ݠ4�4Pultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/content/ai-content.phpnu�[���<?php
/**
 * Sync Library
 *
 * @package Ast Block Templates
 * @since 1.0.0
 */

namespace Gutenberg_Templates\Inc\Content;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
use Gutenberg_Templates\Inc\Importer\Plugin;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Images;

/**
 * Sync Library
 *
 * @since 1.0.0
 */
class Ai_Content {

	use Instance;

	/**
	 * Constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		$this->define_required_constants();
		add_action( 'wp_ajax_ast-block-templates-ai-content', array( $this, 'save_user_details' ) );
		add_action( 'wp_ajax_ast-block-templates-regenerate', array( $this, 'generate_ai_content' ) );
		add_action( 'wp_ajax_ast-block-templates-reset-business-details', array( $this, 'reset_business_details' ) );
		add_action( 'wp_footer', array( $this, 'footer' ) );
		add_action( 'ast_templates_download_selected_images', array( $this, 'download_selected_images' ) );
	}

	/**
	 * Debug mode for testing.
	 *
	 * @return void
	 */
	public function footer() {
		if ( isset( $_GET['debug'] ) && Helper::instance()->is_debug_mode() ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			echo '<xmp>';
			print_r( get_option( 'ast_block_ai_content_log', array() ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
			print_r( get_option( 'zipwp_user_business_details' ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_print_r
			echo '</xmp>';
		}
	}

	/**
	 * Define Required Constants
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function define_required_constants() {
		define( 'AST_BLOCK_TEMPLATES_IMAGE_COUNT', 20 );
	}

	/**
	 * Reset Business details
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function reset_business_details() {

		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-reset-business-details', 'security' );

		delete_option( 'ast-block-templates-show-onboarding' );
		delete_option( 'zipwp_user_business_details' );
		delete_option( 'ast_block_ai_content_log' );
		delete_option( 'ast-templates-ai-content' );

		wp_send_json_success(
			array(
				'status'  => true,
			)
		);
	}

	/**
	 * Generate AI based blocks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function generate_ai_content() {
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ai-content', 'security' );

		$details = Importer_Helper::get_business_details();

		$language = 'en';
		if ( isset( $details['language'] ) ) {
			$language = is_array( $details['language'] ) ? $details['language']['code'] : $details['language'];
		}

		$post_data = array(
			'business_name' => isset( $details['business_name'] ) ? sanitize_text_field( $details['business_name'] ) : '',
			'business_description' => isset( $details['business_description'] ) ? sanitize_text_field( $details['business_description'] ) : '',
			'business_category' => isset( $details['business_category'] ) ? sanitize_text_field( $details['business_category'] ) : '',
			'category' => isset( $_POST['category'] ) ? intval( $_POST['category'] ) : '',
			'token' => isset( $details['token'] ) ? $details['token'] : '',
			'regenerate' => isset( $_POST['regenerate'] ) ? filter_var( $_POST['regenerate'], FILTER_VALIDATE_BOOLEAN ) : false,
			'block_type' => isset( $_POST['block_type'] ) ? sanitize_text_field( $_POST['block_type'] ) : 'block',
			'is_last_category' => isset( $_POST['is_last_category'] ) ? filter_var( $_POST['is_last_category'], FILTER_VALIDATE_BOOLEAN ) : false,
			'language_slug' => $language,
			'language_name' => isset( $details['language']['name'] ) ? sanitize_text_field( $details['language']['name'] ) : '',
		);

		$category_content = get_option( 'ast-templates-ai-content', array() );

		if ( ! $post_data['regenerate'] ) {
			if ( isset( $category_content[ $post_data['category'] ] ) ) {
				wp_send_json_success(
					array(
						'data' => $category_content,
						'status'  => true,
						'extra' => 'from club saved already',
						'single' => $category_content[ $post_data['category'] ],
						'spec_credit_details'   => Plugin::instance()->get_spec_credit_details(),
					)
				);
			}
		}

		$this->get_ai_content( $post_data, $category_content );
	}

	/**
	 * Get Club of Category
	 *
	 * @since 2.0.0
	 * @param array<int, array<string, mixed>> $categories Categories.
	 * @param array<string, mixed>             $post_data Post Data.
	 *
	 * @return string
	 */
	public function get_club_of_category( $categories, $post_data ) {

		$club_categories = null;

		foreach ( $categories as $single_category ) {
			if ( $single_category['id'] === $post_data['category'] ) {
				$club_categories = $single_category['club'] ?? null;
				break;
			}
		}
		return $club_categories;
	}

	/**
	 * Get Matching Categories
	 *
	 * @since 2.0.0
	 * @param array<int, array<string, mixed>> $categories Categories.
	 * @param string                           $club_categories Club Categories.
	 *
	 * @return array<int, array<string, mixed>>
	 */
	public function get_matching_categories( $categories, $club_categories ) {

		$matching_categories = array();

		if ( null !== $club_categories ) {
			// Find all other categories with the same club.
			foreach ( $categories as $single_category ) {
				if ( isset( $single_category['club'] ) && $single_category['club'] === $club_categories ) {
					$matching_categories[] = $single_category;
				}
			}
		}

		return $matching_categories;
	}

	/**
	 * Get AI Content
	 *
	 * @since 2.0.0
	 * @param array<string, mixed> $post_data Post Data.
	 * @param string               $category_content Categories content.
	 *
	 * @return void
	 */
	public function get_ai_content( $post_data, $category_content ) {

		$api_endpoint = Helper::instance()->is_debug_mode() ? AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/content?debug=yes' : AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/content';

		$body = wp_json_encode( $post_data );
		$request_args = array(
			'body' => is_string( $body ) ? $body : '',
			'headers' => array(
				'Content-Type' => 'application/json',
			),
			'timeout' => 50,
		);
		$response = wp_safe_remote_post( $api_endpoint, $request_args );

		$log = get_option( 'ast_block_ai_content_log', array() );

		$log[ $post_data['category'] ] = array();
		if ( is_wp_error( $response ) ) {
			$log[ $post_data['category'] ] = 'Error: ' . $response->get_error_message();
			update_option( 'ast_block_ai_content_log', $log );
			wp_send_json_error(
				array(
					'data' => 'Error: ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		} else {
			$response_code = wp_remote_retrieve_response_code( $response );
			$response_body = wp_remote_retrieve_body( $response );

			$response_data = json_decode( $response_body, true );

			if ( 200 === $response_code ) {
				if ( $response_data['status'] ) {

					if ( ! $post_data['regenerate'] ) {
						$categories = Helper::instance()->get_block_template_category();
						// Find the club of the current category.
						$club = $this->get_club_of_category( $categories, $post_data );
						// Find all other categories with the same club.
						$matching_categories = $this->get_matching_categories( $categories, $club );

						// Save same content for all categories with same club.
						foreach ( $matching_categories as $m_category ) {
							$category_content[ $m_category['id'] ] = $response_data['content'];
						}
						$category_content[ $post_data['category'] ] = $response_data['content'];
						update_option( 'ast-templates-ai-content', $category_content );
					} else {
						$category_content[ $post_data['category'] ] = $response_data['content'];
						update_option( 'ast-templates-ai-content', $category_content );
					}

					$log[ $post_data['category'] ] = $response_data['debug'];
					update_option( 'ast_block_ai_content_log', $log );

					// Set the new user flag to 'no'.
					if ( get_option( 'ast-block-templates-new-user', 'yes' ) === 'yes' ) {
						update_option( 'ast-block-templates-new-user', 'no' );
					}

					if ( Helper::instance()->is_debug_mode() ) {
						wp_send_json_success(
							array(
								'data' => $category_content,
								'status'  => true,
								'extra' => $response_data['debug'],
								'single' => $category_content[ $post_data['category'] ],
								'spec_credit_details'   => Plugin::instance()->get_spec_credit_details(),
							)
						);
					} else {
						wp_send_json_success(
							array(
								'data' => $category_content,
								'status'  => true,
								'spec_credit_details'   => Plugin::instance()->get_spec_credit_details(),
							)
						);
					}
				} else {
					$log[ $post_data['category'] ] = $response_data['data'];
					update_option( 'ast_block_ai_content_log', $log );
					wp_send_json_error(
						array(
							'data' => 'Failed ' . $response_data['data'],
							'status'  => false,
						)
					);
				}
			} else {
				$log[ $post_data['category'] ] = $response_code . ' - Failed';
				update_option( 'ast_block_ai_content_log', $log );
				wp_send_json_error(
					array(
						'data' => 'Failed',
						'status'  => false,
						'code' => $response_data['code'],
						'error' => $response_data['message'],
					)
				);
			}
		}
	}

	/**
	 * Save user details
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function save_user_details() {

		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ai-content', 'security' );

		$keywords = isset( $_POST['image_keyword'] ) ? json_decode( wp_unslash( $_POST['image_keyword'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
		$images = isset( $_POST['images'] ) ? json_decode( wp_unslash( $_POST['images'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
		$social_profiles = isset( $_POST['social_profiles'] ) ? json_decode( wp_unslash( $_POST['social_profiles'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
		$save_only = isset( $_POST['save_only'] ) ? filter_var( $_POST['save_only'], FILTER_VALIDATE_BOOLEAN ) : false;

		foreach ( $keywords as $key => $keyword ) {
			$keywords[ $key ] = sanitize_text_field( wp_unslash( $keyword ) );
		}

		if ( ! empty( $images ) ) {
			foreach ( $images as $key => $image ) {
				foreach ( $image as $j => $image_attr ) {
					switch ( $image_attr ) {
						case 'author_name':
						case 'orientation':
						case 'author_url':
						case 'description':
						case 'engine':
						case 'id':
							$images[ $key ][ $image_attr ] = sanitize_text_field( wp_unslash( $image_attr ) );
							break;

						case 'engine_url':
						case 'author_url':
						case 'optimized_url':
						case 'url':
							$images[ $key ][ $image_attr ] = esc_url_raw( wp_unslash( $image_attr ) );
							break;
					}
				}
			}
		}

		$language = isset( $_POST['language'] ) ? json_decode( wp_unslash( $_POST['language'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

		$business_details = get_option( 'zipwp_user_business_details', array() );
		$business_details['business_name'] = isset( $_POST['business_name'] ) ? sanitize_text_field( wp_unslash( $_POST['business_name'] ) ) : '';
		$business_details['business_description'] = isset( $_POST['business_desc'] ) ? sanitize_text_field( wp_unslash( $_POST['business_desc'] ) ) : '';
		$business_details['business_category'] = isset( $_POST['business_category'] ) ? sanitize_text_field( wp_unslash( $_POST['business_category'] ) ) : '';
		$business_details['images'] = $images;
		$business_details['image_keyword'] = $keywords;
		$business_details['business_address'] = ( isset( $_POST['business_address'] ) ) ? sanitize_text_field( wp_unslash( $_POST['business_address'] ) ) : '';
		$business_details['business_phone']   = ( isset( $_POST['business_phone'] ) ) ? sanitize_text_field( wp_unslash( $_POST['business_phone'] ) ) : '';
		$business_details['business_email']   = ( isset( $_POST['business_email'] ) ) ? sanitize_email( wp_unslash( $_POST['business_email'] ) ) : '';
		$business_details['social_profiles']  = $social_profiles;
		$business_details['language']  = $language;

		update_option( 'ast-block-templates-show-onboarding', 'no' );
		update_option( 'zipwp_user_business_details', $business_details );

		if ( ! $save_only ) {
			delete_option( 'ast-templates-ai-content' );
		}

		// Schedule event to download images in background.
		wp_schedule_single_event( time() + 1, 'ast_templates_download_selected_images' );

		wp_send_json_success(
			array(
				'status'  => true,
				'images' => $images,
			)
		);
	}

	/**
	 * Download Selected Images
	 *
	 * @since 2.0.17
	 *
	 * @return void
	 */
	public function download_selected_images() {

		$image = get_option( 'zipwp_user_business_details', array() );
		$all_images = isset( $image['images'] ) ? $image['images'] : array();

		if ( empty( $all_images ) ) {
			return;
		}

		$images = $all_images;
		$downloaded_ids = array();

		foreach ( $images as $image ) {

			$image = array(
				'url' => $image['url'],
				'id'  => $image['id'],
				'description'  => $image['description'],
				'engine'  => $image['engine'],
			);
			$image_id = Images::instance()->download_image( $image );
			$downloaded_ids[ $image['id'] ] = $image_id;
		}

		update_option( 'ast_block_downloaded_images', $downloaded_ids );
	}

}
PK�][�A��Kultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/content/error_lognu�[���[27-Oct-2025 06:15:26 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/content/ai-content.php on line 22
PK�][��V'@@Kultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/classes/error_lognu�[���[27-Oct-2025 06:08:48 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/classes/ast-block-templates-notices.php on line 18
[27-Oct-2025 06:08:49 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/classes/ast-block-templates-zipwp-api.php on line 19
PK�][������aultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/classes/ast-block-templates-notices.phpnu�[���<?php
/**
 * Ast BlockTemplates
 *
 * @since 2.2.4
 * @package Astra Sites
 */

namespace Gutenberg_Templates\Inc\Classes;

use Gutenberg_Templates\Inc\Traits\Instance;

if ( ! class_exists( 'Ast_Block_Templates_Notices' ) ) :

	/**
	 * Ast BlockTemplates
	 */
	class Ast_Block_Templates_Notices {

		use Instance;

		/**
		 * Check file read/write permissions and process.
		 *
		 * @since 2.2.4
		 * @return bool
		 */
		public function has_file_read_write() {

			if ( defined( 'WP_CLI' ) && WP_CLI ) {
				return true;
			}

			$upload_dir = self::log_dir();

			$file_created = self::get_filesystem()->put_contents( $upload_dir['path'] . 'index.html', '' );
			if ( ! $file_created ) {
				add_action( 'admin_notices', array( $this, 'file_permission_notice' ) );
				return false;
			}

			return true;
		}

		/**
		 * File Permission Notice
		 *
		 * @since 2.0.0
		 * @return void
		 */
		public function file_permission_notice() {
			
			$notice = __( 'File Permissions Needed - Importing patterns, pages, and templates from Design Library requires proper file permissions. For guidance on resolving this issue and ensuring smooth importing processes, please refer to the accompanying documentation.', 'ultimate-addons-for-gutenberg' );
			?>
			<div class="notice notice-error ast-block-templates-must-notices ast-block-templates-file-permission-issue">
				<p><?php echo esc_html( $notice ); ?></p>
				<p><?php echo esc_html( __( 'Doc: ', 'ultimate-addons-for-gutenberg' ) ); ?><a href="https://wpastra.com/docs/could-not-store-files-in-wp-content-folder/" target="__blank"><?php echo esc_html( __( 'Resolve file permission issue', 'ultimate-addons-for-gutenberg' ) ); ?></a></p>
			</div>
			<?php
		}


		/**
		 * Get an instance of WP_Filesystem_Direct.
		 *
		 * @since 2.0.0
		 * @return mixed A WP_Filesystem_Direct instance.
		 */
		public static function get_filesystem() {
			global $wp_filesystem;

			require_once ABSPATH . '/wp-admin/includes/file.php';

			WP_Filesystem();

			return $wp_filesystem;
		}

		/**
		 * Log file directory
		 *
		 * @since 2.2.4
		 * @param  string $dir_name Directory Name.
		 * @return array<string, string>   Uploads directory array.
		 */
		public static function log_dir( $dir_name = 'ast-block-templates-json' ) {

			$upload_dir = wp_upload_dir();

			// Build the paths.
			$dir_info = array(
				'path' => $upload_dir['basedir'] . '/' . $dir_name . '/',
				'url'  => $upload_dir['baseurl'] . '/' . $dir_name . '/',
			);

			// Create the upload dir if it doesn't exist.
			if ( ! file_exists( $dir_info['path'] ) ) {

				// Create the directory.
				wp_mkdir_p( $dir_info['path'] );

				// Add an index file for security.
				self::get_filesystem()->put_contents( $dir_info['path'] . 'index.html', '' );

				// Add an .htaccess for security.
				self::get_filesystem()->put_contents( $dir_info['path'] . '.htaccess', 'deny from all' );
			}

			return $dir_info;
		}
	}
	
	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	Ast_Block_Templates_Notices::instance();

endif;
PK�][�1���cultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/classes/ast-block-templates-zipwp-api.phpnu�[���<?php
/**
 * Handle ZipWP API calls.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace Gutenberg_Templates\Inc\Classes;

use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Traits\Instance;

/**
 * AST Block Templates ZipWP API
 *
 * @since {{since}}
 */
class Ast_Block_Templates_Zipwp_Api {

	use Instance;

	/**
	 * Constructor
	 *
	 * @since 2.1.13
	 */
	public function __construct() {
		add_action( 'rest_api_init', array( $this, 'register_route' ) );
	}

	/**
	 * Get api domain
	 *
	 * @since 2.1.13
	 * @return string
	 */
	public function get_api_domain() {
		return ( defined( 'ZIPWP_API' ) ? ZIPWP_API : 'https://api.zipwp.com/api/' );
	}

	/**
	 * Get API headers
	 *
	 * @since 2.1.13
	 * @return array<string, string>
	 */
	public function get_api_headers() {
		return array(
			'Content-Type' => 'application/json',
			'Accept' => 'application/json',
			'Authorization' => 'Bearer ' . Helper::decrypt( Helper::get_setting( 'zip_token' ) ),
		);
	}

	/**
	 * Get api namespace
	 *
	 * @since 2.1.13
	 * @return string
	 */
	public function get_api_namespace() {
		return 'zipwp/v1';
	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Register route
	 *
	 * @since 2.1.13
	 * @return void
	 */
	public function register_route() {
		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			'/search-category/',
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'search_business_category' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'keyword' => array(
							'type'     => 'string',
							'sanitize_callback' => 'sanitize_text_field',
							'required' => true,
						),
					),
				),
			)
		);

		register_rest_route(
			$namespace,
			'/site-languages/',
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_site_languages' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);
	}

	/**
	 * Search business category.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function search_business_category( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$keyword = $request['keyword'];
		$api_endpoint = $this->get_api_domain() . 'sites/business/search?q=' . $keyword;

		$request_args = array(
			'headers' => $this->get_api_headers(),
			'timeout' => 100,
		);
		$response = wp_safe_remote_get( $api_endpoint, $request_args );
		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		}
		$response_code = wp_remote_retrieve_response_code( $response );
		$response_body = wp_remote_retrieve_body( $response );
		if ( 200 === $response_code ) {
			$response_data = json_decode( $response_body, true );
			wp_send_json_success(
				array(
					'data' => $response_data['results'],
					'status'  => true,
				)
			);

		} else {
			wp_send_json_error(
				array(
					'data' => 'Failed - ' . $response_body,
					'status'  => false,

				)
			);
		}
	}

	/**
	 * Get ZipWP Languages list.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get_site_languages( $request ) {
		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$api_endpoint = $this->get_api_domain() . 'sites/languages/';
		$request_args = array(
			'headers' => $this->get_api_headers(),
			'timeout' => 100,
		);
		$response = wp_safe_remote_get( $api_endpoint, $request_args );

		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		}
		$response_code = wp_remote_retrieve_response_code( $response );
		$response_body = wp_remote_retrieve_body( $response );
		if ( 200 === $response_code ) {
			$response_data = json_decode( $response_body, true );
			if ( $response_data ) {
				wp_send_json_success(
					array(
						'data' => $response_data['data'],
						'status'  => true,
					)
				);
			}
			wp_send_json_error(
				array(
					'data' => $response_data,
					'status'  => false,

				)
			);
		}
		wp_send_json_error(
			array(
				'data' => 'Failed ' . $response_body,
				'status'  => false,

			)
		);
	}
}
PK�][�hf�Iultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/error_lognu�[���[27-Oct-2025 12:19:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function Gutenberg_Templates\Inc\Block\add_action() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/spectra-ai-block.php:34
Stack trace:
#0 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/spectra-ai-block.php(47): Gutenberg_Templates\Inc\Block\Spectra_AI_Block->__construct()
#1 /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/spectra-ai-block.php(157): Gutenberg_Templates\Inc\Block\Spectra_AI_Block::get_instance()
#2 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/spectra-ai-block.php on line 34
PK�][��澼�Oultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/dist/block.jsonnu�[���{
  "apiVersion": 3,
  "title": "Spectra AI",
  "name": "gutenberg-templates/spectra-ai",
  "category": "layout",
  "editorScript": "file:./index.js",
  "editorStyle": "file:./index.css"
}PK�][�L
zLLMultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/dist/index.jsnu�[���(()=>{"use strict";const e=window.wp.blocks,t=window.wp.blockEditor,a=window.wp.i18n,l=window.React;function n({title:e,titleId:t,...a},n){return l.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},a),e?l.createElement("title",{id:t},e):null,l.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M9.813 15.904 9 18.75l-.813-2.846a4.5 4.5 0 0 0-3.09-3.09L2.25 12l2.846-.813a4.5 4.5 0 0 0 3.09-3.09L9 5.25l.813 2.846a4.5 4.5 0 0 0 3.09 3.09L15.75 12l-2.846.813a4.5 4.5 0 0 0-3.09 3.09ZM18.259 8.715 18 9.75l-.259-1.035a3.375 3.375 0 0 0-2.455-2.456L14.25 6l1.036-.259a3.375 3.375 0 0 0 2.455-2.456L18 2.25l.259 1.035a3.375 3.375 0 0 0 2.456 2.456L21.75 6l-1.035.259a3.375 3.375 0 0 0-2.456 2.456ZM16.894 20.567 16.5 21.75l-.394-1.183a2.25 2.25 0 0 0-1.423-1.423L13.5 18.75l1.183-.394a2.25 2.25 0 0 0 1.423-1.423l.394-1.183.394 1.183a2.25 2.25 0 0 0 1.423 1.423l1.183.394-1.183.394a2.25 2.25 0 0 0-1.423 1.423Z"}))}const o=l.forwardRef(n);function c({title:e,titleId:t,...a},n){return l.createElement("svg",Object.assign({xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:1.5,stroke:"currentColor","aria-hidden":"true","data-slot":"icon",ref:n,"aria-labelledby":t},a),e?l.createElement("title",{id:t},e):null,l.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M6 18 18 6M6 6l12 12"}))}const r=l.forwardRef(c),s=(()=>{const e={};return Object.seal({on:(t,a)=>{e[t]||(e[t]=[]),e[t].push(a)},emit:(t,...a)=>{const l=e[t];l&&l.forEach((e=>e(...a)))},removeListener:(t,a)=>{const l=e[t];if(l){const e=l.findIndex((e=>e===a));-1!==e&&l.splice(e,1)}},removeAllListeners:t=>{e[t]&&delete e[t]}})})();function i(){return i=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)({}).hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e},i.apply(null,arguments)}const u=JSON.parse('{"UU":"gutenberg-templates/spectra-ai"}');(0,e.registerBlockType)(u.UU,{icon:React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16 32C24.8366 32 32 24.8366 32 16C32 7.16343 24.8366 0 16 0C7.16343 0 0 7.16343 0 16C0 24.8366 7.16343 32 16 32ZM20.9202 20.688C21.8453 20.1032 22.4 19.1247 22.4 18.0775C22.4 16.6224 21.3376 15.357 19.8308 15.0174L15.3161 13.8968C14.8905 13.8009 14.7885 13.2761 15.1506 13.0452L18.6679 10.8017C20.3051 9.75739 20.7308 7.66455 19.6187 6.12718C19.4797 5.93499 19.2011 5.88503 18.9964 6.01559L11.0507 11.3753C10.1433 11.9541 9.6 12.9173 9.6 13.9473C9.6 15.3851 10.6496 16.6352 12.1385 16.9708L16.7267 18.108C17.1533 18.2042 17.2544 18.7307 16.8905 18.9607L13.3473 21.2006C11.7055 22.2385 11.2706 24.3297 12.3759 25.8714C12.5141 26.0641 12.7925 26.1152 12.9977 25.9854L20.9202 20.688Z",fill:"var(--colors-accent-spectra)"})),attributes:{isOpen:{type:"boolean",default:!0}},useOnce:!0,supports:{customClassName:!1,className:!1,html:!1},edit:({onReplace:e})=>{const{blockProps:l}=(0,t.useBlockProps)();return React.createElement("div",i({className:"spectra-ai-block-layout block-wrapper border border-solid border-border-primary relative"},l),React.createElement("div",{className:"block-heading-wrapper"},React.createElement("h5",{className:"block-title"},(0,a.__)("Spectra AI Block","ast-block-templates")),React.createElement("p",{className:"block-description"},(0,a.__)("Eu lectus mauris vulputate et sem consequat ornare. Et consectetur sagittis faucibus eget.","ast-block-templates"))),React.createElement("div",{className:"block-buttons"},React.createElement("button",{className:"block-button button-primary prefix-icon",onClick:()=>{s.emit("toggle-onboarding-page-ai"),e([])}},React.createElement(o,{className:"button-icon"}),React.createElement("span",null,(0,a.__)("Build using AI","ast-block-templates"))),React.createElement("button",{className:"block-button button-secondary",onClick:()=>{const t=document.querySelector("#ast-block-templates-button");e([]),t&&t.click()}},React.createElement("span",null,(0,a.__)("Template Kits","ast-block-templates")))),React.createElement("button",{className:"close-button",onClick:()=>{e([])}},React.createElement(r,{className:"close-button-icon"})))},save:()=>!1})})();PK�][�e�x
x
Nultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/dist/index.cssnu�[���:root{--ast-spectra-ai-primary: #0073aa;--ast-spectra-ai-primary-hover: #007cba;--ast-spectra-ai-primary-text: #fff;--ast-spectra-ai-heading-text: #030712;--ast-spectra-ai-text: #374151;--ast-spectra-ai-icon-active: #111827;--ast-spectra-ai-icon-inactive: #374151}.spectra-ai-block-layout{font-family:Inter,sans-serif}.spectra-ai-block-layout.block-wrapper{width:100%;max-width:544px !important;padding:32px;border-radius:5px;display:flex;flex-direction:column;gap:32px}.spectra-ai-block-layout.block-wrapper:hover{box-shadow:none}.spectra-ai-block-layout .block-heading-wrapper{display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:12px}.spectra-ai-block-layout .block-title{font-size:24px;font-weight:600;line-height:33.6px;text-align:center;margin:0 !important;padding:0 !important;color:var(--ast-spectra-ai-heading-text)}.spectra-ai-block-layout .block-description{font-size:16px;font-weight:400;line-height:24px;text-align:center;margin:0 !important;padding:0 !important;color:var(--ast-spectra-ai-text)}.spectra-ai-block-layout .block-button{font-size:16px;font-weight:500;line-height:24px;padding:8px 20px;border-radius:4px;display:flex;align-items:center;justify-content:center;gap:8px;transition:color .15s ease-in-out}.spectra-ai-block-layout .block-button.prefix-icon{padding-left:12px}.spectra-ai-block-layout .button-icon{width:24px;height:24px}.spectra-ai-block-layout .button-primary{background-color:var(--ast-spectra-ai-primary);border-color:var(--ast-spectra-ai-primary);color:var(--ast-spectra-ai-primary-text)}.spectra-ai-block-layout .button-primary:hover{background-color:var(--ast-spectra-ai-primary-hover);border:1px solid var(--ast-spectra-ai-primary-hover);color:var(--ast-spectra-ai-primary-text)}.spectra-ai-block-layout .button-secondary{background-color:#fff;color:var(--ast-spectra-ai-primary);border:1px solid var(--ast-spectra-ai-primary)}.spectra-ai-block-layout .button-secondary:hover{background-color:#fff;color:var(--ast-spectra-ai-primary-hover);border:1px solid var(--ast-spectra-ai-primary-hover)}.spectra-ai-block-layout .block-buttons{display:flex;align-items:center;justify-content:center;gap:16px}.spectra-ai-block-layout .close-button{position:absolute;top:16px;right:16px;width:24px;height:24px;cursor:pointer;border:none;outline:none;background:none;color:var(--ast-spectra-ai-icon-inactive);transition:color .15s ease-in-out}.spectra-ai-block-layout .close-button:hover{color:var(--ast-spectra-ai-icon-active)}.spectra-ai-block-layout .close-button .close-button-icon{width:24px;height:24px}.spectra-ai-block-layout+.block-list-appender .block-editor-default-block-appender{display:none !important}
PK�][\쁍��Tultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/dist/index.asset.phpnu�[���<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-i18n'), 'version' => 'f9a7230af2d27cbc398e');
PK�][�W�D>>Tultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/block/spectra-ai-block.phpnu�[���<?php
/**
 * Spectra AI Block.
 *
 * @package Gutenberg_Templates
 */

namespace Gutenberg_Templates\Inc\Block;

/**
 * Spectra_AI_Block
 *
 * @since 2.0.16
 */
class Spectra_AI_Block {
	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class Instance.
	 * @since 2.0.16
	 */
	private static $instance = null;

	/**
	 * Constructor
	 *
	 * @since 2.0.16
	 */
	public function __construct() {
		global $wp_version;
		$hook = version_compare( $wp_version, '5.8-alpha', '<' ) ? 'block_editor_preload_paths' : 'block_editor_rest_api_preload_paths';

		add_action( 'init', array( $this, 'register_block_type' ) );
		add_filter( $hook, array( $this, 'update_new_post' ), 10, 2 );
	}

	/**
	 * Get Instance
	 *
	 * @since 2.0.16
	 *
	 * @return object Class object.
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Register Block Type
	 *
	 * @since 2.0.16
	 *
	 * @return void
	 */
	public function register_block_type() {
		register_block_type( AST_BLOCK_TEMPLATES_DIR . '/block/dist' );
	}

	/**
	 * Add the block on new page creation.
	 *
	 * @since 2.0.16
	 *
	 * @param array<string, string> $paths   Array of preload paths.
	 * @param mixed                 $context Context of the request.
	 *
	 * @return array<string, string>
	 */
	public static function update_new_post( $paths, $context ) {
		if ( ! is_object( $context ) || ! property_exists( $context, 'post' ) ) {
			return $paths;
		}

		$post = $context->post;

		if ( ! is_object( $post ) || ! property_exists( $post, 'ID' ) || ! property_exists( $post, 'post_content' ) ) {
			return $paths;
		}

		if ( ! is_string( $post->post_content ) ) {
			return $paths;
		}

		$blocks = preg_match( '/<!-- wp:(.*) \/?-->/', $post->post_content );

		if ( ! $blocks ) {
			$block  = '<!-- wp:gutenberg-templates/spectra-ai -->';
			$block .= self::remove_broken_p_tags( $post->post_content );
			$block .= '<!-- /wp:gutenberg-templates/spectra-ai -->';

			$post->post_content = $block;

			wp_update_post(
				array(
					'ID'           => $post->ID,
					'post_content' => $block,
				)
			);
		}

		return $paths;
	}


	/**
	 * Remove broken p tags.
	 *
	 * @since 2.0.16
	 *
	 * @param string $content Post content.
	 *
	 * @return string
	 */
	public static function remove_broken_p_tags( $content ) {

		if ( ! is_string( $content ) ) {
			return '';
		}

		// Convert microsoft special characters.
		$replace = array(
			'‘' => "'",
			'’' => "'",
			'”' => '"',
			'“' => '"',
			'–' => '-',
			'—' => '-',
			'…' => '&#8230;',
		);

		// Remove empty tags.
		$content = preg_replace( '@<([^>]+)\s*>\s*<\/\1\s*>@m', '', $content );

		// Remove all <p> tags.
		$content = preg_replace( '/<\/?p[^>]*\>/i', '', $content ?? '' );

		// Replace special characters.
		foreach ( $replace as $k => $v ) {
			$content = str_replace( $k, $v, $content ?? '' );
		}

		// Balance tags.
		$content = force_balance_tags( $content );

		return $content;
	}
}

/**
 * Kicking this off by calling 'get_instance()' method.
 */
Spectra_AI_Block::get_instance();
PK�][��#OOMultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/description.phpnu�[���<?php
/**
 * Description API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
/**
 * Progress
 *
 * @since 2.0.0
 */
class Description extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/description/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'business_name' => array(
							'type'     => 'string',
							'required' => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'business_description' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'category' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'language_name' => array(
							'type' => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {
		
		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/description';

		$token = Importer_Helper::get_business_details( 'token' );

		$post_data = array(
			'business_name' =>
				isset( $request['business_name'] ) ?
				sanitize_text_field( $request['business_name'] ) :
				'',
			'business_description' =>
				isset( $request['business_description'] ) ? sanitize_text_field( $request['business_description'] ) : '',
			'category' =>
				isset( $request['category'] ) ? sanitize_text_field( $request['category'] ) : '',
			'language_name' =>
				isset( $request['language_name'] ) ? sanitize_text_field( $request['language_name'] ) : '',
			'token' =>
				$token,
		);

		$body = wp_json_encode( $post_data );
		$request_args = array(
			'body' => is_string( $body ) ? $body : '',
			'headers' => array(
				'Content-Type' => 'application/json',
			),
			'timeout' => 100,
		);
		$response = wp_safe_remote_post( $api_endpoint, $request_args );



		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		} else {
			$response_code = wp_remote_retrieve_response_code( $response );
			$response_body = wp_remote_retrieve_body( $response );
			if ( 200 === $response_code ) {
				$response_data = json_decode( $response_body, true );
				if ( $response_data['status'] ) {
					wp_send_json_success(
						array(
							'data' => $response_data['data'],
							'status'  => true,
						)
					);
				} else {
					wp_send_json_error(
						array(
							'data' => 'Failed ' . $response_data['data'],
							'status'  => false,

						)
					);
				}
			} else {
				wp_send_json_error(
					array(
						'data' => 'Failed',
						'status'  => false,

					)
				);
			}
		}
	}
}
PK�][�O����Gultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/error_lognu�[���[27-Oct-2025 11:40:48 UTC] PHP Fatal error:  Uncaught Error: Class "WP_REST_Controller" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/api-base.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/api-base.php on line 16
[27-Oct-2025 12:27:04 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/api-init.php on line 18
PK�][�B9���Gultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/sites.phpnu�[���<?php
/**
 * Progress API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Importer\Plugin;
use Gutenberg_Templates\Inc\Api\Api_Base;
/**
 * Progress
 *
 * @since 0.0.1
 */
class Sites extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/sites/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_sites' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {
		
		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return \WP_REST_Response
	 */
	public function get_sites( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			return new \WP_REST_Response(
				array(
					'success' => false,
					'data'    => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
				),
				403
			);
		}

		$all_sites = Plugin::instance()->get_all_sites();
		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'sites' => $all_sites,
			)
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][��+	+	Oultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/revoke-access.phpnu�[���<?php
/**
 * Revoke Access API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Traits\Helper;
use WP_Error;
use WP_REST_Response;
use WP_REST_Server;

/**
 * Pages generate content confirmation.
 *
 * @since 0.0.1
 */
class RevokeAccess extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/revoke-access/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'set' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Revoke access.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return WP_REST_Response
	 */
	public function set( $request ): WP_REST_Response {

		$nonce = $request->get_header( 'X-WP-Nonce' );
		$nonce = isset( $nonce ) ? sanitize_text_field( $nonce ) : '';
		// Verify the nonce.
		if ( ! wp_verify_nonce( $nonce, 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}
		
		delete_option( 'ast-block-templates-show-onboarding' );
		
		Helper::delete_admin_settings_option( 'zip_ai_settings' );
		$response = new WP_REST_Response(
			array(
				'success' => true,
			)
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][ܽ|���Jultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/favorite.phpnu�[���<?php
/**
 * Favorite API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
/**
 * Favorite
 *
 * @since 2.0.0
 */
class Favorite extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/favorite/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'save' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'type' => array(
							'type'     => 'string',
							'required' => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'block_id' => array(
							'type'     => 'integer',
							'required' => true,
						),
						'status' => array(
							'type'     => 'boolean',
							'required' => true,
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Get Favorite.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$favorites = get_option( 'ast_block_templates_favorites', array() );
		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'data' => $favorites,
			)
		);
		$response->set_status( 200 );
		return $response;
	}

	/**
	 * Save Favorite.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function save( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$favorites = get_option( 'ast_block_templates_favorites', array() );
		$block_type = $request->get_param( 'type' );
		$id = $request->get_param( 'block_id' );
		$status = $request->get_param( 'status' );

		// Empty favorite then add favorite in respective array tye and early return.
		if ( ! isset( $favorites[ $block_type ] ) || ! is_array( $favorites[ $block_type ] ) ) {
			$favorites[ $block_type ] = array();
		}
		if ( empty( $favorites ) && $status ) {
			$favorites[ $block_type ][] = $id;
		}

		// Empty patterns OR blocks array then add favorite and return early.
		if ( empty( $favorites[ $block_type ] ) && $status ) {
			$favorites[ $block_type ][] = $id;
		}

		if ( $status ) {
			// Insert the block-id/page-id if it doesn't already exist.
			if ( ! in_array( $id, $favorites[ $block_type ] ) ) {
				$favorites[ $block_type ][] = $id;
			}
		} else {
			// Remove the block-id/page-id if it exists.
			if ( isset( $favorites[ $block_type ] ) && is_array( $favorites[ $block_type ] ) ) {
				$key = array_search( $id, $favorites[ $block_type ] );
				if ( false !== $key ) {
					unset( $favorites[ $block_type ][ $key ] );
					$favorites[ $block_type ] = array_values( $favorites[ $block_type ] );
				}
			}
		}

		$update_status = update_option( 'ast_block_templates_favorites', $favorites );


		$data = array( 
			'success' => $update_status, 
			'message' => $update_status ? __( 'Action Completed', 'ultimate-addons-for-gutenberg' ) : __( 'Action failed', 'ultimate-addons-for-gutenberg' ),
			'data' => $favorites, 
		);

		return rest_ensure_response( $data );
	}
}
PK�][W�O�ggRultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/initialize-setup.phpnu�[���<?php
/**
 * Initialize Setup.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Plugin;
use Gutenberg_Templates\Inc\Importer\Sync_Library;
/**
 * Progress
 *
 * @since 0.0.1
 */
class Initialize_Setup extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/setup/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'setup_templates' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return \WP_REST_Response
	 */
	public function setup_templates( $request ) {

		$is_fresh_site = get_option( 'ast_block_templates_fresh_site', 'yes' );

		if ( 'yes' === $is_fresh_site ) {
			Sync_Library::instance()->set_default_assets();
			update_option( 'ast_block_templates_fresh_site', 'no' );
		}

		Sync_Library::instance()->process_sync();

		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'syncing' => $is_fresh_site,
			)
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][��eRRRultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/page-description.phpnu�[���<?php
/**
 * PageDescription API.
 *
 * @package {{package}}
 * @since 2.0.16
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
/**
 * Progress
 *
 * @since 2.0.16
 */
class PageDescription extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/page-description/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.16
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'business_name' => array(
							'type'     => 'string',
							'required' => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'business_description' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'page_name' => array(
							'type'     => 'string',
							'required' => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'page_description' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'category' => array(
							'type'     => 'string',
							'sanitize_callback' => 'sanitize_text_field',
							'required' => false,
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/page-description';

		$token = Importer_Helper::get_business_details( 'token' );

		$post_data = array(
			'business_name' => isset( $request['business_name'] ) ? sanitize_text_field( $request['business_name'] ) : '',
			'business_description' => isset( $request['business_description'] ) ? sanitize_text_field( $request['business_description'] ) : '',
			'page_name' => isset( $request['page_name'] ) ? sanitize_text_field( $request['page_name'] ) : '',
			'page_description' => isset( $request['page_description'] ) ? sanitize_text_field( $request['page_description'] ) : '',
			'category' => isset( $request['category'] ) ? sanitize_text_field( $request['category'] ) : '',
			'token' => $token,
		);
		
		$body = wp_json_encode( $post_data );
		$request_args = array(
			'body' => is_string( $body ) ? $body : '',
			'headers' => array(
				'Content-Type' => 'application/json',
			),
			'timeout' => 100,
		);
		$response = wp_safe_remote_post( $api_endpoint, $request_args );



		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		} else {
			$response_code = wp_remote_retrieve_response_code( $response );
			$response_body = wp_remote_retrieve_body( $response );
			if ( 200 === $response_code ) {
				$response_data = json_decode( $response_body, true );
				if ( $response_data['status'] ) {
					wp_send_json_success(
						array(
							'data' => $response_data['data'],
							'status'  => true,
						)
					);
				} else {
					wp_send_json_error(
						array(
							'data' => 'Failed ' . $response_data['data'],
							'status'  => false,

						)
					);
				}
			} else {
				wp_send_json_error(
					array(
						'data' => 'Failed',
						'status'  => false,

					)
				);
			}
		}
	}
}
PK�][�;wJultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/keywords.phpnu�[���<?php
/**
 * Keywords API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
/**
 * Progress
 *
 * @since 2.0.0
 */
class Keywords extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/keywords/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'business_name' => array(
							'type'     => 'string',
							'required' => true,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'business_description' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
						'category' => array(
							'type'     => 'string',
							'sanitize_callback' => 'sanitize_text_field',
							'required' => false,
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/ai/v1/keywords';

		$token = Importer_Helper::get_business_details( 'token' );

		$post_data = array(
			'business_name' => isset( $request['business_name'] ) ? sanitize_text_field( $request['business_name'] ) : '',
			'business_description' => isset( $request['business_description'] ) ? sanitize_text_field( $request['business_description'] ) : '',
			'category' => isset( $request['category'] ) ? sanitize_text_field( $request['category'] ) : '',
			'token' => $token,
		);

		$body = wp_json_encode( $post_data );
		$request_args = array(
			'body' => is_string( $body ) ? $body : '',
			'headers' => array(
				'Content-Type' => 'application/json',
			),
			'timeout' => 100,
		);
		$response = wp_safe_remote_post( $api_endpoint, $request_args );

		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		} else {
			$response_code = wp_remote_retrieve_response_code( $response );
			$response_body = wp_remote_retrieve_body( $response );
			if ( 200 === $response_code ) {
				$response_data = json_decode( $response_body, true );
				if ( $response_data['status'] ) {
					wp_send_json_success(
						array(
							'data' => $response_data['data'],
							'status'  => true,
						)
					);
				} else {
					wp_send_json_error(
						array(
							'data' => 'Failed ' . $response_data['data'],
							'status'  => false,

						)
					);
				}
			} else {
				wp_send_json_error(
					array(
						'data' => 'Failed',
						'status'  => false,

					)
				);
			}
		}
	}
}
PK�][x�,BJultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/api-base.phpnu�[���<?php
/**
 * API base.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

/**
 * Api_Base
 *
 * @since 0.0.1
 */
abstract class Api_Base extends \WP_REST_Controller {

	/**
	 * Endpoint namespace.
	 *
	 * @var string
	 */
	protected $namespace = 'gutenberg-templates/v1';

	/**
	 * Constructor
	 *
	 * @since 0.0.1
	 */
	public function __construct() {
	}

	/**
	 * Get API namespace.
	 *
	 * @since 0.0.1
	 * @return string
	 */
	public function get_api_namespace() {

		return $this->namespace;
	}   
}
PK�][�75		Jultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/category.phpnu�[���<?php
/**
 * Progress API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Api\Api_Base;
/**
 * Progress
 *
 * @since 0.0.1
 */
class Category extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/categories/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {
		
		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return \WP_REST_Response
	 */
	public function get( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			return new \WP_REST_Response(
				array(
					'success' => false,
					'data'    => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
				),
				403
			);
		}

		$categories = Helper::instance()->get_block_template_category();
		$total_requests = (int) Helper::instance()->get_block_templates_requests();
		
		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'categories' => $categories,
				'total_requests' => $total_requests,
			)
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][�y��YYGultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/pages.phpnu�[���<?php
/**
 * Pages generate content confirmation API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use WP_Error;
use WP_REST_Request;
use WP_REST_Response;
use WP_REST_Server;

/**
 * Pages generate content confirmation.
 *
 * @since 0.0.1
 */
class Pages extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/pages-onboarding/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'set' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save the pages onboarding flag status.
	 *
	 * @return WP_REST_Response
	 */
	public function set(): WP_REST_Response {

		$saved = update_option( 'ast-show-pages-onboarding', 'no' );
		$response = new WP_REST_Response(
			array(
				'success' => $saved,
			)
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][�R�t��Jultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/settings.phpnu�[���<?php
/**
 * Settings API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Plugin;
/**
 * Settings
 *
 * @since 2.0.0
 */
class Settings extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/settings/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::EDITABLE,
					'callback'            => array( $this, 'save' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'key' => array(
							'type'     => 'string',
							'required' => true,
						),
						'value' => array(
							'type'     => 'boolean',
							'required' => true,
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Get Settings.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$ai_settings = get_option( 'ast_block_templates_ai_settings', array() );
		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'data' => $ai_settings,
			)
		);
		$response->set_status( 200 );
		return $response;
	}

	/**
	 * Save Settings.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function save( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$setting_key = $request->get_param( 'key' );
		$setting_value = $request->get_param( 'value' );

		if ( ! empty( $setting_key ) ) {
			$settings = get_option( 'ast_block_templates_ai_settings', array() );
			$settings[ $setting_key ] = $setting_value;

			if ( 'disable_ai' === $setting_key ) {
	
				$ai_settings = get_option( 'zip_ai_modules', array() );
				$ai_copilot_value = $setting_value ? 'disabled' : 'enabled';
				$ai_settings['ai_design_copilot']['status'] = $ai_copilot_value;
				update_option( 'zip_ai_modules', $ai_settings );

				$settings['disable_ai'] = $setting_value;
			}

			if ( 'adaptive_mode' === $setting_key ) {
				$ai_settings = get_option( 'zip_ai_modules', array() );
				$ai_copilot_value = $setting_value ? 'enabled' : 'disabled';
				$ai_settings['ai_design_copilot']['status'] = $ai_copilot_value;
				update_option( 'zip_ai_modules', $ai_settings );

				$settings['disable_ai'] = ! $setting_value;
			}

			$status = update_option( 'ast_block_templates_ai_settings', $settings );

			$blocks = Plugin::instance()->get_all_blocks();

			$response = new \WP_REST_Response(
				array(
					'success' => $status,
					'blocks'  => $blocks,
				)
			);

			$response->set_status( 200 );
			return $response;
		}

		
		return new \WP_Error(
			'failed',
			__( 'Sorry, settings are not saved.', 'ultimate-addons-for-gutenberg' ),
			array( 'status' => 'fail' )
		);
	}
}
PK�][���_ddJultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/api-init.phpnu�[���<?php
/**
 * INitialize API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

use Gutenberg_Templates\Inc\Traits\Instance;

/**
 * Api_Base
 *
 * @since 0.0.1
 */
class Api_Init {

	use Instance;

	/**
	 * Controller object.
	 *
	 * @var object class.
	 */
	public $controller = null;

	/**
	 * Constructor
	 *
	 * @since 0.0.1
	 */
	public function __construct() {

		// REST API extensions init.
		add_action( 'rest_api_init', array( $this, 'register_routes' ) );
	}

	/**
	 * Register API routes.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$controllers = array(
			'\Gutenberg_Templates\Inc\Api\Category',
			'\Gutenberg_Templates\Inc\Api\Description',
			'\Gutenberg_Templates\Inc\Api\PageDescription',
			'\Gutenberg_Templates\Inc\Api\Keywords',
			'\Gutenberg_Templates\Inc\Api\Images',
			'\Gutenberg_Templates\Inc\Api\Settings',
			'\Gutenberg_Templates\Inc\Api\Favorite',
			'Gutenberg_Templates\Inc\Api\Do_It_Later',
			'\Gutenberg_Templates\Inc\Api\Pages',
			'\Gutenberg_Templates\Inc\Api\RevokeAccess',
			'\Gutenberg_Templates\Inc\Api\Blocks',
			'\Gutenberg_Templates\Inc\Api\Initialize_Setup',
			'\Gutenberg_Templates\Inc\Api\Sites',
		);

		foreach ( $controllers as $controller ) {

			$this->controller = $controller::instance();

			$this->controller->register_routes();
		}
	}
}
PK�][s��}}Hultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/images.phpnu�[���<?php
/**
 * Images API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
/**
 * Progress
 *
 * @since 2.0.0
 */
class Images extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/images/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::CREATABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
					'args' => array(
						'keywords' => array(
							'type'     => 'string',
							'required' => true,
						),
						'per_page' => array(
							'type'     => 'integer',
							'required' => false,
						),
						'page' => array(
							'type'     => 'integer',
							'required' => false,
						),
						'orientation' => array(
							'type'     => 'string',
							'sanitize_callback' => 'sanitize_text_field',
							'required' => false,
						),
						'engine' => array(
							'type'     => 'string',
							'required' => false,
							'sanitize_callback' => 'sanitize_text_field',
						),
					),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return mixed
	 */
	public function get( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			wp_send_json_error(
				array(
					'data' => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
					'status'  => false,

				)
			);
		}

		$api_endpoint = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/image/v1/images';

		$post_data = array(
			'keywords' => isset( $request['keywords'] ) ? $request['keywords'] : '',
			'per_page' => isset( $request['per_page'] ) ? $request['per_page'] : 20,
			'page' => isset( $request['page'] ) ? $request['page'] : 1,
			'orientation' => isset( $request['orientation'] ) ? sanitize_text_field( $request['orientation'] ) : '',
			'engine' => isset( $request['engine'] ) ? sanitize_text_field( $request['engine'] ) : '',
		);

		$body = wp_json_encode( $post_data );
		$request_args = array(
			'body' => is_string( $body ) ? $body : '',
			'headers' => array(
				'Content-Type' => 'application/json',
			),
			'timeout' => 100,
		);
		$response = wp_safe_remote_post( $api_endpoint, $request_args );



		if ( is_wp_error( $response ) ) {
			// There was an error in the request.
			wp_send_json_error(
				array(
					'data' => 'Failed ' . $response->get_error_message(),
					'status'  => false,

				)
			);
		} else {
			$response_code = wp_remote_retrieve_response_code( $response );
			$response_body = wp_remote_retrieve_body( $response );
			if ( 200 === $response_code ) {
				$response_data = json_decode( $response_body, true );
				wp_send_json_success(
					array(
						'data' => $response_data,
						'status'  => true,
					)
				);

			} else {
				wp_send_json_error(
					array(
						'data' => 'Failed',
						'status'  => false,

					)
				);
			}
		}
	}
}
PK�][<Z�	�	Hultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/blocks.phpnu�[���<?php
/**
 * Progress API.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
use Gutenberg_Templates\Inc\Importer\Plugin;
/**
 * Progress
 *
 * @since 0.0.1
 */
class Blocks extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/blocks/';

	/**
	 * Init Hooks.
	 *
	 * @since 0.0.1
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_blocks' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {
		// To do: Check api token or JWT token for permission.
		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}

		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @param \WP_REST_Request $request Full details about the request.
	 * @return \WP_REST_Response
	 */
	public function get_blocks( $request ) {

		$nonce = (string) $request->get_header( 'X-WP-Nonce' );
		
		// Verify the nonce.
		if ( ! wp_verify_nonce( sanitize_text_field( $nonce ), 'wp_rest' ) ) {
			return new \WP_REST_Response(
				array(
					'success' => false,
					'data'    => __( 'Nonce verification failed.', 'ultimate-addons-for-gutenberg' ),
				),
				403
			);
		}
	
		$start = isset( $request['start'] ) ? intval( $request['start'] ) : 1;
		$end = isset( $request['end'] ) ? intval( $request['end'] ) : 1;
	
		$blocks = Plugin::instance()->get_all_blocks( $start, $end );
	
		$response = new \WP_REST_Response(
			array(
				'success' => true,
				'allBlocks'      => $blocks['blocks'],
				'allBlocksPages' => $blocks['blocks_pages'],
			)
		);
		$response->set_status( 200 );
	
		return $response;
	}
}
PK�][�[�$��Multimate-addons-for-gutenberg/lib/gutenberg-templates/inc/api/do-it-later.phpnu�[���<?php
/**
 * Do It Later API.
 *
 * @package {{package}}
 * @since 2.0.0
 */

namespace Gutenberg_Templates\Inc\Api;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Api\Api_Base;
/**
 * Do It Later
 *
 * @since 2.0.0
 */
class Do_It_Later extends Api_Base {

	use Instance;

	/**
	 * Route base.
	 *
	 * @var string
	 */
	protected $rest_base = '/do-it-later/';

	/**
	 * Init Hooks.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function register_routes() {

		$namespace = $this->get_api_namespace();

		register_rest_route(
			$namespace,
			$this->rest_base,
			array(
				array(
					'methods'             => \WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get' ),
					'permission_callback' => array( $this, 'get_item_permissions_check' ),
				),
			)
		);

	}

	/**
	 * Check whether a given request has permission to read notes.
	 *
	 * @param  object $request WP_REST_Request Full details about the request.
	 * @return object|boolean
	 */
	public function get_item_permissions_check( $request ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return new \WP_Error(
				'gt_rest_cannot_access',
				__( 'Sorry, you are not allowed to do that.', 'ultimate-addons-for-gutenberg' ),
				array( 'status' => rest_authorization_required_code() )
			);
		}
		return true;
	}

	/**
	 * Save Prompts.
	 *
	 * @return \WP_REST_Response
	 */
	public function get() {
		update_option( 'ast-block-templates-show-onboarding', 'no' );
		$response = new \WP_REST_Response(
			array(
				'success' => true,
			) 
		);
		$response->set_status( 200 );
		return $response;
	}
}
PK�][��/Jultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/error_lognu�[���[27-Oct-2025 06:08:52 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/helper.php on line 16
[27-Oct-2025 06:11:33 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/upgrade.php on line 16
PK�][<o�*uuLultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/upgrade.phpnu�[���<?php
/**
 * Trait.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Traits;

use Gutenberg_Templates\Inc\Traits\Instance;

/**
 * Trait Instance.
 */
class Upgrade {

	use Instance;

	/**
	 * Constructor
	 */
	public function __construct() {
		add_action( 'wp_ajax_ast_skip_zip_ai_onboarding', array( $this, 'skip_spectra_pro_onboarding' ) );
	}

	/**
	 * Activate Plugin
	 *
	 * @return void
	 */
	public function skip_spectra_pro_onboarding() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}

		// Verify Nonce.
		check_ajax_referer( 'skip-spectra-pro-onboarding-nonce', 'security' );

		update_option( 'ast_skip_zip_ai_onboarding', 'yes' );

		wp_send_json_success(
			array(
				'success' => 'true',
			)
		);
	}

}

PK�][��6�5�5Kultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/helper.phpnu�[���<?php
/**
 * Trait.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Traits;

use Gutenberg_Templates\Inc\Traits\Instance;

/**
 * Trait Instance.
 */
class Helper {

	use Instance;

	/**
	 * Log
	 *
	 * @param string $message   Log message.
	 * @return void
	 */
	public function ast_block_templates_log( $message = '' ) {
		
		if ( self::$instance->ast_block_templates_doing_wp_cli() ) {
			\WP_CLI::line( $message );
		} else {
			if ( defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG && function_exists( 'error_log' ) && apply_filters( 'ast_block_templates_debug_logs', false ) ) {
				error_log( $message ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log
			}
		}   
	}

	/**
	 * Doing WP CLI
	 *
	 * @return bool
	 */
	public function ast_block_templates_doing_wp_cli() {
		if ( defined( 'WP_CLI' ) && WP_CLI ) {
			return true;
		}
		return false;
	}

	/**
	 * Get an instance of WP_Filesystem_Direct.
	 *
	 * @since 1.0.0
	 * @return object A WP_Filesystem_Direct instance.
	 */
	public function ast_block_templates_get_filesystem() {
		global $wp_filesystem;

		require_once ABSPATH . '/wp-admin/includes/file.php';

		WP_Filesystem();

		return $wp_filesystem;
	}

	/**
	 * Check for the valid image
	 *
	 * @param string $link  The Image link.
	 *
	 * @since 1.0.0
	 * @return bool
	 */
	public function ast_block_templates_is_valid_image( $link = '' ) {
		return boolVal( preg_match( '/^((https?:\/\/)|(www\.))([a-z0-9-].?)+(:[0-9]+)?\/[\w\-]+\.(jpg|png|gif|jpeg)\/?$/i', $link ) );
	}

	/**
	 * Encrypt data using base64.
	 *
	 * @param string $input The input string which needs to be encrypted.
	 * @since 1.0.0
	 * @return string The encrypted string.
	 */
	public static function encrypt( $input ) {
		// If the input is empty or not a string, then abandon ship.
		if ( empty( $input ) || ! is_string( $input ) ) {
			return '';
		}

		// Encrypt the input and return it.
		$base_64 = base64_encode( $input ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_encode
		$encode  = rtrim( $base_64, '=' );
		return $encode;
	}

	/**
	 * Decrypt data using base64.
	 *
	 * @param string $input The input string which needs to be decrypted.
	 * @since 1.0.0
	 * @return string The decrypted string.
	 */
	public static function decrypt( $input ) {
		// If the input is empty or not a string, then abandon ship.
		if ( empty( $input ) || ! is_string( $input ) ) {
			return '';
		}

		// Decrypt the input and return it.
		$base_64 = $input . str_repeat( '=', strlen( $input ) % 4 );
		$decode  = base64_decode( $base_64 ); // phpcs:ignore WordPress.PHP.DiscouragedPHPFunctions.obfuscation_base64_decode
		return $decode;
	}

	/**
	 * Get an option from the database.
	 *
	 * @param string  $key              The option key.
	 * @param mixed   $default          The option default value if option is not available.
	 * @param boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
	 * @since 1.0.0
	 * @return mixed  The option value.
	 */
	public static function get_admin_settings_option( $key, $default = false, $network_override = false ) {
		// Get the site-wide option if we're in the network admin.
		return $network_override && is_multisite() ? get_site_option( $key, $default ) : get_option( $key, $default );
	}

	/**
	 * Get the Zip AI Settings.
	 *
	 * If used with a key, it will return that specific setting.
	 * If used without a key, it will return the entire settings array.
	 *
	 * @param string $key The setting key.
	 * @param mixed  $default The default value to return if the setting is not found.
	 * @since 1.0.0
	 * @return mixed|array The setting value, or the default.
	 */
	public static function get_setting( $key = '', $default = array() ) {

		// Get the Zip AI settings.
		$existing_settings = self::get_admin_settings_option( 'zip_ai_settings' );

		// If the Zip AI settings are empty, return the fallback.
		if ( empty( $existing_settings ) || ! is_array( $existing_settings ) ) {
			return $default;
		}

		// If the key is empty, return the entire settings array - otherwise return the specific setting or the fallback.
		if ( empty( $key ) ) {
			return $existing_settings;
		} else {
			return isset( $existing_settings[ $key ] ) ? $existing_settings[ $key ] : $default;
		}
	}
	
	/**
	 * Delete an option from the database for.
	 *
	 * @param string  $key              The option key.
	 * @param boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
	 * @since 1.0.0
	 * @return void
	 */
	public static function delete_admin_settings_option( $key, $network_override = false ) {
		// Delete the site-wide option if we're in the network admin.
		if ( $network_override && is_multisite() ) {
			delete_site_option( $key );
		} else {
			delete_option( $key );
		}
	}

	/**
	 * This helper function returns credit details.
	 *
	 * @since 1.0.0
	 * @return array<string, integer>
	 */
	public static function get_credit_details() {
		// Set the default credit details.
		$credit_details = array(
			'used'       => 0,
			'total'      => 0,
			'threshold'  => array(
				'medium' => defined( 'ZIP_AI_CREDIT_THRESHOLD_MEDIUM' ) ? ZIP_AI_CREDIT_THRESHOLD_MEDIUM : 65,
				'high'   => defined( 'ZIP_AI_CREDIT_THRESHOLD_HIGH' ) ? ZIP_AI_CREDIT_THRESHOLD_HIGH : 85,
			),
			'percentage' => 0,
			'status'     => 'success',
			'free_user' => true,
		);

		// Get the response from the endpoint.
		$response = self::get_credit_server_response( 'usage' );

		// If the response is not an error, then update the credit details.
		if (
			empty( $response['error'] )
			&& ! empty( $response['total_credits'] )
		) {
			$credit_details['used']       = ! empty( $response['total_used_credits'] ) ? $response['total_used_credits'] : 0;
			$credit_details['total']      = $response['total_credits'];
			$credit_details['percentage'] = intval( ( $credit_details['used'] / $credit_details['total'] ) * 100 );
			$credit_details['free_user'] = $response['free_user'];
		} else {
			$credit_details['status'] = 'error';
		}

		return $credit_details;
	}

	/**
	 * Get the Zip AI Response from the Zip Credit Server.
	 *
	 * @param string $endpoint The endpoint to get the response from.
	 * @since 1.0.0
	 * @return mixed The Zip AI Response.
	 */
	public static function get_credit_server_response( $endpoint ) {
		// If the endpoint is not a string, then abandon ship.
		if ( ! is_string( $endpoint ) ) {
			return array(
				'error' => __( 'The Zip AI Endpoint was not declared', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Get the Auth Token from the Zip AI Settings.
		$auth_token = self::get_decrypted_auth_token();

		// If the Zip Auth Token is not set, then abandon ship.
		if ( empty( $auth_token ) || ! is_string( $auth_token ) ) {
			return array(
				'error' => __( 'The Zip AI Auth Token is not set.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		$server_url = defined( 'ZIP_AI_CREDIT_SERVER_API' ) ? ZIP_AI_CREDIT_SERVER_API : 'https://credits.startertemplates.com/api/';
		// Set the API URL.
		$api_url = $server_url . $endpoint;

		// Get the response from the endpoint.
		$response = wp_safe_remote_post(
			$api_url,
			array(
				'headers' => array(
					'Authorization' => 'Bearer ' . $auth_token,
				),
				'timeout' => 30, // phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout -- 30 seconds is required sometime for open ai responses
			)
		);

		// If the response was an error, or not a 200 status code, then abandon ship.
		if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) {
			return array(
				'error' => __( 'The Zip AI Middleware is not responding.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Get the response body.
		$response_body = wp_remote_retrieve_body( $response );

		// If the response body is not a JSON, then abandon ship.
		if ( empty( $response_body ) || ! json_decode( $response_body ) ) {
			return array(
				'error' => __( 'The Zip AI Middleware encountered an error.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		// Return the response body.
		return json_decode( $response_body, true );
	}

	/**
	 * Get the decrypted auth token.
	 *
	 * @since 1.0.0
	 * @return string The decrypted auth token.
	 */
	public static function get_decrypted_auth_token() {
		// Get the Zip AI Settings.
		$auth_token = self::get_setting( 'auth_token' );

		// Return early if the auth token is not set.
		if ( empty( $auth_token ) || ! is_string( $auth_token ) ) {
			return '';
		}

		// Return the decrypted auth token.
		return ! empty( trim( $auth_token ) ) ? self::decrypt( $auth_token ) : '';
	}

	/**
	 * Get default AI categories.
	 *
	 * @since 2.0.0
	 *
	 * @return array<string, string>
	 */
	public function get_default_ai_categories() {
		return array(
			'business' => 'Business',
			'person' => 'Person',
			'organisation' => 'Organisation',
			'restaurant' => 'Restaurant',
			'product' => 'Product',
			'event' => 'Event',
			'landing-page' => 'Landing Page',
			'medical' => 'Medical',
		);
	}

	/**
	 * Is debug mode enabled
	 * 
	 * @since 2.0.0
	 * @return boolean
	 */
	public function is_debug_mode() {
		return defined( 'GT_DEBUG' ) && GT_DEBUG;
	}

	/**
	 * Create files/directories.
	 * 
	 * @param array<int, array<string, string>> $files The files array.
	 * 
	 * @return void
	 */
	public function create_files( $files = array() ) {
		// Install files and folders for uploading files and prevent hotlinking.
		foreach ( $files as $file ) {
			$this->create_single_file( $file );
		}
	}

	/**
	 * Create file/directories.
	 * 
	 * @param array<string, string> $file The file array.
	 * 
	 * @return void
	 */
	public function create_single_file( $file ) {
		if ( wp_mkdir_p( $file['file_base'] ) && ! file_exists( trailingslashit( $file['file_base'] ) . $file['file_name'] ) ) {
			$file_handle = @fopen( trailingslashit( $file['file_base'] ) . $file['file_name'], 'w' ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged, WordPress.WP.AlternativeFunctions.file_system_read_fopen
			if ( $file_handle ) {
				fwrite( $file_handle, $file['file_content'] ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fwrite, WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fwrite
				fclose( $file_handle ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose
				self::ast_block_templates_log( 'File: ' . $file['file_name'] . ' Created Successfully!' );
			}
		}
	}

	/**
	 * Update files/directories.
	 * 
	 * @param string     $file_name The file path.
	 * @param string|int $file_content The file content.
	 * 
	 * @return void
	 */
	public function update_json_file( $file_name, $file_content ) {

		$file_name = $file_name . '.json';

		if ( ! file_exists( AST_BLOCK_TEMPLATES_JSON_DIR . $file_name ) ) {
			$file_data = array(
				'file_name' => $file_name,
				'file_content' => '',
				'file_base' => AST_BLOCK_TEMPLATES_JSON_DIR,
			);

			$this->create_single_file( $file_data );
		}

		if ( file_exists( AST_BLOCK_TEMPLATES_JSON_DIR . $file_name ) && file_put_contents( AST_BLOCK_TEMPLATES_JSON_DIR . $file_name, wp_json_encode( $file_content ) ) !== false ) { //phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_file_put_contents
			self::ast_block_templates_log( 'File: ' . $file_name . ' Updated Successfully!' );
		} else {
			self::ast_block_templates_log( 'File: ' . $file_name . ' Not Updated!' );
		}
		
	}

	/**
	 * Get files/directories.
	 * 
	 * @param string $file_name The file name.
	 * @param bool   $get_array Is The file content array.
	 * 
	 * @return mixed
	 */
	public function get_json_file_content( $file_name, $get_array = true ) {

		if ( file_exists( AST_BLOCK_TEMPLATES_JSON_DIR . $file_name ) ) {
			// Ignoring the rule as it is not a remote file.
			$file_content = file_get_contents( AST_BLOCK_TEMPLATES_JSON_DIR . $file_name ); //phpcs:ignore WordPressVIPMinimum.Performance.FetchingRemoteData.FileGetContentsUnknown
			
			if ( $get_array ) {
				return json_decode( (string) $file_content, true );
			} else {
				return $file_content;
			}
		}

		return '';
	}

	/**
	 * Get block categories.
	 * 
	 * @return array<int, array<string, string>>
	 */
	public function get_block_template_category() {
		return self::get_json_file_content( 'ast-block-templates-categories.json', true );
	}

	/**
	 * Get customiser CSS.
	 * 
	 * @return string
	 */
	public function get_block_template_customiser_css() {
		return trim( self::get_json_file_content( 'ast-block-templates-customizer-css.json', false ), '"' );
	}   

	/**
	 * Get last exported checksum.
	 * 
	 * @return string
	 */
	public function get_last_exported_checksum() {
		return trim( self::get_json_file_content( 'ast-block-templates-last-export-checksums.json', false ), '"' );
	}

	/**
	 * Get site request count.
	 * 
	 * @return int
	 */
	public function get_site_request() {
		return self::get_json_file_content( 'ast-block-templates-site-requests.json', false );
	}

	/**
	 * Get block request count.
	 * 
	 * @return int
	 */
	public function get_block_templates_requests() {
		return self::get_json_file_content( 'ast-block-templates-block-requests.json', false );
	}

	/**
	 * Get blocks page wise.
	 * 
	 * @param int $page The page number.
	 * @return  array<int, mixed>
	 */
	public function get_blocks_templates( $page = 0 ) {
		return self::get_json_file_content( 'ast-block-templates-blocks-' . $page . '.json', true );
	}

	/**
	 * Get sites page wise.
	 * 
	 * @param int $page The page number.
	 * @return array<int, mixed>
	 */
	public function get_sites_templates( $page = 0 ) {
		return self::get_json_file_content( 'ast-block-templates-sites-' . $page . '.json', true );
	}
}

PK�][�����Multimate-addons-for-gutenberg/lib/gutenberg-templates/inc/traits/instance.phpnu�[���<?php
/**
 * Trait.
 *
 * @package {{package}}
 * @since 0.0.1
 */

namespace Gutenberg_Templates\Inc\Traits;

/**
 * Trait Instance.
 */
trait Instance {

	/**
	 * Instance object.
	 *
	 * @var self Class Instance.
	 */
	private static $instance = null;

	/**
	 * Initiator
	 *
	 * @since 0.0.1
	 * @return self Initialized object of class.
	 */
	public static function instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}
}

PK�][�AgUrrLultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/error_lognu�[���[27-Oct-2025 06:13:28 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/images.php on line 20
[27-Oct-2025 06:14:24 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/template-kit-importer.php on line 20
[27-Oct-2025 06:16:27 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/sync-library.php on line 20
[27-Oct-2025 06:17:33 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/block-editor.php on line 21
[27-Oct-2025 06:18:38 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/image-importer.php on line 28
[27-Oct-2025 06:37:33 UTC] PHP Fatal error:  Trait "Gutenberg_Templates\Inc\Traits\Instance" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/sync-library-wp-cli.php on line 23
PK�][j��<c<cSultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/sync-library.phpnu�[���<?php
/**
 * Sync Library
 *
 * @package Ast Block Templates
 * @since 1.0.0
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Plugin;

/**
 * Sync Library
 *
 * @since 1.0.0
 */
class Sync_Library {

	use Instance;

	/**
	 * Catch the latest checksums
	 *
	 * @since 1.1.0
	 * @access public
	 * @var string Last checksums.
	 */
	public $last_export_checksums;

	/**
	 * Constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		add_action( 'wp_ajax_ast-block-templates-check-sync-library-status', array( $this, 'sync_via_ajax' ) );
		add_action( 'wp_ajax_ast-block-templates-import-blocks', array( $this, 'ajax_import_blocks' ) );
		add_action( 'sync_blocks', array( $this, 'sync_blocks' ) );
		add_action( 'wp_ajax_ast-block-templates-get-sites-request-count', array( $this, 'ajax_sites_requests_count' ) );
		add_action( 'wp_ajax_ast-block-templates-import-sites', array( $this, 'ajax_import_sites' ) );
	}

	/**
	 * Get Custimizer CSS.
	 *
	 * @return void
	 */
	public function get_server_astra_customizer_css() {

		Helper::instance()->ast_block_templates_log( 'BLOCK: Getting Server Custimizer CSS' );

		$api_args = array(
			'timeout' => 50,
		);

		$query_args = array();
		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-blocks/v2/get-customizer-css' );

		Helper::instance()->ast_block_templates_log( 'BLOCK: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$res_data = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $res_data['data']['customizer_css'] ) ) {
				Helper::instance()->update_json_file( 'ast-block-templates-customizer-css', $res_data['data']['customizer_css'] );
				do_action( 'ast_block_templates_customizer_css', $res_data['data']['customizer_css'] );
			}
		}
	}

	/**
	 * Get Spectra Common CSS.
	 *
	 * @return string
	 */
	public function get_server_spectra_common_css() {

		Helper::instance()->ast_block_templates_log( 'BLOCK: Getting Spectra Common CSS' );

		$common_css_content = trim( Helper::instance()->get_json_file_content( 'ast-block-templates-spectra-common-styles.json', false ), '"' );
		$common_css_content = str_replace( '\n', '', $common_css_content );

		if ( ! empty( $common_css_content ) ) {
			return $common_css_content;
		}

		$api_args = array(
			'timeout' => 50,
		);

		$query_args = array();
		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-blocks/v2/spectra-common-styles' );

		Helper::instance()->ast_block_templates_log( 'BLOCK: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$res_data = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $res_data['data']['spectra-common-styles'] ) ) {
				Helper::instance()->update_json_file( 'ast-block-templates-spectra-common-styles', $res_data['data']['spectra-common-styles'] );
				return $res_data['data']['spectra-common-styles'];
			}
		}

		return '';
	}

	/**
	 * Start Importer
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function setup_templates() {
		$is_fresh_site = get_option( 'ast_block_templates_fresh_site', 'yes' );

		if ( 'yes' === $is_fresh_site ) {
			$this->set_default_assets();
			update_option( 'ast_block_templates_fresh_site', 'no' );
		}

		$this->process_sync();
	}

	/**
	 * Set default assets
	 *
	 * @since 1.0.2
	 * @return  void
	 */
	public function set_default_assets() {

		$list_files = $this->get_default_assets();
		$files    = array();

		foreach ( $list_files as $key => $file_name ) {

			$content = '';

			$file_data = array(
				'file_name' => $file_name . '.json',
				'file_content' => $content,
				'file_base' => AST_BLOCK_TEMPLATES_JSON_DIR,
			);
			
			array_push( $files, $file_data );
		}

		Helper::instance()->create_files( $files );
	}

	/**
	 * Process Import
	 *
	 * @since 1.0.6
	 *
	 * @return void
	 */
	public function process_sync() {

		if ( apply_filters( 'ast_block_templates_disable_auto_sync', false ) ) {
			return;
		}

		// Check if last sync and this sync has a gap of 24 hours.
		$last_check_time = (int) get_option( 'ast-block-templates-last-export-checksums-time', 0 );
		if ( ( time() - $last_check_time ) < 86400 ) {
			return;
		}

		update_option( 'ast_blocks_sync_in_progress', 'yes', false );
		$this->sync_blocks();
	}

	/**
	 * Sync Blocks
	 * Sync blocks from library.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function sync_blocks() {
		// Check checksum difference, if found get blocks categories, count and blocks.
		$result_data = $this->check_checksum_and_get_blocks_data();

		if ( empty( $result_data ) ) {
			Helper::instance()->ast_block_templates_log( 'Blocks are up to date.' );
			update_option( 'ast-block-templates-last-export-checksums-time', time() );
			update_option( 'ast_blocks_sync_in_progress', 'no', false );
			return;
		}
		$this->process_data_sync( $result_data );
		$this->update_latest_checksums( $result_data['checksum'] );
		$this->get_server_astra_customizer_css();
	}

	/**
	 * Handle Sync API Response
	 *
	 * @since 2.0.0
	 * @return array<string, mixed>
	 */
	public function check_checksum_and_get_blocks_data() {

		$old_last_export_checksums = Helper::instance()->get_last_exported_checksum();

		$api_args = array(
			'timeout' => 100,
		);

		$query_args = array(
			'blocks_category'    => array(
				'per_page'   => 100,
				'_fields'    => 'id,count,name,slug,parent',
				'hide_empty' => true,
			),
			'blocks_pages' => array(
				'page_builder' => 'gutenberg',
				'wireframe'    => 'yes',
				'per_page' => 30,
			),
			'last_export_checksums' => urlencode( $old_last_export_checksums ),
		);

		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-sites/v2/checksum/' );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$result = json_decode( wp_remote_retrieve_body( $response ), true );
			$result_data = isset( $result['data'] ) ? $result['data'] : '';
			return $result_data;
		}
		return array();
	}

	/**
	 * Process Data Sync
	 *
	 * @since 2.0.0
	 * @param  array<string, mixed> $data Data to process.
	 * @return void
	 */
	public function process_data_sync( $data ) {
		Helper::instance()->ast_block_templates_log( 'Sync process for Gutenberg Blocks has started.' );

		if ( isset( $data['categories'] ) && ! empty( $data['categories'] ) ) {
			Helper::instance()->ast_block_templates_log( 'CATEGORY: Storing in ast-block-templates-categories.json' );
			Helper::instance()->update_json_file( 'ast-block-templates-categories', $data['categories'] );
			do_action( 'ast_block_templates_sync_categories', $data['categories'] );
		}

		if ( isset( $data['count']['pages'] ) && ! empty( $data['count']['pages'] ) ) {
			Helper::instance()->ast_block_templates_log( 'BLOCK: Requests count ' . $data['count']['pages'] );
			Helper::instance()->update_json_file( 'ast-block-templates-block-requests', $data['count']['pages'] );
			do_action( 'ast_block_templates_sync_blocks_requests', $data['count']['pages'] );
		}

		for ( $i = 1; $i <= $data['count']['pages']; $i++ ) {
			$this->import_blocks( $i );
		}

		$sites = $this->get_total_sites_count();

		for ( $i = 1; $i <= $sites; $i++ ) {
			$this->import_sites( $i );
		}

		Helper::instance()->ast_block_templates_log( 'Sync process for Gutenberg Blocks is done.' );
	}

	/**
	 * Json Files Names.
	 *
	 * @since 1.0.1
	 * @return array<string>
	 */
	public function get_default_assets() {
		return array(
			'ast-block-templates-categories',
			'ast-block-templates-blocks-1',
			'ast-block-templates-blocks-2',
			'ast-block-templates-blocks-3',
			'ast-block-templates-blocks-4',
			'ast-block-templates-blocks-5',
			'ast-block-templates-blocks-6',
			'ast-block-templates-blocks-7',
			'ast-block-templates-block-requests',
			'ast-block-templates-sites-1',
			'ast-block-templates-sites-2',
			'ast-block-templates-sites-3',
			'ast-block-templates-sites-4',
			'ast-block-templates-sites-5',
			'ast-block-templates-sites-6',
			'ast-block-templates-sites-7',
			'ast-block-templates-site-requests',
			'ast-block-templates-last-export-checksums',
			'ast-block-templates-customizer-css',
		);
	}

	/**
	 * Update Library
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function sync_via_ajax() {

		if ( ! Helper::instance()->ast_block_templates_doing_wp_cli() ) {

			if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
				wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
			}
			// Verify Nonce.
			check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );
		}

		$result_data = $this->check_checksum_and_get_blocks_data();

		if ( empty( $result_data ) ) {
			Helper::instance()->ast_block_templates_log( 'Blocks are up to date.' );
			wp_send_json_success(
				array(
					'message' => 'Complete',
					'status'  => true,
					'data'    => 'updated',
				)
			);
		}
		$this->get_server_astra_customizer_css();
		if ( isset( $result_data['categories'] ) && ! empty( $result_data['categories'] ) ) {
		
			Helper::instance()->ast_block_templates_log( 'CATEGORY: Storing in option ast-block-templates-categories.json' );
			Helper::instance()->update_json_file( 'ast-block-templates-categories', $result_data['categories'] );
			do_action( 'ast_block_templates_sync_categories', $result_data['categories'] );
		}
		if ( isset( $result_data['count']['pages'] ) && ! empty( $result_data['count']['pages'] ) ) {
			Helper::instance()->ast_block_templates_log( 'BLOCK: Requests count ' . $result_data['count']['pages'] );
			Helper::instance()->update_json_file( 'ast-block-templates-block-requests', $result_data['count']['pages'] );
			do_action( 'ast_block_templates_sync_blocks_requests', $result_data['count']['pages'] );
		}
		$this->update_latest_checksums( $result_data['checksum'] );
		wp_send_json_success(
			array(
				'message' => 'in-progress',
				'status'  => true,
				'data'    => $result_data['count'],
			)
		);
	}

	/**
	 * Get Last Exported Checksum Status
	 *
	 * @since 1.0.0
	 * @return string Checksums Status.
	 */
	public function get_last_export_checksums() {

		$old_last_export_checksums = Helper::instance()->get_last_exported_checksum();

		$new_last_export_checksums = $this->set_last_export_checksums();

		$checksums_status = 'no';

		if ( empty( $old_last_export_checksums ) ) {
			$checksums_status = 'yes';
		}

		if ( $new_last_export_checksums !== $old_last_export_checksums ) {
			$checksums_status = 'yes';
		}

		return apply_filters( 'ast_block_templates_checksums_status', $checksums_status );
	}

	/**
	 * Set Last Exported Checksum
	 *
	 * @since 1.0.0
	 * @return string Checksums Status.
	 */
	public function set_last_export_checksums() {

		if ( ! empty( $this->last_export_checksums ) ) {
			return $this->last_export_checksums;
		}

		$api_args = array(
			'timeout' => 60,
		);

		$query_args = array();

		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-sites/v1/get-last-export-checksums/' );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$result = json_decode( wp_remote_retrieve_body( $response ), true );

			// Set last export checksums.
			if ( ! empty( $result['last_export_checksums'] ) ) {
				update_option( 'ast-block-templates-last-export-checksums-latest', $result['last_export_checksums'], false );

				$this->last_export_checksums = $result['last_export_checksums'];
			}
		}

		return $this->last_export_checksums;
	}

	/**
	 * Update Latest Checksums
	 *
	 * Store latest checksum after batch complete.
	 *
	 * @param string $new_checksum New Checksum.
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function update_latest_checksums( $new_checksum ) {
		Helper::instance()->update_json_file( 'ast-block-templates-last-export-checksums', $new_checksum );
		update_option( 'ast-block-templates-last-export-checksums-time', time(), false );
		update_option( 'ast_blocks_sync_in_progress', 'no', false );
		do_action( 'ast_block_templates_sync_export_checksum', $new_checksum );
	}

	/**
	 * Import Categories
	 *
	 * @since 1.0.3
	 * @return void
	 */
	public function ajax_import_categories() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		// Import categories doesn't return any values.
		$this->import_categories();
		wp_send_json_success(
			array(
				'message' => 'Success imported categories',
				'status'  => true,
			)
		);

	}

	/**
	 * Import Blocks
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function ajax_import_blocks() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$page_no = isset( $_POST['page_no'] ) ? absint( $_POST['page_no'] ) : '';
		if ( $page_no ) {
			$this->import_blocks( $page_no );

			$data = array(
				'message' => 'Success imported sites for page ' . $page_no,
				'status'  => true,
				'data'    => array(),
			);

			if ( isset( $_POST['total'] ) && $_POST['total'] === $_POST['page_no'] ) {
				$data['data']['allBlocks'] = Plugin::instance()->get_all_blocks();
				$data['data']['categories'] = Helper::instance()->get_block_template_category();
			}

			wp_send_json_success(
				$data
			);
		}

		wp_send_json_error(
			array(
				'message' => 'Failed imported blocks for page ' . $page_no,
				'status'  => false,
				'data'    => '',
			)
		);
	}

	/**
	 * Blocks Requests Count
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function ajax_blocks_requests_count() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		// Get count.
		$total_requests = $this->get_total_blocks_requests();
		$this->get_server_astra_customizer_css();
		if ( $total_requests ) {
			wp_send_json_success(
				array(
					'message' => 'Success',
					'status'  => true,
					'data'    => $total_requests,
				)
			);
		}

		wp_send_json_success(
			array(
				'message' => 'Failed',
				'status'  => false,
				'data'    => $total_requests,
			)
		);
	}

	/**
	 * Get Blocks Total Requests
	 *
	 * @return integer
	 */
	public function get_total_blocks_requests() {

		Helper::instance()->ast_block_templates_log( 'BLOCK: Getting Total Blocks' );

		$api_args = array(
			'timeout' => 60,
		);

		$query_args = apply_filters(
			'ast_block_templates_get_blocks_count_args',
			array(
				'page_builder' => 'gutenberg',
				'wireframe'    => 'yes',
				'per_page' => 30,
			)
		);

		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-blocks/v2/get-blocks-count/' );

		Helper::instance()->ast_block_templates_log( 'BLOCK: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$total_requests = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $total_requests['pages'] ) ) {
				Helper::instance()->ast_block_templates_log( 'BLOCK: Requests count ' . $total_requests['pages'] );
				Helper::instance()->update_json_file( 'ast-block-templates-block-requests', $total_requests['pages'] );
				do_action( 'ast_block_templates_sync_blocks_requests', $total_requests['pages'] );
				return $total_requests['pages'];
			}
		}
		
		// returning 0 pages as no return statement exist.
		return 0;

	}

	/**
	 * Import Categories
	 *
	 * @since 1.0.3
	 * @return void
	 */
	public function import_categories() {

		Helper::instance()->ast_block_templates_log( 'CATEGORY:Importing categories..' );
		$api_args = array(
			'timeout' => 30,
		);

		$query_args = apply_filters(
			'ast_block_templates_get_category_args',
			array(
				'per_page'   => 100,
				'_fields'    => 'id,count,name,slug,parent',
				'hide_empty' => true,
			)
		);

		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/wp/v2/blocks-category/' );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$all_categories = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $all_categories['code'] ) ) {
				$message = isset( $all_categories['message'] ) ? $all_categories['message'] : '';
				if ( ! empty( $message ) ) {
					Helper::instance()->ast_block_templates_log( 'CATEGORY:HTTP Request Error: ' . $message );
				} else {
					Helper::instance()->ast_block_templates_log( 'CATEGORY:HTTP Request Error!' );
				}
			} else {

				Helper::instance()->ast_block_templates_log( 'CATEGORY:Storing in file ast-block-templates-categories' );
				Helper::instance()->update_json_file( 'ast-block-templates-categories', $all_categories );

				do_action( 'ast_block_templates_sync_categories', $all_categories );

				if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
					Helper::instance()->ast_block_templates_log( 'CATEGORY:Generating ast-block-templates-categories.json file' );
				}
			}
		} else {
			Helper::instance()->ast_block_templates_log( 'CATEGORY:API Error: ' . $response->get_error_message() );
		}

		Helper::instance()->ast_block_templates_log( 'CATEGORY:Completed category import.' );
	}

	/**
	 * Import Blocks
	 *
	 * @since 1.0.0
	 * @param  integer $page Page number.
	 * @return void
	 */
	public function import_blocks( $page = 1 ) {

		Helper::instance()->ast_block_templates_log( 'BLOCK: Importing request ' . $page . ' ..' );
		$api_args   = array(
			'timeout' => 30,
		);
		$all_blocks = array();

		$query_args = apply_filters(
			'ast_block_templates_blocks_args',
			array(
				'page_builder' => 'gutenberg',
				'per_page'     => 30,
				'page'         => $page,
				'wireframe'    => 'yes',
			)
		);

		$api_url = add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-blocks/v2/blocks/' );

		Helper::instance()->ast_block_templates_log( 'BLOCK: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$all_blocks = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $all_blocks['code'] ) ) {
				$message = isset( $all_blocks['message'] ) ? $all_blocks['message'] : '';
				if ( ! empty( $message ) ) {
					Helper::instance()->ast_block_templates_log( 'BLOCK: HTTP Request Error: ' . $message );
				} else {
					Helper::instance()->ast_block_templates_log( 'BLOCK: HTTP Request Error!' );
				}
			} else {
				$file_name = 'ast-block-templates-blocks-' . $page;
				Helper::instance()->ast_block_templates_log( 'BLOCK: Storing in file ' . $file_name );

				Helper::instance()->update_json_file( $file_name, $all_blocks );

				if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
					do_action( 'ast_block_templates_sync_blocks', $page, $all_blocks );
					Helper::instance()->ast_block_templates_log( 'BLOCK: Genearting ' . $file_name . '.json file' );
				}
			}
		} else {
			Helper::instance()->ast_block_templates_log( 'BLOCK: API Error: ' . $response->get_error_message() );
		}

		Helper::instance()->ast_block_templates_log( 'BLOCK: Completed request ' . $page );
	}

	/**
	 * Get Sites Total Requests
	 *
	 * @return integer
	 */
	public function get_total_sites_count() {

		Helper::instance()->ast_block_templates_log( 'SITE: Getting Total Sites' );

		$api_args = array(
			'timeout' => 60,
		);

		$query_args = apply_filters(
			'ast_block_templates_get_total_pages_args',
			array(
				'page_builder' => 'gutenberg',
				'per_page' => 30,
			)
		);

		$api_url = esc_url_raw( add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-sites/v1/get-total-pages/' ) );

		Helper::instance()->ast_block_templates_log( 'SITE: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$total_requests = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $total_requests['pages'] ) ) {
				Helper::instance()->ast_block_templates_log( 'SITE: Request count ' . $total_requests['pages'] );
				Helper::instance()->update_json_file( 'ast-block-templates-site-requests', $total_requests['pages'] );

				do_action( 'ast_block_templates_sync_get_total_pages', $total_requests['pages'] );
				return $total_requests['pages'];
			}
		}
		// Return a default value if conditions are not met.
		return 0;
	}

	/**
	 * Import Sites
	 *
	 * @since 1.0.0
	 * @param  integer $page Page number.
	 * @return void
	 */
	public function import_sites( $page = 1 ) {

		Helper::instance()->ast_block_templates_log( 'SITE: Importing request ' . $page . ' ..' );
		$api_args   = array(
			'timeout' => 30,
		);
		$all_blocks = array();

		$query_args = apply_filters(
			'ast_block_templates_get_sites_and_pages_args',
			array(
				'per_page'     => 30,
				'page'         => $page,
				'page-builder' => 'gutenberg',
			)
		);

		$api_url = esc_url_raw( add_query_arg( $query_args, AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/astra-sites/v1/sites-and-pages/' ) );

		Helper::instance()->ast_block_templates_log( 'SITE: ' . $api_url );

		$response = wp_safe_remote_get( $api_url, $api_args );

		if ( ! is_wp_error( $response ) || wp_remote_retrieve_response_code( $response ) === 200 ) {
			$all_blocks = json_decode( wp_remote_retrieve_body( $response ), true );

			if ( isset( $all_blocks['code'] ) ) {
				$message = isset( $all_blocks['message'] ) ? $all_blocks['message'] : '';
				if ( ! empty( $message ) ) {
					Helper::instance()->ast_block_templates_log( 'SITE: HTTP Request Error: ' . $message );
				} else {
					Helper::instance()->ast_block_templates_log( 'SITE: HTTP Request Error!' );
				}
			} else {

				$file_name = 'ast-block-templates-sites-' . $page;
				Helper::instance()->ast_block_templates_log( 'SITE: Storing in file ' . $file_name );
				Helper::instance()->update_json_file( $file_name, $all_blocks );

				do_action( 'ast_block_templates_sync_sites', $page, $all_blocks );

				if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
					Helper::instance()->ast_block_templates_log( 'SITE: Generating ' . $file_name . '.json file' );
				}
			}
		} else {
			Helper::instance()->ast_block_templates_log( 'SITE: API Error: ' . $response->get_error_message() );
		}

		Helper::instance()->ast_block_templates_log( 'SITE: Completed request ' . $page );
	}

	/**
	 * Blocks Requests Count
	 *
	 * @since 2.1.0
	 * @return void
	 */
	public function ajax_sites_requests_count() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		// Get count.
		$total_requests = $this->get_total_sites_count();
		if ( $total_requests ) {
			wp_send_json_success(
				array(
					'message' => 'Success',
					'status'  => true,
					'data'    => $total_requests,
				)
			);
		}

		wp_send_json_success(
			array(
				'message' => 'Failed',
				'status'  => false,
				'data'    => $total_requests,
			)
		);
	}

	/** 
	 * Import Sites
	 *
	 * @since 2.1.0
	 * @return void
	 */
	public function ajax_import_sites() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$page_no = isset( $_POST['page_no'] ) ? absint( $_POST['page_no'] ) : '';
		if ( $page_no ) {
			$this->import_sites( $page_no );
			$data = array(
				'message' => 'Success imported sites for page ' . $page_no,
				'status'  => true,
				'data'    => array(),
			);

			if ( isset( $_POST['total'] ) && $_POST['total'] === $_POST['page_no'] ) {
				$data['data']['allBlocks'] = Plugin::instance()->get_all_blocks();
				$data['data']['categories'] = Helper::instance()->get_block_template_category();
				$data['data']['allSites'] = Plugin::instance()->get_all_sites();
			}

			wp_send_json_success(
				$data
			);
		}

		wp_send_json_error(
			array(
				'message' => 'Failed imported sites for page ' . $page_no,
				'status'  => false,
				'data'    => '',
			)
		);
	}

}
PK�][c�W���Zultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/sync-library-wp-cli.phpnu�[���<?php
/**
 * WP CLI
 *
 * 1. Run `wp ast-block-templates sync`       Info.
 *
 * @since 1.0.0
 *
 * @package ast-block-templates
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Importer\Sync_Library;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Traits\Instance;
use WP_CLI;
use WP_CLI_Command;

/**
 * Ast_Block Templates WP CLI
 */
class Sync_Library_WP_CLI {

	use Instance;

	/**
	 * Sync
	 *
	 *  Example: wp ast-block-templates sync
	 *
	 * @since 1.0.0
	 * @param  array<string, string|int> $args       Arguments with specific value types.
	 * @param  array<string, mixed>      $assoc_args Associated Arguments.
	 * @return void
	 */
	public function sync( $args = array(), $assoc_args = array() ) {

		// Start Sync.
		if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
			WP_CLI::line( 'Sync Started' );
		}

		$force = isset( $assoc_args['force'] ) ? true : false;

		$result_data = Sync_Library::instance()->check_checksum_and_get_blocks_data();

		if ( empty( $result_data ) && Helper::instance()->ast_block_templates_doing_wp_cli() && ! $force ) {
			WP_CLI::line( 'Blocks are up to date.' );
			return;
		}
		Sync_Library::instance()->process_data_sync( $result_data );
		Sync_Library::instance()->update_latest_checksums( $result_data['checksum'] );
		Sync_Library::instance()->get_server_astra_customizer_css();

		// Start Sync.
		if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
			WP_CLI::line( 'Sync Completed' );
		}
	}
}

/**
 * Add Command
 */
if ( Helper::instance()->ast_block_templates_doing_wp_cli() ) {
	WP_CLI::add_command( 'ast-block-templates', 'Gutenberg_Templates\Inc\Importer\Sync_Library_WP_CLI' );
}
PK�][��Hl8l8Sultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/block-editor.phpnu�[���<?php
/**
 * AI content generator and replacer file.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
use Gutenberg_Templates\Inc\Importer\Images;

/**
 * Block Editor Blocks Replacer
 *
 * @since {{since}}
 */
class BlockEditor {

	use Instance;

	/**
	 * Constructor
	 *
	 * @since {{since}}
	 */
	public function __construct() {}

	/**
	 * Old Images
	 *
	 * @var array<int> $old_images Old images.
	 */
	public static $old_images = array();

	/**
	 * Parses images and other content in the Spectra Container block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_container( $block ) {
		
		if (
			! isset( $block['attrs']['backgroundImageDesktop'] ) ||
			empty( $block['attrs']['backgroundImageDesktop'] ) ||
			Importer_Helper::is_skipable( $block['attrs']['backgroundImageDesktop']['url'] )
		) {
			return $block;
		}

		$image = Images::instance()->get_image( Images::$image_index );
		if ( empty( $image ) || ! is_array( $image ) ) {
			return $block;
		}

		$image = Images::instance()->download_image( $image );

		if ( is_wp_error( $image ) ) {
			Helper::instance()->ast_block_templates_log( 'Replacing Image problem : ' . $block['attrs']['backgroundImageDesktop']['url'] . ' Warning: ' . wp_json_encode( $image ) );
			return $block;
		}

		$attachment = wp_prepare_attachment_for_js( absint( $image ) );
		if ( ! is_array( $attachment ) ) {
			return $block;
		}

		self::$old_images[] = $block['attrs']['backgroundImageDesktop']['id'];

		Helper::instance()->ast_block_templates_log( 'Replacing Image from ' . $block['attrs']['backgroundImageDesktop']['url'] . 'to "' . $attachment['url'] . '" for ' . $block['blockName'] . '" with index "' . Images::$image_index . '"' );
		$block['attrs']['backgroundImageDesktop'] = $attachment;
		Images::$image_index++;

		return $block;
	}

	/**
	 * Parses images and other content in the Spectra Info Box block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_infobox( $block ) {
		
		if (
			! isset( $block['attrs']['iconImage'] ) ||
			empty( $block['attrs']['iconImage'] ) ||
			Importer_Helper::is_skipable( $block['attrs']['iconImage']['url'] )
		) {
			return $block;
		}

		$image = Images::instance()->get_image( Images::$image_index );
		if ( empty( $image ) || ! is_array( $image ) ) {
			return $block;
		}

		$image = Images::instance()->download_image( $image );

		if ( is_wp_error( $image ) ) {
			Helper::instance()->ast_block_templates_log( 'Replacing Image problem : ' . $block['attrs']['iconImage']['url'] . ' Warning: ' . wp_json_encode( $image ) );
			return $block;
		}

		$attachment = wp_prepare_attachment_for_js( absint( $image ) );

		if ( ! is_array( $attachment ) ) {
			return $block;
		}

		self::$old_images[] = $block['attrs']['iconImage']['id'];

		if ( ! empty( $block['attrs']['iconImage']['url'] ) ) {
			Helper::instance()->ast_block_templates_log( 'Replacing Image from ' . $block['attrs']['iconImage']['url'] . ' to "' . $attachment['url'] . '" for ' . $block['blockName'] . '" with index "' . Images::$image_index . '"' );
			$block['innerHTML'] = str_replace( $block['attrs']['iconImage']['url'], $attachment['url'], $block['innerHTML'] );
		}

		foreach ( $block['innerContent'] as $key => &$inner_content ) {

			if ( is_string( $block['innerContent'][ $key ] ) && '' === trim( $block['innerContent'][ $key ] ) ) {
				continue;
			}
			$block['innerContent'][ $key ] = str_replace( $block['attrs']['iconImage']['url'], $attachment['url'], $block['innerContent'][ $key ] );
		}
		$block['attrs']['iconImage'] = $attachment;
		Images::$image_index++;

		return $block;
	}

	/**
	 * Parses images and other content in the Spectra Image block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_image( $block ) {
		
		if (
			! isset( $block['attrs']['url'] ) ||
			Importer_Helper::is_skipable( $block['attrs']['url'] )
		) {
			return $block;
		}

		$image = Images::instance()->get_image( Images::$image_index );
		if ( empty( $image ) || ! is_array( $image ) ) {
			return $block;
		}

		$image = Images::instance()->download_image( $image );

		if ( is_wp_error( $image ) ) {
			Helper::instance()->ast_block_templates_log( 'Replacing Image problem : ' . $block['attrs']['url'] . ' Warning: ' . wp_json_encode( $image ) );
			return $block;
		}

		$attachment = wp_prepare_attachment_for_js( absint( $image ) );
		if ( ! is_array( $attachment ) ) {
			return $block;
		}

		self::$old_images[] = $block['attrs']['id'];
		Helper::instance()->ast_block_templates_log( 'Replacing Image from ' . $block['attrs']['url'] . ' to "' . $attachment['url'] . '" for ' . $block['blockName'] . '" with index "' . Images::$image_index . '"' );
		$block['innerHTML'] = str_replace( $block['attrs']['url'], $attachment['url'], $block['innerHTML'] );
		$block['innerHTML'] = str_replace( $block['attrs']['id'], (string) $attachment['id'], $block['innerHTML'] );

		$tablet_size_slug = ! empty( $block['attrs']['sizeSlugTablet'] ) ? $block['attrs']['sizeSlugTablet'] : '';
		$mobile_size_slug = ! empty( $block['attrs']['sizeSlugMobile'] ) ? $block['attrs']['sizeSlugMobile'] : '';
		$is_attachemnts   = is_array( $attachment['sizes'] ) && ! empty( $attachment['sizes'] );

		if ( ! empty( $block['attrs']['urlTablet'] ) && ! empty( $tablet_size_slug ) && ! empty( $attachment['sizes'][ $tablet_size_slug ]['url'] ) ) {
			$block['innerHTML'] = str_replace( $block['attrs']['urlTablet'], $attachment['sizes'][ $tablet_size_slug ]['url'], $block['innerHTML'] );
		}
		if ( ! empty( $block['attrs']['urlMobile'] && ! empty( $mobile_size_slug ) ) && ! empty( $attachment['sizes'][ $mobile_size_slug ]['url'] ) ) {
			$block['innerHTML'] = str_replace( $block['attrs']['urlMobile'], $attachment['sizes'][ $mobile_size_slug ]['url'], $block['innerHTML'] );
		}

		foreach ( $block['innerContent'] as $key => &$inner_content ) {

			if ( is_string( $block['innerContent'][ $key ] ) && '' === trim( $block['innerContent'][ $key ] ) ) {
				continue;
			}
			$block['innerContent'][ $key ] = str_replace( $block['attrs']['url'], $attachment['url'], $block['innerContent'][ $key ] );
			$block['innerContent'][ $key ] = str_replace( $block['attrs']['id'], (string) $attachment['id'], $block['innerContent'][ $key ] );

			if ( $is_attachemnts ) {
				if ( ! empty( $block['attrs']['urlTablet'] ) ) {
					$block['innerContent'][ $key ] = str_replace( $block['attrs']['urlTablet'], $attachment['url'], $block['innerContent'][ $key ] );
				}
				if ( ! empty( $block['attrs']['urlMobile'] ) ) {
					$block['innerContent'][ $key ] = str_replace( $block['attrs']['urlMobile'], $attachment['url'], $block['innerContent'][ $key ] );
				}
			}
		}

		if ( $is_attachemnts ) {
			if ( ! empty( $block['attrs']['urlTablet'] ) ) {
				$block['attrs']['urlTablet'] = $attachment['url'];
			}

			if ( ! empty( $block['attrs']['urlMobile'] ) ) {
				$block['attrs']['urlMobile'] = $attachment['url'];
			}
		}

		$block['attrs']['url'] = $attachment['url'];
		$block['attrs']['id']  = $attachment['id'];
		Images::$image_index++;

		return $block;
	}

	/**
	 * Parses images and other content in the Spectra Info Box block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_gallery( $block ) {
		$images      = $block['attrs']['mediaGallery'];
		$gallery_ids = array();
		foreach ( $images as $key => &$image ) {

			if (
				! isset( $image ) ||
				empty( $image ) ||
				Importer_Helper::is_skipable( $image['url'] )
			) {
				continue;
			}
			
			$new_image = Images::instance()->get_image( Images::$image_index );
			if ( empty( $new_image ) || ! is_array( $new_image ) ) {
				continue;
			}

			$new_image = Images::instance()->download_image( $new_image );

			if ( is_wp_error( $new_image ) ) {
				Helper::instance()->ast_block_templates_log( 'Replacing Image problem : ' . $image['url'] . ' Warning: ' . wp_json_encode( $new_image ) );
				continue;
			}

			$attachment = wp_prepare_attachment_for_js( absint( $new_image ) );

			if ( ! is_array( $attachment ) ) {
				continue;
			}

			$gallery_ids[] = $attachment['id'];

			self::$old_images[] = $image['id'];
			Helper::instance()->ast_block_templates_log( 'Replacing Image from ' . $image['url'] . ' to "' . $attachment['url'] . '" for ' . $block['blockName'] . '" with index "' . Images::$image_index . '"' );
			$image['url']     = ! empty( $attachment['url'] ) ? $attachment['url'] : $image['url'];
			$image['sizes']   = ! empty( $attachment['sizes'] ) ? $attachment['sizes'] : $image['sizes'];
			$image['mime']    = ! empty( $attachment['mime'] ) ? $attachment['mime'] : $image['mime'];
			$image['type']    = ! empty( $attachment['type'] ) ? $attachment['type'] : $image['type'];
			$image['subtype'] = ! empty( $attachment['subtype'] ) ? $attachment['subtype'] : $image['subtype'];
			$image['id']      = ! empty( $attachment['id'] ) ? $attachment['id'] : $image['id'];
			$image['alt']     = ! empty( $attachment['alt'] ) ? $attachment['alt'] : $image['alt'];
			$image['link']    = ! empty( $attachment['link'] ) ? $attachment['link'] : $image['link'];
			Images::$image_index++;
		}
		$block['attrs']['mediaGallery'] = $images;
		$block['attrs']['mediaIDs']     = $gallery_ids;

		return $block;
	}

	/**
	 * Parses Google Map for the Spectra Google Map block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_google_map( $block ) {

		$address = Importer_Helper::get_business_details( 'business_address' );
		if ( empty( $address ) ) {
			return $block;
		}

		Helper::instance()->ast_block_templates_log( 'Replacing Google Map from ' . $block['attrs']['address'] . ' to "' . wp_json_encode( $address ) );
		$block['attrs']['address'] = $address;

		return $block;
	}

	/**
	 * Parses images and other content in the Spectra Info Box block.
	 *
	 * @since {{since}}
	 * @param \WP_Post $post Post.
	 * @return void
	 */
	public function parse_featured_image( $post ) {
		$thumb_id = get_post_thumbnail_id( $post );
		if ( false === $thumb_id ) {
			return;
		}
		$thumb = wp_prepare_attachment_for_js( $thumb_id );
		
		if (
			! isset( $thumb['url'] ) ||
			Importer_Helper::is_skipable( $thumb['url'] )
		) {
			return;
		}

		$image = Images::instance()->get_image( Images::$image_index );
		if ( empty( $image ) || ! is_array( $image ) ) {
			return;
		}

		$image = Images::instance()->download_image( $image );

		if ( is_wp_error( $image ) ) {
			Helper::instance()->ast_block_templates_log( 'Replacing Image problem : ' . $thumb['url'] . ' Warning: ' . wp_json_encode( $image ) );
			return;
		}

		$attachment = wp_prepare_attachment_for_js( absint( $image ) );
		if ( ! is_array( $attachment ) ) {
			return;
		}

		self::$old_images[] = $thumb['id'];
		Helper::instance()->ast_block_templates_log( 'Replacing Image from ' . $thumb['url'] . ' to "' . $attachment['url'] . '" with index "' . Images::$image_index . '"' );

		set_post_thumbnail( $post, $attachment['id'] );

		Images::$image_index++;
	}

	/**
	 * Parses address and contct in the block.
	 *
	 * @since {{since}}
	 * @param string $key key to replace.
	 * @param string $ai_content ai content string.
	 *
	 * @return string
	 */
	public function replace_contact_details( $key, $ai_content ) {

		$business_details = Importer_Helper::get_business_details();

		$social_profiles = $business_details['social_profiles'];

		if ( ! is_array( $social_profiles ) ) {
			return $ai_content;
		}
		
		$social_icons = array_combine( array_column( $social_profiles, 'type' ), array_column( $social_profiles, 'url' ) );

		switch ( $key ) {
			case '2360 Hood Avenue, San Diego, CA, 92123':
				$ai_content = $business_details['business_address'];
				break;

			case '202-555-0188':
				$ai_content = $business_details['business_phone'];
				break;

			case 'contact@example.com':
				$ai_content = $business_details['business_email'];
				break;

			case '#facebook':
			case '#twitter':
			case '#linkenin':
			case '#instagram':
			case '#youtube':
				$ai_content = $social_icons[ str_replace( '#', '', $key ) ];
				break;
		}

		return $ai_content;

	}

	/**
	 * Parses Spectra form block.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_form( $block ) {

		$business_email = Importer_Helper::get_business_details( 'business_email' );

		if ( ! empty( $business_email ) ) {
			$block['attrs']['afterSubmitToEmail'] = $business_email;
		}
		return $block;

	}

	/**
	 * Parse social icon list.
	 *
	 * @since {{since}}
	 * @param array<mixed> $block Block.
	 * @return array<mixed> $block Block.
	 */
	public function parse_spectra_social_icons( $block ) {

		$social_profile = Importer_Helper::get_business_details( 'social_profiles' );
		if ( empty( $social_profile ) ) {
			return $block;
		}

		$social_icons = array_combine( array_column( $social_profile, 'id' ), array_column( $social_profile, 'url' ) );
		$inner_blocks = $block['innerBlocks'];

		if ( is_array( $inner_blocks ) ) {

			$social_icons_list = array_map(
				function( $item ) {
					return $item['attrs']['icon'];
				},
				$inner_blocks
			);

			// Check if icon-list contains social icons by checking facebook icon in list.
			if ( ! in_array( 'facebook', $social_icons_list, true ) ) {
				return $block;
			}

			foreach ( $inner_blocks as $index => &$inner_block ) {

				if ( 'uagb/icon-list-child' !== $inner_block['blockName'] ) {
					continue;
				}

				$icon = $inner_block['attrs']['icon'];

				if ( empty( $icon ) ) {
					continue;
				}

				if ( in_array( $icon, array_keys( $social_icons ), true ) ) {
					$block['innerBlocks'][ $index ]['attrs']['link'] = $social_icons[ $icon ];
				}

				if ( ! in_array( $icon, array_keys( $social_icons ), true ) ) {
					unset( $block['innerBlocks'][ $index ] );
				}
			}

			$block['innerBlocks'] = array_values( $block['innerBlocks'] );
		}
		return $block;
	}
}
PK�][�ϔ���Uultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/image-importer.phpnu�[���<?php
/**
 * Image Importer
 *
 * => How to use?
 *
 *  $image = array(
 *      'url' => '<image-url>',
 *      'id'  => '<image-id>',
 *  );
 *
 *  $downloaded_image = Image_Importer::get_instance()->import( $image );
 *
 * @package Ast Block Templates
 * @since 1.0.0
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;

/**
 * Ast_Block Templates Image Importer
 *
 * @since 1.0.0
 */
class Image_Importer {

	use Instance;

	/**
	 * Images IDs
	 *
	 * @var array<int, int>   The Array of already image IDs.
	 * @since 1.0.0
	 */
	private $already_imported_ids = array();

	/**
	 * Constructor
	 *
	 * @since 1.0.0
	 */
	public function __construct() {

		if ( ! function_exists( 'WP_Filesystem' ) ) {
			require_once ABSPATH . 'wp-admin/includes/file.php';
		}

		WP_Filesystem();
	}

	/**
	 * Process Image Download
	 *
	 * @since 1.0.0
	 * @param  array<int, mixed> $attachments Attachment array.
	 * @return array<int, mixed> Attachment array.
	 */
	public function process( $attachments ) {

		$downloaded_images = array();

		foreach ( $attachments as $key => $attachment ) {
			$downloaded_images[] = $this->import( $attachment );
		}

		return $downloaded_images;
	}

	/**
	 * Get Hash Image.
	 *
	 * @since 1.0.0
	 * @param  string $attachment_url Attachment URL.
	 * @return string                 Hash string.
	 */
	public function get_hash_image( $attachment_url ) {
		return sha1( $attachment_url );
	}

	/**
	 * Get Already Imported IDs
	 *
	 * @return array<int>
	 * This function to is to suppress phpstan warnings
	 * since this parameter is not being used
	 */
	public function get_already_imported_ids() {
		return $this->already_imported_ids;
	}

	/**
	 * Get Saved Image.
	 *
	 * @since 1.0.0
	 * @param  array<string, mixed> $attachment   Attachment Data.
	 * @return array<string, mixed> Hash string.
	 */
	private function get_saved_image( $attachment ) {

		if ( apply_filters( 'ast_block_templates_image_importer_skip_image', false, $attachment ) ) {
			Helper::instance()->ast_block_templates_log( 'BATCH - SKIP Image - {from filter} - ' . $attachment['url'] . ' - Filter name `ast_block_templates_image_importer_skip_image`.' );
			return array(
				'status'     => true,
				'attachment' => $attachment,
			);
		}

		global $wpdb;

		// 1. Is already imported in Batch Import Process?
		$post_id = $wpdb->get_var( $wpdb->prepare( 'SELECT `post_id` FROM `' . $wpdb->postmeta . '` WHERE `meta_key` = \'_ast_block_templates_image_hash\' AND `meta_value` = %s;', $this->get_hash_image( $attachment['url'] ) ) ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching

		// 2. Is image already imported though XML?
		if ( empty( $post_id ) ) {

			// Get file name without extension.
			// To check it exist in attachment.
			$filename = basename( $attachment['url'] );

			$post_id = $wpdb->get_var( $wpdb->prepare( "SELECT post_id FROM {$wpdb->postmeta} WHERE meta_key = '_wp_attached_file' AND meta_value LIKE %s", '%/' . $filename . '%' ) ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching
			Helper::instance()->ast_block_templates_log( 'BATCH - SKIP Image {already imported from xml} - ' . $attachment['url'] );
		}

		if ( $post_id ) {
			$new_attachment               = array(
				'id'  => $post_id,
				'url' => wp_get_attachment_url( $post_id ),
			);
			$this->already_imported_ids[] = $post_id;

			return array(
				'status'     => true,
				'attachment' => $new_attachment,
			);
		}

		return array(
			'status'     => false,
			'attachment' => $attachment,
		);
	}

	/**
	 * Import Image
	 *
	 * @since 1.0.0
	 * @param  array<string, mixed> $attachment Attachment array.
	 * @return array<string, mixed> Attachment array.,
	 */
	public function import( $attachment ) {

		Helper::instance()->ast_block_templates_log( 'Source - ' . $attachment['url'] );
		$saved_image = $this->get_saved_image( $attachment );
		Helper::instance()->ast_block_templates_log( 'Log - ' . wp_json_encode( $saved_image['attachment'] ) );

		if ( $saved_image['status'] ) {
			return $saved_image['attachment'];
		}

		// Extract the file name and extension from the URL.
		$filename = basename( $attachment['url'] );

		if ( isset( $attachment['engine'] ) && 'unsplash' === $attachment['engine'] ) {
			$filename = 'unsplash-photo-' . $attachment['id'] . '.jpg';
		}

		$file_content = wp_remote_retrieve_body(
			wp_safe_remote_get(
				$attachment['url'],
				array(
					'timeout'   => 60,
				)
			)
		);

		// Empty file content?
		if ( empty( $file_content ) ) {

			Helper::instance()->ast_block_templates_log( 'BATCH - FAIL Image {Error: Failed wp_remote_retrieve_body} - ' . $attachment['url'] );
			return $attachment;
		}

		$upload = wp_upload_bits( $filename, null, $file_content );

		$upload_json = wp_json_encode( $upload );
		if ( is_string( $upload_json ) ) {
			Helper::instance()->ast_block_templates_log( $upload_json );
		} else {
			Helper::instance()->ast_block_templates_log( "Failed to log: {$filename}" );
		}

		$post = array(
			'post_title' => $filename,
			'guid'       => $upload['url'],
		);
		$post_json = wp_json_encode( $post );
		if ( is_string( $post_json ) ) {
			Helper::instance()->ast_block_templates_log( $post_json );
		} else {
			Helper::instance()->ast_block_templates_log( "Failed to log post data: {$filename}" );
		}

		$info = wp_check_filetype( $upload['file'] );
		if ( is_array( $info ) ) {
			$post['post_mime_type'] = $info['type'];
		}

		if ( ! function_exists( 'wp_generate_attachment_metadata' ) ) {
			include ABSPATH . 'wp-admin/includes/image.php';
		}

		$post_id = wp_insert_attachment( $post, $upload['file'] );
		wp_update_attachment_metadata(
			$post_id,
			wp_generate_attachment_metadata( $post_id, $upload['file'] )
		);
		update_post_meta( $post_id, '_ast_block_templates_image_hash', $this->get_hash_image( $attachment['url'] ) );

		$new_attachment = array(
			'id'  => $post_id,
			'url' => $upload['url'],
		);

		Helper::instance()->ast_block_templates_log( 'BATCH - SUCCESS Image {Imported} - ' . $new_attachment['url'] );

		$this->already_imported_ids[] = $post_id;

		return $new_attachment;
	}

	/**
	 * Is Image URL
	 *
	 * @since 1.0.0
	 *
	 * @param  string $url URL.
	 * @return boolean
	 */
	public function is_image_url( $url = '' ) {
		if ( empty( $url ) ) {
			return false;
		}

		if ( Helper::instance()->ast_block_templates_is_valid_image( $url ) ) {
			return true;
		}

		return false;
	}
}
PK�][m�$Vultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/importer-helper.phpnu�[���<?php
/**
 * Import Helper.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Helper;
use WP_Query;

/**
 * Importer Helper
 *
 * @since {{since}}
 */
class Importer_Helper {

	/**
	 * Get pages.
	 *
	 * @return array<int|\WP_Post> Array for pages.
	 * @param string $type Post type.
	 * @since  {{since}}
	 */
	public static function get_pages( $type = 'page' ) {
		$query_args = array(
			'post_type'           => array( $type ),
			// Query performance optimization.
			'fields'              => array( 'ids', 'post_content', 'post_title' ),
			'posts_per_page'      => '10',
			'post_status'         => 'publish',
			'ignore_sticky_posts' => true,
			'no_found_rows'       => true,
		);

		$query = new WP_Query( $query_args );

		$desired_first_page_id = intval( get_option( 'page_on_front', 0 ) );
		$pages                 = $query->posts ? $query->posts : array();

		$desired_page_index = false;

		if ( is_array( $pages ) && ! empty( $pages ) && ! empty( $desired_first_page_id ) ) {
			foreach ( $pages as $key => $page ) {

				if ( isset( $page->ID ) && $page->ID === $desired_first_page_id ) {
					$desired_page_index = $key;
					break;
				}
			}

			if ( false !== $desired_page_index ) {
				$desired_page = $pages[ $desired_page_index ];
				unset( $pages[ $desired_page_index ] );
				array_unshift( $pages, $desired_page );
			}
		}

		return $pages;
	}

	/**
	 * Get Business details.
	 *
	 * @since {{since}}
	 * @param string $key options name.
	 * @return array<string, mixed> Array for business details or single detail in a string.
	 */
	public static function get_business_details( $key = '' ) {
		$details = get_option(
			'zipwp_user_business_details',
			array(
				'business_name'    => '',
				'business_address' => '',
				'business_phone'   => '',
				'business_category'   => '',
				'business_email'   => '',
				'social_profiles'  => array(),
				'business_description' => '',
				'token' => '',
				'images' => array(),
				'image_keyword' => array(),
				'templates' => array(),
				'language' => 'en',
			)
		);

		$details = array(
			'business_name'    => ( ! empty( $details['business_name'] ) ) ? $details['business_name'] : '',
			'business_address' => ( ! empty( $details['business_address'] ) ) ? $details['business_address'] : '2360 Hood Avenue, San Diego, CA, 92123',
			'business_phone'   => ( ! empty( $details['business_phone'] ) ) ? $details['business_phone'] : '202-555-0188',
			'business_category'   => ( ! empty( $details['business_category'] ) ) ? $details['business_category'] : '',
			'business_email'   => ( ! empty( $details['business_email'] ) ) ? $details['business_email'] : 'contact@example.com',
			'social_profiles'  => ( ! empty( $details['social_profiles'] ) ) ? $details['social_profiles'] : array(),
			'business_description' => ( ! empty( $details['business_description'] ) ) ? $details['business_description'] : '',
			'token' => Helper::get_decrypted_auth_token(),
			'images' => ( ! empty( $details['images'] ) ) ? $details['images'] : array(),
			'image_keyword' => ( ! empty( $details['image_keyword'] ) ) ? $details['image_keyword'] : array(),
			'templates' => ( ! empty( $details['templates'] ) ) ? $details['templates'] : array(),
			'language' => ( ! empty( $details['language'] ) ) ? $details['language'] : '',
		);

		if ( ! empty( $key ) ) {
			return isset( $details[ $key ] ) ? $details[ $key ] : array();
		}

		return $details;
	}

	/**
	 * Check if we need to skip the URL.
	 *
	 * @param string $url URL to check.
	 * @return boolean
	 * @since {{since}}
	 */
	public static function is_skipable( $url ) {
		if ( strpos( $url, 'skip' ) !== false ) {
			return true;
		}
		return false;
	}

	/**
	 * Get image orientation of the specified image.
	 *
	 * @param string $url Image URL.
	 * @return string Image orientation.
	 * @since {{since}}
	 */
	public static function get_image_orientation( $url ): string {
		// Use `@` to suppress warnings from `getimagesize` if the file is not valid or accessible.
		$size = getimagesize( $url );

		if ( $size && is_array( $size ) ) {
			list( $width, $height ) = $size;
			
			// Determine orientation based on width and height.
			if ( $width > $height ) {
				return 'landscape';
			} else {
				return 'portrait';
			}
		} else {
			return 'landscape';
		}
	}
}
PK�][{����Multimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/images.phpnu�[���<?php
/**
 * AI content generator and Images file.
 *
 * @package {{package}}
 * @since {{since}}
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;

/**
 * Images
 *
 * @since {{since}}
 */
class Images {

	use Instance;

	/**
	 * Images
	 *
	 * @since {{since}}
	 * @var array<string, array<mixed>> $images
	 */
	public static $images = array(
		'landscape' => array(),
		'portrait'  => array(),
		'square'    => array(),
	);

	/**
	 * Image index
	 *
	 * @since {{since}}
	 * @var (int) image_index
	 */
	public static $image_index = 0;

	/**
	 * Get Images
	 *
	 * @return array<string|int, mixed> Array of images.
	 * @since {{since}}
	 */
	public function get_images() {

		return Importer_Helper::get_business_details( 'images' );
	}

	/**
	 * Get Image for the specified index and orientation
	 *
	 * @param int $index Index of the image.
	 * @return array<int, mixed>|boolean Array of images or false.
	 * @since {{since}}
	 */
	public function get_image( $index = 0 ) {
		$images = $this->get_images();
		Helper::instance()->ast_block_templates_log( 'Fetching image with index ' . $index );
		return ( isset( $images[ $index ] ) ) ? $images[ $index ] : false;
	}

	/**
	 * Download image from URL.
	 *
	 * @param array<int|string, mixed> $image Image data.
	 * @return int|\WP_Error Image ID or WP_Error.
	 * @since {{since}}
	 */
	public function download_image( $image ) {
		$id = isset( $image['id'] ) ? $image['id'] : 0;
		$downloaded_ids = get_option( 'ast_block_downloaded_images', array() );

		$downloaded_ids = ( is_array( $downloaded_ids ) ) ? $downloaded_ids : array();
		if ( array_key_exists( $id, $downloaded_ids ) ) {
			// Return already downloaded image.
			return $downloaded_ids[ $id ];
		}
		/* This is a Pixabay code $name = $image['tags']; Pixabay. */
		$name = 'zipwp-image-' . sanitize_title( $id );
		/* This is a Pixabay code $url  = $image['largeImageURL']; Pixabay. */
		$url = $image['url']; // Unsplash.

		$description = isset( $image['description'] ) ? $image['description'] : '';

		$name = preg_replace( '/\.[^.]+$/', '', $name ) . '.jpg';

		Helper::instance()->ast_block_templates_log( 'Downloading Image as "' . $name . '" : ' . $url );

		$wp_id = $this->create_image_from_url( $url, $name, $id, $description );
		$downloaded_ids[ $id ] = $wp_id;
		update_option( 'ast_block_downloaded_images', $downloaded_ids );
		return $wp_id;

	}

	/**
	 * Create the image and return the new media upload id.
	 *
	 * @param String $url URL to the image.
	 * @param String $name Name to the image.
	 * @param String $photo_id Photo ID to the image.
	 * @param String $description Description to the image.
	 * @return mixed
	 * @see http://codex.wordpress.org/Function_Reference/wp_insert_attachment#Example
	 */
	public function create_image_from_url( $url, $name, $photo_id, $description ) {
		require_once ABSPATH . 'wp-admin/includes/media.php';
		require_once ABSPATH . 'wp-admin/includes/file.php';
		require_once ABSPATH . 'wp-admin/includes/image.php';
		$file_array         = array();
		$file_array['name'] = wp_basename( $name );

		// Download file to temp location.
		$file_array['tmp_name'] = download_url( $url );

		// If error storing temporarily, return the error.
		if ( is_wp_error( $file_array['tmp_name'] ) ) {
			return $file_array;
		}

		// Do the validation and storage stuff.
		$id = media_handle_sideload( $file_array, 0, null );

		// If error storing permanently, unlink.
		if ( is_wp_error( $id ) ) {
			@unlink( $file_array['tmp_name'] ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged, WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_unlink -- Deleting the file from temp location.
			return $id;
		}

		$alt = ( '' === $description ) ? $name : $description;

		// Store the original attachment source in meta.
		add_post_meta( $id, '_source_url', $url );
		update_post_meta( $id, '_wp_attachment_image_alt', $alt );

		return $id;
	}
}
PK�][E'��m�m�Multimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/plugin.phpnu�[���<?php
/**
 * Init
 *
 * @since 1.0.0
 * @package Ast Block Templates
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Sync_Library;
use Gutenberg_Templates\Inc\Importer\Importer_Helper;
use Gutenberg_Templates\Inc\Importer\Image_Importer;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

const FALLBACK_TEXT = 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.';

/**
 * Admin
 */
class Plugin {

	use Instance;

	/**
	 * Default Color Palette
	 *
	 * @since 2.0.0
	 * @access public
	 * @var array<string> Last checksums.
	 */
	public static $color_palette = array();

	/**
	 * Custom Capability
	 *
	 * @since 2.1.14
	 * @access public
	 * @var string capabilities.
	 */
	public static $custom_capability = 'manage_ast_block_templates';

	/**
	 * Constructor.
	 *
	 * @since 2.0.0
	 */
	private function __construct() {
		$this->define_constants();
		add_action( 'enqueue_block_editor_assets', array( $this, 'template_assets' ), 999 );
		add_action( 'admin_init', array( $this, 'init' ), 999 );
		add_action( 'admin_init', array( $this, 'add_custom_capabilities' ), 10 );

		if ( ( isset( $_GET['action'] ) && 'edit' === $_GET['action'] ) || ( isset( $_SERVER['PHP_SELF'] ) && 'site-editor.php' === basename( sanitize_text_field( $_SERVER['PHP_SELF'] ) ) ) || ( isset( $_SERVER['REQUEST_URI'] ) && strpos( esc_url_raw( $_SERVER['REQUEST_URI'] ), 'post-new.php' ) !== false ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			add_filter( 'zip_ai_auth_redirection_flag', '__return_false', 999 );
		}
		add_action( 'wp_ajax_ast_block_templates_importer', array( $this, 'template_importer' ) );
		add_action( 'wp_ajax_ast_block_templates_activate_plugin', array( $this, 'activate_plugin' ) );
		add_action( 'wp_ajax_ast_block_templates_import_wpforms', array( $this, 'import_wpforms' ) );
		add_action( 'wp_ajax_ast_block_templates_import_block', array( $this, 'import_block' ) );
		add_action( 'wp_ajax_ast_block_templates_color_palette', array( $this, 'get_color_palette' ) );
		add_action( 'wp_ajax_ast_block_templates_hide_notices', array( $this, 'hide_notices' ) );
		add_filter( 'upload_mimes', array( $this, 'custom_upload_mimes' ) );
		add_action( 'wp_ajax_ast_block_templates_data_option', array( $this, 'api_request' ) );
		$this->get_default_color_palette();
	}

	/**
	 * Add custom capabilities.
	 *
	 * @since 2.1.14
	 * @return void
	 */
	public function add_custom_capabilities() {
		$this->remove_custom_capability_from_other_roles();
		$roles = apply_filters( 'ast_block_template_capability_additional_roles', array( 'administrator' ) );

		// Loop through each role and add the custom capability.
		foreach ( $roles as $role_slug ) {
			$role_object = get_role( $role_slug );
			if ( $role_object ) {
				$role_object->add_cap( self::$custom_capability );
			}
		}
	}

	/**
	 * Remove custom capabilities.
	 *
	 * @since 2.1.14
	 * @return void
	 */
	public function remove_custom_capability_from_other_roles() {
		// Default role to retain the custom capability.
		$default_role = 'administrator';

		// Get the default role object.
		$default_role_object = get_role( $default_role );

		// Remove the custom capability from all roles except the default role.
		if ( $default_role_object ) {
			$roles = wp_roles()->role_names;
			unset( $roles[ $default_role ] ); // Exclude the default role.

			foreach ( $roles as $role_slug => $role_name ) {
				$role_object = get_role( $role_slug );
				if ( $role_object && $role_object->has_cap( self::$custom_capability ) ) {
					$role_object->remove_cap( self::$custom_capability );
				}
			}
		}
	}

	/**
	 * Define constants.
	 *
	 * @return void
	 */
	public function define_constants() {
		if ( ! defined( 'ZIPWP_APP' ) ) {
			define( 'ZIPWP_APP', apply_filters( 'ast_block_templates_zip_app_url', 'https://app.zipwp.com/auth' ) );
		}
	}

	/**
	 * Get Color Palette.
	 *
	 * @since 2.0.0
	 * @return array<string>
	 */
	public function get_default_color_palette() {

		if ( empty( self::$color_palette ) ) {
			self::$color_palette = array(
				'#046bd2',
				'#045cb4',
				'#1e293b',
				'#334155',
				'#f9fafb',
				'#FFFFFF',
				'#ADB6BE',
				'#111111',
				'#94a3b8',
			);
		}

		return self::$color_palette;
	}

	/**
	 * Add .json files as supported format in the uploader.
	 *
	 * @param array<string, string> $mimes Already supported mime types.
	 * @return array<string, string>
	 */
	public function custom_upload_mimes( $mimes ) {

		// Allow JSON files.
		$mimes['json'] = 'application/json';

		return $mimes;
	}

	/**
	 * Save the auth token in business details option.
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function init() {
		// Add token when user authorized from GT library.
		if ( isset( $_GET['ast_action'] ) && 'auth' === $_GET['ast_action'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			// Get the nonce.
			$nonce = ( isset( $_GET['nonce'] ) ) ? sanitize_key( $_GET['nonce'] ) : '';

			// If the nonce is not valid, or if there's no token, then abandon ship.
			if ( false === wp_verify_nonce( $nonce, 'zip_ai_auth_nonce' ) ) {
				return;
			}

			// Update the variables for ZipAI.
			$spec_ai_settings = Helper::get_setting();

			// Update the auth token if needed.
			if ( isset( $_GET['credit_token'] ) && is_string( $_GET['credit_token'] ) ) {
				$spec_ai_settings['auth_token'] = Helper::encrypt( sanitize_text_field( $_GET['credit_token'] ) );
			}

			// Update the Zip token if needed.
			if ( isset( $_GET['token'] ) && is_string( $_GET['token'] ) ) {
				$spec_ai_settings['zip_token'] = Helper::encrypt( sanitize_text_field( $_GET['token'] ) );
			}

			// Update the email if needed.
			if ( isset( $_GET['email'] ) && is_string( $_GET['email'] ) ) {
				$spec_ai_settings['email'] = sanitize_email( $_GET['email'] );
			}

			update_option( 'zip_ai_settings', $spec_ai_settings );
		}
	}


	/**
	 * Update disable AI settings based on AI Design Copilot status.
	 *
	 * @since 2.0.18
	 * @return void
	 */
	public function sync_disable_ai_settings() {

		$ast_ai_settings = get_option( 'ast_block_templates_ai_settings', array() );
		$zip_ai_modules_settings = Helper::get_admin_settings_option( 'zip_ai_modules' );

		if ( isset( $zip_ai_modules_settings['ai_design_copilot']['status'] ) ) {

			$zi_copipt_status = $zip_ai_modules_settings['ai_design_copilot']['status'];

			if ( 'disabled' === $zi_copipt_status ) {
				$ast_ai_settings['disable_ai'] = true;
			}

			if ( 'enabled' === $zi_copipt_status ) {
				$ast_ai_settings['disable_ai'] = false;
			}

			update_option( 'ast_block_templates_ai_settings', $ast_ai_settings );
		}
	}

	/**
	 * Retrieve block data from an API and update the option with the data.
	 *
	 * @since 1.3.0
	 * @return void
	 */
	public function api_request() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}

		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );
		$block_id     = isset( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : '';
		$block_type   = isset( $_REQUEST['type'] ) ? sanitize_text_field( $_REQUEST['type'] ) : '';

		if ( 'site-pages' === $block_type ) {
			// Use this for premium pages.
			$request_params = apply_filters(
				'astra_sites_api_params',
				array(
					'purchase_key' => '',
					'site_url'     => site_url(),
				)
			);

			$complete_url = add_query_arg( $request_params, trailingslashit( AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/wp/v2/' . $block_type . '/' . $block_id ) );
		} else {
			$complete_url = AST_BLOCK_TEMPLATES_LIBRARY_URL . 'wp-json/wp/v2/' . $block_type . '/' . $block_id . '/?site_url=' . site_url();
		}
		$response = wp_safe_remote_get( $complete_url );

		if ( is_wp_error( $response ) ) {
			wp_send_json_error( __( 'Something went wrong', 'ultimate-addons-for-gutenberg' ) );
		}

		if ( 200 !== $response['response']['code'] ) {
			wp_send_json_error( __( 'Something went wrong', 'ultimate-addons-for-gutenberg' ) );
		}

		$body = json_decode( wp_remote_retrieve_body( $response ) );
		// Create a dynamic option name to save the block data.
		update_option( 'ast-block-templates_data-' . $block_id, $body );
		wp_send_json_success( $body );
	}


	/**
	 * Hide notice.
	 *
	 * @since 2.1.1
	 * @return void
	 */
	public function hide_notices() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}

		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$notice_type = isset( $_REQUEST['notice_type'] ) ? sanitize_text_field( $_REQUEST['notice_type'] ) : '';

		if ( ! empty( $notice_type ) ) {

			switch ( $notice_type ) {
				case 'personalize-ai':
					set_transient( 'ast_block_templates_hide_personalize_ai_notice', true, 30 * DAY_IN_SECONDS );
					break;
				case 'build-page-ai':
					set_transient( 'ast_block_templates_hide_build_page_ai_notice', true, 30 * DAY_IN_SECONDS );
					break;
				case 'credit-warning':
					set_transient( 'ast_block_templates_hide_credit_warning_notice', true, 30 * DAY_IN_SECONDS );
					break;
				case 'credit-danger':
					set_transient( 'ast_block_templates_hide_credit_danger_notice', true, 30 * DAY_IN_SECONDS );
					break;

				default:
					break;
			}
		}

		wp_send_json_success(
			array(
				'status' => true,
			)
		);
	}

	/**
	 * Get the Color palette.
	 *
	 * @since 1.3.0
	 * @return void
	 */
	public function get_color_palette() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}

		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		wp_send_json_success(
			array(
				'block' => $this->get_block_palette_colors(),
				'page' => $this->get_page_palette_colors(),
			)
		);
	}

	/**
	 * Import WP Forms
	 *
	 * @since 1.0.0
	 *
	 * @param  string $wpforms_url WP Forms JSON file URL.
	 * @return void
	 */
	public function import_wpforms( $wpforms_url = '' ) {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$block_id   = isset( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : '';
		$block_data = get_option( 'ast-block-templates_data-' . $block_id );

		$block_data  = null !== $block_data ? $block_data : '';
		$wpforms_url = '';

		if ( 'astra-blocks' === $block_data->{'type'} ) {
			$wpforms_url = $block_data->{'post-meta'}->{'astra-site-wpforms-path'};
		}

		if ( 'site-pages' === $block_data->{'type'} ) {
			$wpforms_url = $block_data->{'astra-site-wpforms-path'};
		}

		$ids_mapping = array();

		if ( ! empty( $wpforms_url ) && function_exists( 'wpforms_encode' ) ) {

			// Download JSON file.
			$file_path = $this->download_file( $wpforms_url );

			if ( $file_path['success'] ) {
				if ( isset( $file_path['data']['file'] ) ) {

					$ext = strtolower( pathinfo( $file_path['data']['file'], PATHINFO_EXTENSION ) );

					if ( 'json' === $ext ) {
						/** 
						 * 
						 * Retrieves the contents of a file using the specified file system.
						 *
						 * @var \WP_Filesystem_Base $filesystem 
						 * */
						$filesystem = Helper::instance()->ast_block_templates_get_filesystem();
						$file_content = $filesystem->get_contents( $file_path['data']['file'] );
						$forms = json_decode( $file_content ? $file_content : '', true );

						if ( ! empty( $forms ) ) {

							foreach ( $forms as $form ) {
								$title = ! empty( $form['settings']['form_title'] ) ? $form['settings']['form_title'] : '';
								$desc  = ! empty( $form['settings']['form_desc'] ) ? $form['settings']['form_desc'] : '';

								$new_id = post_exists( $title, '', '', 'wpforms' );

								if ( ! $new_id ) {
									$new_id = wp_insert_post(
										array(
											'post_title'   => $title,
											'post_status'  => 'publish',
											'post_type'    => 'wpforms',
											'post_excerpt' => $desc,
										)
									);

									Helper::instance()->ast_block_templates_log( 'Imported Form ' . $title );
								}

								if ( $new_id ) {

									// ID mapping.
									$ids_mapping[ $form['id'] ] = $new_id;

									$form['id'] = $new_id;
									wp_update_post(
										array(
											'ID' => $new_id,
											'post_content' => wpforms_encode( $form ),
										)
									);
								}
							}
						}
					}
				}
			} else {
				wp_send_json_error( $file_path );
			}
		} else {
			wp_send_json_error( __( 'Something went wrong', 'ultimate-addons-for-gutenberg' ) );
		}

		update_option( 'ast_block_templates_wpforms_ids_mapping', $ids_mapping );

		wp_send_json_success( $ids_mapping );
	}

	/**
	 * Import Block
	 *
	 * @return void
	 */
	public function import_block() {
		
		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		// Allow the SVG tags in batch update process.
		add_filter( 'wp_kses_allowed_html', array( $this, 'allowed_tags_and_attributes' ), 10, 2 );

		$ids_mapping = get_option( 'ast_block_templates_wpforms_ids_mapping', array() );

		// Post content.
		$content = isset( $_REQUEST['content'] ) ? stripslashes( $_REQUEST['content'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
		$category = isset( $_REQUEST['category'] ) ? intval( $_REQUEST['category'] ) : '';

		$block_id = isset( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : '';

		// Empty mapping? Then return.
		if ( ! empty( $ids_mapping ) ) {
			// Replace ID's.
			foreach ( $ids_mapping as $old_id => $new_id ) {
				$content = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $content );
				$content = str_replace( '{"formId":"' . $old_id . '"}', '{"formId":"' . $new_id . '"}', $content );
			}
		}

		$style = isset( $_REQUEST['style'] ) ? sanitize_text_field( $_REQUEST['style'] ) : 'style-1';
		$block_type = isset( $_REQUEST['block_type'] ) ? sanitize_text_field( $_REQUEST['block_type'] ) : 'block';

		$color_palettes = array();
		$is_astra_theme = class_exists( 'Astra_Global_Palette' );

		if ( 'block' === $block_type ) {
			$mapping_palette = array(
				'style-1' => array( 0, 1, 2, 3, 5, 5, 6, 7, 8 ),
				'style-2' => array( 0, 1, 2, 3, 4, 5, 6, 7, 8 ),
				'style-3' => array( 3, 2, 5, 4, 0, 1, 6, 7, 8 ),
			);

			$color_palettes = ! $is_astra_theme ? $this->get_block_palette_colors()[ $style ]['colors'] : $color_palettes;
		} else {
			$mapping_palette = array(
				'style-1' => array( 0, 1, 2, 3, 4, 5, 6, 7, 8 ),
				'style-2' => array( 0, 1, 5, 4, 3, 2, 6, 7, 8 ),
			);

			$color_palettes = ! $is_astra_theme ? $this->get_page_palette_colors()[ $style ]['colors'] : $color_palettes;
		}

		if ( ! $is_astra_theme ) {
			for ( $i = 0; $i < 9; $i++ ) {
				$target = $color_palettes[ $i ];
				$content = str_replace( 'var(\u002d\u002dast-global-color-' . $i . ')', $target, $content );
				$content = str_replace( 'var(--ast-global-color-' . $i . ')', $target, $content );
			}
		} else {
			for ( $i = 0; $i < 9; $i++ ) {
				$target = $mapping_palette[ $style ][ $i ];
				$content = str_replace( 'var(\u002d\u002dast-global-color-' . $i . ')', 'var(\u002d\u002dast-global-color-temp-' . $target . ')', $content );
				$content = str_replace( 'var(--ast-global-color-' . $i . ')', 'var(--ast-global-color-temp-' . $target . ')', $content );
			}
			$content = str_replace( 'var(\u002d\u002dast-global-color-temp-', 'var(\u002d\u002dast-global-color-', $content );
			$content = str_replace( 'var(--ast-global-color-temp-', 'var(--ast-global-color-', $content );
		}

		$disable_ai = isset( $_REQUEST['disableAI'] ) ? 'true' === $_REQUEST['disableAI'] : false;

		if ( ! $disable_ai && ! empty( Importer_Helper::get_business_details( 'business_description' ) ) ) {
			$category_content = get_option( 'ast-templates-ai-content', array() );
			$dynamic_content = ( isset( $category_content[ $category ] ) ) ? $category_content[ $category ] : array();
			$content = $this->replace( $content, $dynamic_content );
		} else {
			$content = $this->maybe_import_images( $content );
		}

		// Flush the object when import is successful.
		delete_option( 'ast-block-templates_data-' . $block_id );

		// Update content.
		wp_send_json_success( $content );

	}

	/**
	 * Import Images if required.
	 *
	 * @param string $content block content.
	 * @return string
	 */
	public function maybe_import_images( $content ) {

		// Extract all links.
		preg_match_all( '#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $content, $match );

		$all_links = array_unique( $match[0] );

		// Not have any link.
		if ( empty( $all_links ) ) {
			return $content;
		}

		$link_mapping = array();
		$image_links  = array();
		$other_links  = array();

		// Extract normal and image links.
		foreach ( $all_links as $key => $link ) {
			if ( Helper::instance()->ast_block_templates_is_valid_image( $link ) ) {

				// Get all image links.
				// Avoid *-150x, *-300x and *-1024x images.
				if (
					false === strpos( $link, '-150x' ) &&
					false === strpos( $link, '-300x' ) &&
					false === strpos( $link, '-1024x' )
				) {
					$image_links[] = $link;
				}
			} else {

				// Collect other links.
				$other_links[] = $link;
			}
		}

		// Step 1: Download images.
		if ( ! empty( $image_links ) ) {
			foreach ( $image_links as $key => $image_url ) {
				// Download remote image.
				$image            = array(
					'url' => $image_url,
					'id'  => 0,
				);
				$downloaded_image = Image_Importer::instance()->import( $image );

				// Old and New image mapping links.
				$link_mapping[ $image_url ] = $downloaded_image['url'];
			}
		}

		// Step 3: Replace mapping links.
		foreach ( $link_mapping as $old_url => $new_url ) {
			$old_url = (string) $old_url;
			$content = str_replace( $old_url, $new_url, $content );

			// Replace the slashed URLs if any exist.
			$old_url = str_replace( '/', '/\\', $old_url );
			$new_url = str_replace( '/', '/\\', $new_url );
			$content = str_replace( $old_url, $new_url, $content );
		}
		return $content;
	}

	/**
	 * Replace content
	 *
	 * @param  string               $content         Content.
	 * @param  array<string, mixed> $dynamic_content Dynamic content.
	 * @return string                  Content.
	 */
	public function replace( $content, $dynamic_content ) {
		$blocks = parse_blocks( $content );
		return apply_filters( 'aist/replace_content', serialize_blocks( $this->get_updated_blocks( $blocks, $dynamic_content ) ) ); // phpcs:ignore
	}

	/**
	 * Update the Blocks with new mapping data.
	 *
	 * @since {{since}}
	 * @param array<mixed> $blocks Array of Blocks.
	 * @param array<mixed> $dynamic_content Array of dynamic content.
	 * @return array<mixed> $blocks Modified array of Blocks.
	 */
	public function get_updated_blocks( &$blocks, $dynamic_content ) {

		if ( empty( $dynamic_content ) ) {
			return $blocks;
		}

		foreach ( $blocks as $i => &$block ) {

			if ( is_array( $block ) ) {

				if ( '' === $block['blockName'] ) {
					continue;
				}

				/** Replace images and google map if present in the block */
				switch ( $block['blockName'] ) {
					case 'uagb/container':
						$block = BlockEditor::instance()->parse_spectra_container( $block );
						break;

					case 'uagb/image':
						$block = BlockEditor::instance()->parse_spectra_image( $block );
						break;

					case 'uagb/image-gallery':
						$block = BlockEditor::instance()->parse_spectra_gallery( $block );
						break;

					case 'uagb/info-box':
						$block = BlockEditor::instance()->parse_spectra_infobox( $block );
						break;

					case 'uagb/google-map':
						$block = BlockEditor::instance()->parse_spectra_google_map( $block );
						break;

					case 'uagb/forms':
						$block = BlockEditor::instance()->parse_spectra_form( $block );
						break;

					case 'uagb/icon-list':
						$block = BlockEditor::instance()->parse_spectra_social_icons( $block );
						break;
				}

				if ( ! empty( $block['innerBlocks'] ) ) {
					/** Find the last node of the nested blocks */
					$block['innerBlocks'] = $this->get_updated_blocks( $block['innerBlocks'], $dynamic_content );
				} else {
					foreach ( $dynamic_content as $key => $value ) {
						$ai_content = $value;
						if ( ! str_contains( $block['innerHTML'], $key ) ) {
							continue;
						}

						if ( empty( $ai_content ) ) {
							// Generating random content.
							$ai_content = $key;
							if ( '' === $ai_content ) {
								$words          = str_word_count( FALLBACK_TEXT, 1 ); // Split the statement into an array of words.
								$selected_words = array_slice( $words, 0, absint( 10 ) ); // Added atstic 10 words. Here fallback logic will be added.
								$ai_content     = implode( ' ', $selected_words );
							}
							Helper::instance()->ast_block_templates_log( 'No content found for "' . $key );
						}

						$ai_content = BlockEditor::instance()->replace_contact_details( $key, $ai_content );

						if ( ! empty( $ai_content ) ) {
							Helper::instance()->ast_block_templates_log( 'Replacing content from the "' . $key . '" to "' . $ai_content . '"' );
							$text               = str_replace( $key, $ai_content, $block['innerHTML'] );
							$block['innerHTML'] = $text;
							foreach ( $block['innerContent'] as $k => $inner_content ) {
								$block['innerContent'][ $k ] = ( isset( $block['innerContent'][ $k ] ) && is_string( $block['innerContent'][ $k ] ) ) ? str_replace( $key, $ai_content, $block['innerContent'][ $k ] ) : $block['innerContent'][ $k ];
							}
							foreach ( $block['attrs'] as $j => &$attr ) {
								if ( is_string( $attr ) ) {
									$block['attrs'][ $j ] = str_replace( $key, $ai_content, $block['attrs'][ $j ] );
								} elseif ( is_array( $attr ) ) {
									$this->recursively_traverse_attrs( $attr, $key, $ai_content );
								}
							}
						}
					}
				}
			}
		}

		return $blocks;
	}

	/**
	 * Traverse the attributes recursively.
	 *
	 * @since {{since}}
	 * @param array<mixed> $attrs Reference of the attributes array.
	 * @param string       $match Placeholder match.
	 * @param string       $ai_content AI generated content.
	 * @return void
	 */
	public function recursively_traverse_attrs( array &$attrs, $match, $ai_content ) {
		foreach ( $attrs as &$element ) {
			if ( is_array( $element ) ) {
				$this->recursively_traverse_attrs( $element, $match, $ai_content );
			} else {
				$element = is_string( $element ) ? str_replace( $match, $ai_content, $element ) : $element;
			}
		}
	}

	/**
	 * Allowed tags for the batch update process.
	 *
	 * @param  array<string, mixed> $allowedposttags   Array of default allowable HTML tags.
	 * @param  string               $context    The context for which to retrieve tags. Allowed values are 'post',
	 *                                                'strip', 'data', 'entities', or the name of a field filter such as
	 *                                                'pre_user_description'.
	 * @return array<string, mixed> Array of allowed HTML tags and their allowed attributes.
	 */
	public function allowed_tags_and_attributes( $allowedposttags, $context ) {

		// Keep only for 'post' contenxt.
		if ( 'post' === $context ) {

			// <svg> tag and attributes.
			$allowedposttags['svg'] = array(
				'xmlns'   => true,
				'viewbox' => true,
			);

			// <path> tag and attributes.
			$allowedposttags['path'] = array(
				'd' => true,
			);
		}

		return $allowedposttags;
	}

	/**
	 * Activate Plugin
	 *
	 * @return void
	 */
	public function activate_plugin() {

		if ( ! current_user_can( 'activate_plugins' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action.', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', 'security' );

		wp_clean_plugins_cache();

		$plugin_init = ( isset( $_POST['init'] ) ) ? sanitize_text_field( $_POST['init'] ) : '';

		$activate = activate_plugin( $plugin_init, '', false, true );

		if ( is_wp_error( $activate ) ) {
			wp_send_json_error( $activate->get_error_message() );
		}

		wp_send_json_success(
			array(
				'message' => 'Plugin activated successfully.',
			)
		);
	}

	/**
	 * Template Importer
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function template_importer() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$block_id   = isset( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : '';
		$block_data = get_option( 'ast-block-templates_data-' . $block_id );

		$api_uri = null !== $block_data ? $block_data->{'astra-page-api-url'} : '';

		// Early return.
		if ( '' == $api_uri ) {
			wp_send_json_error( __( 'Something wrong', 'ultimate-addons-for-gutenberg' ) );
		}

		$api_args = apply_filters(
			'ast_block_templates_api_args',
			array(
				'timeout' => 15,
			)
		);

		$request_params = apply_filters(
			'ast_block_templates_api_params',
			array(
				'_fields' => 'original_content',
			)
		);

		$demo_api_uri = add_query_arg( $request_params, $api_uri );

		// API Call.
		$response = wp_safe_remote_get( $demo_api_uri, $api_args );

		if ( is_wp_error( $response ) ) {
			wp_send_json_error( $response->get_error_message() );
		} elseif ( 'error' !== $response['response']['message'] ) {
			wp_send_json_error( wp_json_encode( $response['response'] ) );
		}


		if ( wp_remote_retrieve_response_code( $response ) !== 200 ) {
			wp_send_json_error( wp_remote_retrieve_body( $response ) );
		}

		$data = json_decode( wp_remote_retrieve_body( $response ), true );

		// Flush the object when import is successful.
		delete_option( 'ast-block-templates_data-' . $block_id );

		wp_send_json_success( $data['original_content'] );
	}

	/**
	 * Template Assets
	 *
	 * @since 1.0.0
	 * @return void
	 */
	public function template_assets() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			return;
		}
		
		$exclude_post_types = apply_filters( 'ast_block_templates_exclude_post_types', array() );
		$post_types = array_diff( get_post_types( array( 'public' => true ), 'names' ), $exclude_post_types );

		$current_screen = get_current_screen();

		if ( ! is_object( $current_screen ) && is_null( $current_screen ) ) {
			return;
		}

		if ( 'site-editor' !== $current_screen->base && ! array_key_exists( $current_screen->post_type, $post_types ) ) {
			return;
		}

		$is_white_label = $this->is_white_label();

		if ( $is_white_label ) {
			return;
		}

		$this->sync_disable_ai_settings();

		wp_enqueue_script( 'ast-block-templates', AST_BLOCK_TEMPLATES_URI . 'dist/main.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'masonry', 'imagesloaded', 'updates', 'media-upload', 'wp-util' ), AST_BLOCK_TEMPLATES_VER, true );
		wp_add_inline_script( 'ast-block-templates', 'window.lodash = _.noConflict();', 'after' );
		wp_enqueue_media();

		wp_enqueue_style( 'ast-block-templates', AST_BLOCK_TEMPLATES_URI . 'dist/style.css', array(), AST_BLOCK_TEMPLATES_VER, 'all' );

		wp_enqueue_script(
			'ast-block-templates-plugin',
			AST_BLOCK_TEMPLATES_URI . 'admin-assets/js/plugin.js',
			array( 'jquery', 'wp-util', 'updates', 'media-upload' ),
			AST_BLOCK_TEMPLATES_VER,
			true
		);

		// Google fonts.
		wp_enqueue_style( 'ast-block-templates-google-fonts', $this->google_fonts_url(), array( 'ast-block-templates' ), 'all' );

		$license_status = false;
		if ( class_exists( 'BSF_License_Manager' ) && is_callable( 'BSF_License_Manager::bsf_is_active_license' ) ) {
			$license_status = \BSF_License_Manager::bsf_is_active_license( 'astra-pro-sites' );
		}

		$upload_dir = wp_upload_dir();
		$common_style_url = trailingslashit( $upload_dir['basedir'] ) . 'uag-plugin/custom-style-blocks.css';

		if ( ! file_exists( $common_style_url ) ) {
			$this->regenerate_spectra_css();
		}

		$common_css_content = file_exists( $common_style_url ) ? file_get_contents( $common_style_url ) : '';

		if ( empty( $common_css_content ) ) {
			$common_css_content = Sync_Library::instance()->get_server_spectra_common_css();
		}

		$ast_header = '';
		$ast_footer = '';
		$static_css_path = '';
		$astra_customizer_css = '';

		if ( defined( 'ASTRA_THEME_VERSION' ) ) {
			$astra_customizer_css = ( class_exists( 'Astra_Dynamic_CSS' ) ) ? \Astra_Dynamic_CSS::return_output( '' ) : '';
		}

		$server_astra_customizer_css = Helper::instance()->get_block_template_customiser_css();
		if ( empty( $server_astra_customizer_css ) ) {
			Sync_Library::instance()->get_server_astra_customizer_css();
			$server_astra_customizer_css = Helper::instance()->get_block_template_customiser_css();
		}

		$settings = get_option( 'ast_block_templates_ai_settings', array() );
		$disable_ai = isset( $settings['disable_ai'] ) ? $settings['disable_ai'] : false;
		$adaptive_mode = isset( $settings['adaptive_mode'] ) ? $settings['adaptive_mode'] : true;
		$disable_preview = isset( $settings['disable_preview'] ) ? $settings['disable_preview'] : false;
		$remove_parameters = array( 'credit_token', 'token', 'email', 'ast_action', 'nonce' );

		$request_params = apply_filters(
			'ast_block_templates_authorization_url_param', array(
				'type' => 'token',
				'scs-authorize' => true,
				'source' => 'spectra',
			)
		);

		$credit_request_params = array(
			'success_url' => isset( $_SERVER['REQUEST_URI'] ) ? urlencode( $this->remove_query_params( network_home_url() . $_SERVER['REQUEST_URI'], $remove_parameters ) . '&ast_action=credits' ) : '', // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
			'source' => 'spectra',
		);

		$spec_ai_auth_url = add_query_arg( $request_params, ZIPWP_APP );
		$spec_ai_signup_url = add_query_arg( $request_params, 'https://app.zipwp.com/register/' );
		$credit_purchase_url = add_query_arg( $credit_request_params, 'https://app.zipwp.com/credits-pricing/' );
		$ai_features = get_option( 'zip_ai_modules', array() );
		$site_host = wp_parse_url( get_site_url(), PHP_URL_HOST );

		$business_details = get_option( 'zipwp_user_business_details', false );
		$business_details = ( $business_details ) ? $business_details : array();
		$business_details = array_merge( $business_details, array( 'token' => Helper::get_setting( 'auth_token', '' ) ) );

		if ( ! empty( $business_details['social_profiles'] ) ) {
			$business_details = $this->maybe_parse_social_profiles( $business_details );
		}
		$pro_url = apply_filters( 'ast_block_templates_pro_url', 'https://wpastra.com/starter-templates-plans/?utm_source=gutenberg-templates&utm_medium=dashboard&utm_campaign=Starter-Template-Backend' );

		$wp_stylesheet_path = ABSPATH . 'wp-includes/css/dist/block-library/style.min.css';

		$wp_stylesheet = '';
		if ( file_exists( $wp_stylesheet_path ) ) {
			$wp_stylesheet = file_get_contents( $wp_stylesheet_path ); //phpcs:ignore
			$wp_stylesheet = preg_replace( '/html/i', '.st-block-container', (string) $wp_stylesheet );
		}

		wp_localize_script(
			'ast-block-templates',
			'ast_block_template_vars',
			apply_filters(
				'ast_block_templates_localize_vars',
				array(
					'popup_class'             => defined( 'UAGB_PLUGIN_SHORT_NAME' ) ? 'uag-block-templates-lightbox' : 'ast-block-templates-lightbox',
					'ajax_url'                => admin_url( 'admin-ajax.php' ),
					'uri'                     => AST_BLOCK_TEMPLATES_URI,
					'wpforms_status'          => $this->get_plugin_status( 'wpforms-lite/wpforms.php' ),
					'spectra_status'          => $this->get_plugin_status( 'ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php' ),
					'spectra_pro_status'      => $this->get_plugin_status( 'spectra-pro/spectra-pro.php' ),
					'astra_sites_pro_status'  => $this->get_plugin_status( 'astra-pro-sites/astra-pro-sites.php' ),
					'astra_sites_status'          => $this->get_plugin_status( 'astra-sites/astra-sites.php' ),
					'_ajax_nonce'             => wp_create_nonce( 'ast-block-templates-ajax-nonce' ),
					'button_text'             => esc_html__( 'Design Library', 'ultimate-addons-for-gutenberg' ),
					'display_button_logo'     => true,
					'popup_logo_uri'          => AST_BLOCK_TEMPLATES_URI . 'dist/spectra-logo.svg',
					'button_logo'             => AST_BLOCK_TEMPLATES_URI . 'dist/spectra.svg',
					'st_button_logo'           => AST_BLOCK_TEMPLATES_URI . 'dist/st.svg',
					'button_class'            => '',
					'display_suggestion_link' => true,
					'suggestion_link'         => 'https://wpastra.com/sites-suggestions/?utm_source=demo-import-panel&utm_campaign=astra-sites&utm_medium=suggestions',
					'license_status'          => $license_status,
					'isPro'                   => defined( 'ASTRA_PRO_SITES_NAME' ) ? true : false,
					'getProURL'               => esc_url( defined( 'ASTRA_PRO_SITES_NAME' ) ? ( admin_url( 'plugins.php?bsf-inline-license-form=astra-pro-sites' ) ) : $pro_url ),
					'site_url'                => site_url(),
					'home_url'                => home_url(),
					'global-styles'           => preg_replace( '/(?<!-)(\\bbody\\b)(?!-)/i', '.st-block-container', wp_get_global_stylesheet() ),
					'spectra_common_styles'   => preg_replace( '/(?<!-)(\\bbody\\b)(?!-)/i', '.st-block-container', $common_css_content ) . ' .st-block-container .uagb-button__wrapper a { text-decoration: none; }',
					'block_color_palette'     => $this->get_block_palette_colors(),
					'page_color_palette'      => $this->get_page_palette_colors(),
					'ai_content_ajax_nonce'             => wp_create_nonce( 'ast-block-templates-ai-content' ),
					'reset_details_ajax_nonce'             => wp_create_nonce( 'ast-block-templates-reset-business-details' ),
					'business_details'  => $business_details,
					'rest_api_nonce' => wp_create_nonce( 'wp_rest' ),
					'default_ai_categories' => Helper::instance()->get_default_ai_categories(),
					'user_email' => get_option( 'admin_email' ),
					'skip_zip_ai_onboarding_nonce'             => wp_create_nonce( 'skip-spectra-pro-onboarding-nonce' ),
					'skip_zip_ai_onboarding' => get_option( 'ast_skip_zip_ai_onboarding', false ),
					'show_onboarding' => ( 'no' !== get_option( 'ast-block-templates-show-onboarding', true ) ),
					'dynamic_content' => get_option( 'ast-templates-ai-content', array() ),
					'favorites' => get_option(
						'ast_block_templates_favorites', array(
							'block' => array(),
							'page' => array(),
							'site' => array(),
						)
					),
					'astra_customizer_css' => preg_replace( '/(?<!-)(\\bbody\\b)(?!-)/i', '.st-block-container', defined( 'ASTRA_THEME_VERSION' ) ? $astra_customizer_css : $server_astra_customizer_css ),
					'disable_ai' => $disable_ai,
					'adaptive_mode' => $adaptive_mode,
					'debug_mode' => Helper::instance()->is_debug_mode() ? 'yes' : 'no',
					'disable_preview' => $disable_preview,
					'images' => AST_BLOCK_TEMPLATES_URI . 'admin-assets/images/',
					'spec_ai_auth_url' => $spec_ai_auth_url,
					'spec_ai_signup_url' => $spec_ai_signup_url,
					'open_ai_auth' => isset( $_GET['ast_action'] ) && 'auth' === sanitize_text_field( $_GET['ast_action'] ) ? true : false, // phpcs:ignore WordPress.Security.NonceVerification.Recommended
					'credit_purchased' => isset( $_GET['ast_action'] ) && 'credits' === sanitize_text_field( $_GET['ast_action'] ) ? true : false, // phpcs:ignore WordPress.Security.NonceVerification.Recommended
					'show_pages_onboarding' => get_option( 'ast-show-pages-onboarding', 'yes' ) === 'yes',
					'flat_rates' => array(
						'patterns_library' => 5000,
						'pages_library' => 5000,
						'patterns_category' => 500,
						'pages_category' => 1000,
					),
					'spec_credit_details'   => $this->get_spec_credit_details(),
					'get_more_credits_url' => $credit_purchase_url,
					'site_host' => $site_host,
					'sync_progress_status' => get_option( 'ast_blocks_sync_in_progress', 'no' ),
					'is_white_label' => $is_white_label,
					'white_label_name' => $this->get_white_label(),
					'is_new_user' => get_option( 'ast-block-templates-new-user', 'yes' ) === 'yes',
					'header_markup' => $ast_header,
					'footer_markup' => $ast_footer,
					'astra_static_css_path' => $static_css_path,
					'server_astra_customizer_css' => preg_replace( '/(?<!-)(\\bbody\\b)(?!-)/i', '.st-block-container', $server_astra_customizer_css ),
					'is_rtl' => is_rtl(),
					'ai_design_copilot' => isset( $ai_features['ai_design_copilot']['status'] ) ? $ai_features['ai_design_copilot']['status'] : 'disabled',
					'ai_assistant' => isset( $ai_features['ai_assistant']['status'] ) ? $ai_features['ai_assistant']['status'] : 'disabled',
					'hide_notice' => $this->is_show_personalize_ai_notice(),
					'is_sync_business_details' => get_option( 'ast-templates-business-details-synced', false ),
					'bypassAuth' => apply_filters( 'ast_block_templates_bypass_auth', false ),
					'zipwp_ai_auth_nonce' => wp_create_nonce( 'zip_ai_auth_nonce' ),
					'gutenberg_plugin_status' => is_plugin_active( 'gutenberg/gutenberg.php' ),
					'is_personalized' => get_option( 'ast-templates-ai-content', false ),
					'wp_stylesheet' => $wp_stylesheet,
				)
			)
		);
	}

		/**
		 * Generate and return the Google fonts url.
		 *
		 * @since 1.0.1
		 * @return string
		 */
	public function google_fonts_url() {

		$fonts_url     = '';
		$font_families = array(
			'Inter:400,500,600',
			'Figtree:400,500,600,700',
		);

		$query_args = array(
			'family' => rawurlencode( implode( '|', $font_families ) ),
			'subset' => rawurlencode( 'latin,latin-ext' ),
		);

		$fonts_url = add_query_arg( $query_args, '//fonts.googleapis.com/css' );

		return $fonts_url;
	}

	/**
	 * Get Spec Credit Details
	 *
	 * @since 2.1.24
	 * @param  array<string, mixed> $business_details business details.
	 * @return array<string, mixed>
	 */
	public function maybe_parse_social_profiles( $business_details ) {

		$social_profiles = $business_details['social_profiles'];
		$save = false;
		foreach ( $social_profiles as $index => $icon ) {

			if ( ! isset( $icon['type'] ) || empty( $icon['type'] ) ) {

				$url_parts = wp_parse_url( $icon['url'] );
				$host = isset( $url_parts['host'] ) ? $url_parts['host'] : false;

				if ( $host ) {
					$domain_parts = explode( '.', $host );
					$type = reset( $domain_parts );
					$social_profiles[ $index ]['type'] = strtolower( $type );
					$social_profiles[ $index ]['id'] = strtolower( $type );
				}

				$save = true;
			}
		}

		if ( $save ) {
			$business_details['social_profiles'] = $social_profiles;
			update_option( 'zipwp_user_business_details', $business_details );
		}

		return $business_details;
	}

	/**
	 * Get is show personalize AI notice.
	 *
	 * @since 2.1.1
	 * @return array<string, bool>
	 */
	public function is_show_personalize_ai_notice() {

		return array(
			'credit_warning' => false === get_transient( 'ast_block_templates_hide_credit_warning_notice' ) ? false : true,
			'credit_danger' => false === get_transient( 'ast_block_templates_hide_credit_danger_notice' ) ? false : true,
			'personalize_ai' => false === get_transient( 'ast_block_templates_hide_personalize_ai_notice' ) ? false : true,
			'build_page_ai' => false === get_transient( 'ast_block_templates_hide_build_page_ai_notice' ) ? false : true,
		);
	}

	/**
	 * Check if white label enabled
	 *
	 * @since 2.0.0
	 *
	 * @return boolean
	 */
	public function is_white_label() {

		$is_white_label = apply_filters( 'ast_block_templates_white_label', false );
		return $is_white_label;
	}

	/**
	 * Regenerate Spectra CSS.
	 *
	 * @since 2.0.0
	 *
	 * @return void
	 */
	public function regenerate_spectra_css() {

		if ( ! defined( 'UAGB_FILE' ) && ! class_exists( 'UAGB_Helper' ) ) {
			return;
		}
	
		if ( class_exists( 'UAGB_Helper' ) && is_callable( array( 'UAGB_Helper', 'allow_file_generation' ) ) ) {
			$file_generation = \UAGB_Helper::allow_file_generation();
	
			if ( 'enabled' === $file_generation ) {
	
				if ( is_callable( array( 'UAGB_Helper', 'delete_uag_asset_dir' ) ) ) {
					\UAGB_Helper::delete_uag_asset_dir();
				}
			}
		}
	
		if ( class_exists( 'UAGB_Admin_Helper' ) && is_callable( array( 'UAGB_Admin_Helper', 'create_specific_stylesheet' ) ) ) {
			\UAGB_Admin_Helper::create_specific_stylesheet();
		}
	
		/* Update the asset version */
		if ( class_exists( 'UAGB_Admin_Helper' ) && is_callable( array( 'UAGB_Admin_Helper', 'update_admin_settings_option' ) ) ) {
			\UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );
		}
	}

	/**
	 * Get palette colors
	 *
	 * @since 2.0.0
	 *
	 * @return mixed
	 */
	public function get_page_palette_colors() {

		$default_palette_color = self::$color_palette;
		// Checking the nonce already.
		if ( isset( $_REQUEST['adaptive_mode'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$adaptive_mode = 'true' === sanitize_text_field( $_REQUEST['adaptive_mode'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
		} else {
			$settings = get_option( 'ast_block_templates_ai_settings', array() );
			$adaptive_mode = isset( $settings['adaptive_mode'] ) ? $settings['adaptive_mode'] : true;
		}

		if ( class_exists( 'Astra_Global_Palette' ) && $adaptive_mode && function_exists( 'astra_get_palette_colors' ) ) {
			$astra_palette_colors = astra_get_palette_colors();
			$default_palette_color = $astra_palette_colors['palettes'][ $astra_palette_colors['currentPalette'] ];
		}

		$palette_one = $default_palette_color;

		$palette_two = array(
			$default_palette_color[0],
			$default_palette_color[1],
			$default_palette_color[5],
			$default_palette_color[4],
			$default_palette_color[3],
			$default_palette_color[2],
			$default_palette_color[6],
			$default_palette_color[7],
			$default_palette_color[8],
		);

		$color_palettes = array(
			'style-1' =>
				array(
					'slug' => 'style-1',
					'title' => 'Light',
					'default_color' => $default_palette_color[4],
					'colors' => $palette_one,
				),
			'style-2' => array(
				'slug' => 'style-2',
				'title' => 'Dark',
				'default_color' => '#1E293B',
				'colors' => $palette_two,
			),
		);

		return $color_palettes;
	}

	/**
	 * Get palette colors
	 *
	 * @since 2.0.0
	 *
	 * @return mixed
	 */
	public function get_block_palette_colors() {

		$default_palette_color = self::$color_palette;

		// Checking the nonce already.
		if ( isset( $_REQUEST['adaptive_mode'] ) ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended
			$adaptive_mode = 'true' === sanitize_text_field( $_REQUEST['adaptive_mode'] ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended
		} else {
			$settings = get_option( 'ast_block_templates_ai_settings', array() );
			$adaptive_mode = isset( $settings['adaptive_mode'] ) ? $settings['adaptive_mode'] : true;
		}

		if ( class_exists( 'Astra_Global_Palette' ) && $adaptive_mode && function_exists( 'astra_get_palette_colors' ) ) {
			$astra_palette_colors = astra_get_palette_colors();
			$default_palette_color = $astra_palette_colors['palettes'][ $astra_palette_colors['currentPalette'] ];
		}

		$palette_one = array(
			$default_palette_color[0],
			$default_palette_color[1],
			$default_palette_color[2],
			$default_palette_color[3],
			$default_palette_color[5],
			$default_palette_color[5],
			$default_palette_color[6],
			$default_palette_color[7],
			$default_palette_color[8],
		);

		$palette_two = $default_palette_color;

		$palette_three = array(
			$default_palette_color[3],
			$default_palette_color[2],
			$default_palette_color[5],
			$default_palette_color[4],
			$default_palette_color[0],
			$default_palette_color[1],
			$default_palette_color[6],
			$default_palette_color[7],
			$default_palette_color[8],
		);


		$color_palettes = array(
			'style-1' =>
				array(
					'slug' => 'style-1',
					'title' => 'Light',
					'default_color' => $default_palette_color[5],
					'colors' => $palette_one,
				),
			'style-2' => array(
				'slug' => 'style-2',
				'title' => 'Dark',
				'default_color' => $default_palette_color[4],
				'colors' => $palette_two,
			),
			'style-3' => array(
				'slug' => 'style-3',
				'title' => 'Highlight',
				'default_color' => $default_palette_color[0],
				'colors' => $palette_three,
			),
		);

		return $color_palettes;
	}

	/**
	 * Get plugin status
	 *
	 * @since 1.0.0
	 *
	 * @param  string $plugin_init_file Plguin init file.
	 * @return mixed
	 */
	public function get_plugin_status( $plugin_init_file ) {

		$installed_plugins = get_plugins();

		if ( ! isset( $installed_plugins[ $plugin_init_file ] ) ) {
			return 'not-installed';
		} elseif ( is_plugin_active( $plugin_init_file ) ) {
			return 'active';
		} else {
			return 'inactive';
		}
	}

	/**
	 * Check if white label enabled
	 *
	 * @since 2.0.0
	 *
	 * @return boolean
	 */
	public function get_white_label() {

		$is_white_label = apply_filters( 'ast_block_templates_white_label_name', '' );
		return $is_white_label;
	}

	/**
	 * Get Zip AI Credits.
	 *
	 * @since 1.0.0
	 * @return array<string, int>
	 */
	public function get_spec_credit_details() {

		return Helper::get_credit_details();
	}

	/**
	 * Get all sites
	 *
	 * @since 1.0.0
	 *
	 * @return array<int, mixed> page builder sites.
	 */
	public function get_all_sites() {
		$total_requests = (int) Helper::instance()->get_site_request();

		$sites = array();

		if ( $total_requests ) {

			for ( $page = 1; $page <= $total_requests; $page++ ) {
				$current_page_data = Helper::instance()->get_sites_templates( $page );
				if ( ! empty( $current_page_data ) ) {
					foreach ( $current_page_data as $site_id => $site_data ) {

						$exclude_site = false;
						if ( isset( $site_data['required-plugins'] ) ) {
							foreach ( $site_data['required-plugins'] as $plugin ) {
								if ( isset( $plugin['slug'] ) && 'surecart' === $plugin['slug'] ) {
									$exclude_site = true;
									break; // Break the inner loop once 'surecart' is found.
								}
							}
						}

						if ( $exclude_site ) {
							continue; // Skip the current site if 'surecart' is found.
						}

						// Replace `astra-sites-tag` with `tag`.
						if ( isset( $site_data['astra-sites-tag'] ) ) {
							$site_data['tag'] = $site_data['astra-sites-tag'];
							unset( $site_data['astra-sites-tag'] );
						}

						// Replace `id-` from the site ID.
						$site_data['ID'] = str_replace( 'id-', '', (string) $site_id );

						if ( count( $site_data['pages'] ) ) {
							foreach ( $site_data['pages'] as $page_id => $page_data ) {

								$single_page = $page_data;

								// Replace `astra-sites-tag` with `tag`.
								if ( isset( $single_page['astra-sites-tag'] ) ) {
									$single_page['tag'] = $single_page['astra-sites-tag'];
									unset( $single_page['astra-sites-tag'] );
								}

								// Replace `id-` from the site ID.
								$single_page['ID'] = str_replace( 'id-', '', $page_id );

								$site_data['pages'][] = $single_page;

								unset( $site_data['pages'][ $page_id ] );
							}
						}

						$sites[] = $site_data;
					}
				}
			}
		}

		return $sites;
	}

	/**
	 * Get all blocks
	 *
	 * @since 1.0.0
	 * @param  int $start Start Page.
	 * @param  int $end End Page.
	 * @return array<string, mixed> All Elementor Blocks.
	 */
	public function get_all_blocks( $start = 0, $end = 0 ) {
		$blocks = array();
		$blocks_pages = array();
		$blocks_wireframe = array();

		if ( 0 === $start && 0 === $end ) {
			$start = 1;
			$end = (int) Helper::instance()->get_block_templates_requests();
		}

		for ( $page = $start; $page <= $end; $page++ ) {
			$current_page_data = Helper::instance()->get_blocks_templates( $page );
			if ( ! empty( $current_page_data ) ) {
				foreach ( $current_page_data as $page_id => $page_data ) {
					$page_data['ID'] = str_replace( 'id-', '', (string) $page_id );

					if ( isset( $page_data['type'] ) && 'wireframe' === $page_data['type'] ) {
						$blocks_wireframe[] = $page_data;
					} elseif ( isset( $page_data['type'] ) && 'page' === $page_data['type'] ) {
						$blocks_pages[] = $page_data;
					} else {
						$blocks[] = $page_data;
					}
				}
			}
			unset( $current_page_data );
		}

		return array(
			'blocks' => $blocks,
			'blocks_pages' => $blocks_pages,
			'blocks_wireframe' => $blocks_wireframe,
		);
	}

	/**
	 * Download File Into Uploads Directory
	 *
	 * @since 1.0.0
	 *
	 * @param  string               $file Download File URL.
	 * @param  array<string, mixed> $overrides Upload file arguments.
	 * @param  int                  $timeout_seconds Timeout in downloading the XML file in seconds.
	 * @return array<string, mixed>        Downloaded file data.
	 */
	public function download_file( $file = '', $overrides = array(), $timeout_seconds = 300 ) {

		// Gives us access to the download_url() and wp_handle_sideload() functions.
		require_once ABSPATH . 'wp-admin/includes/file.php';

		// Download file to temp dir.
		$temp_file = download_url( $file, $timeout_seconds );

		// WP Error.
		if ( is_wp_error( $temp_file ) ) {
			return array(
				'success' => false,
				'data'    => $temp_file->get_error_message(),
			);
		}

		// Array based on $_FILE as seen in PHP file uploads.
		$file_args = array(
			'name'     => basename( $file ),
			'tmp_name' => $temp_file,
			'error'    => 0,
			'size'     => filesize( $temp_file ),
		);

		$defaults = apply_filters(
			'ast_block_templates_wp_handle_sideload',
			array(

				// Tells WordPress to not look for the POST form
				// fields that would normally be present as
				// we downloaded the file from a remote server, so there
				// will be no form fields
				// Default is true.
				'test_form'   => false,

				// Setting this to false lets WordPress allow empty files, not recommended.
				// Default is true.
				'test_size'   => true,

				// A properly uploaded file will pass this test. There should be no reason to override this one.
				'test_upload' => true,

				'mimes'       => array(
					'xml'  => 'text/xml',
					'json' => 'application/json',
				),
			)
		);

		$overrides = wp_parse_args( $overrides, $defaults );

		// Move the temporary file into the uploads directory.
		$results = wp_handle_sideload( $file_args, $overrides );

		if ( isset( $results['error'] ) ) {
			return array(
				'success' => false,
				'data'    => $results,
			);
		}

		// Success.
		return array(
			'success' => true,
			'data'    => $results,
		);
	}

	/**
	 * Remove query parameters from the URL.
	 *
	 * @param  String   $url URL.
	 * @param  String[] $params Query parameters.
	 *
	 * @return string       URL.
	 */
	public function remove_query_params( $url, $params ): string {
		$parts = wp_parse_url( $url );
		$query = array();

		if ( isset( $parts['query'] ) ) {
			parse_str( $parts['query'], $query );
		}

		foreach ( $params as $param ) {
			unset( $query[ $param ] );
		}

		$query = http_build_query( $query );

		if ( ! empty( $query ) ) {
			$query = '?' . $query;
		}

		if ( ! isset( $parts['host'] ) ) {
			return $url;
		}

		$parts['scheme'] = isset( $parts['scheme'] ) ? $parts['scheme'] : 'https';
		$parts['path']   = isset( $parts['path'] ) ? $parts['path'] : '/';
		$parts['port']   = isset( $parts['port'] ) ? ':' . $parts['port'] : '';

		return $parts['scheme'] . '://' . $parts['host'] . $parts['port'] . $parts['path'] . $query;
	}

	/**
	 * Check is valid URL
	 *
	 * @param string $url  The site URL.
	 *
	 * @since 2.1.5
	 * @return boolean
	 */
	public function is_valid_url( $url = '' ) {
		if ( empty( $url ) && null !== $url ) {
			return false;
		}

		$parse_url = wp_parse_url( $url );
		if ( empty( $parse_url ) || ! is_array( $parse_url ) || ! array_key_exists( 'host', $parse_url ) ) {
			return false;
		}

		$valid_hosts = array();

		$api_domain_parse_url = wp_parse_url( AST_BLOCK_TEMPLATES_LIBRARY_URL );
		$valid_hosts[] = $api_domain_parse_url['host'];

		// Validate host.
		if ( in_array( $parse_url['host'], $valid_hosts, true ) ) {
			return true;
		}

		return false;
	}
}
PK�][�a�\ultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/template-kit-importer.phpnu�[���<?php
/**
 * Template Lit Importer
 *
 * @package Ast Block Templates
 * @since 2.1.0
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;
use Gutenberg_Templates\Inc\Importer\Image_Importer;

/**
 * Ast_Block Templates Kit Importer
 *
 * @since 2.1.0
 */
class Template_Kit_Importer {

	use Instance;

	/**
	 * Constructor
	 *
	 * @since 2.1.0
	 */
	public function __construct() {
		add_action( 'wp_ajax_ast_block_templates_kit_importer', array( $this, 'template_importer' ) );
		add_action( 'wp_ajax_ast_block_templates_import_template_kit', array( $this, 'import_template_kit' ) );
	}

	/**
	 * Template kit Importer
	 *
	 * @return void
	 * @since 1.0.0
	 */
	public function template_importer() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		$api_uri = ( isset( $_REQUEST['api_uri'] ) ) ? esc_url_raw( $_REQUEST['api_uri'] ) : '';

		$block_id = isset( $_REQUEST['id'] ) ? absint( $_REQUEST['id'] ) : 0;

		if ( ! Plugin::instance()->is_valid_url( $api_uri ) ) {
			wp_send_json_error(
				array(
					/* Translators: %s is API URL. */
					'message' => sprintf( __( 'Invalid Request URL - %s', 'ultimate-addons-for-gutenberg' ), $api_uri ),
					'code'    => 'Error',
				)
			);
		}

		$api_args = apply_filters(
			'ast_block_templates_api_args',
			array(
				'timeout' => 15,
			)
		);

		$request_params = apply_filters(
			'ast_block_templates_api_params',
			array(
				'_fields' => 'original_content',
			)
		);

		$demo_api_uri = esc_url_raw( add_query_arg( $request_params, $api_uri ) );

		// API Call.
		$response = wp_safe_remote_get( $demo_api_uri, $api_args );

		if ( is_wp_error( $response ) ) {
			if ( isset( $response->status ) ) {
				wp_send_json_error( json_decode( $response->status, true ) );
			} else {
				wp_send_json_error( $response->get_error_message() );
			}
		}

		if ( wp_remote_retrieve_response_code( $response ) !== 200 ) {
			wp_send_json_error( wp_remote_retrieve_body( $response ) );
		}

		$data = json_decode( wp_remote_retrieve_body( $response ), true );

		// Flush the object when import is successful.
		delete_option( 'ast-block-templates_data-' . $block_id );

		wp_send_json_success( $data['original_content'] );
	}

	/**
	 * Import Block
	 * 
	 * @return void
	 */
	public function import_template_kit() {

		if ( ! current_user_can( 'manage_ast_block_templates' ) ) {
			wp_send_json_error( __( 'You are not allowed to perform this action', 'ultimate-addons-for-gutenberg' ) );
		}
		// Verify Nonce.
		check_ajax_referer( 'ast-block-templates-ajax-nonce', '_ajax_nonce' );

		// Allow the SVG tags in batch update process.
		add_filter( 'wp_kses_allowed_html', array( $this, 'allowed_tags_and_attributes' ), 10, 2 );

		$ids_mapping = get_option( 'ast_block_templates_wpforms_ids_mapping', array() );

		// Post content.
		$content = isset( $_REQUEST['content'] ) ? stripslashes( $_REQUEST['content'] ) : ''; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

		// Empty mapping? Then return.
		if ( ! empty( $ids_mapping ) ) {
			// Replace ID's.
			foreach ( $ids_mapping as $old_id => $new_id ) {
				$content = str_replace( '[wpforms id="' . $old_id, '[wpforms id="' . $new_id, $content );
				$content = str_replace( '{"formId":"' . $old_id . '"}', '{"formId":"' . $new_id . '"}', $content );
			}
		}

		// # Tweak
		// Gutenberg break block markup from render. Because the '&' is updated in database with '&amp;' and it
		// expects as 'u0026amp;'. So, Converted '&amp;' with 'u0026amp;'.
		//
		// @todo This affect for normal page content too. Detect only Gutenberg pages and process only on it.
		// $content = str_replace( '&amp;', "\u0026amp;", $content );
		$content = $this->get_content( $content );

		// Update content.
		wp_send_json_success( $content );
	}

	/**
	 * Allowed tags for the batch update process.
	 *
	 * @param  array<string, array<string, boolean>> $allowedposttags   Array of default allowable HTML tags.
	 * @param  string                                $context    The context for which to retrieve tags. Allowed values are 'post',
	 *                                                                 'strip', 'data', 'entities', or the name of a field filter such as
	 *                                                                 'pre_user_description'.
	 * @return array<string, array<string, boolean>> Array of allowed HTML tags and their allowed attributes.
	 */
	public function allowed_tags_and_attributes( $allowedposttags, $context ) {

		// Keep only for 'post' contenxt.
		if ( 'post' === $context ) {

			// <svg> tag and attributes.
			$allowedposttags['svg'] = array(
				'xmlns'   => true,
				'viewbox' => true,
			);

			// <path> tag and attributes.
			$allowedposttags['path'] = array(
				'd' => true,
			);
		}

		return $allowedposttags;
	}


	/**
	 * Download and Replace hotlink images
	 *
	 * @since 1.0.0
	 *
	 * @param  string $content Mixed post content.
	 * @return string
	 */
	public function get_content( $content = '' ) {

		// Extract all links.
		preg_match_all( '#\bhttps?://[^,\s()<>]+(?:\([\w\d]+\)|([^,[:punct:]\s]|/))#', $content, $match );

		$all_links = array_unique( $match[0] );

		// Not have any link.
		if ( empty( $all_links ) ) {
			return $content;
		}

		$link_mapping = array();
		$image_links  = array();
		$other_links  = array();

		// Extract normal and image links.
		foreach ( $all_links as $key => $link ) {
			if ( Helper::instance()->ast_block_templates_is_valid_image( $link ) ) {

				// Get all image links.
				// Avoid *-150x, *-300x and *-1024x images.
				if (
					false === strpos( $link, '-150x' ) &&
					false === strpos( $link, '-300x' ) &&
					false === strpos( $link, '-1024x' )
				) {
					$image_links[] = $link;
				}
			} else {

				// Collect other links.
				$other_links[] = $link;
			}
		}

		// Step 1: Download images.
		if ( ! empty( $image_links ) ) {
			foreach ( $image_links as $key => $image_url ) {
				// Download remote image.
				$image            = array(
					'url' => $image_url,
					'id'  => 0,
				);
				$downloaded_image = Image_Importer::instance()->import( $image );

				// Old and New image mapping links.
				$link_mapping[ $image_url ] = $downloaded_image['url'];
			}
		}

		// Step 3: Replace mapping links.
		foreach ( $link_mapping as $old_url => $new_url ) {
			$content = str_replace( strval( $old_url ), $new_url, $content );

			// Replace the slashed URLs if any exist.
			$old_url = str_replace( '/', '/\\', strval( $old_url ) );
			$new_url = str_replace( '/', '/\\', $new_url );
			$content = str_replace( $old_url, $new_url, $content );
		}

		return $content;
	}
}
PK�][��22Nultimate-addons-for-gutenberg/lib/gutenberg-templates/inc/importer/updater.phpnu�[���<?php
/**
 * Update Compatibility
 *
 * @package ast-block-templates
 */

namespace Gutenberg_Templates\Inc\Importer;

use Gutenberg_Templates\Inc\Traits\Instance;
use Gutenberg_Templates\Inc\Traits\Helper;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Updater class
 *
 * @since 2.0.0
 */
class Updater {

	use Instance;

	/**
	 *  Constructor
	 */
	public function __construct() {
		add_action( 'admin_init', array( $this, 'init' ) );
		add_action( 'ast_block_templates_updated', array( $this, 'updated' ), 10, 2 );
	}

	/**
	 * Init
	 *
	 * @since 2.0.0
	 * @return void
	 */
	public function init() {
		// Get auto saved version number.
		$saved_version = get_option( 'ast-block-templates-version', false );

		// Update auto saved version number.
		if ( ! $saved_version ) {

			// Fresh install updation.
			$this->fresh_v2_install();

			// Update current version.
			update_option( 'ast-block-templates-version', AST_BLOCK_TEMPLATES_VER );
			return;
		}

		do_action( 'ast_block_templates_update_before' );

		// If equals then return.
		if ( version_compare( $saved_version, AST_BLOCK_TEMPLATES_VER, '=' ) ) {
			return;
		}

		do_action( 'ast_block_templates_updated', $saved_version, AST_BLOCK_TEMPLATES_VER );

		// Update auto saved version number.
		update_option( 'ast-block-templates-version', AST_BLOCK_TEMPLATES_VER );

		do_action( 'ast_block_templates_update_after' );
	}


	/**
	 * Update onboarding variables
	 * 
	 * @since 2.1.12
	 * @return void
	 */
	public function remove_deprecated_option() {

		$deprecated_option = get_option( 'ast-templates-business-details', false );

		if ( ! empty( $deprecated_option['business_name'] ) ) {

			// Update social media key meta.
			$social_profiles = isset( $deprecated_option['social_profiles'] ) ? $deprecated_option['social_profiles'] : array();

			if ( is_array( $social_profiles ) ) {
				foreach ( $social_profiles as $index => $profile ) {
					if ( isset( $profile['id'] ) ) {
						$social_profiles[ $index ]['type'] = $profile['id'];
					}
				}
			}
			
			$business_details = array(
				'business_name' => isset( $deprecated_option['business_name'] ) ? $deprecated_option['business_name'] : '',
				'business_description' => isset( $deprecated_option['business_description'] ) ? $deprecated_option['business_description'] : '',
				'business_category' => '',
				'images' => isset( $deprecated_option['images'] ) ? $deprecated_option['images'] : array(),
				'image_keyword' => isset( $deprecated_option['image_keywords'] ) ? $deprecated_option['image_keywords'] : array(),
				'business_address' => isset( $deprecated_option['business_address'] ) ? $deprecated_option['business_address'] : '',
				'business_phone' => isset( $deprecated_option['business_phone'] ) ? $deprecated_option['business_phone'] : '',
				'business_email' => isset( $deprecated_option['business_email'] ) ? $deprecated_option['business_email'] : '',
				'social_profiles' => $social_profiles,
			);

			// Merge with existing business details if available.
			$zip_user_details = get_option( 'zipwp_user_business_details', array() );
			$business_details = array_merge( $zip_user_details, $business_details );

			update_option( 'zipwp_user_business_details', $business_details );
			delete_option( 'ast-templates-business-details' );
		}
	}

	/**
	 * Fresh v2 install
	 * 
	 * @since 2.0.0
	 * @return void
	 */
	public function fresh_v2_install() {
		delete_option( 'ast-block-templates-last-export-checksums-time' );
		delete_option( 'ast_block_templates_fresh_site' );
	}

	/**
	 * Updated
	 * 
	 * @since 2.0.0
	 * @param string $old_version Old version number.
	 * @param string $new_version New version number.
	 * @return void
	 */
	public function updated( $old_version, $new_version ) {
		switch ( $new_version ) {
			case '2.0.0':
				// Do something for that version.
				break;
		}
		
		if ( version_compare( $old_version, '2.1.24', '<' ) ) {
			// Create new files.
			Sync_Library::instance()->set_default_assets();

			// Update new files.
			wp_schedule_single_event( time() + 1, 'sync_blocks' );
			
			// Delete older options data.
			$options = Sync_Library::instance()->get_default_assets();
			foreach ( $options as $option_name ) {
				delete_option( $option_name );
			}

			$this->remove_deprecated_option();
		}

		if ( version_compare( $old_version, '2.3.4', '<' ) ) {
			$common_css_content = get_option( 'ast-block-templates-spectra-common-styles', '' );
			if ( ! empty( $common_css_content ) ) {
				Helper::instance()->update_json_file( 'ast-block-templates-spectra-common-styles', $common_css_content );
				delete_option( 'ast-block-templates-spectra-common-styles' );
			}
		}

		if ( version_compare( $old_version, '2.4.5', '<' ) ) {

			global $wpdb;

			// Query to get all options that start with 'ast-block-templates_data-'.
			$options = $wpdb->get_col( //phpcs:ignore
				$wpdb->prepare(
					"SELECT option_name FROM {$wpdb->options} WHERE option_name LIKE %s",
					'ast-block-templates_data-%'
				)
			);

			// Loop through each option and delete it.
			if ( $options ) {
				foreach ( $options as $option ) {
					delete_option( $option );
				}
			}
		}
	}
}
PK�][~<`�$$Bultimate-addons-for-gutenberg/lib/gutenberg-templates/version.jsonnu�[���{
	"ast-block-templates": "2.4.8"
}
PK�][ųfӺ�>ultimate-addons-for-gutenberg/lib/class-uagb-utm-analytics.phpnu�[���<?php
/**
 * Init
 *
 * Loads latest UTM Analytics library in environment.
 *
 * @since 2.19.2
 * @package UTM Analytics
 */


if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Utm_Analytics' ) ) :

	/**
	 * Admin
	 */
	class UAGB_Utm_Analytics {

		/**
		 * Instance
		 *
		 * @since 2.19.2
		 * @var (Object) UAGB_Utm_Analytics
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.19.2
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.19.2
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'init', [ $this, 'load' ], 999 );
		}

		/**
		 * Version Check
		 *
		 * @return void
		 */
		public function version_check() {

			$file = realpath( dirname( __FILE__ ) . '/utm-analytics/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				// @codingStandardsIgnoreStart
				$file_data = json_decode( file_get_contents( $file ), true );
				// @codingStandardsIgnoreEnd
				global $utm_analytics_version, $utm_analytics_init;
				$path = realpath( dirname( __FILE__ ) . '/utm-analytics/bsf-utm-analytics.php' );
				$version = isset( $file_data['bsf-utm-analytics'] ) ? $file_data['bsf-utm-analytics'] : 0;

				if ( null === $utm_analytics_version ) {
					$utm_analytics_version = '0.0.1';
				}

				// Compare versions.
				if ( version_compare( $version, $utm_analytics_version, '>=' ) ) {
					$utm_analytics_version = $version;
					$utm_analytics_init = $path;
				}
			}
		}

		/**
		 * Load latest plugin
		 *
		 * @return void
		 */
		public function load() {

			global $utm_analytics_version, $utm_analytics_init;
			if ( is_file( realpath( $utm_analytics_init ) ) ) {
				include_once realpath( $utm_analytics_init );
			}
		}
	}

	UAGB_Utm_Analytics::get_instance();

endif;PK�][�,Lzz=ultimate-addons-for-gutenberg/lib/bsf-analytics/changelog.txtnu�[���v1.1.14 - 6-May-2025
- New: Introduced a key 'hide_optin_checkbox' to hide checkbox from Settings > General.
- Improvement: Single optin notice for all bsf products.
- Improvement: Introduced delay of 7 days for next optin message if user has reqested request from product.
v1.1.13 - 17-April-2025
- Improvement: Ensured unique id for label's `for` attribute in deactivation survey fields by prefixing them with product slugs.
- Improvement: Prevented deactivation survey from triggering when switching from a child theme to its parent.

v1.1.12 - 24-March-2025
- Improvement: Added `suremails` and `latepoint` slugs to UTM analytics.PK�][�m�00Uultimate-addons-for-gutenberg/lib/bsf-analytics/assets/css/minified/style-rtl.min.cssnu�[���[ID*="-optin-notice"]{padding:1px 12px;border-right-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 0 12px 20px}[ID*="-optin-notice"] .button-primary{margin-left:5px}PK�][���[00Qultimate-addons-for-gutenberg/lib/bsf-analytics/assets/css/minified/style.min.cssnu�[���[ID*="-optin-notice"]{padding:1px 12px;border-left-color:#007cba}[ID*="-optin-notice"] .notice-container{padding-top:10px;padding-bottom:12px}[ID*="-optin-notice"] .notice-content{margin:0}[ID*="-optin-notice"] .notice-heading{padding:0 20px 12px 0}[ID*="-optin-notice"] .button-primary{margin-right:5px}PK�][���qqSultimate-addons-for-gutenberg/lib/bsf-analytics/assets/css/unminified/style-rtl.cssnu�[���[ID*="-optin-notice"] {
    padding: 1px 12px;
    border-right-color: #007cba;
}

[ID*="-optin-notice"] .notice-container {
    padding-top: 10px;
    padding-bottom: 12px;
}

[ID*="-optin-notice"] .notice-content {
    margin: 0;
}

[ID*="-optin-notice"] .notice-heading {
    padding: 0 0 12px 20px;
}

[ID*="-optin-notice"] .button-primary {
    margin-left: 5px;
}PK�][���qqOultimate-addons-for-gutenberg/lib/bsf-analytics/assets/css/unminified/style.cssnu�[���[ID*="-optin-notice"] {
    padding: 1px 12px;
    border-left-color: #007cba;
}

[ID*="-optin-notice"] .notice-container {
    padding-top: 10px;
    padding-bottom: 12px;
}

[ID*="-optin-notice"] .notice-content {
    margin: 0;
}

[ID*="-optin-notice"] .notice-heading {
    padding: 0 20px 12px 0;
}

[ID*="-optin-notice"] .button-primary {
    margin-right: 5px;
}PK�][R���Multimate-addons-for-gutenberg/lib/bsf-analytics/class-bsf-analytics-stats.phpnu�[���<?php
/**
 * BSF analytics stat class file.
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics_Stats' ) ) {
	/**
	 * BSF analytics stat class.
	 */
	class BSF_Analytics_Stats {

		/**
		 * Active plugins.
		 *
		 * Holds the sites active plugins list.
		 *
		 * @var array
		 */
		private $plugins;

		/**
		 * Instance of BSF_Analytics_Stats.
		 *
		 * Holds only the first object of class.
		 *
		 * @var object
		 */
		private static $instance = null;

		/**
		 * Create only once instance of a class.
		 *
		 * @return object
		 * @since 1.0.0
		 */
		public static function instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Get stats.
		 *
		 * @return array stats data.
		 * @since 1.0.0
		 */
		public function get_stats() {
			return apply_filters( 'bsf_core_stats', $this->get_default_stats() );
		}

		/**
		 * Retrieve stats for site.
		 *
		 * @return array stats data.
		 * @since 1.0.0
		 */
		private function get_default_stats() {
			return array(
				'graupi_version'         => defined( 'BSF_UPDATER_VERSION' ) ? BSF_UPDATER_VERSION : false,
				'domain_name'            => get_site_url(),
				'php_os'                 => PHP_OS,
				'server_software'        => isset( $_SERVER['SERVER_SOFTWARE'] ) ? wp_kses( wp_unslash( $_SERVER['SERVER_SOFTWARE'] ), [] ) : '',
				'mysql_version'          => $this->get_mysql_version(),
				'php_version'            => $this->get_php_version(),
				'php_max_input_vars'     => ini_get( 'max_input_vars' ), // phpcs:ignore:PHPCompatibility.IniDirectives.NewIniDirectives.max_input_varsFound
				'php_post_max_size'      => ini_get( 'post_max_size' ),
				'php_max_execution_time' => ini_get( 'max_execution_time' ),
				'php_memory_limit'       => ini_get( 'memory_limit' ),
				'zip_installed'          => extension_loaded( 'zip' ),
				'imagick_availabile'     => extension_loaded( 'imagick' ),
				'xmlreader_exists'       => class_exists( 'XMLReader' ),
				'gd_available'           => extension_loaded( 'gd' ),
				'curl_version'           => $this->get_curl_version(),
				'curl_ssl_version'       => $this->get_curl_ssl_version(),
				'is_writable'            => $this->is_content_writable(),

				'wp_version'             => get_bloginfo( 'version' ),
				'user_count'             => $this->get_user_count(),
				'posts_count'            => wp_count_posts()->publish,
				'page_count'             => wp_count_posts( 'page' )->publish,
				'site_language'          => get_locale(),
				'timezone'               => wp_timezone_string(),
				'is_ssl'                 => is_ssl(),
				'is_multisite'           => is_multisite(),
				'network_url'            => network_site_url(),
				'external_object_cache'  => (bool) wp_using_ext_object_cache(),
				'wp_debug'               => WP_DEBUG,
				'wp_debug_display'       => WP_DEBUG_DISPLAY,
				'script_debug'           => SCRIPT_DEBUG,

				'active_plugins'         => $this->get_active_plugins(),

				'active_theme'           => get_template(),
				'active_stylesheet'      => get_stylesheet(),
			);
		}

		/**
		 * Get installed PHP version.
		 *
		 * @return float PHP version.
		 * @since 1.0.0
		 */
		private function get_php_version() {
			if ( defined( 'PHP_MAJOR_VERSION' ) && defined( 'PHP_MINOR_VERSION' ) && defined( 'PHP_RELEASE_VERSION' ) ) { // phpcs:ignore
				return PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION . '.' . PHP_RELEASE_VERSION;
			}

			return phpversion();
		}

		/**
		 * User count on site.
		 *
		 * @return int User count.
		 * @since 1.0.0
		 */
		private function get_user_count() {
			if ( is_multisite() ) {
				$user_count = get_user_count();
			} else {
				$count      = count_users();
				$user_count = $count['total_users'];
			}

			return $user_count;
		}

		/**
		 * Get active plugin's data.
		 *
		 * @return array active plugin's list.
		 * @since 1.0.0
		 */
		private function get_active_plugins() {
			if ( ! $this->plugins ) {
				// Ensure get_plugin_data function is loaded.
				if ( ! function_exists( 'get_plugin_data' ) ) {
					require_once ABSPATH . 'wp-admin/includes/plugin.php';
				}

				$plugins       = wp_get_active_and_valid_plugins();
				$plugins       = array_map( 'get_plugin_data', $plugins );
				$this->plugins = array_map( array( $this, 'format_plugin' ), $plugins );
			}

			return $this->plugins;
		}

		/**
		 * Format plugin data.
		 *
		 * @param string $plugin plugin.
		 * @return array formatted plugin data.
		 * @since 1.0.0
		 */
		public function format_plugin( $plugin ) {
			return array(
				'name'        => html_entity_decode( $plugin['Name'], ENT_COMPAT, 'UTF-8' ),
				'url'         => $plugin['PluginURI'],
				'version'     => $plugin['Version'],
				'slug'        => $plugin['TextDomain'],
				'author_name' => html_entity_decode( wp_strip_all_tags( $plugin['Author'] ), ENT_COMPAT, 'UTF-8' ),
				'author_url'  => $plugin['AuthorURI'],
			);
		}

		/**
		 * Curl SSL version.
		 *
		 * @return float SSL version.
		 * @since 1.0.0
		 */
		private function get_curl_ssl_version() {
			$curl = array();
			if ( function_exists( 'curl_version' ) ) {
				$curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version
			}

			return isset( $curl['ssl_version'] ) ? $curl['ssl_version'] : false;
		}

		/**
		 * Get cURL version.
		 *
		 * @return float cURL version.
		 * @since 1.0.0
		 */
		private function get_curl_version() {
			if ( function_exists( 'curl_version' ) ) {
				$curl = curl_version(); // phpcs:ignore WordPress.WP.AlternativeFunctions.curl_curl_version
			}

			return isset( $curl['version'] ) ? $curl['version'] : false;
		}

		/**
		 * Get MySQL version.
		 *
		 * @return float MySQL version.
		 * @since 1.0.0
		 */
		private function get_mysql_version() {
			global $wpdb;
			return $wpdb->db_version();
		}

		/**
		 * Check if content directory is writable.
		 *
		 * @return bool
		 * @since 1.0.0
		 */
		private function is_content_writable() {
			$upload_dir = wp_upload_dir();
			return wp_is_writable( $upload_dir['basedir'] );
		}
	}
}

/**
 * Polyfill for sites using WP version less than 5.3
 */
if ( ! function_exists( 'wp_timezone_string' ) ) {
	/**
	 * Get timezone string.
	 *
	 * @return string timezone string.
	 * @since 1.0.0
	 */
	function wp_timezone_string() {
		$timezone_string = get_option( 'timezone_string' );

		if ( $timezone_string ) {
			return $timezone_string;
		}

		$offset  = (float) get_option( 'gmt_offset' );
		$hours   = (int) $offset;
		$minutes = ( $offset - $hours );

		$sign      = ( $offset < 0 ) ? '-' : '+';
		$abs_hour  = abs( $hours );
		$abs_mins  = abs( $minutes * 60 );
		$tz_offset = sprintf( '%s%02d:%02d', $sign, $abs_hour, $abs_mins );

		return $tz_offset;
	}
}
PK�][�%+5DDVultimate-addons-for-gutenberg/lib/bsf-analytics/classes/class-bsf-analytics-helper.phpnu�[���<?php
/**
 * BSF analytics Helper Class File.
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics_Helper' ) ) {
	/**
	 * BSF analytics stat class.
	 */
	class BSF_Analytics_Helper {

		/**
		 * Check is error in the received response.
		 *
		 * @param object $response Received API Response.
		 * @return array $result Error result.
		 */
		public static function is_api_error( $response ) {

			$result = array(
				'error'         => false,
				'error_message' => __( 'Oops! Something went wrong. Please refresh the page and try again.', 'ultimate-addons-for-gutenberg' ),
				'error_code'    => 0,
			);

			if ( is_wp_error( $response ) ) {
				$result['error']         = true;
				$result['error_message'] = $response->get_error_message();
				$result['error_code']    = $response->get_error_code();
			} elseif ( ! empty( wp_remote_retrieve_response_code( $response ) ) && ! in_array( wp_remote_retrieve_response_code( $response ), array( 200, 201, 204 ), true ) ) {
				$result['error']         = true;
				$result['error_message'] = wp_remote_retrieve_response_message( $response );
				$result['error_code']    = wp_remote_retrieve_response_code( $response );
			}

			return $result;
		}

		/**
		 * Get API headers
		 *
		 * @since 1.1.6
		 * @return array<string, string>
		 */
		public static function get_api_headers() {
			return array(
				'Content-Type' => 'application/json',
				'Accept'       => 'application/json',
			);
		}

        /**
		 * Get API URL for sending analytics.
		 *
		 * @return string API URL.
		 * @since 1.0.0
		 */
		public static function get_api_url() {
			return defined( 'BSF_ANALYTICS_API_BASE_URL' ) ? BSF_ANALYTICS_API_BASE_URL : 'https://analytics.brainstormforce.com/';
		}
        
        /**
		 * Check if the current screen is allowed for the survey.
		 *
		 * This function checks if the current screen is one of the allowed screens for displaying the survey.
		 * It uses the `get_current_screen` function to get the current screen information and compares it with the list of allowed screens.
		 *
		 * @since 1.1.6
		 * @return bool True if the current screen is allowed, false otherwise.
		 */
		public static function is_allowed_screen() {

			// This filter allows to dynamically modify the list of allowed screens for the survey.
			$allowed_screens = apply_filters( 'uds_survey_allowed_screens', array( 'plugins' ) );

			$current_screen = get_current_screen();

			// Check if $current_screen is a valid object before accessing its properties.
			if ( ! is_object( $current_screen ) ) {
				return false; // Return false if current screen is not valid.
			}

			$screen_id = $current_screen->id;

			if ( ! empty( $screen_id ) && in_array( $screen_id, $allowed_screens, true ) ) {
				return true;
			}

			return false;
		}
	}
}PK�][�����	�	Nultimate-addons-for-gutenberg/lib/bsf-analytics/class-bsf-analytics-loader.phpnu�[���<?php
/**
 * BSF analytics loader file.
 *
 * @version 1.0.0
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit();
}

/**
 * Class BSF_Analytics_Loader.
 */
class BSF_Analytics_Loader {

	/**
	 * Analytics Entities.
	 *
	 * @access private
	 * @var array Entities array.
	 */
	private $entities = array();

	/**
	 * Analytics Version.
	 *
	 * @access private
	 * @var float analytics version.
	 */
	private $analytics_version = '';

	/**
	 * Analytics path.
	 *
	 * @access private
	 * @var string path array.
	 */
	private $analytics_path = '';

	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class object.
	 */
	private static $instance = null;

	/**
	 * Get instace of class.
	 *
	 * @return object
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}

		return self::$instance;
	}

	/**
	 * Constructor
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'load_analytics' ) );
	}

	/**
	 * Set entity for analytics.
	 *
	 * @param string $data Entity attributes data.
	 * @return void
	 */
	public function set_entity( $data ) {
		array_push( $this->entities, $data );
	}

	/**
	 * Load Analytics library.
	 *
	 * @return void
	 */
	public function load_analytics() {
		$unique_entities = array();

		if ( ! empty( $this->entities ) ) {
			foreach ( $this->entities as $entity ) {
				foreach ( $entity as $key => $data ) {

					if ( isset( $data['path'] ) ) {
						if ( file_exists( $data['path'] . '/version.json' ) ) {
							$file_contents     = file_get_contents( $data['path'] . '/version.json' ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents
							$analytics_version = json_decode( $file_contents, 1 );
							$analytics_version = $analytics_version['bsf-analytics-ver'];

							if ( version_compare( $analytics_version, $this->analytics_version, '>' ) ) {
								$this->analytics_version = $analytics_version;
								$this->analytics_path    = $data['path'];
							}
						}
					}

					if ( ! isset( $unique_entities[ $key ] ) ) {
						$unique_entities[ $key ] = $data;
					}
				}
			}

			if ( file_exists( $this->analytics_path ) && ! class_exists( 'BSF_Analytics' ) ) {
				require_once $this->analytics_path . '/class-bsf-analytics.php';
				new BSF_Analytics( $unique_entities, $this->analytics_path, $this->analytics_version );
			}
		}
	}
}
PK�][?&*wwIultimate-addons-for-gutenberg/lib/bsf-analytics/modules/utm-analytics.phpnu�[���<?php
/**
 * UTM Analytics class
 *
 * @package bsf-analytics
 */


if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_UTM_Analytics' ) ) {

	
	if ( ! defined( 'BSF_UTM_ANALYTICS_REFERER' ) ) {
		define( 'BSF_UTM_ANALYTICS_REFERER', 'bsf_product_referers' );
	}

	/**
	 * UTM Analytics class
	 *
	 * @since 1.1.10
	 */
	class BSF_UTM_Analytics {
	
		/**
		 * List of slugs of all the bsf products that will be referer, referring another product.
		 *
		 * @var array<string>
		 * @since 1.1.10
		 */
		private static $bsf_product_slugs = [
			'all-in-one-schemaorg-rich-snippets',
			'astra',
			'astra-portfolio',
			'astra-sites',
			'bb-ultimate-addon',
			'cartflows',
			'checkout-paypal-woo',
			'checkout-plugins-stripe-woo',
			'convertpro',
			'header-footer-elementor',
			'latepoint',
			'presto-player',
			'surecart',
			'sureforms',
			'suremails',
			'suretriggers',
			'ultimate-addons-for-beaver-builder-lite',
			'ultimate-addons-for-gutenberg',
			'ultimate-elementor',
			'variation-swatches-woo',
			'woo-cart-abandonment-recovery',
			'wp-schema-pro',
			'zipwp',
		];
	
	
		/**
		 * This function will help to determine if provided slug is a valid bsf product or not,
		 * This way we will maintain consistency through out all our products.
		 *
		 * @param string $slug unique slug of the product which can be used for referer, product.
		 * @since 1.1.10
		 * @return boolean
		 */
		public static function is_valid_bsf_product_slug( $slug ) {
			if ( empty( $slug ) || ! is_string( $slug ) ) {
				return false;
			}
	
			return in_array( $slug, self::$bsf_product_slugs, true );
		}
	
		/**
		 * This function updates value of referer and product in option
		 * bsf_product_referer in form of key value pair as 'product' => 'referer'
		 *
		 * @param string $referer slug of the product which is refering another product.
		 * @param string $product slug of the product which is refered.
		 * @since 1.1.10
		 * @return void
		 */
		public static function update_referer( $referer, $product ) {
	
			$slugs       = [
				'referer' => $referer,
				'product' => $product,
			];
			$error_count = 0;
	
			foreach ( $slugs as $type => $slug ) {
				if ( ! self::is_valid_bsf_product_slug( $slug ) ) {
					error_log( sprintf( 'Invalid %1$s slug provided "%2$s", does not match bsf_product_slugs', $type, $slug ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
					$error_count++;
				}
			}
	
			if ( $error_count > 0 ) {
				return;
			}
	
			$slugs = array_map( 'sanitize_text_field', $slugs );
	
			$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER, [] );
			if ( ! is_array( $bsf_product_referers ) ) {
				$bsf_product_referers = [];
			}
	
			$bsf_product_referers[ $slugs['product'] ] = $slugs['referer'];
	
			update_option( BSF_UTM_ANALYTICS_REFERER, $bsf_product_referers );
		}
	
		/**
		 * This function will  add utm_args to pro link or purchase link
		 * added utm_source by default additional utm_args such as utm_medium etc can be provided to generate location specific links
		 *
		 * @param string $link Ideally this should be product site link where utm_params can be tracked.
		 * @param string $product Product slug whose utm_link need to be created.
		 * @param mixed  $utm_args additional args to be passed ex: [ 'utm_medium' => 'dashboard'].
		 * @since 1.1.10
		 * @return string
		 */
		public static function get_utm_ready_link( $link, $product, $utm_args = [] ) {
	
			if ( false === wp_http_validate_url( $link ) ) {
				error_log( 'Invalid url passed to get_utm_ready_link function' ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
				return $link;
			}
	
			if ( empty( $product ) || ! is_string( $product ) || ! self::is_valid_bsf_product_slug( $product ) ) {
				error_log( sprintf( 'Invalid product slug provided "%1$s", does not match bsf_product_slugs', $product ) ); // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_error_log -- adding logs in case of failure will help in debugging.
				return $link;
			}
	
			$bsf_product_referers = get_option( BSF_UTM_ANALYTICS_REFERER, [] );
	
			if ( ! is_array( $bsf_product_referers ) || empty( $bsf_product_referers[ $product ] ) ) {
				return $link;
			}
	
			if ( ! self::is_valid_bsf_product_slug( $bsf_product_referers[ $product ] ) ) {
				return $link;
			}
	
			if ( ! is_array( $utm_args ) ) {
				$utm_args = [];
			}
	
			$utm_args['utm_source'] = $bsf_product_referers[ $product ];
	
			$link = add_query_arg(
				$utm_args,
				$link
			);
	
			return $link;
		}
	}
}


PK�][��xIIcultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/css/feedback.cssnu�[���/* Base CSS to normalize the default. */
.uds-feedback-form--wrapper h2,
.uds-feedback-form--wrapper p,
.uds-feedback-form--wrapper input[type="radio"] {
	margin: 0;
	padding: 0;
}

.uds-feedback-form--wrapper .show {
	display: block;
}
.uds-feedback-form--wrapper .hide {
	display: none;
}

.uds-feedback-form--wrapper {
	align-items: center;
	background-color: rgba( 0, 0, 0, 0.75 );
	bottom: 0;
	display: none;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	user-select: none;
	z-index: -9999;
}

.uds-feedback-form--wrapper.show_popup {
	display: flex !important;
	z-index: 99999;
}

.uds-feedback-form--wrapper .uds-feedback-form--container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 4px 4px 24px rgba( 0, 0, 0, 0.25 );
	max-width: 90%;
	width: 540px;
}

.uds-feedback-form--container .uds-form-header--wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 16px 20px 0;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon,
.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	width: 20px;
	height: 20px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title {
	color: #1f2937;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	color: #9ca3af;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover {
	color: #4b5563;
}

.uds-feedback-form--container .uds-form-body--content {
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.uds-feedback-form--container .uds-form-body--content .uds-form-description {
	color: #1f2937;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback {
	color: #6b7280;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	width: 100%;
	padding: 9px 13px;
	border-radius: 6px;
	border-width: 1px;
	border-style: solid;
	border-color: #e5e7eb;
	box-shadow: 0 1px 2px 0 #0000000d;
	background: #fff;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active {
	border-color: #d1d5db;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta {
	color: #4b5563;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a {
	text-decoration: none;
	color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #6b7280;
	opacity: 1;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background-color: #f6f7f7;
	border-top: 1px solid #e1e1e1;
	margin: 40px -20px 0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button {
	padding: 7px 13px;
	border-radius: 3px;
	border-width: 1px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	border-style: solid;
	display: flex;
	gap: 8px;
	align-items: center;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus {
	outline: none;
	box-shadow: none;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing {
	pointer-events: none;
	opacity: 0.8;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before {
	content: "\f463";
	animation: spin 2s linear infinite;
	font-family: dashicons, sans-serif;
	font-weight: 400;
	font-size: 18px;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] {
	display: flex;
	justify-content: center;
	height: 18px;
	width: 18px;
	cursor: pointer;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	line-height: 0;
	box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% );
	transition: 0.05s border-color ease-in-out;
	-webkit-appearance: none;
	padding: 0;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked {
	vertical-align: middle;
	background-color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before {
	background-color: #fff !important;
	border-radius: 50px;
	content: "\2022";
	font-size: 24px;
	height: 6px;
	line-height: 13px;
	margin: 5px;
	text-indent: -9999px;
	width: 6px;
}

@keyframes spin {
	0% {
		transform: rotate( 0deg );
	}
	100% {
		transform: rotate( 360deg );
	}
}
PK�][ԃ�}y'y'kultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.min.cssnu�[���.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}},.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}PK�][��`0��gultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/css/feedback.min.cssnu�[���.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;left:0;position:fixed;right:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:left;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:left;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-left-radius:8px;border-bottom-right-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:left;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:left}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}PK�][dw^**gultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/css/feedback-rtl.cssnu�[���/* Base CSS to normalize the default. */
.uds-feedback-form--wrapper h2,
.uds-feedback-form--wrapper p,
.uds-feedback-form--wrapper input[type="radio"] {
	margin: 0;
	padding: 0;
}

.uds-feedback-form--wrapper .show {
	display: block;
}
.uds-feedback-form--wrapper .hide {
	display: none;
}

.uds-feedback-form--wrapper {
	align-items: center;
	background-color: rgba( 0, 0, 0, 0.75 );
	bottom: 0;
	display: none;
	justify-content: center;
	right: 0;
	position: fixed;
	left: 0;
	top: 0;
	user-select: none;
	z-index: -9999;
}

.uds-feedback-form--wrapper.show_popup {
	display: flex !important;
	z-index: 99999;
}

.uds-feedback-form--wrapper .uds-feedback-form--container {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: -4px 4px 24px rgba( 0, 0, 0, 0.25 );
	max-width: 90%;
	width: 540px;
}

.uds-feedback-form--container .uds-form-header--wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding: 16px 20px 0;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon,
.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	width: 20px;
	height: 20px;
}

.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title {
	color: #1f2937;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close {
	color: #9ca3af;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover {
	color: #4b5563;
}

.uds-feedback-form--container .uds-form-body--content {
	padding: 20px 20px 0 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.uds-feedback-form--container .uds-form-body--content .uds-form-description {
	color: #1f2937;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback {
	color: #6b7280;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	width: 100%;
	padding: 9px 13px;
	border-radius: 6px;
	border-width: 1px;
	border-style: solid;
	border-color: #e5e7eb;
	box-shadow: 0 1px 2px 0 #0000000d;
	background: #fff;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,
.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active {
	border-color: #d1d5db;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta {
	color: #4b5563;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a {
	text-decoration: none;
	color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	color: #6b7280;
	opacity: 1;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	background-color: #f6f7f7;
	border-top: 1px solid #e1e1e1;
	margin: 40px -20px 0;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button {
	padding: 7px 13px;
	border-radius: 3px;
	border-width: 1px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
	border-style: solid;
	display: flex;
	gap: 8px;
	align-items: center;
}

.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus {
	outline: none;
	box-shadow: none;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing {
	pointer-events: none;
	opacity: 0.8;
}
.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before {
	content: "\f463";
	animation: spin 2s linear infinite;
	font-family: dashicons, sans-serif;
	font-weight: 400;
	font-size: 18px;
	cursor: pointer;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: right;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"] {
	display: flex;
	justify-content: center;
	height: 18px;
	width: 18px;
	cursor: pointer;
	margin: 0;
	border: 1px solid #d1d5db;
	border-radius: 50%;
	line-height: 0;
	box-shadow: inset 0 1px 2px rgb( 0 0 0 / 10% );
	transition: 0.05s border-color ease-in-out;
	-webkit-appearance: none;
	padding: 0;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked {
	vertical-align: middle;
	background-color: #006ba1;
}

.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type="radio"]:checked::before {
	background-color: #fff !important;
	border-radius: 50px;
	content: "\2022";
	font-size: 24px;
	height: 6px;
	line-height: 13px;
	margin: 5px;
	text-indent: -9999px;
	width: 6px;
}

@keyframes spin {
	0% {
		transform: rotate( 0deg );
	}
	100% {
		transform: rotate( -360deg );
	}
}
,.uds-feedback-form--wrapper h2,.uds-feedback-form--wrapper input[type=radio],.uds-feedback-form--wrapper p{margin:0;padding:0}.uds-feedback-form--wrapper .show{display:block}.uds-feedback-form--wrapper .hide{display:none}.uds-feedback-form--wrapper{align-items:center;background-color:rgba(0,0,0,.75);bottom:0;display:none;justify-content:center;right:0;position:fixed;left:0;top:0;user-select:none;z-index:-9999}.uds-feedback-form--wrapper.show_popup{display:flex!important;z-index:99999}.uds-feedback-form--wrapper .uds-feedback-form--container{background-color:#fff;border-radius:8px;box-shadow:-4px 4px 24px rgba(0,0,0,.25);max-width:90%;width:540px}.uds-feedback-form--container .uds-form-header--wrapper{align-items:center;display:flex;justify-content:space-between;padding:16px 20px 0}.uds-feedback-form--container .uds-form-title--icon-wrapper{display:flex;align-items:center;gap:12px}.uds-feedback-form--container .uds-form-header--wrapper .uds-close,.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-icon{width:20px;height:20px}.uds-feedback-form--container .uds-form-title--icon-wrapper .uds-title{color:#1f2937;font-size:16px;font-weight:600;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-header--wrapper .uds-close{color:#9ca3af;cursor:pointer}.uds-feedback-form--container .uds-form-header--wrapper .uds-close:hover{color:#4b5563}.uds-feedback-form--container .uds-form-body--content{padding:20px 20px 0 20px;display:flex;flex-direction:column;gap:20px}.uds-feedback-form--container .uds-form-body--content .uds-form-description{color:#1f2937;font-size:16px;font-weight:500;line-height:24px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .reason{display:flex;align-items:center;gap:12px;margin-bottom:12px}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback{color:#6b7280;font-size:14px;font-weight:400;line-height:20px;text-align:right;width:100%;padding:9px 13px;border-radius:6px;border-width:1px;border-style:solid;border-color:#e5e7eb;box-shadow:0 1px 2px 0 #0000000d;background:#fff}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:active,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:focus,.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback:hover{border-color:#d1d5db}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta{color:#4b5563;margin-top:10px;font-size:13px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-option-feedback-cta a{text-decoration:none;color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-options-feedback::placeholder{font-size:14px;font-weight:400;line-height:20px;text-align:right;color:#6b7280;opacity:1}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;background-color:#f6f7f7;border-top:1px solid #e1e1e1;margin:40px -20px 0;border-bottom-right-radius:8px;border-bottom-left-radius:8px}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button{padding:7px 13px;border-radius:3px;border-width:1px;font-size:14px;font-weight:400;line-height:20px;text-align:right;border-style:solid;display:flex;gap:8px;align-items:center}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button:focus{outline:0;box-shadow:none}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing{pointer-events:none;opacity:.8}.uds-feedback-form--container .uds-form-body--content .uds-feedback-form-sumbit--actions .button.processing::before{content:"\f463";animation:spin 2s linear infinite;font-family:dashicons,sans-serif;font-weight:400;font-size:18px;cursor:pointer}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form .uds-reason-label{font-size:14px;font-weight:400;line-height:20px;text-align:right}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]{display:flex;justify-content:center;height:18px;width:18px;cursor:pointer;margin:0;border:1px solid #d1d5db;border-radius:50%;line-height:0;box-shadow:inset 0 1px 2px rgb(0 0 0 / 10%);transition:50ms border-color ease-in-out;-webkit-appearance:none;padding:0}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked{vertical-align:middle;background-color:#006ba1}.uds-feedback-form--container .uds-form-body--content #uds-feedback-form input[type=radio]:checked::before{background-color:#fff!important;border-radius:50px;content:"\2022";font-size:24px;height:6px;line-height:13px;margin:5px;text-indent:-9999px;width:6px}@keyframes spin{0%{transform:rotate(0)}100%{transform:rotate(-360deg)}}PK�][¨��eultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/js/feedback.min.jsnu�[���(i=>{let t={slug:"",skipButton:"",formWrapper:"",radioButton:"",closeButton:"",buttonAction:"",feedbackForm:"",feedbackInput:"",deactivateUrl:"",buttonTrigger:"",deactivateButton:"",submitDeactivate:"",_cacheElements(){this.slug=udsVars?._plugin_slug||"",this.skipButton=i(".uds-feedback-skip"),this.submitDeactivate=i(".uds-feedback-submit"),this.deactivateButton=i("#the-list").find(".row-actions span.deactivate a"),this.feedbackForm=i(".uds-feedback-form"),this.feedbackInput=i(".uds-options-feedback"),this.formWrapper=i(".uds-feedback-form--wrapper"),this.closeButton=i(".uds-feedback-form--wrapper .uds-close"),this.radioButton=i(".uds-reason-input")},_showPopup(t){i("#deactivation-survey-"+t).addClass("show_popup")},_hidePopup(){this.formWrapper.removeClass("show_popup")},_redirectOrReload(){this.deactivateUrl?window.location.href=this.deactivateUrl:location.reload()},_hideShowFeedbackAndCTA(t){var e="true"===i(t.target).attr("data-accept_feedback"),a="true"===i(t.target).attr("data-show_cta");i(t.target).closest(this.formWrapper).find(".uds-options-feedback").removeClass("hide").addClass(e?"show":"hide"),i(t.target).closest(this.formWrapper).find(".uds-option-feedback-cta").removeClass("hide").addClass(a?"show":"hide")},_changePlaceholderText(t){var e=t.target.getAttribute("data-placeholder");i(t.target).closest(this.formWrapper).find(this.feedbackInput).attr("placeholder",e||""),this._hideShowFeedbackAndCTA(t)},_submitFeedback(t,s){t.preventDefault();var t=i(t.target),e=t.closest(this.feedbackForm),e={action:"uds_plugin_deactivate_feedback",security:udsVars?._ajax_nonce||"",reason:e.find(this.radioButton.filter(":checked")).val()||"",source:e.find('input[name="source"]').val()||"",referer:e.find('input[name="referer"]').val()||"",version:e.find('input[name="version"]').val()||"",feedback:e.find(this.feedbackInput).val()||""};t.find(".uds-feedback-"+this.buttonAction).text("Deactivating.").addClass("processing"),i.ajax({url:udsVars?.ajaxurl,type:"POST",data:e,success(t){t.success&&s._redirectOrReload(),s._hidePopup()},error(t,e,a){s._redirectOrReload()}})},_handleClick(t){t.target.classList.contains("show_popup")&&t.target.closest(".uds-feedback-form--wrapper")?this._hidePopup():t.target.classList.contains("activate")&&(this.deactivateUrl=t.target.href,-1===this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}-child`))&&-1===this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}&`)&&(t.preventDefault(),this._showPopup(udsVars?._current_theme))},_init(){this._cacheElements(),this._bind()},_bind(){let a=this;this.deactivateButton.on("click",function(t){var e=i(t.target).closest("tr").data("slug");a.slug.includes(e)&&(t.preventDefault(),a.deactivateUrl=i(t.target).attr("href"),a._showPopup(e))}),this.closeButton.on("click",function(t){t.preventDefault(),a._hidePopup()}),this.radioButton.on("click",function(t){a._changePlaceholderText(t)}),this.submitDeactivate.add(this.skipButton).on("click",function(t){t.preventDefault(),a.buttonAction=i(t.target).attr("data-action"),i(t.target).closest(a.feedbackForm).submit()}),this.feedbackForm.on("submit",function(t){a._submitFeedback(t,a)}),document.addEventListener("click",function(t){a._handleClick(t)})}};i(function(){t._init()})})(jQuery);PK�][�::aultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/assets/js/feedback.jsnu�[���( function ( $ ) {
	const UserDeactivationPopup = {
		slug: '',
		skipButton: '',
		formWrapper: '',
		radioButton: '',
		closeButton: '',
		buttonAction: '',
		feedbackForm: '',
		feedbackInput: '',
		deactivateUrl: '',
		buttonTrigger: '',
		deactivateButton: '',
		submitDeactivate: '',

		/**
		 * Caches elements for later use.
		 */
		_cacheElements() {
			this.slug = udsVars?._plugin_slug || '';
			this.skipButton = $( '.uds-feedback-skip' );
			this.submitDeactivate = $( '.uds-feedback-submit' );
			this.deactivateButton = $( '#the-list' ).find(
				`.row-actions span.deactivate a`
			);
			this.feedbackForm = $( '.uds-feedback-form' ); // Feedback Form.
			this.feedbackInput = $( '.uds-options-feedback' ); // Feedback Textarea.
			this.formWrapper = $( '.uds-feedback-form--wrapper' );
			this.closeButton = $( '.uds-feedback-form--wrapper .uds-close' );
			this.radioButton = $( '.uds-reason-input' );
		},

		/**
		 * Shows the feedback popup by adding the 'show' class to the form wrapper.
		 *
		 * @param {string} slug - The slug of the plugin.
		 */
		_showPopup( slug ) {
			$( `#deactivation-survey-${ slug }` ).addClass( 'show_popup' );
		},

		/**
		 * Hides the feedback popup by removing the 'show' class from the form wrapper.
		 */
		_hidePopup() {
			this.formWrapper.removeClass( 'show_popup' );
		},

		/**
		 * Redirects to the deactivate URL if it exists, otherwise reloads the current page.
		 */
		_redirectOrReload() {
			if ( this.deactivateUrl ) {
				window.location.href = this.deactivateUrl;
			} else {
				location.reload();
			}
		},

		/**
		 * Toggles the visibility of the feedback form and CTA based on the event target's attributes.
		 *
		 * @param {Event} event - The event that triggered this function.
		 */
		_hideShowFeedbackAndCTA( event ) {
			const acceptFeedback =
				$( event.target ).attr( 'data-accept_feedback' ) === 'true';
			const showCta =
				$( event.target ).attr( 'data-show_cta' ) === 'true';

			$( event.target )
				.closest( this.formWrapper )
				.find( '.uds-options-feedback' )
				.removeClass( 'hide' )
				.addClass( acceptFeedback ? 'show' : 'hide' );
			$( event.target )
				.closest( this.formWrapper )
				.find( '.uds-option-feedback-cta' )
				.removeClass( 'hide' )
				.addClass( showCta ? 'show' : 'hide' );
		},

		/**
		 * Changes the placeholder text of the feedback input based on the event target's attribute.
		 *
		 * @param {Event} event - The event that triggered this function.
		 */
		_changePlaceholderText( event ) {
			const radioButtonPlaceholder =
				event.target.getAttribute( 'data-placeholder' );

			$( event.target )
				.closest( this.formWrapper )
				.find( this.feedbackInput )
				.attr( 'placeholder', radioButtonPlaceholder || '' );

			this._hideShowFeedbackAndCTA( event );
		},

		/**
		 * Submits the feedback form and handles the response.
		 *
		 * @param {Event}  event - The event that triggered this function.
		 * @param {Object} self  - A reference to the current object.
		 */
		_submitFeedback( event, self ) {
			event.preventDefault();

			const currentForm = $( event.target );
			const closestForm = currentForm.closest( this.feedbackForm ); // Cache the closest form

			// Gather form data.
			const formData = {
				action: 'uds_plugin_deactivate_feedback',
				security: udsVars?._ajax_nonce || '',
				reason:
					closestForm
						.find( this.radioButton.filter( ':checked' ) )
						.val() || '', // Get the selected radio button value from the current form.
				source: closestForm.find( 'input[name="source"]' ).val() || '',
				referer:
					closestForm.find( 'input[name="referer"]' ).val() || '',
				version:
					closestForm.find( 'input[name="version"]' ).val() || '',
				feedback: closestForm.find( this.feedbackInput ).val() || '', // Get the feedback input value from the current form.
			};

			currentForm
				.find( '.uds-feedback-' + this.buttonAction )
				.text( 'Deactivating.' )
				.addClass( 'processing' );

			// Prepare AJAX call.
			$.ajax( {
				url: udsVars?.ajaxurl, // URL to send the request to.
				type: 'POST', // HTTP method.
				data: formData, // Data to be sent.
				success( response ) {
					if ( response.success ) {
						self._redirectOrReload();
					}
					self._hidePopup();
				},
				/* eslint-disable */
				error( xhr, status, error ) {
					/* eslint-disable */
					self._redirectOrReload();
				},
			} );
		},

		_handleClick( e ) {
			// Close feedback form or show/hide popup if clicked outside and add a click on a Activate button of Theme.
			if (
				e.target.classList.contains( 'show_popup' ) &&
				e.target.closest( '.uds-feedback-form--wrapper' )
			) {
				this._hidePopup();
			} else if ( e.target.classList.contains( 'activate' ) ) {
				this.deactivateUrl = e.target.href;

				// Don't show for Child Themes if parent theme is active & Parent Theme if child theme is active.
				if (
					-1 !==
					this.deactivateUrl.indexOf(
						`stylesheet=${ udsVars?._current_theme }-child`
					) ||
					-1 !==
					this.deactivateUrl.indexOf(`stylesheet=${udsVars?._current_theme}&`)
				) {
					return;
				}

				e.preventDefault();
				this._showPopup( udsVars?._current_theme );
			}
		},

		/**
		 * Initializes the feedback popup by caching elements and binding events.
		 */
		_init() {
			this._cacheElements();
			this._bind();
		},

		/**
		 * Binds event listeners to various elements to handle user interactions.
		 */
		_bind() {
			const self = this; // Store reference to the current object.

			// Open the popup when clicked on the deactivate button.
			this.deactivateButton.on( 'click', function ( event ) {
				let closestTr = $( event.target ).closest( 'tr' );
				let slug = closestTr.data( 'slug' );

				if ( self.slug.includes( slug ) ) {
					event.preventDefault();
					// Set the deactivation URL.
					self.deactivateUrl = $( event.target ).attr( 'href' );
					self._showPopup( slug );
				}
			} );

			// Close the popup on a click of Close button.
			this.closeButton.on( 'click', function ( event ) {
				event.preventDefault();
				self._hidePopup(); // Use self to refer to the UserDeactivationPopup instance.
			} );

			// Click event on radio button to change the placeholder of textarea.
			this.radioButton.on( 'click', function ( event ) {
				self._changePlaceholderText( event );
			} );

			// Combined submit and skip button actions.
			this.submitDeactivate
				.add( this.skipButton )
				.on( 'click', function ( event ) {
					event.preventDefault(); // Prevent default button action.
					self.buttonAction = $( event.target ).attr( 'data-action' );
					$( event.target ).closest( self.feedbackForm ).submit();
				} );

			this.feedbackForm.on( 'submit', function ( event ) {
				self._submitFeedback( event, self );
			} );

			document.addEventListener( 'click', function ( e ) {
				self._handleClick( e );
			} );
		},
	};

	$( function () {
		UserDeactivationPopup._init();
	} );
} )( jQuery );
PK�][a[��-�-zultimate-addons-for-gutenberg/lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.phpnu�[���<?php
/**
 * Deactivation Survey Feedback.
 *
 * @package bsf-analytics
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'Deactivation_Survey_Feedback' ) ) {

	/**
	 * Class Deactivation_Survey_Feedback.
	 */
	class Deactivation_Survey_Feedback {

		/**
		 * Feedback URL.
		 *
		 * @var string
		 */
		private static $feedback_api_endpoint = 'api/plugin-deactivate';

		/**
		 * Instance
		 *
		 * @access private
		 * @var object Class object.
		 * @since 1.1.6
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @since 1.1.6
		 * @return object initialized object of class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'admin_enqueue_scripts', array( $this, 'load_form_styles' ) );
			add_action( 'wp_ajax_uds_plugin_deactivate_feedback', array( $this, 'send_plugin_deactivate_feedback' ) );
		}

		/**
		 * Render feedback HTML on plugins.php admin page only.
		 *
		 * This function renders the feedback form HTML on the plugins.php admin page.
		 * It takes an optional string parameter $id for the form wrapper ID and an optional array parameter $args for customizing the form.
		 *
		 * @since 1.1.6
		 * @param array $args Optional. Custom arguments for the form. Defaults to an empty array.
		 * @return void
		 */
		public static function show_feedback_form( array $args = array() ) {

			// Return if not in admin.
			if ( ! is_admin() ) {
				return;
			}

			// Set default arguments for the feedback form.
			$defaults = array(
				'source'            => 'User Deactivation Survey',
				'popup_logo'        => '',
				'plugin_slug'       => 'user-deactivation-survey',
				'plugin_version'    => '',
				'popup_title'       => __( 'Quick Feedback', 'ultimate-addons-for-gutenberg' ),
				'support_url'       => 'https://brainstormforce.com/contact/',
				'popup_reasons'     => self::get_default_reasons(),
				'popup_description' => __( 'If you have a moment, please share why you are deactivating the plugin.', 'ultimate-addons-for-gutenberg' ),
				'show_on_screens'   => array( 'plugins' ),
			);

			// Parse the arguments with defaults.
			$args = wp_parse_args( $args, $defaults );
			$id   = '';

			// Set a default ID if none is provided.
			if ( empty( $args['id'] ) ) {
				$id = 'uds-feedback-form--wrapper';
			}

			$id = sanitize_text_field( $args['id'] );

			// Return if not on the allowed screen.
			if ( ! BSF_Analytics_Helper::is_allowed_screen() ) {
				return;
			}

			// Product slug used for input fields and labels in each plugin's deactivation survey.
			$product_slug = isset( $args['plugin_slug'] ) ? sanitize_text_field( $args['plugin_slug'] ) : 'bsf';

			?>
			<div id="<?php echo esc_attr( $id ); ?>" class="uds-feedback-form--wrapper" style="display: none">
				<div class="uds-feedback-form--container">
					<div class="uds-form-header--wrapper">
						<div class="uds-form-title--icon-wrapper">
							<?php if ( ! empty( $args['popup_logo'] ) ) { ?>
								<img class="uds-icon" src="<?php echo esc_url( $args['popup_logo'] ); ?>" title="<?php echo esc_attr( $args['plugin_slug'] ); ?> <?php echo esc_attr( __( 'Icon', 'ultimate-addons-for-gutenberg' ) ); ?>" />
							<?php } ?>
							<h2 class="uds-title"><?php echo esc_html( $args['popup_title'] ); ?></h2>
						</div>
						<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="uds-close">
							<path stroke-linecap="round" stroke-linejoin="round" d="M6 18 18 6M6 6l12 12" />
						</svg>
					</div>
					<div class="uds-form-body--content">

						<?php if ( ! empty( $args['popup_description'] ) ) { ?>
							<p class="uds-form-description"><?php echo esc_html( $args['popup_description'] ); ?></p>
						<?php } ?>

						<form class="uds-feedback-form" id="uds-feedback-form" method="post">
						<?php foreach ( $args['popup_reasons'] as $key => $value ) {
								$input_id = $product_slug . '_uds_reason_input_' . $key;
								?>
								<fieldset>
									<div class="reason">
										<input type="radio" class="uds-reason-input" name="uds_reason_input" id="<?php echo esc_attr( $input_id ); ?>" value="<?php echo esc_attr( $key ); ?>" data-placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>" data-show_cta="<?php echo esc_attr( $value['show_cta'] ); ?>" data-accept_feedback="<?php echo esc_attr( $value['accept_feedback'] ); ?>">
										<label class="uds-reason-label" for="<?php echo esc_attr( $input_id ); ?>"><?php echo esc_html( $value['label'] ); ?></label>
									</div>
								</fieldset>
							<?php } ?>

							<fieldset>
								<textarea class="uds-options-feedback hide" id="uds-options-feedback" rows="3" name="uds_options_feedback" placeholder="<?php echo esc_attr( __( 'Please tell us more details.', 'ultimate-addons-for-gutenberg' ) ); ?>"></textarea>
								<?php
								if ( ! empty( $args['support_url'] ) ) {
									?>
										<p class="uds-option-feedback-cta hide">
											<?php
											echo wp_kses_post(
												sprintf(
												/* translators: %1$s: link html start, %2$s: link html end*/
													__( 'Need help from our experts? %1$sClick here to contact us.%2$s', 'ultimate-addons-for-gutenberg' ),
													'<a href="' . esc_url( $args['support_url'] ) . '" target="_blank">',
													'</a>'
												)
											);
											?>
										</p>
								<?php } ?>
							</fieldset>

							<div class="uds-feedback-form-sumbit--actions">
								<button class="button button-primary uds-feedback-submit" data-action="submit"><?php esc_html_e( 'Submit & Deactivate', 'ultimate-addons-for-gutenberg' ); ?></button>
								<button class="button button-secondary uds-feedback-skip" data-action="skip"><?php esc_html_e( 'Skip & Deactivate', 'ultimate-addons-for-gutenberg' ); ?></button>
								<input type="hidden" name="referer" value="<?php echo esc_url( get_site_url() ); ?>">
								<input type="hidden" name="version" value="<?php echo esc_attr( $args['plugin_version'] ); ?>">
								<input type="hidden" name="source" value="<?php echo esc_attr( $args['plugin_slug'] ); ?>">
							</div>
						</form>
					</div>

				</div>
			</div>
			<?php
		}

		/**
		 * Load form styles.
		 *
		 * This function loads the necessary styles for the feedback form.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public static function load_form_styles() {

			if ( ! BSF_Analytics_Helper::is_allowed_screen() ) {
				return;
			}

			$dir_path = BSF_ANALYTICS_URI . '/modules/deactivation-survey/';
			$file_ext = ! SCRIPT_DEBUG ? '.min' : '';

			wp_enqueue_script(
				'uds-feedback-script',
				$dir_path . 'assets/js/feedback' . $file_ext . '.js',
				array( 'jquery' ),
				BSF_ANALYTICS_VERSION,
				true
			);

			$data = apply_filters(
				'uds_survey_vars',
				array(
					'ajaxurl'        => esc_url( admin_url( 'admin-ajax.php' ) ),
					'_ajax_nonce'    => wp_create_nonce( 'uds_plugin_deactivate_feedback' ),
					'_current_theme' => function_exists( 'wp_get_theme' ) ? wp_get_theme()->get_template() : '',
					'_plugin_slug'   => array(),
				)
			);

			// Add localize JS.
			wp_localize_script(
				'uds-feedback-script',
				'udsVars',
				$data
			);

			wp_enqueue_style( 'uds-feedback-style', $dir_path . 'assets/css/feedback' . $file_ext . '.css', array(), BSF_ANALYTICS_VERSION );
			wp_style_add_data( 'uds-feedback-style', 'rtl', 'replace' );
		}

		/**
		 * Sends plugin deactivation feedback to the server.
		 *
		 * This function checks the user's permission and verifies the nonce for the request.
		 * If the checks pass, it sends the feedback data to the server for processing.
		 *
		 * @return void
		 */
		public function send_plugin_deactivate_feedback() {

			$response_data = array( 'message' => __( 'Sorry, you are not allowed to do this operation.', 'ultimate-addons-for-gutenberg' ) );

			/**
			 * Check permission
			 */
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( $response_data );
			}

			/**
			 * Nonce verification
			 */
			if ( ! check_ajax_referer( 'uds_plugin_deactivate_feedback', 'security', false ) ) {
				$response_data = array( 'message' => __( 'Nonce validation failed', 'ultimate-addons-for-gutenberg' ) );
				wp_send_json_error( $response_data );
			}

			$feedback_data = array(
				'reason'      => isset( $_POST['reason'] ) ? sanitize_text_field( wp_unslash( $_POST['reason'] ) ) : '',
				'feedback'    => isset( $_POST['feedback'] ) ? sanitize_text_field( wp_unslash( $_POST['feedback'] ) ) : '',
				'domain_name' => isset( $_POST['referer'] ) ? sanitize_text_field( wp_unslash( $_POST['referer'] ) ) : '',
				'version'     => isset( $_POST['version'] ) ? sanitize_text_field( wp_unslash( $_POST['version'] ) ) : '',
				'plugin'      => isset( $_POST['source'] ) ? sanitize_text_field( wp_unslash( $_POST['source'] ) ) : '',
			);

			$api_args = array(
				'body'    => wp_json_encode( $feedback_data ),
				'headers' => BSF_Analytics_Helper::get_api_headers(),
				'timeout' => 90, //phpcs:ignore WordPressVIPMinimum.Performance.RemoteRequestTimeout.timeout_timeout
			);

			$target_url = BSF_Analytics_Helper::get_api_url() . self::$feedback_api_endpoint;

			$response = wp_safe_remote_post( $target_url, $api_args );

			$has_errors = BSF_Analytics_Helper::is_api_error( $response );

			if ( $has_errors['error'] ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => $has_errors['error_message'],
					)
				);
			}

			wp_send_json_success();
		}

		/**
		 * Get the array of default reasons.
		 *
		 * @return array Default reasons.
		 */
		public static function get_default_reasons() {

			return apply_filters(
				'uds_default_deactivation_reasons',
				array(
					'temporary_deactivation' => array(
						'label'           => esc_html__( 'This is a temporary deactivation for testing.', 'ultimate-addons-for-gutenberg' ),
						'placeholder'     => esc_html__( 'How can we assist you?', 'ultimate-addons-for-gutenberg' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'false',
					),
					'plugin_not_working'     => array(
						'label'           => esc_html__( 'The plugin isn\'t working properly.', 'ultimate-addons-for-gutenberg' ),
						'placeholder'     => esc_html__( 'Please tell us more about what went wrong?', 'ultimate-addons-for-gutenberg' ),
						'show_cta'        => 'true',
						'accept_feedback' => 'true',
					),
					'found_better_plugin'    => array(
						'label'           => esc_html__( 'I found a better alternative plugin.', 'ultimate-addons-for-gutenberg' ),
						'placeholder'     => esc_html__( 'Could you please specify which plugin?', 'ultimate-addons-for-gutenberg' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
					'missing_a_feature'      => array(
						'label'           => esc_html__( 'It\'s missing a specific feature.', 'ultimate-addons-for-gutenberg' ),
						'placeholder'     => esc_html__( 'Please tell us more about the feature.', 'ultimate-addons-for-gutenberg' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
					'other'                  => array(
						'label'           => esc_html__( 'Other', 'ultimate-addons-for-gutenberg' ),
						'placeholder'     => esc_html__( 'Please tell us more details.', 'ultimate-addons-for-gutenberg' ),
						'show_cta'        => 'false',
						'accept_feedback' => 'true',
					),
				)
			);
		}
	}

	Deactivation_Survey_Feedback::get_instance();
}
PK�][
8	E	EGultimate-addons-for-gutenberg/lib/bsf-analytics/class-bsf-analytics.phpnu�[���<?php
/**
 * BSF analytics class file.
 *
 * @version 1.0.0
 *
 * @package bsf-analytics
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'BSF_Analytics' ) ) {

	/**
	 * BSF analytics
	 */
	class BSF_Analytics {

		/**
		 * Member Variable
		 *
		 * @var array Entities data.
		 */
		private $entities;

		/**
		 * Member Variable
		 *
		 * @var string Usage tracking document URL
		 */
		public $usage_doc_link = 'https://store.brainstormforce.com/usage-tracking/?utm_source=wp_dashboard&utm_medium=general_settings&utm_campaign=usage_tracking';

		/**
		 * Setup actions, load files.
		 *
		 * @param array  $args entity data for analytics.
		 * @param string $analytics_path directory path to analytics library.
		 * @param float  $analytics_version analytics library version.
		 * @since 1.0.0
		 */
		public function __construct( $args, $analytics_path, $analytics_version ) {

			// Bail when no analytics entities are registered.
			if ( empty( $args ) ) {
				return;
			}

			$this->entities = $args;

			define( 'BSF_ANALYTICS_VERSION', $analytics_version );
			define( 'BSF_ANALYTICS_URI', $this->get_analytics_url( $analytics_path ) );

			add_action( 'admin_init', array( $this, 'handle_optin_optout' ) );
			add_action( 'admin_init', array( $this, 'option_notice' ) );
			add_action( 'init', array( $this, 'maybe_track_analytics' ), 99 );

			$this->set_actions();

			add_action( 'admin_init', array( $this, 'register_usage_tracking_setting' ) );

			$this->includes();

			$this->load_deactivation_survey_actions();
		}

		/**
		 * Function to load the deactivation survey form actions.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public function load_deactivation_survey_actions() {

			// If not in a admin area then return it.
			if ( ! is_admin() ) {
				return;
			}

			add_filter( 'uds_survey_vars', array( $this, 'add_slugs_to_uds_vars' ) );
			add_action( 'admin_footer', array( $this, 'load_deactivation_survey_form' ) );
		}

		/**
		 * Setup actions for admin notice style and analytics cron event.
		 *
		 * @since 1.0.4
		 */
		public function set_actions() {

			foreach ( $this->entities as $key => $data ) {
				add_action( 'astra_notice_before_markup_' . $key . '-optin-notice', array( $this, 'enqueue_assets' ) );
				add_action( 'update_option_' . $key . '_analytics_optin', array( $this, 'update_analytics_option_callback' ), 10, 3 );
				add_action( 'add_option_' . $key . '_analytics_optin', array( $this, 'add_analytics_option_callback' ), 10, 2 );
			}
		}

		/**
		 * BSF Analytics URL
		 *
		 * @param string $analytics_path directory path to analytics library.
		 * @return String URL of bsf-analytics directory.
		 * @since 1.0.0
		 */
		public function get_analytics_url( $analytics_path ) {

			$content_dir_path = wp_normalize_path( WP_CONTENT_DIR );

			$analytics_path = wp_normalize_path( $analytics_path );

			return str_replace( $content_dir_path, content_url(), $analytics_path );
		}

		/**
		 * Enqueue Scripts.
		 *
		 * @since 1.0.0
		 * @return void
		 */
		public function enqueue_assets() {

			/**
			 * Load unminified if SCRIPT_DEBUG is true.
			 *
			 * Directory and Extensions.
			 */
			$dir_name = ( SCRIPT_DEBUG ) ? 'unminified' : 'minified';
			$file_rtl = ( is_rtl() ) ? '-rtl' : '';
			$css_ext  = ( SCRIPT_DEBUG ) ? '.css' : '.min.css';

			$css_uri = BSF_ANALYTICS_URI . '/assets/css/' . $dir_name . '/style' . $file_rtl . $css_ext;

			wp_enqueue_style( 'bsf-analytics-admin-style', $css_uri, false, BSF_ANALYTICS_VERSION, 'all' );
		}

		/**
		 * Send analytics API call.
		 *
		 * @since 1.0.0
		 */
		public function send() {

			$api_url = BSF_Analytics_Helper::get_api_url();

			wp_remote_post(
				$api_url . 'api/analytics/',
				array(
					'body'     => BSF_Analytics_Stats::instance()->get_stats(),
					'timeout'  => 5,
					'blocking' => false,
				)
			);
		}

		/**
		 * Check if usage tracking is enabled.
		 *
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_tracking_enabled() {

			foreach ( $this->entities as $key => $data ) {

				$is_enabled = get_site_option( $key . '_analytics_optin' ) === 'yes' ? true : false;
				$is_enabled = $this->is_white_label_enabled( $key ) ? false : $is_enabled;

				if ( apply_filters( $key . '_tracking_enabled', $is_enabled ) ) {
					return true;
				}
			}

			return false;
		}

		/**
		 * Check if WHITE label is enabled for BSF products.
		 *
		 * @param string $source source of analytics.
		 * @return bool
		 * @since 1.0.0
		 */
		public function is_white_label_enabled( $source ) {

			$options    = apply_filters( $source . '_white_label_options', array() );
			$is_enabled = false;

			if ( is_array( $options ) ) {
				foreach ( $options as $option ) {
					if ( true === $option ) {
						$is_enabled = true;
						break;
					}
				}
			}

			return $is_enabled;
		}

		/**
		 * Display admin notice for usage tracking.
		 *
		 * @since 1.0.0
		 */
		public function option_notice() {

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			if( $this->is_tracking_enabled() ) {
				return; // Don't need to display notice if any of our plugin already have the permission.
			}

			// If the user has opted out of tracking, don't show the notice till 7 days. 
			if ( get_site_option( 'bsf_analytics_last_displayed_time' ) > time() -  ( 7 * DAY_IN_SECONDS ) ) {
				return; // Don't display the notice if it was displayed recently.
			}

			foreach ( $this->entities as $key => $data ) {

				$time_to_display = isset( $data['time_to_display'] ) ? $data['time_to_display'] : '+24 hours';
				$usage_doc_link  = isset( $data['usage_doc_link'] ) ? $data['usage_doc_link'] : $this->usage_doc_link;

				// Don't display the notice if tracking is disabled or White Label is enabled for any of our plugins.
				if ( false !== get_site_option( $key . '_analytics_optin', false ) || $this->is_white_label_enabled( $key ) ) {
					continue;
				}

				// Show tracker consent notice after 24 hours from installed time.
				if ( strtotime( $time_to_display, $this->get_analytics_install_time( $key ) ) > time() ) {
					continue;
				}

				/* translators: %s product name */
				$notice_string = sprintf(
					__(
						'Help us improve %1$s and our other products!<br><br>With your permission, we\'d like to collect <strong>non-sensitive information</strong> from your website — like your PHP version and which features you use — so we can fix bugs faster, make smarter decisions, and build features that actually matter to you. <em>No personal info. Ever.</em>', 'ultimate-addons-for-gutenberg' ),
					'<strong>' . esc_html( $data['product_name'] ) . '</strong>'
				);
				
				if ( is_multisite() ) {
					$notice_string .= __( 'This will be applicable for all sites from the network.', 'ultimate-addons-for-gutenberg' );
				}

				$language_dir = is_rtl() ? 'rtl' : 'ltr';

				Astra_Notices::add_notice(
					array(
						'id'                         => $key . '-optin-notice',
						'type'                       => '',
						'message'                    => sprintf(
							'<div class="notice-content">
									<div class="notice-heading">
										%1$s
									</div>
									<div class="astra-notices-container">
										<a href="%2$s" class="astra-notices button-primary">
										%3$s
										</a>
										<a href="%4$s" data-repeat-notice-after="%5$s" class="astra-notices button-secondary">
										%6$s
										</a>
									</div>
								</div>',
							/* translators: %s usage doc link */
							sprintf( $notice_string . '<span dir="%1s"><a href="%2s" target="_blank" rel="noreferrer noopener">%3s</a><span><br><br>', $language_dir, esc_url( $usage_doc_link ), __( ' Know More.', 'ultimate-addons-for-gutenberg' ) ),
							esc_url(
								add_query_arg(
									array(
										$key . '_analytics_optin' => 'yes',
										$key . '_analytics_nonce' => wp_create_nonce( $key . '_analytics_optin' ),
										'bsf_analytics_source' => $key,
									)
								)
							),
							__( 'Yes! Allow it', 'ultimate-addons-for-gutenberg' ),
							esc_url(
								add_query_arg(
									array(
										$key . '_analytics_optin' => 'no',
										$key . '_analytics_nonce' => wp_create_nonce( $key . '_analytics_optin' ),
										'bsf_analytics_source' => $key,
									)
								)
							),
							MONTH_IN_SECONDS,
							__( 'No Thanks', 'ultimate-addons-for-gutenberg' )
						),
						'show_if'                    => true,
						'repeat-notice-after'        => false,
						'priority'                   => 18,
						'display-with-other-notices' => true,
					)
				);

				return;
			}
		}

		/**
		 * Process usage tracking opt out.
		 *
		 * @since 1.0.0
		 */
		public function handle_optin_optout() {

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			$source = isset( $_GET['bsf_analytics_source'] ) ? sanitize_text_field( wp_unslash( $_GET['bsf_analytics_source'] ) ) : '';

			if ( ! isset( $_GET[ $source . '_analytics_nonce' ] ) ) {
				return;
			}

			if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_GET[ $source . '_analytics_nonce' ] ) ), $source . '_analytics_optin' ) ) {
				return;
			}

			$optin_status = isset( $_GET[ $source . '_analytics_optin' ] ) ? sanitize_text_field( wp_unslash( $_GET[ $source . '_analytics_optin' ] ) ) : '';

			if ( 'yes' === $optin_status ) {
				$this->optin( $source );
			} elseif ( 'no' === $optin_status ) {
				$this->optout( $source );
			}

			wp_safe_redirect(
				esc_url_raw(
					remove_query_arg(
						array(
							$source . '_analytics_optin',
							$source . '_analytics_nonce',
							'bsf_analytics_source',
						)
					)
				)
			);
		}

		/**
		 * Opt in to usage tracking.
		 *
		 * @param string $source source of analytics.
		 * @since 1.0.0
		 */
		private function optin( $source ) {
			update_site_option( $source . '_analytics_optin', 'yes' );
		}

		/**
		 * Opt out to usage tracking.
		 *
		 * @param string $source source of analytics.
		 * @since 1.0.0
		 */
		private function optout( $source ) {
			update_site_option( $source . '_analytics_optin', 'no' );
			update_site_option( 'bsf_analytics_last_displayed_time', time() );
		}

		/**
		 * Load analytics stat class.
		 *
		 * @since 1.0.0
		 */
		private function includes() {
			require_once __DIR__ . '/classes/class-bsf-analytics-helper.php';
			require_once __DIR__ . '/class-bsf-analytics-stats.php';

			// Loads all the modules.
			require_once __DIR__ . '/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php';
			require_once __DIR__ . '/modules/utm-analytics.php';
		}

		/**
		 * Register usage tracking option in General settings page.
		 *
		 * @since 1.0.0
		 */
		public function register_usage_tracking_setting() {

			foreach ( $this->entities as $key => $data ) {

				if ( ! apply_filters( $key . '_tracking_enabled', true ) || $this->is_white_label_enabled( $key ) ) {
					return;
				}

				/**
				 * Introducing a new key 'hide_optin_checkbox, which allows individual plugin  to hide optin checkbox
				 * If they are providing providing in-plugin option to manage this option.
				 * from General > Settings page.
				 * 
				 * @since 1.1.14
				 */
				if( ! empty( $data['hide_optin_checkbox'] ) && true === $data['hide_optin_checkbox'] ) {
					continue;
				}

				$usage_doc_link = isset( $data['usage_doc_link'] ) ? $data['usage_doc_link'] : $this->usage_doc_link;
				$author         = isset( $data['author'] ) ? $data['author'] : 'Brainstorm Force';

				register_setting(
					'general',             // Options group.
					$key . '_analytics_optin',      // Option name/database.
					array( 'sanitize_callback' => array( $this, 'sanitize_option' ) ) // sanitize callback function.
				);

				add_settings_field(
					$key . '-analytics-optin',       // Field ID.
					__( 'Usage Tracking', 'ultimate-addons-for-gutenberg' ),       // Field title.
					array( $this, 'render_settings_field_html' ), // Field callback function.
					'general',
					'default',                   // Settings page slug.
					array(
						'type'           => 'checkbox',
						'title'          => $author,
						'name'           => $key . '_analytics_optin',
						'label_for'      => $key . '-analytics-optin',
						'id'             => $key . '-analytics-optin',
						'usage_doc_link' => $usage_doc_link,
					)
				);
			}
		}

		/**
		 * Sanitize Callback Function
		 *
		 * @param bool $input Option value.
		 * @since 1.0.0
		 */
		public function sanitize_option( $input ) {

			if ( ! $input || 'no' === $input ) {
				return 'no';
			}

			return 'yes';
		}

		/**
		 * Print settings field HTML.
		 *
		 * @param array $args arguments to field.
		 * @since 1.0.0
		 */
		public function render_settings_field_html( $args ) {
			?>
			<fieldset>
			<label for="<?php echo esc_attr( $args['label_for'] ); ?>">
				<input id="<?php echo esc_attr( $args['id'] ); ?>" type="checkbox" value="1" name="<?php echo esc_attr( $args['name'] ); ?>" <?php checked( get_site_option( $args['name'], 'no' ), 'yes' ); ?>>
				<?php
				/* translators: %s Product title */
				echo esc_html( sprintf( __( 'Allow %s products to track non-sensitive usage tracking data.', 'ultimate-addons-for-gutenberg' ), $args['title'] ) );// phpcs:ignore WordPress.WP.I18n.NonSingularStringLiteralText

				if ( is_multisite() ) {
					esc_html_e( ' This will be applicable for all sites from the network.', 'ultimate-addons-for-gutenberg' );
				}
				?>
			</label>
			<?php
			echo wp_kses_post( sprintf( '<a href="%1s" target="_blank" rel="noreferrer noopener">%2s</a>', esc_url( $args['usage_doc_link'] ), __( 'Learn More.', 'ultimate-addons-for-gutenberg' ) ) );
			?>
			</fieldset>
			<?php
		}

		/**
		 * Set analytics installed time in option.
		 *
		 * @param string $source source of analytics.
		 * @return string $time analytics installed time.
		 * @since 1.0.0
		 */
		private function get_analytics_install_time( $source ) {

			$time = get_site_option( $source . '_analytics_installed_time' );

			if ( ! $time ) {
				$time = time();
				update_site_option( $source . '_analytics_installed_time', time() );
			}

			return $time;
		}

		/**
		 * Schedule/unschedule cron event on updation of option.
		 *
		 * @param string $old_value old value of option.
		 * @param string $value value of option.
		 * @param string $option Option name.
		 * @since 1.0.0
		 */
		public function update_analytics_option_callback( $old_value, $value, $option ) {
			if ( is_multisite() ) {
				$this->add_option_to_network( $option, $value );
			}
		}

		/**
		 * Analytics option add callback.
		 *
		 * @param string $option Option name.
		 * @param string $value value of option.
		 * @since 1.0.0
		 */
		public function add_analytics_option_callback( $option, $value ) {
			if ( is_multisite() ) {
				$this->add_option_to_network( $option, $value );
			}
		}

		/**
		 * Send analytics track event if tracking is enabled.
		 *
		 * @since 1.0.0
		 */
		public function maybe_track_analytics() {

			if ( ! $this->is_tracking_enabled() ) {
				return;
			}

			$analytics_track = get_site_transient( 'bsf_analytics_track' );

			// If the last data sent is 2 days old i.e. transient is expired.
			if ( ! $analytics_track ) {
				$this->send();
				set_site_transient( 'bsf_analytics_track', true, 2 * DAY_IN_SECONDS );
			}
		}

		/**
		 * Save analytics option to network.
		 *
		 * @param string $option name of option.
		 * @param string $value value of option.
		 * @since 1.0.0
		 */
		public function add_option_to_network( $option, $value ) {

			// If action coming from general settings page.
			if ( isset( $_POST['option_page'] ) && 'general' === $_POST['option_page'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Missing

				if ( get_site_option( $option ) ) {
					update_site_option( $option, $value );
				} else {
					add_site_option( $option, $value );
				}
			}
		}

		/**
		 * Function to load the deactivation survey form on the admin footer.
		 *
		 * This function checks if the Deactivation_Survey_Feedback class exists and if so, it loads the deactivation survey form.
		 * The form is configured with specific settings for plugin. Example: For CartFlows, including the source, logo, plugin slug, title, support URL, description, and the screen on which to show the form.
		 *
		 * @since 1.1.6
		 * @return void
		 */
		public function load_deactivation_survey_form() {

			if ( class_exists( 'Deactivation_Survey_Feedback' ) ) {
				foreach ( $this->entities as $key => $data ) {
					// If the deactivation_survey info in available then only add the form.
					if ( ! empty( $data['deactivation_survey'] ) && is_array( $data['deactivation_survey'] ) ) {
						foreach ( $data['deactivation_survey'] as $key => $survey_args ) {
							Deactivation_Survey_Feedback::show_feedback_form(
								$survey_args
							);
						}
					}
				}
			}
		}

		/**
		 * Function to add plugin slugs to Deactivation Survey vars for JS operations.
		 *
		 * @param array $vars UDS vars array.
		 * @return array Modified UDS vars array with plugin slugs.
		 * @since 1.1.6
		 */
		public function add_slugs_to_uds_vars( $vars ) {
			foreach ( $this->entities as $key => $data ) {
				if ( ! empty( $data['deactivation_survey'] ) && is_array( $data['deactivation_survey'] ) ) {
					foreach ( $data['deactivation_survey'] as $key => $survey_args ) {
						$vars['_plugin_slug'] = isset( $vars['_plugin_slug'] ) ? array_merge( $vars['_plugin_slug'], array( $survey_args['plugin_slug'] ) ) : array( $survey_args['plugin_slug'] );
					}
				}
			}

			return $vars;
		}
	}
}
PK�][�{"	((<ultimate-addons-for-gutenberg/lib/bsf-analytics/version.jsonnu�[���{
    "bsf-analytics-ver": "1.1.14"
}
  PK�][�9��99;ultimate-addons-for-gutenberg/lib/class-uagb-nps-survey.phpnu�[���<?php

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Nps_Survey' ) ) :

	/**
	 * Admin
	 */
	class UAGB_Nps_Survey {
		/**
		 * Instance
		 *
		 * @since 2.18.0
		 * @var (Object) UAGB_Nps_Survey
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.18.0
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.18.0
		 */
		private function __construct() {
			$this->version_check();
			add_action( 'init', array( $this, 'load' ), 999 );
		}

		/**
		 * Version Check
		 *
		 * @return void
		 */
		public function version_check() {

			$file = realpath( dirname( __DIR__ ) . '/lib/nps-survey/version.json' );

			// Is file exist?
			if ( is_file( $file ) ) {
				
                $file_data = json_decode( file_get_contents( $file ), true );
				
				global $nps_survey_version, $nps_survey_init;
				
                $path = realpath( dirname( __DIR__ ) . '/lib/nps-survey/nps-survey.php' );
				
                $version = isset( $file_data['nps-survey'] ) ? $file_data['nps-survey'] : 0;

				if ( null === $nps_survey_version ) {
					$nps_survey_version = '1.0.0';
				}

				// Compare versions.
				if ( version_compare( $version, $nps_survey_version, '>=' ) ) {
					$nps_survey_version = $version;
					$nps_survey_init = $path;
				}
			}
		}

		/**
		 * Load latest plugin
		 *
		 * @return void
		 */
		public function load() {
			global $nps_survey_version, $nps_survey_init;
			if ( is_file( realpath( $nps_survey_init ) ) ) {
				include_once realpath( $nps_survey_init );
			}
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Nps_Survey::get_instance();

endif;PK�][�=�Z�S�SFultimate-addons-for-gutenberg/lib/uagb-webfont/uagb-webfont-loader.phpnu�[���<?php
/**
 * Download webfonts locally.
 *
 * @package wptt/font-loader
 * @license https://opensource.org/licenses/MIT
 */

if ( ! class_exists( 'UAGB_WebFont_Loader' ) ) {
	/**
	 * Download webfonts locally.
	 */
	class UAGB_WebFont_Loader {

		/**
		 * The font-format.
		 *
		 * Use "woff" or "woff2".
		 * This will change the user-agent user to make the request.
		 *
		 * @access protected
		 * @since 1.0.0
		 * @var string
		 */
		protected $font_format = 'woff2';

		/**
		 * The remote URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $remote_url;

		/**
		 * Base path.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $base_path;

		/**
		 * Base URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $base_url;

		/**
		 * Subfolder name.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $subfolder_name;

		/**
		 * The fonts folder.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $fonts_folder;

		/**
		 * The fonts folder url.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $fonts_folder_url;

		/**
		 * The local stylesheet's path.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $local_stylesheet_path;

		/**
		 * The local stylesheet's URL.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $local_stylesheet_url;

		/**
		 * The remote CSS.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $remote_styles;

		/**
		 * The final CSS.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @var string
		 */
		protected $css;

		/**
		 * Cleanup routine frequency.
		 */
		const CLEANUP_FREQUENCY = 'monthly';

		/**
		 * Constructor.
		 *
		 * Get a new instance of the object for a new URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @param string $url The remote URL.
		 */
		public function __construct( $url = '' ) {
			$this->remote_url = $url;

			$this->base_path = UAGB_UPLOAD_DIR . 'assets/';

			$this->base_url = UAGB_UPLOAD_URL . 'assets/';

			// Add a cleanup routine.
			$this->schedule_cleanup();
			add_action( 'uagb_delete_fonts_folder', array( $this, 'delete_fonts_folder' ) );
		}

		/**
		 * Get the local URL which contains the styles.
		 *
		 * Fallback to the remote URL if we were unable to write the file locally.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_url() {

			// Check if the local stylesheet exists.
			if ( $this->local_file_exists() ) {

				// Attempt to update the stylesheet. Return the local URL on success.
				if ( $this->write_stylesheet() ) {
					return $this->get_local_stylesheet_url();
				}
			}

			// If the local file exists, return its URL, with a fallback to the remote URL.
			return file_exists( $this->get_local_stylesheet_path() )
				? $this->get_local_stylesheet_url()
				: $this->remote_url;
		}

		/**
		 * Get the local stylesheet URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_url() {
			if ( ! $this->local_stylesheet_url ) {
				$this->local_stylesheet_url = str_replace(
					$this->get_base_path(),
					$this->get_base_url(),
					$this->get_local_stylesheet_path()
				);
			}
			return $this->local_stylesheet_url;
		}

		/**
		 * Get styles with fonts downloaded locally.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return string
		 */
		public function get_styles() {

			// If we already have the local file, return its contents.
			$local_stylesheet_contents = $this->get_local_stylesheet_contents();
			if ( $local_stylesheet_contents ) {
				return $local_stylesheet_contents;
			}

			// Get the remote URL contents.
			$this->remote_styles = $this->get_remote_url_contents();

			// Get an array of locally-hosted files.
			$files = $this->get_local_files_from_css();

			// Convert paths to URLs.
			foreach ( $files as $remote => $local ) {
				$files[ $remote ] = str_replace(
					$this->get_base_path(),
					$this->get_base_url(),
					$local
				);
			}

			$this->css = str_replace(
				array_keys( $files ),
				array_values( $files ),
				$this->remote_styles
			);

			$this->write_stylesheet();

			return $this->css;
		}

		/**
		 * Get styles from remote url with fonts downloaded locally without writing css file.
		 * Note - It always request to remote and it will not create a file on local.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return string
		 */
		public function get_remote_styles() {

			// Get the remote URL contents.
			$this->remote_styles = $this->get_remote_url_contents();

			// Early return, if remote style is not there
			if ( ! isset( $this->remote_styles ) ) {
				return '';
			}

			// Get an array of locally-hosted files.
			$files = $this->get_local_files_from_css();

			// Convert paths to URLs.
			foreach ( $files as $remote => $local ) {
				$files[ $remote ] = str_replace(
					$this->get_base_path(),
					$this->get_base_url(),
					$local
				);
			}

			// Convert base content paths to site content URLs.
			foreach ( $files as $remote => $local ) {
				$files[ $remote ] = str_replace(
					$this->get_filesystem()->wp_content_dir(),
					content_url() . '/',
					$local
				);
			}

			$this->css = str_replace(
				array_keys( $files ),
				array_values( $files ),
				$this->remote_styles
			);

			return $this->css;
		}

		/**
		 * Get local stylesheet contents.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string|false Returns the remote URL contents.
		 */
		public function get_local_stylesheet_contents() {
			$local_path = $this->get_local_stylesheet_path();

			// Check if the local stylesheet exists.
			if ( $this->local_file_exists() ) {

				// Attempt to update the stylesheet. Return false on fail.
				if ( ! $this->write_stylesheet() ) {
					return false;
				}
			}

			ob_start();
			include $local_path;
			return ob_get_clean();
		}

		/**
		 * Get remote file contents.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return string Returns the remote URL contents.
		 */
		public function get_remote_url_contents() {

			/**
			 * The user-agent we want to use.
			 *
			 * The default user-agent is the only one compatible with woff (not woff2)
			 * which also supports unicode ranges.
			 */
			$user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8';

			// Switch to a user-agent supporting woff2 if we don't need to support IE.
			if ( 'woff2' === $this->font_format ) {
				$user_agent = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0';
			}

			// Get the response.
			$response = wp_remote_get( $this->remote_url, array( 'user-agent' => $user_agent ) );

			// Early exit if there was an error.
			if ( is_wp_error( $response ) ) {
				return;
			}

			// Check if response code is 400.
			if ( wp_remote_retrieve_response_code( $response ) === 400 ) {
				return;
			}

			// Get the CSS from our response.
			$contents = wp_remote_retrieve_body( $response );

			// Early exit if there was an error.
			if ( is_wp_error( $contents ) ) {
				return;
			}

			return $contents;
		}

		/**
		 * Download files mentioned in our CSS locally.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return array Returns an array of remote URLs and their local counterparts.
		 */
		public function get_local_files_from_css() {
			$font_files     = $this->get_remote_files_from_css();
			$stored         = get_site_option( 'uagb_downloaded_font_files', array() );
			$stored_preload = get_site_option( 'uagb_preload_font_files', array() );
			$change         = false; // If in the end this is true, we need to update the cache option.
			$fonts_folder_path = $this->get_fonts_folder();

			// If the fonts folder don't exist, create it.
			if ( ! file_exists( $fonts_folder_path ) ) {

				wp_mkdir_p( $fonts_folder_path );

				$this->get_filesystem()->mkdir( $fonts_folder_path, FS_CHMOD_DIR );
			}

			foreach ( $font_files as $font_family => $files ) {

				// The folder path for this font-family.
				$folder_path = $fonts_folder_path . '/' . $font_family;
				$folder_url  = $this->get_fonts_folder_url() . '/' . $font_family;

				// If the folder doesn't exist, create it.
				if ( ! file_exists( $folder_path ) ) {
					$this->get_filesystem()->mkdir( $folder_path, FS_CHMOD_DIR );
				}

				foreach ( $files as $url ) {

					// Get the filename.
					$filename  = basename( wp_parse_url( $url, PHP_URL_PATH ) );
					$font_path = $folder_path . '/' . $filename;
					$font_url  = $folder_url . '/' . $filename;

					// Check if the file already exists.
					if ( file_exists( $font_path ) ) {

						// Skip if already cached.
						if ( isset( $stored[ $url ] ) ) {
							continue;
						}

						// Add file to the cache and change the $changed var to indicate we need to update the option.
						$stored[ $url ]         = $font_path;
						$stored_preload[ $url ] = array(
							'font_family' => $font_family,
							'font_url'    => $font_url,
						);
						$change                 = true;

						// Since the file exists we don't need to proceed with downloading it.
						continue;
					}

					/**
					 * If we got this far, we need to download the file.
					 */

					// require file.php if the download_url function doesn't exist.
					if ( ! function_exists( 'download_url' ) ) {
						require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
					}

					// Download file to temporary location.
					$tmp_path = download_url( $url );

					// Make sure there were no errors.
					if ( is_wp_error( $tmp_path ) ) {
						continue;
					}

					// Move temp file to final destination.
					$success = $this->get_filesystem()->move( $tmp_path, $font_path, true );
					if ( $success ) {
						$stored[ $url ]         = $font_path;
						$stored_preload[ $url ] = array(
							'font_family' => $font_family,
							'font_url'    => $font_url,
						);
						$change                 = true;
					}
				}
			}

			// If there were changes, update the option.
			if ( $change ) {

				// Cleanup the option and then save it.
				foreach ( $stored as $url => $path ) {
					if ( ! file_exists( $path ) ) {
						unset( $stored[ $url ] );
						unset( $stored_preload[ $url ] );
					}
				}
				update_site_option( 'uagb_downloaded_font_files', $stored );
				update_site_option( 'uagb_preload_font_files', $stored_preload );
			}

			return $stored;
		}

		/**
		 * Get font files from the CSS.
		 *
		 * @access public
		 * @since 1.0.0
		 * @return array Returns an array of font-families and the font-files used.
		 */
		public function get_remote_files_from_css() {

			// Return early if remote styles is not a string, or is empty.
			if ( ! is_string( $this->remote_styles ) || empty( $this->remote_styles ) ) {
				return array();
			}

			$font_faces = explode( '@font-face', $this->remote_styles );

			// Return early if font faces is not an array, or is empty.
			if ( ! is_array( $font_faces ) || empty( $font_faces ) ) {
				return array();
			}

			$result = array();

			// Loop all our font-face declarations.
			foreach ( $font_faces as $font_face ) {

				// Continue the loop if the current font face is not a string, or is empty.
				if ( ! is_string( $font_face ) || empty( $font_face ) ) {
					continue;
				}

				// Get the styles based on the font face.
				$style_array = explode( '}', $font_face );

				// Continue the loop if the current font face is not a string, or is empty.
				if ( ! is_string( $style_array[0] ) || empty( $style_array[0] ) ) {
					continue;
				}

				// Make sure we only process styles inside this declaration.
				$style = $style_array[0];

				// Sanity check.
				if ( false === strpos( $style, 'font-family' ) ) {
					continue;
				}

				// Get an array of our font-families.
				preg_match_all( '/font-family.*?\;/', $style, $matched_font_families );

				// Get an array of our font-files.
				preg_match_all( '/url\(.*?\)/i', $style, $matched_font_files );

				// Get the font-family name.
				$font_family = 'unknown';
				if ( isset( $matched_font_families[0] ) && isset( $matched_font_families[0][0] ) ) {
					$font_family = rtrim( ltrim( $matched_font_families[0][0], 'font-family:' ), ';' );
					$font_family = trim( str_replace( array( "'", ';' ), '', $font_family ) );
					$font_family = sanitize_key( strtolower( str_replace( ' ', '-', $font_family ) ) );
				}

				// Make sure the font-family is set in our array.
				if ( ! isset( $result[ $font_family ] ) ) {
					$result[ $font_family ] = array();
				}

				// Get files for this font-family and add them to the array.
				foreach ( $matched_font_files as $match ) {

					// Sanity check.
					if ( ! isset( $match[0] ) ) {
						continue;
					}

					// Add the file URL.
					$result[ $font_family ][] = rtrim( ltrim( $match[0], 'url(' ), ')' );
				}

				// Make sure we have unique items.
				// We're using array_flip here instead of array_unique for improved performance.
				$result[ $font_family ] = array_flip( array_flip( $result[ $font_family ] ) );
			}
			return $result;
		}

		/**
		 * Write the CSS to the filesystem.
		 *
		 * @access protected
		 * @since 1.1.0
		 * @return string|false Returns the absolute path of the file on success, or false on fail.
		 */
		protected function write_stylesheet() {
			$file_path  = $this->get_local_stylesheet_path();
			$filesystem = $this->get_filesystem();

			// If the folder doesn't exist, create it.
			if ( ! file_exists( $this->get_fonts_folder() ) ) {
				$this->get_filesystem()->mkdir( $this->get_fonts_folder(), FS_CHMOD_DIR );
			}

			// If the file doesn't exist, create it. Return false if it can not be created.
			if ( ! $filesystem->exists( $file_path ) && ! $filesystem->touch( $file_path ) ) {
				return false;
			}

			// If we got this far, we need to write the file.
			// Get the CSS.
			if ( ! $this->css ) {
				$this->get_styles();
			}

			// Put the contents in the file. Return false if that fails.
			if ( ! $filesystem->put_contents( $file_path, $this->css ) ) {
				return false;
			}

			return $file_path;
		}

		/**
		 * Get the stylesheet path.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_path() {
			if ( ! $this->local_stylesheet_path ) {
				$this->local_stylesheet_path = $this->get_fonts_folder() . '/' . $this->get_local_stylesheet_filename() . '.css';
			}
			return $this->local_stylesheet_path;
		}

		/**
		 * Get the local stylesheet filename.
		 *
		 * This is a hash, generated from the site-URL, the wp-content path and the URL.
		 * This way we can avoid issues with sites changing their URL, or the wp-content path etc.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_local_stylesheet_filename() {
			return md5( $this->get_base_url() . $this->get_base_path() . $this->remote_url );
		}

		/**
		 * Set the font-format to be used.
		 *
		 * @access public
		 * @since 1.0.0
		 * @param string $format The format to be used. Use "woff" or "woff2".
		 * @return void
		 */
		public function set_font_format( $format = 'woff2' ) {
			$this->font_format = $format;
		}

		/**
		 * Check if the local stylesheet exists.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return bool
		 */
		public function local_file_exists() {
			return ( ! file_exists( $this->get_local_stylesheet_path() ) );
		}

		/**
		 * Get the base path.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_base_path() {
			if ( ! $this->base_path ) {
				$this->base_path = apply_filters( 'uagb_get_local_fonts_base_path', $this->get_filesystem()->wp_content_dir() );
			}
			return $this->base_path;
		}

		/**
		 * Get the base URL.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_base_url() {
			if ( ! $this->base_url ) {
				$this->base_url = apply_filters( 'uagb_get_local_fonts_base_url', content_url() . '/' );
			}
			return $this->base_url;
		}

		/**
		 * Get the subfolder name.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return string
		 */
		public function get_subfolder_name() {
			if ( ! $this->subfolder_name ) {
				$this->subfolder_name = apply_filters( 'uagb_get_local_fonts_subfolder_name', 'fonts' );
			}
			return $this->subfolder_name;
		}

		/**
		 * Get the folder for fonts.
		 *
		 * @access public
		 * @return string
		 */
		public function get_fonts_folder() {
			if ( ! $this->fonts_folder ) {
				$this->fonts_folder = $this->get_base_path();
				if ( $this->get_subfolder_name() ) {
					$this->fonts_folder .= $this->get_subfolder_name();
				}
			}

			return $this->fonts_folder;
		}

		/**
		 * Get the url to folder of fonts.
		 *
		 * @access public
		 * @return string
		 */
		public function get_fonts_folder_url() {
			if ( ! $this->fonts_folder_url ) {
				$this->fonts_folder_url = $this->get_base_url();
				if ( $this->get_subfolder_name() ) {
					$this->fonts_folder_url .= $this->get_subfolder_name();
				}
			}

			return $this->fonts_folder_url;
		}

		/**
		 * Schedule a cleanup.
		 *
		 * Deletes the fonts files on a regular basis.
		 * This way font files will get updated regularly,
		 * and we avoid edge cases where unused files remain in the server.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return void
		 */
		public function schedule_cleanup() {
			if ( ! is_multisite() || ( is_multisite() && is_main_site() ) ) {
				if ( ! wp_next_scheduled( 'uagb_delete_fonts_folder' ) && ! wp_installing() ) {
					wp_schedule_event( time(), self::CLEANUP_FREQUENCY, 'uagb_delete_fonts_folder' );
				}
			}
		}

		/**
		 * Delete the fonts folder.
		 *
		 * This runs as part of a cleanup routine.
		 *
		 * @access public
		 * @since 1.1.0
		 * @return bool
		 */
		public function delete_fonts_folder() {
			return $this->get_filesystem()->delete( $this->get_fonts_folder(), true );
		}

		/**
		 * Get the filesystem.
		 *
		 * @access protected
		 * @since 1.0.0
		 * @return WP_Filesystem
		 */
		protected function get_filesystem() {
			global $wp_filesystem;

			// If the filesystem has not been instantiated yet, do it here.
			if ( ! $wp_filesystem ) {
				if ( ! function_exists( 'WP_Filesystem' ) ) {
					require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
				}
				WP_Filesystem();
			}
			return $wp_filesystem;
		}

		/**
		 * Get the font files and preload them.
		 *
		 * @access public
		 */
		public function get_preload_local_fonts() {

			// Create files if not created.
			$this->get_local_files_from_css();

			// Get an array of locally-hosted files.
			$local_fonts = get_site_option( 'uagb_preload_font_files', array() );

			return $local_fonts;
		}
	}
}

if ( ! function_exists( 'uagb_get_webfont_styles' ) ) {
	/**
	 * Get styles for a webfont.
	 *
	 * This will get the CSS from the remote API,
	 * download any fonts it contains,
	 * replace references to remote URLs with locally-downloaded assets,
	 * and finally return the resulting CSS.
	 *
	 * @since 1.0.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function uagb_get_webfont_styles( $url, $format = 'woff2' ) {
		$font = new UAGB_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_styles();
	}
}

if ( ! function_exists( 'uagb_get_webfont_remote_styles' ) ) {
	/**
	 * Get styles for a webfont.
	 *
	 * This will get the CSS from the remote API,
	 * download any fonts it contains,
	 * replace references to remote URLs with locally-downloaded assets,
	 * and finally return the resulting CSS.
	 *
	 * @since 1.0.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function uagb_get_webfont_remote_styles( $url, $format = 'woff2' ) {
		$font = new UAGB_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_remote_styles();
	}
}

if ( ! function_exists( 'uagb_get_webfont_url' ) ) {
	/**
	 * Get a stylesheet URL for a webfont.
	 *
	 * @since 1.1.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function uagb_get_webfont_url( $url, $format = 'woff2' ) {
		$font = new UAGB_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_url();
	}
}

if ( ! function_exists( 'uagb_get_preload_local_fonts' ) ) {
	/**
	 * Get a stylesheet URL for a webfont.
	 *
	 * @since 1.1.0
	 *
	 * @param string $url    The URL of the remote webfont.
	 * @param string $format The font-format. If you need to support IE, change this to "woff".
	 *
	 * @return string Returns the CSS.
	 */
	function uagb_get_preload_local_fonts( $url, $format = 'woff2' ) {
		$font = new UAGB_WebFont_Loader( $url );
		$font->set_font_format( $format );
		return $font->get_preload_local_fonts();
	}
}
PK�][y��3ultimate-addons-for-gutenberg/dist/blocks.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-blob', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-hooks', 'wp-html-entities', 'wp-i18n', 'wp-keyboard-shortcuts', 'wp-plugins', 'wp-polyfill', 'wp-primitives', 'wp-rich-text', 'wp-url'), 'version' => '08a5dcebb6bdebed5c27e37d6be864bb');PK�][|A�����-ultimate-addons-for-gutenberg/dist/blocks.cssnu�[���:is(.components-modal__frame) .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}
:is(.components-modal__frame) .not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal
}
:is(.components-modal__frame) .pointer-events-none {
    pointer-events: none
}
:is(.components-modal__frame) .pointer-events-auto {
    pointer-events: auto
}
:is(.components-modal__frame) .visible {
    visibility: visible
}
:is(.components-modal__frame) .invisible {
    visibility: hidden
}
:is(.components-modal__frame) .collapse {
    visibility: collapse
}
:is(.components-modal__frame) .static {
    position: static
}
:is(.components-modal__frame) .fixed {
    position: fixed
}
:is(.components-modal__frame) .absolute {
    position: absolute
}
:is(.components-modal__frame) .relative {
    position: relative
}
:is(.components-modal__frame) .sticky {
    position: sticky
}
:is(.components-modal__frame) .-inset-1 {
    inset: -0.25rem
}
:is(.components-modal__frame) .inset-0 {
    inset: 0px
}
:is(.components-modal__frame) .inset-x-0 {
    left: 0px;
    right: 0px
}
:is(.components-modal__frame) .inset-y-0 {
    top: 0px;
    bottom: 0px
}
:is(.components-modal__frame) .-bottom-px {
    bottom: -1px
}
:is(.components-modal__frame) .-top-4 {
    top: -1rem
}
:is(.components-modal__frame) .bottom-0 {
    bottom: 0px
}
:is(.components-modal__frame) .bottom-1 {
    bottom: 0.25rem
}
:is(.components-modal__frame) .bottom-1\.5 {
    bottom: 0.375rem
}
:is(.components-modal__frame) .left-0 {
    left: 0px
}
:is(.components-modal__frame) .left-1 {
    left: 0.25rem
}
:is(.components-modal__frame) .left-1\/2 {
    left: 50%
}
:is(.components-modal__frame) .left-2\/4 {
    left: 50%
}
:is(.components-modal__frame) .left-\[calc\(50\%\+10px\)\] {
    left: calc(50% + 10px)
}
:is(.components-modal__frame) .left-\[calc\(50\%\+12px\)\] {
    left: calc(50% + 12px)
}
:is(.components-modal__frame) .left-\[calc\(50\%\+14px\)\] {
    left: calc(50% + 14px)
}
:is(.components-modal__frame) .right-0 {
    right: 0px
}
:is(.components-modal__frame) .right-1\/2 {
    right: 50%
}
:is(.components-modal__frame) .right-3 {
    right: 0.75rem
}
:is(.components-modal__frame) .right-4 {
    right: 1rem
}
:is(.components-modal__frame) .right-\[calc\(-50\%\+10px\)\] {
    right: calc(-50% + 10px)
}
:is(.components-modal__frame) .right-\[calc\(-50\%\+12px\)\] {
    right: calc(-50% + 12px)
}
:is(.components-modal__frame) .right-\[calc\(-50\%\+14px\)\] {
    right: calc(-50% + 14px)
}
:is(.components-modal__frame) .top-0 {
    top: 0px
}
:is(.components-modal__frame) .top-2\.5 {
    top: 0.625rem
}
:is(.components-modal__frame) .top-2\/4 {
    top: 50%
}
:is(.components-modal__frame) .top-3 {
    top: 0.75rem
}
:is(.components-modal__frame) .top-3\.5 {
    top: 0.875rem
}
:is(.components-modal__frame) .top-4 {
    top: 1rem
}
:is(.components-modal__frame) .top-full {
    top: 100%
}
:is(.components-modal__frame) .isolate {
    isolation: isolate
}
:is(.components-modal__frame) .isolation-auto {
    isolation: auto
}
:is(.components-modal__frame) .-z-10 {
    z-index: -10
}
:is(.components-modal__frame) .z-10 {
    z-index: 10
}
:is(.components-modal__frame) .z-20 {
    z-index: 20
}
:is(.components-modal__frame) .z-999999 {
    z-index: 999999
}
:is(.components-modal__frame) .order-1 {
    order: 1
}
:is(.components-modal__frame) .order-10 {
    order: 10
}
:is(.components-modal__frame) .order-11 {
    order: 11
}
:is(.components-modal__frame) .order-12 {
    order: 12
}
:is(.components-modal__frame) .order-2 {
    order: 2
}
:is(.components-modal__frame) .order-3 {
    order: 3
}
:is(.components-modal__frame) .order-4 {
    order: 4
}
:is(.components-modal__frame) .order-5 {
    order: 5
}
:is(.components-modal__frame) .order-6 {
    order: 6
}
:is(.components-modal__frame) .order-7 {
    order: 7
}
:is(.components-modal__frame) .order-8 {
    order: 8
}
:is(.components-modal__frame) .order-9 {
    order: 9
}
:is(.components-modal__frame) .order-first {
    order: -9999
}
:is(.components-modal__frame) .order-last {
    order: 9999
}
:is(.components-modal__frame) .order-none {
    order: 0
}
:is(.components-modal__frame) .col-span-1 {
    grid-column: span 1 / span 1
}
:is(.components-modal__frame) .col-span-10 {
    grid-column: span 10 / span 10
}
:is(.components-modal__frame) .col-span-11 {
    grid-column: span 11 / span 11
}
:is(.components-modal__frame) .col-span-12 {
    grid-column: span 12 / span 12
}
:is(.components-modal__frame) .col-span-2 {
    grid-column: span 2 / span 2
}
:is(.components-modal__frame) .col-span-3 {
    grid-column: span 3 / span 3
}
:is(.components-modal__frame) .col-span-4 {
    grid-column: span 4 / span 4
}
:is(.components-modal__frame) .col-span-5 {
    grid-column: span 5 / span 5
}
:is(.components-modal__frame) .col-span-6 {
    grid-column: span 6 / span 6
}
:is(.components-modal__frame) .col-span-7 {
    grid-column: span 7 / span 7
}
:is(.components-modal__frame) .col-span-8 {
    grid-column: span 8 / span 8
}
:is(.components-modal__frame) .col-span-9 {
    grid-column: span 9 / span 9
}
:is(.components-modal__frame) .col-start-1 {
    grid-column-start: 1
}
:is(.components-modal__frame) .col-start-10 {
    grid-column-start: 10
}
:is(.components-modal__frame) .col-start-11 {
    grid-column-start: 11
}
:is(.components-modal__frame) .col-start-12 {
    grid-column-start: 12
}
:is(.components-modal__frame) .col-start-2 {
    grid-column-start: 2
}
:is(.components-modal__frame) .col-start-3 {
    grid-column-start: 3
}
:is(.components-modal__frame) .col-start-4 {
    grid-column-start: 4
}
:is(.components-modal__frame) .col-start-5 {
    grid-column-start: 5
}
:is(.components-modal__frame) .col-start-6 {
    grid-column-start: 6
}
:is(.components-modal__frame) .col-start-7 {
    grid-column-start: 7
}
:is(.components-modal__frame) .col-start-8 {
    grid-column-start: 8
}
:is(.components-modal__frame) .col-start-9 {
    grid-column-start: 9
}
:is(.components-modal__frame) .m-0 {
    margin: 0px
}
:is(.components-modal__frame) .mx-0 {
    margin-left: 0px;
    margin-right: 0px
}
:is(.components-modal__frame) .mx-1 {
    margin-left: 0.25rem;
    margin-right: 0.25rem
}
:is(.components-modal__frame) .mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem
}
:is(.components-modal__frame) .my-0 {
    margin-top: 0px;
    margin-bottom: 0px
}
:is(.components-modal__frame) .my-12 {
    margin-top: 3rem;
    margin-bottom: 3rem
}
:is(.components-modal__frame) .my-5 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}
:is(.components-modal__frame) .mb-0 {
    margin-bottom: 0px
}
:is(.components-modal__frame) .mb-1 {
    margin-bottom: 0.25rem
}
:is(.components-modal__frame) .mb-6 {
    margin-bottom: 1.5rem
}
:is(.components-modal__frame) .ml-0 {
    margin-left: 0px
}
:is(.components-modal__frame) .ml-1 {
    margin-left: 0.25rem
}
:is(.components-modal__frame) .ml-10 {
    margin-left: 2.5rem
}
:is(.components-modal__frame) .ml-2 {
    margin-left: 0.5rem
}
:is(.components-modal__frame) .ml-4 {
    margin-left: 1rem
}
:is(.components-modal__frame) .mr-0 {
    margin-right: 0px
}
:is(.components-modal__frame) .mr-0\.5 {
    margin-right: 0.125rem
}
:is(.components-modal__frame) .mr-1 {
    margin-right: 0.25rem
}
:is(.components-modal__frame) .mr-10 {
    margin-right: 2.5rem
}
:is(.components-modal__frame) .mr-2 {
    margin-right: 0.5rem
}
:is(.components-modal__frame) .mr-3 {
    margin-right: 0.75rem
}
:is(.components-modal__frame) .mt-1 {
    margin-top: 0.25rem
}
:is(.components-modal__frame) .mt-1\.5 {
    margin-top: 0.375rem
}
:is(.components-modal__frame) .mt-2 {
    margin-top: 0.5rem
}
:is(.components-modal__frame) .mt-2\.5 {
    margin-top: 0.625rem
}
:is(.components-modal__frame) .mt-4 {
    margin-top: 1rem
}
:is(.components-modal__frame) .mt-6 {
    margin-top: 1.5rem
}
:is(.components-modal__frame) .mt-\[0\.5px\] {
    margin-top: 0.5px
}
:is(.components-modal__frame) .mt-\[2px\] {
    margin-top: 2px
}
:is(.components-modal__frame) .mt-auto {
    margin-top: auto
}
:is(.components-modal__frame) .box-border {
    box-sizing: border-box
}
:is(.components-modal__frame) .block {
    display: block
}
:is(.components-modal__frame) .inline-block {
    display: inline-block
}
:is(.components-modal__frame) .inline {
    display: inline
}
:is(.components-modal__frame) .flex {
    display: flex
}
:is(.components-modal__frame) .inline-flex {
    display: inline-flex
}
:is(.components-modal__frame) .table {
    display: table
}
:is(.components-modal__frame) .inline-table {
    display: inline-table
}
:is(.components-modal__frame) .table-caption {
    display: table-caption
}
:is(.components-modal__frame) .table-cell {
    display: table-cell
}
:is(.components-modal__frame) .table-column {
    display: table-column
}
:is(.components-modal__frame) .table-column-group {
    display: table-column-group
}
:is(.components-modal__frame) .table-footer-group {
    display: table-footer-group
}
:is(.components-modal__frame) .table-header-group {
    display: table-header-group
}
:is(.components-modal__frame) .table-row-group {
    display: table-row-group
}
:is(.components-modal__frame) .table-row {
    display: table-row
}
:is(.components-modal__frame) .flow-root {
    display: flow-root
}
:is(.components-modal__frame) .grid {
    display: grid
}
:is(.components-modal__frame) .inline-grid {
    display: inline-grid
}
:is(.components-modal__frame) .contents {
    display: contents
}
:is(.components-modal__frame) .list-item {
    display: list-item
}
:is(.components-modal__frame) .hidden {
    display: none
}
:is(.components-modal__frame) .size-1 {
    width: 0.25rem;
    height: 0.25rem
}
:is(.components-modal__frame) .size-1\.5 {
    width: 0.375rem;
    height: 0.375rem
}
:is(.components-modal__frame) .size-10 {
    width: 2.5rem;
    height: 2.5rem
}
:is(.components-modal__frame) .size-12 {
    width: 3rem;
    height: 3rem
}
:is(.components-modal__frame) .size-2 {
    width: 0.5rem;
    height: 0.5rem
}
:is(.components-modal__frame) .size-2\.5 {
    width: 0.625rem;
    height: 0.625rem
}
:is(.components-modal__frame) .size-3 {
    width: 0.75rem;
    height: 0.75rem
}
:is(.components-modal__frame) .size-3\.5 {
    width: 0.875rem;
    height: 0.875rem
}
:is(.components-modal__frame) .size-4 {
    width: 1rem;
    height: 1rem
}
:is(.components-modal__frame) .size-5 {
    width: 1.25rem;
    height: 1.25rem
}
:is(.components-modal__frame) .size-6 {
    width: 1.5rem;
    height: 1.5rem
}
:is(.components-modal__frame) .size-7 {
    width: 1.75rem;
    height: 1.75rem
}
:is(.components-modal__frame) .size-8 {
    width: 2rem;
    height: 2rem
}
:is(.components-modal__frame) .h-0 {
    height: 0px
}
:is(.components-modal__frame) .h-1 {
    height: 0.25rem
}
:is(.components-modal__frame) .h-10 {
    height: 2.5rem
}
:is(.components-modal__frame) .h-2 {
    height: 0.5rem
}
:is(.components-modal__frame) .h-3 {
    height: 0.75rem
}
:is(.components-modal__frame) .h-4 {
    height: 1rem
}
:is(.components-modal__frame) .h-5 {
    height: 1.25rem
}
:is(.components-modal__frame) .h-6 {
    height: 1.5rem
}
:is(.components-modal__frame) .h-7 {
    height: 1.75rem
}
:is(.components-modal__frame) .h-8 {
    height: 2rem
}
:is(.components-modal__frame) .h-auto {
    height: auto
}
:is(.components-modal__frame) .h-fit {
    height: -moz-fit-content;
    height: fit-content
}
:is(.components-modal__frame) .h-full {
    height: 100%
}
:is(.components-modal__frame) .h-px {
    height: 1px
}
:is(.components-modal__frame) .h-screen {
    height: 100vh
}
:is(.components-modal__frame) .max-h-\[10\.75rem\] {
    max-height: 10.75rem
}
:is(.components-modal__frame) .max-h-\[13\.5rem\] {
    max-height: 13.5rem
}
:is(.components-modal__frame) .max-h-\[8\.75rem\] {
    max-height: 8.75rem
}
:is(.components-modal__frame) .min-h-16 {
    min-height: 4rem
}
:is(.components-modal__frame) .min-h-\[2\.5rem\] {
    min-height: 2.5rem
}
:is(.components-modal__frame) .min-h-\[2rem\] {
    min-height: 2rem
}
:is(.components-modal__frame) .min-h-\[3rem\] {
    min-height: 3rem
}
:is(.components-modal__frame) .min-h-full {
    min-height: 100%
}
:is(.components-modal__frame) .w-0 {
    width: 0px
}
:is(.components-modal__frame) .w-1 {
    width: 0.25rem
}
:is(.components-modal__frame) .w-1\/10 {
    width: 10%
}
:is(.components-modal__frame) .w-1\/11 {
    width: 9.0909091%
}
:is(.components-modal__frame) .w-1\/12 {
    width: 8.3333333%
}
:is(.components-modal__frame) .w-1\/2 {
    width: 50%
}
:is(.components-modal__frame) .w-1\/3 {
    width: 33.333333%
}
:is(.components-modal__frame) .w-1\/4 {
    width: 25%
}
:is(.components-modal__frame) .w-1\/5 {
    width: 20%
}
:is(.components-modal__frame) .w-1\/6 {
    width: 16.666667%
}
:is(.components-modal__frame) .w-1\/7 {
    width: 14.2857143%
}
:is(.components-modal__frame) .w-1\/8 {
    width: 12.5%
}
:is(.components-modal__frame) .w-1\/9 {
    width: 11.1111111%
}
:is(.components-modal__frame) .w-10 {
    width: 2.5rem
}
:is(.components-modal__frame) .w-11 {
    width: 2.75rem
}
:is(.components-modal__frame) .w-120 {
    width: 30rem
}
:is(.components-modal__frame) .w-16 {
    width: 4rem
}
:is(.components-modal__frame) .w-3 {
    width: 0.75rem
}
:is(.components-modal__frame) .w-4 {
    width: 1rem
}
:is(.components-modal__frame) .w-48 {
    width: 12rem
}
:is(.components-modal__frame) .w-6 {
    width: 1.5rem
}
:is(.components-modal__frame) .w-60 {
    width: 15rem
}
:is(.components-modal__frame) .w-72 {
    width: 18rem
}
:is(.components-modal__frame) .w-8 {
    width: 2rem
}
:is(.components-modal__frame) .w-96 {
    width: 24rem
}
:is(.components-modal__frame) .w-\[18\.5rem\] {
    width: 18.5rem
}
:is(.components-modal__frame) .w-\[22\.5rem\] {
    width: 22.5rem
}
:is(.components-modal__frame) .w-\[4\.375rem\] {
    width: 4.375rem
}
:is(.components-modal__frame) .w-\[500px\] {
    width: 500px
}
:is(.components-modal__frame) .w-auto {
    width: auto
}
:is(.components-modal__frame) .w-fit {
    width: -moz-fit-content;
    width: fit-content
}
:is(.components-modal__frame) .w-full {
    width: 100%
}
:is(.components-modal__frame) .min-w-10 {
    min-width: 2.5rem
}
:is(.components-modal__frame) .min-w-\[180px\] {
    min-width: 180px
}
:is(.components-modal__frame) .max-w-32 {
    max-width: 8rem
}
:is(.components-modal__frame) .max-w-80 {
    max-width: 20rem
}
:is(.components-modal__frame) .max-w-full {
    max-width: 100%
}
:is(.components-modal__frame) .max-w-xs {
    max-width: 20rem
}
:is(.components-modal__frame) .flex-1 {
    flex: 1 1 0%
}
:is(.components-modal__frame) .shrink {
    flex-shrink: 1
}
:is(.components-modal__frame) .shrink-0 {
    flex-shrink: 0
}
:is(.components-modal__frame) .flex-grow {
    flex-grow: 1
}
:is(.components-modal__frame) .grow {
    flex-grow: 1
}
:is(.components-modal__frame) .grow-0 {
    flex-grow: 0
}
:is(.components-modal__frame) .border-collapse {
    border-collapse: collapse
}
:is(.components-modal__frame) .border-separate {
    border-collapse: separate
}
:is(.components-modal__frame) .border-spacing-0 {
    --tw-border-spacing-x: 0px;
    --tw-border-spacing-y: 0px;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}
:is(.components-modal__frame) .border-spacing-\[0_0\.25rem\] {
    --tw-border-spacing-x: 0 0.25rem;
    --tw-border-spacing-y: 0 0.25rem;
    border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y)
}
:is(.components-modal__frame) .origin-left {
    transform-origin: left
}
:is(.components-modal__frame) .-translate-x-2\/4 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) .-translate-y-2\/4 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) .-translate-y-full {
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) .transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
@keyframes pulse {
    50% {
        opacity: .5
    }
}
:is(.components-modal__frame) .animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite
}
@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}
:is(.components-modal__frame) .animate-spin {
    animation: spin 1s linear infinite
}
:is(.components-modal__frame) .cursor-auto {
    cursor: auto
}
:is(.components-modal__frame) .cursor-not-allowed {
    cursor: not-allowed
}
:is(.components-modal__frame) .cursor-pointer {
    cursor: pointer
}
:is(.components-modal__frame) .touch-pinch-zoom {
    --tw-pinch-zoom: pinch-zoom;
    touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom)
}
:is(.components-modal__frame) .resize {
    resize: both
}
:is(.components-modal__frame) .list-none {
    list-style-type: none
}
:is(.components-modal__frame) .appearance-none {
    -webkit-appearance: none;
            appearance: none
}
:is(.components-modal__frame) .auto-cols-auto {
    grid-auto-columns: auto
}
:is(.components-modal__frame) .grid-flow-row {
    grid-auto-flow: row
}
:is(.components-modal__frame) .grid-flow-col {
    grid-auto-flow: column
}
:is(.components-modal__frame) .grid-flow-row-dense {
    grid-auto-flow: row dense
}
:is(.components-modal__frame) .grid-flow-col-dense {
    grid-auto-flow: column dense
}
:is(.components-modal__frame) .auto-rows-auto {
    grid-auto-rows: auto
}
:is(.components-modal__frame) .grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr))
}
:is(.components-modal__frame) .grid-cols-subgrid {
    grid-template-columns: subgrid
}
:is(.components-modal__frame) .grid-rows-\[auto_1fr\] {
    grid-template-rows: auto 1fr
}
:is(.components-modal__frame) .grid-rows-subgrid {
    grid-template-rows: subgrid
}
:is(.components-modal__frame) .flex-row {
    flex-direction: row
}
:is(.components-modal__frame) .flex-row-reverse {
    flex-direction: row-reverse
}
:is(.components-modal__frame) .flex-col {
    flex-direction: column
}
:is(.components-modal__frame) .flex-col-reverse {
    flex-direction: column-reverse
}
:is(.components-modal__frame) .flex-wrap {
    flex-wrap: wrap
}
:is(.components-modal__frame) .flex-wrap-reverse {
    flex-wrap: wrap-reverse
}
:is(.components-modal__frame) .flex-nowrap {
    flex-wrap: nowrap
}
:is(.components-modal__frame) .content-center {
    align-content: center
}
:is(.components-modal__frame) .items-start {
    align-items: flex-start
}
:is(.components-modal__frame) .items-end {
    align-items: flex-end
}
:is(.components-modal__frame) .items-center {
    align-items: center
}
:is(.components-modal__frame) .items-baseline {
    align-items: baseline
}
:is(.components-modal__frame) .items-stretch {
    align-items: stretch
}
:is(.components-modal__frame) .justify-normal {
    justify-content: normal
}
:is(.components-modal__frame) .justify-start {
    justify-content: flex-start
}
:is(.components-modal__frame) .justify-end {
    justify-content: flex-end
}
:is(.components-modal__frame) .justify-center {
    justify-content: center
}
:is(.components-modal__frame) .justify-between {
    justify-content: space-between
}
:is(.components-modal__frame) .justify-around {
    justify-content: space-around
}
:is(.components-modal__frame) .justify-evenly {
    justify-content: space-evenly
}
:is(.components-modal__frame) .justify-stretch {
    justify-content: stretch
}
:is(.components-modal__frame) .gap-0 {
    gap: 0px
}
:is(.components-modal__frame) .gap-0\.5 {
    gap: 0.125rem
}
:is(.components-modal__frame) .gap-1 {
    gap: 0.25rem
}
:is(.components-modal__frame) .gap-1\.5 {
    gap: 0.375rem
}
:is(.components-modal__frame) .gap-2 {
    gap: 0.5rem
}
:is(.components-modal__frame) .gap-2\.5 {
    gap: 0.625rem
}
:is(.components-modal__frame) .gap-3 {
    gap: 0.75rem
}
:is(.components-modal__frame) .gap-4 {
    gap: 1rem
}
:is(.components-modal__frame) .gap-5 {
    gap: 1.25rem
}
:is(.components-modal__frame) .gap-6 {
    gap: 1.5rem
}
:is(.components-modal__frame) .gap-8 {
    gap: 2rem
}
:is(.components-modal__frame) .gap-x-2 {
    column-gap: 0.5rem
}
:is(.components-modal__frame) .gap-x-4 {
    column-gap: 1rem
}
:is(.components-modal__frame) .gap-x-5 {
    column-gap: 1.25rem
}
:is(.components-modal__frame) .gap-x-6 {
    column-gap: 1.5rem
}
:is(.components-modal__frame) .gap-x-8 {
    column-gap: 2rem
}
:is(.components-modal__frame) .gap-y-2 {
    row-gap: 0.5rem
}
:is(.components-modal__frame) .gap-y-4 {
    row-gap: 1rem
}
:is(.components-modal__frame) .gap-y-5 {
    row-gap: 1.25rem
}
:is(.components-modal__frame) .gap-y-6 {
    row-gap: 1.5rem
}
:is(.components-modal__frame) .gap-y-8 {
    row-gap: 2rem
}
:is(.components-modal__frame) :is(.space-x-1 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
}
:is(.components-modal__frame) :is(.space-y-1\.5 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse))
}
:is(.components-modal__frame) :is(.space-y-2 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse))
}
:is(.components-modal__frame) :is(.space-y-4 > :not([hidden]) ~ :not([hidden])) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse))
}
:is(.components-modal__frame) :is(.space-y-reverse > :not([hidden]) ~ :not([hidden])) {
    --tw-space-y-reverse: 1
}
:is(.components-modal__frame) :is(.space-x-reverse > :not([hidden]) ~ :not([hidden])) {
    --tw-space-x-reverse: 1
}
:is(.components-modal__frame) :is(.divide-x > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)))
}
:is(.components-modal__frame) :is(.divide-x-0 > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(0px * var(--tw-divide-x-reverse));
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)))
}
:is(.components-modal__frame) :is(.divide-y > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse))
}
:is(.components-modal__frame) :is(.divide-y-reverse > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-y-reverse: 1
}
:is(.components-modal__frame) :is(.divide-x-reverse > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-x-reverse: 1
}
:is(.components-modal__frame) :is(.divide-solid > :not([hidden]) ~ :not([hidden])) {
    border-style: solid
}
:is(.components-modal__frame) :is(.divide-border-subtle > :not([hidden]) ~ :not([hidden])) {
    --tw-divide-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1))
}
:is(.components-modal__frame) .self-start {
    align-self: flex-start
}
:is(.components-modal__frame) .self-end {
    align-self: flex-end
}
:is(.components-modal__frame) .self-center {
    align-self: center
}
:is(.components-modal__frame) .self-stretch {
    align-self: stretch
}
:is(.components-modal__frame) .self-baseline {
    align-self: baseline
}
:is(.components-modal__frame) .justify-self-auto {
    justify-self: auto
}
:is(.components-modal__frame) .justify-self-start {
    justify-self: start
}
:is(.components-modal__frame) .justify-self-end {
    justify-self: end
}
:is(.components-modal__frame) .justify-self-center {
    justify-self: center
}
:is(.components-modal__frame) .justify-self-stretch {
    justify-self: stretch
}
:is(.components-modal__frame) .overflow-auto {
    overflow: auto
}
:is(.components-modal__frame) .overflow-hidden {
    overflow: hidden
}
:is(.components-modal__frame) .overflow-visible {
    overflow: visible
}
:is(.components-modal__frame) .overflow-y-auto {
    overflow-y: auto
}
:is(.components-modal__frame) .overflow-x-hidden {
    overflow-x: hidden
}
:is(.components-modal__frame) .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
:is(.components-modal__frame) .text-ellipsis {
    text-overflow: ellipsis
}
:is(.components-modal__frame) .text-clip {
    text-overflow: clip
}
:is(.components-modal__frame) .text-wrap {
    text-wrap: wrap
}
:is(.components-modal__frame) .rounded {
    border-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-full {
    border-radius: 9999px
}
:is(.components-modal__frame) .rounded-lg {
    border-radius: 0.5rem
}
:is(.components-modal__frame) .rounded-md {
    border-radius: 0.375rem
}
:is(.components-modal__frame) .rounded-none {
    border-radius: 0px
}
:is(.components-modal__frame) .rounded-xl {
    border-radius: 0.75rem
}
:is(.components-modal__frame) .rounded-b {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-e {
    border-start-end-radius: 0.25rem;
    border-end-end-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-l {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-r {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-s {
    border-start-start-radius: 0.25rem;
    border-end-start-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-t {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-bl {
    border-bottom-left-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-bl-md {
    border-bottom-left-radius: 0.375rem
}
:is(.components-modal__frame) .rounded-br {
    border-bottom-right-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-br-md {
    border-bottom-right-radius: 0.375rem
}
:is(.components-modal__frame) .rounded-ee {
    border-end-end-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-es {
    border-end-start-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-se {
    border-start-end-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-ss {
    border-start-start-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-tl {
    border-top-left-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-tl-md {
    border-top-left-radius: 0.375rem
}
:is(.components-modal__frame) .rounded-tl-none {
    border-top-left-radius: 0px
}
:is(.components-modal__frame) .rounded-tr {
    border-top-right-radius: 0.25rem
}
:is(.components-modal__frame) .rounded-tr-md {
    border-top-right-radius: 0.375rem
}
:is(.components-modal__frame) .rounded-tr-none {
    border-top-right-radius: 0px
}
:is(.components-modal__frame) .border {
    border-width: 1px
}
:is(.components-modal__frame) .border-0 {
    border-width: 0px
}
:is(.components-modal__frame) .border-x {
    border-left-width: 1px;
    border-right-width: 1px
}
:is(.components-modal__frame) .border-x-0 {
    border-left-width: 0px;
    border-right-width: 0px
}
:is(.components-modal__frame) .border-y {
    border-top-width: 1px;
    border-bottom-width: 1px
}
:is(.components-modal__frame) .border-b {
    border-bottom-width: 1px
}
:is(.components-modal__frame) .border-b-0 {
    border-bottom-width: 0px
}
:is(.components-modal__frame) .border-e {
    border-inline-end-width: 1px
}
:is(.components-modal__frame) .border-l {
    border-left-width: 1px
}
:is(.components-modal__frame) .border-l-0 {
    border-left-width: 0px
}
:is(.components-modal__frame) .border-r {
    border-right-width: 1px
}
:is(.components-modal__frame) .border-r-0 {
    border-right-width: 0px
}
:is(.components-modal__frame) .border-s {
    border-inline-start-width: 1px
}
:is(.components-modal__frame) .border-t {
    border-top-width: 1px
}
:is(.components-modal__frame) .border-t-0 {
    border-top-width: 0px
}
:is(.components-modal__frame) .border-solid {
    border-style: solid
}
:is(.components-modal__frame) .border-dashed {
    border-style: dashed
}
:is(.components-modal__frame) .border-dotted {
    border-style: dotted
}
:is(.components-modal__frame) .border-double {
    border-style: double
}
:is(.components-modal__frame) .border-hidden {
    border-style: hidden
}
:is(.components-modal__frame) .border-none {
    border-style: none
}
:is(.components-modal__frame) .border-alert-border-danger {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-alert-border-green {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-alert-border-info {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-alert-border-neutral {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-alert-border-warning {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-background-inverse {
    --tw-border-opacity: 1;
    border-color: rgb(17 24 39 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-disabled {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-gray {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-green {
    --tw-border-opacity: 1;
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-red {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-sky {
    --tw-border-opacity: 1;
    border-color: rgb(186 230 253 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-badge-border-yellow {
    --tw-border-opacity: 1;
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-border-disabled {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-border-strong {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-border-subtle {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-brand-primary-600 {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-button-primary {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-field-border-disabled {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-focus-error-border {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-tab-border {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-text-inverse {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-toggle-off-border {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .border-transparent {
    border-color: transparent
}
:is(.components-modal__frame) .border-t-border-subtle {
    --tw-border-opacity: 1;
    border-top-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .bg-alert-background-danger {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-alert-background-green {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-alert-background-info {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-alert-background-neutral {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-alert-background-warning {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-background-brand {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-background-inverse {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-background-inverse\/90 {
    background-color: rgb(17 24 39 / 0.9)
}
:is(.components-modal__frame) .bg-background-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-background-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-gray {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-green {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-red {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-sky {
    --tw-bg-opacity: 1;
    background-color: rgb(240 249 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-badge-background-yellow {
    --tw-bg-opacity: 1;
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-border-interactive {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-brand-background-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-brand-primary-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-danger {
    --tw-bg-opacity: 1;
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-secondary {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-tertiary {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-button-tertiary-hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-current {
    background-color: currentColor
}
:is(.components-modal__frame) .bg-field-background-disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-field-background-error {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-field-primary-background {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-field-secondary-background {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-icon-interactive {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-misc-progress-background {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-tab-background {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-text-tertiary {
    --tw-bg-opacity: 1;
    background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-toggle-dial-background {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-toggle-off {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-toggle-off-disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-tooltip-background-dark {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-tooltip-background-light {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-transparent {
    background-color: transparent
}
:is(.components-modal__frame) .bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .bg-cover {
    background-size: cover
}
:is(.components-modal__frame) .bg-center {
    background-position: center
}
:is(.components-modal__frame) .bg-repeat {
    background-repeat: repeat
}
:is(.components-modal__frame) .fill-current {
    fill: currentColor
}
:is(.components-modal__frame) .p-0 {
    padding: 0px
}
:is(.components-modal__frame) .p-0\.5 {
    padding: 0.125rem
}
:is(.components-modal__frame) .p-1 {
    padding: 0.25rem
}
:is(.components-modal__frame) .p-1\.5 {
    padding: 0.375rem
}
:is(.components-modal__frame) .p-10 {
    padding: 2.5rem
}
:is(.components-modal__frame) .p-2 {
    padding: 0.5rem
}
:is(.components-modal__frame) .p-2\.5 {
    padding: 0.625rem
}
:is(.components-modal__frame) .p-3 {
    padding: 0.75rem
}
:is(.components-modal__frame) .p-3\.5 {
    padding: 0.875rem
}
:is(.components-modal__frame) .p-4 {
    padding: 1rem
}
:is(.components-modal__frame) .p-5 {
    padding: 1.25rem
}
:is(.components-modal__frame) .px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem
}
:is(.components-modal__frame) .px-1 {
    padding-left: 0.25rem;
    padding-right: 0.25rem
}
:is(.components-modal__frame) .px-1\.5 {
    padding-left: 0.375rem;
    padding-right: 0.375rem
}
:is(.components-modal__frame) .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem
}
:is(.components-modal__frame) .px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem
}
:is(.components-modal__frame) .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem
}
:is(.components-modal__frame) .px-3\.5 {
    padding-left: 0.875rem;
    padding-right: 0.875rem
}
:is(.components-modal__frame) .px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}
:is(.components-modal__frame) .px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}
:is(.components-modal__frame) .py-0 {
    padding-top: 0px;
    padding-bottom: 0px
}
:is(.components-modal__frame) .py-0\.5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem
}
:is(.components-modal__frame) .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem
}
:is(.components-modal__frame) .py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem
}
:is(.components-modal__frame) .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem
}
:is(.components-modal__frame) .py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem
}
:is(.components-modal__frame) .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem
}
:is(.components-modal__frame) .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}
:is(.components-modal__frame) .py-\[10px\] {
    padding-top: 10px;
    padding-bottom: 10px
}
:is(.components-modal__frame) .pb-1 {
    padding-bottom: 0.25rem
}
:is(.components-modal__frame) .pl-10 {
    padding-left: 2.5rem
}
:is(.components-modal__frame) .pl-2 {
    padding-left: 0.5rem
}
:is(.components-modal__frame) .pl-2\.5 {
    padding-left: 0.625rem
}
:is(.components-modal__frame) .pl-3 {
    padding-left: 0.75rem
}
:is(.components-modal__frame) .pl-8 {
    padding-left: 2rem
}
:is(.components-modal__frame) .pl-9 {
    padding-left: 2.25rem
}
:is(.components-modal__frame) .pr-10 {
    padding-right: 2.5rem
}
:is(.components-modal__frame) .pr-12 {
    padding-right: 3rem
}
:is(.components-modal__frame) .pr-2 {
    padding-right: 0.5rem
}
:is(.components-modal__frame) .pr-2\.5 {
    padding-right: 0.625rem
}
:is(.components-modal__frame) .pr-3 {
    padding-right: 0.75rem
}
:is(.components-modal__frame) .pr-8 {
    padding-right: 2rem
}
:is(.components-modal__frame) .pr-9 {
    padding-right: 2.25rem
}
:is(.components-modal__frame) .pt-5 {
    padding-top: 1.25rem
}
:is(.components-modal__frame) .text-center {
    text-align: center
}
:is(.components-modal__frame) .text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}
:is(.components-modal__frame) .text-\[0\.8rem\] {
    font-size: 0.8rem
}
:is(.components-modal__frame) .text-base {
    font-size: 1rem;
    line-height: 1.5rem
}
:is(.components-modal__frame) .text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}
:is(.components-modal__frame) .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem
}
:is(.components-modal__frame) .text-tiny {
    font-size: 0.625rem
}
:is(.components-modal__frame) .text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}
:is(.components-modal__frame) .text-xs {
    font-size: 0.75rem;
    line-height: 1rem
}
:is(.components-modal__frame) .text-xxs {
    font-size: 0.6875rem
}
:is(.components-modal__frame) .font-medium {
    font-weight: 500
}
:is(.components-modal__frame) .font-normal {
    font-weight: 400
}
:is(.components-modal__frame) .font-semibold {
    font-weight: 600
}
:is(.components-modal__frame) .uppercase {
    text-transform: uppercase
}
:is(.components-modal__frame) .lowercase {
    text-transform: lowercase
}
:is(.components-modal__frame) .capitalize {
    text-transform: capitalize
}
:is(.components-modal__frame) .normal-case {
    text-transform: none
}
:is(.components-modal__frame) .italic {
    font-style: italic
}
:is(.components-modal__frame) .not-italic {
    font-style: normal
}
:is(.components-modal__frame) .normal-nums {
    font-variant-numeric: normal
}
:is(.components-modal__frame) .ordinal {
    --tw-ordinal: ordinal;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .slashed-zero {
    --tw-slashed-zero: slashed-zero;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .lining-nums {
    --tw-numeric-figure: lining-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .oldstyle-nums {
    --tw-numeric-figure: oldstyle-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .proportional-nums {
    --tw-numeric-spacing: proportional-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .tabular-nums {
    --tw-numeric-spacing: tabular-nums;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .diagonal-fractions {
    --tw-numeric-fraction: diagonal-fractions;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}
:is(.components-modal__frame) .leading-4 {
    line-height: 1rem
}
:is(.components-modal__frame) .leading-5 {
    line-height: 1.25rem
}
:is(.components-modal__frame) .leading-6 {
    line-height: 1.5rem
}
:is(.components-modal__frame) .leading-none {
    line-height: 1
}
:is(.components-modal__frame) .text-background-primary {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-disabled {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-gray {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-green {
    --tw-text-opacity: 1;
    color: rgb(21 128 61 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-red {
    --tw-text-opacity: 1;
    color: rgb(185 28 28 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-sky {
    --tw-text-opacity: 1;
    color: rgb(3 105 161 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-badge-color-yellow {
    --tw-text-opacity: 1;
    color: rgb(161 98 7 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-border-strong {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-brand-primary-600 {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-button-danger {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-button-primary {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-button-secondary {
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-button-tertiary-color {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-current {
    color: currentColor
}
:is(.components-modal__frame) .text-field-color-disabled {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-field-helper {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-field-input {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-field-label {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-field-placeholder {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-icon-disabled {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-icon-inverse {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-icon-on-color-disabled {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-icon-primary {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-icon-secondary {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-link-primary {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-error {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-error-inverse {
    --tw-text-opacity: 1;
    color: rgb(248 113 113 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-info {
    --tw-text-opacity: 1;
    color: rgb(2 132 199 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-info-inverse {
    --tw-text-opacity: 1;
    color: rgb(56 189 248 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-success {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-success-inverse {
    --tw-text-opacity: 1;
    color: rgb(74 222 128 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-warning {
    --tw-text-opacity: 1;
    color: rgb(234 179 8 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-support-warning-inverse {
    --tw-text-opacity: 1;
    color: rgb(253 224 71 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-disabled {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-inverse {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-on-color {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-primary {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-secondary {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-text-tertiary {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-tooltip-background-dark {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-tooltip-background-light {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .underline {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline
}
:is(.components-modal__frame) .overline {
    -webkit-text-decoration-line: overline;
            text-decoration-line: overline
}
:is(.components-modal__frame) .line-through {
    -webkit-text-decoration-line: line-through;
            text-decoration-line: line-through
}
:is(.components-modal__frame) .no-underline {
    -webkit-text-decoration-line: none;
            text-decoration-line: none
}
:is(.components-modal__frame) .antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
:is(.components-modal__frame) .subpixel-antialiased {
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto
}
:is(.components-modal__frame) .placeholder-text-tertiary::placeholder {
    --tw-placeholder-opacity: 1;
    color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1))
}
:is(.components-modal__frame) .opacity-0 {
    opacity: 0
}
:is(.components-modal__frame) .opacity-40 {
    opacity: 0.4
}
:is(.components-modal__frame) .opacity-50 {
    opacity: 0.5
}
:is(.components-modal__frame) .shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-none {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-soft-shadow-2xl {
    --tw-shadow: 0px 24px 64px -12px rgba(149, 160, 178, 0.32);
    --tw-shadow-colored: 0px 24px 64px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .shadow-soft-shadow-lg {
    --tw-shadow: 0px 12px 32px -12px rgba(149, 160, 178, 0.24);
    --tw-shadow-colored: 0px 12px 32px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .outline-none {
    outline: 2px solid transparent;
    outline-offset: 2px
}
:is(.components-modal__frame) .outline {
    outline-style: solid
}
:is(.components-modal__frame) .outline-1 {
    outline-width: 1px
}
:is(.components-modal__frame) .outline-border-disabled {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .outline-border-strong {
    outline-color: #6B7280
}
:is(.components-modal__frame) .outline-border-subtle {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .outline-button-danger {
    outline-color: #DC2626
}
:is(.components-modal__frame) .outline-button-danger-hover {
    outline-color: #B91C1C
}
:is(.components-modal__frame) .outline-button-disabled {
    outline-color: #F3F4F6
}
:is(.components-modal__frame) .outline-button-primary {
    outline-color: #6005FF
}
:is(.components-modal__frame) .outline-button-secondary {
    outline-color: #1F2937
}
:is(.components-modal__frame) .outline-field-border {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .outline-focus-error-border {
    outline-color: #FECACA
}
:is(.components-modal__frame) .outline-transparent {
    outline-color: transparent
}
:is(.components-modal__frame) .ring {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .ring-2 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .ring-inset {
    --tw-ring-inset: inset
}
:is(.components-modal__frame) .ring-alert-border-danger {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-alert-border-green {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-alert-border-info {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-alert-border-neutral {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-alert-border-warning {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-background-inverse {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-border-interactive {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-border-subtle {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-border-transparent-subtle {
    --tw-ring-color: #37415114
}
:is(.components-modal__frame) .ring-brand-primary-600 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-tab-border {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .ring-offset-0 {
    --tw-ring-offset-width: 0px
}
:is(.components-modal__frame) .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .drop-shadow {
    --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .invert {
    --tw-invert: invert(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .sepia {
    --tw-sepia: sepia(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}
:is(.components-modal__frame) .backdrop-blur {
    --tw-backdrop-blur: blur(8px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .backdrop-grayscale {
    --tw-backdrop-grayscale: grayscale(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .backdrop-invert {
    --tw-backdrop-invert: invert(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .backdrop-sepia {
    --tw-backdrop-sepia: sepia(100%);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .backdrop-filter {
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)
}
:is(.components-modal__frame) .transition {
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .transition-\[box-shadow\2c color\2c background-color\] {
    transition-property: box-shadow,color,background-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .transition-colors {
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .duration-150 {
    transition-duration: 150ms
}
:is(.components-modal__frame) .duration-200 {
    transition-duration: 200ms
}
:is(.components-modal__frame) .duration-300 {
    transition-duration: 300ms
}
:is(.components-modal__frame) .duration-500 {
    transition-duration: 500ms
}
:is(.components-modal__frame) .ease-in {
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1)
}
:is(.components-modal__frame) .ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1)
}
:is(.components-modal__frame) .ease-linear {
    transition-timing-function: linear
}
:is(.components-modal__frame) .ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1)
}
:is(.components-modal__frame) .\[grid-area\:1\/1\/2\/3\] {
    grid-area: 1/1/2/3
}
:is(.components-modal__frame) .file\:border-0::file-selector-button {
    border-width: 0px
}
:is(.components-modal__frame) .file\:bg-transparent::file-selector-button {
    background-color: transparent
}
:is(.components-modal__frame) .file\:text-text-tertiary::file-selector-button {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .placeholder\:text-field-placeholder::placeholder {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .placeholder\:text-text-disabled::placeholder {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .before\:absolute::before {
    content: var(--tw-content);
    position: absolute
}
:is(.components-modal__frame) .before\:left-2\/4::before {
    content: var(--tw-content);
    left: 50%
}
:is(.components-modal__frame) .before\:top-2\/4::before {
    content: var(--tw-content);
    top: 50%
}
:is(.components-modal__frame) .before\:hidden::before {
    content: var(--tw-content);
    display: none
}
:is(.components-modal__frame) .before\:h-10::before {
    content: var(--tw-content);
    height: 2.5rem
}
:is(.components-modal__frame) .before\:w-10::before {
    content: var(--tw-content);
    width: 2.5rem
}
:is(.components-modal__frame) .before\:-translate-x-2\/4::before {
    content: var(--tw-content);
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) .before\:-translate-y-2\/4::before {
    content: var(--tw-content);
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) .before\:rounded-full::before {
    content: var(--tw-content);
    border-radius: 9999px
}
:is(.components-modal__frame) .before\:opacity-0::before {
    content: var(--tw-content);
    opacity: 0
}
:is(.components-modal__frame) .before\:transition-opacity::before {
    content: var(--tw-content);
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms
}
:is(.components-modal__frame) .before\:content-\[\'\'\]::before {
    --tw-content: '';
    content: var(--tw-content)
}
:is(.components-modal__frame) .after\:ml-0\.5::after {
    content: var(--tw-content);
    margin-left: 0.125rem
}
:is(.components-modal__frame) .after\:text-field-required::after {
    content: var(--tw-content);
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .after\:content-\[\'\*\'\]::after {
    --tw-content: '*';
    content: var(--tw-content)
}
:is(.components-modal__frame) .first\:rounded-bl:first-child {
    border-bottom-left-radius: 0.25rem
}
:is(.components-modal__frame) .first\:rounded-tl:first-child {
    border-top-left-radius: 0.25rem
}
:is(.components-modal__frame) .first\:border-0:first-child {
    border-width: 0px
}
:is(.components-modal__frame) .first\:border-r:first-child {
    border-right-width: 1px
}
:is(.components-modal__frame) .first\:border-border-subtle:first-child {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .last\:rounded-br:last-child {
    border-bottom-right-radius: 0.25rem
}
:is(.components-modal__frame) .last\:rounded-tr:last-child {
    border-top-right-radius: 0.25rem
}
:is(.components-modal__frame) .last\:border-0:last-child {
    border-width: 0px
}
:is(.components-modal__frame) .checked\:border-border-interactive:checked {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .checked\:border-toggle-on-border:checked {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .checked\:bg-toggle-on:checked {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .checked\:\[background-image\:none\]:checked {
    background-image: none
}
:is(.components-modal__frame) .checked\:before\:hidden:checked::before {
    content: var(--tw-content);
    display: none
}
:is(.components-modal__frame) .checked\:before\:content-\[\'\'\]:checked::before {
    --tw-content: '';
    content: var(--tw-content)
}
:is(.components-modal__frame) .focus-within\:z-10:focus-within {
    z-index: 10
}
:is(.components-modal__frame) .focus-within\:\!border-focus-border:focus-within {
    --tw-border-opacity: 1 !important;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1)) !important
}
:is(.components-modal__frame) .focus-within\:border-focus-border:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus-within\:text-field-input:focus-within {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .focus-within\:outline-none:focus-within {
    outline: 2px solid transparent;
    outline-offset: 2px
}
:is(.components-modal__frame) .focus-within\:ring-2:focus-within {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .focus-within\:ring-focus:focus-within {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .focus-within\:ring-offset-2:focus-within {
    --tw-ring-offset-width: 2px
}
:is(.components-modal__frame) .hover\:border-border-disabled:hover {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:border-border-interactive:hover {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:border-border-strong:hover {
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:border-button-primary:hover {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:border-field-border-disabled:hover {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:border-text-inverse:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-background-brand:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-background-secondary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-disabled:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-gray:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-green:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-red:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-sky:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(224 242 254 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-badge-hover-yellow:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-button-danger-hover:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-button-primary-hover:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(81 4 214 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-button-secondary-hover:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-button-tertiary-hover:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-field-background-error:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-toggle-off-hover:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:bg-transparent:hover {
    background-color: transparent
}
:is(.components-modal__frame) .hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-black:hover {
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-button-danger-secondary:hover {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-button-primary-hover:hover {
    --tw-text-opacity: 1;
    color: rgb(81 4 214 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-link-primary-hover:hover {
    --tw-text-opacity: 1;
    color: rgb(29 78 216 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-text-disabled:hover {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-text-inverse:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:text-text-primary:hover {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .hover\:underline:hover {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline
}
:is(.components-modal__frame) .hover\:outline-border-disabled:hover {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .hover\:outline-border-strong:hover {
    outline-color: #6B7280
}
:is(.components-modal__frame) .hover\:outline-border-subtle:hover {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .hover\:outline-button-danger:hover {
    outline-color: #DC2626
}
:is(.components-modal__frame) .hover\:outline-button-danger-hover:hover {
    outline-color: #B91C1C
}
:is(.components-modal__frame) .hover\:outline-button-primary-hover:hover {
    outline-color: #5104D6
}
:is(.components-modal__frame) .hover\:outline-button-secondary-hover:hover {
    outline-color: #374151
}
:is(.components-modal__frame) .hover\:ring-2:hover {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .hover\:ring-border-interactive:hover {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .hover\:before\:opacity-10:hover::before {
    content: var(--tw-content);
    opacity: 0.1
}
:is(.components-modal__frame) .checked\:hover\:border-toggle-on-hover:hover:checked {
    --tw-border-opacity: 1;
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .checked\:hover\:bg-toggle-on:hover:checked {
    --tw-bg-opacity: 1;
    background-color: rgb(96 5 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .checked\:hover\:bg-toggle-on-hover:hover:checked {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .focus-within\:hover\:border-focus-border:hover:focus-within {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus\:rounded-sm:focus {
    border-radius: 0.125rem
}
:is(.components-modal__frame) .focus\:border-border-interactive:focus {
    --tw-border-opacity: 1;
    border-color: rgb(96 5 255 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus\:border-focus-border:focus {
    --tw-border-opacity: 1;
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus\:border-focus-error-border:focus {
    --tw-border-opacity: 1;
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus\:border-toggle-off-border:focus {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus\:bg-background-secondary:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .focus\:bg-button-tertiary-hover:focus {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .focus\:shadow-none:focus {
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}
:is(.components-modal__frame) .focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}
:is(.components-modal__frame) .focus\:outline:focus {
    outline-style: solid
}
:is(.components-modal__frame) .focus\:outline-1:focus {
    outline-width: 1px
}
:is(.components-modal__frame) .focus\:outline-border-subtle:focus {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .focus\:outline-focus-border:focus {
    outline-color: #BFDBFE
}
:is(.components-modal__frame) .focus\:outline-focus-error-border:focus {
    outline-color: #FECACA
}
:is(.components-modal__frame) .focus\:ring:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .focus\:ring-0:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .focus\:ring-1:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}
:is(.components-modal__frame) .focus\:ring-border-interactive:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .focus\:ring-field-color-error:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .focus\:ring-focus:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .focus\:ring-toggle-on:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity, 1))
}
:is(.components-modal__frame) .focus\:ring-transparent:focus {
    --tw-ring-color: transparent
}
:is(.components-modal__frame) .focus\:ring-offset-0:focus {
    --tw-ring-offset-width: 0px
}
:is(.components-modal__frame) .focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px
}
:is(.components-modal__frame) .focus\:ring-offset-4:focus {
    --tw-ring-offset-width: 4px
}
:is(.components-modal__frame) .checked\:focus\:border-toggle-on-border:focus:checked {
    --tw-border-opacity: 1;
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .focus-visible\:outline-none:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px
}
:is(.components-modal__frame) .active\:text-button-primary:active {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .active\:outline-none:active {
    outline: 2px solid transparent;
    outline-offset: 2px
}
:is(.components-modal__frame) .disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed
}
:is(.components-modal__frame) .disabled\:border-border-disabled:disabled {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .disabled\:border-field-border-disabled:disabled {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .disabled\:border-transparent:disabled {
    border-color: transparent
}
:is(.components-modal__frame) .disabled\:bg-button-disabled:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .disabled\:bg-button-tertiary:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .disabled\:bg-white:disabled {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) .disabled\:text-text-disabled:disabled {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) .disabled\:outline-border-disabled:disabled {
    outline-color: #E5E7EB
}
:is(.components-modal__frame) .disabled\:outline-button-disabled:disabled {
    outline-color: #F3F4F6
}
:is(.components-modal__frame) .disabled\:outline-field-border-disabled:disabled {
    outline-color: #F3F4F6
}
:is(.components-modal__frame) .checked\:disabled\:border-border-disabled:disabled:checked {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1))
}
:is(.components-modal__frame) .checked\:disabled\:bg-white:disabled:checked {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}
:is(.components-modal__frame) :is(.group:focus-within .group-focus-within\:text-icon-primary) {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.group:hover .group-hover\:text-field-input) {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.group:hover .group-hover\:text-icon-primary) {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.group:hover .group-hover\:text-text-primary) {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.group:disabled .group-disabled\:text-field-color-disabled) {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.group:disabled .group-disabled\:text-icon-disabled) {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.peer:checked ~ .peer-checked\:translate-x-3\.5) {
    --tw-translate-x: 0.875rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) :is(.peer:checked ~ .peer-checked\:translate-x-5) {
    --tw-translate-x: 1.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}
:is(.components-modal__frame) :is(.peer:checked ~ .peer-checked\:opacity-100) {
    opacity: 1
}
:is(.components-modal__frame) :is(.peer:disabled ~ .peer-disabled\:cursor-not-allowed) {
    cursor: not-allowed
}
:is(.components-modal__frame) :is(.peer:disabled ~ .peer-disabled\:text-border-disabled) {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity, 1))
}
@media (min-width: 768px) {
    :is(.components-modal__frame) .md\:order-1 {
        order: 1
    }
    :is(.components-modal__frame) .md\:order-10 {
        order: 10
    }
    :is(.components-modal__frame) .md\:order-11 {
        order: 11
    }
    :is(.components-modal__frame) .md\:order-12 {
        order: 12
    }
    :is(.components-modal__frame) .md\:order-2 {
        order: 2
    }
    :is(.components-modal__frame) .md\:order-3 {
        order: 3
    }
    :is(.components-modal__frame) .md\:order-4 {
        order: 4
    }
    :is(.components-modal__frame) .md\:order-5 {
        order: 5
    }
    :is(.components-modal__frame) .md\:order-6 {
        order: 6
    }
    :is(.components-modal__frame) .md\:order-7 {
        order: 7
    }
    :is(.components-modal__frame) .md\:order-8 {
        order: 8
    }
    :is(.components-modal__frame) .md\:order-9 {
        order: 9
    }
    :is(.components-modal__frame) .md\:order-first {
        order: -9999
    }
    :is(.components-modal__frame) .md\:order-last {
        order: 9999
    }
    :is(.components-modal__frame) .md\:order-none {
        order: 0
    }
    :is(.components-modal__frame) .md\:col-span-1 {
        grid-column: span 1 / span 1
    }
    :is(.components-modal__frame) .md\:col-span-10 {
        grid-column: span 10 / span 10
    }
    :is(.components-modal__frame) .md\:col-span-11 {
        grid-column: span 11 / span 11
    }
    :is(.components-modal__frame) .md\:col-span-12 {
        grid-column: span 12 / span 12
    }
    :is(.components-modal__frame) .md\:col-span-2 {
        grid-column: span 2 / span 2
    }
    :is(.components-modal__frame) .md\:col-span-3 {
        grid-column: span 3 / span 3
    }
    :is(.components-modal__frame) .md\:col-span-4 {
        grid-column: span 4 / span 4
    }
    :is(.components-modal__frame) .md\:col-span-5 {
        grid-column: span 5 / span 5
    }
    :is(.components-modal__frame) .md\:col-span-6 {
        grid-column: span 6 / span 6
    }
    :is(.components-modal__frame) .md\:col-span-7 {
        grid-column: span 7 / span 7
    }
    :is(.components-modal__frame) .md\:col-span-8 {
        grid-column: span 8 / span 8
    }
    :is(.components-modal__frame) .md\:col-span-9 {
        grid-column: span 9 / span 9
    }
    :is(.components-modal__frame) .md\:col-start-1 {
        grid-column-start: 1
    }
    :is(.components-modal__frame) .md\:col-start-10 {
        grid-column-start: 10
    }
    :is(.components-modal__frame) .md\:col-start-11 {
        grid-column-start: 11
    }
    :is(.components-modal__frame) .md\:col-start-12 {
        grid-column-start: 12
    }
    :is(.components-modal__frame) .md\:col-start-2 {
        grid-column-start: 2
    }
    :is(.components-modal__frame) .md\:col-start-3 {
        grid-column-start: 3
    }
    :is(.components-modal__frame) .md\:col-start-4 {
        grid-column-start: 4
    }
    :is(.components-modal__frame) .md\:col-start-5 {
        grid-column-start: 5
    }
    :is(.components-modal__frame) .md\:col-start-6 {
        grid-column-start: 6
    }
    :is(.components-modal__frame) .md\:col-start-7 {
        grid-column-start: 7
    }
    :is(.components-modal__frame) .md\:col-start-8 {
        grid-column-start: 8
    }
    :is(.components-modal__frame) .md\:col-start-9 {
        grid-column-start: 9
    }
    :is(.components-modal__frame) .md\:w-1\/10 {
        width: 10%
    }
    :is(.components-modal__frame) .md\:w-1\/11 {
        width: 9.0909091%
    }
    :is(.components-modal__frame) .md\:w-1\/12 {
        width: 8.3333333%
    }
    :is(.components-modal__frame) .md\:w-1\/2 {
        width: 50%
    }
    :is(.components-modal__frame) .md\:w-1\/3 {
        width: 33.333333%
    }
    :is(.components-modal__frame) .md\:w-1\/4 {
        width: 25%
    }
    :is(.components-modal__frame) .md\:w-1\/5 {
        width: 20%
    }
    :is(.components-modal__frame) .md\:w-1\/6 {
        width: 16.666667%
    }
    :is(.components-modal__frame) .md\:w-1\/7 {
        width: 14.2857143%
    }
    :is(.components-modal__frame) .md\:w-1\/8 {
        width: 12.5%
    }
    :is(.components-modal__frame) .md\:w-1\/9 {
        width: 11.1111111%
    }
    :is(.components-modal__frame) .md\:w-full {
        width: 100%
    }
    :is(.components-modal__frame) .md\:shrink {
        flex-shrink: 1
    }
    :is(.components-modal__frame) .md\:shrink-0 {
        flex-shrink: 0
    }
    :is(.components-modal__frame) .md\:grow {
        flex-grow: 1
    }
    :is(.components-modal__frame) .md\:grow-0 {
        flex-grow: 0
    }
    :is(.components-modal__frame) .md\:grid-flow-row {
        grid-auto-flow: row
    }
    :is(.components-modal__frame) .md\:grid-flow-col {
        grid-auto-flow: column
    }
    :is(.components-modal__frame) .md\:grid-flow-row-dense {
        grid-auto-flow: row dense
    }
    :is(.components-modal__frame) .md\:grid-flow-col-dense {
        grid-auto-flow: column dense
    }
    :is(.components-modal__frame) .md\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:grid-cols-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .md\:flex-row {
        flex-direction: row
    }
    :is(.components-modal__frame) .md\:flex-row-reverse {
        flex-direction: row-reverse
    }
    :is(.components-modal__frame) .md\:flex-col {
        flex-direction: column
    }
    :is(.components-modal__frame) .md\:flex-col-reverse {
        flex-direction: column-reverse
    }
    :is(.components-modal__frame) .md\:flex-wrap {
        flex-wrap: wrap
    }
    :is(.components-modal__frame) .md\:flex-wrap-reverse {
        flex-wrap: wrap-reverse
    }
    :is(.components-modal__frame) .md\:flex-nowrap {
        flex-wrap: nowrap
    }
    :is(.components-modal__frame) .md\:items-start {
        align-items: flex-start
    }
    :is(.components-modal__frame) .md\:items-end {
        align-items: flex-end
    }
    :is(.components-modal__frame) .md\:items-center {
        align-items: center
    }
    :is(.components-modal__frame) .md\:items-baseline {
        align-items: baseline
    }
    :is(.components-modal__frame) .md\:items-stretch {
        align-items: stretch
    }
    :is(.components-modal__frame) .md\:justify-normal {
        justify-content: normal
    }
    :is(.components-modal__frame) .md\:justify-start {
        justify-content: flex-start
    }
    :is(.components-modal__frame) .md\:justify-end {
        justify-content: flex-end
    }
    :is(.components-modal__frame) .md\:justify-center {
        justify-content: center
    }
    :is(.components-modal__frame) .md\:justify-between {
        justify-content: space-between
    }
    :is(.components-modal__frame) .md\:justify-around {
        justify-content: space-around
    }
    :is(.components-modal__frame) .md\:justify-evenly {
        justify-content: space-evenly
    }
    :is(.components-modal__frame) .md\:justify-stretch {
        justify-content: stretch
    }
    :is(.components-modal__frame) .md\:gap-2 {
        gap: 0.5rem
    }
    :is(.components-modal__frame) .md\:gap-4 {
        gap: 1rem
    }
    :is(.components-modal__frame) .md\:gap-5 {
        gap: 1.25rem
    }
    :is(.components-modal__frame) .md\:gap-6 {
        gap: 1.5rem
    }
    :is(.components-modal__frame) .md\:gap-8 {
        gap: 2rem
    }
    :is(.components-modal__frame) .md\:gap-x-2 {
        column-gap: 0.5rem
    }
    :is(.components-modal__frame) .md\:gap-x-4 {
        column-gap: 1rem
    }
    :is(.components-modal__frame) .md\:gap-x-5 {
        column-gap: 1.25rem
    }
    :is(.components-modal__frame) .md\:gap-x-6 {
        column-gap: 1.5rem
    }
    :is(.components-modal__frame) .md\:gap-x-8 {
        column-gap: 2rem
    }
    :is(.components-modal__frame) .md\:gap-y-2 {
        row-gap: 0.5rem
    }
    :is(.components-modal__frame) .md\:gap-y-4 {
        row-gap: 1rem
    }
    :is(.components-modal__frame) .md\:gap-y-5 {
        row-gap: 1.25rem
    }
    :is(.components-modal__frame) .md\:gap-y-6 {
        row-gap: 1.5rem
    }
    :is(.components-modal__frame) .md\:gap-y-8 {
        row-gap: 2rem
    }
    :is(.components-modal__frame) :is(.md\:space-x-1 > :not([hidden]) ~ :not([hidden])) {
        --tw-space-x-reverse: 0;
        margin-right: calc(0.25rem * var(--tw-space-x-reverse));
        margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)))
    }
    :is(.components-modal__frame) .md\:self-start {
        align-self: flex-start
    }
    :is(.components-modal__frame) .md\:self-end {
        align-self: flex-end
    }
    :is(.components-modal__frame) .md\:self-center {
        align-self: center
    }
    :is(.components-modal__frame) .md\:self-stretch {
        align-self: stretch
    }
    :is(.components-modal__frame) .md\:self-baseline {
        align-self: baseline
    }
    :is(.components-modal__frame) .md\:justify-self-auto {
        justify-self: auto
    }
    :is(.components-modal__frame) .md\:justify-self-start {
        justify-self: start
    }
    :is(.components-modal__frame) .md\:justify-self-end {
        justify-self: end
    }
    :is(.components-modal__frame) .md\:justify-self-center {
        justify-self: center
    }
    :is(.components-modal__frame) .md\:justify-self-stretch {
        justify-self: stretch
    }
    :is(.components-modal__frame) .md\:pr-\[10px\] {
        padding-right: 10px
    }
}
@media (min-width: 1024px) {
    :is(.components-modal__frame) .lg\:order-1 {
        order: 1
    }
    :is(.components-modal__frame) .lg\:order-10 {
        order: 10
    }
    :is(.components-modal__frame) .lg\:order-11 {
        order: 11
    }
    :is(.components-modal__frame) .lg\:order-12 {
        order: 12
    }
    :is(.components-modal__frame) .lg\:order-2 {
        order: 2
    }
    :is(.components-modal__frame) .lg\:order-3 {
        order: 3
    }
    :is(.components-modal__frame) .lg\:order-4 {
        order: 4
    }
    :is(.components-modal__frame) .lg\:order-5 {
        order: 5
    }
    :is(.components-modal__frame) .lg\:order-6 {
        order: 6
    }
    :is(.components-modal__frame) .lg\:order-7 {
        order: 7
    }
    :is(.components-modal__frame) .lg\:order-8 {
        order: 8
    }
    :is(.components-modal__frame) .lg\:order-9 {
        order: 9
    }
    :is(.components-modal__frame) .lg\:order-first {
        order: -9999
    }
    :is(.components-modal__frame) .lg\:order-last {
        order: 9999
    }
    :is(.components-modal__frame) .lg\:order-none {
        order: 0
    }
    :is(.components-modal__frame) .lg\:col-span-1 {
        grid-column: span 1 / span 1
    }
    :is(.components-modal__frame) .lg\:col-span-10 {
        grid-column: span 10 / span 10
    }
    :is(.components-modal__frame) .lg\:col-span-11 {
        grid-column: span 11 / span 11
    }
    :is(.components-modal__frame) .lg\:col-span-12 {
        grid-column: span 12 / span 12
    }
    :is(.components-modal__frame) .lg\:col-span-2 {
        grid-column: span 2 / span 2
    }
    :is(.components-modal__frame) .lg\:col-span-3 {
        grid-column: span 3 / span 3
    }
    :is(.components-modal__frame) .lg\:col-span-4 {
        grid-column: span 4 / span 4
    }
    :is(.components-modal__frame) .lg\:col-span-5 {
        grid-column: span 5 / span 5
    }
    :is(.components-modal__frame) .lg\:col-span-6 {
        grid-column: span 6 / span 6
    }
    :is(.components-modal__frame) .lg\:col-span-7 {
        grid-column: span 7 / span 7
    }
    :is(.components-modal__frame) .lg\:col-span-8 {
        grid-column: span 8 / span 8
    }
    :is(.components-modal__frame) .lg\:col-span-9 {
        grid-column: span 9 / span 9
    }
    :is(.components-modal__frame) .lg\:col-start-1 {
        grid-column-start: 1
    }
    :is(.components-modal__frame) .lg\:col-start-10 {
        grid-column-start: 10
    }
    :is(.components-modal__frame) .lg\:col-start-11 {
        grid-column-start: 11
    }
    :is(.components-modal__frame) .lg\:col-start-12 {
        grid-column-start: 12
    }
    :is(.components-modal__frame) .lg\:col-start-2 {
        grid-column-start: 2
    }
    :is(.components-modal__frame) .lg\:col-start-3 {
        grid-column-start: 3
    }
    :is(.components-modal__frame) .lg\:col-start-4 {
        grid-column-start: 4
    }
    :is(.components-modal__frame) .lg\:col-start-5 {
        grid-column-start: 5
    }
    :is(.components-modal__frame) .lg\:col-start-6 {
        grid-column-start: 6
    }
    :is(.components-modal__frame) .lg\:col-start-7 {
        grid-column-start: 7
    }
    :is(.components-modal__frame) .lg\:col-start-8 {
        grid-column-start: 8
    }
    :is(.components-modal__frame) .lg\:col-start-9 {
        grid-column-start: 9
    }
    :is(.components-modal__frame) .lg\:w-1\/10 {
        width: 10%
    }
    :is(.components-modal__frame) .lg\:w-1\/11 {
        width: 9.0909091%
    }
    :is(.components-modal__frame) .lg\:w-1\/12 {
        width: 8.3333333%
    }
    :is(.components-modal__frame) .lg\:w-1\/2 {
        width: 50%
    }
    :is(.components-modal__frame) .lg\:w-1\/3 {
        width: 33.333333%
    }
    :is(.components-modal__frame) .lg\:w-1\/4 {
        width: 25%
    }
    :is(.components-modal__frame) .lg\:w-1\/5 {
        width: 20%
    }
    :is(.components-modal__frame) .lg\:w-1\/6 {
        width: 16.666667%
    }
    :is(.components-modal__frame) .lg\:w-1\/7 {
        width: 14.2857143%
    }
    :is(.components-modal__frame) .lg\:w-1\/8 {
        width: 12.5%
    }
    :is(.components-modal__frame) .lg\:w-1\/9 {
        width: 11.1111111%
    }
    :is(.components-modal__frame) .lg\:w-\[47\.5rem\] {
        width: 47.5rem
    }
    :is(.components-modal__frame) .lg\:w-full {
        width: 100%
    }
    :is(.components-modal__frame) .lg\:shrink {
        flex-shrink: 1
    }
    :is(.components-modal__frame) .lg\:shrink-0 {
        flex-shrink: 0
    }
    :is(.components-modal__frame) .lg\:grow {
        flex-grow: 1
    }
    :is(.components-modal__frame) .lg\:grow-0 {
        flex-grow: 0
    }
    :is(.components-modal__frame) .lg\:grid-flow-row {
        grid-auto-flow: row
    }
    :is(.components-modal__frame) .lg\:grid-flow-col {
        grid-auto-flow: column
    }
    :is(.components-modal__frame) .lg\:grid-flow-row-dense {
        grid-auto-flow: row dense
    }
    :is(.components-modal__frame) .lg\:grid-flow-col-dense {
        grid-auto-flow: column dense
    }
    :is(.components-modal__frame) .lg\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-10 {
        grid-template-columns: repeat(10, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-11 {
        grid-template-columns: repeat(11, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:grid-cols-9 {
        grid-template-columns: repeat(9, minmax(0, 1fr))
    }
    :is(.components-modal__frame) .lg\:flex-row {
        flex-direction: row
    }
    :is(.components-modal__frame) .lg\:flex-row-reverse {
        flex-direction: row-reverse
    }
    :is(.components-modal__frame) .lg\:flex-col {
        flex-direction: column
    }
    :is(.components-modal__frame) .lg\:flex-col-reverse {
        flex-direction: column-reverse
    }
    :is(.components-modal__frame) .lg\:flex-wrap {
        flex-wrap: wrap
    }
    :is(.components-modal__frame) .lg\:flex-wrap-reverse {
        flex-wrap: wrap-reverse
    }
    :is(.components-modal__frame) .lg\:flex-nowrap {
        flex-wrap: nowrap
    }
    :is(.components-modal__frame) .lg\:items-start {
        align-items: flex-start
    }
    :is(.components-modal__frame) .lg\:items-end {
        align-items: flex-end
    }
    :is(.components-modal__frame) .lg\:items-center {
        align-items: center
    }
    :is(.components-modal__frame) .lg\:items-baseline {
        align-items: baseline
    }
    :is(.components-modal__frame) .lg\:items-stretch {
        align-items: stretch
    }
    :is(.components-modal__frame) .lg\:justify-normal {
        justify-content: normal
    }
    :is(.components-modal__frame) .lg\:justify-start {
        justify-content: flex-start
    }
    :is(.components-modal__frame) .lg\:justify-end {
        justify-content: flex-end
    }
    :is(.components-modal__frame) .lg\:justify-center {
        justify-content: center
    }
    :is(.components-modal__frame) .lg\:justify-between {
        justify-content: space-between
    }
    :is(.components-modal__frame) .lg\:justify-around {
        justify-content: space-around
    }
    :is(.components-modal__frame) .lg\:justify-evenly {
        justify-content: space-evenly
    }
    :is(.components-modal__frame) .lg\:justify-stretch {
        justify-content: stretch
    }
    :is(.components-modal__frame) .lg\:gap-2 {
        gap: 0.5rem
    }
    :is(.components-modal__frame) .lg\:gap-4 {
        gap: 1rem
    }
    :is(.components-modal__frame) .lg\:gap-5 {
        gap: 1.25rem
    }
    :is(.components-modal__frame) .lg\:gap-6 {
        gap: 1.5rem
    }
    :is(.components-modal__frame) .lg\:gap-8 {
        gap: 2rem
    }
    :is(.components-modal__frame) .lg\:gap-x-2 {
        column-gap: 0.5rem
    }
    :is(.components-modal__frame) .lg\:gap-x-4 {
        column-gap: 1rem
    }
    :is(.components-modal__frame) .lg\:gap-x-5 {
        column-gap: 1.25rem
    }
    :is(.components-modal__frame) .lg\:gap-x-6 {
        column-gap: 1.5rem
    }
    :is(.components-modal__frame) .lg\:gap-x-8 {
        column-gap: 2rem
    }
    :is(.components-modal__frame) .lg\:gap-y-2 {
        row-gap: 0.5rem
    }
    :is(.components-modal__frame) .lg\:gap-y-4 {
        row-gap: 1rem
    }
    :is(.components-modal__frame) .lg\:gap-y-5 {
        row-gap: 1.25rem
    }
    :is(.components-modal__frame) .lg\:gap-y-6 {
        row-gap: 1.5rem
    }
    :is(.components-modal__frame) .lg\:gap-y-8 {
        row-gap: 2rem
    }
    :is(.components-modal__frame) .lg\:self-start {
        align-self: flex-start
    }
    :is(.components-modal__frame) .lg\:self-end {
        align-self: flex-end
    }
    :is(.components-modal__frame) .lg\:self-center {
        align-self: center
    }
    :is(.components-modal__frame) .lg\:self-stretch {
        align-self: stretch
    }
    :is(.components-modal__frame) .lg\:self-baseline {
        align-self: baseline
    }
    :is(.components-modal__frame) .lg\:justify-self-auto {
        justify-self: auto
    }
    :is(.components-modal__frame) .lg\:justify-self-start {
        justify-self: start
    }
    :is(.components-modal__frame) .lg\:justify-self-end {
        justify-self: end
    }
    :is(.components-modal__frame) .lg\:justify-self-center {
        justify-self: center
    }
    :is(.components-modal__frame) .lg\:justify-self-stretch {
        justify-self: stretch
    }
}
:is(.components-modal__frame) .\[\&\:hover\:has\(\:disabled\)\]\:outline-field-border-disabled:hover:has(:disabled) {
    outline-color: #F3F4F6
}
:is(.components-modal__frame) .\[\&\:hover\:not\(\:focus\)\:not\(\:disabled\)\]\:outline-border-strong:hover:not(:focus):not(:disabled) {
    outline-color: #6B7280
}
:is(.components-modal__frame) :is(.\[\&\>\*\:not\(svg\)\]\:m-1>*:not(svg)) {
    margin: 0.25rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\:not\(svg\)\]\:mx-1>*:not(svg)) {
    margin-left: 0.25rem;
    margin-right: 0.25rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\:not\(svg\)\]\:my-0\.5>*:not(svg)) {
    margin-top: 0.125rem;
    margin-bottom: 0.125rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:box-border>*) {
    box-sizing: border-box
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-2xl>*) {
    font-size: 1.5rem;
    line-height: 2rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-base>*) {
    font-size: 1rem;
    line-height: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-lg>*) {
    font-size: 1.125rem;
    line-height: 1.75rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-sm>*) {
    font-size: 0.875rem;
    line-height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-xl>*) {
    font-size: 1.25rem;
    line-height: 1.75rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-xs>*) {
    font-size: 0.75rem;
    line-height: 1rem
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-field-color-disabled>*) {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-field-helper>*) {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-field-label>*) {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&\>\*\]\:text-support-error>*) {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&\>li\]\:pointer-events-auto>li) {
    pointer-events: auto
}
:is(.components-modal__frame) :is(.\[\&\>p\]\:m-0>p) {
    margin: 0px
}
:is(.components-modal__frame) :is(.\[\&\>p\]\:w-full>p) {
    width: 100%
}
:is(.components-modal__frame) :is(.\[\&\>span\:first-child\]\:shrink-0>span:first-child) {
    flex-shrink: 0
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:m-1>svg) {
    margin: 0.25rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:m-1\.5>svg) {
    margin: 0.375rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:block>svg) {
    display: block
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-12>svg) {
    width: 3rem;
    height: 3rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-3>svg) {
    width: 0.75rem;
    height: 0.75rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-3\.5>svg) {
    width: 0.875rem;
    height: 0.875rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-4>svg) {
    width: 1rem;
    height: 1rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-5>svg) {
    width: 1.25rem;
    height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:size-6>svg) {
    width: 1.5rem;
    height: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:h-3>svg) {
    height: 0.75rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:h-4>svg) {
    height: 1rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:h-5>svg) {
    height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:h-6>svg) {
    height: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:h-8>svg) {
    height: 2rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:w-3>svg) {
    width: 0.75rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:w-4>svg) {
    width: 1rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:w-5>svg) {
    width: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:w-6>svg) {
    width: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:w-8>svg) {
    width: 2rem
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:shrink-0>svg) {
    flex-shrink: 0
}
:is(.components-modal__frame) :is(.\[\&\>svg\]\:text-icon-interactive>svg) {
    --tw-text-opacity: 1;
    color: rgb(96 5 255 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&_\*\]\:box-border *) {
    box-sizing: border-box
}
:is(.components-modal__frame) :is(.\[\&_\*\]\:text-sm *) {
    font-size: 0.875rem;
    line-height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&_\*\]\:leading-5 *) {
    line-height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&_\.editor-content\>p\]\:text-base .editor-content>p) {
    font-size: 1rem;
    line-height: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&_\.editor-content\>p\]\:text-sm .editor-content>p) {
    font-size: 0.875rem;
    line-height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&_\.editor-content\>p\]\:text-xs .editor-content>p) {
    font-size: 0.75rem;
    line-height: 1rem
}
:is(.components-modal__frame) :is(.\[\&_\.editor-content\>p\]\:font-normal .editor-content>p) {
    font-weight: 400
}
:is(.components-modal__frame) :is(.\[\&_\.pointer-events-none\]\:text-base .pointer-events-none) {
    font-size: 1rem;
    line-height: 1.5rem
}
:is(.components-modal__frame) :is(.\[\&_\.pointer-events-none\]\:text-sm .pointer-events-none) {
    font-size: 0.875rem;
    line-height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&_\.pointer-events-none\]\:text-xs .pointer-events-none) {
    font-size: 0.75rem;
    line-height: 1rem
}
:is(.components-modal__frame) :is(.\[\&_\.pointer-events-none\]\:font-normal .pointer-events-none) {
    font-weight: 400
}
:is(.components-modal__frame) :is(.\[\&_p\]\:m-0 p) {
    margin: 0px
}
:is(.components-modal__frame) :is(.\[\&_p\]\:text-badge-color-disabled p) {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1))
}
:is(.components-modal__frame) :is(.\[\&_svg\]\:size-3 svg) {
    width: 0.75rem;
    height: 0.75rem
}
:is(.components-modal__frame) :is(.\[\&_svg\]\:size-4 svg) {
    width: 1rem;
    height: 1rem
}
:is(.components-modal__frame) :is(.\[\&_svg\]\:size-5 svg) {
    width: 1.25rem;
    height: 1.25rem
}
:is(.components-modal__frame) :is(.\[\&_svg\]\:size-6 svg) {
    width: 1.5rem;
    height: 1.5rem
}
PK�][�vO�Z�Z0ultimate-addons-for-gutenberg/dist/blocks.min.jsnu�[���(window.webpackJsonp_ultimate_addons_for_gutenberg=window.webpackJsonp_ultimate_addons_for_gutenberg||[]).push([[1],{161:function(e,t,a){},162:function(e,t,a){},163:function(e,t,a){},164:function(e,t,a){},165:function(e,t,a){},190:function(e,t,a){},194:function(e,t,a){},210:function(e,t,a){},211:function(e,t,a){},212:function(e,t,a){},213:function(e,t,a){},214:function(e,t,a){},215:function(e,t,a){},216:function(e,t,a){},217:function(e,t,a){},218:function(e,t,a){},219:function(e,t,a){},220:function(e,t,a){},221:function(e,t,a){},222:function(e,t,a){},355:function(e,t,a){},356:function(e,t,a){},357:function(e,t,a){},358:function(e,t,a){},359:function(e,t,a){},360:function(e,t,a){},361:function(e,t,a){},362:function(e,t,a){},363:function(e,t,a){},364:function(e,t,a){},365:function(e,t,a){},366:function(e,t,a){},367:function(e,t,a){},368:function(e,t,a){},369:function(e,t,a){},370:function(e,t,a){},371:function(e,t,a){},372:function(e,t,a){},373:function(e,t,a){},374:function(e,t,a){},375:function(e,t,a){},376:function(e,t,a){},40:function(e,t,a){},57:function(e,t,a){},73:function(e,t,a){},74:function(e,t,a){}}]),function(e){function t(t){for(var l,n,r=t[0],s=t[1],c=t[2],p=0,b=[];p<r.length;p++)n=r[p],Object.prototype.hasOwnProperty.call(i,n)&&i[n]&&b.push(i[n][0]),i[n]=0;for(l in s)Object.prototype.hasOwnProperty.call(s,l)&&(e[l]=s[l]);for(u&&u(t);b.length;)b.shift()();return o.push.apply(o,c||[]),a()}function a(){for(var e,t=0;t<o.length;t++){for(var a=o[t],l=!0,r=1;r<a.length;r++){var s=a[r];0!==i[s]&&(l=!1)}l&&(o.splice(t--,1),e=n(n.s=a[0]))}return e}var l={},i={0:0},o=[];function n(t){if(l[t])return l[t].exports;var a=l[t]={i:t,l:!1,exports:{}};return e[t].call(a.exports,a,a.exports,n),a.l=!0,a.exports}n.m=e,n.c=l,n.d=function(e,t,a){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:a})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(n.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var l in e)n.d(a,l,function(t){return e[t]}.bind(null,l));return a},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="";var r=window.webpackJsonp_ultimate_addons_for_gutenberg=window.webpackJsonp_ultimate_addons_for_gutenberg||[],s=r.push.bind(r);r.push=t,r=r.slice();for(var c=0;c<r.length;c++)t(r[c]);var u=s;o.push([377,1]),a()}([function(e,t){e.exports=window.wp.i18n},function(e,t){e.exports=window.wp.element},function(e,t){e.exports=window.wp.blockEditor},function(e,t){e.exports=window.wp.components},function(e,t,a){var l;!function(){"use strict";var a={}.hasOwnProperty;function i(){for(var e=[],t=0;t<arguments.length;t++){var l=arguments[t];if(l){var o=typeof l;if("string"===o||"number"===o)e.push(l);else if(Array.isArray(l)){if(l.length){var n=i.apply(null,l);n&&e.push(n)}}else if("object"===o)if(l.toString===Object.prototype.toString)for(var r in l)a.call(l,r)&&l[r]&&e.push(r);else e.push(l.toString())}}return e.join(" ")}e.exports?(i.default=i,e.exports=i):void 0===(l=function(){return i}.apply(t,[]))||(e.exports=l)}()},function(e,t){e.exports=window.React},function(e,t){e.exports=window.wp.hooks},function(e,t){e.exports=window.wp.data},function(e,t){e.exports=window.wp.blocks},function(e,t){e.exports=function(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.compose},function(e,t,a){"use strict";var l,i=function(){var e={};return function(t){if(void 0===e[t]){var a=document.querySelector(t);if(window.HTMLIFrameElement&&a instanceof window.HTMLIFrameElement)try{a=a.contentDocument.head}catch(e){a=null}e[t]=a}return e[t]}}(),o=[];function n(e){for(var t=-1,a=0;a<o.length;a++)if(o[a].identifier===e){t=a;break}return t}function r(e,t){for(var a={},l=[],i=0;i<e.length;i++){var r=e[i],s=t.base?r[0]+t.base:r[0],c=a[s]||0,u="".concat(s," ").concat(c);a[s]=c+1;var p=n(u),b={css:r[1],media:r[2],sourceMap:r[3]};-1!==p?(o[p].references++,o[p].updater(b)):o.push({identifier:u,updater:m(b,t),references:1}),l.push(u)}return l}function s(e){var t=document.createElement("style"),l=e.attributes||{};if(void 0===l.nonce){var o=a.nc;o&&(l.nonce=o)}if(Object.keys(l).forEach((function(e){t.setAttribute(e,l[e])})),"function"==typeof e.insert)e.insert(t);else{var n=i(e.insert||"head");if(!n)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");n.appendChild(t)}return t}var c,u=(c=[],function(e,t){return c[e]=t,c.filter(Boolean).join("\n")});function p(e,t,a,l){var i=a?"":l.media?"@media ".concat(l.media," {").concat(l.css,"}"):l.css;if(e.styleSheet)e.styleSheet.cssText=u(t,i);else{var o=document.createTextNode(i),n=e.childNodes;n[t]&&e.removeChild(n[t]),n.length?e.insertBefore(o,n[t]):e.appendChild(o)}}function b(e,t,a){var l=a.css,i=a.media,o=a.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(l+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=l;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(l))}}var d=null,g=0;function m(e,t){var a,l,i;if(t.singleton){var o=g++;a=d||(d=s(t)),l=p.bind(null,a,o,!1),i=p.bind(null,a,o,!0)}else a=s(t),l=b.bind(null,a,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(a)};return l(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;l(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=(void 0===l&&(l=Boolean(window&&document&&document.all&&!window.atob)),l));var a=r(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var l=0;l<a.length;l++){var i=n(a[l]);o[i].references--}for(var s=r(e,t),c=0;c<a.length;c++){var u=n(a[c]);0===o[u].references&&(o[u].updater(),o.splice(u,1))}a=s}}}},function(e,t,a){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var a=e(t);return t[2]?"@media ".concat(t[2]," {").concat(a,"}"):a})).join("")},t.i=function(e,a,l){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(l)for(var o=0;o<this.length;o++){var n=this[o][0];null!=n&&(i[n]=!0)}for(var r=0;r<e.length;r++){var s=[].concat(e[r]);l&&i[s[0]]||(a&&(s[2]?s[2]="".concat(a," and ").concat(s[2]):s[2]=a),t.push(s))}},t}},function(e,t){e.exports=function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.date},function(e,t,a){e.exports=a(192)()},function(e,t){e.exports=function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function a(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}e.exports=function(e,t,l){return t&&a(e.prototype,t),l&&a(e,l),e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(50).default,i=a(13);e.exports=function(e,t){return!t||"object"!==l(t)&&"function"!=typeof t?i(e):t},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function a(t){return e.exports=a=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)},e.exports.default=e.exports,e.exports.__esModule=!0,a(t)}e.exports=a,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(195);e.exports=function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&l(e,t)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.htmlEntities},function(e,t){e.exports=window.ReactDOM},function(e,t){function a(){return e.exports=a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e},e.exports.default=e.exports,e.exports.__esModule=!0,a.apply(this,arguments)}e.exports=a,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.apiFetch},function(e,t){e.exports=window.wp.primitives},function(e,t,a){var l=a(169),i="object"==typeof self&&self&&self.Object===Object&&self,o=l||i||Function("return this")();e.exports=o},function(e,t){e.exports=window.wp.coreData},function(e,t){e.exports=function(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}},function(e,t,a){var l=a(196);e.exports=function(e,t){if(null==e)return{};var a,i,o=l(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(i=0;i<n.length;i++)a=n[i],t.indexOf(a)>=0||Object.prototype.propertyIsEnumerable.call(e,a)&&(o[a]=e[a])}return o},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.blob},function(e,t,a){var l=a(230),i=a(235);e.exports=function(e,t){var a=i(e,t);return l(a)?a:void 0}},function(e,t){e.exports=function(e){return null!=e&&"object"==typeof e}},function(e,t){var a=Array.isArray;e.exports=a},function(e,t,a){var l=a(38),i=a(231),o=a(232),n=l?l.toStringTag:void 0;e.exports=function(e){return null==e?void 0===e?"[object Undefined]":"[object Null]":n&&n in Object(e)?i(e):o(e)}},function(e,t,a){var l=a(60),i=a(166);e.exports=function(e,t,a,o){var n=!a;a||(a={});for(var r=-1,s=t.length;++r<s;){var c=t[r],u=o?o(a[c],e[c],c,a,e):void 0;void 0===u&&(u=e[c]),n?i(a,c,u):l(a,c,u)}return a}},function(e,t,a){"use strict";var l;Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=((l=a(339))&&l.__esModule?l:{default:l}).default;t.default=i},function(e,t){var a;a=function(){return this}();try{a=a||new Function("return this")()}catch(e){"object"==typeof window&&(a=window)}e.exports=a},function(e,t,a){var l=a(26).Symbol;e.exports=l},function(e,t){e.exports=window.wp.url},,function(e,t,a){var l=a(168),i=a(174);e.exports=function(e){return null!=e&&i(e.length)&&!l(e)}},function(e,t){var a=Object.prototype;e.exports=function(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||a)}},function(e,t,a){var l=a(176),i=a(248),o=a(41);e.exports=function(e){return o(e)?l(e):i(e)}},function(e,t,a){var l=a(34),i=a(32);e.exports=function(e){return"symbol"==typeof e||i(e)&&"[object Symbol]"==l(e)}},function(e,t,a){var l=a(269),i=a(270),o=a(271),n=a(272),r=a(273);function s(e){var t=-1,a=null==e?0:e.length;for(this.clear();++t<a;){var l=e[t];this.set(l[0],l[1])}}s.prototype.clear=l,s.prototype.delete=i,s.prototype.get=o,s.prototype.has=n,s.prototype.set=r,e.exports=s},function(e,t,a){var l=a(61);e.exports=function(e,t){for(var a=e.length;a--;)if(l(e[a][0],t))return a;return-1}},function(e,t,a){var l=a(31)(Object,"create");e.exports=l},function(e,t,a){var l=a(287);e.exports=function(e,t){var a=e.__data__;return l(t)?a["string"==typeof t?"string":"hash"]:a.map}},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.canUseDOM=t.slidesOnLeft=t.slidesOnRight=t.siblingDirection=t.getTotalSlides=t.getPostClones=t.getPreClones=t.getTrackLeft=t.getTrackAnimateCSS=t.getTrackCSS=t.checkSpecKeys=t.getSlideCount=t.checkNavigable=t.getNavigableIndexes=t.swipeEnd=t.swipeMove=t.swipeStart=t.keyHandler=t.changeSlide=t.slideHandler=t.initializedState=t.extractObject=t.canGoNext=t.getSwipeDirection=t.getHeight=t.getWidth=t.lazySlidesOnRight=t.lazySlidesOnLeft=t.lazyEndIndex=t.lazyStartIndex=t.getRequiredLazySlides=t.getOnDemandLazySlides=void 0;var l=o(a(5)),i=o(a(22));function o(e){return e&&e.__esModule?e:{default:e}}function n(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){r(e,t,a[t])}))}return e}function r(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}var s=function(e){for(var t=[],a=c(e),l=u(e),i=a;i<l;i++)e.lazyLoadedList.indexOf(i)<0&&t.push(i);return t};t.getOnDemandLazySlides=s,t.getRequiredLazySlides=function(e){for(var t=[],a=c(e),l=u(e),i=a;i<l;i++)t.push(i);return t};var c=function(e){return e.currentSlide-p(e)};t.lazyStartIndex=c;var u=function(e){return e.currentSlide+b(e)};t.lazyEndIndex=u;var p=function(e){return e.centerMode?Math.floor(e.slidesToShow/2)+(parseInt(e.centerPadding)>0?1:0):0};t.lazySlidesOnLeft=p;var b=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+(parseInt(e.centerPadding)>0?1:0):e.slidesToShow};t.lazySlidesOnRight=b;var d=function(e){return e&&e.offsetWidth||0};t.getWidth=d;var g=function(e){return e&&e.offsetHeight||0};t.getHeight=g;var m=function(e){var t,a,l,i,o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t=e.startX-e.curX,a=e.startY-e.curY,l=Math.atan2(a,t),(i=Math.round(180*l/Math.PI))<0&&(i=360-Math.abs(i)),i<=45&&i>=0||i<=360&&i>=315?"left":i>=135&&i<=225?"right":!0===o?i>=35&&i<=135?"up":"down":"vertical"};t.getSwipeDirection=m;var y=function(e){var t=!0;return e.infinite||(e.centerMode&&e.currentSlide>=e.slideCount-1||e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1),t};t.canGoNext=y,t.extractObject=function(e,t){var a={};return t.forEach((function(t){return a[t]=e[t]})),a},t.initializedState=function(e){var t,a=l.default.Children.count(e.children),o=Math.ceil(d(i.default.findDOMNode(e.listRef))),n=Math.ceil(d(i.default.findDOMNode(e.trackRef)));if(e.vertical)t=o;else{var r=e.centerMode&&2*parseInt(e.centerPadding);"string"==typeof e.centerPadding&&"%"===e.centerPadding.slice(-1)&&(r*=o/100),t=Math.ceil((o-r)/e.slidesToShow)}var c=i.default.findDOMNode(e.listRef)&&g(i.default.findDOMNode(e.listRef).querySelector('[data-index="0"]')),u=c*e.slidesToShow,p=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(p=a-1-e.initialSlide);var b=e.lazyLoadedList||[],m=s({currentSlide:p,lazyLoadedList:b});b.concat(m);var y={slideCount:a,slideWidth:t,listWidth:o,trackWidth:n,currentSlide:p,slideHeight:c,listHeight:u,lazyLoadedList:b};return null===e.autoplaying&&e.autoplay&&(y.autoplaying="playing"),y},t.slideHandler=function(e){var t=e.waitForAnimate,a=e.animating,l=e.fade,i=e.infinite,o=e.index,r=e.slideCount,c=e.lazyLoadedList,u=e.lazyLoad,p=e.currentSlide,b=e.centerMode,d=e.slidesToScroll,g=e.slidesToShow,m=e.useCSS;if(t&&a)return{};var f,h,v,_=o,w={},k={};if(l){if(!i&&(o<0||o>=r))return{};o<0?_=o+r:o>=r&&(_=o-r),u&&c.indexOf(_)<0&&c.push(_),w={animating:!0,currentSlide:_,lazyLoadedList:c},k={animating:!1}}else f=_,_<0?(f=_+r,i?r%d!=0&&(f=r-r%d):f=0):!y(e)&&_>p?_=f=p:b&&_>=r?(_=i?r:r-1,f=i?0:r-1):_>=r&&(f=_-r,i?r%d!=0&&(f=0):f=r-g),h=S(n({},e,{slideIndex:_})),v=S(n({},e,{slideIndex:f})),i||(h===v&&(_=f),h=v),u&&c.concat(s(n({},e,{currentSlide:_}))),m?(w={animating:!0,currentSlide:f,trackStyle:C(n({},e,{left:h})),lazyLoadedList:c},k={animating:!1,currentSlide:f,trackStyle:T(n({},e,{left:v})),swipeLeft:null}):w={currentSlide:f,trackStyle:T(n({},e,{left:v})),lazyLoadedList:c};return{state:w,nextState:k}},t.changeSlide=function(e,t){var a,l,i,o,r=e.slidesToScroll,s=e.slidesToShow,c=e.slideCount,u=e.currentSlide,p=e.lazyLoad,b=e.infinite;if(a=c%r!=0?0:(c-u)%r,"previous"===t.message)o=u-(i=0===a?r:s-a),p&&!b&&(o=-1==(l=u-i)?c-1:l);else if("next"===t.message)o=u+(i=0===a?r:a),p&&!b&&(o=(u+r)%c+a);else if("dots"===t.message){if((o=t.index*t.slidesToScroll)===t.currentSlide)return null}else if("children"===t.message){if((o=t.index)===t.currentSlide)return null;if(b){var d=x(n({},e,{targetSlide:o}));o>t.currentSlide&&"left"===d?o-=c:o<t.currentSlide&&"right"===d&&(o+=c)}}else if("index"===t.message&&(o=Number(t.index))===t.currentSlide)return null;return o},t.keyHandler=function(e,t,a){return e.target.tagName.match("TEXTAREA|INPUT|SELECT")||!t?"":37===e.keyCode?a?"next":"previous":39===e.keyCode?a?"previous":"next":""},t.swipeStart=function(e,t,a){return"IMG"===e.target.tagName&&e.preventDefault(),!t||!a&&-1!==e.type.indexOf("mouse")?"":{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}},t.swipeMove=function(e,t){var a=t.scrolling,l=t.animating,i=t.vertical,o=t.swipeToSlide,r=t.verticalSwiping,s=t.rtl,c=t.currentSlide,u=t.edgeFriction,p=t.edgeDragged,b=t.onEdge,d=t.swiped,g=t.swiping,f=t.slideCount,h=t.slidesToScroll,v=t.infinite,_=t.touchObject,C=t.swipeEvent,w=t.listHeight,k=t.listWidth;if(!a){if(l)return e.preventDefault();i&&o&&r&&e.preventDefault();var P,x={},A=S(t);_.curX=e.touches?e.touches[0].pageX:e.clientX,_.curY=e.touches?e.touches[0].pageY:e.clientY,_.swipeLength=Math.round(Math.sqrt(Math.pow(_.curX-_.startX,2)));var G=Math.round(Math.sqrt(Math.pow(_.curY-_.startY,2)));if(!r&&!g&&G>10)return{scrolling:!0};r&&(_.swipeLength=G);var M=(s?-1:1)*(_.curX>_.startX?1:-1);r&&(M=_.curY>_.startY?1:-1);var R=Math.ceil(f/h),B=m(t.touchObject,r),U=_.swipeLength;return v||(0===c&&"right"===B||c+1>=R&&"left"===B||!y(t)&&"left"===B)&&(U=_.swipeLength*u,!1===p&&b&&(b(B),x.edgeDragged=!0)),!d&&C&&(C(B),x.swiped=!0),P=i?A+U*(w/k)*M:s?A-U*M:A+U*M,r&&(P=A+U*M),x=n({},x,{touchObject:_,swipeLeft:P,trackStyle:T(n({},t,{left:P}))}),Math.abs(_.curX-_.startX)<.8*Math.abs(_.curY-_.startY)||_.swipeLength>10&&(x.swiping=!0,e.preventDefault()),x}},t.swipeEnd=function(e,t){var a=t.dragging,l=t.swipe,i=t.touchObject,o=t.listWidth,r=t.touchThreshold,s=t.verticalSwiping,c=t.listHeight,u=t.currentSlide,p=t.swipeToSlide,b=t.scrolling,d=t.onSwipe;if(!a)return l&&e.preventDefault(),{};var g=s?c/r:o/r,y=m(i,s),f={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(b)return f;if(!i.swipeLength)return f;if(i.swipeLength>g){var _,T;switch(e.preventDefault(),d&&d(y),y){case"left":case"up":T=u+v(t),_=p?h(t,T):T,f.currentDirection=0;break;case"right":case"down":T=u-v(t),_=p?h(t,T):T,f.currentDirection=1;break;default:_=u}f.triggerSlideHandler=_}else{var w=S(t);f.trackStyle=C(n({},t,{left:w}))}return f};var f=function(e){for(var t=e.infinite?2*e.slideCount:e.slideCount,a=e.infinite?-1*e.slidesToShow:0,l=e.infinite?-1*e.slidesToShow:0,i=[];a<t;)i.push(a),a=l+e.slidesToScroll,l+=Math.min(e.slidesToScroll,e.slidesToShow);return i};t.getNavigableIndexes=f;var h=function(e,t){var a=f(e),l=0;if(t>a[a.length-1])t=a[a.length-1];else for(var i in a){if(t<a[i]){t=l;break}l=a[i]}return t};t.checkNavigable=h;var v=function(e){var t=e.centerMode?e.slideWidth*Math.floor(e.slidesToShow/2):0;if(e.swipeToSlide){var a,l=i.default.findDOMNode(e.listRef).querySelectorAll(".slick-slide");if(Array.from(l).every((function(l){if(e.vertical){if(l.offsetTop+g(l)/2>-1*e.swipeLeft)return a=l,!1}else if(l.offsetLeft-t+d(l)/2>-1*e.swipeLeft)return a=l,!1;return!0})),!a)return 0;var o=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(a.dataset.index-o)||1}return e.slidesToScroll};t.getSlideCount=v;var _=function(e,t){return t.reduce((function(t,a){return t&&e.hasOwnProperty(a)}),!0)?null:console.error("Keys Missing:",e)};t.checkSpecKeys=_;var T=function(e){var t,a;_(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]);var l=e.slideCount+2*e.slidesToShow;e.vertical?a=l*e.slideHeight:t=P(e)*e.slideWidth;var i={opacity:1,transition:"",WebkitTransition:""};return e.useTransform?i=n({},i,{WebkitTransform:e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",transform:e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",msTransform:e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)"}):e.vertical?i.top=e.left:i.left=e.left,e.fade&&(i={opacity:1}),t&&(i.width=t),a&&(i.height=a),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?i.marginTop=e.left+"px":i.marginLeft=e.left+"px"),i};t.getTrackCSS=T;var C=function(e){_(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=T(e);return e.useTransform?(t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase):e.vertical?t.transition="top "+e.speed+"ms "+e.cssEase:t.transition="left "+e.speed+"ms "+e.cssEase,t};t.getTrackAnimateCSS=C;var S=function(e){if(e.unslick)return 0;_(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t,a,l=e.slideIndex,o=e.trackRef,n=e.infinite,r=e.centerMode,s=e.slideCount,c=e.slidesToShow,u=e.slidesToScroll,p=e.slideWidth,b=e.listWidth,d=e.variableWidth,g=e.slideHeight,m=e.fade,y=e.vertical;if(m||1===e.slideCount)return 0;var f=0;if(n?(f=-w(e),s%u!=0&&l+u>s&&(f=-(l>s?c-(l-s):s%u)),r&&(f+=parseInt(c/2))):(s%u!=0&&l+u>s&&(f=c-s%u),r&&(f=parseInt(c/2))),t=y?l*g*-1+f*g:l*p*-1+f*p,!0===d){var h,v=i.default.findDOMNode(o);if(h=l+w(e),t=(a=v&&v.childNodes[h])?-1*a.offsetLeft:0,!0===r){h=n?l+w(e):l,a=v&&v.children[h],t=0;for(var T=0;T<h;T++)t-=v&&v.children[T]&&v.children[T].offsetWidth;t-=parseInt(e.centerPadding),t+=a&&(b-a.offsetWidth)/2}}return t};t.getTrackLeft=S;var w=function(e){return e.unslick||!e.infinite?0:e.variableWidth?e.slideCount:e.slidesToShow+(e.centerMode?1:0)};t.getPreClones=w;var k=function(e){return e.unslick||!e.infinite?0:e.slideCount};t.getPostClones=k;var P=function(e){return 1===e.slideCount?1:w(e)+e.slideCount+k(e)};t.getTotalSlides=P;var x=function(e){return e.targetSlide>e.currentSlide?e.targetSlide>e.currentSlide+A(e)?"left":"right":e.targetSlide<e.currentSlide-G(e)?"right":"left"};t.siblingDirection=x;var A=function(e){var t=e.slidesToShow,a=e.centerMode,l=e.rtl,i=e.centerPadding;if(a){var o=(t-1)/2+1;return parseInt(i)>0&&(o+=1),l&&t%2==0&&(o+=1),o}return l?0:t-1};t.slidesOnRight=A;var G=function(e){var t=e.slidesToShow,a=e.centerMode,l=e.rtl,i=e.centerPadding;if(a){var o=(t-1)/2+1;return parseInt(i)>0&&(o+=1),l||t%2!=0||(o+=1),o}return l?t-1:0};t.slidesOnLeft=G,t.canUseDOM=function(){return!("undefined"==typeof window||!window.document||!window.document.createElement)}},function(e,t){function a(t){return"function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?(e.exports=a=function(e){return typeof e},e.exports.default=e.exports,e.exports.__esModule=!0):(e.exports=a=function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e.exports.default=e.exports,e.exports.__esModule=!0),a(t)}e.exports=a,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=window.wp.plugins},function(e,t){e.exports=window.wp.domReady},function(e,t,a){"use strict";(function(e){function l(t,a){var l,i,o,n=void 0!==(l=void 0!==a?a:"undefined"!=typeof window?window:"undefined"!=typeof self?self:e).document&&l.document.attachEvent;if(!n){var r=(o=l.requestAnimationFrame||l.mozRequestAnimationFrame||l.webkitRequestAnimationFrame||function(e){return l.setTimeout(e,20)},function(e){return o(e)}),s=(i=l.cancelAnimationFrame||l.mozCancelAnimationFrame||l.webkitCancelAnimationFrame||l.clearTimeout,function(e){return i(e)}),c=function(e){var t=e.__resizeTriggers__,a=t.firstElementChild,l=t.lastElementChild,i=a.firstElementChild;l.scrollLeft=l.scrollWidth,l.scrollTop=l.scrollHeight,i.style.width=a.offsetWidth+1+"px",i.style.height=a.offsetHeight+1+"px",a.scrollLeft=a.scrollWidth,a.scrollTop=a.scrollHeight},u=function(e){if(!(e.target.className&&"function"==typeof e.target.className.indexOf&&e.target.className.indexOf("contract-trigger")<0&&e.target.className.indexOf("expand-trigger")<0)){var t=this;c(this),this.__resizeRAF__&&s(this.__resizeRAF__),this.__resizeRAF__=r((function(){(function(e){return e.offsetWidth!=e.__resizeLast__.width||e.offsetHeight!=e.__resizeLast__.height})(t)&&(t.__resizeLast__.width=t.offsetWidth,t.__resizeLast__.height=t.offsetHeight,t.__resizeListeners__.forEach((function(a){a.call(t,e)})))}))}},p=!1,b="",d="animationstart",g="Webkit Moz O ms".split(" "),m="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),y=l.document.createElement("fakeelement");if(void 0!==y.style.animationName&&(p=!0),!1===p)for(var f=0;f<g.length;f++)if(void 0!==y.style[g[f]+"AnimationName"]){b="-"+g[f].toLowerCase()+"-",d=m[f],p=!0;break}var h="resizeanim",v="@"+b+"keyframes "+h+" { from { opacity: 0; } to { opacity: 0; } } ",_=b+"animation: 1ms "+h+"; "}return{addResizeListener:function(e,a){if(n)e.attachEvent("onresize",a);else{if(!e.__resizeTriggers__){var i=e.ownerDocument,o=l.getComputedStyle(e);o&&"static"==o.position&&(e.style.position="relative"),function(e){if(!e.getElementById("detectElementResize")){var a=(v||"")+".resize-triggers { "+(_||"")+'visibility: hidden; opacity: 0; } .resize-triggers, .resize-triggers > div, .contract-trigger:before { content: " "; display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; z-index: -1; } .resize-triggers > div { background: #eee; overflow: auto; } .contract-trigger:before { width: 200%; height: 200%; }',l=e.head||e.getElementsByTagName("head")[0],i=e.createElement("style");i.id="detectElementResize",i.type="text/css",null!=t&&i.setAttribute("nonce",t),i.styleSheet?i.styleSheet.cssText=a:i.appendChild(e.createTextNode(a)),l.appendChild(i)}}(i),e.__resizeLast__={},e.__resizeListeners__=[],(e.__resizeTriggers__=i.createElement("div")).className="resize-triggers";var r='<div class="expand-trigger"><div></div></div><div class="contract-trigger"></div>';if(window.trustedTypes){var s=trustedTypes.createPolicy("react-virtualized-auto-sizer",{createHTML:function(){return r}});e.__resizeTriggers__.innerHTML=s.createHTML("")}else e.__resizeTriggers__.innerHTML=r;e.appendChild(e.__resizeTriggers__),c(e),e.addEventListener("scroll",u,!0),d&&(e.__resizeTriggers__.__animationListener__=function(t){t.animationName==h&&c(e)},e.__resizeTriggers__.addEventListener(d,e.__resizeTriggers__.__animationListener__))}e.__resizeListeners__.push(a)}},removeResizeListener:function(e,t){if(n)e.detachEvent("onresize",t);else if(e.__resizeListeners__.splice(e.__resizeListeners__.indexOf(t),1),!e.__resizeListeners__.length){e.removeEventListener("scroll",u,!0),e.__resizeTriggers__.__animationListener__&&(e.__resizeTriggers__.removeEventListener(d,e.__resizeTriggers__.__animationListener__),e.__resizeTriggers__.__animationListener__=null);try{e.__resizeTriggers__=!e.removeChild(e.__resizeTriggers__)}catch(e){}}}}}a.d(t,"a",(function(){return l}))}).call(this,a(37))},function(e,t,a){var l="undefined"!=typeof window,i=l?window.Masonry||a(223):null,o=l?a(228):null,n=a(229),r=a(250),s=a(261),c=a(266),u=a(15),p=a(5),b=a(336),d={enableResizableChildren:u.bool,disableImagesLoaded:u.bool,onImagesLoaded:u.func,updateOnEachImageLoad:u.bool,options:u.object,imagesLoadedOptions:u.object,elementType:u.string,onLayoutComplete:u.func,onRemoveComplete:u.func},g=b({masonry:!1,erd:void 0,latestKnownDomChildren:[],displayName:"MasonryComponent",imagesLoadedCancelRef:void 0,propTypes:d,getDefaultProps:function(){return{enableResizableChildren:!1,disableImagesLoaded:!1,updateOnEachImageLoad:!1,options:{},imagesLoadedOptions:{},className:"",elementType:"div",onLayoutComplete:function(){},onRemoveComplete:function(){}}},initializeMasonry:function(e){this.masonry&&!e||(this.masonry=new i(this.masonryContainer,this.props.options),this.props.onLayoutComplete&&this.masonry.on("layoutComplete",this.props.onLayoutComplete),this.props.onRemoveComplete&&this.masonry.on("removeComplete",this.props.onRemoveComplete),this.latestKnownDomChildren=this.getCurrentDomChildren())},getCurrentDomChildren:function(){var e=this.masonryContainer,t=this.props.options.itemSelector?e.querySelectorAll(this.props.options.itemSelector):e.children;return Array.prototype.slice.call(t)},diffDomChildren:function(){var e=!1,t=this.latestKnownDomChildren.filter((function(e){return!!e.parentNode}));t.length!==this.latestKnownDomChildren.length&&(e=!0);var a=this.getCurrentDomChildren(),l=t.filter((function(e){return!~a.indexOf(e)})),i=a.filter((function(e){return!~t.indexOf(e)})),o=0,n=i.filter((function(e){var t=o===a.indexOf(e);return t&&o++,t})),r=i.filter((function(e){return-1===n.indexOf(e)})),s=[];return 0===l.length&&(s=t.filter((function(e,t){return t!==a.indexOf(e)}))),this.latestKnownDomChildren=a,{old:t,new:a,removed:l,appended:r,prepended:n,moved:s,forceItemReload:e}},performLayout:function(){var e=this.diffDomChildren(),t=e.forceItemReload||e.moved.length>0;e.removed.length>0&&(this.props.enableResizableChildren&&e.removed.forEach(this.erd.removeAllListeners,this.erd),this.masonry.remove(e.removed),t=!0),e.appended.length>0&&(this.masonry.appended(e.appended),0===e.prepended.length&&(t=!0),this.props.enableResizableChildren&&e.appended.forEach(this.listenToElementResize,this)),e.prepended.length>0&&(this.masonry.prepended(e.prepended),this.props.enableResizableChildren&&e.prepended.forEach(this.listenToElementResize,this)),t&&this.masonry.reloadItems(),this.masonry.layout()},derefImagesLoaded:function(){this.imagesLoadedCancelRef(),this.imagesLoadedCancelRef=void 0},imagesLoaded:function(){if(!this.props.disableImagesLoaded){this.imagesLoadedCancelRef&&this.derefImagesLoaded();var e=this.props.updateOnEachImageLoad?"progress":"always",t=s(function(e){this.props.onImagesLoaded&&this.props.onImagesLoaded(e),this.masonry.layout()}.bind(this),100),a=o(this.masonryContainer,this.props.imagesLoadedOptions).on(e,t);this.imagesLoadedCancelRef=function(){a.off(e,t),t.cancel()}}},initializeResizableChildren:function(){this.props.enableResizableChildren&&(this.erd=r({strategy:"scroll"}),this.latestKnownDomChildren.forEach(this.listenToElementResize,this))},listenToElementResize:function(e){this.erd.listenTo(e,function(){this.masonry.layout()}.bind(this))},destroyErd:function(){this.erd&&this.latestKnownDomChildren.forEach(this.erd.uninstall,this.erd)},componentDidMount:function(){this.initializeMasonry(),this.initializeResizableChildren(),this.imagesLoaded()},componentDidUpdate:function(){this.performLayout(),this.imagesLoaded()},componentWillUnmount:function(){this.destroyErd(),this.props.onLayoutComplete&&this.masonry.off("layoutComplete",this.props.onLayoutComplete),this.props.onRemoveComplete&&this.masonry.off("removeComplete",this.props.onRemoveComplete),this.imagesLoadedCancelRef&&this.derefImagesLoaded(),this.masonry.destroy()},setRef:function(e){this.masonryContainer=e},render:function(){var e=c(this.props,Object.keys(d));return p.createElement(this.props.elementType,n({},e,{ref:this.setRef}),this.props.children)}});e.exports=g,e.exports.default=g},function(e,t){e.exports=window.wp.keyboardShortcuts},,,function(e,t,a){var l,i;"undefined"!=typeof window&&window,void 0===(i="function"==typeof(l=function(){"use strict";function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var a=this._events=this._events||{},l=a[e]=a[e]||[];return-1==l.indexOf(t)&&l.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var a=this._onceEvents=this._onceEvents||{};return(a[e]=a[e]||{})[t]=!0,this}},t.off=function(e,t){var a=this._events&&this._events[e];if(a&&a.length){var l=a.indexOf(t);return-1!=l&&a.splice(l,1),this}},t.emitEvent=function(e,t){var a=this._events&&this._events[e];if(a&&a.length){a=a.slice(0),t=t||[];for(var l=this._onceEvents&&this._onceEvents[e],i=0;i<a.length;i++){var o=a[i];l&&l[o]&&(this.off(e,o),delete l[o]),o.apply(this,t)}return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e})?l.call(t,a,t,e):l)||(e.exports=i)},function(e,t,a){var l,i;window,void 0===(i="function"==typeof(l=function(){"use strict";function e(e){var t=parseFloat(e);return-1==e.indexOf("%")&&!isNaN(t)&&t}var t="undefined"==typeof console?function(){}:function(e){console.error(e)},a=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],l=a.length;function i(e){var a=getComputedStyle(e);return a||t("Style returned "+a+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),a}var o,n=!1;return function t(r){if(function(){if(!n){n=!0;var a=document.createElement("div");a.style.width="200px",a.style.padding="1px 2px 3px 4px",a.style.borderStyle="solid",a.style.borderWidth="1px 2px 3px 4px",a.style.boxSizing="border-box";var l=document.body||document.documentElement;l.appendChild(a);var r=i(a);o=200==Math.round(e(r.width)),t.isBoxSizeOuter=o,l.removeChild(a)}}(),"string"==typeof r&&(r=document.querySelector(r)),r&&"object"==typeof r&&r.nodeType){var s=i(r);if("none"==s.display)return function(){for(var e={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},t=0;t<l;t++)e[a[t]]=0;return e}();var c={};c.width=r.offsetWidth,c.height=r.offsetHeight;for(var u=c.isBorderBox="border-box"==s.boxSizing,p=0;p<l;p++){var b=a[p],d=s[b],g=parseFloat(d);c[b]=isNaN(g)?0:g}var m=c.paddingLeft+c.paddingRight,y=c.paddingTop+c.paddingBottom,f=c.marginLeft+c.marginRight,h=c.marginTop+c.marginBottom,v=c.borderLeftWidth+c.borderRightWidth,_=c.borderTopWidth+c.borderBottomWidth,T=u&&o,C=e(s.width);!1!==C&&(c.width=C+(T?0:m+v));var S=e(s.height);return!1!==S&&(c.height=S+(T?0:y+_)),c.innerWidth=c.width-(m+v),c.innerHeight=c.height-(y+_),c.outerWidth=c.width+f,c.outerHeight=c.height+h,c}}})?l.call(t,a,t,e):l)||(e.exports=i)},function(e,t,a){var l=a(166),i=a(61),o=Object.prototype.hasOwnProperty;e.exports=function(e,t,a){var n=e[t];o.call(e,t)&&i(n,a)&&(void 0!==a||t in e)||l(e,t,a)}},function(e,t){e.exports=function(e,t){return e===t||e!=e&&t!=t}},function(e,t){e.exports=function(e){return e.webpackPolyfill||(e.deprecate=function(){},e.paths=[],e.children||(e.children=[]),Object.defineProperty(e,"loaded",{enumerable:!0,get:function(){return e.l}}),Object.defineProperty(e,"id",{enumerable:!0,get:function(){return e.i}}),e.webpackPolyfill=1),e}},function(e,t){e.exports=function(e){return function(t){return e(t)}}},function(e,t,a){(function(e){var l=a(169),i=t&&!t.nodeType&&t,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,n=o&&o.exports===i&&l.process,r=function(){try{return o&&o.require&&o.require("util").types||n&&n.binding&&n.binding("util")}catch(e){}}();e.exports=r}).call(this,a(62)(e))},function(e,t,a){var l=a(31)(a(26),"Map");e.exports=l},function(e,t,a){var l=a(176),i=a(294),o=a(41);e.exports=function(e){return o(e)?l(e,!0):i(e)}},function(e,t,a){var l=a(299),i=a(184),o=Object.prototype.propertyIsEnumerable,n=Object.getOwnPropertySymbols,r=n?function(e){return null==e?[]:(e=Object(e),l(n(e),(function(t){return o.call(e,t)})))}:i;e.exports=r},function(e,t){e.exports=function(e,t){for(var a=-1,l=t.length,i=e.length;++a<l;)e[i+a]=t[a];return e}},function(e,t,a){var l=a(179)(Object.getPrototypeOf,Object);e.exports=l},function(e,t,a){var l=a(302),i=a(65),o=a(303),n=a(304),r=a(305),s=a(34),c=a(170),u=c(l),p=c(i),b=c(o),d=c(n),g=c(r),m=s;(l&&"[object DataView]"!=m(new l(new ArrayBuffer(1)))||i&&"[object Map]"!=m(new i)||o&&"[object Promise]"!=m(o.resolve())||n&&"[object Set]"!=m(new n)||r&&"[object WeakMap]"!=m(new r))&&(m=function(e){var t=s(e),a="[object Object]"==t?e.constructor:void 0,l=a?c(a):"";if(l)switch(l){case u:return"[object DataView]";case p:return"[object Map]";case b:return"[object Promise]";case d:return"[object Set]";case g:return"[object WeakMap]"}return t}),e.exports=m},function(e,t,a){var l=a(308);e.exports=function(e){var t=new e.constructor(e.byteLength);return new l(t).set(new l(e)),t}},function(e,t,a){var l=a(33),i=a(320),o=a(321),n=a(324);e.exports=function(e,t){return l(e)?e:i(e,t)?[e]:o(n(e))}},,,function(e,t,a){var l=a(197),i=a(198),o=a(160),n=a(199);e.exports=function(e){return l(e)||i(e)||o(e)||n()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(200),i=a(201),o=a(160),n=a(202);e.exports=function(e,t){return l(e)||i(e,t)||o(e,t)||n()},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){"use strict";var l=a(208),i={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},n={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},r={};function s(e){return l.isMemo(e)?n:r[e.$$typeof]||i}r[l.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},r[l.Memo]=n;var c=Object.defineProperty,u=Object.getOwnPropertyNames,p=Object.getOwnPropertySymbols,b=Object.getOwnPropertyDescriptor,d=Object.getPrototypeOf,g=Object.prototype;e.exports=function e(t,a,l){if("string"!=typeof a){if(g){var i=d(a);i&&i!==g&&e(t,i,l)}var n=u(a);p&&(n=n.concat(p(a)));for(var r=s(t),m=s(a),y=0;y<n.length;++y){var f=n[y];if(!(o[f]||l&&l[f]||m&&m[f]||r&&r[f])){var h=b(a,f);try{c(t,f,h)}catch(e){}}}}return t}},function(e,t,a){var l;!function(){function i(e,t,a){return e.call.apply(e.bind,arguments)}function o(e,t,a){if(!e)throw Error();if(2<arguments.length){var l=Array.prototype.slice.call(arguments,2);return function(){var a=Array.prototype.slice.call(arguments);return Array.prototype.unshift.apply(a,l),e.apply(t,a)}}return function(){return e.apply(t,arguments)}}function n(e,t,a){return(n=Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?i:o).apply(null,arguments)}var r=Date.now||function(){return+new Date};function s(e,t){this.a=e,this.o=t||e,this.c=this.o.document}var c=!!window.FontFace;function u(e,t,a,l){if(t=e.c.createElement(t),a)for(var i in a)a.hasOwnProperty(i)&&("style"==i?t.style.cssText=a[i]:t.setAttribute(i,a[i]));return l&&t.appendChild(e.c.createTextNode(l)),t}function p(e,t,a){(e=e.c.getElementsByTagName(t)[0])||(e=document.documentElement),e.insertBefore(a,e.lastChild)}function b(e){e.parentNode&&e.parentNode.removeChild(e)}function d(e,t,a){t=t||[],a=a||[];for(var l=e.className.split(/\s+/),i=0;i<t.length;i+=1){for(var o=!1,n=0;n<l.length;n+=1)if(t[i]===l[n]){o=!0;break}o||l.push(t[i])}for(t=[],i=0;i<l.length;i+=1){for(o=!1,n=0;n<a.length;n+=1)if(l[i]===a[n]){o=!0;break}o||t.push(l[i])}e.className=t.join(" ").replace(/\s+/g," ").replace(/^\s+|\s+$/,"")}function g(e,t){for(var a=e.className.split(/\s+/),l=0,i=a.length;l<i;l++)if(a[l]==t)return!0;return!1}function m(e,t,a){function l(){r&&i&&o&&(r(n),r=null)}t=u(e,"link",{rel:"stylesheet",href:t,media:"all"});var i=!1,o=!0,n=null,r=a||null;c?(t.onload=function(){i=!0,l()},t.onerror=function(){i=!0,n=Error("Stylesheet failed to load"),l()}):setTimeout((function(){i=!0,l()}),0),p(e,"head",t)}function y(e,t,a,l){var i=e.c.getElementsByTagName("head")[0];if(i){var o=u(e,"script",{src:t}),n=!1;return o.onload=o.onreadystatechange=function(){n||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(n=!0,a&&a(null),o.onload=o.onreadystatechange=null,"HEAD"==o.parentNode.tagName&&i.removeChild(o))},i.appendChild(o),setTimeout((function(){n||(n=!0,a&&a(Error("Script load timeout")))}),l||5e3),o}return null}function f(){this.a=0,this.c=null}function h(e){return e.a++,function(){e.a--,_(e)}}function v(e,t){e.c=t,_(e)}function _(e){0==e.a&&e.c&&(e.c(),e.c=null)}function T(e){this.a=e||"-"}function C(e,t){this.c=e,this.f=4,this.a="n";var a=(t||"n4").match(/^([nio])([1-9])$/i);a&&(this.a=a[1],this.f=parseInt(a[2],10))}function S(e){var t=[];e=e.split(/,\s*/);for(var a=0;a<e.length;a++){var l=e[a].replace(/['"]/g,"");-1!=l.indexOf(" ")||/^\d/.test(l)?t.push("'"+l+"'"):t.push(l)}return t.join(",")}function w(e){return e.a+e.f}function k(e){var t="normal";return"o"===e.a?t="oblique":"i"===e.a&&(t="italic"),t}function P(e){var t=4,a="n",l=null;return e&&((l=e.match(/(normal|oblique|italic)/i))&&l[1]&&(a=l[1].substr(0,1).toLowerCase()),(l=e.match(/([1-9]00|normal|bold)/i))&&l[1]&&(/bold/i.test(l[1])?t=7:/[1-9]00/.test(l[1])&&(t=parseInt(l[1].substr(0,1),10)))),a+t}function x(e,t){this.c=e,this.f=e.o.document.documentElement,this.h=t,this.a=new T("-"),this.j=!1!==t.events,this.g=!1!==t.classes}function A(e){if(e.g){var t=g(e.f,e.a.c("wf","active")),a=[],l=[e.a.c("wf","loading")];t||a.push(e.a.c("wf","inactive")),d(e.f,a,l)}G(e,"inactive")}function G(e,t,a){e.j&&e.h[t]&&(a?e.h[t](a.c,w(a)):e.h[t]())}function M(){this.c={}}function R(e,t){this.c=e,this.f=t,this.a=u(this.c,"span",{"aria-hidden":"true"},this.f)}function B(e){p(e.c,"body",e.a)}function U(e){return"display:block;position:absolute;top:-9999px;left:-9999px;font-size:300px;width:auto;height:auto;line-height:normal;margin:0;padding:0;font-variant:normal;white-space:nowrap;font-family:"+S(e.c)+";font-style:"+k(e)+";font-weight:"+e.f+"00;"}function E(e,t,a,l,i,o){this.g=e,this.j=t,this.a=l,this.c=a,this.f=i||3e3,this.h=o||void 0}function O(e,t,a,l,i,o,n){this.v=e,this.B=t,this.c=a,this.a=l,this.s=n||"BESbswy",this.f={},this.w=i||3e3,this.u=o||null,this.m=this.j=this.h=this.g=null,this.g=new R(this.c,this.s),this.h=new R(this.c,this.s),this.j=new R(this.c,this.s),this.m=new R(this.c,this.s),e=U(e=new C(this.a.c+",serif",w(this.a))),this.g.a.style.cssText=e,e=U(e=new C(this.a.c+",sans-serif",w(this.a))),this.h.a.style.cssText=e,e=U(e=new C("serif",w(this.a))),this.j.a.style.cssText=e,e=U(e=new C("sans-serif",w(this.a))),this.m.a.style.cssText=e,B(this.g),B(this.h),B(this.j),B(this.m)}T.prototype.c=function(e){for(var t=[],a=0;a<arguments.length;a++)t.push(arguments[a].replace(/[\W_]+/g,"").toLowerCase());return t.join(this.a)},E.prototype.start=function(){var e=this.c.o.document,t=this,a=r(),l=new Promise((function(l,i){!function o(){r()-a>=t.f?i():e.fonts.load(function(e){return k(e)+" "+e.f+"00 300px "+S(e.c)}(t.a),t.h).then((function(e){1<=e.length?l():setTimeout(o,25)}),(function(){i()}))}()})),i=null,o=new Promise((function(e,a){i=setTimeout(a,t.f)}));Promise.race([o,l]).then((function(){i&&(clearTimeout(i),i=null),t.g(t.a)}),(function(){t.j(t.a)}))};var L={D:"serif",C:"sans-serif"},H=null;function j(){if(null===H){var e=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.exec(window.navigator.userAgent);H=!!e&&(536>parseInt(e[1],10)||536===parseInt(e[1],10)&&11>=parseInt(e[2],10))}return H}function F(e,t,a){for(var l in L)if(L.hasOwnProperty(l)&&t===e.f[L[l]]&&a===e.f[L[l]])return!0;return!1}function z(e,t){setTimeout(n((function(){b(this.g.a),b(this.h.a),b(this.j.a),b(this.m.a),t(this.a)}),e),0)}function D(e,t,a){this.c=e,this.a=t,this.f=0,this.m=this.j=!1,this.s=a}O.prototype.start=function(){this.f.serif=this.j.a.offsetWidth,this.f["sans-serif"]=this.m.a.offsetWidth,this.A=r(),function e(t){var a,l=t.g.a.offsetWidth,i=t.h.a.offsetWidth;(a=l===t.f.serif&&i===t.f["sans-serif"])||(a=j()&&F(t,l,i)),a?r()-t.A>=t.w?j()&&F(t,l,i)&&(null===t.u||t.u.hasOwnProperty(t.a.c))?z(t,t.v):z(t,t.B):function(t){setTimeout(n((function(){e(this)}),t),50)}(t):z(t,t.v)}(this)};var N=null;function I(e){0==--e.f&&e.j&&(e.m?((e=e.a).g&&d(e.f,[e.a.c("wf","active")],[e.a.c("wf","loading"),e.a.c("wf","inactive")]),G(e,"active")):A(e.a))}function V(e){this.j=e,this.a=new M,this.h=0,this.f=this.g=!0}function W(e,t,a,l,i){var o=0==--e.h;(e.f||e.g)&&setTimeout((function(){var e=i||null,r=l||{};if(0===a.length&&o)A(t.a);else{t.f+=a.length,o&&(t.j=o);var s,c=[];for(s=0;s<a.length;s++){var u=a[s],p=r[u.c],b=t.a,g=u;if(b.g&&d(b.f,[b.a.c("wf",g.c,w(g).toString(),"loading")]),G(b,"fontloading",g),b=null,null===N)if(window.FontFace){g=/Gecko.*Firefox\/(\d+)/.exec(window.navigator.userAgent);var m=/OS X.*Version\/10\..*Safari/.exec(window.navigator.userAgent)&&/Apple/.exec(window.navigator.vendor);N=g?42<parseInt(g[1],10):!m}else N=!1;b=N?new E(n(t.g,t),n(t.h,t),t.c,u,t.s,p):new O(n(t.g,t),n(t.h,t),t.c,u,t.s,e,p),c.push(b)}for(s=0;s<c.length;s++)c[s].start()}}),0)}function q(e,t){this.c=e,this.a=t}function Z(e,t){this.c=e,this.a=t}function $(e,t){this.c=e||Y,this.a=[],this.f=[],this.g=t||""}D.prototype.g=function(e){var t=this.a;t.g&&d(t.f,[t.a.c("wf",e.c,w(e).toString(),"active")],[t.a.c("wf",e.c,w(e).toString(),"loading"),t.a.c("wf",e.c,w(e).toString(),"inactive")]),G(t,"fontactive",e),this.m=!0,I(this)},D.prototype.h=function(e){var t=this.a;if(t.g){var a=g(t.f,t.a.c("wf",e.c,w(e).toString(),"active")),l=[],i=[t.a.c("wf",e.c,w(e).toString(),"loading")];a||l.push(t.a.c("wf",e.c,w(e).toString(),"inactive")),d(t.f,l,i)}G(t,"fontinactive",e),I(this)},V.prototype.load=function(e){this.c=new s(this.j,e.context||this.j),this.g=!1!==e.events,this.f=!1!==e.classes,function(e,t,a){var l=[],i=a.timeout;!function(e){e.g&&d(e.f,[e.a.c("wf","loading")]),G(e,"loading")}(t),l=function(e,t,a){var l,i=[];for(l in t)if(t.hasOwnProperty(l)){var o=e.c[l];o&&i.push(o(t[l],a))}return i}(e.a,a,e.c);var o=new D(e.c,t,i);for(e.h=l.length,t=0,a=l.length;t<a;t++)l[t].load((function(t,a,l){W(e,o,t,a,l)}))}(this,new x(this.c,e),e)},q.prototype.load=function(e){var t=this,a=t.a.projectId,l=t.a.version;if(a){var i=t.c.o;y(this.c,(t.a.api||"https://fast.fonts.net/jsapi")+"/"+a+".js"+(l?"?v="+l:""),(function(l){l?e([]):(i["__MonotypeConfiguration__"+a]=function(){return t.a},function t(){if(i["__mti_fntLst"+a]){var l,o=i["__mti_fntLst"+a](),n=[];if(o)for(var r=0;r<o.length;r++){var s=o[r].fontfamily;null!=o[r].fontStyle&&null!=o[r].fontWeight?(l=o[r].fontStyle+o[r].fontWeight,n.push(new C(s,l))):n.push(new C(s))}e(n)}else setTimeout((function(){t()}),50)}())})).id="__MonotypeAPIScript__"+a}else e([])},Z.prototype.load=function(e){var t,a,l=this.a.urls||[],i=this.a.families||[],o=this.a.testStrings||{},n=new f;for(t=0,a=l.length;t<a;t++)m(this.c,l[t],h(n));var r=[];for(t=0,a=i.length;t<a;t++)if((l=i[t].split(":"))[1])for(var s=l[1].split(","),c=0;c<s.length;c+=1)r.push(new C(l[0],s[c]));else r.push(new C(l[0]));v(n,(function(){e(r,o)}))};var Y="https://fonts.googleapis.com/css";function K(e){this.f=e,this.a=[],this.c={}}var J={latin:"BESbswy","latin-ext":"çöüğş",cyrillic:"йяЖ",greek:"αβΣ",khmer:"កខគ",Hanuman:"កខគ"},X={thin:"1",extralight:"2","extra-light":"2",ultralight:"2","ultra-light":"2",light:"3",regular:"4",book:"4",medium:"5","semi-bold":"6",semibold:"6","demi-bold":"6",demibold:"6",bold:"7","extra-bold":"8",extrabold:"8","ultra-bold":"8",ultrabold:"8",black:"9",heavy:"9",l:"3",r:"4",b:"7"},Q={i:"i",italic:"i",n:"n",normal:"n"},ee=/^(thin|(?:(?:extra|ultra)-?)?light|regular|book|medium|(?:(?:semi|demi|extra|ultra)-?)?bold|black|heavy|l|r|b|[1-9]00)?(n|i|normal|italic)?$/;function te(e,t){this.c=e,this.a=t}var ae={Arimo:!0,Cousine:!0,Tinos:!0};function le(e,t){this.c=e,this.a=t}function ie(e,t){this.c=e,this.f=t,this.a=[]}te.prototype.load=function(e){var t=new f,a=this.c,l=new $(this.a.api,this.a.text),i=this.a.families;!function(e,t){for(var a=t.length,l=0;l<a;l++){var i=t[l].split(":");3==i.length&&e.f.push(i.pop());var o="";2==i.length&&""!=i[1]&&(o=":"),e.a.push(i.join(o))}}(l,i);var o=new K(i);!function(e){for(var t=e.f.length,a=0;a<t;a++){var l=e.f[a].split(":"),i=l[0].replace(/\+/g," "),o=["n4"];if(2<=l.length){var n;if(n=[],r=l[1])for(var r,s=(r=r.split(",")).length,c=0;c<s;c++){var u;if((u=r[c]).match(/^[\w-]+$/))if(null==(p=ee.exec(u.toLowerCase())))u="";else{if(u=null==(u=p[2])||""==u?"n":Q[u],null==(p=p[1])||""==p)p="4";else var p=X[p]||(isNaN(p)?"4":p.substr(0,1));u=[u,p].join("")}else u="";u&&n.push(u)}0<n.length&&(o=n),3==l.length&&(n=[],0<(l=(l=l[2])?l.split(","):n).length&&(l=J[l[0]])&&(e.c[i]=l))}for(e.c[i]||(l=J[i])&&(e.c[i]=l),l=0;l<o.length;l+=1)e.a.push(new C(i,o[l]))}}(o),m(a,function(e){if(0==e.a.length)throw Error("No fonts to load!");if(-1!=e.c.indexOf("kit="))return e.c;for(var t=e.a.length,a=[],l=0;l<t;l++)a.push(e.a[l].replace(/ /g,"+"));return t=e.c+"?family="+a.join("%7C"),0<e.f.length&&(t+="&subset="+e.f.join(",")),0<e.g.length&&(t+="&text="+encodeURIComponent(e.g)),t}(l),h(t)),v(t,(function(){e(o.a,o.c,ae)}))},le.prototype.load=function(e){var t=this.a.id,a=this.c.o;t?y(this.c,(this.a.api||"https://use.typekit.net")+"/"+t+".js",(function(t){if(t)e([]);else if(a.Typekit&&a.Typekit.config&&a.Typekit.config.fn){t=a.Typekit.config.fn;for(var l=[],i=0;i<t.length;i+=2)for(var o=t[i],n=t[i+1],r=0;r<n.length;r++)l.push(new C(o,n[r]));try{a.Typekit.load({events:!1,classes:!1,async:!0})}catch(e){}e(l)}}),2e3):e([])},ie.prototype.load=function(e){var t=this.f.id,a=this.c.o,l=this;t?(a.__webfontfontdeckmodule__||(a.__webfontfontdeckmodule__={}),a.__webfontfontdeckmodule__[t]=function(t,a){for(var i=0,o=a.fonts.length;i<o;++i){var n=a.fonts[i];l.a.push(new C(n.name,P("font-weight:"+n.weight+";font-style:"+n.style)))}e(l.a)},y(this.c,(this.f.api||"https://f.fontdeck.com/s/css/js/")+function(e){return e.o.location.hostname||e.a.location.hostname}(this.c)+"/"+t+".js",(function(t){t&&e([])}))):e([])};var oe=new V(window);oe.a.c.custom=function(e,t){return new Z(t,e)},oe.a.c.fontdeck=function(e,t){return new ie(t,e)},oe.a.c.monotype=function(e,t){return new q(t,e)},oe.a.c.typekit=function(e,t){return new le(t,e)},oe.a.c.google=function(e,t){return new te(t,e)};var ne={load:n(oe.load,oe)};void 0===(l=function(){return ne}.call(t,a,t,e))||(e.exports=l)}()},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.components-panel[data-uagb-tab] {\n  z-index: 99;\n  margin-top: 1px; }\n  .components-panel[data-uagb-tab]:not([data-uagb-tab="advance"]) .components-panel__body.block-editor-block-inspector__advanced,\n  .components-panel[data-uagb-tab]:not([data-uagb-tab="advance"]) .components-panel__body.editor-block-inspector__advanced.block-editor-block-inspector__advanced,\n  .components-panel[data-uagb-tab]:not([data-uagb-tab="advance"]) .block-editor-block-inspector > div > .components-panel__body {\n    display: none; }\n  .components-panel[data-uagb-tab]:not([data-uagb-tab="advance"]) .block-editor-block-inspector > div > .components-panel__body.uagb-dynamic-content-wrap {\n    display: block;\n    border-bottom: 1px solid #e0e0e0 !important; }\n  .components-panel[data-uagb-tab] .block-editor-block-card {\n    padding-bottom: 25px;\n    position: relative;\n    z-index: 1;\n    overflow: hidden; }\n    .components-panel[data-uagb-tab] .block-editor-block-card::before {\n      content: "";\n      position: absolute;\n      top: 0;\n      left: -16px;\n      right: -16px;\n      bottom: 0;\n      background: #fff;\n      z-index: -1; }\n  .components-panel[data-uagb-tab] .components-panel__body.edit-post-settings-sidebar__panel-block .block-editor-block-card {\n    overflow: unset; }\n    .components-panel[data-uagb-tab] .components-panel__body.edit-post-settings-sidebar__panel-block .block-editor-block-card::before {\n      top: -16px; }\n\n[dir="rtl"] .uagb-inspector-tabs {\n  direction: rtl; }\n  [dir="rtl"] .uagb-inspector-tabs > div:first-child.uagb-active::after {\n    border-left: 1px solid #d6d9dd;\n    border-right: 0; }\n  [dir="rtl"] .uagb-inspector-tabs > div:last-child.uagb-active::after {\n    border-left: 0;\n    border-right: 1px solid #d6d9dd; }\n\n.uagb-inspector-tabs {\n  display: flex;\n  position: relative;\n  background: #fff;\n  z-index: 9;\n  height: 65px; }\n  .uagb-inspector-tabs > div {\n    flex: 1;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: center;\n    position: relative;\n    background: #fff;\n    cursor: pointer; }\n    .uagb-inspector-tabs > div::after, .uagb-inspector-tabs > div::before {\n      content: "";\n      position: absolute;\n      display: block;\n      top: 0;\n      left: 0;\n      width: 100%; }\n    .uagb-inspector-tabs > div::after {\n      border-bottom: 1px solid #d6d9dd;\n      height: 100%;\n      z-index: 1; }\n    .uagb-inspector-tabs > div:first-child.uagb-active::after {\n      border-left: 0;\n      /* Below CSS used to show border at bottom of the tabs. */\n      box-shadow: inset 0 -3px 0 0 #007cba;\n      color: #007cba;\n      /* End here. */ }\n    .uagb-inspector-tabs > div:last-child.uagb-active::after {\n      border-right: 0;\n      /* Below CSS used to show border at bottom of the tabs. */\n      box-shadow: inset 0 -3px 0 0 #007cba;\n      color: #007cba;\n      /* End here. */ }\n    .uagb-inspector-tabs > div.uagb-active::after {\n      border-left: 1px solid #d6d9dd;\n      border-right: 1px solid #d6d9dd;\n      border-bottom: 0;\n      /* Below CSS used to show border at bottom of the tabs. */\n      box-shadow: inset 0 -3px 0 0 #007cba;\n      color: #007cba;\n      /* End here. */ }\n    .uagb-inspector-tabs > div.uagb-active::before {\n      height: 0;\n      background-color: transparent;\n      z-index: 2; }\n    .uagb-inspector-tabs > div h5 {\n      margin: 6px 0 0;\n      font-size: 13px;\n      font-weight: 400;\n      line-height: 1.2; }\n    .uagb-inspector-tabs > div h5,\n    .uagb-inspector-tabs > div svg {\n      z-index: 2;\n      fill: #585858; }\n    .uagb-inspector-tabs > div.uagb-active h5 {\n      color: #0085ba; }\n    .uagb-inspector-tabs > div.uagb-active path {\n      fill: #0085ba; }\n\n.components-panel .components-panel__body .uagb-inspector-tabs-container {\n  position: static !important;\n  margin-left: -16px;\n  margin-right: -16px;\n  border-top: 0 !important;\n  top: 0 !important; }\n\n.uagb-inspector-tabs-container {\n  position: sticky;\n  top: -3px;\n  z-index: 9;\n  border-top: calc(0.1em + 1px) solid #f2f4f5;\n  direction: initial; }\n\n.customize-widgets-layout__inspector .uagb-inspector-tabs-container {\n  top: -12px;\n  margin-left: -12px;\n  margin-right: -12px; }\n\n.uagb-inspector-tab .components-panel__body:first-child,\n.edit-post-settings-sidebar__panel-block .uagb-inspector-tab .components-panel__body:first-child {\n  margin-top: 0;\n  border-top: none !important; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* Multi Button Gap */\n/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-multi-button-button-group {\n  display: flex !important;\n  width: 100%; }\n  .uagb-multi-button-button-group .uagb-multi-button {\n    width: 100%;\n    justify-content: center;\n    height: unset;\n    padding: 6px;\n    line-height: 16px;\n    min-height: 30px; }\n    .uagb-multi-button-button-group .uagb-multi-button:first-child {\n      -webkit-border-radius: 3px 0 0 3px;\n      -moz-border-radius: 3px 0 0 3px;\n      border-radius: 3px 0 0 3px; }\n    .uagb-multi-button-button-group .uagb-multi-button:last-child {\n      -webkit-border-radius: 0 3px 3px 0;\n      -moz-border-radius: 0 3px 3px 0;\n      border-radius: 0 3px 3px 0; }\n    .uagb-multi-button-button-group .uagb-multi-button.is-secondary:focus:not(:disabled), .uagb-multi-button-button-group .uagb-multi-button.is-pressed:focus:not(:disabled) {\n      border: unset; }\n    .uagb-multi-button-button-group .uagb-multi-button.is-pressed {\n      box-shadow: inset 0 0 0 1px #e6e7e9; }\n      .uagb-multi-button-button-group .uagb-multi-button.is-pressed:hover, .uagb-multi-button-button-group .uagb-multi-button.is-pressed:not(:hover) {\n        box-shadow: inset 0 0 0 1px #e6e7e9; }\n  .uagb-multi-button-button-group button.uagb-multi-button.is-secondary {\n    color: #50575e;\n    box-shadow: inset 0 0 0 1px #e6e7e9; }\n  .uagb-multi-button-button-group .uagb-multi-button.is-secondary:not(:disabled),\n  .uagb-multi-button-button-group .uagb-multi-button-group[aria-label="Gap"] .uagb-multi-button.is-tertiary:not(:disabled) {\n    color: #50575e;\n    background-color: #ffffff; }\n    .uagb-multi-button-button-group .uagb-multi-button.is-secondary:not(:disabled):hover,\n    .uagb-multi-button-button-group .uagb-multi-button-group[aria-label="Gap"] .uagb-multi-button.is-tertiary:not(:disabled):hover {\n      color: #1d2327;\n      background-color: #ffffff;\n      box-shadow: inset 0 0 0 1px #e6e7e9; }\n  .uagb-multi-button-button-group .uagb-multi-button.is-secondary,\n  .uagb-multi-button-button-group .uagb-multi-button.is-tertiary {\n    color: #50575e; }\n  .uagb-multi-button-button-group .uagb-multi-button.is-secondary:active:not(:disabled),\n  .uagb-multi-button-button-group .uagb-multi-button-grou[aria-label="Gap"] .uagb-multi-button.is-tertiary:active:not(:disabled) {\n    background: #ffffff;\n    box-shadow: inset 0 0 0 1px #e6e7e9; }\n  .uagb-multi-button-button-group button.uagb-multi-button {\n    font-size: 13px;\n    font-weight: 400; }\n  .uagb-multi-button-button-group svg {\n    width: 18px;\n    fill: #50575e; }\n    .uagb-multi-button-button-group svg path {\n      fill: inherit; }\n\n.uagb-multi-buttons-control.uag-multibutton-icons .uagb-multi-button {\n  padding: 3px; }\n\n.spectra-multi-buttons__color-scheme--primary button.uagb-multi-button.is-primary.is-primary {\n  color: #007cba;\n  background-color: #dcf2ff;\n  border-color: #cde9f9;\n  box-shadow: inset 0 0 0 1px #cde9f9; }\n  .spectra-multi-buttons__color-scheme--primary button.uagb-multi-button.is-primary.is-primary svg {\n    fill: #007cba; }\n\n.spectra-multi-buttons__color-scheme--secondary button.uagb-multi-button.is-primary.is-primary {\n  color: #ffffff;\n  background-color: #959595;\n  border-color: #959595;\n  box-shadow: inset 0 0 0 1px #959595; }\n  .spectra-multi-buttons__color-scheme--secondary button.uagb-multi-button.is-primary.is-primary svg {\n    fill: #ffffff; }\n\n.spectra-multi-buttons__layout--inline {\n  align-items: center;\n  display: grid;\n  grid-template-columns: 50% 50%; }\n  .spectra-multi-buttons__layout--inline .uagb-control__header,\n  .spectra-multi-buttons__layout--inline .uag-control-label {\n    margin-bottom: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uag-range-control .uagb-range-control__mobile-controls {\n  display: flex;\n  width: 100%;\n  align-items: center; }\n  .uag-range-control .uagb-range-control__mobile-controls .components-base-control.components-range-control {\n    -webkit-tap-highlight-color: transparent;\n    box-sizing: border-box;\n    align-items: flex-start;\n    -webkit-box-pack: start;\n    justify-content: flex-start;\n    margin-right: 20px;\n    position: relative;\n    width: 100%;\n    margin-bottom: 0;\n    max-height: 30px; }\n    .uag-range-control .uagb-range-control__mobile-controls .components-base-control.components-range-control .components-range-control__tooltip {\n      left: 45%; }\n  .uag-range-control .uagb-range-control__mobile-controls .components-input-control__container {\n    flex: 0 0 0%;\n    width: 100%; }\n  .uag-range-control .uagb-range-control__mobile-controls .components-number-control {\n    width: 35%;\n    margin-left: 10px; }\n    .uag-range-control .uagb-range-control__mobile-controls .components-number-control .components-input-control__input {\n      padding: 0 1px 0 6px !important;\n      text-align: left;\n      font-size: 14px; }\n  .uag-range-control .uagb-range-control__mobile-controls .components-range-control__marks {\n    top: 13px; }\n\n/*.components-panel__body {\n\t.components-font-size-picker__controls {\n\t\talign-items: center;\n\t\tdisplay: flex;\n\t\tjustify-content: space-between;\n\t\tmargin-bottom: 0;\n\t\tmax-width: 248px;\n\t}\n\t.components-font-size-picker__select {\n\t\tmargin-bottom: 0 !important;\n\t\twidth: 115px;\n\t}\n\t.components-font-size-picker__select .components-base-control__field {\n\t\tmargin-bottom: 0;\n\t}\n\t.components-font-size-picker__select .components-base-control__field {\n\t\tmargin-bottom: 0;\n\t}\n\t.components-font-size-picker__select .components-base-control__label {\n\t\tdisplay: none;\n\t\tmargin-bottom: 5px;\n\t\tvisibility: hidden;\n\t}\n\tinput[type="number"].uagb-range-control__number {\n\t\tborder-left: 1px solid #d5dadf;\n\t\t-webkit-border-radius: 3px 0 0 3px;\n\t\tborder-right: 1px solid #d5dadf;\n\t\tborder-color: #d5dadf;\n\t}\n}*/\n/*.components-panel__body {\n\t.uagb-range-control__mobile-controls-item {\n\t\tbox-shadow: unset !important;\n\t\tborder-radius: unset;\n\t\t&.uagb-range-control__mobile-controls-item--padding.components-button.is-secondary:active:not(:disabled),\n\t\t.uagb-range-control__mobile-controls-item.uagb-range-control__mobile-controls-item--padding.components-button.is-tertiary:active:not(:disabled) {\n\t\t\tbackground: #fff;\n\t\t\tcolor: black;\n\t\t}\n\t}\n}*/\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-advanced-color-settings-container {\n  display: flex;\n  align-items: center; }\n  .uagb-advanced-color-settings-container .uagb-beside-color-click {\n    display: flex;\n    align-items: center; }\n  .uagb-advanced-color-settings-container .uagb-color-icon-indicate {\n    height: auto;\n    position: relative;\n    transform: scale(1);\n    transition: transform 0.1s ease;\n    border-radius: 50%;\n    padding: 0; }\n  .uagb-advanced-color-settings-container .uagb-has-alpha {\n    background-image: linear-gradient(45deg, #ddd 25%, transparent 0), linear-gradient(-45deg, #ddd 25%, transparent 0), linear-gradient(45deg, transparent 75%, #ddd 0), linear-gradient(-45deg, transparent 75%, #ddd 0);\n    background-size: 10px 10px;\n    background-position: 0 0, 0 5px, 5px -5px, -5px 0; }\n  .uagb-advanced-color-settings-container .uagb-beside-color-label {\n    flex-grow: 1;\n    margin: 0; }\n  .uagb-advanced-color-settings-container .uagb-color-icon-indicate .component-color-indicator.uagb-advanced-color-indicate {\n    width: 28px;\n    height: 28px;\n    border-radius: 50%;\n    margin: 0;\n    background: none; }\n  .uagb-advanced-color-settings-container .uagb-advanced-color-indicate.uag-global-indicator::before {\n    content: "\\f11f";\n    font-family: dashicons;\n    position: absolute;\n    font-size: 16px;\n    top: 6px;\n    left: 7px; }\n  .uagb-advanced-color-settings-container .uag-global-icon-black::before {\n    color: #000; }\n  .uagb-advanced-color-settings-container .uag-global-icon-white::before {\n    color: #fff; }\n\n.uagb-popover-color .components-popover__content {\n  overflow-x: hidden;\n  overflow-y: auto; }\n\n.uagb-popover-color .components-circular-option-picker {\n  padding: 2px 0 10px 5px; }\n  .uagb-popover-color .components-circular-option-picker .components-circular-option-picker__swatches {\n    margin-right: 0;\n    text-align: left;\n    padding-left: 10px; }\n\n.uagb-popover-color .uagb-clear-btn-inside-picker {\n  margin: 5px 20px 20px 15px;\n  padding: 0 8px;\n  border: 1px solid #ccc;\n  box-shadow: none; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-spacing-control {\n  position: relative;\n  display: inline-block; }\n  .uagb-spacing-control .components-base-control__label {\n    margin-bottom: 5px; }\n  .uagb-spacing-control .components-base-control__help {\n    margin-top: -8px; }\n  .uagb-spacing-control input[type="number"].uagb-spacing-control__number,\n  .uagb-spacing-control .uagb-spacing-control__link {\n    border-left: 1px solid;\n    border-right: 1px solid;\n    border-color: #e6e7e9;\n    color: #50575e;\n    border-radius: 0;\n    box-shadow: none !important;\n    height: 30px;\n    margin: 0 -1px 0 0;\n    padding-right: 1px;\n    width: 25%;\n    font-size: 14px;\n    line-height: 20px;\n    padding-left: 4px; }\n  .uagb-spacing-control input[type="number"].uagb-spacing-control__number::placeholder {\n    color: #aaa; }\n  .uagb-spacing-control input[type="number"].uagb-spacing-control__number:focus {\n    z-index: 1;\n    outline-offset: -1px;\n    outline: 1px solid #cccccc; }\n  .uagb-spacing-control .uagb-spacing-control__link {\n    border: 1px solid #959595;\n    background-color: #959595;\n    color: #ffffff;\n    justify-content: center;\n    display: flex;\n    align-items: center;\n    padding: 2px 0;\n    font-size: 12px;\n    line-height: 28px;\n    cursor: pointer;\n    transition: none; }\n    .uagb-spacing-control .uagb-spacing-control__link.uagb-spacing-control-disconnected {\n      border-color: #e6e7e9;\n      background-color: #ffffff;\n      color: #959595; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls button[type="button"] > span {\n    cursor: pointer;\n    width: 15px;\n    height: 15px;\n    font-size: 15px; }\n  .uagb-spacing-control .uagb-spacing-control__inputs > :first-child.uagb-spacing-control__number {\n    -webkit-border-radius: 3px 0 0 3px;\n    -moz-border-radius: 3px 0 0 3px;\n    border-radius: 3px 0 0 3px; }\n  .uagb-spacing-control .uagb-spacing-control__inputs > :last-child {\n    -webkit-border-radius: 0 3px 3px 0;\n    -moz-border-radius: 0 3px 3px 0;\n    border-radius: 0 3px 3px 0; }\n  .uagb-spacing-control .uagb-control__actions .components-tab-panel__tabs {\n    padding-right: 4px;\n    margin-right: 0; }\n  .uagb-spacing-control .uagb-spacing-control__inputs {\n    display: flex; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls-item {\n    border: 0;\n    display: none;\n    font-size: 10px;\n    height: 30px;\n    justify-content: center;\n    left: 50px;\n    line-height: 12px;\n    padding: 0;\n    position: absolute;\n    text-align: center;\n    text-shadow: none;\n    top: -5px;\n    width: 26px;\n    z-index: 1;\n    box-shadow: unset;\n    border-radius: unset;\n    color: unset; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item.is-active {\n      display: block; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item:focus:enabled {\n      box-shadow: inset 0 0 0 1px #fff; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item:focus:enabled svg {\n      fill: #fff; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item svg {\n      position: relative; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item.uagb-spacing-control__mobile-controls-item--spacing.components-button.is-secondary:active:not(:disabled), .uagb-spacing-control .uagb-spacing-control__mobile-controls-item.uagb-spacing-control__mobile-controls-item--spacing.components-button.is-tertiary:active:not(:disabled) {\n      background: #fff;\n      color: #50575e; }\n    .uagb-spacing-control .uagb-spacing-control__mobile-controls-item.components-button.is-secondary:hover:not(:disabled), .uagb-spacing-control .uagb-spacing-control__mobile-controls-item.components-button.is-tertiary:hover:not(:disabled) {\n      color: unset;\n      background: unset;\n      box-shadow: unset; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls-item--default svg {\n    top: 3px; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls-item--desktop svg {\n    top: 3px; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls-item--tablet svg {\n    top: 3px; }\n  .uagb-spacing-control .uagb-spacing-control__mobile-controls-item--mobile svg {\n    top: 3px; }\n  .uagb-spacing-control .uagb-spacing-control__input-labels {\n    display: flex;\n    margin-bottom: -3px; }\n    .uagb-spacing-control .uagb-spacing-control__input-labels span {\n      text-align: center;\n      width: 20%; }\n    .uagb-spacing-control .uagb-spacing-control__input-labels .uagb-spacing-control__link-label {\n      width: 10%; }\n  .uagb-spacing-control .uagb-control__label {\n    margin-bottom: 0;\n    width: 50%; }\n  .uagb-spacing-control .uagb-spacing-control__number-label {\n    color: #cccccc;\n    display: block;\n    font-size: 10px;\n    margin-top: 5px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uag-bg-select-control .uag-background-color,\n.uag-bg-select-control .uag-background-image,\n.uag-bg-select-control .uag-background-gradient,\n.uag-bg-select-control .uag-background-opacity,\n.uag-bg-select-control .uag-background-video,\n.uag-bg-select-control .uag-background-video-overlay,\n.uag-bg-select-control .uag-background-video-opacity,\n.uag-bg-select-control .uag-background-image-position,\n.uag-bg-select-control .uag-background-image-attachment,\n.uag-bg-select-control .uag-background-image-repeat,\n.uag-bg-select-control .uag-background-image-size,\n.uag-bg-select-control .uag-background-image-overlay-type,\n.uag-bg-select-control .uag-background-image-overlay-color,\n.uag-bg-select-control .uag-background-image-overlay-gradient,\n.uag-bg-select-control .uag-background-video-image-fallback,\n.uag-bg-select-control .uagb-responsive-select-control {\n  margin-top: 25px; }\n  .uag-bg-select-control .uag-background-color .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-gradient .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-opacity .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-video .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-video-overlay .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-video-opacity .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-attachment .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-repeat .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-size .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-overlay-type .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-overlay-color .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-overlay-gradient .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-video-image-fallback .uagb-size-type-field-tabs,\n  .uag-bg-select-control .uagb-responsive-select-control .uagb-size-type-field-tabs {\n    display: flex;\n    justify-content: space-between; }\n    .uag-bg-select-control .uag-background-color .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-gradient .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-opacity .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-video .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-video-overlay .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-video-opacity .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-attachment .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-repeat .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-size .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-overlay-type .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-overlay-color .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-image-overlay-gradient .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uag-background-video-image-fallback .uagb-size-type-field-tabs > .components-base-control,\n    .uag-bg-select-control .uagb-responsive-select-control .uagb-size-type-field-tabs > .components-base-control {\n      width: 45%; }\n\n.uag-bg-select-control .uag-background-image-overlay-opacity,\n.uag-bg-select-control .uag-background-image-overlay-gradient {\n  margin-top: 25px; }\n  .uag-bg-select-control .uag-background-image-overlay-opacity .uag-range-control.uagb-size-type-field-tabs,\n  .uag-bg-select-control .uag-background-image-overlay-gradient .uag-range-control.uagb-size-type-field-tabs {\n    flex-direction: column;\n    align-items: flex-start; }\n\n.uag-bg-select-control .uag-background-image > .components-base-control > .uagb-responsive-select-control .uagb-size-type-field-tabs {\n  display: block; }\n  .uag-bg-select-control .uag-background-image > .components-base-control > .uagb-responsive-select-control .uagb-size-type-field-tabs > .components-base-control {\n    width: 100%; }\n\n.uag-bg-select-control .uag-responsive-image-select.uagb-responsive-select-control .uagb-size-type-field-tabs .uagb-control__header {\n  margin-bottom: 10px; }\n\n.uag-bg-select-control .uag-background-image-overlay-type .components-select-control {\n  flex-direction: row;\n  align-items: center; }\n  .uag-bg-select-control .uag-background-image-overlay-type .components-select-control .components-input-control__container {\n    width: 45%;\n    flex: unset; }\n\n.uag-bg-select-control .uag-background-image-size .uagb-responsive-control-inner > .components-base-control {\n  display: block;\n  margin-top: 25px; }\n\n.uag-bg-select-control .uag-background-image-size .uag-range-control.uagb-size-type-field-tabs {\n  display: block; }\n\n.uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs {\n  flex-direction: column;\n  align-items: flex-start; }\n  .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs .uagb-control__header {\n    margin-bottom: 10px; }\n  .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs .components-focal-point-picker-control {\n    width: 100%; }\n    .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs .components-focal-point-picker-control .components-focal-point-picker {\n      border-radius: 3px;\n      border-color: #e6e7e9; }\n      .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs .components-focal-point-picker-control .components-focal-point-picker img {\n        border-radius: 3px; }\n    .uag-bg-select-control .uag-background-image-position .uagb-size-type-field-tabs .components-focal-point-picker-control .focal-point-picker__controls-position-unit-control {\n      width: 115px; }\n\n.uag-bg-select-control .uag-background-image-axis-position {\n  margin-bottom: 24px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-gradient-picker .components-custom-gradient-picker__gradient-bar {\n  border-radius: 5px;\n  height: 30px; }\n  .uagb-gradient-picker .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__control-point-button {\n    top: 9px;\n    width: 12px;\n    height: 12px; }\n  .uagb-gradient-picker .components-custom-gradient-picker__gradient-bar .components-custom-gradient-picker__insert-point {\n    top: 7px; }\n\n.block-editor-block-inspector .uagb-inspector-tab .uag-background-gradient .uagb-color-popover-container,\n.block-editor-block-inspector .uagb-inspector-tab .uag-background-gradient .uagb-multi-buttons-control,\n.block-editor-block-inspector .uagb-inspector-tab .uag-background-gradient .uagb-size-type-field-tabs,\n.block-editor-block-inspector .uag-background-image-overlay-gradient .uagb-color-popover-container,\n.block-editor-block-inspector .uag-background-image-overlay-gradient .uagb-multi-buttons-control,\n.block-editor-block-inspector .uag-background-image-overlay-gradient .uagb-size-type-field-tabs {\n  margin-bottom: 24px; }\n\n.block-editor-block-inspector .uagb-inspector-tab .uag-background-gradient .uagb-size-type-field-tabs,\n.block-editor-block-inspector .uag-background-image-overlay-gradient .uagb-size-type-field-tabs {\n  display: block; }\n\n.block-editor-block-inspector .uagb-inspector-tab .uag-background-gradient .uagb-gradient-advanced-option,\n.block-editor-block-inspector .uag-background-image-overlay-gradient .uagb-gradient-advanced-option {\n  width: 100%;\n  justify-content: right;\n  margin-bottom: 5px;\n  padding-right: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uag-confirm-popup-wrapper {\n  display: flex;\n  flex-direction: row;\n  align-items: flex-start;\n  padding: 24px;\n  width: 612px;\n  height: 166px;\n  background: #fff;\n  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);\n  border-radius: 2px; }\n  .uag-confirm-popup-wrapper .components-modal__content {\n    margin: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: row;\n    gap: 20px; }\n    .uag-confirm-popup-wrapper .components-modal__content .components-modal__header {\n      display: none; }\n    .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-icon {\n      display: flex;\n      flex-direction: row;\n      align-items: flex-start;\n      padding: 12px;\n      gap: 8px;\n      width: 54px;\n      height: 54px;\n      background: #dcf2ff;\n      border-radius: 32px;\n      flex: none;\n      order: 0;\n      flex-grow: 0; }\n      .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-icon svg {\n        stroke: #007cba; }\n    .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content {\n      box-sizing: border-box;\n      display: flex;\n      flex-direction: column;\n      gap: 24px; }\n      .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-text {\n        display: flex;\n        flex-direction: column;\n        order: 1;\n        gap: 4px; }\n        .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-text .uag-confirm-popup-title {\n          width: 480px;\n          height: 28px;\n          font-style: normal;\n          font-weight: 500;\n          font-size: 20px;\n          line-height: 28px;\n          color: #1d2327;\n          flex: none;\n          order: 0;\n          flex-grow: 0; }\n        .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-text .uag-confirm-popup-description {\n          width: 480px;\n          height: 20px;\n          font-style: normal;\n          font-weight: 400;\n          font-size: 13px;\n          line-height: 20px;\n          display: flex;\n          align-items: center;\n          color: #50575e;\n          flex: none;\n          order: 1;\n          flex-grow: 0; }\n      .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-controls {\n        display: flex;\n        flex-direction: row;\n        align-items: flex-start;\n        gap: 12px;\n        flex: none;\n        order: 2; }\n        .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-controls .uag-confirm-popup-buttons {\n          display: flex;\n          flex-direction: row;\n          justify-content: center;\n          align-items: center;\n          padding: 9px 17px;\n          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }\n        .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-controls .uag-popup-confirmation-button {\n          background: #007cba;\n          color: #fff;\n          border-radius: 2px;\n          flex: none;\n          order: 0; }\n        .uag-confirm-popup-wrapper .components-modal__content .uag-confirm-popup-content .uag-confirm-popup-controls .uag-popup-cancellation-button {\n          background: #fff;\n          border: 1px solid #e6e7e9;\n          border-radius: 2px;\n          flex: none;\n          order: 1; }\n\n.uag-confirm-popup-overlay {\n  background-color: #00000070; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-responsive-select-control .uagb-size-type-field-tabs {\n  align-items: center;\n  display: grid;\n  grid-template-columns: 50% 50%; }\n  .uagb-responsive-select-control .uagb-size-type-field-tabs .uagb-control__header {\n    margin-bottom: 0; }\n\n.components-base-control .components-base-control.uagb-responsive-select-control {\n  margin-bottom: 25px !important; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-size-type-field-tabs .components-focal-point-picker__icon_container {\n  z-index: unset; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.spectra-separator {\n  width: 100%;\n  height: 1px;\n  margin: 25px 0;\n  background-color: #e6e7e9; }\n  .spectra-separator--removed-top-space {\n    margin-top: 0 !important; }\n\n.uagb-inspector-tab .components-panel__body .spectra-separator {\n  width: auto;\n  margin: 25px -16px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-select-control--layout-inline .components-select-control {\n  align-items: center;\n  display: grid;\n  grid-template-columns: 50% 50%;\n  margin-bottom: 25px;\n  color: #50575e;\n  gap: 0; }\n\n.uagb-select-control--layout-inline .uagb-control__header,\n.uagb-select-control--layout-inline .uag-control-label,\n.uagb-select-control--layout-inline .components-select-control label.components-input-control__label {\n  margin-bottom: 0; }\n\n.uagb-select-control--layout-inline:last-child .components-select-control {\n  margin-bottom: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* Normal & Hover Tabs CSS*/\n/* stylelint-disable color-hex-case, color-hex-length */\n.uag-control-tabs {\n  margin: 0 -16px;\n  padding: 0 16px; }\n  .uag-control-tabs.uag-control-tabs-three-tabs .components-tab-panel__tabs > .components-button {\n    width: 31.3%; }\n  .uag-control-tabs > .components-tab-panel__tabs {\n    justify-content: space-between;\n    margin: 0 -16px 25px;\n    padding: 0 16px;\n    border-bottom: 1px solid #e6e7e9; }\n    .uag-control-tabs > .components-tab-panel__tabs > .components-button {\n      width: 47%;\n      text-align: center;\n      justify-content: center;\n      border: 1px solid #e6e7e9;\n      border-radius: 3px 3px 0 0;\n      color: #50575e;\n      background-color: #f0f0f1;\n      max-height: 30px;\n      font-size: 13px;\n      border-bottom: 0;\n      margin-bottom: -1px; }\n      .uag-control-tabs > .components-tab-panel__tabs > .components-button.active-tab {\n        color: #007cba;\n        background: #ffffff; }\n      .uag-control-tabs > .components-tab-panel__tabs > .components-button:focus:not(:disabled) {\n        box-shadow: none; }\n  .uag-control-tabs .components-base-control {\n    margin-bottom: 25px; }\n    .uag-control-tabs .components-base-control .components-base-control,\n    .uag-control-tabs .components-base-control .components-base-control__field {\n      padding-top: 0;\n      margin-bottom: 0; }\n    .uag-control-tabs .components-base-control:last-child {\n      margin-bottom: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-inspector-tab .spectra__matrix-control {\n  display: flex;\n  justify-content: space-between;\n  align-items: flex-start; }\n  .uagb-inspector-tab .spectra__matrix-control--box {\n    border: 1px solid #e6e7e9;\n    border-radius: 3px; }\n  .uagb-inspector-tab .spectra__matrix-control .uag-control-label {\n    margin: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uag-custom-ip .uag-control-label {\n  padding-bottom: 4px;\n  display: block; }\n\n.uag-custom-ip .uag-ip-placeholder-wrap {\n  width: 256px;\n  max-width: 100%;\n  min-height: 96px;\n  display: flex;\n  background-color: #ffffff;\n  border: 1px solid #e6e7e9;\n  border-radius: 3px;\n  position: relative;\n  overflow: hidden; }\n  .uag-custom-ip .uag-ip-placeholder-wrap:hover .uag-ip-actions {\n    transform: translate(0, 0); }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-remove-icon > svg,\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-selected-icon-overlay > svg {\n    fill: #ffffff;\n    width: 18px;\n    height: 18px;\n    background-color: #cccccc;\n    padding: 2.4px;\n    border-radius: 50%; }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-remove-icon {\n    position: absolute;\n    right: 5px;\n    top: 5px;\n    line-height: 0;\n    cursor: pointer;\n    z-index: 6; }\n    .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-remove-icon > svg {\n      transition: 0.3s background-color linear; }\n      .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-remove-icon > svg:hover {\n        background-color: #959494; }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-selected-icon {\n    width: 100%;\n    display: flex;\n    cursor: pointer; }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-selected-icon-overlay {\n    display: flex;\n    width: 100%;\n    justify-content: center;\n    align-items: center; }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-selected-icon-value {\n    position: absolute;\n    z-index: 1;\n    width: 100%;\n    height: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: center; }\n    .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-selected-icon-value > svg {\n      height: 30px;\n      width: 30px;\n      fill: #50575e; }\n  .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-actions {\n    position: absolute;\n    bottom: 0;\n    width: 100%;\n    display: flex;\n    z-index: 2;\n    transform: translate(0, 24px);\n    transition: 0.2s all ease-in-out; }\n    .uag-custom-ip .uag-ip-placeholder-wrap .uag-ip-actions > span {\n      background-color: #f0f0f1;\n      flex: 1;\n      font-size: 13px;\n      font-weight: 400;\n      text-align: center;\n      line-height: 24px;\n      color: #50575e;\n      cursor: pointer; }\n\n.components-modal__screen-overlay.uagb-ip-modal-wrapper-overlay {\n  background-color: rgba(0, 0, 0, 0.7); }\n\n.components-modal__frame.uagb-ip-modal-wrapper {\n  width: 1080px;\n  height: 796px;\n  max-height: 80%;\n  max-width: 80%;\n  overflow: unset;\n  box-sizing: border-box; }\n  .components-modal__frame.uagb-ip-modal-wrapper * {\n    box-sizing: border-box; }\n  .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content {\n    padding: 30px 24px;\n    margin: 0;\n    background-color: #fff;\n    overflow: unset;\n    border-radius: 2px; }\n    .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content > div:not(.components-modal__header) {\n      height: 100%; }\n    .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .components-modal__header {\n      height: 0; }\n      .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .components-modal__header .components-modal__header-heading-container {\n        display: none !important; }\n      .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .components-modal__header .components-button {\n        color: #aaa;\n        position: absolute;\n        width: 12px;\n        height: 12px;\n        top: 4px;\n        right: -32px;\n        transition: 0.2s color linear;\n        left: auto; }\n        .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .components-modal__header .components-button:hover {\n          color: #fff; }\n    .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .uagb-ip-header {\n      display: flex;\n      align-items: baseline;\n      height: 64px; }\n      .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .uagb-ip-header > h2 {\n        width: 156px;\n        margin: 0;\n        font-size: 20px;\n        font-weight: 400;\n        color: #1e1e1e; }\n    .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .uagb-ip-footer {\n      height: 68px;\n      text-align: right;\n      display: flex;\n      align-items: flex-end;\n      justify-content: flex-end; }\n      .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .uagb-ip-footer > button {\n        font-size: 13px;\n        color: #fff;\n        border: none;\n        background-color: #007cba;\n        border-radius: 2px;\n        width: 89px;\n        height: 36px;\n        cursor: pointer; }\n        .components-modal__frame.uagb-ip-modal-wrapper .components-modal__content .uagb-ip-footer > button.disable {\n          opacity: 0.7;\n          cursor: not-allowed; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-lr-container {\n    display: flex;\n    height: calc( 100% - 134px);\n    grid-gap: 24px; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-lr-container .uagb-ip-left {\n      width: 156px;\n      overflow: auto; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-lr-container .uagb-ip-right {\n      flex: 1;\n      padding: 14px;\n      padding-right: 0;\n      border: 1px solid #e6e7e9;\n      border-radius: 2px; }\n      .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-lr-container .uagb-ip-right .uagb-ip-modal-container {\n        height: 100%; }\n        .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-lr-container .uagb-ip-right .uagb-ip-modal-container .ReactVirtualized__Grid__innerScrollContainer > div {\n          display: flex;\n          justify-content: center;\n          align-items: center; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-categories-list > div {\n    padding: 9px 10px;\n    cursor: pointer;\n    border-radius: 2px;\n    color: #1d2327;\n    display: flex;\n    justify-content: space-between;\n    font-size: 13px; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-categories-list > div.selected {\n      background-color: #dcf2ff;\n      color: #0063a1; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container {\n    flex: 1;\n    padding-left: 24px; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar {\n      position: relative; }\n      .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar > svg,\n      .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar > span {\n        width: 14px;\n        height: 14px;\n        position: absolute;\n        top: calc( 18px - 7px);\n        color: #555d66;\n        fill: #555d66;\n        transform: rotateZ(90deg);\n        left: 12px; }\n      .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar > span {\n        width: unset;\n        cursor: pointer; }\n      .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar input {\n        height: 36px;\n        width: 100%;\n        padding: 7px 12px 7px calc( 12px * 2 + 14px);\n        border: 1px solid #e6e7e9;\n        margin: 0;\n        border-radius: 2px;\n        color: #1d2327; }\n        .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar input::placeholder {\n          color: #50575e; }\n        .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-search-container .uagb-ip-search-bar input:focus {\n          border: 1.5px solid #007cba; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .ReactVirtualized__Grid__innerScrollContainer {\n    overflow-x: hidden !important;\n    max-width: inherit !important; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons.icon-not-found {\n    display: flex;\n    align-items: center;\n    justify-content: center; }\n  .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item {\n    width: 80px;\n    height: 80px;\n    background-color: #ffffff;\n    border: 1px solid #e6e7e9;\n    border-radius: 3px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    cursor: pointer;\n    transition: 0.2s transform ease;\n    flex-direction: column;\n    grid-gap: 6px;\n    max-width: 90%;\n    max-height: 90%; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item.default {\n      border-color: #007cba;\n      box-shadow: 0 0 0 2px #007cba;\n      pointer-events: none; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item.selected {\n      border-color: #007cba;\n      box-shadow: 0 0 0 2px #dcf2ff;\n      pointer-events: none; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item > svg {\n      width: 20.9px;\n      height: 20.27px; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item > span {\n      font-size: 11px;\n      text-align: center; }\n    .components-modal__frame.uagb-ip-modal-wrapper .uagb-ip-icons .uagb-icon-item:hover {\n      border-color: #e6e7e9;\n      box-shadow: 0 0 0 4px #f0f0f1; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-presets-radio-image-wrap {\n  display: grid;\n  grid-column-gap: 16px;\n  grid-template-columns: repeat(2, 1fr);\n  grid-row-gap: 14px; }\n  .uagb-presets-radio-image-wrap .uag-presets-radio-input {\n    display: none; }\n  .uagb-presets-radio-image-wrap .uag-presets-radio-input-label {\n    position: relative;\n    display: inline-block; }\n    .uagb-presets-radio-image-wrap .uag-presets-radio-input-label:hover {\n      cursor: pointer; }\n  .uagb-presets-radio-image-wrap svg {\n    width: 100%;\n    height: auto;\n    fill: #898e95;\n    border: 1px solid #dadada;\n    color: #898e95;\n    background-color: #f0f0f1;\n    transition: background 0.08s ease, box-shadow 0.08s ease;\n    border-radius: 5px 5px 3px 3px; }\n    .uagb-presets-radio-image-wrap svg > path:first-child {\n      scale: 1.129 1.085;\n      transform-origin: center bottom; }\n  .uagb-presets-radio-image-wrap .uag-presets-radio-input:checked + .uag-presets-radio-input-label svg {\n    background-color: #007cba;\n    border: 1px solid #00608f; }\n  .uagb-presets-radio-image-wrap .uag-presets-radio-image-clickable {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    width: 100%;\n    height: 100%; }\n\n.uagb-inspector-tab .components-panel__body .uag-presets-label {\n  line-height: 2.4; }\n\n.uagb-presets-label-reset-wrap {\n  display: flex;\n  justify-content: space-between; }\n\n.uagb-presets-main-wrap.border-none svg {\n  border: none; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-upgrade-pro-wrap .uagb-button-link {\n  display: block;\n  padding: 10px 12px;\n  border-radius: 4px;\n  border: 1px solid #5a03ef;\n  background-color: #fff;\n  color: #5a03ef;\n  font-size: 13px;\n  font-weight: 400;\n  line-height: 16px;\n  text-align: center;\n  cursor: pointer; }\n  .uagb-upgrade-pro-wrap .uagb-button-link:hover, .uagb-upgrade-pro-wrap .uagb-button-link:focus {\n    background-color: #fff;\n    color: #5a03ef;\n    border: 1px solid #5a03ef;\n    box-shadow: unset; }\n\n.uagb-upgrade-pro-wrap .uagb-upgrade-trigger,\n.uagb-upgrade-pro-wrap .uagb-upgrade-pro-innerwrap {\n  width: 100%;\n  -js-display: inline-flex;\n  display: inline-flex;\n  align-items: center;\n  flex-wrap: wrap;\n  align-content: center;\n  position: relative;\n  overflow: hidden;\n  justify-content: center; }\n  .uagb-upgrade-pro-wrap .uagb-upgrade-trigger > svg,\n  .uagb-upgrade-pro-wrap .uagb-upgrade-pro-innerwrap > svg {\n    width: 100%;\n    height: 100%;\n    filter: blur(4px); }\n\n.uagb-upgrade-pro-wrap .uagb-upgrade-cta {\n  position: absolute;\n  top: auto;\n  left: auto;\n  width: auto;\n  height: 28px;\n  border-radius: 4px;\n  padding: 0 8px 0 5px;\n  font-size: 1em;\n  line-height: 1em;\n  display: inline-flex;\n  color: #0284c7;\n  background: #fff;\n  border: 1px solid #0284c7;\n  align-items: center;\n  align-content: center;\n  white-space: nowrap; }\n  .uagb-upgrade-pro-wrap .uagb-upgrade-cta svg {\n    width: 1.2em;\n    height: 1.2em; }\n\n.uagb-upgrade-pro-wrap .uagb-upgrade-section-title {\n  margin-left: 8px; }\n\na.uagb-upgrade-trigger:focus,\na.uagb-upgrade-trigger:active {\n  box-shadow: none;\n  border: none;\n  outline: none; }\n\n.uagb-upgrade-list-wrapper {\n  text-align: center; }\n  .uagb-upgrade-list-wrapper .uagb-brand-logo {\n    margin: 0; }\n  .uagb-upgrade-list-wrapper svg {\n    width: 32px;\n    height: 32px;\n    fill: #5a03ef; }\n    .uagb-upgrade-list-wrapper svg path,\n    .uagb-upgrade-list-wrapper svg:hover path {\n      fill: #5a03ef; }\n    .uagb-upgrade-list-wrapper svg:hover,\n    .uagb-upgrade-list-wrapper svg .spectra-page-settings-button:hover path {\n      fill: #5a03ef; }\n  .uagb-upgrade-list-wrapper .uagb-upgrade-list-section-title {\n    margin: 0.5em auto 1.2em;\n    max-width: 240px;\n    font-size: 13px;\n    line-height: 16px; }\n\n.interface-complementary-area p.uagb-upgrade-list-section-title {\n  margin-top: 1em; }\n\n.uagb-upgrade-list-items {\n  margin-bottom: 1.8em; }\n\n.uagb-pro-upgrade-item {\n  display: flex;\n  align-items: center;\n  margin-bottom: 12px; }\n  .uagb-pro-upgrade-item svg {\n    vertical-align: middle;\n    flex-shrink: 0; }\n  .uagb-pro-upgrade-item span {\n    display: inline; }\n  .uagb-pro-upgrade-item p {\n    margin: 1.25em 0;\n    line-height: 1; }\n\n.uagb-upgrade-list-description {\n  margin: 5px 0 0 20px; }\n\n.uagb-upgrade-list-title {\n  font-weight: 400;\n  font-size: 13px;\n  line-height: 18px;\n  margin-left: 0.5em; }\n\n.uag-advance-panel-body-animations .uagb-upgrade-pro-wrap {\n  margin-top: 16px; }\n\n.spectra-support-container .spectra-support-text {\n  font-size: 13px;\n  font-weight: 400;\n  font-family: Figtree, sans-serif;\n  color: #111827; }\n\n.uagb-remove-ring input[type="checkbox"],\n.uagb-remove-ring a,\n.uagb-remove-ring {\n  outline: none;\n  --tw-ring-inset: auto;\n  box-shadow: unset; }\n\n.components-modal__frame {\n  overflow: visible !important; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-popup-builder,\n.uagb-editor-preview-mode-tablet.uagb-popup-builder,\n.uagb-editor-preview-mode-mobile.uagb-popup-builder {\n  display: flex;\n  opacity: 1;\n  width: 100% !important;\n  height: 1px !important;\n  min-height: 100vh !important;\n  max-width: 100% !important;\n  z-index: initial !important; }\n  .uagb-popup-builder button.uagb-popup-builder__close,\n  .uagb-editor-preview-mode-tablet.uagb-popup-builder button.uagb-popup-builder__close,\n  .uagb-editor-preview-mode-mobile.uagb-popup-builder button.uagb-popup-builder__close {\n    border: none;\n    background: transparent;\n    background-color: transparent;\n    padding: 0; }\n  .uagb-popup-builder__close,\n  .uagb-editor-preview-mode-tablet.uagb-popup-builder__close,\n  .uagb-editor-preview-mode-mobile.uagb-popup-builder__close {\n    z-index: 30; }\n  .uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender,\n  .uagb-editor-preview-mode-tablet.uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender,\n  .uagb-editor-preview-mode-mobile.uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender {\n    box-shadow: none;\n    padding: 16px;\n    border-radius: 2px;\n    border: 1px dashed #555d66; }\n    .uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender svg,\n    .uagb-editor-preview-mode-tablet.uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender svg,\n    .uagb-editor-preview-mode-mobile.uagb-popup-builder__container > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-list-appender > .block-editor-inserter > .block-editor-button-block-appender svg {\n      fill: #a0a7ac; }\n  .uagb-popup-builder__variant-control-popover,\n  .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover,\n  .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover {\n    top: 6px !important; }\n    .uagb-popup-builder__variant-control-popover .components-popover__content,\n    .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-popover__content,\n    .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-popover__content {\n      box-shadow: 0 0 0 1px #1d2327; }\n    .uagb-popup-builder__variant-control-popover .components-menu-item__button,\n    .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-menu-item__button,\n    .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-menu-item__button {\n      color: #50575e; }\n      .uagb-popup-builder__variant-control-popover .components-menu-item__button svg,\n      .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-menu-item__button svg,\n      .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-menu-item__button svg {\n        fill: none;\n        margin-right: 6px; }\n        .uagb-popup-builder__variant-control-popover .components-menu-item__button svg path,\n        .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-menu-item__button svg path,\n        .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-menu-item__button svg path {\n          stroke: #50575e; }\n      .uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled,\n      .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled,\n      .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled {\n        color: #007cba;\n        opacity: 1; }\n        .uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled svg path,\n        .uagb-editor-preview-mode-tablet.uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled svg path,\n        .uagb-editor-preview-mode-mobile.uagb-popup-builder__variant-control-popover .components-menu-item__button:disabled svg path {\n          stroke: #007cba; }\n\n.spectra-popup__notice {\n  font-style: italic;\n  margin-bottom: 16px;\n  color: #1d2327; }\n  .spectra-popup__notice--clickable {\n    cursor: pointer; }\n    .spectra-popup__notice--clickable .dashicons {\n      -webkit-transition: color 250ms;\n      -moz-transition: color 250ms;\n      -o-transition: color 250ms;\n      transition: color 250ms;\n      margin-right: 8px; }\n  .spectra-popup__notice--secondary {\n    font-size: 11px;\n    line-height: 1.4;\n    color: #a4afb7;\n    margin-bottom: 25px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-text-control {\n  position: relative; }\n  .uagb-text-control--open-dynamic-content {\n    flex-direction: column;\n    align-items: unset; }\n  .uagb-text-control .components-base-control__field {\n    margin-bottom: 0; }\n  .uagb-text-control .components-text-control__input {\n    padding-right: 30px;\n    margin-left: 0;\n    margin-right: 0;\n    color: #50575e;\n    border-color: #e6e7e9; }\n    .uagb-text-control .components-text-control__input:focus {\n      border-color: #959595;\n      box-shadow: unset; }\n  .uagb-text-control .uagb-control__header .uagb-number-control__actions .uagb-reset {\n    height: fit-content; }\n  .uagb-text-control__controls > .components-button {\n    position: absolute;\n    right: 0;\n    bottom: 0;\n    padding: 0 8px;\n    border-radius: 2px;\n    height: 30px; }\n    .uagb-text-control__controls > .components-button svg {\n      width: 18px;\n      stroke: #555d66;\n      stroke-width: 1.4;\n      fill: none; }\n  .uagb-text-control__controls-inline .components-base-control__field {\n    display: flex;\n    align-items: center; }\n    .uagb-text-control__controls-inline .components-base-control__field > label {\n      flex: 50%;\n      margin-bottom: unset; }\n    .uagb-text-control__controls-inline .components-base-control__field > input {\n      flex: 50%; }\n  .uagb-text-control__controls-textarea {\n    position: relative; }\n    .uagb-text-control__controls-textarea > .components-button {\n      top: 2px;\n      bottom: auto; }\n    .uagb-text-control__controls-textarea textarea {\n      color: #50575e;\n      border-color: #e6e7e9; }\n      .uagb-text-control__controls-textarea textarea:focus {\n        border-color: #959595;\n        box-shadow: unset; }\n  .uagb-text-control.components-base-control > .components-base-control__help {\n    margin-top: 10px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.spectra-global-block-style-name-modal > .components-modal__content {\n  width: 550px;\n  margin: 0;\n  padding: 32px; }\n\n.spectra-global-block-style-name-modal .components-modal__header {\n  display: none !important; }\n\n.spectra-global-block-style-name-modal .gbs-add-new-style-head {\n  display: flex;\n  justify-content: space-between; }\n  .spectra-global-block-style-name-modal .gbs-add-new-style-head .popup-close-btn {\n    cursor: pointer; }\n  .spectra-global-block-style-name-modal .gbs-add-new-style-head > div {\n    display: flex;\n    flex-direction: column;\n    gap: 5px; }\n    .spectra-global-block-style-name-modal .gbs-add-new-style-head > div h3,\n    .spectra-global-block-style-name-modal .gbs-add-new-style-head > div p {\n      margin: 0; }\n    .spectra-global-block-style-name-modal .gbs-add-new-style-head > div h3 {\n      font-size: 18px;\n      font-weight: 600;\n      line-height: 28px; }\n    .spectra-global-block-style-name-modal .gbs-add-new-style-head > div p {\n      font-size: 14px;\n      font-weight: 400;\n      line-height: 20px; }\n\n.spectra-global-block-style-name-modal .input-wrap {\n  margin: 20px 0; }\n  .spectra-global-block-style-name-modal .input-wrap .components-base-control__label {\n    font-size: 14px;\n    font-weight: 500;\n    line-height: 20px;\n    text-transform: none; }\n  .spectra-global-block-style-name-modal .input-wrap .components-text-control__input {\n    padding: 12px 14px;\n    border: 1px solid #e6e7e9;\n    box-shadow: 0 1px 2px #1018280d;\n    border-radius: 6px;\n    font-size: 16px; }\n  .spectra-global-block-style-name-modal .input-wrap.gbs-error .components-text-control__input {\n    border-color: #dc2626; }\n  .spectra-global-block-style-name-modal .input-wrap.gbs-error .gbs-error-msg {\n    color: #dc2626;\n    margin: 8px 0 0 0;\n    font-size: 14px; }\n\n.spectra-global-block-style-name-modal .button-wrap {\n  display: flex;\n  gap: 12px; }\n  .spectra-global-block-style-name-modal .button-wrap .cancel-button {\n    color: #1d2327;\n    border: 1px solid #e6e7e9; }\n    .spectra-global-block-style-name-modal .button-wrap .cancel-button:hover {\n      box-shadow: 0 0 2px 0 #e3e7e90d;\n      border-color: #007cba; }\n  .spectra-global-block-style-name-modal .button-wrap button {\n    flex: 1;\n    box-shadow: unset;\n    font-weight: 600;\n    height: 40px;\n    border-radius: 4px;\n    display: flex;\n    justify-content: center;\n    font-size: 16px; }\n    .spectra-global-block-style-name-modal .button-wrap button p {\n      margin: 0; }\n\n.spectra-gbs-button.delete {\n  margin-left: 5px; }\n\n.spectra-gbs-button.loading::after {\n  content: "";\n  position: absolute;\n  width: 16px;\n  height: 16px;\n  top: 0;\n  right: 4%;\n  bottom: 0;\n  margin: auto;\n  border: 4px dotted transparent;\n  border-top-color: #4f94d4;\n  border-right-color: #4f94d4;\n  border-radius: 50%;\n  animation: button-loading-spinner 1s ease infinite; }\n\n.spectra-gbs-button.loading {\n  position: relative;\n  padding-right: 30px; }\n\n.uag-advance-panel-body-global-block-styles {\n  opacity: 1;\n  transition: opacity 0.5s ease-out;\n  -moz-transition: opacity 0.5s ease-out;\n  -webkit-transition: opacity 0.5s ease-out;\n  -o-transition: opacity 0.5s ease-out;\n  border-bottom: 1px solid #e0e0e0 !important;\n  display: flex;\n  flex-direction: column;\n  gap: 15px; }\n  .uag-advance-panel-body-global-block-styles.loading {\n    position: relative;\n    opacity: 0.4;\n    pointer-events: none; }\n  .uag-advance-panel-body-global-block-styles.components-panel__body.is-opened h2.components-panel__body-title {\n    margin-bottom: 0; }\n  .uag-advance-panel-body-global-block-styles .spectra-gbs-buttons-wrap {\n    display: flex; }\n    .uag-advance-panel-body-global-block-styles .spectra-gbs-buttons-wrap .gbs-update-save-add-btn {\n      display: flex;\n      gap: 10px;\n      width: 100%; }\n      .uag-advance-panel-body-global-block-styles .spectra-gbs-buttons-wrap .gbs-update-save-add-btn > button.components-button.spectra-gbs-button {\n        margin: 0;\n        flex: 1;\n        justify-content: center;\n        box-shadow: inset 0 0 0 1px var(--wp-components-color-accent, var(--wp-admin-theme-color, #3858e9)); }\n\n.spectra-gbs-notice {\n  background: #eff6ff;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 500; }\n  .spectra-gbs-notice > span {\n    padding: 16px;\n    display: block; }\n\n@keyframes button-loading-spinner {\n  from {\n    transform: rotate(0turn); }\n  to {\n    transform: rotate(1turn); } }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.uag-number-control .uagb-number-control__mobile-controls.uag-number-control__full-width {\n  position: relative;\n  color: #50575e; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__full-width .uag-control-label {\n    margin-bottom: 10px; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__full-width .components-number-control .components-input-control__input {\n    padding: 0 7px 0 12px !important; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__full-width > .components-button {\n    position: absolute;\n    left: 75%;\n    bottom: 0%;\n    height: 30px;\n    z-index: 1; }\n\n.uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline {\n  align-items: center;\n  display: grid;\n  grid-template-columns: repeat(3, 1fr);\n  color: #50575e; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline .uag-control-label {\n    margin-bottom: 0; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline .components-number-control .components-input-control__input {\n    padding: 0 7px 0 12px !important; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline .components-input-control__container {\n    width: 100%; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline .uagb-dynamic-content-wrap {\n    width: 245%;\n    margin-top: 20px; }\n  .uag-number-control .uagb-number-control__mobile-controls.uag-number-control__inline > .components-button {\n    position: absolute;\n    right: 34%; }\n\n.uag-number-control .uagb-number-control__mobile-controls > .components-button svg {\n  width: 18px;\n  stroke: #555d66;\n  stroke-width: 1.4;\n  fill: none;\n  z-index: 1; }\n\n.uag-number-control .uagb-control__header {\n  display: grid;\n  grid-template-columns: 100%;\n  justify-items: end;\n  justify-content: end; }\n\n.uag-number-control .uag-responsive-label-wrap {\n  grid-column: 1 / span 2; }\n\n.uag-number-control .uagb-dynamic-content-wrap {\n  margin-top: 20px; }\n\n.uag-number-control.uagb-text-control--open-dynamic-content .uag-number-control__inline {\n  display: block; }\n  .uag-number-control.uagb-text-control--open-dynamic-content .uag-number-control__inline .uagb-dynamic-content-wrap {\n    width: 100%;\n    margin-top: 20px; }\n\n.uag-number-control input[type="number"]::-webkit-inner-spin-button,\n.uag-number-control input[type="number"]::-webkit-outer-spin-button {\n  opacity: 1; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-container-variation-picker .uagb-variation-close {\n  font-size: 35px;\n  background: none;\n  color: #d5dadf;\n  cursor: pointer;\n  border: none;\n  box-shadow: none;\n  display: flex;\n  align-self: flex-end;\n  position: absolute;\n  top: 3px;\n  z-index: 999999;\n  outline: none; }\n\n.uagb-container-variation-picker .block-editor-block-variation-picker__variations {\n  width: 75%;\n  justify-content: center;\n  gap: 0;\n  margin: 16px 0; }\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button,\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button.is-secondary,\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button.is-tertiary,\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button:hover:not(:disabled) {\n    box-shadow: none;\n    outline: none;\n    color: #d5dadf !important;\n    padding: 0;\n    margin-bottom: 0; }\n    .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button svg,\n    .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button.is-secondary svg,\n    .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button.is-tertiary svg,\n    .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button:hover:not(:disabled) svg {\n      width: 100px;\n      height: 50px;\n      fill: #d5dadf !important; }\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations .components-button:hover:not(:disabled) svg {\n    color: #bcc0c4 !important; }\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations > li {\n    margin: 20px 16px 0 0;\n    flex-basis: content;\n    width: 80px; }\n\n.uagb-container-variation-picker .block-editor-block-variation-picker__skip .components-button {\n  color: #0073aa; }\n\n.uagb-container-variation-picker .components-placeholder {\n  align-items: center;\n  border: 1px dashed #555d66;\n  box-shadow: none; }\n  .uagb-container-variation-picker .components-placeholder.components-placeholder {\n    align-items: center;\n    gap: 0; }\n  .uagb-container-variation-picker .components-placeholder.is-large .components-placeholder__label,\n  .uagb-container-variation-picker .components-placeholder .components-placeholder__label {\n    font-size: 24px;\n    font-weight: 400;\n    line-height: 29px;\n    margin-bottom: 4px;\n    color: #1d2327; }\n\n.uagb-container-variation-picker .components-placeholder__label path,\n.uagb-container-variation-picker .components-placeholder__label rect,\n.uagb-container-variation-picker .components-placeholder__label circle {\n  stroke: #0063a1; }\n\n.uagb-container-variation-picker .components-placeholder__label svg {\n  margin-right: 12px; }\n\n.uagb-container-variation-picker .block-editor-block-variation-picker__variation::before {\n  padding-bottom: 0; }\n\n.uagb-container-variation-picker .components-placeholder__fieldset {\n  align-items: center;\n  text-align: center;\n  flex-direction: column;\n  max-width: 90%; }\n  .uagb-container-variation-picker .components-placeholder__fieldset .components-placeholder__instructions {\n    font-size: 13px;\n    line-height: 20px;\n    color: #50575e;\n    width: 100%; }\n\n.uagb-editor-preview-mode-tablet .components-button.is-secondary:hover:not(:disabled),\n.uagb-editor-preview-mode-mobile .components-button.is-secondary:hover:not(:disabled) {\n  box-shadow: none;\n  outline: none;\n  color: #d5dadf; }\n\n.uagb-editor-preview-mode-tablet .components-placeholder__fieldset,\n.uagb-editor-preview-mode-mobile .components-placeholder__fieldset {\n  max-width: 100% !important; }\n  .uagb-editor-preview-mode-tablet .components-placeholder__fieldset .block-editor-block-variation-picker__variations,\n  .uagb-editor-preview-mode-mobile .components-placeholder__fieldset .block-editor-block-variation-picker__variations {\n    justify-content: center !important; }\n\n.block-editor-block-list__layout.is-root-container .uagb-is-root-container,\n.block-editor-block-list__layout.is-root-container .uagb-container-has-children .wp-block-uagb-container {\n  border-radius: unset; }\n\n#customize-theme-controls .uagb-container-variation-picker .block-editor-block-variation-picker__variations {\n  width: 300px; }\n  #customize-theme-controls .uagb-container-variation-picker .block-editor-block-variation-picker__variations > li {\n    margin: 8px 6px 0 0; }\n\n#customize-theme-controls .uagb-container-variation-picker .components-button,\n#customize-theme-controls .uagb-container-variation-picker .components-button.is-secondary,\n#customize-theme-controls .uagb-container-variation-picker .components-button.is-tertiary,\n#customize-theme-controls .uagb-container-variation-picker .components-button:hover:not(:disabled) svg {\n  width: 95px; }\n\n#customize-theme-controls .uagb-container-variation-picker .uagb-variation-close {\n  right: 0;\n  top: -8px; }\n\n#customize-theme-controls .uagb-container-variation-picker .components-placeholder__label .dashicon {\n  display: none; }\n\n@media only screen and (min-width: 1024px) {\n  .wp-block-uagb-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n    width: 100%; }\n  .is-root-container {\n    margin-left: 10px;\n    margin-right: 10px; }\n  .is-root-container > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .is-root-container > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .is-root-container > .wp-block-template-part > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .is-root-container > .wp-block-template-part > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .wp-block-group > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .wp-block-group > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .wp-block-columns > .wp-block-column > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .wp-block-columns > .wp-block-column > .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .is-root-container > .uagb-slider-container .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .is-root-container > .uagb-slider-container .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .wp-block-uagb-countdown-innerblocks .uagb-container-has-children > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .wp-block-uagb-countdown-innerblocks .uagb-container-has-children > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block,\n  .wp-block-uagb-popup-builder .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .wp-block,\n  .wp-block-uagb-popup-builder .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n    width: 100%; } }\n\n@media only screen and (max-width: 412px) {\n  .uagb-container-variation-picker .components-placeholder__fieldset {\n    max-width: 100% !important; }\n  .uagb-container-variation-picker .block-editor-block-variation-picker__variations {\n    width: 100%; } }\n\n.wp-block-uagb-container::before {\n  content: "";\n  position: absolute;\n  border: 1px dashed #d5dadf;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.uagb-container-has-children.wp-block-uagb-container::before {\n  border: 0; }\n\n.wp-block-uagb-container {\n  display: flex; }\n  .wp-block-uagb-container .block-editor-block-list__layout .block-list-appender.wp-block {\n    width: auto; }\n    .wp-block-uagb-container .block-editor-block-list__layout .block-list-appender.wp-block button {\n      color: #a0a7ac;\n      font-size: 62px;\n      border: none;\n      box-shadow: none; }\n      .wp-block-uagb-container .block-editor-block-list__layout .block-list-appender.wp-block button svg {\n        width: 36px;\n        height: 36px; }\n\n.wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks,\n.wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks,\n.wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: flex;\n  width: 100%;\n  height: 100%; }\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks .wp-block[data-type*="uagb/"]:not([data-type="uagb/buttons-child"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks .wp-block[data-type*="core/"]:not([data-type="core/button"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block[data-type*="uagb/"]:not([data-type="uagb/buttons-child"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block[data-type*="core/"]:not([data-type="core/button"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks .wp-block[data-type*="uagb/"]:not([data-type="uagb/buttons-child"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks .wp-block[data-type*="core/"]:not([data-type="core/button"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block[data-type*="uagb/"]:not([data-type="uagb/buttons-child"]),\n  .wp-block-uagb-container:not(.uagb-layout-grid) > .block-editor-inner-blocks > .block-editor-block-list__layout .wp-block[data-type*="core/"]:not([data-type="core/button"]) {\n    width: 100%;\n    box-sizing: border-box; }\n\n.wp-block-uagb-container.uagb-layout-grid > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks,\n.wp-block-uagb-container.uagb-layout-grid > .block-editor-inner-blocks {\n  display: flex;\n  width: 100%;\n  height: 100%; }\n\n.wp-block-uagb-container.uagb-layout-grid > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.wp-block-uagb-container.uagb-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: grid;\n  width: 100%;\n  height: 100%; }\n  .wp-block-uagb-container.uagb-layout-grid > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-type*="uagb/"],\n  .wp-block-uagb-container.uagb-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block[data-type*="uagb/"] {\n    width: auto !important; }\n\n.wp-block-uagb-container.uagb-layout-grid > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block-uagb-container,\n.wp-block-uagb-container.uagb-layout-grid > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block-uagb-container {\n  max-width: unset !important; }\n\n.block-editor-block-list__empty-block-inserter .block-editor-inserter {\n  right: -35px; }\n\n.uag-container-block-inserter .components-button {\n  color: #1e1e1e; }\n\n.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks {\n  z-index: 2; }\n\n.wp-block-uagb-container > .uagb-container-inner-blocks-wrap {\n  width: 100%; }\n\n.editor-styles-wrapper .has-global-padding > .alignfull.wp-block-uagb-container.uagb-is-root-container {\n  margin-left: auto;\n  margin-right: auto; }\n\n@media only screen and (max-width: 767px) {\n  .wp-block-uagb-container .block-editor-inner-blocks .wp-block[data-type="uagb/advanced-heading"] {\n    width: -webkit-fill-available; } }\n\n.is-root-container > .block-editor-block-list__block.wp-block-uagb-container:not(.is-selected):hover,\n.is-root-container > .block-editor-block-list__block.wp-block-uagb-container .block-editor-block-list__block:not(.is-selected):hover {\n  outline: 1.5px solid #2271b1;\n  outline-offset: 0; }\n\n.uagb-grid-repeater-container > .components-base-control__field {\n  display: flex;\n  flex-direction: column;\n  gap: 15px; }\n\n.uagb-grid-repeater-container .uagb-grid-repeater-head {\n  display: flex;\n  justify-content: space-between;\n  align-items: center; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-head > label {\n    margin-bottom: 0; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-head > button {\n    all: unset;\n    background-color: #dcf2ff;\n    border-color: #cde9f9;\n    box-shadow: inset 0 0 0 1px #cde9f9;\n    border-radius: 2px;\n    cursor: pointer;\n    height: 20px;\n    width: 20px;\n    display: flex;\n    justify-content: center;\n    align-items: center;\n    padding: 3px; }\n    .uagb-grid-repeater-container .uagb-grid-repeater-head > button > span {\n      color: #007cba;\n      font-size: 18px; }\n\n.uagb-grid-repeater-container .uagb-grid-repeater-items {\n  display: flex;\n  flex-direction: column;\n  gap: 10px; }\n\n.uagb-grid-repeater-container .uagb-grid-repeater-item {\n  display: flex;\n  justify-content: space-between;\n  gap: 8px;\n  align-items: center; }\n\n.uagb-grid-repeater-container .uagb-grid-repeater-content {\n  border: 1px solid #e6e7e9;\n  flex: 1;\n  padding: 8px;\n  border-radius: 3px;\n  display: flex;\n  justify-content: space-between; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-content > label {\n    margin-bottom: 0; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-content > button {\n    all: unset;\n    cursor: pointer; }\n    .uagb-grid-repeater-container .uagb-grid-repeater-content > button > svg {\n      width: 15px;\n      height: 15px; }\n\n.uagb-grid-repeater-container .uagb-grid-repeater-delete > button {\n  all: unset;\n  cursor: pointer; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-delete > button > svg {\n    width: 15px;\n    height: 15px;\n    fill: #94a3b8; }\n  .uagb-grid-repeater-container .uagb-grid-repeater-delete > button:hover > svg {\n    fill: #ef4444; }\n\n.uagb-grid-settings {\n  width: 255px;\n  padding: 15px;\n  display: flex;\n  flex-direction: column;\n  gap: 15px;\n  box-shadow: 0 2px 8px 0 #0003;\n  border-radius: 2px; }\n  .uagb-grid-settings .components-base-control__help {\n    margin-bottom: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* Reset Gutenberg Css */\n/* stylelint-disable color-hex-case, color-hex-length */\n.spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select {\n  display: flex;\n  width: 100%;\n  flex-direction: column; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select__wrapper {\n    align-items: center;\n    display: grid;\n    grid-template-columns: 50% 50%;\n    height: 30px; }\n    .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select__wrapper label {\n      margin-bottom: 0; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__input input {\n    box-shadow: none;\n    border: none;\n    min-height: 30px; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__control {\n    cursor: pointer; }\n    .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__control:hover {\n      border: 1px solid #e6e7e9; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__menu {\n    z-index: 99999; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__indicators {\n    height: 30px; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__dropdown-indicator {\n    padding-left: 6px; }\n    .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__dropdown-indicator svg {\n      fill: #50575e;\n      height: 14px;\n      width: 14px; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__dropdown-indicator:hover {\n    color: #50575e; }\n  .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__value-container {\n    top: 0; }\n    .spectra-control-popup__options .spectra-control-popup .uag-font-family-searchable-select .uag-font-family-select__value-container > div {\n      margin: 0;\n      padding: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-color-switch-control-container .components-flex.components-angle-picker-control {\n  margin-bottom: 0; }\n\n.uagb-color-switch-control-container .uagb-multi-buttons-control {\n  margin-bottom: 5px; }\n\n.uagb-color-switch-control-container .uagb-color-popover-container {\n  margin-top: 25px; }\n\n.uagb-color-switch-control-container .components-custom-gradient-picker {\n  margin-top: 25px; }\n\n.uagb-color-switch-control-container .uagb-advanced-color-settings-container {\n  justify-content: flex-end; }\n",""]),t.a=i},function(e,t){e.exports=window.wp.richText},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".block-editor-image-size-control {\n  margin-bottom: 1em; }\n  .block-editor-image-size-control .block-editor-image-size-control__row {\n    display: flex;\n    justify-content: space-between;\n    flex-direction: column; }\n    .block-editor-image-size-control .block-editor-image-size-control__row .uag-number-control .uag-number-control__inline,\n    .block-editor-image-size-control .block-editor-image-size-control__row .uag-number-control .uag-number-control__full-width {\n      margin-bottom: 10px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-inspector-tab.uagb-tab-content-general .uag-advance-panel-body-image .editor-bg-image-control {\n  margin-top: -35px; }\n\n.uagb-inspector-tab .block-editor-image-size-control .block-editor-image-size-control__row {\n  text-transform: capitalize; }\n\n.uagb-inspector-tab .components-base-control label.components-input-control__label {\n  text-transform: capitalize; }\n\n.uagb-inspector-tab .block-editor-image-size-control__row .components-button-group .components-button {\n  border: 1px solid #8f9395;\n  box-shadow: none;\n  font-size: 13px;\n  font-weight: 400;\n  height: 26px; }\n  .uagb-inspector-tab .block-editor-image-size-control__row .components-button-group .components-button.is-pressed {\n    background: #0085ba;\n    border-color: #0085ba; }\n\n.uagb-inspector-tab .block-editor-image-size-control__row .components-button span.dashicons-image-rotate {\n  font-size: 9px;\n  display: flex;\n  justify-content: center;\n  align-items: center;\n  color: #2e92c4; }\n\n.block-editor-block-list__block.wp-block[data-type="uagb/image"] {\n  width: inherit; }\n\n.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,\n.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper {\n  width: calc(100% + 40px) !important;\n  max-width: none !important;\n  transform: translate3d(-40px, 0, 0);\n  transition: transform 0.35s ease-in-out; }\n\n.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,\n.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper {\n  transform: translate3d(0, 0, 0); }\n\n.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder {\n  box-shadow: none;\n  border: 1px dashed #555d66; }\n  .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__label {\n    margin-left: auto;\n    margin-right: auto;\n    font-size: 24px;\n    font-weight: 400; }\n    .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__label .block-editor-block-icon {\n      margin-right: 12px; }\n      .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__label .block-editor-block-icon svg.uagb-editor-icons path {\n        stroke: #0063a1; }\n  .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__fieldset {\n    justify-content: center; }\n    .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__fieldset .components-placeholder__instructions {\n      width: 100%;\n      text-align: center;\n      margin-bottom: 32px; }\n  .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-button.is-tertiary {\n    box-shadow: inset 0 0 0 1px var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));\n    color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));\n    padding: 6px 12px; }\n    .wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-button.is-tertiary:hover {\n      box-shadow: inset 0 0 0 1px var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #006ba1));\n      color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #006ba1)); }\n\n.wp-block-uagb-image .components-resizable-box__container {\n  max-width: 100% !important;\n  height: auto !important; }\n  .wp-block-uagb-image .components-resizable-box__container img {\n    max-width: 100% !important; }\n\n.wp-block-uagb-image .components-placeholder.is-medium .components-placeholder__instructions {\n  display: block !important; }\n\n.wp-block-uagb-image .components-placeholder.is-medium .components-placeholder__fieldset {\n  flex-direction: row; }\n  .wp-block-uagb-image .components-placeholder.is-medium .components-placeholder__fieldset .components-button {\n    margin-right: 10px; }\n\n.wp-block-uagb-image .block-editor-media-placeholder__url-input-container .components-button.is-pressed:hover:not(:disabled),\n.wp-block-uagb-image .block-editor-media-placeholder__url-input-container .components-button.is-pressed {\n  background-color: #ffffff; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .block-editor-inner-blocks,\n.wp-block[data-type="uagb/buttons"][data-btn-width="full"] .wp-block[data-type="uagb/buttons-child"] {\n  width: 100%; }\n\n.uagb-buttons__outer-wrap .block-editor-inner-blocks {\n  width: 100%; }\n  .uagb-buttons__outer-wrap .block-editor-inner-blocks .block-editor-block-list__layout {\n    display: inline-flex; }\n\n.uagb-buttons__outer-wrap .uagb-buttons__wrap .block-editor-block-list__layout .block-list-appender {\n  margin-right: -60px !important; }\n\n.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 5px 10px; }\n\n.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 12px 24px; }\n\n.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 20px 30px; }\n\n.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 30px 65px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-tablet.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 5px 10px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-tablet.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 12px 24px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-tablet.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 20px 30px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-tablet.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 30px 65px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-mobile.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 5px 10px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-mobile.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 12px 24px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-mobile.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 20px 30px; }\n\n.uagb-buttons__outer-wrap.uagb-editor-preview-mode-mobile.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline) {\n  padding: 30px 65px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.block-editor-page #wpwrap .edit-post-visual-editor a.uagb-infobox-link-wrap {\n  z-index: -1;\n  color: inherit; }\n\n.block-editor-page #wpwrap .uagb-disable-link {\n  pointer-events: all; }\n\n.block-editor-block-list__block .uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg {\n  height: 30px; }\n\n.uagb-ifb-title-wrap .block-editor-rich-text__editable.uagb-ifb-title.rich-text {\n  margin-top: 0; }\n\n.uagb-infobox-icon-left svg,\n.uagb-infobox-icon-right svg {\n  box-sizing: content-box; }\n\n.uagb-infobox-link-wrap {\n  pointer-events: none; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.uagb-cta__content-wrap.uagb-cta__icon-position-above-title {\n  text-align: center; }\n\n.editor-styles-wrapper .edit-post-visual-editor a.uagb-cta__block-link-wrap {\n  color: inherit; }\n\n.editor-styles-wrapper .uagb-cta__title,\n.editor-styles-wrapper .uagb-cta-separator-parent,\n.editor-styles-wrapper .uagb-cta__desc {\n  margin-bottom: 10px;\n  margin-top: auto; }\n\n.editor-styles-wrapper .uagb-cta__desc {\n  margin: 0; }\n\n.editor-styles-wrapper .uagb-cta__block-link i {\n  font-style: normal; }\n\n.wp-block-uagb-call-to-action.uagb-cta__outer-wrap a.uagb-cta__link-to-all {\n  z-index: 0; }\n\n.editor-styles-wrapper .uagb-cta__outer-wrap .uagb-cta__buttons {\n  display: inline-flex; }\n\n.editor-styles-wrapper .uagb-cta__outer-wrap a.wp-block-button__link,\n.editor-styles-wrapper .uagb-cta__outer-wrap a.ast-outline-button {\n  justify-content: center; }\n\n.editor-styles-wrapper .uagb-cta__outer-wrap .uagb-cta__button-link-wrapper,\n.editor-styles-wrapper .uagb-cta__outer-wrap .uagb-cta-second__button {\n  fill: currentColor;\n  width: 100%; }\n\n.editor-styles-wrapper .uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper,\n.editor-styles-wrapper .uagb-cta__outer-wrap a.uagb-cta-second__button {\n  text-decoration: none;\n  fill: currentColor;\n  width: 100%; }\n\n.editor-styles-wrapper .uagb-cta__title[contenteditable="true"]:focus,\n.editor-styles-wrapper .uagb-cta__desc[contenteditable="true"]:focus {\n  border: 2px solid var(--wp-admin-theme-color);\n  border-radius: 8px; }\n\n.editor-styles-wrapper .uagb-editor-preview-mode-tablet .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap {\n  flex-direction: column;\n  text-align: center; }\n  .editor-styles-wrapper .uagb-editor-preview-mode-tablet .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__link-wrapper {\n    width: 100%; }\n    .editor-styles-wrapper .uagb-editor-preview-mode-tablet .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__link-wrapper .uagb-cta__button-wrapper {\n      float: none;\n      margin: 0 auto; }\n\n.editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap {\n  flex-direction: column;\n  text-align: center; }\n  .editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__link-wrapper {\n    width: 100%; }\n    .editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__link-wrapper .uagb-cta__button-wrapper {\n      float: none;\n      margin: 0 auto; }\n\n.editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap {\n  flex-direction: column;\n  text-align: center; }\n  .editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__link-wrapper {\n    width: 100%; }\n    .editor-styles-wrapper .uagb-editor-preview-mode-mobile .uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__link-wrapper .uagb-cta__button-wrapper {\n      float: none;\n      margin: 0 auto; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'[data-type="uagb/countdown"] {\n  padding: 10px 0; }\n\n.uagb-countdown__datetime-picker .uagb-countdown-settings_utc-notice {\n  margin-right: unset;\n  margin-left: unset;\n  padding-right: unset;\n  padding-bottom: unset;\n  margin-bottom: 1.5em; }\n  .uagb-countdown__datetime-picker .uagb-countdown-settings_utc-notice .components-notice__content {\n    margin-right: unset; }\n\n.uagb-countdown__datetime-picker h3.components-heading {\n  margin-bottom: unset; }\n\n.uagb-countdown__datetime-picker .components-datetime__calendar-help .components-heading {\n  margin-bottom: 1.5em; }\n\n.uagb-countdown__datetime-picker .components-datetime__calendar-help ul:not(:last-child) {\n  margin-bottom: 1.5em; }\n\n.uagb-countdown-pro-toolbar .components-toolbar-button {\n  font-weight: bold; }\n  .uagb-countdown-pro-toolbar .components-toolbar-button:focus::before {\n    box-shadow: unset; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/**\n * Editor styles for the admin\n */\n.editor-styles-wrapper .uagb-blockquote__skin-quotation blockquote.uagb-blockquote {\n  vertical-align: baseline;\n  padding: 0;\n  margin: 0;\n  background: transparent;\n  border: 0 none;\n  outline: 0;\n  font-size: 100%;\n  font-style: normal;\n  quotes: none; }\n\n.editor-styles-wrapper blockquote.uagb-blockquote {\n  padding: 0;\n  margin: 0; }\n\n.editor-styles-wrapper .uagb-blockquote__skin-border blockquote {\n  padding-left: 10px; }\n\n.editor-styles-wrapper .uagb-blockquote__content,\n.editor-styles-wrapper cite.uagb-blockquote__author,\n.editor-styles-wrapper .uagb-blockquote__author {\n  font-style: normal; }\n\n.editor-styles-wrapper .uagb-blockquote a {\n  box-shadow: none;\n  text-decoration: none;\n  -webkit-box-shadow: none; }\n\n.editor-styles-wrapper .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,\n.editor-styles-wrapper .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button {\n  color: #fff; }\n\n.editor-styles-wrapper .uagb-blockquote__align-center a.uagb-blockquote__tweet-button {\n  margin: 0 auto; }\n\n.uagb-editor-preview-mode-tablet .uagb-blockquote__stack-img-tablet footer {\n  -webkit-flex-direction: column;\n  -ms-flex-direction: column;\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet .uagb-blockquote__stack-img-tablet footer .uagb-blockquote__tweet-button {\n    align-self: flex-start; }\n\n.uagb-editor-preview-mode-mobile .uagb-blockquote__stack-img-mobile footer {\n  -webkit-flex-direction: column;\n  -ms-flex-direction: column;\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile .uagb-blockquote__stack-img-mobile footer .uagb-blockquote__tweet-button {\n    align-self: flex-start; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/*\n  Content Timeline.\n*/\n@media screen and (max-width: 1023px) {\n  .block-editor-inner-blocks .uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-right.uagb-timeline__events-inner-new {\n    left: -15px; }\n  .block-editor-inner-blocks .uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-left.uagb-timeline__events-inner-new {\n    right: -15px; }\n  .block-editor-inner-blocks .uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right.uagb-timeline__events-inner-new {\n    right: -15px; }\n  .block-editor-inner-blocks .uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left.uagb-timeline__events-inner-new {\n    right: -15px; } }\n\n.editor-styles-wrapper .block-editor-block-list__block[data-type="uagb/content-timeline"],\n.edit-post-visual-editor .block-editor-block-list__block[data-type="uagb/content-timeline"] {\n  padding: 15px; }\n  .editor-styles-wrapper .block-editor-block-list__block[data-type="uagb/content-timeline"] .components-button svg,\n  .editor-styles-wrapper .block-editor-block-list__block[data-type="uagb/content-timeline"] .wp-block .block-editor-button-block-appender svg,\n  .edit-post-visual-editor .block-editor-block-list__block[data-type="uagb/content-timeline"] .components-button svg,\n  .edit-post-visual-editor .block-editor-block-list__block[data-type="uagb/content-timeline"] .wp-block .block-editor-button-block-appender svg {\n    fill: #fff;\n    width: 24px; }\n\n.editor-styles-wrapper .block-editor-block-list__block .uagb-timeline__outer-wrap.uagb-timeline__left-block .uagb-timeline__line,\n.edit-post-visual-editor .block-editor-block-list__block .uagb-timeline__outer-wrap.uagb-timeline__left-block .uagb-timeline__line {\n  right: auto;\n  left: 34px; }\n\n.editor-styles-wrapper .block-editor-block-list__block .uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__line,\n.edit-post-visual-editor .block-editor-block-list__block .uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__line {\n  right: 31px;\n  left: auto; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/*\n  Content Timeline Child.\n*/\n#wpwrap .edit-post-visual-editor .block-editor-block-list__block[data-type="uagb/content-timeline-child"] {\n  padding-left: 0;\n  padding-right: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'[data-type="uagb/faq"] .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n  width: auto;\n  padding-right: 0;\n  padding-left: 0;\n  margin-top: 0;\n  margin-bottom: 0; }\n\n[data-type="uagb/faq"] .block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: block; }\n\n[data-type="uagb/faq"] .uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: grid; }\n\n[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks > .block-editor-block-list__layout .block-editor-block-list__block,\n[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks > .block-editor-block-list__layout .uagb-faq-child__outer-wrap,\n[data-type="uagb/faq"] .uagb-faq-layout-grid.uagb-faq-equal-height .block-editor-inner-blocks > .block-editor-block-list__layout .uagb-faq-item {\n  height: 100%; }\n\n[data-type="uagb/faq"] .uagb-editor-preview-mode-mobile.uagb-faq-layout-grid.uagb-faq-equal-height\n.block-editor-inner-blocks > .block-editor-block-list__layout .block-editor-block-list__block,\n[data-type="uagb/faq"] .uagb-editor-preview-mode-mobile.uagb-faq-layout-grid.uagb-faq-equal-height\n.block-editor-inner-blocks > .block-editor-block-list__layout .uagb-faq-child__outer-wrap,\n[data-type="uagb/faq"] .uagb-editor-preview-mode-mobile.uagb-faq-layout-grid.uagb-faq-equal-height\n.block-editor-inner-blocks > .block-editor-block-list__layout .uagb-faq-item {\n  height: auto; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button {\n  cursor: pointer; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button {\n  display: flex;\n  align-items: center;\n  width: auto; }\n  [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-faq-icon-wrap {\n    display: flex;\n    align-items: center; }\n  [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-questions-button .uagb-question {\n    width: 100%;\n    margin-top: 0;\n    margin-bottom: 0; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-content {\n  margin: 0;\n  border-width: 0; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item p {\n  margin-bottom: 0; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon {\n  display: none; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active {\n  display: flex; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active.uagb-faq-item .uagb-faq-content,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq__active.uagb-faq-item .uagb-faq-content {\n  display: block; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active.uagb-faq-item .uagb-icon,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq__active.uagb-faq-item .uagb-icon {\n  display: none; }\n\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq__active.uagb-faq-item .uagb-icon-active,\n[data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap .uagb-faq__active.uagb-faq-item .uagb-icon-active {\n  display: flex; }\n\n.uagb-faq-layout-grid\n[data-type="uagb/faq-child"]\n.uagb-faq-child__outer-wrap.uagb-faq__active.uagb-faq-item\n.uagb-icon-active {\n  display: none; }\n\n.uagb-faq-layout-grid\n[data-type="uagb/faq-child"]\n.uagb-faq-child__outer-wrap.uagb-faq__active.uagb-faq-item\n.uagb-icon {\n  display: none; }\n\n.uagb-faq-layout-grid [data-type="uagb/faq-child"] .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,\n.uagb-faq-layout-grid\n[data-type="uagb/faq-child"]\n.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active\n.uagb-icon-active {\n  display: none; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-forms__outer-wrap {\n  padding: 25px; }\n  .uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-form-hidden-data {\n    display: none; }\n  .uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-required-wrap {\n    float: right; }\n    .uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-required-wrap .components-toggle-control .components-base-control__field .components-form-toggle {\n      margin-left: 5px;\n      margin-top: 4px; }\n    .uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-required-wrap .components-toggle-control .components-base-control__field .components-toggle-control__label {\n      margin-right: 5px; }\n  .uagb-forms__outer-wrap .uagb-forms-main-form input[type="checkbox"],\n  .uagb-forms__outer-wrap .uagb-forms-main-form input[type="radio"] {\n    margin-top: 5px;\n    margin-bottom: 5px; }\n  .uagb-forms__outer-wrap .block-editor-block-list__block {\n    padding: 0;\n    margin: 0; }\n\n.components-select-control__input {\n  height: auto;\n  -webkit-appearance: none;\n  appearance: none; }\n\n.ast-outline-button {\n  display: inline-flex; }\n\n.uagb-form-notice {\n  padding: 8px 10px;\n  background-color: #fff8e5;\n  border-left: 5px solid #ffb901;\n  color: #32373c;\n  font-size: 13px;\n  line-height: 20px; }\n\nselect.uagb-forms-select-box.uagb-forms-input {\n  max-width: 100%; }\n\n.uagb-form-emailto {\n  margin-top: 10px; }\n\n.uagb-forms-recaptcha-button {\n  display: block;\n  width: 50%;\n  margin-bottom: 15px; }\n\n.uagb-forms-variations .block-editor-block-variation-picker__variations {\n  display: flex;\n  flex-wrap: nowrap; }\n\n.uagb-forms-phone-wrap .uagb-forms-phone-flex {\n  display: flex;\n  width: 100%; }\n  .uagb-forms-phone-wrap .uagb-forms-phone-flex .components-base-control__field {\n    height: calc(100% - 8px); }\n  .uagb-forms-phone-wrap .uagb-forms-phone-flex .uagb-form-phone-country {\n    width: auto !important; }\n  .uagb-forms-phone-wrap .uagb-forms-phone-flex .uagb-forms-phone-input {\n    margin-bottom: 8px; }\n\n.uagb-forms-main-submit-button {\n  justify-content: center; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-columns__wrap::before {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1;\n  border: 1px dashed #03ddff;\n  content: ""; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-columns__wrap::before {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1;\n  border: 1px dashed #03ddff;\n  content: ""; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".editor-styles-wrapper .uagb-forms-phone-wrap .uagb-form-phone-country-editor {\n  line-height: normal; }\n  .editor-styles-wrapper .uagb-forms-phone-wrap .uagb-form-phone-country-editor .components-input-control__backdrop {\n    border: none;\n    box-shadow: none !important; }\n\n.editor-styles-wrapper .uagb-form-phone-country {\n  border: 1px solid #8c8f94;\n  border-radius: 4px; }\n\n.editor-styles-wrapper .uagb-forms-phone-wrap .components-base-control {\n  width: 30%;\n  float: right; }\n\n.editor-styles-wrapper .uagb-forms-phone-wrap .uagb-forms-phone-input {\n  width: 70%; }\n\n.uagb-editor-preview-mode-tablet .uagb-forms-phone-flex {\n  height: unset !important; }\n  .uagb-editor-preview-mode-tablet .uagb-forms-phone-flex .uagb-form-phone-country {\n    height: unset; }\n\n.uagb-editor-preview-mode-mobile .uagb-forms-phone-flex {\n  height: unset !important; }\n  .uagb-editor-preview-mode-mobile .uagb-forms-phone-flex .uagb-form-phone-country {\n    height: unset; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-forms-checkbox-wrap input[type="checkbox"],\n.uagb-form-checkbox-option input[type="checkbox"] {\n  vertical-align: middle;\n  margin-right: 15px; }\n\n.uagb-forms-checkbox-controls {\n  margin-top: 10px; }\n\n.uagb-form-checkbox-option-delete.has-icon {\n  vertical-align: middle;\n  padding: 10px;\n  margin: 0; }\n\n.uagb-form-checkbox-option .uagb-inner-input-view {\n  margin-right: 20px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-forms-radio-wrap input[type="radio"],\n.uagb-form-radio-option input[type="radio"] {\n  vertical-align: middle;\n  margin-right: 15px; }\n\n.uagb-forms-radio-controls {\n  margin-top: 10px; }\n\n.uagb-form-radio-option-delete.has-icon {\n  vertical-align: middle;\n  padding: 10px;\n  margin: 0; }\n\n.uagb-forms-main-form .uagb-inner-input-view {\n  vertical-align: middle;\n  width: 35% !important;\n  margin: 0 10px !important; }\n\n.uagb-forms-main-form .uagb-forms-radio-wrap input[type="radio"] {\n  border-radius: 50%; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-forms-select-controls {\n  margin-top: 10px; }\n\n.uagb-form-select-option-delete.has-icon {\n  vertical-align: middle;\n  padding: 10px;\n  margin: 0; }\n\n.uagb-forms-main-form .uagb-inner-input-view {\n  vertical-align: middle;\n  width: 35% !important;\n  margin: 0 10px !important; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* The switch - the box around the slider */\n.uagb-switch {\n  position: relative;\n  display: inline-block;\n  /* The slider */ }\n  .uagb-switch input {\n    width: 0;\n    height: 0;\n    opacity: 0; }\n  .uagb-switch .uagb-slider {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    cursor: pointer;\n    transition: 0.4s;\n    -webkit-transition: 0.4s; }\n  .uagb-switch .uagb-slider::before {\n    position: absolute;\n    bottom: 4px;\n    left: 4px;\n    background-color: #fff;\n    transition: 0.4s;\n    content: "";\n    -webkit-transition: 0.4s; }\n\n.uagb-switch input:checked + .uagb-slider::before {\n  -webkit-transform: translateX(26px);\n  -ms-transform: translateX(26px);\n  transform: translateX(26px); }\n\n/* Rounded sliders */\n.uagb-slider.round {\n  border-radius: 34px; }\n\n.uagb-slider.round::before {\n  border-radius: 50%; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".components-base-control.minDate,\n.components-base-control.maxDate {\n  display: inline-block;\n  width: 30%; }\n\n.uagb-forms-date-invalidate {\n  color: #f00;\n  font-weight: 400; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-forms-editor-privacy-link .components-base-control__help {\n  color: #f00; }\n\n[data-type="uagb/forms-accept"] .uagb-forms-required-wrap {\n  width: 100%; }\n  [data-type="uagb/forms-accept"] .uagb-forms-required-wrap .components-base-control.components-toggle-control .components-base-control__field {\n    justify-content: flex-start; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".block-editor-block-list__block .uagb-google-map__wrap {\n  padding: 25px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices {\n  padding: 8px 10px;\n  background-color: #fff8e5;\n  border-left: 5px solid #ffb901;\n  color: #32373c;\n  font-size: 13px;\n  line-height: 20px; }\n  .editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices ul {\n    padding-bottom: 0;\n    margin: 0; }\n  .editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices h6 {\n    margin: 0;\n    font-size: inherit;\n    line-height: inherit; }\n  .editor-styles-wrapper [data-type="uagb/how-to"] .how-to-schema-notices p {\n    margin: 15px 0 0;\n    color: #555d66;\n    font-size: inherit; }\n\n.editor-styles-wrapper [data-type="uagb/how-to"] .wp-block {\n  margin: 0;\n  max-width: unset; }\n\n.wp-block-uagb-how-to .block-editor-button-block-appender {\n  width: 10%;\n  margin-top: 0;\n  margin-left: 20px; }\n\n.editor-styles-wrapper .uagb-howto__time-wrap h3,\n.editor-styles-wrapper .uagb-howto__cost-wrap h3,\n.editor-styles-wrapper .uagb-how-to-tools__wrap h3,\n.editor-styles-wrapper .uagb-how-to-steps__wrap h3 {\n  margin-top: 20px;\n  margin-bottom: 20px; }\n\n.editor-styles-wrapper .uagb-howto__time-wrap p,\n.editor-styles-wrapper .uagb-howto__cost-wrap p,\n.editor-styles-wrapper .uagb-how-to-tools__wrap p,\n.editor-styles-wrapper .uagb-how-to-steps__wrap p {\n  margin-top: 25px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-step-link-all {\n  height: 100%;\n  width: 100%;\n  top: 0;\n  left: 0;\n  position: absolute;\n  z-index: 3;\n  box-shadow: none;\n  text-decoration: none;\n  color: inherit; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n#wpwrap .edit-post-visual-editor a.uagb-icon-list__link {\n  color: #3a3a3a; }\n\n#wpwrap .wp-block-uagb-icon-list .wp-block-uagb-icon-list-child span {\n  cursor: text; }\n\n[data-type="uagb/icon-list"] .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n  width: auto;\n  padding-left: 0;\n  padding-right: 0;\n  margin-left: 0;\n  margin-right: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-icon-list__wrap > .block-editor-inner-blocks {\n  width: 100%; }\n\n.wp-block.block-editor-block-list__block[data-type="uagb/icon-list-child"] a {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: unset; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n/* stylelint-disable at-rule-no-unknown */\n.spectra-image-gallery-init-wrapper {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  padding: 2rem;\n  width: 100%;\n  box-sizing: border-box;\n  border: 1px dashed #555d66;\n  border-radius: 2px; }\n  .spectra-image-gallery-init-wrapper > .spectra-image-gallery-init-wrapper__title {\n    display: flex;\n    align-items: center;\n    font-size: 24px;\n    font-weight: 400;\n    margin-bottom: 8px; }\n    .spectra-image-gallery-init-wrapper > .spectra-image-gallery-init-wrapper__title svg {\n      width: 24px;\n      height: 24px;\n      margin-right: 12px; }\n  .spectra-image-gallery-init-wrapper > .spectra-image-gallery-init-wrapper__help-text {\n    font-size: 13px;\n    margin-top: 0;\n    margin-bottom: 32px !important; }\n  .spectra-image-gallery-init-wrapper .components-input-control__container {\n    box-sizing: border-box;\n    margin: 0;\n    font-weight: var(--heading-weight-500);\n    border: 1px solid #ddd;\n    min-height: 100%;\n    font-size: 13px;\n    line-height: 1.25em;\n    border-radius: 4px; }\n    .spectra-image-gallery-init-wrapper .components-input-control__container:focus {\n      box-shadow: none;\n      border-color: #aaa;\n      color: #444; }\n    .spectra-image-gallery-init-wrapper .components-input-control__container:hover {\n      color: #444; }\n  .spectra-image-gallery-init-wrapper svg {\n    width: 3em;\n    height: 3em; }\n    .spectra-image-gallery-init-wrapper svg path {\n      stroke: #0063a1; }\n\n.spectra-image-gallery__layout--carousel .slick-dots {\n  bottom: -30px !important; }\n\n.spectra-image-gallery__control-lightbox {\n  position: absolute;\n  opacity: 1;\n  width: 100% !important;\n  max-width: 100% !important;\n  height: 100% !important;\n  max-height: 100% !important; }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry,\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry,\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry {\n  height: initial !important;\n  display: grid; }\n  .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper,\n  .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope,\n  .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper,\n  .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope,\n  .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper,\n  .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope {\n    width: auto !important;\n    height: auto !important;\n    aspect-ratio: 1; }\n    .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media--masonry,\n    .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media-thumbnail--masonry,\n    .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media--masonry,\n    .editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media-thumbnail--masonry,\n    .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media--masonry,\n    .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media-thumbnail--masonry,\n    .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media--masonry,\n    .uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media-thumbnail--masonry,\n    .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media--masonry,\n    .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper .spectra-image-gallery__media-thumbnail--masonry,\n    .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media--masonry,\n    .uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope .spectra-image-gallery__media-thumbnail--masonry {\n      width: 100% !important;\n      height: 100% !important;\n      object-fit: cover; }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-1 {\n  grid-template-columns: repeat(1, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-2 {\n  grid-template-columns: repeat(2, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-3 {\n  grid-template-columns: repeat(3, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-4 {\n  grid-template-columns: repeat(4, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-5 {\n  grid-template-columns: repeat(5, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-6 {\n  grid-template-columns: repeat(6, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-7 {\n  grid-template-columns: repeat(7, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-8 {\n  grid-template-columns: repeat(8, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-1 {\n  grid-template-columns: repeat(1, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-2 {\n  grid-template-columns: repeat(2, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-3 {\n  grid-template-columns: repeat(3, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-4 {\n  grid-template-columns: repeat(4, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-5 {\n  grid-template-columns: repeat(5, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-6 {\n  grid-template-columns: repeat(6, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-7 {\n  grid-template-columns: repeat(7, minmax(0, 1fr)); }\n\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-8 {\n  grid-template-columns: repeat(8, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-1 {\n  grid-template-columns: repeat(1, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-2 {\n  grid-template-columns: repeat(2, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-3 {\n  grid-template-columns: repeat(3, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-4 {\n  grid-template-columns: repeat(4, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-5 {\n  grid-template-columns: repeat(5, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-6 {\n  grid-template-columns: repeat(6, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-7 {\n  grid-template-columns: repeat(7, minmax(0, 1fr)); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .spectra-image-gallery__layout--masonry-col-8 {\n  grid-template-columns: repeat(8, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-1,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-1,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-1 {\n  grid-template-columns: repeat(1, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-2,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-2,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-2 {\n  grid-template-columns: repeat(2, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-3,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-3,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-3 {\n  grid-template-columns: repeat(3, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-4,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-4,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-4 {\n  grid-template-columns: repeat(4, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-5,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-5,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-5 {\n  grid-template-columns: repeat(5, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-6,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-6,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-6 {\n  grid-template-columns: repeat(6, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-7,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-7,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-7 {\n  grid-template-columns: repeat(7, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--masonry-col-tab-8,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--grid-col-tab-8,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-tablet .spectra-image-gallery__layout--tiled-col-tab-8 {\n  grid-template-columns: repeat(8, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-1,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-1,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-1 {\n  grid-template-columns: repeat(1, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-2,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-2,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-2 {\n  grid-template-columns: repeat(2, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-3,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-3,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-3 {\n  grid-template-columns: repeat(3, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-4,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-4,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-4 {\n  grid-template-columns: repeat(4, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-5,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-5,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-5 {\n  grid-template-columns: repeat(5, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-6,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-6,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-6 {\n  grid-template-columns: repeat(6, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-7,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-7,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-7 {\n  grid-template-columns: repeat(7, minmax(0, 1fr)); }\n\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--masonry-col-mob-8,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--grid-col-mob-8,\n.editor-styles-wrapper\n.is-root-container.edit-site-block-editor__block-list.wp-site-blocks\n.uagb-editor-preview-mode-mobile .spectra-image-gallery__layout--tiled-col-mob-8 {\n  grid-template-columns: repeat(8, minmax(0, 1fr)); }\n\n.editor-styles-wrapper [data-type="uagb/image-gallery"] {\n  width: 100%; }\n\n[data-type="uagb/image-gallery"] .slick-arrow {\n  border-width: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-title {\n  margin-bottom: 0; }\n\n.editor-styles-wrapper [data-type="uagb/inline-notice"] p.block-editor-rich-text__editable.uagb-notice-text.rich-text {\n  margin: 0; }\n\n.editor-styles-wrapper [data-type="uagb/inline-notice"] p.block-editor-rich-text__editable.uagb-notice-title.rich-text {\n  margin: 0; }\n\n.editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-text.block-editor-block-list__layout p:last-child {\n  margin-bottom: 0; }\n\n.editor-styles-wrapper [data-type="uagb/inline-notice"] .uagb-notice-text.block-editor-block-list__layout p:first-child {\n  margin-top: 0 !important; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/* stylelint-disable color-hex-case, color-hex-length */\n.uagb-lottie_upload_wrap {\n  background: #eee; }\n  .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder {\n    box-shadow: none;\n    border: 1px dashed #555d66; }\n    .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__label {\n      margin-left: auto;\n      margin-right: auto;\n      margin-bottom: 8px;\n      font-size: 24px;\n      font-weight: 400; }\n      .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__label .block-editor-block-icon {\n        margin-right: 12px; }\n        .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__label .block-editor-block-icon svg.uagb-editor-icons path {\n          stroke: #0063a1; }\n    .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__fieldset {\n      justify-content: center; }\n      .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__fieldset .components-placeholder__instructions {\n        width: 100%;\n        text-align: center;\n        margin-bottom: 32px; }\n    .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-button.is-tertiary {\n      box-shadow: inset 0 0 0 1px var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));\n      color: var(--wp-components-color-accent, var(--wp-admin-theme-color, #007cba));\n      padding: 6px 12px; }\n      .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-button.is-tertiary:hover {\n        box-shadow: inset 0 0 0 1px var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #006ba1));\n        color: var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #006ba1)); }\n  .uagb-lottie_upload_wrap .components-resizable-box__container {\n    max-width: 100% !important;\n    height: auto !important; }\n    .uagb-lottie_upload_wrap .components-resizable-box__container img {\n      max-width: 100% !important; }\n  .uagb-lottie_upload_wrap .components-placeholder.is-medium .components-placeholder__instructions {\n    display: block !important; }\n  .uagb-lottie_upload_wrap .components-placeholder.is-medium .components-placeholder__fieldset {\n    flex-direction: row; }\n    .uagb-lottie_upload_wrap .components-placeholder.is-medium .components-placeholder__fieldset .components-button {\n      margin-right: 10px; }\n  .uagb-lottie_upload_wrap .block-editor-media-placeholder__url-input-container .components-button.is-pressed:hover:not(:disabled),\n  .uagb-lottie_upload_wrap .block-editor-media-placeholder__url-input-container .components-button.is-pressed {\n    background-color: #ffffff; }\n  .uagb-lottie_upload_wrap .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions {\n    align-self: center; }\n\n.uagb-lottie_upload_wrap-controller .components-placeholder {\n  box-shadow: none; }\n\n.uagb-show-notice {\n  padding: 20px;\n  background: #eee; }\n\n.uagb-lottie__center {\n  margin: 0 auto; }\n\n.uagb-lottie__right {\n  margin-left: auto; }\n\n.uagb-lottie__left {\n  margin-right: auto; }\n\n.block-editor .block-editor__container .block-editor-media-flow__url-input .block-editor-link-control {\n  width: auto; }\n\n.uagb-lottie-instructions__lottie-url {\n  pointer-events: auto !important; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/**\n * Editor styles for the admin\n */\np.uagb-marketing-btn__prefix.block-editor-rich-text__editable {\n  margin-bottom: 0 !important; }\n\n#wpwrap .edit-post-visual-editor a.uagb-marketing-btn__link {\n  pointer-events: all;\n  display: inline-block; }\n\n.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link {\n  text-align: center; }\n\n.uagb-marketing-btn__align-text-left .uagb-marketing-btn__link {\n  text-align: left; }\n\n.uagb-marketing-btn__align-text-right .uagb-marketing-btn__link {\n  text-align: right; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup.uagb-modal-type-right-off-canvas .uagb-modal-popup-wrap {\n  margin: 0 !important; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup.uagb-modal-type-right-off-canvas.active {\n  padding: 0 !important; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup.uagb-modal-type-left-off-canvas .uagb-modal-popup-wrap {\n  margin: 0 !important; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup.uagb-modal-type-left-off-canvas.active {\n  padding: 0 !important; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup .uagb-modal-popup-wrap {\n  margin: 30px; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup button.uagb-modal-popup-close {\n  border: none;\n  background: transparent;\n  background-color: transparent;\n  padding: 0; }\n\n.editor-styles-wrapper .uagb-modal-wrapper .uagb-modal-popup.active {\n  background: rgba(0, 0, 0, 0.6);\n  border: 2px none #ddd;\n  display: flex;\n  margin-top: 20px;\n  padding: 30px;\n  position: relative; }\n\n.uagb-spectra-button-wrapper > div {\n  display: inline-block; }\n\n.rtl .editor-styles-wrapper .uagb-modal-button-link .uagb-modal-content-wrapper > svg {\n  margin-left: 5px;\n  margin-right: 5px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n.editor-styles-wrapper .uagb-post-grid:not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap {\n  background-clip: content-box !important; }\n\n.editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap {\n  overflow: hidden; }\n  .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode {\n    margin: 20px; }\n    .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode [data-type="uagb/post-meta"] span,\n    .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode [data-type="uagb/post-meta"] time {\n      margin-right: 10px;\n      font-weight: 500; }\n    .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode .block-editor-block-list__block {\n      margin-bottom: 25px; }\n      .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode .block-editor-block-list__block .uagb-post__taxonomy {\n        font-size: unset; }\n      .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap.uagb-post__edit-mode .block-editor-block-list__block .uagb-post__image {\n        width: 50%; }\n  .editor-styles-wrapper .uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy {\n    flex-wrap: nowrap; }\n\n.editor-styles-wrapper .uagb-post-grid .uagb-block-all-post__actions {\n  margin: 20px; }\n\n.editor-styles-wrapper .uagb-post-grid h2 a {\n  text-decoration: none; }\n\n.editor-styles-wrapper .uagb-post-grid a {\n  cursor: default;\n  pointer-events: none; }\n\n.editor-styles-wrapper .uagb-post-grid .wp-block-uagb-post-grid article {\n  pointer-events: visible; }\n\n.editor-styles-wrapper .uagb-post-grid .uagb-post__load-more-wrap {\n  width: 100%; }\n  .editor-styles-wrapper .uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button {\n    cursor: pointer;\n    pointer-events: visible; }\n  .editor-styles-wrapper .uagb-post-grid .uagb-post__load-more-wrap a {\n    color: inherit; }\n\n.editor-styles-wrapper .uagb-post-grid .wp-block-uagb-post-grid:last-child .uagb-post-pagination-wrap {\n  grid-column: 1 / -1; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-1 article {\n  width: 100%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-2 article {\n  width: 50%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-3 article {\n  width: 33.2%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-4 article {\n  width: 25%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-5 article {\n  width: 20%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-6 article {\n  width: 16.66%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-7 article {\n  width: 14.28%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-tablet:not(.wp-block-uagb-post-grid).uagb-post__columns-tablet-8 article {\n  width: 12.5%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-1 article {\n  width: 100%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-2 article {\n  width: 50%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-3 article {\n  width: 33.2%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-4 article {\n  width: 25%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-5 article {\n  width: 20%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-6 article {\n  width: 16.66%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-7 article {\n  width: 14.28%; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-editor-preview-mode-mobile:not(.wp-block-uagb-post-grid).uagb-post__columns-mobile-8 article {\n  width: 12.5%; }\n\n.editor-styles-wrapper .uagb-post-grid:not(.is-grid).uagb-post__items {\n  display: flex;\n  -ms-flex-wrap: wrap;\n  -webkit-flex-wrap: wrap;\n  flex-wrap: wrap; }\n\n.editor-styles-wrapper .uagb-post-grid.is_grid {\n  display: grid; }\n\n.block-editor-page #wpwrap .edit-post-visual-editor .slick-dots {\n  padding-left: 0; }\n  .block-editor-page #wpwrap .edit-post-visual-editor .slick-dots button {\n    color: transparent; }\n\n.block-editor-page #wpwrap .edit-post-visual-editor .uagb-post__image-position-background .uagb-post__image img {\n  position: absolute;\n  top: 50%;\n  left: 50%;\n  width: auto;\n  height: auto;\n  max-width: none;\n  min-width: 100%;\n  min-height: 100%;\n  transform: translate(-50%, -50%);\n  -webkit-transform: translate(-50%, -50%);\n  -ms-transform: translate(-50%, -50%); }\n\n.editor-styles-wrapper .is-root-container.edit-site-block-editor__block-list.wp-site-blocks .is-masonry {\n  height: initial !important; }\n\n.editor-styles-wrapper [data-type="uagb/post-carousel"] {\n  width: 100%; }\n\n.editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-post-grid .uagb-post__inner-wrap p {\n  margin-bottom: 0; }\n\n.editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-top article.uagb-post__inner-wrap,\n.editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-background article.uagb-post__inner-wrap {\n  position: relative; }\n  .editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-top article.uagb-post__inner-wrap .uagb-post__text:nth-last-child(2),\n  .editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-background article.uagb-post__inner-wrap .uagb-post__text:nth-last-child(2) {\n    padding-bottom: 100px !important; }\n  .editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-top article.uagb-post__inner-wrap .uagb-post__text:last-child,\n  .editor-styles-wrapper .is-grid.uagb-equal_height_inline-read-more-buttons-in-editor.uagb-post__image-position-background article.uagb-post__inner-wrap .uagb-post__text:last-child {\n    position: absolute;\n    bottom: 20px; }\n\n.editor-styles-wrapper .uagb-post-grid.uagb-post__items.is-carousel {\n  visibility: visible; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.edit-post-visual-editor .block-editor-block-list__block .uagb-timeline__field {\n  margin: 0; }\n  .edit-post-visual-editor .block-editor-block-list__block .uagb-timeline__field a {\n    text-decoration: none;\n    font-size: inherit;\n    margin: 0; }\n\n.edit-post-visual-editor .block-editor-block-list__block .wp-block-uagb-post-timeline a {\n  pointer-events: none; }\n\n.uagb-timeline__link_parent > div {\n  display: inline-block; }\n\n.uagb-editor-preview-mode-tablet.uagb-timeline .uagb-timeline__image img,\n.uagb-editor-preview-mode-mobile.uagb-timeline .uagb-timeline__image img {\n  max-width: 100%; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.editor-styles-wrapper [data-type="uagb/restaurant-menu"].block-editor-block-list__block {\n  display: flex;\n  width: 100%; }\n\n.editor-styles-wrapper .wp-block-uagb-restaurant-menu {\n  width: 100%;\n  display: block;\n  /*\n\t\t/* Responsive for price-list on tablet in editor\n\t\t*/\n  /*\n\t\t/* Responsive for price-list on mobile in editor\n\t\t*/ }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .block-editor-block-list__layout {\n    display: grid; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rm__title {\n    margin-top: 0; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rm__separator {\n    margin-bottom: 10px; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rm__price.rich-text {\n    min-width: fit-content !important; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content {\n    padding-left: unset;\n    padding-right: unset;\n    display: inline-flex; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rm__desc,\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu .uagb-rm__desc.block-editor-rich-text__editable {\n    margin-bottom: 15px; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-desktop.uagb-rm__desk-column-1 .block-editor-block-list__layout {\n    grid-template-columns: auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-desktop.uagb-rm__desk-column-2 .block-editor-block-list__layout {\n    grid-template-columns: auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-desktop.uagb-rm__desk-column-3 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-desktop.uagb-rm__desk-column-4 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-tablet.uagb-rm__tablet-column-1 .block-editor-block-list__layout {\n    grid-template-columns: auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-tablet.uagb-rm__tablet-column-2 .block-editor-block-list__layout {\n    grid-template-columns: auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-tablet.uagb-rm__tablet-column-3 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-tablet.uagb-rm__tablet-column-4 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-mobile.uagb-rm__mobile-column-1 .block-editor-block-list__layout {\n    grid-template-columns: auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-mobile.uagb-rm__mobile-column-2 .block-editor-block-list__layout {\n    grid-template-columns: auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-mobile.uagb-rm__mobile-column-3 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto; }\n  .editor-styles-wrapper .wp-block-uagb-restaurant-menu.uagb-editor-preview-mode-mobile.uagb-rm__mobile-column-4 .block-editor-block-list__layout {\n    grid-template-columns: auto auto auto auto; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.editor-styles-wrapper [data-type="uagb/review"] .uagb_review_entry div:nth-child(2) {\n  min-width: unset !important;\n  display: flex; }\n\n.editor-styles-wrapper [data-type="uagb/review"] .rating-schema-notices {\n  padding: 8px 10px;\n  background-color: #fff8e5;\n  border-left: 5px solid #ffb901;\n  color: #32373c;\n  font-size: 13px;\n  line-height: 20px; }\n  .editor-styles-wrapper [data-type="uagb/review"] .rating-schema-notices ul {\n    padding-bottom: 0;\n    margin: 0; }\n  .editor-styles-wrapper [data-type="uagb/review"] .rating-schema-notices h6 {\n    margin: 0;\n    font-size: inherit;\n    line-height: inherit; }\n  .editor-styles-wrapper [data-type="uagb/review"] .rating-schema-notices p {\n    margin: 15px 0 0;\n    color: #555d66;\n    font-size: inherit; }\n\n.editor-styles-wrapper [data-type="uagb/review"] .uagb_review_add_entry.dashicons.dashicons-plus-alt {\n  left: 50%;\n  width: 100%; }\n\n.editor-styles-wrapper [data-type="uagb/review"] .uagb_review_average_stars,\n.editor-styles-wrapper [data-type="uagb/review"] .uagb_review_entry .dashicons-trash {\n  float: right;\n  margin-left: 50px; }\n  @media screen and (max-width: 976px) {\n    .editor-styles-wrapper [data-type="uagb/review"] .uagb_review_average_stars,\n    .editor-styles-wrapper [data-type="uagb/review"] .uagb_review_entry .dashicons-trash {\n      margin-left: 25px; } }\n  @media screen and (max-width: 768px) {\n    .editor-styles-wrapper [data-type="uagb/review"] .uagb_review_average_stars,\n    .editor-styles-wrapper [data-type="uagb/review"] .uagb_review_entry .dashicons-trash {\n      margin-left: 15px; } }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-slider-editor-wrap.uagb-editor-preview-mode-tablet, .uagb-slider-editor-wrap.uagb-editor-preview-mode-mobile {\n  box-sizing: border-box;\n  overflow: hidden;\n  max-width: 100%; }\n\n.uagb-slider-editor-wrap.uagb-list-view-enabled .swiper-button-prev,\n.uagb-slider-editor-wrap.uagb-list-view-enabled .swiper-button-next,\n.uagb-slider-editor-wrap.uagb-list-view-enabled .swiper-pagination {\n  pointer-events: none; }\n\n.uagb-slider-editor-wrap .swiper-wrapper.block-editor-block-list__layout {\n  width: 100%;\n  display: flex; }\n\n.uagb-slider-editor-wrap .swiper-wrapper {\n  display: none; }\n\n.uagb-slider-editor-wrap > .block-editor-block-list__layout > .block-list-appender {\n  padding: 30px; }\n  .uagb-slider-editor-wrap > .block-editor-block-list__layout > .block-list-appender .block-editor-button-block-appender {\n    width: auto;\n    margin: 0 auto; }\n\n.block-editor-block-list__layout .uagb-slider-editor-wrap .block-editor-block-list__block {\n  margin: 1px; }\n\n.slider-pro__copy-classes-button {\n  width: 100%;\n  justify-content: center; }\n\n.spectra-slider__notice {\n  font-style: italic;\n  margin-bottom: 16px;\n  color: #1d2327; }\n  .spectra-slider__notice--clickable {\n    cursor: pointer; }\n    .spectra-slider__notice--clickable .dashicons {\n      -webkit-transition: color 250ms;\n      -moz-transition: color 250ms;\n      -o-transition: color 250ms;\n      transition: color 250ms;\n      margin-right: 8px; }\n  .spectra-slider__notice--secondary {\n    font-size: 11px;\n    line-height: 1.4;\n    color: #a4afb7;\n    margin-bottom: 25px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n#wpwrap .edit-post-visual-editor span.uagb-ss__link {\n  color: #3a3a3a; }\n\n.uagb-social-share__layout-vertical .uagb-social-share__outer-wrap > .block-editor-inner-blocks {\n  width: 100%; }\n\n[data-type="uagb/social-share"]\n.uagb-social-share__layout-horizontal\n.block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: flex; }\n\n.uagb-social-share__layout-horizontal [data-type="uagb/social-share-child"]:first-child .uagb-ss__wrapper {\n  margin-left: 0 !important; }\n\n.uagb-social-share__layout-horizontal [data-type="uagb/social-share-child"]:last-child .uagb-ss__wrapper {\n  margin-right: 0 !important; }\n\n.uagb-social-share__layout-vertical [data-type="uagb/social-share-child"]:first-child .uagb-ss__wrapper {\n  margin-top: 0 !important; }\n\n.uagb-social-share__layout-vertical [data-type="uagb/social-share-child"]:last-child .uagb-ss__wrapper {\n  margin-bottom: 0 !important; }\n\n[data-type="uagb/social-share"] .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n  width: auto;\n  padding-right: 0;\n  padding-left: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-social-share__layout-vertical .block-list-appender {\n  width: 60px;\n  margin-top: 28px; }\n\n.uagb-social-share__layout-horizontal .block-list-appender {\n  margin-top: 0;\n  margin-left: 20px; }\n\n.uagb-ss-repeater span.uagb-ss__link {\n  pointer-events: none; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".wp-block-uagb-star-rating .block-editor-rich-text__editable.uag-star-rating__title {\n  margin: 0;\n  margin-right: 10px; }\n\n.wp-block-uagb-star-rating p.block-editor-rich-text__editable.uag-star-rating__title {\n  margin-bottom: 0; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * Editor styles for the admin\n */\n.uagb-toc__list > p {\n  color: #666;\n  font-size: 13px;\n  font-style: italic; }\n\n.block-editor-page .uagb-toc__scroll-top {\n  position: fixed;\n  right: 343px;\n  bottom: 50px;\n  display: none;\n  padding: 10px;\n  background: #ccd0d4;\n  cursor: pointer;\n  font-size: 1rem;\n  line-height: 1.85714285714286; }\n  .block-editor-page .uagb-toc__scroll-top svg {\n    width: 1.6em;\n    height: 0.6em;\n    margin-left: 0;\n    transform: translate(0, -20%) rotate(180deg);\n    fill: currentColor; }\n  .block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll {\n    display: inline-table; }\n\n.uagb-light-font-weight {\n  font-weight: 400; }\n\n.block-editor-block-list__block .wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list ul,\n.block-editor-block-list__block .wp-block-uagb-table-of-contents ol.uagb-toc__list ul.uagb-toc__list ul {\n  list-style-type: circle; }\n\n.block-editor-block-list__block .wp-block-uagb-table-of-contents ol.uagb-toc__list > ul,\n.block-editor-block-list__block .wp-block-uagb-table-of-contents ol.uagb-toc__list > li {\n  list-style-type: disc; }\n\n.block-editor-block-list__block .wp-block-uagb-table-of-contents .uagb-toc__wrap {\n  box-sizing: border-box; }\n\nol.uagb-toc__list {\n  margin-top: 0; }\n\n.block-editor-block-list__block .wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable,\n.block-editor-block-list__block.wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable {\n  list-style-type: none !important; }\n\n.list-open::before,\n.list-collapsed::before {\n  content: "\\25BC";\n  transform: scale(0.7) translateX(-50%);\n  display: inline-block; }\n\n.list-collapsed::before {\n  transform: scale(0.7) rotate(-90deg) translate(-84%, 6%); }\n\nspan.list-open,\nspan.list-collapsed {\n  cursor: pointer; }\n\n/* Transition class for max-height */\n.uagb-toc__list.transition {\n  transition: max-height 300ms ease-out; }\n\n[dir="rtl"] .list-open::before {\n  transform: scale(0.7) translateX(50%); }\n\n[dir="rtl"] .list-collapsed::before {\n  transform: scale(0.7) rotate(90deg) translate(84%, 6%); }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".editor-styles-wrapper .uagb-tabs__wrap .uagb-tabs-editor-controls {\n  position: absolute;\n  top: -24px;\n  background: #000;\n  padding: 2px;\n  left: 50%;\n  transform: translateX(-50%);\n  display: none; }\n\n.editor-styles-wrapper .uagb-tabs__wrap span.uagb-tabs__remove {\n  color: #fff;\n  cursor: pointer;\n  z-index: 1; }\n\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-tabs__icon {\n  align-self: start; }\n\n.editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab {\n  position: relative; }\n  .editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab a.uagb-tabs-list p.block-editor-rich-text__editable.rich-text {\n    margin-bottom: 0; }\n  .editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab a.uagb-tabs__icon-position-left {\n    display: inline-flex; }\n  .editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab a.uagb-tabs__icon-position-right {\n    display: inline-flex; }\n\n.editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab:hover span.uagb-tabs__remove {\n  display: block; }\n\n.editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab {\n  cursor: pointer;\n  display: block; }\n  .editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab > span {\n    width: auto;\n    height: 39.852px;\n    padding: 6px 12px; }\n\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-tab-item__move-forward,\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-tab-item__move-back {\n  color: #fff;\n  cursor: pointer;\n  z-index: 1; }\n\n.editor-styles-wrapper .uagb-tabs__wrap li.uagb-tab:hover .uagb-tabs-editor-controls {\n  display: flex; }\n\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-tab.uagb-tabs__add-tab > span {\n  width: auto;\n  height: 39.852px;\n  padding: 6px 12px; }\n\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-tab.uagb-tabs__add-tab .dashicon::before {\n  vertical-align: middle; }\n\n.editor-styles-wrapper .uagb-tabs__wrap ul.uagb-tabs__panel {\n  margin-top: 12px; }\n  .editor-styles-wrapper .uagb-tabs__wrap ul.uagb-tabs__panel p {\n    margin: 0; }\n\n.editor-styles-wrapper .uagb-tabs__wrap .uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n  width: 100%; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: row; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab {\n    margin: 10px 10px 10px 0;\n    padding: 6px 12px; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet p {\n    margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap {\n    margin-bottom: 20px; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: row;\n    margin-bottom: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab {\n    margin: 10px 10px -1px 0;\n    padding: 6px 12px; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet p {\n    margin: 0; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: row;\n    margin-bottom: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab {\n    margin: 10px 10px 0 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: row;\n    margin-bottom: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab {\n    margin: 10px 10px 10px 0;\n    padding: 6px 12px 6px 12px; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: row;\n    justify-content: space-between;\n    margin: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab {\n    padding: 6px 12px;\n    margin: 10px 10px 10px 10px;\n    width: 100%;\n    text-align: center; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet {\n  flex-direction: row; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab {\n    margin: 0 10px 10px 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet {\n  flex-direction: row; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%;\n    margin: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tab {\n    margin: 10px 10px 0 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet {\n  flex-direction: row;\n  display: flex; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: grid;\n    flex-grow: 1;\n    min-width: 25%;\n    max-width: 25%;\n    justify-content: normal; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab {\n      padding: 6px 12px; }\n      .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel .uagb-tab p {\n        margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet {\n  flex-direction: row;\n  display: flex; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab {\n      margin: 0 10px 10px 0;\n      padding: 6px 12px 6px 12px; }\n      .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab p {\n        margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet {\n  flex-direction: row; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%;\n    margin: 0;\n    padding: 0; }\n    .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab {\n      padding: 6px 12px;\n      margin: 10px 10px 10px 10px;\n      text-align: center; }\n      .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab p {\n        margin: 0; }\n  .uagb-editor-preview-mode-tablet.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: row;\n    flex-grow: 1; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab {\n    margin: 10px 10px 10px 0;\n    padding: 6px 12px; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile p {\n    margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap {\n    flex-direction: row; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: row;\n    flex-grow: 1;\n    border-bottom: 1px solid #b3b6b9; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab {\n    margin: 10px 10px -1px 0;\n    padding: 6px 12px; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile p {\n    margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap {\n    flex-direction: row; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel {\n    display: flex;\n    flex-grow: 1;\n    margin-bottom: 0;\n    flex-direction: row;\n    padding: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab {\n    margin: 10px 10px 0 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap {\n    flex-direction: row; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    flex-direction: row;\n    display: flex;\n    flex-grow: 1; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab {\n    margin: 10px 10px 10px 0;\n    padding: 6px 12px 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap {\n    max-width: 100%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile {\n  flex-direction: column; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel {\n    display: flex;\n    flex-grow: 1;\n    flex-direction: row;\n    justify-content: space-between;\n    margin: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab {\n    padding: 6px 12px;\n    margin: 10px 10px 10px 10px;\n    text-align: center;\n    width: 100%; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tabs__body-wrap {\n    max-width: 100%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile,\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile {\n  flex-direction: row; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel,\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab,\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab {\n    margin: 0 10px 10px 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab p,\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab p {\n      margin: -9px; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap,\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile {\n  flex-direction: row; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab {\n    margin: 10px 10px 0 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab p {\n      margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%;\n    margin: 0;\n    padding: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile {\n  flex-direction: row;\n  display: flex; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel {\n    margin-bottom: 0;\n    padding: 0;\n    display: flex;\n    flex-direction: column;\n    flex-grow: 1;\n    min-width: 24%;\n    max-width: 24%; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab {\n      margin: 0 10px 10px 0;\n      padding: 6px 12px 6px 12px; }\n      .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab p {\n        margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap {\n    flex-grow: 3;\n    max-width: 75%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab {\n  padding: 6px 12px;\n  margin: 10px 10px 10px 10px;\n  text-align: center; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab p {\n    margin: 0; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel {\n  display: flex;\n  flex-direction: column;\n  flex-grow: 1;\n  min-width: 24%;\n  max-width: 35%;\n  margin: 0;\n  padding: 0; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap {\n  flex-grow: 3;\n  max-width: 60%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: column;\n  max-width: 100%;\n  flex-grow: unset; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab {\n    width: -webkit-fill-available;\n    margin: 0 0 10px 0;\n    padding: 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap {\n  max-width: 100%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel {\n  display: flex;\n  flex-direction: column;\n  flex-grow: unset;\n  margin: 0;\n  padding: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab {\n    margin: 0 0 10px 0;\n    padding: 6px 12px;\n    width: -webkit-fill-available; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap {\n  max-width: 100%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel {\n  margin: 0;\n  padding: 0;\n  display: flex;\n  flex-direction: column;\n  max-width: 100%;\n  flex-grow: unset;\n  width: 100%; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab {\n    width: -webkit-fill-available;\n    margin: 0 0 10px 0;\n    padding: 6px 12px 6px 12px; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p {\n      margin: 0; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap {\n  max-width: 100%; }\n\n.uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack4-mobile {\n  margin: auto; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel {\n    display: flex;\n    flex-direction: column;\n    max-width: 100%;\n    flex-grow: unset;\n    width: 100%;\n    margin: 0;\n    padding: 0; }\n    .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab {\n      width: -webkit-fill-available;\n      padding: 6px 12px;\n      margin: 0 0 10px 0;\n      text-align: center; }\n      .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p {\n        margin: 0; }\n  .uagb-editor-preview-mode-mobile.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap {\n    max-width: 100%; }\n\n.uagb-tabs__body-wrap\n.uagb-container-has-children.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block {\n  width: 100%; }\n\n.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs-list,\n.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs-list {\n  width: -webkit-fill-available;\n  justify-content: center; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".uagb-tax-not-available {\n  padding: 10px;\n  border: 1px solid;\n  text-align: center; }\n\n.uagb-layout-list .uagb-list-wrap {\n  margin: 0; }\n\n.uagb-list-display-style-group {\n  margin-bottom: 20px !important; }\n\n.uagb-layout-grid a:-webkit-any-link {\n  text-decoration: none; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,"/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.block-editor-page #wpwrap .edit-post-visual-editor ul.uagb-team__social-list {\n  display: flex;\n  padding: 0;\n  margin: 0;\n  list-style: none; }\n\n.block-editor-page #wpwrap .edit-post-visual-editor .uagb-team__social-icon a {\n  color: #333; }\n\n.wp-block-uagb-team .components-button:focus:enabled,\n.wp-block-uagb-team .components-button {\n  box-shadow: none;\n  background: transparent;\n  border: none; }\n\n.wp-block-uagb-team p.uagb-team__desc.block-editor-rich-text__editable {\n  margin: 0 0 10px; }\n\n.block-editor-rich-text__editable.uagb-team__title {\n  margin-top: 0; }\n\n.wp-block-uagb-team {\n  margin-top: 20px;\n  margin-bottom: 20px; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.gutenberg-editor-page #wpwrap ul.slick-dots {\n  margin: 0 auto; }\n\n#wpwrap .edit-post-visual-editor button.slick-arrow {\n  line-height: 16px; }\n\n.uagb-tm__desc,\n.editor-block-list__layout .uagb-tm__desc.block-editor-rich-text__editable {\n  margin-bottom: 15px; }\n\n.uagb-tm__author-name,\n.editor-block-list__layout .uagb-tm__author-name.block-editor-rich-text__editable {\n  margin-bottom: 5px;\n  font-size: 30px;\n  line-height: 16px; }\n\n#wpwrap .edit-post-visual-editor ul.slick-dots {\n  margin: 0;\n  padding: 0; }\n\n.wp-block-uagb-testimonial.uagb-editor-preview-mode-tablet.uagb-slick-carousel .slick-slide,\n.wp-block-uagb-testimonial.uagb-editor-preview-mode-mobile.uagb-slick-carousel .slick-slide {\n  height: auto; }\n\n.wp-block-uagb-testimonial.uagb-editor-preview-mode-tablet.uagb-slick-carousel ul.slick-dots,\n.wp-block-uagb-testimonial.uagb-editor-preview-mode-mobile.uagb-slick-carousel ul.slick-dots {\n  padding-left: 0; }\n\n.editor-styles-wrapper [data-type="uagb/testimonial"] {\n  width: 100%; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/* stylelint-disable color-hex-case, color-hex-length */\n.wp-block-gallery.uag-masonry {\n  /* For Backword */\n  /* End Backword */ }\n  .wp-block-gallery.uag-masonry ul.blocks-gallery-grid {\n    column-count: 4;\n    column-gap: 1em;\n    display: block; }\n    .wp-block-gallery.uag-masonry ul.blocks-gallery-grid li.blocks-gallery-item {\n      display: block;\n      grid-template-rows: 1fr auto;\n      margin: 0 0 1em 0;\n      break-inside: avoid;\n      width: unset; }\n  .wp-block-gallery.uag-masonry.blocks-gallery-grid {\n    column-count: 3;\n    column-gap: 1em;\n    display: block; }\n    .wp-block-gallery.uag-masonry.blocks-gallery-grid figure.wp-block-image:not(#individual-image) {\n      display: block;\n      grid-template-rows: 1fr auto;\n      margin: 0 0 1em 0;\n      break-inside: avoid;\n      width: unset; }\n\n.uagb-inspector-tab.uagb-tab-content-advance .form-check-label,\n.block-editor-block-inspector__advanced .form-check-label {\n  width: 50%;\n  margin-bottom: 8px;\n  display: inline-block; }\n  .uagb-inspector-tab.uagb-tab-content-advance .form-check-label .uagb-forms-checkbox,\n  .block-editor-block-inspector__advanced .form-check-label .uagb-forms-checkbox {\n    border-radius: 2px;\n    width: 1rem;\n    height: 1rem;\n    margin-right: 7px; }\n\n.uag-copy-paste-styles-popover .components-menu-item__shortcut {\n  white-space: nowrap; }\n\n.uag-copy-paste-styles-popover .components-menu-item__item {\n  min-width: 100%;\n  justify-content: space-around; }\n\n.uag-copy-paste-styles-popover .components-popover__content {\n  border: 1px solid #1e1e1e;\n  box-shadow: none; }\n\n.uag-copy-paste-styles-popover .components-button {\n  padding: 10px;\n  justify-content: center; }\n  .uag-copy-paste-styles-popover .components-button[disabled]:hover {\n    color: unset; }\n\n/* stylelint-disable */\n.uag-hide-desktop,\n.uagb-editor-preview-at-desktop.uag-hide-desktop,\n.uagb-editor-preview-at-tablet.uag-hide-tab,\n.uagb-editor-preview-at-mobile.uag-hide-mob {\n  display: inherit;\n  background: -o-repeating-linear-gradient(325deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05) 1px, transparent 2px, transparent 9px);\n  background: repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.05) 1px, transparent 2px, transparent 9px);\n  border: 1px solid rgba(0, 0, 0, 0.02); }\n\n.uagb-animation__play-button {\n  width: 100%;\n  justify-content: center;\n  border-style: solid;\n  border-width: 1px; }\n\n.uagb-animation__range-control .components-range-control__marks {\n  top: 13px; }\n\n.uagb-animation__nested-blocks-button {\n  width: 100%;\n  justify-content: center;\n  margin-bottom: 16px; }\n  .uagb-animation__nested-blocks-button.loading::after {\n    content: "";\n    position: absolute;\n    width: 16px;\n    height: 16px;\n    top: 0;\n    right: 4%;\n    bottom: 0;\n    margin: auto;\n    border: 4px dotted transparent;\n    border-top-color: #4f94d4;\n    border-right-color: #4f94d4;\n    border-radius: 50%;\n    animation: button-loading-spinner 1s ease infinite; }\n  .uagb-animation__nested-blocks-button:focus:not(:disabled) {\n    box-shadow: inset 0 0 0 1px var(--wp-components-color-accent-darker-10, var(--wp-admin-theme-color-darker-10, #2145e6)); }\n  .uagb-animation__nested-blocks-button.loading {\n    pointer-events: none;\n    opacity: 0.7;\n    position: relative;\n    padding-right: 30px; }\n\n/* stylelint-enable */\n.uagb-animation-type-searchable-select input[type="text"]:focus {\n  box-shadow: unset; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__container {\n  width: 100%; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__input input {\n  box-shadow: none;\n  border: none; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__control {\n  cursor: pointer;\n  border: 1px solid #e6e7e9;\n  box-shadow: none;\n  height: 30px;\n  min-height: 30px;\n  border-radius: 3px; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__indicator-separator {\n  display: none; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__dropdown-indicator {\n  color: #50575e;\n  padding-left: 6px; }\n  .uagb-animation-type-searchable-select .uagb-animation-type-select__dropdown-indicator svg {\n    height: 14px;\n    width: 14px; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__value-container {\n  top: 0;\n  height: 30px;\n  padding: 0 8px; }\n  .uagb-animation-type-searchable-select .uagb-animation-type-select__value-container > div {\n    margin: 0;\n    padding: 0; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__group-heading {\n  font-weight: 600;\n  font-size: 95%;\n  color: #50575e; }\n\n.uagb-animation-type-searchable-select .uagb-animation-type-select__option {\n  color: #50575e;\n  padding: 8px 20px; }\n  .uagb-animation-type-searchable-select .uagb-animation-type-select__option[id$="option-0"] {\n    padding-left: 12px; }\n  .uagb-animation-type-searchable-select .uagb-animation-type-select__option--is-selected, .uagb-animation-type-searchable-select .uagb-animation-type-select__option--is-focused {\n    background-color: #dcf2ff; }\n\n.block-editor-block-inspector .uagb-inspector-tab div.uagb-animation__range-control-wrapper div.components-base-control p.components-base-control__help {\n  margin-top: 20px; }\n\n@keyframes button-loading-spinner {\n  from {\n    transform: rotate(0turn); }\n  to {\n    transform: rotate(1turn); } }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.spectra-ee-quick-access {\n  display: flex;\n  height: auto;\n  width: 60px;\n  background: #1e1e1e;\n  color: #fff; }\n  .spectra-ee-quick-access__sidebar {\n    width: 60px;\n    height: 100%;\n    background: #1e1e1e;\n    display: flex;\n    flex-direction: column;\n    position: absolute;\n    overflow: auto; }\n    .spectra-ee-quick-access__sidebar ::-webkit-scrollbar {\n      width: 0;\n      background: transparent; }\n    .spectra-ee-quick-access__sidebar--blocks, .spectra-ee-quick-access__sidebar--actions {\n      display: flex;\n      flex-direction: column;\n      justify-content: flex-start;\n      align-items: center;\n      overflow-y: overlay;\n      overflow-x: hidden;\n      cursor: pointer;\n      max-height: calc(100vh - 212px);\n      flex-grow: 1; }\n      .spectra-ee-quick-access__sidebar--blocks--block, .spectra-ee-quick-access__sidebar--actions--block {\n        display: flex;\n        cursor: grab;\n        border-radius: 6px;\n        gap: 8px;\n        padding: 12px; }\n        .spectra-ee-quick-access__sidebar--blocks--block--icon, .spectra-ee-quick-access__sidebar--actions--block--icon {\n          display: flex;\n          width: 24px;\n          height: 24px;\n          justify-content: center;\n          align-items: center; }\n          .spectra-ee-quick-access__sidebar--blocks--block--icon--name, .spectra-ee-quick-access__sidebar--actions--block--icon--name {\n            display: flex;\n            flex-direction: row;\n            align-content: center;\n            justify-content: center;\n            align-items: center; }\n            .spectra-ee-quick-access__sidebar--blocks--block--icon--name .components-popover__content, .spectra-ee-quick-access__sidebar--actions--block--icon--name .components-popover__content {\n              background: none;\n              border: none;\n              box-shadow: none;\n              width: auto; }\n            .spectra-ee-quick-access__sidebar--blocks--block--icon--name .block-title, .spectra-ee-quick-access__sidebar--actions--block--icon--name .block-title {\n              display: flex;\n              align-content: center;\n              justify-content: center;\n              align-items: center;\n              font-size: 14px;\n              border-radius: 4px;\n              margin-right: 20px;\n              margin-left: 15px;\n              background: #1e1e1e;\n              color: #fff;\n              padding: 5px 10px;\n              cursor: pointer; }\n              .spectra-ee-quick-access__sidebar--blocks--block--icon--name .block-title .spectra-ee-quick-access__sidebar--blocks--block--name, .spectra-ee-quick-access__sidebar--actions--block--icon--name .block-title .spectra-ee-quick-access__sidebar--blocks--block--name {\n                padding-right: 4px; }\n                .spectra-ee-quick-access__sidebar--blocks--block--icon--name .block-title .spectra-ee-quick-access__sidebar--blocks--block--name .block-title-svg, .spectra-ee-quick-access__sidebar--actions--block--icon--name .block-title .spectra-ee-quick-access__sidebar--blocks--block--name .block-title-svg {\n                  cursor: pointer;\n                  margin-top: 5px;\n                  width: 15px;\n                  height: 15px; }\n        .spectra-ee-quick-access__sidebar--blocks--block span:not(.dashicon), .spectra-ee-quick-access__sidebar--actions--block span:not(.dashicon) {\n          display: none; }\n        .spectra-ee-quick-access__sidebar--blocks--block:hover, .spectra-ee-quick-access__sidebar--actions--block:hover {\n          background: #1d2939; }\n          .spectra-ee-quick-access__sidebar--blocks--block:hover span:not(.dashicon), .spectra-ee-quick-access__sidebar--actions--block:hover span:not(.dashicon) {\n            display: none; }\n    .spectra-ee-quick-access__sidebar--actions {\n      cursor: pointer;\n      position: relative;\n      bottom: 6px;\n      left: 0;\n      margin-top: 10px; }\n      .spectra-ee-quick-access__sidebar--actions .spectra-quick-action-sidebar-wrap #plus-icon,\n      .spectra-ee-quick-access__sidebar--actions .spectra-quick-action-sidebar-wrap #rearrange-icon {\n        display: flex;\n        align-content: center;\n        justify-content: center;\n        align-items: center;\n        padding: 12px 12px;\n        flex-direction: column; }\n    .spectra-ee-quick-access__sidebar--tab {\n      display: inline-block;\n      cursor: pointer; }\n    .spectra-ee-quick-access__sidebar--tabs {\n      display: flex;\n      flex-direction: column; }\n      .spectra-ee-quick-access__sidebar--tabs .tab.active #plus-icon,\n      .spectra-ee-quick-access__sidebar--tabs .tab.active #rearrange-icon {\n        background-color: #1d2939;\n        color: #fff; }\n\n.edit-site-layout.is-full-canvas.is-edit-mode .edit-site-layout__view-mode-toggle.components-button {\n  border-bottom: #1e1e1e; }\n\n.spectra-quick-action-block-popover {\n  margin-left: 15px; }\n  .spectra-quick-action-block-popover ::-webkit-scrollbar {\n    width: 0;\n    background: transparent; }\n  .spectra-quick-action-block-popover .components-popover__content {\n    width: 348px;\n    height: 279px;\n    background: #fff;\n    padding: 16px;\n    border-radius: 6px;\n    gap: 16px; }\n    .spectra-quick-action-block-popover .components-popover__content .spectra-quick-action-block-popover-search input.components-search-control__input {\n      width: 316px;\n      height: 40px;\n      padding: 10px 14px;\n      border-radius: 4px;\n      border: 1px solid #007cba;\n      background: #fff; }\n      .spectra-quick-action-block-popover .components-popover__content .spectra-quick-action-block-popover-search input.components-search-control__input:focus {\n        border: 1px solid #007cba;\n        box-shadow: none; }\n      .spectra-quick-action-block-popover .components-popover__content .spectra-quick-action-block-popover-search input.components-search-control__input::placeholder {\n        color: #aaa;\n        font-size: 12px;\n        font-weight: 500; }\n    .spectra-quick-action-block-popover .components-popover__content .spectra-quick-action-block-popover-search svg {\n      fill: #aaa; }\n    .spectra-quick-action-block-popover .components-popover__content .spectra-block-container {\n      display: flex;\n      flex-wrap: wrap;\n      overflow: hidden;\n      flex-direction: row;\n      align-items: stretch; }\n      .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-quick-action-block-popover-header__already-present-in-quick-action-bar, .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-quick-action-block-popover-header__add-to-quick-action-bar {\n        width: 316px;\n        padding: 16px 0 8px 0; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-quick-action-block-popover-header__already-present-in-quick-action-bar .block-editor-inserter__panel-title, .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-quick-action-block-popover-header__add-to-quick-action-bar .block-editor-inserter__panel-title {\n          color: #50575e;\n          font-size: 13px;\n          font-weight: 400;\n          text-transform: capitalize; }\n      .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap {\n        margin: 0;\n        display: flex;\n        flex-direction: column;\n        align-items: center;\n        justify-content: center;\n        position: relative;\n        transition: all 0.05s ease-in-out;\n        align-content: stretch;\n        width: 105.33px;\n        height: 100px;\n        border-radius: 4px; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap .spectra-ee-quick-access__sidebar--blocks--block--icon {\n          width: 64px;\n          height: 48px;\n          padding: 12px 20px;\n          gap: 10px; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap svg.uagb-editor-icons rect,\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap svg.uagb-editor-icons path {\n          stroke: #0063a1; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap .block-title {\n          color: #1e1e1e;\n          text-align: center;\n          width: 57px;\n          height: 28px;\n          padding: 4px 0 8px 0;\n          gap: 10px;\n          font-size: 12px;\n          line-height: 16px;\n          letter-spacing: 0; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap:hover::after {\n          background: #007cba;\n          content: "";\n          border-radius: 2px;\n          bottom: 0;\n          left: 0;\n          opacity: 0.04;\n          pointer-events: none;\n          position: absolute;\n          right: 0;\n          top: 0; }\n        .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .spectra-block-wrap:hover .block-title {\n          color: #007cba;\n          filter: brightness(0.95); }\n      .spectra-quick-action-block-popover .components-popover__content .spectra-block-container .block-editor-inserter__no-results {\n        padding: 50px 105px; }\n\n.components-popover__fallback-container svg.block-title-svg {\n  width: 10px;\n  height: 10px;\n  fill: #fff; }\n  .components-popover__fallback-container svg.block-title-svg:hover {\n    fill: #f00; }\n\n.edit-site-layout__canvas .spectra-ee-quick-access__sidebar {\n  padding-top: 1px; }\n\ndiv#widgets-editor .spectra-ee-quick-access__sidebar--blocks,\ndiv#widgets-editor .spectra-ee-quick-access__sidebar--actions {\n  max-height: calc(100vh - 180px); }\n\n.spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar {\n  z-index: 1000000; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__core svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__core svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__core svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wcfb svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wcfb svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wcfb svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wpsp svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wpsp svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__wpsp svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--cart svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--checkout svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--mini-cart-contents svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--product-top-rated svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--store-notices svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--featured-category svg path:first-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce--active-filters svg path:first-child {\n    fill: none; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__woocommerce svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--gif path:last-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--map path:last-child, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--markdown path:last-child {\n    fill: #fff; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--business-hours svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--business-hours svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--business-hours svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--button svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--button svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--button svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--calendly svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--calendly svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--calendly svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--contact-info svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--contact-info svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--contact-info svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--donations svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--donations svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--donations svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--eventbrite svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--eventbrite svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--eventbrite svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--google-calendar svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--google-calendar svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--google-calendar svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--image-compare svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--image-compare svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--image-compare svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--like svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--like svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--like svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--opentable svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--opentable svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--opentable svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--pinterest svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--pinterest svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--pinterest svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--podcast-player svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--podcast-player svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--podcast-player svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--rating-star svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--rating-star svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--rating-star svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--repeat-visitor svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--repeat-visitor svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--repeat-visitor svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--send-a-message svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--send-a-message svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--send-a-message svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--slideshow svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--slideshow svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--slideshow svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--story svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--story svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--story svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tiled-gallery svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tiled-gallery svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tiled-gallery svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tock svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tock svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--tock svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--payments-intro svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--payments-intro svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--payments-intro svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--blogroll svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--blogroll svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--blogroll svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--nextdoor svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--nextdoor svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--nextdoor svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--sharing-buttons svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--sharing-buttons svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__jetpack--sharing-buttons svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--container svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--container svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--container svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--buttons svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--buttons svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--buttons svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--login-button svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--login-button svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__premium-content--login-button svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__mailpoet svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__mailpoet svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__mailpoet svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart svg circle {\n    fill: #fff;\n    stroke-width: 1.4px; }\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart-menu-icon svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart-menu-icon svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart-menu-icon svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--order-confirmation svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--order-confirmation svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--order-confirmation svg circle, .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart svg path,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart svg rect,\n  .spectra-ee-quick-access-container .spectra-ee-quick-access__sidebar .spectra-ee-quick-access__sidebar--blocks .spectra-ee-quick-access__sidebar--blocks--block .spectra-ee-quick-access__sidebar--blocks--block--icon.spectra-ee-quick-access__sidebar-icon__surecart--cart svg circle {\n    fill: none;\n    stroke-width: 1.4px; }\n\n.spectra-ee-quick-access__sidebar--blocks-sortable {\n  display: flex;\n  flex-direction: column;\n  overflow: auto;\n  /* Prevent horizontal scrolling */ }\n  .spectra-ee-quick-access__sidebar--blocks-sortable--block {\n    margin-bottom: 10px;\n    /* Adjust as needed */ }\n\n.spectra-ee-quick-access__sidebar--prevent-editor-interactions {\n  pointer-events: none; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".spectra-custom-css-panel.components-panel__body.is-opened {\n  padding: 0;\n  overflow: hidden;\n  height: 100%; }\n  .spectra-custom-css-panel.components-panel__body.is-opened .components-panel__body-title {\n    padding: 16px 16px 0 16px; }\n  .spectra-custom-css-panel.components-panel__body.is-opened .CodeMirror-wrap {\n    border-top: 1px solid #ddd6d6;\n    border-bottom: 1px solid #ddd6d6;\n    height: calc(100vh - 185px); }\n    .spectra-custom-css-panel.components-panel__body.is-opened .CodeMirror-wrap .CodeMirror-scroll {\n      width: 100%; }\n    .spectra-custom-css-panel.components-panel__body.is-opened .CodeMirror-wrap .CodeMirror-sizer {\n      border-right: unset; }\n    .spectra-custom-css-panel.components-panel__body.is-opened .CodeMirror-wrap span.CodeMirror-matchingbracket {\n      color: #ffc200; }\n    .spectra-custom-css-panel.components-panel__body.is-opened .CodeMirror-wrap .CodeMirror-vscrollbar {\n      overflow-y: hidden; }\n  .spectra-custom-css-panel.components-panel__body.is-opened .spectra-custom-css-notice {\n    font-style: italic;\n    padding: 0 16px; }\n  .spectra-custom-css-panel.components-panel__body.is-opened .spectra-custom-css-example {\n    font-size: 11px;\n    font-style: italic;\n    line-height: 1.4;\n    color: #a4afb7; }\n\n.interface-complementary-area.edit-post-sidebar:has(.spectra-sidebar) {\n  height: auto; }\n\n.interface-interface-skeleton__sidebar:has(.spectra-sidebar) {\n  height: auto; }\n\n.spectra-sidebar {\n  height: 100%; }\n",""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.uagb-columns__wrap::before {\n  content: "";\n  position: absolute;\n  border: 1px dashed #03ddff;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 1; }\n\n.uagb-columns__edit-active.uagb-columns__wrap::before {\n  border-color: #035cff; }\n\n.editor-bg-image-control .components-button,\n.editor-bg-video-control .components-button {\n  vertical-align: middle; }\n\n.uagb-editor-preview-mode-tablet.uagb-columns__stack-tablet .block-editor-block-list__layout {\n  flex-direction: column; }\n\n.uagb-editor-preview-mode-mobile.uagb-columns__stack-tablet .block-editor-block-list__layout {\n  flex-direction: column; }\n\n.uagb-editor-preview-mode-mobile.uagb-columns__stack-mobile .block-editor-block-list__layout {\n  flex-direction: column; }\n\n.editor-bg-image-control .components-button:last-child,\n.editor-bg-video-control .components-button:last-child {\n  margin-left: 10px; }\n\n.uagb-columns__wrap > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout {\n  display: flex;\n  flex-wrap: nowrap; }\n\n.uagb-columns__wrap > .uagb-columns__inner-wrap > .block-editor-inner-blocks,\n.uagb-columns__wrap > .block-editor-block-list__layout {\n  width: 100%;\n  z-index: 2; }\n\n.uagb-columns__columns-1 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 100%; }\n\n.uagb-columns__columns-2 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 50%; }\n\n.uagb-columns__columns-3 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 33.33%; }\n\n.uagb-columns__columns-4 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 25%; }\n\n.uagb-columns__columns-5 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 20%; }\n\n.uagb-columns__columns-6 .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 16.66%; }\n\n.wp-block-uagb-columns .block-editor-block-list__layout {\n  margin-left: 0;\n  margin-right: 0; }\n  .wp-block-uagb-columns .block-editor-block-list__layout .editor-block-list__block {\n    max-width: none !important; }\n\n.block-editor-block-list__block[data-type="uagb/columns"] {\n  clear: both; }\n\n.block-editor-block-list__block[data-align="center"][data-type="uagb/columns"] {\n  text-align: inherit; }\n\n.block-editor-block-list__block[data-type="uagb/column"] > .editor-block-contextual-toolbar {\n  top: 38px;\n  transform: translateY(-38px);\n  margin-left: -29px;\n  margin-right: -29px; }\n\n.block-editor-block-list__block[data-type="uagb/column"] > .editor-block-list__insertion-point {\n  top: 0;\n  margin-top: 0; }\n\n.wp-block-uagb-columns.uagb-columns__valign-center > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] {\n  display: flex;\n  flex-direction: column;\n  justify-content: center; }\n\n.wp-block-uagb-columns.uagb-columns__valign-bottom > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] {\n  display: flex;\n  flex-direction: column;\n  justify-content: flex-end; }\n\n.block-editor-block-list__layout\n.block-editor-block-list__block[data-type="uagb/column"] > .block-editor-block-list__block-edit {\n  margin-left: 14px;\n  margin-right: 14px; }\n  .block-editor-block-list__layout\n.block-editor-block-list__block[data-type="uagb/column"] > .block-editor-block-list__block-edit > div:not(.editor-block-contextual-toolbar) {\n    width: 100%; }\n  .block-editor-block-list__layout\n.block-editor-block-list__block[data-type="uagb/column"] > .block-editor-block-list__block-edit > .editor-block-contextual-toolbar {\n    position: absolute;\n    top: 0;\n    transform: translateY(-39px); }\n\n.wp-block-uagb-columns > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] > .block-editor-block-list__block-edit::before {\n  bottom: 0;\n  top: 0; }\n\n.block-editor-block-list__block[data-align="full"] .wp-block-uagb-columns {\n  padding-left: 15px;\n  padding-right: 15px; }\n\n.wp-block-uagb-columns {\n  position: relative;\n  z-index: 10;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column; }\n  .wp-block-uagb-columns > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout {\n    display: flex;\n    flex-wrap: nowrap;\n    justify-content: space-between;\n    margin-left: auto;\n    margin-right: auto; }\n    .wp-block-uagb-columns > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] {\n      display: flex;\n      flex-direction: column;\n      max-width: none;\n      margin-top: 0;\n      margin-bottom: 0; }\n      .wp-block-uagb-columns > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] .block-editor-block-list__block-edit {\n        flex-basis: 100%; }\n\n.wp-block-uagb-columns.uagb-columns__valign-center > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] > .block-editor-block-list__block-edit {\n  align-items: center;\n  display: flex; }\n\n.wp-block-uagb-columns.uagb-columns__valign-bottom > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"] > .block-editor-block-list__block-edit {\n  align-items: flex-end;\n  display: flex; }\n\n.wp-block-uagb-column {\n  width: 100%; }\n\n.block-editor-block-list__layout .block-editor-block-list__block[data-align="full"][data-type="uagb/columns"] {\n  margin-left: 0;\n  margin-right: 0; }\n\n.edit-post-visual-editor\n.editor-writing-flow\n.block-editor-block-list__layout\n.block-editor-block-list__block[data-type="uagb/column"] > .block-editor-block-list__block-edit {\n  margin-left: 0;\n  margin-right: 0; }\n\n.block-editor-block-list__layout .uagb-column__wrap {\n  z-index: unset;\n  overflow: visible; }\n\n.edit-post-visual-editor\n.uagb-editor-preview-mode-mobile\n.block-editor-block-list__block[data-type="uagb/column"]\n.block-editor-block-list__block-edit {\n  padding-left: 0;\n  padding-right: 0; }\n\n.uagb-editor-preview-mode-tablet.uagb-columns__reverse-tablet.uagb-columns__stack-none > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-tablet.uagb-columns__stack-none > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-mobile.uagb-columns__stack-none > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-tablet.uagb-columns__reverse-tablet.uagb-columns__stack-mobile > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout {\n  flex-direction: row-reverse; }\n\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-mobile.uagb-columns__stack-tablet > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-tablet.uagb-columns__stack-tablet > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-tablet.uagb-columns__stack-mobile > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-mobile.uagb-columns__reverse-mobile.uagb-columns__stack-mobile > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout,\n.uagb-editor-preview-mode-tablet.uagb-columns__reverse-tablet.uagb-columns__stack-tablet > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout {\n  flex-direction: column-reverse; }\n\n/* for editor preview */\n.uagb-editor-preview-mode-mobile.uagb-columns__stack-mobile > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block[data-type="uagb/column"],\n.uagb-editor-preview-mode-tablet.uagb-columns__stack-tablet > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block[data-type="uagb/column"],\n.uagb-editor-preview-mode-mobile.uagb-columns__stack-tablet > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .block-editor-block-list__block[data-type="uagb/column"] {\n  width: 100% !important; }\n\n.block-editor-block-list__block[data-type="uagb/columns"] > .block-editor-block-list__block-edit::before {\n  pointer-events: inherit; }\n\n.block-editor-block-list__block[data-type="uagb/columns"] > .editor-block-list__insertion-point {\n  height: 16px; }\n  .block-editor-block-list__block[data-type="uagb/columns"] > .editor-block-list__insertion-point .editor-block-list__insertion-point-inserter {\n    height: 16px; }\n\n.uagb-columns-variation-picker .components-placeholder.is-medium .components-placeholder__fieldset .components-placeholder__instructions {\n  display: inline-block; }\n\n.uagb-columns-variation-picker .components-placeholder__instructions {\n  width: 100%;\n  text-align: center; }\n\n.uagb-columns-variation-picker .components-button,\n.uagb-columns-variation-picker .components-button:hover:not(:disabled) {\n  box-shadow: none;\n  outline: none; }\n  .uagb-columns-variation-picker .components-button svg,\n  .uagb-columns-variation-picker .components-button:hover:not(:disabled) svg {\n    width: 100px;\n    height: 50px;\n    color: #d5dadf; }\n\n.uagb-columns-variation-picker .components-button:hover:not(:disabled) {\n  color: #9eaab5; }\n\n.uagb-columns-variation-picker .block-editor-block-variation-picker__skip .components-button {\n  color: #0073aa; }\n\n.uagb-columns-variation-picker .components-placeholder {\n  align-items: center; }\n  .uagb-columns-variation-picker .components-placeholder .components-placeholder__label {\n    font-size: 22px;\n    font-weight: 500; }\n    .uagb-columns-variation-picker .components-placeholder .components-placeholder__label .dashicon {\n      display: none; }\n\n.uagb-columns-variation-picker .block-editor-block-variation-picker__variation::before {\n  padding-bottom: 0; }\n\n.uagb-columns-variation-picker .components-placeholder__fieldset {\n  align-items: center; }\n\n.uagb-columns-variation-picker .block-editor-block-variation-picker__variations {\n  justify-content: center;\n  width: 50%; }\n  .uagb-columns-variation-picker .block-editor-block-variation-picker__variations > li {\n    margin: 8px 30px 0 0;\n    width: 80px; }\n\n@media screen and (max-width: 976px) {\n  .uagb-columns-variation-picker .components-placeholder__fieldset {\n    max-width: 100%; }\n  .uagb-columns-variation-picker ul.block-editor-block-variation-picker__variations {\n    justify-content: center;\n    column-gap: 35px; } }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.uagb-section__wrap::before {\n  position: absolute;\n  top: -1px;\n  right: -1px;\n  bottom: -1px;\n  left: -1px;\n  z-index: 0;\n  border: 1px dashed #03ddff;\n  content: ""; }\n\n.uagb-section__edit-active.uagb-section__wrap::before {\n  border-color: #035cff; }\n\n.editor-bg-image-control .components-button,\n.editor-bg-video-control .components-button {\n  vertical-align: middle; }\n\n.editor-bg-image-control .components-button:last-child,\n.editor-bg-video-control .components-button:last-child {\n  margin-left: 10px; }\n\n.editor-block-list__layout .editor-block-list__block[data-align="full"][data-type="uagb/section"] {\n  margin-right: 0;\n  margin-left: 0; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.wp-block[data-type="uagb/column"]::before {\n  content: "";\n  position: absolute;\n  border: 1px dashed #a3aeb6;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 0;\n  width: 100%;\n  height: 100%; }\n\n.is-selected.wp-block[data-type="uagb/column"]::before {\n  border-color: #59646c; }\n\n.editor-bg-image-control .components-button,\n.editor-bg-video-control .components-button {\n  vertical-align: middle; }\n\n.editor-bg-image-control .components-button:last-child,\n.editor-bg-video-control .components-button:last-child {\n  margin-left: 10px; }\n\n.wp-block[data-type="uagb/column"] .block-editor-block-list__block-edit {\n  height: 100%; }\n\n.uagb-column__inner-wrap .block-editor-block-list__block {\n  margin-left: 0;\n  margin-right: 0; }\n\n.wp-block-uagb-column.uagb-column__wrap .uagb-column__inner-wrap,\n.wp-block-uagb-column.uagb-column__wrap .block-editor-inner-blocks {\n  width: 100%;\n  margin-left: auto;\n  margin-right: auto;\n  position: relative;\n  z-index: 2; }\n\n.edit-post-visual-editor .uagb-column__inner-wrap .block-editor-block-list__block > .editor-block-mover {\n  left: -30px; }\n\n@media (max-width: 449px) {\n  .block-editor-page #wpwrap .uagb-columns__inner-wrap .block-editor-block-list__block {\n    background-attachment: scroll !important; } }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.wp-block-uagb-cf7-styler.uagb-editor-preview-mode-tablet, .wp-block-uagb-cf7-styler.uagb-editor-preview-mode-mobile {\n  margin: 20px; }\n\n.wp-block-uagb-cf7-styler .wpcf7 form {\n  position: relative; }\n\n.wp-block-uagb-cf7-styler .wpcf7 form > div,\n.wp-block-uagb-cf7-styler .wpcf7 form > p {\n  margin-bottom: 1.2em; }\n\n.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-form-control-wrap {\n  display: block;\n  width: 100%; }\n\n.wp-block-uagb-cf7-styler .wpcf7 input:not([type="submit"]):focus,\n.wp-block-uagb-cf7-styler .wpcf7 select:focus,\n.wp-block-uagb-cf7-styler .wpcf7 textarea:focus {\n  box-shadow: none;\n  background: #fff;\n  border-color: #eaeaea;\n  outline: 0;\n  -webkit-box-shadow: none; }\n\n.wp-block-uagb-cf7-styler .wpcf7 input:not([type="submit"]),\n.wp-block-uagb-cf7-styler .wpcf7 select,\n.wp-block-uagb-cf7-styler .wpcf7 textarea {\n  width: 100%;\n  padding: 0.75em; }\n\n.wp-block-uagb-cf7-styler .wpcf7 input[type="file"] {\n  height: auto;\n  box-shadow: none;\n  box-sizing: border-box;\n  background: #fafafa;\n  border-color: #eaeaea;\n  border-style: solid;\n  border-width: 1px;\n  border-radius: 2px;\n  color: #666;\n  transition: all 0.2s linear;\n  -webkit-border-radius: 2px;\n  -webkit-box-shadow: none;\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  -webkit-transition: all 0.2s linear; }\n\n.wp-block-uagb-cf7-styler .wpcf7 input[type="checkbox"],\n.wp-block-uagb-cf7-styler .wpcf7 input[type="radio"] {\n  display: none;\n  vertical-align: middle;\n  width: 1.4em;\n  height: 1.2em;\n  min-width: 1.4em;\n  padding: 0;\n  margin: -3px 4px 0 0;\n  background: #e9eef2;\n  border-radius: 0.2em;\n  outline: 0;\n  cursor: pointer;\n  color: #555;\n  text-align: center;\n  line-height: 0;\n  transition: all 0.2s linear;\n  clear: none;\n  -webkit-border-radius: 0.2em;\n  -webkit-transition: all 0.2s linear; }\n\n.wp-block-uagb-cf7-styler .wpcf7 .wpcf7-validation-errors {\n  border-color: #f00; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 {\n  padding: 0;\n  margin: 0; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 .screen-reader-response {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: 0;\n  border: 0;\n  overflow: hidden;\n  clip: rect(1px, 1px, 1px, 1px); }\n\n.wp-block-uagb-cf7-styler div.wpcf7-response-output {\n  padding: 0.2em 1em;\n  margin: 2em 0.5em 1em; }\n\n.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ok {\n  border: 2px solid #398f14; }\n\n.wp-block-uagb-cf7-styler div.wpcf7-mail-sent-ng,\n.wp-block-uagb-cf7-styler div.wpcf7-aborted {\n  border: 2px solid #f00; }\n\n.wp-block-uagb-cf7-styler div.wpcf7-spam-blocked {\n  border: 2px solid #ffa500; }\n\n.wp-block-uagb-cf7-styler div.wpcf7-validation-errors,\n.wp-block-uagb-cf7-styler div.wpcf7-acceptance-missing {\n  border: 2px solid #f7e700; }\n\n.wp-block-uagb-cf7-styler .wpcf7-form-control-wrap {\n  position: relative; }\n\n.wp-block-uagb-cf7-styler span.wpcf7-not-valid-tip {\n  display: block;\n  color: #f00;\n  font-size: 0.9em;\n  font-weight: 400; }\n\n.wp-block-uagb-cf7-styler .use-floating-validation-tip span.wpcf7-not-valid-tip {\n  position: absolute;\n  top: 20%;\n  left: 20%;\n  z-index: 100;\n  padding: 0.1em 0.5em;\n  background: #fff;\n  border: 1px solid #f00; }\n\n.wp-block-uagb-cf7-styler span.wpcf7-list-item {\n  display: inline-block;\n  margin: 0 1em 0 0; }\n\n.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,\n.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after {\n  content: " "; }\n\n.wp-block-uagb-cf7-styler .wpcf7-display-none {\n  display: none; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader {\n  display: inline-block;\n  vertical-align: middle;\n  width: 16px;\n  height: 16px;\n  padding: 0;\n  margin: 0 0 0 4px;\n  visibility: hidden;\n  border: none; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 .ajax-loader.is-active {\n  visibility: visible; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 div.ajax-error {\n  display: none; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 .placeheld {\n  color: #888; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"] {\n  cursor: pointer; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 input[type="file"]:disabled {\n  cursor: default; }\n\n.wp-block-uagb-cf7-styler div.wpcf7 .wpcf7-submit:disabled {\n  cursor: not-allowed; }\n\n.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type="checkbox"]:checked + span::before,\n.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type="checkbox"]:checked + span::before {\n  line-height: 1.2;\n  content: "\\2714"; }\n\n.wp-core-ui .uagb-cf7-styler__outer-wrap .wpcf7-form-control.wpcf7-select {\n  max-width: 100%;\n  background-image: none; }\n\n.editor-styles-wrapper .wp-block-uagb-cf7-styler .button,\n.editor-styles-wrapper .wp-block-uagb-cf7-styler button,\n.editor-styles-wrapper .wp-block-uagb-cf7-styler input,\n.editor-styles-wrapper .wp-block-uagb-cf7-styler select,\n.editor-styles-wrapper .wp-block-uagb-cf7-styler textarea {\n  color: inherit;\n  font-size: 100%; }\n\n[data-type="uagb/cf7-styler"].block-editor-block-list__block.wp-block {\n  border: 1px solid #0085ba; }\n  [data-type="uagb/cf7-styler"].block-editor-block-list__block.wp-block .components-placeholder {\n    align-items: center; }\n  [data-type="uagb/cf7-styler"].block-editor-block-list__block.wp-block .components-placeholder__fieldset {\n    justify-content: center; }\n  [data-type="uagb/cf7-styler"].block-editor-block-list__block.wp-block .dashicon.dashicons-admin-post {\n    margin-right: 10px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'/**\n * #.# Editor Styles\n *\n * CSS for just Backend enqueued after style.scss\n * which makes it higher in priority.\n */\n.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-none .gform_heading,\n.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading,\n.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading.custom_gform_heading {\n  display: none; }\n\n.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-no .gform_heading.custom_gform_heading,\n.wp-block-uagb-gf-styler .uagb-gf-styler__gform-heading-yes .gform_heading {\n  display: block; }\n\n.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="radio"],\n.wp-block-uagb-gf-styler .uagb-gf-styler__check-style-enabled input[type="checkbox"] {\n  -webkit-appearance: none; }\n\n.wp-block-uagb-gf-styler input[type="radio"] {\n  -webkit-appearance: radio; }\n\n.wp-block-uagb-gf-styler input[type="checkbox"] {\n  -webkit-appearance: checkbox; }\n\n.wp-block-uagb-gf-styler input[type="radio"]:focus,\n.wp-block-uagb-gf-styler input[type="checkbox"]:focus,\n.wp-block-uagb-gf-styler input[type="radio"]:checked:focus,\n.wp-block-uagb-gf-styler input[type="checkbox"]:checked:focus {\n  box-shadow: none; }\n\n.wp-block-uagb-gf-styler input[type="radio"]:checked::before,\n.wp-block-uagb-gf-styler input[type="checkbox"]:checked::before {\n  content: "";\n  display: inline;\n  float: unset; }\n\n.wp-block-uagb-gf-styler input[type="number"] {\n  height: auto; }\n\n.editor-styles-wrapper .wp-block-uagb-gf-styler .button,\n.editor-styles-wrapper .wp-block-uagb-gf-styler button,\n.editor-styles-wrapper .wp-block-uagb-gf-styler input,\n.editor-styles-wrapper .wp-block-uagb-gf-styler select,\n.editor-styles-wrapper .wp-block-uagb-gf-styler textarea {\n  color: inherit;\n  font-size: 100%;\n  line-height: inherit; }\n\n.editor-styles-wrapper .wp-block-uagb-gf-styler select,\n.editor-styles-wrapper .wp-block-uagb-gf-styler .gform_button.button {\n  height: auto; }\n\n[data-type="uagb/gf-styler"].block-editor-block-list__block.wp-block {\n  border: 1px solid #0085ba; }\n  [data-type="uagb/gf-styler"].block-editor-block-list__block.wp-block .components-placeholder {\n    align-items: center; }\n  [data-type="uagb/gf-styler"].block-editor-block-list__block.wp-block .components-placeholder__fieldset {\n    justify-content: center; }\n  [data-type="uagb/gf-styler"].block-editor-block-list__block.wp-block .dashicon.dashicons-admin-post {\n    margin-right: 10px; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'[data-type="uagb/wp-search"] .uagb-layout-input-button .uagb-search-submit {\n  border: none;\n  border-radius: 0;\n  color: #fff; }\n\n[data-type="uagb/wp-search"] .uagb-layout-input-button svg {\n  fill: currentColor; }\n\n[data-type="uagb/wp-search"] .uagb-layout-input .uagb-wp-search-icon-wrap {\n  display: flex;\n  align-items: center; }\n\n[data-type="uagb/wp-search"] .uagb-layout-input svg {\n  fill: currentColor;\n  opacity: 0.6; }\n\n[data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap {\n  width: 100%;\n  min-height: 20px; }\n  [data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container {\n    display: flex;\n    overflow: hidden;\n    max-width: 100%; }\n    [data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input {\n      width: 100%; }\n      [data-type="uagb/wp-search"] .uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input::-webkit-input-placeholder {\n        overflow: unset; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,'.uagb-form-notice {\n  padding: 8px 10px;\n  background-color: #fff8e5;\n  border-left: 5px solid #ffb901;\n  color: #32373c;\n  font-size: 13px;\n  line-height: 20px; }\n\n[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons.sureforms-logo path,\n[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons.sureforms-logo rect {\n  stroke: #0063a1; }\n\n.uagb-sure-forms-checkout-container {\n  height: 200px;\n  background-position: center;\n  background-repeat: no-repeat;\n  background-size: auto;\n  background-color: #fff; }\n\n.uagb-sure-cart-product-container,\n.uagb-sure-cart-checkout-container {\n  height: 200px;\n  background-position: center left;\n  background-repeat: no-repeat;\n  background-color: #fff; }\n',""]),t.a=i},function(e,t,a){"use strict";var l=a(12),i=a.n(l)()((function(e){return e[1]}));i.push([e.i,".spectra-responsive-icons__wrap {\n  margin-right: 15px;\n  border-radius: 3px; }\n  .spectra-responsive-icons__wrap .components-button-group .components-button {\n    padding-right: 10px;\n    padding-left: 10px;\n    box-shadow: none;\n    margin-right: 0; }\n  .spectra-responsive-icons__wrap svg {\n    height: 18px;\n    width: 18px;\n    fill: #9fa59c; }\n    .spectra-responsive-icons__wrap svg:hover {\n      fill: #1e1e1e; }\n  .spectra-responsive-icons__wrap .uagb-responsive-tabs.active-tab > svg {\n    fill: #007cba;\n    color: #007cba; }\n",""]),t.a=i},function(e,t){e.exports=function(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,l=new Array(t);a<t;a++)l[a]=e[a];return l},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(159);e.exports=function(e,t){if(e){if("string"==typeof e)return l(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?l(e,t):void 0}},e.exports.default=e.exports,e.exports.__esModule=!0},,,,,,function(e,t,a){var l=a(167);e.exports=function(e,t,a){"__proto__"==t&&l?l(e,t,{configurable:!0,enumerable:!0,value:a,writable:!0}):e[t]=a}},function(e,t,a){var l=a(31),i=function(){try{var e=l(Object,"defineProperty");return e({},"",{}),e}catch(e){}}();e.exports=i},function(e,t,a){var l=a(34),i=a(28);e.exports=function(e){if(!i(e))return!1;var t=l(e);return"[object Function]"==t||"[object GeneratorFunction]"==t||"[object AsyncFunction]"==t||"[object Proxy]"==t}},function(e,t,a){(function(t){var a="object"==typeof t&&t&&t.Object===Object&&t;e.exports=a}).call(this,a(37))},function(e,t){var a=Function.prototype.toString;e.exports=function(e){if(null!=e){try{return a.call(e)}catch(e){}try{return e+""}catch(e){}}return""}},function(e,t){e.exports=function(e){return e}},function(e,t,a){var l=a(238),i=Math.max;e.exports=function(e,t,a){return t=i(void 0===t?e.length-1:t,0),function(){for(var o=arguments,n=-1,r=i(o.length-t,0),s=Array(r);++n<r;)s[n]=o[t+n];n=-1;for(var c=Array(t+1);++n<t;)c[n]=o[n];return c[t]=a(s),l(e,this,c)}}},function(e,t,a){var l=a(239),i=a(241)(l);e.exports=i},function(e,t){e.exports=function(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}},function(e,t){var a=/^(?:0|[1-9]\d*)$/;e.exports=function(e,t){var l=typeof e;return!!(t=null==t?9007199254740991:t)&&("number"==l||"symbol"!=l&&a.test(e))&&e>-1&&e%1==0&&e<t}},function(e,t,a){var l=a(243),i=a(177),o=a(33),n=a(178),r=a(175),s=a(246),c=Object.prototype.hasOwnProperty;e.exports=function(e,t){var a=o(e),u=!a&&i(e),p=!a&&!u&&n(e),b=!a&&!u&&!p&&s(e),d=a||u||p||b,g=d?l(e.length,String):[],m=g.length;for(var y in e)!t&&!c.call(e,y)||d&&("length"==y||p&&("offset"==y||"parent"==y)||b&&("buffer"==y||"byteLength"==y||"byteOffset"==y)||r(y,m))||g.push(y);return g}},function(e,t,a){var l=a(244),i=a(32),o=Object.prototype,n=o.hasOwnProperty,r=o.propertyIsEnumerable,s=l(function(){return arguments}())?l:function(e){return i(e)&&n.call(e,"callee")&&!r.call(e,"callee")};e.exports=s},function(e,t,a){(function(e){var l=a(26),i=a(245),o=t&&!t.nodeType&&t,n=o&&"object"==typeof e&&e&&!e.nodeType&&e,r=n&&n.exports===o?l.Buffer:void 0,s=(r?r.isBuffer:void 0)||i;e.exports=s}).call(this,a(62)(e))},function(e,t){e.exports=function(e,t){return function(a){return e(t(a))}}},function(e,t,a){"use strict";(e.exports={}).forEach=function(e,t){for(var a=0;a<e.length;a++){var l=t(e[a]);if(l)return l}}},function(e,t,a){"use strict";var l=e.exports={};l.isIE=function(e){return!(-1===(t=navigator.userAgent.toLowerCase()).indexOf("msie")&&-1===t.indexOf("trident")&&-1===t.indexOf(" edge/")||e&&e!==function(){var e=3,t=document.createElement("div"),a=t.getElementsByTagName("i");do{t.innerHTML="\x3c!--[if gt IE "+ ++e+"]><i></i><![endif]--\x3e"}while(a[0]);return e>4?e:void 0}());var t},l.isLegacyOpera=function(){return!!window.opera}},function(e,t){e.exports=function(e,t){for(var a=-1,l=null==e?0:e.length,i=Array(l);++a<l;)i[a]=t(e[a],a,e);return i}},function(e,t,a){var l=a(279),i=a(286),o=a(288),n=a(289),r=a(290);function s(e){var t=-1,a=null==e?0:e.length;for(this.clear();++t<a;){var l=e[t];this.set(l[0],l[1])}}s.prototype.clear=l,s.prototype.delete=i,s.prototype.get=o,s.prototype.has=n,s.prototype.set=r,e.exports=s},function(e,t){e.exports=function(){return[]}},function(e,t,a){var l=a(68),i=a(69),o=a(67),n=a(184),r=Object.getOwnPropertySymbols?function(e){for(var t=[];e;)l(t,o(e)),e=i(e);return t}:n;e.exports=r},function(e,t,a){var l=a(68),i=a(33);e.exports=function(e,t,a){var o=t(e);return i(e)?o:l(o,a(e))}},function(e,t,a){var l=a(186),i=a(185),o=a(66);e.exports=function(e){return l(e,o,i)}},function(e,t,a){var l=a(44);e.exports=function(e){if("string"==typeof e||l(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}},function(e,t){e.exports={isFunction:function(e){return"function"==typeof e},isArray:function(e){return"[object Array]"===Object.prototype.toString.apply(e)},each:function(e,t){for(var a=0,l=e.length;a<l&&!1!==t(e[a],a);a++);}}},,function(module,__webpack_exports__,__webpack_require__){"use strict";(function(global){__webpack_require__.d(__webpack_exports__,"a",(function(){return Player}));var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(5),react__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__),extendStatics=function(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a])})(e,t)};function __extends(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function a(){this.constructor=e}extendStatics(e,t),e.prototype=null===t?Object.create(t):(a.prototype=t.prototype,new a)}var __assign=function(){return(__assign=Object.assign||function(e){for(var t,a=1,l=arguments.length;a<l;a++)for(var i in t=arguments[a])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)};function __rest(e,t){var a={};for(var l in e)Object.prototype.hasOwnProperty.call(e,l)&&t.indexOf(l)<0&&(a[l]=e[l]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(l=Object.getOwnPropertySymbols(e);i<l.length;i++)t.indexOf(l[i])<0&&Object.prototype.propertyIsEnumerable.call(e,l[i])&&(a[l[i]]=e[l[i]])}return a}function __decorate(e,t,a,l){var i,o=arguments.length,n=o<3?t:null===l?l=Object.getOwnPropertyDescriptor(t,a):l;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)n=Reflect.decorate(e,t,a,l);else for(var r=e.length-1;r>=0;r--)(i=e[r])&&(n=(o<3?i(n):o>3?i(t,a,n):i(t,a))||n);return o>3&&n&&Object.defineProperty(t,a,n),n}function __param(e,t){return function(a,l){t(a,l,e)}}function __metadata(e,t){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(e,t)}function __awaiter(e,t,a,l){return new(a||(a=Promise))((function(i,o){function n(e){try{s(l.next(e))}catch(e){o(e)}}function r(e){try{s(l.throw(e))}catch(e){o(e)}}function s(e){var t;e.done?i(e.value):(t=e.value,t instanceof a?t:new a((function(e){e(t)}))).then(n,r)}s((l=l.apply(e,t||[])).next())}))}function __generator(e,t){var a,l,i,o,n={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:r(0),throw:r(1),return:r(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function r(o){return function(r){return function(o){if(a)throw new TypeError("Generator is already executing.");for(;n;)try{if(a=1,l&&(i=2&o[0]?l.return:o[0]?l.throw||((i=l.return)&&i.call(l),0):l.next)&&!(i=i.call(l,o[1])).done)return i;switch(l=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return n.label++,{value:o[1],done:!1};case 5:n.label++,l=o[1],o=[0];continue;case 7:o=n.ops.pop(),n.trys.pop();continue;default:if(!((i=(i=n.trys).length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){n=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]<i[3])){n.label=o[1];break}if(6===o[0]&&n.label<i[1]){n.label=i[1],i=o;break}if(i&&n.label<i[2]){n.label=i[2],n.ops.push(o);break}i[2]&&n.ops.pop(),n.trys.pop();continue}o=t.call(e,n)}catch(e){o=[6,e],l=0}finally{a=i=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,r])}}}var __createBinding=Object.create?function(e,t,a,l){void 0===l&&(l=a),Object.defineProperty(e,l,{enumerable:!0,get:function(){return t[a]}})}:function(e,t,a,l){void 0===l&&(l=a),e[l]=t[a]};function __exportStar(e,t){for(var a in e)"default"===a||Object.prototype.hasOwnProperty.call(t,a)||__createBinding(t,e,a)}function __values(e){var t="function"==typeof Symbol&&Symbol.iterator,a=t&&e[t],l=0;if(a)return a.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&l>=e.length&&(e=void 0),{value:e&&e[l++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function __read(e,t){var a="function"==typeof Symbol&&e[Symbol.iterator];if(!a)return e;var l,i,o=a.call(e),n=[];try{for(;(void 0===t||t-- >0)&&!(l=o.next()).done;)n.push(l.value)}catch(e){i={error:e}}finally{try{l&&!l.done&&(a=o.return)&&a.call(o)}finally{if(i)throw i.error}}return n}function __spread(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(__read(arguments[t]));return e}function __spreadArrays(){for(var e=0,t=0,a=arguments.length;t<a;t++)e+=arguments[t].length;var l=Array(e),i=0;for(t=0;t<a;t++)for(var o=arguments[t],n=0,r=o.length;n<r;n++,i++)l[i]=o[n];return l}function __spreadArray(e,t){for(var a=0,l=t.length,i=e.length;a<l;a++,i++)e[i]=t[a];return e}function __await(e){return this instanceof __await?(this.v=e,this):new __await(e)}function __asyncGenerator(e,t,a){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var l,i=a.apply(e,t||[]),o=[];return l={},n("next"),n("throw"),n("return"),l[Symbol.asyncIterator]=function(){return this},l;function n(e){i[e]&&(l[e]=function(t){return new Promise((function(a,l){o.push([e,t,a,l])>1||r(e,t)}))})}function r(e,t){try{(a=i[e](t)).value instanceof __await?Promise.resolve(a.value.v).then(s,c):u(o[0][2],a)}catch(e){u(o[0][3],e)}var a}function s(e){r("next",e)}function c(e){r("throw",e)}function u(e,t){e(t),o.shift(),o.length&&r(o[0][0],o[0][1])}}function __asyncDelegator(e){var t,a;return t={},l("next"),l("throw",(function(e){throw e})),l("return"),t[Symbol.iterator]=function(){return this},t;function l(l,i){t[l]=e[l]?function(t){return(a=!a)?{value:__await(e[l](t)),done:"return"===l}:i?i(t):t}:i}}function __asyncValues(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,a=e[Symbol.asyncIterator];return a?a.call(e):(e="function"==typeof __values?__values(e):e[Symbol.iterator](),t={},l("next"),l("throw"),l("return"),t[Symbol.asyncIterator]=function(){return this},t);function l(a){t[a]=e[a]&&function(t){return new Promise((function(l,i){!function(e,t,a,l){Promise.resolve(l).then((function(t){e({value:t,done:a})}),t)}(l,i,(t=e[a](t)).done,t.value)}))}}}function __makeTemplateObject(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}var __setModuleDefault=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};function __importStar(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var a in e)"default"!==a&&Object.prototype.hasOwnProperty.call(e,a)&&__createBinding(t,e,a);return __setModuleDefault(t,e),t}function __importDefault(e){return e&&e.__esModule?e:{default:e}}function __classPrivateFieldGet(e,t,a,l){if("a"===a&&!l)throw new TypeError("Private accessor was defined without a getter");if("function"==typeof t?e!==t||!l:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return"m"===a?l:"a"===a?l.call(e):l?l.value:t.get(e)}function __classPrivateFieldSet(e,t,a,l,i){if("m"===l)throw new TypeError("Private method is not writable");if("a"===l&&!i)throw new TypeError("Private accessor was defined without a setter");if("function"==typeof t?e!==t||!i:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return"a"===l?i.call(e,a):i?i.value=a:t.set(e,a),a}var commonjsGlobal="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:void 0!==global?global:"undefined"!=typeof self?self:{};function unwrapExports(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function createCommonjsModule(e,t){return e(t={exports:{}},t.exports),t.exports}function getCjsExportFromNamespace(e){return e&&e.default||e}function commonjsRequire(){throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs")}var lottie=createCommonjsModule((function(module){"undefined"!=typeof navigator&&function(e,t){module.exports?module.exports=t(e):(e.lottie=t(e),e.bodymovin=e.lottie)}(window||{},(function(window){var svgNS="http://www.w3.org/2000/svg",locationHref="",initialDefaultFrame=-999999,subframeEnabled=!0,expressionsPlugin,isSafari=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),cachedColors={},bmRnd,bmPow=Math.pow,bmSqrt=Math.sqrt,bmFloor=Math.floor,bmMax=Math.max,bmMin=Math.min,BMMath={};function ProjectInterface(){return{}}!function(){var e,t=["abs","acos","acosh","asin","asinh","atan","atanh","atan2","ceil","cbrt","expm1","clz32","cos","cosh","exp","floor","fround","hypot","imul","log","log1p","log2","log10","max","min","pow","random","round","sign","sin","sinh","sqrt","tan","tanh","trunc","E","LN10","LN2","LOG10E","LOG2E","PI","SQRT1_2","SQRT2"],a=t.length;for(e=0;e<a;e+=1)BMMath[t[e]]=Math[t[e]]}(),BMMath.random=Math.random,BMMath.abs=function(e){if("object"==typeof e&&e.length){var t,a=createSizedArray(e.length),l=e.length;for(t=0;t<l;t+=1)a[t]=Math.abs(e[t]);return a}return Math.abs(e)};var defaultCurveSegments=150,degToRads=Math.PI/180,roundCorner=.5519;function roundValues(e){bmRnd=e?Math.round:function(e){return e}}function styleDiv(e){e.style.position="absolute",e.style.top=0,e.style.left=0,e.style.display="block",e.style.transformOrigin="0 0",e.style.webkitTransformOrigin="0 0",e.style.backfaceVisibility="visible",e.style.webkitBackfaceVisibility="visible",e.style.transformStyle="preserve-3d",e.style.webkitTransformStyle="preserve-3d",e.style.mozTransformStyle="preserve-3d"}function BMEnterFrameEvent(e,t,a,l){this.type=e,this.currentTime=t,this.totalTime=a,this.direction=l<0?-1:1}function BMCompleteEvent(e,t){this.type=e,this.direction=t<0?-1:1}function BMCompleteLoopEvent(e,t,a,l){this.type=e,this.currentLoop=a,this.totalLoops=t,this.direction=l<0?-1:1}function BMSegmentStartEvent(e,t,a){this.type=e,this.firstFrame=t,this.totalFrames=a}function BMDestroyEvent(e,t){this.type=e,this.target=t}function BMRenderFrameErrorEvent(e,t){this.type="renderFrameError",this.nativeError=e,this.currentTime=t}function BMConfigErrorEvent(e){this.type="configError",this.nativeError=e}function BMAnimationConfigErrorEvent(e,t){this.type=e,this.nativeError=t}roundValues(!1);var createElementID=(_count=0,function(){return"__lottie_element_"+(_count+=1)}),_count;function HSVtoRGB(e,t,a){var l,i,o,n,r,s,c,u;switch(s=a*(1-t),c=a*(1-(r=6*e-(n=Math.floor(6*e)))*t),u=a*(1-(1-r)*t),n%6){case 0:l=a,i=u,o=s;break;case 1:l=c,i=a,o=s;break;case 2:l=s,i=a,o=u;break;case 3:l=s,i=c,o=a;break;case 4:l=u,i=s,o=a;break;case 5:l=a,i=s,o=c}return[l,i,o]}function RGBtoHSV(e,t,a){var l,i=Math.max(e,t,a),o=Math.min(e,t,a),n=i-o,r=0===i?0:n/i,s=i/255;switch(i){case o:l=0;break;case e:l=t-a+n*(t<a?6:0),l/=6*n;break;case t:l=a-e+2*n,l/=6*n;break;case a:l=e-t+4*n,l/=6*n}return[l,r,s]}function addSaturationToRGB(e,t){var a=RGBtoHSV(255*e[0],255*e[1],255*e[2]);return a[1]+=t,a[1]>1?a[1]=1:a[1]<=0&&(a[1]=0),HSVtoRGB(a[0],a[1],a[2])}function addBrightnessToRGB(e,t){var a=RGBtoHSV(255*e[0],255*e[1],255*e[2]);return a[2]+=t,a[2]>1?a[2]=1:a[2]<0&&(a[2]=0),HSVtoRGB(a[0],a[1],a[2])}function addHueToRGB(e,t){var a=RGBtoHSV(255*e[0],255*e[1],255*e[2]);return a[0]+=t/360,a[0]>1?a[0]-=1:a[0]<0&&(a[0]+=1),HSVtoRGB(a[0],a[1],a[2])}var rgbToHex=function(){var e,t,a=[];for(e=0;e<256;e+=1)t=e.toString(16),a[e]=1===t.length?"0"+t:t;return function(e,t,l){return e<0&&(e=0),t<0&&(t=0),l<0&&(l=0),"#"+a[e]+a[t]+a[l]}}();function BaseEvent(){}BaseEvent.prototype={triggerEvent:function(e,t){if(this._cbs[e])for(var a=this._cbs[e].length,l=0;l<a;l+=1)this._cbs[e][l](t)},addEventListener:function(e,t){return this._cbs[e]||(this._cbs[e]=[]),this._cbs[e].push(t),function(){this.removeEventListener(e,t)}.bind(this)},removeEventListener:function(e,t){if(t){if(this._cbs[e]){for(var a=0,l=this._cbs[e].length;a<l;)this._cbs[e][a]===t&&(this._cbs[e].splice(a,1),a-=1,l-=1),a+=1;this._cbs[e].length||(this._cbs[e]=null)}}else this._cbs[e]=null}};var createTypedArray=function(){function e(e,t){var a,l=0,i=[];switch(e){case"int16":case"uint8c":a=1;break;default:a=1.1}for(l=0;l<t;l+=1)i.push(a);return i}return"function"==typeof Uint8ClampedArray&&"function"==typeof Float32Array?function(t,a){return"float32"===t?new Float32Array(a):"int16"===t?new Int16Array(a):"uint8c"===t?new Uint8ClampedArray(a):e(t,a)}:e}();function createSizedArray(e){return Array.apply(null,{length:e})}function createNS(e){return document.createElementNS(svgNS,e)}function createTag(e){return document.createElement(e)}function DynamicPropertyContainer(){}DynamicPropertyContainer.prototype={addDynamicProperty:function(e){-1===this.dynamicProperties.indexOf(e)&&(this.dynamicProperties.push(e),this.container.addDynamicProperty(this),this._isAnimated=!0)},iterateDynamicProperties:function(){var e;this._mdf=!1;var t=this.dynamicProperties.length;for(e=0;e<t;e+=1)this.dynamicProperties[e].getValue(),this.dynamicProperties[e]._mdf&&(this._mdf=!0)},initDynamicPropertyContainer:function(e){this.container=e,this.dynamicProperties=[],this._mdf=!1,this._isAnimated=!1}};var getBlendMode=(blendModeEnums={0:"source-over",1:"multiply",2:"screen",3:"overlay",4:"darken",5:"lighten",6:"color-dodge",7:"color-burn",8:"hard-light",9:"soft-light",10:"difference",11:"exclusion",12:"hue",13:"saturation",14:"color",15:"luminosity"},function(e){return blendModeEnums[e]||""}),blendModeEnums,Matrix=function(){var e=Math.cos,t=Math.sin,a=Math.tan,l=Math.round;function i(){return this.props[0]=1,this.props[1]=0,this.props[2]=0,this.props[3]=0,this.props[4]=0,this.props[5]=1,this.props[6]=0,this.props[7]=0,this.props[8]=0,this.props[9]=0,this.props[10]=1,this.props[11]=0,this.props[12]=0,this.props[13]=0,this.props[14]=0,this.props[15]=1,this}function o(a){if(0===a)return this;var l=e(a),i=t(a);return this._t(l,-i,0,0,i,l,0,0,0,0,1,0,0,0,0,1)}function n(a){if(0===a)return this;var l=e(a),i=t(a);return this._t(1,0,0,0,0,l,-i,0,0,i,l,0,0,0,0,1)}function r(a){if(0===a)return this;var l=e(a),i=t(a);return this._t(l,0,i,0,0,1,0,0,-i,0,l,0,0,0,0,1)}function s(a){if(0===a)return this;var l=e(a),i=t(a);return this._t(l,-i,0,0,i,l,0,0,0,0,1,0,0,0,0,1)}function c(e,t){return this._t(1,t,e,1,0,0)}function u(e,t){return this.shear(a(e),a(t))}function p(l,i){var o=e(i),n=t(i);return this._t(o,n,0,0,-n,o,0,0,0,0,1,0,0,0,0,1)._t(1,0,0,0,a(l),1,0,0,0,0,1,0,0,0,0,1)._t(o,-n,0,0,n,o,0,0,0,0,1,0,0,0,0,1)}function b(e,t,a){return a||0===a||(a=1),1===e&&1===t&&1===a?this:this._t(e,0,0,0,0,t,0,0,0,0,a,0,0,0,0,1)}function d(e,t,a,l,i,o,n,r,s,c,u,p,b,d,g,m){return this.props[0]=e,this.props[1]=t,this.props[2]=a,this.props[3]=l,this.props[4]=i,this.props[5]=o,this.props[6]=n,this.props[7]=r,this.props[8]=s,this.props[9]=c,this.props[10]=u,this.props[11]=p,this.props[12]=b,this.props[13]=d,this.props[14]=g,this.props[15]=m,this}function g(e,t,a){return a=a||0,0!==e||0!==t||0!==a?this._t(1,0,0,0,0,1,0,0,0,0,1,0,e,t,a,1):this}function m(e,t,a,l,i,o,n,r,s,c,u,p,b,d,g,m){var y=this.props;if(1===e&&0===t&&0===a&&0===l&&0===i&&1===o&&0===n&&0===r&&0===s&&0===c&&1===u&&0===p)return y[12]=y[12]*e+y[15]*b,y[13]=y[13]*o+y[15]*d,y[14]=y[14]*u+y[15]*g,y[15]*=m,this._identityCalculated=!1,this;var f=y[0],h=y[1],v=y[2],_=y[3],T=y[4],C=y[5],S=y[6],w=y[7],k=y[8],P=y[9],x=y[10],A=y[11],G=y[12],M=y[13],R=y[14],B=y[15];return y[0]=f*e+h*i+v*s+_*b,y[1]=f*t+h*o+v*c+_*d,y[2]=f*a+h*n+v*u+_*g,y[3]=f*l+h*r+v*p+_*m,y[4]=T*e+C*i+S*s+w*b,y[5]=T*t+C*o+S*c+w*d,y[6]=T*a+C*n+S*u+w*g,y[7]=T*l+C*r+S*p+w*m,y[8]=k*e+P*i+x*s+A*b,y[9]=k*t+P*o+x*c+A*d,y[10]=k*a+P*n+x*u+A*g,y[11]=k*l+P*r+x*p+A*m,y[12]=G*e+M*i+R*s+B*b,y[13]=G*t+M*o+R*c+B*d,y[14]=G*a+M*n+R*u+B*g,y[15]=G*l+M*r+R*p+B*m,this._identityCalculated=!1,this}function y(){return this._identityCalculated||(this._identity=!(1!==this.props[0]||0!==this.props[1]||0!==this.props[2]||0!==this.props[3]||0!==this.props[4]||1!==this.props[5]||0!==this.props[6]||0!==this.props[7]||0!==this.props[8]||0!==this.props[9]||1!==this.props[10]||0!==this.props[11]||0!==this.props[12]||0!==this.props[13]||0!==this.props[14]||1!==this.props[15]),this._identityCalculated=!0),this._identity}function f(e){for(var t=0;t<16;){if(e.props[t]!==this.props[t])return!1;t+=1}return!0}function h(e){var t;for(t=0;t<16;t+=1)e.props[t]=this.props[t];return e}function v(e){var t;for(t=0;t<16;t+=1)this.props[t]=e[t]}function _(e,t,a){return{x:e*this.props[0]+t*this.props[4]+a*this.props[8]+this.props[12],y:e*this.props[1]+t*this.props[5]+a*this.props[9]+this.props[13],z:e*this.props[2]+t*this.props[6]+a*this.props[10]+this.props[14]}}function T(e,t,a){return e*this.props[0]+t*this.props[4]+a*this.props[8]+this.props[12]}function C(e,t,a){return e*this.props[1]+t*this.props[5]+a*this.props[9]+this.props[13]}function S(e,t,a){return e*this.props[2]+t*this.props[6]+a*this.props[10]+this.props[14]}function w(){var e=this.props[0]*this.props[5]-this.props[1]*this.props[4],t=this.props[5]/e,a=-this.props[1]/e,l=-this.props[4]/e,i=this.props[0]/e,o=(this.props[4]*this.props[13]-this.props[5]*this.props[12])/e,n=-(this.props[0]*this.props[13]-this.props[1]*this.props[12])/e,r=new Matrix;return r.props[0]=t,r.props[1]=a,r.props[4]=l,r.props[5]=i,r.props[12]=o,r.props[13]=n,r}function k(e){return this.getInverseMatrix().applyToPointArray(e[0],e[1],e[2]||0)}function P(e){var t,a=e.length,l=[];for(t=0;t<a;t+=1)l[t]=k(e[t]);return l}function x(e,t,a){var l=createTypedArray("float32",6);if(this.isIdentity())l[0]=e[0],l[1]=e[1],l[2]=t[0],l[3]=t[1],l[4]=a[0],l[5]=a[1];else{var i=this.props[0],o=this.props[1],n=this.props[4],r=this.props[5],s=this.props[12],c=this.props[13];l[0]=e[0]*i+e[1]*n+s,l[1]=e[0]*o+e[1]*r+c,l[2]=t[0]*i+t[1]*n+s,l[3]=t[0]*o+t[1]*r+c,l[4]=a[0]*i+a[1]*n+s,l[5]=a[0]*o+a[1]*r+c}return l}function A(e,t,a){return this.isIdentity()?[e,t,a]:[e*this.props[0]+t*this.props[4]+a*this.props[8]+this.props[12],e*this.props[1]+t*this.props[5]+a*this.props[9]+this.props[13],e*this.props[2]+t*this.props[6]+a*this.props[10]+this.props[14]]}function G(e,t){if(this.isIdentity())return e+","+t;var a=this.props;return Math.round(100*(e*a[0]+t*a[4]+a[12]))/100+","+Math.round(100*(e*a[1]+t*a[5]+a[13]))/100}function M(){for(var e=0,t=this.props,a="matrix3d(";e<16;)a+=l(1e4*t[e])/1e4,a+=15===e?")":",",e+=1;return a}function R(e){return e<1e-6&&e>0||e>-1e-6&&e<0?l(1e4*e)/1e4:e}function B(){var e=this.props;return"matrix("+R(e[0])+","+R(e[1])+","+R(e[4])+","+R(e[5])+","+R(e[12])+","+R(e[13])+")"}return function(){this.reset=i,this.rotate=o,this.rotateX=n,this.rotateY=r,this.rotateZ=s,this.skew=u,this.skewFromAxis=p,this.shear=c,this.scale=b,this.setTransform=d,this.translate=g,this.transform=m,this.applyToPoint=_,this.applyToX=T,this.applyToY=C,this.applyToZ=S,this.applyToPointArray=A,this.applyToTriplePoints=x,this.applyToPointStringified=G,this.toCSS=M,this.to2dCSS=B,this.clone=h,this.cloneFromProps=v,this.equals=f,this.inversePoints=P,this.inversePoint=k,this.getInverseMatrix=w,this._t=this.transform,this.isIdentity=y,this._identity=!0,this._identityCalculated=!1,this.props=createTypedArray("float32",16),this.reset()}}();!function(e,t){var a=this,l=t.pow(256,6),i=t.pow(2,52),o=2*i;function n(e){var t,a=e.length,l=this,i=0,o=l.i=l.j=0,n=l.S=[];for(a||(e=[a++]);i<256;)n[i]=i++;for(i=0;i<256;i++)n[i]=n[o=255&o+e[i%a]+(t=n[i])],n[o]=t;l.g=function(e){for(var t,a=0,i=l.i,o=l.j,n=l.S;e--;)t=n[i=255&i+1],a=256*a+n[255&(n[i]=n[o=255&o+t])+(n[o]=t)];return l.i=i,l.j=o,a}}function r(e,t){return t.i=e.i,t.j=e.j,t.S=e.S.slice(),t}function s(e,t){for(var a,l=e+"",i=0;i<l.length;)t[255&i]=255&(a^=19*t[255&i])+l.charCodeAt(i++);return c(t)}function c(e){return String.fromCharCode.apply(0,e)}t.seedrandom=function(u,p,b){var d=[],g=s(function e(t,a){var l,i=[],o=typeof t;if(a&&"object"==o)for(l in t)try{i.push(e(t[l],a-1))}catch(e){}return i.length?i:"string"==o?t:t+"\0"}((p=!0===p?{entropy:!0}:p||{}).entropy?[u,c(e)]:null===u?function(){try{var t=new Uint8Array(256);return(a.crypto||a.msCrypto).getRandomValues(t),c(t)}catch(t){var l=a.navigator,i=l&&l.plugins;return[+new Date,a,i,a.screen,c(e)]}}():u,3),d),m=new n(d),y=function(){for(var e=m.g(6),t=l,a=0;e<i;)e=256*(e+a),t*=256,a=m.g(1);for(;e>=o;)e/=2,t/=2,a>>>=1;return(e+a)/t};return y.int32=function(){return 0|m.g(4)},y.quick=function(){return m.g(4)/4294967296},y.double=y,s(c(m.S),e),(p.pass||b||function(e,a,l,i){return i&&(i.S&&r(i,m),e.state=function(){return r(m,{})}),l?(t.random=e,a):e})(y,g,"global"in p?p.global:this==t,p.state)},s(t.random(),e)}([],BMMath);var BezierFactory=function(){var e={getBezierEasing:function(e,a,l,i,o){var n=o||("bez_"+e+"_"+a+"_"+l+"_"+i).replace(/\./g,"p");if(t[n])return t[n];var r=new s([e,a,l,i]);return t[n]=r,r}},t={},a="function"==typeof Float32Array;function l(e,t){return 1-3*t+3*e}function i(e,t){return 3*t-6*e}function o(e){return 3*e}function n(e,t,a){return((l(t,a)*e+i(t,a))*e+o(t))*e}function r(e,t,a){return 3*l(t,a)*e*e+2*i(t,a)*e+o(t)}function s(e){this._p=e,this._mSampleValues=a?new Float32Array(11):new Array(11),this._precomputed=!1,this.get=this.get.bind(this)}return s.prototype={get:function(e){var t=this._p[0],a=this._p[1],l=this._p[2],i=this._p[3];return this._precomputed||this._precompute(),t===a&&l===i?e:0===e?0:1===e?1:n(this._getTForX(e),a,i)},_precompute:function(){var e=this._p[0],t=this._p[1],a=this._p[2],l=this._p[3];this._precomputed=!0,e===t&&a===l||this._calcSampleValues()},_calcSampleValues:function(){for(var e=this._p[0],t=this._p[2],a=0;a<11;++a)this._mSampleValues[a]=n(.1*a,e,t)},_getTForX:function(e){for(var t=this._p[0],a=this._p[2],l=this._mSampleValues,i=0,o=1;10!==o&&l[o]<=e;++o)i+=.1;var s=i+(e-l[--o])/(l[o+1]-l[o])*.1,c=r(s,t,a);return c>=.001?function(e,t,a,l){for(var i=0;i<4;++i){var o=r(t,a,l);if(0===o)return t;t-=(n(t,a,l)-e)/o}return t}(e,s,t,a):0===c?s:function(e,t,a,l,i){var o,r,s=0;do{(o=n(r=t+(a-t)/2,l,i)-e)>0?a=r:t=r}while(Math.abs(o)>1e-7&&++s<10);return r}(e,i,i+.1,t,a)}},e}();function extendPrototype(e,t){var a,l,i=e.length;for(a=0;a<i;a+=1)for(var o in l=e[a].prototype)Object.prototype.hasOwnProperty.call(l,o)&&(t.prototype[o]=l[o])}function getDescriptor(e,t){return Object.getOwnPropertyDescriptor(e,t)}function createProxyFunction(e){function t(){}return t.prototype=e,t}function bezFunction(){var e=Math;function t(e,t,a,l,i,o){var n=e*l+t*i+a*o-i*l-o*e-a*t;return n>-.001&&n<.001}var a=function(e,t,a,l){var i,o,n,r,s,c,u=defaultCurveSegments,p=0,b=[],d=[],g=bezierLengthPool.newElement();for(n=a.length,i=0;i<u;i+=1){for(s=i/(u-1),c=0,o=0;o<n;o+=1)r=bmPow(1-s,3)*e[o]+3*bmPow(1-s,2)*s*a[o]+3*(1-s)*bmPow(s,2)*l[o]+bmPow(s,3)*t[o],b[o]=r,null!==d[o]&&(c+=bmPow(b[o]-d[o],2)),d[o]=b[o];c&&(p+=c=bmSqrt(c)),g.percents[i]=s,g.lengths[i]=p}return g.addedLength=p,g};function l(e){this.segmentLength=0,this.points=new Array(e)}function i(e,t){this.partialLength=e,this.point=t}var o,n=(o={},function(e,a,n,r){var s=(e[0]+"_"+e[1]+"_"+a[0]+"_"+a[1]+"_"+n[0]+"_"+n[1]+"_"+r[0]+"_"+r[1]).replace(/\./g,"p");if(!o[s]){var c,u,p,b,d,g,m,y=defaultCurveSegments,f=0,h=null;2===e.length&&(e[0]!==a[0]||e[1]!==a[1])&&t(e[0],e[1],a[0],a[1],e[0]+n[0],e[1]+n[1])&&t(e[0],e[1],a[0],a[1],a[0]+r[0],a[1]+r[1])&&(y=2);var v=new l(y);for(p=n.length,c=0;c<y;c+=1){for(m=createSizedArray(p),d=c/(y-1),g=0,u=0;u<p;u+=1)b=bmPow(1-d,3)*e[u]+3*bmPow(1-d,2)*d*(e[u]+n[u])+3*(1-d)*bmPow(d,2)*(a[u]+r[u])+bmPow(d,3)*a[u],m[u]=b,null!==h&&(g+=bmPow(m[u]-h[u],2));f+=g=bmSqrt(g),v.points[c]=new i(g,m),h=m}v.segmentLength=f,o[s]=v}return o[s]});function r(e,t){var a=t.percents,l=t.lengths,i=a.length,o=bmFloor((i-1)*e),n=e*t.addedLength,r=0;if(o===i-1||0===o||n===l[o])return a[o];for(var s=l[o]>n?-1:1,c=!0;c;)if(l[o]<=n&&l[o+1]>n?(r=(n-l[o])/(l[o+1]-l[o]),c=!1):o+=s,o<0||o>=i-1){if(o===i-1)return a[o];c=!1}return a[o]+(a[o+1]-a[o])*r}var s=createTypedArray("float32",8);return{getSegmentsLength:function(e){var t,l=segmentsLengthPool.newElement(),i=e.c,o=e.v,n=e.o,r=e.i,s=e._length,c=l.lengths,u=0;for(t=0;t<s-1;t+=1)c[t]=a(o[t],o[t+1],n[t],r[t+1]),u+=c[t].addedLength;return i&&s&&(c[t]=a(o[t],o[0],n[t],r[0]),u+=c[t].addedLength),l.totalLength=u,l},getNewSegment:function(t,a,l,i,o,n,c){o<0?o=0:o>1&&(o=1);var u,p=r(o,c),b=r(n=n>1?1:n,c),d=t.length,g=1-p,m=1-b,y=g*g*g,f=p*g*g*3,h=p*p*g*3,v=p*p*p,_=g*g*m,T=p*g*m+g*p*m+g*g*b,C=p*p*m+g*p*b+p*g*b,S=p*p*b,w=g*m*m,k=p*m*m+g*b*m+g*m*b,P=p*b*m+g*b*b+p*m*b,x=p*b*b,A=m*m*m,G=b*m*m+m*b*m+m*m*b,M=b*b*m+m*b*b+b*m*b,R=b*b*b;for(u=0;u<d;u+=1)s[4*u]=e.round(1e3*(y*t[u]+f*l[u]+h*i[u]+v*a[u]))/1e3,s[4*u+1]=e.round(1e3*(_*t[u]+T*l[u]+C*i[u]+S*a[u]))/1e3,s[4*u+2]=e.round(1e3*(w*t[u]+k*l[u]+P*i[u]+x*a[u]))/1e3,s[4*u+3]=e.round(1e3*(A*t[u]+G*l[u]+M*i[u]+R*a[u]))/1e3;return s},getPointInSegment:function(t,a,l,i,o,n){var s=r(o,n),c=1-s;return[e.round(1e3*(c*c*c*t[0]+(s*c*c+c*s*c+c*c*s)*l[0]+(s*s*c+c*s*s+s*c*s)*i[0]+s*s*s*a[0]))/1e3,e.round(1e3*(c*c*c*t[1]+(s*c*c+c*s*c+c*c*s)*l[1]+(s*s*c+c*s*s+s*c*s)*i[1]+s*s*s*a[1]))/1e3]},buildBezierData:n,pointOnLine2D:t,pointOnLine3D:function(a,l,i,o,n,r,s,c,u){if(0===i&&0===r&&0===u)return t(a,l,o,n,s,c);var p,b=e.sqrt(e.pow(o-a,2)+e.pow(n-l,2)+e.pow(r-i,2)),d=e.sqrt(e.pow(s-a,2)+e.pow(c-l,2)+e.pow(u-i,2)),g=e.sqrt(e.pow(s-o,2)+e.pow(c-n,2)+e.pow(u-r,2));return(p=b>d?b>g?b-d-g:g-d-b:g>d?g-d-b:d-b-g)>-1e-4&&p<1e-4}}}!function(){for(var e=0,t=["ms","moz","webkit","o"],a=0;a<t.length&&!window.requestAnimationFrame;++a)window.requestAnimationFrame=window[t[a]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[t[a]+"CancelAnimationFrame"]||window[t[a]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(t){var a=(new Date).getTime(),l=Math.max(0,16-(a-e)),i=setTimeout((function(){t(a+l)}),l);return e=a+l,i}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(e){clearTimeout(e)})}();var bez=bezFunction();function dataFunctionManager(){function e(i,o,n){var r,s,c,p,b,d,g=i.length;for(s=0;s<g;s+=1)if("ks"in(r=i[s])&&!r.completed){if(r.completed=!0,r.tt&&(i[s-1].td=r.tt),r.hasMask){var m=r.masksProperties;for(p=m.length,c=0;c<p;c+=1)if(m[c].pt.k.i)l(m[c].pt.k);else for(d=m[c].pt.k.length,b=0;b<d;b+=1)m[c].pt.k[b].s&&l(m[c].pt.k[b].s[0]),m[c].pt.k[b].e&&l(m[c].pt.k[b].e[0])}0===r.ty?(r.layers=t(r.refId,o),e(r.layers,o,n)):4===r.ty?a(r.shapes):5===r.ty&&u(r)}}function t(e,t){for(var a=0,l=t.length;a<l;){if(t[a].id===e)return t[a].layers.__used?JSON.parse(JSON.stringify(t[a].layers)):(t[a].layers.__used=!0,t[a].layers);a+=1}return null}function a(e){var t,i,o;for(t=e.length-1;t>=0;t-=1)if("sh"===e[t].ty)if(e[t].ks.k.i)l(e[t].ks.k);else for(o=e[t].ks.k.length,i=0;i<o;i+=1)e[t].ks.k[i].s&&l(e[t].ks.k[i].s[0]),e[t].ks.k[i].e&&l(e[t].ks.k[i].e[0]);else"gr"===e[t].ty&&a(e[t].it)}function l(e){var t,a=e.i.length;for(t=0;t<a;t+=1)e.i[t][0]+=e.v[t][0],e.i[t][1]+=e.v[t][1],e.o[t][0]+=e.v[t][0],e.o[t][1]+=e.v[t][1]}function i(e,t){var a=t?t.split("."):[100,100,100];return e[0]>a[0]||!(a[0]>e[0])&&(e[1]>a[1]||!(a[1]>e[1])&&(e[2]>a[2]||!(a[2]>e[2])&&null))}var o,n=function(){var e=[4,4,14];function t(e){var t,a,l,i=e.length;for(t=0;t<i;t+=1)5===e[t].ty&&(l=(a=e[t]).t.d,a.t.d={k:[{s:l,t:0}]})}return function(a){if(i(e,a.v)&&(t(a.layers),a.assets)){var l,o=a.assets.length;for(l=0;l<o;l+=1)a.assets[l].layers&&t(a.assets[l].layers)}}}(),r=(o=[4,7,99],function(e){if(e.chars&&!i(o,e.v)){var t,a,n,r,s,c=e.chars.length;for(t=0;t<c;t+=1)if(e.chars[t].data&&e.chars[t].data.shapes)for(n=(s=e.chars[t].data.shapes[0].it).length,a=0;a<n;a+=1)(r=s[a].ks.k).__converted||(l(s[a].ks.k),r.__converted=!0)}}),s=function(){var e=[4,1,9];function t(e){var a,l,i,o=e.length;for(a=0;a<o;a+=1)if("gr"===e[a].ty)t(e[a].it);else if("fl"===e[a].ty||"st"===e[a].ty)if(e[a].c.k&&e[a].c.k[0].i)for(i=e[a].c.k.length,l=0;l<i;l+=1)e[a].c.k[l].s&&(e[a].c.k[l].s[0]/=255,e[a].c.k[l].s[1]/=255,e[a].c.k[l].s[2]/=255,e[a].c.k[l].s[3]/=255),e[a].c.k[l].e&&(e[a].c.k[l].e[0]/=255,e[a].c.k[l].e[1]/=255,e[a].c.k[l].e[2]/=255,e[a].c.k[l].e[3]/=255);else e[a].c.k[0]/=255,e[a].c.k[1]/=255,e[a].c.k[2]/=255,e[a].c.k[3]/=255}function a(e){var a,l=e.length;for(a=0;a<l;a+=1)4===e[a].ty&&t(e[a].shapes)}return function(t){if(i(e,t.v)&&(a(t.layers),t.assets)){var l,o=t.assets.length;for(l=0;l<o;l+=1)t.assets[l].layers&&a(t.assets[l].layers)}}}(),c=function(){var e=[4,4,18];function t(e){var a,l,i;for(a=e.length-1;a>=0;a-=1)if("sh"===e[a].ty)if(e[a].ks.k.i)e[a].ks.k.c=e[a].closed;else for(i=e[a].ks.k.length,l=0;l<i;l+=1)e[a].ks.k[l].s&&(e[a].ks.k[l].s[0].c=e[a].closed),e[a].ks.k[l].e&&(e[a].ks.k[l].e[0].c=e[a].closed);else"gr"===e[a].ty&&t(e[a].it)}function a(e){var a,l,i,o,n,r,s=e.length;for(l=0;l<s;l+=1){if((a=e[l]).hasMask){var c=a.masksProperties;for(o=c.length,i=0;i<o;i+=1)if(c[i].pt.k.i)c[i].pt.k.c=c[i].cl;else for(r=c[i].pt.k.length,n=0;n<r;n+=1)c[i].pt.k[n].s&&(c[i].pt.k[n].s[0].c=c[i].cl),c[i].pt.k[n].e&&(c[i].pt.k[n].e[0].c=c[i].cl)}4===a.ty&&t(a.shapes)}}return function(t){if(i(e,t.v)&&(a(t.layers),t.assets)){var l,o=t.assets.length;for(l=0;l<o;l+=1)t.assets[l].layers&&a(t.assets[l].layers)}}}();function u(e){0!==e.t.a.length||"m"in e.t.p||(e.singleShape=!0)}var p={completeData:function(t,a){t.__complete||(s(t),n(t),r(t),c(t),e(t.layers,t.assets,a),t.__complete=!0)}};return p.checkColors=s,p.checkChars=r,p.checkShapes=c,p.completeLayers=e,p}var dataManager=dataFunctionManager();function getFontProperties(e){for(var t=e.fStyle?e.fStyle.split(" "):[],a="normal",l="normal",i=t.length,o=0;o<i;o+=1)switch(t[o].toLowerCase()){case"italic":l="italic";break;case"bold":a="700";break;case"black":a="900";break;case"medium":a="500";break;case"regular":case"normal":a="400";break;case"light":case"thin":a="200"}return{style:l,weight:e.fWeight||a}}var FontManager=function(){var e={w:0,size:0,shapes:[]},t=[];function a(e,t){var a=createTag("span");a.setAttribute("aria-hidden",!0),a.style.fontFamily=t;var l=createTag("span");l.innerText="giItT1WQy@!-/#",a.style.position="absolute",a.style.left="-10000px",a.style.top="-10000px",a.style.fontSize="300px",a.style.fontVariant="normal",a.style.fontStyle="normal",a.style.fontWeight="normal",a.style.letterSpacing="0",a.appendChild(l),document.body.appendChild(a);var i=l.offsetWidth;return l.style.fontFamily=function(e){var t,a=e.split(","),l=a.length,i=[];for(t=0;t<l;t+=1)"sans-serif"!==a[t]&&"monospace"!==a[t]&&i.push(a[t]);return i.join(",")}(e)+", "+t,{node:l,w:i,parent:a}}function l(e,t){var a=createNS("text");a.style.fontSize="100px";var l=getFontProperties(t);return a.setAttribute("font-family",t.fFamily),a.setAttribute("font-style",l.style),a.setAttribute("font-weight",l.weight),a.textContent="1",t.fClass?(a.style.fontFamily="inherit",a.setAttribute("class",t.fClass)):a.style.fontFamily=t.fFamily,e.appendChild(a),createTag("canvas").getContext("2d").font=t.fWeight+" "+t.fStyle+" 100px "+t.fFamily,a}t=t.concat([2304,2305,2306,2307,2362,2363,2364,2364,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2387,2388,2389,2390,2391,2402,2403]);var i=function(){this.fonts=[],this.chars=null,this.typekitLoaded=0,this.isLoaded=!1,this._warned=!1,this.initTime=Date.now(),this.setIsLoadedBinded=this.setIsLoaded.bind(this),this.checkLoadedFontsBinded=this.checkLoadedFonts.bind(this)};return i.getCombinedCharacterCodes=function(){return t},i.prototype={addChars:function(e){if(e){var t;this.chars||(this.chars=[]);var a,l,i=e.length,o=this.chars.length;for(t=0;t<i;t+=1){for(a=0,l=!1;a<o;)this.chars[a].style===e[t].style&&this.chars[a].fFamily===e[t].fFamily&&this.chars[a].ch===e[t].ch&&(l=!0),a+=1;l||(this.chars.push(e[t]),o+=1)}}},addFonts:function(e,t){if(e){if(this.chars)return this.isLoaded=!0,void(this.fonts=e.list);var i,o=e.list,n=o.length,r=n;for(i=0;i<n;i+=1){var s,c,u=!0;if(o[i].loaded=!1,o[i].monoCase=a(o[i].fFamily,"monospace"),o[i].sansCase=a(o[i].fFamily,"sans-serif"),o[i].fPath){if("p"===o[i].fOrigin||3===o[i].origin){if((s=document.querySelectorAll('style[f-forigin="p"][f-family="'+o[i].fFamily+'"], style[f-origin="3"][f-family="'+o[i].fFamily+'"]')).length>0&&(u=!1),u){var p=createTag("style");p.setAttribute("f-forigin",o[i].fOrigin),p.setAttribute("f-origin",o[i].origin),p.setAttribute("f-family",o[i].fFamily),p.type="text/css",p.innerText="@font-face {font-family: "+o[i].fFamily+"; font-style: normal; src: url('"+o[i].fPath+"');}",t.appendChild(p)}}else if("g"===o[i].fOrigin||1===o[i].origin){for(s=document.querySelectorAll('link[f-forigin="g"], link[f-origin="1"]'),c=0;c<s.length;c+=1)-1!==s[c].href.indexOf(o[i].fPath)&&(u=!1);if(u){var b=createTag("link");b.setAttribute("f-forigin",o[i].fOrigin),b.setAttribute("f-origin",o[i].origin),b.type="text/css",b.rel="stylesheet",b.href=o[i].fPath,document.body.appendChild(b)}}else if("t"===o[i].fOrigin||2===o[i].origin){for(s=document.querySelectorAll('script[f-forigin="t"], script[f-origin="2"]'),c=0;c<s.length;c+=1)o[i].fPath===s[c].src&&(u=!1);if(u){var d=createTag("link");d.setAttribute("f-forigin",o[i].fOrigin),d.setAttribute("f-origin",o[i].origin),d.setAttribute("rel","stylesheet"),d.setAttribute("href",o[i].fPath),t.appendChild(d)}}}else o[i].loaded=!0,r-=1;o[i].helper=l(t,o[i]),o[i].cache={},this.fonts.push(o[i])}0===r?this.isLoaded=!0:setTimeout(this.checkLoadedFonts.bind(this),100)}else this.isLoaded=!0},getCharData:function(t,a,l){for(var i=0,o=this.chars.length;i<o;){if(this.chars[i].ch===t&&this.chars[i].style===a&&this.chars[i].fFamily===l)return this.chars[i];i+=1}return("string"==typeof t&&13!==t.charCodeAt(0)||!t)&&console&&console.warn&&!this._warned&&(this._warned=!0),e},getFontByName:function(e){for(var t=0,a=this.fonts.length;t<a;){if(this.fonts[t].fName===e)return this.fonts[t];t+=1}return this.fonts[0]},measureText:function(e,t,a){var l=this.getFontByName(t),i=e.charCodeAt(0);if(!l.cache[i+1]){var o=l.helper;if(" "===e){o.textContent="|"+e+"|";var n=o.getComputedTextLength();o.textContent="||";var r=o.getComputedTextLength();l.cache[i+1]=(n-r)/100}else o.textContent=e,l.cache[i+1]=o.getComputedTextLength()/100}return l.cache[i+1]*a},checkLoadedFonts:function(){var e,t,a,l=this.fonts.length,i=l;for(e=0;e<l;e+=1)this.fonts[e].loaded?i-=1:"n"===this.fonts[e].fOrigin||0===this.fonts[e].origin?this.fonts[e].loaded=!0:(t=this.fonts[e].monoCase.node,a=this.fonts[e].monoCase.w,t.offsetWidth!==a?(i-=1,this.fonts[e].loaded=!0):(t=this.fonts[e].sansCase.node,a=this.fonts[e].sansCase.w,t.offsetWidth!==a&&(i-=1,this.fonts[e].loaded=!0)),this.fonts[e].loaded&&(this.fonts[e].sansCase.parent.parentNode.removeChild(this.fonts[e].sansCase.parent),this.fonts[e].monoCase.parent.parentNode.removeChild(this.fonts[e].monoCase.parent)));0!==i&&Date.now()-this.initTime<5e3?setTimeout(this.checkLoadedFontsBinded,20):setTimeout(this.setIsLoadedBinded,10)},setIsLoaded:function(){this.isLoaded=!0}},i}(),PropertyFactory=function(){var e=initialDefaultFrame,t=Math.abs;function a(e,t){var a,i=this.offsetTime;"multidimensional"===this.propType&&(a=createTypedArray("float32",this.pv.length));for(var o,n,r,s,c,u,p,b,d=t.lastIndex,g=d,m=this.keyframes.length-1,y=!0;y;){if(o=this.keyframes[g],n=this.keyframes[g+1],g===m-1&&e>=n.t-i){o.h&&(o=n),d=0;break}if(n.t-i>e){d=g;break}g<m-1?g+=1:(d=0,y=!1)}var f,h=n.t-i,v=o.t-i;if(o.to){o.bezierData||(o.bezierData=bez.buildBezierData(o.s,n.s||o.e,o.to,o.ti));var _=o.bezierData;if(e>=h||e<v){var T=e>=h?_.points.length-1:0;for(s=_.points[T].point.length,r=0;r<s;r+=1)a[r]=_.points[T].point[r]}else{o.__fnct?b=o.__fnct:(b=BezierFactory.getBezierEasing(o.o.x,o.o.y,o.i.x,o.i.y,o.n).get,o.__fnct=b),c=b((e-v)/(h-v));var C,S=_.segmentLength*c,w=t.lastFrame<e&&t._lastKeyframeIndex===g?t._lastAddedLength:0;for(p=t.lastFrame<e&&t._lastKeyframeIndex===g?t._lastPoint:0,y=!0,u=_.points.length;y;){if(w+=_.points[p].partialLength,0===S||0===c||p===_.points.length-1){for(s=_.points[p].point.length,r=0;r<s;r+=1)a[r]=_.points[p].point[r];break}if(S>=w&&S<w+_.points[p+1].partialLength){for(C=(S-w)/_.points[p+1].partialLength,s=_.points[p].point.length,r=0;r<s;r+=1)a[r]=_.points[p].point[r]+(_.points[p+1].point[r]-_.points[p].point[r])*C;break}p<u-1?p+=1:y=!1}t._lastPoint=p,t._lastAddedLength=w-_.points[p].partialLength,t._lastKeyframeIndex=g}}else{var k,P,x,A,G;if(m=o.s.length,f=n.s||o.e,this.sh&&1!==o.h)e>=h?(a[0]=f[0],a[1]=f[1],a[2]=f[2]):e<=v?(a[0]=o.s[0],a[1]=o.s[1],a[2]=o.s[2]):function(e,t){var a=t[0],l=t[1],i=t[2],o=t[3],n=Math.atan2(2*l*o-2*a*i,1-2*l*l-2*i*i),r=Math.asin(2*a*l+2*i*o),s=Math.atan2(2*a*o-2*l*i,1-2*a*a-2*i*i);e[0]=n/degToRads,e[1]=r/degToRads,e[2]=s/degToRads}(a,function(e,t,a){var l,i,o,n,r,s=[],c=e[0],u=e[1],p=e[2],b=e[3],d=t[0],g=t[1],m=t[2],y=t[3];return(i=c*d+u*g+p*m+b*y)<0&&(i=-i,d=-d,g=-g,m=-m,y=-y),1-i>1e-6?(l=Math.acos(i),o=Math.sin(l),n=Math.sin((1-a)*l)/o,r=Math.sin(a*l)/o):(n=1-a,r=a),s[0]=n*c+r*d,s[1]=n*u+r*g,s[2]=n*p+r*m,s[3]=n*b+r*y,s}(l(o.s),l(f),(e-v)/(h-v)));else for(g=0;g<m;g+=1)1!==o.h&&(e>=h?c=1:e<v?c=0:(o.o.x.constructor===Array?(o.__fnct||(o.__fnct=[]),o.__fnct[g]?b=o.__fnct[g]:(k=void 0===o.o.x[g]?o.o.x[0]:o.o.x[g],P=void 0===o.o.y[g]?o.o.y[0]:o.o.y[g],x=void 0===o.i.x[g]?o.i.x[0]:o.i.x[g],A=void 0===o.i.y[g]?o.i.y[0]:o.i.y[g],b=BezierFactory.getBezierEasing(k,P,x,A).get,o.__fnct[g]=b)):o.__fnct?b=o.__fnct:(k=o.o.x,P=o.o.y,x=o.i.x,A=o.i.y,b=BezierFactory.getBezierEasing(k,P,x,A).get,o.__fnct=b),c=b((e-v)/(h-v)))),f=n.s||o.e,G=1===o.h?o.s[g]:o.s[g]+(f[g]-o.s[g])*c,"multidimensional"===this.propType?a[g]=G:a=G}return t.lastIndex=d,a}function l(e){var t=e[0]*degToRads,a=e[1]*degToRads,l=e[2]*degToRads,i=Math.cos(t/2),o=Math.cos(a/2),n=Math.cos(l/2),r=Math.sin(t/2),s=Math.sin(a/2),c=Math.sin(l/2);return[r*s*n+i*o*c,r*o*n+i*s*c,i*s*n-r*o*c,i*o*n-r*s*c]}function i(){var t=this.comp.renderedFrame-this.offsetTime,a=this.keyframes[0].t-this.offsetTime,l=this.keyframes[this.keyframes.length-1].t-this.offsetTime;if(!(t===this._caching.lastFrame||this._caching.lastFrame!==e&&(this._caching.lastFrame>=l&&t>=l||this._caching.lastFrame<a&&t<a))){this._caching.lastFrame>=t&&(this._caching._lastKeyframeIndex=-1,this._caching.lastIndex=0);var i=this.interpolateValue(t,this._caching);this.pv=i}return this._caching.lastFrame=t,this.pv}function o(e){var a;if("unidimensional"===this.propType)a=e*this.mult,t(this.v-a)>1e-5&&(this.v=a,this._mdf=!0);else for(var l=0,i=this.v.length;l<i;)a=e[l]*this.mult,t(this.v[l]-a)>1e-5&&(this.v[l]=a,this._mdf=!0),l+=1}function n(){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length)if(this.lock)this.setVValue(this.pv);else{var e;this.lock=!0,this._mdf=this._isFirstFrame;var t=this.effectsSequence.length,a=this.kf?this.pv:this.data.k;for(e=0;e<t;e+=1)a=this.effectsSequence[e](a);this.setVValue(a),this._isFirstFrame=!1,this.lock=!1,this.frameId=this.elem.globalData.frameId}}function r(e){this.effectsSequence.push(e),this.container.addDynamicProperty(this)}function s(e,t,a,l){this.propType="unidimensional",this.mult=a||1,this.data=t,this.v=a?t.k*a:t.k,this.pv=t.k,this._mdf=!1,this.elem=e,this.container=l,this.comp=e.comp,this.k=!1,this.kf=!1,this.vel=0,this.effectsSequence=[],this._isFirstFrame=!0,this.getValue=n,this.setVValue=o,this.addEffect=r}function c(e,t,a,l){var i;this.propType="multidimensional",this.mult=a||1,this.data=t,this._mdf=!1,this.elem=e,this.container=l,this.comp=e.comp,this.k=!1,this.kf=!1,this.frameId=-1;var s=t.k.length;for(this.v=createTypedArray("float32",s),this.pv=createTypedArray("float32",s),this.vel=createTypedArray("float32",s),i=0;i<s;i+=1)this.v[i]=t.k[i]*this.mult,this.pv[i]=t.k[i];this._isFirstFrame=!0,this.effectsSequence=[],this.getValue=n,this.setVValue=o,this.addEffect=r}function u(t,l,s,c){this.propType="unidimensional",this.keyframes=l.k,this.offsetTime=t.data.st,this.frameId=-1,this._caching={lastFrame:e,lastIndex:0,value:0,_lastKeyframeIndex:-1},this.k=!0,this.kf=!0,this.data=l,this.mult=s||1,this.elem=t,this.container=c,this.comp=t.comp,this.v=e,this.pv=e,this._isFirstFrame=!0,this.getValue=n,this.setVValue=o,this.interpolateValue=a,this.effectsSequence=[i.bind(this)],this.addEffect=r}function p(t,l,s,c){var u;this.propType="multidimensional";var p,b,d,g,m=l.k.length;for(u=0;u<m-1;u+=1)l.k[u].to&&l.k[u].s&&l.k[u+1]&&l.k[u+1].s&&(p=l.k[u].s,b=l.k[u+1].s,d=l.k[u].to,g=l.k[u].ti,(2===p.length&&(p[0]!==b[0]||p[1]!==b[1])&&bez.pointOnLine2D(p[0],p[1],b[0],b[1],p[0]+d[0],p[1]+d[1])&&bez.pointOnLine2D(p[0],p[1],b[0],b[1],b[0]+g[0],b[1]+g[1])||3===p.length&&(p[0]!==b[0]||p[1]!==b[1]||p[2]!==b[2])&&bez.pointOnLine3D(p[0],p[1],p[2],b[0],b[1],b[2],p[0]+d[0],p[1]+d[1],p[2]+d[2])&&bez.pointOnLine3D(p[0],p[1],p[2],b[0],b[1],b[2],b[0]+g[0],b[1]+g[1],b[2]+g[2]))&&(l.k[u].to=null,l.k[u].ti=null),p[0]===b[0]&&p[1]===b[1]&&0===d[0]&&0===d[1]&&0===g[0]&&0===g[1]&&(2===p.length||p[2]===b[2]&&0===d[2]&&0===g[2])&&(l.k[u].to=null,l.k[u].ti=null));this.effectsSequence=[i.bind(this)],this.data=l,this.keyframes=l.k,this.offsetTime=t.data.st,this.k=!0,this.kf=!0,this._isFirstFrame=!0,this.mult=s||1,this.elem=t,this.container=c,this.comp=t.comp,this.getValue=n,this.setVValue=o,this.interpolateValue=a,this.frameId=-1;var y=l.k[0].s.length;for(this.v=createTypedArray("float32",y),this.pv=createTypedArray("float32",y),u=0;u<y;u+=1)this.v[u]=e,this.pv[u]=e;this._caching={lastFrame:e,lastIndex:0,value:createTypedArray("float32",y)},this.addEffect=r}return{getProp:function(e,t,a,l,i){var o;if(t.k.length)if("number"==typeof t.k[0])o=new c(e,t,l,i);else switch(a){case 0:o=new u(e,t,l,i);break;case 1:o=new p(e,t,l,i)}else o=new s(e,t,l,i);return o.effectsSequence.length&&i.addDynamicProperty(o),o}}}(),TransformPropertyFactory=function(){var e=[0,0];function t(e,t,a){if(this.elem=e,this.frameId=-1,this.propType="transform",this.data=t,this.v=new Matrix,this.pre=new Matrix,this.appliedTransformations=0,this.initDynamicPropertyContainer(a||e),t.p&&t.p.s?(this.px=PropertyFactory.getProp(e,t.p.x,0,0,this),this.py=PropertyFactory.getProp(e,t.p.y,0,0,this),t.p.z&&(this.pz=PropertyFactory.getProp(e,t.p.z,0,0,this))):this.p=PropertyFactory.getProp(e,t.p||{k:[0,0,0]},1,0,this),t.rx){if(this.rx=PropertyFactory.getProp(e,t.rx,0,degToRads,this),this.ry=PropertyFactory.getProp(e,t.ry,0,degToRads,this),this.rz=PropertyFactory.getProp(e,t.rz,0,degToRads,this),t.or.k[0].ti){var l,i=t.or.k.length;for(l=0;l<i;l+=1)t.or.k[l].to=null,t.or.k[l].ti=null}this.or=PropertyFactory.getProp(e,t.or,1,degToRads,this),this.or.sh=!0}else this.r=PropertyFactory.getProp(e,t.r||{k:0},0,degToRads,this);t.sk&&(this.sk=PropertyFactory.getProp(e,t.sk,0,degToRads,this),this.sa=PropertyFactory.getProp(e,t.sa,0,degToRads,this)),this.a=PropertyFactory.getProp(e,t.a||{k:[0,0,0]},1,0,this),this.s=PropertyFactory.getProp(e,t.s||{k:[100,100,100]},1,.01,this),t.o?this.o=PropertyFactory.getProp(e,t.o,0,.01,e):this.o={_mdf:!1,v:1},this._isDirty=!0,this.dynamicProperties.length||this.getValue(!0)}return t.prototype={applyToMatrix:function(e){var t=this._mdf;this.iterateDynamicProperties(),this._mdf=this._mdf||t,this.a&&e.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.s&&e.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.sk&&e.skewFromAxis(-this.sk.v,this.sa.v),this.r?e.rotate(-this.r.v):e.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.data.p.s?this.data.p.z?e.translate(this.px.v,this.py.v,-this.pz.v):e.translate(this.px.v,this.py.v,0):e.translate(this.p.v[0],this.p.v[1],-this.p.v[2])},getValue:function(t){if(this.elem.globalData.frameId!==this.frameId){if(this._isDirty&&(this.precalculateMatrix(),this._isDirty=!1),this.iterateDynamicProperties(),this._mdf||t){var a;if(this.v.cloneFromProps(this.pre.props),this.appliedTransformations<1&&this.v.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations<2&&this.v.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.sk&&this.appliedTransformations<3&&this.v.skewFromAxis(-this.sk.v,this.sa.v),this.r&&this.appliedTransformations<4?this.v.rotate(-this.r.v):!this.r&&this.appliedTransformations<4&&this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.autoOriented){var l,i;if(a=this.elem.globalData.frameRate,this.p&&this.p.keyframes&&this.p.getValueAtTime)this.p._caching.lastFrame+this.p.offsetTime<=this.p.keyframes[0].t?(l=this.p.getValueAtTime((this.p.keyframes[0].t+.01)/a,0),i=this.p.getValueAtTime(this.p.keyframes[0].t/a,0)):this.p._caching.lastFrame+this.p.offsetTime>=this.p.keyframes[this.p.keyframes.length-1].t?(l=this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length-1].t/a,0),i=this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length-1].t-.05)/a,0)):(l=this.p.pv,i=this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime-.01)/a,this.p.offsetTime));else if(this.px&&this.px.keyframes&&this.py.keyframes&&this.px.getValueAtTime&&this.py.getValueAtTime){l=[],i=[];var o=this.px,n=this.py;o._caching.lastFrame+o.offsetTime<=o.keyframes[0].t?(l[0]=o.getValueAtTime((o.keyframes[0].t+.01)/a,0),l[1]=n.getValueAtTime((n.keyframes[0].t+.01)/a,0),i[0]=o.getValueAtTime(o.keyframes[0].t/a,0),i[1]=n.getValueAtTime(n.keyframes[0].t/a,0)):o._caching.lastFrame+o.offsetTime>=o.keyframes[o.keyframes.length-1].t?(l[0]=o.getValueAtTime(o.keyframes[o.keyframes.length-1].t/a,0),l[1]=n.getValueAtTime(n.keyframes[n.keyframes.length-1].t/a,0),i[0]=o.getValueAtTime((o.keyframes[o.keyframes.length-1].t-.01)/a,0),i[1]=n.getValueAtTime((n.keyframes[n.keyframes.length-1].t-.01)/a,0)):(l=[o.pv,n.pv],i[0]=o.getValueAtTime((o._caching.lastFrame+o.offsetTime-.01)/a,o.offsetTime),i[1]=n.getValueAtTime((n._caching.lastFrame+n.offsetTime-.01)/a,n.offsetTime))}else l=i=e;this.v.rotate(-Math.atan2(l[1]-i[1],l[0]-i[0]))}this.data.p&&this.data.p.s?this.data.p.z?this.v.translate(this.px.v,this.py.v,-this.pz.v):this.v.translate(this.px.v,this.py.v,0):this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2])}this.frameId=this.elem.globalData.frameId}},precalculateMatrix:function(){if(!this.a.k&&(this.pre.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations=1,!this.s.effectsSequence.length)){if(this.pre.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.appliedTransformations=2,this.sk){if(this.sk.effectsSequence.length||this.sa.effectsSequence.length)return;this.pre.skewFromAxis(-this.sk.v,this.sa.v),this.appliedTransformations=3}this.r?this.r.effectsSequence.length||(this.pre.rotate(-this.r.v),this.appliedTransformations=4):this.rz.effectsSequence.length||this.ry.effectsSequence.length||this.rx.effectsSequence.length||this.or.effectsSequence.length||(this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.appliedTransformations=4)}},autoOrient:function(){}},extendPrototype([DynamicPropertyContainer],t),t.prototype.addDynamicProperty=function(e){this._addDynamicProperty(e),this.elem.addDynamicProperty(e),this._isDirty=!0},t.prototype._addDynamicProperty=DynamicPropertyContainer.prototype.addDynamicProperty,{getTransformProperty:function(e,a,l){return new t(e,a,l)}}}();function ShapePath(){this.c=!1,this._length=0,this._maxLength=8,this.v=createSizedArray(this._maxLength),this.o=createSizedArray(this._maxLength),this.i=createSizedArray(this._maxLength)}ShapePath.prototype.setPathData=function(e,t){this.c=e,this.setLength(t);for(var a=0;a<t;)this.v[a]=pointPool.newElement(),this.o[a]=pointPool.newElement(),this.i[a]=pointPool.newElement(),a+=1},ShapePath.prototype.setLength=function(e){for(;this._maxLength<e;)this.doubleArrayLength();this._length=e},ShapePath.prototype.doubleArrayLength=function(){this.v=this.v.concat(createSizedArray(this._maxLength)),this.i=this.i.concat(createSizedArray(this._maxLength)),this.o=this.o.concat(createSizedArray(this._maxLength)),this._maxLength*=2},ShapePath.prototype.setXYAt=function(e,t,a,l,i){var o;switch(this._length=Math.max(this._length,l+1),this._length>=this._maxLength&&this.doubleArrayLength(),a){case"v":o=this.v;break;case"i":o=this.i;break;case"o":o=this.o;break;default:o=[]}(!o[l]||o[l]&&!i)&&(o[l]=pointPool.newElement()),o[l][0]=e,o[l][1]=t},ShapePath.prototype.setTripleAt=function(e,t,a,l,i,o,n,r){this.setXYAt(e,t,"v",n,r),this.setXYAt(a,l,"o",n,r),this.setXYAt(i,o,"i",n,r)},ShapePath.prototype.reverse=function(){var e=new ShapePath;e.setPathData(this.c,this._length);var t=this.v,a=this.o,l=this.i,i=0;this.c&&(e.setTripleAt(t[0][0],t[0][1],l[0][0],l[0][1],a[0][0],a[0][1],0,!1),i=1);var o,n=this._length-1,r=this._length;for(o=i;o<r;o+=1)e.setTripleAt(t[n][0],t[n][1],l[n][0],l[n][1],a[n][0],a[n][1],o,!1),n-=1;return e};var ShapePropertyFactory=function(){function e(e,t,a){var l,i,o,n,r,s,c,u,p,b=a.lastIndex,d=this.keyframes;if(e<d[0].t-this.offsetTime)l=d[0].s[0],o=!0,b=0;else if(e>=d[d.length-1].t-this.offsetTime)l=d[d.length-1].s?d[d.length-1].s[0]:d[d.length-2].e[0],o=!0;else{for(var g,m,y=b,f=d.length-1,h=!0;h&&(g=d[y],!((m=d[y+1]).t-this.offsetTime>e));)y<f-1?y+=1:h=!1;if(b=y,!(o=1===g.h)){if(e>=m.t-this.offsetTime)u=1;else if(e<g.t-this.offsetTime)u=0;else{var v;g.__fnct?v=g.__fnct:(v=BezierFactory.getBezierEasing(g.o.x,g.o.y,g.i.x,g.i.y).get,g.__fnct=v),u=v((e-(g.t-this.offsetTime))/(m.t-this.offsetTime-(g.t-this.offsetTime)))}i=m.s?m.s[0]:g.e[0]}l=g.s[0]}for(s=t._length,c=l.i[0].length,a.lastIndex=b,n=0;n<s;n+=1)for(r=0;r<c;r+=1)p=o?l.i[n][r]:l.i[n][r]+(i.i[n][r]-l.i[n][r])*u,t.i[n][r]=p,p=o?l.o[n][r]:l.o[n][r]+(i.o[n][r]-l.o[n][r])*u,t.o[n][r]=p,p=o?l.v[n][r]:l.v[n][r]+(i.v[n][r]-l.v[n][r])*u,t.v[n][r]=p}function t(){var e=this.comp.renderedFrame-this.offsetTime,t=this.keyframes[0].t-this.offsetTime,a=this.keyframes[this.keyframes.length-1].t-this.offsetTime,l=this._caching.lastFrame;return-999999!==l&&(l<t&&e<t||l>a&&e>a)||(this._caching.lastIndex=l<e?this._caching.lastIndex:0,this.interpolateShape(e,this.pv,this._caching)),this._caching.lastFrame=e,this.pv}function a(){this.paths=this.localShapeCollection}function l(e){(function(e,t){if(e._length!==t._length||e.c!==t.c)return!1;var a,l=e._length;for(a=0;a<l;a+=1)if(e.v[a][0]!==t.v[a][0]||e.v[a][1]!==t.v[a][1]||e.o[a][0]!==t.o[a][0]||e.o[a][1]!==t.o[a][1]||e.i[a][0]!==t.i[a][0]||e.i[a][1]!==t.i[a][1])return!1;return!0})(this.v,e)||(this.v=shapePool.clone(e),this.localShapeCollection.releaseShapes(),this.localShapeCollection.addShape(this.v),this._mdf=!0,this.paths=this.localShapeCollection)}function i(){if(this.elem.globalData.frameId!==this.frameId)if(this.effectsSequence.length)if(this.lock)this.setVValue(this.pv);else{var e,t;this.lock=!0,this._mdf=!1,e=this.kf?this.pv:this.data.ks?this.data.ks.k:this.data.pt.k;var a=this.effectsSequence.length;for(t=0;t<a;t+=1)e=this.effectsSequence[t](e);this.setVValue(e),this.lock=!1,this.frameId=this.elem.globalData.frameId}else this._mdf=!1}function o(e,t,l){this.propType="shape",this.comp=e.comp,this.container=e,this.elem=e,this.data=t,this.k=!1,this.kf=!1,this._mdf=!1;var i=3===l?t.pt.k:t.ks.k;this.v=shapePool.clone(i),this.pv=shapePool.clone(this.v),this.localShapeCollection=shapeCollectionPool.newShapeCollection(),this.paths=this.localShapeCollection,this.paths.addShape(this.v),this.reset=a,this.effectsSequence=[]}function n(e){this.effectsSequence.push(e),this.container.addDynamicProperty(this)}function r(e,l,i){this.propType="shape",this.comp=e.comp,this.elem=e,this.container=e,this.offsetTime=e.data.st,this.keyframes=3===i?l.pt.k:l.ks.k,this.k=!0,this.kf=!0;var o=this.keyframes[0].s[0].i.length;this.v=shapePool.newElement(),this.v.setPathData(this.keyframes[0].s[0].c,o),this.pv=shapePool.clone(this.v),this.localShapeCollection=shapeCollectionPool.newShapeCollection(),this.paths=this.localShapeCollection,this.paths.addShape(this.v),this.lastFrame=-999999,this.reset=a,this._caching={lastFrame:-999999,lastIndex:0},this.effectsSequence=[t.bind(this)]}o.prototype.interpolateShape=e,o.prototype.getValue=i,o.prototype.setVValue=l,o.prototype.addEffect=n,r.prototype.getValue=i,r.prototype.interpolateShape=e,r.prototype.setVValue=l,r.prototype.addEffect=n;var s=function(){var e=roundCorner;function t(e,t){this.v=shapePool.newElement(),this.v.setPathData(!0,4),this.localShapeCollection=shapeCollectionPool.newShapeCollection(),this.paths=this.localShapeCollection,this.localShapeCollection.addShape(this.v),this.d=t.d,this.elem=e,this.comp=e.comp,this.frameId=-1,this.initDynamicPropertyContainer(e),this.p=PropertyFactory.getProp(e,t.p,1,0,this),this.s=PropertyFactory.getProp(e,t.s,1,0,this),this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertEllToPath())}return t.prototype={reset:a,getValue:function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertEllToPath())},convertEllToPath:function(){var t=this.p.v[0],a=this.p.v[1],l=this.s.v[0]/2,i=this.s.v[1]/2,o=3!==this.d,n=this.v;n.v[0][0]=t,n.v[0][1]=a-i,n.v[1][0]=o?t+l:t-l,n.v[1][1]=a,n.v[2][0]=t,n.v[2][1]=a+i,n.v[3][0]=o?t-l:t+l,n.v[3][1]=a,n.i[0][0]=o?t-l*e:t+l*e,n.i[0][1]=a-i,n.i[1][0]=o?t+l:t-l,n.i[1][1]=a-i*e,n.i[2][0]=o?t+l*e:t-l*e,n.i[2][1]=a+i,n.i[3][0]=o?t-l:t+l,n.i[3][1]=a+i*e,n.o[0][0]=o?t+l*e:t-l*e,n.o[0][1]=a-i,n.o[1][0]=o?t+l:t-l,n.o[1][1]=a+i*e,n.o[2][0]=o?t-l*e:t+l*e,n.o[2][1]=a+i,n.o[3][0]=o?t-l:t+l,n.o[3][1]=a-i*e}},extendPrototype([DynamicPropertyContainer],t),t}(),c=function(){function e(e,t){this.v=shapePool.newElement(),this.v.setPathData(!0,0),this.elem=e,this.comp=e.comp,this.data=t,this.frameId=-1,this.d=t.d,this.initDynamicPropertyContainer(e),1===t.sy?(this.ir=PropertyFactory.getProp(e,t.ir,0,0,this),this.is=PropertyFactory.getProp(e,t.is,0,.01,this),this.convertToPath=this.convertStarToPath):this.convertToPath=this.convertPolygonToPath,this.pt=PropertyFactory.getProp(e,t.pt,0,0,this),this.p=PropertyFactory.getProp(e,t.p,1,0,this),this.r=PropertyFactory.getProp(e,t.r,0,degToRads,this),this.or=PropertyFactory.getProp(e,t.or,0,0,this),this.os=PropertyFactory.getProp(e,t.os,0,.01,this),this.localShapeCollection=shapeCollectionPool.newShapeCollection(),this.localShapeCollection.addShape(this.v),this.paths=this.localShapeCollection,this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertToPath())}return e.prototype={reset:a,getValue:function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertToPath())},convertStarToPath:function(){var e,t,a,l,i=2*Math.floor(this.pt.v),o=2*Math.PI/i,n=!0,r=this.or.v,s=this.ir.v,c=this.os.v,u=this.is.v,p=2*Math.PI*r/(2*i),b=2*Math.PI*s/(2*i),d=-Math.PI/2;d+=this.r.v;var g=3===this.data.d?-1:1;for(this.v._length=0,e=0;e<i;e+=1){a=n?c:u,l=n?p:b;var m=(t=n?r:s)*Math.cos(d),y=t*Math.sin(d),f=0===m&&0===y?0:y/Math.sqrt(m*m+y*y),h=0===m&&0===y?0:-m/Math.sqrt(m*m+y*y);m+=+this.p.v[0],y+=+this.p.v[1],this.v.setTripleAt(m,y,m-f*l*a*g,y-h*l*a*g,m+f*l*a*g,y+h*l*a*g,e,!0),n=!n,d+=o*g}},convertPolygonToPath:function(){var e,t=Math.floor(this.pt.v),a=2*Math.PI/t,l=this.or.v,i=this.os.v,o=2*Math.PI*l/(4*t),n=.5*-Math.PI,r=3===this.data.d?-1:1;for(n+=this.r.v,this.v._length=0,e=0;e<t;e+=1){var s=l*Math.cos(n),c=l*Math.sin(n),u=0===s&&0===c?0:c/Math.sqrt(s*s+c*c),p=0===s&&0===c?0:-s/Math.sqrt(s*s+c*c);s+=+this.p.v[0],c+=+this.p.v[1],this.v.setTripleAt(s,c,s-u*o*i*r,c-p*o*i*r,s+u*o*i*r,c+p*o*i*r,e,!0),n+=a*r}this.paths.length=0,this.paths[0]=this.v}},extendPrototype([DynamicPropertyContainer],e),e}(),u=function(){function e(e,t){this.v=shapePool.newElement(),this.v.c=!0,this.localShapeCollection=shapeCollectionPool.newShapeCollection(),this.localShapeCollection.addShape(this.v),this.paths=this.localShapeCollection,this.elem=e,this.comp=e.comp,this.frameId=-1,this.d=t.d,this.initDynamicPropertyContainer(e),this.p=PropertyFactory.getProp(e,t.p,1,0,this),this.s=PropertyFactory.getProp(e,t.s,1,0,this),this.r=PropertyFactory.getProp(e,t.r,0,0,this),this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertRectToPath())}return e.prototype={convertRectToPath:function(){var e=this.p.v[0],t=this.p.v[1],a=this.s.v[0]/2,l=this.s.v[1]/2,i=bmMin(a,l,this.r.v),o=i*(1-roundCorner);this.v._length=0,2===this.d||1===this.d?(this.v.setTripleAt(e+a,t-l+i,e+a,t-l+i,e+a,t-l+o,0,!0),this.v.setTripleAt(e+a,t+l-i,e+a,t+l-o,e+a,t+l-i,1,!0),0!==i?(this.v.setTripleAt(e+a-i,t+l,e+a-i,t+l,e+a-o,t+l,2,!0),this.v.setTripleAt(e-a+i,t+l,e-a+o,t+l,e-a+i,t+l,3,!0),this.v.setTripleAt(e-a,t+l-i,e-a,t+l-i,e-a,t+l-o,4,!0),this.v.setTripleAt(e-a,t-l+i,e-a,t-l+o,e-a,t-l+i,5,!0),this.v.setTripleAt(e-a+i,t-l,e-a+i,t-l,e-a+o,t-l,6,!0),this.v.setTripleAt(e+a-i,t-l,e+a-o,t-l,e+a-i,t-l,7,!0)):(this.v.setTripleAt(e-a,t+l,e-a+o,t+l,e-a,t+l,2),this.v.setTripleAt(e-a,t-l,e-a,t-l+o,e-a,t-l,3))):(this.v.setTripleAt(e+a,t-l+i,e+a,t-l+o,e+a,t-l+i,0,!0),0!==i?(this.v.setTripleAt(e+a-i,t-l,e+a-i,t-l,e+a-o,t-l,1,!0),this.v.setTripleAt(e-a+i,t-l,e-a+o,t-l,e-a+i,t-l,2,!0),this.v.setTripleAt(e-a,t-l+i,e-a,t-l+i,e-a,t-l+o,3,!0),this.v.setTripleAt(e-a,t+l-i,e-a,t+l-o,e-a,t+l-i,4,!0),this.v.setTripleAt(e-a+i,t+l,e-a+i,t+l,e-a+o,t+l,5,!0),this.v.setTripleAt(e+a-i,t+l,e+a-o,t+l,e+a-i,t+l,6,!0),this.v.setTripleAt(e+a,t+l-i,e+a,t+l-i,e+a,t+l-o,7,!0)):(this.v.setTripleAt(e-a,t-l,e-a+o,t-l,e-a,t-l,1,!0),this.v.setTripleAt(e-a,t+l,e-a,t+l-o,e-a,t+l,2,!0),this.v.setTripleAt(e+a,t+l,e+a-o,t+l,e+a,t+l,3,!0)))},getValue:function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertRectToPath())},reset:a},extendPrototype([DynamicPropertyContainer],e),e}();return{getShapeProp:function(e,t,a){var l;return 3===a||4===a?l=(3===a?t.pt:t.ks).k.length?new r(e,t,a):new o(e,t,a):5===a?l=new u(e,t):6===a?l=new s(e,t):7===a&&(l=new c(e,t)),l.k&&e.addDynamicProperty(l),l},getConstructorFunction:function(){return o},getKeyframedConstructorFunction:function(){return r}}}(),ShapeModifiers=(ob={},modifiers={},ob.registerModifier=function(e,t){modifiers[e]||(modifiers[e]=t)},ob.getModifier=function(e,t,a){return new modifiers[e](t,a)},ob),ob,modifiers;function ShapeModifier(){}function TrimModifier(){}function RoundCornersModifier(){}function PuckerAndBloatModifier(){}function RepeaterModifier(){}function ShapeCollection(){this._length=0,this._maxLength=4,this.shapes=createSizedArray(this._maxLength)}function DashProperty(e,t,a,l){var i;this.elem=e,this.frameId=-1,this.dataProps=createSizedArray(t.length),this.renderer=a,this.k=!1,this.dashStr="",this.dashArray=createTypedArray("float32",t.length?t.length-1:0),this.dashoffset=createTypedArray("float32",1),this.initDynamicPropertyContainer(l);var o,n=t.length||0;for(i=0;i<n;i+=1)o=PropertyFactory.getProp(e,t[i].v,0,0,this),this.k=o.k||this.k,this.dataProps[i]={n:t[i].n,p:o};this.k||this.getValue(!0),this._isAnimated=this.k}function GradientProperty(e,t,a){this.data=t,this.c=createTypedArray("uint8c",4*t.p);var l=t.k.k[0].s?t.k.k[0].s.length-4*t.p:t.k.k.length-4*t.p;this.o=createTypedArray("float32",l),this._cmdf=!1,this._omdf=!1,this._collapsable=this.checkCollapsable(),this._hasOpacity=l,this.initDynamicPropertyContainer(a),this.prop=PropertyFactory.getProp(e,t.k,1,null,this),this.k=this.prop.k,this.getValue(!0)}ShapeModifier.prototype.initModifierProperties=function(){},ShapeModifier.prototype.addShapeToModifier=function(){},ShapeModifier.prototype.addShape=function(e){if(!this.closed){e.sh.container.addDynamicProperty(e.sh);var t={shape:e.sh,data:e,localShapeCollection:shapeCollectionPool.newShapeCollection()};this.shapes.push(t),this.addShapeToModifier(t),this._isAnimated&&e.setAsAnimated()}},ShapeModifier.prototype.init=function(e,t){this.shapes=[],this.elem=e,this.initDynamicPropertyContainer(e),this.initModifierProperties(e,t),this.frameId=initialDefaultFrame,this.closed=!1,this.k=!1,this.dynamicProperties.length?this.k=!0:this.getValue(!0)},ShapeModifier.prototype.processKeys=function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties())},extendPrototype([DynamicPropertyContainer],ShapeModifier),extendPrototype([ShapeModifier],TrimModifier),TrimModifier.prototype.initModifierProperties=function(e,t){this.s=PropertyFactory.getProp(e,t.s,0,.01,this),this.e=PropertyFactory.getProp(e,t.e,0,.01,this),this.o=PropertyFactory.getProp(e,t.o,0,0,this),this.sValue=0,this.eValue=0,this.getValue=this.processKeys,this.m=t.m,this._isAnimated=!!this.s.effectsSequence.length||!!this.e.effectsSequence.length||!!this.o.effectsSequence.length},TrimModifier.prototype.addShapeToModifier=function(e){e.pathsData=[]},TrimModifier.prototype.calculateShapeEdges=function(e,t,a,l,i){var o=[];t<=1?o.push({s:e,e:t}):e>=1?o.push({s:e-1,e:t-1}):(o.push({s:e,e:1}),o.push({s:0,e:t-1}));var n,r,s=[],c=o.length;for(n=0;n<c;n+=1){var u,p;(r=o[n]).e*i<l||r.s*i>l+a||(u=r.s*i<=l?0:(r.s*i-l)/a,p=r.e*i>=l+a?1:(r.e*i-l)/a,s.push([u,p]))}return s.length||s.push([0,0]),s},TrimModifier.prototype.releasePathsData=function(e){var t,a=e.length;for(t=0;t<a;t+=1)segmentsLengthPool.release(e[t]);return e.length=0,e},TrimModifier.prototype.processShapes=function(e){var t,a,l,i;if(this._mdf||e){var o=this.o.v%360/360;if(o<0&&(o+=1),(t=this.s.v>1?1+o:this.s.v<0?0+o:this.s.v+o)>(a=this.e.v>1?1+o:this.e.v<0?0+o:this.e.v+o)){var n=t;t=a,a=n}t=1e-4*Math.round(1e4*t),a=1e-4*Math.round(1e4*a),this.sValue=t,this.eValue=a}else t=this.sValue,a=this.eValue;var r,s,c,u,p,b=this.shapes.length,d=0;if(a===t)for(i=0;i<b;i+=1)this.shapes[i].localShapeCollection.releaseShapes(),this.shapes[i].shape._mdf=!0,this.shapes[i].shape.paths=this.shapes[i].localShapeCollection,this._mdf&&(this.shapes[i].pathsData.length=0);else if(1===a&&0===t||0===a&&1===t){if(this._mdf)for(i=0;i<b;i+=1)this.shapes[i].pathsData.length=0,this.shapes[i].shape._mdf=!0}else{var g,m,y=[];for(i=0;i<b;i+=1)if((g=this.shapes[i]).shape._mdf||this._mdf||e||2===this.m){if(s=(l=g.shape.paths)._length,p=0,!g.shape._mdf&&g.pathsData.length)p=g.totalShapeLength;else{for(c=this.releasePathsData(g.pathsData),r=0;r<s;r+=1)u=bez.getSegmentsLength(l.shapes[r]),c.push(u),p+=u.totalLength;g.totalShapeLength=p,g.pathsData=c}d+=p,g.shape._mdf=!0}else g.shape.paths=g.localShapeCollection;var f,h=t,v=a,_=0;for(i=b-1;i>=0;i-=1)if((g=this.shapes[i]).shape._mdf){for((m=g.localShapeCollection).releaseShapes(),2===this.m&&b>1?(f=this.calculateShapeEdges(t,a,g.totalShapeLength,_,d),_+=g.totalShapeLength):f=[[h,v]],s=f.length,r=0;r<s;r+=1){h=f[r][0],v=f[r][1],y.length=0,v<=1?y.push({s:g.totalShapeLength*h,e:g.totalShapeLength*v}):h>=1?y.push({s:g.totalShapeLength*(h-1),e:g.totalShapeLength*(v-1)}):(y.push({s:g.totalShapeLength*h,e:g.totalShapeLength}),y.push({s:0,e:g.totalShapeLength*(v-1)}));var T=this.addShapes(g,y[0]);if(y[0].s!==y[0].e){if(y.length>1)if(g.shape.paths.shapes[g.shape.paths._length-1].c){var C=T.pop();this.addPaths(T,m),T=this.addShapes(g,y[1],C)}else this.addPaths(T,m),T=this.addShapes(g,y[1]);this.addPaths(T,m)}}g.shape.paths=m}}},TrimModifier.prototype.addPaths=function(e,t){var a,l=e.length;for(a=0;a<l;a+=1)t.addShape(e[a])},TrimModifier.prototype.addSegment=function(e,t,a,l,i,o,n){i.setXYAt(t[0],t[1],"o",o),i.setXYAt(a[0],a[1],"i",o+1),n&&i.setXYAt(e[0],e[1],"v",o),i.setXYAt(l[0],l[1],"v",o+1)},TrimModifier.prototype.addSegmentFromArray=function(e,t,a,l){t.setXYAt(e[1],e[5],"o",a),t.setXYAt(e[2],e[6],"i",a+1),l&&t.setXYAt(e[0],e[4],"v",a),t.setXYAt(e[3],e[7],"v",a+1)},TrimModifier.prototype.addShapes=function(e,t,a){var l,i,o,n,r,s,c,u,p=e.pathsData,b=e.shape.paths.shapes,d=e.shape.paths._length,g=0,m=[],y=!0;for(a?(r=a._length,u=a._length):(a=shapePool.newElement(),r=0,u=0),m.push(a),l=0;l<d;l+=1){for(s=p[l].lengths,a.c=b[l].c,o=b[l].c?s.length:s.length+1,i=1;i<o;i+=1)if(g+(n=s[i-1]).addedLength<t.s)g+=n.addedLength,a.c=!1;else{if(g>t.e){a.c=!1;break}t.s<=g&&t.e>=g+n.addedLength?(this.addSegment(b[l].v[i-1],b[l].o[i-1],b[l].i[i],b[l].v[i],a,r,y),y=!1):(c=bez.getNewSegment(b[l].v[i-1],b[l].v[i],b[l].o[i-1],b[l].i[i],(t.s-g)/n.addedLength,(t.e-g)/n.addedLength,s[i-1]),this.addSegmentFromArray(c,a,r,y),y=!1,a.c=!1),g+=n.addedLength,r+=1}if(b[l].c&&s.length){if(n=s[i-1],g<=t.e){var f=s[i-1].addedLength;t.s<=g&&t.e>=g+f?(this.addSegment(b[l].v[i-1],b[l].o[i-1],b[l].i[0],b[l].v[0],a,r,y),y=!1):(c=bez.getNewSegment(b[l].v[i-1],b[l].v[0],b[l].o[i-1],b[l].i[0],(t.s-g)/f,(t.e-g)/f,s[i-1]),this.addSegmentFromArray(c,a,r,y),y=!1,a.c=!1)}else a.c=!1;g+=n.addedLength,r+=1}if(a._length&&(a.setXYAt(a.v[u][0],a.v[u][1],"i",u),a.setXYAt(a.v[a._length-1][0],a.v[a._length-1][1],"o",a._length-1)),g>t.e)break;l<d-1&&(a=shapePool.newElement(),y=!0,m.push(a),r=0)}return m},ShapeModifiers.registerModifier("tm",TrimModifier),extendPrototype([ShapeModifier],RoundCornersModifier),RoundCornersModifier.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.rd=PropertyFactory.getProp(e,t.r,0,null,this),this._isAnimated=!!this.rd.effectsSequence.length},RoundCornersModifier.prototype.processPath=function(e,t){var a,l=shapePool.newElement();l.c=e.c;var i,o,n,r,s,c,u,p,b,d,g,m,y=e._length,f=0;for(a=0;a<y;a+=1)i=e.v[a],n=e.o[a],o=e.i[a],i[0]===n[0]&&i[1]===n[1]&&i[0]===o[0]&&i[1]===o[1]?0!==a&&a!==y-1||e.c?(r=0===a?e.v[y-1]:e.v[a-1],c=(s=Math.sqrt(Math.pow(i[0]-r[0],2)+Math.pow(i[1]-r[1],2)))?Math.min(s/2,t)/s:0,u=g=i[0]+(r[0]-i[0])*c,p=m=i[1]-(i[1]-r[1])*c,b=u-(u-i[0])*roundCorner,d=p-(p-i[1])*roundCorner,l.setTripleAt(u,p,b,d,g,m,f),f+=1,r=a===y-1?e.v[0]:e.v[a+1],c=(s=Math.sqrt(Math.pow(i[0]-r[0],2)+Math.pow(i[1]-r[1],2)))?Math.min(s/2,t)/s:0,u=b=i[0]+(r[0]-i[0])*c,p=d=i[1]+(r[1]-i[1])*c,g=u-(u-i[0])*roundCorner,m=p-(p-i[1])*roundCorner,l.setTripleAt(u,p,b,d,g,m,f),f+=1):(l.setTripleAt(i[0],i[1],n[0],n[1],o[0],o[1],f),f+=1):(l.setTripleAt(e.v[a][0],e.v[a][1],e.o[a][0],e.o[a][1],e.i[a][0],e.i[a][1],f),f+=1);return l},RoundCornersModifier.prototype.processShapes=function(e){var t,a,l,i,o,n,r=this.shapes.length,s=this.rd.v;if(0!==s)for(a=0;a<r;a+=1){if(n=(o=this.shapes[a]).localShapeCollection,o.shape._mdf||this._mdf||e)for(n.releaseShapes(),o.shape._mdf=!0,t=o.shape.paths.shapes,i=o.shape.paths._length,l=0;l<i;l+=1)n.addShape(this.processPath(t[l],s));o.shape.paths=o.localShapeCollection}this.dynamicProperties.length||(this._mdf=!1)},ShapeModifiers.registerModifier("rd",RoundCornersModifier),extendPrototype([ShapeModifier],PuckerAndBloatModifier),PuckerAndBloatModifier.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.amount=PropertyFactory.getProp(e,t.a,0,null,this),this._isAnimated=!!this.amount.effectsSequence.length},PuckerAndBloatModifier.prototype.processPath=function(e,t){var a=t/100,l=[0,0],i=e._length,o=0;for(o=0;o<i;o+=1)l[0]+=e.v[o][0],l[1]+=e.v[o][1];l[0]/=i,l[1]/=i;var n,r,s,c,u,p,b=shapePool.newElement();for(b.c=e.c,o=0;o<i;o+=1)n=e.v[o][0]+(l[0]-e.v[o][0])*a,r=e.v[o][1]+(l[1]-e.v[o][1])*a,s=e.o[o][0]+(l[0]-e.o[o][0])*-a,c=e.o[o][1]+(l[1]-e.o[o][1])*-a,u=e.i[o][0]+(l[0]-e.i[o][0])*-a,p=e.i[o][1]+(l[1]-e.i[o][1])*-a,b.setTripleAt(n,r,s,c,u,p,o);return b},PuckerAndBloatModifier.prototype.processShapes=function(e){var t,a,l,i,o,n,r=this.shapes.length,s=this.amount.v;if(0!==s)for(a=0;a<r;a+=1){if(n=(o=this.shapes[a]).localShapeCollection,o.shape._mdf||this._mdf||e)for(n.releaseShapes(),o.shape._mdf=!0,t=o.shape.paths.shapes,i=o.shape.paths._length,l=0;l<i;l+=1)n.addShape(this.processPath(t[l],s));o.shape.paths=o.localShapeCollection}this.dynamicProperties.length||(this._mdf=!1)},ShapeModifiers.registerModifier("pb",PuckerAndBloatModifier),extendPrototype([ShapeModifier],RepeaterModifier),RepeaterModifier.prototype.initModifierProperties=function(e,t){this.getValue=this.processKeys,this.c=PropertyFactory.getProp(e,t.c,0,null,this),this.o=PropertyFactory.getProp(e,t.o,0,null,this),this.tr=TransformPropertyFactory.getTransformProperty(e,t.tr,this),this.so=PropertyFactory.getProp(e,t.tr.so,0,.01,this),this.eo=PropertyFactory.getProp(e,t.tr.eo,0,.01,this),this.data=t,this.dynamicProperties.length||this.getValue(!0),this._isAnimated=!!this.dynamicProperties.length,this.pMatrix=new Matrix,this.rMatrix=new Matrix,this.sMatrix=new Matrix,this.tMatrix=new Matrix,this.matrix=new Matrix},RepeaterModifier.prototype.applyTransforms=function(e,t,a,l,i,o){var n=o?-1:1,r=l.s.v[0]+(1-l.s.v[0])*(1-i),s=l.s.v[1]+(1-l.s.v[1])*(1-i);e.translate(l.p.v[0]*n*i,l.p.v[1]*n*i,l.p.v[2]),t.translate(-l.a.v[0],-l.a.v[1],l.a.v[2]),t.rotate(-l.r.v*n*i),t.translate(l.a.v[0],l.a.v[1],l.a.v[2]),a.translate(-l.a.v[0],-l.a.v[1],l.a.v[2]),a.scale(o?1/r:r,o?1/s:s),a.translate(l.a.v[0],l.a.v[1],l.a.v[2])},RepeaterModifier.prototype.init=function(e,t,a,l){for(this.elem=e,this.arr=t,this.pos=a,this.elemsData=l,this._currentCopies=0,this._elements=[],this._groups=[],this.frameId=-1,this.initDynamicPropertyContainer(e),this.initModifierProperties(e,t[a]);a>0;)a-=1,this._elements.unshift(t[a]);this.dynamicProperties.length?this.k=!0:this.getValue(!0)},RepeaterModifier.prototype.resetElements=function(e){var t,a=e.length;for(t=0;t<a;t+=1)e[t]._processed=!1,"gr"===e[t].ty&&this.resetElements(e[t].it)},RepeaterModifier.prototype.cloneElements=function(e){var t=JSON.parse(JSON.stringify(e));return this.resetElements(t),t},RepeaterModifier.prototype.changeGroupRender=function(e,t){var a,l=e.length;for(a=0;a<l;a+=1)e[a]._render=t,"gr"===e[a].ty&&this.changeGroupRender(e[a].it,t)},RepeaterModifier.prototype.processShapes=function(e){var t,a,l,i,o,n=!1;if(this._mdf||e){var r,s=Math.ceil(this.c.v);if(this._groups.length<s){for(;this._groups.length<s;){var c={it:this.cloneElements(this._elements),ty:"gr"};c.it.push({a:{a:0,ix:1,k:[0,0]},nm:"Transform",o:{a:0,ix:7,k:100},p:{a:0,ix:2,k:[0,0]},r:{a:1,ix:6,k:[{s:0,e:0,t:0},{s:0,e:0,t:1}]},s:{a:0,ix:3,k:[100,100]},sa:{a:0,ix:5,k:0},sk:{a:0,ix:4,k:0},ty:"tr"}),this.arr.splice(0,0,c),this._groups.splice(0,0,c),this._currentCopies+=1}this.elem.reloadShapes(),n=!0}for(o=0,l=0;l<=this._groups.length-1;l+=1){if(r=o<s,this._groups[l]._render=r,this.changeGroupRender(this._groups[l].it,r),!r){var u=this.elemsData[l].it,p=u[u.length-1];0!==p.transform.op.v?(p.transform.op._mdf=!0,p.transform.op.v=0):p.transform.op._mdf=!1}o+=1}this._currentCopies=s;var b=this.o.v,d=b%1,g=b>0?Math.floor(b):Math.ceil(b),m=this.pMatrix.props,y=this.rMatrix.props,f=this.sMatrix.props;this.pMatrix.reset(),this.rMatrix.reset(),this.sMatrix.reset(),this.tMatrix.reset(),this.matrix.reset();var h,v,_=0;if(b>0){for(;_<g;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),_+=1;d&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,d,!1),_+=d)}else if(b<0){for(;_>g;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!0),_-=1;d&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,-d,!0),_-=d)}for(l=1===this.data.m?0:this._currentCopies-1,i=1===this.data.m?1:-1,o=this._currentCopies;o;){if(v=(a=(t=this.elemsData[l].it)[t.length-1].transform.mProps.v.props).length,t[t.length-1].transform.mProps._mdf=!0,t[t.length-1].transform.op._mdf=!0,t[t.length-1].transform.op.v=1===this._currentCopies?this.so.v:this.so.v+(this.eo.v-this.so.v)*(l/(this._currentCopies-1)),0!==_){for((0!==l&&1===i||l!==this._currentCopies-1&&-1===i)&&this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),this.matrix.transform(y[0],y[1],y[2],y[3],y[4],y[5],y[6],y[7],y[8],y[9],y[10],y[11],y[12],y[13],y[14],y[15]),this.matrix.transform(f[0],f[1],f[2],f[3],f[4],f[5],f[6],f[7],f[8],f[9],f[10],f[11],f[12],f[13],f[14],f[15]),this.matrix.transform(m[0],m[1],m[2],m[3],m[4],m[5],m[6],m[7],m[8],m[9],m[10],m[11],m[12],m[13],m[14],m[15]),h=0;h<v;h+=1)a[h]=this.matrix.props[h];this.matrix.reset()}else for(this.matrix.reset(),h=0;h<v;h+=1)a[h]=this.matrix.props[h];_+=1,o-=1,l+=i}}else for(o=this._currentCopies,l=0,i=1;o;)a=(t=this.elemsData[l].it)[t.length-1].transform.mProps.v.props,t[t.length-1].transform.mProps._mdf=!1,t[t.length-1].transform.op._mdf=!1,o-=1,l+=i;return n},RepeaterModifier.prototype.addShape=function(){},ShapeModifiers.registerModifier("rp",RepeaterModifier),ShapeCollection.prototype.addShape=function(e){this._length===this._maxLength&&(this.shapes=this.shapes.concat(createSizedArray(this._maxLength)),this._maxLength*=2),this.shapes[this._length]=e,this._length+=1},ShapeCollection.prototype.releaseShapes=function(){var e;for(e=0;e<this._length;e+=1)shapePool.release(this.shapes[e]);this._length=0},DashProperty.prototype.getValue=function(e){if((this.elem.globalData.frameId!==this.frameId||e)&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf=this._mdf||e,this._mdf)){var t=0,a=this.dataProps.length;for("svg"===this.renderer&&(this.dashStr=""),t=0;t<a;t+=1)"o"!==this.dataProps[t].n?"svg"===this.renderer?this.dashStr+=" "+this.dataProps[t].p.v:this.dashArray[t]=this.dataProps[t].p.v:this.dashoffset[0]=this.dataProps[t].p.v}},extendPrototype([DynamicPropertyContainer],DashProperty),GradientProperty.prototype.comparePoints=function(e,t){for(var a=0,l=this.o.length/2;a<l;){if(Math.abs(e[4*a]-e[4*t+2*a])>.01)return!1;a+=1}return!0},GradientProperty.prototype.checkCollapsable=function(){if(this.o.length/2!=this.c.length/4)return!1;if(this.data.k.k[0].s)for(var e=0,t=this.data.k.k.length;e<t;){if(!this.comparePoints(this.data.k.k[e].s,this.data.p))return!1;e+=1}else if(!this.comparePoints(this.data.k.k,this.data.p))return!1;return!0},GradientProperty.prototype.getValue=function(e){if(this.prop.getValue(),this._mdf=!1,this._cmdf=!1,this._omdf=!1,this.prop._mdf||e){var t,a,l,i=4*this.data.p;for(t=0;t<i;t+=1)a=t%4==0?100:255,l=Math.round(this.prop.v[t]*a),this.c[t]!==l&&(this.c[t]=l,this._cmdf=!e);if(this.o.length)for(i=this.prop.v.length,t=4*this.data.p;t<i;t+=1)a=t%2==0?100:1,l=t%2==0?Math.round(100*this.prop.v[t]):this.prop.v[t],this.o[t-4*this.data.p]!==l&&(this.o[t-4*this.data.p]=l,this._omdf=!e);this._mdf=!e}},extendPrototype([DynamicPropertyContainer],GradientProperty);var buildShapeString=function(e,t,a,l){if(0===t)return"";var i,o=e.o,n=e.i,r=e.v,s=" M"+l.applyToPointStringified(r[0][0],r[0][1]);for(i=1;i<t;i+=1)s+=" C"+l.applyToPointStringified(o[i-1][0],o[i-1][1])+" "+l.applyToPointStringified(n[i][0],n[i][1])+" "+l.applyToPointStringified(r[i][0],r[i][1]);return a&&t&&(s+=" C"+l.applyToPointStringified(o[i-1][0],o[i-1][1])+" "+l.applyToPointStringified(n[0][0],n[0][1])+" "+l.applyToPointStringified(r[0][0],r[0][1]),s+="z"),s},audioControllerFactory=function(){function e(e){this.audios=[],this.audioFactory=e,this._volume=1,this._isMuted=!1}return e.prototype={addAudio:function(e){this.audios.push(e)},pause:function(){var e,t=this.audios.length;for(e=0;e<t;e+=1)this.audios[e].pause()},resume:function(){var e,t=this.audios.length;for(e=0;e<t;e+=1)this.audios[e].resume()},setRate:function(e){var t,a=this.audios.length;for(t=0;t<a;t+=1)this.audios[t].setRate(e)},createAudio:function(e){return this.audioFactory?this.audioFactory(e):Howl?new Howl({src:[e]}):{isPlaying:!1,play:function(){this.isPlaying=!0},seek:function(){this.isPlaying=!1},playing:function(){},rate:function(){},setVolume:function(){}}},setAudioFactory:function(e){this.audioFactory=e},setVolume:function(e){this._volume=e,this._updateVolume()},mute:function(){this._isMuted=!0,this._updateVolume()},unmute:function(){this._isMuted=!1,this._updateVolume()},getVolume:function(){return this._volume},_updateVolume:function(){var e,t=this.audios.length;for(e=0;e<t;e+=1)this.audios[e].volume(this._volume*(this._isMuted?0:1))}},function(){return new e}}(),ImagePreloader=function(){var e=function(){var e=createTag("canvas");e.width=1,e.height=1;var t=e.getContext("2d");return t.fillStyle="rgba(0,0,0,0)",t.fillRect(0,0,1,1),e}();function t(){this.loadedAssets+=1,this.loadedAssets===this.totalImages&&this.loadedFootagesCount===this.totalFootages&&this.imagesLoadedCb&&this.imagesLoadedCb(null)}function a(){this.loadedFootagesCount+=1,this.loadedAssets===this.totalImages&&this.loadedFootagesCount===this.totalFootages&&this.imagesLoadedCb&&this.imagesLoadedCb(null)}function l(e,t,a){var l="";if(e.e)l=e.p;else if(t){var i=e.p;-1!==i.indexOf("images/")&&(i=i.split("/")[1]),l=t+i}else l=a,l+=e.u?e.u:"",l+=e.p;return l}function i(e){var t=0,a=setInterval(function(){(e.getBBox().width||t>500)&&(this._imageLoaded(),clearInterval(a)),t+=1}.bind(this),50)}function o(e){var t={assetData:e},a=l(e,this.assetsPath,this.path);return assetLoader.load(a,function(e){t.img=e,this._footageLoaded()}.bind(this),function(){t.img={},this._footageLoaded()}.bind(this)),t}function n(){this._imageLoaded=t.bind(this),this._footageLoaded=a.bind(this),this.testImageLoaded=i.bind(this),this.createFootageData=o.bind(this),this.assetsPath="",this.path="",this.totalImages=0,this.totalFootages=0,this.loadedAssets=0,this.loadedFootagesCount=0,this.imagesLoadedCb=null,this.images=[]}return n.prototype={loadAssets:function(e,t){var a;this.imagesLoadedCb=t;var l=e.length;for(a=0;a<l;a+=1)e[a].layers||(e[a].t?3===e[a].t&&(this.totalFootages+=1,this.images.push(this.createFootageData(e[a]))):(this.totalImages+=1,this.images.push(this._createImageData(e[a]))))},setAssetsPath:function(e){this.assetsPath=e||""},setPath:function(e){this.path=e||""},loadedImages:function(){return this.totalImages===this.loadedAssets},loadedFootages:function(){return this.totalFootages===this.loadedFootagesCount},destroy:function(){this.imagesLoadedCb=null,this.images.length=0},getAsset:function(e){for(var t=0,a=this.images.length;t<a;){if(this.images[t].assetData===e)return this.images[t].img;t+=1}return null},createImgData:function(t){var a=l(t,this.assetsPath,this.path),i=createTag("img");i.crossOrigin="anonymous",i.addEventListener("load",this._imageLoaded,!1),i.addEventListener("error",function(){o.img=e,this._imageLoaded()}.bind(this),!1),i.src=a;var o={img:i,assetData:t};return o},createImageData:function(t){var a=l(t,this.assetsPath,this.path),i=createNS("image");isSafari?this.testImageLoaded(i):i.addEventListener("load",this._imageLoaded,!1),i.addEventListener("error",function(){o.img=e,this._imageLoaded()}.bind(this),!1),i.setAttributeNS("http://www.w3.org/1999/xlink","href",a),this._elementHelper.append?this._elementHelper.append(i):this._elementHelper.appendChild(i);var o={img:i,assetData:t};return o},imageLoaded:t,footageLoaded:a,setCacheType:function(e,t){"svg"===e?(this._elementHelper=t,this._createImageData=this.createImageData.bind(this)):this._createImageData=this.createImgData.bind(this)}},n}(),featureSupport=(t={maskType:!0},(/MSIE 10/i.test(navigator.userAgent)||/MSIE 9/i.test(navigator.userAgent)||/rv:11.0/i.test(navigator.userAgent)||/Edge\/\d./i.test(navigator.userAgent))&&(t.maskType=!1),t),filtersFactory={createFilter:function(e,t){var a=createNS("filter");return a.setAttribute("id",e),!0!==t&&(a.setAttribute("filterUnits","objectBoundingBox"),a.setAttribute("x","0%"),a.setAttribute("y","0%"),a.setAttribute("width","100%"),a.setAttribute("height","100%")),a},createAlphaToLuminanceFilter:function(){var e=createNS("feColorMatrix");return e.setAttribute("type","matrix"),e.setAttribute("color-interpolation-filters","sRGB"),e.setAttribute("values","0 0 0 1 0  0 0 0 1 0  0 0 0 1 0  0 0 0 1 1"),e}},assetLoader=function(){function e(e){return e.response&&"object"==typeof e.response?e.response:e.response&&"string"==typeof e.response?JSON.parse(e.response):e.responseText?JSON.parse(e.responseText):null}return{load:function(t,a,l){var i,o=new XMLHttpRequest;try{o.responseType="json"}catch(e){}o.onreadystatechange=function(){if(4===o.readyState)if(200===o.status)i=e(o),a(i);else try{i=e(o),a(i)}catch(e){l&&l(e)}},o.open("GET",t,!0),o.send()}}}(),t;function TextAnimatorProperty(e,t,a){this._isFirstFrame=!0,this._hasMaskedPath=!1,this._frameId=-1,this._textData=e,this._renderType=t,this._elem=a,this._animatorsData=createSizedArray(this._textData.a.length),this._pathData={},this._moreOptions={alignment:{}},this.renderedLetters=[],this.lettersChangedFlag=!1,this.initDynamicPropertyContainer(a)}function TextAnimatorDataProperty(e,t,a){var l={propType:!1},i=PropertyFactory.getProp,o=t.a;this.a={r:o.r?i(e,o.r,0,degToRads,a):l,rx:o.rx?i(e,o.rx,0,degToRads,a):l,ry:o.ry?i(e,o.ry,0,degToRads,a):l,sk:o.sk?i(e,o.sk,0,degToRads,a):l,sa:o.sa?i(e,o.sa,0,degToRads,a):l,s:o.s?i(e,o.s,1,.01,a):l,a:o.a?i(e,o.a,1,0,a):l,o:o.o?i(e,o.o,0,.01,a):l,p:o.p?i(e,o.p,1,0,a):l,sw:o.sw?i(e,o.sw,0,0,a):l,sc:o.sc?i(e,o.sc,1,0,a):l,fc:o.fc?i(e,o.fc,1,0,a):l,fh:o.fh?i(e,o.fh,0,0,a):l,fs:o.fs?i(e,o.fs,0,.01,a):l,fb:o.fb?i(e,o.fb,0,.01,a):l,t:o.t?i(e,o.t,0,0,a):l},this.s=TextSelectorProp.getTextSelectorProp(e,t.s,a),this.s.t=t.s.t}function LetterProps(e,t,a,l,i,o){this.o=e,this.sw=t,this.sc=a,this.fc=l,this.m=i,this.p=o,this._mdf={o:!0,sw:!!t,sc:!!a,fc:!!l,m:!0,p:!0}}function TextProperty(e,t){this._frameId=initialDefaultFrame,this.pv="",this.v="",this.kf=!1,this._isFirstFrame=!0,this._mdf=!1,this.data=t,this.elem=e,this.comp=this.elem.comp,this.keysIndex=0,this.canResize=!1,this.minimumFontSize=1,this.effectsSequence=[],this.currentData={ascent:0,boxWidth:this.defaultBoxWidth,f:"",fStyle:"",fWeight:"",fc:"",j:"",justifyOffset:"",l:[],lh:0,lineWidths:[],ls:"",of:"",s:"",sc:"",sw:0,t:0,tr:0,sz:0,ps:null,fillColorAnim:!1,strokeColorAnim:!1,strokeWidthAnim:!1,yOffset:0,finalSize:0,finalText:[],finalLineHeight:0,__complete:!1},this.copyData(this.currentData,this.data.d.k[0].s),this.searchProperty()||this.completeTextData(this.currentData)}TextAnimatorProperty.prototype.searchProperties=function(){var e,t,a=this._textData.a.length,l=PropertyFactory.getProp;for(e=0;e<a;e+=1)t=this._textData.a[e],this._animatorsData[e]=new TextAnimatorDataProperty(this._elem,t,this);this._textData.p&&"m"in this._textData.p?(this._pathData={f:l(this._elem,this._textData.p.f,0,0,this),l:l(this._elem,this._textData.p.l,0,0,this),r:this._textData.p.r,m:this._elem.maskManager.getMaskProperty(this._textData.p.m)},this._hasMaskedPath=!0):this._hasMaskedPath=!1,this._moreOptions.alignment=l(this._elem,this._textData.m.a,1,0,this)},TextAnimatorProperty.prototype.getMeasures=function(e,t){if(this.lettersChangedFlag=t,this._mdf||this._isFirstFrame||t||this._hasMaskedPath&&this._pathData.m._mdf){this._isFirstFrame=!1;var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T=this._moreOptions.alignment.v,C=this._animatorsData,S=this._textData,w=this.mHelper,k=this._renderType,P=this.renderedLetters.length,x=e.l;if(this._hasMaskedPath){if(_=this._pathData.m,!this._pathData.n||this._pathData._mdf){var A,G=_.v;for(this._pathData.r&&(G=G.reverse()),n={tLength:0,segments:[]},o=G._length-1,f=0,i=0;i<o;i+=1)A=bez.buildBezierData(G.v[i],G.v[i+1],[G.o[i][0]-G.v[i][0],G.o[i][1]-G.v[i][1]],[G.i[i+1][0]-G.v[i+1][0],G.i[i+1][1]-G.v[i+1][1]]),n.tLength+=A.segmentLength,n.segments.push(A),f+=A.segmentLength;i=o,_.v.c&&(A=bez.buildBezierData(G.v[i],G.v[0],[G.o[i][0]-G.v[i][0],G.o[i][1]-G.v[i][1]],[G.i[0][0]-G.v[0][0],G.i[0][1]-G.v[0][1]]),n.tLength+=A.segmentLength,n.segments.push(A),f+=A.segmentLength),this._pathData.pi=n}if(n=this._pathData.pi,r=this._pathData.f.v,b=0,p=1,c=0,u=!0,m=n.segments,r<0&&_.v.c)for(n.tLength<Math.abs(r)&&(r=-Math.abs(r)%n.tLength),p=(g=m[b=m.length-1].points).length-1;r<0;)r+=g[p].partialLength,(p-=1)<0&&(p=(g=m[b-=1].points).length-1);d=(g=m[b].points)[p-1],y=(s=g[p]).partialLength}o=x.length,a=0,l=0;var M,R,B,U,E,O=1.2*e.finalSize*.714,L=!0;B=C.length;var H,j,F,z,D,N,I,V,W,q,Z,$,Y=-1,K=r,J=b,X=p,Q=-1,ee="",te=this.defaultPropsArray;if(2===e.j||1===e.j){var ae=0,le=0,ie=2===e.j?-.5:-1,oe=0,ne=!0;for(i=0;i<o;i+=1)if(x[i].n){for(ae&&(ae+=le);oe<i;)x[oe].animatorJustifyOffset=ae,oe+=1;ae=0,ne=!0}else{for(R=0;R<B;R+=1)(M=C[R].a).t.propType&&(ne&&2===e.j&&(le+=M.t.v*ie),(E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars)).length?ae+=M.t.v*E[0]*ie:ae+=M.t.v*E*ie);ne=!1}for(ae&&(ae+=le);oe<i;)x[oe].animatorJustifyOffset=ae,oe+=1}for(i=0;i<o;i+=1){if(w.reset(),z=1,x[i].n)a=0,l+=e.yOffset,l+=L?1:0,r=K,L=!1,this._hasMaskedPath&&(p=X,d=(g=m[b=J].points)[p-1],y=(s=g[p]).partialLength,c=0),ee="",Z="",W="",$="",te=this.defaultPropsArray;else{if(this._hasMaskedPath){if(Q!==x[i].line){switch(e.j){case 1:r+=f-e.lineWidths[x[i].line];break;case 2:r+=(f-e.lineWidths[x[i].line])/2}Q=x[i].line}Y!==x[i].ind&&(x[Y]&&(r+=x[Y].extra),r+=x[i].an/2,Y=x[i].ind),r+=T[0]*x[i].an*.005;var re=0;for(R=0;R<B;R+=1)(M=C[R].a).p.propType&&((E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars)).length?re+=M.p.v[0]*E[0]:re+=M.p.v[0]*E),M.a.propType&&((E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars)).length?re+=M.a.v[0]*E[0]:re+=M.a.v[0]*E);for(u=!0;u;)c+y>=r+re||!g?(h=(r+re-c)/s.partialLength,j=d.point[0]+(s.point[0]-d.point[0])*h,F=d.point[1]+(s.point[1]-d.point[1])*h,w.translate(-T[0]*x[i].an*.005,-T[1]*O*.01),u=!1):g&&(c+=s.partialLength,(p+=1)>=g.length&&(p=0,m[b+=1]?g=m[b].points:_.v.c?(p=0,g=m[b=0].points):(c-=s.partialLength,g=null)),g&&(d=s,y=(s=g[p]).partialLength));H=x[i].an/2-x[i].add,w.translate(-H,0,0)}else H=x[i].an/2-x[i].add,w.translate(-H,0,0),w.translate(-T[0]*x[i].an*.005,-T[1]*O*.01,0);for(R=0;R<B;R+=1)(M=C[R].a).t.propType&&(E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars),0===a&&0===e.j||(this._hasMaskedPath?E.length?r+=M.t.v*E[0]:r+=M.t.v*E:E.length?a+=M.t.v*E[0]:a+=M.t.v*E));for(e.strokeWidthAnim&&(N=e.sw||0),e.strokeColorAnim&&(D=e.sc?[e.sc[0],e.sc[1],e.sc[2]]:[0,0,0]),e.fillColorAnim&&e.fc&&(I=[e.fc[0],e.fc[1],e.fc[2]]),R=0;R<B;R+=1)(M=C[R].a).a.propType&&((E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars)).length?w.translate(-M.a.v[0]*E[0],-M.a.v[1]*E[1],M.a.v[2]*E[2]):w.translate(-M.a.v[0]*E,-M.a.v[1]*E,M.a.v[2]*E));for(R=0;R<B;R+=1)(M=C[R].a).s.propType&&((E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars)).length?w.scale(1+(M.s.v[0]-1)*E[0],1+(M.s.v[1]-1)*E[1],1):w.scale(1+(M.s.v[0]-1)*E,1+(M.s.v[1]-1)*E,1));for(R=0;R<B;R+=1){if(M=C[R].a,E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars),M.sk.propType&&(E.length?w.skewFromAxis(-M.sk.v*E[0],M.sa.v*E[1]):w.skewFromAxis(-M.sk.v*E,M.sa.v*E)),M.r.propType&&(E.length?w.rotateZ(-M.r.v*E[2]):w.rotateZ(-M.r.v*E)),M.ry.propType&&(E.length?w.rotateY(M.ry.v*E[1]):w.rotateY(M.ry.v*E)),M.rx.propType&&(E.length?w.rotateX(M.rx.v*E[0]):w.rotateX(M.rx.v*E)),M.o.propType&&(E.length?z+=(M.o.v*E[0]-z)*E[0]:z+=(M.o.v*E-z)*E),e.strokeWidthAnim&&M.sw.propType&&(E.length?N+=M.sw.v*E[0]:N+=M.sw.v*E),e.strokeColorAnim&&M.sc.propType)for(V=0;V<3;V+=1)E.length?D[V]+=(M.sc.v[V]-D[V])*E[0]:D[V]+=(M.sc.v[V]-D[V])*E;if(e.fillColorAnim&&e.fc){if(M.fc.propType)for(V=0;V<3;V+=1)E.length?I[V]+=(M.fc.v[V]-I[V])*E[0]:I[V]+=(M.fc.v[V]-I[V])*E;M.fh.propType&&(I=E.length?addHueToRGB(I,M.fh.v*E[0]):addHueToRGB(I,M.fh.v*E)),M.fs.propType&&(I=E.length?addSaturationToRGB(I,M.fs.v*E[0]):addSaturationToRGB(I,M.fs.v*E)),M.fb.propType&&(I=E.length?addBrightnessToRGB(I,M.fb.v*E[0]):addBrightnessToRGB(I,M.fb.v*E))}}for(R=0;R<B;R+=1)(M=C[R].a).p.propType&&(E=C[R].s.getMult(x[i].anIndexes[R],S.a[R].s.totalChars),this._hasMaskedPath?E.length?w.translate(0,M.p.v[1]*E[0],-M.p.v[2]*E[1]):w.translate(0,M.p.v[1]*E,-M.p.v[2]*E):E.length?w.translate(M.p.v[0]*E[0],M.p.v[1]*E[1],-M.p.v[2]*E[2]):w.translate(M.p.v[0]*E,M.p.v[1]*E,-M.p.v[2]*E));if(e.strokeWidthAnim&&(W=N<0?0:N),e.strokeColorAnim&&(q="rgb("+Math.round(255*D[0])+","+Math.round(255*D[1])+","+Math.round(255*D[2])+")"),e.fillColorAnim&&e.fc&&(Z="rgb("+Math.round(255*I[0])+","+Math.round(255*I[1])+","+Math.round(255*I[2])+")"),this._hasMaskedPath){if(w.translate(0,-e.ls),w.translate(0,T[1]*O*.01+l,0),S.p.p){v=(s.point[1]-d.point[1])/(s.point[0]-d.point[0]);var se=180*Math.atan(v)/Math.PI;s.point[0]<d.point[0]&&(se+=180),w.rotate(-se*Math.PI/180)}w.translate(j,F,0),r-=T[0]*x[i].an*.005,x[i+1]&&Y!==x[i+1].ind&&(r+=x[i].an/2,r+=.001*e.tr*e.finalSize)}else{switch(w.translate(a,l,0),e.ps&&w.translate(e.ps[0],e.ps[1]+e.ascent,0),e.j){case 1:w.translate(x[i].animatorJustifyOffset+e.justifyOffset+(e.boxWidth-e.lineWidths[x[i].line]),0,0);break;case 2:w.translate(x[i].animatorJustifyOffset+e.justifyOffset+(e.boxWidth-e.lineWidths[x[i].line])/2,0,0)}w.translate(0,-e.ls),w.translate(H,0,0),w.translate(T[0]*x[i].an*.005,T[1]*O*.01,0),a+=x[i].l+.001*e.tr*e.finalSize}"html"===k?ee=w.toCSS():"svg"===k?ee=w.to2dCSS():te=[w.props[0],w.props[1],w.props[2],w.props[3],w.props[4],w.props[5],w.props[6],w.props[7],w.props[8],w.props[9],w.props[10],w.props[11],w.props[12],w.props[13],w.props[14],w.props[15]],$=z}P<=i?(U=new LetterProps($,W,q,Z,ee,te),this.renderedLetters.push(U),P+=1,this.lettersChangedFlag=!0):(U=this.renderedLetters[i],this.lettersChangedFlag=U.update($,W,q,Z,ee,te)||this.lettersChangedFlag)}}},TextAnimatorProperty.prototype.getValue=function(){this._elem.globalData.frameId!==this._frameId&&(this._frameId=this._elem.globalData.frameId,this.iterateDynamicProperties())},TextAnimatorProperty.prototype.mHelper=new Matrix,TextAnimatorProperty.prototype.defaultPropsArray=[],extendPrototype([DynamicPropertyContainer],TextAnimatorProperty),LetterProps.prototype.update=function(e,t,a,l,i,o){this._mdf.o=!1,this._mdf.sw=!1,this._mdf.sc=!1,this._mdf.fc=!1,this._mdf.m=!1,this._mdf.p=!1;var n=!1;return this.o!==e&&(this.o=e,this._mdf.o=!0,n=!0),this.sw!==t&&(this.sw=t,this._mdf.sw=!0,n=!0),this.sc!==a&&(this.sc=a,this._mdf.sc=!0,n=!0),this.fc!==l&&(this.fc=l,this._mdf.fc=!0,n=!0),this.m!==i&&(this.m=i,this._mdf.m=!0,n=!0),!o.length||this.p[0]===o[0]&&this.p[1]===o[1]&&this.p[4]===o[4]&&this.p[5]===o[5]&&this.p[12]===o[12]&&this.p[13]===o[13]||(this.p=o,this._mdf.p=!0,n=!0),n},TextProperty.prototype.defaultBoxWidth=[0,0],TextProperty.prototype.copyData=function(e,t){for(var a in t)Object.prototype.hasOwnProperty.call(t,a)&&(e[a]=t[a]);return e},TextProperty.prototype.setCurrentData=function(e){e.__complete||this.completeTextData(e),this.currentData=e,this.currentData.boxWidth=this.currentData.boxWidth||this.defaultBoxWidth,this._mdf=!0},TextProperty.prototype.searchProperty=function(){return this.searchKeyframes()},TextProperty.prototype.searchKeyframes=function(){return this.kf=this.data.d.k.length>1,this.kf&&this.addEffect(this.getKeyframeValue.bind(this)),this.kf},TextProperty.prototype.addEffect=function(e){this.effectsSequence.push(e),this.elem.addDynamicProperty(this)},TextProperty.prototype.getValue=function(e){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length||e){this.currentData.t=this.data.d.k[this.keysIndex].s.t;var t=this.currentData,a=this.keysIndex;if(this.lock)this.setCurrentData(this.currentData);else{var l;this.lock=!0,this._mdf=!1;var i=this.effectsSequence.length,o=e||this.data.d.k[this.keysIndex].s;for(l=0;l<i;l+=1)o=a!==this.keysIndex?this.effectsSequence[l](o,o.t):this.effectsSequence[l](this.currentData,o.t);t!==o&&this.setCurrentData(o),this.v=this.currentData,this.pv=this.v,this.lock=!1,this.frameId=this.elem.globalData.frameId}}},TextProperty.prototype.getKeyframeValue=function(){for(var e=this.data.d.k,t=this.elem.comp.renderedFrame,a=0,l=e.length;a<=l-1&&!(a===l-1||e[a+1].t>t);)a+=1;return this.keysIndex!==a&&(this.keysIndex=a),this.data.d.k[this.keysIndex].s},TextProperty.prototype.buildFinalText=function(e){for(var t,a=FontManager.getCombinedCharacterCodes(),l=[],i=0,o=e.length;i<o;)t=e.charCodeAt(i),-1!==a.indexOf(t)?l[l.length-1]+=e.charAt(i):t>=55296&&t<=56319&&(t=e.charCodeAt(i+1))>=56320&&t<=57343?(l.push(e.substr(i,2)),i+=1):l.push(e.charAt(i)),i+=1;return l},TextProperty.prototype.completeTextData=function(e){e.__complete=!0;var t,a,l,i,o,n,r,s=this.elem.globalData.fontManager,c=this.data,u=[],p=0,b=c.m.g,d=0,g=0,m=0,y=[],f=0,h=0,v=s.getFontByName(e.f),_=0,T=getFontProperties(v);e.fWeight=T.weight,e.fStyle=T.style,e.finalSize=e.s,e.finalText=this.buildFinalText(e.t),a=e.finalText.length,e.finalLineHeight=e.lh;var C,S=e.tr/1e3*e.finalSize;if(e.sz)for(var w,k,P=!0,x=e.sz[0],A=e.sz[1];P;){w=0,f=0,a=(k=this.buildFinalText(e.t)).length,S=e.tr/1e3*e.finalSize;var G=-1;for(t=0;t<a;t+=1)C=k[t].charCodeAt(0),l=!1," "===k[t]?G=t:13!==C&&3!==C||(f=0,l=!0,w+=e.finalLineHeight||1.2*e.finalSize),s.chars?(r=s.getCharData(k[t],v.fStyle,v.fFamily),_=l?0:r.w*e.finalSize/100):_=s.measureText(k[t],e.f,e.finalSize),f+_>x&&" "!==k[t]?(-1===G?a+=1:t=G,w+=e.finalLineHeight||1.2*e.finalSize,k.splice(t,G===t?1:0,"\r"),G=-1,f=0):(f+=_,f+=S);w+=v.ascent*e.finalSize/100,this.canResize&&e.finalSize>this.minimumFontSize&&A<w?(e.finalSize-=1,e.finalLineHeight=e.finalSize*e.lh/e.s):(e.finalText=k,a=e.finalText.length,P=!1)}f=-S,_=0;var M,R=0;for(t=0;t<a;t+=1)if(l=!1,13===(C=(M=e.finalText[t]).charCodeAt(0))||3===C?(R=0,y.push(f),h=f>h?f:h,f=-2*S,i="",l=!0,m+=1):i=M,s.chars?(r=s.getCharData(M,v.fStyle,s.getFontByName(e.f).fFamily),_=l?0:r.w*e.finalSize/100):_=s.measureText(i,e.f,e.finalSize)," "===M?R+=_+S:(f+=_+S+R,R=0),u.push({l:_,an:_,add:d,n:l,anIndexes:[],val:i,line:m,animatorJustifyOffset:0}),2==b){if(d+=_,""===i||" "===i||t===a-1){for(""!==i&&" "!==i||(d-=_);g<=t;)u[g].an=d,u[g].ind=p,u[g].extra=_,g+=1;p+=1,d=0}}else if(3==b){if(d+=_,""===i||t===a-1){for(""===i&&(d-=_);g<=t;)u[g].an=d,u[g].ind=p,u[g].extra=_,g+=1;d=0,p+=1}}else u[p].ind=p,u[p].extra=0,p+=1;if(e.l=u,h=f>h?f:h,y.push(f),e.sz)e.boxWidth=e.sz[0],e.justifyOffset=0;else switch(e.boxWidth=h,e.j){case 1:e.justifyOffset=-e.boxWidth;break;case 2:e.justifyOffset=-e.boxWidth/2;break;default:e.justifyOffset=0}e.lineWidths=y;var B,U,E,O,L=c.a;n=L.length;var H=[];for(o=0;o<n;o+=1){for((B=L[o]).a.sc&&(e.strokeColorAnim=!0),B.a.sw&&(e.strokeWidthAnim=!0),(B.a.fc||B.a.fh||B.a.fs||B.a.fb)&&(e.fillColorAnim=!0),O=0,E=B.s.b,t=0;t<a;t+=1)(U=u[t]).anIndexes[o]=O,(1==E&&""!==U.val||2==E&&""!==U.val&&" "!==U.val||3==E&&(U.n||" "==U.val||t==a-1)||4==E&&(U.n||t==a-1))&&(1===B.s.rn&&H.push(O),O+=1);c.a[o].s.totalChars=O;var j,F=-1;if(1===B.s.rn)for(t=0;t<a;t+=1)F!=(U=u[t]).anIndexes[o]&&(F=U.anIndexes[o],j=H.splice(Math.floor(Math.random()*H.length),1)[0]),U.anIndexes[o]=j}e.yOffset=e.finalLineHeight||1.2*e.finalSize,e.ls=e.ls||0,e.ascent=v.ascent*e.finalSize/100},TextProperty.prototype.updateDocumentData=function(e,t){t=void 0===t?this.keysIndex:t;var a=this.copyData({},this.data.d.k[t].s);a=this.copyData(a,e),this.data.d.k[t].s=a,this.recalculate(t),this.elem.addDynamicProperty(this)},TextProperty.prototype.recalculate=function(e){var t=this.data.d.k[e].s;t.__complete=!1,this.keysIndex=0,this._isFirstFrame=!0,this.getValue(t)},TextProperty.prototype.canResizeFont=function(e){this.canResize=e,this.recalculate(this.keysIndex),this.elem.addDynamicProperty(this)},TextProperty.prototype.setMinimumFontSize=function(e){this.minimumFontSize=Math.floor(e)||1,this.recalculate(this.keysIndex),this.elem.addDynamicProperty(this)};var TextSelectorProp=function(){var e=Math.max,t=Math.min,a=Math.floor;function l(e,t){this._currentTextLength=-1,this.k=!1,this.data=t,this.elem=e,this.comp=e.comp,this.finalS=0,this.finalE=0,this.initDynamicPropertyContainer(e),this.s=PropertyFactory.getProp(e,t.s||{k:0},0,0,this),this.e="e"in t?PropertyFactory.getProp(e,t.e,0,0,this):{v:100},this.o=PropertyFactory.getProp(e,t.o||{k:0},0,0,this),this.xe=PropertyFactory.getProp(e,t.xe||{k:0},0,0,this),this.ne=PropertyFactory.getProp(e,t.ne||{k:0},0,0,this),this.a=PropertyFactory.getProp(e,t.a,0,.01,this),this.dynamicProperties.length||this.getValue()}return l.prototype={getMult:function(l){this._currentTextLength!==this.elem.textProperty.currentData.l.length&&this.getValue();var i=0,o=0,n=1,r=1;this.ne.v>0?i=this.ne.v/100:o=-this.ne.v/100,this.xe.v>0?n=1-this.xe.v/100:r=1+this.xe.v/100;var s=BezierFactory.getBezierEasing(i,o,n,r).get,c=0,u=this.finalS,p=this.finalE,b=this.data.sh;if(2===b)c=s(c=p===u?l>=p?1:0:e(0,t(.5/(p-u)+(l-u)/(p-u),1)));else if(3===b)c=s(c=p===u?l>=p?0:1:1-e(0,t(.5/(p-u)+(l-u)/(p-u),1)));else if(4===b)p===u?c=0:(c=e(0,t(.5/(p-u)+(l-u)/(p-u),1)))<.5?c*=2:c=1-2*(c-.5),c=s(c);else if(5===b){if(p===u)c=0;else{var d=p-u,g=-d/2+(l=t(e(0,l+.5-u),p-u)),m=d/2;c=Math.sqrt(1-g*g/(m*m))}c=s(c)}else 6===b?(p===u?c=0:(l=t(e(0,l+.5-u),p-u),c=(1+Math.cos(Math.PI+2*Math.PI*l/(p-u)))/2),c=s(c)):(l>=a(u)&&(c=e(0,t(l-u<0?t(p,1)-(u-l):p-l,1))),c=s(c));return c*this.a.v},getValue:function(e){this.iterateDynamicProperties(),this._mdf=e||this._mdf,this._currentTextLength=this.elem.textProperty.currentData.l.length||0,e&&2===this.data.r&&(this.e.v=this._currentTextLength);var t=2===this.data.r?1:100/this.data.totalChars,a=this.o.v/t,l=this.s.v/t+a,i=this.e.v/t+a;if(l>i){var o=l;l=i,i=o}this.finalS=l,this.finalE=i}},extendPrototype([DynamicPropertyContainer],l),{getTextSelectorProp:function(e,t,a){return new l(e,t,a)}}}(),poolFactory=function(e,t,a){var l=0,i=e,o=createSizedArray(i);return{newElement:function(){return l?o[l-=1]:t()},release:function(e){l===i&&(o=pooling.double(o),i*=2),a&&a(e),o[l]=e,l+=1}}},pooling={double:function(e){return e.concat(createSizedArray(e.length))}},pointPool=poolFactory(8,(function(){return createTypedArray("float32",2)})),shapePool=(factory=poolFactory(4,(function(){return new ShapePath}),(function(e){var t,a=e._length;for(t=0;t<a;t+=1)pointPool.release(e.v[t]),pointPool.release(e.i[t]),pointPool.release(e.o[t]),e.v[t]=null,e.i[t]=null,e.o[t]=null;e._length=0,e.c=!1})),factory.clone=function(e){var t,a=factory.newElement(),l=void 0===e._length?e.v.length:e._length;for(a.setLength(l),a.c=e.c,t=0;t<l;t+=1)a.setTripleAt(e.v[t][0],e.v[t][1],e.o[t][0],e.o[t][1],e.i[t][0],e.i[t][1],t);return a},factory),factory,shapeCollectionPool=function(){var e={newShapeCollection:function(){return t?l[t-=1]:new ShapeCollection},release:function(e){var i,o=e._length;for(i=0;i<o;i+=1)shapePool.release(e.shapes[i]);e._length=0,t===a&&(l=pooling.double(l),a*=2),l[t]=e,t+=1}},t=0,a=4,l=createSizedArray(a);return e}(),segmentsLengthPool=poolFactory(8,(function(){return{lengths:[],totalLength:0}}),(function(e){var t,a=e.lengths.length;for(t=0;t<a;t+=1)bezierLengthPool.release(e.lengths[t]);e.lengths.length=0})),bezierLengthPool=poolFactory(8,(function(){return{addedLength:0,percents:createTypedArray("float32",defaultCurveSegments),lengths:createTypedArray("float32",defaultCurveSegments)}})),markerParser=function(){function e(e){for(var t,a=e.split("\r\n"),l={},i=0,o=0;o<a.length;o+=1)2===(t=a[o].split(":")).length&&(l[t[0]]=t[1].trim(),i+=1);if(0===i)throw new Error;return l}return function(t){for(var a=[],l=0;l<t.length;l+=1){var i=t[l],o={time:i.tm,duration:i.dr};try{o.payload=JSON.parse(t[l].cm)}catch(a){try{o.payload=e(t[l].cm)}catch(e){o.payload={name:t[l]}}}a.push(o)}return a}}();function BaseRenderer(){}function SVGRenderer(e,t){this.animationItem=e,this.layers=null,this.renderedFrame=-1,this.svgElement=createNS("svg");var a="";if(t&&t.title){var l=createNS("title"),i=createElementID();l.setAttribute("id",i),l.textContent=t.title,this.svgElement.appendChild(l),a+=i}if(t&&t.description){var o=createNS("desc"),n=createElementID();o.setAttribute("id",n),o.textContent=t.description,this.svgElement.appendChild(o),a+=" "+n}a&&this.svgElement.setAttribute("aria-labelledby",a);var r=createNS("defs");this.svgElement.appendChild(r);var s=createNS("g");this.svgElement.appendChild(s),this.layerElement=s,this.renderConfig={preserveAspectRatio:t&&t.preserveAspectRatio||"xMidYMid meet",imagePreserveAspectRatio:t&&t.imagePreserveAspectRatio||"xMidYMid slice",progressiveLoad:t&&t.progressiveLoad||!1,hideOnTransparent:!(t&&!1===t.hideOnTransparent),viewBoxOnly:t&&t.viewBoxOnly||!1,viewBoxSize:t&&t.viewBoxSize||!1,className:t&&t.className||"",id:t&&t.id||"",focusable:t&&t.focusable,filterSize:{width:t&&t.filterSize&&t.filterSize.width||"100%",height:t&&t.filterSize&&t.filterSize.height||"100%",x:t&&t.filterSize&&t.filterSize.x||"0%",y:t&&t.filterSize&&t.filterSize.y||"0%"}},this.globalData={_mdf:!1,frameNum:-1,defs:r,renderConfig:this.renderConfig},this.elements=[],this.pendingElements=[],this.destroyed=!1,this.rendererType="svg"}function CanvasRenderer(e,t){this.animationItem=e,this.renderConfig={clearCanvas:!t||void 0===t.clearCanvas||t.clearCanvas,context:t&&t.context||null,progressiveLoad:t&&t.progressiveLoad||!1,preserveAspectRatio:t&&t.preserveAspectRatio||"xMidYMid meet",imagePreserveAspectRatio:t&&t.imagePreserveAspectRatio||"xMidYMid slice",className:t&&t.className||"",id:t&&t.id||""},this.renderConfig.dpr=t&&t.dpr||1,this.animationItem.wrapper&&(this.renderConfig.dpr=t&&t.dpr||window.devicePixelRatio||1),this.renderedFrame=-1,this.globalData={frameNum:-1,_mdf:!1,renderConfig:this.renderConfig,currentGlobalAlpha:-1},this.contextData=new CVContextData,this.elements=[],this.pendingElements=[],this.transformMat=new Matrix,this.completeLayers=!1,this.rendererType="canvas"}function HybridRenderer(e,t){this.animationItem=e,this.layers=null,this.renderedFrame=-1,this.renderConfig={className:t&&t.className||"",imagePreserveAspectRatio:t&&t.imagePreserveAspectRatio||"xMidYMid slice",hideOnTransparent:!(t&&!1===t.hideOnTransparent),filterSize:{width:t&&t.filterSize&&t.filterSize.width||"400%",height:t&&t.filterSize&&t.filterSize.height||"400%",x:t&&t.filterSize&&t.filterSize.x||"-100%",y:t&&t.filterSize&&t.filterSize.y||"-100%"}},this.globalData={_mdf:!1,frameNum:-1,renderConfig:this.renderConfig},this.pendingElements=[],this.elements=[],this.threeDElements=[],this.destroyed=!1,this.camera=null,this.supports3d=!0,this.rendererType="html"}function MaskElement(e,t,a){this.data=e,this.element=t,this.globalData=a,this.storedData=[],this.masksProperties=this.data.masksProperties||[],this.maskElement=null;var l,i,o=this.globalData.defs,n=this.masksProperties?this.masksProperties.length:0;this.viewData=createSizedArray(n),this.solidPath="";var r,s,c,u,p,b,d=this.masksProperties,g=0,m=[],y=createElementID(),f="clipPath",h="clip-path";for(l=0;l<n;l+=1)if(("a"!==d[l].mode&&"n"!==d[l].mode||d[l].inv||100!==d[l].o.k||d[l].o.x)&&(f="mask",h="mask"),"s"!==d[l].mode&&"i"!==d[l].mode||0!==g?c=null:((c=createNS("rect")).setAttribute("fill","#ffffff"),c.setAttribute("width",this.element.comp.data.w||0),c.setAttribute("height",this.element.comp.data.h||0),m.push(c)),i=createNS("path"),"n"===d[l].mode)this.viewData[l]={op:PropertyFactory.getProp(this.element,d[l].o,0,.01,this.element),prop:ShapePropertyFactory.getShapeProp(this.element,d[l],3),elem:i,lastPath:""},o.appendChild(i);else{var v;if(g+=1,i.setAttribute("fill","s"===d[l].mode?"#000000":"#ffffff"),i.setAttribute("clip-rule","nonzero"),0!==d[l].x.k?(f="mask",h="mask",b=PropertyFactory.getProp(this.element,d[l].x,0,null,this.element),v=createElementID(),(u=createNS("filter")).setAttribute("id",v),(p=createNS("feMorphology")).setAttribute("operator","erode"),p.setAttribute("in","SourceGraphic"),p.setAttribute("radius","0"),u.appendChild(p),o.appendChild(u),i.setAttribute("stroke","s"===d[l].mode?"#000000":"#ffffff")):(p=null,b=null),this.storedData[l]={elem:i,x:b,expan:p,lastPath:"",lastOperator:"",filterId:v,lastRadius:0},"i"===d[l].mode){s=m.length;var _=createNS("g");for(r=0;r<s;r+=1)_.appendChild(m[r]);var T=createNS("mask");T.setAttribute("mask-type","alpha"),T.setAttribute("id",y+"_"+g),T.appendChild(i),o.appendChild(T),_.setAttribute("mask","url("+locationHref+"#"+y+"_"+g+")"),m.length=0,m.push(_)}else m.push(i);d[l].inv&&!this.solidPath&&(this.solidPath=this.createLayerSolidPath()),this.viewData[l]={elem:i,lastPath:"",op:PropertyFactory.getProp(this.element,d[l].o,0,.01,this.element),prop:ShapePropertyFactory.getShapeProp(this.element,d[l],3),invRect:c},this.viewData[l].prop.k||this.drawPath(d[l],this.viewData[l].prop.v,this.viewData[l])}for(this.maskElement=createNS(f),n=m.length,l=0;l<n;l+=1)this.maskElement.appendChild(m[l]);g>0&&(this.maskElement.setAttribute("id",y),this.element.maskedElement.setAttribute(h,"url("+locationHref+"#"+y+")"),o.appendChild(this.maskElement)),this.viewData.length&&this.element.addRenderableComponent(this)}function HierarchyElement(){}function FrameElement(){}function TransformElement(){}function RenderableElement(){}function RenderableDOMElement(){}function ProcessedElement(e,t){this.elem=e,this.pos=t}function SVGStyleData(e,t){this.data=e,this.type=e.ty,this.d="",this.lvl=t,this._mdf=!1,this.closed=!0===e.hd,this.pElem=createNS("path"),this.msElem=null}function SVGShapeData(e,t,a){this.caches=[],this.styles=[],this.transformers=e,this.lStr="",this.sh=a,this.lvl=t,this._isAnimated=!!a.k;for(var l=0,i=e.length;l<i;){if(e[l].mProps.dynamicProperties.length){this._isAnimated=!0;break}l+=1}}function SVGTransformData(e,t,a){this.transform={mProps:e,op:t,container:a},this.elements=[],this._isAnimated=this.transform.mProps.dynamicProperties.length||this.transform.op.effectsSequence.length}function SVGStrokeStyleData(e,t,a){this.initDynamicPropertyContainer(e),this.getValue=this.iterateDynamicProperties,this.o=PropertyFactory.getProp(e,t.o,0,.01,this),this.w=PropertyFactory.getProp(e,t.w,0,null,this),this.d=new DashProperty(e,t.d||{},"svg",this),this.c=PropertyFactory.getProp(e,t.c,1,255,this),this.style=a,this._isAnimated=!!this._isAnimated}function SVGFillStyleData(e,t,a){this.initDynamicPropertyContainer(e),this.getValue=this.iterateDynamicProperties,this.o=PropertyFactory.getProp(e,t.o,0,.01,this),this.c=PropertyFactory.getProp(e,t.c,1,255,this),this.style=a}function SVGGradientFillStyleData(e,t,a){this.initDynamicPropertyContainer(e),this.getValue=this.iterateDynamicProperties,this.initGradientData(e,t,a)}function SVGGradientStrokeStyleData(e,t,a){this.initDynamicPropertyContainer(e),this.getValue=this.iterateDynamicProperties,this.w=PropertyFactory.getProp(e,t.w,0,null,this),this.d=new DashProperty(e,t.d||{},"svg",this),this.initGradientData(e,t,a),this._isAnimated=!!this._isAnimated}function ShapeGroupData(){this.it=[],this.prevViewData=[],this.gr=createNS("g")}BaseRenderer.prototype.checkLayers=function(e){var t,a,l=this.layers.length;for(this.completeLayers=!0,t=l-1;t>=0;t-=1)this.elements[t]||(a=this.layers[t]).ip-a.st<=e-this.layers[t].st&&a.op-a.st>e-this.layers[t].st&&this.buildItem(t),this.completeLayers=!!this.elements[t]&&this.completeLayers;this.checkPendingElements()},BaseRenderer.prototype.createItem=function(e){switch(e.ty){case 2:return this.createImage(e);case 0:return this.createComp(e);case 1:return this.createSolid(e);case 3:return this.createNull(e);case 4:return this.createShape(e);case 5:return this.createText(e);case 6:return this.createAudio(e);case 13:return this.createCamera(e);case 15:return this.createFootage(e);default:return this.createNull(e)}},BaseRenderer.prototype.createCamera=function(){throw new Error("You're using a 3d camera. Try the html renderer.")},BaseRenderer.prototype.createAudio=function(e){return new AudioElement(e,this.globalData,this)},BaseRenderer.prototype.createFootage=function(e){return new FootageElement(e,this.globalData,this)},BaseRenderer.prototype.buildAllItems=function(){var e,t=this.layers.length;for(e=0;e<t;e+=1)this.buildItem(e);this.checkPendingElements()},BaseRenderer.prototype.includeLayers=function(e){var t;this.completeLayers=!1;var a,l=e.length,i=this.layers.length;for(t=0;t<l;t+=1)for(a=0;a<i;){if(this.layers[a].id===e[t].id){this.layers[a]=e[t];break}a+=1}},BaseRenderer.prototype.setProjectInterface=function(e){this.globalData.projectInterface=e},BaseRenderer.prototype.initItems=function(){this.globalData.progressiveLoad||this.buildAllItems()},BaseRenderer.prototype.buildElementParenting=function(e,t,a){for(var l=this.elements,i=this.layers,o=0,n=i.length;o<n;)i[o].ind==t&&(l[o]&&!0!==l[o]?(a.push(l[o]),l[o].setAsParent(),void 0!==i[o].parent?this.buildElementParenting(e,i[o].parent,a):e.setHierarchy(a)):(this.buildItem(o),this.addPendingElement(e))),o+=1},BaseRenderer.prototype.addPendingElement=function(e){this.pendingElements.push(e)},BaseRenderer.prototype.searchExtraCompositions=function(e){var t,a=e.length;for(t=0;t<a;t+=1)if(e[t].xt){var l=this.createComp(e[t]);l.initExpressions(),this.globalData.projectInterface.registerComposition(l)}},BaseRenderer.prototype.setupGlobalData=function(e,t){this.globalData.fontManager=new FontManager,this.globalData.fontManager.addChars(e.chars),this.globalData.fontManager.addFonts(e.fonts,t),this.globalData.getAssetData=this.animationItem.getAssetData.bind(this.animationItem),this.globalData.getAssetsPath=this.animationItem.getAssetsPath.bind(this.animationItem),this.globalData.imageLoader=this.animationItem.imagePreloader,this.globalData.audioController=this.animationItem.audioController,this.globalData.frameId=0,this.globalData.frameRate=e.fr,this.globalData.nm=e.nm,this.globalData.compSize={w:e.w,h:e.h}},extendPrototype([BaseRenderer],SVGRenderer),SVGRenderer.prototype.createNull=function(e){return new NullElement(e,this.globalData,this)},SVGRenderer.prototype.createShape=function(e){return new SVGShapeElement(e,this.globalData,this)},SVGRenderer.prototype.createText=function(e){return new SVGTextLottieElement(e,this.globalData,this)},SVGRenderer.prototype.createImage=function(e){return new IImageElement(e,this.globalData,this)},SVGRenderer.prototype.createComp=function(e){return new SVGCompElement(e,this.globalData,this)},SVGRenderer.prototype.createSolid=function(e){return new ISolidElement(e,this.globalData,this)},SVGRenderer.prototype.configAnimation=function(e){this.svgElement.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.renderConfig.viewBoxSize?this.svgElement.setAttribute("viewBox",this.renderConfig.viewBoxSize):this.svgElement.setAttribute("viewBox","0 0 "+e.w+" "+e.h),this.renderConfig.viewBoxOnly||(this.svgElement.setAttribute("width",e.w),this.svgElement.setAttribute("height",e.h),this.svgElement.style.width="100%",this.svgElement.style.height="100%",this.svgElement.style.transform="translate3d(0,0,0)"),this.renderConfig.className&&this.svgElement.setAttribute("class",this.renderConfig.className),this.renderConfig.id&&this.svgElement.setAttribute("id",this.renderConfig.id),void 0!==this.renderConfig.focusable&&this.svgElement.setAttribute("focusable",this.renderConfig.focusable),this.svgElement.setAttribute("preserveAspectRatio",this.renderConfig.preserveAspectRatio),this.animationItem.wrapper.appendChild(this.svgElement);var t=this.globalData.defs;this.setupGlobalData(e,t),this.globalData.progressiveLoad=this.renderConfig.progressiveLoad,this.data=e;var a=createNS("clipPath"),l=createNS("rect");l.setAttribute("width",e.w),l.setAttribute("height",e.h),l.setAttribute("x",0),l.setAttribute("y",0);var i=createElementID();a.setAttribute("id",i),a.appendChild(l),this.layerElement.setAttribute("clip-path","url("+locationHref+"#"+i+")"),t.appendChild(a),this.layers=e.layers,this.elements=createSizedArray(e.layers.length)},SVGRenderer.prototype.destroy=function(){var e;this.animationItem.wrapper&&(this.animationItem.wrapper.innerText=""),this.layerElement=null,this.globalData.defs=null;var t=this.layers?this.layers.length:0;for(e=0;e<t;e+=1)this.elements[e]&&this.elements[e].destroy();this.elements.length=0,this.destroyed=!0,this.animationItem=null},SVGRenderer.prototype.updateContainerSize=function(){},SVGRenderer.prototype.buildItem=function(e){var t=this.elements;if(!t[e]&&99!==this.layers[e].ty){t[e]=!0;var a=this.createItem(this.layers[e]);t[e]=a,expressionsPlugin&&(0===this.layers[e].ty&&this.globalData.projectInterface.registerComposition(a),a.initExpressions()),this.appendElementInPos(a,e),this.layers[e].tt&&(this.elements[e-1]&&!0!==this.elements[e-1]?a.setMatte(t[e-1].layerId):(this.buildItem(e-1),this.addPendingElement(a)))}},SVGRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;){var e=this.pendingElements.pop();if(e.checkParenting(),e.data.tt)for(var t=0,a=this.elements.length;t<a;){if(this.elements[t]===e){e.setMatte(this.elements[t-1].layerId);break}t+=1}}},SVGRenderer.prototype.renderFrame=function(e){if(this.renderedFrame!==e&&!this.destroyed){var t;null===e?e=this.renderedFrame:this.renderedFrame=e,this.globalData.frameNum=e,this.globalData.frameId+=1,this.globalData.projectInterface.currentFrame=e,this.globalData._mdf=!1;var a=this.layers.length;for(this.completeLayers||this.checkLayers(e),t=a-1;t>=0;t-=1)(this.completeLayers||this.elements[t])&&this.elements[t].prepareFrame(e-this.layers[t].st);if(this.globalData._mdf)for(t=0;t<a;t+=1)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()}},SVGRenderer.prototype.appendElementInPos=function(e,t){var a=e.getBaseElement();if(a){for(var l,i=0;i<t;)this.elements[i]&&!0!==this.elements[i]&&this.elements[i].getBaseElement()&&(l=this.elements[i].getBaseElement()),i+=1;l?this.layerElement.insertBefore(a,l):this.layerElement.appendChild(a)}},SVGRenderer.prototype.hide=function(){this.layerElement.style.display="none"},SVGRenderer.prototype.show=function(){this.layerElement.style.display="block"},extendPrototype([BaseRenderer],CanvasRenderer),CanvasRenderer.prototype.createShape=function(e){return new CVShapeElement(e,this.globalData,this)},CanvasRenderer.prototype.createText=function(e){return new CVTextElement(e,this.globalData,this)},CanvasRenderer.prototype.createImage=function(e){return new CVImageElement(e,this.globalData,this)},CanvasRenderer.prototype.createComp=function(e){return new CVCompElement(e,this.globalData,this)},CanvasRenderer.prototype.createSolid=function(e){return new CVSolidElement(e,this.globalData,this)},CanvasRenderer.prototype.createNull=SVGRenderer.prototype.createNull,CanvasRenderer.prototype.ctxTransform=function(e){if(1!==e[0]||0!==e[1]||0!==e[4]||1!==e[5]||0!==e[12]||0!==e[13])if(this.renderConfig.clearCanvas){this.transformMat.cloneFromProps(e);var t=this.contextData.cTr.props;this.transformMat.transform(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15]),this.contextData.cTr.cloneFromProps(this.transformMat.props);var a=this.contextData.cTr.props;this.canvasContext.setTransform(a[0],a[1],a[4],a[5],a[12],a[13])}else this.canvasContext.transform(e[0],e[1],e[4],e[5],e[12],e[13])},CanvasRenderer.prototype.ctxOpacity=function(e){if(!this.renderConfig.clearCanvas)return this.canvasContext.globalAlpha*=e<0?0:e,void(this.globalData.currentGlobalAlpha=this.contextData.cO);this.contextData.cO*=e<0?0:e,this.globalData.currentGlobalAlpha!==this.contextData.cO&&(this.canvasContext.globalAlpha=this.contextData.cO,this.globalData.currentGlobalAlpha=this.contextData.cO)},CanvasRenderer.prototype.reset=function(){this.renderConfig.clearCanvas?this.contextData.reset():this.canvasContext.restore()},CanvasRenderer.prototype.save=function(e){if(this.renderConfig.clearCanvas){e&&this.canvasContext.save();var t,a=this.contextData.cTr.props;this.contextData._length<=this.contextData.cArrPos&&this.contextData.duplicate();var l=this.contextData.saved[this.contextData.cArrPos];for(t=0;t<16;t+=1)l[t]=a[t];this.contextData.savedOp[this.contextData.cArrPos]=this.contextData.cO,this.contextData.cArrPos+=1}else this.canvasContext.save()},CanvasRenderer.prototype.restore=function(e){if(this.renderConfig.clearCanvas){e&&(this.canvasContext.restore(),this.globalData.blendMode="source-over"),this.contextData.cArrPos-=1;var t,a=this.contextData.saved[this.contextData.cArrPos],l=this.contextData.cTr.props;for(t=0;t<16;t+=1)l[t]=a[t];this.canvasContext.setTransform(a[0],a[1],a[4],a[5],a[12],a[13]),a=this.contextData.savedOp[this.contextData.cArrPos],this.contextData.cO=a,this.globalData.currentGlobalAlpha!==a&&(this.canvasContext.globalAlpha=a,this.globalData.currentGlobalAlpha=a)}else this.canvasContext.restore()},CanvasRenderer.prototype.configAnimation=function(e){if(this.animationItem.wrapper){this.animationItem.container=createTag("canvas");var t=this.animationItem.container.style;t.width="100%",t.height="100%";var a="0px 0px 0px";t.transformOrigin=a,t.mozTransformOrigin=a,t.webkitTransformOrigin=a,t["-webkit-transform"]=a,this.animationItem.wrapper.appendChild(this.animationItem.container),this.canvasContext=this.animationItem.container.getContext("2d"),this.renderConfig.className&&this.animationItem.container.setAttribute("class",this.renderConfig.className),this.renderConfig.id&&this.animationItem.container.setAttribute("id",this.renderConfig.id)}else this.canvasContext=this.renderConfig.context;this.data=e,this.layers=e.layers,this.transformCanvas={w:e.w,h:e.h,sx:0,sy:0,tx:0,ty:0},this.setupGlobalData(e,document.body),this.globalData.canvasContext=this.canvasContext,this.globalData.renderer=this,this.globalData.isDashed=!1,this.globalData.progressiveLoad=this.renderConfig.progressiveLoad,this.globalData.transformCanvas=this.transformCanvas,this.elements=createSizedArray(e.layers.length),this.updateContainerSize()},CanvasRenderer.prototype.updateContainerSize=function(){var e,t,a,l;if(this.reset(),this.animationItem.wrapper&&this.animationItem.container?(e=this.animationItem.wrapper.offsetWidth,t=this.animationItem.wrapper.offsetHeight,this.animationItem.container.setAttribute("width",e*this.renderConfig.dpr),this.animationItem.container.setAttribute("height",t*this.renderConfig.dpr)):(e=this.canvasContext.canvas.width*this.renderConfig.dpr,t=this.canvasContext.canvas.height*this.renderConfig.dpr),-1!==this.renderConfig.preserveAspectRatio.indexOf("meet")||-1!==this.renderConfig.preserveAspectRatio.indexOf("slice")){var i=this.renderConfig.preserveAspectRatio.split(" "),o=i[1]||"meet",n=i[0]||"xMidYMid",r=n.substr(0,4),s=n.substr(4);a=e/t,(l=this.transformCanvas.w/this.transformCanvas.h)>a&&"meet"===o||l<a&&"slice"===o?(this.transformCanvas.sx=e/(this.transformCanvas.w/this.renderConfig.dpr),this.transformCanvas.sy=e/(this.transformCanvas.w/this.renderConfig.dpr)):(this.transformCanvas.sx=t/(this.transformCanvas.h/this.renderConfig.dpr),this.transformCanvas.sy=t/(this.transformCanvas.h/this.renderConfig.dpr)),this.transformCanvas.tx="xMid"===r&&(l<a&&"meet"===o||l>a&&"slice"===o)?(e-this.transformCanvas.w*(t/this.transformCanvas.h))/2*this.renderConfig.dpr:"xMax"===r&&(l<a&&"meet"===o||l>a&&"slice"===o)?(e-this.transformCanvas.w*(t/this.transformCanvas.h))*this.renderConfig.dpr:0,this.transformCanvas.ty="YMid"===s&&(l>a&&"meet"===o||l<a&&"slice"===o)?(t-this.transformCanvas.h*(e/this.transformCanvas.w))/2*this.renderConfig.dpr:"YMax"===s&&(l>a&&"meet"===o||l<a&&"slice"===o)?(t-this.transformCanvas.h*(e/this.transformCanvas.w))*this.renderConfig.dpr:0}else"none"===this.renderConfig.preserveAspectRatio?(this.transformCanvas.sx=e/(this.transformCanvas.w/this.renderConfig.dpr),this.transformCanvas.sy=t/(this.transformCanvas.h/this.renderConfig.dpr),this.transformCanvas.tx=0,this.transformCanvas.ty=0):(this.transformCanvas.sx=this.renderConfig.dpr,this.transformCanvas.sy=this.renderConfig.dpr,this.transformCanvas.tx=0,this.transformCanvas.ty=0);this.transformCanvas.props=[this.transformCanvas.sx,0,0,0,0,this.transformCanvas.sy,0,0,0,0,1,0,this.transformCanvas.tx,this.transformCanvas.ty,0,1],this.ctxTransform(this.transformCanvas.props),this.canvasContext.beginPath(),this.canvasContext.rect(0,0,this.transformCanvas.w,this.transformCanvas.h),this.canvasContext.closePath(),this.canvasContext.clip(),this.renderFrame(this.renderedFrame,!0)},CanvasRenderer.prototype.destroy=function(){var e;for(this.renderConfig.clearCanvas&&this.animationItem.wrapper&&(this.animationItem.wrapper.innerText=""),e=(this.layers?this.layers.length:0)-1;e>=0;e-=1)this.elements[e]&&this.elements[e].destroy();this.elements.length=0,this.globalData.canvasContext=null,this.animationItem.container=null,this.destroyed=!0},CanvasRenderer.prototype.renderFrame=function(e,t){if((this.renderedFrame!==e||!0!==this.renderConfig.clearCanvas||t)&&!this.destroyed&&-1!==e){var a;this.renderedFrame=e,this.globalData.frameNum=e-this.animationItem._isFirstFrame,this.globalData.frameId+=1,this.globalData._mdf=!this.renderConfig.clearCanvas||t,this.globalData.projectInterface.currentFrame=e;var l=this.layers.length;for(this.completeLayers||this.checkLayers(e),a=0;a<l;a+=1)(this.completeLayers||this.elements[a])&&this.elements[a].prepareFrame(e-this.layers[a].st);if(this.globalData._mdf){for(!0===this.renderConfig.clearCanvas?this.canvasContext.clearRect(0,0,this.transformCanvas.w,this.transformCanvas.h):this.save(),a=l-1;a>=0;a-=1)(this.completeLayers||this.elements[a])&&this.elements[a].renderFrame();!0!==this.renderConfig.clearCanvas&&this.restore()}}},CanvasRenderer.prototype.buildItem=function(e){var t=this.elements;if(!t[e]&&99!==this.layers[e].ty){var a=this.createItem(this.layers[e],this,this.globalData);t[e]=a,a.initExpressions()}},CanvasRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;)this.pendingElements.pop().checkParenting()},CanvasRenderer.prototype.hide=function(){this.animationItem.container.style.display="none"},CanvasRenderer.prototype.show=function(){this.animationItem.container.style.display="block"},extendPrototype([BaseRenderer],HybridRenderer),HybridRenderer.prototype.buildItem=SVGRenderer.prototype.buildItem,HybridRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;)this.pendingElements.pop().checkParenting()},HybridRenderer.prototype.appendElementInPos=function(e,t){var a=e.getBaseElement();if(a){var l=this.layers[t];if(l.ddd&&this.supports3d)this.addTo3dContainer(a,t);else if(this.threeDElements)this.addTo3dContainer(a,t);else{for(var i,o,n=0;n<t;)this.elements[n]&&!0!==this.elements[n]&&this.elements[n].getBaseElement&&(o=this.elements[n],i=(this.layers[n].ddd?this.getThreeDContainerByPos(n):o.getBaseElement())||i),n+=1;i?l.ddd&&this.supports3d||this.layerElement.insertBefore(a,i):l.ddd&&this.supports3d||this.layerElement.appendChild(a)}}},HybridRenderer.prototype.createShape=function(e){return this.supports3d?new HShapeElement(e,this.globalData,this):new SVGShapeElement(e,this.globalData,this)},HybridRenderer.prototype.createText=function(e){return this.supports3d?new HTextElement(e,this.globalData,this):new SVGTextLottieElement(e,this.globalData,this)},HybridRenderer.prototype.createCamera=function(e){return this.camera=new HCameraElement(e,this.globalData,this),this.camera},HybridRenderer.prototype.createImage=function(e){return this.supports3d?new HImageElement(e,this.globalData,this):new IImageElement(e,this.globalData,this)},HybridRenderer.prototype.createComp=function(e){return this.supports3d?new HCompElement(e,this.globalData,this):new SVGCompElement(e,this.globalData,this)},HybridRenderer.prototype.createSolid=function(e){return this.supports3d?new HSolidElement(e,this.globalData,this):new ISolidElement(e,this.globalData,this)},HybridRenderer.prototype.createNull=SVGRenderer.prototype.createNull,HybridRenderer.prototype.getThreeDContainerByPos=function(e){for(var t=0,a=this.threeDElements.length;t<a;){if(this.threeDElements[t].startPos<=e&&this.threeDElements[t].endPos>=e)return this.threeDElements[t].perspectiveElem;t+=1}return null},HybridRenderer.prototype.createThreeDContainer=function(e,t){var a,l,i=createTag("div");styleDiv(i);var o=createTag("div");if(styleDiv(o),"3d"===t){(a=i.style).width=this.globalData.compSize.w+"px",a.height=this.globalData.compSize.h+"px",a.webkitTransformOrigin="50% 50%",a.mozTransformOrigin="50% 50%",a.transformOrigin="50% 50%";var n="matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)";(l=o.style).transform=n,l.webkitTransform=n}i.appendChild(o);var r={container:o,perspectiveElem:i,startPos:e,endPos:e,type:t};return this.threeDElements.push(r),r},HybridRenderer.prototype.build3dContainers=function(){var e,t,a=this.layers.length,l="";for(e=0;e<a;e+=1)this.layers[e].ddd&&3!==this.layers[e].ty?("3d"!==l&&(l="3d",t=this.createThreeDContainer(e,"3d")),t.endPos=Math.max(t.endPos,e)):("2d"!==l&&(l="2d",t=this.createThreeDContainer(e,"2d")),t.endPos=Math.max(t.endPos,e));for(e=(a=this.threeDElements.length)-1;e>=0;e-=1)this.resizerElem.appendChild(this.threeDElements[e].perspectiveElem)},HybridRenderer.prototype.addTo3dContainer=function(e,t){for(var a=0,l=this.threeDElements.length;a<l;){if(t<=this.threeDElements[a].endPos){for(var i,o=this.threeDElements[a].startPos;o<t;)this.elements[o]&&this.elements[o].getBaseElement&&(i=this.elements[o].getBaseElement()),o+=1;i?this.threeDElements[a].container.insertBefore(e,i):this.threeDElements[a].container.appendChild(e);break}a+=1}},HybridRenderer.prototype.configAnimation=function(e){var t=createTag("div"),a=this.animationItem.wrapper,l=t.style;l.width=e.w+"px",l.height=e.h+"px",this.resizerElem=t,styleDiv(t),l.transformStyle="flat",l.mozTransformStyle="flat",l.webkitTransformStyle="flat",this.renderConfig.className&&t.setAttribute("class",this.renderConfig.className),a.appendChild(t),l.overflow="hidden";var i=createNS("svg");i.setAttribute("width","1"),i.setAttribute("height","1"),styleDiv(i),this.resizerElem.appendChild(i);var o=createNS("defs");i.appendChild(o),this.data=e,this.setupGlobalData(e,i),this.globalData.defs=o,this.layers=e.layers,this.layerElement=this.resizerElem,this.build3dContainers(),this.updateContainerSize()},HybridRenderer.prototype.destroy=function(){var e;this.animationItem.wrapper&&(this.animationItem.wrapper.innerText=""),this.animationItem.container=null,this.globalData.defs=null;var t=this.layers?this.layers.length:0;for(e=0;e<t;e+=1)this.elements[e].destroy();this.elements.length=0,this.destroyed=!0,this.animationItem=null},HybridRenderer.prototype.updateContainerSize=function(){var e,t,a,l,i=this.animationItem.wrapper.offsetWidth,o=this.animationItem.wrapper.offsetHeight,n=i/o;this.globalData.compSize.w/this.globalData.compSize.h>n?(e=i/this.globalData.compSize.w,t=i/this.globalData.compSize.w,a=0,l=(o-this.globalData.compSize.h*(i/this.globalData.compSize.w))/2):(e=o/this.globalData.compSize.h,t=o/this.globalData.compSize.h,a=(i-this.globalData.compSize.w*(o/this.globalData.compSize.h))/2,l=0);var r=this.resizerElem.style;r.webkitTransform="matrix3d("+e+",0,0,0,0,"+t+",0,0,0,0,1,0,"+a+","+l+",0,1)",r.transform=r.webkitTransform},HybridRenderer.prototype.renderFrame=SVGRenderer.prototype.renderFrame,HybridRenderer.prototype.hide=function(){this.resizerElem.style.display="none"},HybridRenderer.prototype.show=function(){this.resizerElem.style.display="block"},HybridRenderer.prototype.initItems=function(){if(this.buildAllItems(),this.camera)this.camera.setup();else{var e,t=this.globalData.compSize.w,a=this.globalData.compSize.h,l=this.threeDElements.length;for(e=0;e<l;e+=1){var i=this.threeDElements[e].perspectiveElem.style;i.webkitPerspective=Math.sqrt(Math.pow(t,2)+Math.pow(a,2))+"px",i.perspective=i.webkitPerspective}}},HybridRenderer.prototype.searchExtraCompositions=function(e){var t,a=e.length,l=createTag("div");for(t=0;t<a;t+=1)if(e[t].xt){var i=this.createComp(e[t],l,this.globalData.comp,null);i.initExpressions(),this.globalData.projectInterface.registerComposition(i)}},MaskElement.prototype.getMaskProperty=function(e){return this.viewData[e].prop},MaskElement.prototype.renderFrame=function(e){var t,a=this.element.finalTransform.mat,l=this.masksProperties.length;for(t=0;t<l;t+=1)if((this.viewData[t].prop._mdf||e)&&this.drawPath(this.masksProperties[t],this.viewData[t].prop.v,this.viewData[t]),(this.viewData[t].op._mdf||e)&&this.viewData[t].elem.setAttribute("fill-opacity",this.viewData[t].op.v),"n"!==this.masksProperties[t].mode&&(this.viewData[t].invRect&&(this.element.finalTransform.mProp._mdf||e)&&this.viewData[t].invRect.setAttribute("transform",a.getInverseMatrix().to2dCSS()),this.storedData[t].x&&(this.storedData[t].x._mdf||e))){var i=this.storedData[t].expan;this.storedData[t].x.v<0?("erode"!==this.storedData[t].lastOperator&&(this.storedData[t].lastOperator="erode",this.storedData[t].elem.setAttribute("filter","url("+locationHref+"#"+this.storedData[t].filterId+")")),i.setAttribute("radius",-this.storedData[t].x.v)):("dilate"!==this.storedData[t].lastOperator&&(this.storedData[t].lastOperator="dilate",this.storedData[t].elem.setAttribute("filter",null)),this.storedData[t].elem.setAttribute("stroke-width",2*this.storedData[t].x.v))}},MaskElement.prototype.getMaskelement=function(){return this.maskElement},MaskElement.prototype.createLayerSolidPath=function(){var e="M0,0 ";return e+=" h"+this.globalData.compSize.w,e+=" v"+this.globalData.compSize.h,(e+=" h-"+this.globalData.compSize.w)+" v-"+this.globalData.compSize.h+" "},MaskElement.prototype.drawPath=function(e,t,a){var l,i,o=" M"+t.v[0][0]+","+t.v[0][1];for(i=t._length,l=1;l<i;l+=1)o+=" C"+t.o[l-1][0]+","+t.o[l-1][1]+" "+t.i[l][0]+","+t.i[l][1]+" "+t.v[l][0]+","+t.v[l][1];if(t.c&&i>1&&(o+=" C"+t.o[l-1][0]+","+t.o[l-1][1]+" "+t.i[0][0]+","+t.i[0][1]+" "+t.v[0][0]+","+t.v[0][1]),a.lastPath!==o){var n="";a.elem&&(t.c&&(n=e.inv?this.solidPath+o:o),a.elem.setAttribute("d",n)),a.lastPath=o}},MaskElement.prototype.destroy=function(){this.element=null,this.globalData=null,this.maskElement=null,this.data=null,this.masksProperties=null},HierarchyElement.prototype={initHierarchy:function(){this.hierarchy=[],this._isParent=!1,this.checkParenting()},setHierarchy:function(e){this.hierarchy=e},setAsParent:function(){this._isParent=!0},checkParenting:function(){void 0!==this.data.parent&&this.comp.buildElementParenting(this,this.data.parent,[])}},FrameElement.prototype={initFrame:function(){this._isFirstFrame=!1,this.dynamicProperties=[],this._mdf=!1},prepareProperties:function(e,t){var a,l=this.dynamicProperties.length;for(a=0;a<l;a+=1)(t||this._isParent&&"transform"===this.dynamicProperties[a].propType)&&(this.dynamicProperties[a].getValue(),this.dynamicProperties[a]._mdf&&(this.globalData._mdf=!0,this._mdf=!0))},addDynamicProperty:function(e){-1===this.dynamicProperties.indexOf(e)&&this.dynamicProperties.push(e)}},TransformElement.prototype={initTransform:function(){this.finalTransform={mProp:this.data.ks?TransformPropertyFactory.getTransformProperty(this,this.data.ks,this):{o:0},_matMdf:!1,_opMdf:!1,mat:new Matrix},this.data.ao&&(this.finalTransform.mProp.autoOriented=!0),this.data.ty},renderTransform:function(){if(this.finalTransform._opMdf=this.finalTransform.mProp.o._mdf||this._isFirstFrame,this.finalTransform._matMdf=this.finalTransform.mProp._mdf||this._isFirstFrame,this.hierarchy){var e,t=this.finalTransform.mat,a=0,l=this.hierarchy.length;if(!this.finalTransform._matMdf)for(;a<l;){if(this.hierarchy[a].finalTransform.mProp._mdf){this.finalTransform._matMdf=!0;break}a+=1}if(this.finalTransform._matMdf)for(e=this.finalTransform.mProp.v.props,t.cloneFromProps(e),a=0;a<l;a+=1)e=this.hierarchy[a].finalTransform.mProp.v.props,t.transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6],e[7],e[8],e[9],e[10],e[11],e[12],e[13],e[14],e[15])}},globalToLocal:function(e){var t=[];t.push(this.finalTransform);for(var a,l=!0,i=this.comp;l;)i.finalTransform?(i.data.hasMask&&t.splice(0,0,i.finalTransform),i=i.comp):l=!1;var o,n=t.length;for(a=0;a<n;a+=1)o=t[a].mat.applyToPointArray(0,0,0),e=[e[0]-o[0],e[1]-o[1],0];return e},mHelper:new Matrix},RenderableElement.prototype={initRenderable:function(){this.isInRange=!1,this.hidden=!1,this.isTransparent=!1,this.renderableComponents=[]},addRenderableComponent:function(e){-1===this.renderableComponents.indexOf(e)&&this.renderableComponents.push(e)},removeRenderableComponent:function(e){-1!==this.renderableComponents.indexOf(e)&&this.renderableComponents.splice(this.renderableComponents.indexOf(e),1)},prepareRenderableFrame:function(e){this.checkLayerLimits(e)},checkTransparency:function(){this.finalTransform.mProp.o.v<=0?!this.isTransparent&&this.globalData.renderConfig.hideOnTransparent&&(this.isTransparent=!0,this.hide()):this.isTransparent&&(this.isTransparent=!1,this.show())},checkLayerLimits:function(e){this.data.ip-this.data.st<=e&&this.data.op-this.data.st>e?!0!==this.isInRange&&(this.globalData._mdf=!0,this._mdf=!0,this.isInRange=!0,this.show()):!1!==this.isInRange&&(this.globalData._mdf=!0,this.isInRange=!1,this.hide())},renderRenderable:function(){var e,t=this.renderableComponents.length;for(e=0;e<t;e+=1)this.renderableComponents[e].renderFrame(this._isFirstFrame)},sourceRectAtTime:function(){return{top:0,left:0,width:100,height:100}},getLayerSize:function(){return 5===this.data.ty?{w:this.data.textData.width,h:this.data.textData.height}:{w:this.data.width,h:this.data.height}}},extendPrototype([RenderableElement,createProxyFunction({initElement:function(e,t,a){this.initFrame(),this.initBaseData(e,t,a),this.initTransform(e,t,a),this.initHierarchy(),this.initRenderable(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),this.createContent(),this.hide()},hide:function(){this.hidden||this.isInRange&&!this.isTransparent||((this.baseElement||this.layerElement).style.display="none",this.hidden=!0)},show:function(){this.isInRange&&!this.isTransparent&&(this.data.hd||((this.baseElement||this.layerElement).style.display="block"),this.hidden=!1,this._isFirstFrame=!0)},renderFrame:function(){this.data.hd||this.hidden||(this.renderTransform(),this.renderRenderable(),this.renderElement(),this.renderInnerContent(),this._isFirstFrame&&(this._isFirstFrame=!1))},renderInnerContent:function(){},prepareFrame:function(e){this._mdf=!1,this.prepareRenderableFrame(e),this.prepareProperties(e,this.isInRange),this.checkTransparency()},destroy:function(){this.innerElem=null,this.destroyBaseElement()}})],RenderableDOMElement),SVGStyleData.prototype.reset=function(){this.d="",this._mdf=!1},SVGShapeData.prototype.setAsAnimated=function(){this._isAnimated=!0},extendPrototype([DynamicPropertyContainer],SVGStrokeStyleData),extendPrototype([DynamicPropertyContainer],SVGFillStyleData),SVGGradientFillStyleData.prototype.initGradientData=function(e,t,a){this.o=PropertyFactory.getProp(e,t.o,0,.01,this),this.s=PropertyFactory.getProp(e,t.s,1,null,this),this.e=PropertyFactory.getProp(e,t.e,1,null,this),this.h=PropertyFactory.getProp(e,t.h||{k:0},0,.01,this),this.a=PropertyFactory.getProp(e,t.a||{k:0},0,degToRads,this),this.g=new GradientProperty(e,t.g,this),this.style=a,this.stops=[],this.setGradientData(a.pElem,t),this.setGradientOpacity(t,a),this._isAnimated=!!this._isAnimated},SVGGradientFillStyleData.prototype.setGradientData=function(e,t){var a=createElementID(),l=createNS(1===t.t?"linearGradient":"radialGradient");l.setAttribute("id",a),l.setAttribute("spreadMethod","pad"),l.setAttribute("gradientUnits","userSpaceOnUse");var i,o,n,r=[];for(n=4*t.g.p,o=0;o<n;o+=4)i=createNS("stop"),l.appendChild(i),r.push(i);e.setAttribute("gf"===t.ty?"fill":"stroke","url("+locationHref+"#"+a+")"),this.gf=l,this.cst=r},SVGGradientFillStyleData.prototype.setGradientOpacity=function(e,t){if(this.g._hasOpacity&&!this.g._collapsable){var a,l,i,o=createNS("mask"),n=createNS("path");o.appendChild(n);var r=createElementID(),s=createElementID();o.setAttribute("id",s);var c=createNS(1===e.t?"linearGradient":"radialGradient");c.setAttribute("id",r),c.setAttribute("spreadMethod","pad"),c.setAttribute("gradientUnits","userSpaceOnUse"),i=e.g.k.k[0].s?e.g.k.k[0].s.length:e.g.k.k.length;var u=this.stops;for(l=4*e.g.p;l<i;l+=2)(a=createNS("stop")).setAttribute("stop-color","rgb(255,255,255)"),c.appendChild(a),u.push(a);n.setAttribute("gf"===e.ty?"fill":"stroke","url("+locationHref+"#"+r+")"),this.of=c,this.ms=o,this.ost=u,this.maskId=s,t.msElem=n}},extendPrototype([DynamicPropertyContainer],SVGGradientFillStyleData),extendPrototype([SVGGradientFillStyleData,DynamicPropertyContainer],SVGGradientStrokeStyleData);var SVGElementsRenderer=function(){var e=new Matrix,t=new Matrix;function a(e,t,a){(a||t.transform.op._mdf)&&t.transform.container.setAttribute("opacity",t.transform.op.v),(a||t.transform.mProps._mdf)&&t.transform.container.setAttribute("transform",t.transform.mProps.v.to2dCSS())}function l(a,l,i){var o,n,r,s,c,u,p,b,d,g,m,y=l.styles.length,f=l.lvl;for(u=0;u<y;u+=1){if(s=l.sh._mdf||i,l.styles[u].lvl<f){for(b=t.reset(),g=f-l.styles[u].lvl,m=l.transformers.length-1;!s&&g>0;)s=l.transformers[m].mProps._mdf||s,g-=1,m-=1;if(s)for(g=f-l.styles[u].lvl,m=l.transformers.length-1;g>0;)d=l.transformers[m].mProps.v.props,b.transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6],d[7],d[8],d[9],d[10],d[11],d[12],d[13],d[14],d[15]),g-=1,m-=1}else b=e;if(n=(p=l.sh.paths)._length,s){for(r="",o=0;o<n;o+=1)(c=p.shapes[o])&&c._length&&(r+=buildShapeString(c,c._length,c.c,b));l.caches[u]=r}else r=l.caches[u];l.styles[u].d+=!0===a.hd?"":r,l.styles[u]._mdf=s||l.styles[u]._mdf}}function i(e,t,a){var l=t.style;(t.c._mdf||a)&&l.pElem.setAttribute("fill","rgb("+bmFloor(t.c.v[0])+","+bmFloor(t.c.v[1])+","+bmFloor(t.c.v[2])+")"),(t.o._mdf||a)&&l.pElem.setAttribute("fill-opacity",t.o.v)}function o(e,t,a){n(e,t,a),r(0,t,a)}function n(e,t,a){var l,i,o,n,r,s=t.gf,c=t.g._hasOpacity,u=t.s.v,p=t.e.v;if(t.o._mdf||a){var b="gf"===e.ty?"fill-opacity":"stroke-opacity";t.style.pElem.setAttribute(b,t.o.v)}if(t.s._mdf||a){var d=1===e.t?"x1":"cx",g="x1"===d?"y1":"cy";s.setAttribute(d,u[0]),s.setAttribute(g,u[1]),c&&!t.g._collapsable&&(t.of.setAttribute(d,u[0]),t.of.setAttribute(g,u[1]))}if(t.g._cmdf||a){l=t.cst;var m=t.g.c;for(o=l.length,i=0;i<o;i+=1)(n=l[i]).setAttribute("offset",m[4*i]+"%"),n.setAttribute("stop-color","rgb("+m[4*i+1]+","+m[4*i+2]+","+m[4*i+3]+")")}if(c&&(t.g._omdf||a)){var y=t.g.o;for(o=(l=t.g._collapsable?t.cst:t.ost).length,i=0;i<o;i+=1)n=l[i],t.g._collapsable||n.setAttribute("offset",y[2*i]+"%"),n.setAttribute("stop-opacity",y[2*i+1])}if(1===e.t)(t.e._mdf||a)&&(s.setAttribute("x2",p[0]),s.setAttribute("y2",p[1]),c&&!t.g._collapsable&&(t.of.setAttribute("x2",p[0]),t.of.setAttribute("y2",p[1])));else if((t.s._mdf||t.e._mdf||a)&&(r=Math.sqrt(Math.pow(u[0]-p[0],2)+Math.pow(u[1]-p[1],2)),s.setAttribute("r",r),c&&!t.g._collapsable&&t.of.setAttribute("r",r)),t.e._mdf||t.h._mdf||t.a._mdf||a){r||(r=Math.sqrt(Math.pow(u[0]-p[0],2)+Math.pow(u[1]-p[1],2)));var f=Math.atan2(p[1]-u[1],p[0]-u[0]),h=t.h.v;h>=1?h=.99:h<=-1&&(h=-.99);var v=r*h,_=Math.cos(f+t.a.v)*v+u[0],T=Math.sin(f+t.a.v)*v+u[1];s.setAttribute("fx",_),s.setAttribute("fy",T),c&&!t.g._collapsable&&(t.of.setAttribute("fx",_),t.of.setAttribute("fy",T))}}function r(e,t,a){var l=t.style,i=t.d;i&&(i._mdf||a)&&i.dashStr&&(l.pElem.setAttribute("stroke-dasharray",i.dashStr),l.pElem.setAttribute("stroke-dashoffset",i.dashoffset[0])),t.c&&(t.c._mdf||a)&&l.pElem.setAttribute("stroke","rgb("+bmFloor(t.c.v[0])+","+bmFloor(t.c.v[1])+","+bmFloor(t.c.v[2])+")"),(t.o._mdf||a)&&l.pElem.setAttribute("stroke-opacity",t.o.v),(t.w._mdf||a)&&(l.pElem.setAttribute("stroke-width",t.w.v),l.msElem&&l.msElem.setAttribute("stroke-width",t.w.v))}return{createRenderFunction:function(e){switch(e.ty){case"fl":return i;case"gf":return n;case"gs":return o;case"st":return r;case"sh":case"el":case"rc":case"sr":return l;case"tr":return a;default:return null}}}}();function ShapeTransformManager(){this.sequences={},this.sequenceList=[],this.transform_key_count=0}function CVShapeData(e,t,a,l){this.styledShapes=[],this.tr=[0,0,0,0,0,0];var i,o=4;"rc"===t.ty?o=5:"el"===t.ty?o=6:"sr"===t.ty&&(o=7),this.sh=ShapePropertyFactory.getShapeProp(e,t,o,e);var n,r=a.length;for(i=0;i<r;i+=1)a[i].closed||(n={transforms:l.addTransformSequence(a[i].transforms),trNodes:[]},this.styledShapes.push(n),a[i].elements.push(n))}function BaseElement(){}function NullElement(e,t,a){this.initFrame(),this.initBaseData(e,t,a),this.initFrame(),this.initTransform(e,t,a),this.initHierarchy()}function SVGBaseElement(){}function IShapeElement(){}function ITextElement(){}function ICompElement(){}function IImageElement(e,t,a){this.assetData=t.getAssetData(e.refId),this.initElement(e,t,a),this.sourceRect={top:0,left:0,width:this.assetData.w,height:this.assetData.h}}function ISolidElement(e,t,a){this.initElement(e,t,a)}function AudioElement(e,t,a){this.initFrame(),this.initRenderable(),this.assetData=t.getAssetData(e.refId),this.initBaseData(e,t,a),this._isPlaying=!1,this._canPlay=!1;var l=this.globalData.getAssetsPath(this.assetData);this.audio=this.globalData.audioController.createAudio(l),this._currentTime=0,this.globalData.audioController.addAudio(this),this.tm=e.tm?PropertyFactory.getProp(this,e.tm,0,t.frameRate,this):{_placeholder:!0}}function FootageElement(e,t,a){this.initFrame(),this.initRenderable(),this.assetData=t.getAssetData(e.refId),this.footageData=t.imageLoader.getAsset(this.assetData),this.initBaseData(e,t,a)}function SVGCompElement(e,t,a){this.layers=e.layers,this.supports3d=!0,this.completeLayers=!1,this.pendingElements=[],this.elements=this.layers?createSizedArray(this.layers.length):[],this.initElement(e,t,a),this.tm=e.tm?PropertyFactory.getProp(this,e.tm,0,t.frameRate,this):{_placeholder:!0}}function SVGTextLottieElement(e,t,a){this.textSpans=[],this.renderType="svg",this.initElement(e,t,a)}function SVGShapeElement(e,t,a){this.shapes=[],this.shapesData=e.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.initElement(e,t,a),this.prevViewData=[]}function SVGTintFilter(e,t){this.filterManager=t;var a=createNS("feColorMatrix");if(a.setAttribute("type","matrix"),a.setAttribute("color-interpolation-filters","linearRGB"),a.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),a.setAttribute("result","f1"),e.appendChild(a),(a=createNS("feColorMatrix")).setAttribute("type","matrix"),a.setAttribute("color-interpolation-filters","sRGB"),a.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),a.setAttribute("result","f2"),e.appendChild(a),this.matrixFilter=a,100!==t.effectElements[2].p.v||t.effectElements[2].p.k){var l,i=createNS("feMerge");e.appendChild(i),(l=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),i.appendChild(l),(l=createNS("feMergeNode")).setAttribute("in","f2"),i.appendChild(l)}}function SVGFillFilter(e,t){this.filterManager=t;var a=createNS("feColorMatrix");a.setAttribute("type","matrix"),a.setAttribute("color-interpolation-filters","sRGB"),a.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),e.appendChild(a),this.matrixFilter=a}function SVGGaussianBlurEffect(e,t){e.setAttribute("x","-100%"),e.setAttribute("y","-100%"),e.setAttribute("width","300%"),e.setAttribute("height","300%"),this.filterManager=t;var a=createNS("feGaussianBlur");e.appendChild(a),this.feGaussianBlur=a}function SVGStrokeEffect(e,t){this.initialized=!1,this.filterManager=t,this.elem=e,this.paths=[]}function SVGTritoneFilter(e,t){this.filterManager=t;var a=createNS("feColorMatrix");a.setAttribute("type","matrix"),a.setAttribute("color-interpolation-filters","linearRGB"),a.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),a.setAttribute("result","f1"),e.appendChild(a);var l=createNS("feComponentTransfer");l.setAttribute("color-interpolation-filters","sRGB"),e.appendChild(l),this.matrixFilter=l;var i=createNS("feFuncR");i.setAttribute("type","table"),l.appendChild(i),this.feFuncR=i;var o=createNS("feFuncG");o.setAttribute("type","table"),l.appendChild(o),this.feFuncG=o;var n=createNS("feFuncB");n.setAttribute("type","table"),l.appendChild(n),this.feFuncB=n}function SVGProLevelsFilter(e,t){this.filterManager=t;var a=this.filterManager.effectElements,l=createNS("feComponentTransfer");(a[10].p.k||0!==a[10].p.v||a[11].p.k||1!==a[11].p.v||a[12].p.k||1!==a[12].p.v||a[13].p.k||0!==a[13].p.v||a[14].p.k||1!==a[14].p.v)&&(this.feFuncR=this.createFeFunc("feFuncR",l)),(a[17].p.k||0!==a[17].p.v||a[18].p.k||1!==a[18].p.v||a[19].p.k||1!==a[19].p.v||a[20].p.k||0!==a[20].p.v||a[21].p.k||1!==a[21].p.v)&&(this.feFuncG=this.createFeFunc("feFuncG",l)),(a[24].p.k||0!==a[24].p.v||a[25].p.k||1!==a[25].p.v||a[26].p.k||1!==a[26].p.v||a[27].p.k||0!==a[27].p.v||a[28].p.k||1!==a[28].p.v)&&(this.feFuncB=this.createFeFunc("feFuncB",l)),(a[31].p.k||0!==a[31].p.v||a[32].p.k||1!==a[32].p.v||a[33].p.k||1!==a[33].p.v||a[34].p.k||0!==a[34].p.v||a[35].p.k||1!==a[35].p.v)&&(this.feFuncA=this.createFeFunc("feFuncA",l)),(this.feFuncR||this.feFuncG||this.feFuncB||this.feFuncA)&&(l.setAttribute("color-interpolation-filters","sRGB"),e.appendChild(l),l=createNS("feComponentTransfer")),(a[3].p.k||0!==a[3].p.v||a[4].p.k||1!==a[4].p.v||a[5].p.k||1!==a[5].p.v||a[6].p.k||0!==a[6].p.v||a[7].p.k||1!==a[7].p.v)&&(l.setAttribute("color-interpolation-filters","sRGB"),e.appendChild(l),this.feFuncRComposed=this.createFeFunc("feFuncR",l),this.feFuncGComposed=this.createFeFunc("feFuncG",l),this.feFuncBComposed=this.createFeFunc("feFuncB",l))}function SVGDropShadowEffect(e,t){var a=t.container.globalData.renderConfig.filterSize;e.setAttribute("x",a.x),e.setAttribute("y",a.y),e.setAttribute("width",a.width),e.setAttribute("height",a.height),this.filterManager=t;var l=createNS("feGaussianBlur");l.setAttribute("in","SourceAlpha"),l.setAttribute("result","drop_shadow_1"),l.setAttribute("stdDeviation","0"),this.feGaussianBlur=l,e.appendChild(l);var i=createNS("feOffset");i.setAttribute("dx","25"),i.setAttribute("dy","0"),i.setAttribute("in","drop_shadow_1"),i.setAttribute("result","drop_shadow_2"),this.feOffset=i,e.appendChild(i);var o=createNS("feFlood");o.setAttribute("flood-color","#00ff00"),o.setAttribute("flood-opacity","1"),o.setAttribute("result","drop_shadow_3"),this.feFlood=o,e.appendChild(o);var n=createNS("feComposite");n.setAttribute("in","drop_shadow_3"),n.setAttribute("in2","drop_shadow_2"),n.setAttribute("operator","in"),n.setAttribute("result","drop_shadow_4"),e.appendChild(n);var r,s=createNS("feMerge");e.appendChild(s),r=createNS("feMergeNode"),s.appendChild(r),(r=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),this.feMergeNode=r,this.feMerge=s,this.originalNodeAdded=!1,s.appendChild(r)}ShapeTransformManager.prototype={addTransformSequence:function(e){var t,a=e.length,l="_";for(t=0;t<a;t+=1)l+=e[t].transform.key+"_";var i=this.sequences[l];return i||(i={transforms:[].concat(e),finalTransform:new Matrix,_mdf:!1},this.sequences[l]=i,this.sequenceList.push(i)),i},processSequence:function(e,t){for(var a,l=0,i=e.transforms.length,o=t;l<i&&!t;){if(e.transforms[l].transform.mProps._mdf){o=!0;break}l+=1}if(o)for(e.finalTransform.reset(),l=i-1;l>=0;l-=1)a=e.transforms[l].transform.mProps.v.props,e.finalTransform.transform(a[0],a[1],a[2],a[3],a[4],a[5],a[6],a[7],a[8],a[9],a[10],a[11],a[12],a[13],a[14],a[15]);e._mdf=o},processSequences:function(e){var t,a=this.sequenceList.length;for(t=0;t<a;t+=1)this.processSequence(this.sequenceList[t],e)},getNewKey:function(){return this.transform_key_count+=1,"_"+this.transform_key_count}},CVShapeData.prototype.setAsAnimated=SVGShapeData.prototype.setAsAnimated,BaseElement.prototype={checkMasks:function(){if(!this.data.hasMask)return!1;for(var e=0,t=this.data.masksProperties.length;e<t;){if("n"!==this.data.masksProperties[e].mode&&!1!==this.data.masksProperties[e].cl)return!0;e+=1}return!1},initExpressions:function(){this.layerInterface=LayerExpressionInterface(this),this.data.hasMask&&this.maskManager&&this.layerInterface.registerMaskInterface(this.maskManager);var e=EffectsExpressionInterface.createEffectsInterface(this,this.layerInterface);this.layerInterface.registerEffectsInterface(e),0===this.data.ty||this.data.xt?this.compInterface=CompExpressionInterface(this):4===this.data.ty?(this.layerInterface.shapeInterface=ShapeExpressionInterface(this.shapesData,this.itemsData,this.layerInterface),this.layerInterface.content=this.layerInterface.shapeInterface):5===this.data.ty&&(this.layerInterface.textInterface=TextExpressionInterface(this),this.layerInterface.text=this.layerInterface.textInterface)},setBlendMode:function(){var e=getBlendMode(this.data.bm);(this.baseElement||this.layerElement).style["mix-blend-mode"]=e},initBaseData:function(e,t,a){this.globalData=t,this.comp=a,this.data=e,this.layerId=createElementID(),this.data.sr||(this.data.sr=1),this.effectsManager=new EffectsManager(this.data,this,this.dynamicProperties)},getType:function(){return this.type},sourceRectAtTime:function(){}},NullElement.prototype.prepareFrame=function(e){this.prepareProperties(e,!0)},NullElement.prototype.renderFrame=function(){},NullElement.prototype.getBaseElement=function(){return null},NullElement.prototype.destroy=function(){},NullElement.prototype.sourceRectAtTime=function(){},NullElement.prototype.hide=function(){},extendPrototype([BaseElement,TransformElement,HierarchyElement,FrameElement],NullElement),SVGBaseElement.prototype={initRendererElement:function(){this.layerElement=createNS("g")},createContainerElements:function(){this.matteElement=createNS("g"),this.transformedElement=this.layerElement,this.maskedElement=this.layerElement,this._sizeChanged=!1;var e,t,a,l=null;if(this.data.td){if(3==this.data.td||1==this.data.td){var i=createNS("mask");i.setAttribute("id",this.layerId),i.setAttribute("mask-type",3==this.data.td?"luminance":"alpha"),i.appendChild(this.layerElement),l=i,this.globalData.defs.appendChild(i),featureSupport.maskType||1!=this.data.td||(i.setAttribute("mask-type","luminance"),e=createElementID(),t=filtersFactory.createFilter(e),this.globalData.defs.appendChild(t),t.appendChild(filtersFactory.createAlphaToLuminanceFilter()),(a=createNS("g")).appendChild(this.layerElement),l=a,i.appendChild(a),a.setAttribute("filter","url("+locationHref+"#"+e+")"))}else if(2==this.data.td){var o=createNS("mask");o.setAttribute("id",this.layerId),o.setAttribute("mask-type","alpha");var n=createNS("g");o.appendChild(n),e=createElementID(),t=filtersFactory.createFilter(e);var r=createNS("feComponentTransfer");r.setAttribute("in","SourceGraphic"),t.appendChild(r);var s=createNS("feFuncA");s.setAttribute("type","table"),s.setAttribute("tableValues","1.0 0.0"),r.appendChild(s),this.globalData.defs.appendChild(t);var c=createNS("rect");c.setAttribute("width",this.comp.data.w),c.setAttribute("height",this.comp.data.h),c.setAttribute("x","0"),c.setAttribute("y","0"),c.setAttribute("fill","#ffffff"),c.setAttribute("opacity","0"),n.setAttribute("filter","url("+locationHref+"#"+e+")"),n.appendChild(c),n.appendChild(this.layerElement),l=n,featureSupport.maskType||(o.setAttribute("mask-type","luminance"),t.appendChild(filtersFactory.createAlphaToLuminanceFilter()),a=createNS("g"),n.appendChild(c),a.appendChild(this.layerElement),l=a,n.appendChild(a)),this.globalData.defs.appendChild(o)}}else this.data.tt?(this.matteElement.appendChild(this.layerElement),l=this.matteElement,this.baseElement=this.matteElement):this.baseElement=this.layerElement;if(this.data.ln&&this.layerElement.setAttribute("id",this.data.ln),this.data.cl&&this.layerElement.setAttribute("class",this.data.cl),0===this.data.ty&&!this.data.hd){var u=createNS("clipPath"),p=createNS("path");p.setAttribute("d","M0,0 L"+this.data.w+",0 L"+this.data.w+","+this.data.h+" L0,"+this.data.h+"z");var b=createElementID();if(u.setAttribute("id",b),u.appendChild(p),this.globalData.defs.appendChild(u),this.checkMasks()){var d=createNS("g");d.setAttribute("clip-path","url("+locationHref+"#"+b+")"),d.appendChild(this.layerElement),this.transformedElement=d,l?l.appendChild(this.transformedElement):this.baseElement=this.transformedElement}else this.layerElement.setAttribute("clip-path","url("+locationHref+"#"+b+")")}0!==this.data.bm&&this.setBlendMode()},renderElement:function(){this.finalTransform._matMdf&&this.transformedElement.setAttribute("transform",this.finalTransform.mat.to2dCSS()),this.finalTransform._opMdf&&this.transformedElement.setAttribute("opacity",this.finalTransform.mProp.o.v)},destroyBaseElement:function(){this.layerElement=null,this.matteElement=null,this.maskManager.destroy()},getBaseElement:function(){return this.data.hd?null:this.baseElement},createRenderableComponents:function(){this.maskManager=new MaskElement(this.data,this,this.globalData),this.renderableEffectsManager=new SVGEffects(this)},setMatte:function(e){this.matteElement&&this.matteElement.setAttribute("mask","url("+locationHref+"#"+e+")")}},IShapeElement.prototype={addShapeToModifiers:function(e){var t,a=this.shapeModifiers.length;for(t=0;t<a;t+=1)this.shapeModifiers[t].addShape(e)},isShapeInAnimatedModifiers:function(e){for(var t=this.shapeModifiers.length;0<t;)if(this.shapeModifiers[0].isAnimatedWithShape(e))return!0;return!1},renderModifiers:function(){if(this.shapeModifiers.length){var e,t=this.shapes.length;for(e=0;e<t;e+=1)this.shapes[e].sh.reset();for(e=(t=this.shapeModifiers.length)-1;e>=0&&!this.shapeModifiers[e].processShapes(this._isFirstFrame);e-=1);}},lcEnum:{1:"butt",2:"round",3:"square"},ljEnum:{1:"miter",2:"round",3:"bevel"},searchProcessedElement:function(e){for(var t=this.processedElements,a=0,l=t.length;a<l;){if(t[a].elem===e)return t[a].pos;a+=1}return 0},addProcessedElement:function(e,t){for(var a=this.processedElements,l=a.length;l;)if(a[l-=1].elem===e)return void(a[l].pos=t);a.push(new ProcessedElement(e,t))},prepareFrame:function(e){this.prepareRenderableFrame(e),this.prepareProperties(e,this.isInRange)}},ITextElement.prototype.initElement=function(e,t,a){this.lettersChangedFlag=!0,this.initFrame(),this.initBaseData(e,t,a),this.textProperty=new TextProperty(this,e.t,this.dynamicProperties),this.textAnimator=new TextAnimatorProperty(e.t,this.renderType,this),this.initTransform(e,t,a),this.initHierarchy(),this.initRenderable(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),this.createContent(),this.hide(),this.textAnimator.searchProperties(this.dynamicProperties)},ITextElement.prototype.prepareFrame=function(e){this._mdf=!1,this.prepareRenderableFrame(e),this.prepareProperties(e,this.isInRange),(this.textProperty._mdf||this.textProperty._isFirstFrame)&&(this.buildNewText(),this.textProperty._isFirstFrame=!1,this.textProperty._mdf=!1)},ITextElement.prototype.createPathShape=function(e,t){var a,l,i=t.length,o="";for(a=0;a<i;a+=1)l=t[a].ks.k,o+=buildShapeString(l,l.i.length,!0,e);return o},ITextElement.prototype.updateDocumentData=function(e,t){this.textProperty.updateDocumentData(e,t)},ITextElement.prototype.canResizeFont=function(e){this.textProperty.canResizeFont(e)},ITextElement.prototype.setMinimumFontSize=function(e){this.textProperty.setMinimumFontSize(e)},ITextElement.prototype.applyTextPropertiesToMatrix=function(e,t,a,l,i){switch(e.ps&&t.translate(e.ps[0],e.ps[1]+e.ascent,0),t.translate(0,-e.ls,0),e.j){case 1:t.translate(e.justifyOffset+(e.boxWidth-e.lineWidths[a]),0,0);break;case 2:t.translate(e.justifyOffset+(e.boxWidth-e.lineWidths[a])/2,0,0)}t.translate(l,i,0)},ITextElement.prototype.buildColor=function(e){return"rgb("+Math.round(255*e[0])+","+Math.round(255*e[1])+","+Math.round(255*e[2])+")"},ITextElement.prototype.emptyProp=new LetterProps,ITextElement.prototype.destroy=function(){},extendPrototype([BaseElement,TransformElement,HierarchyElement,FrameElement,RenderableDOMElement],ICompElement),ICompElement.prototype.initElement=function(e,t,a){this.initFrame(),this.initBaseData(e,t,a),this.initTransform(e,t,a),this.initRenderable(),this.initHierarchy(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),!this.data.xt&&t.progressiveLoad||this.buildAllItems(),this.hide()},ICompElement.prototype.prepareFrame=function(e){if(this._mdf=!1,this.prepareRenderableFrame(e),this.prepareProperties(e,this.isInRange),this.isInRange||this.data.xt){if(this.tm._placeholder)this.renderedFrame=e/this.data.sr;else{var t=this.tm.v;t===this.data.op&&(t=this.data.op-1),this.renderedFrame=t}var a,l=this.elements.length;for(this.completeLayers||this.checkLayers(this.renderedFrame),a=l-1;a>=0;a-=1)(this.completeLayers||this.elements[a])&&(this.elements[a].prepareFrame(this.renderedFrame-this.layers[a].st),this.elements[a]._mdf&&(this._mdf=!0))}},ICompElement.prototype.renderInnerContent=function(){var e,t=this.layers.length;for(e=0;e<t;e+=1)(this.completeLayers||this.elements[e])&&this.elements[e].renderFrame()},ICompElement.prototype.setElements=function(e){this.elements=e},ICompElement.prototype.getElements=function(){return this.elements},ICompElement.prototype.destroyElements=function(){var e,t=this.layers.length;for(e=0;e<t;e+=1)this.elements[e]&&this.elements[e].destroy()},ICompElement.prototype.destroy=function(){this.destroyElements(),this.destroyBaseElement()},extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement],IImageElement),IImageElement.prototype.createContent=function(){var e=this.globalData.getAssetsPath(this.assetData);this.innerElem=createNS("image"),this.innerElem.setAttribute("width",this.assetData.w+"px"),this.innerElem.setAttribute("height",this.assetData.h+"px"),this.innerElem.setAttribute("preserveAspectRatio",this.assetData.pr||this.globalData.renderConfig.imagePreserveAspectRatio),this.innerElem.setAttributeNS("http://www.w3.org/1999/xlink","href",e),this.layerElement.appendChild(this.innerElem)},IImageElement.prototype.sourceRectAtTime=function(){return this.sourceRect},extendPrototype([IImageElement],ISolidElement),ISolidElement.prototype.createContent=function(){var e=createNS("rect");e.setAttribute("width",this.data.sw),e.setAttribute("height",this.data.sh),e.setAttribute("fill",this.data.sc),this.layerElement.appendChild(e)},AudioElement.prototype.prepareFrame=function(e){if(this.prepareRenderableFrame(e,!0),this.prepareProperties(e,!0),this.tm._placeholder)this._currentTime=e/this.data.sr;else{var t=this.tm.v;this._currentTime=t}},extendPrototype([RenderableElement,BaseElement,FrameElement],AudioElement),AudioElement.prototype.renderFrame=function(){this.isInRange&&this._canPlay&&(this._isPlaying?(!this.audio.playing()||Math.abs(this._currentTime/this.globalData.frameRate-this.audio.seek())>.1)&&this.audio.seek(this._currentTime/this.globalData.frameRate):(this.audio.play(),this.audio.seek(this._currentTime/this.globalData.frameRate),this._isPlaying=!0))},AudioElement.prototype.show=function(){},AudioElement.prototype.hide=function(){this.audio.pause(),this._isPlaying=!1},AudioElement.prototype.pause=function(){this.audio.pause(),this._isPlaying=!1,this._canPlay=!1},AudioElement.prototype.resume=function(){this._canPlay=!0},AudioElement.prototype.setRate=function(e){this.audio.rate(e)},AudioElement.prototype.volume=function(e){this.audio.volume(e)},AudioElement.prototype.getBaseElement=function(){return null},AudioElement.prototype.destroy=function(){},AudioElement.prototype.sourceRectAtTime=function(){},AudioElement.prototype.initExpressions=function(){},FootageElement.prototype.prepareFrame=function(){},extendPrototype([RenderableElement,BaseElement,FrameElement],FootageElement),FootageElement.prototype.getBaseElement=function(){return null},FootageElement.prototype.renderFrame=function(){},FootageElement.prototype.destroy=function(){},FootageElement.prototype.initExpressions=function(){this.layerInterface=FootageInterface(this)},FootageElement.prototype.getFootageData=function(){return this.footageData},extendPrototype([SVGRenderer,ICompElement,SVGBaseElement],SVGCompElement),extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement],SVGTextLottieElement),SVGTextLottieElement.prototype.createContent=function(){this.data.singleShape&&!this.globalData.fontManager.chars&&(this.textContainer=createNS("text"))},SVGTextLottieElement.prototype.buildTextContents=function(e){for(var t=0,a=e.length,l=[],i="";t<a;)e[t]===String.fromCharCode(13)||e[t]===String.fromCharCode(3)?(l.push(i),i=""):i+=e[t],t+=1;return l.push(i),l},SVGTextLottieElement.prototype.buildNewText=function(){var e,t,a=this.textProperty.currentData;this.renderedLetters=createSizedArray(a?a.l.length:0),a.fc?this.layerElement.setAttribute("fill",this.buildColor(a.fc)):this.layerElement.setAttribute("fill","rgba(0,0,0,0)"),a.sc&&(this.layerElement.setAttribute("stroke",this.buildColor(a.sc)),this.layerElement.setAttribute("stroke-width",a.sw)),this.layerElement.setAttribute("font-size",a.finalSize);var l=this.globalData.fontManager.getFontByName(a.f);if(l.fClass)this.layerElement.setAttribute("class",l.fClass);else{this.layerElement.setAttribute("font-family",l.fFamily);var i=a.fWeight,o=a.fStyle;this.layerElement.setAttribute("font-style",o),this.layerElement.setAttribute("font-weight",i)}this.layerElement.setAttribute("aria-label",a.t);var n,r=a.l||[],s=!!this.globalData.fontManager.chars;t=r.length;var c,u=this.mHelper,p="",b=this.data.singleShape,d=0,g=0,m=!0,y=.001*a.tr*a.finalSize;if(!b||s||a.sz){var f,h,v=this.textSpans.length;for(e=0;e<t;e+=1)s&&b&&0!==e||(n=v>e?this.textSpans[e]:createNS(s?"path":"text"),v<=e&&(n.setAttribute("stroke-linecap","butt"),n.setAttribute("stroke-linejoin","round"),n.setAttribute("stroke-miterlimit","4"),this.textSpans[e]=n,this.layerElement.appendChild(n)),n.style.display="inherit"),u.reset(),u.scale(a.finalSize/100,a.finalSize/100),b&&(r[e].n&&(d=-y,g+=a.yOffset,g+=m?1:0,m=!1),this.applyTextPropertiesToMatrix(a,u,r[e].line,d,g),d+=r[e].l||0,d+=y),s?(c=(f=(h=this.globalData.fontManager.getCharData(a.finalText[e],l.fStyle,this.globalData.fontManager.getFontByName(a.f).fFamily))&&h.data||{}).shapes?f.shapes[0].it:[],b?p+=this.createPathShape(u,c):n.setAttribute("d",this.createPathShape(u,c))):(b&&n.setAttribute("transform","translate("+u.props[12]+","+u.props[13]+")"),n.textContent=r[e].val,n.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"));b&&n&&n.setAttribute("d",p)}else{var _=this.textContainer,T="start";switch(a.j){case 1:T="end";break;case 2:T="middle";break;default:T="start"}_.setAttribute("text-anchor",T),_.setAttribute("letter-spacing",y);var C=this.buildTextContents(a.finalText);for(t=C.length,g=a.ps?a.ps[1]+a.ascent:0,e=0;e<t;e+=1)(n=this.textSpans[e]||createNS("tspan")).textContent=C[e],n.setAttribute("x",0),n.setAttribute("y",g),n.style.display="inherit",_.appendChild(n),this.textSpans[e]=n,g+=a.finalLineHeight;this.layerElement.appendChild(_)}for(;e<this.textSpans.length;)this.textSpans[e].style.display="none",e+=1;this._sizeChanged=!0},SVGTextLottieElement.prototype.sourceRectAtTime=function(){if(this.prepareFrame(this.comp.renderedFrame-this.data.st),this.renderInnerContent(),this._sizeChanged){this._sizeChanged=!1;var e=this.layerElement.getBBox();this.bbox={top:e.y,left:e.x,width:e.width,height:e.height}}return this.bbox},SVGTextLottieElement.prototype.renderInnerContent=function(){if(!this.data.singleShape&&(this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag),this.lettersChangedFlag||this.textAnimator.lettersChangedFlag)){var e,t;this._sizeChanged=!0;var a,l,i=this.textAnimator.renderedLetters,o=this.textProperty.currentData.l;for(t=o.length,e=0;e<t;e+=1)o[e].n||(a=i[e],l=this.textSpans[e],a._mdf.m&&l.setAttribute("transform",a.m),a._mdf.o&&l.setAttribute("opacity",a.o),a._mdf.sw&&l.setAttribute("stroke-width",a.sw),a._mdf.sc&&l.setAttribute("stroke",a.sc),a._mdf.fc&&l.setAttribute("fill",a.fc))}},extendPrototype([BaseElement,TransformElement,SVGBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableDOMElement],SVGShapeElement),SVGShapeElement.prototype.initSecondaryElement=function(){},SVGShapeElement.prototype.identityMatrix=new Matrix,SVGShapeElement.prototype.buildExpressionInterface=function(){},SVGShapeElement.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes()},SVGShapeElement.prototype.filterUniqueShapes=function(){var e,t,a,l,i=this.shapes.length,o=this.stylesList.length,n=[],r=!1;for(a=0;a<o;a+=1){for(l=this.stylesList[a],r=!1,n.length=0,e=0;e<i;e+=1)-1!==(t=this.shapes[e]).styles.indexOf(l)&&(n.push(t),r=t._isAnimated||r);n.length>1&&r&&this.setShapesAsAnimated(n)}},SVGShapeElement.prototype.setShapesAsAnimated=function(e){var t,a=e.length;for(t=0;t<a;t+=1)e[t].setAsAnimated()},SVGShapeElement.prototype.createStyleElement=function(e,t){var a,l=new SVGStyleData(e,t),i=l.pElem;return"st"===e.ty?a=new SVGStrokeStyleData(this,e,l):"fl"===e.ty?a=new SVGFillStyleData(this,e,l):"gf"!==e.ty&&"gs"!==e.ty||(a=new("gf"===e.ty?SVGGradientFillStyleData:SVGGradientStrokeStyleData)(this,e,l),this.globalData.defs.appendChild(a.gf),a.maskId&&(this.globalData.defs.appendChild(a.ms),this.globalData.defs.appendChild(a.of),i.setAttribute("mask","url("+locationHref+"#"+a.maskId+")"))),"st"!==e.ty&&"gs"!==e.ty||(i.setAttribute("stroke-linecap",this.lcEnum[e.lc]||"round"),i.setAttribute("stroke-linejoin",this.ljEnum[e.lj]||"round"),i.setAttribute("fill-opacity","0"),1===e.lj&&i.setAttribute("stroke-miterlimit",e.ml)),2===e.r&&i.setAttribute("fill-rule","evenodd"),e.ln&&i.setAttribute("id",e.ln),e.cl&&i.setAttribute("class",e.cl),e.bm&&(i.style["mix-blend-mode"]=getBlendMode(e.bm)),this.stylesList.push(l),this.addToAnimatedContents(e,a),a},SVGShapeElement.prototype.createGroupElement=function(e){var t=new ShapeGroupData;return e.ln&&t.gr.setAttribute("id",e.ln),e.cl&&t.gr.setAttribute("class",e.cl),e.bm&&(t.gr.style["mix-blend-mode"]=getBlendMode(e.bm)),t},SVGShapeElement.prototype.createTransformElement=function(e,t){var a=TransformPropertyFactory.getTransformProperty(this,e,this),l=new SVGTransformData(a,a.o,t);return this.addToAnimatedContents(e,l),l},SVGShapeElement.prototype.createShapeElement=function(e,t,a){var l=4;"rc"===e.ty?l=5:"el"===e.ty?l=6:"sr"===e.ty&&(l=7);var i=new SVGShapeData(t,a,ShapePropertyFactory.getShapeProp(this,e,l,this));return this.shapes.push(i),this.addShapeToModifiers(i),this.addToAnimatedContents(e,i),i},SVGShapeElement.prototype.addToAnimatedContents=function(e,t){for(var a=0,l=this.animatedContents.length;a<l;){if(this.animatedContents[a].element===t)return;a+=1}this.animatedContents.push({fn:SVGElementsRenderer.createRenderFunction(e),element:t,data:e})},SVGShapeElement.prototype.setElementStyles=function(e){var t,a=e.styles,l=this.stylesList.length;for(t=0;t<l;t+=1)this.stylesList[t].closed||a.push(this.stylesList[t])},SVGShapeElement.prototype.reloadShapes=function(){var e;this._isFirstFrame=!0;var t=this.itemsData.length;for(e=0;e<t;e+=1)this.prevViewData[e]=this.itemsData[e];for(this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes(),t=this.dynamicProperties.length,e=0;e<t;e+=1)this.dynamicProperties[e].getValue();this.renderModifiers()},SVGShapeElement.prototype.searchShapes=function(e,t,a,l,i,o,n){var r,s,c,u,p,b,d=[].concat(o),g=e.length-1,m=[],y=[];for(r=g;r>=0;r-=1){if((b=this.searchProcessedElement(e[r]))?t[r]=a[b-1]:e[r]._render=n,"fl"===e[r].ty||"st"===e[r].ty||"gf"===e[r].ty||"gs"===e[r].ty)b?t[r].style.closed=!1:t[r]=this.createStyleElement(e[r],i),e[r]._render&&l.appendChild(t[r].style.pElem),m.push(t[r].style);else if("gr"===e[r].ty){if(b)for(c=t[r].it.length,s=0;s<c;s+=1)t[r].prevViewData[s]=t[r].it[s];else t[r]=this.createGroupElement(e[r]);this.searchShapes(e[r].it,t[r].it,t[r].prevViewData,t[r].gr,i+1,d,n),e[r]._render&&l.appendChild(t[r].gr)}else"tr"===e[r].ty?(b||(t[r]=this.createTransformElement(e[r],l)),u=t[r].transform,d.push(u)):"sh"===e[r].ty||"rc"===e[r].ty||"el"===e[r].ty||"sr"===e[r].ty?(b||(t[r]=this.createShapeElement(e[r],d,i)),this.setElementStyles(t[r])):"tm"===e[r].ty||"rd"===e[r].ty||"ms"===e[r].ty||"pb"===e[r].ty?(b?(p=t[r]).closed=!1:((p=ShapeModifiers.getModifier(e[r].ty)).init(this,e[r]),t[r]=p,this.shapeModifiers.push(p)),y.push(p)):"rp"===e[r].ty&&(b?(p=t[r]).closed=!0:(p=ShapeModifiers.getModifier(e[r].ty),t[r]=p,p.init(this,e,r,t),this.shapeModifiers.push(p),n=!1),y.push(p));this.addProcessedElement(e[r],r+1)}for(g=m.length,r=0;r<g;r+=1)m[r].closed=!0;for(g=y.length,r=0;r<g;r+=1)y[r].closed=!0},SVGShapeElement.prototype.renderInnerContent=function(){var e;this.renderModifiers();var t=this.stylesList.length;for(e=0;e<t;e+=1)this.stylesList[e].reset();for(this.renderShape(),e=0;e<t;e+=1)(this.stylesList[e]._mdf||this._isFirstFrame)&&(this.stylesList[e].msElem&&(this.stylesList[e].msElem.setAttribute("d",this.stylesList[e].d),this.stylesList[e].d="M0 0"+this.stylesList[e].d),this.stylesList[e].pElem.setAttribute("d",this.stylesList[e].d||"M0 0"))},SVGShapeElement.prototype.renderShape=function(){var e,t,a=this.animatedContents.length;for(e=0;e<a;e+=1)t=this.animatedContents[e],(this._isFirstFrame||t.element._isAnimated)&&!0!==t.data&&t.fn(t.data,t.element,this._isFirstFrame)},SVGShapeElement.prototype.destroy=function(){this.destroyBaseElement(),this.shapesData=null,this.itemsData=null},SVGTintFilter.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){var t=this.filterManager.effectElements[0].p.v,a=this.filterManager.effectElements[1].p.v,l=this.filterManager.effectElements[2].p.v/100;this.matrixFilter.setAttribute("values",a[0]-t[0]+" 0 0 0 "+t[0]+" "+(a[1]-t[1])+" 0 0 0 "+t[1]+" "+(a[2]-t[2])+" 0 0 0 "+t[2]+" 0 0 0 "+l+" 0")}},SVGFillFilter.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){var t=this.filterManager.effectElements[2].p.v,a=this.filterManager.effectElements[6].p.v;this.matrixFilter.setAttribute("values","0 0 0 0 "+t[0]+" 0 0 0 0 "+t[1]+" 0 0 0 0 "+t[2]+" 0 0 0 "+a+" 0")}},SVGGaussianBlurEffect.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){var t=.3*this.filterManager.effectElements[0].p.v,a=this.filterManager.effectElements[1].p.v,l=3==a?0:t,i=2==a?0:t;this.feGaussianBlur.setAttribute("stdDeviation",l+" "+i);var o=1==this.filterManager.effectElements[2].p.v?"wrap":"duplicate";this.feGaussianBlur.setAttribute("edgeMode",o)}},SVGStrokeEffect.prototype.initialize=function(){var e,t,a,l,i=this.elem.layerElement.children||this.elem.layerElement.childNodes;for(1===this.filterManager.effectElements[1].p.v?(l=this.elem.maskManager.masksProperties.length,a=0):l=1+(a=this.filterManager.effectElements[0].p.v-1),(t=createNS("g")).setAttribute("fill","none"),t.setAttribute("stroke-linecap","round"),t.setAttribute("stroke-dashoffset",1);a<l;a+=1)e=createNS("path"),t.appendChild(e),this.paths.push({p:e,m:a});if(3===this.filterManager.effectElements[10].p.v){var o=createNS("mask"),n=createElementID();o.setAttribute("id",n),o.setAttribute("mask-type","alpha"),o.appendChild(t),this.elem.globalData.defs.appendChild(o);var r=createNS("g");for(r.setAttribute("mask","url("+locationHref+"#"+n+")");i[0];)r.appendChild(i[0]);this.elem.layerElement.appendChild(r),this.masker=o,t.setAttribute("stroke","#fff")}else if(1===this.filterManager.effectElements[10].p.v||2===this.filterManager.effectElements[10].p.v){if(2===this.filterManager.effectElements[10].p.v)for(i=this.elem.layerElement.children||this.elem.layerElement.childNodes;i.length;)this.elem.layerElement.removeChild(i[0]);this.elem.layerElement.appendChild(t),this.elem.layerElement.removeAttribute("mask"),t.setAttribute("stroke","#fff")}this.initialized=!0,this.pathMasker=t},SVGStrokeEffect.prototype.renderFrame=function(e){var t;this.initialized||this.initialize();var a,l,i=this.paths.length;for(t=0;t<i;t+=1)if(-1!==this.paths[t].m&&(a=this.elem.maskManager.viewData[this.paths[t].m],l=this.paths[t].p,(e||this.filterManager._mdf||a.prop._mdf)&&l.setAttribute("d",a.lastPath),e||this.filterManager.effectElements[9].p._mdf||this.filterManager.effectElements[4].p._mdf||this.filterManager.effectElements[7].p._mdf||this.filterManager.effectElements[8].p._mdf||a.prop._mdf)){var o;if(0!==this.filterManager.effectElements[7].p.v||100!==this.filterManager.effectElements[8].p.v){var n=.01*Math.min(this.filterManager.effectElements[7].p.v,this.filterManager.effectElements[8].p.v),r=.01*Math.max(this.filterManager.effectElements[7].p.v,this.filterManager.effectElements[8].p.v),s=l.getTotalLength();o="0 0 0 "+s*n+" ";var c,u=s*(r-n),p=1+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v*.01,b=Math.floor(u/p);for(c=0;c<b;c+=1)o+="1 "+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v*.01+" ";o+="0 "+10*s+" 0 0"}else o="1 "+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v*.01;l.setAttribute("stroke-dasharray",o)}if((e||this.filterManager.effectElements[4].p._mdf)&&this.pathMasker.setAttribute("stroke-width",2*this.filterManager.effectElements[4].p.v),(e||this.filterManager.effectElements[6].p._mdf)&&this.pathMasker.setAttribute("opacity",this.filterManager.effectElements[6].p.v),(1===this.filterManager.effectElements[10].p.v||2===this.filterManager.effectElements[10].p.v)&&(e||this.filterManager.effectElements[3].p._mdf)){var d=this.filterManager.effectElements[3].p.v;this.pathMasker.setAttribute("stroke","rgb("+bmFloor(255*d[0])+","+bmFloor(255*d[1])+","+bmFloor(255*d[2])+")")}},SVGTritoneFilter.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){var t=this.filterManager.effectElements[0].p.v,a=this.filterManager.effectElements[1].p.v,l=this.filterManager.effectElements[2].p.v,i=l[0]+" "+a[0]+" "+t[0],o=l[1]+" "+a[1]+" "+t[1],n=l[2]+" "+a[2]+" "+t[2];this.feFuncR.setAttribute("tableValues",i),this.feFuncG.setAttribute("tableValues",o),this.feFuncB.setAttribute("tableValues",n)}},SVGProLevelsFilter.prototype.createFeFunc=function(e,t){var a=createNS(e);return a.setAttribute("type","table"),t.appendChild(a),a},SVGProLevelsFilter.prototype.getTableValue=function(e,t,a,l,i){for(var o,n,r=0,s=Math.min(e,t),c=Math.max(e,t),u=Array.call(null,{length:256}),p=0,b=i-l,d=t-e;r<=256;)n=(o=r/256)<=s?d<0?i:l:o>=c?d<0?l:i:l+b*Math.pow((o-e)/d,1/a),u[p]=n,p+=1,r+=256/255;return u.join(" ")},SVGProLevelsFilter.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){var t,a=this.filterManager.effectElements;this.feFuncRComposed&&(e||a[3].p._mdf||a[4].p._mdf||a[5].p._mdf||a[6].p._mdf||a[7].p._mdf)&&(t=this.getTableValue(a[3].p.v,a[4].p.v,a[5].p.v,a[6].p.v,a[7].p.v),this.feFuncRComposed.setAttribute("tableValues",t),this.feFuncGComposed.setAttribute("tableValues",t),this.feFuncBComposed.setAttribute("tableValues",t)),this.feFuncR&&(e||a[10].p._mdf||a[11].p._mdf||a[12].p._mdf||a[13].p._mdf||a[14].p._mdf)&&(t=this.getTableValue(a[10].p.v,a[11].p.v,a[12].p.v,a[13].p.v,a[14].p.v),this.feFuncR.setAttribute("tableValues",t)),this.feFuncG&&(e||a[17].p._mdf||a[18].p._mdf||a[19].p._mdf||a[20].p._mdf||a[21].p._mdf)&&(t=this.getTableValue(a[17].p.v,a[18].p.v,a[19].p.v,a[20].p.v,a[21].p.v),this.feFuncG.setAttribute("tableValues",t)),this.feFuncB&&(e||a[24].p._mdf||a[25].p._mdf||a[26].p._mdf||a[27].p._mdf||a[28].p._mdf)&&(t=this.getTableValue(a[24].p.v,a[25].p.v,a[26].p.v,a[27].p.v,a[28].p.v),this.feFuncB.setAttribute("tableValues",t)),this.feFuncA&&(e||a[31].p._mdf||a[32].p._mdf||a[33].p._mdf||a[34].p._mdf||a[35].p._mdf)&&(t=this.getTableValue(a[31].p.v,a[32].p.v,a[33].p.v,a[34].p.v,a[35].p.v),this.feFuncA.setAttribute("tableValues",t))}},SVGDropShadowEffect.prototype.renderFrame=function(e){if(e||this.filterManager._mdf){if((e||this.filterManager.effectElements[4].p._mdf)&&this.feGaussianBlur.setAttribute("stdDeviation",this.filterManager.effectElements[4].p.v/4),e||this.filterManager.effectElements[0].p._mdf){var t=this.filterManager.effectElements[0].p.v;this.feFlood.setAttribute("flood-color",rgbToHex(Math.round(255*t[0]),Math.round(255*t[1]),Math.round(255*t[2])))}if((e||this.filterManager.effectElements[1].p._mdf)&&this.feFlood.setAttribute("flood-opacity",this.filterManager.effectElements[1].p.v/255),e||this.filterManager.effectElements[2].p._mdf||this.filterManager.effectElements[3].p._mdf){var a=this.filterManager.effectElements[3].p.v,l=(this.filterManager.effectElements[2].p.v-90)*degToRads,i=a*Math.cos(l),o=a*Math.sin(l);this.feOffset.setAttribute("dx",i),this.feOffset.setAttribute("dy",o)}}};var _svgMatteSymbols=[];function SVGMatte3Effect(e,t,a){this.initialized=!1,this.filterManager=t,this.filterElem=e,this.elem=a,a.matteElement=createNS("g"),a.matteElement.appendChild(a.layerElement),a.matteElement.appendChild(a.transformedElement),a.baseElement=a.matteElement}function SVGEffects(e){var t,a,l=e.data.ef?e.data.ef.length:0,i=createElementID(),o=filtersFactory.createFilter(i,!0),n=0;for(this.filters=[],t=0;t<l;t+=1)a=null,20===e.data.ef[t].ty?(n+=1,a=new SVGTintFilter(o,e.effectsManager.effectElements[t])):21===e.data.ef[t].ty?(n+=1,a=new SVGFillFilter(o,e.effectsManager.effectElements[t])):22===e.data.ef[t].ty?a=new SVGStrokeEffect(e,e.effectsManager.effectElements[t]):23===e.data.ef[t].ty?(n+=1,a=new SVGTritoneFilter(o,e.effectsManager.effectElements[t])):24===e.data.ef[t].ty?(n+=1,a=new SVGProLevelsFilter(o,e.effectsManager.effectElements[t])):25===e.data.ef[t].ty?(n+=1,a=new SVGDropShadowEffect(o,e.effectsManager.effectElements[t])):28===e.data.ef[t].ty?a=new SVGMatte3Effect(o,e.effectsManager.effectElements[t],e):29===e.data.ef[t].ty&&(n+=1,a=new SVGGaussianBlurEffect(o,e.effectsManager.effectElements[t])),a&&this.filters.push(a);n&&(e.globalData.defs.appendChild(o),e.layerElement.setAttribute("filter","url("+locationHref+"#"+i+")")),this.filters.length&&e.addRenderableComponent(this)}function CVContextData(){var e;for(this.saved=[],this.cArrPos=0,this.cTr=new Matrix,this.cO=1,this.savedOp=createTypedArray("float32",15),e=0;e<15;e+=1)this.saved[e]=createTypedArray("float32",16);this._length=15}function CVBaseElement(){}function CVImageElement(e,t,a){this.assetData=t.getAssetData(e.refId),this.img=t.imageLoader.getAsset(this.assetData),this.initElement(e,t,a)}function CVCompElement(e,t,a){this.completeLayers=!1,this.layers=e.layers,this.pendingElements=[],this.elements=createSizedArray(this.layers.length),this.initElement(e,t,a),this.tm=e.tm?PropertyFactory.getProp(this,e.tm,0,t.frameRate,this):{_placeholder:!0}}function CVMaskElement(e,t){var a;this.data=e,this.element=t,this.masksProperties=this.data.masksProperties||[],this.viewData=createSizedArray(this.masksProperties.length);var l=this.masksProperties.length,i=!1;for(a=0;a<l;a+=1)"n"!==this.masksProperties[a].mode&&(i=!0),this.viewData[a]=ShapePropertyFactory.getShapeProp(this.element,this.masksProperties[a],3);this.hasMasks=i,i&&this.element.addRenderableComponent(this)}function CVShapeElement(e,t,a){this.shapes=[],this.shapesData=e.shapes,this.stylesList=[],this.itemsData=[],this.prevViewData=[],this.shapeModifiers=[],this.processedElements=[],this.transformsManager=new ShapeTransformManager,this.initElement(e,t,a)}function CVSolidElement(e,t,a){this.initElement(e,t,a)}function CVTextElement(e,t,a){this.textSpans=[],this.yOffset=0,this.fillColorAnim=!1,this.strokeColorAnim=!1,this.strokeWidthAnim=!1,this.stroke=!1,this.fill=!1,this.justifyOffset=0,this.currentRender=null,this.renderType="canvas",this.values={fill:"rgba(0,0,0,0)",stroke:"rgba(0,0,0,0)",sWidth:0,fValue:""},this.initElement(e,t,a)}function CVEffects(){}function HBaseElement(){}function HSolidElement(e,t,a){this.initElement(e,t,a)}function HCompElement(e,t,a){this.layers=e.layers,this.supports3d=!e.hasMask,this.completeLayers=!1,this.pendingElements=[],this.elements=this.layers?createSizedArray(this.layers.length):[],this.initElement(e,t,a),this.tm=e.tm?PropertyFactory.getProp(this,e.tm,0,t.frameRate,this):{_placeholder:!0}}function HShapeElement(e,t,a){this.shapes=[],this.shapesData=e.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.shapesContainer=createNS("g"),this.initElement(e,t,a),this.prevViewData=[],this.currentBBox={x:999999,y:-999999,h:0,w:0}}function HTextElement(e,t,a){this.textSpans=[],this.textPaths=[],this.currentBBox={x:999999,y:-999999,h:0,w:0},this.renderType="svg",this.isMasked=!1,this.initElement(e,t,a)}function HImageElement(e,t,a){this.assetData=t.getAssetData(e.refId),this.initElement(e,t,a)}function HCameraElement(e,t,a){this.initFrame(),this.initBaseData(e,t,a),this.initHierarchy();var l=PropertyFactory.getProp;if(this.pe=l(this,e.pe,0,0,this),e.ks.p.s?(this.px=l(this,e.ks.p.x,1,0,this),this.py=l(this,e.ks.p.y,1,0,this),this.pz=l(this,e.ks.p.z,1,0,this)):this.p=l(this,e.ks.p,1,0,this),e.ks.a&&(this.a=l(this,e.ks.a,1,0,this)),e.ks.or.k.length&&e.ks.or.k[0].to){var i,o=e.ks.or.k.length;for(i=0;i<o;i+=1)e.ks.or.k[i].to=null,e.ks.or.k[i].ti=null}this.or=l(this,e.ks.or,1,degToRads,this),this.or.sh=!0,this.rx=l(this,e.ks.rx,0,degToRads,this),this.ry=l(this,e.ks.ry,0,degToRads,this),this.rz=l(this,e.ks.rz,0,degToRads,this),this.mat=new Matrix,this._prevMat=new Matrix,this._isFirstFrame=!0,this.finalTransform={mProp:this}}function HEffects(){}SVGMatte3Effect.prototype.findSymbol=function(e){for(var t=0,a=_svgMatteSymbols.length;t<a;){if(_svgMatteSymbols[t]===e)return _svgMatteSymbols[t];t+=1}return null},SVGMatte3Effect.prototype.replaceInParent=function(e,t){var a=e.layerElement.parentNode;if(a){for(var l,i=a.children,o=0,n=i.length;o<n&&i[o]!==e.layerElement;)o+=1;o<=n-2&&(l=i[o+1]);var r=createNS("use");r.setAttribute("href","#"+t),l?a.insertBefore(r,l):a.appendChild(r)}},SVGMatte3Effect.prototype.setElementAsMask=function(e,t){if(!this.findSymbol(t)){var a=createElementID(),l=createNS("mask");l.setAttribute("id",t.layerId),l.setAttribute("mask-type","alpha"),_svgMatteSymbols.push(t);var i=e.globalData.defs;i.appendChild(l);var o=createNS("symbol");o.setAttribute("id",a),this.replaceInParent(t,a),o.appendChild(t.layerElement),i.appendChild(o);var n=createNS("use");n.setAttribute("href","#"+a),l.appendChild(n),t.data.hd=!1,t.show()}e.setMatte(t.layerId)},SVGMatte3Effect.prototype.initialize=function(){for(var e=this.filterManager.effectElements[0].p.v,t=this.elem.comp.elements,a=0,l=t.length;a<l;)t[a]&&t[a].data.ind===e&&this.setElementAsMask(this.elem,t[a]),a+=1;this.initialized=!0},SVGMatte3Effect.prototype.renderFrame=function(){this.initialized||this.initialize()},SVGEffects.prototype.renderFrame=function(e){var t,a=this.filters.length;for(t=0;t<a;t+=1)this.filters[t].renderFrame(e)},CVContextData.prototype.duplicate=function(){var e=2*this._length,t=this.savedOp;this.savedOp=createTypedArray("float32",e),this.savedOp.set(t);var a=0;for(a=this._length;a<e;a+=1)this.saved[a]=createTypedArray("float32",16);this._length=e},CVContextData.prototype.reset=function(){this.cArrPos=0,this.cTr.reset(),this.cO=1},CVBaseElement.prototype={createElements:function(){},initRendererElement:function(){},createContainerElements:function(){this.canvasContext=this.globalData.canvasContext,this.renderableEffectsManager=new CVEffects(this)},createContent:function(){},setBlendMode:function(){var e=this.globalData;if(e.blendMode!==this.data.bm){e.blendMode=this.data.bm;var t=getBlendMode(this.data.bm);e.canvasContext.globalCompositeOperation=t}},createRenderableComponents:function(){this.maskManager=new CVMaskElement(this.data,this)},hideElement:function(){this.hidden||this.isInRange&&!this.isTransparent||(this.hidden=!0)},showElement:function(){this.isInRange&&!this.isTransparent&&(this.hidden=!1,this._isFirstFrame=!0,this.maskManager._isFirstFrame=!0)},renderFrame:function(){if(!this.hidden&&!this.data.hd){this.renderTransform(),this.renderRenderable(),this.setBlendMode();var e=0===this.data.ty;this.globalData.renderer.save(e),this.globalData.renderer.ctxTransform(this.finalTransform.mat.props),this.globalData.renderer.ctxOpacity(this.finalTransform.mProp.o.v),this.renderInnerContent(),this.globalData.renderer.restore(e),this.maskManager.hasMasks&&this.globalData.renderer.restore(!0),this._isFirstFrame&&(this._isFirstFrame=!1)}},destroy:function(){this.canvasContext=null,this.data=null,this.globalData=null,this.maskManager.destroy()},mHelper:new Matrix},CVBaseElement.prototype.hide=CVBaseElement.prototype.hideElement,CVBaseElement.prototype.show=CVBaseElement.prototype.showElement,extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement],CVImageElement),CVImageElement.prototype.initElement=SVGShapeElement.prototype.initElement,CVImageElement.prototype.prepareFrame=IImageElement.prototype.prepareFrame,CVImageElement.prototype.createContent=function(){if(this.img.width&&(this.assetData.w!==this.img.width||this.assetData.h!==this.img.height)){var e=createTag("canvas");e.width=this.assetData.w,e.height=this.assetData.h;var t,a,l=e.getContext("2d"),i=this.img.width,o=this.img.height,n=i/o,r=this.assetData.w/this.assetData.h,s=this.assetData.pr||this.globalData.renderConfig.imagePreserveAspectRatio;n>r&&"xMidYMid slice"===s||n<r&&"xMidYMid slice"!==s?t=(a=o)*r:a=(t=i)/r,l.drawImage(this.img,(i-t)/2,(o-a)/2,t,a,0,0,this.assetData.w,this.assetData.h),this.img=e}},CVImageElement.prototype.renderInnerContent=function(){this.canvasContext.drawImage(this.img,0,0)},CVImageElement.prototype.destroy=function(){this.img=null},extendPrototype([CanvasRenderer,ICompElement,CVBaseElement],CVCompElement),CVCompElement.prototype.renderInnerContent=function(){var e,t=this.canvasContext;for(t.beginPath(),t.moveTo(0,0),t.lineTo(this.data.w,0),t.lineTo(this.data.w,this.data.h),t.lineTo(0,this.data.h),t.lineTo(0,0),t.clip(),e=this.layers.length-1;e>=0;e-=1)(this.completeLayers||this.elements[e])&&this.elements[e].renderFrame()},CVCompElement.prototype.destroy=function(){var e;for(e=this.layers.length-1;e>=0;e-=1)this.elements[e]&&this.elements[e].destroy();this.layers=null,this.elements=null},CVMaskElement.prototype.renderFrame=function(){if(this.hasMasks){var e,t,a,l,i=this.element.finalTransform.mat,o=this.element.canvasContext,n=this.masksProperties.length;for(o.beginPath(),e=0;e<n;e+=1)if("n"!==this.masksProperties[e].mode){var r;this.masksProperties[e].inv&&(o.moveTo(0,0),o.lineTo(this.element.globalData.compSize.w,0),o.lineTo(this.element.globalData.compSize.w,this.element.globalData.compSize.h),o.lineTo(0,this.element.globalData.compSize.h),o.lineTo(0,0)),l=this.viewData[e].v,t=i.applyToPointArray(l.v[0][0],l.v[0][1],0),o.moveTo(t[0],t[1]);var s=l._length;for(r=1;r<s;r+=1)a=i.applyToTriplePoints(l.o[r-1],l.i[r],l.v[r]),o.bezierCurveTo(a[0],a[1],a[2],a[3],a[4],a[5]);a=i.applyToTriplePoints(l.o[r-1],l.i[0],l.v[0]),o.bezierCurveTo(a[0],a[1],a[2],a[3],a[4],a[5])}this.element.globalData.renderer.save(!0),o.clip()}},CVMaskElement.prototype.getMaskProperty=MaskElement.prototype.getMaskProperty,CVMaskElement.prototype.destroy=function(){this.element=null},extendPrototype([BaseElement,TransformElement,CVBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableElement],CVShapeElement),CVShapeElement.prototype.initElement=RenderableDOMElement.prototype.initElement,CVShapeElement.prototype.transformHelper={opacity:1,_opMdf:!1},CVShapeElement.prototype.dashResetter=[],CVShapeElement.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,!0,[])},CVShapeElement.prototype.createStyleElement=function(e,t){var a={data:e,type:e.ty,preTransforms:this.transformsManager.addTransformSequence(t),transforms:[],elements:[],closed:!0===e.hd},l={};if("fl"===e.ty||"st"===e.ty?(l.c=PropertyFactory.getProp(this,e.c,1,255,this),l.c.k||(a.co="rgb("+bmFloor(l.c.v[0])+","+bmFloor(l.c.v[1])+","+bmFloor(l.c.v[2])+")")):"gf"!==e.ty&&"gs"!==e.ty||(l.s=PropertyFactory.getProp(this,e.s,1,null,this),l.e=PropertyFactory.getProp(this,e.e,1,null,this),l.h=PropertyFactory.getProp(this,e.h||{k:0},0,.01,this),l.a=PropertyFactory.getProp(this,e.a||{k:0},0,degToRads,this),l.g=new GradientProperty(this,e.g,this)),l.o=PropertyFactory.getProp(this,e.o,0,.01,this),"st"===e.ty||"gs"===e.ty){if(a.lc=this.lcEnum[e.lc]||"round",a.lj=this.ljEnum[e.lj]||"round",1==e.lj&&(a.ml=e.ml),l.w=PropertyFactory.getProp(this,e.w,0,null,this),l.w.k||(a.wi=l.w.v),e.d){var i=new DashProperty(this,e.d,"canvas",this);l.d=i,l.d.k||(a.da=l.d.dashArray,a.do=l.d.dashoffset[0])}}else a.r=2===e.r?"evenodd":"nonzero";return this.stylesList.push(a),l.style=a,l},CVShapeElement.prototype.createGroupElement=function(){return{it:[],prevViewData:[]}},CVShapeElement.prototype.createTransformElement=function(e){return{transform:{opacity:1,_opMdf:!1,key:this.transformsManager.getNewKey(),op:PropertyFactory.getProp(this,e.o,0,.01,this),mProps:TransformPropertyFactory.getTransformProperty(this,e,this)}}},CVShapeElement.prototype.createShapeElement=function(e){var t=new CVShapeData(this,e,this.stylesList,this.transformsManager);return this.shapes.push(t),this.addShapeToModifiers(t),t},CVShapeElement.prototype.reloadShapes=function(){var e;this._isFirstFrame=!0;var t=this.itemsData.length;for(e=0;e<t;e+=1)this.prevViewData[e]=this.itemsData[e];for(this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,!0,[]),t=this.dynamicProperties.length,e=0;e<t;e+=1)this.dynamicProperties[e].getValue();this.renderModifiers(),this.transformsManager.processSequences(this._isFirstFrame)},CVShapeElement.prototype.addTransformToStyleList=function(e){var t,a=this.stylesList.length;for(t=0;t<a;t+=1)this.stylesList[t].closed||this.stylesList[t].transforms.push(e)},CVShapeElement.prototype.removeTransformFromStyleList=function(){var e,t=this.stylesList.length;for(e=0;e<t;e+=1)this.stylesList[e].closed||this.stylesList[e].transforms.pop()},CVShapeElement.prototype.closeStyles=function(e){var t,a=e.length;for(t=0;t<a;t+=1)e[t].closed=!0},CVShapeElement.prototype.searchShapes=function(e,t,a,l,i){var o,n,r,s,c,u,p=e.length-1,b=[],d=[],g=[].concat(i);for(o=p;o>=0;o-=1){if((s=this.searchProcessedElement(e[o]))?t[o]=a[s-1]:e[o]._shouldRender=l,"fl"===e[o].ty||"st"===e[o].ty||"gf"===e[o].ty||"gs"===e[o].ty)s?t[o].style.closed=!1:t[o]=this.createStyleElement(e[o],g),b.push(t[o].style);else if("gr"===e[o].ty){if(s)for(r=t[o].it.length,n=0;n<r;n+=1)t[o].prevViewData[n]=t[o].it[n];else t[o]=this.createGroupElement(e[o]);this.searchShapes(e[o].it,t[o].it,t[o].prevViewData,l,g)}else"tr"===e[o].ty?(s||(u=this.createTransformElement(e[o]),t[o]=u),g.push(t[o]),this.addTransformToStyleList(t[o])):"sh"===e[o].ty||"rc"===e[o].ty||"el"===e[o].ty||"sr"===e[o].ty?s||(t[o]=this.createShapeElement(e[o])):"tm"===e[o].ty||"rd"===e[o].ty||"pb"===e[o].ty?(s?(c=t[o]).closed=!1:((c=ShapeModifiers.getModifier(e[o].ty)).init(this,e[o]),t[o]=c,this.shapeModifiers.push(c)),d.push(c)):"rp"===e[o].ty&&(s?(c=t[o]).closed=!0:(c=ShapeModifiers.getModifier(e[o].ty),t[o]=c,c.init(this,e,o,t),this.shapeModifiers.push(c),l=!1),d.push(c));this.addProcessedElement(e[o],o+1)}for(this.removeTransformFromStyleList(),this.closeStyles(b),p=d.length,o=0;o<p;o+=1)d[o].closed=!0},CVShapeElement.prototype.renderInnerContent=function(){this.transformHelper.opacity=1,this.transformHelper._opMdf=!1,this.renderModifiers(),this.transformsManager.processSequences(this._isFirstFrame),this.renderShape(this.transformHelper,this.shapesData,this.itemsData,!0)},CVShapeElement.prototype.renderShapeTransform=function(e,t){(e._opMdf||t.op._mdf||this._isFirstFrame)&&(t.opacity=e.opacity,t.opacity*=t.op.v,t._opMdf=!0)},CVShapeElement.prototype.drawLayer=function(){var e,t,a,l,i,o,n,r,s,c=this.stylesList.length,u=this.globalData.renderer,p=this.globalData.canvasContext;for(e=0;e<c;e+=1)if(("st"!==(r=(s=this.stylesList[e]).type)&&"gs"!==r||0!==s.wi)&&s.data._shouldRender&&0!==s.coOp&&0!==this.globalData.currentGlobalAlpha){for(u.save(),o=s.elements,"st"===r||"gs"===r?(p.strokeStyle="st"===r?s.co:s.grd,p.lineWidth=s.wi,p.lineCap=s.lc,p.lineJoin=s.lj,p.miterLimit=s.ml||0):p.fillStyle="fl"===r?s.co:s.grd,u.ctxOpacity(s.coOp),"st"!==r&&"gs"!==r&&p.beginPath(),u.ctxTransform(s.preTransforms.finalTransform.props),a=o.length,t=0;t<a;t+=1){for("st"!==r&&"gs"!==r||(p.beginPath(),s.da&&(p.setLineDash(s.da),p.lineDashOffset=s.do)),i=(n=o[t].trNodes).length,l=0;l<i;l+=1)"m"===n[l].t?p.moveTo(n[l].p[0],n[l].p[1]):"c"===n[l].t?p.bezierCurveTo(n[l].pts[0],n[l].pts[1],n[l].pts[2],n[l].pts[3],n[l].pts[4],n[l].pts[5]):p.closePath();"st"!==r&&"gs"!==r||(p.stroke(),s.da&&p.setLineDash(this.dashResetter))}"st"!==r&&"gs"!==r&&p.fill(s.r),u.restore()}},CVShapeElement.prototype.renderShape=function(e,t,a,l){var i,o;for(o=e,i=t.length-1;i>=0;i-=1)"tr"===t[i].ty?(o=a[i].transform,this.renderShapeTransform(e,o)):"sh"===t[i].ty||"el"===t[i].ty||"rc"===t[i].ty||"sr"===t[i].ty?this.renderPath(t[i],a[i]):"fl"===t[i].ty?this.renderFill(t[i],a[i],o):"st"===t[i].ty?this.renderStroke(t[i],a[i],o):"gf"===t[i].ty||"gs"===t[i].ty?this.renderGradientFill(t[i],a[i],o):"gr"===t[i].ty?this.renderShape(o,t[i].it,a[i].it):t[i].ty;l&&this.drawLayer()},CVShapeElement.prototype.renderStyledShape=function(e,t){if(this._isFirstFrame||t._mdf||e.transforms._mdf){var a,l,i,o=e.trNodes,n=t.paths,r=n._length;o.length=0;var s=e.transforms.finalTransform;for(i=0;i<r;i+=1){var c=n.shapes[i];if(c&&c.v){for(l=c._length,a=1;a<l;a+=1)1===a&&o.push({t:"m",p:s.applyToPointArray(c.v[0][0],c.v[0][1],0)}),o.push({t:"c",pts:s.applyToTriplePoints(c.o[a-1],c.i[a],c.v[a])});1===l&&o.push({t:"m",p:s.applyToPointArray(c.v[0][0],c.v[0][1],0)}),c.c&&l&&(o.push({t:"c",pts:s.applyToTriplePoints(c.o[a-1],c.i[0],c.v[0])}),o.push({t:"z"}))}}e.trNodes=o}},CVShapeElement.prototype.renderPath=function(e,t){if(!0!==e.hd&&e._shouldRender){var a,l=t.styledShapes.length;for(a=0;a<l;a+=1)this.renderStyledShape(t.styledShapes[a],t.sh)}},CVShapeElement.prototype.renderFill=function(e,t,a){var l=t.style;(t.c._mdf||this._isFirstFrame)&&(l.co="rgb("+bmFloor(t.c.v[0])+","+bmFloor(t.c.v[1])+","+bmFloor(t.c.v[2])+")"),(t.o._mdf||a._opMdf||this._isFirstFrame)&&(l.coOp=t.o.v*a.opacity)},CVShapeElement.prototype.renderGradientFill=function(e,t,a){var l,i=t.style;if(!i.grd||t.g._mdf||t.s._mdf||t.e._mdf||1!==e.t&&(t.h._mdf||t.a._mdf)){var o,n=this.globalData.canvasContext,r=t.s.v,s=t.e.v;if(1===e.t)l=n.createLinearGradient(r[0],r[1],s[0],s[1]);else{var c=Math.sqrt(Math.pow(r[0]-s[0],2)+Math.pow(r[1]-s[1],2)),u=Math.atan2(s[1]-r[1],s[0]-r[0]),p=t.h.v;p>=1?p=.99:p<=-1&&(p=-.99);var b=c*p,d=Math.cos(u+t.a.v)*b+r[0],g=Math.sin(u+t.a.v)*b+r[1];l=n.createRadialGradient(d,g,0,r[0],r[1],c)}var m=e.g.p,y=t.g.c,f=1;for(o=0;o<m;o+=1)t.g._hasOpacity&&t.g._collapsable&&(f=t.g.o[2*o+1]),l.addColorStop(y[4*o]/100,"rgba("+y[4*o+1]+","+y[4*o+2]+","+y[4*o+3]+","+f+")");i.grd=l}i.coOp=t.o.v*a.opacity},CVShapeElement.prototype.renderStroke=function(e,t,a){var l=t.style,i=t.d;i&&(i._mdf||this._isFirstFrame)&&(l.da=i.dashArray,l.do=i.dashoffset[0]),(t.c._mdf||this._isFirstFrame)&&(l.co="rgb("+bmFloor(t.c.v[0])+","+bmFloor(t.c.v[1])+","+bmFloor(t.c.v[2])+")"),(t.o._mdf||a._opMdf||this._isFirstFrame)&&(l.coOp=t.o.v*a.opacity),(t.w._mdf||this._isFirstFrame)&&(l.wi=t.w.v)},CVShapeElement.prototype.destroy=function(){this.shapesData=null,this.globalData=null,this.canvasContext=null,this.stylesList.length=0,this.itemsData.length=0},extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement],CVSolidElement),CVSolidElement.prototype.initElement=SVGShapeElement.prototype.initElement,CVSolidElement.prototype.prepareFrame=IImageElement.prototype.prepareFrame,CVSolidElement.prototype.renderInnerContent=function(){var e=this.canvasContext;e.fillStyle=this.data.sc,e.fillRect(0,0,this.data.sw,this.data.sh)},extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement,ITextElement],CVTextElement),CVTextElement.prototype.tHelper=createTag("canvas").getContext("2d"),CVTextElement.prototype.buildNewText=function(){var e=this.textProperty.currentData;this.renderedLetters=createSizedArray(e.l?e.l.length:0);var t=!1;e.fc?(t=!0,this.values.fill=this.buildColor(e.fc)):this.values.fill="rgba(0,0,0,0)",this.fill=t;var a=!1;e.sc&&(a=!0,this.values.stroke=this.buildColor(e.sc),this.values.sWidth=e.sw);var l,i,o,n,r,s,c,u,p,b,d,g,m=this.globalData.fontManager.getFontByName(e.f),y=e.l,f=this.mHelper;this.stroke=a,this.values.fValue=e.finalSize+"px "+this.globalData.fontManager.getFontByName(e.f).fFamily,i=e.finalText.length;var h=this.data.singleShape,v=.001*e.tr*e.finalSize,_=0,T=0,C=!0,S=0;for(l=0;l<i;l+=1){for(n=(o=this.globalData.fontManager.getCharData(e.finalText[l],m.fStyle,this.globalData.fontManager.getFontByName(e.f).fFamily))&&o.data||{},f.reset(),h&&y[l].n&&(_=-v,T+=e.yOffset,T+=C?1:0,C=!1),p=(c=n.shapes?n.shapes[0].it:[]).length,f.scale(e.finalSize/100,e.finalSize/100),h&&this.applyTextPropertiesToMatrix(e,f,y[l].line,_,T),d=createSizedArray(p),u=0;u<p;u+=1){for(s=c[u].ks.k.i.length,b=c[u].ks.k,g=[],r=1;r<s;r+=1)1===r&&g.push(f.applyToX(b.v[0][0],b.v[0][1],0),f.applyToY(b.v[0][0],b.v[0][1],0)),g.push(f.applyToX(b.o[r-1][0],b.o[r-1][1],0),f.applyToY(b.o[r-1][0],b.o[r-1][1],0),f.applyToX(b.i[r][0],b.i[r][1],0),f.applyToY(b.i[r][0],b.i[r][1],0),f.applyToX(b.v[r][0],b.v[r][1],0),f.applyToY(b.v[r][0],b.v[r][1],0));g.push(f.applyToX(b.o[r-1][0],b.o[r-1][1],0),f.applyToY(b.o[r-1][0],b.o[r-1][1],0),f.applyToX(b.i[0][0],b.i[0][1],0),f.applyToY(b.i[0][0],b.i[0][1],0),f.applyToX(b.v[0][0],b.v[0][1],0),f.applyToY(b.v[0][0],b.v[0][1],0)),d[u]=g}h&&(_+=y[l].l,_+=v),this.textSpans[S]?this.textSpans[S].elem=d:this.textSpans[S]={elem:d},S+=1}},CVTextElement.prototype.renderInnerContent=function(){var e,t,a,l,i,o,n=this.canvasContext;n.font=this.values.fValue,n.lineCap="butt",n.lineJoin="miter",n.miterLimit=4,this.data.singleShape||this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag);var r,s=this.textAnimator.renderedLetters,c=this.textProperty.currentData.l;t=c.length;var u,p,b=null,d=null,g=null;for(e=0;e<t;e+=1)if(!c[e].n){if((r=s[e])&&(this.globalData.renderer.save(),this.globalData.renderer.ctxTransform(r.p),this.globalData.renderer.ctxOpacity(r.o)),this.fill){for(r&&r.fc?b!==r.fc&&(b=r.fc,n.fillStyle=r.fc):b!==this.values.fill&&(b=this.values.fill,n.fillStyle=this.values.fill),l=(u=this.textSpans[e].elem).length,this.globalData.canvasContext.beginPath(),a=0;a<l;a+=1)for(o=(p=u[a]).length,this.globalData.canvasContext.moveTo(p[0],p[1]),i=2;i<o;i+=6)this.globalData.canvasContext.bezierCurveTo(p[i],p[i+1],p[i+2],p[i+3],p[i+4],p[i+5]);this.globalData.canvasContext.closePath(),this.globalData.canvasContext.fill()}if(this.stroke){for(r&&r.sw?g!==r.sw&&(g=r.sw,n.lineWidth=r.sw):g!==this.values.sWidth&&(g=this.values.sWidth,n.lineWidth=this.values.sWidth),r&&r.sc?d!==r.sc&&(d=r.sc,n.strokeStyle=r.sc):d!==this.values.stroke&&(d=this.values.stroke,n.strokeStyle=this.values.stroke),l=(u=this.textSpans[e].elem).length,this.globalData.canvasContext.beginPath(),a=0;a<l;a+=1)for(o=(p=u[a]).length,this.globalData.canvasContext.moveTo(p[0],p[1]),i=2;i<o;i+=6)this.globalData.canvasContext.bezierCurveTo(p[i],p[i+1],p[i+2],p[i+3],p[i+4],p[i+5]);this.globalData.canvasContext.closePath(),this.globalData.canvasContext.stroke()}r&&this.globalData.renderer.restore()}},CVEffects.prototype.renderFrame=function(){},HBaseElement.prototype={checkBlendMode:function(){},initRendererElement:function(){this.baseElement=createTag(this.data.tg||"div"),this.data.hasMask?(this.svgElement=createNS("svg"),this.layerElement=createNS("g"),this.maskedElement=this.layerElement,this.svgElement.appendChild(this.layerElement),this.baseElement.appendChild(this.svgElement)):this.layerElement=this.baseElement,styleDiv(this.baseElement)},createContainerElements:function(){this.renderableEffectsManager=new CVEffects(this),this.transformedElement=this.baseElement,this.maskedElement=this.layerElement,this.data.ln&&this.layerElement.setAttribute("id",this.data.ln),this.data.cl&&this.layerElement.setAttribute("class",this.data.cl),0!==this.data.bm&&this.setBlendMode()},renderElement:function(){var e=this.transformedElement?this.transformedElement.style:{};if(this.finalTransform._matMdf){var t=this.finalTransform.mat.toCSS();e.transform=t,e.webkitTransform=t}this.finalTransform._opMdf&&(e.opacity=this.finalTransform.mProp.o.v)},renderFrame:function(){this.data.hd||this.hidden||(this.renderTransform(),this.renderRenderable(),this.renderElement(),this.renderInnerContent(),this._isFirstFrame&&(this._isFirstFrame=!1))},destroy:function(){this.layerElement=null,this.transformedElement=null,this.matteElement&&(this.matteElement=null),this.maskManager&&(this.maskManager.destroy(),this.maskManager=null)},createRenderableComponents:function(){this.maskManager=new MaskElement(this.data,this,this.globalData)},addEffects:function(){},setMatte:function(){}},HBaseElement.prototype.getBaseElement=SVGBaseElement.prototype.getBaseElement,HBaseElement.prototype.destroyBaseElement=HBaseElement.prototype.destroy,HBaseElement.prototype.buildElementParenting=HybridRenderer.prototype.buildElementParenting,extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement],HSolidElement),HSolidElement.prototype.createContent=function(){var e;this.data.hasMask?((e=createNS("rect")).setAttribute("width",this.data.sw),e.setAttribute("height",this.data.sh),e.setAttribute("fill",this.data.sc),this.svgElement.setAttribute("width",this.data.sw),this.svgElement.setAttribute("height",this.data.sh)):((e=createTag("div")).style.width=this.data.sw+"px",e.style.height=this.data.sh+"px",e.style.backgroundColor=this.data.sc),this.layerElement.appendChild(e)},extendPrototype([HybridRenderer,ICompElement,HBaseElement],HCompElement),HCompElement.prototype._createBaseContainerElements=HCompElement.prototype.createContainerElements,HCompElement.prototype.createContainerElements=function(){this._createBaseContainerElements(),this.data.hasMask?(this.svgElement.setAttribute("width",this.data.w),this.svgElement.setAttribute("height",this.data.h),this.transformedElement=this.baseElement):this.transformedElement=this.layerElement},HCompElement.prototype.addTo3dContainer=function(e,t){for(var a,l=0;l<t;)this.elements[l]&&this.elements[l].getBaseElement&&(a=this.elements[l].getBaseElement()),l+=1;a?this.layerElement.insertBefore(e,a):this.layerElement.appendChild(e)},extendPrototype([BaseElement,TransformElement,HSolidElement,SVGShapeElement,HBaseElement,HierarchyElement,FrameElement,RenderableElement],HShapeElement),HShapeElement.prototype._renderShapeFrame=HShapeElement.prototype.renderInnerContent,HShapeElement.prototype.createContent=function(){var e;if(this.baseElement.style.fontSize=0,this.data.hasMask)this.layerElement.appendChild(this.shapesContainer),e=this.svgElement;else{e=createNS("svg");var t=this.comp.data?this.comp.data:this.globalData.compSize;e.setAttribute("width",t.w),e.setAttribute("height",t.h),e.appendChild(this.shapesContainer),this.layerElement.appendChild(e)}this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.shapesContainer,0,[],!0),this.filterUniqueShapes(),this.shapeCont=e},HShapeElement.prototype.getTransformedPoint=function(e,t){var a,l=e.length;for(a=0;a<l;a+=1)t=e[a].mProps.v.applyToPointArray(t[0],t[1],0);return t},HShapeElement.prototype.calculateShapeBoundingBox=function(e,t){var a,l,i,o,n,r=e.sh.v,s=e.transformers,c=r._length;if(!(c<=1)){for(a=0;a<c-1;a+=1)l=this.getTransformedPoint(s,r.v[a]),i=this.getTransformedPoint(s,r.o[a]),o=this.getTransformedPoint(s,r.i[a+1]),n=this.getTransformedPoint(s,r.v[a+1]),this.checkBounds(l,i,o,n,t);r.c&&(l=this.getTransformedPoint(s,r.v[a]),i=this.getTransformedPoint(s,r.o[a]),o=this.getTransformedPoint(s,r.i[0]),n=this.getTransformedPoint(s,r.v[0]),this.checkBounds(l,i,o,n,t))}},HShapeElement.prototype.checkBounds=function(e,t,a,l,i){this.getBoundsOfCurve(e,t,a,l);var o=this.shapeBoundingBox;i.x=bmMin(o.left,i.x),i.xMax=bmMax(o.right,i.xMax),i.y=bmMin(o.top,i.y),i.yMax=bmMax(o.bottom,i.yMax)},HShapeElement.prototype.shapeBoundingBox={left:0,right:0,top:0,bottom:0},HShapeElement.prototype.tempBoundingBox={x:0,xMax:0,y:0,yMax:0,width:0,height:0},HShapeElement.prototype.getBoundsOfCurve=function(e,t,a,l){for(var i,o,n,r,s,c,u,p=[[e[0],l[0]],[e[1],l[1]]],b=0;b<2;++b)o=6*e[b]-12*t[b]+6*a[b],i=-3*e[b]+9*t[b]-9*a[b]+3*l[b],n=3*t[b]-3*e[b],o|=0,n|=0,0==(i|=0)&&0===o||(0===i?(r=-n/o)>0&&r<1&&p[b].push(this.calculateF(r,e,t,a,l,b)):(s=o*o-4*n*i)>=0&&((c=(-o+bmSqrt(s))/(2*i))>0&&c<1&&p[b].push(this.calculateF(c,e,t,a,l,b)),(u=(-o-bmSqrt(s))/(2*i))>0&&u<1&&p[b].push(this.calculateF(u,e,t,a,l,b))));this.shapeBoundingBox.left=bmMin.apply(null,p[0]),this.shapeBoundingBox.top=bmMin.apply(null,p[1]),this.shapeBoundingBox.right=bmMax.apply(null,p[0]),this.shapeBoundingBox.bottom=bmMax.apply(null,p[1])},HShapeElement.prototype.calculateF=function(e,t,a,l,i,o){return bmPow(1-e,3)*t[o]+3*bmPow(1-e,2)*e*a[o]+3*(1-e)*bmPow(e,2)*l[o]+bmPow(e,3)*i[o]},HShapeElement.prototype.calculateBoundingBox=function(e,t){var a,l=e.length;for(a=0;a<l;a+=1)e[a]&&e[a].sh?this.calculateShapeBoundingBox(e[a],t):e[a]&&e[a].it&&this.calculateBoundingBox(e[a].it,t)},HShapeElement.prototype.currentBoxContains=function(e){return this.currentBBox.x<=e.x&&this.currentBBox.y<=e.y&&this.currentBBox.width+this.currentBBox.x>=e.x+e.width&&this.currentBBox.height+this.currentBBox.y>=e.y+e.height},HShapeElement.prototype.renderInnerContent=function(){if(this._renderShapeFrame(),!this.hidden&&(this._isFirstFrame||this._mdf)){var e=this.tempBoundingBox,t=999999;if(e.x=t,e.xMax=-t,e.y=t,e.yMax=-t,this.calculateBoundingBox(this.itemsData,e),e.width=e.xMax<e.x?0:e.xMax-e.x,e.height=e.yMax<e.y?0:e.yMax-e.y,this.currentBoxContains(e))return;var a=!1;if(this.currentBBox.w!==e.width&&(this.currentBBox.w=e.width,this.shapeCont.setAttribute("width",e.width),a=!0),this.currentBBox.h!==e.height&&(this.currentBBox.h=e.height,this.shapeCont.setAttribute("height",e.height),a=!0),a||this.currentBBox.x!==e.x||this.currentBBox.y!==e.y){this.currentBBox.w=e.width,this.currentBBox.h=e.height,this.currentBBox.x=e.x,this.currentBBox.y=e.y,this.shapeCont.setAttribute("viewBox",this.currentBBox.x+" "+this.currentBBox.y+" "+this.currentBBox.w+" "+this.currentBBox.h);var l=this.shapeCont.style,i="translate("+this.currentBBox.x+"px,"+this.currentBBox.y+"px)";l.transform=i,l.webkitTransform=i}}},extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement],HTextElement),HTextElement.prototype.createContent=function(){if(this.isMasked=this.checkMasks(),this.isMasked){this.renderType="svg",this.compW=this.comp.data.w,this.compH=this.comp.data.h,this.svgElement.setAttribute("width",this.compW),this.svgElement.setAttribute("height",this.compH);var e=createNS("g");this.maskedElement.appendChild(e),this.innerElem=e}else this.renderType="html",this.innerElem=this.layerElement;this.checkParenting()},HTextElement.prototype.buildNewText=function(){var e=this.textProperty.currentData;this.renderedLetters=createSizedArray(e.l?e.l.length:0);var t=this.innerElem.style,a=e.fc?this.buildColor(e.fc):"rgba(0,0,0,0)";t.fill=a,t.color=a,e.sc&&(t.stroke=this.buildColor(e.sc),t.strokeWidth=e.sw+"px");var l,i,o=this.globalData.fontManager.getFontByName(e.f);if(!this.globalData.fontManager.chars)if(t.fontSize=e.finalSize+"px",t.lineHeight=e.finalSize+"px",o.fClass)this.innerElem.className=o.fClass;else{t.fontFamily=o.fFamily;var n=e.fWeight,r=e.fStyle;t.fontStyle=r,t.fontWeight=n}var s,c,u,p=e.l;i=p.length;var b,d=this.mHelper,g="",m=0;for(l=0;l<i;l+=1){if(this.globalData.fontManager.chars?(this.textPaths[m]?s=this.textPaths[m]:((s=createNS("path")).setAttribute("stroke-linecap","butt"),s.setAttribute("stroke-linejoin","round"),s.setAttribute("stroke-miterlimit","4")),this.isMasked||(this.textSpans[m]?u=(c=this.textSpans[m]).children[0]:((c=createTag("div")).style.lineHeight=0,(u=createNS("svg")).appendChild(s),styleDiv(c)))):this.isMasked?s=this.textPaths[m]?this.textPaths[m]:createNS("text"):this.textSpans[m]?(c=this.textSpans[m],s=this.textPaths[m]):(styleDiv(c=createTag("span")),styleDiv(s=createTag("span")),c.appendChild(s)),this.globalData.fontManager.chars){var y,f=this.globalData.fontManager.getCharData(e.finalText[l],o.fStyle,this.globalData.fontManager.getFontByName(e.f).fFamily);if(y=f?f.data:null,d.reset(),y&&y.shapes&&(b=y.shapes[0].it,d.scale(e.finalSize/100,e.finalSize/100),g=this.createPathShape(d,b),s.setAttribute("d",g)),this.isMasked)this.innerElem.appendChild(s);else{if(this.innerElem.appendChild(c),y&&y.shapes){document.body.appendChild(u);var h=u.getBBox();u.setAttribute("width",h.width+2),u.setAttribute("height",h.height+2),u.setAttribute("viewBox",h.x-1+" "+(h.y-1)+" "+(h.width+2)+" "+(h.height+2));var v=u.style,_="translate("+(h.x-1)+"px,"+(h.y-1)+"px)";v.transform=_,v.webkitTransform=_,p[l].yOffset=h.y-1}else u.setAttribute("width",1),u.setAttribute("height",1);c.appendChild(u)}}else if(s.textContent=p[l].val,s.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),this.isMasked)this.innerElem.appendChild(s);else{this.innerElem.appendChild(c);var T=s.style,C="translate3d(0,"+-e.finalSize/1.2+"px,0)";T.transform=C,T.webkitTransform=C}this.isMasked?this.textSpans[m]=s:this.textSpans[m]=c,this.textSpans[m].style.display="block",this.textPaths[m]=s,m+=1}for(;m<this.textSpans.length;)this.textSpans[m].style.display="none",m+=1},HTextElement.prototype.renderInnerContent=function(){var e;if(this.data.singleShape){if(!this._isFirstFrame&&!this.lettersChangedFlag)return;if(this.isMasked&&this.finalTransform._matMdf){this.svgElement.setAttribute("viewBox",-this.finalTransform.mProp.p.v[0]+" "+-this.finalTransform.mProp.p.v[1]+" "+this.compW+" "+this.compH),e=this.svgElement.style;var t="translate("+-this.finalTransform.mProp.p.v[0]+"px,"+-this.finalTransform.mProp.p.v[1]+"px)";e.transform=t,e.webkitTransform=t}}if(this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag),this.lettersChangedFlag||this.textAnimator.lettersChangedFlag){var a,l,i,o,n,r=0,s=this.textAnimator.renderedLetters,c=this.textProperty.currentData.l;for(l=c.length,a=0;a<l;a+=1)c[a].n?r+=1:(o=this.textSpans[a],n=this.textPaths[a],i=s[r],r+=1,i._mdf.m&&(this.isMasked?o.setAttribute("transform",i.m):(o.style.webkitTransform=i.m,o.style.transform=i.m)),o.style.opacity=i.o,i.sw&&i._mdf.sw&&n.setAttribute("stroke-width",i.sw),i.sc&&i._mdf.sc&&n.setAttribute("stroke",i.sc),i.fc&&i._mdf.fc&&(n.setAttribute("fill",i.fc),n.style.color=i.fc));if(this.innerElem.getBBox&&!this.hidden&&(this._isFirstFrame||this._mdf)){var u=this.innerElem.getBBox();if(this.currentBBox.w!==u.width&&(this.currentBBox.w=u.width,this.svgElement.setAttribute("width",u.width)),this.currentBBox.h!==u.height&&(this.currentBBox.h=u.height,this.svgElement.setAttribute("height",u.height)),this.currentBBox.w!==u.width+2||this.currentBBox.h!==u.height+2||this.currentBBox.x!==u.x-1||this.currentBBox.y!==u.y-1){this.currentBBox.w=u.width+2,this.currentBBox.h=u.height+2,this.currentBBox.x=u.x-1,this.currentBBox.y=u.y-1,this.svgElement.setAttribute("viewBox",this.currentBBox.x+" "+this.currentBBox.y+" "+this.currentBBox.w+" "+this.currentBBox.h),e=this.svgElement.style;var p="translate("+this.currentBBox.x+"px,"+this.currentBBox.y+"px)";e.transform=p,e.webkitTransform=p}}}},extendPrototype([BaseElement,TransformElement,HBaseElement,HSolidElement,HierarchyElement,FrameElement,RenderableElement],HImageElement),HImageElement.prototype.createContent=function(){var e=this.globalData.getAssetsPath(this.assetData),t=new Image;this.data.hasMask?(this.imageElem=createNS("image"),this.imageElem.setAttribute("width",this.assetData.w+"px"),this.imageElem.setAttribute("height",this.assetData.h+"px"),this.imageElem.setAttributeNS("http://www.w3.org/1999/xlink","href",e),this.layerElement.appendChild(this.imageElem),this.baseElement.setAttribute("width",this.assetData.w),this.baseElement.setAttribute("height",this.assetData.h)):this.layerElement.appendChild(t),t.crossOrigin="anonymous",t.src=e,this.data.ln&&this.baseElement.setAttribute("id",this.data.ln)},extendPrototype([BaseElement,FrameElement,HierarchyElement],HCameraElement),HCameraElement.prototype.setup=function(){var e,t,a,l,i=this.comp.threeDElements.length;for(e=0;e<i;e+=1)if("3d"===(t=this.comp.threeDElements[e]).type){a=t.perspectiveElem.style,l=t.container.style;var o=this.pe.v+"px",n="matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)";a.perspective=o,a.webkitPerspective=o,l.transformOrigin="0px 0px 0px",l.mozTransformOrigin="0px 0px 0px",l.webkitTransformOrigin="0px 0px 0px",a.transform=n,a.webkitTransform=n}},HCameraElement.prototype.createElements=function(){},HCameraElement.prototype.hide=function(){},HCameraElement.prototype.renderFrame=function(){var e,t,a=this._isFirstFrame;if(this.hierarchy)for(t=this.hierarchy.length,e=0;e<t;e+=1)a=this.hierarchy[e].finalTransform.mProp._mdf||a;if(a||this.pe._mdf||this.p&&this.p._mdf||this.px&&(this.px._mdf||this.py._mdf||this.pz._mdf)||this.rx._mdf||this.ry._mdf||this.rz._mdf||this.or._mdf||this.a&&this.a._mdf){if(this.mat.reset(),this.hierarchy)for(e=t=this.hierarchy.length-1;e>=0;e-=1){var l=this.hierarchy[e].finalTransform.mProp;this.mat.translate(-l.p.v[0],-l.p.v[1],l.p.v[2]),this.mat.rotateX(-l.or.v[0]).rotateY(-l.or.v[1]).rotateZ(l.or.v[2]),this.mat.rotateX(-l.rx.v).rotateY(-l.ry.v).rotateZ(l.rz.v),this.mat.scale(1/l.s.v[0],1/l.s.v[1],1/l.s.v[2]),this.mat.translate(l.a.v[0],l.a.v[1],l.a.v[2])}if(this.p?this.mat.translate(-this.p.v[0],-this.p.v[1],this.p.v[2]):this.mat.translate(-this.px.v,-this.py.v,this.pz.v),this.a){var i;i=this.p?[this.p.v[0]-this.a.v[0],this.p.v[1]-this.a.v[1],this.p.v[2]-this.a.v[2]]:[this.px.v-this.a.v[0],this.py.v-this.a.v[1],this.pz.v-this.a.v[2]];var o=Math.sqrt(Math.pow(i[0],2)+Math.pow(i[1],2)+Math.pow(i[2],2)),n=[i[0]/o,i[1]/o,i[2]/o],r=Math.sqrt(n[2]*n[2]+n[0]*n[0]),s=Math.atan2(n[1],r),c=Math.atan2(n[0],-n[2]);this.mat.rotateY(c).rotateX(-s)}this.mat.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v),this.mat.rotateX(-this.or.v[0]).rotateY(-this.or.v[1]).rotateZ(this.or.v[2]),this.mat.translate(this.globalData.compSize.w/2,this.globalData.compSize.h/2,0),this.mat.translate(0,0,this.pe.v);var u=!this._prevMat.equals(this.mat);if((u||this.pe._mdf)&&this.comp.threeDElements){var p,b,d;for(t=this.comp.threeDElements.length,e=0;e<t;e+=1)if("3d"===(p=this.comp.threeDElements[e]).type){if(u){var g=this.mat.toCSS();(d=p.container.style).transform=g,d.webkitTransform=g}this.pe._mdf&&((b=p.perspectiveElem.style).perspective=this.pe.v+"px",b.webkitPerspective=this.pe.v+"px")}this.mat.clone(this._prevMat)}}this._isFirstFrame=!1},HCameraElement.prototype.prepareFrame=function(e){this.prepareProperties(e,!0)},HCameraElement.prototype.destroy=function(){},HCameraElement.prototype.getBaseElement=function(){return null},HEffects.prototype.renderFrame=function(){};var animationManager=function(){var e={},t=[],a=0,l=0,i=0,o=!0,n=!1;function r(e){for(var a=0,i=e.target;a<l;)t[a].animation===i&&(t.splice(a,1),a-=1,l-=1,i.isPaused||u()),a+=1}function s(e,a){if(!e)return null;for(var i=0;i<l;){if(t[i].elem===e&&null!==t[i].elem)return t[i].animation;i+=1}var o=new AnimationItem;return p(o,e),o.setData(e,a),o}function c(){i+=1,g()}function u(){i-=1}function p(e,a){e.addEventListener("destroy",r),e.addEventListener("_active",c),e.addEventListener("_idle",u),t.push({elem:a,animation:e}),l+=1}function b(e){var r,s=e-a;for(r=0;r<l;r+=1)t[r].animation.advanceTime(s);a=e,i&&!n?window.requestAnimationFrame(b):o=!0}function d(e){a=e,window.requestAnimationFrame(b)}function g(){!n&&i&&o&&(window.requestAnimationFrame(d),o=!1)}return e.registerAnimation=s,e.loadAnimation=function(e){var t=new AnimationItem;return p(t,null),t.setParams(e),t},e.setSpeed=function(e,a){var i;for(i=0;i<l;i+=1)t[i].animation.setSpeed(e,a)},e.setDirection=function(e,a){var i;for(i=0;i<l;i+=1)t[i].animation.setDirection(e,a)},e.play=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.play(e)},e.pause=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.pause(e)},e.stop=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.stop(e)},e.togglePause=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.togglePause(e)},e.searchAnimations=function(e,t,a){var l,i=[].concat([].slice.call(document.getElementsByClassName("lottie")),[].slice.call(document.getElementsByClassName("bodymovin"))),o=i.length;for(l=0;l<o;l+=1)a&&i[l].setAttribute("data-bm-type",a),s(i[l],e);if(t&&0===o){a||(a="svg");var n=document.getElementsByTagName("body")[0];n.innerText="";var r=createTag("div");r.style.width="100%",r.style.height="100%",r.setAttribute("data-bm-type",a),n.appendChild(r),s(r,e)}},e.resize=function(){var e;for(e=0;e<l;e+=1)t[e].animation.resize()},e.goToAndStop=function(e,a,i){var o;for(o=0;o<l;o+=1)t[o].animation.goToAndStop(e,a,i)},e.destroy=function(e){var a;for(a=l-1;a>=0;a-=1)t[a].animation.destroy(e)},e.freeze=function(){n=!0},e.unfreeze=function(){n=!1,g()},e.setVolume=function(e,a){var i;for(i=0;i<l;i+=1)t[i].animation.setVolume(e,a)},e.mute=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.mute(e)},e.unmute=function(e){var a;for(a=0;a<l;a+=1)t[a].animation.unmute(e)},e.getRegisteredAnimations=function(){var e,a=t.length,l=[];for(e=0;e<a;e+=1)l.push(t[e].animation);return l},e}(),AnimationItem=function(){this._cbs=[],this.name="",this.path="",this.isLoaded=!1,this.currentFrame=0,this.currentRawFrame=0,this.firstFrame=0,this.totalFrames=0,this.frameRate=0,this.frameMult=0,this.playSpeed=1,this.playDirection=1,this.playCount=0,this.animationData={},this.assets=[],this.isPaused=!0,this.autoplay=!1,this.loop=!0,this.renderer=null,this.animationID=createElementID(),this.assetsPath="",this.timeCompleted=0,this.segmentPos=0,this.isSubframeEnabled=subframeEnabled,this.segments=[],this._idle=!0,this._completedLoop=!1,this.projectInterface=ProjectInterface(),this.imagePreloader=new ImagePreloader,this.audioController=audioControllerFactory(),this.markers=[]};extendPrototype([BaseEvent],AnimationItem),AnimationItem.prototype.setParams=function(e){(e.wrapper||e.container)&&(this.wrapper=e.wrapper||e.container);var t="svg";switch(e.animType?t=e.animType:e.renderer&&(t=e.renderer),t){case"canvas":this.renderer=new CanvasRenderer(this,e.rendererSettings);break;case"svg":this.renderer=new SVGRenderer(this,e.rendererSettings);break;default:this.renderer=new HybridRenderer(this,e.rendererSettings)}this.imagePreloader.setCacheType(t,this.renderer.globalData.defs),this.renderer.setProjectInterface(this.projectInterface),this.animType=t,""===e.loop||null===e.loop||void 0===e.loop||!0===e.loop?this.loop=!0:!1===e.loop?this.loop=!1:this.loop=parseInt(e.loop,10),this.autoplay=!("autoplay"in e)||e.autoplay,this.name=e.name?e.name:"",this.autoloadSegments=!Object.prototype.hasOwnProperty.call(e,"autoloadSegments")||e.autoloadSegments,this.assetsPath=e.assetsPath,this.initialSegment=e.initialSegment,e.audioFactory&&this.audioController.setAudioFactory(e.audioFactory),e.animationData?this.configAnimation(e.animationData):e.path&&(-1!==e.path.lastIndexOf("\\")?this.path=e.path.substr(0,e.path.lastIndexOf("\\")+1):this.path=e.path.substr(0,e.path.lastIndexOf("/")+1),this.fileName=e.path.substr(e.path.lastIndexOf("/")+1),this.fileName=this.fileName.substr(0,this.fileName.lastIndexOf(".json")),assetLoader.load(e.path,this.configAnimation.bind(this),function(){this.trigger("data_failed")}.bind(this)))},AnimationItem.prototype.setData=function(e,t){t&&"object"!=typeof t&&(t=JSON.parse(t));var a={wrapper:e,animationData:t},l=e.attributes;a.path=l.getNamedItem("data-animation-path")?l.getNamedItem("data-animation-path").value:l.getNamedItem("data-bm-path")?l.getNamedItem("data-bm-path").value:l.getNamedItem("bm-path")?l.getNamedItem("bm-path").value:"",a.animType=l.getNamedItem("data-anim-type")?l.getNamedItem("data-anim-type").value:l.getNamedItem("data-bm-type")?l.getNamedItem("data-bm-type").value:l.getNamedItem("bm-type")?l.getNamedItem("bm-type").value:l.getNamedItem("data-bm-renderer")?l.getNamedItem("data-bm-renderer").value:l.getNamedItem("bm-renderer")?l.getNamedItem("bm-renderer").value:"canvas";var i=l.getNamedItem("data-anim-loop")?l.getNamedItem("data-anim-loop").value:l.getNamedItem("data-bm-loop")?l.getNamedItem("data-bm-loop").value:l.getNamedItem("bm-loop")?l.getNamedItem("bm-loop").value:"";"false"===i?a.loop=!1:"true"===i?a.loop=!0:""!==i&&(a.loop=parseInt(i,10));var o=l.getNamedItem("data-anim-autoplay")?l.getNamedItem("data-anim-autoplay").value:l.getNamedItem("data-bm-autoplay")?l.getNamedItem("data-bm-autoplay").value:!l.getNamedItem("bm-autoplay")||l.getNamedItem("bm-autoplay").value;a.autoplay="false"!==o,a.name=l.getNamedItem("data-name")?l.getNamedItem("data-name").value:l.getNamedItem("data-bm-name")?l.getNamedItem("data-bm-name").value:l.getNamedItem("bm-name")?l.getNamedItem("bm-name").value:"","false"===(l.getNamedItem("data-anim-prerender")?l.getNamedItem("data-anim-prerender").value:l.getNamedItem("data-bm-prerender")?l.getNamedItem("data-bm-prerender").value:l.getNamedItem("bm-prerender")?l.getNamedItem("bm-prerender").value:"")&&(a.prerender=!1),this.setParams(a)},AnimationItem.prototype.includeLayers=function(e){e.op>this.animationData.op&&(this.animationData.op=e.op,this.totalFrames=Math.floor(e.op-this.animationData.ip));var t,a,l=this.animationData.layers,i=l.length,o=e.layers,n=o.length;for(a=0;a<n;a+=1)for(t=0;t<i;){if(l[t].id===o[a].id){l[t]=o[a];break}t+=1}if((e.chars||e.fonts)&&(this.renderer.globalData.fontManager.addChars(e.chars),this.renderer.globalData.fontManager.addFonts(e.fonts,this.renderer.globalData.defs)),e.assets)for(i=e.assets.length,t=0;t<i;t+=1)this.animationData.assets.push(e.assets[t]);this.animationData.__complete=!1,dataManager.completeData(this.animationData,this.renderer.globalData.fontManager),this.renderer.includeLayers(e.layers),expressionsPlugin&&expressionsPlugin.initExpressions(this),this.loadNextSegment()},AnimationItem.prototype.loadNextSegment=function(){var e=this.animationData.segments;if(!e||0===e.length||!this.autoloadSegments)return this.trigger("data_ready"),void(this.timeCompleted=this.totalFrames);var t=e.shift();this.timeCompleted=t.time*this.frameRate;var a=this.path+this.fileName+"_"+this.segmentPos+".json";this.segmentPos+=1,assetLoader.load(a,this.includeLayers.bind(this),function(){this.trigger("data_failed")}.bind(this))},AnimationItem.prototype.loadSegments=function(){this.animationData.segments||(this.timeCompleted=this.totalFrames),this.loadNextSegment()},AnimationItem.prototype.imagesLoaded=function(){this.trigger("loaded_images"),this.checkLoaded()},AnimationItem.prototype.preloadImages=function(){this.imagePreloader.setAssetsPath(this.assetsPath),this.imagePreloader.setPath(this.path),this.imagePreloader.loadAssets(this.animationData.assets,this.imagesLoaded.bind(this))},AnimationItem.prototype.configAnimation=function(e){if(this.renderer)try{this.animationData=e,this.initialSegment?(this.totalFrames=Math.floor(this.initialSegment[1]-this.initialSegment[0]),this.firstFrame=Math.round(this.initialSegment[0])):(this.totalFrames=Math.floor(this.animationData.op-this.animationData.ip),this.firstFrame=Math.round(this.animationData.ip)),this.renderer.configAnimation(e),e.assets||(e.assets=[]),this.assets=this.animationData.assets,this.frameRate=this.animationData.fr,this.frameMult=this.animationData.fr/1e3,this.renderer.searchExtraCompositions(e.assets),this.markers=markerParser(e.markers||[]),this.trigger("config_ready"),this.preloadImages(),this.loadSegments(),this.updaFrameModifier(),this.waitForFontsLoaded(),this.isPaused&&this.audioController.pause()}catch(e){this.triggerConfigError(e)}},AnimationItem.prototype.waitForFontsLoaded=function(){this.renderer&&(this.renderer.globalData.fontManager.isLoaded?this.checkLoaded():setTimeout(this.waitForFontsLoaded.bind(this),20))},AnimationItem.prototype.checkLoaded=function(){!this.isLoaded&&this.renderer.globalData.fontManager.isLoaded&&(this.imagePreloader.loadedImages()||"canvas"!==this.renderer.rendererType)&&this.imagePreloader.loadedFootages()&&(this.isLoaded=!0,dataManager.completeData(this.animationData,this.renderer.globalData.fontManager),expressionsPlugin&&expressionsPlugin.initExpressions(this),this.renderer.initItems(),setTimeout(function(){this.trigger("DOMLoaded")}.bind(this),0),this.gotoFrame(),this.autoplay&&this.play())},AnimationItem.prototype.resize=function(){this.renderer.updateContainerSize()},AnimationItem.prototype.setSubframe=function(e){this.isSubframeEnabled=!!e},AnimationItem.prototype.gotoFrame=function(){this.currentFrame=this.isSubframeEnabled?this.currentRawFrame:~~this.currentRawFrame,this.timeCompleted!==this.totalFrames&&this.currentFrame>this.timeCompleted&&(this.currentFrame=this.timeCompleted),this.trigger("enterFrame"),this.renderFrame()},AnimationItem.prototype.renderFrame=function(){if(!1!==this.isLoaded&&this.renderer)try{this.renderer.renderFrame(this.currentFrame+this.firstFrame)}catch(e){this.triggerRenderFrameError(e)}},AnimationItem.prototype.play=function(e){e&&this.name!==e||!0===this.isPaused&&(this.isPaused=!1,this.audioController.resume(),this._idle&&(this._idle=!1,this.trigger("_active")))},AnimationItem.prototype.pause=function(e){e&&this.name!==e||!1===this.isPaused&&(this.isPaused=!0,this._idle=!0,this.trigger("_idle"),this.audioController.pause())},AnimationItem.prototype.togglePause=function(e){e&&this.name!==e||(!0===this.isPaused?this.play():this.pause())},AnimationItem.prototype.stop=function(e){e&&this.name!==e||(this.pause(),this.playCount=0,this._completedLoop=!1,this.setCurrentRawFrameValue(0))},AnimationItem.prototype.getMarkerData=function(e){for(var t,a=0;a<this.markers.length;a+=1)if((t=this.markers[a]).payload&&t.payload.name===e)return t;return null},AnimationItem.prototype.goToAndStop=function(e,t,a){if(!a||this.name===a){var l=Number(e);if(isNaN(l)){var i=this.getMarkerData(e);i&&this.goToAndStop(i.time,!0)}else t?this.setCurrentRawFrameValue(e):this.setCurrentRawFrameValue(e*this.frameModifier);this.pause()}},AnimationItem.prototype.goToAndPlay=function(e,t,a){if(!a||this.name===a){var l=Number(e);if(isNaN(l)){var i=this.getMarkerData(e);i&&(i.duration?this.playSegments([i.time,i.time+i.duration],!0):this.goToAndStop(i.time,!0))}else this.goToAndStop(l,t,a);this.play()}},AnimationItem.prototype.advanceTime=function(e){if(!0!==this.isPaused&&!1!==this.isLoaded){var t=this.currentRawFrame+e*this.frameModifier,a=!1;t>=this.totalFrames-1&&this.frameModifier>0?this.loop&&this.playCount!==this.loop?t>=this.totalFrames?(this.playCount+=1,this.checkSegments(t%this.totalFrames)||(this.setCurrentRawFrameValue(t%this.totalFrames),this._completedLoop=!0,this.trigger("loopComplete"))):this.setCurrentRawFrameValue(t):this.checkSegments(t>this.totalFrames?t%this.totalFrames:0)||(a=!0,t=this.totalFrames-1):t<0?this.checkSegments(t%this.totalFrames)||(!this.loop||this.playCount--<=0&&!0!==this.loop?(a=!0,t=0):(this.setCurrentRawFrameValue(this.totalFrames+t%this.totalFrames),this._completedLoop?this.trigger("loopComplete"):this._completedLoop=!0)):this.setCurrentRawFrameValue(t),a&&(this.setCurrentRawFrameValue(t),this.pause(),this.trigger("complete"))}},AnimationItem.prototype.adjustSegment=function(e,t){this.playCount=0,e[1]<e[0]?(this.frameModifier>0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(-1)),this.totalFrames=e[0]-e[1],this.timeCompleted=this.totalFrames,this.firstFrame=e[1],this.setCurrentRawFrameValue(this.totalFrames-.001-t)):e[1]>e[0]&&(this.frameModifier<0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(1)),this.totalFrames=e[1]-e[0],this.timeCompleted=this.totalFrames,this.firstFrame=e[0],this.setCurrentRawFrameValue(.001+t)),this.trigger("segmentStart")},AnimationItem.prototype.setSegment=function(e,t){var a=-1;this.isPaused&&(this.currentRawFrame+this.firstFrame<e?a=e:this.currentRawFrame+this.firstFrame>t&&(a=t-e)),this.firstFrame=e,this.totalFrames=t-e,this.timeCompleted=this.totalFrames,-1!==a&&this.goToAndStop(a,!0)},AnimationItem.prototype.playSegments=function(e,t){if(t&&(this.segments.length=0),"object"==typeof e[0]){var a,l=e.length;for(a=0;a<l;a+=1)this.segments.push(e[a])}else this.segments.push(e);this.segments.length&&t&&this.adjustSegment(this.segments.shift(),0),this.isPaused&&this.play()},AnimationItem.prototype.resetSegments=function(e){this.segments.length=0,this.segments.push([this.animationData.ip,this.animationData.op]),e&&this.checkSegments(0)},AnimationItem.prototype.checkSegments=function(e){return!!this.segments.length&&(this.adjustSegment(this.segments.shift(),e),!0)},AnimationItem.prototype.destroy=function(e){e&&this.name!==e||!this.renderer||(this.renderer.destroy(),this.imagePreloader.destroy(),this.trigger("destroy"),this._cbs=null,this.onEnterFrame=null,this.onLoopComplete=null,this.onComplete=null,this.onSegmentStart=null,this.onDestroy=null,this.renderer=null,this.renderer=null,this.imagePreloader=null,this.projectInterface=null)},AnimationItem.prototype.setCurrentRawFrameValue=function(e){this.currentRawFrame=e,this.gotoFrame()},AnimationItem.prototype.setSpeed=function(e){this.playSpeed=e,this.updaFrameModifier()},AnimationItem.prototype.setDirection=function(e){this.playDirection=e<0?-1:1,this.updaFrameModifier()},AnimationItem.prototype.setVolume=function(e,t){t&&this.name!==t||this.audioController.setVolume(e)},AnimationItem.prototype.getVolume=function(){return this.audioController.getVolume()},AnimationItem.prototype.mute=function(e){e&&this.name!==e||this.audioController.mute()},AnimationItem.prototype.unmute=function(e){e&&this.name!==e||this.audioController.unmute()},AnimationItem.prototype.updaFrameModifier=function(){this.frameModifier=this.frameMult*this.playSpeed*this.playDirection,this.audioController.setRate(this.playSpeed*this.playDirection)},AnimationItem.prototype.getPath=function(){return this.path},AnimationItem.prototype.getAssetsPath=function(e){var t="";if(e.e)t=e.p;else if(this.assetsPath){var a=e.p;-1!==a.indexOf("images/")&&(a=a.split("/")[1]),t=this.assetsPath+a}else t=this.path,t+=e.u?e.u:"",t+=e.p;return t},AnimationItem.prototype.getAssetData=function(e){for(var t=0,a=this.assets.length;t<a;){if(e===this.assets[t].id)return this.assets[t];t+=1}return null},AnimationItem.prototype.hide=function(){this.renderer.hide()},AnimationItem.prototype.show=function(){this.renderer.show()},AnimationItem.prototype.getDuration=function(e){return e?this.totalFrames:this.totalFrames/this.frameRate},AnimationItem.prototype.trigger=function(e){if(this._cbs&&this._cbs[e])switch(e){case"enterFrame":this.triggerEvent(e,new BMEnterFrameEvent(e,this.currentFrame,this.totalFrames,this.frameModifier));break;case"loopComplete":this.triggerEvent(e,new BMCompleteLoopEvent(e,this.loop,this.playCount,this.frameMult));break;case"complete":this.triggerEvent(e,new BMCompleteEvent(e,this.frameMult));break;case"segmentStart":this.triggerEvent(e,new BMSegmentStartEvent(e,this.firstFrame,this.totalFrames));break;case"destroy":this.triggerEvent(e,new BMDestroyEvent(e,this));break;default:this.triggerEvent(e)}"enterFrame"===e&&this.onEnterFrame&&this.onEnterFrame.call(this,new BMEnterFrameEvent(e,this.currentFrame,this.totalFrames,this.frameMult)),"loopComplete"===e&&this.onLoopComplete&&this.onLoopComplete.call(this,new BMCompleteLoopEvent(e,this.loop,this.playCount,this.frameMult)),"complete"===e&&this.onComplete&&this.onComplete.call(this,new BMCompleteEvent(e,this.frameMult)),"segmentStart"===e&&this.onSegmentStart&&this.onSegmentStart.call(this,new BMSegmentStartEvent(e,this.firstFrame,this.totalFrames)),"destroy"===e&&this.onDestroy&&this.onDestroy.call(this,new BMDestroyEvent(e,this))},AnimationItem.prototype.triggerRenderFrameError=function(e){var t=new BMRenderFrameErrorEvent(e,this.currentFrame);this.triggerEvent("error",t),this.onError&&this.onError.call(this,t)},AnimationItem.prototype.triggerConfigError=function(e){var t=new BMConfigErrorEvent(e,this.currentFrame);this.triggerEvent("error",t),this.onError&&this.onError.call(this,t)};var Expressions={initExpressions:function(e){var t=0,a=[];e.renderer.compInterface=CompExpressionInterface(e.renderer),e.renderer.globalData.projectInterface.registerComposition(e.renderer),e.renderer.globalData.pushExpression=function(){t+=1},e.renderer.globalData.popExpression=function(){0==(t-=1)&&function(){var e,t=a.length;for(e=0;e<t;e+=1)a[e].release();a.length=0}()},e.renderer.globalData.registerExpressionProperty=function(e){-1===a.indexOf(e)&&a.push(e)}}};expressionsPlugin=Expressions;var ExpressionManager=function(){var ob={},Math=BMMath,window=null,document=null;function $bm_isInstanceOfArray(e){return e.constructor===Array||e.constructor===Float32Array}function isNumerable(e,t){return"number"===e||"boolean"===e||"string"===e||t instanceof Number}function $bm_neg(e){var t=typeof e;if("number"===t||"boolean"===t||e instanceof Number)return-e;if($bm_isInstanceOfArray(e)){var a,l=e.length,i=[];for(a=0;a<l;a+=1)i[a]=-e[a];return i}return e.propType?e.v:-e}var easeInBez=BezierFactory.getBezierEasing(.333,0,.833,.833,"easeIn").get,easeOutBez=BezierFactory.getBezierEasing(.167,.167,.667,1,"easeOut").get,easeInOutBez=BezierFactory.getBezierEasing(.33,0,.667,1,"easeInOut").get;function sum(e,t){var a=typeof e,l=typeof t;if("string"===a||"string"===l)return e+t;if(isNumerable(a,e)&&isNumerable(l,t))return e+t;if($bm_isInstanceOfArray(e)&&isNumerable(l,t))return(e=e.slice(0))[0]+=t,e;if(isNumerable(a,e)&&$bm_isInstanceOfArray(t))return(t=t.slice(0))[0]=e+t[0],t;if($bm_isInstanceOfArray(e)&&$bm_isInstanceOfArray(t)){for(var i=0,o=e.length,n=t.length,r=[];i<o||i<n;)("number"==typeof e[i]||e[i]instanceof Number)&&("number"==typeof t[i]||t[i]instanceof Number)?r[i]=e[i]+t[i]:r[i]=void 0===t[i]?e[i]:e[i]||t[i],i+=1;return r}return 0}var add=sum;function sub(e,t){var a=typeof e,l=typeof t;if(isNumerable(a,e)&&isNumerable(l,t))return"string"===a&&(e=parseInt(e,10)),"string"===l&&(t=parseInt(t,10)),e-t;if($bm_isInstanceOfArray(e)&&isNumerable(l,t))return(e=e.slice(0))[0]-=t,e;if(isNumerable(a,e)&&$bm_isInstanceOfArray(t))return(t=t.slice(0))[0]=e-t[0],t;if($bm_isInstanceOfArray(e)&&$bm_isInstanceOfArray(t)){for(var i=0,o=e.length,n=t.length,r=[];i<o||i<n;)("number"==typeof e[i]||e[i]instanceof Number)&&("number"==typeof t[i]||t[i]instanceof Number)?r[i]=e[i]-t[i]:r[i]=void 0===t[i]?e[i]:e[i]||t[i],i+=1;return r}return 0}function mul(e,t){var a,l,i,o=typeof e,n=typeof t;if(isNumerable(o,e)&&isNumerable(n,t))return e*t;if($bm_isInstanceOfArray(e)&&isNumerable(n,t)){for(i=e.length,a=createTypedArray("float32",i),l=0;l<i;l+=1)a[l]=e[l]*t;return a}if(isNumerable(o,e)&&$bm_isInstanceOfArray(t)){for(i=t.length,a=createTypedArray("float32",i),l=0;l<i;l+=1)a[l]=e*t[l];return a}return 0}function div(e,t){var a,l,i,o=typeof e,n=typeof t;if(isNumerable(o,e)&&isNumerable(n,t))return e/t;if($bm_isInstanceOfArray(e)&&isNumerable(n,t)){for(i=e.length,a=createTypedArray("float32",i),l=0;l<i;l+=1)a[l]=e[l]/t;return a}if(isNumerable(o,e)&&$bm_isInstanceOfArray(t)){for(i=t.length,a=createTypedArray("float32",i),l=0;l<i;l+=1)a[l]=e/t[l];return a}return 0}function mod(e,t){return"string"==typeof e&&(e=parseInt(e,10)),"string"==typeof t&&(t=parseInt(t,10)),e%t}var $bm_sum=sum,$bm_sub=sub,$bm_mul=mul,$bm_div=div,$bm_mod=mod;function clamp(e,t,a){if(t>a){var l=a;a=t,t=l}return Math.min(Math.max(e,t),a)}function radiansToDegrees(e){return e/degToRads}var radians_to_degrees=radiansToDegrees;function degreesToRadians(e){return e*degToRads}var degrees_to_radians=radiansToDegrees,helperLengthArray=[0,0,0,0,0,0];function length(e,t){if("number"==typeof e||e instanceof Number)return t=t||0,Math.abs(e-t);var a;t||(t=helperLengthArray);var l=Math.min(e.length,t.length),i=0;for(a=0;a<l;a+=1)i+=Math.pow(t[a]-e[a],2);return Math.sqrt(i)}function normalize(e){return div(e,length(e))}function rgbToHsl(e){var t,a,l=e[0],i=e[1],o=e[2],n=Math.max(l,i,o),r=Math.min(l,i,o),s=(n+r)/2;if(n===r)t=0,a=0;else{var c=n-r;switch(a=s>.5?c/(2-n-r):c/(n+r),n){case l:t=(i-o)/c+(i<o?6:0);break;case i:t=(o-l)/c+2;break;case o:t=(l-i)/c+4}t/=6}return[t,a,s,e[3]]}function hue2rgb(e,t,a){return a<0&&(a+=1),a>1&&(a-=1),a<1/6?e+6*(t-e)*a:a<.5?t:a<2/3?e+(t-e)*(2/3-a)*6:e}function hslToRgb(e){var t,a,l,i=e[0],o=e[1],n=e[2];if(0===o)t=n,l=n,a=n;else{var r=n<.5?n*(1+o):n+o-n*o,s=2*n-r;t=hue2rgb(s,r,i+1/3),a=hue2rgb(s,r,i),l=hue2rgb(s,r,i-1/3)}return[t,a,l,e[3]]}function linear(e,t,a,l,i){if(void 0!==l&&void 0!==i||(l=t,i=a,t=0,a=1),a<t){var o=a;a=t,t=o}if(e<=t)return l;if(e>=a)return i;var n,r=a===t?0:(e-t)/(a-t);if(!l.length)return l+(i-l)*r;var s=l.length,c=createTypedArray("float32",s);for(n=0;n<s;n+=1)c[n]=l[n]+(i[n]-l[n])*r;return c}function random(e,t){if(void 0===t&&(void 0===e?(e=0,t=1):(t=e,e=void 0)),t.length){var a,l=t.length;e||(e=createTypedArray("float32",l));var i=createTypedArray("float32",l),o=BMMath.random();for(a=0;a<l;a+=1)i[a]=e[a]+o*(t[a]-e[a]);return i}return void 0===e&&(e=0),e+BMMath.random()*(t-e)}function createPath(e,t,a,l){var i,o=e.length,n=shapePool.newElement();n.setPathData(!!l,o);var r,s,c=[0,0];for(i=0;i<o;i+=1)r=t&&t[i]?t[i]:c,s=a&&a[i]?a[i]:c,n.setTripleAt(e[i][0],e[i][1],s[0]+e[i][0],s[1]+e[i][1],r[0]+e[i][0],r[1]+e[i][1],i,!0);return n}function initiateExpression(elem,data,property){var val=data.x,needsVelocity=/velocity(?![\w\d])/.test(val),_needsRandom=-1!==val.indexOf("random"),elemType=elem.data.ty,transform,$bm_transform,content,effect,thisProperty=property;thisProperty.valueAtTime=thisProperty.getValueAtTime,Object.defineProperty(thisProperty,"value",{get:function(){return thisProperty.v}}),elem.comp.frameDuration=1/elem.comp.globalData.frameRate,elem.comp.displayStartTime=0;var inPoint=elem.data.ip/elem.comp.globalData.frameRate,outPoint=elem.data.op/elem.comp.globalData.frameRate,width=elem.data.sw?elem.data.sw:0,height=elem.data.sh?elem.data.sh:0,name=elem.data.nm,loopIn,loop_in,loopOut,loop_out,smooth,toWorld,fromWorld,fromComp,toComp,fromCompToSurface,position,rotation,anchorPoint,scale,thisLayer,thisComp,mask,valueAtTime,velocityAtTime,scoped_bm_rt,expression_function=eval("[function _expression_function(){"+val+";scoped_bm_rt=$bm_rt}]")[0],numKeys=property.kf?data.k.length:0,active=!this.data||!0!==this.data.hd,wiggle=function(e,t){var a,l,i=this.pv.length?this.pv.length:1,o=createTypedArray("float32",i),n=Math.floor(5*time);for(a=0,l=0;a<n;){for(l=0;l<i;l+=1)o[l]+=-t+2*t*BMMath.random();a+=1}var r=5*time,s=r-Math.floor(r),c=createTypedArray("float32",i);if(i>1){for(l=0;l<i;l+=1)c[l]=this.pv[l]+o[l]+(-t+2*t*BMMath.random())*s;return c}return this.pv+o[0]+(-t+2*t*BMMath.random())*s}.bind(this);function loopInDuration(e,t){return loopIn(e,t,!0)}function loopOutDuration(e,t){return loopOut(e,t,!0)}thisProperty.loopIn&&(loopIn=thisProperty.loopIn.bind(thisProperty),loop_in=loopIn),thisProperty.loopOut&&(loopOut=thisProperty.loopOut.bind(thisProperty),loop_out=loopOut),thisProperty.smooth&&(smooth=thisProperty.smooth.bind(thisProperty)),this.getValueAtTime&&(valueAtTime=this.getValueAtTime.bind(this)),this.getVelocityAtTime&&(velocityAtTime=this.getVelocityAtTime.bind(this));var comp=elem.comp.globalData.projectInterface.bind(elem.comp.globalData.projectInterface),time,velocity,value,text,textIndex,textTotal,selectorValue;function lookAt(e,t){var a=[t[0]-e[0],t[1]-e[1],t[2]-e[2]],l=Math.atan2(a[0],Math.sqrt(a[1]*a[1]+a[2]*a[2]))/degToRads;return[-Math.atan2(a[1],a[2])/degToRads,l,0]}function easeOut(e,t,a,l,i){return applyEase(easeOutBez,e,t,a,l,i)}function easeIn(e,t,a,l,i){return applyEase(easeInBez,e,t,a,l,i)}function ease(e,t,a,l,i){return applyEase(easeInOutBez,e,t,a,l,i)}function applyEase(e,t,a,l,i,o){void 0===i?(i=a,o=l):t=(t-a)/(l-a),t>1?t=1:t<0&&(t=0);var n=e(t);if($bm_isInstanceOfArray(i)){var r,s=i.length,c=createTypedArray("float32",s);for(r=0;r<s;r+=1)c[r]=(o[r]-i[r])*n+i[r];return c}return(o-i)*n+i}function nearestKey(e){var t,a,l,i=data.k.length;if(data.k.length&&"number"!=typeof data.k[0])if(a=-1,(e*=elem.comp.globalData.frameRate)<data.k[0].t)a=1,l=data.k[0].t;else{for(t=0;t<i-1;t+=1){if(e===data.k[t].t){a=t+1,l=data.k[t].t;break}if(e>data.k[t].t&&e<data.k[t+1].t){e-data.k[t].t>data.k[t+1].t-e?(a=t+2,l=data.k[t+1].t):(a=t+1,l=data.k[t].t);break}}-1===a&&(a=t+1,l=data.k[t].t)}else a=0,l=0;var o={};return o.index=a,o.time=l/elem.comp.globalData.frameRate,o}function key(e){var t,a,l;if(!data.k.length||"number"==typeof data.k[0])throw new Error("The property has no keyframe at index "+e);e-=1,t={time:data.k[e].t/elem.comp.globalData.frameRate,value:[]};var i=Object.prototype.hasOwnProperty.call(data.k[e],"s")?data.k[e].s:data.k[e-1].e;for(l=i.length,a=0;a<l;a+=1)t[a]=i[a],t.value[a]=i[a];return t}function framesToTime(e,t){return t||(t=elem.comp.globalData.frameRate),e/t}function timeToFrames(e,t){return e||0===e||(e=time),t||(t=elem.comp.globalData.frameRate),e*t}function seedRandom(e){BMMath.seedrandom(randSeed+e)}function sourceRectAtTime(){return elem.sourceRectAtTime()}function substring(e,t){return"string"==typeof value?void 0===t?value.substring(e):value.substring(e,t):""}function substr(e,t){return"string"==typeof value?void 0===t?value.substr(e):value.substr(e,t):""}function posterizeTime(e){time=0===e?0:Math.floor(time*e)/e,value=valueAtTime(time)}var index=elem.data.ind,hasParent=!(!elem.hierarchy||!elem.hierarchy.length),parent,randSeed=Math.floor(1e6*Math.random()),globalData=elem.globalData;function executeExpression(e){return value=e,_needsRandom&&seedRandom(randSeed),this.frameExpressionId===elem.globalData.frameId&&"textSelector"!==this.propType?value:("textSelector"===this.propType&&(textIndex=this.textIndex,textTotal=this.textTotal,selectorValue=this.selectorValue),thisLayer||(text=elem.layerInterface.text,thisLayer=elem.layerInterface,thisComp=elem.comp.compInterface,toWorld=thisLayer.toWorld.bind(thisLayer),fromWorld=thisLayer.fromWorld.bind(thisLayer),fromComp=thisLayer.fromComp.bind(thisLayer),toComp=thisLayer.toComp.bind(thisLayer),mask=thisLayer.mask?thisLayer.mask.bind(thisLayer):null,fromCompToSurface=fromComp),transform||(transform=elem.layerInterface("ADBE Transform Group"),$bm_transform=transform,transform&&(anchorPoint=transform.anchorPoint)),4!==elemType||content||(content=thisLayer("ADBE Root Vectors Group")),effect||(effect=thisLayer(4)),(hasParent=!(!elem.hierarchy||!elem.hierarchy.length))&&!parent&&(parent=elem.hierarchy[0].layerInterface),time=this.comp.renderedFrame/this.comp.globalData.frameRate,needsVelocity&&(velocity=velocityAtTime(time)),expression_function(),this.frameExpressionId=elem.globalData.frameId,"shape"===scoped_bm_rt.propType&&(scoped_bm_rt=scoped_bm_rt.v),scoped_bm_rt)}return executeExpression}return ob.initiateExpression=initiateExpression,ob}(),expressionHelpers={searchExpressions:function(e,t,a){t.x&&(a.k=!0,a.x=!0,a.initiateExpression=ExpressionManager.initiateExpression,a.effectsSequence.push(a.initiateExpression(e,t,a).bind(a)))},getSpeedAtTime:function(e){var t=this.getValueAtTime(e),a=this.getValueAtTime(e+-.01),l=0;if(t.length){var i;for(i=0;i<t.length;i+=1)l+=Math.pow(a[i]-t[i],2);l=100*Math.sqrt(l)}else l=0;return l},getVelocityAtTime:function(e){if(void 0!==this.vel)return this.vel;var t,a,l=this.getValueAtTime(e),i=this.getValueAtTime(e+-.001);if(l.length)for(t=createTypedArray("float32",l.length),a=0;a<l.length;a+=1)t[a]=(i[a]-l[a])/-.001;else t=(i-l)/-.001;return t},getValueAtTime:function(e){return e*=this.elem.globalData.frameRate,(e-=this.offsetTime)!==this._cachingAtTime.lastFrame&&(this._cachingAtTime.lastIndex=this._cachingAtTime.lastFrame<e?this._cachingAtTime.lastIndex:0,this._cachingAtTime.value=this.interpolateValue(e,this._cachingAtTime),this._cachingAtTime.lastFrame=e),this._cachingAtTime.value},getStaticValueAtTime:function(){return this.pv},setGroupProperty:function(e){this.propertyGroup=e}};!function(){function e(e,t,a){if(!this.k||!this.keyframes)return this.pv;e=e?e.toLowerCase():"";var l,i,o,n,r,s=this.comp.renderedFrame,c=this.keyframes,u=c[c.length-1].t;if(s<=u)return this.pv;if(a?i=u-(l=t?Math.abs(u-this.elem.comp.globalData.frameRate*t):Math.max(0,u-this.elem.data.ip)):((!t||t>c.length-1)&&(t=c.length-1),l=u-(i=c[c.length-1-t].t)),"pingpong"===e){if(Math.floor((s-i)/l)%2!=0)return this.getValueAtTime((l-(s-i)%l+i)/this.comp.globalData.frameRate,0)}else{if("offset"===e){var p=this.getValueAtTime(i/this.comp.globalData.frameRate,0),b=this.getValueAtTime(u/this.comp.globalData.frameRate,0),d=this.getValueAtTime(((s-i)%l+i)/this.comp.globalData.frameRate,0),g=Math.floor((s-i)/l);if(this.pv.length){for(n=(r=new Array(p.length)).length,o=0;o<n;o+=1)r[o]=(b[o]-p[o])*g+d[o];return r}return(b-p)*g+d}if("continue"===e){var m=this.getValueAtTime(u/this.comp.globalData.frameRate,0),y=this.getValueAtTime((u-.001)/this.comp.globalData.frameRate,0);if(this.pv.length){for(n=(r=new Array(m.length)).length,o=0;o<n;o+=1)r[o]=m[o]+(m[o]-y[o])*((s-u)/this.comp.globalData.frameRate)/5e-4;return r}return m+(s-u)/.001*(m-y)}}return this.getValueAtTime(((s-i)%l+i)/this.comp.globalData.frameRate,0)}function t(e,t,a){if(!this.k)return this.pv;e=e?e.toLowerCase():"";var l,i,o,n,r,s=this.comp.renderedFrame,c=this.keyframes,u=c[0].t;if(s>=u)return this.pv;if(a?i=u+(l=t?Math.abs(this.elem.comp.globalData.frameRate*t):Math.max(0,this.elem.data.op-u)):((!t||t>c.length-1)&&(t=c.length-1),l=(i=c[t].t)-u),"pingpong"===e){if(Math.floor((u-s)/l)%2==0)return this.getValueAtTime(((u-s)%l+u)/this.comp.globalData.frameRate,0)}else{if("offset"===e){var p=this.getValueAtTime(u/this.comp.globalData.frameRate,0),b=this.getValueAtTime(i/this.comp.globalData.frameRate,0),d=this.getValueAtTime((l-(u-s)%l+u)/this.comp.globalData.frameRate,0),g=Math.floor((u-s)/l)+1;if(this.pv.length){for(n=(r=new Array(p.length)).length,o=0;o<n;o+=1)r[o]=d[o]-(b[o]-p[o])*g;return r}return d-(b-p)*g}if("continue"===e){var m=this.getValueAtTime(u/this.comp.globalData.frameRate,0),y=this.getValueAtTime((u+.001)/this.comp.globalData.frameRate,0);if(this.pv.length){for(n=(r=new Array(m.length)).length,o=0;o<n;o+=1)r[o]=m[o]+(m[o]-y[o])*(u-s)/.001;return r}return m+(m-y)*(u-s)/.001}}return this.getValueAtTime((l-((u-s)%l+u))/this.comp.globalData.frameRate,0)}function a(e,t){if(!this.k)return this.pv;if(e=.5*(e||.4),(t=Math.floor(t||5))<=1)return this.pv;var a,l,i=this.comp.renderedFrame/this.comp.globalData.frameRate,o=i-e,n=t>1?(i+e-o)/(t-1):1,r=0,s=0;for(a=this.pv.length?createTypedArray("float32",this.pv.length):0;r<t;){if(l=this.getValueAtTime(o+r*n),this.pv.length)for(s=0;s<this.pv.length;s+=1)a[s]+=l[s];else a+=l;r+=1}if(this.pv.length)for(s=0;s<this.pv.length;s+=1)a[s]/=t;else a/=t;return a}function l(e){this._transformCachingAtTime||(this._transformCachingAtTime={v:new Matrix});var t=this._transformCachingAtTime.v;if(t.cloneFromProps(this.pre.props),this.appliedTransformations<1){var a=this.a.getValueAtTime(e);t.translate(-a[0]*this.a.mult,-a[1]*this.a.mult,a[2]*this.a.mult)}if(this.appliedTransformations<2){var l=this.s.getValueAtTime(e);t.scale(l[0]*this.s.mult,l[1]*this.s.mult,l[2]*this.s.mult)}if(this.sk&&this.appliedTransformations<3){var i=this.sk.getValueAtTime(e),o=this.sa.getValueAtTime(e);t.skewFromAxis(-i*this.sk.mult,o*this.sa.mult)}if(this.r&&this.appliedTransformations<4){var n=this.r.getValueAtTime(e);t.rotate(-n*this.r.mult)}else if(!this.r&&this.appliedTransformations<4){var r=this.rz.getValueAtTime(e),s=this.ry.getValueAtTime(e),c=this.rx.getValueAtTime(e),u=this.or.getValueAtTime(e);t.rotateZ(-r*this.rz.mult).rotateY(s*this.ry.mult).rotateX(c*this.rx.mult).rotateZ(-u[2]*this.or.mult).rotateY(u[1]*this.or.mult).rotateX(u[0]*this.or.mult)}if(this.data.p&&this.data.p.s){var p=this.px.getValueAtTime(e),b=this.py.getValueAtTime(e);if(this.data.p.z){var d=this.pz.getValueAtTime(e);t.translate(p*this.px.mult,b*this.py.mult,-d*this.pz.mult)}else t.translate(p*this.px.mult,b*this.py.mult,0)}else{var g=this.p.getValueAtTime(e);t.translate(g[0]*this.p.mult,g[1]*this.p.mult,-g[2]*this.p.mult)}return t}function i(){return this.v.clone(new Matrix)}var o=TransformPropertyFactory.getTransformProperty;TransformPropertyFactory.getTransformProperty=function(e,t,a){var n=o(e,t,a);return n.dynamicProperties.length?n.getValueAtTime=l.bind(n):n.getValueAtTime=i.bind(n),n.setGroupProperty=expressionHelpers.setGroupProperty,n};var n=PropertyFactory.getProp;PropertyFactory.getProp=function(l,i,o,r,s){var c=n(l,i,o,r,s);c.kf?c.getValueAtTime=expressionHelpers.getValueAtTime.bind(c):c.getValueAtTime=expressionHelpers.getStaticValueAtTime.bind(c),c.setGroupProperty=expressionHelpers.setGroupProperty,c.loopOut=e,c.loopIn=t,c.smooth=a,c.getVelocityAtTime=expressionHelpers.getVelocityAtTime.bind(c),c.getSpeedAtTime=expressionHelpers.getSpeedAtTime.bind(c),c.numKeys=1===i.a?i.k.length:0,c.propertyIndex=i.ix;var u=0;return 0!==o&&(u=createTypedArray("float32",1===i.a?i.k[0].s.length:i.k.length)),c._cachingAtTime={lastFrame:initialDefaultFrame,lastIndex:0,value:u},expressionHelpers.searchExpressions(l,i,c),c.k&&s.addDynamicProperty(c),c};var r=ShapePropertyFactory.getConstructorFunction(),s=ShapePropertyFactory.getKeyframedConstructorFunction();function c(){}c.prototype={vertices:function(e,t){this.k&&this.getValue();var a,l=this.v;void 0!==t&&(l=this.getValueAtTime(t,0));var i=l._length,o=l[e],n=l.v,r=createSizedArray(i);for(a=0;a<i;a+=1)r[a]="i"===e||"o"===e?[o[a][0]-n[a][0],o[a][1]-n[a][1]]:[o[a][0],o[a][1]];return r},points:function(e){return this.vertices("v",e)},inTangents:function(e){return this.vertices("i",e)},outTangents:function(e){return this.vertices("o",e)},isClosed:function(){return this.v.c},pointOnPath:function(e,t){var a=this.v;void 0!==t&&(a=this.getValueAtTime(t,0)),this._segmentsLength||(this._segmentsLength=bez.getSegmentsLength(a));for(var l,i=this._segmentsLength,o=i.lengths,n=i.totalLength*e,r=0,s=o.length,c=0;r<s;){if(c+o[r].addedLength>n){var u=r,p=a.c&&r===s-1?0:r+1,b=(n-c)/o[r].addedLength;l=bez.getPointInSegment(a.v[u],a.v[p],a.o[u],a.i[p],b,o[r]);break}c+=o[r].addedLength,r+=1}return l||(l=a.c?[a.v[0][0],a.v[0][1]]:[a.v[a._length-1][0],a.v[a._length-1][1]]),l},vectorOnPath:function(e,t,a){1==e?e=this.v.c:0==e&&(e=.999);var l=this.pointOnPath(e,t),i=this.pointOnPath(e+.001,t),o=i[0]-l[0],n=i[1]-l[1],r=Math.sqrt(Math.pow(o,2)+Math.pow(n,2));return 0===r?[0,0]:"tangent"===a?[o/r,n/r]:[-n/r,o/r]},tangentOnPath:function(e,t){return this.vectorOnPath(e,t,"tangent")},normalOnPath:function(e,t){return this.vectorOnPath(e,t,"normal")},setGroupProperty:expressionHelpers.setGroupProperty,getValueAtTime:expressionHelpers.getStaticValueAtTime},extendPrototype([c],r),extendPrototype([c],s),s.prototype.getValueAtTime=function(e){return this._cachingAtTime||(this._cachingAtTime={shapeValue:shapePool.clone(this.pv),lastIndex:0,lastTime:initialDefaultFrame}),e*=this.elem.globalData.frameRate,(e-=this.offsetTime)!==this._cachingAtTime.lastTime&&(this._cachingAtTime.lastIndex=this._cachingAtTime.lastTime<e?this._caching.lastIndex:0,this._cachingAtTime.lastTime=e,this.interpolateShape(e,this._cachingAtTime.shapeValue,this._cachingAtTime)),this._cachingAtTime.shapeValue},s.prototype.initiateExpression=ExpressionManager.initiateExpression;var u=ShapePropertyFactory.getShapeProp;ShapePropertyFactory.getShapeProp=function(e,t,a,l,i){var o=u(e,t,a,l,i);return o.propertyIndex=t.ix,o.lock=!1,3===a?expressionHelpers.searchExpressions(e,t.pt,o):4===a&&expressionHelpers.searchExpressions(e,t.ks,o),o.k&&e.addDynamicProperty(o),o}}(),TextProperty.prototype.getExpressionValue=function(e,t){var a=this.calculateExpression(t);if(e.t!==a){var l={};return this.copyData(l,e),l.t=a.toString(),l.__complete=!1,l}return e},TextProperty.prototype.searchProperty=function(){var e=this.searchKeyframes(),t=this.searchExpressions();return this.kf=e||t,this.kf},TextProperty.prototype.searchExpressions=function(){return this.data.d.x?(this.calculateExpression=ExpressionManager.initiateExpression.bind(this)(this.elem,this.data.d,this),this.addEffect(this.getExpressionValue.bind(this)),!0):null};var ShapePathInterface=function(e,t,a){var l=t.sh;function i(e){return"Shape"===e||"shape"===e||"Path"===e||"path"===e||"ADBE Vector Shape"===e||2===e?i.path:null}var o=propertyGroupFactory(i,a);return l.setGroupProperty(PropertyInterface("Path",o)),Object.defineProperties(i,{path:{get:function(){return l.k&&l.getValue(),l}},shape:{get:function(){return l.k&&l.getValue(),l}},_name:{value:e.nm},ix:{value:e.ix},propertyIndex:{value:e.ix},mn:{value:e.mn},propertyGroup:{value:a}}),i},propertyGroupFactory=function(e,t){return function(a){return(a=void 0===a?1:a)<=0?e:t(a-1)}},PropertyInterface=function(e,t){var a={_name:e};return function(e){return(e=void 0===e?1:e)<=0?a:t(e-1)}},ShapeExpressionInterface=function(){function e(e,o,p){var b,d=[],g=e?e.length:0;for(b=0;b<g;b+=1)"gr"===e[b].ty?d.push(t(e[b],o[b],p)):"fl"===e[b].ty?d.push(a(e[b],o[b],p)):"st"===e[b].ty?d.push(l(e[b],o[b],p)):"tm"===e[b].ty?d.push(i(e[b],o[b],p)):"tr"===e[b].ty||("el"===e[b].ty?d.push(n(e[b],o[b],p)):"sr"===e[b].ty?d.push(r(e[b],o[b],p)):"sh"===e[b].ty?d.push(ShapePathInterface(e[b],o[b],p)):"rc"===e[b].ty?d.push(s(e[b],o[b],p)):"rd"===e[b].ty?d.push(c(e[b],o[b],p)):"rp"===e[b].ty&&d.push(u(e[b],o[b],p)));return d}function t(t,a,l){var i=function(e){switch(e){case"ADBE Vectors Group":case"Contents":case 2:return i.content;default:return i.transform}};i.propertyGroup=propertyGroupFactory(i,l);var n=function(t,a,l){var i,n=function(e){for(var t=0,a=i.length;t<a;){if(i[t]._name===e||i[t].mn===e||i[t].propertyIndex===e||i[t].ix===e||i[t].ind===e)return i[t];t+=1}return"number"==typeof e?i[e-1]:null};n.propertyGroup=propertyGroupFactory(n,l),i=e(t.it,a.it,n.propertyGroup),n.numProperties=i.length;var r=o(t.it[t.it.length-1],a.it[a.it.length-1],n.propertyGroup);return n.transform=r,n.propertyIndex=t.cix,n._name=t.nm,n}(t,a,i.propertyGroup),r=o(t.it[t.it.length-1],a.it[a.it.length-1],i.propertyGroup);return i.content=n,i.transform=r,Object.defineProperty(i,"_name",{get:function(){return t.nm}}),i.numProperties=t.np,i.propertyIndex=t.ix,i.nm=t.nm,i.mn=t.mn,i}function a(e,t,a){function l(e){return"Color"===e||"color"===e?l.color:"Opacity"===e||"opacity"===e?l.opacity:null}return Object.defineProperties(l,{color:{get:ExpressionPropertyInterface(t.c)},opacity:{get:ExpressionPropertyInterface(t.o)},_name:{value:e.nm},mn:{value:e.mn}}),t.c.setGroupProperty(PropertyInterface("Color",a)),t.o.setGroupProperty(PropertyInterface("Opacity",a)),l}function l(e,t,a){var l,i=propertyGroupFactory(c,a),o=propertyGroupFactory(s,i);function n(a){Object.defineProperty(s,e.d[a].nm,{get:ExpressionPropertyInterface(t.d.dataProps[a].p)})}var r=e.d?e.d.length:0,s={};for(l=0;l<r;l+=1)n(l),t.d.dataProps[l].p.setGroupProperty(o);function c(e){return"Color"===e||"color"===e?c.color:"Opacity"===e||"opacity"===e?c.opacity:"Stroke Width"===e||"stroke width"===e?c.strokeWidth:null}return Object.defineProperties(c,{color:{get:ExpressionPropertyInterface(t.c)},opacity:{get:ExpressionPropertyInterface(t.o)},strokeWidth:{get:ExpressionPropertyInterface(t.w)},dash:{get:function(){return s}},_name:{value:e.nm},mn:{value:e.mn}}),t.c.setGroupProperty(PropertyInterface("Color",i)),t.o.setGroupProperty(PropertyInterface("Opacity",i)),t.w.setGroupProperty(PropertyInterface("Stroke Width",i)),c}function i(e,t,a){function l(t){return t===e.e.ix||"End"===t||"end"===t?l.end:t===e.s.ix?l.start:t===e.o.ix?l.offset:null}var i=propertyGroupFactory(l,a);return l.propertyIndex=e.ix,t.s.setGroupProperty(PropertyInterface("Start",i)),t.e.setGroupProperty(PropertyInterface("End",i)),t.o.setGroupProperty(PropertyInterface("Offset",i)),l.propertyIndex=e.ix,l.propertyGroup=a,Object.defineProperties(l,{start:{get:ExpressionPropertyInterface(t.s)},end:{get:ExpressionPropertyInterface(t.e)},offset:{get:ExpressionPropertyInterface(t.o)},_name:{value:e.nm}}),l.mn=e.mn,l}function o(e,t,a){function l(t){return e.a.ix===t||"Anchor Point"===t?l.anchorPoint:e.o.ix===t||"Opacity"===t?l.opacity:e.p.ix===t||"Position"===t?l.position:e.r.ix===t||"Rotation"===t||"ADBE Vector Rotation"===t?l.rotation:e.s.ix===t||"Scale"===t?l.scale:e.sk&&e.sk.ix===t||"Skew"===t?l.skew:e.sa&&e.sa.ix===t||"Skew Axis"===t?l.skewAxis:null}var i=propertyGroupFactory(l,a);return t.transform.mProps.o.setGroupProperty(PropertyInterface("Opacity",i)),t.transform.mProps.p.setGroupProperty(PropertyInterface("Position",i)),t.transform.mProps.a.setGroupProperty(PropertyInterface("Anchor Point",i)),t.transform.mProps.s.setGroupProperty(PropertyInterface("Scale",i)),t.transform.mProps.r.setGroupProperty(PropertyInterface("Rotation",i)),t.transform.mProps.sk&&(t.transform.mProps.sk.setGroupProperty(PropertyInterface("Skew",i)),t.transform.mProps.sa.setGroupProperty(PropertyInterface("Skew Angle",i))),t.transform.op.setGroupProperty(PropertyInterface("Opacity",i)),Object.defineProperties(l,{opacity:{get:ExpressionPropertyInterface(t.transform.mProps.o)},position:{get:ExpressionPropertyInterface(t.transform.mProps.p)},anchorPoint:{get:ExpressionPropertyInterface(t.transform.mProps.a)},scale:{get:ExpressionPropertyInterface(t.transform.mProps.s)},rotation:{get:ExpressionPropertyInterface(t.transform.mProps.r)},skew:{get:ExpressionPropertyInterface(t.transform.mProps.sk)},skewAxis:{get:ExpressionPropertyInterface(t.transform.mProps.sa)},_name:{value:e.nm}}),l.ty="tr",l.mn=e.mn,l.propertyGroup=a,l}function n(e,t,a){function l(t){return e.p.ix===t?l.position:e.s.ix===t?l.size:null}var i=propertyGroupFactory(l,a);l.propertyIndex=e.ix;var o="tm"===t.sh.ty?t.sh.prop:t.sh;return o.s.setGroupProperty(PropertyInterface("Size",i)),o.p.setGroupProperty(PropertyInterface("Position",i)),Object.defineProperties(l,{size:{get:ExpressionPropertyInterface(o.s)},position:{get:ExpressionPropertyInterface(o.p)},_name:{value:e.nm}}),l.mn=e.mn,l}function r(e,t,a){function l(t){return e.p.ix===t?l.position:e.r.ix===t?l.rotation:e.pt.ix===t?l.points:e.or.ix===t||"ADBE Vector Star Outer Radius"===t?l.outerRadius:e.os.ix===t?l.outerRoundness:!e.ir||e.ir.ix!==t&&"ADBE Vector Star Inner Radius"!==t?e.is&&e.is.ix===t?l.innerRoundness:null:l.innerRadius}var i=propertyGroupFactory(l,a),o="tm"===t.sh.ty?t.sh.prop:t.sh;return l.propertyIndex=e.ix,o.or.setGroupProperty(PropertyInterface("Outer Radius",i)),o.os.setGroupProperty(PropertyInterface("Outer Roundness",i)),o.pt.setGroupProperty(PropertyInterface("Points",i)),o.p.setGroupProperty(PropertyInterface("Position",i)),o.r.setGroupProperty(PropertyInterface("Rotation",i)),e.ir&&(o.ir.setGroupProperty(PropertyInterface("Inner Radius",i)),o.is.setGroupProperty(PropertyInterface("Inner Roundness",i))),Object.defineProperties(l,{position:{get:ExpressionPropertyInterface(o.p)},rotation:{get:ExpressionPropertyInterface(o.r)},points:{get:ExpressionPropertyInterface(o.pt)},outerRadius:{get:ExpressionPropertyInterface(o.or)},outerRoundness:{get:ExpressionPropertyInterface(o.os)},innerRadius:{get:ExpressionPropertyInterface(o.ir)},innerRoundness:{get:ExpressionPropertyInterface(o.is)},_name:{value:e.nm}}),l.mn=e.mn,l}function s(e,t,a){function l(t){return e.p.ix===t?l.position:e.r.ix===t?l.roundness:e.s.ix===t||"Size"===t||"ADBE Vector Rect Size"===t?l.size:null}var i=propertyGroupFactory(l,a),o="tm"===t.sh.ty?t.sh.prop:t.sh;return l.propertyIndex=e.ix,o.p.setGroupProperty(PropertyInterface("Position",i)),o.s.setGroupProperty(PropertyInterface("Size",i)),o.r.setGroupProperty(PropertyInterface("Rotation",i)),Object.defineProperties(l,{position:{get:ExpressionPropertyInterface(o.p)},roundness:{get:ExpressionPropertyInterface(o.r)},size:{get:ExpressionPropertyInterface(o.s)},_name:{value:e.nm}}),l.mn=e.mn,l}function c(e,t,a){function l(t){return e.r.ix===t||"Round Corners 1"===t?l.radius:null}var i=propertyGroupFactory(l,a),o=t;return l.propertyIndex=e.ix,o.rd.setGroupProperty(PropertyInterface("Radius",i)),Object.defineProperties(l,{radius:{get:ExpressionPropertyInterface(o.rd)},_name:{value:e.nm}}),l.mn=e.mn,l}function u(e,t,a){function l(t){return e.c.ix===t||"Copies"===t?l.copies:e.o.ix===t||"Offset"===t?l.offset:null}var i=propertyGroupFactory(l,a),o=t;return l.propertyIndex=e.ix,o.c.setGroupProperty(PropertyInterface("Copies",i)),o.o.setGroupProperty(PropertyInterface("Offset",i)),Object.defineProperties(l,{copies:{get:ExpressionPropertyInterface(o.c)},offset:{get:ExpressionPropertyInterface(o.o)},_name:{value:e.nm}}),l.mn=e.mn,l}return function(t,a,l){var i;function o(e){if("number"==typeof e)return 0===(e=void 0===e?1:e)?l:i[e-1];for(var t=0,a=i.length;t<a;){if(i[t]._name===e)return i[t];t+=1}return null}return o.propertyGroup=propertyGroupFactory(o,(function(){return l})),i=e(t,a,o.propertyGroup),o.numProperties=i.length,o._name="Contents",o}}(),TextExpressionInterface=function(e){var t;function a(e){switch(e){case"ADBE Text Document":return a.sourceText;default:return null}}return Object.defineProperty(a,"sourceText",{get:function(){e.textProperty.getValue();var a=e.textProperty.currentData.t;return void 0!==a&&(e.textProperty.currentData.t=void 0,(t=new String(a)).value=a||new String(a)),t}}),a},LayerExpressionInterface=function(){function e(e){var t=new Matrix;return void 0!==e?this._elem.finalTransform.mProp.getValueAtTime(e).clone(t):this._elem.finalTransform.mProp.applyToMatrix(t),t}function t(e,t){var a=this.getMatrix(t);return a.props[12]=0,a.props[13]=0,a.props[14]=0,this.applyPoint(a,e)}function a(e,t){var a=this.getMatrix(t);return this.applyPoint(a,e)}function l(e,t){var a=this.getMatrix(t);return a.props[12]=0,a.props[13]=0,a.props[14]=0,this.invertPoint(a,e)}function i(e,t){var a=this.getMatrix(t);return this.invertPoint(a,e)}function o(e,t){if(this._elem.hierarchy&&this._elem.hierarchy.length){var a,l=this._elem.hierarchy.length;for(a=0;a<l;a+=1)this._elem.hierarchy[a].finalTransform.mProp.applyToMatrix(e)}return e.applyToPointArray(t[0],t[1],t[2]||0)}function n(e,t){if(this._elem.hierarchy&&this._elem.hierarchy.length){var a,l=this._elem.hierarchy.length;for(a=0;a<l;a+=1)this._elem.hierarchy[a].finalTransform.mProp.applyToMatrix(e)}return e.inversePoint(t)}function r(e){var t=new Matrix;if(t.reset(),this._elem.finalTransform.mProp.applyToMatrix(t),this._elem.hierarchy&&this._elem.hierarchy.length){var a,l=this._elem.hierarchy.length;for(a=0;a<l;a+=1)this._elem.hierarchy[a].finalTransform.mProp.applyToMatrix(t);return t.inversePoint(e)}return t.inversePoint(e)}function s(){return[1,1,1,1]}return function(c){var u;function p(e){switch(e){case"ADBE Root Vectors Group":case"Contents":case 2:return p.shapeInterface;case 1:case 6:case"Transform":case"transform":case"ADBE Transform Group":return u;case 4:case"ADBE Effect Parade":case"effects":case"Effects":return p.effect;case"ADBE Text Properties":return p.textInterface;default:return null}}p.getMatrix=e,p.invertPoint=n,p.applyPoint=o,p.toWorld=a,p.toWorldVec=t,p.fromWorld=i,p.fromWorldVec=l,p.toComp=a,p.fromComp=r,p.sampleImage=s,p.sourceRectAtTime=c.sourceRectAtTime.bind(c),p._elem=c;var b=getDescriptor(u=TransformExpressionInterface(c.finalTransform.mProp),"anchorPoint");return Object.defineProperties(p,{hasParent:{get:function(){return c.hierarchy.length}},parent:{get:function(){return c.hierarchy[0].layerInterface}},rotation:getDescriptor(u,"rotation"),scale:getDescriptor(u,"scale"),position:getDescriptor(u,"position"),opacity:getDescriptor(u,"opacity"),anchorPoint:b,anchor_point:b,transform:{get:function(){return u}},active:{get:function(){return c.isInRange}}}),p.startTime=c.data.st,p.index=c.data.ind,p.source=c.data.refId,p.height=0===c.data.ty?c.data.h:100,p.width=0===c.data.ty?c.data.w:100,p.inPoint=c.data.ip/c.comp.globalData.frameRate,p.outPoint=c.data.op/c.comp.globalData.frameRate,p._name=c.data.nm,p.registerMaskInterface=function(e){p.mask=new MaskManagerInterface(e,c)},p.registerEffectsInterface=function(e){p.effect=e},p}}(),FootageInterface=(dataInterfaceFactory=function(e){function t(e){return"Outline"===e?t.outlineInterface():null}return t._name="Outline",t.outlineInterface=function(e){var t="",a=e.getFootageData();function l(e){if(a[e])return t=e,"object"==typeof(a=a[e])?l:a;var i=e.indexOf(t);if(-1!==i){var o=parseInt(e.substr(i+t.length),10);return"object"==typeof(a=a[o])?l:a}return""}return function(){return t="",a=e.getFootageData(),l}}(e),t},function(e){function t(e){return"Data"===e?t.dataInterface:null}return t._name="Data",t.dataInterface=dataInterfaceFactory(e),t}),dataInterfaceFactory,CompExpressionInterface=function(e){function t(t){for(var a=0,l=e.layers.length;a<l;){if(e.layers[a].nm===t||e.layers[a].ind===t)return e.elements[a].layerInterface;a+=1}return null}return Object.defineProperty(t,"_name",{value:e.data.nm}),t.layer=t,t.pixelAspect=1,t.height=e.data.h||e.globalData.compSize.h,t.width=e.data.w||e.globalData.compSize.w,t.pixelAspect=1,t.frameDuration=1/e.globalData.frameRate,t.displayStartTime=0,t.numLayers=e.layers.length,t},TransformExpressionInterface=function(e){function t(e){switch(e){case"scale":case"Scale":case"ADBE Scale":case 6:return t.scale;case"rotation":case"Rotation":case"ADBE Rotation":case"ADBE Rotate Z":case 10:return t.rotation;case"ADBE Rotate X":return t.xRotation;case"ADBE Rotate Y":return t.yRotation;case"position":case"Position":case"ADBE Position":case 2:return t.position;case"ADBE Position_0":return t.xPosition;case"ADBE Position_1":return t.yPosition;case"ADBE Position_2":return t.zPosition;case"anchorPoint":case"AnchorPoint":case"Anchor Point":case"ADBE AnchorPoint":case 1:return t.anchorPoint;case"opacity":case"Opacity":case 11:return t.opacity;default:return null}}var a,l,i,o;return Object.defineProperty(t,"rotation",{get:ExpressionPropertyInterface(e.r||e.rz)}),Object.defineProperty(t,"zRotation",{get:ExpressionPropertyInterface(e.rz||e.r)}),Object.defineProperty(t,"xRotation",{get:ExpressionPropertyInterface(e.rx)}),Object.defineProperty(t,"yRotation",{get:ExpressionPropertyInterface(e.ry)}),Object.defineProperty(t,"scale",{get:ExpressionPropertyInterface(e.s)}),e.p?o=ExpressionPropertyInterface(e.p):(a=ExpressionPropertyInterface(e.px),l=ExpressionPropertyInterface(e.py),e.pz&&(i=ExpressionPropertyInterface(e.pz))),Object.defineProperty(t,"position",{get:function(){return e.p?o():[a(),l(),i?i():0]}}),Object.defineProperty(t,"xPosition",{get:ExpressionPropertyInterface(e.px)}),Object.defineProperty(t,"yPosition",{get:ExpressionPropertyInterface(e.py)}),Object.defineProperty(t,"zPosition",{get:ExpressionPropertyInterface(e.pz)}),Object.defineProperty(t,"anchorPoint",{get:ExpressionPropertyInterface(e.a)}),Object.defineProperty(t,"opacity",{get:ExpressionPropertyInterface(e.o)}),Object.defineProperty(t,"skew",{get:ExpressionPropertyInterface(e.sk)}),Object.defineProperty(t,"skewAxis",{get:ExpressionPropertyInterface(e.sa)}),Object.defineProperty(t,"orientation",{get:ExpressionPropertyInterface(e.or)}),t},ProjectInterface=function(){function e(e){this.compositions.push(e)}return function(){function t(e){for(var t=0,a=this.compositions.length;t<a;){if(this.compositions[t].data&&this.compositions[t].data.nm===e)return this.compositions[t].prepareFrame&&this.compositions[t].data.xt&&this.compositions[t].prepareFrame(this.currentFrame),this.compositions[t].compInterface;t+=1}return null}return t.compositions=[],t.currentFrame=0,t.registerComposition=e,t}}(),EffectsExpressionInterface=function(){function e(a,l,i,o){function n(e){for(var t=a.ef,l=0,i=t.length;l<i;){if(e===t[l].nm||e===t[l].mn||e===t[l].ix)return 5===t[l].ty?c[l]:c[l]();l+=1}throw new Error}var r,s=propertyGroupFactory(n,i),c=[],u=a.ef.length;for(r=0;r<u;r+=1)5===a.ef[r].ty?c.push(e(a.ef[r],l.effectElements[r],l.effectElements[r].propertyGroup,o)):c.push(t(l.effectElements[r],a.ef[r].ty,o,s));return"ADBE Color Control"===a.mn&&Object.defineProperty(n,"color",{get:function(){return c[0]()}}),Object.defineProperties(n,{numProperties:{get:function(){return a.np}},_name:{value:a.nm},propertyGroup:{value:s}}),n.enabled=0!==a.en,n.active=n.enabled,n}function t(e,t,a,l){var i=ExpressionPropertyInterface(e.p);return e.p.setGroupProperty&&e.p.setGroupProperty(PropertyInterface("",l)),function(){return 10===t?a.comp.compInterface(e.p.v):i()}}return{createEffectsInterface:function(t,a){if(t.effectsManager){var l,i=[],o=t.data.ef,n=t.effectsManager.effectElements.length;for(l=0;l<n;l+=1)i.push(e(o[l],t.effectsManager.effectElements[l],a,t));var r=t.data.ef||[],s=function(e){for(l=0,n=r.length;l<n;){if(e===r[l].nm||e===r[l].mn||e===r[l].ix)return i[l];l+=1}return null};return Object.defineProperty(s,"numProperties",{get:function(){return r.length}}),s}return null}}}(),MaskManagerInterface=function(){function e(e,t){this._mask=e,this._data=t}return Object.defineProperty(e.prototype,"maskPath",{get:function(){return this._mask.prop.k&&this._mask.prop.getValue(),this._mask.prop}}),Object.defineProperty(e.prototype,"maskOpacity",{get:function(){return this._mask.op.k&&this._mask.op.getValue(),100*this._mask.op.v}}),function(t){var a,l=createSizedArray(t.viewData.length),i=t.viewData.length;for(a=0;a<i;a+=1)l[a]=new e(t.viewData[a],t.masksProperties[a]);return function(e){for(a=0;a<i;){if(t.masksProperties[a].nm===e)return l[a];a+=1}return null}}}(),ExpressionPropertyInterface=function(){var e={pv:0,v:0,mult:1},t={pv:[0,0,0],v:[0,0,0],mult:1};function a(e,t,a){Object.defineProperty(e,"velocity",{get:function(){return t.getVelocityAtTime(t.comp.currentFrame)}}),e.numKeys=t.keyframes?t.keyframes.length:0,e.key=function(l){if(!e.numKeys)return 0;var i;i="s"in t.keyframes[l-1]?t.keyframes[l-1].s:"e"in t.keyframes[l-2]?t.keyframes[l-2].e:t.keyframes[l-2].s;var o="unidimensional"===a?new Number(i):Object.assign({},i);return o.time=t.keyframes[l-1].t/t.elem.comp.globalData.frameRate,o.value="unidimensional"===a?i[0]:i,o},e.valueAtTime=t.getValueAtTime,e.speedAtTime=t.getSpeedAtTime,e.velocityAtTime=t.getVelocityAtTime,e.propertyGroup=t.propertyGroup}function l(){return e}return function(i){return i?"unidimensional"===i.propType?function(t){t&&"pv"in t||(t=e);var l=1/t.mult,i=t.pv*l,o=new Number(i);return o.value=i,a(o,t,"unidimensional"),function(){return t.k&&t.getValue(),i=t.v*l,o.value!==i&&((o=new Number(i)).value=i,a(o,t,"unidimensional")),o}}(i):function(e){e&&"pv"in e||(e=t);var l=1/e.mult,i=e.data&&e.data.l||e.pv.length,o=createTypedArray("float32",i),n=createTypedArray("float32",i);return o.value=n,a(o,e,"multidimensional"),function(){e.k&&e.getValue();for(var t=0;t<i;t+=1)n[t]=e.v[t]*l,o[t]=n[t];return o}}(i):l}}();function SliderEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,0,0,a)}function AngleEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,0,0,a)}function ColorEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,1,0,a)}function PointEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,1,0,a)}function LayerIndexEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,0,0,a)}function MaskIndexEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,0,0,a)}function CheckboxEffect(e,t,a){this.p=PropertyFactory.getProp(t,e.v,0,0,a)}function NoValueEffect(){this.p={}}function EffectsManager(e,t){var a,l=e.ef||[];this.effectElements=[];var i,o=l.length;for(a=0;a<o;a+=1)i=new GroupEffect(l[a],t),this.effectElements.push(i)}function GroupEffect(e,t){this.init(e,t)}!function(){var e=TextSelectorProp.getTextSelectorProp;TextSelectorProp.getTextSelectorProp=function(t,a,l){return 1===a.t?new TextExpressionSelectorPropFactory(t,a,l):e(t,a,l)}}(),extendPrototype([DynamicPropertyContainer],GroupEffect),GroupEffect.prototype.getValue=GroupEffect.prototype.iterateDynamicProperties,GroupEffect.prototype.init=function(e,t){var a;this.data=e,this.effectElements=[],this.initDynamicPropertyContainer(t);var l,i=this.data.ef.length,o=this.data.ef;for(a=0;a<i;a+=1){switch(l=null,o[a].ty){case 0:l=new SliderEffect(o[a],t,this);break;case 1:l=new AngleEffect(o[a],t,this);break;case 2:l=new ColorEffect(o[a],t,this);break;case 3:l=new PointEffect(o[a],t,this);break;case 4:case 7:l=new CheckboxEffect(o[a],t,this);break;case 10:l=new LayerIndexEffect(o[a],t,this);break;case 11:l=new MaskIndexEffect(o[a],t,this);break;case 5:l=new EffectsManager(o[a],t,this);break;default:l=new NoValueEffect(o[a],t,this)}l&&this.effectElements.push(l)}};var lottie={};function setLocationHref(e){locationHref=e}function searchAnimations(){!0===standalone?animationManager.searchAnimations(animationData,standalone,renderer):animationManager.searchAnimations()}function setSubframeRendering(e){subframeEnabled=e}function loadAnimation(e){return!0===standalone&&(e.animationData=JSON.parse(animationData)),animationManager.loadAnimation(e)}function setQuality(e){if("string"==typeof e)switch(e){case"high":defaultCurveSegments=200;break;default:case"medium":defaultCurveSegments=50;break;case"low":defaultCurveSegments=10}else!isNaN(e)&&e>1&&(defaultCurveSegments=e);roundValues(!(defaultCurveSegments>=50))}function inBrowser(){return"undefined"!=typeof navigator}function installPlugin(e,t){"expressions"===e&&(expressionsPlugin=t)}function getFactory(e){switch(e){case"propertyFactory":return PropertyFactory;case"shapePropertyFactory":return ShapePropertyFactory;case"matrix":return Matrix;default:return null}}function checkReady(){"complete"===document.readyState&&(clearInterval(readyStateCheckInterval),searchAnimations())}function getQueryVariable(e){for(var t=queryString.split("&"),a=0;a<t.length;a+=1){var l=t[a].split("=");if(decodeURIComponent(l[0])==e)return decodeURIComponent(l[1])}return null}lottie.play=animationManager.play,lottie.pause=animationManager.pause,lottie.setLocationHref=setLocationHref,lottie.togglePause=animationManager.togglePause,lottie.setSpeed=animationManager.setSpeed,lottie.setDirection=animationManager.setDirection,lottie.stop=animationManager.stop,lottie.searchAnimations=searchAnimations,lottie.registerAnimation=animationManager.registerAnimation,lottie.loadAnimation=loadAnimation,lottie.setSubframeRendering=setSubframeRendering,lottie.resize=animationManager.resize,lottie.goToAndStop=animationManager.goToAndStop,lottie.destroy=animationManager.destroy,lottie.setQuality=setQuality,lottie.inBrowser=inBrowser,lottie.installPlugin=installPlugin,lottie.freeze=animationManager.freeze,lottie.unfreeze=animationManager.unfreeze,lottie.setVolume=animationManager.setVolume,lottie.mute=animationManager.mute,lottie.unmute=animationManager.unmute,lottie.getRegisteredAnimations=animationManager.getRegisteredAnimations,lottie.__getFactory=getFactory,lottie.version="5.7.8";var standalone="__[STANDALONE]__",animationData="__[ANIMATIONDATA]__",renderer="",queryString;if(standalone){var scripts=document.getElementsByTagName("script"),index=scripts.length-1,myScript=scripts[index]||{src:""};queryString=myScript.src.replace(/^[^\?]+\??/,""),renderer=getQueryVariable("renderer")}var readyStateCheckInterval=setInterval(checkReady,100);return lottie}))})),PlayerState,PlayerEvent,t;function parseSrc(e){if("object"==typeof e)return e;try{return JSON.parse(e)}catch(e){}try{return new URL(e).toString()}catch(e){}return e}t=PlayerState||(PlayerState={}),t.Loading="loading",t.Playing="playing",t.Paused="paused",t.Stopped="stopped",t.Frozen="frozen",t.Error="error",function(e){e.Load="load",e.Error="error",e.Ready="ready",e.Play="play",e.Pause="pause",e.Stop="stop",e.Freeze="freeze",e.Loop="loop",e.Complete="complete",e.Frame="frame"}(PlayerEvent||(PlayerEvent={}));var defaultOptions={clearCanvas:!1,hideOnTransparent:!0,progressiveLoad:!0},Player=function(e){function t(t){var a=e.call(this,t)||this;return a.container=null,a.handleBgChange=function(e){a.setState({background:e})},a.triggerDownload=function(e,t){var a=document.createElement("a");a.href=e,a.download=t,document.body.appendChild(a),a.click(),document.body.removeChild(a)},a.snapshot=function(e){var t;void 0===e&&(e=!0);var l=a.props.id?a.props.id:"lottie",i=document.getElementById(l);if("svg"===a.props.renderer){if(i){var o=i.querySelector("svg");if(o){var n=(new XMLSerializer).serializeToString(o);t="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(n)}}e&&a.triggerDownload(t,"snapshot.svg")}else if("canvas"===a.props.renderer){if(i){var r=i.querySelector("canvas");r&&(t=r.toDataURL("image/png"))}e&&a.triggerDownload(t,"snapshot.png")}return t},"undefined"!=typeof window&&(window.lottie=lottie),a.state={animationData:null,background:"transparent",containerRef:react__WEBPACK_IMPORTED_MODULE_0__.createRef(),debug:!0,instance:null,playerState:PlayerState.Loading,seeker:0},a}return __extends(t,e),t.getDerivedStateFromProps=function(e,t){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(a){return e.background!==t.background?[2,{background:e.background}]:[2,null]}))}))},t.prototype.componentDidMount=function(){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(e){switch(e.label){case 0:return[4,this.createLottie()];case 1:return e.sent(),[2]}}))}))},t.prototype.componentWillUnmount=function(){this.state.instance&&this.state.instance.destroy()},t.prototype.componentDidUpdate=function(e){return __awaiter(this,void 0,void 0,(function(){return __generator(this,(function(t){switch(t.label){case 0:return this.props.src===e.src?[3,2]:(this.state.instance&&this.state.instance.destroy(),[4,this.createLottie()]);case 1:t.sent(),t.label=2;case 2:return[2]}}))}))},t.prototype.render=function(){var e=this,t=this.props,a=t.children,l=t.loop,i=t.style,o=t.onBackgroundChange,n=t.className,r=this.state,s=r.animationData,c=r.instance,u=r.playerState,p=r.seeker,b=r.debug,d=r.background;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-player-container"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{id:this.props.id?this.props.id:"lottie",ref:function(t){return e.container=t},style:__assign({background:d,margin:"0 auto",outline:"none",overflow:"hidden"},i),className:n}),react__WEBPACK_IMPORTED_MODULE_0__.Children.map(a,(function(t){return react__WEBPACK_IMPORTED_MODULE_0__.isValidElement(t)?react__WEBPACK_IMPORTED_MODULE_0__.cloneElement(t,{animationData:s,background:d,debug:b,instance:c,loop:l,pause:function(){return e.pause()},play:function(){return e.play()},playerState:u,seeker:p,setBackground:function(t){e.setState({background:t}),"function"==typeof o&&o(t)},setSeeker:function(t,a){return e.setSeeker(t,a)},stop:function(){return e.stop()},toggleDebug:function(){return e.toggleDebug()},setLoop:function(t){return e.setLoop(t)},colorChangedEvent:function(t){e.handleBgChange(t)},snapshot:function(){e.snapshot()}}):null})))},t.prototype.toggleDebug=function(){this.setState({debug:!this.state.debug})},t.prototype.createLottie=function(){return __awaiter(this,void 0,void 0,(function(){var e,t,a,l,i,o,n,r,s,c,u,p,b,d,g=this;return __generator(this,(function(m){switch(m.label){case 0:if(e=this.props,t=e.autoplay,a=e.direction,l=e.loop,i=e.lottieRef,o=e.renderer,n=e.speed,r=e.src,s=e.background,c=e.rendererSettings,u=e.hover,p=this.state.instance,!r||!this.container)return[2];m.label=1;case 1:return m.trys.push([1,5,,6]),"string"!=typeof(b=parseSrc(r))?[3,4]:[4,fetch(b)];case 2:return[4,m.sent().json()];case 3:b=m.sent(),m.label=4;case 4:return p&&p.destroy(),d=lottie.loadAnimation({rendererSettings:c||defaultOptions,animationData:b,autoplay:t||!1,container:this.container,loop:l||!1,renderer:o}),n&&lottie.setSpeed(n),this.setState({animationData:b}),d.addEventListener("enterFrame",(function(){g.triggerEvent(PlayerEvent.Frame),g.setState({seeker:Math.floor(d.currentFrame)})})),d.addEventListener("DOMLoaded",(function(){g.triggerEvent(PlayerEvent.Load)})),d.addEventListener("data_ready",(function(){g.triggerEvent(PlayerEvent.Ready)})),d.addEventListener("data_failed",(function(){g.setState({playerState:PlayerState.Error})})),d.addEventListener("loopComplete",(function(){g.triggerEvent(PlayerEvent.Loop)})),d.addEventListener("complete",(function(){g.triggerEvent(PlayerEvent.Complete),g.setState({playerState:PlayerState.Paused}),g.props.keepLastFrame&&!g.props.loop||g.setSeeker(0)})),this.container.addEventListener("mouseenter",(function(){u&&g.state.playerState!==PlayerState.Playing&&(g.props.keepLastFrame&&g.stop(),g.play())})),this.container.addEventListener("mouseleave",(function(){u&&g.state.playerState===PlayerState.Playing&&g.stop()})),n&&this.setPlayerSpeed(n),a&&this.setPlayerDirection(a),s&&this.setState({background:s}),this.setState({instance:d},(function(){"function"==typeof i&&i(d),t&&g.play()})),[3,6];case 5:return m.sent(),this.setState({playerState:PlayerState.Error}),[3,6];case 6:return[2]}}))}))},t.prototype.play=function(){var e=this.state.instance;e&&(this.triggerEvent(PlayerEvent.Play),e.play(),this.setState({playerState:PlayerState.Playing}))},t.prototype.pause=function(){var e=this.state.instance;e&&(this.triggerEvent(PlayerEvent.Pause),e.pause(),this.setState({playerState:PlayerState.Paused}))},t.prototype.stop=function(){var e=this.state.instance;e&&(this.triggerEvent(PlayerEvent.Stop),e.stop(),this.setState({playerState:PlayerState.Stopped}))},t.prototype.setPlayerSpeed=function(e){var t=this.state.instance;t&&t.setSpeed(e)},t.prototype.setPlayerDirection=function(e){var t=this.state.instance;t&&t.setDirection(e)},t.prototype.setSeeker=function(e,t){void 0===t&&(t=!1);var a=this.state,l=a.instance,i=a.playerState;l&&(t&&i===PlayerState.Playing?l.goToAndPlay(e,!0):(l.goToAndStop(e,!0),this.triggerEvent(PlayerEvent.Pause),this.setState({playerState:PlayerState.Paused})))},t.prototype.setLoop=function(e){var t=this.state.instance;t&&(t.loop=e,this.setState({instance:t}))},t.prototype.triggerEvent=function(e){var t=this.props.onEvent;t&&t(e)},t.defaultProps={loop:!1},t}(react__WEBPACK_IMPORTED_MODULE_0__.Component);function styleInject(e,t){void 0===t&&(t={});var a=t.insertAt;if(e&&"undefined"!=typeof document){var l=document.head||document.getElementsByTagName("head")[0],i=document.createElement("style");i.type="text/css","top"===a&&l.firstChild?l.insertBefore(i,l.firstChild):l.appendChild(i),i.styleSheet?i.styleSheet.cssText=e:i.appendChild(document.createTextNode(e))}}var css_248z=".lf-progress {\n  -webkit-appearance: none;\n  -moz-apperance: none;\n  width: 100%;\n  /* margin: 0 10px; */\n  height: 4px;\n  border-radius: 3px;\n  cursor: pointer;\n}\n.lf-progress:focus {\n  outline: none;\n  border: none;\n}\n.lf-progress::-moz-range-track {\n  cursor: pointer;\n  background: none;\n  border: none;\n  outline: none;\n}\n.lf-progress::-webkit-slider-thumb {\n  -webkit-appearance: none !important;\n  height: 13px;\n  width: 13px;\n  border: 0;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress::-moz-range-thumb {\n  -moz-appearance: none !important;\n  height: 13px;\n  width: 13px;\n  border: 0;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress::-ms-track {\n  width: 100%;\n  height: 3px;\n  cursor: pointer;\n  background: transparent;\n  border-color: transparent;\n  color: transparent;\n}\n.lf-progress::-ms-fill-lower {\n  background: #ccc;\n  border-radius: 3px;\n}\n.lf-progress::-ms-fill-upper {\n  background: #ccc;\n  border-radius: 3px;\n}\n.lf-progress::-ms-thumb {\n  border: 0;\n  height: 15px;\n  width: 15px;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress:focus::-ms-fill-lower {\n  background: #ccc;\n}\n.lf-progress:focus::-ms-fill-upper {\n  background: #ccc;\n}\n.lf-player-container :focus {\n  outline: 0;\n}\n.lf-popover {\n  position: relative;\n}\n\n.lf-popover-content {\n  display: inline-block;\n  position: absolute;\n  opacity: 1;\n  visibility: visible;\n  transform: translate(0, -10px);\n  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n  transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);\n}\n\n.lf-popover-content.hidden {\n  opacity: 0;\n  visibility: hidden;\n  transform: translate(0, 0px);\n}\n\n.lf-player-btn-container {\n  display: flex;\n  align-items: center;\n}\n.lf-player-btn {\n  cursor: pointer;\n  fill: #999;\n  width: 14px;\n}\n\n.lf-player-btn.active {\n  fill: #555;\n}\n\n.lf-popover {\n  position: relative;\n}\n\n.lf-popover-content {\n  display: inline-block;\n  position: absolute;\n  background-color: #ffffff;\n  opacity: 1;\n\n  transform: translate(0, -10px);\n  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n  transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);\n  padding: 10px;\n}\n\n.lf-popover-content.hidden {\n  opacity: 0;\n  visibility: hidden;\n  transform: translate(0, 0px);\n}\n\n.lf-arrow {\n  position: absolute;\n  z-index: -1;\n  content: '';\n  bottom: -9px;\n  border-style: solid;\n  border-width: 10px 10px 0px 10px;\n}\n\n.lf-left-align,\n.lf-left-align .lfarrow {\n  left: 0;\n  right: unset;\n}\n\n.lf-right-align,\n.lf-right-align .lf-arrow {\n  right: 0;\n  left: unset;\n}\n\n.lf-text-input {\n  border: 1px #ccc solid;\n  border-radius: 5px;\n  padding: 3px;\n  width: 60px;\n  margin: 0;\n}\n\n.lf-color-picker {\n  display: flex;\n  flex-direction: row;\n  justify-content: space-between;\n  height: 90px;\n}\n\n.lf-color-selectors {\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}\n\n.lf-color-component {\n  display: flex;\n  flex-direction: row;\n  font-size: 12px;\n  align-items: center;\n  justify-content: center;\n}\n\n.lf-color-component strong {\n  width: 40px;\n}\n\n.lf-color-component input[type='range'] {\n  margin: 0 0 0 10px;\n}\n\n.lf-color-component input[type='number'] {\n  width: 50px;\n  margin: 0 0 0 10px;\n}\n\n.lf-color-preview {\n  font-size: 12px;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: space-between;\n  padding-left: 5px;\n}\n\n.lf-preview {\n  height: 60px;\n  width: 60px;\n}\n\n.lf-popover-snapshot {\n  width: 150px;\n}\n.lf-popover-snapshot h5 {\n  margin: 5px 0 10px 0;\n  font-size: 0.75rem;\n}\n.lf-popover-snapshot a {\n  display: block;\n  text-decoration: none;\n}\n.lf-popover-snapshot a:before {\n  content: '⥼';\n  margin-right: 5px;\n}\n.lf-popover-snapshot .lf-note {\n  display: block;\n  margin-top: 10px;\n  color: #999;\n}\n.lf-player-controls > div {\n  margin-right: 5px;\n  margin-left: 5px;\n}\n.lf-player-controls > div:first-child {\n  margin-left: 0px;\n}\n.lf-player-controls > div:last-child {\n  margin-right: 0px;\n}\n",stylesheet=".lf-progress {\n  -webkit-appearance: none;\n  -moz-apperance: none;\n  width: 100%;\n  /* margin: 0 10px; */\n  height: 4px;\n  border-radius: 3px;\n  cursor: pointer;\n}\n.lf-progress:focus {\n  outline: none;\n  border: none;\n}\n.lf-progress::-moz-range-track {\n  cursor: pointer;\n  background: none;\n  border: none;\n  outline: none;\n}\n.lf-progress::-webkit-slider-thumb {\n  -webkit-appearance: none !important;\n  height: 13px;\n  width: 13px;\n  border: 0;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress::-moz-range-thumb {\n  -moz-appearance: none !important;\n  height: 13px;\n  width: 13px;\n  border: 0;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress::-ms-track {\n  width: 100%;\n  height: 3px;\n  cursor: pointer;\n  background: transparent;\n  border-color: transparent;\n  color: transparent;\n}\n.lf-progress::-ms-fill-lower {\n  background: #ccc;\n  border-radius: 3px;\n}\n.lf-progress::-ms-fill-upper {\n  background: #ccc;\n  border-radius: 3px;\n}\n.lf-progress::-ms-thumb {\n  border: 0;\n  height: 15px;\n  width: 15px;\n  border-radius: 50%;\n  background: #0fccce;\n  cursor: pointer;\n}\n.lf-progress:focus::-ms-fill-lower {\n  background: #ccc;\n}\n.lf-progress:focus::-ms-fill-upper {\n  background: #ccc;\n}\n.lf-player-container :focus {\n  outline: 0;\n}\n.lf-popover {\n  position: relative;\n}\n\n.lf-popover-content {\n  display: inline-block;\n  position: absolute;\n  opacity: 1;\n  visibility: visible;\n  transform: translate(0, -10px);\n  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n  transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);\n}\n\n.lf-popover-content.hidden {\n  opacity: 0;\n  visibility: hidden;\n  transform: translate(0, 0px);\n}\n\n.lf-player-btn-container {\n  display: flex;\n  align-items: center;\n}\n.lf-player-btn {\n  cursor: pointer;\n  fill: #999;\n  width: 14px;\n}\n\n.lf-player-btn.active {\n  fill: #555;\n}\n\n.lf-popover {\n  position: relative;\n}\n\n.lf-popover-content {\n  display: inline-block;\n  position: absolute;\n  background-color: #ffffff;\n  opacity: 1;\n\n  transform: translate(0, -10px);\n  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);\n  transition: all 0.3s cubic-bezier(0.75, -0.02, 0.2, 0.97);\n  padding: 10px;\n}\n\n.lf-popover-content.hidden {\n  opacity: 0;\n  visibility: hidden;\n  transform: translate(0, 0px);\n}\n\n.lf-arrow {\n  position: absolute;\n  z-index: -1;\n  content: '';\n  bottom: -9px;\n  border-style: solid;\n  border-width: 10px 10px 0px 10px;\n}\n\n.lf-left-align,\n.lf-left-align .lfarrow {\n  left: 0;\n  right: unset;\n}\n\n.lf-right-align,\n.lf-right-align .lf-arrow {\n  right: 0;\n  left: unset;\n}\n\n.lf-text-input {\n  border: 1px #ccc solid;\n  border-radius: 5px;\n  padding: 3px;\n  width: 60px;\n  margin: 0;\n}\n\n.lf-color-picker {\n  display: flex;\n  flex-direction: row;\n  justify-content: space-between;\n  height: 90px;\n}\n\n.lf-color-selectors {\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n}\n\n.lf-color-component {\n  display: flex;\n  flex-direction: row;\n  font-size: 12px;\n  align-items: center;\n  justify-content: center;\n}\n\n.lf-color-component strong {\n  width: 40px;\n}\n\n.lf-color-component input[type='range'] {\n  margin: 0 0 0 10px;\n}\n\n.lf-color-component input[type='number'] {\n  width: 50px;\n  margin: 0 0 0 10px;\n}\n\n.lf-color-preview {\n  font-size: 12px;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: space-between;\n  padding-left: 5px;\n}\n\n.lf-preview {\n  height: 60px;\n  width: 60px;\n}\n\n.lf-popover-snapshot {\n  width: 150px;\n}\n.lf-popover-snapshot h5 {\n  margin: 5px 0 10px 0;\n  font-size: 0.75rem;\n}\n.lf-popover-snapshot a {\n  display: block;\n  text-decoration: none;\n}\n.lf-popover-snapshot a:before {\n  content: '⥼';\n  margin-right: 5px;\n}\n.lf-popover-snapshot .lf-note {\n  display: block;\n  margin-top: 10px;\n  color: #999;\n}\n.lf-player-controls > div {\n  margin-right: 5px;\n  margin-left: 5px;\n}\n.lf-player-controls > div:first-child {\n  margin-left: 0px;\n}\n.lf-player-controls > div:last-child {\n  margin-right: 0px;\n}\n";styleInject(css_248z);var ColorPicker=function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t.state={red:0,green:0,blue:0,rgba:null,hex:"#000000",colorComponents:[]},t.handleChange=function(e,a){if("r"===e){var l="#"+(256|a).toString(16).slice(1)+(256|t.state.green).toString(16).slice(1)+(256|t.state.blue).toString(16).slice(1);t.setState({hex:l})}else"g"===e?(l="#"+(256|t.state.red).toString(16).slice(1)+(256|a).toString(16).slice(1)+(256|t.state.blue).toString(16).slice(1),t.setState({hex:l})):"b"===e&&(l="#"+(256|t.state.red).toString(16).slice(1)+(256|t.state.green).toString(16).slice(1)+(256|a).toString(16).slice(1),t.setState({hex:l}))},t.parseColor=function(e){var a;if("string"==typeof e){if("#"===e[0]){var l=4===e.length?[e.slice(1,2),e.slice(2,3),e.slice(3,4)].map((function(e){return parseInt(""+e+e,16)})):[e.slice(1,3),e.slice(3,5),e.slice(5,7)].map((function(e){return parseInt(e,16)}));t.setState({colorComponents:l})}else e.startsWith("rgb")&&void 0!==(l=null===(a=e.match(/\d+/g))||void 0===a?void 0:a.map((function(e){return parseInt(e)})))&&t.setState({colorComponents:l});t.state.colorComponents.length&&(t.setState({red:t.state.colorComponents[0]}),t.setState({green:t.state.colorComponents[1]}),t.setState({blue:t.state.colorComponents[2]}))}},t}return __extends(t,e),t.prototype.componentDidUpdate=function(e,t){return this.props.colorChangedEvent&&this.state.hex!==t.hex&&this.props.colorChangedEvent(this.state.hex),!0},t.prototype.render=function(){var e=this;return react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-picker"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-selectors"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-component"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("strong",null,"Red"),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{type:"range",min:"0",max:"255",value:this.state.red,onChange:function(t){e.setState({red:t.target.value}),e.handleChange("r",t.target.value)}}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{className:"lf-text-input",type:"number",min:"0",max:"255",value:this.state.red,onChange:function(t){e.setState({red:t.target.value}),e.handleChange("r",t.target.value)}})),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-component"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("strong",null,"Green"),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{type:"range",min:"0",max:"255",value:this.state.green,onChange:function(t){e.setState({green:t.target.value}),e.handleChange("g",t.target.value)}}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{className:"lf-text-input",type:"number",min:"0",max:"255",value:this.state.green,onChange:function(t){e.setState({green:t.target.value}),e.handleChange("g",t.target.value)}})),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-component"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("strong",null,"Blue"),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{type:"range",min:"0",max:"255",value:this.state.blue,onChange:function(t){e.setState({blue:t.target.value}),e.handleChange("b",t.target.value)}}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{className:"lf-text-input",type:"number",min:"0",max:"255",value:this.state.blue,onChange:function(t){e.setState({blue:t.target.value}),e.handleChange("b",t.target.value)}}))),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-color-preview"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-preview",style:{background:"rgb("+this.state.red+", "+this.state.green+", "+this.state.blue+")"}}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{className:"lf-text-input",type:"text",value:this.state.hex,onChange:function(t){e.setState({hex:t.target.value}),e.parseColor(t.target.value)}}))))},t}(react__WEBPACK_IMPORTED_MODULE_0__.Component),Popover=function(e){var t=e.children,a=e.icon,l=Object(react__WEBPACK_IMPORTED_MODULE_0__.useState)(null),i=l[0],o=l[1],n=Object(react__WEBPACK_IMPORTED_MODULE_0__.useState)(null),r=n[0],s=n[1],c=Object(react__WEBPACK_IMPORTED_MODULE_0__.useState)(null),u=c[0],p=c[1],b=Object(react__WEBPACK_IMPORTED_MODULE_0__.useState)(!1),d=b[0],g=b[1];return Object(react__WEBPACK_IMPORTED_MODULE_0__.useEffect)((function(){if(i&&r){var e=i.getBoundingClientRect(),t=r.getBoundingClientRect(),a=e.left+t.width>window.innerWidth?-1:0;p(a)}}),[u,r,i]),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-popover",onMouseOver:function(){g(!0)},onMouseLeave:function(){g(!1)},ref:function(e){o(e)}},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:" lf-player-btn"},a),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-popover-content",ref:function(e){s(e)},style:{bottom:"22px",right:"0px",zIndex:2,visibility:d?"visible":"hidden"}},t))},Seeker=function(e){function t(t){var a=e.call(this,t)||this;return a.inputRef=react__WEBPACK_IMPORTED_MODULE_0__.createRef(),a.handleChange=function(){return function(e){var t=e.target.value,l=Math.floor(t/100*a.props.max);a.props.onChange(l)}},a.state={value:0},a}return __extends(t,e),t.prototype.render=function(){var e=this.props.value/this.props.max*100,t={backgroundImage:"-webkit-gradient(linear, left top, right top, color-stop("+e+"%, rgba(15, 204, 206, 0.4)), color-stop("+e+"%, #DAE1E7))"},a={position:"absolute",left:0,marginTop:"8px",width:"20px",display:"block",border:"0px",backgroundColor:this.props.darkTheme?"#505050":"rgb(218, 225, 231)",color:this.props.darkTheme?"#B9B9B9":"#555",padding:"2px",textAlign:"center",borderRadius:"3px",fontSize:"8px",fontWeight:"bold"},l={position:"absolute",right:0,marginTop:"8px",width:"20px",display:"block",border:"0px",backgroundColor:this.props.darkTheme?"#505050":"rgb(218, 225, 231)",color:this.props.darkTheme?"#B9B9B9":"#555",padding:"2px",textAlign:"center",borderRadius:"3px",fontSize:"8px",fontWeight:"bold"};return react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:{display:"flex",flexDirection:"column",alignItems:"center",width:"100%",marginRight:"5px",marginLeft:"5px",position:"relative"}},react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{ref:this.inputRef,id:"track",className:"lf-progress",name:"progress",type:"range",min:"0",max:"100",step:"0.1",value:e,onInput:this.handleChange(),onChange:this.handleChange(),style:t}),this.props.showLabels&&react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:{display:"flex",justifyContent:"space-between"}},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:a},this.props.min),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:l},this.props.max)))},t}(react__WEBPACK_IMPORTED_MODULE_0__.Component),ControlButtonStyle={display:"inline-flex",cursor:"pointer"},Controls=function(e){function t(t){var a=e.call(this,t)||this;return a.state={activeFrame:0,mouseDown:!1},a}return __extends(t,e),t.prototype.render=function(){var e=this,t=this.props,a=t.instance,l=t.playerState,i=t.seeker,o=t.setLoop,n=t.setSeeker,r=t.play,s=t.pause,c=t.stop,u=t.visible,p=t.buttons;if(!a)return null;if(!u)return null;var b=!p||p.includes("play"),d=!p||p.includes("stop"),g=!p||p.includes("repeat"),m=!p||p.includes("frame"),y=!p||p.includes("background"),f=!p||p.includes("snapshot"),h={width:14,height:14,viewBox:"0 0 24 24"},v=Math.round(a.currentFrame);return react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{className:"lf-player-controls",style:{display:"flex",justifyContent:"space-between",height:"60px",alignItems:"center",backgroundColor:this.props.transparentTheme?"transparent":this.props.darkTheme?"#3C3C3C":"#ffffff",paddingLeft:"10px",paddingRight:"10px"}},b&&react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{role:"button",tabIndex:0,onClick:function(){l===PlayerState.Playing?"function"==typeof s&&s():"function"==typeof r&&r()},onKeyDown:function(){l===PlayerState.Playing?"function"==typeof s&&s():"function"==typeof r&&r()},className:"lf-player-btn",style:ControlButtonStyle},l===PlayerState.Playing?react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("rect",{height:"22.9",rx:"1.9",width:"7.6",x:"14",y:".5"}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("rect",{height:"22.9",rx:"1.9",width:"7.6",x:"2",y:".5"})):react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M2 3.4C2 1.9 3.5 1 4.8 1.8l16.5 9.6c1.2.7 1.2 2.5 0 3.2L4.8 24.2C3.5 25 2 24.1 2 22.6V3.4z"}))),d&&react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{tabIndex:0,role:"button",onClick:function(){return c&&c()},onKeyDown:function(){return c&&c()},className:l===PlayerState.Stopped?"lf-player-btn active":"lf-player-btn",style:ControlButtonStyle},react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M2 3.667A1.67 1.67 0 0 1 3.667 2h16.666A1.67 1.67 0 0 1 22 3.667v16.666A1.67 1.67 0 0 1 20.333\n            22H3.667A1.67 1.67 0 0 1 2 20.333z"}))),react__WEBPACK_IMPORTED_MODULE_0__.createElement(Seeker,{min:0,step:1,max:a?a.totalFrames:1,value:i||0,onChange:function(t){n&&e.setState({activeFrame:t},(function(){n(t,!1)}))},onChangeEnd:function(t){n&&e.setState({activeFrame:t},(function(){n(t,!1)}))},showLabels:this.props.showLabels,darkTheme:this.props.darkTheme}),m&&react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{role:"button",className:"lf-player-btn-container"},react__WEBPACK_IMPORTED_MODULE_0__.createElement("input",{style:{outline:"none",border:this.props.darkTheme?"1px #505050 solid":"1px #ccc solid",borderRadius:"3px",width:"40px",textAlign:"center",backgroundColor:this.props.darkTheme?"#505050":"#ffffff",color:this.props.darkTheme?"#B9B9B9":"#999",fontSize:"0.7rem",padding:"0",fontFamily:"inherit"},type:"text",value:v,readOnly:!0})),g&&react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{role:"button",tabIndex:0,onClick:function(){a&&o&&o(!a.loop)},onKeyDown:function(){a&&o&&o(!a.loop)},className:a.loop?"lf-player-btn active":"lf-player-btn",style:ControlButtonStyle},react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M12.5 16.8137h-.13v1.8939h4.9696c3.6455 0 6.6113-2.9658 6.6113-6.6116\n            0-3.64549-2.9658-6.61131-6.6113-6.61131-.5231 0-.947.42391-.947.94696 0 .52304.4239.94696.947.94696 2.6011 0\n            4.7174 2.11634 4.7174 4.71739 0 2.6014-2.1166 4.7177-4.7174 4.7177H12.5zM13.6025\n            5.61469v-.13H7.48137C3.83582 5.48469.87 8.45051.87 12.096c0 3.6509 3.17269 6.6117 6.81304 6.6117.52304 0\n            .94696-.424.94696-.947 0-.5231-.42392-.947-.94696-.947-2.60804 0-4.91907-2.1231-4.91907-4.7176 0-2.60115\n            2.11634-4.71744 4.7174-4.71744h6.12113V5.61469z",stroke:"#8795A1",strokeWidth:".26"}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M11.1482\n            2.20355h0l-.001-.00116c-.3412-.40061-.9405-.44558-1.33668-.0996h-.00001c-.39526.34519-.43936.94795-.09898\n            1.34767l2.51487 3.03683-2.51894 3.06468c-.33872.40088-.29282 1.00363.10347\n            1.34723l.08517-.0982-.08517.0982c.17853.1549.39807.2308.61647.2308.2671 0 .5328-.114.72-.3347h0l.0011-.0014\n            3.0435-3.68655.0006-.00068c.3035-.35872.3025-.88754-.0019-1.24526l-3.0425-3.65786zM13.9453\n            21.7965h0l.001.0011c.3413.4006.9407.4456 1.337.0996h0c.3953-.3452.4395-.9479.099-1.3477l-2.5154-3.0368\n            2.5195-3.0647c.3388-.4008.2929-1.0036-.1035-1.3472l-.0852.0982.0852-.0982c-.1786-.1549-.3981-.2308-.6166-.2308-.2671\n            0-.5329.114-.7202.3347h0l-.0011.0014-3.0442\n            3.6865c-.0001.0003-.0003.0005-.0005.0007-.3036.3587-.3027.8876.0019 1.2453l3.0431 3.6579z",fill:"#8795A1",stroke:"#8795A1",strokeWidth:".26"}))),y&&react__WEBPACK_IMPORTED_MODULE_0__.createElement(Popover,{icon:react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M12 3.1L6.1 8.6a7.6 7.6 0 00-2.2 4 7.2 7.2 0 00.4 4.4 7.9 7.9 0 003 3.5 8.7 8.7 0 004.7 1.3c1.6 0\n            3.2-.5 4.6-1.3s2.4-2 3-3.5a7.2 7.2 0 00.5-4.5 7.6 7.6 0 00-2.2-4L12 3.2zM12 0l7.5 7a9.8 9.8 0 013 5.1\n            9.3 9.3 0 01-.6 5.8c-.9 1.8-2.2 3.3-4 4.4A11.2 11.2 0 0112 24a11.2 11.2 0\n            01-6-1.7c-1.7-1-3-2.6-3.9-4.4a9.3 9.3 0 01-.6-5.8c.4-2 1.5-3.7 3-5L12 0zM6 14h12c0 1.5-.7 3-1.8 4s-2.6\n            1.6-4.2 1.6S9 19 7.8 18s-1.7-2.5-1.7-4z"}))},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{slot:"content",className:"lf-popover popover-background"},react__WEBPACK_IMPORTED_MODULE_0__.createElement(ColorPicker,{colorChangedEvent:this.props.colorChangedEvent}))),f&&react__WEBPACK_IMPORTED_MODULE_0__.createElement(Popover,{icon:react__WEBPACK_IMPORTED_MODULE_0__.createElement("svg",__assign({},h),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{clipRule:"evenodd",d:"M0 3.01A2.983 2.983 0 012.983.027H16.99a2.983 2.983 0 012.983 2.983v14.008a2.982 2.982 0 01-2.983\n              2.983H2.983A2.983 2.983 0 010 17.018zm2.983-.941a.941.941 0 00-.942.94v14.01c0\n              .52.422.94.942.94H16.99a.94.94 0 00.941-.94V3.008a.941.941 0 00-.94-.94H2.981z",fillRule:"evenodd"}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M12.229 7.945l-2.07 4.598-2.586-2.605-2.414 2.758v2.146h9.656V11.93z"}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("circle",{cx:"7.444",cy:"6.513",r:"2.032"}),react__WEBPACK_IMPORTED_MODULE_0__.createElement("path",{d:"M9.561 23.916h11.25a2.929 2.929 0 002.926-2.927V9.954a1.06 1.06 0 10-2.122 0v11.035a.805.805 0\n              01-.803.804H9.562a1.061 1.061 0 100 2.123z",stroke:"#8795a1",strokeWidth:".215"}))},react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{slot:"content",className:"lf-popover lf-popover-snapshot",onWheel:function(e){n&&n(v+(e.deltaY>0?-1:1),!1)}},react__WEBPACK_IMPORTED_MODULE_0__.createElement("h5",null,"Frame ",v),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:{cursor:"pointer",color:"#0FCCCE"},onClick:this.props.snapshot},"Download SVG"),react__WEBPACK_IMPORTED_MODULE_0__.createElement("div",{style:{cursor:"pointer",color:"#0FCCCE"},onClick:this.props.snapshot},"Download PNG"),react__WEBPACK_IMPORTED_MODULE_0__.createElement("i",{className:"lf-note"},"Scroll with mousewheel to find exact frame"))))},t}(react__WEBPACK_IMPORTED_MODULE_0__.Component)}).call(this,__webpack_require__(37))},function(e,t,a){"use strict";var l=a(193);function i(){}function o(){}o.resetWarningCache=i,e.exports=function(){function e(e,t,a,i,o,n){if(n!==l){var r=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw r.name="Invariant Violation",r}}function t(){return e}e.isRequired=e;var a={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:i};return a.PropTypes=a,a}},function(e,t,a){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},,function(e,t){function a(t,l){return e.exports=a=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e},e.exports.default=e.exports,e.exports.__esModule=!0,a(t,l)}e.exports=a,e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){if(null==e)return{};var a,l,i={},o=Object.keys(e);for(l=0;l<o.length;l++)a=o[l],t.indexOf(a)>=0||(i[a]=e[a]);return i},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(159);e.exports=function(e){if(Array.isArray(e))return l(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e){if(Array.isArray(e))return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){var a=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null!=a){var l,i,o=[],_n=!0,n=!1;try{for(a=a.call(e);!(_n=(l=a.next()).done)&&(o.push(l.value),!t||o.length!==t);_n=!0);}catch(e){n=!0,i=e}finally{try{_n||null==a.return||a.return()}finally{if(n)throw i}}return o}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(9);function i(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}e.exports=function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?i(Object(a),!0).forEach((function(t){l(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):i(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t,a){var l=a(19),i=a(205),o=a(18);e.exports=function(e){var t=i();return function(){var a,i=l(e);if(t){var n=l(this).constructor;a=Reflect.construct(i,arguments,n)}else a=i.apply(this,arguments);return o(this,a)}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){e.exports=function(e,t){return t||(t=e.slice(0)),Object.freeze(Object.defineProperties(e,{raw:{value:Object.freeze(t)}}))},e.exports.default=e.exports,e.exports.__esModule=!0},function(e,t){function a(){return e.exports=a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)({}).hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e},e.exports.__esModule=!0,e.exports.default=e.exports,a.apply(null,arguments)}e.exports=a,e.exports.__esModule=!0,e.exports.default=e.exports},function(e,t,a){"use strict";e.exports=a(209)},function(e,t,a){"use strict";var l="function"==typeof Symbol&&Symbol.for,i=l?Symbol.for("react.element"):60103,o=l?Symbol.for("react.portal"):60106,n=l?Symbol.for("react.fragment"):60107,r=l?Symbol.for("react.strict_mode"):60108,s=l?Symbol.for("react.profiler"):60114,c=l?Symbol.for("react.provider"):60109,u=l?Symbol.for("react.context"):60110,p=l?Symbol.for("react.async_mode"):60111,b=l?Symbol.for("react.concurrent_mode"):60111,d=l?Symbol.for("react.forward_ref"):60112,g=l?Symbol.for("react.suspense"):60113,m=l?Symbol.for("react.suspense_list"):60120,y=l?Symbol.for("react.memo"):60115,f=l?Symbol.for("react.lazy"):60116,h=l?Symbol.for("react.block"):60121,v=l?Symbol.for("react.fundamental"):60117,_=l?Symbol.for("react.responder"):60118,T=l?Symbol.for("react.scope"):60119;function C(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case i:switch(e=e.type){case p:case b:case n:case s:case r:case g:return e;default:switch(e=e&&e.$$typeof){case u:case d:case f:case y:case c:return e;default:return t}}case o:return t}}}function S(e){return C(e)===b}t.AsyncMode=p,t.ConcurrentMode=b,t.ContextConsumer=u,t.ContextProvider=c,t.Element=i,t.ForwardRef=d,t.Fragment=n,t.Lazy=f,t.Memo=y,t.Portal=o,t.Profiler=s,t.StrictMode=r,t.Suspense=g,t.isAsyncMode=function(e){return S(e)||C(e)===p},t.isConcurrentMode=S,t.isContextConsumer=function(e){return C(e)===u},t.isContextProvider=function(e){return C(e)===c},t.isElement=function(e){return"object"==typeof e&&null!==e&&e.$$typeof===i},t.isForwardRef=function(e){return C(e)===d},t.isFragment=function(e){return C(e)===n},t.isLazy=function(e){return C(e)===f},t.isMemo=function(e){return C(e)===y},t.isPortal=function(e){return C(e)===o},t.isProfiler=function(e){return C(e)===s},t.isStrictMode=function(e){return C(e)===r},t.isSuspense=function(e){return C(e)===g},t.isValidElementType=function(e){return"string"==typeof e||"function"==typeof e||e===n||e===b||e===s||e===r||e===g||e===m||"object"==typeof e&&null!==e&&(e.$$typeof===f||e.$$typeof===y||e.$$typeof===c||e.$$typeof===u||e.$$typeof===d||e.$$typeof===v||e.$$typeof===_||e.$$typeof===T||e.$$typeof===h)},t.typeOf=C},,,,,,,,,,,,,,function(e,t,a){var l,i,o;window,i=[a(224),a(59)],void 0===(o="function"==typeof(l=function(e,t){"use strict";var a=e.create("masonry");a.compatOptions.fitWidth="isFitWidth";var l=a.prototype;return l._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var e=0;e<this.cols;e++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},l.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var e=this.items[0],a=e&&e.element;this.columnWidth=a&&t(a).outerWidth||this.containerWidth}var l=this.columnWidth+=this.gutter,i=this.containerWidth+this.gutter,o=i/l,n=l-i%l;o=Math[n&&n<1?"round":"floor"](o),this.cols=Math.max(o,1)},l.getContainerWidth=function(){var e=this._getOption("fitWidth")?this.element.parentNode:this.element,a=t(e);this.containerWidth=a&&a.innerWidth},l._getItemLayoutPosition=function(e){e.getSize();var t=e.size.outerWidth%this.columnWidth,a=Math[t&&t<1?"round":"ceil"](e.size.outerWidth/this.columnWidth);a=Math.min(a,this.cols);for(var l=this[this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition"](a,e),i={x:this.columnWidth*l.col,y:l.y},o=l.y+e.size.outerHeight,n=a+l.col,r=l.col;r<n;r++)this.colYs[r]=o;return i},l._getTopColPosition=function(e){var t=this._getTopColGroup(e),a=Math.min.apply(Math,t);return{col:t.indexOf(a),y:a}},l._getTopColGroup=function(e){if(e<2)return this.colYs;for(var t=[],a=this.cols+1-e,l=0;l<a;l++)t[l]=this._getColGroupY(l,e);return t},l._getColGroupY=function(e,t){if(t<2)return this.colYs[e];var a=this.colYs.slice(e,e+t);return Math.max.apply(Math,a)},l._getHorizontalColPosition=function(e,t){var a=this.horizontalColIndex%this.cols;a=e>1&&a+e>this.cols?0:a;var l=t.size.outerWidth&&t.size.outerHeight;return this.horizontalColIndex=l?a+e:this.horizontalColIndex,{col:a,y:this._getColGroupY(a,e)}},l._manageStamp=function(e){var a=t(e),l=this._getElementOffset(e),i=this._getOption("originLeft")?l.left:l.right,o=i+a.outerWidth,n=Math.floor(i/this.columnWidth);n=Math.max(0,n);var r=Math.floor(o/this.columnWidth);r-=o%this.columnWidth?0:1,r=Math.min(this.cols-1,r);for(var s=(this._getOption("originTop")?l.top:l.bottom)+a.outerHeight,c=n;c<=r;c++)this.colYs[c]=Math.max(s,this.colYs[c])},l._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var e={height:this.maxY};return this._getOption("fitWidth")&&(e.width=this._getContainerFitWidth()),e},l._getContainerFitWidth=function(){for(var e=0,t=this.cols;--t&&0===this.colYs[t];)e++;return(this.cols-e)*this.columnWidth-this.gutter},l.needsResizeLayout=function(){var e=this.containerWidth;return this.getContainerWidth(),e!=this.containerWidth},a})?l.apply(t,i):l)||(e.exports=o)},function(e,t,a){var l,i;!function(o,n){"use strict";l=[a(58),a(59),a(225),a(227)],void 0===(i=function(e,t,a,l){return function(e,t,a,l,i){var o=e.console,n=e.jQuery,r=function(){},s=0,c={};function u(e,t){var a=l.getQueryElement(e);if(a){this.element=a,n&&(this.$element=n(this.element)),this.options=l.extend({},this.constructor.defaults),this.option(t);var i=++s;this.element.outlayerGUID=i,c[i]=this,this._create(),this._getOption("initLayout")&&this.layout()}else o&&o.error("Bad element for "+this.constructor.namespace+": "+(a||e))}u.namespace="outlayer",u.Item=i,u.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var p=u.prototype;function b(e){function t(){e.apply(this,arguments)}return t.prototype=Object.create(e.prototype),t.prototype.constructor=t,t}l.extend(p,t.prototype),p.option=function(e){l.extend(this.options,e)},p._getOption=function(e){var t=this.constructor.compatOptions[e];return t&&void 0!==this.options[t]?this.options[t]:this.options[e]},u.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},p._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),l.extend(this.element.style,this.options.containerStyle),this._getOption("resize")&&this.bindResize()},p.reloadItems=function(){this.items=this._itemize(this.element.children)},p._itemize=function(e){for(var t=this._filterFindItemElements(e),a=this.constructor.Item,l=[],i=0;i<t.length;i++){var o=new a(t[i],this);l.push(o)}return l},p._filterFindItemElements=function(e){return l.filterFindElements(e,this.options.itemSelector)},p.getItemElements=function(){return this.items.map((function(e){return e.element}))},p.layout=function(){this._resetLayout(),this._manageStamps();var e=this._getOption("layoutInstant"),t=void 0!==e?e:!this._isLayoutInited;this.layoutItems(this.items,t),this._isLayoutInited=!0},p._init=p.layout,p._resetLayout=function(){this.getSize()},p.getSize=function(){this.size=a(this.element)},p._getMeasurement=function(e,t){var l,i=this.options[e];i?("string"==typeof i?l=this.element.querySelector(i):i instanceof HTMLElement&&(l=i),this[e]=l?a(l)[t]:i):this[e]=0},p.layoutItems=function(e,t){e=this._getItemsForLayout(e),this._layoutItems(e,t),this._postLayout()},p._getItemsForLayout=function(e){return e.filter((function(e){return!e.isIgnored}))},p._layoutItems=function(e,t){if(this._emitCompleteOnItems("layout",e),e&&e.length){var a=[];e.forEach((function(e){var l=this._getItemLayoutPosition(e);l.item=e,l.isInstant=t||e.isLayoutInstant,a.push(l)}),this),this._processLayoutQueue(a)}},p._getItemLayoutPosition=function(){return{x:0,y:0}},p._processLayoutQueue=function(e){this.updateStagger(),e.forEach((function(e,t){this._positionItem(e.item,e.x,e.y,e.isInstant,t)}),this)},p.updateStagger=function(){var e=this.options.stagger;if(null!=e)return this.stagger=function(e){if("number"==typeof e)return e;var t=e.match(/(^\d*\.?\d*)(\w*)/),a=t&&t[1],l=t&&t[2];return a.length?(a=parseFloat(a))*(d[l]||1):0}(e),this.stagger;this.stagger=0},p._positionItem=function(e,t,a,l,i){l?e.goTo(t,a):(e.stagger(i*this.stagger),e.moveTo(t,a))},p._postLayout=function(){this.resizeContainer()},p.resizeContainer=function(){if(this._getOption("resizeContainer")){var e=this._getContainerSize();e&&(this._setContainerMeasure(e.width,!0),this._setContainerMeasure(e.height,!1))}},p._getContainerSize=r,p._setContainerMeasure=function(e,t){if(void 0!==e){var a=this.size;a.isBorderBox&&(e+=t?a.paddingLeft+a.paddingRight+a.borderLeftWidth+a.borderRightWidth:a.paddingBottom+a.paddingTop+a.borderTopWidth+a.borderBottomWidth),e=Math.max(e,0),this.element.style[t?"width":"height"]=e+"px"}},p._emitCompleteOnItems=function(e,t){var a=this;function l(){a.dispatchEvent(e+"Complete",null,[t])}var i=t.length;if(t&&i){var o=0;t.forEach((function(t){t.once(e,n)}))}else l();function n(){++o==i&&l()}},p.dispatchEvent=function(e,t,a){var l=t?[t].concat(a):a;if(this.emitEvent(e,l),n)if(this.$element=this.$element||n(this.element),t){var i=n.Event(t);i.type=e,this.$element.trigger(i,a)}else this.$element.trigger(e,a)},p.ignore=function(e){var t=this.getItem(e);t&&(t.isIgnored=!0)},p.unignore=function(e){var t=this.getItem(e);t&&delete t.isIgnored},p.stamp=function(e){(e=this._find(e))&&(this.stamps=this.stamps.concat(e),e.forEach(this.ignore,this))},p.unstamp=function(e){(e=this._find(e))&&e.forEach((function(e){l.removeFrom(this.stamps,e),this.unignore(e)}),this)},p._find=function(e){if(e)return"string"==typeof e&&(e=this.element.querySelectorAll(e)),l.makeArray(e)},p._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},p._getBoundingRect=function(){var e=this.element.getBoundingClientRect(),t=this.size;this._boundingRect={left:e.left+t.paddingLeft+t.borderLeftWidth,top:e.top+t.paddingTop+t.borderTopWidth,right:e.right-(t.paddingRight+t.borderRightWidth),bottom:e.bottom-(t.paddingBottom+t.borderBottomWidth)}},p._manageStamp=r,p._getElementOffset=function(e){var t=e.getBoundingClientRect(),l=this._boundingRect,i=a(e);return{left:t.left-l.left-i.marginLeft,top:t.top-l.top-i.marginTop,right:l.right-t.right-i.marginRight,bottom:l.bottom-t.bottom-i.marginBottom}},p.handleEvent=l.handleEvent,p.bindResize=function(){e.addEventListener("resize",this),this.isResizeBound=!0},p.unbindResize=function(){e.removeEventListener("resize",this),this.isResizeBound=!1},p.onresize=function(){this.resize()},l.debounceMethod(u,"onresize",100),p.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},p.needsResizeLayout=function(){var e=a(this.element);return this.size&&e&&e.innerWidth!==this.size.innerWidth},p.addItems=function(e){var t=this._itemize(e);return t.length&&(this.items=this.items.concat(t)),t},p.appended=function(e){var t=this.addItems(e);t.length&&(this.layoutItems(t,!0),this.reveal(t))},p.prepended=function(e){var t=this._itemize(e);if(t.length){var a=this.items.slice(0);this.items=t.concat(a),this._resetLayout(),this._manageStamps(),this.layoutItems(t,!0),this.reveal(t),this.layoutItems(a)}},p.reveal=function(e){if(this._emitCompleteOnItems("reveal",e),e&&e.length){var t=this.updateStagger();e.forEach((function(e,a){e.stagger(a*t),e.reveal()}))}},p.hide=function(e){if(this._emitCompleteOnItems("hide",e),e&&e.length){var t=this.updateStagger();e.forEach((function(e,a){e.stagger(a*t),e.hide()}))}},p.revealItemElements=function(e){var t=this.getItems(e);this.reveal(t)},p.hideItemElements=function(e){var t=this.getItems(e);this.hide(t)},p.getItem=function(e){for(var t=0;t<this.items.length;t++){var a=this.items[t];if(a.element==e)return a}},p.getItems=function(e){e=l.makeArray(e);var t=[];return e.forEach((function(e){var a=this.getItem(e);a&&t.push(a)}),this),t},p.remove=function(e){var t=this.getItems(e);this._emitCompleteOnItems("remove",t),t&&t.length&&t.forEach((function(e){e.remove(),l.removeFrom(this.items,e)}),this)},p.destroy=function(){var e=this.element.style;e.height="",e.position="",e.width="",this.items.forEach((function(e){e.destroy()})),this.unbindResize();var t=this.element.outlayerGUID;delete c[t],delete this.element.outlayerGUID,n&&n.removeData(this.element,this.constructor.namespace)},u.data=function(e){var t=(e=l.getQueryElement(e))&&e.outlayerGUID;return t&&c[t]},u.create=function(e,t){var a=b(u);return a.defaults=l.extend({},u.defaults),l.extend(a.defaults,t),a.compatOptions=l.extend({},u.compatOptions),a.namespace=e,a.data=u.data,a.Item=b(i),l.htmlInit(a,e),n&&n.bridget&&n.bridget(e,a),a};var d={ms:1,s:1e3};return u.Item=i,u}(o,e,t,a,l)}.apply(t,l))||(e.exports=i)}(window)},function(e,t,a){var l,i;!function(o,n){l=[a(226)],void 0===(i=function(e){return function(e,t){"use strict";var a={extend:function(e,t){for(var a in t)e[a]=t[a];return e},modulo:function(e,t){return(e%t+t)%t}},l=Array.prototype.slice;a.makeArray=function(e){return Array.isArray(e)?e:null==e?[]:"object"==typeof e&&"number"==typeof e.length?l.call(e):[e]},a.removeFrom=function(e,t){var a=e.indexOf(t);-1!=a&&e.splice(a,1)},a.getParent=function(e,a){for(;e.parentNode&&e!=document.body;)if(e=e.parentNode,t(e,a))return e},a.getQueryElement=function(e){return"string"==typeof e?document.querySelector(e):e},a.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},a.filterFindElements=function(e,l){e=a.makeArray(e);var i=[];return e.forEach((function(e){if(e instanceof HTMLElement)if(l){t(e,l)&&i.push(e);for(var a=e.querySelectorAll(l),o=0;o<a.length;o++)i.push(a[o])}else i.push(e)})),i},a.debounceMethod=function(e,t,a){a=a||100;var l=e.prototype[t],i=t+"Timeout";e.prototype[t]=function(){var e=this[i];clearTimeout(e);var t=arguments,o=this;this[i]=setTimeout((function(){l.apply(o,t),delete o[i]}),a)}},a.docReady=function(e){var t=document.readyState;"complete"==t||"interactive"==t?setTimeout(e):document.addEventListener("DOMContentLoaded",e)},a.toDashed=function(e){return e.replace(/(.)([A-Z])/g,(function(e,t,a){return t+"-"+a})).toLowerCase()};var i=e.console;return a.htmlInit=function(t,l){a.docReady((function(){var o=a.toDashed(l),n="data-"+o,r=document.querySelectorAll("["+n+"]"),s=document.querySelectorAll(".js-"+o),c=a.makeArray(r).concat(a.makeArray(s)),u=n+"-options",p=e.jQuery;c.forEach((function(e){var a,o=e.getAttribute(n)||e.getAttribute(u);try{a=o&&JSON.parse(o)}catch(t){return void(i&&i.error("Error parsing "+n+" on "+e.className+": "+t))}var r=new t(e,a);p&&p.data(e,l,r)}))}))},a}(o,e)}.apply(t,l))||(e.exports=i)}(window)},function(e,t,a){var l,i;!function(o,n){"use strict";void 0===(i="function"==typeof(l=n)?l.call(t,a,t,e):l)||(e.exports=i)}(window,(function(){"use strict";var e=function(){var e=window.Element.prototype;if(e.matches)return"matches";if(e.matchesSelector)return"matchesSelector";for(var t=["webkit","moz","ms","o"],a=0;a<t.length;a++){var l=t[a]+"MatchesSelector";if(e[l])return l}}();return function(t,a){return t[e](a)}}))},function(e,t,a){var l,i,o;window,i=[a(58),a(59)],void 0===(o="function"==typeof(l=function(e,t){"use strict";var a=document.documentElement.style,l="string"==typeof a.transition?"transition":"WebkitTransition",i="string"==typeof a.transform?"transform":"WebkitTransform",o={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[l],n={transform:i,transition:l,transitionDuration:l+"Duration",transitionProperty:l+"Property",transitionDelay:l+"Delay"};function r(e,t){e&&(this.element=e,this.layout=t,this.position={x:0,y:0},this._create())}var s=r.prototype=Object.create(e.prototype);s.constructor=r,s._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},s.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},s.getSize=function(){this.size=t(this.element)},s.css=function(e){var t=this.element.style;for(var a in e)t[n[a]||a]=e[a]},s.getPosition=function(){var e=getComputedStyle(this.element),t=this.layout._getOption("originLeft"),a=this.layout._getOption("originTop"),l=e[t?"left":"right"],i=e[a?"top":"bottom"],o=parseFloat(l),n=parseFloat(i),r=this.layout.size;-1!=l.indexOf("%")&&(o=o/100*r.width),-1!=i.indexOf("%")&&(n=n/100*r.height),o=isNaN(o)?0:o,n=isNaN(n)?0:n,o-=t?r.paddingLeft:r.paddingRight,n-=a?r.paddingTop:r.paddingBottom,this.position.x=o,this.position.y=n},s.layoutPosition=function(){var e=this.layout.size,t={},a=this.layout._getOption("originLeft"),l=this.layout._getOption("originTop"),i=a?"paddingLeft":"paddingRight",o=a?"left":"right",n=a?"right":"left",r=this.position.x+e[i];t[o]=this.getXValue(r),t[n]="";var s=l?"paddingTop":"paddingBottom",c=l?"top":"bottom",u=l?"bottom":"top",p=this.position.y+e[s];t[c]=this.getYValue(p),t[u]="",this.css(t),this.emitEvent("layout",[this])},s.getXValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!t?e/this.layout.size.width*100+"%":e+"px"},s.getYValue=function(e){var t=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&t?e/this.layout.size.height*100+"%":e+"px"},s._transitionTo=function(e,t){this.getPosition();var a=this.position.x,l=this.position.y,i=e==this.position.x&&t==this.position.y;if(this.setPosition(e,t),!i||this.isTransitioning){var o=e-a,n=t-l,r={};r.transform=this.getTranslate(o,n),this.transition({to:r,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})}else this.layoutPosition()},s.getTranslate=function(e,t){return"translate3d("+(e=this.layout._getOption("originLeft")?e:-e)+"px, "+(t=this.layout._getOption("originTop")?t:-t)+"px, 0)"},s.goTo=function(e,t){this.setPosition(e,t),this.layoutPosition()},s.moveTo=s._transitionTo,s.setPosition=function(e,t){this.position.x=parseFloat(e),this.position.y=parseFloat(t)},s._nonTransition=function(e){for(var t in this.css(e.to),e.isCleaning&&this._removeStyles(e.to),e.onTransitionEnd)e.onTransitionEnd[t].call(this)},s.transition=function(e){if(parseFloat(this.layout.options.transitionDuration)){var t=this._transn;for(var a in e.onTransitionEnd)t.onEnd[a]=e.onTransitionEnd[a];for(a in e.to)t.ingProperties[a]=!0,e.isCleaning&&(t.clean[a]=!0);e.from&&(this.css(e.from),this.element.offsetHeight),this.enableTransition(e.to),this.css(e.to),this.isTransitioning=!0}else this._nonTransition(e)};var c="opacity,"+i.replace(/([A-Z])/g,(function(e){return"-"+e.toLowerCase()}));s.enableTransition=function(){if(!this.isTransitioning){var e=this.layout.options.transitionDuration;e="number"==typeof e?e+"ms":e,this.css({transitionProperty:c,transitionDuration:e,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(o,this,!1)}},s.onwebkitTransitionEnd=function(e){this.ontransitionend(e)},s.onotransitionend=function(e){this.ontransitionend(e)};var u={"-webkit-transform":"transform"};s.ontransitionend=function(e){if(e.target===this.element){var t=this._transn,a=u[e.propertyName]||e.propertyName;delete t.ingProperties[a],function(e){for(var t in e)return!1;return!0}(t.ingProperties)&&this.disableTransition(),a in t.clean&&(this.element.style[e.propertyName]="",delete t.clean[a]),a in t.onEnd&&(t.onEnd[a].call(this),delete t.onEnd[a]),this.emitEvent("transitionEnd",[this])}},s.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(o,this,!1),this.isTransitioning=!1},s._removeStyles=function(e){var t={};for(var a in e)t[a]="";this.css(t)};var p={transitionProperty:"",transitionDuration:"",transitionDelay:""};return s.removeTransitionStyles=function(){this.css(p)},s.stagger=function(e){e=isNaN(e)?0:e,this.staggerDelay=e+"ms"},s.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},s.remove=function(){l&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",(function(){this.removeElem()})),this.hide()):this.removeElem()},s.reveal=function(){delete this.isHidden,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("visibleStyle")]=this.onRevealTransitionEnd,this.transition({from:e.hiddenStyle,to:e.visibleStyle,isCleaning:!0,onTransitionEnd:t})},s.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},s.getHideRevealTransitionEndProperty=function(e){var t=this.layout.options[e];if(t.opacity)return"opacity";for(var a in t)return a},s.hide=function(){this.isHidden=!0,this.css({display:""});var e=this.layout.options,t={};t[this.getHideRevealTransitionEndProperty("hiddenStyle")]=this.onHideTransitionEnd,this.transition({from:e.visibleStyle,to:e.hiddenStyle,isCleaning:!0,onTransitionEnd:t})},s.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},s.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},r})?l.apply(t,i):l)||(e.exports=o)},function(e,t,a){var l,i;!function(o,n){"use strict";l=[a(58)],void 0===(i=function(e){return function(e,t){var a=e.jQuery,l=e.console;function i(e,t){for(var a in t)e[a]=t[a];return e}var o=Array.prototype.slice;function n(e,t,r){if(!(this instanceof n))return new n(e,t,r);var s,c=e;"string"==typeof e&&(c=document.querySelectorAll(e)),c?(this.elements=(s=c,Array.isArray(s)?s:"object"==typeof s&&"number"==typeof s.length?o.call(s):[s]),this.options=i({},this.options),"function"==typeof t?r=t:i(this.options,t),r&&this.on("always",r),this.getImages(),a&&(this.jqDeferred=new a.Deferred),setTimeout(this.check.bind(this))):l.error("Bad element for imagesLoaded "+(c||e))}n.prototype=Object.create(t.prototype),n.prototype.options={},n.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},n.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&r[t]){for(var a=e.querySelectorAll("img"),l=0;l<a.length;l++){var i=a[l];this.addImage(i)}if("string"==typeof this.options.background){var o=e.querySelectorAll(this.options.background);for(l=0;l<o.length;l++){var n=o[l];this.addElementBackgroundImages(n)}}}};var r={1:!0,9:!0,11:!0};function s(e){this.img=e}function c(e,t){this.url=e,this.element=t,this.img=new Image}return n.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var a=/url\((['"])?(.*?)\1\)/gi,l=a.exec(t.backgroundImage);null!==l;){var i=l&&l[2];i&&this.addBackground(i,e),l=a.exec(t.backgroundImage)}},n.prototype.addImage=function(e){var t=new s(e);this.images.push(t)},n.prototype.addBackground=function(e,t){var a=new c(e,t);this.images.push(a)},n.prototype.check=function(){var e=this;function t(t,a,l){setTimeout((function(){e.progress(t,a,l)}))}this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?this.images.forEach((function(e){e.once("progress",t),e.check()})):this.complete()},n.prototype.progress=function(e,t,a){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&l&&l.log("progress: "+a,e,t)},n.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},s.prototype=Object.create(t.prototype),s.prototype.check=function(){this.getIsImageComplete()?this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.proxyImage.src=this.img.src)},s.prototype.getIsImageComplete=function(){return this.img.complete&&this.img.naturalWidth},s.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},s.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},s.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},s.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},s.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype=Object.create(s.prototype),c.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},c.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},c.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},n.makeJQueryPlugin=function(t){(t=t||e.jQuery)&&((a=t).fn.imagesLoaded=function(e,t){return new n(this,e,t).jqDeferred.promise(a(this))})},n.makeJQueryPlugin(),n}(o,e)}.apply(t,l))||(e.exports=i)}("undefined"!=typeof window?window:this)},function(e,t,a){var l=a(60),i=a(35),o=a(236),n=a(41),r=a(42),s=a(43),c=Object.prototype.hasOwnProperty,u=o((function(e,t){if(r(t)||n(t))i(t,s(t),e);else for(var a in t)c.call(t,a)&&l(e,a,t[a])}));e.exports=u},function(e,t,a){var l=a(168),i=a(233),o=a(28),n=a(170),r=/^\[object .+?Constructor\]$/,s=Function.prototype,c=Object.prototype,u=s.toString,p=c.hasOwnProperty,b=RegExp("^"+u.call(p).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");e.exports=function(e){return!(!o(e)||i(e))&&(l(e)?b:r).test(n(e))}},function(e,t,a){var l=a(38),i=Object.prototype,o=i.hasOwnProperty,n=i.toString,r=l?l.toStringTag:void 0;e.exports=function(e){var t=o.call(e,r),a=e[r];try{e[r]=void 0;var l=!0}catch(e){}var i=n.call(e);return l&&(t?e[r]=a:delete e[r]),i}},function(e,t){var a=Object.prototype.toString;e.exports=function(e){return a.call(e)}},function(e,t,a){var l,i=a(234),o=(l=/[^.]+$/.exec(i&&i.keys&&i.keys.IE_PROTO||""))?"Symbol(src)_1."+l:"";e.exports=function(e){return!!o&&o in e}},function(e,t,a){var l=a(26)["__core-js_shared__"];e.exports=l},function(e,t){e.exports=function(e,t){return null==e?void 0:e[t]}},function(e,t,a){var l=a(237),i=a(242);e.exports=function(e){return l((function(t,a){var l=-1,o=a.length,n=o>1?a[o-1]:void 0,r=o>2?a[2]:void 0;for(n=e.length>3&&"function"==typeof n?(o--,n):void 0,r&&i(a[0],a[1],r)&&(n=o<3?void 0:n,o=1),t=Object(t);++l<o;){var s=a[l];s&&e(t,s,l,n)}return t}))}},function(e,t,a){var l=a(171),i=a(172),o=a(173);e.exports=function(e,t){return o(i(e,t,l),e+"")}},function(e,t){e.exports=function(e,t,a){switch(a.length){case 0:return e.call(t);case 1:return e.call(t,a[0]);case 2:return e.call(t,a[0],a[1]);case 3:return e.call(t,a[0],a[1],a[2])}return e.apply(t,a)}},function(e,t,a){var l=a(240),i=a(167),o=a(171),n=i?function(e,t){return i(e,"toString",{configurable:!0,enumerable:!1,value:l(t),writable:!0})}:o;e.exports=n},function(e,t){e.exports=function(e){return function(){return e}}},function(e,t){var a=Date.now;e.exports=function(e){var t=0,l=0;return function(){var i=a(),o=16-(i-l);if(l=i,o>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}},function(e,t,a){var l=a(61),i=a(41),o=a(175),n=a(28);e.exports=function(e,t,a){if(!n(a))return!1;var r=typeof t;return!!("number"==r?i(a)&&o(t,a.length):"string"==r&&t in a)&&l(a[t],e)}},function(e,t){e.exports=function(e,t){for(var a=-1,l=Array(e);++a<e;)l[a]=t(a);return l}},function(e,t,a){var l=a(34),i=a(32);e.exports=function(e){return i(e)&&"[object Arguments]"==l(e)}},function(e,t){e.exports=function(){return!1}},function(e,t,a){var l=a(247),i=a(63),o=a(64),n=o&&o.isTypedArray,r=n?i(n):l;e.exports=r},function(e,t,a){var l=a(34),i=a(174),o=a(32),n={};n["[object Float32Array]"]=n["[object Float64Array]"]=n["[object Int8Array]"]=n["[object Int16Array]"]=n["[object Int32Array]"]=n["[object Uint8Array]"]=n["[object Uint8ClampedArray]"]=n["[object Uint16Array]"]=n["[object Uint32Array]"]=!0,n["[object Arguments]"]=n["[object Array]"]=n["[object ArrayBuffer]"]=n["[object Boolean]"]=n["[object DataView]"]=n["[object Date]"]=n["[object Error]"]=n["[object Function]"]=n["[object Map]"]=n["[object Number]"]=n["[object Object]"]=n["[object RegExp]"]=n["[object Set]"]=n["[object String]"]=n["[object WeakMap]"]=!1,e.exports=function(e){return o(e)&&i(e.length)&&!!n[l(e)]}},function(e,t,a){var l=a(42),i=a(249),o=Object.prototype.hasOwnProperty;e.exports=function(e){if(!l(e))return i(e);var t=[];for(var a in Object(e))o.call(e,a)&&"constructor"!=a&&t.push(a);return t}},function(e,t,a){var l=a(179)(Object.keys,Object);e.exports=l},function(e,t,a){"use strict";var l=a(180).forEach,i=a(251),o=a(252),n=a(253),r=a(254),s=a(255),c=a(181),u=a(256),p=a(258),b=a(259),d=a(260);function g(e){return Array.isArray(e)||void 0!==e.length}function m(e){if(Array.isArray(e))return e;var t=[];return l(e,(function(e){t.push(e)})),t}function y(e){return e&&1===e.nodeType}function f(e,t,a){var l=e[t];return null==l&&void 0!==a?a:l}e.exports=function(e){var t;if((e=e||{}).idHandler)t={get:function(t){return e.idHandler.get(t,!0)},set:e.idHandler.set};else{var a=n(),h=r({idGenerator:a,stateHandler:p});t=h}var v=e.reporter;v||(v=s(!1===v));var _=f(e,"batchProcessor",u({reporter:v})),T={};T.callOnAdd=!!f(e,"callOnAdd",!0),T.debug=!!f(e,"debug",!1);var C,S=o(t),w=i({stateHandler:p}),k=f(e,"strategy","object"),P=f(e,"important",!1),x={reporter:v,batchProcessor:_,stateHandler:p,idHandler:t,important:P};if("scroll"===k&&(c.isLegacyOpera()?(v.warn("Scroll strategy is not supported on legacy Opera. Changing to object strategy."),k="object"):c.isIE(9)&&(v.warn("Scroll strategy is not supported on IE9. Changing to object strategy."),k="object")),"scroll"===k)C=d(x);else{if("object"!==k)throw new Error("Invalid strategy name: "+k);C=b(x)}var A={};return{listenTo:function(e,a,i){function o(e){var t=S.get(e);l(t,(function(t){t(e)}))}function n(e,t,a){S.add(t,a),e&&a(t)}if(i||(i=a,a=e,e={}),!a)throw new Error("At least one element required.");if(!i)throw new Error("Listener required.");if(y(a))a=[a];else{if(!g(a))return v.error("Invalid arguments. Must be a DOM element or a collection of DOM elements.");a=m(a)}var r=0,s=f(e,"callOnAdd",T.callOnAdd),c=f(e,"onReady",(function(){})),u=f(e,"debug",T.debug);l(a,(function(e){p.getState(e)||(p.initState(e),t.set(e));var b=t.get(e);if(u&&v.log("Attaching listener to element",b,e),!w.isDetectable(e))return u&&v.log(b,"Not detectable."),w.isBusy(e)?(u&&v.log(b,"System busy making it detectable"),n(s,e,i),A[b]=A[b]||[],void A[b].push((function(){++r===a.length&&c()}))):(u&&v.log(b,"Making detectable..."),w.markBusy(e,!0),C.makeDetectable({debug:u,important:P},e,(function(e){if(u&&v.log(b,"onElementDetectable"),p.getState(e)){w.markAsDetectable(e),w.markBusy(e,!1),C.addListener(e,o),n(s,e,i);var t=p.getState(e);if(t&&t.startSize){var d=e.offsetWidth,g=e.offsetHeight;t.startSize.width===d&&t.startSize.height===g||o(e)}A[b]&&l(A[b],(function(e){e()}))}else u&&v.log(b,"Element uninstalled before being detectable.");delete A[b],++r===a.length&&c()})));u&&v.log(b,"Already detecable, adding listener."),n(s,e,i),r++})),r===a.length&&c()},removeListener:S.removeListener,removeAllListeners:S.removeAllListeners,uninstall:function(e){if(!e)return v.error("At least one element is required.");if(y(e))e=[e];else{if(!g(e))return v.error("Invalid arguments. Must be a DOM element or a collection of DOM elements.");e=m(e)}l(e,(function(e){S.removeAllListeners(e),C.uninstall(e),p.cleanState(e)}))},initDocument:function(e){C.initDocument&&C.initDocument(e)}}}},function(e,t,a){"use strict";e.exports=function(e){var t=e.stateHandler.getState;return{isDetectable:function(e){var a=t(e);return a&&!!a.isDetectable},markAsDetectable:function(e){t(e).isDetectable=!0},isBusy:function(e){return!!t(e).busy},markBusy:function(e,a){t(e).busy=!!a}}}},function(e,t,a){"use strict";e.exports=function(e){var t={};function a(a){var l=e.get(a);return void 0===l?[]:t[l]||[]}return{get:a,add:function(a,l){var i=e.get(a);t[i]||(t[i]=[]),t[i].push(l)},removeListener:function(e,t){for(var l=a(e),i=0,o=l.length;i<o;++i)if(l[i]===t){l.splice(i,1);break}},removeAllListeners:function(e){var t=a(e);t&&(t.length=0)}}}},function(e,t,a){"use strict";e.exports=function(){var e=1;return{generate:function(){return e++}}}},function(e,t,a){"use strict";e.exports=function(e){var t=e.idGenerator,a=e.stateHandler.getState;return{get:function(e){var t=a(e);return t&&void 0!==t.id?t.id:null},set:function(e){var l=a(e);if(!l)throw new Error("setId required the element to have a resize detection state.");var i=t.generate();return l.id=i,i}}}},function(e,t,a){"use strict";e.exports=function(e){function t(){}var a={log:t,warn:t,error:t};if(!e&&window.console){var l=function(e,t){e[t]=function(){var e=console[t];if(e.apply)e.apply(console,arguments);else for(var a=0;a<arguments.length;a++)e(arguments[a])}};l(a,"log"),l(a,"warn"),l(a,"error")}return a}},function(e,t,a){"use strict";var l=a(257);function i(){var e={},t=0,a=0,l=0;return{add:function(i,o){o||(o=i,i=0),i>a?a=i:i<l&&(l=i),e[i]||(e[i]=[]),e[i].push(o),t++},process:function(){for(var t=l;t<=a;t++)for(var i=e[t],o=0;o<i.length;o++)(0,i[o])()},size:function(){return t}}}e.exports=function(e){var t=(e=e||{}).reporter,a=l.getOption(e,"async",!0),o=l.getOption(e,"auto",!0);o&&!a&&(t&&t.warn("Invalid options combination. auto=true and async=false is invalid. Setting async=true."),a=!0);var n,r=i(),s=!1;function c(){for(s=!0;r.size();){var e=r;r=i(),e.process()}s=!1}function u(){n=setTimeout(c,0)}return{add:function(e,t){!s&&o&&a&&0===r.size()&&u(),r.add(e,t)},force:function(e){s||(void 0===e&&(e=a),n&&(clearTimeout(n),n=null),e?u():c())}}}},function(e,t,a){"use strict";(e.exports={}).getOption=function(e,t,a){var l=e[t];return null==l&&void 0!==a?a:l}},function(e,t,a){"use strict";function l(e){return e._erd}e.exports={initState:function(e){return e._erd={},l(e)},getState:l,cleanState:function(e){delete e._erd}}},function(e,t,a){"use strict";var l=a(181);e.exports=function(e){var t=(e=e||{}).reporter,a=e.batchProcessor,i=e.stateHandler.getState;if(!t)throw new Error("Missing required dependency: reporter.");function o(t){var a=e.important?" !important; ":"; ";return(t.join(a)+a).trim()}function n(e){return i(e).object}return{makeDetectable:function(e,n,r){r||(r=n,n=e,e=null),(e=e||{}).debug,l.isIE(8)?r(n):function(n,r){var s=o(["display: block","position: absolute","top: 0","left: 0","width: 100%","height: 100%","border: none","padding: 0","margin: 0","opacity: 0","z-index: -1000","pointer-events: none","visibility: hidden"]),c=!1,u=window.getComputedStyle(n),p=n.offsetWidth,b=n.offsetHeight;function d(){function a(){if("static"===u.position){n.style.setProperty("position","relative",e.important?"important":"");var a=function(t,a,l,i){var o=l[i];"auto"!==o&&"0"!==function(e){return e.replace(/[^-\d\.]/g,"")}(o)&&(t.warn("An element that is positioned static has style."+i+"="+o+" which is ignored due to the static positioning. The element will need to be positioned relative, so the style."+i+" will be set to 0. Element: ",a),a.style.setProperty(i,"0",e.important?"important":""))};a(t,n,u,"top"),a(t,n,u,"right"),a(t,n,u,"bottom"),a(t,n,u,"left")}}""!==u.position&&(a(),c=!0);var o=document.createElement("object");o.style.cssText=s,o.tabIndex=-1,o.type="text/html",o.setAttribute("aria-hidden","true"),o.onload=function(){c||a(),function e(t,a){if(!t.contentDocument){var l=i(t);return l.checkForObjectDocumentTimeoutId&&window.clearTimeout(l.checkForObjectDocumentTimeoutId),void(l.checkForObjectDocumentTimeoutId=setTimeout((function(){l.checkForObjectDocumentTimeoutId=0,e(t,a)}),100))}a(t.contentDocument)}(this,(function(e){r(n)}))},l.isIE()||(o.data="about:blank"),i(n)&&(n.appendChild(o),i(n).object=o,l.isIE()&&(o.data="about:blank"))}i(n).startSize={width:p,height:b},a?a.add(d):d()}(n,r)},addListener:function(e,t){function a(){t(e)}if(l.isIE(8))i(e).object={proxy:a},e.attachEvent("onresize",a);else{var o=n(e);if(!o)throw new Error("Element is not detectable by this strategy.");o.contentDocument.defaultView.addEventListener("resize",a)}},uninstall:function(e){if(i(e)){var t=n(e);t&&(l.isIE(8)?e.detachEvent("onresize",t.proxy):e.removeChild(t),i(e).checkForObjectDocumentTimeoutId&&window.clearTimeout(i(e).checkForObjectDocumentTimeoutId),delete i(e).object)}}}}},function(e,t,a){"use strict";var l=a(180).forEach;e.exports=function(e){var t=(e=e||{}).reporter,a=e.batchProcessor,i=e.stateHandler.getState,o=(e.stateHandler.hasState,e.idHandler);if(!a)throw new Error("Missing required dependency: batchProcessor");if(!t)throw new Error("Missing required dependency: reporter.");var n=function(){var e=document.createElement("div");e.style.cssText=s(["position: absolute","width: 1000px","height: 1000px","visibility: hidden","margin: 0","padding: 0"]);var t=document.createElement("div");t.style.cssText=s(["position: absolute","width: 500px","height: 500px","overflow: scroll","visibility: none","top: -1500px","left: -1500px","visibility: hidden","margin: 0","padding: 0"]),t.appendChild(e),document.body.insertBefore(t,document.body.firstChild);var a=500-t.clientWidth,l=500-t.clientHeight;return document.body.removeChild(t),{width:a,height:l}}();function r(e){!function(e,t,a){if(!e.getElementById(t)){var l=a+"_animation",i="/* Created by the element-resize-detector library. */\n";i+="."+a+" > div::-webkit-scrollbar { "+s(["display: none"])+" }\n\n",i+=".erd_scroll_detection_container_animation_active { "+s(["-webkit-animation-duration: 0.1s","animation-duration: 0.1s","-webkit-animation-name: "+l,"animation-name: "+l])+" }\n",i+="@-webkit-keyframes "+l+" { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }\n",function(a,l){l=l||function(t){e.head.appendChild(t)};var i=e.createElement("style");i.innerHTML=a,i.id=t,l(i)}(i+="@keyframes "+l+" { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } }")}}(e,"erd_scroll_detection_scrollbar_style","erd_scroll_detection_container")}function s(t){var a=e.important?" !important; ":"; ";return(t.join(a)+a).trim()}function c(e,a,l){if(e.addEventListener)e.addEventListener(a,l);else{if(!e.attachEvent)return t.error("[scroll] Don't know how to add event listeners.");e.attachEvent("on"+a,l)}}function u(e,a,l){if(e.removeEventListener)e.removeEventListener(a,l);else{if(!e.detachEvent)return t.error("[scroll] Don't know how to remove event listeners.");e.detachEvent("on"+a,l)}}function p(e){return i(e).container.childNodes[0].childNodes[0].childNodes[0]}function b(e){return i(e).container.childNodes[0].childNodes[0].childNodes[1]}return r(window.document),{makeDetectable:function(e,r,u){function d(){if(e.debug){var a=Array.prototype.slice.call(arguments);if(a.unshift(o.get(r),"Scroll: "),t.log.apply)t.log.apply(null,a);else for(var l=0;l<a.length;l++)t.log(a[l])}}function g(e){var t=i(e).container.childNodes[0],a=window.getComputedStyle(t);return!a.width||-1===a.width.indexOf("px")}function m(){var e=window.getComputedStyle(r),t={};return t.position=e.position,t.width=r.offsetWidth,t.height=r.offsetHeight,t.top=e.top,t.right=e.right,t.bottom=e.bottom,t.left=e.left,t.widthCSS=e.width,t.heightCSS=e.height,t}function y(){if(d("storeStyle invoked."),i(r)){var e=m();i(r).style=e}else d("Aborting because element has been uninstalled")}function f(e,t,a){i(e).lastWidth=t,i(e).lastHeight=a}function h(){return 2*n.width+1}function v(){return 2*n.height+1}function _(e){return e+10+h()}function T(e){return e+10+v()}function C(e,t,a){var l=p(e),i=b(e),o=_(t),n=T(a),r=function(e){return 2*e+h()}(t),s=function(e){return 2*e+v()}(a);l.scrollLeft=o,l.scrollTop=n,i.scrollLeft=r,i.scrollTop=s}function S(){var e=i(r).container;if(!e){(e=document.createElement("div")).className="erd_scroll_detection_container",e.style.cssText=s(["visibility: hidden","display: inline","width: 0px","height: 0px","z-index: -1","overflow: hidden","margin: 0","padding: 0"]),i(r).container=e,function(e){e.className+=" erd_scroll_detection_container_animation_active"}(e),r.appendChild(e);var t=function(){i(r).onRendered&&i(r).onRendered()};c(e,"animationstart",t),i(r).onAnimationStart=t}return e}function w(){if(d("Injecting elements"),i(r)){!function(){var a=i(r).style;if("static"===a.position){r.style.setProperty("position","relative",e.important?"important":"");var l=function(e,t,a,l){var i=a[l];"auto"!==i&&"0"!==function(e){return e.replace(/[^-\d\.]/g,"")}(i)&&(e.warn("An element that is positioned static has style."+l+"="+i+" which is ignored due to the static positioning. The element will need to be positioned relative, so the style."+l+" will be set to 0. Element: ",t),t.style[l]=0)};l(t,r,a,"top"),l(t,r,a,"right"),l(t,r,a,"bottom"),l(t,r,a,"left")}}();var a=i(r).container;a||(a=S());var l,o,u,p,b=n.width,g=n.height,m=s(["position: absolute","flex: none","overflow: hidden","z-index: -1","visibility: hidden","width: 100%","height: 100%","left: 0px","top: 0px"]),y=s(["position: absolute","flex: none","overflow: hidden","z-index: -1","visibility: hidden"].concat(["left: "+(l=(l=-(1+b))?l+"px":"0"),"top: "+(o=(o=-(1+g))?o+"px":"0"),"right: "+(p=(p=-b)?p+"px":"0"),"bottom: "+(u=(u=-g)?u+"px":"0")])),f=s(["position: absolute","flex: none","overflow: scroll","z-index: -1","visibility: hidden","width: 100%","height: 100%"]),h=s(["position: absolute","flex: none","overflow: scroll","z-index: -1","visibility: hidden","width: 100%","height: 100%"]),v=s(["position: absolute","left: 0","top: 0"]),_=s(["position: absolute","width: 200%","height: 200%"]),T=document.createElement("div"),C=document.createElement("div"),w=document.createElement("div"),k=document.createElement("div"),P=document.createElement("div"),x=document.createElement("div");T.dir="ltr",T.style.cssText=m,T.className="erd_scroll_detection_container",C.className="erd_scroll_detection_container",C.style.cssText=y,w.style.cssText=f,k.style.cssText=v,P.style.cssText=h,x.style.cssText=_,w.appendChild(k),P.appendChild(x),C.appendChild(w),C.appendChild(P),T.appendChild(C),a.appendChild(T),c(w,"scroll",A),c(P,"scroll",G),i(r).onExpandScroll=A,i(r).onShrinkScroll=G}else d("Aborting because element has been uninstalled");function A(){i(r).onExpand&&i(r).onExpand()}function G(){i(r).onShrink&&i(r).onShrink()}}function k(){function n(t,a,l){var i=function(e){return p(e).childNodes[0]}(t),o=_(a),n=T(l);i.style.setProperty("width",o+"px",e.important?"important":""),i.style.setProperty("height",n+"px",e.important?"important":"")}function s(l){var s=r.offsetWidth,u=r.offsetHeight,p=s!==i(r).lastWidth||u!==i(r).lastHeight;d("Storing current size",s,u),f(r,s,u),a.add(0,(function(){if(p)if(i(r))if(c()){if(e.debug){var a=r.offsetWidth,l=r.offsetHeight;a===s&&l===u||t.warn(o.get(r),"Scroll: Size changed before updating detector elements.")}n(r,s,u)}else d("Aborting because element container has not been initialized");else d("Aborting because element has been uninstalled")})),a.add(1,(function(){i(r)?c()?C(r,s,u):d("Aborting because element container has not been initialized"):d("Aborting because element has been uninstalled")})),p&&l&&a.add(2,(function(){i(r)?c()?l():d("Aborting because element container has not been initialized"):d("Aborting because element has been uninstalled")}))}function c(){return!!i(r).container}function u(){d("notifyListenersIfNeeded invoked");var e=i(r);return void 0===i(r).lastNotifiedWidth&&e.lastWidth===e.startSize.width&&e.lastHeight===e.startSize.height?d("Not notifying: Size is the same as the start size, and there has been no notification yet."):e.lastWidth===e.lastNotifiedWidth&&e.lastHeight===e.lastNotifiedHeight?d("Not notifying: Size already notified"):(d("Current size not notified, notifying..."),e.lastNotifiedWidth=e.lastWidth,e.lastNotifiedHeight=e.lastHeight,void l(i(r).listeners,(function(e){e(r)})))}function m(){d("Scroll detected."),g(r)?d("Scroll event fired while unrendered. Ignoring..."):s(u)}if(d("registerListenersAndPositionElements invoked."),i(r)){i(r).onRendered=function(){if(d("startanimation triggered."),g(r))d("Ignoring since element is still unrendered...");else{d("Element rendered.");var e=p(r),t=b(r);0!==e.scrollLeft&&0!==e.scrollTop&&0!==t.scrollLeft&&0!==t.scrollTop||(d("Scrollbars out of sync. Updating detector elements..."),s(u))}},i(r).onExpand=m,i(r).onShrink=m;var y=i(r).style;n(r,y.width,y.height)}else d("Aborting because element has been uninstalled")}function P(){if(d("finalizeDomMutation invoked."),i(r)){var e=i(r).style;f(r,e.width,e.height),C(r,e.width,e.height)}else d("Aborting because element has been uninstalled")}function x(){u(r)}function A(){var e;d("Installing..."),i(r).listeners=[],e=m(),i(r).startSize={width:e.width,height:e.height},d("Element start size",i(r).startSize),a.add(0,y),a.add(1,w),a.add(2,k),a.add(3,P),a.add(4,x)}u||(u=r,r=e,e=null),e=e||{},d("Making detectable..."),function(e){return!function(e){var t=e.getRootNode&&e.getRootNode().contains(e);return e===e.ownerDocument.body||e.ownerDocument.body.contains(e)||t}(e)||null===window.getComputedStyle(e)}(r)?(d("Element is detached"),S(),d("Waiting until element is attached..."),i(r).onRendered=function(){d("Element is now attached"),A()}):A()},addListener:function(e,t){if(!i(e).listeners.push)throw new Error("Cannot add listener to an element that is not detectable.");i(e).listeners.push(t)},uninstall:function(e){var t=i(e);t&&(t.onExpandScroll&&u(p(e),"scroll",t.onExpandScroll),t.onShrinkScroll&&u(b(e),"scroll",t.onShrinkScroll),t.onAnimationStart&&u(t.container,"animationstart",t.onAnimationStart),t.container&&e.removeChild(t.container))},initDocument:r}}},function(e,t,a){var l=a(28),i=a(262),o=a(263),n=Math.max,r=Math.min;e.exports=function(e,t,a){var s,c,u,p,b,d,g=0,m=!1,y=!1,f=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function h(t){var a=s,l=c;return s=c=void 0,g=t,p=e.apply(l,a)}function v(e){return g=e,b=setTimeout(T,t),m?h(e):p}function _(e){var a=e-d;return void 0===d||a>=t||a<0||y&&e-g>=u}function T(){var e=i();if(_(e))return C(e);b=setTimeout(T,function(e){var a=t-(e-d);return y?r(a,u-(e-g)):a}(e))}function C(e){return b=void 0,f&&s?h(e):(s=c=void 0,p)}function S(){var e=i(),a=_(e);if(s=arguments,c=this,d=e,a){if(void 0===b)return v(d);if(y)return clearTimeout(b),b=setTimeout(T,t),h(d)}return void 0===b&&(b=setTimeout(T,t)),p}return t=o(t)||0,l(a)&&(m=!!a.leading,u=(y="maxWait"in a)?n(o(a.maxWait)||0,t):u,f="trailing"in a?!!a.trailing:f),S.cancel=function(){void 0!==b&&clearTimeout(b),g=0,s=d=c=b=void 0},S.flush=function(){return void 0===b?p:C(i())},S}},function(e,t,a){var l=a(26);e.exports=function(){return l.Date.now()}},function(e,t,a){var l=a(264),i=a(28),o=a(44),n=/^[-+]0x[0-9a-f]+$/i,r=/^0b[01]+$/i,s=/^0o[0-7]+$/i,c=parseInt;e.exports=function(e){if("number"==typeof e)return e;if(o(e))return NaN;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=l(e);var a=r.test(e);return a||s.test(e)?c(e.slice(2),a?2:8):n.test(e)?NaN:+e}},function(e,t,a){var l=a(265),i=/^\s+/;e.exports=function(e){return e?e.slice(0,l(e)+1).replace(i,""):e}},function(e,t){var a=/\s/;e.exports=function(e){for(var t=e.length;t--&&a.test(e.charAt(t)););return t}},function(e,t,a){var l=a(182),i=a(267),o=a(319),n=a(72),r=a(35),s=a(330),c=a(332),u=a(187),p=c((function(e,t){var a={};if(null==e)return a;var c=!1;t=l(t,(function(t){return t=n(t,e),c||(c=t.length>1),t})),r(e,u(e),a),c&&(a=i(a,7,s));for(var p=t.length;p--;)o(a,t[p]);return a}));e.exports=p},function(e,t,a){var l=a(268),i=a(291),o=a(60),n=a(292),r=a(293),s=a(296),c=a(297),u=a(298),p=a(300),b=a(301),d=a(187),g=a(70),m=a(306),y=a(307),f=a(313),h=a(33),v=a(178),_=a(315),T=a(28),C=a(317),S=a(43),w=a(66),k={};k["[object Arguments]"]=k["[object Array]"]=k["[object ArrayBuffer]"]=k["[object DataView]"]=k["[object Boolean]"]=k["[object Date]"]=k["[object Float32Array]"]=k["[object Float64Array]"]=k["[object Int8Array]"]=k["[object Int16Array]"]=k["[object Int32Array]"]=k["[object Map]"]=k["[object Number]"]=k["[object Object]"]=k["[object RegExp]"]=k["[object Set]"]=k["[object String]"]=k["[object Symbol]"]=k["[object Uint8Array]"]=k["[object Uint8ClampedArray]"]=k["[object Uint16Array]"]=k["[object Uint32Array]"]=!0,k["[object Error]"]=k["[object Function]"]=k["[object WeakMap]"]=!1,e.exports=function e(t,a,P,x,A,G){var M,R=1&a,B=2&a,U=4&a;if(P&&(M=A?P(t,x,A,G):P(t)),void 0!==M)return M;if(!T(t))return t;var E=h(t);if(E){if(M=m(t),!R)return c(t,M)}else{var O=g(t),L="[object Function]"==O||"[object GeneratorFunction]"==O;if(v(t))return s(t,R);if("[object Object]"==O||"[object Arguments]"==O||L&&!A){if(M=B||L?{}:f(t),!R)return B?p(t,r(M,t)):u(t,n(M,t))}else{if(!k[O])return A?t:{};M=y(t,O,R)}}G||(G=new l);var H=G.get(t);if(H)return H;G.set(t,M),C(t)?t.forEach((function(l){M.add(e(l,a,P,l,t,G))})):_(t)&&t.forEach((function(l,i){M.set(i,e(l,a,P,i,t,G))}));var j=E?void 0:(U?B?d:b:B?w:S)(t);return i(j||t,(function(l,i){j&&(l=t[i=l]),o(M,i,e(l,a,P,i,t,G))})),M}},function(e,t,a){var l=a(45),i=a(274),o=a(275),n=a(276),r=a(277),s=a(278);function c(e){var t=this.__data__=new l(e);this.size=t.size}c.prototype.clear=i,c.prototype.delete=o,c.prototype.get=n,c.prototype.has=r,c.prototype.set=s,e.exports=c},function(e,t){e.exports=function(){this.__data__=[],this.size=0}},function(e,t,a){var l=a(46),i=Array.prototype.splice;e.exports=function(e){var t=this.__data__,a=l(t,e);return!(a<0||(a==t.length-1?t.pop():i.call(t,a,1),--this.size,0))}},function(e,t,a){var l=a(46);e.exports=function(e){var t=this.__data__,a=l(t,e);return a<0?void 0:t[a][1]}},function(e,t,a){var l=a(46);e.exports=function(e){return l(this.__data__,e)>-1}},function(e,t,a){var l=a(46);e.exports=function(e,t){var a=this.__data__,i=l(a,e);return i<0?(++this.size,a.push([e,t])):a[i][1]=t,this}},function(e,t,a){var l=a(45);e.exports=function(){this.__data__=new l,this.size=0}},function(e,t){e.exports=function(e){var t=this.__data__,a=t.delete(e);return this.size=t.size,a}},function(e,t){e.exports=function(e){return this.__data__.get(e)}},function(e,t){e.exports=function(e){return this.__data__.has(e)}},function(e,t,a){var l=a(45),i=a(65),o=a(183);e.exports=function(e,t){var a=this.__data__;if(a instanceof l){var n=a.__data__;if(!i||n.length<199)return n.push([e,t]),this.size=++a.size,this;a=this.__data__=new o(n)}return a.set(e,t),this.size=a.size,this}},function(e,t,a){var l=a(280),i=a(45),o=a(65);e.exports=function(){this.size=0,this.__data__={hash:new l,map:new(o||i),string:new l}}},function(e,t,a){var l=a(281),i=a(282),o=a(283),n=a(284),r=a(285);function s(e){var t=-1,a=null==e?0:e.length;for(this.clear();++t<a;){var l=e[t];this.set(l[0],l[1])}}s.prototype.clear=l,s.prototype.delete=i,s.prototype.get=o,s.prototype.has=n,s.prototype.set=r,e.exports=s},function(e,t,a){var l=a(47);e.exports=function(){this.__data__=l?l(null):{},this.size=0}},function(e,t){e.exports=function(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t}},function(e,t,a){var l=a(47),i=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;if(l){var a=t[e];return"__lodash_hash_undefined__"===a?void 0:a}return i.call(t,e)?t[e]:void 0}},function(e,t,a){var l=a(47),i=Object.prototype.hasOwnProperty;e.exports=function(e){var t=this.__data__;return l?void 0!==t[e]:i.call(t,e)}},function(e,t,a){var l=a(47);e.exports=function(e,t){var a=this.__data__;return this.size+=this.has(e)?0:1,a[e]=l&&void 0===t?"__lodash_hash_undefined__":t,this}},function(e,t,a){var l=a(48);e.exports=function(e){var t=l(this,e).delete(e);return this.size-=t?1:0,t}},function(e,t){e.exports=function(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e}},function(e,t,a){var l=a(48);e.exports=function(e){return l(this,e).get(e)}},function(e,t,a){var l=a(48);e.exports=function(e){return l(this,e).has(e)}},function(e,t,a){var l=a(48);e.exports=function(e,t){var a=l(this,e),i=a.size;return a.set(e,t),this.size+=a.size==i?0:1,this}},function(e,t){e.exports=function(e,t){for(var a=-1,l=null==e?0:e.length;++a<l&&!1!==t(e[a],a,e););return e}},function(e,t,a){var l=a(35),i=a(43);e.exports=function(e,t){return e&&l(t,i(t),e)}},function(e,t,a){var l=a(35),i=a(66);e.exports=function(e,t){return e&&l(t,i(t),e)}},function(e,t,a){var l=a(28),i=a(42),o=a(295),n=Object.prototype.hasOwnProperty;e.exports=function(e){if(!l(e))return o(e);var t=i(e),a=[];for(var r in e)("constructor"!=r||!t&&n.call(e,r))&&a.push(r);return a}},function(e,t){e.exports=function(e){var t=[];if(null!=e)for(var a in Object(e))t.push(a);return t}},function(e,t,a){(function(e){var l=a(26),i=t&&!t.nodeType&&t,o=i&&"object"==typeof e&&e&&!e.nodeType&&e,n=o&&o.exports===i?l.Buffer:void 0,r=n?n.allocUnsafe:void 0;e.exports=function(e,t){if(t)return e.slice();var a=e.length,l=r?r(a):new e.constructor(a);return e.copy(l),l}}).call(this,a(62)(e))},function(e,t){e.exports=function(e,t){var a=-1,l=e.length;for(t||(t=Array(l));++a<l;)t[a]=e[a];return t}},function(e,t,a){var l=a(35),i=a(67);e.exports=function(e,t){return l(e,i(e),t)}},function(e,t){e.exports=function(e,t){for(var a=-1,l=null==e?0:e.length,i=0,o=[];++a<l;){var n=e[a];t(n,a,e)&&(o[i++]=n)}return o}},function(e,t,a){var l=a(35),i=a(185);e.exports=function(e,t){return l(e,i(e),t)}},function(e,t,a){var l=a(186),i=a(67),o=a(43);e.exports=function(e){return l(e,o,i)}},function(e,t,a){var l=a(31)(a(26),"DataView");e.exports=l},function(e,t,a){var l=a(31)(a(26),"Promise");e.exports=l},function(e,t,a){var l=a(31)(a(26),"Set");e.exports=l},function(e,t,a){var l=a(31)(a(26),"WeakMap");e.exports=l},function(e,t){var a=Object.prototype.hasOwnProperty;e.exports=function(e){var t=e.length,l=new e.constructor(t);return t&&"string"==typeof e[0]&&a.call(e,"index")&&(l.index=e.index,l.input=e.input),l}},function(e,t,a){var l=a(71),i=a(309),o=a(310),n=a(311),r=a(312);e.exports=function(e,t,a){var s=e.constructor;switch(t){case"[object ArrayBuffer]":return l(e);case"[object Boolean]":case"[object Date]":return new s(+e);case"[object DataView]":return i(e,a);case"[object Float32Array]":case"[object Float64Array]":case"[object Int8Array]":case"[object Int16Array]":case"[object Int32Array]":case"[object Uint8Array]":case"[object Uint8ClampedArray]":case"[object Uint16Array]":case"[object Uint32Array]":return r(e,a);case"[object Map]":return new s;case"[object Number]":case"[object String]":return new s(e);case"[object RegExp]":return o(e);case"[object Set]":return new s;case"[object Symbol]":return n(e)}}},function(e,t,a){var l=a(26).Uint8Array;e.exports=l},function(e,t,a){var l=a(71);e.exports=function(e,t){var a=t?l(e.buffer):e.buffer;return new e.constructor(a,e.byteOffset,e.byteLength)}},function(e,t){var a=/\w*$/;e.exports=function(e){var t=new e.constructor(e.source,a.exec(e));return t.lastIndex=e.lastIndex,t}},function(e,t,a){var l=a(38),i=l?l.prototype:void 0,o=i?i.valueOf:void 0;e.exports=function(e){return o?Object(o.call(e)):{}}},function(e,t,a){var l=a(71);e.exports=function(e,t){var a=t?l(e.buffer):e.buffer;return new e.constructor(a,e.byteOffset,e.length)}},function(e,t,a){var l=a(314),i=a(69),o=a(42);e.exports=function(e){return"function"!=typeof e.constructor||o(e)?{}:l(i(e))}},function(e,t,a){var l=a(28),i=Object.create,o=function(){function e(){}return function(t){if(!l(t))return{};if(i)return i(t);e.prototype=t;var a=new e;return e.prototype=void 0,a}}();e.exports=o},function(e,t,a){var l=a(316),i=a(63),o=a(64),n=o&&o.isMap,r=n?i(n):l;e.exports=r},function(e,t,a){var l=a(70),i=a(32);e.exports=function(e){return i(e)&&"[object Map]"==l(e)}},function(e,t,a){var l=a(318),i=a(63),o=a(64),n=o&&o.isSet,r=n?i(n):l;e.exports=r},function(e,t,a){var l=a(70),i=a(32);e.exports=function(e){return i(e)&&"[object Set]"==l(e)}},function(e,t,a){var l=a(72),i=a(326),o=a(327),n=a(188);e.exports=function(e,t){return t=l(t,e),null==(e=o(e,t))||delete e[n(i(t))]}},function(e,t,a){var l=a(33),i=a(44),o=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,n=/^\w*$/;e.exports=function(e,t){if(l(e))return!1;var a=typeof e;return!("number"!=a&&"symbol"!=a&&"boolean"!=a&&null!=e&&!i(e))||n.test(e)||!o.test(e)||null!=t&&e in Object(t)}},function(e,t,a){var l=a(322),i=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,o=/\\(\\)?/g,n=l((function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(i,(function(e,a,l,i){t.push(l?i.replace(o,"$1"):a||e)})),t}));e.exports=n},function(e,t,a){var l=a(323);e.exports=function(e){var t=l(e,(function(e){return 500===a.size&&a.clear(),e})),a=t.cache;return t}},function(e,t,a){var l=a(183);function i(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new TypeError("Expected a function");var a=function(){var l=arguments,i=t?t.apply(this,l):l[0],o=a.cache;if(o.has(i))return o.get(i);var n=e.apply(this,l);return a.cache=o.set(i,n)||o,n};return a.cache=new(i.Cache||l),a}i.Cache=l,e.exports=i},function(e,t,a){var l=a(325);e.exports=function(e){return null==e?"":l(e)}},function(e,t,a){var l=a(38),i=a(182),o=a(33),n=a(44),r=l?l.prototype:void 0,s=r?r.toString:void 0;e.exports=function e(t){if("string"==typeof t)return t;if(o(t))return i(t,e)+"";if(n(t))return s?s.call(t):"";var a=t+"";return"0"==a&&1/t==-1/0?"-0":a}},function(e,t){e.exports=function(e){var t=null==e?0:e.length;return t?e[t-1]:void 0}},function(e,t,a){var l=a(328),i=a(329);e.exports=function(e,t){return t.length<2?e:l(e,i(t,0,-1))}},function(e,t,a){var l=a(72),i=a(188);e.exports=function(e,t){for(var a=0,o=(t=l(t,e)).length;null!=e&&a<o;)e=e[i(t[a++])];return a&&a==o?e:void 0}},function(e,t){e.exports=function(e,t,a){var l=-1,i=e.length;t<0&&(t=-t>i?0:i+t),(a=a>i?i:a)<0&&(a+=i),i=t>a?0:a-t>>>0,t>>>=0;for(var o=Array(i);++l<i;)o[l]=e[l+t];return o}},function(e,t,a){var l=a(331);e.exports=function(e){return l(e)?void 0:e}},function(e,t,a){var l=a(34),i=a(69),o=a(32),n=Function.prototype,r=Object.prototype,s=n.toString,c=r.hasOwnProperty,u=s.call(Object);e.exports=function(e){if(!o(e)||"[object Object]"!=l(e))return!1;var t=i(e);if(null===t)return!0;var a=c.call(t,"constructor")&&t.constructor;return"function"==typeof a&&a instanceof a&&s.call(a)==u}},function(e,t,a){var l=a(333),i=a(172),o=a(173);e.exports=function(e){return o(i(e,void 0,l),e+"")}},function(e,t,a){var l=a(334);e.exports=function(e){return null!=e&&e.length?l(e,1):[]}},function(e,t,a){var l=a(68),i=a(335);e.exports=function e(t,a,o,n,r){var s=-1,c=t.length;for(o||(o=i),r||(r=[]);++s<c;){var u=t[s];a>0&&o(u)?a>1?e(u,a-1,o,n,r):l(r,u):n||(r[r.length]=u)}return r}},function(e,t,a){var l=a(38),i=a(177),o=a(33),n=l?l.isConcatSpreadable:void 0;e.exports=function(e){return o(e)||i(e)||!!(n&&e&&e[n])}},function(e,t,a){"use strict";var l=a(5),i=a(337);if(void 0===l)throw Error("create-react-class could not find the React object. If you are using script tags, make sure that React is being loaded before create-react-class.");var o=(new l.Component).updater;e.exports=i(l.Component,l.isValidElement,o)},function(e,t,a){"use strict";var l=a(338),i={};function o(e,t,a,l,i,o,n,r){if(!e){var s;if(void 0===t)s=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var c=[a,l,i,o,n,r],u=0;(s=new Error(t.replace(/%s/g,(function(){return c[u++]})))).name="Invariant Violation"}throw s.framesToPop=1,s}}e.exports=function(e,t,a){var n=[],r={mixins:"DEFINE_MANY",statics:"DEFINE_MANY",propTypes:"DEFINE_MANY",contextTypes:"DEFINE_MANY",childContextTypes:"DEFINE_MANY",getDefaultProps:"DEFINE_MANY_MERGED",getInitialState:"DEFINE_MANY_MERGED",getChildContext:"DEFINE_MANY_MERGED",render:"DEFINE_ONCE",componentWillMount:"DEFINE_MANY",componentDidMount:"DEFINE_MANY",componentWillReceiveProps:"DEFINE_MANY",shouldComponentUpdate:"DEFINE_ONCE",componentWillUpdate:"DEFINE_MANY",componentDidUpdate:"DEFINE_MANY",componentWillUnmount:"DEFINE_MANY",UNSAFE_componentWillMount:"DEFINE_MANY",UNSAFE_componentWillReceiveProps:"DEFINE_MANY",UNSAFE_componentWillUpdate:"DEFINE_MANY",updateComponent:"OVERRIDE_BASE"},s={getDerivedStateFromProps:"DEFINE_MANY_MERGED"},c={displayName:function(e,t){e.displayName=t},mixins:function(e,t){if(t)for(var a=0;a<t.length;a++)p(e,t[a])},childContextTypes:function(e,t){e.childContextTypes=l({},e.childContextTypes,t)},contextTypes:function(e,t){e.contextTypes=l({},e.contextTypes,t)},getDefaultProps:function(e,t){e.getDefaultProps?e.getDefaultProps=d(e.getDefaultProps,t):e.getDefaultProps=t},propTypes:function(e,t){e.propTypes=l({},e.propTypes,t)},statics:function(e,t){!function(e,t){if(t)for(var a in t){var l=t[a];if(t.hasOwnProperty(a)){if(o(!(a in c),'ReactClass: You are attempting to define a reserved property, `%s`, that shouldn\'t be on the "statics" key. Define it as an instance property instead; it will still be accessible on the constructor.',a),a in e)return o("DEFINE_MANY_MERGED"===(s.hasOwnProperty(a)?s[a]:null),"ReactClass: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",a),void(e[a]=d(e[a],l));e[a]=l}}}(e,t)},autobind:function(){}};function u(e,t){var a=r.hasOwnProperty(t)?r[t]:null;h.hasOwnProperty(t)&&o("OVERRIDE_BASE"===a,"ReactClassInterface: You are attempting to override `%s` from your class specification. Ensure that your method names do not overlap with React methods.",t),e&&o("DEFINE_MANY"===a||"DEFINE_MANY_MERGED"===a,"ReactClassInterface: You are attempting to define `%s` on your component more than once. This conflict may be due to a mixin.",t)}function p(e,a){if(a){o("function"!=typeof a,"ReactClass: You're attempting to use a component class or function as a mixin. Instead, just use a regular object."),o(!t(a),"ReactClass: You're attempting to use a component as a mixin. Instead, just use a regular object.");var l=e.prototype,i=l.__reactAutoBindPairs;for(var n in a.hasOwnProperty("mixins")&&c.mixins(e,a.mixins),a)if(a.hasOwnProperty(n)&&"mixins"!==n){var s=a[n],p=l.hasOwnProperty(n);if(u(p,n),c.hasOwnProperty(n))c[n](e,s);else{var b=r.hasOwnProperty(n);if("function"!=typeof s||b||p||!1===a.autobind)if(p){var m=r[n];o(b&&("DEFINE_MANY_MERGED"===m||"DEFINE_MANY"===m),"ReactClass: Unexpected spec policy %s for key %s when mixing in component specs.",m,n),"DEFINE_MANY_MERGED"===m?l[n]=d(l[n],s):"DEFINE_MANY"===m&&(l[n]=g(l[n],s))}else l[n]=s;else i.push(n,s),l[n]=s}}}}function b(e,t){for(var a in o(e&&t&&"object"==typeof e&&"object"==typeof t,"mergeIntoWithNoDuplicateKeys(): Cannot merge non-objects."),t)t.hasOwnProperty(a)&&(o(void 0===e[a],"mergeIntoWithNoDuplicateKeys(): Tried to merge two objects with the same key: `%s`. This conflict may be due to a mixin; in particular, this may be caused by two getInitialState() or getDefaultProps() methods returning objects with clashing keys.",a),e[a]=t[a]);return e}function d(e,t){return function(){var a=e.apply(this,arguments),l=t.apply(this,arguments);if(null==a)return l;if(null==l)return a;var i={};return b(i,a),b(i,l),i}}function g(e,t){return function(){e.apply(this,arguments),t.apply(this,arguments)}}function m(e,t){return t.bind(e)}var y={componentDidMount:function(){this.__isMounted=!0}},f={componentWillUnmount:function(){this.__isMounted=!1}},h={replaceState:function(e,t){this.updater.enqueueReplaceState(this,e,t)},isMounted:function(){return!!this.__isMounted}},v=function(){};return l(v.prototype,e.prototype,h),function(e){var t=function(e,l,n){this.__reactAutoBindPairs.length&&function(e){for(var t=e.__reactAutoBindPairs,a=0;a<t.length;a+=2){var l=t[a],i=t[a+1];e[l]=m(e,i)}}(this),this.props=e,this.context=l,this.refs=i,this.updater=n||a,this.state=null;var r=this.getInitialState?this.getInitialState():null;o("object"==typeof r&&!Array.isArray(r),"%s.getInitialState(): must return an object or null",t.displayName||"ReactCompositeComponent"),this.state=r};for(var l in t.prototype=new v,t.prototype.constructor=t,t.prototype.__reactAutoBindPairs=[],n.forEach(p.bind(null,t)),p(t,y),p(t,e),p(t,f),t.getDefaultProps&&(t.defaultProps=t.getDefaultProps()),o(t.prototype.render,"createClass(...): Class specification must implement a `render` method."),r)t.prototype[l]||(t.prototype[l]=null);return t}}},function(e,t,a){"use strict";var l=Object.getOwnPropertySymbols,i=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function n(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},a=0;a<10;a++)t["_"+String.fromCharCode(a)]=a;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var l={};return"abcdefghijklmnopqrst".split("").forEach((function(e){l[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},l)).join("")}catch(e){return!1}}()?Object.assign:function(e,t){for(var a,r,s=n(e),c=1;c<arguments.length;c++){for(var u in a=Object(arguments[c]))i.call(a,u)&&(s[u]=a[u]);if(l){r=l(a);for(var p=0;p<r.length;p++)o.call(a,r[p])&&(s[r[p]]=a[r[p]])}}return s}},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var l=s(a(5)),i=a(340),o=s(a(347)),n=s(a(349)),r=a(49);function s(e){return e&&e.__esModule?e:{default:e}}function c(e){return(c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function u(){return(u=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function p(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){y(e,t,a[t])}))}return e}function b(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function d(e){return(d=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function g(e,t){return(g=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function m(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function y(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}var f=(0,r.canUseDOM)()&&a(350),h=function(e){function t(e){var a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a=function(e,t){return!t||"object"!==c(t)&&"function"!=typeof t?m(e):t}(this,d(t).call(this,e)),y(m(m(a)),"innerSliderRefHandler",(function(e){return a.innerSlider=e})),y(m(m(a)),"slickPrev",(function(){return a.innerSlider.slickPrev()})),y(m(m(a)),"slickNext",(function(){return a.innerSlider.slickNext()})),y(m(m(a)),"slickGoTo",(function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return a.innerSlider.slickGoTo(e,t)})),y(m(m(a)),"slickPause",(function(){return a.innerSlider.pause("paused")})),y(m(m(a)),"slickPlay",(function(){return a.innerSlider.autoPlay("play")})),a.state={breakpoint:null},a._responsiveMediaHandlers=[],a}var a,s;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&g(e,t)}(t,e),a=t,(s=[{key:"media",value:function(e,t){f.register(e,t),this._responsiveMediaHandlers.push({query:e,handler:t})}},{key:"componentWillMount",value:function(){var e=this;if(this.props.responsive){var t=this.props.responsive.map((function(e){return e.breakpoint}));t.sort((function(e,t){return e-t})),t.forEach((function(a,l){var i;i=0===l?(0,o.default)({minWidth:0,maxWidth:a}):(0,o.default)({minWidth:t[l-1]+1,maxWidth:a}),(0,r.canUseDOM)()&&e.media(i,(function(){e.setState({breakpoint:a})}))}));var a=(0,o.default)({minWidth:t.slice(-1)[0]});(0,r.canUseDOM)()&&this.media(a,(function(){e.setState({breakpoint:null})}))}}},{key:"componentWillUnmount",value:function(){this._responsiveMediaHandlers.forEach((function(e){f.unregister(e.query,e.handler)}))}},{key:"render",value:function(){var e,t,a=this;(e=this.state.breakpoint?"unslick"===(t=this.props.responsive.filter((function(e){return e.breakpoint===a.state.breakpoint})))[0].settings?"unslick":p({},n.default,this.props,t[0].settings):p({},n.default,this.props)).centerMode&&(e.slidesToScroll,e.slidesToScroll=1),e.fade&&(e.slidesToShow,e.slidesToScroll,e.slidesToShow=1,e.slidesToScroll=1);var o=l.default.Children.toArray(this.props.children);o=o.filter((function(e){return"string"==typeof e?!!e.trim():!!e})),e.variableWidth&&(e.rows>1||e.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),e.variableWidth=!1);for(var r=[],s=null,c=0;c<o.length;c+=e.rows*e.slidesPerRow){for(var b=[],d=c;d<c+e.rows*e.slidesPerRow;d+=e.slidesPerRow){for(var g=[],m=d;m<d+e.slidesPerRow&&(e.variableWidth&&o[m].props.style&&(s=o[m].props.style.width),!(m>=o.length));m+=1)g.push(l.default.cloneElement(o[m],{key:100*c+10*d+m,tabIndex:-1,style:{width:"".concat(100/e.slidesPerRow,"%"),display:"inline-block"}}));b.push(l.default.createElement("div",{key:10*c+d},g))}e.variableWidth?r.push(l.default.createElement("div",{key:c,style:{width:s}},b)):r.push(l.default.createElement("div",{key:c},b))}if("unslick"===e){var y="regular slider "+(this.props.className||"");return l.default.createElement("div",{className:y},r)}return r.length<=e.slidesToShow&&(e.unslick=!0),l.default.createElement(i.InnerSlider,u({ref:this.innerSliderRefHandler},e),r)}}])&&b(a.prototype,s),t}(l.default.Component);t.default=h},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InnerSlider=void 0;var l=d(a(5)),i=d(a(22)),o=d(a(341)),n=d(a(342)),r=d(a(4)),s=a(49),c=a(343),u=a(344),p=a(345),b=d(a(346));function d(e){return e&&e.__esModule?e:{default:e}}function g(){return(g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function m(e,t){if(null==e)return{};var a,l,i=function(e,t){if(null==e)return{};var a,l,i={},o=Object.keys(e);for(l=0;l<o.length;l++)a=o[l],t.indexOf(a)>=0||(i[a]=e[a]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(l=0;l<o.length;l++)a=o[l],t.indexOf(a)>=0||Object.prototype.propertyIsEnumerable.call(e,a)&&(i[a]=e[a])}return i}function y(e){return(y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function f(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){T(e,t,a[t])}))}return e}function h(e){return(h=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function v(e,t){return(v=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function _(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}function T(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}var C=function(e){function t(e){var a;return function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),a=function(e,t){return!t||"object"!==y(t)&&"function"!=typeof t?_(e):t}(this,h(t).call(this,e)),T(_(_(a)),"listRefHandler",(function(e){return a.list=e})),T(_(_(a)),"trackRefHandler",(function(e){return a.track=e})),T(_(_(a)),"adaptHeight",(function(){if(a.props.adaptiveHeight&&a.list){var e=a.list.querySelector('[data-index="'.concat(a.state.currentSlide,'"]'));a.list.style.height=(0,s.getHeight)(e)+"px"}})),T(_(_(a)),"componentWillMount",(function(){if(a.ssrInit(),a.props.onInit&&a.props.onInit(),a.props.lazyLoad){var e=(0,s.getOnDemandLazySlides)(f({},a.props,a.state));e.length>0&&(a.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),a.props.onLazyLoad&&a.props.onLazyLoad(e))}})),T(_(_(a)),"componentDidMount",(function(){var e=f({listRef:a.list,trackRef:a.track},a.props);a.updateState(e,!0,(function(){a.adaptHeight(),a.props.autoplay&&a.autoPlay("update")})),"progressive"===a.props.lazyLoad&&(a.lazyLoadTimer=setInterval(a.progressiveLazyLoad,1e3)),a.ro=new b.default((function(){a.state.animating?(a.onWindowResized(!1),a.callbackTimers.push(setTimeout((function(){return a.onWindowResized()}),a.props.speed))):a.onWindowResized()})),a.ro.observe(a.list),Array.prototype.forEach.call(document.querySelectorAll(".slick-slide"),(function(e){e.onfocus=a.props.pauseOnFocus?a.onSlideFocus:null,e.onblur=a.props.pauseOnFocus?a.onSlideBlur:null})),window&&(window.addEventListener?window.addEventListener("resize",a.onWindowResized):window.attachEvent("onresize",a.onWindowResized))})),T(_(_(a)),"componentWillUnmount",(function(){a.animationEndCallback&&clearTimeout(a.animationEndCallback),a.lazyLoadTimer&&clearInterval(a.lazyLoadTimer),a.callbackTimers.length&&(a.callbackTimers.forEach((function(e){return clearTimeout(e)})),a.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",a.onWindowResized):window.detachEvent("onresize",a.onWindowResized),a.autoplayTimer&&clearInterval(a.autoplayTimer)})),T(_(_(a)),"componentWillReceiveProps",(function(e){for(var t=f({listRef:a.list,trackRef:a.track},e,a.state),i=!1,o=Object.keys(a.props),n=0;n<o.length;n++){var r=o[n];if(!e.hasOwnProperty(r)){i=!0;break}if("object"!==y(e[r])&&"function"!=typeof e[r]&&e[r]!==a.props[r]){i=!0;break}}a.updateState(t,i,(function(){a.state.currentSlide>=l.default.Children.count(e.children)&&a.changeSlide({message:"index",index:l.default.Children.count(e.children)-e.slidesToShow,currentSlide:a.state.currentSlide}),e.autoplay?a.autoPlay("update"):a.pause("paused")}))})),T(_(_(a)),"componentDidUpdate",(function(){if(a.checkImagesLoad(),a.props.onReInit&&a.props.onReInit(),a.props.lazyLoad){var e=(0,s.getOnDemandLazySlides)(f({},a.props,a.state));e.length>0&&(a.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),a.props.onLazyLoad&&a.props.onLazyLoad(e))}a.adaptHeight()})),T(_(_(a)),"onWindowResized",(function(e){a.debouncedResize&&a.debouncedResize.cancel(),a.debouncedResize=(0,n.default)((function(){return a.resizeWindow(e)}),50),a.debouncedResize()})),T(_(_(a)),"resizeWindow",(function(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];if(i.default.findDOMNode(a.track)){var t=f({listRef:a.list,trackRef:a.track},a.props,a.state);a.updateState(t,e,(function(){a.props.autoplay?a.autoPlay("update"):a.pause("paused")})),a.setState({animating:!1}),clearTimeout(a.animationEndCallback),delete a.animationEndCallback}})),T(_(_(a)),"updateState",(function(e,t,i){var o=(0,s.initializedState)(e);e=f({},e,o,{slideIndex:o.currentSlide}),e=f({},e,{left:(0,s.getTrackLeft)(e)});var n=(0,s.getTrackCSS)(e);(t||l.default.Children.count(a.props.children)!==l.default.Children.count(e.children))&&(o.trackStyle=n),a.setState(o,i)})),T(_(_(a)),"ssrInit",(function(){if(a.props.variableWidth){var e=0,t=0,i=[],o=(0,s.getPreClones)(f({},a.props,a.state,{slideCount:a.props.children.length})),n=(0,s.getPostClones)(f({},a.props,a.state,{slideCount:a.props.children.length}));a.props.children.forEach((function(t){i.push(t.props.style.width),e+=t.props.style.width}));for(var r=0;r<o;r++)t+=i[i.length-1-r],e+=i[i.length-1-r];for(var c=0;c<n;c++)e+=i[c];for(var u=0;u<a.state.currentSlide;u++)t+=i[u];var p={width:e+"px",left:-t+"px"};if(a.props.centerMode){var b="".concat(i[a.state.currentSlide],"px");p.left="calc(".concat(p.left," + (100% - ").concat(b,") / 2 ) ")}a.setState({trackStyle:p})}else{var d=l.default.Children.count(a.props.children),g=f({},a.props,a.state,{slideCount:d}),m=(0,s.getPreClones)(g)+(0,s.getPostClones)(g)+d,y=100/a.props.slidesToShow*m,h=100/m,v=-h*((0,s.getPreClones)(g)+a.state.currentSlide)*y/100;a.props.centerMode&&(v+=(100-h*y/100)/2);var _={width:y+"%",left:v+"%"};a.setState({slideWidth:h+"%",trackStyle:_})}})),T(_(_(a)),"checkImagesLoad",(function(){var e=document.querySelectorAll(".slick-slide img"),t=e.length,l=0;Array.prototype.forEach.call(e,(function(e){var i=function(){return++l&&l>=t&&a.onWindowResized()};if(e.onclick){var o=e.onclick;e.onclick=function(){o(),e.parentNode.focus()}}else e.onclick=function(){return e.parentNode.focus()};e.onload||(a.props.lazyLoad?e.onload=function(){a.adaptHeight(),a.callbackTimers.push(setTimeout(a.onWindowResized,a.props.speed))}:(e.onload=i,e.onerror=function(){i(),a.props.onLazyLoadError&&a.props.onLazyLoadError()}))}))})),T(_(_(a)),"progressiveLazyLoad",(function(){for(var e=[],t=f({},a.props,a.state),l=a.state.currentSlide;l<a.state.slideCount+(0,s.getPostClones)(t);l++)if(a.state.lazyLoadedList.indexOf(l)<0){e.push(l);break}for(var i=a.state.currentSlide-1;i>=-(0,s.getPreClones)(t);i--)if(a.state.lazyLoadedList.indexOf(i)<0){e.push(i);break}e.length>0?(a.setState((function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}})),a.props.onLazyLoad&&a.props.onLazyLoad(e)):a.lazyLoadTimer&&(clearInterval(a.lazyLoadTimer),delete a.lazyLoadTimer)})),T(_(_(a)),"slideHandler",(function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],l=a.props,i=l.asNavFor,o=l.beforeChange,n=l.onLazyLoad,r=l.speed,c=l.afterChange,u=a.state.currentSlide,p=(0,s.slideHandler)(f({index:e},a.props,a.state,{trackRef:a.track,useCSS:a.props.useCSS&&!t})),b=p.state,d=p.nextState;if(b){o&&o(u,b.currentSlide);var g=b.lazyLoadedList.filter((function(e){return a.state.lazyLoadedList.indexOf(e)<0}));n&&g.length>0&&n(g),a.setState(b,(function(){i&&i.innerSlider.state.currentSlide!==a.state.currentSlide&&i.innerSlider.slideHandler(e),d&&(a.animationEndCallback=setTimeout((function(){var e=d.animating,t=m(d,["animating"]);a.setState(t,(function(){a.callbackTimers.push(setTimeout((function(){return a.setState({animating:e})}),10)),c&&c(b.currentSlide),delete a.animationEndCallback}))}),r))}))}})),T(_(_(a)),"changeSlide",(function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],l=f({},a.props,a.state),i=(0,s.changeSlide)(l,e);(0===i||i)&&(!0===t?a.slideHandler(i,t):a.slideHandler(i))})),T(_(_(a)),"clickHandler",(function(e){!1===a.clickable&&(e.stopPropagation(),e.preventDefault()),a.clickable=!0})),T(_(_(a)),"keyHandler",(function(e){var t=(0,s.keyHandler)(e,a.props.accessibility,a.props.rtl);""!==t&&a.changeSlide({message:t})})),T(_(_(a)),"selectHandler",(function(e){a.changeSlide(e)})),T(_(_(a)),"disableBodyScroll",(function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}})),T(_(_(a)),"enableBodyScroll",(function(){window.ontouchmove=null})),T(_(_(a)),"swipeStart",(function(e){a.props.verticalSwiping&&a.disableBodyScroll();var t=(0,s.swipeStart)(e,a.props.swipe,a.props.draggable);""!==t&&a.setState(t)})),T(_(_(a)),"swipeMove",(function(e){var t=(0,s.swipeMove)(e,f({},a.props,a.state,{trackRef:a.track,listRef:a.list,slideIndex:a.state.currentSlide}));t&&(t.swiping&&(a.clickable=!1),a.setState(t))})),T(_(_(a)),"swipeEnd",(function(e){var t=(0,s.swipeEnd)(e,f({},a.props,a.state,{trackRef:a.track,listRef:a.list,slideIndex:a.state.currentSlide}));if(t){var l=t.triggerSlideHandler;delete t.triggerSlideHandler,a.setState(t),void 0!==l&&(a.slideHandler(l),a.props.verticalSwiping&&a.enableBodyScroll())}})),T(_(_(a)),"slickPrev",(function(){a.callbackTimers.push(setTimeout((function(){return a.changeSlide({message:"previous"})}),0))})),T(_(_(a)),"slickNext",(function(){a.callbackTimers.push(setTimeout((function(){return a.changeSlide({message:"next"})}),0))})),T(_(_(a)),"slickGoTo",(function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(e=Number(e),isNaN(e))return"";a.callbackTimers.push(setTimeout((function(){return a.changeSlide({message:"index",index:e,currentSlide:a.state.currentSlide},t)}),0))})),T(_(_(a)),"play",(function(){var e;if(a.props.rtl)e=a.state.currentSlide-a.props.slidesToScroll;else{if(!(0,s.canGoNext)(f({},a.props,a.state)))return!1;e=a.state.currentSlide+a.props.slidesToScroll}a.slideHandler(e)})),T(_(_(a)),"autoPlay",(function(e){a.autoplayTimer&&clearInterval(a.autoplayTimer);var t=a.state.autoplaying;if("update"===e){if("hovered"===t||"focused"===t||"paused"===t)return}else if("leave"===e){if("paused"===t||"focused"===t)return}else if("blur"===e&&("paused"===t||"hovered"===t))return;a.autoplayTimer=setInterval(a.play,a.props.autoplaySpeed+50),a.setState({autoplaying:"playing"})})),T(_(_(a)),"pause",(function(e){a.autoplayTimer&&(clearInterval(a.autoplayTimer),a.autoplayTimer=null);var t=a.state.autoplaying;"paused"===e?a.setState({autoplaying:"paused"}):"focused"===e?"hovered"!==t&&"playing"!==t||a.setState({autoplaying:"focused"}):"playing"===t&&a.setState({autoplaying:"hovered"})})),T(_(_(a)),"onDotsOver",(function(){return a.props.autoplay&&a.pause("hovered")})),T(_(_(a)),"onDotsLeave",(function(){return a.props.autoplay&&"hovered"===a.state.autoplaying&&a.autoPlay("leave")})),T(_(_(a)),"onTrackOver",(function(){return a.props.autoplay&&a.pause("hovered")})),T(_(_(a)),"onTrackLeave",(function(){return a.props.autoplay&&"hovered"===a.state.autoplaying&&a.autoPlay("leave")})),T(_(_(a)),"onSlideFocus",(function(){return a.props.autoplay&&a.pause("focused")})),T(_(_(a)),"onSlideBlur",(function(){return a.props.autoplay&&"focused"===a.state.autoplaying&&a.autoPlay("blur")})),T(_(_(a)),"render",(function(){var e,t,i,o=(0,r.default)("slick-slider",a.props.className,{"slick-vertical":a.props.vertical,"slick-initialized":!0}),n=f({},a.props,a.state),b=(0,s.extractObject)(n,["fade","cssEase","speed","infinite","centerMode","focusOnSelect","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding"]),d=a.props.pauseOnHover;if(b=f({},b,{onMouseEnter:d?a.onTrackOver:null,onMouseLeave:d?a.onTrackLeave:null,onMouseOver:d?a.onTrackOver:null,focusOnSelect:a.props.focusOnSelect?a.selectHandler:null}),!0===a.props.dots&&a.state.slideCount>=a.props.slidesToShow){var m=(0,s.extractObject)(n,["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","clickHandler","children","customPaging","infinite","appendDots"]),y=a.props.pauseOnDotsHover;m=f({},m,{clickHandler:a.changeSlide,onMouseEnter:y?a.onDotsLeave:null,onMouseOver:y?a.onDotsOver:null,onMouseLeave:y?a.onDotsLeave:null}),e=l.default.createElement(u.Dots,m)}var h=(0,s.extractObject)(n,["infinite","centerMode","currentSlide","slideCount","slidesToShow","prevArrow","nextArrow"]);h.clickHandler=a.changeSlide,a.props.arrows&&(t=l.default.createElement(p.PrevArrow,h),i=l.default.createElement(p.NextArrow,h));var v=null;a.props.vertical&&(v={height:a.state.listHeight});var _=null;!1===a.props.vertical?!0===a.props.centerMode&&(_={padding:"0px "+a.props.centerPadding}):!0===a.props.centerMode&&(_={padding:a.props.centerPadding+" 0px"});var T=f({},v,_),C=a.props.touchMove,S={className:"slick-list",style:T,onClick:a.clickHandler,onMouseDown:C?a.swipeStart:null,onMouseMove:a.state.dragging&&C?a.swipeMove:null,onMouseUp:C?a.swipeEnd:null,onMouseLeave:a.state.dragging&&C?a.swipeEnd:null,onTouchStart:C?a.swipeStart:null,onTouchMove:a.state.dragging&&C?a.swipeMove:null,onTouchEnd:C?a.swipeEnd:null,onTouchCancel:a.state.dragging&&C?a.swipeEnd:null,onKeyDown:a.props.accessibility?a.keyHandler:null},w={className:o,dir:"ltr"};return a.props.unslick&&(S={className:"slick-list"},w={className:o}),l.default.createElement("div",w,a.props.unslick?"":t,l.default.createElement("div",g({ref:a.listRefHandler},S),l.default.createElement(c.Track,g({ref:a.trackRefHandler},b),a.props.children)),a.props.unslick?"":i,a.props.unslick?"":e)})),a.list=null,a.track=null,a.state=f({},o.default,{currentSlide:a.props.initialSlide,slideCount:l.default.Children.count(a.props.children)}),a.callbackTimers=[],a.clickable=!0,a.debouncedResize=null,a}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&v(e,t)}(t,e),t}(l.default.Component);t.InnerSlider=C},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;t.default={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0}},function(e,t,a){(function(t){var a=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,i=/^0b[01]+$/i,o=/^0o[0-7]+$/i,n=parseInt,r="object"==typeof t&&t&&t.Object===Object&&t,s="object"==typeof self&&self&&self.Object===Object&&self,c=r||s||Function("return this")(),u=Object.prototype.toString,p=Math.max,b=Math.min,d=function(){return c.Date.now()};function g(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function m(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==u.call(e)}(e))return NaN;if(g(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=g(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(a,"");var r=i.test(e);return r||o.test(e)?n(e.slice(2),r?2:8):l.test(e)?NaN:+e}e.exports=function(e,t,a){var l,i,o,n,r,s,c=0,u=!1,y=!1,f=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function h(t){var a=l,o=i;return l=i=void 0,c=t,n=e.apply(o,a)}function v(e){return c=e,r=setTimeout(T,t),u?h(e):n}function _(e){var a=e-s;return void 0===s||a>=t||a<0||y&&e-c>=o}function T(){var e=d();if(_(e))return C(e);r=setTimeout(T,function(e){var a=t-(e-s);return y?b(a,o-(e-c)):a}(e))}function C(e){return r=void 0,f&&l?h(e):(l=i=void 0,n)}function S(){var e=d(),a=_(e);if(l=arguments,i=this,s=e,a){if(void 0===r)return v(s);if(y)return r=setTimeout(T,t),h(s)}return void 0===r&&(r=setTimeout(T,t)),n}return t=m(t)||0,g(a)&&(u=!!a.leading,o=(y="maxWait"in a)?p(m(a.maxWait)||0,t):o,f="trailing"in a?!!a.trailing:f),S.cancel=function(){void 0!==r&&clearTimeout(r),c=0,l=s=i=r=void 0},S.flush=function(){return void 0===r?n:C(d())},S}}).call(this,a(37))},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Track=void 0;var l=n(a(5)),i=n(a(4)),o=a(49);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(){return(s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function c(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function p(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function b(e){return(b=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function d(e,t){return(d=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function g(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){m(e,t,a[t])}))}return e}function m(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}var y=function(e){var t,a,l,i,o;return l=(o=e.rtl?e.slideCount-1-e.index:e.index)<0||o>=e.slideCount,e.centerMode?(i=Math.floor(e.slidesToShow/2),a=(o-e.currentSlide)%e.slideCount==0,o>e.currentSlide-i-1&&o<=e.currentSlide+i&&(t=!0)):t=e.currentSlide<=o&&o<e.currentSlide+e.slidesToShow,{"slick-slide":!0,"slick-active":t,"slick-center":a,"slick-cloned":l,"slick-current":o===e.currentSlide}},f=function(e,t){return e.key||t},h=function(e){function t(){return c(this,t),p(this,b(t).apply(this,arguments))}var a,n;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&d(e,t)}(t,e),a=t,(n=[{key:"render",value:function(){var e=function(e){var t,a=[],n=[],r=[],s=l.default.Children.count(e.children),c=(0,o.lazyStartIndex)(e),u=(0,o.lazyEndIndex)(e);return l.default.Children.forEach(e.children,(function(p,b){var d,m={message:"children",index:b,slidesToScroll:e.slidesToScroll,currentSlide:e.currentSlide};d=!e.lazyLoad||e.lazyLoad&&e.lazyLoadedList.indexOf(b)>=0?p:l.default.createElement("div",null);var h=function(e){var t={};return void 0!==e.variableWidth&&!1!==e.variableWidth||(t.width=e.slideWidth),e.fade&&(t.position="relative",e.vertical?t.top=-e.index*parseInt(e.slideHeight):t.left=-e.index*parseInt(e.slideWidth),t.opacity=e.currentSlide===e.index?1:0,t.transition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase,t.WebkitTransition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase),t}(g({},e,{index:b})),v=d.props.className||"",_=y(g({},e,{index:b}));if(a.push(l.default.cloneElement(d,{key:"original"+f(d,b),"data-index":b,className:(0,i.default)(_,v),tabIndex:"-1","aria-hidden":!_["slick-active"],style:g({outline:"none"},d.props.style||{},h),onClick:function(t){d.props&&d.props.onClick&&d.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}})),e.infinite&&!1===e.fade){var T=s-b;T<=(0,o.getPreClones)(e)&&s!==e.slidesToShow&&((t=-T)>=c&&(d=p),_=y(g({},e,{index:t})),n.push(l.default.cloneElement(d,{key:"precloned"+f(d,t),"data-index":t,tabIndex:"-1",className:(0,i.default)(_,v),"aria-hidden":!_["slick-active"],style:g({},d.props.style||{},h),onClick:function(t){d.props&&d.props.onClick&&d.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}}))),s!==e.slidesToShow&&((t=s+b)<u&&(d=p),_=y(g({},e,{index:t})),r.push(l.default.cloneElement(d,{key:"postcloned"+f(d,t),"data-index":t,tabIndex:"-1",className:(0,i.default)(_,v),"aria-hidden":!_["slick-active"],style:g({},d.props.style||{},h),onClick:function(t){d.props&&d.props.onClick&&d.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(m)}})))}})),e.rtl?n.concat(a,r).reverse():n.concat(a,r)}(this.props),t=this.props,a={onMouseEnter:t.onMouseEnter,onMouseOver:t.onMouseOver,onMouseLeave:t.onMouseLeave};return l.default.createElement("div",s({className:"slick-track",style:this.props.trackStyle},a),e)}}])&&u(a.prototype,n),t}(l.default.PureComponent);t.Track=h},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Dots=void 0;var l=o(a(5)),i=o(a(4));function o(e){return e&&e.__esModule?e:{default:e}}function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function r(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function c(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function u(e,t){return!t||"object"!==n(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function p(e){return(p=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function b(e,t){return(b=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}var d=function(e){function t(){return s(this,t),u(this,p(t).apply(this,arguments))}var a,o;return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&b(e,t)}(t,e),a=t,(o=[{key:"clickHandler",value:function(e,t){t.preventDefault(),this.props.clickHandler(e)}},{key:"render",value:function(){var e,t=this,a=(e={slideCount:this.props.slideCount,slidesToScroll:this.props.slidesToScroll,slidesToShow:this.props.slidesToShow,infinite:this.props.infinite}).infinite?Math.ceil(e.slideCount/e.slidesToScroll):Math.ceil((e.slideCount-e.slidesToShow)/e.slidesToScroll)+1,o=this.props,n={onMouseEnter:o.onMouseEnter,onMouseOver:o.onMouseOver,onMouseLeave:o.onMouseLeave},s=Array.apply(null,Array(a+1).join("0").split("")).map((function(e,a){var o=a*t.props.slidesToScroll,n=a*t.props.slidesToScroll+(t.props.slidesToScroll-1),r=(0,i.default)({"slick-active":t.props.currentSlide>=o&&t.props.currentSlide<=n}),s={message:"dots",index:a,slidesToScroll:t.props.slidesToScroll,currentSlide:t.props.currentSlide},c=t.clickHandler.bind(t,s);return l.default.createElement("li",{key:a,className:r},l.default.cloneElement(t.props.customPaging(a),{onClick:c}))}));return l.default.cloneElement(this.props.appendDots(s),function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){r(e,t,a[t])}))}return e}({className:this.props.dotsClass},n))}}])&&c(a.prototype,o),t}(l.default.PureComponent);t.Dots=d},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.NextArrow=t.PrevArrow=void 0;var l=n(a(5)),i=n(a(4)),o=a(49);function n(e){return e&&e.__esModule?e:{default:e}}function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function s(){return(s=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function c(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},l=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(l=l.concat(Object.getOwnPropertySymbols(a).filter((function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable})))),l.forEach((function(t){u(e,t,a[t])}))}return e}function u(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}function p(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function b(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function d(e,t,a){return t&&b(e.prototype,t),a&&b(e,a),e}function g(e,t){return!t||"object"!==r(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function m(e){return(m=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}function y(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");var a,l;e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&(a=e,l=t,(Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(a,l))}var f=function(e){function t(){return p(this,t),g(this,m(t).apply(this,arguments))}return y(t,e),d(t,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-prev":!0},t=this.clickHandler.bind(this,{message:"previous"});!this.props.infinite&&(0===this.props.currentSlide||this.props.slideCount<=this.props.slidesToShow)&&(e["slick-disabled"]=!0,t=null);var a={key:"0","data-role":"none",className:(0,i.default)(e),style:{display:"block"},onClick:t},o={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.prevArrow?l.default.cloneElement(this.props.prevArrow,c({},a,o)):l.default.createElement("button",s({key:"0",type:"button"},a)," ","Previous")}}]),t}(l.default.PureComponent);t.PrevArrow=f;var h=function(e){function t(){return p(this,t),g(this,m(t).apply(this,arguments))}return y(t,e),d(t,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-next":!0},t=this.clickHandler.bind(this,{message:"next"});(0,o.canGoNext)(this.props)||(e["slick-disabled"]=!0,t=null);var a={key:"1","data-role":"none",className:(0,i.default)(e),style:{display:"block"},onClick:t},n={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.nextArrow?l.default.cloneElement(this.props.nextArrow,c({},a,n)):l.default.createElement("button",s({key:"1",type:"button"},a)," ","Next")}}]),t}(l.default.PureComponent);t.NextArrow=h},function(e,t,a){"use strict";a.r(t),function(e){var a=function(){if("undefined"!=typeof Map)return Map;function e(e,t){var a=-1;return e.some((function(e,l){return e[0]===t&&(a=l,!0)})),a}return function(){function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var a=e(this.__entries__,t),l=this.__entries__[a];return l&&l[1]},t.prototype.set=function(t,a){var l=e(this.__entries__,t);~l?this.__entries__[l][1]=a:this.__entries__.push([t,a])},t.prototype.delete=function(t){var a=this.__entries__,l=e(a,t);~l&&a.splice(l,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var a=0,l=this.__entries__;a<l.length;a++){var i=l[a];e.call(t,i[1],i[0])}},t}()}(),l="undefined"!=typeof window&&"undefined"!=typeof document&&window.document===document,i=void 0!==e&&e.Math===Math?e:"undefined"!=typeof self&&self.Math===Math?self:"undefined"!=typeof window&&window.Math===Math?window:Function("return this")(),o="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(i):function(e){return setTimeout((function(){return e(Date.now())}),1e3/60)},n=["top","right","bottom","left","width","height","size","weight"],r="undefined"!=typeof MutationObserver,s=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e,t){var a=!1,l=!1,i=0;function n(){a&&(a=!1,e()),l&&s()}function r(){o(n)}function s(){var e=Date.now();if(a){if(e-i<2)return;l=!0}else a=!0,l=!1,setTimeout(r,20);i=e}return s}(this.refresh.bind(this))}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,a=t.indexOf(e);~a&&t.splice(a,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter((function(e){return e.gatherActive(),e.hasActive()}));return e.forEach((function(e){return e.broadcastActive()})),e.length>0},e.prototype.connect_=function(){l&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),r?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){l&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,a=void 0===t?"":t;n.some((function(e){return!!~a.indexOf(e)}))&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),c=function(e,t){for(var a=0,l=Object.keys(t);a<l.length;a++){var i=l[a];Object.defineProperty(e,i,{value:t[i],enumerable:!1,writable:!1,configurable:!0})}return e},u=function(e){return e&&e.ownerDocument&&e.ownerDocument.defaultView||i},p=y(0,0,0,0);function b(e){return parseFloat(e)||0}function d(e){for(var t=[],a=1;a<arguments.length;a++)t[a-1]=arguments[a];return t.reduce((function(t,a){return t+b(e["border-"+a+"-width"])}),0)}var g="undefined"!=typeof SVGGraphicsElement?function(e){return e instanceof u(e).SVGGraphicsElement}:function(e){return e instanceof u(e).SVGElement&&"function"==typeof e.getBBox};function m(e){return l?g(e)?function(e){var t=e.getBBox();return y(0,0,t.width,t.height)}(e):function(e){var t=e.clientWidth,a=e.clientHeight;if(!t&&!a)return p;var l=u(e).getComputedStyle(e),i=function(e){for(var t={},a=0,l=["top","right","bottom","left"];a<l.length;a++){var i=l[a],o=e["padding-"+i];t[i]=b(o)}return t}(l),o=i.left+i.right,n=i.top+i.bottom,r=b(l.width),s=b(l.height);if("border-box"===l.boxSizing&&(Math.round(r+o)!==t&&(r-=d(l,"left","right")+o),Math.round(s+n)!==a&&(s-=d(l,"top","bottom")+n)),!function(e){return e===u(e).document.documentElement}(e)){var c=Math.round(r+o)-t,g=Math.round(s+n)-a;1!==Math.abs(c)&&(r-=c),1!==Math.abs(g)&&(s-=g)}return y(i.left,i.top,r,s)}(e):p}function y(e,t,a,l){return{x:e,y:t,width:a,height:l}}var f=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=y(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=m(this.target);return this.contentRect_=e,e.width!==this.broadcastWidth||e.height!==this.broadcastHeight},e.prototype.broadcastRect=function(){var e=this.contentRect_;return this.broadcastWidth=e.width,this.broadcastHeight=e.height,e},e}(),h=function(e,t){var a,l,i,o,n,r,s,u=(l=(a=t).x,i=a.y,o=a.width,n=a.height,r="undefined"!=typeof DOMRectReadOnly?DOMRectReadOnly:Object,s=Object.create(r.prototype),c(s,{x:l,y:i,width:o,height:n,top:i,right:l+o,bottom:n+i,left:l}),s);c(this,{target:e,contentRect:u})},v=function(){function e(e,t,l){if(this.activeObservations_=[],this.observations_=new a,"function"!=typeof e)throw new TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=l}return e.prototype.observe=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)||(t.set(e,new f(e)),this.controller_.addObserver(this),this.controller_.refresh())}},e.prototype.unobserve=function(e){if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");if("undefined"!=typeof Element&&Element instanceof Object){if(!(e instanceof u(e).Element))throw new TypeError('parameter 1 is not of type "Element".');var t=this.observations_;t.has(e)&&(t.delete(e),t.size||this.controller_.removeObserver(this))}},e.prototype.disconnect=function(){this.clearActive(),this.observations_.clear(),this.controller_.removeObserver(this)},e.prototype.gatherActive=function(){var e=this;this.clearActive(),this.observations_.forEach((function(t){t.isActive()&&e.activeObservations_.push(t)}))},e.prototype.broadcastActive=function(){if(this.hasActive()){var e=this.callbackCtx_,t=this.activeObservations_.map((function(e){return new h(e.target,e.broadcastRect())}));this.callback_.call(e,t,e),this.clearActive()}},e.prototype.clearActive=function(){this.activeObservations_.splice(0)},e.prototype.hasActive=function(){return this.activeObservations_.length>0},e}(),_="undefined"!=typeof WeakMap?new WeakMap:new a,T=function e(t){if(!(this instanceof e))throw new TypeError("Cannot call a class as a function.");if(!arguments.length)throw new TypeError("1 argument required, but only 0 present.");var a=s.getInstance(),l=new v(t,a,this);_.set(this,l)};["observe","unobserve","disconnect"].forEach((function(e){T.prototype[e]=function(){var t;return(t=_.get(this))[e].apply(t,arguments)}}));var C=void 0!==i.ResizeObserver?i.ResizeObserver:T;t.default=C}.call(this,a(37))},function(e,t,a){var l=a(348),i=function(e){var t="",a=Object.keys(e);return a.forEach((function(i,o){var n=e[i];(function(e){return/[height|width]$/.test(e)})(i=l(i))&&"number"==typeof n&&(n+="px"),t+=!0===n?i:!1===n?"not "+i:"("+i+": "+n+")",o<a.length-1&&(t+=" and ")})),t};e.exports=function(e){var t="";return"string"==typeof e?e:e instanceof Array?(e.forEach((function(a,l){t+=i(a),l<e.length-1&&(t+=", ")})),t):i(e)}},function(e,t){e.exports=function(e){return e.replace(/[A-Z]/g,(function(e){return"-"+e.toLowerCase()})).toLowerCase()}},function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var l,i=(l=a(5))&&l.__esModule?l:{default:l},o={accessibility:!0,adaptiveHeight:!1,afterChange:null,appendDots:function(e){return i.default.createElement("ul",{style:{display:"block"}},e)},arrows:!0,autoplay:!1,autoplaySpeed:3e3,beforeChange:null,centerMode:!1,centerPadding:"50px",className:"",cssEase:"ease",customPaging:function(e){return i.default.createElement("button",null,e+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:null,nextArrow:null,onEdge:null,onInit:null,onLazyLoadError:null,onReInit:null,pauseOnDotsHover:!1,pauseOnFocus:!1,pauseOnHover:!0,prevArrow:null,responsive:null,rows:1,rtl:!1,slide:"div",slidesPerRow:1,slidesToScroll:1,slidesToShow:1,speed:500,swipe:!0,swipeEvent:null,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0};t.default=o},function(e,t,a){var l=a(351);e.exports=new l},function(e,t,a){var l=a(352),i=a(189),o=i.each,n=i.isFunction,r=i.isArray;function s(){if(!window.matchMedia)throw new Error("matchMedia not present, legacy browsers require a polyfill");this.queries={},this.browserIsIncapable=!window.matchMedia("only all").matches}s.prototype={constructor:s,register:function(e,t,a){var i=this.queries,s=a&&this.browserIsIncapable;return i[e]||(i[e]=new l(e,s)),n(t)&&(t={match:t}),r(t)||(t=[t]),o(t,(function(t){n(t)&&(t={match:t}),i[e].addHandler(t)})),this},unregister:function(e,t){var a=this.queries[e];return a&&(t?a.removeHandler(t):(a.clear(),delete this.queries[e])),this}},e.exports=s},function(e,t,a){var l=a(353),i=a(189).each;function o(e,t){this.query=e,this.isUnconditional=t,this.handlers=[],this.mql=window.matchMedia(e);var a=this;this.listener=function(e){a.mql=e.currentTarget||e,a.assess()},this.mql.addListener(this.listener)}o.prototype={constuctor:o,addHandler:function(e){var t=new l(e);this.handlers.push(t),this.matches()&&t.on()},removeHandler:function(e){var t=this.handlers;i(t,(function(a,l){if(a.equals(e))return a.destroy(),!t.splice(l,1)}))},matches:function(){return this.mql.matches||this.isUnconditional},clear:function(){i(this.handlers,(function(e){e.destroy()})),this.mql.removeListener(this.listener),this.handlers.length=0},assess:function(){var e=this.matches()?"on":"off";i(this.handlers,(function(t){t[e]()}))}},e.exports=o},function(e,t){function a(e){this.options=e,!e.deferSetup&&this.setup()}a.prototype={constructor:a,setup:function(){this.options.setup&&this.options.setup(),this.initialised=!0},on:function(){!this.initialised&&this.setup(),this.options.match&&this.options.match()},off:function(){this.options.unmatch&&this.options.unmatch()},destroy:function(){this.options.destroy?this.options.destroy():this.off()},equals:function(e){return this.options===e||this.options.match===e}},e.exports=a},function(e,t,a){var l,i,o,n;o={id:"ev-emitter/ev-emitter",exports:{},loaded:!1},l="function"==typeof(i=function(){function e(){}var t=e.prototype;return t.on=function(e,t){if(e&&t){var a=this._events=this._events||{},l=a[e]=a[e]||[];return-1==l.indexOf(t)&&l.push(t),this}},t.once=function(e,t){if(e&&t){this.on(e,t);var a=this._onceEvents=this._onceEvents||{};return(a[e]=a[e]||[])[t]=!0,this}},t.off=function(e,t){var a=this._events&&this._events[e];if(a&&a.length){var l=a.indexOf(t);return-1!=l&&a.splice(l,1),this}},t.emitEvent=function(e,t){var a=this._events&&this._events[e];if(a&&a.length){var l=0,i=a[l];t=t||[];for(var o=this._onceEvents&&this._onceEvents[e];i;){var n=o&&o[i];n&&(this.off(e,i),delete o[i]),i.apply(this,t),i=a[l+=n?0:1]}return this}},e})?i.call(o.exports,a,o.exports,o):i,o.loaded=!0,void 0!==l||(l=o.exports),function(a,i){"use strict";void 0===(n=function(e){return function(e,t){function a(e,t){for(var a in t)e[a]=t[a];return e}function l(e,t,i){return this instanceof l?("string"==typeof e&&(e=document.querySelectorAll(e)),this.elements=function(e){var t=[];if(Array.isArray(e))t=e;else if("number"==typeof e.length)for(var a=0;a<e.length;a++)t.push(e[a]);else t.push(e);return t}(e),this.options=a({},this.options),"function"==typeof t?i=t:a(this.options,t),i&&this.on("always",i),this.getImages(),n&&(this.jqDeferred=new n.Deferred),void setTimeout(function(){this.check()}.bind(this))):new l(e,t,i)}function i(e){this.img=e}function o(e,t){this.url=e,this.element=t,this.img=new Image}var n=e.jQuery,r=e.console;l.prototype=Object.create(t.prototype),l.prototype.options={},l.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},l.prototype.addElementImages=function(e){"IMG"==e.nodeName&&this.addImage(e),!0===this.options.background&&this.addElementBackgroundImages(e);var t=e.nodeType;if(t&&s[t]){for(var a=e.querySelectorAll("img"),l=0;l<a.length;l++){var i=a[l];this.addImage(i)}if("string"==typeof this.options.background){var o=e.querySelectorAll(this.options.background);for(l=0;l<o.length;l++){var n=o[l];this.addElementBackgroundImages(n)}}}};var s={1:!0,9:!0,11:!0};return l.prototype.addElementBackgroundImages=function(e){var t=getComputedStyle(e);if(t)for(var a=/url\((['"])?(.*?)\1\)/gi,l=a.exec(t.backgroundImage);null!==l;){var i=l&&l[2];i&&this.addBackground(i,e),l=a.exec(t.backgroundImage)}},l.prototype.addImage=function(e){var t=new i(e);this.images.push(t)},l.prototype.addBackground=function(e,t){var a=new o(e,t);this.images.push(a)},l.prototype.check=function(){function e(e,a,l){setTimeout((function(){t.progress(e,a,l)}))}var t=this;return this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?void this.images.forEach((function(t){t.once("progress",e),t.check()})):void this.complete()},l.prototype.progress=function(e,t,a){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!e.isLoaded,this.emitEvent("progress",[this,e,t]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,e),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&r&&r.log("progress: "+a,e,t)},l.prototype.complete=function(){var e=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(e,[this]),this.emitEvent("always",[this]),this.jqDeferred){var t=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[t](this)}},i.prototype=Object.create(t.prototype),i.prototype.check=function(){return this.getIsImageComplete()?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),void(this.proxyImage.src=this.img.src))},i.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},i.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.img,t])},i.prototype.handleEvent=function(e){var t="on"+e.type;this[t]&&this[t](e)},i.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},i.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},i.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},o.prototype=Object.create(i.prototype),o.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url,this.getIsImageComplete()&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},o.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},o.prototype.confirm=function(e,t){this.isLoaded=e,this.emitEvent("progress",[this,this.element,t])},l.makeJQueryPlugin=function(t){(t=t||e.jQuery)&&((n=t).fn.imagesLoaded=function(e,t){return new l(this,e,t).jqDeferred.promise(n(this))})},l.makeJQueryPlugin(),l}(a,e)}.apply(t,[l]))||(e.exports=n)}(window)},,,,,,,,,,,,,,,,,,,,,,,function(e,t,a){"use strict";a.r(t),a.d(t,"initAutoBlockRecovery",(function(){return gz}));var l={};a.r(l),a.d(l,"toggleGlobalBlockStylesPopup",(function(){return c})),a.d(l,"updateGlobalBlockStyles",(function(){return u})),a.d(l,"updateGlobalBlockStylesFontFamilies",(function(){return p})),a.d(l,"updateInitialState",(function(){return b})),a.d(l,"setDeviceType",(function(){return d})),a.d(l,"updateEnableQuickActionSidebar",(function(){return g})),a.d(l,"updateDefaultAllowedQuickSidebarBlocks",(function(){return m}));var i={};a.r(i),a.d(i,"getGlobalBlockStylesPopupState",(function(){return y})),a.d(i,"getGlobalBlockStyles",(function(){return f})),a.d(i,"getGlobalBlockStylesFontFamilies",(function(){return h})),a.d(i,"getState",(function(){return v})),a.d(i,"getDeviceType",(function(){return _})),a.d(i,"getEnableQuickActionSidebar",(function(){return T})),a.d(i,"getDefaultAllowedQuickSidebarBlocks",(function(){return C}));var o=a(51),n=a(7),r=a(0);const s={initialStateSetFlag:!1,globalBlockStylesPopupState:"close",globalBlockStyles:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")}],globalBlockStylesFontFamilies:[],deviceType:"Desktop",enableQuickActionSidebar:"disabled",defaultAllowedQuickSidebarBlocks:["uagb/container","uagb/advanced-heading","uagb/image","uagb/icon","uagb/buttons","uagb/info-box","uagb/call-to-action"]};function c(e){return{type:"TOGGLE_GLOBAL_BLOCK_STYLES_POPUP",value:e}}function u(e){return{type:"UPDATE_GLOBAL_BLOCK_STYLES",value:e}}function p(e){return{type:"UPDATE_GLOBAL_BLOCK_STYLES_FONT_FAMILIES",value:e}}function b(e){return{type:"UPDATE_INITIAL_STATE",value:e}}function d(e){return{type:"UPDATE_DEVICE_TYPE",value:e}}function g(e){return{type:"UPDATE_ENABLE_QUICK_ACTION_SIDEBAR",value:e}}function m(e){return{type:"UPDATE_DEFAULT_ALLOWED_QUICK_SIDEBAR_BLOCKS",value:e}}function y(e){return e.globalBlockStylesPopupState}function f(e){return e.globalBlockStyles}function h(e){return e.globalBlockStylesFontFamilies}function v(e){return e}function _(e){return e.deviceType}function T(e){return e.enableQuickActionSidebar}function C(e){return e.defaultAllowedQuickSidebarBlocks}var S=a(24),w=a.n(S);const k=Object(n.createReduxStore)("spectra",{reducer:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:s,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case"UPDATE_INITIAL_STATE":return{...e,...t.value};case"UPDATE_INITIAL_STATE_FLAG":return{...e,initialStateSetFlag:t.value};case"TOGGLE_GLOBAL_BLOCK_STYLES_POPUP":return{...e,globalBlockStylesPopupState:t.value};case"UPDATE_GLOBAL_BLOCK_STYLES":return{...e,globalBlockStyles:t.value};case"UPDATE_GLOBAL_BLOCK_STYLES_FONT_FAMILIES":return{...e,globalBlockStylesFontFamilies:t.value};case"UPDATE_DEVICE_TYPE":return{...e,deviceType:t.value};case"UPDATE_ENABLE_QUICK_ACTION_SIDEBAR":return{...e,enableQuickActionSidebar:t.value};case"UPDATE_DEFAULT_ALLOWED_QUICK_SIDEBAR_BLOCKS":return{...e,defaultAllowedQuickSidebarBlocks:t.value}}return e},actions:l,selectors:i});Object(n.register)(k),w()({path:"/spectra/v1/editor"}).then(e=>{const t={initialStateSetFlag:!0,globalBlockStyles:e.spectra_global_block_styles,globalBlockStylesFontFamilies:e.spectra_gbs_google_fonts_editor,enableQuickActionSidebar:e.uag_enable_quick_action_sidebar,defaultAllowedQuickSidebarBlocks:e.uagb_quick_sidebar_allowed_blocks};Object(n.dispatch)(k).updateInitialState(t)});var P,x,A=a(15),G=a.n(A),M=a(78),R=a.n(M),B=a(1);if(void 0===U)var U=[];const E=e=>{const[t,a]=Object(B.useState)([]);Object(B.useEffect)(()=>{r()},[]),Object(B.useEffect)(()=>{const{onStatus:a,config:l}=e;void 0!==t.status&&a(t.status),l!==t.config&&r()},[e]);const l=()=>{a({status:"loading"})},i=e=>{U.includes(e)||U.push(e)},o=()=>{a({status:"active"})},n=()=>{a({status:"inactive"})},r=()=>{U.includes(e.config.google.families[0])||(R.a.load({...e.config,loading:l,active:o,inactive:n}),i(e.config.google.families[0]));const t=document.querySelector('iframe[name="editor-canvas"]');null!=t&&t.contentWindow&&(R.a.load({...e.config,loading:l,active:o,inactive:n,context:t.contentWindow}),i(e.config.google.families[0]))},{children:s}=e;return s||null};E.propTypes={config:null===(P=G.a.object)||void 0===P?void 0:P.isRequired,children:G.a.element,onStatus:null===(x=G.a.func)||void 0===x?void 0:x.isRequired},E.defaultProps={onStatus:()=>{}};var O=E,L=a(10),H=Object(L.compose)(Object(n.withSelect)(e=>({globalBlockStylesFontFamilies:e("spectra").getGlobalBlockStylesFontFamilies()})))(e=>{const{globalBlockStylesFontFamilies:t}=e;if(null==t||!t.length)return null;const a=t.map(e=>{const t={google:{families:[e]}};return React.createElement(O,{key:e,config:t})});return React.createElement("div",{className:"spectra-gbs-fonts"},a)}),j=a(6);function F(e){const t=[];for(const a in e)if(e.hasOwnProperty(a)){const e={value:a,label:a};t.push(e)}return t}function z(e){return e?e.toLowerCase().replace(/[^a-zA-Z ]/g,"").replace(/\s+/g,"-"):""}function D(e){if(e.current){var t,a,l;if(null!==(t=e.current)&&void 0!==t&&null!==(a=t.parentElement)&&void 0!==a&&null!==(l=a.dataset)&&void 0!==l&&l.panelId)return e.current.parentElement.dataset.panelId;const i=e.current.parentElement.closest(".components-panel__body");if(i&&i.querySelector(".components-panel__body-title"))return z(i.querySelector(".components-panel__body-title").textContent)}return null}function N(e){if(e.includes("#"))return"";const t=e.match(/\d+(\.\d+)?/);if(t){const e=t[0];return e.includes(".")?parseFloat(e):parseInt(e,10)}return parseInt("")}function I(e){if("string"!=typeof e)return"px";const t=e.match(/(px|em|rem|%)/);if(t){const e=t[0];if(["px","em","%"].includes(e))return e;if("rem"===e)return"em"}return"px"}function V(e){const t=e.match(/(px|%)$/);return t?t[1]:"px"}function W(e){const t=e.match(/\bspacing\s*\|\s*(\d+)\b/);if(t)return parseInt(t[1]);const a=e.match(/^(\d+(\.\d+)?)\s*(px|rem|em)$/i);return a?parseFloat(a[1])*("rem"===a[3].toLowerCase()||"em"===a[3].toLowerCase()?16:1):10}function q(e){const t=e?e.split("|"):[];return 3===t.length?t[2].trim():""}const Z=e=>e.filter(Boolean).join(" "),$=e=>0===Object.keys(e).length&&e.constructor===Object,Y=(e,t)=>{const a=e.filter(e=>e!==t);return(null==a?void 0:a.length)>0?a:void 0},K=()=>{var e,t;return!!window.location.href.includes("/customize.php")&&!(null===(e=window)||void 0===e||null===(t=e.wp)||void 0===t||!t.customize)};function J(){return(J=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const X=Object(L.createHigherOrderComponent)(e=>t=>{const{className:a,attributes:{globalBlockStyleId:l}}=t;return!l||l&&""===l?React.createElement(e,t):React.createElement(e,J({},t,{className:Z([a,"spectra-gbs-"+l])}))},"addStyleClass");Object(j.addFilter)("editor.BlockListBlock","spectra/gbs-class-editor",X),Object(j.addFilter)("blocks.registerBlockType","spectra-pro/global-block-styles",(function(e){var t;return null!=e&&e.attributes&&null!=e&&null!==(t=e.name)&&void 0!==t&&t.includes("uagb/")&&(e.attributes=Object.assign(e.attributes,{globalBlockStyleName:{type:"string",default:""},globalBlockStyleId:{type:"string",default:""}})),e}));var Q=a(52),ee=a.n(Q),te=function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(!window.localStorage)return null;if(!e)return localStorage;const t=localStorage.getItem(e);return t?JSON.parse(t):null},ae=function(e,t){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"",l="";for(const o in e){const n=e[o];let r="";for(const e in n){var i;if(void 0===n[e]||null===n[e]||0===(null===(i=n[e])||void 0===i?void 0:i.length))continue;const t=n[e];"font-family"===e&&"Default"===t||(r+="font-family"===e?e+": '"+t+"';":e+": "+t+";")}0!==r.length&&("tablet"===a?(l+="@media only screen and (max-width: "+uagb_blocks_info.tablet_breakpoint+"px) {",l+=t,l+=o+"{",l+=r,l+="}}"):"mobile"===a?(l+="@media only screen and (max-width: "+uagb_blocks_info.mobile_breakpoint+"px) {",l+=t,l+=o+"{",l+=r,l+="}}"):(l+=t,l+=o+"{",l+=r,l+="}"))}return l};const le=()=>Object(n.useSelect)(e=>{var t,a,l;return(null===(t=e("core/editor"))||void 0===t?void 0:t.getDeviceType())||(null===(a=e("core/edit-post"))||void 0===a?void 0:a.__experimentalGetPreviewDeviceType())||(null===(l=e(k))||void 0===l?void 0:l.getDeviceType())||"Desktop"},[])||"",ie=function(e){var t,a,l;let i=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];const o=(null===(t=Object(n.dispatch)("core/editor"))||void 0===t?void 0:t.setDeviceType)||(null===(a=Object(n.dispatch)("core/edit-post"))||void 0===a?void 0:a.__experimentalSetPreviewDeviceType)||(null===(l=Object(n.dispatch)(k))||void 0===l?void 0:l.setDeviceType);o&&"function"==typeof o&&(o(e),i&&oe(e))},oe=e=>{if(!K())return;if("string"!=typeof e)return;const t=e.toLowerCase();["desktop","tablet","mobile"].includes(t)&&wp.customize.previewedDevice.set(t)},ne={logo:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 85 85",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M41.7849 0C33.5206 0 25.4419 2.49258 18.5705 7.16254C11.699 11.8325 6.34331 18.4701 3.18071 26.236C0.0181112 34.0018 -0.809377 42.5471 0.802901 50.7913C2.41518 59.0355 6.3948 66.6083 12.2385 72.552C18.0822 78.4958 25.5276 82.5435 33.633 84.1834C41.7385 85.8232 50.1401 84.9816 57.7753 81.7649C65.4105 78.5482 71.9363 73.1008 76.5277 66.1117C81.1191 59.1226 83.5697 50.9057 83.5697 42.5C83.565 31.2298 79.1612 20.4225 71.326 12.4533C63.4908 4.48402 52.8655 0.0048112 41.7849 0ZM57.5278 49.0175C57.5278 49.1264 57.5278 49.2354 57.5278 49.3443V49.6529V49.8526C57.3161 51.0856 56.8673 52.2639 56.207 53.3201L55.8143 53.8829L55.2431 54.5546C55.0482 54.8082 54.8268 55.0396 54.5827 55.2445V55.3353L54.4578 55.4261L54.2079 55.6258C54.1249 55.7007 54.0353 55.7675 53.9402 55.8255L53.6724 56.0071L34.3061 69.0602C34.1479 69.1683 33.9612 69.2253 33.7706 69.2236H33.5743C33.447 69.1967 33.3262 69.1443 33.2189 69.0695C33.1117 68.9947 33.0201 68.899 32.9495 68.7879C32.9495 68.7879 32.5033 67.9891 32.4676 67.9347V67.7531V67.6623V67.5534V67.4263V67.2811C31.7014 65.262 31.6378 63.0371 32.2872 60.9761C32.9366 58.9152 34.2601 57.1424 36.0375 55.9526L45.0691 49.8708C45.2101 49.7754 45.3201 49.6398 45.3853 49.4809C45.4505 49.322 45.4679 49.147 45.4355 48.9781C45.403 48.8091 45.3221 48.6537 45.2029 48.5315C45.0837 48.4093 44.9316 48.3257 44.7657 48.2913L34.1633 46.1128H33.8599H33.7706H33.485H33.1816H33.0567H32.896H32.8068L32.5212 46.0038H32.4319H32.2534L31.9679 45.8586L31.6823 45.7134L31.4145 45.55L31.1468 45.3866C30.3041 44.8521 29.5509 44.1841 28.9156 43.4077L28.6836 43.0809L28.4159 42.6634C27.73 41.6278 27.255 40.4629 27.0189 39.2375C26.7828 38.012 26.7905 36.751 27.0415 35.5286C27.228 34.6884 27.5221 33.8766 27.9161 33.1141C28.0232 32.9144 28.1124 32.7328 28.2195 32.5694L28.3802 32.3153C28.4948 32.1207 28.6199 31.9329 28.755 31.7525L28.9156 31.5528L29.112 31.3167L29.3083 31.0989L29.4333 30.9718L29.6475 30.754L29.8259 30.5906L30.0223 30.4272L30.2365 30.2456H30.3257L30.4685 30.1185H30.5578L30.7898 29.9551L50.049 16.9746C50.1725 16.8912 50.3113 16.8338 50.457 16.806C50.6027 16.7782 50.7524 16.7804 50.8973 16.8126C51.0421 16.8448 51.1791 16.9062 51.3002 16.9933C51.4212 17.0804 51.5238 17.1913 51.6019 17.3195L51.7626 17.5918L51.8875 17.846C51.8875 17.9368 51.9768 18.0094 52.0125 18.082C52.0125 18.082 52.0125 18.082 52.0125 18.191C52.0239 18.2325 52.0239 18.2765 52.0125 18.318L52.1195 18.5904C52.1292 18.6383 52.1292 18.6877 52.1195 18.7356C52.1195 18.7356 52.1195 18.7356 52.1195 18.8445C52.8288 20.8305 52.8625 23.0011 52.2153 25.0089C51.5681 27.0166 50.2774 28.7455 48.5497 29.9188L39.6251 35.9462C39.4842 36.0415 39.3742 36.1772 39.309 36.3361C39.2438 36.495 39.2263 36.6699 39.2588 36.8389C39.2912 37.0078 39.3722 37.1632 39.4914 37.2854C39.6106 37.4077 39.7627 37.4912 39.9286 37.5256L50.4417 39.686C52.5458 40.1281 54.4361 41.2935 55.7948 42.9862C57.1536 44.679 57.8979 46.796 57.9027 48.9812C57.5635 48.4003 57.5278 48.9812 57.5278 48.9812V49.0175Z",fill:"url(#paint0_linear_619_170)"})),section:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M21 15V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19L3 15M21 15L3 15M21 15V9M3 15L3 9M21 9V5C21 3.89543 20.1046 3 19 3L5 3C3.89543 3 3 3.89543 3 5L3 9M21 9L3 9",fill:"none",stroke:"#fff",strokeWidth:1.4})),buttons:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 17.5H17M7 6.5H17M5 10H19C20.1046 10 21 9.10457 21 8V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V8C3 9.10457 3.89543 10 5 10ZM5 21H19C20.1046 21 21 20.1046 21 19V16C21 14.8954 20.1046 14 19 14H5C3.89543 14 3 14.8954 3 16V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),buttons_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 11.5H17M5 15H19C20.1046 15 21 14.1046 21 13V10C21 8.89543 20.1046 8 19 8H5C3.89543 8 3 8.89543 3 10V13C3 14.1046 3.89543 15 5 15Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),advanced_heading:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M8 7V12.8333M8 12.8333V17M8 12.8333H16M16 12.8333V7M16 12.8333V17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),google_map:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M9 3.00002L4.10557 5.44723C3.428 5.78601 3 6.47854 3 7.23608V20.382C3 21.1254 3.78231 21.6089 4.44721 21.2764L9 19M9 3.00002L15 5.00002M9 3.00002V19M9 19L15 21M15 5.00002L19.5528 2.72362C20.2177 2.39117 21 2.87467 21 3.61805V16.7639C21 17.5215 20.572 18.214 19.8944 18.5528L15 21M15 5.00002V21",fill:"none",stroke:"#fff",strokeWidth:1.4})),info_box:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 13H17M7 16.5H15.3333M9 8C9 8.55228 8.55228 9 8 9C7.44772 9 7 8.55228 7 8C7 7.44772 7.44772 7 8 7C8.55228 7 9 7.44772 9 8ZM5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),post_carousel:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M0 17C1.10457 17 2 16.1046 2 15V8C2 6.89543 1.10457 6 0 6M24 17C22.8954 17 22 16.1046 22 15V8C22 6.89543 22.8954 6 24 6M7 17H17C18.1046 17 19 16.1046 19 15V8C19 6.89543 18.1046 6 17 6H7C5.89543 6 5 6.89543 5 8V15C5 16.1046 5.89543 17 7 17Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M8 11H12.5M8 14H16",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),post_masonry:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 14C3 12.8954 3.89543 12 5 12H8C9.10457 12 10 12.8954 10 14V21C10 22.1046 9.10457 23 8 23H5C3.89543 23 3 22.1046 3 21V14Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M14 3C14 1.89543 14.8954 1 16 1H19C20.1046 1 21 1.89543 21 3V10C21 11.1046 20.1046 12 19 12H16C14.8954 12 14 11.1046 14 10V3Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M14 18C14 16.8954 14.8954 16 16 16H19C20.1046 16 21 16.8954 21 18V21C21 22.1046 20.1046 23 19 23H16C14.8954 23 14 22.1046 14 21V18Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M3 3C3 1.89543 3.89543 1 5 1H8C9.10457 1 10 1.89543 10 3V6C10 7.10457 9.10457 8 8 8H5C3.89543 8 3 7.10457 3 6V3Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),post_grid:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 16C3 14.8954 3.89543 14 5 14H8C9.10457 14 10 14.8954 10 16V19C10 20.1046 9.10457 21 8 21H5C3.89543 21 3 20.1046 3 19V16Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M14 16C14 14.8954 14.8954 14 16 14H19C20.1046 14 21 14.8954 21 16V19C21 20.1046 20.1046 21 19 21H16C14.8954 21 14 20.1046 14 19V16Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H8C9.10457 3 10 3.89543 10 5V8C10 9.10457 9.10457 10 8 10H5C3.89543 10 3 9.10457 3 8V5Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M14 5C14 3.89543 14.8954 3 16 3H19C20.1046 3 21 3.89543 21 5V8C21 9.10457 20.1046 10 19 10H16C14.8954 10 14 9.10457 14 8V5Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),testimonial:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M15.5 9.42857C15.5 10.2175 14.903 10.8571 14.1667 10.8571C13.4303 10.8571 12.8333 10.2175 12.8333 9.42857C12.8333 8.63959 13.4303 8 14.1667 8C14.903 8 15.5 8.63959 15.5 9.42857ZM15.5 9.42857C15.5 9.42857 15.5 11.5714 13.5 13M11.1667 9.42857C11.1667 10.2175 10.5697 10.8571 9.83333 10.8571C9.09695 10.8571 8.5 10.2175 8.5 9.42857C8.5 8.63959 9.09695 8 9.83333 8C10.5697 8 11.1667 8.63959 11.1667 9.42857ZM11.1667 9.42857C11.1667 9.42857 11.1667 11.5714 9.16667 13M12 21L14.4142 18.5858C14.7893 18.2107 15.298 18 15.8284 18H19C20.1046 18 21 17.1046 21 16V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V16C3 17.1046 3.89543 18 5 18H8.17157C8.70201 18 9.21071 18.2107 9.58579 18.5858L12 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),cf7_styler:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M4.51555 17C6.13007 19.412 8.87958 21 12 21C15.1204 21 17.8699 19.412 19.4845 17M4.51555 17C3.55827 15.5699 3 13.8501 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 13.8501 20.4417 15.5699 19.4845 17M4.51555 17C5.75777 17 7.12889 15 8.43944 13M19.4845 17C18.2422 17 16.8711 15 15.5606 13M8.43944 13C9.75 11 11 9 12 9C13 9 14.25 11 15.5606 13M8.43944 13L9.09522 14.2607C9.47211 14.9852 10.5116 14.9769 10.8768 14.2464L11.3795 13.241C11.6848 12.6305 12.4984 12.4984 12.9811 12.9811L13.4309 13.4309C13.7632 13.7632 14.282 13.8193 14.6776 13.5658L15.5606 13",fill:"none",stroke:"#fff",strokeWidth:1.4})),gf_styler:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M17 12V15H7L6.99998 12.9996C6.99998 10.7905 8.79083 9.00001 10.9999 9.00001H17.5M3.33984 8.71466V15.2854C3.33984 16.0317 3.75541 16.7159 4.41768 17.0601L11.0779 20.5208C11.656 20.8212 12.3442 20.8212 12.9223 20.5208L19.5825 17.0601C20.2448 16.7159 20.6604 16.0317 20.6604 15.2854V8.71466C20.6604 7.96832 20.2448 7.28407 19.5825 6.93995L12.9223 3.47918C12.3442 3.1788 11.656 3.1788 11.0779 3.47918L4.41768 6.93995C3.75541 7.28407 3.33984 7.96832 3.33984 8.71466Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),content_timeline:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12.0001 3V7M12.0001 21V17M12.0001 7H15.0001M12.0001 7V12M15.0001 7C15.0001 8.10457 15.8954 9 17 9H19C20.1046 9 21 8.10457 21 7C21 5.89543 20.1046 5 19 5H17C15.8954 5 15.0001 5.89543 15.0001 7ZM12.0001 12H9M12.0001 12V17M9 12C9 13.1046 8.10457 14 7 14H5C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10H7C8.10457 10 9 10.8954 9 12ZM12.0001 17H15.0001M15.0001 17C15.0001 18.1046 15.8954 19 17 19H19C20.1046 19 21 18.1046 21 17C21 15.8954 20.1046 15 19 15H17C15.8954 15 15.0001 15.8954 15.0001 17Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),content_timeline_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M5.99993 3V7V12M5.99993 21V17V12M5.99993 12H9M9 12C9 13.1046 9.89543 14 11 14H16C17.1046 14 18 13.1046 18 12C18 10.8954 17.1046 10 16 10H11C9.89543 10 9 10.8954 9 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),call_to_action:Object(B.createElement)("svg",{width:40,height:40,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M16.4545 16.4545L14.6364 21L11 11L21 14.6364L16.4545 16.4545ZM16.4545 16.4545L21 21M9 16.9291C5.60771 16.4439 3 13.5265 3 10C3 6.13401 6.13401 3 10 3C13.5265 3 16.4439 5.60771 16.9291 9M8.5 12.5987C7.6033 12.0799 7 11.1104 7 10C7 8.34315 8.34315 7 10 7C11.1104 7 12.0799 7.6033 12.5987 8.5",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),post_timeline:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M4 3V6M4 6C2.89543 6 2 6.89543 2 8C2 9.10457 2.89543 10 4 10M4 6C5.10457 6 6 6.89543 6 8C6 9.10457 5.10457 10 4 10M4 10V14M4 14C2.89543 14 2 14.8954 2 16C2 17.1046 2.89543 18 4 18M4 14C5.10457 14 6 14.8954 6 16C6 17.1046 5.10457 18 4 18M4 18V21M11 18H19C20.1046 18 21 17.1046 21 16C21 14.8954 20.1046 14 19 14H11C9.89543 14 9 14.8954 9 16C9 17.1046 9.89543 18 11 18ZM11 10H19C20.1046 10 21 9.10457 21 8C21 6.89543 20.1046 6 19 6H11C9.89543 6 9 6.89543 9 8C9 9.10457 9.89543 10 11 10Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),icon_list:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M11 5H21M11 12H21M11 19H21",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M7 5C7 6.10457 6.10457 7 5 7C3.89543 7 3 6.10457 3 5C3 3.89543 3.89543 3 5 3C6.10457 3 7 3.89543 7 5Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M7 19C7 20.1046 6.10457 21 5 21C3.89543 21 3 20.1046 3 19C3 17.8954 3.89543 17 5 17C6.10457 17 7 17.8954 7 19Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),icon_list_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M11 5H21M13 11H21M13 16H21M13 20.5H21M7 5C7 6.10457 6.10457 7 5 7C3.89543 7 3 6.10457 3 5C3 3.89543 3.89543 3 5 3C6.10457 3 7 3.89543 7 5Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M9 11C9 11.5523 8.55228 12 8 12C7.44772 12 7 11.5523 7 11C7 10.4477 7.44772 10 8 10C8.55228 10 9 10.4477 9 11Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M9 16C9 16.5523 8.55228 17 8 17C7.44772 17 7 16.5523 7 16C7 15.4477 7.44772 15 8 15C8.55228 15 9 15.4477 9 16Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M9 20.5C9 21.0523 8.55228 21.5 8 21.5C7.44772 21.5 7 21.0523 7 20.5C7 19.9477 7.44772 19.5 8 19.5C8.55228 19.5 9 19.9477 9 20.5Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),team:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M17 20H22V18C22 16.3431 20.6569 15 19 15C18.0444 15 17.1931 15.4468 16.6438 16.1429M17 20H7M17 20V18C17 17.3438 16.8736 16.717 16.6438 16.1429M7 20H2V18C2 16.3431 3.34315 15 5 15C5.95561 15 6.80686 15.4468 7.35625 16.1429M7 20V18C7 17.3438 7.12642 16.717 7.35625 16.1429M7.35625 16.1429C8.0935 14.301 9.89482 13 12 13C14.1052 13 15.9065 14.301 16.6438 16.1429M15 7C15 8.65685 13.6569 10 12 10C10.3431 10 9 8.65685 9 7C9 5.34315 10.3431 4 12 4C13.6569 4 15 5.34315 15 7ZM21 10C21 11.1046 20.1046 12 19 12C17.8954 12 17 11.1046 17 10C17 8.89543 17.8954 8 19 8C20.1046 8 21 8.89543 21 10ZM7 10C7 11.1046 6.10457 12 5 12C3.89543 12 3 11.1046 3 10C3 8.89543 3.89543 8 5 8C6.10457 8 7 8.89543 7 10Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),tabs:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M10 3V6C10 7.10457 10.8954 8 12 8H15.5M15.5 8H21M15.5 8V3M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),tabs_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12 3V8C12 9.10457 12.8954 10 14 10H16.5H21M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),social_share:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M9 12C9 13.1046 8.10457 14 7 14C5.89543 14 5 13.1046 5 12C5 10.8954 5.89543 10 7 10C8.10457 10 9 10.8954 9 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M19 6C19 7.10457 18.1046 8 17 8C15.8954 8 15 7.10457 15 6C15 4.89543 15.8954 4 17 4C18.1046 4 19 4.89543 19 6Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M19 18C19 19.1046 18.1046 20 17 20C15.8954 20 15 19.1046 15 18C15 16.8954 15.8954 16 17 16C18.1046 16 19 16.8954 19 18Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M9 10.5L15 7M9 13.5L15 17",fill:"none",stroke:"#fff",strokeWidth:1.4})),social_share_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M9 10.5L15 7M9 13.5L15 17M21 18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18C15 16.3431 16.3431 15 18 15C19.6569 15 21 16.3431 21 18ZM9 12C9 13.1046 8.10457 14 7 14C5.89543 14 5 13.1046 5 12C5 10.8954 5.89543 10 7 10C8.10457 10 9 10.8954 9 12ZM19 6C19 7.10457 18.1046 8 17 8C15.8954 8 15 7.10457 15 6C15 4.89543 15.8954 4 17 4C18.1046 4 19 4.89543 19 6Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),restaurant_menu:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M17.7472 5.05554C17.5824 4.84998 17.3481 4.68976 17.074 4.59515C16.8912 4.53203 16.696 4.5 16.5 4.5M16.5 4.5C16.4022 4.5 16.3042 4.50797 16.2074 4.52402C15.9164 4.57225 15.6491 4.6913 15.4393 4.86612C15.2296 5.04093 15.0867 5.26366 15.0288 5.50614C14.9709 5.74861 15.0006 5.99995 15.1142 6.22835C15.2277 6.45676 15.42 6.65199 15.6666 6.78934C15.9133 6.92669 16.2033 7 16.5 7C16.7967 7 17.0867 7.07331 17.3334 7.21066C17.58 7.34802 17.7723 7.54324 17.8858 7.77165C17.9994 8.00005 18.0291 8.25139 17.9712 8.49386C17.9133 8.73634 17.7704 8.95907 17.5607 9.13388C17.3509 9.3087 17.0836 9.42775 16.7926 9.47598C16.6958 9.49203 16.5978 9.5 16.5 9.5M16.5 4.5V4M15.2528 8.94446C15.4176 9.15003 15.6519 9.31024 15.926 9.40485C16.1088 9.46797 16.304 9.5 16.5 9.5M16.5 9.5V10",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M17.7472 15.0555C17.5824 14.85 17.3481 14.6898 17.074 14.5952C16.8912 14.532 16.696 14.5 16.5 14.5M16.5 14.5C16.4022 14.5 16.3042 14.508 16.2074 14.524C15.9164 14.5723 15.6491 14.6913 15.4393 14.8661C15.2296 15.0409 15.0867 15.2637 15.0288 15.5061C14.9709 15.7486 15.0006 15.9999 15.1142 16.2284C15.2277 16.4568 15.42 16.652 15.6666 16.7893C15.9133 16.9267 16.2033 17 16.5 17C16.7967 17 17.0867 17.0733 17.3334 17.2107C17.58 17.348 17.7723 17.5432 17.8858 17.7716C17.9994 18.0001 18.0291 18.2514 17.9712 18.4939C17.9133 18.7363 17.7704 18.9591 17.5607 19.1339C17.3509 19.3087 17.0836 19.4278 16.7926 19.476C16.6958 19.492 16.5978 19.5 16.5 19.5M16.5 14.5V14M15.2528 18.9445C15.4176 19.15 15.6519 19.3102 15.926 19.4049C16.1088 19.468 16.304 19.5 16.5 19.5M16.5 19.5V20",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M6 5H12M6 15H12M6 8H9M6 18H9",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M3 3C3 1.89543 3.89543 1 5 1H19C20.1046 1 21 1.89543 21 3V21C21 22.1046 20.1046 23 19 23H5C3.89543 23 3 22.1046 3 21V3Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),restaurant_menu_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M20.6208 8.58331C20.3736 8.27496 20.0222 8.03464 19.611 7.89273C19.3367 7.79804 19.0441 7.75 18.75 7.75M18.75 7.75C18.6033 7.75 18.4563 7.76195 18.311 7.78603C17.8746 7.85838 17.4737 8.03695 17.159 8.29918C16.8443 8.5614 16.6301 8.89549 16.5432 9.25921C16.4564 9.62292 16.501 9.99992 16.6713 10.3425C16.8416 10.6851 17.13 10.978 17.5 11.184C17.87 11.39 18.305 11.5 18.75 11.5C19.195 11.5 19.63 11.61 20 11.816C20.37 12.022 20.6584 12.3149 20.8287 12.6575C20.999 13.0001 21.0436 13.3771 20.9568 13.7408C20.8699 14.1045 20.6557 14.4386 20.341 14.7008C20.0263 14.963 19.6254 15.1416 19.189 15.214C19.0437 15.2381 18.8967 15.25 18.75 15.25M18.75 7.75V7M16.8792 14.4167C17.1264 14.725 17.4778 14.9654 17.889 15.1073C18.1633 15.202 18.4559 15.25 18.75 15.25M18.75 15.25V16M3 9.5H12M3 13H7.5M3 3H20.9568M3 21H20.9568",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),blockquote:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 7H17M7 11H9M17 11.8571C17 12.3305 16.6418 12.7143 16.2 12.7143C15.7582 12.7143 15.4 12.3305 15.4 11.8571C15.4 11.3838 15.7582 11 16.2 11C16.6418 11 17 11.3838 17 11.8571ZM17 11.8571C17 11.8571 17 13.1429 15.8 14M13.6 11.8571C13.6 12.3305 13.2418 12.7143 12.8 12.7143C12.3582 12.7143 12 12.3305 12 11.8571C12 11.3838 12.3582 11 12.8 11C13.2418 11 13.6 11.3838 13.6 11.8571ZM13.6 11.8571C13.6 11.8571 13.6 13.1429 12.4 14M3 21V5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V16C21 17.1046 20.1046 18 19 18H7.66667C7.23393 18 6.81286 18.1404 6.46667 18.4L3 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),columns:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M15 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H15M15 3V21M15 3H9M15 21H9M9 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H9M9 3V21",fill:"none",stroke:"#fff",strokeWidth:1.4})),column:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H10C11.1046 3 12 3.89543 12 5V19C12 20.1046 11.1046 21 10 21H5C3.89543 21 3 20.1046 3 19V5Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M15 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H15",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeDasharray:1.4})),marketing_button:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 20.9895H17M4 16.9895H20",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M10 7H19M3 11H21C22.1046 11 23 10.1046 23 9V5C23 3.89543 22.1046 3 21 3H3C1.89543 3 1 3.89543 1 5V9C1 10.1046 1.89543 11 3 11ZM7 7C7 7.55228 6.55228 8 6 8C5.44772 8 5 7.55228 5 7C5 6.44772 5.44772 6 6 6C6.55228 6 7 6.44772 7 7Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),table_of_contents:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 16H13M7 12H15.3333M7 8H17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),faq:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M9.00006 9C9.50006 8 10.5001 7 12.0001 7C13.5002 7 15.0001 8.5 15.0001 10C15.0001 11.4553 14.0588 12.4399 13.0843 12.8686C13.0248 12.8948 12.9619 12.9116 12.8992 12.9285C12.4001 13.0627 12.0001 13.4804 12.0001 14M12.0001 17H12.0101M21.0001 12C21.0001 16.9706 16.9706 21 12.0001 21C10.5124 21 9.1091 20.6391 7.87286 20C7.19356 19.6488 3.56466 21.5054 3 21C2.43678 20.4959 4.93748 17.6302 4.51561 17C3.55833 15.5699 3.00006 13.8501 3.00006 12C3.00006 7.02944 7.0295 3 12.0001 3C16.9706 3 21.0001 7.02944 21.0001 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),faq_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12.0067 10.2C12.34 9.6 13.0067 9 14.0067 9C15.0067 9 16.0067 9.9 16.0067 10.8C16.0067 11.6628 15.394 12.2498 14.7527 12.5118C14.6977 12.5343 14.6397 12.5477 14.5824 12.5632C14.2608 12.6496 14.0067 12.8957 14.0067 13.2M14.0067 15H14.0133M11.0002 15H11.0069M8.00017 15H8.00684M21.0001 12C21.0001 16.9706 16.9706 21 12.0001 21C10.5124 21 9.1091 20.6391 7.87286 20C7.19356 19.6488 3.56466 21.5054 3 21C2.43678 20.4959 4.93748 17.6302 4.51561 17C3.55833 15.5699 3.00006 13.8501 3.00006 12C3.00006 7.02944 7.0295 3 12.0001 3C16.9706 3 21.0001 7.02944 21.0001 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),forms:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 10H17M7 7H10.5M9 17H15M7 13H17M13.5 7H17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),how_to:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M13 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V11M13 3L21 11M13 3V9C13 10.1046 13.8954 11 15 11H21M10 11H17M10 7H13M10 15H17M7 7H7.1M7 11H7.1M7 15H7.1",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),how_to_step:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M23 12C23 13.1046 22.1046 14 21 14C19.8954 14 19 13.1046 19 12C19 10.8954 19.8954 10 21 10C22.1046 10 23 10.8954 23 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M5 12C5 13.1046 4.10457 14 3 14C1.89543 14 1 13.1046 1 12C1 10.8954 1.89543 10 3 10C4.10457 10 5 10.8954 5 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M7.5 12H7.6",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M16.5 12H16.6",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),inline_notice:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 21H21M3 3H21M10 12H19M3 17H21C22.1046 17 23 16.1046 23 15V9C23 7.89543 22.1046 7 21 7H3C1.89543 7 1 7.89543 1 9V15C1 16.1046 1.89543 17 3 17ZM7 12C7 12.5523 6.55228 13 6 13C5.44772 13 5 12.5523 5 12C5 11.4477 5.44772 11 6 11C6.55228 11 7 11.4477 7 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),wp_search:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 21L9 15M7 10C7 13.866 10.134 17 14 17C17.866 17 21 13.866 21 10C21 6.13401 17.866 3 14 3C10.134 3 7 6.13401 7 10Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),taxonomy_list:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M10 16H17M10 12H15M10 8H17M6.98999 8H6.99999M6.98999 12H6.99999M6.98999 16H6.99999M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),review:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 10.5H17M9.5 7H9.51M6.99 7H7M12 7H12.01M7 14H14M12 21L14.4142 18.5858C14.7893 18.2107 15.298 18 15.8284 18H19C20.1046 18 21 17.1046 21 16V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V16C3 17.1046 3.89543 18 5 18H8.17157C8.70201 18 9.21071 18.2107 9.58579 18.5858L12 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),lottie:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7 17C7 17 12 17.5 12 12C12 6.5 17 7 17 7M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),accept:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M20 12H12M4 12L5.66667 14L9 10M3 17H21C22.1046 17 23 16.1046 23 15V9C23 7.89543 22.1046 7 21 7H3C1.89543 7 1 7.89543 1 9V15C1 16.1046 1.89543 17 3 17Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),checkbox:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M8 12L10.6667 15L16 9M5.77778 20H18.2222C19.2041 20 20 18.9767 20 17.7143V6.28571C20 5.02335 19.2041 4 18.2222 4H5.77778C4.79594 4 4 5.02335 4 6.28571V17.7143C4 18.9767 4.79594 20 5.77778 20Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),datepicker:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M8 7V3M16 7V3M8 13H8.1M11.9 13H12M16 13H16.1M5 21H19C20.1046 21 21 20.1046 21 19V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),email:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 8L10.8906 13.2604C11.5624 13.7083 12.4376 13.7083 13.1094 13.2604L21 8M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),hidden:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3.00024 3L6.5894 6.58916M21.0002 21L17.4114 17.4112M13.8751 18.8246C13.268 18.9398 12.6414 19 12.0007 19C7.52305 19 3.73275 16.0571 2.4585 12C2.80539 10.8955 3.33875 9.87361 4.02168 8.97118M9.87892 9.87868C10.4218 9.33579 11.1718 9 12.0002 9C13.6571 9 15.0002 10.3431 15.0002 12C15.0002 12.8284 14.6645 13.5784 14.1216 14.1213M9.87892 9.87868L14.1216 14.1213M9.87892 9.87868L6.5894 6.58916M14.1216 14.1213L6.5894 6.58916M14.1216 14.1213L17.4114 17.4112M6.5894 6.58916C8.14922 5.58354 10.0068 5 12.0007 5C16.4783 5 20.2686 7.94291 21.5429 12C20.836 14.2507 19.3548 16.1585 17.4114 17.4112",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),name:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M18 9H13M13 12H17M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19ZM7 14H9C9.55228 14 10 13.5523 10 13V9C10 8.44772 9.55228 8 9 8H7C6.44772 8 6 8.44772 6 9V13C6 13.5523 6.44772 14 7 14Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),phone:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H8.27924C8.70967 3 9.09181 3.27543 9.22792 3.68377L10.7257 8.17721C10.8831 8.64932 10.6694 9.16531 10.2243 9.38787L7.96701 10.5165C9.06925 12.9612 11.0388 14.9308 13.4835 16.033L14.6121 13.7757C14.8347 13.3306 15.3507 13.1169 15.8228 13.2743L20.3162 14.7721C20.7246 14.9082 21 15.2903 21 15.7208V19C21 20.1046 20.1046 21 19 21H18C9.71573 21 3 14.2843 3 6V5Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),radio:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12 7H22M12 17H22M8 7C8 8.65685 6.65685 10 5 10C3.34315 10 2 8.65685 2 7C2 5.34315 3.34315 4 5 4C6.65685 4 8 5.34315 8 7ZM8 17C8 18.6569 6.65685 20 5 20C3.34315 20 2 18.6569 2 17C2 15.3431 3.34315 14 5 14C6.65685 14 8 15.3431 8 17ZM5.5 7C5.5 7.27614 5.27614 7.5 5 7.5C4.72386 7.5 4.5 7.27614 4.5 7C4.5 6.72386 4.72386 6.5 5 6.5C5.27614 6.5 5.5 6.72386 5.5 7Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),select:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M5 17H17M5 14H19M4 9H20C21.1046 9 22 8.10457 22 7V5C22 3.89543 21.1046 3 20 3H4C2.89543 3 2 3.89543 2 5V7C2 8.10457 2.89543 9 4 9ZM4 21H20C21.1046 21 22 20.1046 22 19V12C22 10.8954 21.1046 10 20 10H4C2.89543 10 2 10.8954 2 12V19C2 20.1046 2.89543 21 4 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),textarea:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M15.5 16L18 13.5M18.5 16.5L18.6 16.4M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),toggle:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M2 12C2 8.68629 4.68629 6 8 6H16C19.3137 6 22 8.68629 22 12V12C22 15.3137 19.3137 18 16 18H8C4.68629 18 2 15.3137 2 12V12Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M20 12C20 14.2091 18.2091 16 16 16C13.7909 16 12 14.2091 12 12C12 9.79086 13.7909 8 16 8C18.2091 8 20 9.79086 20 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),url:Object(B.createElement)("svg",{width:24,height:24,role:"img",viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M13.8284 10.1716C12.2663 8.60948 9.73367 8.60948 8.17157 10.1716L4.17157 14.1716C2.60948 15.7337 2.60948 18.2663 4.17157 19.8284C5.73367 21.3905 8.26633 21.3905 9.82843 19.8284L10.93 18.7269M10.1716 13.8284C11.7337 15.3905 14.2663 15.3905 15.8284 13.8284L19.8284 9.82843C21.3905 8.26633 21.3905 5.73367 19.8284 4.17157C18.2663 2.60948 15.7337 2.60948 14.1716 4.17157L13.072 5.27118",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),star_rating:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M11.103 7.81696C11.4698 7.07371 12.5297 7.07371 12.8965 7.81696L13.8243 9.69697C13.97 9.99211 14.2516 10.1967 14.5773 10.244L16.652 10.5455C17.4722 10.6647 17.7997 11.6726 17.2062 12.2512L15.7049 13.7146C15.4692 13.9443 15.3617 14.2753 15.4173 14.5997L15.7717 16.666C15.9118 17.4829 15.0544 18.1059 14.3208 17.7202L12.4651 16.7446C12.1738 16.5915 11.8257 16.5915 11.5344 16.7446L9.67874 17.7202C8.94511 18.1059 8.08768 17.4829 8.22779 16.666L8.58219 14.5997C8.63783 14.2753 8.53028 13.9443 8.29459 13.7146L6.79332 12.2512C6.1998 11.6726 6.52731 10.6647 7.34753 10.5455L9.42225 10.244C9.74796 10.1967 10.0295 9.99211 10.1752 9.69697L11.103 7.81696Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M18.4424 14.106L20.1846 14.8943C21.0283 15.2761 21.9613 14.5667 21.7842 13.6782L21.6155 12.8313C21.5377 12.4411 21.6806 12.0403 21.99 11.7808L22.6034 11.2662C23.3499 10.6399 22.9822 9.44941 22.0043 9.32712L20.8958 9.18848C20.5373 9.14365 20.2219 8.93603 20.0458 8.62895L19.4377 7.56859C19.003 6.81047 17.8817 6.81047 17.447 7.56859L16.559 9.11719M5.55765 14.106L3.8154 14.8943C2.97172 15.2761 2.0387 14.5667 2.21577 13.6782L2.38454 12.8313C2.46229 12.4411 2.3194 12.0403 2.01002 11.7808L1.39664 11.2662C0.650069 10.6399 1.01784 9.44941 1.99569 9.32712L3.1042 9.18848C3.46273 9.14365 3.77814 8.93603 3.95423 8.62895L4.56227 7.56859C4.997 6.81047 6.11829 6.81047 6.55302 7.56859L7.44104 9.11719",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),container:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 16C3 14.8954 3.89543 14 5 14H8C9.10457 14 10 14.8954 10 16V19C10 20.1046 9.10457 21 8 21H5C3.89543 21 3 20.1046 3 19V16Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M14 16C14 14.8954 14.8954 14 16 14H19C20.1046 14 21 14.8954 21 16V19C21 20.1046 20.1046 21 19 21H16C14.8954 21 14 20.1046 14 19V16Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V8C21 9.10457 20.1046 10 19 10H5C3.89543 10 3 9.10457 3 8V5Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),image:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 17L7.41995 12.58C8.26284 11.7372 9.65125 11.8141 10.3959 12.7449L11.789 14.4863C12.4639 15.3298 13.6866 15.4851 14.5508 14.8369L15.6123 14.0408C16.4086 13.4436 17.5228 13.5228 18.2265 14.2265L21 17M17 8C17 8.55228 16.5523 9 16 9C15.4477 9 15 8.55228 15 8C15 7.44772 15.4477 7 16 7C16.5523 7 17 7.44772 17 8ZM5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),image_gallery:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5C9.60457 3 10.5 3.89543 10.5 5V8.5M3 8.5C3 9.60457 3.89543 10.5 5 10.5H8.5C9.60457 10.5 10.5 9.60457 10.5 8.5M3 8.5L4.94679 6.87767C5.58153 6.34873 6.47618 6.26455 7.19844 6.6658L10.5 8.5M13.5 8.5V5C13.5 3.89543 14.3954 3 15.5 3H19C20.1046 3 21 3.89543 21 5V8.5M13.5 8.5C13.5 9.60457 14.3954 10.5 15.5 10.5H19C20.1046 10.5 21 9.60457 21 8.5M13.5 8.5L15.4468 6.87767C16.0815 6.34873 16.9762 6.26455 17.6984 6.6658L21 8.5M3 19V15.5C3 14.3954 3.89543 13.5 5 13.5H8.5C9.60457 13.5 10.5 14.3954 10.5 15.5V19M3 19C3 20.1046 3.89543 21 5 21H8.5C9.60457 21 10.5 20.1046 10.5 19M3 19L4.94679 17.3777C5.58153 16.8487 6.47618 16.7645 7.19844 17.1658L10.5 19M13.5 19V15.5C13.5 14.3954 14.3954 13.5 15.5 13.5H19C20.1046 13.5 21 14.3954 21 15.5V19M13.5 19C13.5 20.1046 14.3954 21 15.5 21H19C20.1046 21 21 20.1046 21 19M13.5 19L15.4468 17.3777C16.0815 16.8487 16.9762 16.7645 17.6984 17.1658L21 19",fill:"none",stroke:"#fff",strokeWidth:1.4})),counter:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M1 10.5L3 9.5V16.5M5.5 11C5.66667 10.5 6.3 9.5 7.5 9.5C9 9.5 9.5 10.5 9.5 11C9.5 13.0707 7 15 5.5 16.5H9.7M11.5 10.5C11.6667 10.1667 12.3 9.2 13.5 9.2C14.7 9.2 15.7 10 15.7 11C15.7 12 14.2 13 13 13C14 13 16.2469 13 16 15C15.8742 16.0188 14.8107 16.7 13.5 16.7C13 16.7 12 16.5 11.5 15.5M20.5 18V6M20.5 6L18 8M20.5 6L23 8",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),countdown:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12 5.39514V3.16507M16.2269 6.58948L17.8848 5.09796M9.69775 2.60654H14.3022M11.8872 13.4553H16.6079M20.0052 13.3886C20.0052 17.8099 16.4211 21.394 11.9999 21.394C7.57873 21.394 3.99463 17.8099 3.99463 13.3886C3.99463 8.96743 7.57873 5.38333 11.9999 5.38333C16.4211 5.38333 20.0052 8.96743 20.0052 13.3886ZM12.327 13.3886C12.327 13.2081 12.1807 13.0618 12.0002 13.0618C11.8197 13.0618 11.6733 13.2081 11.6733 13.3886C11.6733 13.5692 11.8197 13.7155 12.0002 13.7155C12.1807 13.7155 12.327 13.5692 12.327 13.3886Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),modal:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("rect",{x:3,y:7.30975,width:15.033,height:11.7712,rx:2,fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M6.86572 11.6992H14.1675",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M6.86572 14.6918H14.1675",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M19.0982 4.51694L20.1633 5.58197M20.1633 5.58197L21.2283 6.647M20.1633 5.58197L19.0982 6.647M20.1633 5.58197L21.2283 4.51694",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),slider:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 26 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("rect",{x:5.4502,y:4.98621,width:15.0978,height:11.2249,rx:2,fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M9.19922 9.10217H16.501",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M9.19922 12.0948H16.501",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M15.9987 19.0138H16.0054M12.9922 19.0138H12.9989M9.99219 19.0138H9.99885",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M2.49658 9.69873L1.49658 10.5987L2.49658 11.4987",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M23.5034 11.4987L24.5034 10.5987L23.5034 9.69872",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),slider_child:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 26 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("rect",{x:5.4502,y:6.38751,width:15.0978,height:11.2249,rx:2,fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M9.19922 10.5035H16.501",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M9.19922 13.4962H16.501",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M2.49658 11.1L1.49658 12.0001L2.49658 12.9",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M23.5034 12.9L24.5034 12L23.5034 11.1",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),login:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M12 16L16 12M16 12L12 8M16 12L4 12M7 16V17C7 18.6569 8.34315 20 10 20H17C18.6569 20 20 18.6569 20 17V7C20 5.34315 18.6569 4 17 4H10C8.34315 4 7 5.34315 7 7V8",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),register:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M14 21H4C4 17.134 7.13401 14 11 14C12.0736 14 13.0907 14.2417 14 14.6736M17 15V18M17 18V21M17 18H14M17 18H20M15 7C15 9.20914 13.2091 11 11 11C8.79086 11 7 9.20914 7 7C7 4.79086 8.79086 3 11 3C13.2091 3 15 4.79086 15 7Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),password:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M15 7C16.1046 7 17 7.89543 17 9M21 9C21 12.3137 18.3137 15 15 15C14.3938 15 13.8087 14.9101 13.2571 14.7429L11 17H9V19H7V21H4C3.44772 21 3 20.5523 3 20V17.4142C3 17.149 3.10536 16.8946 3.29289 16.7071L9.25707 10.7429C9.08989 10.1914 9 9.60617 9 9C9 5.68629 11.6863 3 15 3C18.3137 3 21 5.68629 21 9Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),rePassword:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M13 9C13 7.9 13.8954 7 15 7C16.1046 7 17 7.89543 17 9C17 10.1 16.1 11 15 11M15 11V10M15 11L16 11.5M21 9C21 12.3137 18.3137 15 15 15C14.3938 15 13.8087 14.9101 13.2571 14.7429L11 17H9V19H7V21H4C3.44772 21 3 20.5523 3 20V17.4142C3 17.149 3.10536 16.8946 3.29289 16.7071L9.25707 10.7429C9.08989 10.1914 9 9.60617 9 9C9 5.68629 11.6863 3 15 3C18.3137 3 21 5.68629 21 9Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),instagram_feed:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M17 6.5H17.1M8.14286 21H15.8571C18.6975 21 21 18.6975 21 15.8571V8.14286C21 5.30254 18.6975 3 15.8571 3H8.14286C5.30254 3 3 5.30254 3 8.14286V15.8571C3 18.6975 5.30254 21 8.14286 21ZM16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),loop_builder:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("g",null,Object(B.createElement)("path",{d:"M3.35981 8.80578C5.11039 7.05892 7.94864 7.05892 9.69922 8.80578L12.8689 11.9687L9.69922 15.1317C7.94864 16.8785 5.11039 16.8785 3.35981 15.1317C1.60923 13.3848 1.60923 10.5526 3.35981 8.80578Z",fill:"none",stroke:"#fff",strokeWidth:1.4}),Object(B.createElement)("path",{d:"M22.2987 15.1942C20.5481 16.9411 17.7099 16.9411 15.9593 15.1942L12.7896 12.0313L15.9593 8.86831C17.7099 7.12146 20.5481 7.12146 22.2987 8.86831C24.0493 10.6152 24.0493 13.4474 22.2987 15.1942Z",fill:"none",stroke:"#fff",strokeWidth:1.4}))),loop_wrapper:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7.21733 14.2448C5.93905 14.2448 5.29991 14.2448 4.82713 13.9634C4.54096 13.7931 4.30185 13.554 4.13151 13.2678C3.8501 12.795 3.8501 12.1559 3.8501 10.8776V7.02072C3.8501 5.1351 3.8501 4.19229 4.43588 3.60651C5.02167 3.02072 5.96448 3.02072 7.8501 3.02072H11.707C12.9852 3.02072 13.6244 3.02072 14.0972 3.30214C14.3833 3.47248 14.6224 3.71158 14.7928 3.99775C15.0742 4.47053 15.0742 5.10967 15.0742 6.38795M14.584 20.9793H17.8081C19.6937 20.9793 20.6365 20.9793 21.2223 20.3935C21.8081 19.8077 21.8081 18.8649 21.8081 16.9793V13.7552C21.8081 11.8696 21.8081 10.9267 21.2223 10.341C20.6365 9.75517 19.6937 9.75517 17.8081 9.75517H14.584C12.6984 9.75517 11.7556 9.75517 11.1698 10.341C10.584 10.9267 10.584 11.8696 10.584 13.7552V16.9793C10.584 18.8649 10.584 19.8077 11.1698 20.3935C11.7556 20.9793 12.6984 20.9793 14.584 20.9793Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),popup_builder:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 25 25",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M7.18382 7.82229C7.1591 7.79676 6.49721 7.78045 5.55331 7.77579C4.45592 7.77038 3.57129 8.66533 3.57129 9.76272V20.3833C3.57129 21.4879 4.46672 22.3833 5.57129 22.3833H15.7129C16.8175 22.3833 17.7129 21.4879 17.7129 20.3833V17.8467M11.5659 7.36682H17.0951C17.6474 7.36682 18.0951 7.81454 18.0951 8.36682V13.8366M7.62451 5.35669V15.8467C7.62451 16.9513 8.51994 17.8467 9.62451 17.8467H20.0361C21.1407 17.8467 22.0361 16.9513 22.0361 15.8467V5.35669C22.0361 4.25212 21.1407 3.35669 20.0361 3.35669H9.62451C8.51994 3.35669 7.62451 4.25212 7.62451 5.35669Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),loop_search:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M1 19L7 13M5 8C5 11.866 8.13401 15 12 15C15.866 15 19 11.866 19 8C19 4.13401 15.866 1 12 1C8.13401 1 5 4.13401 5 8Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),loop_sort:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M2.95 6.4691V3.00943C2.95 2.84374 3.08431 2.70943 3.25 2.70943H20.75C20.9157 2.70943 21.05 2.84374 21.05 3.00943V6.45928C21.05 6.54425 21.014 6.62523 20.9509 6.68212L16.269 10.9021C15.9114 11.2245 15.7072 11.6834 15.7072 12.1649V18.5587C15.7072 18.6803 15.6339 18.7898 15.5215 18.8361L8.53336 21.7145C8.33591 21.7959 8.11911 21.6507 8.11911 21.4371V12.1551C8.11911 11.6833 7.92309 11.2328 7.57792 10.9112L3.0455 6.6886L2.57457 7.19409L3.0455 6.6886C2.98459 6.63186 2.95 6.55235 2.95 6.4691Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),loop_reset:Object(B.createElement)("svg",{width:24,height:25,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M14.9404 13.515L10.8696 18.461L15.8919 22.47M5.07181 14.2876C4.19127 12.7856 3.83859 11.0395 4.06845 9.32003C4.29832 7.60057 5.09789 6.00385 6.34315 4.77751C7.58842 3.55117 9.20979 2.76375 10.9558 2.53738C12.7018 2.31101 14.4749 2.65833 16 3.52549C17.5251 4.39264 18.7171 5.73115 19.391 7.33344C20.065 8.93573 20.1832 10.7122 19.7274 12.3874C19.2716 14.0627 18.2672 15.5429 16.8701 16.5987C15.4729 17.6545 13.7611 18.2268 12 18.2268",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),loop_category:Object(B.createElement)("svg",{width:24,height:25,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M3 5.46997C3 4.52716 3 4.05576 3.29289 3.76286C3.58579 3.46997 4.05719 3.46997 5 3.46997H8C8.94281 3.46997 9.41421 3.46997 9.70711 3.76286C10 4.05576 10 4.52716 10 5.46997V8.46997C10 9.41278 10 9.88418 9.70711 10.1771C9.41421 10.47 8.94281 10.47 8 10.47H5C4.05719 10.47 3.58579 10.47 3.29289 10.1771C3 9.88418 3 9.41278 3 8.46997V5.46997Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M3 16.47C3 15.5272 3 15.0558 3.29289 14.7629C3.58579 14.47 4.05719 14.47 5 14.47H8C8.94281 14.47 9.41421 14.47 9.70711 14.7629C10 15.0558 10 15.5272 10 16.47V19.47C10 20.4128 10 20.8842 9.70711 21.1771C9.41421 21.47 8.94281 21.47 8 21.47H5C4.05719 21.47 3.58579 21.47 3.29289 21.1771C3 20.8842 3 20.4128 3 19.47V16.47Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M14 5.46997C14 4.52716 14 4.05576 14.2929 3.76286C14.5858 3.46997 15.0572 3.46997 16 3.46997H19C19.9428 3.46997 20.4142 3.46997 20.7071 3.76286C21 4.05576 21 4.52716 21 5.46997V8.46997C21 9.41278 21 9.88418 20.7071 10.1771C20.4142 10.47 19.9428 10.47 19 10.47H16C15.0572 10.47 14.5858 10.47 14.2929 10.1771C14 9.88418 14 9.41278 14 8.46997V5.46997Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"}),Object(B.createElement)("path",{d:"M14 16.47C14 15.5272 14 15.0558 14.2929 14.7629C14.5858 14.47 15.0572 14.47 16 14.47H19C19.9428 14.47 20.4142 14.47 20.7071 14.7629C21 15.0558 21 15.5272 21 16.47V19.47C21 20.4128 21 20.8842 20.7071 21.1771C20.4142 21.47 19.9428 21.47 19 21.47H16C15.0572 21.47 14.5858 21.47 14.2929 21.1771C14 20.8842 14 20.4128 14 19.47V16.47Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),loop_pagination:Object(B.createElement)("svg",{width:24,height:25,viewBox:"0 0 25 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M4.24796 9.21127L0.989258 12.47L4.24796 15.7287M19.7522 15.7287L23.0109 12.47L19.7522 9.21127M8.75989 12.47C8.75989 13.2825 8.10119 13.9412 7.28864 13.9412C6.47609 13.9412 5.81738 13.2825 5.81738 12.47C5.81738 11.6574 6.47609 10.9987 7.28864 10.9987C8.10119 10.9987 8.75989 11.6574 8.75989 12.47ZM13.4779 12.47C13.4779 13.2825 12.8192 13.9412 12.0067 13.9412C11.1941 13.9412 10.5354 13.2825 10.5354 12.47C10.5354 11.6574 11.1941 10.9987 12.0067 10.9987C12.8192 10.9987 13.4779 11.6574 13.4779 12.47ZM18.1956 12.47C18.1956 13.2825 17.5369 13.9412 16.7243 13.9412C15.9118 13.9412 15.2531 13.2825 15.2531 12.47C15.2531 11.6574 15.9118 10.9987 16.7243 10.9987C17.5369 10.9987 18.1956 11.6574 18.1956 12.47Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round"})),sure_forms:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 32 32",fill:"none",stroke:"none",className:"uagb-editor-icons sureforms-logo"},Object(B.createElement)("g",{clipPath:"url(#clip_spectra_sureforms_block_icon)"},Object(B.createElement)("rect",{width:"32",height:"32",fill:"transparent",strokeWidth:"1.4",stroke:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 6.85645H22.8574V11.4279H11.4288L9.14307 13.7136V11.4279V6.85645Z",fill:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 6.85645H22.8574V11.4279H11.4288L9.14307 13.7136V11.4279V6.85645Z",fill:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 13.7139H20.5716V18.2853H11.4288L9.14307 20.571V18.2853V13.7139Z",fill:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 13.7139H20.5716V18.2853H11.4288L9.14307 20.571V18.2853V13.7139Z",fill:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 20.5713H16.0002V25.1427H9.14307V20.5713Z",fill:"#0063a1"}),Object(B.createElement)("path",{d:"M9.14307 20.5713H16.0002V25.1427H9.14307V20.5713Z",fill:"#0063a1"})),Object(B.createElement)("defs",null,Object(B.createElement)("clipPath",{id:"clip_spectra_sureforms_block_icon"},Object(B.createElement)("rect",{width:"192",height:"32",fill:"white"})))),post_title:Object(B.createElement)("svg",{width:20,height:20},Object(B.createElement)("path",{fill:"#1d2327",d:"M19.31 0h-18.619c-0.381 0-0.691 0.309-0.691 0.691v18.619c0 0.382 0.309 0.691 0.691 0.691h18.619c0.382 0 0.691-0.309 0.691-0.691v-18.619c0-0.381-0.309-0.691-0.69-0.691v0zM18.62 6.206h-4.825v-4.825h4.825v4.825zM18.62 12.413h-4.825v-4.825h4.825v4.825zM1.381 7.588h4.825v4.825h-4.825v-4.825zM7.588 7.588h4.825v4.825h-4.825v-4.825zM12.413 1.381v4.825h-4.825v-4.825h4.825zM6.206 1.381v4.825h-4.825v-4.825h4.825zM1.381 13.794h4.825v4.826h-4.825v-4.826zM7.588 18.62v-4.826h4.825v4.826h-4.825zM13.794 18.62v-4.826h4.825v4.826h-4.825z"})),quote_1:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M15.581 10.226h-15.162c-0.233 0-0.419 0.37-0.419 0.826 0 0.458 0.186 0.828 0.419 0.828h15.161c0.233 0 0.419-0.37 0.419-0.828 0.001-0.455-0.186-0.826-0.418-0.826v0z"}),Object(B.createElement)("path",{d:"M15.581 14.285h-15.162c-0.233 0-0.419 0.373-0.419 0.827 0 0.458 0.186 0.826 0.419 0.826h15.161c0.233 0 0.419-0.369 0.419-0.826 0.001-0.454-0.186-0.827-0.418-0.827v0z"}),Object(B.createElement)("path",{d:"M15.581 18.346h-15.162c-0.233 0-0.419 0.37-0.419 0.826 0 0.459 0.186 0.828 0.419 0.828h15.161c0.233 0 0.419-0.369 0.419-0.828 0.001-0.455-0.186-0.826-0.418-0.826v0z"}),Object(B.createElement)("path",{d:"M9.126 0.595c-0.46 0.465-0.974 1.35-0.835 3.042 0.081 1.319 0.666 3.29 3.048 5.216 0.112 0.090 0.241 0.136 0.38 0.136 0.183 0 0.362-0.086 0.487-0.251 0.214-0.283 0.164-0.683-0.113-0.902-1.935-1.566-2.458-3.105-2.551-4.154 0.274 0.156 0.582 0.258 0.913 0.258 1.045 0 1.89-0.886 1.89-1.972 0-1.088-0.846-1.966-1.89-1.966-0.233 0-0.451 0.062-0.657 0.143l0.004-0.011-0.218 0.101-0.018 0.011-0.007 0.006-0.299 0.214-0.134 0.131z"}),Object(B.createElement)("path",{d:"M4.517 0.595c-0.465 0.465-0.974 1.35-0.841 3.042 0.085 1.319 0.671 3.29 3.049 5.216 0.116 0.090 0.245 0.136 0.383 0.136 0.178 0 0.366-0.086 0.487-0.251 0.214-0.283 0.165-0.683-0.108-0.902-1.939-1.566-2.467-3.105-2.56-4.154 0.278 0.156 0.584 0.258 0.92 0.258 1.046 0 1.885-0.886 1.885-1.972 0-1.088-0.845-1.966-1.885-1.966-0.236 0-0.447 0.062-0.657 0.143l0.010-0.011-0.218 0.101-0.022 0.011-0.009 0.006-0.305 0.214-0.129 0.13z"})),quote_2:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M4.599 6.686c-0.39 0.397-0.822 1.149-0.705 2.586 0.068 1.123 0.561 2.799 2.561 4.434 0.096 0.080 0.205 0.115 0.321 0.115 0.153 0 0.306-0.071 0.409-0.214 0.181-0.239 0.135-0.58-0.095-0.766-1.626-1.332-2.066-2.639-2.144-3.531 0.231 0.132 0.488 0.218 0.769 0.218 0.874 0 1.587-0.753 1.587-1.677s-0.711-1.672-1.587-1.672c-0.196 0-0.38 0.054-0.552 0.121l0.003-0.010-0.184 0.085-0.016 0.010-0.006 0.006-0.252 0.181-0.109 0.114z"}),Object(B.createElement)("path",{d:"M0.725 6.686c-0.389 0.397-0.821 1.149-0.706 2.586 0.068 1.123 0.562 2.799 2.56 4.434 0.094 0.077 0.204 0.114 0.322 0.114 0.151 0 0.31-0.073 0.409-0.213 0.177-0.239 0.136-0.582-0.090-0.767-1.63-1.332-2.072-2.639-2.149-3.531 0.23 0.132 0.486 0.218 0.772 0.218 0.879 0 1.583-0.753 1.583-1.677s-0.71-1.672-1.583-1.672c-0.199 0-0.378 0.054-0.554 0.121l0.008-0.010-0.184 0.085-0.018 0.010-0.009 0.006-0.253 0.182-0.108 0.114z"}),Object(B.createElement)("path",{d:"M19.25 6.929h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z"}),Object(B.createElement)("path",{d:"M19.25 10.75h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z"}),Object(B.createElement)("path",{d:"M19.25 14.571h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z"})),quote_inline_icon:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 32 32"},Object(B.createElement)("path",{d:"M7.031 14c3.866 0 7 3.134 7 7s-3.134 7-7 7-7-3.134-7-7l-0.031-1c0-7.732 6.268-14 14-14v4c-2.671 0-5.182 1.040-7.071 2.929-0.364 0.364-0.695 0.751-0.995 1.157 0.357-0.056 0.724-0.086 1.097-0.086zM25.031 14c3.866 0 7 3.134 7 7s-3.134 7-7 7-7-3.134-7-7l-0.031-1c0-7.732 6.268-14 14-14v4c-2.671 0-5.182 1.040-7.071 2.929-0.364 0.364-0.695 0.751-0.995 1.157 0.358-0.056 0.724-0.086 1.097-0.086z"})),quote_tweet_icon:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 512 512"},Object(B.createElement)("path",{d:"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"})),at_the_rate:Object(B.createElement)("svg",{width:30,height:30,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M5.605 17.2c0-2.131 0.499-4.074 1.499-5.829 1-1.754 2.395-3.136 4.19-4.15 1.794-1.013 3.81-1.52 6.046-1.52 2.712 0 4.901 0.773 6.562 2.323 1.662 1.549 2.493 3.589 2.493 6.118 0 2.051-0.542 3.786-1.626 5.202-1.088 1.418-2.304 2.125-3.656 2.125-0.781 0-1.355-0.232-1.717-0.696-0.365-0.462-0.533-1.037-0.506-1.726-1.006 1.614-2.378 2.422-4.11 2.422-1.39 0-2.507-0.539-3.347-1.619-0.842-1.077-1.142-2.442-0.904-4.088 0.237-1.65 0.946-2.982 2.125-4.002 1.179-1.021 2.509-1.53 3.992-1.53s2.638 0.518 3.467 1.558c0.829 1.040 1.122 2.322 0.883 3.843l-0.494 3.2c-0.094 0.739 0.165 1.11 0.77 1.11 0.77 0 1.502-0.56 2.205-1.678 0.701-1.12 1.054-2.493 1.054-4.122 0-2.106-0.656-3.787-1.966-5.046-1.312-1.258-3.133-1.886-5.462-1.886-2.794 0-5.098 0.96-6.91 2.88-1.814 1.92-2.722 4.29-2.722 7.109 0 2.382 0.738 4.227 2.214 5.533 1.477 1.302 3.459 1.989 5.947 2.056l-0.376 1.509c-2.862-0.069-5.184-0.899-6.971-2.494-1.787-1.594-2.68-3.794-2.68-6.602zM19.15 15.85c0.17-1.15-0.014-2.118-0.558-2.899-0.542-0.781-1.28-1.173-2.214-1.173-0.933 0-1.79 0.392-2.571 1.173s-1.259 1.749-1.43 2.899c-0.171 1.152 0.013 2.122 0.557 2.91 0.542 0.787 1.282 1.181 2.214 1.181s1.79-0.394 2.573-1.181c0.781-0.789 1.256-1.758 1.43-2.91z"})),top_align:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M1.5 0.438v2.125h17v-2.125h-17zM5.75 8.938h3.188v10.625h2.125v-10.625h3.187l-4.25-4.25-4.25 4.25z"})),middle_align:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M18.5 11.063v-2.125h-17v2.125h17z"}),Object(B.createElement)("path",{d:"M12.707 3.519l-2.707-2.707-2.707 2.707h2.030v4.368h1.354v-4.368h2.030z"}),Object(B.createElement)("path",{d:"M7.293 16.48l2.707 2.707 2.707-2.707h-2.030v-4.368h-1.354v4.368h-2.030z"})),bottom_align:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M18.5 20v-2.125h-17v2.125h17zM14.25 11.5h-3.187v-10.625h-2.125v10.625h-3.188l4.25 4.25 4.25-4.25z"})),carousel_left:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 256 512",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z"})),carousel_right:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 256 512",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z"})),top_margin:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 1c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17 0h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M17 0.984h-14c-1.103 0-2 0.897-2 2v0.797h18v-0.797c0-1.103-0.897-2-2-2z"})),bottom_margin:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 1c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17 0h-14c-1.657 0-3 1.343-3 3v14c0 1.656 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M3 19.016h14c1.103 0 2-0.896 2-2v-0.797h-18v0.797c0 1.103 0.897 2 2 2z"})),left_margin:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.656 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M0.984 2.999v14c0 1.103 0.896 2 2 2h0.797v-18h-0.797c-1.104 0-2 0.897-2 2z"})),right_margin:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.656 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M19.015 16.999v-14c0-1.103-0.896-2-2-2h-0.797v18h0.797c1.104 0 2-0.896 2-2z"})),vertical_spacing:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.656-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M17 0.983h-14c-1.103 0-2 0.896-2 2v0.797h18v-0.797c0-1.103-0.896-2-2-2z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M3 19.031h14c1.103 0 2-0.896 2-2v-0.797h-18v0.797c0 1.104 0.896 2 2 2z"})),horizontal_spacing:Object(B.createElement)("svg",{width:20,height:20,className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#999",d:"M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.656 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M19.016 16.999v-14c0-1.103-0.896-2-2-2h-0.797v18h0.797c1.103 0 2-0.896 2-2z"}),Object(B.createElement)("path",{fill:"#575E67",d:"M0.968 2.999v14c0 1.103 0.896 2 2 2h0.797v-18h-0.797c-1.104 0-2 0.897-2 2z"})),form1:Object(B.createElement)("svg",{width:20,height:20,role:"img",viewBox:"0 0 58 58",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M41.5,2.1H7.8C4,2.1,1,5.2,1,8.9v40.5c0,3.7,3,6.8,6.8,6.8h18.6v-3.4H7.8c-1.9,0-3.4-1.5-3.4-3.4V8.9c0-1.9,1.5-3.4,3.4-3.4h33.8c1.9,0,3.4,1.5,3.4,3.4v19.8l3.4-3.4V8.9C48.3,5.2,45.2,2.1,41.5,2.1z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M38.1,15.6h-27v-3.4h27V15.6z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M38.1,23h-27v-3.4h27V23z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M35.2,29.6H13.5v-2.7h21.7V29.6z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M35.2,35.4H13.5v-2.7h21.7V35.4z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M35.2,27.8v6.3h-2.7v-6.3H35.2z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M16.2,27.9v6.3h-2.7v-6.3H16.2z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M43.4,31.9c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.4,0.4-0.8,0.7-1.1,1.3L31,34c-1.1-1.3-3-1.5-4.4-0.7c-0.8,0.6-1.4,1.4-1.5,2.4c-0.1,1,0.1,2,0.8,2.8l4,4.5c-0.7,0.3-1.2,0.6-1.8,1.2c-0.4,0.5-0.9,1.2-1,1.9c0,0.3,0.1,0.6,0.3,0.9l5.8,6.5c4.3,4.8,11.6,5.5,16.5,1.6c0.2-0.1,0.3-0.2,0.4-0.4c0.1-0.1,0.3-0.2,0.3-0.3c5-4.7,5.2-12.9,0.4-18.3l-3-3.4C46.7,31.4,44.8,31.1,43.4,31.9z M49.1,37.5c4,4.5,3.8,11.2-0.3,15.2c-0.3,0.2-0.4,0.4-0.7,0.6c-3.8,3.1-9.9,2.4-13.3-1.4l-5.3-6c0-0.2,0.1-0.2,0.2-0.3c0.3-0.3,0.7-0.5,1.3-0.6c0.5,0,0.9,0.2,1.2,0.6l4.1,4.6c0.4,0.5,1.1,0.5,1.6,0.1s0.5-1.1,0.1-1.6l-4.1-4.6l-1.1-1.3l-5.2-5.9c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.3-0.5,0.5-0.8c0.4-0.2,1.1-0.1,1.5,0.3l5.2,5.8l1.5,1.7c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-1.5-1.7c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8l0,0c0.5-0.3,1.1-0.1,1.5,0.3L49.1,37.5L49.1,37.5z"})),form2:Object(B.createElement)("svg",{width:20,height:20,role:"img",viewBox:"0 0 58 58",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M44.4,5.6H10.9c-4.1,0-7.4,3.3-7.4,7.4v33.5c0,4.1,3.3,7.4,7.4,7.4h15.4l3.7-1.9l-3.7-1.9H10.9c-2.1,0-3.7-1.7-3.7-3.7V13.1c0-2.1,1.7-3.7,3.7-3.7h33.5c2.1,0,3.7,1.7,3.7,3.7v30l0.1-0.1c0.4-2.3,1.7-4.4,3.6-5.7V13.1C51.9,9,48.5,5.6,44.4,5.6z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M14.7,19.6h26.1v-3.7H14.7V19.6z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M14.7,27h26.1v-3.7H14.7V27z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M14.7,34.5h26.1v-3.7H14.7V34.5z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M56.2,45l0-3.7c0-1-0.4-2-1.1-2.6c-0.7-0.7-1.6-1.1-2.6-1.1l-22.6,0.2c-1,0-4.6,0.5-5.3,1.1l-7.1,4.6l7.2,4.4c0,0,4.2,1,5.3,1l22.6-0.2C54.5,48.7,56.2,47,56.2,45z M29.9,47.1c-0.3,0-1.2-0.2-2.2-0.4l-0.1-6.8c0.8-0.1,1.7-0.2,2.2-0.2l17-0.2l0.1,7.4L29.9,47.1z"})),form3:Object(B.createElement)("svg",{width:20,height:20,role:"img",viewBox:"0 0 58 58",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M41.5,46.1h-27v-3.4h27V46.1z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M20.7,26.3l10.1,10.1l21.2-21.2L41.8,5.1L20.7,26.3z M44.2,12.8c0.7,0.7,0.7,1.8,0,2.5L32,27.6c-0.3,0.4-0.8,0.5-1.3,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.7-0.7-0.7-1.8,0-2.5l12.3-12.3C42.4,12.1,43.5,12.1,44.2,12.8z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M56,5.8l-4.8-4.8c-1.4-1.4-3.9-1.4-5.3,0l-1.6,1.6l10.1,10.1l1.5-1.5C57.4,9.7,57.4,7.3,56,5.8z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M46.9,56.3H4.6c-1,0-1.8-0.8-1.8-1.8V9.7c0-1,0.8-1.8,1.8-1.8H33c1,0,1.8,0.8,1.8,1.8c0,1-0.8,1.8-1.8,1.8H6.5v41.1h40.4c1.4,0,2.6-1.2,2.6-2.6V26.9c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8V50C53.2,53.5,50.4,56.3,46.9,56.3z"})),close:Object(B.createElement)("svg",{width:8,height:8,viewBox:"0 0 6 6",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M5.91683 0.5875L5.32933 0L3.00016 2.32917L0.670996 0L0.0834961 0.5875L2.41266 2.91667L0.0834961 5.24583L0.670996 5.83333L3.00016 3.50417L5.32933 5.83333L5.91683 5.24583L3.58766 2.91667L5.91683 0.5875Z"})),add:Object(B.createElement)("svg",{width:8,height:8,viewBox:"0 0 8 8",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M4.35613 0.231675L3.52528 0.231675V3.52561L0.231343 3.52561V4.35647L3.52528 4.35647V7.65041L4.35613 7.65041L4.35613 4.35647H7.65007V3.52561H4.35613L4.35613 0.231675Z"})),video_placeholder:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M14.7519 11.1679L11.5547 9.03647C10.8901 8.59343 10 9.06982 10 9.86852V14.1315C10 14.9302 10.8901 15.4066 11.5547 14.9635L14.7519 12.8321C15.3457 12.4362 15.3457 11.5638 14.7519 11.1679Z",stroke:"#1d2327",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z",stroke:"#1d2327",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"})),gallery_placeholder:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M6 14.6667L9.68329 10.9834C10.3857 10.281 11.5427 10.345 12.1632 11.1207L13.3242 12.5719C13.8866 13.2749 14.9055 13.4042 15.6257 12.8641L16.5103 12.2006C17.1738 11.703 18.1023 11.769 18.6888 12.3554L21 14.6667M6 6H4.66667C3.74619 6 3 6.74619 3 7.66667V19.3333C3 20.2538 3.74619 21 4.66667 21H16.3333C17.2538 21 18 20.2538 18 19.3333V18M17.6667 7.16667C17.6667 7.6269 17.2936 8 16.8333 8C16.3731 8 16 7.6269 16 7.16667C16 6.70643 16.3731 6.33333 16.8333 6.33333C17.2936 6.33333 17.6667 6.70643 17.6667 7.16667ZM7.66667 18H19.3333C20.2538 18 21 17.2538 21 16.3333V4.66667C21 3.74619 20.2538 3 19.3333 3H7.66667C6.74619 3 6 3.74619 6 4.66667V16.3333C6 17.2538 6.74619 18 7.66667 18Z",fill:"none",stroke:"#1d2327",strokeWidth:1.4})),bg_color:Object(B.createElement)("svg",{width:11,height:10,viewBox:"0 0 11 10",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M10.6927 1.08247C10.6927 1.08247 10.8502 0.615805 10.5119 0.289139C10.2027 -0.0141947 9.80023 0.149139 9.80023 0.149139C9.4444 0.324139 6.44023 2.17331 5.32606 3.39831C4.8244 3.95831 4.12439 5.60914 4.69023 6.20997C5.2269 6.78164 7.00023 6.11081 7.4844 5.62664C8.68606 4.42497 10.5236 1.44414 10.6927 1.08247ZM0.816895 9.29581C2.19939 8.38581 1.66856 7.30664 2.70106 6.58914C3.24356 6.20997 3.99606 6.22747 4.49773 6.75831C4.86523 7.14914 4.9644 8.25747 4.4044 8.77664C3.48856 9.62247 2.07106 9.68081 0.816895 9.29581Z"})),bg_gradient:Object(B.createElement)("svg",{width:12,height:12,viewBox:"0 0 10 10",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",fillRule:"evenodd",clipRule:"evenodd",d:"M1.11111 1.11111V8.88889H8.88889V1.11111H1.11111ZM0.555556 0C0.248731 0 0 0.248731 0 0.555556V9.44444C0 9.75127 0.248731 10 0.555556 10H9.44444C9.75127 10 10 9.75127 10 9.44444V0.555556C10 0.248731 9.75127 0 9.44444 0H0.555556Z"}),Object(B.createElement)("path",{fill:"#1d2327",d:"M1.66667 1.66667H7.77778L1.66667 7.77778V1.66667Z"})),bg_image:Object(B.createElement)("svg",{width:14,height:14,viewBox:"0 0 14 14",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M1.5752 0.699951H12.4252C12.9082 0.699951 13.3002 1.09195 13.3002 1.57495V12.425C13.3002 12.908 12.9082 13.3 12.4252 13.3H1.5752C1.0922 13.3 0.700195 12.908 0.700195 12.425V1.57495C0.700195 1.09195 1.0922 0.699951 1.5752 0.699951ZM11.9002 11.9V2.09995H2.1002V11.9H11.9002ZM7.0002 4.19995C7.0002 3.42995 6.3702 2.79995 5.6002 2.79995C4.8302 2.79995 4.2002 3.42995 4.2002 4.19995C4.2002 4.96995 4.8302 5.59995 5.6002 5.59995C6.3702 5.59995 7.0002 4.96995 7.0002 4.19995ZM9.1002 7.69995C9.1002 7.69995 9.1002 3.49995 11.2002 3.49995V10.5C11.2002 10.885 10.8852 11.2 10.5002 11.2H3.5002C3.1152 11.2 2.8002 10.885 2.8002 10.5V5.59995C4.2002 5.59995 4.9002 8.39995 4.9002 8.39995C4.9002 8.39995 5.6002 6.29995 7.0002 6.29995C8.4002 6.29995 9.1002 7.69995 9.1002 7.69995Z"})),bg_video:Object(B.createElement)("svg",{width:14,height:8,viewBox:"0 0 14 8",className:"uagb-editor-icons"},Object(B.createElement)("path",{fill:"#1d2327",d:"M8.4002 6.1V1.9C8.4002 1.13 7.7702 0.5 7.0002 0.5H2.1002C1.3302 0.5 0.700195 1.13 0.700195 1.9V6.1C0.700195 6.87 1.3302 7.5 2.1002 7.5H7.0002C7.7702 7.5 8.4002 6.87 8.4002 6.1ZM9.1002 4.35L13.3002 7.5V0.5L9.1002 3.65V4.35Z"})),dynamic_content:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"red",className:"uagb-editor-icons"},Object(B.createElement)("path",{stoke:"#1d2327",strokeWidth:1.4,d:"M4 7V17C4 19.2091 7.58172 21 12 21C16.4183 21 20 19.2091 20 17V7M4 7C4 9.20914 7.58172 11 12 11C16.4183 11 20 9.20914 20 7M4 7C4 4.79086 7.58172 3 12 3C16.4183 3 20 4.79086 20 7M20 12C20 14.2091 16.4183 16 12 16C7.58172 16 4 14.2091 4 12"})),separator:Object(B.createElement)("svg",{width:24,height:24,viewBox:"0 0 24 24",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{stokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round",fill:"none",stroke:"#fff",d:"M4 12H20M14 17L12 19L10 17M14 7L12 5L10 7"})),icon:Object(B.createElement)("svg",{width:24,height:25,viewBox:"0 0 24 25",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M21 12.6987C21 17.6693 16.9706 21.6987 12 21.6987C7.02944 21.6987 3 17.6693 3 12.6987C3 7.72817 7.02944 3.69873 12 3.69873C16.9706 3.69873 21 7.72817 21 12.6987Z",fill:"none",stroke:"#fff",strokeWidth:1.4,strokeLinecap:"round",strokeLinejoin:"round"}),Object(B.createElement)("path",{d:"M11.3217 9.12032C11.5991 8.5582 12.4007 8.5582 12.6781 9.12032L13.3798 10.5422C13.49 10.7654 13.7029 10.9201 13.9493 10.9559L15.5184 11.1839C16.1387 11.2741 16.3864 12.0364 15.9375 12.4739L14.8021 13.5807C14.6239 13.7544 14.5425 14.0048 14.5846 14.2501L14.8526 15.8129C14.9586 16.4307 14.3101 16.9019 13.7553 16.6102L12.3518 15.8723C12.1315 15.7565 11.8683 15.7565 11.6479 15.8723L10.2445 16.6102C9.68964 16.9019 9.04116 16.4307 9.14712 15.8129L9.41516 14.2501C9.45724 14.0048 9.3759 13.7544 9.19765 13.5807L8.06223 12.4739C7.61335 12.0364 7.86105 11.2741 8.48138 11.1839L10.0505 10.9559C10.2968 10.9201 10.5098 10.7654 10.6199 10.5422L11.3217 9.12032Z",fill:"none",stroke:"#fff",strokeWidth:1.4})),pencilIcon:Object(B.createElement)("svg",{width:20,height:20,viewBox:"0 0 20 20",fill:"none",className:"uagb-editor-icons"},Object(B.createElement)("path",{d:"M10 18.5H18M12.5 4L16 7M3.5 13L13.3595 2.79619C14.4211 1.73461 16.1422 1.7346 17.2038 2.79619C18.2654 3.85777 18.2654 5.57894 17.2038 6.64052L7 16.5L2 18L3.5 13Z",stroke:"#94A3B8",strokeWidth:1.8,strokeLinecap:"round",strokeLinejoin:"round"})),trashIcon:Object(B.createElement)("svg",{width:20,height:20,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 448 512",className:"trash-font"},Object(B.createElement)("path",{d:"M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z"}))},re=e=>React.createElement(React.Fragment,null,ne[e],React.createElement("div",{className:"spectra__legacy-icon--block-inserter-label"},"Legacy"));var se=ne;a(194);const ce=e=>{const t={borderTopWidth:"",borderRightWidth:"",borderBottomWidth:"",borderLeftWidth:"",borderTopWidthTablet:"",borderRightWidthTablet:"",borderBottomWidthTablet:"",borderLeftWidthTablet:"",borderTopWidthMobile:"",borderRightWidthMobile:"",borderBottomWidthMobile:"",borderLeftWidthMobile:"",borderTopLeftRadius:"",borderTopRightRadius:"",borderBottomRightRadius:"",borderBottomLeftRadius:"",borderTopLeftRadiusTablet:"",borderTopRightRadiusTablet:"",borderBottomRightRadiusTablet:"",borderBottomLeftRadiusTablet:"",borderTopLeftRadiusMobile:"",borderTopRightRadiusMobile:"",borderBottomRightRadiusMobile:"",borderBottomLeftRadiusMobile:"",borderRadiusUnit:"px",borderRadiusUnitTablet:"px",borderRadiusUnitMobile:"px",borderStyle:"",borderColor:"",borderHColor:""},a={};return[{devicePrefix:"",copyPastePrefix:""},{devicePrefix:"Tablet",copyPastePrefix:"-tablet"},{devicePrefix:"Mobile",copyPastePrefix:"-mobile"}].forEach(l=>{a[e+"BorderTopWidth"+l.devicePrefix]={type:"number",default:t["borderTopWidth"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-top-width"+l.copyPastePrefix}},a[e+"BorderLeftWidth"+l.devicePrefix]={type:"number",default:t["borderLeftWidth"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-left-width"+l.copyPastePrefix}},a[e+"BorderRightWidth"+l.devicePrefix]={type:"number",default:t["borderRightWidth"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-right-width"+l.copyPastePrefix}},a[e+"BorderBottomWidth"+l.devicePrefix]={type:"number",default:t["borderBottomWidth"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-bottom-width"+l.copyPastePrefix}},a[e+"BorderTopLeftRadius"+l.devicePrefix]={type:"number",default:t["borderTopLeftRadius"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-top-left-radius"+l.copyPastePrefix}},a[e+"BorderTopRightRadius"+l.devicePrefix]={type:"number",default:t["borderTopRightRadius"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-top-right-radius"+l.copyPastePrefix}},a[e+"BorderBottomLeftRadius"+l.devicePrefix]={type:"number",default:t["borderBottomLeftRadius"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-bottom-left-radius"+l.copyPastePrefix}},a[e+"BorderBottomRightRadius"+l.devicePrefix]={type:"number",default:t["borderBottomRightRadius"+l.devicePrefix],isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-bottom-right-radius"+l.copyPastePrefix}},a[e+"BorderRadiusUnit"+l.devicePrefix]={type:"string",default:t["borderRadiusUnit"+l.devicePrefix],UAGCopyPaste:{styleType:e+"-border-radius-unit"+l.copyPastePrefix}}}),a[e+"BorderLink"]={type:"boolean",default:!0,UAGCopyPaste:{styleType:e+"-border-link"}},a[e+"BorderRadiusLink"]={type:"boolean",default:!0,UAGCopyPaste:{styleType:e+"-border-radius-link"}},a[e+"BorderStyle"]={type:"string",default:t.borderStyle,isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-style"}},a[e+"BorderColor"]={type:"string",default:t.borderColor,isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-color"}},a[e+"BorderHColor"]={type:"string",default:t.borderHColor,isGBSStyle:!0,UAGCopyPaste:{styleType:e+"-border-hover-color"}},a},ue=function(e,t,a){let l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},n=arguments.length>6?arguments[6]:void 0,r=arguments.length>7&&void 0!==arguments[7]?arguments[7]:{};return"default"!==r[e+"BorderStyle"]&&(isNaN(t.value)||(""===r[e+"BorderTopWidth"]&&n({[e+"BorderTopWidth"]:t.value}),""===r[e+"BorderLeftWidth"]&&n({[e+"BorderLeftWidth"]:t.value}),""===r[e+"BorderRightWidth"]&&n({[e+"BorderRightWidth"]:t.value}),""===r[e+"BorderBottomWidth"]&&n({[e+"BorderBottomWidth"]:t.value}),r[t.label]=""),isNaN(a.value)||(""===r[e+"BorderTopLeftRadius"]&&n({[e+"BorderTopLeftRadius"]:a.value}),""===r[e+"BorderTopRightRadius"]&&n({[e+"BorderTopRightRadius"]:a.value}),""===r[e+"BorderBottomLeftRadius"]&&n({[e+"BorderBottomLeftRadius"]:a.value}),""===r[e+"BorderBottomRightRadius"]&&n({[e+"BorderBottomRightRadius"]:a.value}),r[a.label]=""),l.value&&(""===r[e+"BorderColor"]&&n({[e+"BorderColor"]:l.value}),r[l.label]=""),i.value&&(""===r[e+"BorderHColor"]&&n({[e+"BorderHColor"]:i.value}),r[i.label]=""),o.value&&(""===r[e+"BorderStyle"]&&n({[e+"BorderStyle"]:o.value}),r[o.label]="")),r};var pe={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},variationSelected:{type:"boolean",default:!1},variantType:{type:"string"},popupPositionH:{type:"string"},popupPositionV:{type:"string"},popupContentAlignmentV:{type:"string",default:"flex-start"},popupWidth:{type:"number",default:700},popupWidthTablet:{type:"number"},popupWidthMobile:{type:"number"},popupWidthUnit:{type:"string",default:"px"},popupWidthUnitTablet:{type:"string",default:"px"},popupWidthUnitMobile:{type:"string",default:"px"},popupHeight:{type:"number"},popupHeightTablet:{type:"number"},popupHeightMobile:{type:"number"},popupMaxHeight:{type:"number"},popupMaxHeightTablet:{type:"number"},popupMaxHeightMobile:{type:"number"},popupHeightUnit:{type:"string",default:"px"},popupHeightUnitTablet:{type:"string",default:"px"},popupHeightUnitMobile:{type:"string",default:"px"},hasFixedHeight:{type:"boolean",default:!1},popupBehaviour:{type:"number",default:"overlay"},hasOverlay:{type:"boolean",default:!0},isDismissable:{type:"boolean",default:!0},haltBackgroundInteraction:{type:"boolean",default:!0},willPushContent:{type:"boolean",default:!0},closeIcon:{type:"string",default:"xmark"},closeIconPosition:{type:"string",default:"top-right"},closeOverlayClick:{type:"boolean",default:!0},closeEscapePress:{type:"boolean",default:!0},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgb(149, 201, 242) 0%, rgb(206, 168, 240) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063a1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-mobile"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#ffffff75"},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},popupOverlayColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"overlay-bg-color"}},...ce("content"),contentBorderStyle:{type:"string",default:"default",UAGCopyPaste:{styleType:"content-border-style"}},closeIconSize:{type:"number",default:25},closeIconSizeTablet:{type:"number"},closeIconSizeMobile:{type:"number"},closeIconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"close-icon-color"}},closeIconColorHover:{type:"string",default:"",UAGCopyPaste:{styleType:"close-icon-color-hover"}},useSeparateBoxShadows:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},popupPaddingTop:{type:"number",default:32,UAGCopyPaste:{styleType:"container-top-padding-desktop"}},popupPaddingRight:{type:"number",default:32,UAGCopyPaste:{styleType:"container-right-padding-desktop"}},popupPaddingBottom:{type:"number",default:32,UAGCopyPaste:{styleType:"container-bottom-padding-desktop"}},popupPaddingLeft:{type:"number",default:32,UAGCopyPaste:{styleType:"container-left-padding-desktop"}},popupPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-tablet"}},popupPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-tablet"}},popupPaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-tablet"}},popupPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-tablet"}},popupPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-mobile"}},popupPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-mobile"}},popupPaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-mobile"}},popupPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-mobile"}},popupPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},popupPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},popupPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},popupPaddingLink:{type:"boolean",default:!0},popupMarginTop:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-desktop"}},popupMarginRight:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-desktop"}},popupMarginBottom:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},popupMarginLeft:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-desktop"}},popupMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-tablet"}},popupMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-tablet"}},popupMarginBottomTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},popupMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-tablet"}},popupMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-mobile"}},popupMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-mobile"}},popupMarginBottomMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},popupMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-mobile"}},popupMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},popupMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},popupMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},popupMarginLink:{type:"boolean",default:!0},closePaddingTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-desktop"}},closePaddingRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-desktop"}},closePaddingBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-desktop"}},closePaddingLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-desktop"}},closePaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},closePaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},closePaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},closePaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},closePaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},closePaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},closePaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},closePaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},closePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type"}},closePaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-tablet"}},closePaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-mobile"}},closePaddingLink:{type:"boolean",default:!0}},be=a(8),de=a(27),ge=a(2),me=Object(B.memo)(e=>{let{blockStyling:t}=e;return React.createElement("style",null,t)});function ye(){return(ye=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var fe=e=>t=>(Object(B.useEffect)(()=>{setTimeout(()=>{const e=document.getElementsByTagName("iframe");if(null==e||!e.length)return;const t=e=>{const t=document.getElementById(e);return!!t&&t.cloneNode(!0)},a=e=>{const t=document.getElementById(e);return!!t&&t.textContent},l=t("dashicons-css"),i=t("uagb-block-css-css"),o=t("uagb-slick-css-css"),n=t("uagb-swiper-css-css"),r=t("uagb-aos-css-css"),s=a("uagb-editor-styles"),c=a("spectra-pro-editor-styles"),u=a("uagb-blocks-editor-spacing-style"),p=a("uagb-blocks-editor-custom-css");for(const t of e)if(!uagb_blocks_info.exclude_crops_iframes.includes(t.name))try{var b;const e=(null==t||null===(b=t.contentWindow)||void 0===b?void 0:b.document)||(null==t?void 0:t.contentDocument);if(null==e||!e.head)continue;const a=(t,a)=>{t&&(e.getElementById(a)||e.head.appendChild(t))},d=(t,a)=>{if(!t)return;const l=e.getElementById(a);if(l)l.textContent=t;else{const l=document.createElement("style");l.setAttribute("id",a),l.textContent=t,e.head.appendChild(l)}};a(i,"uagb-block-css-css"),a(l,"dashicons-css"),a(o,"uagb-slick-css-css"),a(n,"uagb-swiper-css-css"),a(r,"uagb-aos-css-css"),d(s,"uagb-editor-styles"),d(c,"spectra-pro-editor-styles"),d(u,"uagb-blocks-editor-spacing-style"),d(p,"uagb-blocks-editor-custom-css")}catch(e){}})},[]),React.createElement(e,ye({},t,{deviceType:le()}))),he=e=>{const t=document.getElementById("block-"+e.clientId),a=document.getElementById(e.clientId+"-desktop-hide-block");if(e.attributes.UAGHideDesktop){if(null!=t&&null==a){const t=document.createElement("style");t.setAttribute("id",e.clientId+"-desktop-hide-block"),t.innerHTML=".uagb-block-"+e.clientId.substr(0,8)+".uagb-editor-preview-mode-desktop{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ",t.innerHTML+=".uagb-block-"+e.clientId.substr(0,8)+'.uagb-editor-preview-mode-desktop:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ',document.head.appendChild(t)}}else null!=a&&a.remove();const l=document.getElementsByClassName("is-tablet-preview"),i=document.getElementsByClassName("is-mobile-preview");if(0!==l.length||0!==i.length){var o,n;const t=l[0]||i[0];let a=!1;t&&(a=t.getElementsByTagName("iframe")[0]);const r=(null===(o=a)||void 0===o?void 0:o.contentWindow.document)||(null===(n=a)||void 0===n?void 0:n.contentDocument);if(!a||!r)return;const s=r.getElementById(e.clientId+"-tablet-hide-block");if(e.attributes.UAGHideTab){if(null==s){const t=document.createElement("style");t.setAttribute("id",e.clientId+"-tablet-hide-block"),t.innerHTML=".uagb-block-"+e.clientId.substr(0,8)+".uagb-editor-preview-mode-tablet{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ",t.innerHTML+=".uagb-block-"+e.clientId.substr(0,8)+'.uagb-editor-preview-mode-tablet:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ',setTimeout(()=>{r.head.appendChild(t)},500)}}else null!=s&&s.remove();const c=r.getElementById(e.clientId+"-mobile-hide-block");if(e.attributes.UAGHideMob){if(null==c){const t=document.createElement("style");t.setAttribute("id",e.clientId+"-mobile-hide-block"),t.innerHTML=".uagb-block-"+e.clientId.substr(0,8)+".uagb-editor-preview-mode-mobile{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ",t.innerHTML+=".uagb-block-"+e.clientId.substr(0,8)+'.uagb-editor-preview-mode-mobile:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ',setTimeout(()=>{r.head.appendChild(t)},500)}}else null!=c&&c.remove()}},ve=function(e){return(e=(e=(e=(e=e.replace("far ","")).replace("fas ","")).replace("fab ","")).replace("fa-","")).replace("fa ","")};function _e(){return(_e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Te,Ce=function(e){var t;let a,l=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};var o;if(e=ve(e),0!==uagb_blocks_info.font_awesome_5_polyfill.length&&(a=uagb_blocks_info.uagb_svg_icons[e],a||(a=uagb_blocks_info.uagb_svg_icons[null===(o=uagb_blocks_info.font_awesome_5_polyfill)||void 0===o?void 0:o[e]])),!a)return null;const n=null!==(t=a.svg)&&void 0!==t&&t.brands?a.svg.brands:a.svg.solid,r=`0 0 ${n.width} ${n.height}`,s=n.path;let c=null;switch(e){case"align-center":c={fillRule:"evenodd",clipRule:"evenodd",d:"M4 2H14V0H4V2ZM0 7H18V5H0V7ZM4 12H14V10H4V12Z"};break;case"align-left":c={fillRule:"evenodd",clipRule:"evenodd",d:"M10 2H0V0H10V2ZM18 7H0V5H18V7ZM10 12H0V10H10V12Z"};break;case"align-right":c={fillRule:"evenodd",clipRule:"evenodd",d:"M8 2H18V0H8V2ZM0 7H18V5H0V7ZM8 12H18V10H8V12Z"};break;case"align-justify":c={d:"M0 0H18V2H0V0ZM0 5.00001H18V7.00001H0V5.00001ZM0 10H18V12H0V10Z"}}return c?React.createElement("svg",{width:"18",height:"12",viewBox:"0 0 18 12",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",c)):l&&"not_set"!==l?React.createElement("svg",_e({width:"20",height:"20",xmlns:"https://www.w3.org/2000/svg",viewBox:r},i),React.createElement("path",{d:s})):React.createElement("svg",_e({xmlns:"https://www.w3.org/2000/svg",viewBox:r},i),React.createElement("path",{d:s}))},Se=Object(B.memo)(e=>{const{clientId:t,className:a,attributes:l,setAttributes:i,deviceType:o}=e,{block_id:s,variantType:c,isDismissable:u,closeIcon:p}=l,{getBlockOrder:b}=Object(n.select)("core/block-editor"),d=["uagb/how-to-step","uagb/buttons-child","uagb/faq-child","uagb/content-timeline-child","uagb/icon-list-child","uagb/social-share-child","uagb/restaurant-menu-child","uagb/tabs-child","uagb/post-image","uagb/post-taxonomy","uagb/post-title","uagb/post-meta","uagb/post-excerpt","uagb/post-button","uagb/forms-name","uagb/forms-email","uagb/forms-hidden","uagb/forms-phone","uagb/forms-textarea","uagb/forms-url","uagb/forms-select","uagb/forms-radio","uagb/forms-checkbox","uagb/forms-toggle","uagb/forms-date","uagb/forms-accept","uagb/modal","uagb/slider-child","uagb/popup-builder"],g=Object(ge.useBlockProps)({className:Z([a,"uagb-block-"+s,"uagb-editor-preview-mode-"+o.toLowerCase(),"uagb-popup-builder"])}),m="popup"===c?Object(r.__)("Close Popup","ultimate-addons-for-gutenberg"):Object(r.__)("Close Info Bar","ultimate-addons-for-gutenberg"),y=b(t).length>0,f={allowedBlocks:Object(be.getBlockTypes)().map(e=>e.name).filter(e=>!d.includes(e)),templateLock:!1,renderAppender:y?void 0:ge.InnerBlocks.ButtonBlockAppender};return React.createElement("div",g,React.createElement("div",{className:Z(["uagb-popup-builder__wrapper","uagb-popup-builder__wrapper--"+c])},React.createElement("div",{className:Z(["uagb-popup-builder__container","uagb-popup-builder__container--"+c])},React.createElement(ge.InnerBlocks,f)),u&&p&&React.createElement("button",{className:"uagb-popup-builder__close","aria-label":m},Ce(p,i))))}),we=a(11),ke=a.n(we),Pe=a(79),xe=0,Ae={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ge={};Ge.locals=Pe.a.locals||{},Ge.use=function(){return xe++||(Te=ke()(Pe.a,Ae)),Ge},Ge.unuse=function(){xe>0&&!--xe&&(Te(),Te=null)};var Me=Ge,Re=a(4),Be=a.n(Re);const Ue=e=>{Object(B.useLayoutEffect)(()=>(Me.use(),()=>{Me.unuse()}),[]);const t=te("uagSettingState"),{defaultTab:a,children:l,tabs:i}=e,[o,s]=Object(B.useState)(a||i[0]),c=Object(B.useRef)();let u;Object(B.useEffect)(()=>{u=c.current.closest(".components-panel")});const p=()=>{const e=document.querySelector(".uagb-inspector-tabs-container");let t=document.querySelector(".components-panel__body.uagb-dynamic-content-wrap"),a=document.querySelector(".uagb-tab-content-general"),l=document.querySelector(".uagb-tab-content-style"),i=document.querySelector(".uagb-tab-content-advance");if(e){const o=e.parentElement;o&&(t=t||"",a=a||"",l=l||"",i=i||"",o.prepend(t,e,a,l,i))}};Object(B.useEffect)(()=>{var e,a;p();const{getSelectedBlock:l}=Object(n.select)("core/block-editor"),i=null===(e=l())||void 0===e?void 0:e.name;var r,c;return t&&t[i]&&o!==(null===(a=t[i])||void 0===a?void 0:a.selectedTab)?(s((null===(r=t[i])||void 0===r?void 0:r.selectedTab)||"general"),u&&u.setAttribute("data-uagb-tab",(null===(c=t[i])||void 0===c?void 0:c.selectedTab)||"general")):u&&u.setAttribute("data-uagb-tab","general"),()=>{if(u){const e=u.querySelector(".uagb-inspector-tabs-container");e&&null!==e||u.removeAttribute("data-uagb-tab")}}},[]);const b=e=>{var a;p(),s(e),Object(j.doAction)("uag_inspector_change_tab",e),u&&u.setAttribute("data-uagb-tab",e);const{getSelectedBlock:l}=Object(n.select)("core/block-editor"),i=null===(a=l())||void 0===a?void 0:a.name,o={...t,[i]:{selectedTab:e}},r=te();r&&r.setItem("uagSettingState",JSON.stringify(o))};return React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-inspector-tabs-container"},React.createElement("div",{ref:c,className:Be()("uagb-inspector-tabs","uagb-inspector-tabs-count-"+i.length,o)},i.indexOf("general")>-1&&React.createElement("div",{className:Be()({"uagb-active":"general"===o}),onClick:()=>b("general")},React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",width:"16",height:"15"},React.createElement("path",{fillRule:"nonzero",d:"M14.346 0H1.654C1.017 0 .5.517.5 1.154v12.692C.5 14.483 1.017 15 1.654 15h12.692c.637 0 1.154-.517 1.154-1.154V1.154C15.5.517 14.983 0 14.346 0zm-5.77 13.846v-5.77h5.77v5.77h-5.77z"})),React.createElement("h5",null,Object(r.__)("General","ultimate-addons-for-gutenberg"))),i.indexOf("style")>-1&&React.createElement("div",{className:Be()({"uagb-active":"style"===o}),onClick:()=>b("style")},React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",width:"18",height:"21"},React.createElement("g",{fillRule:"nonzero"},React.createElement("path",{d:"M15.12 12.091a.814.814 0 00-.68-.378.814.814 0 00-.68.378c-.531.863-2.252 3.807-2.252 5.09 0 1.598 1.317 2.901 2.932 2.901s2.933-1.303 2.933-2.902c0-1.303-1.722-4.226-2.253-5.089zm-1.041 3.828c-.043.063-.744 1.198-.213 1.976a.52.52 0 01.064.358.409.409 0 01-.191.294.608.608 0 01-.255.084.476.476 0 01-.383-.21c-.871-1.283.149-2.902.192-2.986a.517.517 0 01.297-.21.534.534 0 01.361.063c.192.126.255.42.128.63zM13.314 10.388l1.36-.147c.446-.042.807-.337.935-.736.127-.4.042-.862-.276-1.157L7.258.294c-.255-.252-.68-.252-.957 0a.68.68 0 000 .947l.34.336-5.1 5.047C.82 7.339.5 8.348.67 9.379c.128.652.489 1.24.956 1.703l3.082 3.05c.467.462 1.062.82 1.72.946a3.134 3.134 0 002.785-.863l3.612-3.575a.74.74 0 01.489-.252zM7.576 2.502l5.759 5.7H2.073c.085-.232.212-.463.403-.653l5.1-5.047z"}))),React.createElement("h5",null,Object(r.__)("Style","ultimate-addons-for-gutenberg"))),i.indexOf("advance")>-1&&React.createElement("div",{className:Be()({"uagb-active":"advance"===o}),onClick:()=>b("advance")},React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",width:"17",height:"16"},React.createElement("path",{fillRule:"nonzero",d:"M15.666 6.325c-.277-.05-.572-.082-.85-.115a6.385 6.385 0 00-.571-1.389c.18-.229.343-.457.523-.686a.994.994 0 00-.098-1.291l-.997-.997a.994.994 0 00-1.291-.098c-.23.163-.458.343-.687.523a6.954 6.954 0 00-1.39-.589c-.032-.277-.08-.572-.113-.85A.987.987 0 009.21 0H7.805a1 1 0 00-.98.834c-.05.277-.082.572-.115.85-.474.13-.947.326-1.389.571-.229-.18-.457-.343-.686-.523a.994.994 0 00-1.291.098l-.997.997a.994.994 0 00-.098 1.291c.163.23.343.458.523.687a6.954 6.954 0 00-.589 1.39c-.277.032-.572.08-.85.113A.987.987 0 00.5 7.29v1.406a1 1 0 00.834.98c.277.05.572.082.85.115.13.474.326.947.571 1.389-.18.229-.343.457-.523.686a.994.994 0 00.098 1.291l.997.997a.994.994 0 001.291.098c.23-.163.458-.343.687-.523.441.245.899.442 1.39.589.032.294.08.572.113.85.066.473.49.833.981.833h1.406a1 1 0 00.98-.834c.05-.277.082-.572.115-.85.474-.13.947-.326 1.389-.571.229.18.457.343.686.523a.994.994 0 001.291-.098l.997-.997a.994.994 0 00.098-1.291 19.095 19.095 0 00-.523-.687c.245-.441.442-.899.589-1.39.277-.032.572-.08.85-.113a.987.987 0 00.833-.981V7.305a1 1 0 00-.834-.98zM8.492 11.57a3.571 3.571 0 01-3.563-3.563 3.571 3.571 0 013.563-3.563 3.571 3.571 0 013.563 3.563 3.571 3.571 0 01-3.563 3.563z"})),React.createElement("h5",null,Object(r.__)("Advanced","ultimate-addons-for-gutenberg"))))),Array.isArray(l)&&B.Children.map(l,(e,t)=>{if(!e)return e;if(!e.key)throw new Error("props.key not found in <InspectorTab />, you must use `key` prop");return Object(B.cloneElement)(e,{index:t,isActive:e.key===o})}))};Ue.defaultProps={defaultTab:"general",tabs:["general","style","advance"]};var Ee=Ue,Oe=e=>{var t;let{globalBlockStyleId:a,globalBlockStyleName:l}=e;return"enabled"===(null===(t=uagb_blocks_info)||void 0===t?void 0:t.uag_enable_gbs_extension)&&a&&l?React.createElement("div",{className:"spectra-gbs-notice"},React.createElement("span",{className:"spectra-gbs-notice-text"},Object(r.__)("Global block style added","ultimate-addons-for-gutenberg"))):null},Le=a(3);function He(){return(He=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var je,Fe=Object(B.memo)(e=>{var t;const{children:a,className:l="",panelId:i=null}=e,o=Object(B.useRef)(null),{getSelectedBlock:r}=Object(n.select)("core/block-editor"),s=null===(t=r())||void 0===t?void 0:t.name,c=te("uagSettingState"),[u,p]=Object(B.useState)("style");Object(B.useEffect)(()=>{p((()=>{var e,t,a,l;let i="style";return null!=o&&null!==(e=o.current)&&void 0!==e&&null!==(t=e.parentElement)&&void 0!==t&&t.classList.contains("uagb-tab-content-general")&&(i="general"),null!=o&&null!==(a=o.current)&&void 0!==a&&null!==(l=a.parentElement)&&void 0!==l&&l.classList.contains("uagb-tab-content-advance")&&(i="advance"),i})())},[o]),Object(B.useEffect)(()=>{o&&(null==o||o.current.setAttribute("data-panel-id",i))},[]);let b="";null!==i?b=i:null!=e&&e.title&&(b=e.title.toLowerCase().replace(/[^a-zA-Z ]/g,"").replace(/\s+/g,"-"));const d=s.split("/").pop(),g=Object(j.applyFilters)(`spectra.${d}.${u}.${b}.before`,"",s),m=Object(j.applyFilters)(`spectra.${d}.${u}.${b}`,"",s);return React.createElement(Le.PanelBody,He({},e,{onToggle:()=>{var e,t,a,l,i;"enabled"===uagb_blocks_info.collapse_panels&&function(e){const t=[];let a=e.parentNode.firstChild;for(;a;)1===a.nodeType&&a!==e&&a.classList.contains("is-opened")&&t.push(a),a=a.nextSibling;return t}(o.current).forEach(e=>{e.querySelector(".components-button").click()});let n=!1;null==o||null===(e=o.current)||void 0===e||e.classList.forEach((function(e){e.includes("uag-advance-panel-body")&&(n=e)}));let r="style";null!=o&&null!==(t=o.current)&&void 0!==t&&null!==(a=t.parentElement)&&void 0!==a&&a.classList.contains("uagb-tab-content-general")&&(r="general"),null!=o&&null!==(l=o.current)&&void 0!==l&&null!==(i=l.parentElement)&&void 0!==i&&i.classList.contains("uagb-tab-content-advance")&&(r="advance");const u={...c,[s]:{...null==c?void 0:c[s],selectedPanel:n,selectedTab:r}},p=te();p&&p.setItem("uagSettingState",JSON.stringify(u))},ref:o,className:`uag-advance-panel-body-${b} ${l}`}),g,a,m)}),ze=function(e){let t="";switch(e){case"align-center":t=React.createElement("svg",{id:"icon-format_align_center",viewBox:"0 0 24 24"},React.createElement("path",{d:"M3 3h18v2.016h-18v-2.016zM6.984 6.984h10.031v2.016h-10.031v-2.016zM3 12.984v-1.969h18v1.969h-18zM3 21v-2.016h18v2.016h-18zM6.984 15h10.031v2.016h-10.031v-2.016z"}));break;case"align-left":t=React.createElement("svg",{id:"icon-format_align_left",viewBox:"0 0 24 24"},React.createElement("path",{d:"M3 3h18v2.016h-18v-2.016zM3 21v-2.016h18v2.016h-18zM3 12.984v-1.969h18v1.969h-18zM15 6.984v2.016h-12v-2.016h12zM15 15v2.016h-12v-2.016h12z"}));break;case"align-right":t=React.createElement("svg",{id:"icon-format_align_right",viewBox:"0 0 24 24"},React.createElement("path",{d:"M3 3h18v2.016h-18v-2.016zM9 9v-2.016h12v2.016h-12zM3 12.984v-1.969h18v1.969h-18zM9 17.016v-2.016h12v2.016h-12zM3 21v-2.016h18v2.016h-18z"}));break;case"flex-row-start":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}),React.createElement("path",{d:"M5 6L9 6C9.53027 6.00053 10.0387 6.21141 10.4136 6.58637C10.7886 6.96133 10.9995 7.46973 11 8L11 23C10.9995 23.5303 10.7886 24.0387 10.4136 24.4136C10.0387 24.7886 9.53027 24.9995 9 25H5C4.46973 24.9995 3.96133 24.7886 3.58637 24.4136C3.21141 24.0387 3.00053 23.5303 3 23L3 8C3.00053 7.46973 3.21141 6.96133 3.58637 6.58637C3.96133 6.21141 4.46973 6.00053 5 6Z"}),React.createElement("path",{d:"M14 6L18 6C18.5303 6.00053 19.0387 6.21141 19.4136 6.58637C19.7886 6.96133 19.9995 7.46973 20 8L20 23C19.9995 23.5303 19.7886 24.0387 19.4136 24.4136C19.0387 24.7886 18.5303 24.9995 18 25H14C13.4697 24.9995 12.9613 24.7886 12.5864 24.4136C12.2114 24.0387 12.0005 23.5303 12 23L12 8C12.0005 7.46973 12.2114 6.96133 12.5864 6.58637C12.9613 6.21141 13.4697 6.00053 14 6Z"}));break;case"flex-row-end":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M14 6L18 6C18.5303 6.00053 19.0387 6.21141 19.4136 6.58637C19.7886 6.96133 19.9995 7.46973 20 8L20 23C19.9995 23.5303 19.7886 24.0387 19.4136 24.4136C19.0387 24.7886 18.5303 24.9995 18 25H14C13.4697 24.9995 12.9613 24.7886 12.5864 24.4136C12.2114 24.0387 12.0005 23.5303 12 23L12 8C12.0005 7.46973 12.2114 6.96133 12.5864 6.58637C12.9613 6.21141 13.4697 6.00053 14 6Z"}),React.createElement("path",{d:"M23 6L27 6C27.5303 6.00053 28.0387 6.21141 28.4136 6.58637C28.7886 6.96133 28.9995 7.46973 29 8L29 23C28.9995 23.5303 28.7886 24.0387 28.4136 24.4136C28.0387 24.7886 27.5303 24.9995 27 25H23C22.4697 24.9995 21.9613 24.7886 21.5864 24.4136C21.2114 24.0387 21.0005 23.5303 21 23L21 8C21.0005 7.46973 21.2114 6.96133 21.5864 6.58637C21.9613 6.21141 22.4697 6.00053 23 6Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}));break;case"flex-row-center":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}),React.createElement("path",{d:"M9 6L13 6C13.5303 6.00053 14.0387 6.21141 14.4136 6.58637C14.7886 6.96133 14.9995 7.46973 15 8L15 23C14.9995 23.5303 14.7886 24.0387 14.4136 24.4136C14.0387 24.7886 13.5303 24.9995 13 25H9C8.46973 24.9995 7.96133 24.7886 7.58637 24.4136C7.21141 24.0387 7.00053 23.5303 7 23L7 8C7.00053 7.46973 7.21141 6.96133 7.58637 6.58637C7.96133 6.21141 8.46973 6.00053 9 6Z"}),React.createElement("path",{d:"M19 6L23 6C23.5303 6.00053 24.0387 6.21141 24.4136 6.58637C24.7886 6.96133 24.9995 7.46973 25 8L25 23C24.9995 23.5303 24.7886 24.0387 24.4136 24.4136C24.0387 24.7886 23.5303 24.9995 23 25H19C18.4697 24.9995 17.9613 24.7886 17.5864 24.4136C17.2114 24.0387 17.0005 23.5303 17 23L17 8C17.0005 7.46973 17.2114 6.96133 17.5864 6.58637C17.9613 6.21141 18.4697 6.00053 19 6Z"}));break;case"flex-row-strech":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M19 6L26.9988 6C27.5291 6.00053 28.0375 6.21141 28.4125 6.58637C28.7874 6.96133 28.9983 7.46973 28.9988 8L28.9988 23C28.9983 23.5303 28.7874 24.0387 28.4125 24.4136C28.0375 24.7886 27.5291 24.9995 26.9988 25L19 25C18.4698 24.9995 17.9614 24.7886 17.5864 24.4136C17.2114 24.0387 17.0006 23.5303 17 23L17 8C17.0006 7.46973 17.2114 6.96133 17.5864 6.58637C17.9614 6.21141 18.4698 6.00053 19 6Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}),React.createElement("path",{d:"M5.00021 6L12.999 6C13.5293 6.00053 14.0377 6.21141 14.4127 6.58637C14.7876 6.96133 14.9985 7.46973 14.999 8L14.999 23C14.9985 23.5303 14.7876 24.0387 14.4127 24.4136C14.0377 24.7886 13.5293 24.9995 12.999 25L5.00021 25C4.46993 24.9995 3.96153 24.7886 3.58658 24.4136C3.21162 24.0387 3.00073 23.5303 3.00021 23L3.00021 8C3.00074 7.46973 3.21162 6.96133 3.58658 6.58637C3.96153 6.21141 4.46994 6.00053 5.00021 6Z"}));break;case"flex-row-space-between":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}),React.createElement("path",{d:"M5 6L9 6C9.53027 6.00053 10.0387 6.21141 10.4136 6.58637C10.7886 6.96133 10.9995 7.46973 11 8L11 23C10.9995 23.5303 10.7886 24.0387 10.4136 24.4136C10.0387 24.7886 9.53027 24.9995 9 25L5 25C4.46973 24.9995 3.96133 24.7886 3.58637 24.4136C3.21141 24.0387 3.00053 23.5303 3 23L3 8C3.00053 7.46973 3.21141 6.96133 3.58637 6.58637C3.96133 6.21141 4.46973 6.00053 5 6Z"}),React.createElement("path",{d:"M23 6L27 6C27.5303 6.00053 28.0387 6.21141 28.4136 6.58637C28.7886 6.96133 28.9995 7.46973 29 8L29 23C28.9995 23.5303 28.7886 24.0387 28.4136 24.4136C28.0387 24.7886 27.5303 24.9995 27 25L23 25C22.4697 24.9995 21.9613 24.7886 21.5864 24.4136C21.2114 24.0387 21.0005 23.5303 21 23L21 8C21.0005 7.46973 21.2114 6.96133 21.5864 6.58637C21.9613 6.21141 22.4697 6.00053 23 6Z"}));break;case"flex-row-space-around":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"}),React.createElement("path",{d:"M7 6L11 6C11.5303 6.00053 12.0387 6.21141 12.4136 6.58637C12.7886 6.96133 12.9995 7.46973 13 8L13 23C12.9995 23.5303 12.7886 24.0387 12.4136 24.4136C12.0387 24.7886 11.5303 24.9995 11 25L7 25C6.46973 24.9995 5.96133 24.7886 5.58637 24.4136C5.21141 24.0387 5.00053 23.5303 5 23L5 8C5.00053 7.46973 5.21141 6.96133 5.58637 6.58637C5.96133 6.21141 6.46973 6.00053 7 6Z"}),React.createElement("path",{d:"M21 6L25 6C25.5303 6.00053 26.0387 6.21141 26.4136 6.58637C26.7886 6.96133 26.9995 7.46973 27 8L27 23C26.9995 23.5303 26.7886 24.0387 26.4136 24.4136C26.0387 24.7886 25.5303 24.9995 25 25L21 25C20.4697 24.9995 19.9613 24.7886 19.5864 24.4136C19.2114 24.0387 19.0005 23.5303 19 23L19 8C19.0005 7.46973 19.2114 6.96133 19.5864 6.58637C19.9613 6.21141 20.4697 6.00053 21 6Z"}));break;case"flex-row-space-evenly":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31 31.5C30.4477 31.5 30 31.0523 30 30.5L30 1C30 0.447716 30.4477 -1.35705e-07 31 -8.74228e-08C31.5523 -3.91405e-08 32 0.447716 32 1L32 30.5C32 31.0523 31.5523 31.5 31 31.5Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 31.5C0.447715 31.5 3.91405e-08 31.0523 8.74228e-08 30.5L2.66639e-06 1C2.71468e-06 0.447716 0.447718 -1.35705e-07 1 -8.74228e-08C1.55229 -3.91405e-08 2 0.447716 2 1L2 30.5C2 31.0523 1.55228 31.5 1 31.5Z"}),React.createElement("path",{d:"M12 25.5L8 25.5C7.46973 25.4995 6.96133 25.2886 6.58637 24.9136C6.21141 24.5387 6.00053 24.0303 6 23.5L6 8.5C6.00053 7.96973 6.21141 7.46133 6.58637 7.08637C6.96133 6.71141 7.46973 6.50053 8 6.5L12 6.5C12.5303 6.50053 13.0387 6.71141 13.4136 7.08637C13.7886 7.46133 13.9995 7.96973 14 8.5L14 23.5C13.9995 24.0303 13.7886 24.5387 13.4136 24.9136C13.0387 25.2886 12.5303 25.4995 12 25.5Z"}),React.createElement("path",{d:"M24 25.5L20 25.5C19.4697 25.4995 18.9613 25.2886 18.5864 24.9136C18.2114 24.5387 18.0005 24.0303 18 23.5L18 8.5C18.0005 7.96973 18.2114 7.46133 18.5864 7.08637C18.9613 6.71141 19.4697 6.50053 20 6.5L24 6.5C24.5303 6.50053 25.0387 6.71141 25.4136 7.08637C25.7886 7.46133 25.9995 7.96973 26 8.5L26 23.5C25.9995 24.0303 25.7886 24.5387 25.4136 24.9136C25.0387 25.2886 24.5303 25.4995 24 25.5Z"}));break;case"flex-column-start":t=React.createElement("svg",{width:"32",height:"33",viewBox:"0 0 32 33",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"}),React.createElement("path",{d:"M25.5 5.75L25.5 9.75C25.4995 10.2803 25.2886 10.7887 24.9136 11.1636C24.5387 11.5386 24.0303 11.7495 23.5 11.75L8.5 11.75C7.96973 11.7495 7.46133 11.5386 7.08637 11.1636C6.71141 10.7887 6.50053 10.2803 6.5 9.75L6.5 5.75C6.50053 5.21973 6.71141 4.71133 7.08637 4.33637C7.46133 3.96141 7.96973 3.75053 8.5 3.75L23.5 3.75C24.0303 3.75053 24.5387 3.96141 24.9136 4.33637C25.2886 4.71133 25.4995 5.21973 25.5 5.75Z"}),React.createElement("path",{d:"M25.5 14.75L25.5 18.75C25.4995 19.2803 25.2886 19.7887 24.9136 20.1636C24.5387 20.5386 24.0303 20.7495 23.5 20.75L8.5 20.75C7.96973 20.7495 7.46133 20.5386 7.08637 20.1636C6.71141 19.7887 6.50053 19.2803 6.5 18.75L6.5 14.75C6.50053 14.2197 6.71141 13.7113 7.08637 13.3364C7.46133 12.9614 7.96973 12.7505 8.5 12.75L23.5 12.75C24.0303 12.7505 24.5387 12.9614 24.9136 13.3364C25.2886 13.7113 25.4995 14.2197 25.5 14.75Z"}));break;case"flex-column-end":t=React.createElement("svg",{width:"32",height:"33",viewBox:"0 0 32 33",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M30.5 2.75C31.0523 2.75 31.5 2.30228 31.5 1.75C31.5 1.19772 31.0523 0.75 30.5 0.75H1C0.447716 0.75 0 1.19771 0 1.75C0 2.30228 0.447716 2.75 1 2.75L30.5 2.75ZM30.5 32.75C31.0523 32.75 31.5 32.3023 31.5 31.75C31.5 31.1977 31.0523 30.75 30.5 30.75L1 30.75C0.447716 30.75 0 31.1977 0 31.75C0 32.3023 0.447716 32.75 1 32.75L30.5 32.75ZM25.5 14.75V18.75C25.4995 19.2803 25.2886 19.7887 24.9136 20.1636C24.5387 20.5386 24.0303 20.7495 23.5 20.75L8.5 20.75C7.96973 20.7495 7.46133 20.5386 7.08637 20.1636C6.71141 19.7887 6.50053 19.2803 6.5 18.75L6.5 14.75C6.50053 14.2197 6.71141 13.7113 7.08637 13.3364C7.46133 12.9614 7.96973 12.7505 8.5 12.75L23.5 12.75C24.0303 12.7505 24.5387 12.9614 24.9136 13.3364C25.2886 13.7113 25.4995 14.2197 25.5 14.75ZM25.5 27.75V23.75C25.4995 23.2197 25.2886 22.7113 24.9136 22.3364C24.5387 21.9614 24.0303 21.7505 23.5 21.75L8.5 21.75C7.96973 21.7505 7.46133 21.9614 7.08637 22.3364C6.71141 22.7113 6.50053 23.2197 6.5 23.75L6.5 27.75C6.50053 28.2803 6.71141 28.7887 7.08637 29.1636C7.46133 29.5386 7.96973 29.7495 8.5 29.75L23.5 29.75C24.0303 29.7495 24.5387 29.5386 24.9136 29.1636C25.2886 28.7887 25.4995 28.2803 25.5 27.75Z"}));break;case"flex-column-center":t=React.createElement("svg",{width:"32",height:"33",viewBox:"0 0 32 33",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"}),React.createElement("path",{d:"M25.5 9.75L25.5 13.75C25.4995 14.2803 25.2886 14.7887 24.9136 15.1636C24.5387 15.5386 24.0303 15.7495 23.5 15.75L8.5 15.75C7.96973 15.7495 7.46133 15.5386 7.08637 15.1636C6.71141 14.7887 6.50053 14.2803 6.5 13.75L6.5 9.75C6.50053 9.21973 6.71141 8.71133 7.08637 8.33637C7.46133 7.96141 7.96973 7.75053 8.5 7.75L23.5 7.75C24.0303 7.75053 24.5387 7.96141 24.9136 8.33637C25.2886 8.71133 25.4995 9.21973 25.5 9.75Z"}),React.createElement("path",{d:"M25.5 19.75L25.5 23.75C25.4995 24.2803 25.2886 24.7887 24.9136 25.1636C24.5387 25.5386 24.0303 25.7495 23.5 25.75L8.5 25.75C7.96973 25.7495 7.46133 25.5386 7.08637 25.1636C6.71141 24.7887 6.50053 24.2803 6.5 23.75L6.5 19.75C6.50053 19.2197 6.71141 18.7113 7.08637 18.3364C7.46133 17.9614 7.96973 17.7505 8.5 17.75L23.5 17.75C24.0303 17.7505 24.5387 17.9614 24.9136 18.3364C25.2886 18.7113 25.4995 19.2197 25.5 19.75Z"}));break;case"flex-column-strech":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M30.5 2C31.0523 2 31.5 1.55228 31.5 1C31.5 0.447715 31.0523 0 30.5 0H1C0.447716 0 0 0.447714 0 0.999999C0 1.55228 0.447716 2 1 2L30.5 2ZM30.5 32C31.0523 32 31.5 31.5523 31.5 31C31.5 30.4477 31.0523 30 30.5 30L1 30C0.447716 30 0 30.4477 0 31C0 31.5523 0.447716 32 1 32L30.5 32ZM25.5 5.00018V12.999C25.4995 13.5293 25.2886 14.0377 24.9136 14.4126C24.5387 14.7876 24.0303 14.9985 23.5 14.999L8.5 14.999C7.96973 14.9985 7.46133 14.7876 7.08637 14.4126C6.71141 14.0377 6.50053 13.5293 6.5 12.999L6.5 5.00017C6.50053 4.4699 6.71141 3.9615 7.08637 3.58654C7.46133 3.21159 7.96973 3.0007 8.5 3.00017L23.5 3.00018C24.0303 3.0007 24.5387 3.21159 24.9136 3.58655C25.2886 3.9615 25.4995 4.4699 25.5 5.00018ZM25.5 18.9999V26.9987C25.4995 27.529 25.2886 28.0374 24.9136 28.4124C24.5387 28.7873 24.0303 28.9982 23.5 28.9987L8.5 28.9987C7.96973 28.9982 7.46133 28.7873 7.08637 28.4124C6.71141 28.0374 6.50053 27.529 6.5 26.9987L6.5 18.9999C6.50053 18.4697 6.71141 17.9613 7.08637 17.5863C7.46133 17.2113 7.96973 17.0005 8.5 16.9999L23.5 16.9999C24.0303 17.0005 24.5387 17.2113 24.9136 17.5863C25.2886 17.9613 25.4995 18.4697 25.5 18.9999Z"}));break;case"flex-column-space-between":t=React.createElement("svg",{width:"32",height:"33",viewBox:"0 0 32 33",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"}),React.createElement("path",{d:"M25.5 5.75L25.5 9.75C25.4995 10.2803 25.2886 10.7887 24.9136 11.1636C24.5387 11.5386 24.0303 11.7495 23.5 11.75L8.5 11.75C7.96973 11.7495 7.46133 11.5386 7.08637 11.1636C6.71141 10.7887 6.50053 10.2803 6.5 9.75L6.5 5.75C6.50053 5.21973 6.71141 4.71133 7.08637 4.33637C7.46133 3.96141 7.96973 3.75053 8.5 3.75L23.5 3.75C24.0303 3.75053 24.5387 3.96141 24.9136 4.33637C25.2886 4.71133 25.4995 5.21973 25.5 5.75Z"}),React.createElement("path",{d:"M25.5 23.75L25.5 27.75C25.4995 28.2803 25.2886 28.7887 24.9136 29.1636C24.5387 29.5386 24.0303 29.7495 23.5 29.75L8.5 29.75C7.96973 29.7495 7.46133 29.5386 7.08637 29.1636C6.71141 28.7887 6.50053 28.2803 6.5 27.75L6.5 23.75C6.50053 23.2197 6.71141 22.7113 7.08637 22.3364C7.46133 21.9614 7.96973 21.7505 8.5 21.75L23.5 21.75C24.0303 21.7505 24.5387 21.9614 24.9136 22.3364C25.2886 22.7113 25.4995 23.2197 25.5 23.75Z"}));break;case"flex-column-space-around":t=React.createElement("svg",{width:"32",height:"33",viewBox:"0 0 32 33",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"}),React.createElement("path",{d:"M25.5 7.75L25.5 11.75C25.4995 12.2803 25.2886 12.7887 24.9136 13.1636C24.5387 13.5386 24.0303 13.7495 23.5 13.75L8.5 13.75C7.96973 13.7495 7.46133 13.5386 7.08637 13.1636C6.71141 12.7887 6.50053 12.2803 6.5 11.75L6.5 7.75C6.50053 7.21973 6.71141 6.71133 7.08637 6.33637C7.46133 5.96141 7.96973 5.75053 8.5 5.75L23.5 5.75C24.0303 5.75053 24.5387 5.96141 24.9136 6.33637C25.2886 6.71133 25.4995 7.21973 25.5 7.75Z"}),React.createElement("path",{d:"M25.5 21.75L25.5 25.75C25.4995 26.2803 25.2886 26.7887 24.9136 27.1636C24.5387 27.5386 24.0303 27.7495 23.5 27.75L8.5 27.75C7.96973 27.7495 7.46133 27.5386 7.08637 27.1636C6.71141 26.7887 6.50053 26.2803 6.5 25.75L6.5 21.75C6.50053 21.2197 6.71141 20.7113 7.08637 20.3364C7.46133 19.9614 7.96973 19.7505 8.5 19.75L23.5 19.75C24.0303 19.7505 24.5387 19.9614 24.9136 20.3364C25.2886 20.7113 25.4995 21.2197 25.5 21.75Z"}));break;case"flex-column-space-evenly":t=React.createElement("svg",{width:"32",height:"32",viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.31134e-07 31C2.03558e-07 30.4477 0.447715 30 1 30L30.5 30C31.0523 30 31.5 30.4477 31.5 31C31.5 31.5523 31.0523 32 30.5 32L1 32C0.447715 32 5.87108e-08 31.5523 1.31134e-07 31Z"}),React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.31134e-07 0.999996C2.03558e-07 0.447711 0.447715 -3.75599e-06 1 -3.68356e-06L30.5 1.84895e-07C31.0523 2.57318e-07 31.5 0.447716 31.5 1C31.5 1.55229 31.0523 2 30.5 2L1 2C0.447715 2 5.87108e-08 1.55228 1.31134e-07 0.999996Z"}),React.createElement("path",{d:"M6 24L6 20C6.00053 19.4697 6.21141 18.9613 6.58637 18.5864C6.96133 18.2114 7.46973 18.0005 8 18L23 18C23.5303 18.0005 24.0387 18.2114 24.4136 18.5864C24.7886 18.9613 24.9995 19.4697 25 20L25 24C24.9995 24.5303 24.7886 25.0387 24.4136 25.4136C24.0387 25.7886 23.5303 25.9995 23 26L8 26C7.46973 25.9995 6.96133 25.7886 6.58637 25.4136C6.21141 25.0387 6.00053 24.5303 6 24Z"}),React.createElement("path",{d:"M6 12L6 8C6.00053 7.46973 6.21141 6.96132 6.58637 6.58637C6.96133 6.21141 7.46973 6.00053 8 6L23 6C23.5303 6.00053 24.0387 6.21141 24.4136 6.58637C24.7886 6.96133 24.9995 7.46973 25 8L25 12C24.9995 12.5303 24.7886 13.0387 24.4136 13.4136C24.0387 13.7886 23.5303 13.9995 23 14L8 14C7.46973 13.9995 6.96133 13.7886 6.58637 13.4136C6.21141 13.0387 6.00053 12.5303 6 12Z"}));break;case"flex-direction-row":t=React.createElement("svg",{viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 1.01587C2 0.454822 1.55228 0 1 0C0.447715 0 0 0.454822 0 1.01587V30.9841C0 31.5452 0.447715 32 1 32C1.55228 32 2 31.5452 2 30.9841V1.01587ZM32 1.01587C32 0.454822 31.5523 0 31 0C30.4477 0 30 0.454822 30 1.01587V30.9841C30 31.5452 30.4477 32 31 32C31.5523 32 32 31.5452 32 30.9841V1.01587ZM23.0355 5.29289L26.6213 8.87864C27.0118 9.26916 27.0118 9.90233 26.6213 10.2929L23.0355 13.8786C22.645 14.2691 22.0118 14.2691 21.6213 13.8786C21.2308 13.4881 21.2308 12.8549 21.6213 12.4644L23.5 10.5857H6C5.44772 10.5857 5 10.138 5 9.58574C5 9.03346 5.44772 8.58574 6 8.58574H23.5L21.6213 6.70711C21.2308 6.31658 21.2308 5.68342 21.6213 5.29289C22.0118 4.90237 22.645 4.90237 23.0355 5.29289ZM26.6213 21.5L23.0355 17.9143C22.645 17.5238 22.0118 17.5238 21.6213 17.9143C21.2308 18.3048 21.2308 18.938 21.6213 19.3285L23.5 21.2071H6C5.44771 21.2071 5 21.6548 5 22.2071C5 22.7594 5.44771 23.2071 6 23.2071H23.5L21.6213 25.0858C21.2308 25.4763 21.2308 26.1095 21.6213 26.5C22.0118 26.8905 22.645 26.8905 23.0355 26.5L26.6213 22.9142C27.0118 22.5237 27.0118 21.8905 26.6213 21.5Z"}));break;case"flex-direction-column":t=React.createElement("svg",{viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M30.9841 2C31.5452 2 32 1.55228 32 1C32 0.447715 31.5452 -1.98809e-08 30.9841 -4.44052e-08L1.01587 -1.35436e-06C0.454821 -1.37888e-06 -1.95703e-08 0.447714 -4.37114e-08 0.999999C-6.78525e-08 1.55228 0.454821 2 1.01587 2L30.9841 2ZM30.9841 32C31.5452 32 32 31.5523 32 31C32 30.4477 31.5452 30 30.9841 30L1.01587 30C0.454819 30 -1.33091e-06 30.4477 -1.35505e-06 31C-1.37919e-06 31.5523 0.454819 32 1.01587 32L30.9841 32ZM26.7071 23.0355L23.1214 26.6213C22.7308 27.0118 22.0977 27.0118 21.7071 26.6213L18.1214 23.0355C17.7309 22.645 17.7309 22.0118 18.1214 21.6213C18.5119 21.2308 19.1451 21.2308 19.5356 21.6213L21.4143 23.5L21.4143 6C21.4143 5.44771 21.862 5 22.4143 5C22.9665 5 23.4143 5.44771 23.4143 6L23.4143 23.5L25.2929 21.6213C25.6834 21.2308 26.3166 21.2308 26.7071 21.6213C27.0976 22.0118 27.0976 22.645 26.7071 23.0355ZM10.5 26.6213L14.0857 23.0355C14.4762 22.645 14.4762 22.0118 14.0857 21.6213C13.6952 21.2308 13.062 21.2308 12.6715 21.6213L10.7929 23.5L10.7929 6C10.7929 5.44771 10.3452 5 9.79287 5C9.24059 5 8.79287 5.44771 8.79287 6L8.79287 23.5L6.91422 21.6213C6.52369 21.2308 5.89053 21.2308 5.5 21.6213C5.10948 22.0118 5.10948 22.645 5.5 23.0355L9.08576 26.6213C9.47629 27.0118 10.1095 27.0118 10.5 26.6213Z"}));break;case"flex-direction-row-reverse":t=React.createElement("svg",{viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M30 30.9841C30 31.5452 30.4477 32 31 32C31.5523 32 32 31.5452 32 30.9841L32 1.01587C32 0.454821 31.5523 -3.91405e-08 31 -8.74228e-08C30.4477 -1.35705e-07 30 0.45482 30 1.01587L30 30.9841ZM8.88104e-08 30.9841C3.97618e-08 31.5452 0.447716 32 1 32C1.55228 32 2 31.5452 2 30.9841L2 1.01587C2 0.454818 1.55229 -2.66182e-06 1 -2.71011e-06C0.447719 -2.75839e-06 2.75777e-06 0.454818 2.70872e-06 1.01587L8.88104e-08 30.9841ZM8.96449 26.7071L5.37868 23.1214C4.98816 22.7308 4.98816 22.0977 5.37868 21.7071L8.96449 18.1214C9.35501 17.7309 9.98818 17.7309 10.3787 18.1214C10.7692 18.5119 10.7692 19.1451 10.3787 19.5356L8.5 21.4143L26 21.4143C26.5523 21.4143 27 21.862 27 22.4143C27 22.9665 26.5523 23.4143 26 23.4143L8.5 23.4143L10.3787 25.2929C10.7692 25.6834 10.7692 26.3166 10.3787 26.7071C9.98818 27.0976 9.35501 27.0976 8.96449 26.7071ZM5.37868 10.5L8.96449 14.0857C9.35502 14.4762 9.98818 14.4762 10.3787 14.0857C10.7692 13.6952 10.7692 13.062 10.3787 12.6715L8.5 10.7929L26 10.7929C26.5523 10.7929 27 10.3452 27 9.79287C27 9.24059 26.5523 8.79287 26 8.79287L8.5 8.79287L10.3787 6.91422C10.7692 6.52369 10.7692 5.89053 10.3787 5.5C9.98818 5.10948 9.35502 5.10948 8.96449 5.5L5.37868 9.08576C4.98816 9.47629 4.98816 10.1095 5.37868 10.5Z"}));break;case"flex-direction-column-reverse":t=React.createElement("svg",{viewBox:"0 0 32 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.01587 30C0.454822 30 -6.78525e-08 30.4477 -4.37113e-08 31C-1.95702e-08 31.5523 0.454822 32 1.01587 32L30.9841 32C31.5452 32 32 31.5523 32 31C32 30.4477 31.5452 30 30.9841 30L1.01587 30ZM1.01587 -4.44052e-08C0.45482 -1.98809e-08 -1.37919e-06 0.447716 -1.35505e-06 1C-1.33091e-06 1.55228 0.454821 2 1.01587 2L30.9841 2C31.5452 2 32 1.55228 32 0.999999C32 0.447714 31.5452 -1.37888e-06 30.9841 -1.35436e-06L1.01587 -4.44052e-08ZM5.29289 8.96449L8.87863 5.37868C9.26916 4.98815 9.90233 4.98815 10.2928 5.37868L13.8786 8.96449C14.2691 9.35501 14.2691 9.98818 13.8786 10.3787C13.4881 10.7692 12.8549 10.7692 12.4644 10.3787L10.5857 8.5L10.5857 26C10.5857 26.5523 10.138 27 9.58574 27C9.03346 27 8.58574 26.5523 8.58574 26L8.58574 8.5L6.70711 10.3787C6.31658 10.7692 5.68342 10.7692 5.29289 10.3787C4.90237 9.98818 4.90237 9.35501 5.29289 8.96449ZM21.5 5.37868L17.9143 8.96449C17.5238 9.35501 17.5238 9.98818 17.9143 10.3787C18.3048 10.7692 18.938 10.7692 19.3285 10.3787L21.2071 8.5L21.2071 26C21.2071 26.5523 21.6548 27 22.2071 27C22.7594 27 23.2071 26.5523 23.2071 26L23.2071 8.5L25.0858 10.3787C25.4763 10.7692 26.1095 10.7692 26.5 10.3787C26.8905 9.98818 26.8905 9.35501 26.5 8.96449L22.9142 5.37868C22.5237 4.98815 21.8905 4.98815 21.5 5.37868Z"}));break;case"flex-wrap":t=React.createElement("svg",{viewBox:"0 0 33 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M1.33984 0C1.89213 0 2.33984 0.447715 2.33984 1V30.5C2.33984 31.0523 1.89213 31.5 1.33984 31.5C0.787559 31.5 0.339844 31.0523 0.339844 30.5V1C0.339844 0.447715 0.787559 0 1.33984 0Z"}),React.createElement("path",{d:"M31.3398 0C31.8921 0 32.3398 0.447715 32.3398 1V30.5C32.3398 31.0523 31.8921 31.5 31.3398 31.5C30.7876 31.5 30.3398 31.0523 30.3398 30.5V1C30.3398 0.447715 30.7876 0 31.3398 0Z"}),React.createElement("path",{d:"M27.3398 5C27.8921 5 28.3398 5.44772 28.3398 6V22C28.3398 22.0022 28.3398 22.0043 28.3398 22.0065C28.3363 22.5558 27.89 23 27.3398 23L10.8398 23L12.7185 24.8786C13.1091 25.2692 13.1091 25.9023 12.7185 26.2929C12.328 26.6834 11.6949 26.6834 11.3043 26.2929L7.71852 22.7071C7.328 22.3166 7.328 21.6834 7.71852 21.2929L11.3043 17.7071C11.6949 17.3166 12.328 17.3166 12.7185 17.7071C13.1091 18.0977 13.1091 18.7308 12.7185 19.1213L10.8398 21L26.3398 21V7L5.33984 7C4.78756 7 4.33984 6.55228 4.33984 6C4.33984 5.44771 4.78756 5 5.33984 5H27.3398Z"}));break;case"flex-no-wrap":t=React.createElement("svg",{viewBox:"0 0 33 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M1.33984 0C1.89213 0 2.33984 0.447715 2.33984 1V30.5C2.33984 31.0523 1.89213 31.5 1.33984 31.5C0.787559 31.5 0.339844 31.0523 0.339844 30.5V1C0.339844 0.447715 0.787559 0 1.33984 0Z"}),React.createElement("path",{d:"M31.3398 0C31.8921 0 32.3398 0.447715 32.3398 1V30.5C32.3398 31.0523 31.8921 31.5 31.3398 31.5C30.7876 31.5 30.3398 31.0523 30.3398 30.5V1C30.3398 0.447715 30.7876 0 31.3398 0Z"}),React.createElement("path",{d:"M24.3754 11.2929L27.9612 14.8786C28.3517 15.2692 28.3517 15.9023 27.9612 16.2929L24.3754 19.8786C23.9848 20.2691 23.3517 20.2691 22.9611 19.8786C22.5706 19.4881 22.5706 18.8549 22.9611 18.4644L24.8398 16.5857L5.33984 16.5857C4.78756 16.5857 4.33984 16.138 4.33984 15.5857C4.33984 15.0334 4.78756 14.5857 5.33984 14.5857L24.8398 14.5857L22.9611 12.7071C22.5706 12.3166 22.5706 11.6834 22.9611 11.2929C23.3517 10.9024 23.9848 10.9024 24.3754 11.2929Z"}));break;case"flex-wrap-reverse":t=React.createElement("svg",{viewBox:"0 0 33 32",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M1.33984 32C1.89213 32 2.33984 31.5452 2.33984 30.9841V1.01587C2.33984 0.454821 1.89213 0 1.33984 0C0.787559 0 0.339844 0.454821 0.339844 1.01587V30.9841C0.339844 31.5452 0.787559 32 1.33984 32Z"}),React.createElement("path",{d:"M31.3398 32C31.8921 32 32.3398 31.5452 32.3398 30.9841V1.01587C32.3398 0.454821 31.8921 0 31.3398 0C30.7876 0 30.3398 0.454821 30.3398 1.01587V30.9841C30.3398 31.5452 30.7876 32 31.3398 32Z"}),React.createElement("path",{d:"M27.3398 26.5C27.8921 26.5 28.3398 26.0523 28.3398 25.5V9.5C28.3398 9.49784 28.3398 9.49569 28.3398 9.49353C28.3363 8.94422 27.89 8.5 27.3398 8.5L10.8398 8.5L12.7185 6.62136C13.1091 6.23084 13.1091 5.59767 12.7185 5.20715C12.328 4.81663 11.6949 4.81663 11.3043 5.20715L7.71852 8.79289C7.328 9.18342 7.328 9.81658 7.71852 10.2071L11.3043 13.7929C11.6949 14.1834 12.328 14.1834 12.7185 13.7929C13.1091 13.4023 13.1091 12.7692 12.7185 12.3787L10.8398 10.5L26.3398 10.5V24.5H5.33984C4.78756 24.5 4.33984 24.9477 4.33984 25.5C4.33984 26.0523 4.78756 26.5 5.33984 26.5H27.3398Z"}));break;case"start-order":t=React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M3 3V21M21 12H7M7 12L14 19M7 12L14 5",stroke:"#1E1E1E",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}));break;case"end-order":t=React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M21 21V3M3 12H17M17 12L10 5M17 12L10 19",stroke:"#1E1E1E",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}));break;case"custom-order":t=React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M12 5L12 5.01M12 12L12 12.01M12 19L12 19.01M12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6ZM12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13ZM12 20C11.4477 20 11 19.5523 11 19C11 18.4477 11.4477 18 12 18C12.5523 18 13 18.4477 13 19C13 19.5523 12.5523 20 12 20Z",stroke:"#111827",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))}return t},De=e=>{let{text:t}=e;return t?React.createElement("p",{className:"components-base-control__help"},t):null},Ne=e=>{var t;const{label:a,responsive:l,help:i=!1}=e,o=le(),[s,c]=Object(B.useState)(!1),[u,p]=Object(B.useState)(null),b=Object(B.useRef)(null),{getSelectedBlock:d}=Object(n.select)("core/block-editor"),g=null===(t=d())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{p(D(b))},[g]);const m={desktop:React.createElement("svg",{width:"8",height:"7",viewBox:"0 0 8 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M7.33333 0H0.666667C0.298611 0 0 0.293945 0 0.65625V5.03125C0 5.39355 0.298611 5.6875 0.666667 5.6875H3.33333L3.11111 6.34375H2.11111C1.92639 6.34375 1.77778 6.49004 1.77778 6.67188C1.77778 6.85371 1.92639 7 2.11111 7H5.88889C6.07361 7 6.22222 6.85371 6.22222 6.67188C6.22222 6.49004 6.07361 6.34375 5.88889 6.34375H4.88889L4.66667 5.6875H7.33333C7.70139 5.6875 8 5.39355 8 5.03125V0.65625C8 0.293945 7.70139 0 7.33333 0ZM7.11111 4.8125H0.888889V0.875H7.11111V4.8125Z"})),tablet:React.createElement("svg",{width:"6",height:"7",viewBox:"0 0 6 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M5 0H1C0.446667 0 0 0.390833 0 0.875V6.125C0 6.60917 0.446667 7 1 7H5C5.55333 7 6 6.60917 6 6.125V0.875C6 0.390833 5.55333 0 5 0ZM3.66667 6.41667H2.33333V6.125H3.66667V6.41667ZM5.41667 5.54167H0.583333V0.875H5.41667V5.54167Z"})),mobile:React.createElement("svg",{width:"4",height:"7",viewBox:"0 0 4 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M3.33333 0H0.666667C0.297778 0 0 0.390833 0 0.875V6.125C0 6.60917 0.297778 7 0.666667 7H3.33333C3.70222 7 4 6.60917 4 6.125V0.875C4 0.390833 3.70222 0 3.33333 0ZM2.44444 6.41667H1.55556V6.125H2.44444V6.41667ZM3.61111 5.54167H0.388889V0.875H3.61111V5.54167Z"}))},y=[{name:Object(r.__)("Desktop","ultimate-addons-for-gutenberg"),staticName:"Desktop",title:m.desktop,itemClass:"uagb-desktop-tab uagb-responsive-tabs"},{name:Object(r.__)("Tablet","ultimate-addons-for-gutenberg"),staticName:"Tablet",title:m.tablet,itemClass:"uagb-tablet-tab uagb-responsive-tabs"},{name:Object(r.__)("Mobile","ultimate-addons-for-gutenberg"),staticName:"Mobile",key:"mobile",title:m.mobile,itemClass:"uagb-mobile-tab uagb-responsive-tabs"}];if(!o)return null;const f=z(e.label),h=Object(j.applyFilters)(`spectra.${g}.${u}.${f}.before`,"",g),v=Object(j.applyFilters)(`spectra.${g}.${u}.${f}`,"",g);return React.createElement("div",{ref:b,className:"uag-responsive-label-wrap"},h,a&&React.createElement("span",{className:"uag-control-label"},a),!s&&l&&React.createElement(Le.Button,{key:"uag-responsive-common-button",className:"uag-responsive-common-button",onClick:e=>{var t;let a=e.target,l=null;"svg"===a.tagName&&(a=a.closest(".uag-responsive-common-button")),a.closest(".uag-typography-options.active")&&(l=".uag-typography-options"),a.closest(".uag-box-shadow-options.active")&&(l=".uag-box-shadow-options");const i=null===(t=d())||void 0===t?void 0:t.name,o=te("uagSettingState"),n=a.closest(".uagb-inspector-tab"),r=a.closest(".components-panel__body.is-opened");let u="";r.classList&&0!==r.classList&&r.classList.forEach(e=>{e.includes("uag-advance-panel-body")&&(u=e)});let p="style";n.classList.contains("uagb-tab-content-general")&&(p="general"),n.classList.contains("uagb-tab-content-advance")&&(p="advance");const b={...o,[i]:{selectedTab:p,selectedPanel:u,selectedSetting:l}},g=te();g&&g.setItem("uagSettingState",JSON.stringify(b)),c(!s)}},m[o.toLowerCase()]),s&&l&&React.createElement(Le.ButtonGroup,{className:"uagb-range-control-responsive components-tab-panel__tabs","aria-label":Object(r.__)("Device","ultimate-addons-for-gutenberg")},y.map(e=>{let{name:t,staticName:a,key:l,title:i,itemClass:n}=e;return React.createElement(Le.Tooltip,{text:Object(r.sprintf)(
/* translators: abbreviation for units */
"%s",t),key:l},React.createElement(Le.Button,{key:l,className:`components-button components-tab-panel__tabs-item ${n}${a===o?" active-tab":""}`,"aria-pressed":o===a,onClick:()=>{ie(a),c(s)}},i))})),React.createElement(De,{text:i}),v)},Ie=a(80),Ve=0,We={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},qe={};qe.locals=Ie.a.locals||{},qe.use=function(){return Ve++||(je=ke()(Ie.a,We)),qe},qe.unuse=function(){Ve>0&&!--Ve&&(je(),je=null)};var Ze=qe;const $e=ce("highLight"),Ye="yes"===uagb_blocks_info.uagb_old_user_less_than_2?"center":"left";var Ke={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},blockBackgroundType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-blackground-type"}},blockGradientBackground:{type:"string",default:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-gradient-blackground"}},blockBackground:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-blackground"}},headingTitleToggle:{type:"boolean",default:!0},headingTitle:{source:"html",selector:".uagb-heading-text",default:Object(r.__)("Your Attractive Heading","ultimate-addons-for-gutenberg")},headingId:{type:"string"},headingDescToggle:{type:"boolean"},headingDescPosition:{type:"string",default:"below-heading",UAGCopyPaste:{styleType:"prefix-position"}},headingDesc:{source:"html",selector:".uagb-desc-text"},headingAlign:{type:"string",default:Ye,isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColorType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color-type"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},headingGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-gradient-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},separatorColor:{type:"string",default:"#0170b9",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},headingTag:{type:"string",default:"h2"},headingWrapper:{type:"string",default:"div"},level:{type:"number",default:2},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorPosition:{type:"string",default:"below-heading",UAGCopyPaste:{styleType:"separator-position"}},separatorHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"},default:2},separatorHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-height-type"}},separatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:12},separatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},headSpace:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headSpaceTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-type"}},subHeadSpace:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"sub-title-bottom-margin"}},subHeadSpaceMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"sub-title-bottom-margin-tablet"}},subHeadSpaceTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"sub-title-bottom-margin-mobile"}},subHeadSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"sub-title-unit-type"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},headShadowColor:{type:"string",default:""},headShadowHOffset:{type:"number",default:0},headShadowVOffset:{type:"number",default:0},headShadowBlur:{type:"number",default:10},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},separatorSpace:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width-type"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},separatorHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-hover-color"}},isPreview:{type:"boolean",default:!1},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},linkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"link-color"}},linkHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"link-hover-color"}},highLightColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-color"}},highLightBackground:{type:"string",default:"#007cba",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-background"}},highLightLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-load-google-fonts"}},highLightFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-family"}},highLightFontWeight:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-weight"}},highLightFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-style"}},highLightTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-transform"}},highLightDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-decoration"}},highLightFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-font-size-type"}},highLightFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-font-size-type-mobile"}},highLightFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-font-size-type-tablet"}},highLightLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"highlight-line-height-type"}},highLightFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-size"}},highLightFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-size-tablet"}},highLightFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-font-size-mobile"}},highLightLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-line-height"}},highLightLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-line-height-tablet"}},highLightLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-line-height-mobile"}},highLightLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-letter-spacing"}},highLightLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-letter-spacing-tablet"}},highLightLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-letter-spacing-mobile"}},highLightLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-letter-spacing-type"}},highLightTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-top-padding"}},highLightRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-right-padding"}},highLightLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-left-padding"}},highLightBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-bottom-padding"}},highLightTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-top-padding-tablet"}},highLightRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-right-padding-tablet"}},highLightLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-left-padding-tablet"}},highLightBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-bottom-padding-tablet"}},highLightTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-top-padding-mobile"}},highLightRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-right-padding-mobile"}},highLightLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-left-padding-mobile"}},highLightBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-bottom-padding-mobile"}},highLightPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit"}},highLightPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit-tablet"}},highLightPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit-mobile"}},highLightPaddingLink:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"highlight-padding-link"}},...$e};const Je=ce("btn"),Xe=ce("overall");var Qe={blockName:{type:"string",default:"post-grid"},inheritFromThemeBtn:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},equalHeight:{type:"boolean",default:!0},postPagination:{type:"boolean",default:!1},imgEqualheight:{type:"boolean",default:!1},enableOffset:{type:"boolean",default:!1},pageLimit:{type:"number",default:10},paginationBgActiveColor:{type:"string",default:"#e4e4e4",UAGCopyPaste:{styleType:"pagination-bg-active-color"}},paginationActiveColor:{type:"string",default:"#333333",UAGCopyPaste:{styleType:"pagination-active-color"}},paginationBgColor:{type:"string",default:"#e4e4e4",UAGCopyPaste:{styleType:"pagination-bg-color"}},paginationColor:{type:"string",default:"#777777",UAGCopyPaste:{styleType:"pagination-color"}},paginationMarkup:{type:"string",default:""},paginationLayout:{type:"string",default:"filled",UAGCopyPaste:{styleType:"pagination-layout"}},paginationBorderActiveColor:{type:"string",UAGCopyPaste:{styleType:"pagination-border-active-color"}},paginationBorderColor:{type:"string",default:"#888686",UAGCopyPaste:{styleType:"pagination-border-color"}},paginationBorderRadius:{type:"number",UAGCopyPaste:{styleType:"pagination-border-radius"}},paginationBorderSize:{type:"number",default:1,UAGCopyPaste:{styleType:"pagination-border-size"}},paginationSpacing:{type:"number",default:20,UAGCopyPaste:{styleType:"pagination-spacing"}},paginationAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"pagination-alignment"}},paginationPrevText:{type:"string",default:"« Previous"},paginationNextText:{type:"string",default:"Next »"},layoutConfig:{type:"array",default:["uagb/post-image","uagb/post-taxonomy","uagb/post-title","uagb/post-meta","uagb/post-excerpt","uagb/post-button"]},isLeftToRightLayout:{type:"boolean",default:!1},post_type:{type:"string",default:"grid"},inheritFromTheme:{type:"boolean",default:!0},block_id:{type:"string",default:"not_set"},categories:{type:"string"},postType:{type:"string",default:"post"},postDisplaytext:{type:"string",default:"No post found!"},taxonomyType:{type:"string",default:"category"},postsToShow:{type:"number",default:6},displayPostDate:{type:"boolean",default:!0},displayPostExcerpt:{type:"boolean",default:!0},excerptLength:{type:"number",default:15},displayPostAuthor:{type:"boolean",default:!1},displayPostTitle:{type:"boolean",default:!0},displayPostComment:{type:"boolean",default:!0},displayPostTaxonomy:{type:"boolean",default:!1},displayPostImage:{type:"boolean",default:!0},imgSize:{type:"string",default:"large",UAGCopyPaste:{styleType:"image-size"}},imgPosition:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-position"}},linkBox:{type:"boolean"},bgOverlayColor:{type:"string",default:"#000000",UAGCopyPaste:{styleType:"post-bg-overlay-color"}},overlayOpacity:{type:"number",default:"50",UAGCopyPaste:{styleType:"post-overlay-opacity"}},displayPostLink:{type:"boolean",default:!0},newTab:{type:"boolean",default:!1},ctaText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},btnHPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},btnVPadding:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-vertical-padding"}},columns:{type:"number",default:3},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"post-bottom-padding"}},width:{type:"string",default:"wide",UAGCopyPaste:{styleType:"post-bottom-padding"}},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},rowGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},bgColor:{type:"string",default:"#f6f6f6",UAGCopyPaste:{styleType:"post-bg-color"}},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"},default:""},titleTag:{type:"string",default:"h4"},titleFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-loads-google-fonts"}},metaColor:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-color"}},metaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"prefix-font-size"}},metaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},metaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},metaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},metaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-font-family"}},metaFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},metaFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},metaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},metaLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},metaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},metaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},metaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},excerptColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},excerptFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"desc-font-size"}},excerptFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},excerptFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},excerptFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},excerptFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:""},excerptFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},excerptFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},excerptLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},excerptLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},excerptLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},excerptLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},excerptLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},displayPostContentRadio:{type:"string",default:"excerpt"},ctaColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-hover-type"}},ctaBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaHColor:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgHColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},paddingTop:{type:"number",UAGCopyPaste:{styleType:"post-top-padding"}},paddingBottom:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},paddingRight:{type:"number",UAGCopyPaste:{styleType:"post-right-padding"}},paddingLeft:{type:"number",UAGCopyPaste:{styleType:"post-left-padding"}},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-mobile"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-tablet"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},contentPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"post-content-padding"}},contentPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-content-padding-mobile"}},ctaBottomSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},imageBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},taxonomyBottomSpace:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},titleBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},metaBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},excerptBottomSpace:{type:"number",default:25,UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excludeCurrentPost:{type:"boolean",default:!1},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},metaTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},excerptTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},metaDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},excerptDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},contentPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-content-padding-unit"}},rowGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},excerptBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},paginationSpacingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-spacing-unit"}},imageBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-bottom-margin-unit"}},taxonomyBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin-unit"}},titleBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-bottom-margin-unit"}},metaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-bottom-margin-unit"}},ctaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-bottom-margin-unit"}},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-tablet"}},postsOffset:{type:"number",default:0},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"title-letter-spacing-type"}},metaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing"}},metaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-tablet"}},metaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-mobile"}},metaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"meta-letter-spacing-type"}},excerptLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing"}},excerptLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-tablet"}},excerptLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-mobile"}},excerptLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"excerpt-letter-spacing-type"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},allTaxonomyStore:{type:"object"},taxDivider:{type:"string",default:" , "},equalHeightInlineButtons:{type:"boolean",default:!1},imageRatio:{type:"string",default:"inherit"},paginationType:{type:"string",default:"ajax"},wrapperTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},wrapperRightPadding:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},wrapperLeftPadding:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},wrapperBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},wrapperTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},wrapperRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},wrapperLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},wrapperBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},wrapperTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},wrapperRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},wrapperLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},wrapperBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},wrapperPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},wrapperPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},wrapperPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},wrapperPaddingLink:{type:"boolean",default:!1},wrapperAlign:{type:"string",default:"row",UAGCopyPaste:{styleType:"overall-alignment"}},wrapperAlignPosition:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},...Je,...Xe};const et=ce("btn");var tt={blockName:{type:"string",default:"post-carousel"},inheritFromThemeBtn:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},pauseOnHover:{type:"boolean",default:!0},enableOffset:{type:"boolean",default:!1},infiniteLoop:{type:"boolean",default:!0},transitionSpeed:{type:"number",default:500},arrowDots:{type:"string",default:"arrows_dots"},autoplay:{type:"boolean",default:!0},autoplaySpeed:{type:"number",default:2e3},arrowSize:{type:"number",default:24,UAGCopyPaste:{styleType:"arrow-size"}},arrowBorderSize:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-size"}},arrowBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-radius"}},arrowDistance:{type:"number",UAGCopyPaste:{styleType:"arrow-distance"}},arrowDistanceTablet:{type:"number",UAGCopyPaste:{styleType:"arrow-distance-tablet"}},arrowDistanceMobile:{type:"number",UAGCopyPaste:{styleType:"arrow-distance-mobile"}},arrowColor:{type:"string",default:"#000",UAGCopyPaste:{styleType:"arrow-color"}},equalHeight:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"post-equal-height"}},layoutConfig:{type:"array",default:["uagb/post-image","uagb/post-taxonomy","uagb/post-title","uagb/post-meta","uagb/post-excerpt","uagb/post-button"]},post_type:{type:"string",default:"carousel"},inheritFromTheme:{type:"boolean",default:!0},block_id:{type:"string",default:"not_set"},categories:{type:"string"},postType:{type:"string",default:"post"},postDisplaytext:{type:"string",default:"No post found!"},taxonomyType:{type:"string",default:"category"},postsToShow:{type:"number",default:6},displayPostDate:{type:"boolean",default:!0},displayPostExcerpt:{type:"boolean",default:!0},excerptLength:{type:"number",default:15},displayPostAuthor:{type:"boolean",default:!1},displayPostTitle:{type:"boolean",default:!0},displayPostComment:{type:"boolean",default:!0},displayPostTaxonomy:{type:"boolean",default:!1},displayPostImage:{type:"boolean",default:!0},imgSize:{type:"string",default:"large",UAGCopyPaste:{styleType:"image-size"}},imgPosition:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-position"}},linkBox:{type:"boolean"},bgOverlayColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"post-bg-overlay-color"}},overlayOpacity:{type:"number",default:"50",UAGCopyPaste:{styleType:"post-overlay-opacity"}},displayPostLink:{type:"boolean",default:!0},newTab:{type:"boolean",default:!1},ctaText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},btnHPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},btnVPadding:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-vertical-padding"}},btnBorderWidth:{type:"number",UAGCopyPaste:{styleType:"post-border-width"},default:1},btnBorderStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"btn-border-style"}},btnBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-border-color"}},btnBorderHColor:{type:"string",UAGCopyPaste:{styleType:"btn-border-hover-color"}},btnBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-border-radius"}},columns:{type:"number",default:3},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"post-align"}},width:{type:"string",default:"wide",UAGCopyPaste:{styleType:"post-width"}},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},rowGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},bgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"post-bg-type"}},bgColor:{type:"string",default:"#f6f6f6",UAGCopyPaste:{styleType:"post-bg-color"}},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"},default:""},titleTag:{type:"string",default:"h4"},titleFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-loads-google-fonts"}},metaColor:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-color"}},metaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"prefix-font-size"}},metaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},metaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},metaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},metaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-font-family"}},metaFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},metaFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},metaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},metaLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},metaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},metaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},metaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},excerptColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},excerptFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"desc-font-size"}},excerptFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},excerptFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},excerptFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},excerptFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:""},excerptFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},excerptFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},excerptLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},excerptLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},excerptLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},excerptLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},excerptLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},displayPostContentRadio:{type:"string",default:"excerpt"},ctaColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-hover-type"}},ctaBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaHColor:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgHColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},paddingTop:{type:"number",UAGCopyPaste:{styleType:"post-top-padding"}},paddingBottom:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},paddingRight:{type:"number",UAGCopyPaste:{styleType:"post-right-padding"}},paddingLeft:{type:"number",UAGCopyPaste:{styleType:"post-left-padding"}},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-mobile"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-tablet"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},contentPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"post-content-padding"}},contentPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-content-padding-mobile"}},ctaBottomSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},imageBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},taxonomyBottomSpace:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},titleBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},metaBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},excerptBottomSpace:{type:"number",default:25,UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excludeCurrentPost:{type:"boolean",default:!1},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},metaTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},excerptTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},metaDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},excerptDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},contentPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-content-padding-unit"}},rowGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},excerptBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},paginationSpacingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-spacing-unit"}},imageBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-bottom-margin-unit"}},taxonomyBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin-unit"}},titleBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-bottom-margin-unit"}},metaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-bottom-margin-unit"}},ctaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-bottom-margin-unit"}},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-tablet"}},isPreview:{type:"boolean",default:!1},postsOffset:{type:"number",default:0},taxStyle:{type:"string",default:"default"},taxDivider:{type:"string",default:" , "},displayPostTaxonomyAboveTitle:{type:"string",default:"withMeta"},hideTaxonomyIcon:{type:"boolean",default:!0},highlightedTextColor:{type:"string",default:""},highlightedTextBgColor:{type:"string",default:""},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"title-letter-spacing-type"}},metaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing"}},metaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-tablet"}},metaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-mobile"}},metaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"meta-letter-spacing-type"}},excerptLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing"}},excerptLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-tablet"}},excerptLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-mobile"}},excerptLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"excerpt-letter-spacing-type"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},...et,dotsMarginTop:{type:"number",default:20,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopTablet:{type:"number",default:20,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopMobile:{type:"number",default:20,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"dots-margin-top-unit"}},allTaxonomyStore:{type:"object"}};const at=ce("btn"),lt=ce("paginationMasonry");var it={blockName:{type:"string",default:"post-masonry"},inheritFromThemeBtn:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},enableOffset:{type:"boolean",default:!1},paginationType:{type:"string",default:"none",UAGCopyPaste:{styleType:"pagination-type"}},paginationEventType:{type:"string",default:"button"},buttonText:{type:"string",default:"Load More"},paginationAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"pagination-alignment"}},paginationTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"pagination-color"}},paginationMasonryBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"pagination-bg-color"}},paginationBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"pagination-bg-hover-color"}},paginationTextHoverColor:{type:"string",UAGCopyPaste:{styleType:"pagination-hover-color"}},paginationMasonryBorderStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"pagination-border-style"}},paginationMasonryBorderWidth:{type:"number",default:1,UAGCopyPaste:{styleType:"pagination-border-size"}},paginationMasonryBorderRadius:{type:"number",default:2,UAGCopyPaste:{styleType:"pagination-border-radius"}},paginationMasonryBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"pagination-border-color"}},paginationMasonryBorderHColor:{type:"string",default:"",UAGCopyPaste:{styleType:"pagination-border-active-color"}},paginationFontSize:{type:"number",default:13,UAGCopyPaste:{styleType:"pagination-font-size"}},loaderColor:{type:"string",default:"#0085ba",UAGCopyPaste:{styleType:"post-loader-color"}},loaderSize:{type:"number",default:18,UAGCopyPaste:{styleType:"post-loader-size"}},vpaginationButtonPaddingMobile:{type:"number",default:8,UAGCopyPaste:{styleType:"pagination-vertical-padding-mobile"}},vpaginationButtonPaddingTablet:{type:"number",default:8,UAGCopyPaste:{styleType:"pagination-vertical-padding-tablet"}},vpaginationButtonPaddingDesktop:{type:"number",default:8,UAGCopyPaste:{styleType:"pagination-vertical-padding-desktop"}},hpaginationButtonPaddingMobile:{type:"number",default:12,UAGCopyPaste:{styleType:"pagination-horizontal-padding-mobile"}},hpaginationButtonPaddingTablet:{type:"number",default:12,UAGCopyPaste:{styleType:"pagination-horizontal-padding-tablet"}},hpaginationButtonPaddingDesktop:{type:"number",default:12,UAGCopyPaste:{styleType:"pagination-horizontal-padding-desktop"}},layoutConfig:{type:"array",default:["uagb/post-image","uagb/post-taxonomy","uagb/post-title","uagb/post-meta","uagb/post-excerpt","uagb/post-button"]},post_type:{type:"string",default:"masonry"},mobilepaginationButtonPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-padding-type-mobile"}},tabletpaginationButtonPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-padding-type-tablet"}},paginationButtonPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-padding-type"}},inheritFromTheme:{type:"boolean",default:!0},block_id:{type:"string",default:"not_set"},categories:{type:"string"},postType:{type:"string",default:"post"},postDisplaytext:{type:"string",default:"No post found!"},taxonomyType:{type:"string",default:"category"},postsToShow:{type:"number",default:6},displayPostDate:{type:"boolean",default:!0},displayPostExcerpt:{type:"boolean",default:!0},excerptLength:{type:"number",default:15},displayPostAuthor:{type:"boolean",default:!1},displayPostTitle:{type:"boolean",default:!0},displayPostComment:{type:"boolean",default:!0},displayPostTaxonomy:{type:"boolean",default:!1},displayPostImage:{type:"boolean",default:!0},imgSize:{type:"string",default:"large",UAGCopyPaste:{styleType:"image-size"}},imgPosition:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-position"}},linkBox:{type:"boolean"},bgOverlayColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"post-bg-overlay-color"}},overlayOpacity:{type:"number",default:"50",UAGCopyPaste:{styleType:"post-overlay-opacity"}},displayPostLink:{type:"boolean",default:!0},newTab:{type:"boolean",default:!1},ctaText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},btnHPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},btnVPadding:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-vertical-padding"}},btnBorderWidth:{type:"number",UAGCopyPaste:{styleType:"post-border-width"},default:1},btnBorderStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"btn-border-style"}},btnBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-border-color"}},btnBorderHColor:{type:"string",UAGCopyPaste:{styleType:"btn-border-hover-color"}},btnBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-border-radius"}},columns:{type:"number",default:3},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"post-align"}},width:{type:"string",default:"wide",UAGCopyPaste:{styleType:"post-width"}},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},rowGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGap:{type:"number",default:20,UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},bgColor:{type:"string",default:"#f6f6f6",UAGCopyPaste:{styleType:"post-bg-color"}},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"},default:""},titleTag:{type:"string",default:"h4"},titleFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-loads-google-fonts"}},metaColor:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-color"}},metaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"prefix-font-size"}},metaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},metaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},metaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},metaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-font-family"}},metaFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},metaFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},metaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},metaLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},metaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},metaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},metaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},excerptColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},excerptFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"desc-font-size"}},excerptFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},excerptFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},excerptFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},excerptFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:""},excerptFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},excerptFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},excerptLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},excerptLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},excerptLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},excerptLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},excerptLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},displayPostContentRadio:{type:"string",default:"excerpt"},ctaColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-hover-type"}},ctaBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaHColor:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgHColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},paddingTop:{type:"number",UAGCopyPaste:{styleType:"post-top-padding"}},paddingBottom:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},paddingRight:{type:"number",UAGCopyPaste:{styleType:"post-right-padding"}},paddingLeft:{type:"number",UAGCopyPaste:{styleType:"post-left-padding"}},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-mobile"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-tablet"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},contentPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"post-content-padding"}},contentPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-content-padding-mobile"}},ctaBottomSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},ctaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},imageBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},taxonomyBottomSpace:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},taxonomyBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin"}},titleBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},metaBottomSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},metaBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"}},excerptBottomSpace:{type:"number",default:25,UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excerptBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},excludeCurrentPost:{type:"boolean",default:!1},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},metaTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},excerptTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},metaDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},excerptDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},contentPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-content-padding-unit"}},rowGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},excerptBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},paginationSpacingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"pagination-spacing-unit"}},imageBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-bottom-margin-unit"}},taxonomyBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-taxonomy-bottom-margin-unit"}},titleBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-bottom-margin-unit"}},metaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-bottom-margin-unit"}},ctaBottomSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-bottom-margin-unit"}},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-tablet"}},isPreview:{type:"boolean",default:!1},postsOffset:{type:"number",default:0},taxStyle:{type:"string",default:"default"},taxDivider:{type:"string",default:" , "},displayPostTaxonomyAboveTitle:{type:"string",default:"withMeta"},hideTaxonomyIcon:{type:"boolean",default:!0},highlightedTextColor:{type:"string",default:""},highlightedTextBgColor:{type:"string",default:""},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"title-letter-spacing-type"}},metaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing"}},metaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-tablet"}},metaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"meta-letter-spacing-mobile"}},metaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"meta-letter-spacing-type"}},excerptLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing"}},excerptLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-tablet"}},excerptLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"excerpt-letter-spacing-mobile"}},excerptLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"excerpt-letter-spacing-type"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},allTaxonomyStore:{type:"object"},...at,...lt},ot={classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"column-align"}},block_id:{type:"string"},mobilePaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-mobile"}},tabletPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-tablet"}},desktopPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-desktop"}},topPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"column-top-padding"}},bottomPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"column-bottom-padding"}},leftPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"column-left-padding"}},rightPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"column-right-padding"}},mobileMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-mobile"}},tabletMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-tablet"}},desktopMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-desktop"}},topMargin:{type:"number",default:0,UAGCopyPaste:{styleType:"column-top-margin"}},bottomMargin:{type:"number",default:0,UAGCopyPaste:{styleType:"column-bottom-margin"}},leftMargin:{type:"number",default:0,UAGCopyPaste:{styleType:"column-left-margin"}},rightMargin:{type:"number",default:0,UAGCopyPaste:{styleType:"column-right-margin"}},topPaddingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-top-padding-tablet"}},bottomPaddingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-bottom-padding-tablet"}},leftPaddingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-left-padding-tablet"}},rightPaddingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-right-padding-tablet"}},topMarginTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-top-margin-tablet"}},bottomMarginTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-bottom-margin-tablet"}},leftMarginTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-left-margin-tablet"}},rightMarginTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-right-margin-tablet"}},topPaddingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-top-padding-mobile"}},bottomPaddingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-bottom-padding-mobile"}},leftPaddingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-left-padding-mobile"}},rightPaddingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-right-padding-mobile"}},topMarginMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-top-margin-mobile"}},bottomMarginMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-bottom-margin-mobile"}},leftMarginMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-mobile"},default:""},contentWidth:{type:"string",default:"boxed",UAGCopyPaste:{styleType:"column-content-width"}},width:{type:"number",default:900,UAGCopyPaste:{styleType:"column-width"}},innerWidth:{type:"number",default:1140,UAGCopyPaste:{styleType:"column-inner-width"}},innerWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-inner-width-unit"}},themeWidth:{type:"boolean",default:!1},tag:{type:"string",default:"section"},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-bg-type"}},backgroundImage:{type:"object"},backgroundPosition:{type:"string",UAGCopyPaste:{styleType:"column-bg-position"},default:"center-center"},backgroundSize:{type:"string",UAGCopyPaste:{styleType:"column-bg-size"},default:"cover"},backgroundRepeat:{type:"string",UAGCopyPaste:{styleType:"column-bg-repeat"},default:"no-repeat"},backgroundAttachment:{type:"string",UAGCopyPaste:{styleType:"column-bg-attachment"},default:"scroll"},backgroundVideo:{type:"object"},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-color"}},gradientColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-1"}},gradientColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-2"}},gradientType:{type:"string",UAGCopyPaste:{styleType:"column-gradient-type"},default:"linear"},gradientLocation1:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-1"},default:0},gradientLocation2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-2"},default:100},gradientAngle:{type:"number",UAGCopyPaste:{styleType:"column-gradient-angle"},default:0},gradientPosition:{type:"string",UAGCopyPaste:{styleType:"column-gradient-position"},default:"center center"},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-opacity"},default:0},backgroundVideoOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-video-opacity"},default:50},backgroundVideoColor:{type:"string",UAGCopyPaste:{styleType:"column-video-color"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-img-color"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string"},borderHoverColor:{type:"string"},overlayType:{type:"string",UAGCopyPaste:{styleType:"column-overlay-type"},default:"color"},gradientOverlayColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-color-1"}},gradientOverlayColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-color-2"}},gradientOverlayType:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-type"},default:"linear"},gradientOverlayLocation1:{type:"number",UAGCopyPaste:{styleType:"column-gradient-overlay-location-1"},default:0},gradientOverlayLocation2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-overlay-location-2"},default:100},gradientOverlayAngle:{type:"number",UAGCopyPaste:{styleType:"column-gradient-overlay-angle"},default:0},gradientOverlayPosition:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-position"},default:"center center"},boxShadowColor:{type:"string",UAGCopyPaste:{styleType:"column-box-shadow-color"}},boxShadowHOffset:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-h-offset"},default:0},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"column-box-shadow-v-offset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"column-box-shadow-position"}},gradientValue:{type:"string",UAGCopyPaste:{styleType:"column-gradient-value"}},spacingLink:{type:"boolean",default:!1},marginspacingLink:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},...ce("overall")};const nt=[];for(let e=1;e<=1;e++){const e="Click Here",t="#";nt.push({label:e,link:t,target:"_self",size:"",vPadding:"",hPadding:"",color:"",background:"",hColor:"",hBackground:"",sizeType:"px",sizeMobile:"",sizeTablet:"",lineHeight:"",lineHeightType:"em",lineHeightMobile:"",lineHeightTablet:""})}var rt={block_id:{type:"string"},btn_count:{type:"number",default:1},buttons:{type:"array",default:nt},classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},alignTablet:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align-tablet"}},alignMobile:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align-mobile"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gap"}},gapTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gap-tablet"}},gapMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gap-mobile"}},inheritGap:{type:"boolean",default:!1},flexWrap:{type:"boolean",default:!1},stack:{type:"string",default:"none",UAGCopyPaste:{styleType:"btn-stack"}},loadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},fontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},fontTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-transform"}},fontDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-decoration"}},isPreview:{type:"boolean",default:!1},fontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},fontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},fontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},fontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},fontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},fontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},lineHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},buttonSize:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},buttonSizeTablet:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},buttonSizeMobile:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},fontLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},fontLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},fontLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},fontLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},verticalAlignment:{type:"string",UAGCopyPaste:{styleType:"btn-vertical-align"}}};const st=ce("btn");var ct={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocationTablet1:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientLocationTablet2:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientLocationMobile2:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},gradientAngleTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle-tablet"}},gradientAngleMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle-mobile"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocationTablet1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-tablet-1"}},hovergradientLocationMobile1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-mobile-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientLocationTablet2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-tablet-2"}},hovergradientLocationMobile2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-mobile-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},hovergradientAngleTablet:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle-tablet"}},hovergradientAngleMobile:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle-mobile"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...st,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1},showLinkOpensInNewTabNoFollow:{type:"boolean",default:!0}};const ut=ce("btn"),pt=ce("infobox"),bt="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"";var dt={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},tempHeadingDesc:{type:"string",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},enableMultilineParagraph:{type:"boolean",default:!1},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},htmlTag:{type:"string",default:"div"},ctaType:{type:"string",default:"none"},ctaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"cta-btn-type"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:""}},imageAlt:{type:"string",default:""},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:bt},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...ut,...pt};const gt=[];for(let e=1;e<=3;e++){const e="I have been working with these guys for years now! With lots of hard work and timely communication, they made sure they delivered the best to me. Highly recommended!",t="John Doe ",a="Company Name";gt.push({description:e,name:t,company:a,image:""})}var mt={test_item_count:{type:"number",default:3},classMigrate:{type:"boolean",default:!1},test_block:{type:"array",default:gt},headingAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},headingAlignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align-tablet"}},headingAlignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align-mobile"}},descColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"desc-color"}},companyColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"prefix-color"}},authorColor:{type:"string",UAGCopyPaste:{styleType:"author-color"},default:"#333"},iconimgStyle:{type:"string",UAGCopyPaste:{styleType:"image-style"},default:"circle"},imagePosition:{type:"string",UAGCopyPaste:{styleType:"image-position"},default:"bottom"},imageAlignment:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"top"},nameFontSizeType:{type:"string",UAGCopyPaste:{styleType:"author-font-size-type"},default:"px"},nameFontSize:{type:"number",default:20,UAGCopyPaste:{styleType:"author-font-size"}},nameFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"author-font-size-tablet"}},nameFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"author-font-size-mobile"}},nameFontFamily:{type:"string",UAGCopyPaste:{styleType:"author-font-family"},default:"Default"},nameFontWeight:{type:"string",default:"Default",UAGCopyPaste:{styleType:"author-font-weight"}},nameFontStyle:{type:"string",UAGCopyPaste:{styleType:"author-font-style"}},nameLineHeightType:{type:"string",UAGCopyPaste:{styleType:"author-line-height-type"},default:"em"},nameLineHeight:{type:"number",default:2,UAGCopyPaste:{styleType:"author-line-height"}},nameLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"author-line-height-tablet"}},nameLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"author-line-height-mobile"}},nameLoadGoogleFonts:{type:"boolean",default:!1},companyFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},companyFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},companyFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},companyFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},companyFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},companyFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},companyFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},companyLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},companyLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},companyLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},companyLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},companyLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},descFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},descFontSize:{type:"number",default:18,UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},descFontWeight:{type:"string",default:"400",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",default:1.6,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},nameSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"author-bottom-margin"}},nameSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin-mobile"}},nameSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin-tablet"}},descSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"},default:20},descSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},block_id:{type:"string",default:"not_set"},authorSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"author-bottom-margin"}},imgVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"image-vertical-padding"}},imgHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"image-horizontal-padding"}},imgTopPadding:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"},default:10},imgBottomPadding:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"},default:10},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",UAGCopyPaste:{styleType:"image-size"},default:"thumbnail"},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:60},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},columns:{type:"number",default:1},tcolumns:{type:"number",default:1},mcolumns:{type:"number",default:1},pauseOnHover:{type:"boolean",default:!0},infiniteLoop:{type:"boolean",default:!0},transitionSpeed:{type:"number",default:500},autoplay:{type:"boolean",default:!0},autoplaySpeed:{type:"number",default:2e3},arrowDots:{type:"string",default:"arrows_dots"},arrowSize:{type:"number",default:20,UAGCopyPaste:{styleType:"arrow-size"}},arrowBorderSize:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-size"}},arrowBorderSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-unit"}},arrowBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-radius"}},arrowBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-unit"}},arrowColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"arrow-color"}},rowGap:{type:"number",default:10,UAGCopyPaste:{styleType:"row-gap"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},columnGap:{type:"number",default:10,UAGCopyPaste:{styleType:"column-gap"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},contentPadding:{type:"number",default:5,UAGCopyPaste:{styleType:"content-padding"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-bg-type"}},backgroundImage:{type:"object",UAGCopyPaste:{styleType:"column-bg-image"}},backgroundPosition:{type:"string",UAGCopyPaste:{styleType:"column-bg-position"},default:"center-center"},backgroundSize:{type:"string",default:"cover",UAGCopyPaste:{styleType:"column-bg-size"}},backgroundRepeat:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"column-bg-repeat"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-color"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-image-color"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number"},borderRadius:{type:"number"},borderColor:{type:"string"},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-opacity"}},stack:{type:"string",default:"tablet"},imageWidthType:{type:"string",UAGCopyPaste:{styleType:"image-width-type"},default:"px"},arrowSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-size-type"}},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},descSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},nameSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-bottom-margin-type"}},borderHoverColor:{type:"string"},overlayType:{type:"string",UAGCopyPaste:{styleType:"column-overlay-type"},default:"color"},backgroundAttachment:{type:"string",UAGCopyPaste:{styleType:"column-bg-attachment"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgb(6, 147, 227, 0.5) 0%, rgb(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"column-gradient-value"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},nameTransform:{type:"string",UAGCopyPaste:{styleType:"author-transform"}},nameDecoration:{type:"string",UAGCopyPaste:{styleType:"author-decoration"}},companyTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},companyDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobilePaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},paddingTop:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},paddingBottom:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},paddingLeft:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},paddingRight:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},imgspacingLink:{type:"boolean"},spacingLink:{type:"boolean"},imgpaddingTop:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"}},imgpaddingRight:{type:"number",UAGCopyPaste:{styleType:"image-right-padding"}},imgpaddingBottom:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"}},imgpaddingLeft:{type:"number",UAGCopyPaste:{styleType:"image-left-padding"}},imgpaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-tablet"}},imgpaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-tablet"}},imgpaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-tablet"}},imgpaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-tablet"}},imgpaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-mobile"}},imgpaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-mobile"}},imgpaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-mobile"}},imgpaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-mobile"}},imgpaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit"}},imgmobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-mobile"}},imgtabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-tablet"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"column-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063a1",UAGCopyPaste:{styleType:"column-gradient-color-2"}},gradientType:{type:"string",UAGCopyPaste:{styleType:"column-gradient-type"},default:"linear"},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-mobile-1"}},gradientLocation2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-2"},default:100},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-mobile-2"}},gradientAngle:{type:"number",UAGCopyPaste:{styleType:"column-gradient-angle"},default:0},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"column-gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"column-gradient-angle-mobile"}},gradientPosition:{type:"string",UAGCopyPaste:{styleType:"column-gradient-position"},default:"center center"},isPreview:{type:"boolean",default:!1},equalHeight:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"post-equal-height"}},vAlignContent:{type:"string",default:"flex-start",UAGCopyPaste:{styleType:"post-valign-content"}},...ce("overall"),nameLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},nameLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},nameLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},nameLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},companyLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},companyLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},companyLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},companyLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}},yt={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},tag:{type:"string",default:"h3"},title:{selector:"h1,h2,h3,h4,h5,h6,span,div",default:"John Doe"},prefix:{selector:"div.uagb-team__prefix",default:"Designation"},description_text:{selector:"p",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},prefixColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"prefix-color"}},descColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},socialColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"icon-color"}},socialHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},prefixFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},prefixTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},prefixFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},prefixLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},prefixFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"},default:15},prefixFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},descLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},socialFontSize:{type:"number",UAGCopyPaste:{styleType:"icon-size"},default:20},socialFontSizeType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},socialFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},socialFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},image:{type:"object",default:null},imgStyle:{type:"string",UAGCopyPaste:{styleType:"image-style"},default:"normal"},imgPosition:{type:"string",UAGCopyPaste:{styleType:"image-position"},default:"above"},imgAlign:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"top"},imgSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imgWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"image-width"}},imgWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imgWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},titleSpace:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"},default:6},titleSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},prefixSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:11},prefixSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},descSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"},default:18},descSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},imgLeftMargin:{type:"number",UAGCopyPaste:{styleType:"image-left-margin"}},imgRightMargin:{type:"number",UAGCopyPaste:{styleType:"image-right-margin"}},imgTopMargin:{type:"number",UAGCopyPaste:{styleType:"image-top-margin"}},imgBottomMargin:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"},default:15},socialEnable:{type:"boolean",default:!0},socialSpace:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin"},default:20},socialSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},socialSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},socialTarget:{type:"boolean",default:!1},twitterIcon:{type:"string",default:"twitter"},fbIcon:{type:"string",default:"facebook"},linkedinIcon:{type:"string",default:"linkedin"},pinIcon:{type:"string",default:"pinterest"},twitterLink:{type:"string",default:"#"},fbLink:{type:"string",default:"#"},linkedinLink:{type:"string",default:"#"},pinLink:{type:"string",default:"#"},stack:{type:"string",default:"tablet"},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},prefixLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"prefix-load-google-fonts"},default:!1},descLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},imageLeftMargin:{type:"number",default:20,UAGCopyPaste:{styleType:"image-left-margin"}},imageRightMargin:{type:"number",UAGCopyPaste:{styleType:"image-right-margin"},default:20},imageTopMargin:{type:"number",UAGCopyPaste:{styleType:"image-top-margin"}},imageBottomMargin:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageMarginRightTablet:{type:"number",default:"auto",UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageMarginBottomTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-tablet"},default:"auto"},imageMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-margin-mobile"},default:"auto"},imageMarginBottomMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginLeftMobile:{type:"number",default:"auto",UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageMarginUnit:{type:"string",UAGCopyPaste:{styleType:"image-margin-unit"},default:"px"},tabletImageMarginUnit:{type:"string",UAGCopyPaste:{styleType:"image-margin-unit-tablet"},default:"px"},mobileImageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},spacingLink:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},prefixLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-prefix-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-prefix-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-prefix-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-prefix-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}};const ft=[];for(let e=1;e<=3;e++)ft.push({type:"facebook",image_icon:"icon",icon:"facebook",image:"",icon_color:"#3a3a3a",icon_hover_color:"",icon_bg_color:"",icon_bg_hover_color:""});var ht={classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},block_id:{type:"string"},current_url:{type:"string"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},alignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},social_count:{type:"number",default:3},socials:{type:"array",default:ft},gap:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-gap"}},gapTablet:{type:"number",UAGCopyPaste:{styleType:"icon-gap-tablet"}},gapMobile:{type:"number",UAGCopyPaste:{styleType:"icon-gap-mobile"}},size:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},sizeMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"icon-size-mobile"}},sizeTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"icon-size-tablet"}},bgSize:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-bg-size"}},bgSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-bg-size-unit"}},bgSizeMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-bg-size-mobile"}},bgSizeTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-bg-size-tablet"}},borderRadius:{type:"number",UAGCopyPaste:{styleType:"icon-border-radius"},default:0},borderRadiusTablet:{type:"number",UAGCopyPaste:{styleType:"icon-border-radius-tablet"}},borderRadiusMobile:{type:"number",UAGCopyPaste:{styleType:"icon-border-radius-mobile"}},social_layout:{type:"string",default:"horizontal",UAGCopyPaste:{styleType:"social-layout"}},stack:{type:"string",default:"none"},isPreview:{type:"boolean",default:!1},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},iconHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"},default:""},iconBgColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"},default:""},iconBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-hover-color"},default:""}},vt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},type:{type:"string",default:"facebook"},image_icon:{type:"string",default:"icon"},current_url:{type:"string"},icon:{type:"string",default:"facebook"},image:{type:"object",default:null},icon_color:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},icon_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"},default:""},icon_bg_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"},default:""},icon_bg_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-hover-color"},default:""},parentSize:{type:"number",default:30},parentSizeMobile:{type:"number",default:""},parentSizeTablet:{type:"number",default:""},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}},_t={block_id:{type:"string"},address:{type:"string",default:"Brainstorm Force"},height:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},heightTablet:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},heightMobile:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},zoom:{type:"number",default:12},language:{type:"string",default:"en"},isPreview:{type:"boolean",default:!1},enableSatelliteView:{type:"boolean",default:!1}},Tt={icon:{type:"string",default:"circle-check"},iconSize:{type:"number",default:40,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},iconBorderColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-color"}},iconBackgroundColorType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-color-type"}},iconBackgroundColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-color"}},iconBackgroundGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-gradient-color"}},iconHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconHoverBackgroundColorType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-color-type"}},iconHoverBackgroundColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-color"}},iconHoverBackgroundGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-gradient-color"}},rotation:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-rotation"}},rotationUnit:{type:"string",default:"deg",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-rotation-type"}},block_id:{type:"string"},link:{type:"string",default:""},target:{type:"boolean",default:!1},disableLink:{type:"boolean",default:!1},iconAccessabilityMode:{type:"string",default:"svg"},iconAccessabilityDesc:{type:"string",default:""},iconTopPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-padding"}},iconRightPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-padding"}},iconLeftPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-padding"}},iconBottomPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-padding"}},iconTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-tablet-padding"}},iconRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-tablet-padding"}},iconLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-tablet-padding"}},iconBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-tablet-padding"}},iconTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-mobile-padding"}},iconRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-mobile-padding"}},iconLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-mobile-padding"}},iconBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-mobile-padding"}},iconPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-padding-unit"}},iconTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-tablet-padding-unit"}},iconMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-mobile-padding-unit"}},iconPaddingLink:{type:"boolean",default:!1},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconTopTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-tablet-margin"}},iconRightTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-tablet-margin"}},iconLeftTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-tablet-margin"}},iconBottomTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-tablet-margin"}},iconTopMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-mobile-margin"}},iconRightMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-mobile-margin"}},iconLeftMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-mobile-margin"}},iconBottomMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-mobile-margin"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-tablet-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-mobile-margin-unit"}},iconMarginLink:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},...ce("icon"),iconBorderStyle:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-style"}},useSeparateBoxShadows:{type:"boolean",default:!0},iconShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-color"}},iconShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-hoffset"}},iconShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-voffset"}},iconShadowBlur:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-blur"}},iconBoxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-color"}},iconBoxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-hoffset"}},iconBoxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-voffset"}},iconBoxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-blur"}},iconBoxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-spread"}},iconBoxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-position"}},iconShadowColorHover:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"icon-shadow-color-hover"}},iconShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-hoffset-hover"}},iconShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-voffset-hover"}},iconShadowBlurHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-blur-hover"}},iconBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"icon-box-shadow-color-hover"}},iconBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-box-shadow-hoffset-hover"}},iconBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-box-shadow-voffset-hover"}},iconBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"icon-box-shadow-blur-hover"}},iconBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"icon-box-shadow-spread-hover"}},iconBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"icon-box-shadow-position-hover"}}};const Ct=[];for(let e=1;e<=3;e++)Ct.push({label:"#Label",image_icon:"icon",icon:"",image:"",icon_color:"",label_color:"",icon_hover_color:"",label_hover_color:"",icon_bg_color:"",icon_bg_hover_color:"",icon_border_color:"",icon_border_hover_color:"",link:"#",target:!1,disableLink:!0,hideLabel:!1});var St={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},icon_count:{type:"number",default:3},parentIcon:{type:"string",default:"circle-arrow-right"},icons:{type:"array",default:Ct},gap:{type:"number",UAGCopyPaste:{styleType:"icon-gap"},default:10},gapTablet:{type:"number",UAGCopyPaste:{styleType:"icon-gap"}},gapMobile:{type:"number",UAGCopyPaste:{styleType:"icon-gap"}},gapType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},inner_gap:{type:"number",default:15,UAGCopyPaste:{styleType:"icon-inner-gap"}},innerGapTablet:{type:"number",UAGCopyPaste:{styleType:"icon-inner-gap"}},innerGapMobile:{type:"number",UAGCopyPaste:{styleType:"icon-inner-gap"}},innerGapType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},iconPosition:{type:"string",UAGCopyPaste:{styleType:"icon-position"},default:"middle"},iconPositionTablet:{type:"string",UAGCopyPaste:{styleType:"icon-position-tablet"},default:""},iconPositionMobile:{type:"string",UAGCopyPaste:{styleType:"icon-position-mobile"},default:""},iconPlacement:{type:"string",UAGCopyPaste:{styleType:"icon-placement"},default:"before"},size:{type:"number",UAGCopyPaste:{styleType:"icon-size"},default:16},sizeType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},sizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},sizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},bgSize:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size"},default:0},bgSizeType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},bgSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-tablet"}},bgSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-mobile"}},border:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-border-style"}},borderTablet:{type:"number",UAGCopyPaste:{styleType:"icon-border-style"}},borderMobile:{type:"number",UAGCopyPaste:{styleType:"icon-border-style"}},borderType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-unit"}},borderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-border-radius"}},borderRadiusTablet:{type:"number",UAGCopyPaste:{styleType:"icon-border-radius"}},borderRadiusMobile:{type:"number",UAGCopyPaste:{styleType:"icon-border-radius"}},borderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},hideLabel:{type:"boolean",default:!1},fontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},fontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},fontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},fontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},fontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},fontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},fontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},fontTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},fontDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},lineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},lineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},lineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},lineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},loadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},icon_layout:{type:"string",default:"vertical",UAGCopyPaste:{styleType:"icon-layout"}},iconLayoutTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-layout-tablet"}},iconLayoutMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-layout-mobile"}},isPreview:{type:"boolean",default:!1},labelLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},labelLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},labelColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},iconHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},labelHoverColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},iconBgColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"},default:""},iconBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderColor:{type:"string",UAGCopyPaste:{styleType:"icon-border-color"},default:""},iconBorderHoverColor:{type:"string",UAGCopyPaste:{styleType:"icon-border-hover-color"}},blockTopMargin:{type:"number",UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0}},wt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},label:{type:"html",selector:".uagb-icon-list__label",default:Object(r.__)("List item","ultimate-addons-for-gutenberg")},image_icon:{type:"string",default:"icon"},hideLabel:{type:"boolean",default:!1},disableIcon:{type:"boolean",default:!1},icon:{type:"string",default:""},image:{type:"object"},icon_color:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},label_color:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},icon_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},label_hover_color:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},icon_bg_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"},default:""},icon_bg_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},icon_border_color:{type:"string",UAGCopyPaste:{styleType:"icon-border-color"},default:""},icon_border_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-border-hover-color"}},link:{type:"string",default:"#"},target:{type:"boolean",default:!1},disableLink:{type:"boolean",default:!1},fromParentIcon:{type:"string",default:"circle-arrow-right"},childTopMargin:{type:"number",UAGCopyPaste:{styleType:"child-top-margin"}},childRightMargin:{type:"number",UAGCopyPaste:{styleType:"child-right-margin"}},childLeftMargin:{type:"number",UAGCopyPaste:{styleType:"child-left-margin"}},childBottomMargin:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin"}},childTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-top-margin-tablet"}},childRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-right-margin-tablet"}},childLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-left-margin-tablet"}},childBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin-tablet"}},childTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-top-margin-mobile"}},childRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-right-margin-mobile"}},childLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-left-margin-mobile"}},childBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin-mobile"}},childMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit"}},childMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit-tablet"}},childMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit-mobile"}},childMarginLink:{type:"boolean",default:!1},childTopPadding:{type:"number",UAGCopyPaste:{styleType:"child-top-padding"}},childRightPadding:{type:"number",UAGCopyPaste:{styleType:"child-right-padding"}},childLeftPadding:{type:"number",UAGCopyPaste:{styleType:"child-left-padding"}},childBottomPadding:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding"}},childTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-top-padding-tablet"}},childRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-right-padding-tablet"}},childLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-left-padding-tablet"}},childBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding-tablet"}},childTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-top-padding-mobile"}},childRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-right-padding-mobile"}},childLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-left-padding-mobile"}},childBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding-mobile"}},childPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit"}},childPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit-tablet"}},childPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit-mobile"}},childPaddingLink:{type:"boolean",default:!0},imageSizeChild:{type:"number",default:16},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}};const kt=[];for(let e=1;e<=4;e++){const t=Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit.","ultimate-addons-for-gutenberg"),a="Menu Item "+e,l=Object(r.__)("$9","ultimate-addons-for-gutenberg");kt.push({description:t,title:a,price:l,image:""})}var Pt={classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},menu_item_count:{type:"number",default:4},rest_menu_item_arr:{type:"array",default:kt},headingAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},priceSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"prefix-bottom-margin"}},descSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-bottom-margin"}},titleSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},block_id:{type:"string",default:"not_set"},imgVrPadding:{type:"number",UAGCopyPaste:{styleType:"image-vertical-padding"}},imgHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"image-horizontal-padding"}},imgPaddingTop:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"}},imgPaddingRight:{type:"number",default:10,UAGCopyPaste:{styleType:"image-right-padding"}},imgPaddingBottom:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"}},imgPaddingLeft:{type:"number",UAGCopyPaste:{styleType:"image-left-padding"}},contentPaddingTop:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},contentPaddingRight:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},contentPaddingBottom:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},contentPaddingLeft:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},columns:{type:"number",default:2},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},rowGap:{type:"number",UAGCopyPaste:{styleType:"row-gap"},default:10},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap"}},columnGap:{type:"number",UAGCopyPaste:{styleType:"column-gap"},default:10},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap"}},contentVrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},contentHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},stack:{type:"string",default:"tablet"},seperatorStyle:{type:"string",default:"dashed",UAGCopyPaste:{styleType:"separator-style"}},seperatorWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthTablet:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},seperatorThickness:{type:"number",default:1,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorColor:{type:"string",default:"#b2b4b5",UAGCopyPaste:{styleType:"separator-color"}},descColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"desc-color"}},priceColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"prefix-color"}},titleColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"main-title-color"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},titleLineHeight:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},priceFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},priceFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},priceFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},priceFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},priceFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},priceFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},priceFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},priceLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},priceLineHeight:{type:"number",default:1,UAGCopyPaste:{styleType:"prefix-line-height"}},priceLineHeightTablet:{type:"number",default:1,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},priceLineHeightMobile:{type:"number",default:1,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},priceLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"prefix-load-google-fonts"},default:!1},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",default:1,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",default:1,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",default:1,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},headingTag:{type:"string",default:"h4"},imagePosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"image-position"}},imageAlignment:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-align"}},imageSize:{type:"string",default:"medium",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"image-width"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width"}},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width"}},imageWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-type"}},seperatorWidthType:{type:"string",UAGCopyPaste:{styleType:"separator-width-type"},default:"%"},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},titleSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-bottom-margin-type"}},contentPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},contentPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentPaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},contentPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentPaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},contentMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},contentTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},contentSpacingLink:{type:"boolean",default:!1},imgPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-tablet"}},imgPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-tablet"}},imgPaddingBottomTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"image-bottom-padding-tablet"}},imgPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-tablet"}},imgPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-mobile"}},imgPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-mobile"}},imgPaddingBottomMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"image-bottom-padding-mobile"}},imgPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-mobile"}},imgPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit"}},imgMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-mobile"}},imgTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-tablet"}},imgSpacingLink:{type:"boolean",default:!1},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},priceTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},priceDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},imgAlign:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"side"},isPreview:{type:"boolean",default:!1},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},priceLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"price-letter-spacing"}},priceLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"price-letter-spacing-tablet"}},priceLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"price-letter-spacing-mobile"}},priceLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"price-letter-spacing-type"}},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"title-letter-spacing-type"}},showImage:{type:"boolean",default:!0}},xt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},description:{type:"string",default:Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit.","ultimate-addons-for-gutenberg")},title:{type:"string",default:Object(r.__)("Menu Item","ultimate-addons-for-gutenberg")},price:{type:"string",default:Object(r.__)("$9","ultimate-addons-for-gutenberg")},image:{type:"object",default:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/uag-placeholder.svg"}},imagePosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"image-position"}},imageAlignment:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-align"}},imageSize:{type:"string",default:"medium",UAGCopyPaste:{styleType:"image-size"}},headingTag:{type:"string",default:"h4"},columns:{type:"number",default:2},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},headingAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},stack:{type:"string",default:"tablet"},imageWidth:{type:"number",default:100},imgAlign:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"side"},showImage:{type:"boolean",default:!0},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}};const At=[],Gt=[];for(let e=1;e<=5;e++){At.push({time_heading:Object(r.__)("Timeline Heading ","ultimate-addons-for-gutenberg")+e,time_desc:Object(r.__)("This is timeline description. Please click here to change this description.","ultimate-addons-for-gutenberg")});const t=e-1;let a=new Date("1/1/2019"),l=a.getDate(),i=a.getMonth()+1;const o=a.getFullYear()-t;l<10&&(l="0"+l),i<10&&(i="0"+i),a=i+"/"+l+"/"+o,Gt.push({title:a})}var Mt={content_class:{type:"string"},tm_content:{type:"array",default:At},classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},dateFormat:{type:"string",default:"F j, Y"},blockName:{type:"string",default:"content-timeline"},align:{type:"string",UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},separatorBg:{type:"string",default:"#eee",UAGCopyPaste:{styleType:"connector-bg-color"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"post-bg-color"},default:"#eee"},separatorColor:{type:"string",UAGCopyPaste:{styleType:"connector-color"},default:"#eee"},separatorFillColor:{type:"string",UAGCopyPaste:{styleType:"connector-fill-color"},default:"#0693e3"},separatorBorder:{type:"string",UAGCopyPaste:{styleType:"connector-border-color"},default:"#eee"},borderFocus:{type:"string",UAGCopyPaste:{styleType:"overall-border-focus-color"},default:"#0693e3"},headingTag:{type:"string",default:"h4"},horizontalSpace:{type:"number",UAGCopyPaste:{styleType:"row-gap"},default:10},horizontalSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},horizontalSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},horizontalSpaceUnit:{type:"string",default:"px"},horizontalSpaceUnitTablet:{type:"string",default:"px"},horizontalSpaceUnitMobile:{type:"string",default:"px"},verticalSpace:{type:"number",UAGCopyPaste:{styleType:"column-gap"},default:15},verticalSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},verticalSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},verticalSpaceUnit:{type:"string",default:"px"},verticalSpaceUnitTablet:{type:"string",default:"px"},verticalSpaceUnitMobile:{type:"string",default:"px"},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},timelinAlignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},timelinAlignmentTablet:{type:"string",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},timelinAlignmentMobile:{type:"string",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},arrowlinAlignment:{type:"string",UAGCopyPaste:{styleType:"arrowline-alignment"},default:"center"},subHeadFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},subHeadLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"},default:"em"},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},headSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},separatorwidth:{type:"number",UAGCopyPaste:{styleType:"connector-width"},default:3},borderwidth:{type:"number",default:0,UAGCopyPaste:{styleType:"overall-border-width"}},iconColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"icon-color"}},iconFocus:{type:"string",UAGCopyPaste:{styleType:"icon-focus-color"},default:"#fff"},iconBgFocus:{type:"string",UAGCopyPaste:{styleType:"icon-bg-focus-color"},default:"#0693e3"},dateColor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"},default:"#333"},dateFontsizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},dateFontsize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},dateFontsizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},dateFontsizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},dateFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"}},dateFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},dateFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},dateFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},dateFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},dateFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},dateFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},dateTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"}},dateDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height"}},dateLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},dateLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},dateLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},dateLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},dateLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},connectorBgsize:{type:"number",UAGCopyPaste:{styleType:"connector-bg-size"},default:35},connectorBgsizeTablet:{type:"number",UAGCopyPaste:{styleType:"connector-bg-size-tablet"}},connectorBgsizeMobile:{type:"number",UAGCopyPaste:{styleType:"connector-bg-size-mobile"}},subHeadSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-space"},default:5},dateBottomspace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-space"},default:5},dateBottomspaceTablet:{type:"number",UAGCopyPaste:{styleType:"date-bottom-space"}},dateBottomspaceMobile:{type:"number",UAGCopyPaste:{styleType:"date-bottom-space"}},block_id:{type:"string",default:"0"},timelineItem:{type:"number",default:5},tm_client_id:{type:"string",default:"not_set"},borderRadius:{type:"number",default:2,UAGCopyPaste:{styleType:"overall-border-radius"}},borderRadiusTablet:{type:"number",UAGCopyPaste:{styleType:"overall-border-radius"}},borderRadiusMobile:{type:"number",UAGCopyPaste:{styleType:"overall-border-radius"}},bgPadding:{type:"number",UAGCopyPaste:{styleType:"post-bg-padding"},default:20},iconSize:{type:"number",UAGCopyPaste:{styleType:"icon-size"},default:12},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},icon:{type:"string",default:"calendar-days"},t_date:{type:"array",default:Gt},displayPostDate:{type:"boolean",default:!0},stack:{type:"string",default:"tablet"},leftMargin:{type:"number",UAGCopyPaste:{styleType:"post-left-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"post-right-margin"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"post-top-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-margin-tablet"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin-tablet"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-margin-mobile"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin-mobile"}},marginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit"}},mobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit-mobile"}},tabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit-tablet"}},marginLink:{type:"boolean",default:!1},leftPadding:{type:"number",UAGCopyPaste:{styleType:"post-left-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"post-right-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"post-top-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-tablet"}},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-tablet"}},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-tablet"}},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-tablet"}},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-mobile"}},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-mobile"}},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-mobile"}},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-mobile"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"head-letter-spacing-type"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"subHead-letter-spacing-type"}},dateLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing"}},dateLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing-tablet"}},dateLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing-mobile"}},dateLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"date-letter-spacing-type"}}},Rt={isPreview:{type:"boolean",default:!1},content_class:{type:"string"},dayalign_class:{type:"string"},time_heading:{type:"string",default:Object(r.__)("Timeline Heading ","ultimate-addons-for-gutenberg")},time_desc:{type:"string",default:Object(r.__)("This is timeline description. Please click here to change this description.","ultimate-addons-for-gutenberg")},dateFormat:{type:"string",default:"F j, Y"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingTag:{type:"string",default:"h4"},timelinAlignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"timeline-alignment"}},timelinAlignmentTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"timeline-alignment-tablet"}},timelinAlignmentMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"timeline-alignment-mobile"}},arrowlinAlignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"arrowline-alignment"}},block_id:{type:"string",default:"0"},timelineItem:{type:"number",default:5},tm_client_id:{type:"string",default:"not_set"},iconSize:{type:"number",default:12,UAGCopyPaste:{styleType:"icon-size"}},icon:{type:"string",default:"calendar-days"},t_date:{type:"string",default:"1/1/2019"},displayPostDate:{type:"boolean"},stack:{type:"string",default:"tablet"}},Bt={blockName:{type:"string",default:"post-timeline"},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},align:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},readMoreText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"prefix-color"}},separatorBg:{type:"string",default:"#eee",UAGCopyPaste:{styleType:"connector-bg-color"}},backgroundColor:{type:"string",default:"#eee",UAGCopyPaste:{styleType:"timeline-bg-color"}},separatorColor:{type:"string",default:"#eee",UAGCopyPaste:{styleType:"connector-color"}},separatorFillColor:{type:"string",default:"#0693e3",UAGCopyPaste:{styleType:"connector-fill-color"}},separatorBorder:{type:"string",default:"#eee",UAGCopyPaste:{styleType:"connector-border-color"}},borderFocus:{type:"string",default:"#5cb85c",UAGCopyPaste:{styleType:"overall-border-focus-color"}},headingTag:{type:"string",default:"h3"},horizontalSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"row-gap"}},horizontalSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},horizontalSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},horizontalSpaceUnit:{type:"string",default:"px"},horizontalSpaceUnitTablet:{type:"string",default:"px"},horizontalSpaceUnitMobile:{type:"string",default:"px"},verticalSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"column-gap"}},verticalSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},verticalSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},verticalSpaceUnit:{type:"string",default:"px"},verticalSpaceUnitTablet:{type:"string",default:"px"},verticalSpaceUnitMobile:{type:"string",default:"px"},timelinAlignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment-desktop"}},timelinAlignmentTablet:{type:"string",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},timelinAlignmentMobile:{type:"string",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},arrowlinAlignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"arrowline-alignment"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1},headSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},authorSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"author-bottom-margin"}},authorSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin"}},authorSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin"}},contentSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-bottom-margin"}},separatorwidth:{type:"number",default:3,UAGCopyPaste:{styleType:"connector-width"}},borderwidth:{type:"number",default:0,UAGCopyPaste:{styleType:"overall-border-width"}},iconColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"icon-color"}},iconFocus:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgFocus:{type:"string",default:"#0693e3",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},authorColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"prefix-color"}},authorFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},authorFontSize:{type:"number",default:11,UAGCopyPaste:{styleType:"prefix-font-size"}},authorFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},authorFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},authorFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"prefix-font-family"}},authorFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},authorFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},authorLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},authorLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},authorLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},authorLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},authorLoadGoogleFonts:{type:"boolean",default:!1},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},ctaLoadGoogleFonts:{type:"boolean",default:!1},dateColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"date-color"}},dateFontsizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"date-font-size-type"}},dateFontsize:{type:"number",default:12,UAGCopyPaste:{styleType:"date-font-size"}},dateFontsizeTablet:{type:"number",UAGCopyPaste:{styleType:"date-font-size-tablet"}},dateFontsizeMobile:{type:"number",UAGCopyPaste:{styleType:"date-font-size-mobile"}},dateFontSizeType:{type:"string",UAGCopyPaste:{styleType:"date-font-size-type"}},dateFontSize:{type:"number",UAGCopyPaste:{styleType:"date-font-size"}},dateFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"date-font-size-tablet"}},dateFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"date-font-size-mobile"}},dateFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"date-font-family"}},dateFontWeight:{type:"string",UAGCopyPaste:{styleType:"date-font-weight"}},dateFontStyle:{type:"string",UAGCopyPaste:{styleType:"date-font-style"}},dateLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"date-line-height-type"}},dateLineHeight:{type:"number",UAGCopyPaste:{styleType:"date-line-height"}},dateLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"date-line-height-tablet"}},dateLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"date-line-height-mobile"}},dateLoadGoogleFonts:{type:"boolean",default:!1},connectorBgsize:{type:"number",default:35,UAGCopyPaste:{styleType:"connector-bg-size"}},dateBottomspace:{type:"number",default:5,UAGCopyPaste:{styleType:"date-bottom-space"}},dateBottomspaceTablet:{type:"number",UAGCopyPaste:{styleType:"date-bottom-space"}},dateBottomspaceMobile:{type:"number",UAGCopyPaste:{styleType:"date-bottom-space"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headLoadGoogleFonts:{type:"boolean",default:!1},categories:{type:"string"},postType:{type:"string",default:"post"},taxonomyType:{type:"string",default:"category"},postsToShow:{type:"number",default:6},postsOffset:{type:"number",default:0},displayPostDate:{type:"boolean",default:!0},dateFormat:{type:"string",default:"F j, Y"},displayPostExcerpt:{type:"boolean",default:!0},displayPostAuthor:{type:"boolean",default:!0},displayPostImage:{type:"boolean",default:!0},displayPostLink:{type:"boolean",default:!0},exerptLength:{type:"number",default:15},postLayout:{type:"string",default:"grid"},columns:{type:"number",default:2},width:{type:"string",default:"wide"},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},imageSize:{type:"string",default:"large",UAGCopyPaste:{styleType:"image-size"}},block_id:{type:"string",default:"not_set"},icon:{type:"string",default:"calendar-days"},borderRadius:{type:"number",default:2,UAGCopyPaste:{styleType:"overall-border-radius"}},borderRadiusTablet:{type:"number",UAGCopyPaste:{styleType:"overall-border-radius"}},borderRadiusMobile:{type:"number",UAGCopyPaste:{styleType:"overall-border-radius"}},bgPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"timeline-bg-padding"}},contentPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-padding"}},iconSize:{type:"number",default:15,UAGCopyPaste:{styleType:"icon-size"}},ctaColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaBackground:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},stack:{type:"string",default:"tablet"},linkTarget:{type:"boolean",default:!1},excludeCurrentPost:{type:"boolean",default:!1},leftMargin:{type:"number",UAGCopyPaste:{styleType:"post-left-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"post-right-margin"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"post-top-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-margin-tablet"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin-tablet"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-margin-mobile"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-margin-mobile"}},marginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit"}},mobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit-mobile"}},tabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-margin-unit-tablet"}},marginLink:{type:"boolean",default:!1},leftPadding:{type:"number",UAGCopyPaste:{styleType:"post-left-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"post-right-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"post-top-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding"}},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-tablet"}},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-tablet"}},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-tablet"}},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-tablet"}},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-left-padding-mobile"}},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-right-padding-mobile"}},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-top-padding-mobile"}},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"post-bottom-padding-mobile"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"post-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!1},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},authorTransform:{type:"string",UAGCopyPaste:{styleType:"author-transform"}},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},dateTransform:{type:"string",UAGCopyPaste:{styleType:"date-transform"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},authorDecoration:{type:"string",UAGCopyPaste:{styleType:"author-decoration"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},dateDecoration:{type:"string",UAGCopyPaste:{styleType:"date-decoration"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},ctaBottomSpacing:{type:"number",default:0,UAGCopyPaste:{styleType:"cta-bottom-spacing"}},ctaBottomSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-bottom-spacing"}},ctaBottomSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-bottom-spacing"}},headTopSpacing:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-top-spacing"}},headTopSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-spacing"}},headTopSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-spacing"}},isPreview:{type:"boolean",default:!1},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"head-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"head-letter-spacing-type"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"subHead-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"subHead-letter-spacing-type"}},dateLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing"}},dateLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing-tablet"}},dateLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"date-letter-spacing-mobile"}},dateLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"date-letter-spacing-type"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},authorLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing"}},authorLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing-tablet"}},authorLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing-mobile"}},authorLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-letter-spacing-type"}},allTaxonomyStore:{type:"object"}};const Ut=ce("btn"),Et=ce("secondCta");var Ot={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},ctaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"cta-btn-type"}},secCtaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"sec-cta-btn-type"}},secInheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},ctaTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},description:{source:"html",selector:"p",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},tempDesc:{type:"string",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},enableMultilineParagraph:{type:"boolean",default:!1},textAlign:{type:"string",default:"left",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-align"}},titleColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},descColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},ctaPosition:{type:"string",default:"right",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-position"}},titleTag:{type:"string",default:"h3"},titleFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},titleFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},titleFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},titleTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},descFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},descFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},descFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},titleSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-type"}},descSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},descSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit-type"}},block_id:{type:"string",default:"not_set"},buttonAlign:{type:"string",default:"middle",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},ctaTarget:{type:"boolean",default:!1},showIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},showSecondIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-second-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},htmlTag:{type:"string",default:"div"},ctaType:{type:"string",default:"button"},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:"#"},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"},default:"Default"},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"},default:"normal"},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},contentWidth:{type:"number",default:70,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-width-type"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHoverType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-type"}},secondCtaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"second-btn-bg-type"}},secondCtaBgHoverType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"second-btn-bg-type"}},ctaBgColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBtnVertPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"},default:""},ctaBtnHrPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"},default:""},stack:{type:"string",default:"tablet"},ctaLeftSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},ctaTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},ctaBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},ctaLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},ctaRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},ctaLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},ctaRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},ctaTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},ctaBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},ctaLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},ctaRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},ctaTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},ctaBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},ctaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobileCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},ctaPaddingLink:{type:"boolean",default:!1},enabledSecondCtaButton:{type:"boolean",default:!1},secondCtaLabel:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},secondCtaLink:{type:"string",default:"#"},secondCtaTarget:{type:"boolean",default:!1},secondCtaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},secondCtaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},secondCtaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},secondCtaFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},secondCtaFontTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-transform"}},secondCtaFontDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-decoration"}},secondCtaTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},secondCtaRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},secondCtaBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},secondCtaLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},secondCtaTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},secondCtaRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},secondCtaBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},secondCtaLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},secondCtaTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},secondCtaRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},secondCtaBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},secondCtaLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},secondCtaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},secondCtaMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},secondCtaTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},secondCtaPaddingLink:{type:"boolean",default:!1},secondCtaBorderWidth:{type:"number",default:""},secondCtaBorderRadius:{type:"number",default:""},secondCtaBorderStyle:{type:"string",default:"none"},secondCtaBorderColor:{type:"string",default:""},secondCtaBorderHColor:{type:"string",default:""},secondCtaColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},secondCtaBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},secondCtaHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},secondCtaHoverBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},secondCtaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"},default:14},secondCtaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},secondCtaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},secondCtaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},secondCtaFontSizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},secondCtaFontSizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},secondCtaIcon:{type:"string",default:"right-long"},secondCtaIconPosition:{type:"string",default:"after"},secondCtaIconSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},secondCtaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},secondCtaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},isPreview:{type:"boolean",default:!1},stackBtn:{type:"string",default:"none"},gapBtn:{type:"number",default:15},gapBtnTablet:{type:"number"},gapBtnMobile:{type:"number"},textAlignTablet:{type:"string",default:"center"},textAlignMobile:{type:"string",default:"center"},overallBlockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},overallBlockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},overallBlockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},overallBlockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},overallBlockTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},overallBlockRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},overallBlockBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},overallBlockLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},overallBlockTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},overallBlockRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},overallBlockBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},overallBlockLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},overallBlockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},overallBlockMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},overallBlockTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},overallBlockPaddingLink:{type:"boolean",default:!1},overallBlockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},overallBlockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},overallBlockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},overallBlockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},overallBlockTopMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},overallBlockRightMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},overallBlockBottomMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},overallBlockLeftMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},overallBlockTopTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},overallBlockRightTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},overallBlockBottomTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},overallBlockLeftTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},overallBlockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit"}},overallBlockMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-mobile"}},overallBlockTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-tablet"}},overallBlockMarginLink:{type:"boolean",default:!1},buttonRightSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin"}},buttonRightSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin-tablet"}},buttonRightSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin-mobile"}},buttonRightSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-button-unit-type"}},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string",default:""},ctaBorderStyle:{type:"string",default:"solid"},...Ut,...Et,titleLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},secondCtaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing"}},secondCtaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing-tablet"}},secondCtaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing-mobile"}},secondCtaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"secondCta-letter-spacing-type"}},btncontentWidth:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-width-type"}}},Lt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"column-align"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"column-align-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"column-align-mobile"}},topPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"column-top-padding"}},bottomPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"column-bottom-padding"}},leftPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"column-left-padding"}},rightPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"column-right-padding"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"column-top-margin"},default:""},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin"},default:""},leftMargin:{type:"number",UAGCopyPaste:{styleType:"column-left-margin"},default:""},rightMargin:{type:"number",UAGCopyPaste:{styleType:"column-right-margin"},default:""},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-top-padding-tablet"},default:""},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-bottom-padding-tablet"},default:""},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-left-padding-tablet"},default:""},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-right-padding-tablet"},default:""},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-top-margin-tablet"},default:""},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin-tablet"},default:""},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-left-margin-tablet"},default:""},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-tablet"},default:""},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-top-padding-mobile"},default:""},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-bottom-padding-mobile"},default:""},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-left-padding-mobile"},default:""},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-right-padding-mobile"},default:""},paddingLink:{type:"boolean",default:!1},marginLink:{type:"boolean",default:!1},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-top-margin-mobile"},default:""},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin-mobile"},default:""},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-left-margin-mobile"},default:""},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-mobile"},default:""},colWidth:{type:"number",default:"",UAGCopyPaste:{styleType:"column-width"}},colWidthTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"column-width-tablet"}},colWidthMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"column-width-mobile"}},backgroundType:{type:"string",UAGCopyPaste:{styleType:"column-background-type"}},backgroundImage:{type:"object",UAGCopyPaste:{styleType:"column-background-image"}},backgroundPosition:{type:"string",default:"center-center",UAGCopyPaste:{styleType:"column-background-position"}},backgroundSize:{type:"string",default:"cover",UAGCopyPaste:{styleType:"column-background-size"}},backgroundRepeat:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"column-background-repeat"}},backgroundAttachment:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"column-background-attachment"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"column-background-color"}},gradientColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-1"}},gradientColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"column-gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"column-gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-angle"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"column-background-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"column-background-image-color"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string"},borderHoverColor:{type:"string"},overlayType:{type:"string",default:"color",UAGCopyPaste:{styleType:"column-overlay-type"}},gradientOverlayColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-color-1"}},gradientOverlayColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-overlay-color-2"}},gradientOverlayType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"column-gradient-overlay-type"}},gradientOverlayLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-overlay-location-1"}},gradientOverlayLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"column-gradient-overlay-location-2"}},gradientOverlayAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-overlay-angle"}},mobileMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-mobile"}},tabletMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-tablet"}},desktopMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-unit-desktop"}},mobilePaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-mobile"}},tabletPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-tablet"}},desktopPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-unit-desktop"}},gradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"column-gradient-value"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},...ce("column")},Ht={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},columns:{type:"number",default:2},align:{type:"string",UAGCopyPaste:{styleType:"column-align"}},vAlign:{type:"string",UAGCopyPaste:{styleType:"column-v-align"}},stack:{type:"string",default:"mobile"},columnGap:{type:"string",default:"10",UAGCopyPaste:{styleType:"column-gap"}},topPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"column-top-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"column-bottom-padding"},default:20},leftPadding:{type:"number",UAGCopyPaste:{styleType:"column-left-padding"},default:20},rightPadding:{type:"number",UAGCopyPaste:{styleType:"column-right-padding"},default:20},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-top-padding-tablet"}},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-bottom-padding-tablet"}},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-left-padding-tablet"}},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"column-right-padding-tablet"}},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-top-padding-mobile"}},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-bottom-padding-mobile"}},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-left-padding-mobile"}},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"column-right-padding-mobile"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"column-top-margin"},default:0},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"column-top-margin"},default:0},topMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"column-top-margin-desktop"},default:0},rightMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-desktop"},default:0},leftMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"column-left-margin-desktop"},default:0},bottomMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin-desktop"},default:0},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-top-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-left-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin-mobile"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-top-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-right-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-left-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"column-bottom-margin-tablet"}},contentWidth:{type:"string",default:"theme",UAGCopyPaste:{styleType:"column-content-width"}},width:{type:"number",UAGCopyPaste:{styleType:"column-width"},default:900},widthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-width-type"}},tag:{type:"string",default:"section"},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-bg-type"}},backgroundImage:{type:"object",UAGCopyPaste:{styleType:"column-bg-image"}},backgroundPosition:{type:"string",UAGCopyPaste:{styleType:"column-bg-position"},default:"center-center"},backgroundSize:{type:"string",UAGCopyPaste:{styleType:"column-bg-size"},default:"cover"},backgroundRepeat:{type:"string",UAGCopyPaste:{styleType:"column-bg-repeat"},default:"no-repeat"},backgroundAttachment:{type:"string",UAGCopyPaste:{styleType:"column-bg-attachment"},default:"scroll"},backgroundVideo:{type:"object",UAGCopyPaste:{styleType:"column-bg-video"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-color"}},overlayType:{type:"string",default:"color",UAGCopyPaste:{styleType:"column-overlay-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-1"}},gradientColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"column-gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"column-gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-angle"}},gradientPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"column-gradient-position"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-opacity"}},backgroundVideoOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-video-opacity"},default:50},backgroundVideoColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-video-color"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-image-color"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderColor:{type:"string"},borderHoverColor:{type:"string"},bottomType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-bottom-type"}},bottomColor:{type:"string",UAGCopyPaste:{styleType:"column-bottom-color"},default:"#333"},bottomHeight:{type:"number",UAGCopyPaste:{styleType:"column-bottom-height"}},bottomHeightTablet:{type:"number",UAGCopyPaste:{styleType:"column-bottom-height-tablet"}},bottomHeightMobile:{type:"number",UAGCopyPaste:{styleType:"column-bottom-height-mobile"}},bottomWidth:{type:"number",UAGCopyPaste:{styleType:"column-bottom-width"}},topType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-top-type"}},topColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"column-top-color"}},topHeight:{type:"number",UAGCopyPaste:{styleType:"column-top-height"}},topHeightTablet:{type:"number",UAGCopyPaste:{styleType:"column-top-height-tablet"}},topHeightMobile:{type:"number",UAGCopyPaste:{styleType:"column-top-height-mobile"}},topWidth:{type:"number",UAGCopyPaste:{styleType:"column-top-width"}},topFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-top-flip"}},bottomFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-bottom-flip"}},reverseTablet:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-reverse-tablet"}},reverseMobile:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-reverse-mobile"}},topDividerOpacity:{type:"number",default:100,UAGCopyPaste:{styleType:"column-top-divider-opacity"}},bottomDividerOpacity:{type:"number",default:100,UAGCopyPaste:{styleType:"column-bottom-divider-opacity"}},topContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-top-content-above-shape"}},bottomContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"column-bottom-content-above-shape"}},mobileMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-type-mobile"}},tabletMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-type-tablet"}},desktopMarginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-margin-type-desktop"}},mobilePaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-type-mobile"}},tabletPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-type-tablet"}},desktopPaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-padding-type-desktop"}},paddingLink:{type:"boolean",default:!1},marginLink:{type:"boolean",default:!1},boxShadowColor:{type:"string",UAGCopyPaste:{styleType:"column-box-shadow-color"}},boxShadowHOffset:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-hoffset"},default:0},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"column-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"column-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"column-box-shadow-position"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgb(6, 147, 227, 0.5) 0%, rgb(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"column-gradient-value"}},isPreview:{type:"boolean",default:!1},...ce("columns")},jt={block_id:{type:"string"},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},className:{type:"string"},formId:{type:"string",default:"0"},isHtml:{type:"boolean"},formJson:{type:"object",default:null},fieldStyle:{type:"string",default:"box",UAGCopyPaste:{styleType:"field-style"}},fieldVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"field-v-padding"}},fieldHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"field-h-padding"}},fieldBgColor:{type:"string",default:"#fafafa",UAGCopyPaste:{styleType:"field-bg-color"}},fieldLabelColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"main-title-color"}},fieldInputColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"input-color"}},fieldBorderStyle:{type:"string",default:"solid"},fieldBorderWidth:{type:"number",default:1},fieldBorderRadius:{type:"number",default:0},fieldBorderColor:{type:"string",default:"#eeeeee"},fieldBorderFocusColor:{type:"string",default:""},buttonAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},buttonAlignmentTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-tablet"}},buttonAlignmentMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-mobile"}},buttonVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-vertical-padding"}},buttonHrPadding:{type:"number",default:25,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},buttonBorderStyle:{type:"string",default:"solid"},buttonBorderWidth:{type:"number",default:1},buttonBorderRadius:{type:"number",default:0},buttonBorderColor:{type:"string",default:"#333"},buttonTextColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-color"}},buttonBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},buttonBorderHoverColor:{type:"string",default:"#333"},buttonTextHoverColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-hover-color"}},buttonBgHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},fieldSpacing:{type:"number",default:"",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldSpacingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldSpacingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldLabelSpacing:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},fieldLabelSpacingTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},fieldLabelSpacingMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},labelFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-font-size"}},labelFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},labelFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},labelFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},labelFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},labelFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},labelLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},labelLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},labelLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},labelLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},inputFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"input-font-size"}},inputFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-font-size-type"}},inputFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"input-font-size-tablet"}},inputFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"input-font-size-mobile"}},inputFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"input-font-family"}},inputFontWeight:{type:"string",UAGCopyPaste:{styleType:"input-font-weight"}},inputLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"input-line-height-type"}},inputLineHeight:{type:"number",UAGCopyPaste:{styleType:"input-line-height"}},inputLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"input-line-height-tablet"}},inputLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"input-line-height-mobile"}},inputLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"input-load-google-fonts"}},buttonFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},buttonFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},buttonFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},buttonFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},buttonFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},buttonFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},buttonLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},buttonLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},buttonLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},buttonLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},buttonLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},enableOveride:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"enable-overide"}},radioCheckSize:{type:"number",default:10,UAGCopyPaste:{styleType:"radio-size"}},radioCheckSizeTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"radio-size"}},radioCheckSizeMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"radio-size"}},radioCheckBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"radio-bg-color"}},radioCheckSelectColor:{type:"string",default:"",UAGCopyPaste:{styleType:"radio-select-color"}},radioCheckLableColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},radioCheckBorderColor:{type:"string",default:"#abb8c3",UAGCopyPaste:{styleType:"radio-border-color"}},radioCheckBorderWidth:{type:"number",default:"",UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthTablet:{type:"number",default:0,UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthMobile:{type:"number",default:0,UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-border-width-type"}},radioCheckBorderRadius:{type:"number",default:"",UAGCopyPaste:{styleType:"radio-border-radius"}},radioCheckFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"radio-font-size"}},radioCheckFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-font-size-type"}},radioCheckFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"radio-font-size-tablet"}},radioCheckFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"radio-font-size-mobile"}},radioCheckFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"radio-font-family"}},radioCheckFontWeight:{type:"string",UAGCopyPaste:{styleType:"radio-font-weight"}},radioCheckLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"radio-line-height-type"}},radioCheckLineHeight:{type:"number",UAGCopyPaste:{styleType:"radio-line-height"}},radioCheckLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"radio-line-height-tablet"}},radioCheckLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"radio-line-height-mobile"}},radioCheckLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"radio-load-google-fonts"}},validationMsgPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"validation-msg-position"}},validationMsgColor:{type:"string",default:"#ff0000",UAGCopyPaste:{styleType:"validate-msg-color"}},validationMsgBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"validate-msg-color"}},enableHighlightBorder:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"enable-highlight-border"}},highlightBorderColor:{type:"string",default:"#ff0000",UAGCopyPaste:{styleType:"validate-msg-highlight-border-color"}},validationMsgFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"validate-msg-font-size"}},validationMsgFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"validate-msg-font-size-type"}},validationMsgFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"validate-msg-font-size-tablet"}},validationMsgFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"validate-msg-font-size-mobile"}},validationMsgFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"validate-msg-font-family"}},validationMsgFontWeight:{type:"string",UAGCopyPaste:{styleType:"validate-msg-font-weight"}},validationMsgLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"validate-msg-line-height-type"}},validationMsgLineHeight:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height"}},validationMsgLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height-tablet"}},validationMsgLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height-mobile"}},validationMsgLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"validate-load-google-fonts"}},successMsgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"success-msg-color"}},successMsgBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"success-msg-bg-color"}},successMsgBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"success-msg-border-color"}},errorMsgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-color"}},errorMsgBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-color"}},errorMsgBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-border-color"}},msgBorderSize:{type:"number",default:"",UAGCopyPaste:{styleType:"msg-border-size"}},msgBorderSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-border-size-type"}},msgBorderRadius:{type:"number",default:"",UAGCopyPaste:{styleType:"msg-border-radius"}},msgVrPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"msg-v-padding"}},msgHrPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"msg-h-padding"}},msgFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"msg-font-size"}},msgFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-font-size-type"}},msgFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"msg-font-size-tablet"}},msgFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"msg-font-size-mobile"}},msgFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"msg-font-family"}},msgFontWeight:{type:"string",UAGCopyPaste:{styleType:"msg-font-weight"}},msgLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"msg-line-height-type"}},msgLineHeight:{type:"number",UAGCopyPaste:{styleType:"msg-line-height"}},msgLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"msg-line-height-tablet"}},msgLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"msg-line-height-mobile"}},msgLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"msg-load-google-fonts"}},radioCheckBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-border-radius-type"}},msgBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-border-radius-type"}},fieldBorderRadiusType:{type:"string",default:"px"},buttonBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-border-radius-type"}},messageTopPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"msg-top-padding-desktop"}},messageBottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"msg-bottom-padding-desktop"}},messageLeftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"msg-left-padding-desktop"}},messageRightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"msg-right-padding-desktop"}},messageTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-top-padding-tablet"}},messageBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-bottom-padding-tablet"}},messageLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-left-padding-tablet"}},messageRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-right-padding-tablet"}},messageTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-top-padding-mobile"}},messageBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-bottom-padding-mobile"}},messageLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-left-padding-mobile"}},messageRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-right-padding-mobile"}},messagePaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-padding-type-desktop"}},messageSpacingLink:{type:"boolean",default:!1},buttonTopPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-desktop"}},buttonBottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-desktop"}},buttonLeftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-desktop"}},buttonRightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-desktop"}},buttonTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},buttonBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},buttonLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},buttonRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},buttonTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},buttonBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},buttonLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},buttonRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},buttonPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-desktop"}},buttonPaddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-tablet"}},buttonPaddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-mobile"}},buttonSpacingLink:{type:"boolean",default:!1},fieldTopPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-desktop"}},fieldBottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-desktop"}},fieldLeftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-desktop"}},fieldRightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-desktop"}},fieldTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-tablet"}},fieldBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-tablet"}},fieldLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-tablet"}},fieldRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-tablet"}},fieldTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-mobile"}},fieldBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-mobile"}},fieldLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-mobile"}},fieldRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-mobile"}},fieldPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-type-desktop"}},fieldPaddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-type-tablet"}},fieldPaddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-type-mobile"}},fieldSpacingLink:{type:"boolean",default:!1},labelTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},labelDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},labelFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},inputTransform:{type:"string",UAGCopyPaste:{styleType:"input-transform"}},inputDecoration:{type:"string",UAGCopyPaste:{styleType:"input-decoration"}},inputFontStyle:{type:"string",UAGCopyPaste:{styleType:"input-font-style"}},buttonTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},buttonDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},buttonFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},radioCheckTransform:{type:"string",UAGCopyPaste:{styleType:"radio-transform"}},radioCheckDecoration:{type:"string",UAGCopyPaste:{styleType:"radio-decoration"}},radioCheckFontStyle:{type:"string",UAGCopyPaste:{styleType:"radio-font-style"}},validationMsgTransform:{type:"string",UAGCopyPaste:{styleType:"validate-msg-transform"}},validationMsgDecoration:{type:"string",UAGCopyPaste:{styleType:"validate-msg-decoration"}},validationMsgFontStyle:{type:"string",UAGCopyPaste:{styleType:"validate-msg-font-style"}},msgTransform:{type:"string",UAGCopyPaste:{styleType:"msg-transform"}},msgDecoration:{type:"string",UAGCopyPaste:{styleType:"msg-decoration"}},msgFontStyle:{type:"string",UAGCopyPaste:{styleType:"msg-font-style"}},isPreview:{type:"boolean",default:!1},...ce("input"),...ce("btn"),labelLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},labelLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},inputLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing"}},inputLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-tablet"}},inputLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-mobile"}},inputLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-letter-spacing-type"}},radioCheckLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing"}},radioCheckLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-tablet"}},radioCheckLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-mobile"}},radioCheckLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-type"}},buttonLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing"}},buttonLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing-tablet"}},buttonLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing-mobile"}},buttonLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"button-letter-spacing-type"}},validationMsgLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing"}},validationMsgLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-tablet"}},validationMsgLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-mobile"}},validationMsgLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-type"}},msgLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing"}},msgLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing-tablet"}},msgLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing-mobile"}},msgLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-letter-spacing-type"}}},Ft={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},skinStyle:{type:"string",default:"border",UAGCopyPaste:{styleType:"skin-style"}},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},descriptionText:{selector:"div.uagb-blockquote__content",default:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},descColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},descFontSize:{type:"number",default:18,UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"italic",UAGCopyPaste:{styleType:"desc-font-style"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",default:1.5,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},descSpace:{type:"number",default:25,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceTablet:{type:"number",default:20,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},author:{selector:".uagb-blockquote__author",default:"Author Name"},authorColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"author-color"}},authorFontSize:{type:"number",UAGCopyPaste:{styleType:"author-font-size"}},authorFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-font-size-type"}},authorFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"author-font-size-tablet"}},authorFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"author-font-size-mobile"}},authorFontFamily:{type:"string",UAGCopyPaste:{styleType:"author-font-family"},default:"Default"},authorFontWeight:{type:"string",UAGCopyPaste:{styleType:"author-font-weight"}},authorFontStyle:{type:"string",UAGCopyPaste:{styleType:"author-font-style"}},authorLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"author-line-height-type"}},authorLineHeight:{type:"number",UAGCopyPaste:{styleType:"author-line-height"}},authorLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"author-line-height-tablet"}},authorLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"author-line-height-mobile"}},authorLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"author-load-google-fonts"}},authorSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"author-bottom-margin"}},authorSpaceTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"author-bottom-margin"}},authorSpaceMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"author-bottom-margin"}},authorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-bottom-margin-type"}},authorImage:{type:"object",default:{url:"",alt:"Author Image"}},authorImageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"author-image-size"}},authorImageWidth:{type:"number",default:40,UAGCopyPaste:{styleType:"author-image-width"}},authorImageWidthTablet:{type:"number",default:35,UAGCopyPaste:{styleType:"author-image-width"}},authorImageWidthMobile:{type:"number",default:30,UAGCopyPaste:{styleType:"author-image-width"}},authorImageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-image-width-unit"}},authorImageGap:{type:"number",default:10,UAGCopyPaste:{styleType:"author-image-gap"}},authorImageGapTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"author-image-gap-tablet"}},authorImageGapMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"author-image-gap-mobile"}},authorImageGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-image-gap-unit"}},authorImgBorderRadius:{type:"number",default:100,UAGCopyPaste:{styleType:"author-image-border-radius"}},authorImgBorderRadiusTablet:{type:"number",default:100,UAGCopyPaste:{styleType:"author-image-border-radius"}},authorImgBorderRadiusMobile:{type:"number",default:100,UAGCopyPaste:{styleType:"author-image-border-radius"}},authorImgBorderRadiusUnit:{type:"string",default:"%",UAGCopyPaste:{styleType:"author-image-border-radius-unit"}},authorImgPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"author-image-position"}},stack:{type:"string",default:"none"},enableTweet:{type:"boolean",default:!0},iconView:{type:"string",default:"icon_text"},iconSkin:{type:"string",default:"classic",UAGCopyPaste:{styleType:"icon-skin"}},iconLabel:{type:"string",default:"Tweet"},iconShareVia:{type:"string",default:""},iconTargetUrl:{type:"string",default:"current"},customUrl:{type:"string"},tweetLinkColor:{type:"string",default:"#1DA1F2",UAGCopyPaste:{styleType:"btn-color"}},tweetBtnColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"btn-color"}},tweetBtnBgColor:{type:"string",default:"#1DA1F2",UAGCopyPaste:{styleType:"btn-bg-color"}},tweetBtnHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},tweetBtnBgHoverColor:{type:"string",default:"#1DA1F2",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},tweetBtnFontSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size"}},tweetBtnFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-unit"}},tweetBtnFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},tweetBtnFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},tweetBtnFontFamily:{type:"string",UAGCopyPaste:{styleType:"btn-font-family"},default:"Default"},tweetBtnFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-fonr-weight"}},tweetBtnFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},tweetBtnLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},tweetBtnLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},tweetBtnLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},tweetBtnLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},tweetBtnLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},tweetBtnHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-hr-padding"}},tweetBtnVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-vr-padding"}},tweetIconSpacing:{type:"number",default:10,UAGCopyPaste:{styleType:"tweet-icon-spacing"}},tweetIconSpacingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"tweet-icon-spacing-unit"}},borderColor:{type:"string",default:"#abb8c3",UAGCopyPaste:{styleType:"desc-border-color"}},borderStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"desc-border-style"}},borderWidth:{type:"number",default:4,UAGCopyPaste:{styleType:"desc-border-width"}},borderGap:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-border-gap"}},borderGapTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-border-gap"}},borderGapMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-border-gap"}},borderGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-border-gap-unit"}},verticalPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},verticalPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},verticalPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},verticalPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-vertical-padding-unit"}},quoteStyle:{type:"string",default:"style_2",UAGCopyPaste:{styleType:"quote-style"}},quoteColor:{type:"string",default:"#3d3d3d",UAGCopyPaste:{styleType:"desc-color"}},quoteSize:{type:"number",default:25,UAGCopyPaste:{styleType:"icon-size"}},quoteSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},quoteSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},quoteSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},quotePadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-padding"}},quoteUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},quotePaddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},quotePaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-padding-tablet"}},quotePaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-padding-mobile"}},quoteBorderRadius:{type:"number",default:100,UAGCopyPaste:{styleType:"desc-border-radius"}},quoteBorderRadiusUnit:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-border-radius-unit"}},quoteBgColor:{type:"string",default:"#f4f4f4",UAGCopyPaste:{styleType:"desc-bg-color"}},quoteTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},quoteBottomMargin:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-bottom-margin"}},quoteLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},quoteRightMargin:{type:"number",default:20,UAGCopyPaste:{styleType:"desc-right-margin"}},quoteTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},quoteBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},quoteLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},quoteRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},quoteTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},quoteBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},quoteLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},quoteRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},quotemobileUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},quotetabletUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},quoteHoverColor:{type:"string",UAGCopyPaste:{styleType:"desc-hover-color"}},quoteBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-hover-color"}},borderHoverColor:{type:"string",UAGCopyPaste:{styleType:"desc-border-hover-color"}},borderWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-border-width-unit"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"},default:"px"},btnspacingLink:{type:"boolean",default:!1},spacingLink:{type:"boolean",default:!1},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},authorTransform:{type:"string",UAGCopyPaste:{styleType:"author-transform"}},tweetBtnTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},authorDecoration:{type:"string",UAGCopyPaste:{styleType:"author-decoration"}},tweetBtnDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},isPreview:{type:"boolean",default:!1},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},authorLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing"}},authorLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing-tablet"}},authorLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"author-letter-spacing-mobile"}},authorLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-letter-spacing-type"}},tweetBtnLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"tweetBtn-letter-spacing"}},tweetBtnLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"tweetBtn-letter-spacing-tablet"}},tweetBtnLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"tweetBtn-letter-spacing-mobile"}},tweetBtnLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"tweetBtn-letter-spacing-type"}},buttonLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing"}}};const zt=ce("btn");var Dt={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},showDescription:{type:"boolean",default:!0},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},textAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},link:{type:"string",default:"#"},linkTarget:{type:"boolean",default:!1},titleSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},titleSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#333"},borderHoverColor:{type:"string"},vPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-horizontal-padding"}},vPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-vertical-padding-tablet"}},hPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-horizontal-padding-tablet"}},vPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-vertical-padding-mobile"}},hPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-horizontal-padding-mobile"}},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},backgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},backgroundColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},backgroundHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-gradient-color-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-angel"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-angel-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-angel-mobile"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"btn-bg-opacity"}},backgroundHoverOpacity:{type:"number",UAGCopyPaste:{styleType:"btn-bg-hover-opacity"}},titleColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},titleHoverColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},iconHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-hover-color"}},prefixColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},prefixHoverColor:{type:"string",UAGCopyPaste:{styleType:"desc-hover-color"}},heading:{source:"html",selector:"h1,h2,h3,h4,h5,h6,span,p",default:Object(r.__)("Subscribe Now","ultimate-addons-for-gutenberg")},prefix:{source:"html",selector:".uagb-marketing-btn__prefix",default:Object(r.__)("Get access to Premium Features for FREE for a year!","ultimate-addons-for-gutenberg")},icon:{type:"string",default:"up-right-from-square"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"},default:20},titleFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"},default:20},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"},default:20},titleLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleTag:{type:"string",default:"span"},prefixLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-font"}},prefixFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},prefixFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},prefixFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},prefixFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"},default:14},prefixFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-unit"},default:"px"},prefixFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"},default:14},prefixFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"},default:14},prefixLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},prefixLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"},default:2},prefixLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},prefixLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},iconFontSize:{type:"number",default:20,UAGCopyPaste:{styleType:"icon-size"}},iconFontSizeType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},iconFontSizeTablet:{type:"number",default:20,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconFontSizeMobile:{type:"number",default:20,UAGCopyPaste:{styleType:"icon-size-mobile"}},spacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},prefixTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},prefixDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},isPreview:{type:"boolean",default:!1},...zt,titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},prefixLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}};const Nt=ce("overall");var It={block_id:{type:"string",default:"not_set"},classMigrate:{type:"boolean",default:!1},disableBullets:{type:"boolean",default:!1},makeCollapsible:{type:"boolean",default:!1},initialCollapse:{type:"boolean",default:!1},icon:{type:"string",default:"angle-down"},iconSize:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},bulletColor:{type:"string",UAGCopyPaste:{styleType:"bullet-color"}},smoothScroll:{type:"boolean",default:!0},smoothScrollOffset:{type:"number",default:30},smoothScrollOffsetType:{type:"string",default:"px"},scrollToTop:{type:"boolean",default:!1},scrollToTopColor:{type:"string",UAGCopyPaste:{styleType:"scroll-top-color"}},scrollToTopBgColor:{type:"string",UAGCopyPaste:{styleType:"scroll-top-bg-color"}},mappingHeaders:{type:"array",default:Array(6).fill(!0)},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},headerLinks:{type:"html",default:""},heading:{source:"html",selector:".uagb-toc__title",default:Object(r.__)("Table Of Contents","ultimate-addons-for-gutenberg")},headingTitle:{type:"string",default:Object(r.__)("Table Of Contents","ultimate-addons-for-gutenberg")},customWidth:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"custom-width"}},widthTypeDesktop:{type:"string",default:"%",UAGCopyPaste:{styleType:"custom-width-type-desktop"}},widthTypeTablet:{type:"string",default:"%",UAGCopyPaste:{styleType:"custom-width-type-tablet"}},widthTypeMobile:{type:"string",default:"%",UAGCopyPaste:{styleType:"custom-width-type-mobile"}},widthDesktop:{type:"number",default:100,UAGCopyPaste:{styleType:"custom-width-desktop"}},widthTablet:{type:"number",UAGCopyPaste:{styleType:"custom-width-tablet"}},widthMobile:{type:"number",UAGCopyPaste:{styleType:"custom-width-mobile"}},tColumnsDesktop:{type:"number",default:1},tColumnsTablet:{type:"number",default:1},tColumnsMobile:{type:"number",default:1},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"bg-color"},default:"#fff"},linkColor:{type:"string",default:"#54595F",UAGCopyPaste:{styleType:"desc-color"}},linkHoverColor:{type:"string",UAGCopyPaste:{styleType:"desc-hover-color"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},contentLeftPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-left-padding"}},contentRightPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-right-padding"}},contentTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"},default:15},contentBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"},default:15},contentLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},contentBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},contentBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},mobileContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"},default:"px"},contentPaddingLink:{type:"boolean",default:!1},vPaddingDesktop:{type:"number",default:30,UAGCopyPaste:{styleType:"desc-vertical-padding"}},hPaddingDesktop:{type:"number",default:30,UAGCopyPaste:{styleType:"desc-horizontal-padding"}},vPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-tablet"}},hPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-tablet"}},vPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-mobile"}},hPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-mobile"}},leftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobilePaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},vMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-margin"}},hMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-margin"}},vMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-margin-tablet"}},hMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-margin-tablet"}},vMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-margin-mobile"}},hMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-margin-mobile"}},leftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},marginTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},marginLink:{type:"boolean",default:!1},paddingLink:{type:"boolean",default:!1},headingBottom:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingBottomTablet:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingBottomMobile:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingBottomType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-type-desktop"}},paddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-type-desktop"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-type-mobile"}},contentPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-padding-desktop"}},contentPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-padding-tablet"}},contentPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-padding-mobile"}},contentPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},contentPaddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},contentPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:6},borderColor:{type:"string"},borderHoverColor:{type:"string"},loadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},fontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},fontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},fontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},fontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},fontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},fontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},lineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},lineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},lineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},lineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},headingLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google fonts"},default:!1},headingFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},headingFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"},default:"Default"},headingFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"},default:20},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},headingLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},emptyHeadingTeaxt:{type:"string",default:Object(r.__)("Add a header to begin generating the table of contents","ultimate-addons-for-gutenberg")},fontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},fontTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},fontDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"},default:"underline"},headingFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},headingTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headingAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},isPreview:{type:"boolean",default:!1},...Nt,headingLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"heading-letter-spacing"}},headingLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"heading-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"heading-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"heading-letter-spacing-type"}},letterSpacing:{type:"number",UAGCopyPaste:{styleType:"list-letter-spacing"}},letterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"list-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"list-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"list-letter-spacing-type"}},markerView:{type:"string",default:"disc"},separatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},separatorHeight:{type:"number",UAGCopyPaste:{styleType:"separator-thickness"},default:1},separatorHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-height-type"}},separatorSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-type"}},separatorColor:{type:"string",UAGCopyPaste:{styleType:"separator-color"}},separatorHColor:{type:"string",UAGCopyPaste:{styleType:"separator-color-hover"}},overallAlign:{type:"string",default:"left"},enableCollapsableList:{type:"boolean",default:!1},collapsibleListDepth:{type:"number",default:5},initiallyCollapseList:{type:"boolean",default:!1}};const Vt=[],Wt=[];Vt.push({add_required_tools:Object(r.__)("- A Computer.","ultimate-addons-for-gutenberg")}),Wt.push({add_required_materials:Object(r.__)("- A WordPress Website.","ultimate-addons-for-gutenberg")});var qt={block_id:{type:"string"},overallAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},toolsTitle:{type:"html",default:Object(r.__)("Required Tools:","ultimate-addons-for-gutenberg")},materialTitle:{type:"html",default:Object(r.__)("Things Needed?","ultimate-addons-for-gutenberg")},stepsTitle:{type:"html",default:Object(r.__)("Steps to configure the How-to Schema:","ultimate-addons-for-gutenberg")},tools_count:{type:"number",default:1},material_count:{type:"number",default:1},tools:{type:"array",default:Vt},materials:{type:"array",default:Wt},showTotaltime:{type:"boolean",default:!0},showEstcost:{type:"boolean",default:!0},showTools:{type:"boolean",default:!0},showMaterials:{type:"boolean",default:!0},mainimage:{type:"object",default:{url:"",title:""}},estCost:{type:"html",default:Object(r.__)("Total Cost:","ultimate-addons-for-gutenberg")},timeNeeded:{type:"html",default:Object(r.__)("Total Time Needed :","ultimate-addons-for-gutenberg")},timeIn:{type:"html",default:Object(r.__)(" Minutes","ultimate-addons-for-gutenberg")},imgSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},timeSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"prefix-bottom-margin"}},costSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"desc-bottom-margin"}},time:{type:"string",default:"30"},cost:{type:"string",default:"65"},headingTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:Object(r.__)("How To Configure How-To Schema In Spectra?","ultimate-addons-for-gutenberg")},currencyType:{type:"html",default:" USD"},headingDesc:{source:"html",selector:"p",default:Object(r.__)("So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages that contain a How-to in their title and describe steps to achieve certain requirements.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},descriptionAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"desc-align"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},showEstcostcolor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"}},showTotaltimecolor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"},default:""},subHeadingColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"},default:""},headingTag:{type:"string",default:"h3"},headSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},headLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},subHeadFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},separatorSpace:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin"},default:15},headLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},subHeadLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},priceFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},priceFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},priceFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},priceFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},priceFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},priceFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},priceFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"prefix-font-style"}},priceTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},priceDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},priceLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},priceLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},priceLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},priceLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},priceLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"prefix-load-google-fonts"},default:!1},row_gap:{type:"number",default:20,UAGCopyPaste:{styleType:"row-gap"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},step_gap:{type:"number"},schema:{type:"html",default:""},timeInMins:{type:"number"},timeInHours:{type:"number"},timeInDays:{type:"number"},timeInMonths:{type:"number"},timeInYears:{type:"number"},isPreview:{type:"boolean",default:!1},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},priceLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},priceLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},priceLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},priceLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}},Zt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},name:{type:"string",default:Object(r.__)("Step","ultimate-addons-for-gutenberg")},description:{type:"string",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},url:{type:"string",default:""},urlType:{type:"string",default:"all"},urlText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},urlTarget:{type:"boolean",default:!1},image:{type:"object",default:{url:"",alt:"Image Placeholder"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},urlFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},urlFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},urlFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},urlFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},urlFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},urlFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},urlFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"prefix-font-style"}},urlTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},urlDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},urlLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},descriptionFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descriptionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descriptionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descriptionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descriptionFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descriptionFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descriptionFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descriptionTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descriptionDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descriptionLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},imgPosition:{type:"string",default:"above-title"},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},descriptionColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},urlColor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"}},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},descriptionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descriptionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descriptionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descriptionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},descriptionLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descriptionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descriptionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descriptionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},urlLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},urlLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},urlLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},urlLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},urlLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},urlLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},urlLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},urlLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0}},$t={block_id:{type:"string"},layout:{type:"string",default:"accordion"},inactiveOtherItems:{type:"boolean",default:!0},expandFirstItem:{type:"boolean",default:!0},enableSchemaSupport:{type:"boolean",default:!1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},anchor:{type:"string",default:""},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!0},enableSeparator:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"enable-separator"}},rowsGap:{type:"number",default:10,UAGCopyPaste:{styleType:"row-gap"}},rowsGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},rowsGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},rowsGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-type"}},columnsGap:{type:"number",default:10,UAGCopyPaste:{styleType:"column-gap"}},columnsGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},columnsGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},columnsGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-type"}},boxBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"faq-bg-type"}},boxBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"faq-bg-hover-type"}},boxBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"faq-bg-color"}},boxBgHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"faq-bg-hover-color"}},boxPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"faq-padding-type-mobile"},default:"px"},boxPaddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"faq-padding-type-tablet"}},boxPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"faq-padding-type-desktop"}},vBoxPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-mobile"}},hBoxPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-mobile"}},vBoxPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-tablet"}},hBoxPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-tablet"}},vBoxPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-desktop"}},hBoxPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-desktop"}},borderHoverColor:{type:"string"},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderColor:{type:"string",default:"#D2D2D2"},questionTextColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},questionTextActiveColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},questionTextBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},questionTextActiveBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},questionPaddingTypeDesktop:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-desktop"},default:"px"},questionPaddingTypeTablet:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-tablet"},default:"px"},questionPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-mobile"},default:"px"},vquestionPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-mobile"},default:10},vquestionPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-tablet"},default:10},vquestionPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-desktop"},default:10},hquestionPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-mobile"},default:10},hquestionPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-tablet"},default:10},hquestionPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-desktop"},default:10},answerTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},answerPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-type-desktop"}},answerPaddingTypeTablet:{type:"string",UAGCopyPaste:{styleType:"desc-padding-type-tablet"},default:"px"},answerPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"desc-padding-type-mobile"},default:"px"},vanswerPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-mobile"},default:10},vanswerPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-tablet"},default:10},vanswerPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-desktop"},default:10},hanswerPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-mobile"},default:10},hanswerPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-tablet"},default:10},hanswerPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-desktop"},default:10},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconActiveColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},gapBtwIconQUestion:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-spacing"}},gapBtwIconQUestionTablet:{type:"number",UAGCopyPaste:{styleType:"icon-spacing-tablet"}},gapBtwIconQUestionMobile:{type:"number",UAGCopyPaste:{styleType:"icon-spacing-mobile"}},questionloadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},answerloadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},questionFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},questionFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},questionFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},questionTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},questionDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},questionFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},questionFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},questionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},questionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},questionLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},questionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},questionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},questionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},answerFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},answerFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},answerFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},answerTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},answerDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},answerFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},answerFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},answerFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},answerFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},answerLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},answerLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},answerLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},answerLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},icon:{type:"string",default:"plus"},iconActive:{type:"string",default:"minus"},iconAlign:{type:"string",default:"row",UAGCopyPaste:{styleType:"icon-align"}},iconSize:{type:"number",default:12,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconBgSize:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size"}},iconBgSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-tablet"}},iconBgSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-mobile"}},iconBgSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-bg-size-type"}},columns:{type:"number",default:2,UAGCopyPaste:{styleType:"column-count"}},tcolumns:{type:"number",default:2,UAGCopyPaste:{styleType:"column-count-tablet"}},mcolumns:{type:"number",default:1,UAGCopyPaste:{styleType:"column-count-mobile"}},schema:{type:"string",default:""},enableToggle:{type:"boolean",default:!0},equalHeight:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"equal-height"}},questionLeftPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},questionBottomPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},questionLeftPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-desktop"}},questionBottomPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-desktop"}},questionLeftPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},questionBottomPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},headingTag:{type:"html",selector:"span,p,h1,h2,h3,h4,h5,h6",default:"span"},questionSpacingLink:{type:"boolean",default:!1},answerSpacingLink:{type:"boolean",default:!1},answerTopPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding"}},answerRightPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding"}},answerBottomPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding"}},answerLeftPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding"}},answerTopPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},answerRightPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},answerBottomPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},answerLeftPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},answerTopPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},answerRightPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},answerBottomPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},answerLeftPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},isPreview:{type:"boolean",default:!1},...ce("overall"),questionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},questionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},questionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},questionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},answerLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},answerLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},answerLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},answerLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},iconBgColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"}},...ce("icon")},Yt={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},question:{type:"html",default:Object(r.__)("What is FAQ?","ultimate-addons-for-gutenberg")},answer:{type:"html",default:Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","ultimate-addons-for-gutenberg")},icon:{type:"html",default:"plus"},iconActive:{type:"html",default:"minus"},layout:{type:"string",default:"accordion"},headingTag:{type:"html",selector:"span,p,h1,h2,h3,h4,h5,h6",default:"span"},anchor:{type:"string",default:""}},Kt={block_id:{type:"string"},c_id:{type:"string",default:null},noticeTitle:{type:"string",source:"html",selector:".uagb-notice-title",default:Object(r.__)("Notice Title","ultimate-addons-for-gutenberg")},headingTag:{type:"string",default:"h4"},noticeContent:{type:"string",default:"",multiline:"p"},noticeDismiss:{type:"string",default:""},cookies:{type:"boolean",default:!1},close_cookie_days:{type:"number",default:1},textColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},titleColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},noticeColor:{type:"string",default:"#FFD54F",UAGCopyPaste:{styleType:"main-title-border-color"}},contentBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},noticeDismissColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},icon:{type:"string",default:"rectangle-xmark"},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"btn-size"}},iconSizeTab:{type:"number",UAGCopyPaste:{styleType:"btn-size-tablet"}},iconSizeMob:{type:"number",UAGCopyPaste:{styleType:"btn-size-mobile"}},iconSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},noticeAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},titleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},titleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},titleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},titleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},titleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},titleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},titleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},titleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},titleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},titleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},titleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},titlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobileTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tabletTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},titlePaddingLink:{type:"boolean",default:!1},layout:{type:"string",default:"modern",UAGCopyPaste:{styleType:"notice-layout"}},highlightWidth:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},contentLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},contentRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},contentTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding"}},contentBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},contentLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-tablet"}},contentBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-mobile"}},contentBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},mobileContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"},default:"px"},contentPaddingLink:{type:"boolean",default:!1},contentVrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-vertical-padding"}},contentHrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-horizontal-padding"}},titleVrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"},default:15},titleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"},default:15},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}},Jt={block_id:{type:"string"},postType:{type:"string",default:"post"},taxonomyType:{type:"string",default:"category"},categories:{type:"string"},order:{type:"string",default:"desc"},orderBy:{type:"string",default:"date"},postsToShow:{type:"number",default:"8"},layout:{type:"string",default:"grid",UAGCopyPaste:{styleType:"layout"}},columns:{type:"number",default:3},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},noTaxDisplaytext:{type:"string"},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"box-shadow-position"}},showCount:{type:"boolean",default:!0},showEmptyTaxonomy:{type:"boolean",default:!1},showhierarchy:{type:"boolean",default:!1},titleTag:{type:"string",default:""},bgColor:{type:"string",default:"#f5f5f5",UAGCopyPaste:{styleType:"taxonomy-bg-color"}},titleColor:{type:"string",default:"#3b3b3b",UAGCopyPaste:{styleType:"main-title-color"}},countColor:{type:"string",default:"#777777",UAGCopyPaste:{styleType:"desc-color"}},listTextColor:{type:"string",default:"#3b3b3b",UAGCopyPaste:{styleType:"desc-color"}},hoverlistTextColor:{type:"string",default:"#3b3b3b",UAGCopyPaste:{styleType:"desc-hover-color"}},listStyleColor:{type:"string",default:"#3b3b3b",UAGCopyPaste:{styleType:"desc-style-color"}},hoverlistStyleColor:{type:"string",default:"#3b3b3b",UAGCopyPaste:{styleType:"desc-style-hover-color"}},rowGap:{type:"number",default:20,UAGCopyPaste:{styleType:"row-gap"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},columnGap:{type:"number",default:20,UAGCopyPaste:{styleType:"column-gap"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},contentPadding:{type:"number",default:20,UAGCopyPaste:{styleType:"desc-padding"}},contentPaddingTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-padding-tablet"}},contentPaddingMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-padding-mobile"}},titleBottomSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleBottomSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleBottomSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},listBottomMargin:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-margin"}},alignment:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},listStyle:{type:"string",default:"disc",UAGCopyPaste:{styleType:"desc-style"}},listDisplayStyle:{type:"string",default:"list",UAGCopyPaste:{styleType:"desc-display-style"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width"}},seperatorThickness:{type:"number",default:1,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorColor:{type:"string",default:"#b2b4b5",UAGCopyPaste:{styleType:"separator-color"}},seperatorHoverColor:{type:"string",default:"#b2b4b5",UAGCopyPaste:{styleType:"separator-hover-color"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},countFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},countFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},countFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},countFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},countFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},countFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},countFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},countLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},countLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},countLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},countLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},countLoadGoogleFonts:{type:"boolean",default:!1},listFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},listFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},listFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},listFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},listFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},listFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},listFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},listLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},listLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},listLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},listLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},listLoadGoogleFonts:{type:"boolean",default:!1},contentLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},contentRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},contentTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},contentBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},contentLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},contentBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},contentBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},mobileContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"},default:"px"},contentPaddingLink:{type:"boolean",default:!1},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},countTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},listTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},countDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},listDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"},default:0},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},countLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},countLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},countLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},countLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},listLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},listLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},listLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},listLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},...ce("overall")},Xt={ID:{type:"string",default:""},itemType:{type:"string",default:Object(r.__)("Product","ultimate-addons-for-gutenberg")},itemSubtype:{type:"string",default:""},reviewPublisher:{type:"string",default:""},bookAuthorName:{type:"string",default:""},isbn:{type:"string",default:""},provider:{type:"string",default:""},appCategory:{type:"string",default:""},operatingSystem:{type:"string",default:""},datecreated:{type:"string",default:"Dec 19 2030"},directorname:{type:"string",default:""},overallAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-align"}},schema:{type:"string",default:""},rTitle:{type:"string",default:"Spectra: Gutenberg Blocks"},rContent:{type:"string",default:"Whether you’re a beginner, marketer, web designer or developer, Spectra includes all the tools and resources you can trust to succeed online."},rAuthor:{type:"string",default:"– Brainstorm Force"},headingTag:{type:"string",default:"h3"},block_id:{type:"string",default:""},mainimage:{type:"object",default:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},imgSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},authorName:{type:"string",default:""},itemName:{type:"string",default:""},items:{type:"string",default:'[{"label":"Feature #1","value":5},{"label":"Feature #2","value":5},{"label":"Feature #3","value":5}]'},description:{type:"string",default:""},descriptionAlign:{type:"string",default:"left"},imgURL:{type:"string",default:""},imgID:{type:"number"},imgAlt:{type:"string",default:""},parts:{type:"array",default:[{label:"",value:0}]},starCount:{type:"number",default:5},summaryTitle:{type:"string",default:Object(r.__)("Summary","ultimate-addons-for-gutenberg")},summaryDescription:{type:"string",default:"Whether you’re a beginner, marketer, web designer or developer, Spectra includes all the tools and resources you can trust to succeed online."},callToActionText:{type:"string",default:""},ctaLink:{type:"string",default:"#"},inactiveStarColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"icon-unmarked-color"}},activeStarColor:{type:"string",default:"#eeee00",UAGCopyPaste:{styleType:"icon-marked-color"}},authorColor:{type:"string",default:"",UAGCopyPaste:{styleType:"author-color"}},summaryColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},titleAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},authorAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"author-align"}},enableCTA:{type:"boolean",default:!0},ctaNoFollow:{type:"boolean",default:!0},ctaOpenInNewTab:{type:"boolean",default:!0},enableReviewSchema:{type:"boolean",default:!0},enableImage:{type:"boolean",default:!0},enableDescription:{type:"boolean",default:!0},enableSchema:{type:"boolean",default:!0},starOutlineColor:{type:"string",UAGCopyPaste:{styleType:"icon-outline-color"},default:"#000000"},starActiveColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"},default:"#ccd6df"},imageSize:{type:"number",UAGCopyPaste:{styleType:"image-size"},default:100},brand:{type:"string",default:""},sku:{type:"string",default:""},identifier:{type:"string",default:""},identifierType:{type:"string",default:"gtin"},ctaTarget:{type:"boolean",default:!1},aggregateType:{type:"string",default:"AggregateRating"},offerType:{type:"string",default:"Offer"},offerStatus:{type:"string",default:""},offerPrice:{type:"string",default:0},offerCurrency:{type:"string",default:"USD"},offerExpiry:{type:"string",default:"Dec 19 2030"},datepublish:{type:"string",default:"Dec 19 2030"},featuresTitle:{type:"string",default:Object(r.__)("List Of Features:","ultimate-addons-for-gutenberg")},featuresAvgText:{type:"string",default:Object(r.__)("Average Ratings","ultimate-addons-for-gutenberg")},feature_count:{type:"number",default:1},showFeature:{type:"boolean",default:!0},showAuthor:{type:"boolean",default:!0},starSize:{type:"number",default:20,UAGCopyPaste:{styleType:"icon-size"}},starColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"},default:"#f0ad4e"},selectedStars:{type:"number",default:0},starAlign:{type:"string",UAGCopyPaste:{styleType:"icon-align"},default:"left"},descColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"},default:""},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"},default:""},pricevalue:{type:"string",default:"US$65"},pricetext:{type:"string",default:"Price"},availabilityvalue:{type:"string",default:Object(r.__)("Instock","ultimate-addons-for-gutenberg")},availabilitytext:{type:"string",default:Object(r.__)("Availability","ultimate-addons-for-gutenberg")},contentVrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"},default:15},contentHrPadding:{type:"number",default:50,UAGCopyPaste:{styleType:"desc-horizontal-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"overall-top-padding"},default:15},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"overall-bottom-padding"},default:15},rightPadding:{type:"number",UAGCopyPaste:{styleType:"overall-right-padding"},default:50},leftPadding:{type:"number",UAGCopyPaste:{styleType:"overall-left-padding"},default:50},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"overall-top-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"overall-bottom-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"overall-right-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"overall-left-padding-mobile"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"overall-top-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"overall-bottom-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"overall-right-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"overall-left-padding-tablet"}},spacingLink:{type:"boolean",default:!1},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overall-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overall-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overall-padding-unit-tablet"}},star_gap:{type:"number",default:100,UAGCopyPaste:{styleType:"icon-gap"}},contentColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},author:{type:"string",default:""},headFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},subHeadFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:""},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},separatorSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"separator-bottom-margin"}},headLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},contentFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},contentLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},contentFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},contentFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},contentTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},contentDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},contentFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},contentFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},contentFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},contentFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},contentLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},contentLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},contentLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},contentLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},isPreview:{type:"boolean",default:!1},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},contentLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},contentLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},contentLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},contentLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},courseMode:{type:"string",default:"Online"},repeatCount:{type:"number",default:1},repeatFrequency:{type:"string",default:"Daily"},courseLocation:{type:"string",default:"University"},categoryOfCourse:{type:"string",default:"Free"}},Qt={block_id:{type:"string"},layout:{type:"string",default:"input-button",UAGCopyPaste:{styleType:"input-layout"}},placeholder:{type:"string",default:"Type & Hit Enter"},inputSize:{type:"number",default:100,UAGCopyPaste:{styleType:"input-size"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number"},borderRadius:{type:"number",default:3},borderColor:{type:"string"},borderHColor:{type:"string"},textColor:{type:"string",UAGCopyPaste:{styleType:"input-color"}},inputBgColor:{type:"string",default:"#ECEEEF",UAGCopyPaste:{styleType:"input-bg-color"}},boxShadowColor:{type:"string",UAGCopyPaste:{styleType:"input-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"input-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"input-box-shadow-v-offset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"input-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"input-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"input-box-shadow-position"}},buttonBgColor:{type:"string",default:"#9d9d9d",UAGCopyPaste:{styleType:"btn-bg-color"}},buttonBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},buttonIconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},buttonIconHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-hover-color"}},buttonWidth:{type:"number",default:60,UAGCopyPaste:{styleType:"btn-width"}},buttonIconSize:{type:"number",default:17,UAGCopyPaste:{styleType:"btn-icon-size"}},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:17,UAGCopyPaste:{styleType:"icon-size"}},inputloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"input-load-google-fonts"}},inputFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"input-font-family"}},inputFontWeight:{type:"string",UAGCopyPaste:{styleType:"input-font-weight"}},inputFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"input-font-style"}},inputFontSize:{type:"number",UAGCopyPaste:{styleType:"input-font-size"}},inputFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-font-size-type"}},inputFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"input-font-size-tablet"}},inputFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"input-font-size-mobile"}},inputLineHeight:{type:"number",UAGCopyPaste:{styleType:"input-line-height"}},inputLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"input-line-height-type"}},inputLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"input-line-height-tablet"}},inputLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"input-line-height-mobile"}},inputPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-padding-type-desktop"}},vinputPaddingMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"input-vertical-padding-mobile"}},vinputPaddingTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"input-vertical-padding-tablet"}},vinputPaddingDesktop:{type:"number",default:15,UAGCopyPaste:{styleType:"input-vertical-padding-desktop"}},hinputPaddingMobile:{type:"number",default:13,UAGCopyPaste:{styleType:"input-horizantal-padding-desktop"}},hinputPaddingTablet:{type:"number",default:13,UAGCopyPaste:{styleType:"input-horizantal-padding-tablet"}},hinputPaddingDesktop:{type:"number",default:13,UAGCopyPaste:{styleType:"input-horizantal-padding-desktop"}},buttonType:{type:"string",default:"icon",UAGCopyPaste:{styleType:"button-type"}},buttonText:{type:"string",default:"Search"},buttonloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},buttonFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},buttonFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},buttonFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},buttonFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},buttonFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},buttonFontSizeTablet:{UAGCopyPaste:{styleType:"btn-font-size-tablet"},type:"number"},buttonFontSizeMobile:{UAGCopyPaste:{styleType:"btn-font-size-mobile"},type:"number"},buttonLineHeight:{UAGCopyPaste:{styleType:"btn-line-height"},type:"number"},buttonLineHeightType:{type:"string",UAGCopyPaste:{styleType:"btn-line-height-type"},default:"em"},buttonLineHeightTablet:{UAGCopyPaste:{styleType:"btn-line-height-tablet"},type:"number"},buttonLineHeightMobile:{UAGCopyPaste:{styleType:"btn-line-height-mobile"},type:"number"},buttonTextColor:{UAGCopyPaste:{styleType:"btn-color"},type:"string",default:"#313131"},buttonTextHoverColor:{UAGCopyPaste:{styleType:"btn-hover-color"},type:"string"},inputSizeType:{type:"string",UAGCopyPaste:{styleType:"input-size-type"},default:"%"},paddingInputTop:{type:"number",UAGCopyPaste:{styleType:"input-padding-top"}},paddingInputRight:{type:"number",UAGCopyPaste:{styleType:"input-padding-right"}},paddingInputBottom:{type:"number",UAGCopyPaste:{styleType:"input-padding-bottom"}},paddingInputLeft:{type:"number",UAGCopyPaste:{styleType:"input-padding-left"}},paddingInputTopTablet:{UAGCopyPaste:{styleType:"input-padding-top-tablet"},type:"number"},paddingInputRightTablet:{UAGCopyPaste:{styleType:"input-padding-right-tablet"},type:"number"},paddingInputBottomTablet:{UAGCopyPaste:{styleType:"input-padding-bottom-tablet"},type:"number"},paddingInputLeftTablet:{UAGCopyPaste:{styleType:"input-padding-left-tablet"},type:"number"},paddingInputTopMobile:{UAGCopyPaste:{styleType:"input-padding-top-mobile"},type:"number"},paddingInputRightMobile:{UAGCopyPaste:{styleType:"input-padding-right-mobile"},type:"number"},paddingInputBottomMobile:{UAGCopyPaste:{styleType:"input-padding-bottom-mobile"},type:"number"},paddingInputLeftMobile:{UAGCopyPaste:{styleType:"input-padding-left-mobile"},type:"number"},paddingInputUnit:{type:"string",UAGCopyPaste:{styleType:"input-padding-unit"},default:"px"},mobilePaddingInputUnit:{type:"string",UAGCopyPaste:{styleType:"input-padding-unit-mobile"},default:"px"},tabletPaddingInputUnit:{type:"string",UAGCopyPaste:{styleType:"input-padding-unit-tablet"},default:"px"},spacingLink:{type:"boolean",default:!1},iconSizeType:{type:"string",UAGCopyPaste:{styleType:"icon-size-type"},default:"px"},inputTransform:{UAGCopyPaste:{styleType:"input-transform"},type:"string"},inputDecoration:{UAGCopyPaste:{styleType:"input-decoration"},type:"string"},buttonTransform:{UAGCopyPaste:{styleType:"btn-transform"},type:"string"},buttonDecoration:{UAGCopyPaste:{styleType:"btn-decoration"},type:"string"},buttonIconSizeType:{UAGCopyPaste:{styleType:"btn-icon-size-type"},type:"string",default:"px"},buttonWidthType:{UAGCopyPaste:{styleType:"btn-width-type"},type:"string",default:"px"},isPreview:{type:"boolean",default:!1},...ce("input")};const ea=ce("successMsg"),ta=ce("errorMsg"),aa=ce("field"),la=ce("checkBoxToggle"),ia=ce("btn");var oa={block_id:{type:"string"},formPaddingTop:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding"}},formPaddingRight:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding"}},formPaddingBottom:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding"}},formPaddingLeft:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding"}},formPaddingTopTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},formPaddingRightTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},formPaddingBottomTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},formPaddingLeftTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},formPaddingTopMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},formPaddingRightMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},formPaddingBottomMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},formPaddingLeftMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},formPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},formPaddingUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},formPaddingUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},formPaddingLink:{type:"boolean",default:!0},submitButtonText:{type:"string",default:Object(r.__)("Submit","ultimate-addons-for-gutenberg")},formLabel:{type:"string",default:Object(r.__)("Spectra Form","ultimate-addons-for-gutenberg")},buttonAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},buttonAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-tablet"}},buttonAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-mobile"}},confirmationType:{type:"string",default:"message"},confirmationMessage:{type:"string",default:Object(r.__)("The form has been submitted successfully!","ultimate-addons-for-gutenberg")},failedMessage:{type:"string",default:Object(r.__)("There has been some error while submitting the form. Please verify all form fields again.","ultimate-addons-for-gutenberg")},failedMessageTextColor:{type:"string",UAGCopyPaste:{styleType:"failed-msg-text-color"},default:""},failedMessageBorderColor:{type:"string",default:"red"},failedMessageBGColor:{type:"string",UAGCopyPaste:{styleType:"failed-msg-bg-color"},default:""},failedMessageBorderStyle:{type:"string",default:"solid"},failedMessageBorderWidth:{type:"number",default:3},confirmationUrl:{type:"string"},sendAfterSubmitEmail:{type:"boolean",default:!0},afterSubmitToEmail:{type:"string",default:""},afterSubmitCcEmail:{type:"string",default:""},afterSubmitBccEmail:{type:"string",default:""},afterSubmitEmailSubject:{type:"string",default:Object(r.__)("Form Submission","ultimate-addons-for-gutenberg")},submitColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"},default:""},submitColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"},default:""},submitBgType:{type:"string",UAGCopyPaste:{styleType:"btn-bg-type"},default:"color"},submitBgHoverType:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-type"},default:"color"},submitBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"},default:""},submitBgColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"},default:""},buttonSize:{type:"string",default:"medium",UAGCopyPaste:{styleType:"btn-size"}},submitborderStyle:{type:"string"},submitborderWidth:{type:"number"},submitborderRadius:{type:"number",default:3},submitborderColor:{type:"string"},submitborderHoverColor:{type:"string"},hPaddingSubmit:{type:"number",UAGCopyPaste:{styleType:"btn-horizontal-padding"}},vPaddingSubmit:{type:"number",UAGCopyPaste:{styleType:"btn-vertical-padding"}},submitTextloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fontst"}},submitTextFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},submitTextFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},submitTextFontSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size"}},submitTextFontSizeType:{type:"string",UAGCopyPaste:{styleType:"btn-font-size-type"},default:"px"},submitTextFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},submitTextFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},submitTextLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},submitTextLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},submitTextLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},submitTextLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},labelloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"label-load-google-fonts"}},labelFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"label-font-family"}},labelFontWeight:{type:"string",UAGCopyPaste:{styleType:"label-font-weight"}},labelFontSize:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size"}},labelFontSizeType:{type:"string",UAGCopyPaste:{styleType:"label-font-size-type"},default:"px"},labelFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size-tablet"}},labelFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size-mobile"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-line-height-type"}},labelLineHeight:{type:"number",UAGCopyPaste:{styleType:"label-line-height"}},labelLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"label-line-height-tablet"}},labelLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"label-line-height-mobile"}},labelGap:{type:"number",default:10,UAGCopyPaste:{styleType:"label-bottom-margin"}},labelGapTablet:{type:"number",UAGCopyPaste:{styleType:"label-bottom-margin-tablet"}},labelGapMobile:{type:"number",UAGCopyPaste:{styleType:"label-margin-bottom-mobile"}},labelGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-margin-unit"}},inputloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"input-load-google-fonts"}},inputFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"input-font-family"}},inputFontWeight:{type:"string",UAGCopyPaste:{styleType:"input-font-weight"}},inputFontSize:{type:"number",UAGCopyPaste:{styleType:"input-font-size"}},inputFontSizeType:{type:"string",UAGCopyPaste:{styleType:"input-font-size-type"},default:"px"},inputFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"input-font-size-tablet"}},inputFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"input-font-size-mobile"}},inputLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"input-line-height-type"}},inputLineHeight:{type:"number",UAGCopyPaste:{styleType:"input-line-height"}},toggleSize:{type:"number",UAGCopyPaste:{styleType:"toggle-size"},default:15},toggleSizeTablet:{type:"number",UAGCopyPaste:{styleType:"toggle-size"}},toggleSizeMobile:{type:"number",UAGCopyPaste:{styleType:"toggle-size"}},toggleWidthSize:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"},default:0},toggleWidthSizeTablet:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"}},toggleWidthSizeMobile:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"}},toggleColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"toggle-color"}},toggleActiveColor:{type:"string",default:"#017cba",UAGCopyPaste:{styleType:"toggle-active-color"}},toggleDotColor:{type:"string",default:"#1e1e1e",UAGCopyPaste:{styleType:"toggle-dot-color"}},toggleDotActiveColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"toggle-dot-active-color"}},toggleBorderStyle:{type:"string"},toggleBorderWidth:{type:"number"},toggleBorderRadius:{type:"number"},toggleBorderColor:{type:"string"},toggleBorderActiveColor:{type:"string"},inputLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"input-line-height-tablet"}},inputLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"input-line-height-mobile"}},labelColor:{type:"string",UAGCopyPaste:{styleType:"label-color"},default:""},labelHoverColor:{type:"string",UAGCopyPaste:{styleType:"label-hover-color"},default:""},inputColor:{type:"string",UAGCopyPaste:{styleType:"input-color"},default:""},bgColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-color"},default:""},bgHoverColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-hover-color"},default:""},bgActiveColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-active-color"},default:""},inputplaceholderColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-color"},default:"#abb8c3"},inputplaceholderHoverColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-hover-color"},default:"#abb8c3"},inputplaceholderActiveColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-active-color"},default:"#abb8c3"},inputactiveColor:{type:"string",UAGCopyPaste:{styleType:"input-active-color"},default:"#000000"},inputborderStyle:{type:"string",default:"solid"},inputborderWidth:{type:"number",default:1},inputborderRadius:{type:"number",default:3},inputborderColor:{type:"string",default:"#BDBDBD"},inputborderHoverColor:{type:"string"},hPaddingField:{type:"number",default:10,UAGCopyPaste:{styleType:"field-h-padding"}},vPaddingField:{type:"number",default:10,UAGCopyPaste:{styleType:"field-v-padding"}},fieldGap:{type:"number",default:20,UAGCopyPaste:{styleType:"field-row-gap"}},fieldGapTablet:{type:"number",UAGCopyPaste:{styleType:"field-row-gap-tablet"}},fieldGapMobile:{type:"number",UAGCopyPaste:{styleType:"field-row-gap-mobile"}},formStyle:{type:"string",default:"boxed",UAGCopyPaste:{styleType:"form-style"}},overallAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},overallAlignmentTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment"}},overallAlignmentMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment"}},labelAlignment:{type:"string",default:null,UAGCopyPaste:{styleType:"label-alignment"}},labelAlignmentTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"label-alignment"}},labelAlignmentMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"label-alignment"}},reCaptchaEnable:{type:"boolean",default:!1},reCaptchaType:{type:"string",default:"v2"},reCaptchaSiteKeyV2:{type:"string",default:""},reCaptchaSecretKeyV2:{type:"string",default:""},reCaptchaSiteKeyV3:{type:"string",default:""},reCaptchaSecretKeyV3:{type:"string",default:""},hidereCaptchaBatch:{type:"boolean",default:!1},successMessageTextColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-color"},default:""},successMessageBGColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-bg-color"},default:""},successMessageBorderColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-border-color"},default:"green"},successMessageBorderStyle:{type:"string",UAGCopyPaste:{styleType:"success-msg-border-style"},default:"solid"},successMessageBorderWidth:{type:"number",UAGCopyPaste:{styleType:"success-msg-border-width"},default:3},captchaMessage:{type:"string",default:Object(r.__)("Please fill up the above captcha.","ultimate-addons-for-gutenberg")},successMessageBorderRadius:{type:"number",default:6,UAGCopyPaste:{styleType:"success-msg-border-radius"}},successMessageHoverBorderColor:{type:"string",default:"yellowgreen",UAGCopyPaste:{styleType:"success-msg-hover-border-color"}},failedMessageBorderRadius:{type:"number",default:6,UAGCopyPaste:{styleType:"failed-msg-border-radius"}},failedMessageHoverBorderColor:{type:"string",default:"deeppink",UAGCopyPaste:{styleType:"failed-msg-hover-border-color"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"},default:"px"},paddingspacingLink:{type:"boolean",default:!1},submitTextTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},submitTextDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},labelTransform:{type:"string",UAGCopyPaste:{styleType:"label-transform"}},labelDecoration:{type:"string",UAGCopyPaste:{styleType:"label-decoration"}},inputTransform:{type:"string",UAGCopyPaste:{styleType:"input-transform"}},inputDecoration:{type:"string",UAGCopyPaste:{styleType:"input-decoration"}},fieldGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-row-gap-type"}},paddingFieldTop:{type:"number",default:12,UAGCopyPaste:{styleType:"field-top-padding"}},paddingFieldRight:{type:"number",default:12,UAGCopyPaste:{styleType:"field-right-padding"}},paddingFieldBottom:{type:"number",default:12,UAGCopyPaste:{styleType:"field-bottom-padding"}},paddingFieldLeft:{type:"number",default:12,UAGCopyPaste:{styleType:"field-left-padding"}},paddingFieldTopTablet:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-tablet"}},paddingFieldRightTablet:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-tablet"}},paddingFieldBottomTablet:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-tablet"}},paddingFieldLeftTablet:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-tablet"}},paddingFieldTopMobile:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-mobile"}},paddingFieldRightMobile:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-mobile"}},paddingFieldBottomMobile:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-mobile"}},paddingFieldLeftMobile:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-mobile"}},paddingFieldUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit"}},paddingFieldUnitmobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-mobile"}},paddingFieldUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-tablet"}},paddingFieldLink:{type:"boolean",default:!1},toggleSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"toggle-size-type"}},submitTextFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},labelFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"label-font-style"}},inputFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"input-font-style"}},displayLabels:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"display-labels"}},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},submitButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},isPreview:{type:"boolean",default:!1},...ea,...ta,...aa,...la,...ia,labelLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},labelLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},inputLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing"}},inputLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-tablet"}},inputLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-mobile"}},inputLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-letter-spacing-type"}},submitTextLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing"}},submitTextLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing-tablet"}},submitTextLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing-mobile"}},submitTextLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"submit-letter-spacing-type"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-tablet2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"btn-gradient-angle-mobile"}},gradientHValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},gradientHColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},gradientHColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},gradientHType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},selectHGradient:{type:"Boolean",default:!1,UAGCopyPaste:{styleType:"btn-h-gradient-type"}},gradientHLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},gradientHLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-location-tablet-1"}},gradientHLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-location-mobile-1"}},gradientHLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},gradientHLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-location-tablet-2"}},gradientHLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-location-mobile-2"}},gradientHAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},gradientHAngleTablet:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-angle-tablet"}},gradientHAngleMobile:{type:"number",UAGCopyPaste:{styleType:"btn-h-gradient-angle-mobile"}},variationSelected:{type:"boolean",default:!1}},na={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},acceptRequired:{type:"boolean",default:!1},acceptText:{type:"string",default:Object(r.__)("I have read and agree to the Privacy Policy.","ultimate-addons-for-gutenberg")},showLink:{type:"boolean",default:!1},linkLabel:{type:"string",default:Object(r.__)("Privacy Policy","ultimate-addons-for-gutenberg")},link:{type:"string",default:"#"},linkInNewTab:{type:"boolean",default:!0}},ra={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},name:{type:"string",default:Object(r.__)("Email","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("example@mail.com","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"email"}},sa={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},hidden_field_name:{type:"string",default:Object(r.__)("Hidden Field Name","ultimate-addons-for-gutenberg")},hidden_field_value:{type:"string"}},ca={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},nameRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Name","ultimate-addons-for-gutenberg")},placeholder:{type:"string",default:Object(r.__)("John Doe","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"name"}},ua={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},toggleRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Toggle","ultimate-addons-for-gutenberg")},toggleStatus:{type:"boolean",default:!1},layout:{type:"string",default:"round"},trueValue:{type:"string",default:"on"},falseValue:{type:"string",default:"off"}},pa={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},name:{type:"string",default:Object(r.__)("URL","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("https://example.com","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"url"}},ba={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},textareaName:{type:"string",default:Object(r.__)("Message","ultimate-addons-for-gutenberg")},textareaRequired:{type:"boolean",default:!1},rows:{type:"number",default:4},placeholder:{type:"string",default:Object(r.__)("Enter your message","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"off"}};const da=ce("tab");var ga={block_id:{type:"string"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]},tabActive:{type:"number",default:0},tabActiveFrontend:{type:"number",default:0},tabsStyleD:{type:"string",default:"hstyle1",UAGCopyPaste:{styleType:"tabs-style"}},tabsStyleT:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-tablet"}},tabsStyleM:{type:"string",default:"stack1",UAGCopyPaste:{styleType:"tabs-style-mobile"}},headerBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},headerTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},bodyBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},bodyTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#e0e0e0"},borderHoverColor:{type:"string"},activeTabBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-color"}},activeTabTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},tabTitleLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},tabTitleRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},tabTitleTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},tabTitleBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},tabTitleLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},tabTitleRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},tabTitleTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},tabTitleBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},tabTitleLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},tabTitleRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},tabTitleTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},tabTitleBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},tabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-margin"}},mobiletabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},tablettabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},tabTitleMarginLink:{type:"boolean",default:!1},tabBodyLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},tabBodyRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},tabBodyTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},tabBodyBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},tabBodyLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},tabBodyRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},tabBodyTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},tabBodyBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},tabBodyLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},tabBodyRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},tabBodyTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},tabBodyBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},tabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},mobiletabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},tablettabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},tabBodyMarginLink:{type:"boolean",default:!1},tabBodyVertPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},tabBodyHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},tabTitleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},tabTitleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},tabTitleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},tabTitleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},tabTitleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},tabTitleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},tabTitleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},tabTitleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},tabTitleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},tabTitleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},tabTitleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},tabTitleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},tabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobiletabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tablettabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},tabTitlePaddingLink:{type:"boolean",default:!1},tabBodyLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},tabBodyRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},tabBodyTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},tabBodyBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},tabBodyLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},tabBodyRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},tabBodyTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},tabBodyBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},tabBodyLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},tabBodyRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},tabBodyTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},tabBodyBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},tabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobiletabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},tablettabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},tabBodyPaddingLink:{type:"boolean",default:!1},tabTitleVertPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"}},tabTitleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-unit-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleTransform:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},tabAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},titleAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},showIcon:{type:"boolean",default:!1},icon:{type:"string"},iconPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"tab-icon-position"}},iconSpacing:{type:"string",default:10,UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingTablet:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingMobile:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},activeiconColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},isPreview:{type:"boolean",default:!1},...da,titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}}},ma={block_id:{type:"string"},lottieSource:{type:"string",default:"library"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},lottieURl:{type:"string",default:""},jsonLottie:{type:"object"},loop:{type:"boolean",default:!0},speed:{type:"number",default:1},reverse:{type:"boolean",default:!1},playOnHover:{type:"boolean",default:!1},playOn:{type:"string",default:"none"},height:{type:"number",UAGCopyPaste:{styleType:"lottie-height"}},heightTablet:{type:"number",UAGCopyPaste:{styleType:"lottie-height-tablet"}},heightMob:{type:"number",UAGCopyPaste:{styleType:"lottie-height-mobile"}},width:{type:"number",UAGCopyPaste:{styleType:"lottie-width"}},widthTablet:{type:"number",UAGCopyPaste:{styleType:"lottie-width-tablet"}},widthMob:{type:"number",UAGCopyPaste:{styleType:"lottie-width-mobile"}},backgroundColor:{type:"string",default:"",UAGCopyPaste:{styleType:"lottie-bg-color"}},backgroundHColor:{type:"string",default:"",UAGCopyPaste:{styleType:"lottie-bg-hover-color"}},isPreview:{type:"boolean",default:!1}},ya={block_id:{type:"string"},layout:{type:"string",default:"inline",UAGCopyPaste:{styleType:"layout"}},layoutTablet:{type:"string",default:"inline",UAGCopyPaste:{styleType:"layout-tablet"}},layoutMobile:{type:"string",default:"inline",UAGCopyPaste:{styleType:"layout-mobile"}},rating:{type:"number",default:4},range:{type:"string",default:"5"},size:{type:"number",UAGCopyPaste:{styleType:"icon-size"},default:18},sizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},sizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},gap:{type:"number",default:2,UAGCopyPaste:{styleType:"icon-gap"}},gapTablet:{type:"number",UAGCopyPaste:{styleType:"icon-gap"}},gapMobile:{type:"number",UAGCopyPaste:{styleType:"icon-gap"}},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"icon-align"}},alignTablet:{type:"string",UAGCopyPaste:{styleType:"icon-align-tablet"}},alignMobile:{type:"string",UAGCopyPaste:{styleType:"icon-align-mobile"}},unmarkedColor:{type:"string",default:"#ccd6df",UAGCopyPaste:{styleType:"icon-unmarked-color"}},color:{type:"string",default:"#f0ad4e",UAGCopyPaste:{styleType:"icon-color"}},title:{type:"string"},titleGap:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleGapTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleGapMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},fontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},fontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},fontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},fontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},fontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},fontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},fontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},fontTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},fontDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},lineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},lineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},lineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},lineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},loadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-font"},default:!1},isPreview:{type:"boolean",default:!1},displayTitle:{type:"boolean",default:!0},letterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},blockTopMargin:{type:"number",UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},starPosition:{type:"string",default:"after",UAGCopyPaste:{styleType:"image-position"}},starPositionTablet:{type:"string",default:"after",UAGCopyPaste:{styleType:"image-position"}},starPositionMobile:{type:"string",default:"after",UAGCopyPaste:{styleType:"image-position"}}};const fa=ce("container"),ha=[{default:"custom",min:{unit:"px",value:10},max:{unit:"fr",value:1},custom:{unit:"fr",value:1}}];var va={block_id:{type:"string"},htmlTag:{type:"string",default:"div"},htmlTagLink:{type:"object"},linkTarget:{type:"boolean",default:!1},contentWidth:{type:"string",default:"alignfull",UAGCopyPaste:{styleType:"content-width"}},innerContentWidth:{type:"string",default:"alignwide",UAGCopyPaste:{styleType:"inner-content-width"}},widthDesktop:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-desktop"}},widthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-tablet"}},widthMobile:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-mobile"}},widthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"container-width-type"}},innerContentCustomWidthDesktop:{type:"number",default:uagb_blocks_info.content_width},innerContentCustomWidthTablet:{type:"number",default:1024},innerContentCustomWidthMobile:{type:"number",default:767},innerContentCustomWidthType:{type:"string",default:"px"},minHeightDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-desktop"}},minHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-tablet"}},minHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-mobile"}},minHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-min-height-type"}},directionDesktop:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-desktop"}},directionTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-tablet"}},directionMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-mobile"}},alignItemsDesktop:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-desktop"}},alignItemsTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-tablet"}},alignItemsMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-mobile"}},justifyContentDesktop:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-desktop"}},justifyContentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-tablet"}},justifyContentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-mobile"}},wrapDesktop:{type:"string",default:"nowrap",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-desktop"}},wrapTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-tablet"}},wrapMobile:{type:"string",default:"wrap",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-mobile"}},alignContentDesktop:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-desktop"}},alignContentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-tablet"}},alignContentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-mobile"}},backgroundType:{type:"string",default:"none",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-gradient-value"}},borderStyle:{type:"string"},borderWidth:{type:"number"},borderRadius:{type:"number"},borderColor:{type:"string"},borderHoverColor:{type:"string"},boxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},topPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-desktop"},default:uagb_blocks_info.container_global_padding},bottomPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-desktop"},default:uagb_blocks_info.container_global_padding},leftPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-desktop"},default:uagb_blocks_info.container_global_padding},rightPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-desktop"},default:uagb_blocks_info.container_global_padding},topPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-tablet"}},bottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-tablet"}},leftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-tablet"}},rightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-tablet"}},topPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-mobile"}},bottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-mobile"}},leftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-mobile"}},rightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-mobile"}},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-desktop"}},bottomMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-desktop"}},rightMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-desktop"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},marginLink:{type:"boolean",default:!0},variationSelected:{type:"boolean",default:!1},rowGapDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-desktop"},default:uagb_blocks_info.container_elements_gap},rowGapTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-tablet"}},rowGapMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-mobile"}},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type"}},rowGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-tablet"}},rowGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-mobile"}},columnGapDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-desktop"},default:uagb_blocks_info.container_elements_gap},columnGapTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-tablet"}},columnGapMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-mobile"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type"}},columnGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-tablet"}},columnGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-mobile"}},isPreview:{type:"boolean",default:!1},isBlockRootParent:{type:"boolean",default:!1},bottomType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bottom-type"}},bottomColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-color"},default:"#333"},bottomHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height"}},bottomHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height-tablet"}},bottomHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height-mobile"}},bottomWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-width"},default:100},topType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-top-type"}},topColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-color"}},topHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height"}},topHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height-tablet"}},topHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height-mobile"}},topWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-width"},default:100},topFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-flip"}},bottomFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-flip"}},topInvert:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-invert"}},bottomInvert:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"container-bottom-invert"}},topContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-content-above-shape"}},bottomContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-content-above-shape"}},widthSetByUser:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-overlay-type"}},overlayOpacity:{type:"number",default:1,UAGCopyPaste:{styleType:"background-overlay-opacity"}},overlayBlendMode:{type:"string",default:"normal",UAGCopyPaste:{styleType:"background-overlay-blend-mode"}},overlayBlendModeTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"background-overlay-blend-mode-tablet"}},overlayBlendModeMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"background-overlay-blend-mode-mobile"}},centralizedPosition:{type:"boolean",default:!1},customPosition:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-x-position-type"}},xPositionTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-x-position-type-tablet"}},xPositionTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-x-position-type-mobile"}},yPositionDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-y-position-type"}},yPositionTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-y-position-type-tablet"}},yPositionTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"background-image-y-position-type-mobile"}},backgroundVideoColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"bg-video-color"},default:"#FFFFFF75"},backgroundVideo:{type:"object",UAGCopyPaste:{styleType:"bg-video"}},backgroundVideoOpacity:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"bg-video-opacity"},default:.5},textColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},linkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},linkHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},innerContentCustomWidthTypeTablet:{type:"string",default:"px"},innerContentCustomWidthTypeMobile:{type:"string",default:"px"},widthTypeTablet:{type:"string",default:"%"},widthTypeMobile:{type:"string",default:"%"},minHeightTypeTablet:{type:"string",default:"px"},minHeightTypeMobile:{type:"string",default:"px"},topHeightType:{type:"string",default:"px"},topHeightTypeTablet:{type:"string",default:"px"},topHeightTypeMobile:{type:"string",default:"px"},bottomHeightType:{type:"string",default:"px"},bottomHeightTypeTablet:{type:"string",default:"px"},bottomHeightTypeMobile:{type:"string",default:"px"},overflow:{type:"string",default:"visible"},topDividerWidthType:{type:"string",default:"%"},bottomDividerWidthType:{type:"string",default:"%"},topDividerHeightType:{type:"string",default:"px"},bottomDividerHeightType:{type:"string",default:"px"},equalHeight:{type:"boolean",default:!1},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocationTablet1:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientLocationTablet2:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientAngleTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-angle-tablet"}},gradientAngleMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-angle-mobile"}},gradientOverlayAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-overlay-angle"}},gradientOverlayAngleTablet:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-angle-tablet"}},gradientOverlayAngleMobile:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-angle-mobile"}},backgroundOverlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-overlay-type"}},backgroundOverlayImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-desktop"}},backgroundOverlayImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-tablet"}},backgroundOverlayImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-mobile"}},backgroundPositionOverlayDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-overlay-desktop"}},backgroundPositionOverlayTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-overlay-tablet"}},backgroundPositionOverlayMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-overlay-mobile"}},backgroundSizeOverlayDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-overlay-size-desktop"}},backgroundSizeOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-size-tablet"}},backgroundSizeOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-size-mobile"}},backgroundRepeatOverlayDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-desktop"}},backgroundRepeatOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-tablet"}},backgroundRepeatOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-mobile"}},backgroundAttachmentOverlayDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-desktop"}},backgroundAttachmentOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-tablet"}},backgroundAttachmentOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-mobile"}},backgroundOverlayColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-color"}},backgroundImageOverlayColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-overlay-color"},default:"#FFFFFF75"},backgroundOverlayImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-image-color"},default:"#FFFFFF75"},backgroundCustomSizeOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-desktop"},default:100},backgroundCustomSizeOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-tablet"}},backgroundCustomSizeOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-mobile"}},backgroundCustomOverlaySizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-overlay-size-type"}},customOverlayPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-overlay-position-type"}},xPositionOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-desktop"},default:""},xPositionOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-tablet"}},xPositionOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-mobile"}},xPositionOverlayType:{type:"string",default:"px"},xPositionOverlayTypeTablet:{type:"string",default:"px"},xPositionOverlayTypeMobile:{type:"string",default:"px"},yPositionOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-desktop"},default:""},yPositionOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-tablet"}},yPositionOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-mobile"}},yPositionOverlayType:{type:"string",default:"px"},yPositionOverlayTypeTablet:{type:"string",default:"px"},yPositionOverlayTypeMobile:{type:"string",default:"px"},gradientOverlayColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-overlay-color-1"}},gradientOverlayColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-overlay-color-2"}},gradientOverlayType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-overlay-color-type"}},selectOverlayGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-overlay-type"}},gradientOverlayLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-overlay-location-1"}},gradientOverlayLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-location-tablet-1"}},gradientOverlayLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-location-mobile-1"}},gradientOverlayLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-overlay-location-2"}},gradientOverlayLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-location-tablet-2"}},gradientOverlayLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"gradient-overlay-location-mobile-2"}},...fa,childrenWidthDesktop:{type:"string",UAGCopyPaste:{styleType:"container-children-width-desktop"},isGBSStyle:!0},childrenWidthTablet:{type:"string",UAGCopyPaste:{styleType:"container-children-width-tablet"},isGBSStyle:!0},childrenWidthMobile:{type:"string",UAGCopyPaste:{styleType:"container-children-width-mobile"},isGBSStyle:!0},UAGAnimationDelayInterval:{type:"number",default:200,UAGCopyPaste:{styleType:"block-animation-delay-interval"}},UAGAnimationDoNotApplyToContainer:{type:"boolean",default:!1},UAGAnimationShowContainerAdvancedSettings:{type:"boolean",default:!1},backgroundVideoFallbackImage:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},layout:{type:"string",default:""},gridColumnDesktop:{type:"array",default:[...ha]},gridColumnTablet:{type:"array",default:[...ha]},gridColumnMobile:{type:"array",default:[...ha]},gridRowDesktop:{type:"array",default:[...ha]},gridRowTablet:{type:"array",default:[...ha]},gridRowMobile:{type:"array",default:[...ha]},gridAlignItemsDesktop:{type:"string",default:"stretch"},gridAlignItemsTablet:{type:"string",default:"stretch"},gridAlignItemsMobile:{type:"string",default:"stretch"},gridJustifyItemsDesktop:{type:"string",default:"stretch"},gridJustifyItemsTablet:{type:"string",default:"stretch"},gridJustifyItemsMobile:{type:"string",default:"stretch"},gridAlignContentDesktop:{type:"string",default:"stretch"},gridAlignContentTablet:{type:"string",default:"stretch"},gridAlignContentMobile:{type:"string",default:"stretch"},gridJustifyContentDesktop:{type:"string",default:"stretch"},gridJustifyContentTablet:{type:"string",default:"stretch"},gridJustifyContentMobile:{type:"string",default:"stretch"},orderDesktop:{type:"string",default:"initial"},orderTablet:{type:"string",default:"initial"},orderMobile:{type:"string",default:"initial"},customOrderDesktop:{type:"number"},customOrderTablet:{type:"number"},customOrderMobile:{type:"number"}};const _a=ce("overlay");var Ta={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"default",UAGCopyPaste:{styleType:"image-layout"}},disableLazyLoad:{type:"boolean",default:!1},url:{type:"string",default:""},urlTablet:{type:"string",default:""},urlMobile:{type:"string",default:""},alt:{type:"string",default:""},imgRole:{type:"string",default:"img"},enableCaption:{type:"boolean",default:!1},caption:{type:"string",default:""},align:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align"}},alignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-tablet"}},alignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-mobile"}},id:{type:"integer",default:""},href:{type:"string",default:""},rel:{type:"string",default:""},linkClass:{type:"string",default:""},linkDestination:{type:"string",default:""},title:{type:"string",default:""},width:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width"}},widthTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-tablet"}},widthMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-mobile"}},height:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height"}},heightTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-tablet"}},heightMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-mobile"}},naturalWidth:{type:"integer",default:""},naturalHeight:{type:"integer",default:""},linkTarget:{type:"string",default:""},sizeSlug:{type:"string",default:""},sizeSlugTablet:{type:"string",default:""},sizeSlugMobile:{type:"string",default:""},imageTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin"}},imageRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin"}},imageLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin"}},imageBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-tablet"}},imageBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-mobile"}},imageLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},imageMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},imageMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},imageMarginLink:{type:"boolean",default:!0},captionText:{type:"string",default:""},captionShowOn:{type:"string",default:"hover"},captionLoadGoogleFonts:{type:"boolean",default:!1},captionColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},captionAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-align"}},captionFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},captionFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},captionFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},captionTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},captionDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},captionFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},captionFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},captionFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},captionFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},captionFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},captionLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},captionLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},captionLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},captionTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},captionRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},captionLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},captionBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},captionTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},captionRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},captionLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},captionBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},captionTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},captionRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},captionLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},captionBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},captionMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},captionMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},captionMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},captionMarginLink:{type:"boolean",default:!1},heading:{type:"string",default:""},headingShowOn:{type:"string",default:"always"},headingTag:{type:"string",default:"h2"},headingId:{type:"string"},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headingFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height"}},headingFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headingTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},overlayPositionFromEdge:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-position-from-edge"}},overlayPositionFromEdgeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overlay-position-from-edge-unit"}},overlayContentPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"overlay-content-position"}},overlayBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-background"}},overlayOpacity:{type:"float",default:.2,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-opacity"}},overlayHoverOpacity:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-hover-opacity"}},seperatorShowOn:{type:"string",default:"hover",isGBSStyle:!0,UAGCopyPaste:{styleType:"seperator-show-on"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},seperatorPosition:{type:"string",default:"after_title"},seperatorWidth:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorThicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-unit"}},seperatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},seperatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},seperatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},seperatorBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},seperatorTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},seperatorRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},seperatorBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},seperatorTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},seperatorRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},seperatorMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},seperatorMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"}},seperatorMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"}},seperatorMarginLink:{type:"boolean",default:!1},imageHoverEffect:{type:"string",default:"static"},objectFit:{type:"string"},objectFitTablet:{type:"string"},objectFitMobile:{type:"string"},useSeparateBoxShadows:{type:"boolean",default:!0},imageBoxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-h-offset"}},imageBoxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-v-offset"}},imageBoxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-blur"}},imageBoxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-position"}},imageBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"image-shadow-color-hover"}},imageBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-h-offset-hover"}},imageBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-v-offset-hover"}},imageBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-blur-hover"}},imageBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-spread-hover"}},imageBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"image-shadow-position-hover"}},maskShape:{type:"string",default:"none"},maskCustomShape:{type:"object",default:{url:"",alt:"mask shape"}},maskSize:{type:"string",default:"auto"},maskPosition:{type:"string",default:"center center"},maskRepeat:{type:"string",default:"no-repeat"},headingLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},headingLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},captionLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},captionLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},captionLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},captionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},customHeightSetDesktop:{type:"boolean",default:!1},customHeightSetTablet:{type:"boolean",default:!1},customHeightSetMobile:{type:"boolean",default:!1},...ce("image"),..._a};const Ca=ce("btn"),Sa=ce("content");var wa={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme_fallback},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},defaultTemplate:{type:"boolean",default:!1},modalTrigger:{type:"string",default:"button"},triggerText:{type:"string",default:"Click Here"},icon:{type:"string",default:"up-right-from-square"},closeIcon:{type:"string",default:"xmark"},iconImage:{type:"object",default:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},imageSize:{type:"string",default:"thumbnail"},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:""},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"image-border-radius"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},buttonText:{type:"html",default:"Click Here"},buttonIcon:{type:"string",default:"arrow-right"},buttonIconPosition:{type:"string",default:"after"},buttonIconSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},modalAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},modalAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},modalAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},modalWidth:{type:"number",UAGCopyPaste:{styleType:"modal-width"},default:600},modalWidthTablet:{type:"number",UAGCopyPaste:{styleType:"modal-width"}},modalWidthMobile:{type:"number",UAGCopyPaste:{styleType:"modal-width"}},modalWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"modal-width-type"}},modalWidthTypeTablet:{type:"string",UAGCopyPaste:{styleType:"modal-width-type"}},modalWidthTypeMobile:{type:"string",UAGCopyPaste:{styleType:"modal-width-type"}},modalHeight:{type:"number",UAGCopyPaste:{styleType:"modal-height"},default:350},modalHeightTablet:{type:"number",UAGCopyPaste:{styleType:"modal-height"}},modalHeightMobile:{type:"number",UAGCopyPaste:{styleType:"modal-height"}},modalHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"modal-height-type"}},modalHeightTypeTablet:{type:"string",UAGCopyPaste:{styleType:"modal-height-type"}},modalHeightTypeMobile:{type:"string",UAGCopyPaste:{styleType:"modal-height-type"}},appearEffect:{type:"string",default:"uagb-effect-default"},closeIconSize:{type:"number",default:25},closeIconPosition:{type:"string",default:"popup-top-right"},escPress:{type:"boolean",default:!0},overlayClick:{type:"boolean",default:!1},overlayColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"overlay-bg-color"}},closeIconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"close-icon-color"}},modalSpacingLink:{type:"boolean",default:!0},paddingModalUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingModalUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingModalUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingModalTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingModalBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingModalLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingModalRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingModalTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingModalRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingModalBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingModalLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingModalTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingModalRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingModalBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingModalLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},iconSize:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},textColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},textLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},textFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},textFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},textFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},textTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},textDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},textFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},textLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},textFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},textFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},textFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},textLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},textLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},textLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},textLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},textLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},textLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},textLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},btnSpacingLink:{type:"boolean",default:!0},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingBtnTop:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",default:32,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",default:32,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},btnLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},btnFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},btnFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},btnFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},btnTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},btnDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},btnFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},btnLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},btnFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},btnFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},btnFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},btnLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},btnLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},btnLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},btnLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing"}},btnLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing-tablet"}},btnLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing-mobile"}},btnLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-letter-spacing-type"}},btnLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},btnLinkHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},btnBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},btnBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-h-background"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},showBtnIcon:{type:"boolean",default:!1},modalBoxHeight:{type:"string",default:"auto"},maxHeight:{type:"number",default:"90",UAGCopyPaste:{styleType:"container-max-height-desktop"}},maxHeightTablet:{type:"number",UAGCopyPaste:{styleType:"container-max-height-tablet"}},maxHeightMobile:{type:"number",UAGCopyPaste:{styleType:"container-max-height-mobile"}},maxHeightType:{type:"string",default:"vh",UAGCopyPaste:{styleType:"container-max-height-type"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},...Ca,btnBorderTopLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-top-left-radius"}},btnBorderTopRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-top-right-radius"}},btnBorderBottomLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-bottom-left-radius"}},btnBorderBottomRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-bottom-right-radius"}},...Sa,contentBorderTopLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-top-left-radius"}},contentBorderTopRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-top-right-radius"}},contentBorderBottomLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-bottom-left-radius"}},contentBorderBottomRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-bottom-right-radius"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-mobile"}},modalTriggerBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},modalTriggerBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}}};const ka=ce("iconWrap");var Pa={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"number"},align:{type:"string",default:"center"},alignTablet:{type:"string",default:""},alignMobile:{type:"string",default:""},animationDuration:{type:"number",default:1500},thousandSeparator:{type:"string",default:","},heading:{type:"string",default:Object(r.__)("Add Your Title Here…","ultimate-addons-for-gutenberg")},headingTag:{type:"string",default:""},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#4B4F58",UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headingFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-tablet"}},headingFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},blockTopMargin:{type:"number",UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},headingTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"heading-letter-spacing-type"}},headingLetterSpacing:{type:"number",UAGBCopyPaste:{styleType:"heading-letter-spacing"}},headingLetterSpacingTablet:{type:"number",UAGBCopyPaste:{styleType:"heading-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",UAGBCopyPaste:{styleType:"heading-letter-spacing-mobile"}},startNumber:{type:"number",default:0},endNumber:{type:"number",default:80},totalNumber:{type:"number",default:100},decimalPlaces:{type:"number",default:0},numberPrefix:{type:"string",default:""},numberSuffix:{type:"string",default:"%"},numberLoadGoogleFonts:{type:"boolean",default:!1},numberColor:{type:"string",UAGCopyPaste:{styleType:"number-color"}},numberFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"number-font-family"}},numberFontWeight:{type:"string",UAGCopyPaste:{styleType:"number-font-weight"}},numberFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"number-font-style"}},numberTransform:{type:"string",UAGCopyPaste:{styleType:"number-transform"}},numberDecoration:{type:"string",UAGCopyPaste:{styleType:"number-decoration"}},numberFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"number-font-size-type"}},numberLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"number-line-height-type"}},numberFontSize:{type:"number",UAGCopyPaste:{styleType:"number-font-size"}},numberFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"number-font-size-tablet"}},numberFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"number-font-size-mobile"}},numberLineHeight:{type:"number",UAGCopyPaste:{styleType:"number-line-height"}},numberLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"number-line-height-tablet"}},numberLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"number-line-height-mobile"}},numberTopMargin:{type:"number",UAGCopyPaste:{styleType:"number-top-margin"}},numberRightMargin:{type:"number",UAGCopyPaste:{styleType:"number-right-margin"}},numberLeftMargin:{type:"number",UAGCopyPaste:{styleType:"number-left-margin"}},numberBottomMargin:{type:"number",UAGCopyPaste:{styleType:"number-bottom-margin"}},numberTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"number-top-margin-tablet"}},numberRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"number-right-margin-tablet"}},numberLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"number-left-margin-tablet"}},numberBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"number-bottom-margin-tablet"}},numberTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"number-top-margin-mobile"}},numberRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"number-right-margin-mobile"}},numberLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"number-left-margin-mobile"}},numberBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"number-bottom-margin-mobile"}},numberMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"number-margin-unit"}},numberMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"number-margin-unit-tablet"}},numberMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"number-margin-unit-mobile"}},numberMarginLink:{type:"boolean",default:!1},numberLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"number-letter-spacing-type"}},numberLetterSpacing:{type:"number",UAGBCopyPaste:{styleType:"number-letter-spacing"}},numberLetterSpacingTablet:{type:"number",UAGBCopyPaste:{styleType:"number-letter-spacing-tablet"}},numberLetterSpacingMobile:{type:"number",UAGBCopyPaste:{styleType:"number-letter-spacing-mobile"}},prefixRightDistance:{type:"number",default:0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixRightDistanceTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margi-tablet"}},prefixRightDistanceMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},suffixLeftDistance:{type:"number",default:0,UAGCopyPaste:{styleType:"suffix-right-margin"}},suffixLeftDistanceTablet:{type:"number",UAGCopyPaste:{styleType:"suffix-right-margin-tablet"}},suffixLeftDistanceMobile:{type:"number",UAGCopyPaste:{styleType:"suffix-right-margin-mobile"}},circleSize:{type:"number",default:230,UAGCopyPaste:{styleType:"circle-size"}},circleStokeSize:{type:"number",default:8,UAGCopyPaste:{styleType:"circle-stroke-size"}},circleForeground:{type:"string",default:"#007cba",UAGCopyPaste:{styleType:"circle-foreground"}},circleBackground:{type:"string",default:"#eaeaea",UAGCopyPaste:{styleType:"circle-background"}},barSize:{type:"number",UAGCopyPaste:{styleType:"bar-size"}},barForeground:{type:"string",default:"#007cba",UAGCopyPaste:{styleType:"bar-foreground"}},barBackground:{type:"string",default:"#eaeaea",UAGCopyPaste:{styleType:"bar-background"}},barFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"bar-flip"}},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"counter-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"counter-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"counter-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"counter-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"counter-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"counter-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"counter-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"counter-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"counter-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"counter-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"counter-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"counter-box-shadow-position-hover"}},showIcon:{type:"boolean",default:!0},icon:{type:"string",default:"star"},iconColor:{type:"string",default:"#4B4F58",UAGCopyPaste:{styleType:"icon-color"}},iconBackgroundColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"}},iconHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-hover-color"}},iconBackgroundHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconSize:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconSizeTypeTablet:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type-tablet"}},iconSizeTypeMobile:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type-mobile"}},iconImgPosition:{type:"string",default:"top",UAGCopyPaste:{styleType:"icon-img-position"}},iconImage:{type:"object",default:{url:"",alt:Object(r.__)("Counter placeholder img","ultimate-addons-for-gutenberg")}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"}},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},sourceType:{type:"string",default:"icon"},iconTopPadding:{type:"number",UAGCopyPaste:{styleType:"icon-top-padding"}},iconRightPadding:{type:"number",UAGCopyPaste:{styleType:"icon-right-padding"}},iconLeftPadding:{type:"number",UAGCopyPaste:{styleType:"icon-left-padding"}},iconBottomPadding:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-padding"}},iconTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"icon-top-padding-tablet"}},iconRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"icon-right-padding-tablet"}},iconLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"icon-left-padding-tablet"}},iconBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-padding-tablet"}},iconTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"icon-top-padding-mobile"}},iconRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"icon-right-padding-mobile"}},iconLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"icon-left-padding-mobile"}},iconBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-padding-mobile"}},iconPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-padding-unit"}},iconPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-padding-unit-tablet"}},iconPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-padding-unit-mobile"}},iconPaddingLink:{type:"boolean",default:!1},iconTopMargin:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin"}},iconRightMargin:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin"}},iconLeftMargin:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin"}},iconBottomMargin:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},iconMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconMarginLink:{type:"boolean",default:!1},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...ka};const xa=ce("arrow"),Aa=ce("btn"),Ga=ce("image"),Ma=ce("mainTitle");var Ra={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},disableLazyLoad:{type:"boolean",default:!1},readyToRender:{type:"boolean",default:!1},tileSize:{type:"number",default:0},focusList:{type:"array",default:[]},focusListObject:{type:"object",default:{}},mediaGallery:{type:"array",default:[]},mediaIDs:{type:"array",default:[]},feedLayout:{type:"string",default:"grid",UAGCopyPaste:{styleType:"gallery-layout"}},imageDisplayCaption:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"gallery-show-caption"}},galleryImageSize:{type:"string",default:"large"},galleryImageSizeTablet:{type:"string",default:"large"},galleryImageSizeMobile:{type:"string",default:"medium"},imageClickEvent:{type:"string",default:"none"},lightboxDisplayCaptions:{type:"boolean",default:!1},lightboxThumbnails:{type:"boolean",default:!1},lightboxDisplayCount:{type:"boolean",default:!1},lightboxCloseIcon:{type:"string",default:"xmark"},lightboxCaptionHeight:{type:"number",default:50,UAGCopyPaste:{styleType:"desc-height"}},lightboxCaptionHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-height-tablet"}},lightboxCaptionHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-height-mobile"}},lightboxIconSize:{type:"number",default:24,UAGCopyPaste:{styleType:"icon-size"}},lightboxIconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},lightboxIconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},captionVisibility:{type:"string",default:"hover",UAGCopyPaste:{styleType:"gallery-caption-visibility"}},captionDisplayType:{type:"string",default:"overlay",UAGCopyPaste:{styleType:"gallery-caption-type"}},imageCaptionAlignment:{type:"string",default:"center center",UAGCopyPaste:{styleType:"main-title-matrix-align"}},imageCaptionAlignment01:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},imageCaptionAlignment02:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-vertical-align"}},imageDefaultCaption:{type:"string",default:Object(r.__)("No Caption","ultimate-addons-for-gutenberg")},captionPaddingTop:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-top-margin"}},captionPaddingRight:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-right-margin"}},captionPaddingBottom:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},captionPaddingLeft:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-left-margin"}},captionPaddingTopTab:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},captionPaddingRightTab:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},captionPaddingBottomTab:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},captionPaddingLeftTab:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},captionPaddingTopMob:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},captionPaddingRightMob:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},captionPaddingBottomMob:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},captionPaddingLeftMob:{type:"number",default:8,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},captionPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},captionPaddingUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},captionPaddingUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},captionPaddingUnitLink:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"main-title-margin-link"}},captionGap:{type:"number",default:0,UAGCopyPaste:{styleType:"gallery-caption-gap"}},captionGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"gallery-caption-gap-unit"}},columnsDesk:{type:"number",default:3},columnsTab:{type:"number",default:3},columnsMob:{type:"number",default:2},gridImageGap:{type:"number",default:8,UAGCopyPaste:{styleType:"image-left-margin"}},gridImageGapTab:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-tablet"}},gridImageGapMob:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-mobile"}},gridImageGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},gridImageGapUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},gridImageGapUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},feedMarginTop:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"}},feedMarginRight:{type:"number",UAGCopyPaste:{styleType:"image-right-padding"}},feedMarginBottom:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"}},feedMarginLeft:{type:"number",UAGCopyPaste:{styleType:"image-left-padding"}},feedMarginTopTab:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-tablet"}},feedMarginRightTab:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-tablet"}},feedMarginBottomTab:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-tablet"}},feedMarginLeftTab:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-tablet"}},feedMarginTopMob:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-mobile"}},feedMarginRightMob:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-mobile"}},feedMarginBottomMob:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-mobile"}},feedMarginLeftMob:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-mobile"}},feedMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit"}},feedMarginUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-tablet"}},feedMarginUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-mobile"}},feedMarginUnitLink:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-padding-link"}},carouselStartAt:{type:"number",default:0},carouselSquares:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"gallery-carousel-squares"}},carouselLoop:{type:"boolean",default:!0},carouselAutoplay:{type:"boolean",default:!0},carouselAutoplaySpeed:{type:"number",default:2e3},carouselPauseOnHover:{type:"boolean",default:!0},carouselTransitionSpeed:{type:"number",default:500},gridPages:{type:"number",default:1},gridPageNumber:{type:"number",default:1},feedPagination:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"gallery-use-pagination"}},paginateUseArrows:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"gallery-use-arrows"}},paginateUseDots:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"gallery-use-dots"}},paginateUseLoader:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"gallery-use-loader"}},paginateLimit:{type:"number",default:9},paginateButtonAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"gallery-button-align"}},paginateButtonText:{type:"string",default:Object(r.__)("Load More Images","ultimate-addons-for-gutenberg")},paginateButtonPaddingTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paginateButtonPaddingRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paginateButtonPaddingBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paginateButtonPaddingLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paginateButtonPaddingTopTab:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paginateButtonPaddingRightTab:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paginateButtonPaddingBottomTab:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paginateButtonPaddingLeftTab:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paginateButtonPaddingTopMob:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paginateButtonPaddingRightMob:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paginateButtonPaddingBottomMob:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paginateButtonPaddingLeftMob:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},paginateButtonPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-left-padding-unit"}},paginateButtonPaddingUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-left-padding-unit-tab"}},paginateButtonPaddingUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-left-padding-unit-mob"}},paginateButtonPaddingUnitLink:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-padding-spacing-link"}},imageEnableZoom:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-zoom"}},imageZoomType:{type:"string",default:"zoom-in",UAGCopyPaste:{styleType:"image-zoom-type"}},captionBackgroundEnableBlur:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"gallery-background-blur"}},captionBackgroundBlurAmount:{type:"number",default:0,UAGCopyPaste:{styleType:"gallery-background-blur-amount"}},captionBackgroundBlurAmountHover:{type:"number",default:5,UAGCopyPaste:{styleType:"gallery-background-blur-amount"}},lightboxEdgeDistance:{type:"number",default:10,UAGCopyPaste:{styleType:"lightbox-padding"}},lightboxEdgeDistanceTablet:{type:"number",UAGCopyPaste:{styleType:"lightbox-padding-tablet"}},lightboxEdgeDistanceMobile:{type:"number",UAGCopyPaste:{styleType:"lightbox-padding-mobile"}},lightboxBackgroundEnableBlur:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"lightbox-background-blur"}},lightboxBackgroundBlurAmount:{type:"number",default:5,UAGCopyPaste:{styleType:"lightbox-background-blur-amount"}},lightboxBackgroundColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"lightbox-background"}},lightboxIconColor:{type:"string",default:"rgba(255,255,255,1)",UAGCopyPaste:{styleType:"icon-color"}},lightboxCaptionColor:{type:"string",default:"rgba(255,255,255,1)",UAGCopyPaste:{styleType:"desc-color"}},lightboxCaptionBackgroundColor:{type:"string",default:"rgba(0,0,0,1)",UAGCopyPaste:{styleType:"desc-background"}},captionLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},captionFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},captionFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},captionFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},captionTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},captionDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},captionFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},captionFontSizeTab:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tab"}},captionFontSizeMob:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mob"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},captionLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},captionLineHeightTab:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tab"}},captionLineHeightMob:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mob"}},loadMoreLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-font"}},loadMoreFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-width"}},loadMoreFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},loadMoreFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},loadMoreTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},loadMoreDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"btn-decoration"}},loadMoreFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},loadMoreFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},loadMoreFontSizeTab:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tab"}},loadMoreFontSizeMob:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mob"}},loadMoreLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},loadMoreLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},loadMoreLineHeightTab:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tab"}},loadMoreLineHeightMob:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mob"}},lightboxLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},lightboxFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},lightboxFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},lightboxFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},lightboxTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},lightboxDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"desc-decoration"}},lightboxFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},lightboxFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},lightboxFontSizeTab:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tab"}},lightboxFontSizeMob:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mob"}},lightboxLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},lightboxLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},lightboxLineHeightTab:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tab"}},lightboxLineHeightMob:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mob"}},captionBackgroundEffect:{type:"string",default:"none",UAGCopyPaste:{styleType:"gallery-image-effect"}},captionBackgroundEffectHover:{type:"string",default:"none",UAGCopyPaste:{styleType:"gallery-image-hover-effect"}},captionBackgroundEffectAmount:{type:"number",default:100,UAGCopyPaste:{styleType:"gallery-image-effect-amount"}},captionBackgroundEffectAmountHover:{type:"number",default:0,UAGCopyPaste:{styleType:"gallery-image-effect-hover-amount"}},captionColor:{type:"string",default:"rgba(255,255,255,1)",UAGCopyPaste:{styleType:"main-title-color"}},captionColorHover:{type:"string",default:"rgba(255,255,255,1)",UAGCopyPaste:{styleType:"main-title-hover-color"}},captionBackgroundColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"main-title-bg-color"}},captionBackgroundColorHover:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},overlayColor:{type:"string",default:"rgba(0,0,0,0)",UAGCopyPaste:{styleType:"main-title-bg-color"}},overlayColorHover:{type:"string",default:"rgba(0,0,0,0)",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},captionSeparateColors:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"gallery-separate-colors"}},paginateArrowDistance:{type:"number",default:-24,UAGCopyPaste:{styleType:"arrow-distance"}},paginateArrowDistanceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-distance-unit"}},paginateArrowSize:{type:"number",default:24,UAGCopyPaste:{styleType:"arrow-size"}},paginateDotDistance:{type:"number",default:8,UAGCopyPaste:{styleType:"dot-distance"}},paginateDotDistanceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"dot-distance-unit"}},paginateLoaderSize:{type:"number",default:18,UAGCopyPaste:{styleType:"post-loader-size"}},paginateButtonTextColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},paginateButtonTextColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},paginateColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},paginateColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},imageBoxShadowColor:{type:"string",UAGCopyPaste:{styleType:"box-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-hoffset"}},imageBoxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-voffset"}},imageBoxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"box-shadow-blur"}},imageBoxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"box-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"box-shadow-position"}},imageBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"box-shadow-color"}},imageBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-hoffset"}},imageBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"box-shadow-voffset"}},imageBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"box-shadow-blur"}},imageBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"box-shadow-spread"}},imageBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"box-shadow-position"}},...xa,...Aa,...Ga,...Ma,arrowBorderStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"arrow-border-style"}},arrowBorderTopWidth:{type:"number",default:4,UAGCopyPaste:{styleType:"arrow-border-top-width"}},arrowBorderBottomWidth:{type:"number",default:4,UAGCopyPaste:{styleType:"arrow-border-bottom-width"}},arrowBorderLeftWidth:{type:"number",default:4,UAGCopyPaste:{styleType:"arrow-border-left-width"}},arrowBorderRightWidth:{type:"number",default:4,UAGCopyPaste:{styleType:"arrow-border-right-width"}},arrowBorderTopLeftRadius:{type:"number",default:50,UAGCopyPaste:{styleType:"arrow-border-top-left-width"}},arrowBorderTopRightRadius:{type:"number",default:50,UAGCopyPaste:{styleType:"arrow-border-top-right-width"}},arrowBorderBottomLeftRadius:{type:"number",default:50,UAGCopyPaste:{styleType:"arrow-border-bottom-left-width"}},arrowBorderBottomRightRadius:{type:"number",default:50,UAGCopyPaste:{styleType:"arrow-border-bottom-right-width"}},mainTitleBorderTopWidth:{type:"number",default:2,UAGCopyPaste:{styleType:"main-title-border-top-width"}},mainTitleBorderBottomWidth:{type:"number",default:2,UAGCopyPaste:{styleType:"main-title-border-bottom-width"}},mainTitleBorderLeftWidth:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-border-left-width"}},mainTitleBorderRightWidth:{type:"number",default:0,UAGCopyPaste:{styleType:"main-title-border-right-width"}}},Ba={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},separatorAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},separatorAlignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},separatorAlignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},separatorStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"separator-style"}},separatorWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthTablet:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width-tablet"}},separatorWidthMobile:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width-mobile"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},separatorBorderHeight:{type:"number",default:3,UAGCopyPaste:{styleType:"separator-height"}},separatorBorderHeightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-height-mobile"}},separatorBorderHeightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-height-tablet"}},separatorBorderHeightUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},separatorSize:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size"}},separatorSizeMobile:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size-Mobile"}},separatorSizeTablet:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size-Tablet"}},separatorSizeType:{default:"px",UAGCopyPaste:{styleType:"separator-size-type"}},separatorColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"separator-color"}},separatorHeight:{type:"number",UAGCopyPaste:{styleType:"separator-gap"}},separatorHeightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-gap-mobile"}},separatorHeightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-gap-tablet"}},separatorHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-gap-unit"}},separatorBottomPadding:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding"}},separatorPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-padding-tablet"}},separatorPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-padding-tablet"}},separatorPaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding-tablet"}},separatorPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-padding-tablet"}},separatorPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-padding-mobile"}},separatorPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-padding-mobile"}},separatorPaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding-mobile"}},separatorPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-padding-mobile"}},separatorPaddingUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"separator-padding-unit"}},separatorMobilePaddingUnit:{type:"number",UAGCopyPaste:{styleType:"separator-padding-unit-mobile"},default:"px"},separatorTabletPaddingUnit:{type:"number",UAGCopyPaste:{styleType:"separator-padding-unit-tablet"},default:"px"},separatorPaddingLink:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"separator-padding-link"}},elementType:{type:"string",default:"none"},separatorText:{type:"string",default:Object(r.__)("Divider","ultimate-addons-for-gutenberg")},separatorTextTag:{type:"string",default:"h4",UAGCopyPaste:{styleType:"separator-text-tag"}},separatorIcon:{type:"string",default:"circle-check"},elementPosition:{type:"string",default:"center",UAGCopyPaste:{styleType:"element-position"}},elementSpacing:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing"}},elementSpacingTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing-tablet"}},elementSpacingMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing-mobile"}},elementSpacingUnit:{type:"string",default:"px"},elementTextLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},elementTextFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},elementTextFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},elementTextFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},elementTextFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},elementTextFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},elementTextFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},elementTextLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},elementTextLineHeight:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height"}},elementTextLineHeightTablet:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},elementTextLineHeightMobile:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},elementTextFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},elementTextLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},elementTextLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},elementTextLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},elementTextLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},elementTextDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},elementTextTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},elementColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},elementIconWidth:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width"}},elementIconWidthTablet:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width-tablet"}},elementIconWidthMobile:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width-mobile"}},elementIconWidthType:{type:"string",default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1}};const Ua=ce("box");var Ea={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},timerType:{type:"string",default:"date"},endDateTime:{type:"string",default:"2023-01-01T00:00:00Z"},displayEndDateTime:{type:"string",default:"2023-01-01T00:00:00Z"},endDateTimeCopy:{type:"string"},timeModified:{type:"boolean",default:!1},showDays:{type:"boolean",default:!0},showHours:{type:"boolean",default:!0},showMinutes:{type:"boolean",default:!0},showSeconds:{type:"boolean",default:!0},showLabels:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"countdown-show-labels"}},labelDays:{type:"string",default:Object(r.__)("DAYS","ultimate-addons-for-gutenberg")},labelHours:{type:"string",default:Object(r.__)("HOURS","ultimate-addons-for-gutenberg")},labelMinutes:{type:"string",default:Object(r.__)("MINUTES","ultimate-addons-for-gutenberg")},labelSeconds:{type:"string",default:Object(r.__)("SECONDS","ultimate-addons-for-gutenberg")},showSeparator:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"countdown-show-separator"}},separatorType:{type:"string",default:":",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-separator-type"}},ariaLiveType:{type:"string",default:"off"},timerEndAction:{type:"string",default:"zero"},redirectURL:{type:"object"},digitLoadGoogleFonts:{type:"boolean",default:!1},digitColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-color"}},digitFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-family"}},digitFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-weight"}},digitFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-style"}},digitTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-transform"}},digitDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-decoration"}},digitFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type"}},digitFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type-tablet"}},digitFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type-mobile"}},digitLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"digit-line-height-type"}},digitLetterSpacingType:{type:"string",default:"em",UAGCopyPaste:{styleType:"digit-letter-spacing-type"}},digitFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-size"}},digitFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-tablet"}},digitFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-size-mobile"}},digitLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height"}},digitLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height-tablet"}},digitLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height-mobile"}},digitLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing"}},digitLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing-tablet"}},digitLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing-mobile"}},labelLoadGoogleFonts:{type:"boolean",default:!1},labelColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-color"}},labelFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-family"}},labelFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-weight"}},labelFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-style"}},labelTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-transform"}},labelDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-decoration"}},labelFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type"}},labelFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type-tablet"}},labelFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type-mobile"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-line-height-type"}},labelLetterSpacingType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},labelFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-size"}},labelFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-tablet"}},labelFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-size-mobile"}},labelLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height"}},labelLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height-tablet"}},labelLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height-mobile"}},labelLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},separatorLoadGoogleFonts:{type:"boolean",default:!1},separatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},separatorFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-family"}},separatorFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-weight"}},separatorFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-style"}},separatorFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type"}},separatorFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type-tablet"}},separatorFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type-mobile"}},separatorLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"separator-line-height-type"}},separatorFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-size"}},separatorFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-tablet"}},separatorFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-size-mobile"}},separatorLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height"}},separatorLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height-tablet"}},separatorLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height-mobile"}},separatorRightSpacing:{type:"number",default:26,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing"}},separatorRightSpacingTablet:{type:"number",default:14,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing-tablet"}},separatorRightSpacingMobile:{type:"number",default:12,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing-mobile"}},separatorTopSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing"}},separatorTopSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing-tablet"}},separatorTopSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing-mobile"}},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-desktop"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-desktop"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-desktop"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-desktop"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-desktop"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-desktop"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-desktop"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-desktop"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-desktop"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},boxTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-desktop"}},boxRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-desktop"}},boxLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-desktop"}},boxBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-desktop"}},boxTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-tablet"}},boxRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-tablet"}},boxLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-tablet"}},boxBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-tablet"}},boxTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-mobile"}},boxRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-mobile"}},boxLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-mobile"}},boxBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-mobile"}},boxPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit"}},boxPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit-tablet"}},boxPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit-mobile"}},boxPaddingLink:{type:"boolean",default:!1},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},boxAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment"}},boxAlignTablet:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment-tablet"}},boxAlignMobile:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment-mobile"}},boxWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width"}},boxWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width-tablet"}},boxWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width-mobile"}},isSquareBox:{type:"boolean",default:!0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-square"}},boxSpacing:{type:"number",default:38,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap"}},boxSpacingTablet:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap-tablet"}},boxSpacingMobile:{type:"number",default:18,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap-mobile"}},internalBoxSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap"}},internalBoxSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap-tablet"}},internalBoxSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap-mobile"}},boxFlex:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction"}},boxFlexTablet:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction-tablet"}},boxFlexMobile:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction-mobile"}},labelVerticalAlignment:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment"}},labelVerticalAlignmentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment-tablet"}},labelVerticalAlignmentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment-mobile"}},boxBgType:{type:"string",default:"transparent",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bg-type"}},boxBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bg-color"}},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-voffset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-position-hover"}},...Ua,boxBorderStyle:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"box-border-style"}}};const Oa=ce("slider"),La=ce("slider-arrow"),Ha=[];for(let e=1;e<=3;e++)Ha.push({isPreview:!1});var ja={blockName:{type:"string",default:"slider"},block_id:{type:"string"},slide_content:{type:"array",default:Ha},slideItem:{type:"number",default:3},pauseOn:{type:"string",default:"hover"},infiniteLoop:{type:"boolean",default:!0},transitionSpeed:{type:"number",default:800},transitionEffect:{type:"string",default:"slide"},minHeight:{type:"number",default:350},minHeightTablet:{type:"number"},minHeightMobile:{type:"number"},autoplay:{type:"boolean",default:!0},autoplaySpeed:{type:"number",default:3e3},displayArrows:{type:"boolean",default:!0},displayDots:{type:"boolean",default:!0},arrowSize:{type:"number",default:16,UAGCopyPaste:{styleType:"arrow-size"}},arrowSizeTablet:{type:"number",UAGCopyPaste:{styleType:"arrow-size-tablet"}},arrowSizeMobile:{type:"number",UAGCopyPaste:{styleType:"arrow-size-mobile"}},arrowSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-size-unit"}},arrowPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"arrow-Padding"}},arrowPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"arrow-Padding-tablet"}},arrowPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"arrow-Padding-mobile"}},arrowDistance:{type:"number",default:-20,UAGCopyPaste:{styleType:"arrow-distance"}},arrowDistanceTablet:{type:"number",UAGCopyPaste:{styleType:"arrow-distance-tablet"}},arrowDistanceMobile:{type:"number",UAGCopyPaste:{styleType:"arrow-distance-mobile"}},dotsMarginTop:{type:"number",default:20,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"dots-margin-top"}},dotsMarginTopUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"dots-margin-top-unit"}},verticalAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"slider-vertical-align"}},arrowColor:{type:"string",default:"#333333",UAGCopyPaste:{styleType:"arrow-color"}},arrowBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"arrow-bg-color"}},alignItemsDesktop:{type:"string",default:"center",UAGCopyPaste:{styleType:"container-align-items-desktop"}},alignItemsTablet:{type:"string",UAGCopyPaste:{styleType:"container-align-items-tablet"}},alignItemsMobile:{type:"string",UAGCopyPaste:{styleType:"container-align-items-mobile"}},justifyContentDesktop:{type:"string",default:"center",UAGCopyPaste:{styleType:"container-justify-content-desktop"}},justifyContentTablet:{type:"string",UAGCopyPaste:{styleType:"container-justify-content-tablet"}},justifyContentMobile:{type:"string",UAGCopyPaste:{styleType:"container-justify-content-mobile"}},alignContentDesktop:{type:"string",default:"",UAGCopyPaste:{styleType:"container-align-content-desktop"}},alignContentTablet:{type:"string",UAGCopyPaste:{styleType:"container-align-content-tablet"}},alignContentMobile:{type:"string",UAGCopyPaste:{styleType:"container-align-content-mobile"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},topPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-desktop"},default:10},bottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-desktop"},default:10},leftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-desktop"},default:10},rightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-desktop"},default:10},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-tablet"}},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-tablet"}},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-tablet"}},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-tablet"}},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-mobile"}},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-mobile"}},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-mobile"}},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-mobile"},default:10},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-desktop"}},bottomMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-desktop"}},rightMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-desktop"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},marginLink:{type:"boolean",default:!0},isPreview:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},...Oa,...La,"slider-arrowBorderBottomLeftRadius":{type:"number",default:50},"slider-arrowBorderBottomRightRadius":{type:"number",default:50},"slider-arrowBorderTopLeftRadius":{type:"number",default:50},"slider-arrowBorderTopRightRadius":{type:"number",default:50},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-mobile"}}},Fa={block_id:{type:"string",default:"0"},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"slider-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"slider-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"slider-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"slider-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"slider-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"slider-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"slider-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"slider-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"slider-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"slider-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"slider-bg-gradient-value"}},topPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-desktop"},default:20},bottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-desktop"},default:20},leftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-desktop"},default:20},rightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-desktop"},default:20},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-tablet"},default:20},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-tablet"},default:20},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-tablet"},default:20},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-tablet"},default:20},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-mobile"},default:20},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-mobile"},default:20},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-mobile"},default:20},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-mobile"},default:20},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-desktop"}},bottomMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-desktop"}},rightMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-desktop"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type-mobile"}},isPreview:{type:"boolean",default:!1},isBlockRootParent:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocationTablet1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-1"}},gradientLocationMobile1:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientLocationTablet2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-tablet-2"}},gradientLocationMobile2:{type:"number",UAGCopyPaste:{styleType:"gradient-location-mobile-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientAngleTablet:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-tablet"}},gradientAngleMobile:{type:"number",UAGCopyPaste:{styleType:"gradient-angle-mobile"}}};const za={"advanced-heading":Ke,"post-grid":Qe,"post-carousel":tt,"post-masonry":it,section:ot,buttons:rt,"buttons-child":ct,icon:Tt,"info-box":dt,testimonial:mt,team:yt,"social-share":ht,"social-share-child":vt,"google-map":_t,"icon-list":St,"icon-list-child":wt,"restaurant-menu":Pt,"restaurant-menu-child":xt,"call-to-action":Ot,column:Lt,columns:Ht,"gf-styler":{block_id:{type:"string"},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},className:{type:"string"},formId:{type:"string",default:"0"},isHtml:{type:"boolean"},formJson:{type:"object",default:null},enableAjax:{type:"boolean",default:!1},enableTabSupport:{type:"boolean",default:!1},formTabIndex:{type:"number",default:0},titleDescStyle:{type:"string",default:"yes"},titleDescAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},fieldStyle:{type:"string",default:"box"},fieldVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"field-v-padding"}},fieldHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"field-h-padding"}},fieldBgColor:{type:"string",default:"#fafafa",UAGCopyPaste:{styleType:"field-bg-color"}},fieldLabelColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"main-title-color"}},fieldInputColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"input-color"}},fieldBorderStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"field-border-style"}},fieldBorderWidth:{type:"number",default:1,UAGCopyPaste:{styleType:"field-border-width"}},fieldBorderWidthTablet:{type:"number",UAGCopyPaste:{styleType:"field-border-width"}},fieldBorderWidthMobile:{type:"number",UAGCopyPaste:{styleType:"field-border-width"}},fieldBorderWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-border-width-type"}},fieldBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"field-border-radius"}},fieldBorderColor:{type:"string",default:"#eeeeee",UAGCopyPaste:{styleType:"field-border-color"}},fieldBorderFocusColor:{type:"string",default:"",UAGCopyPaste:{styleType:"field-border-hover-color"}},buttonAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},buttonAlignmentTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-tablet"}},buttonAlignmentMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-mobile"}},buttonVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-vertical-padding"}},buttonHrPadding:{type:"number",default:25,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},buttonBorderStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"btn-border-style"}},buttonBorderWidth:{type:"number",default:1,UAGCopyPaste:{styleType:"btn-border-width"}},buttonBorderWidthTablet:{type:"number",UAGCopyPaste:{styleType:"btn-border-width"}},buttonBorderWidthMobile:{type:"number",UAGCopyPaste:{styleType:"btn-border-width"}},buttonBorderWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-border-width-type"}},buttonBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-border-radius"}},buttonBorderColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-border-color"}},buttonTextColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-color"}},buttonBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},buttonBorderHoverColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-border-hover-color"}},buttonTextHoverColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"btn-hover-color"}},buttonBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},fieldSpacing:{type:"number",default:"",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"field-bottom-margin"}},fieldLabelSpacing:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},fieldLabelSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},fieldLabelSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},enableLabel:{type:"boolean",default:!1},labelFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-font-size"}},labelFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},labelFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},labelFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},labelFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},labelFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},labelLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},labelLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},labelLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},labelLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},inputFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"input-font-size"}},inputFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-font-size-type"}},inputFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"input-font-size-tablet"}},inputFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"input-font-size-mobile"}},inputFontFamily:{type:"string",UAGCopyPaste:{styleType:"input-font-family"},default:"Default"},inputFontWeight:{type:"string",UAGCopyPaste:{styleType:"input-font-weight"}},inputLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"input-line-height-type"}},inputLineHeight:{type:"number",UAGCopyPaste:{styleType:"input-line-height"}},inputLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"input-line-height-tablet"}},inputLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"input-line-height-mobile"}},inputLoadGoogleFonts:{type:"boolean",default:!1},textAreaHeight:{type:"number",UAGCopyPaste:{styleType:"textarea-height"},default:"auto"},textAreaHeightTablet:{type:"number",UAGCopyPaste:{styleType:"textarea-height"}},textAreaHeightMobile:{type:"number",UAGCopyPaste:{styleType:"textarea-height"}},buttonFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-font-size"}},buttonFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},buttonFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},buttonFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},buttonFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},buttonFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},buttonLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},buttonLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},buttonLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},buttonLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},buttonLoadGoogleFonts:{type:"boolean",default:!1},enableOveride:{type:"boolean",default:!0},radioCheckSize:{type:"number",default:"20",UAGCopyPaste:{styleType:"radio-size"}},radioCheckSizeTablet:{type:"number",UAGCopyPaste:{styleType:"radio-size"}},radioCheckSizeMobile:{type:"number",UAGCopyPaste:{styleType:"radio-size"}},radioCheckBgColor:{type:"string",default:"#fafafa",UAGCopyPaste:{styleType:"radio-bg-color"}},radioCheckSelectColor:{type:"string",default:"",UAGCopyPaste:{styleType:"radio-select-color"}},radioCheckLableColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},radioCheckBorderColor:{type:"string",default:"#cbcbcb",UAGCopyPaste:{styleType:"radio-border-color"}},radioCheckBorderWidth:{type:"number",default:"1",UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthTablet:{type:"number",UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthMobile:{type:"number",UAGCopyPaste:{styleType:"radio-border-width"}},radioCheckBorderWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-border-width-type"}},radioCheckBorderRadius:{type:"number",default:"",UAGCopyPaste:{styleType:"radio-border-radius"}},radioCheckFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"radio-font-size"}},radioCheckFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-font-size-type"}},radioCheckFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"radio-font-size-tablet"}},radioCheckFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"radio-font-size-mobile"}},radioCheckFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"radio-font-family"}},radioCheckFontWeight:{type:"string",UAGCopyPaste:{styleType:"radio-font-weight"}},radioCheckLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"radio-line-height-type"}},radioCheckLineHeight:{type:"number",UAGCopyPaste:{styleType:"radio-line-height"}},radioCheckLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"radio-line-height-tablet"}},radioCheckLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"radio-line-height-mobile"}},radioCheckLoadGoogleFonts:{type:"boolean",default:!1},validationMsgColor:{type:"string",default:"#ff0000",UAGCopyPaste:{styleType:"validate-msg-color"}},validationMsgBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"validate-msg-bg-color"}},advancedValidationSettings:{type:"boolean",default:!1},highlightBorderColor:{type:"string",default:"#ff0000",UAGCopyPaste:{styleType:"highlight-border-color"}},validationMsgFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"validate-msg-font-size"}},validationMsgFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"validate-msg-font-size-type"}},validationMsgFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"validate-msg-font-size-tablet"}},validationMsgFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"validate-msg-font-size-mobile"}},validationMsgFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"validate-msg-font-family"}},validationMsgFontWeight:{type:"string",UAGCopyPaste:{styleType:"validate-msg-font-weight"}},validationMsgLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"validate-msg-line-height-type"}},validationMsgLineHeight:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height"}},validationMsgLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height-tablet"}},validationMsgLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"validate-msg-line-height-mobile"}},validationMsgLoadGoogleFonts:{type:"boolean",default:!1},successMsgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"success-msg-color"}},errorMsgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-color"}},errorMsgBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-bg-color"}},errorMsgBorderColor:{type:"string",default:"",UAGCopyPaste:{styleType:"failed-msg-border-color"}},msgBorderSize:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-border-size"}},msgBorderSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-border-size-type"}},msgBorderRadius:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-border-radius"}},msgVrPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-v-padding"}},msgHrPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-h-padding"}},msgFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-font-size"}},msgFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-font-size-type"}},msgFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"success-msg-font-size-tablet"}},msgFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"success-msg-font-size-mobile"}},msgFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"success-msg-font-family"}},msgFontWeight:{type:"string",UAGCopyPaste:{styleType:"success-msg-font-weight"}},msgLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"success-msg-line-height-type"}},msgLineHeight:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height"}},msgLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height-tablet"}},msgLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height-mobile"}},msgLoadGoogleFonts:{type:"boolean",default:!1},radioCheckBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radio-border-radius-type"}},msgBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-border-radius-type"}},fieldBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-border-radius-type"}},buttonBorderRadiusType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-border-radius-type"}},successMsgFontSize:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-font-size"}},successMsgFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-font-size-type"}},successMsgFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"success-msg-font-size-tablet"}},successMsgFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"success-msg-font-size-mobile"}},successMsgFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"success-msg-font-family"}},successMsgFontWeight:{type:"string",UAGCopyPaste:{styleType:"success-msg-font-weight"}},successMsgLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"success-msg-line-height-type"}},successMsgLineHeight:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height"}},successMsgLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height-tablet"}},successMsgLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"success-msg-line-height-mobile"}},successMsgLoadGoogleFonts:{type:"boolean",default:!1},msgleftPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-left-padding"}},msgrightPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-right-padding"}},msgtopPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-top-padding"}},msgbottomPadding:{type:"number",default:"",UAGCopyPaste:{styleType:"success-msg-bottom-padding"}},msgleftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-left-padding-mobile"}},msgrightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-right-padding-mobile"}},msgtopMobilePadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-top-padding-mobile"}},msgbottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-bottom-padding-mobile"}},msgleftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-left-padding-tablet"}},msgrightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-right-padding-tablet"}},msgtopTabletPadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-top-padding-tablet"}},msgbottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"success-msg-bottom-padding-tablet"}},msgtabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-padding-unit-tablet"}},msgmobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-padding-unit-mobile"}},msgpaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"success-msg-padding-unit"}},msgpaddingLink:{type:"boolean",default:!1},buttonleftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},buttonrightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},buttontopPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},buttonbottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},buttonleftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},buttonrightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},buttontopMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},buttonbottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},buttonleftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},buttonrightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},buttontopTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},buttonbottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},buttonpaddingLink:{type:"boolean",default:!1},buttontabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},buttonmobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},buttonpaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},fieldleftPadding:{type:"number",UAGCopyPaste:{styleType:"field-left-padding"}},fieldrightPadding:{type:"number",UAGCopyPaste:{styleType:"field-right-padding"}},fieldtopPadding:{type:"number",UAGCopyPaste:{styleType:"field-top-padding"}},fieldbottomPadding:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding"}},fieldleftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-mobile"}},fieldrightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-mobile"}},fieldtopMobilePadding:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-mobile"}},fieldbottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-mobile"}},fieldleftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-tablet"}},fieldrightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-tablet"}},fieldtopTabletPadding:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-tablet"}},fieldbottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-tablet"}},fieldtabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-tablet"}},fieldmobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-mobile"}},fieldpaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit"}},fieldpaddingLink:{type:"boolean",default:!1},labelTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},labelDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},labelFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},inputTransform:{type:"string",UAGCopyPaste:{styleType:"input-transform"}},inputDecoration:{type:"string",UAGCopyPaste:{styleType:"input-decoration"}},inputFontStyle:{type:"string",UAGCopyPaste:{styleType:"input-font-style"}},buttonTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},buttonDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},buttonFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},radioCheckTransform:{type:"string",UAGCopyPaste:{styleType:"radio-transform"}},radioCheckDecoration:{type:"string",UAGCopyPaste:{styleType:"radio-decoration"}},radioCheckFontStyle:{type:"string",UAGCopyPaste:{styleType:"radio-font-style"}},validationMsgTransform:{type:"string",UAGCopyPaste:{styleType:"validate-msg-transform"}},validationMsgDecoration:{type:"string",UAGCopyPaste:{styleType:"validate-msg-decoration"}},validationMsgFontStyle:{type:"string",UAGCopyPaste:{styleType:"validate-msg-font-style"}},msgTransform:{type:"string",UAGCopyPaste:{styleType:"success-msg-transform"}},msgDecoration:{type:"string",UAGCopyPaste:{styleType:"success-msg-decoration"}},msgFontStyle:{type:"string",UAGCopyPaste:{styleType:"success-msg-font-style"}},successMsgTransform:{type:"string",UAGCopyPaste:{styleType:"success-msg-transform"}},successMsgDecoration:{type:"string",UAGCopyPaste:{styleType:"success-msg-decoration"}},successMsgFontStyle:{type:"string",UAGCopyPaste:{styleType:"success-msg-font-style"}},isPreview:{type:"boolean",default:!1},labelLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},labelLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},inputLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing"}},inputLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-tablet"}},inputLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-mobile"}},inputLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-letter-spacing-type"}},radioCheckLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing"}},radioCheckLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-tablet"}},radioCheckLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-mobile"}},radioCheckLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"radioCheck-letter-spacing-type"}},buttonLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing"}},buttonLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing-tablet"}},buttonLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"button-letter-spacing-mobile"}},buttonLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"button-letter-spacing-type"}},validationMsgLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing"}},validationMsgLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-tablet"}},validationMsgLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-mobile"}},validationMsgLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"validationMsg-letter-spacing-type"}},msgLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing"}},msgLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing-tablet"}},msgLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"msg-letter-spacing-mobile"}},msgLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"msg-letter-spacing-type"}},successMsgLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"successMsg-letter-spacing"}},successMsgLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"successMsg-letter-spacing-tablet"}},successMsgLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"successMsg-letter-spacing-mobile"}},successMsgLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"successMsg-letter-spacing-type"}}},"cf7-styler":jt,blockquote:Ft,"marketing-button":Dt,"table-of-contents":It,"how-to":qt,faq:$t,"faq-child":Yt,"inline-notice":Kt,"taxonomy-list":Jt,review:Xt,"wp-search":Qt,forms:oa,"forms-accept":na,"forms-email":ra,"forms-hidden":sa,"forms-name":ca,"forms-toggle":ua,"forms-url":pa,"forms-textarea":ba,tabs:ga,lottie:ma,"star-rating":ya,"content-timeline":Mt,"content-timeline-child":Rt,"post-timeline":Bt,"how-to-step":Zt,container:va,image:Ta,modal:wa,counter:Pa,"image-gallery":Ra,separator:Ba,countdown:Ea,slider:ja,"slider-child":Fa,"popup-builder":pe};var Da,Na=e=>{var t,a;const[l,i]=Object(B.useState)(null),o=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Ze.use(),()=>{Ze.unuse()}),[]);const{getSelectedBlock:s}=Object(n.select)("core/block-editor"),c=null===(t=s())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{i(D(o))},[c]);const{data:u,label:p,options:b,showIcons:d,responsive:g,onChange:m,colorVariant:y="primary",layoutVariant:f="full",help:h=!1}=e,v=!(!e.setAttributes||"function"!=typeof e.setAttributes)&&e.setAttributes,_=null===(a=s())||void 0===a?void 0:a.name.split("/").pop(),T=Object(j.applyFilters)("uagb.blocksAttributes",za),[C,S]=Object(B.useState)(!0),[w,k]=Object(B.useState)(!0),[P,x]=Object(B.useState)(!0),A=le(),G=d?"uag-multibutton-icons":"";if(!b)return Object(r.__)("Please add a option props to MultiButtonsControl","ultimate-addons-for-gutenberg");if(g){const e={};return e.Desktop=React.createElement(Le.ButtonGroup,{className:"uagb-multi-button-button-group","aria-label":p},b.map(e=>React.createElement(Le.Button,{key:"option-"+e.value,className:"uagb-multi-button",isLarge:!0,isSecondary:u.desktop.value!==e.value||!C,isPrimary:u.desktop.value===e.value&&C,"aria-pressed":u.desktop.value===e.value,onClick:()=>{if(S(!0),e.value===u.desktop.value&&C)return S(!1),void(v&&v({[u.desktop.label]:T[_][u.desktop.label].default}));v&&v({[u.desktop.label]:e.value})},"aria-label":e.tooltip,label:e.tooltip,showTooltip:!!e.tooltip},d?e.icon:e.label))),e.Tablet=React.createElement(Le.ButtonGroup,{className:"uagb-multi-button-button-group","aria-label":p},b.map(e=>React.createElement(Le.Button,{key:"option-"+e.value,className:"uagb-multi-button",isLarge:!0,isSecondary:u.tablet.value!==e.value||!w,isPrimary:u.tablet.value===e.value&&w,"aria-pressed":u.tablet.value===e.value,onClick:()=>{if(k(!0),e.value===u.tablet.value&&w)return k(!1),void(v&&v({[u.tablet.label]:T[_][u.tablet.label].default}));v&&v({[u.tablet.label]:e.value})},"aria-label":e.tooltip,label:e.tooltip,showTooltip:!!e.tooltip},d?e.icon:e.label))),e.Mobile=React.createElement(Le.ButtonGroup,{className:"uagb-multi-button-button-group","aria-label":p},b.map(e=>React.createElement(Le.Button,{key:"option-"+e.value,className:"uagb-multi-button",isLarge:!0,isSecondary:u.mobile.value!==e.value||!P,isPrimary:u.mobile.value===e.value&&P,"aria-pressed":u.mobile.value===e.value,onClick:()=>{if(x(!0),e.value===u.mobile.value&&P)return x(!1),void(v&&v({[u.mobile.label]:T[_][u.mobile.label].default}));v&&v({[u.mobile.label]:e.value})},"aria-label":e.tooltip,label:e.tooltip,showTooltip:!!e.tooltip},d?e.icon:e.label))),React.createElement("div",{className:`components-base-control uagb-multi-buttons-control ${G} spectra-multi-buttons__color-scheme--${y} spectra-multi-buttons__layout--${f}`},React.createElement("div",{className:"uagb-control__header uagb-size-type-field-tabs"},React.createElement(Ne,{label:p,responsive:g})),e[A]?e[A]:e.Desktop,React.createElement(De,{text:h}))}const M=z(p),R=Object(j.applyFilters)(`spectra.${_}.${l}.${M}.before`,"",_),U=Object(j.applyFilters)(`spectra.${_}.${l}.${M}`,"",_),E=Object(j.applyFilters)(`spectra.${_}.${l}.${M}.options`,b,_);return React.createElement("div",{ref:o,className:"components-base-control"},R,React.createElement("div",{className:` uagb-multi-buttons-control ${G} spectra-multi-buttons__color-scheme--${y} spectra-multi-buttons__layout--${f}`},React.createElement("div",{className:"uagb-multi-buttons-control__label uag-control-label"},p),React.createElement(Le.ButtonGroup,{className:"uagb-multi-button-button-group","aria-label":p},E.map(e=>React.createElement(Le.Button,{key:"option-"+e.value,className:"uagb-multi-button",isLarge:!0,isSecondary:u.value!==e.value||!C,isPrimary:u.value===e.value&&C,"aria-pressed":u.value===e.value,onClick:()=>(e=>{if(S(!0),m&&m(e),e===u.value&&C)return S(!1),void(v&&v({[u.label]:T[_][u.label].default}));v&&v({[u.label]:e})})(e.value),"aria-label":e.tooltip,label:e.tooltip,showTooltip:!!e.tooltip},d?e.icon:e.label))),React.createElement(De,{text:h})),U)},Ia=a(81),Va=0,Wa={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},qa={};qa.locals=Ia.a.locals||{},qa.use=function(){return Va++||(Da=ke()(Ia.a,Wa)),qa},qa.unuse=function(){Va>0&&!--Va&&(Da(),Da=null)};var Za=qa;const $a=(e,t,a)=>{let l=0;if(a){var i;const a=le();l=(e||t.data[a.toLowerCase()].value)&&null!==(i=t.data[a.toLowerCase()])&&void 0!==i&&i.max?t.data[a.toLowerCase()].max:t.max}else l=e&&t.limitMax?t.limitMax[e]:t.max;return l},Ya=(e,t,a)=>{let l=0;if(a){var i;const a=le();l=(e||t.data[a.toLowerCase()].value)&&null!==(i=t.data[a.toLowerCase()])&&void 0!==i&&i.min?t.data[a.toLowerCase()].min:t.min}else l=e&&t.limitMin?t.limitMin[e]:t.min;return l};var Ka=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null),{onReset:o,attributeNames:s,setAttributes:c,resetStateEnabled:u,isReset:p}=e,[b,d]=Object(B.useState)(!1),{getSelectedBlock:g}=Object(n.select)("core/block-editor"),m=null===(t=g())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[m]);const y=Object(j.applyFilters)("uagb.blocksAttributes",za),f=()=>{var e;const t=null===(e=g())||void 0===e?void 0:e.name.split("/").pop();let a=!1;return s&&void 0!==y[t]&&s.map(e=>{if(e){var l,i;const o=void 0!==(null===(l=y[t][e])||void 0===l?void 0:l.default)?null===(i=y[t][e])||void 0===i?void 0:i.default:"";a={...a,[e]:o}}return e}),a},h=!u&&(()=>{var e;const t=f(),a=null===(e=g())||void 0===e?void 0:e.attributes;let l=!0;return s.map(e=>(null!=a&&a[e]&&(null==a?void 0:a[e])!==(null==t?void 0:t[e])&&(l=!1),e)),l})(),v=Object(j.applyFilters)(`spectra.${m}.${a}.reset.before`,"",m),_=Object(j.applyFilters)(`spectra.${m}.${a}.reset`,"",m);return React.createElement(Le.Tooltip,{text:Object(r.__)("Reset","ultimate-addons-for-gutenberg"),key:"reset",ref:i},v,React.createElement(Le.Button,{className:"uagb-reset",isSecondary:!0,isSmall:!0,onClick:e=>{e.preventDefault(),(()=>{const e=f();s&&s.map(t=>(t&&c&&c({[t]:null==e?void 0:e[t]}),d(!b),t)),o&&o(e),p&&p(!0)})()},disabled:h},React.createElement(Le.Dashicon,{icon:"image-rotate"})),_)};const Ja=!!Le.__experimentalNumberControl,Xa=e=>{var t,a,l;const[i,o]=Object(B.useState)(null),s=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Za.use(),()=>{Za.unuse()}),[]);const{getSelectedBlock:c}=Object(n.select)("core/block-editor"),u=null===(t=c())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{o(D(s))},[u]);const{withInputField:p,isShiftStepEnabled:b}=e;let d=$a(null===(a=e.unit)||void 0===a?void 0:a.value,e),g=Ya(null===(l=e.unit)||void 0===l?void 0:l.value,e);const m=isNaN(null==e?void 0:e.value)?"":null==e?void 0:e.value;let y=[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}];e.units&&(y=e.units);const f=t=>{const a=parseFloat(t);e.setAttributes&&e.setAttributes({[e.data.label]:a}),null!=e&&e.onChange&&e.onChange(a)},h=t=>{null!=e&&e.setAttributes&&e.setAttributes({[e.unit.label]:t}),null!=e&&e.onChangeUnits&&e.onChangeUnits(t),d=$a(t,e),g=Ya(t,e),e.value>d&&f(d),e.value<g&&f(g)},v=z(e.label),_=Object(j.applyFilters)(`spectra.${u}.${i}.${v}.before`,"",u),T=Object(j.applyFilters)(`spectra.${u}.${i}.${v}`,"",u);return React.createElement("div",{ref:s,className:"components-base-control"},_,React.createElement("div",{className:"uag-range-control uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:e.label,responsive:e.responsive}),React.createElement("div",{className:"uagb-range-control__actions uagb-control__actions"},(null==e?void 0:e.allowReset)&&React.createElement(Ka,{onReset:t=>{var a,l;null!=e&&e.onChange&&(null==e||e.onChange(t[null==e||null===(a=e.data)||void 0===a?void 0:a.label])),e.displayUnit&&h(t[null==e||null===(l=e.unit)||void 0===l?void 0:l.label])},attributeNames:[e.data.label,!!e.displayUnit&&e.unit.label],setAttributes:e.setAttributes,resetStateEnabled:null==e?void 0:e.resetStateEnabled,isReset:null==e?void 0:e.isReset}),e.displayUnit&&React.createElement(Le.ButtonGroup,{className:"uagb-control__units","aria-label":Object(r.__)("Select Units","ultimate-addons-for-gutenberg")},(t=>{const a=[];return t.map(t=>a.push(React.createElement(Le.Tooltip,{text:Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),t.name),key:t.name},React.createElement(Le.Button,{key:t.unitValue,className:"uagb-range-control__units--"+t.name,isSmall:!0,isPrimary:e.unit.value===t.unitValue,isSecondary:e.unit.value!==t.unitValue,"aria-pressed":e.unit.value===t.unitValue,"aria-label":Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),t.name),onClick:()=>h(t.unitValue)},t.unitValue)))),a})(y)))),React.createElement("div",{className:"uagb-range-control__mobile-controls"},React.createElement(Le.RangeControl,{value:m,onChange:f,withInputField:!1,allowReset:!1,max:d,min:g,step:(null==e?void 0:e.step)||1,initialPosition:m,marks:(null==e?void 0:e.marks)||!1}),p&&Ja&&React.createElement(Le.__experimentalNumberControl,{disabled:e.disabled,isShiftStepEnabled:b,max:d,min:g,onChange:f,value:m,step:(null==e?void 0:e.step)||1})),React.createElement(De,{text:e.help})),T)};Xa.defaultProps={label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),className:"",allowReset:!0,withInputField:!0,isShiftStepEnabled:!0,max:1/0,min:-1/0,resetFallbackValue:"",placeholder:null,unit:["px","em"],displayUnit:!0,responsive:!1,help:!1,marks:!1,resetStateEnabled:!1,isReset:!1};var Qa=Xa;function el(){return(el=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var tl=e=>{var t,a,l,i,o,r,s;const[c,u]=Object(B.useState)(null),p=Object(B.useRef)(null),b=le(),{getSelectedBlock:d}=Object(n.select)("core/block-editor"),g=null===(t=d())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{u(D(p))},[g]);const m={},y=$a(null===(a=e.data.desktop.unit)||void 0===a?void 0:a.value,e,!0),f=$a(null===(l=e.data.tablet.unit)||void 0===l?void 0:l.value,e,!0),h=$a(null===(i=e.data.mobile.unit)||void 0===i?void 0:i.value,e,!0),v=Ya(null===(o=e.data.desktop.unit)||void 0===o?void 0:o.value,e,!0),_=Ya(null===(r=e.data.tablet.unit)||void 0===r?void 0:r.value,e,!0),T=Ya(null===(s=e.data.mobile.unit)||void 0===s?void 0:s.value,e,!0);m.Desktop=React.createElement(React.Fragment,null,React.createElement(Qa,el({},e,{label:e.label,value:isNaN(e.data.desktop.value)?"":e.data.desktop.value,data:{value:e.data.desktop.value,label:e.data.desktop.label},onChange:!(null==e||!e.onChange)&&(t=>{null!=e&&e.onChange&&e.onChange(t,"Desktop")}),min:v,max:y,unit:e.data.desktop.unit||e.unit,responsive:!0,units:e.units}))),m.Tablet=React.createElement(React.Fragment,null,React.createElement(Qa,el({},e,{label:e.label,value:isNaN(e.data.tablet.value)?"":e.data.tablet.value,data:{value:e.data.tablet.value,label:e.data.tablet.label},onChange:!(null==e||!e.onChange)&&(t=>{null!=e&&e.onChange&&e.onChange(t,"Tablet")}),min:_,max:f,unit:e.data.tablet.unit||e.unit,responsive:!0,units:e.units}))),m.Mobile=React.createElement(React.Fragment,null,React.createElement(Qa,el({},e,{label:e.label,value:isNaN(e.data.mobile.value)?"":e.data.mobile.value,data:{value:e.data.mobile.value,label:e.data.mobile.label},onChange:!(null==e||!e.onChange)&&(t=>{null!=e&&e.onChange&&e.onChange(t,"Mobile")}),min:T,max:h,unit:e.data.mobile.unit||e.unit,responsive:!0,units:e.units})));const C=z(e.label),S=Object(j.applyFilters)(`spectra.${g}.${c}.${C}.before`,"",g),w=Object(j.applyFilters)(`spectra.${g}.${c}.${C}`,"",g);return React.createElement("div",{ref:p,className:"components-base-control"},S,React.createElement("div",{className:"uagb-responsive-range"},React.createElement("div",{className:"uagb-responsive-control-inner"},m[b]?m[b]:m.Desktop)),w)};function al(){return(al=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var ll=e=>{const t=e.parentProps,{attributes:a,setAttributes:l}=t,{isGridCssInParent:i,gridSettingType:o,gridAlignItems:n,gridAlignItemsTablet:s,gridAlignItemsMobile:c,gridJustifyItems:u,gridJustifyItemsTablet:p,gridJustifyItemsMobile:b}=a;if(!i)return null;const d=e=>{const t=e,i=e+"Tablet",o=e+"Mobile";return{min:1,max:10,displayUnit:!1,setAttributes:l,data:{desktop:{value:a[e],label:t},tablet:{value:a[i],label:i},mobile:{value:a[o],label:o}},value:a[e]}},g=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"column";return[{value:"start",tooltip:Object(r.__)("Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-start`)})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-center`)})},{value:"end",tooltip:Object(r.__)("End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-end`)})},{value:"stretch",tooltip:Object(r.__)("Stretch","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-strech`)})}]};return React.createElement(Fe,{title:Object(r.__)("Grid Item Settings","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{data:{value:o||"",label:"gridSettingType"},options:[{value:"",label:Object(r.__)("Simple","ultimate-addons-for-gutenberg")},{value:"advance",label:Object(r.__)("Advance","ultimate-addons-for-gutenberg")}],onChange:e=>{l({gridSettingType:e})}}),"advance"!==o?React.createElement(React.Fragment,null,React.createElement(tl,al({label:Object(r.__)("Column Width","ultimate-addons-for-gutenberg")},d("gridColumnSpan"))),React.createElement(tl,al({label:Object(r.__)("Row Height","ultimate-addons-for-gutenberg")},d("gridRowSpan")))):React.createElement(React.Fragment,null,React.createElement(tl,al({label:Object(r.__)("Column Start","ultimate-addons-for-gutenberg")},d("gridColumnStart"))),React.createElement(tl,al({label:Object(r.__)("Column End","ultimate-addons-for-gutenberg")},d("gridColumnEnd"))),React.createElement(tl,al({label:Object(r.__)("Row Start","ultimate-addons-for-gutenberg")},d("gridRowStart"))),React.createElement(tl,al({label:Object(r.__)("Row End","ultimate-addons-for-gutenberg")},d("gridRowEnd")))),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Align Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:n,label:"gridAlignItems"},tablet:{value:s,label:"gridAlignItemsTablet"},mobile:{value:c,label:"gridAlignItemsMobile"}},options:[...g("column")],showIcons:!0,responsive:!0,help:Object(r.__)("Define the vertical alignment for grid items content.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Justify Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:u,label:"gridJustifyItems"},tablet:{value:p,label:"gridJustifyItemsTablet"},mobile:{value:b,label:"gridJustifyItemsMobile"}},options:[...g("row")],showIcons:!0,responsive:!0,help:Object(r.__)("Define the horizontal alignment for grid items content.","ultimate-addons-for-gutenberg")}))},il=e=>{var t,a;const{children:l,isActive:i,type:o}=e,r=Object(B.useRef)(null),{getSelectedBlock:s}=Object(n.select)("core/block-editor"),c=null===(t=s())||void 0===t?void 0:t.name;Object(B.useEffect)(()=>{const e=te("uagSettingState");if(e){var t,a,l,i;const n=null===(t=e[c])||void 0===t?void 0:t.selectedTab,s=null===(a=e[c])||void 0===a?void 0:a.selectedPanel,u=null===(l=e[c])||void 0===l?void 0:l.selectedSetting,p=null===(i=e[c])||void 0===i?void 0:i.selectedInnerTab;if(n&&o===n){let e=!1;e=s?r.current.querySelector("."+s):r.current.querySelector(".is-opened"),e&&(e.classList.contains("is-opened")||e.querySelector(".components-button").click(),p&&setTimeout((function(){const t=e.querySelector(p);t&&!t.classList.contains("active-tab")&&t.click()}),100),u&&setTimeout((function(){const t=e.querySelector(u);t&&!t.classList.contains("active")&&t.querySelector(".components-button").click()}),100))}}},[]);const u=c.split("/").pop(),p=Object(j.applyFilters)(`spectra.${u}.tab_${o}.before`,"",c),b=Object(j.applyFilters)(`spectra.${u}.tab_${o}`,"",c);let d=null;"general"!==o&&"style"!==o||null==e||null===(a=e.parentProps)||void 0===a||!a.attributes||(d=React.createElement(Oe,e.parentProps.attributes));let g=null;return"uagb/container"===c&&"general"===o&&(g=React.createElement(ll,e)),React.createElement("div",{style:{display:i?"block":"none"},className:"uagb-inspector-tab uagb-tab-content-"+o,ref:r},p,d,Array.isArray(l)?l.map(e=>e):l,Object(j.applyFilters)(`uag_${o}_tab_content`,"",e.parentProps),g,b)};const ol={key:"general",type:"general"},nl={key:"style",type:"style"},rl={key:"advance",type:"advance"},sl={};sl.inherit=React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",fillRule:"evenodd",width:"24",height:"24",strokeLinejoin:"round",strokeMiterlimit:"1.5",clipRule:"evenodd",viewBox:"0 0 24 24"},React.createElement("path",{fill:"none",stroke:"currentColor",strokeWidth:"1.5",d:"M12.383 26.976l2.01-.941 1.884.538 1.623 1.666-.692.236.281 1.539 1.552 1.35-1.552 2.153",transform:"matrix(.68343 0 0 .68343 -5.086 -1.48)"}),React.createElement("path",{fill:"none",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"1.5",d:"M12.016 24.355l.998-.952M33.573 26.085l-1.636-1.343-1.348-1.248M26.35 27.774l.332.37 1.349.756-.711 2.768 1.274 1.203.989-.449 3.933-6.226",transform:"matrix(.68343 0 0 .68343 -5.086 -1.48)"}),React.createElement("path",{fill:"none",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"1.5",d:"M29.519 9.539c5.298 1.881 9.099 6.977 9.099 12.961 0 7.582-6.102 13.737-13.618 13.737S11.382 30.082 11.382 22.5",transform:"matrix(.68343 0 0 .68343 -5.086 -1.48)"}),React.createElement("path",{fill:"none",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"1.5",d:"M20.684 3.211v9.433h4.179l-6.429 6.429-6.429-6.429h4.179V8.021",transform:"matrix(.68343 0 0 .68343 -5.086 -1.48) translate(-6.686 -1.321) scale(1.55693)"}),React.createElement("path",{fill:"none",stroke:"currentColor",strokeLinecap:"square",strokeWidth:"1.5",d:"M32.994 21.014l.2.205 3.364.329 1.532 2.432M32.931 12.002l-3.219.944-1.054 1.996-.408-.003",transform:"matrix(.68343 0 0 .68343 -5.086 -1.48)"}));var cl,ul=sl,pl=e=>{if(e&&e.includes("var")){const t=window.getComputedStyle(document.body);if((e=e.slice(4).slice(0,-1)).includes(","))return e.split(",").pop().trim();e=t.getPropertyValue(e).trim()}return e},bl=a(82),dl=0,gl={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ml={};ml.locals=bl.a.locals||{},ml.use=function(){return dl++||(cl=ke()(bl.a,gl)),ml},ml.unuse=function(){dl>0&&!--dl&&(cl(),cl=null)};var yl,fl=ml,hl=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(fl.use(),()=>{fl.unuse()}),[]);const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),s=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[s]);const{colors:c}=Object(n.useSelect)(e=>({colors:e("core/block-editor").getSettings().colors})),{alpha:u,colorValue:p,opacityValue:b,backgroundVideoOpacity:d,onOpacityChange:g,data:m,setAttributes:y,onColorChange:f,label:h,help:v}=e,[_,T]=Object(B.useState)({alpha:!1!==u,colors:[],classSat:"first",currentColor:p,inherit:!1,currentOpacity:void 0!==b?b:1,isPalette:!(!p||!p.startsWith("palette")),refresh:!1}),[C,S]=Object(B.useState)({isVisible:!1});Object(B.useEffect)(()=>{w(p,"")},[p]);const w=(e,t)=>{var a,l;let i,o=null==d?void 0:d.value;if(t)i=e;else if(null!=e&&e.rgb&&null!=e&&null!==(a=e.rgb)&&void 0!==a&&a.a&&1!==(null==e||null===(l=e.rgb)||void 0===l?void 0:l.a)){var n,r,s,c,u;g&&(o=null==e||null===(u=e.rgb)||void 0===u?void 0:u.a),i="rgba("+(null==e||null===(n=e.rgb)||void 0===n?void 0:n.r)+","+(null==e||null===(r=e.rgb)||void 0===r?void 0:r.g)+","+(null==e||null===(s=e.rgb)||void 0===s?void 0:s.b)+","+(null==e||null===(c=e.rgb)||void 0===c?void 0:c.a)+")"}else i=null!=e&&e.hex?null==e?void 0:e.hex:e;T({currentColor:i,currentOpacity:o,isPalette:!!t}),!0===t&&T({refresh:!(null!=_&&_.refresh)}),m&&y&&y({[null==m?void 0:m.label]:i}),f&&f(i),g&&g(o)},k=()=>{!0===C.isVisible&&S({isVisible:!1})},P=_.currentColor?_.currentColor:p,x=(e=>{const t=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e),a=t?{r:parseInt(t[1],16),g:parseInt(t[2],16),b:parseInt(t[3],16)}:null;return a&&Math.round((299*a.r+587*a.g+114*a.b)/1e3)>125?"black":"white"})(pl(P)),A=P&&P.includes("var")?"uag-global-indicator uag-global-icon-"+x:"",G=z(e.label),M=Object(j.applyFilters)(`spectra.${s}.${a}.${G}.before`,"",s),R=Object(j.applyFilters)(`spectra.${s}.${a}.${G}`,"",s);return React.createElement("div",{ref:i,className:"components-base-control"},M,React.createElement("div",{className:"uagb-color-popover-container new-uagb-advanced-colors"},React.createElement("div",{className:"uagb-advanced-color-settings-container"},h&&React.createElement("span",{className:"uagb-beside-color-label uag-control-label"},h),React.createElement(Ka,{onReset:e=>{T({..._,currentColor:e[null==m?void 0:m.label]})},attributeNames:[null==m?void 0:m.label],setAttributes:y}),React.createElement("div",{className:"uagb-beside-color-click"},C.isVisible&&React.createElement(Le.Popover,{position:"top left",className:"uagb-popover-color new-uagb-advanced-colors-pop",onClose:k},_.refresh&&React.createElement(React.Fragment,null,React.createElement(Le.ColorPicker,{color:pl(P),onChangeComplete:e=>w(e,"")})),!_.refresh&&React.createElement(React.Fragment,null,React.createElement(Le.ColorPicker,{color:pl(P),onChangeComplete:e=>w(e,"")})),c&&React.createElement(Le.ColorPalette,{color:P,colors:c,onChange:e=>w(e,!0),clearable:!1,disableCustomColors:!0}),React.createElement("button",{type:"button",onClick:()=>{w("",!0)},className:"uagb-clear-btn-inside-picker components-button components-circular-option-picker__clear is-secondary is-small"},Object(r.__)("Clear","ultimate-addons-for-gutenberg"))),C.isVisible&&React.createElement(Le.Tooltip,{text:Object(r.__)("Select Color","ultimate-addons-for-gutenberg")},React.createElement(Le.Button,{className:"uagb-color-icon-indicate uagb-has-alpha",onClick:k},React.createElement(Le.ColorIndicator,{className:"uagb-advanced-color-indicate "+A,colorValue:P}),""===P&&_.inherit&&React.createElement("span",{className:"color-indicator-icon"},ul.inherit),p&&p.startsWith("palette")&&React.createElement("span",{className:"color-indicator-icon"},React.createElement(Le.Dashicon,{icon:"admin-site"})))),!C.isVisible&&React.createElement(Le.Tooltip,{text:Object(r.__)("Select Color","ultimate-addons-for-gutenberg")},React.createElement(Le.Button,{className:"uagb-color-icon-indicate uagb-has-alpha",onClick:()=>{S({isVisible:!0})}},React.createElement(Le.ColorIndicator,{className:"uagb-advanced-color-indicate "+A,colorValue:P}),""===P&&_.inherit&&React.createElement("span",{className:"color-indicator-icon"},ul.inherit),p&&p.startsWith("palette")&&React.createElement("span",{className:"color-indicator-icon"},React.createElement(Le.Dashicon,{icon:"admin-site"})))))),v&&React.createElement("p",{className:"components-base-control__help"},v)),R)},vl=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null),[o,s]=Object(B.useState)(!1),c=Object(j.applyFilters)("uagb.blocksAttributes",za),{getSelectedBlock:u}=Object(n.select)("core/block-editor");Object(B.useLayoutEffect)(()=>{window.addEventListener("click",(function(e){var t,a,l,i,o,n;const r=document.querySelector(`.active.popup-${T} .spectra-control-popup__options--action-button`),c=document.querySelector(`.active.popup-${T} .spectra-control-popup`);if(r&&(null==r||!r.contains(e.target))&&c&&(null==c||!c.contains(e.target))&&(null===(t=e.target)||void 0===t||null===(a=t.classList)||void 0===a||!a.contains("uagb-advanced-color-indicate"))&&(null===(l=e.target)||void 0===l||null===(i=l.parentElement)||void 0===i||!i.closest(".uagb-popover-color"))&&(null===(o=e.target)||void 0===o||null===(n=o.parentElement)||void 0===n||!n.closest(".uagb-reset"))){var p;s(!1);const e=null===(p=u())||void 0===p?void 0:p.name,t=te("uagSettingState"),a={...t,[e]:{...null==t?void 0:t[e],selectedSetting:!1}},l=te();l&&l.setItem("uagSettingState",JSON.stringify(a))}}))},[]);const p=null===(t=u())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[p]);const{setAttributes:b,boxShadowColor:d,boxShadowHOffset:g,boxShadowVOffset:m,boxShadowBlur:y,boxShadowSpread:f,boxShadowPosition:h,label:v=Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),popup:_=!1,blockId:T,help:C=!1}=e;let S;const w=o?"active":"",k=[d.label,g.label,m.label,y.label,f.label,h.label],P=_&&(()=>{var e;const t=(()=>{var e;const t=null===(e=u())||void 0===e?void 0:e.name.split("/").pop();let a=!1;return void 0!==c[t]&&k.forEach(e=>{if(e){var l,i;const o=void 0!==(null===(l=c[t][e])||void 0===l?void 0:l.default)?null===(i=c[t][e])||void 0===i?void 0:i.default:"";a={...a,[e]:o}}}),a})(),a=null===(e=u())||void 0===e?void 0:e.attributes;let l=!1;return k.forEach(e=>{null!=a&&a[e]&&(null==a?void 0:a[e])!==(null==t?void 0:t[e])&&(l=!0)}),l})(),x=React.createElement(React.Fragment,null,React.createElement(hl,{label:d.title,colorValue:d.value,data:{value:d.value,label:d.label},setAttributes:b}),React.createElement(Qa,{label:g.title,value:g.value,min:-100,max:100,displayUnit:!1,setAttributes:b,data:{value:g.value,label:g.label}}),React.createElement(Qa,{label:m.title,value:m.value,min:-100,max:100,displayUnit:!1,setAttributes:b,data:{value:m.value,label:m.label}}),React.createElement(Qa,{label:y.title,value:y.value,min:0,max:100,displayUnit:!1,setAttributes:b,data:{value:y.value,label:y.label}}),React.createElement(Qa,{label:f.title,value:f.value,min:-100,max:100,displayUnit:!1,setAttributes:b,data:{value:f.value,label:f.label}}),React.createElement(Na,{setAttributes:b,label:h.title,data:{value:h.value,label:h.label},options:[{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Inset (10px)","ultimate-addons-for-gutenberg")}],showIcons:!1}));o&&(S=React.createElement("div",{className:"uagb-box-shadow-advanced spectra-control-popup"},x));const A=React.createElement("div",{className:"spectra-control-popup__options--action-wrapper"},React.createElement("span",{className:"uag-control-label"},v,P&&React.createElement("div",{className:"spectra__change-indicator--dot-right"})),React.createElement(Le.Button,{className:"uag-box-shadow-button spectra-control-popup__options--action-button","aria-pressed":o,onClick:()=>{var e;const t=document.querySelectorAll(".spectra-control-popup__options");if(t&&0<t.length)for(let e=0;e<t.length;e++){var a;const l=null===(a=t[e])||void 0===a?void 0:a.querySelector(".spectra-control-popup__options.active .spectra-control-popup__options--action-button");null==l||l.click()}s(!o);const l=null===(e=u())||void 0===e?void 0:e.name,i=te("uagSettingState");let n={...i,[l]:{...null==i?void 0:i[l],selectedSetting:".uag-box-shadow-options"}};o&&(n={...i,[l]:{...null==i?void 0:i[l],selectedSetting:!1}});const r=te();r&&r.setItem("uagSettingState",JSON.stringify(n))}},React.createElement(Le.Dashicon,{icon:"edit"}))),G=z(e.label),M=Object(j.applyFilters)(`spectra.${p}.${a}.${G}.before`,"",p),R=Object(j.applyFilters)(`spectra.${p}.${a}.${G}`,"",p);return React.createElement("div",{ref:i},M,_?React.createElement("div",{className:` components-base-control uag-box-shadow-options spectra-control-popup__options popup-${T} ${w}`},A,o&&S,React.createElement(De,{text:C})):React.createElement(React.Fragment,null,x),R)},_l=a(83),Tl=0,Cl={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Sl={};Sl.locals=_l.a.locals||{},Sl.use=function(){return Tl++||(yl=ke()(_l.a,Cl)),Sl},Sl.unuse=function(){Tl>0&&!--Tl&&(yl(),yl=null)};var wl,kl=Sl,Pl=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(kl.use(),()=>{kl.unuse()}),[]);const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),s=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[s]);const c=le(),{label:u,unit:p,mUnit:b,tUnit:d,disableUnits:g,valueBottom:m,valueLeft:y,valueRight:f,valueTop:h,valueBottomTablet:v,valueLeftTablet:_,valueRightTablet:T,valueTopTablet:C,valueBottomMobile:S,valueLeftMobile:w,valueRightMobile:k,valueTopMobile:P,link:x,setAttributes:A,help:G=!1,min:M=-50}=e,R=(e,t,a,l)=>{switch(e){case"desktop":return l;case"tablet":return a||l;case"mobile":return"number"==typeof T.value||"number"==typeof C.value||"number"==typeof v.value||"number"==typeof _.value?t||a:t||a||l;default:return""}},U=(e,t)=>{switch(t){case"desktop":A({[h.label]:e}),A({[f.label]:e}),A({[m.label]:e}),A({[y.label]:e});break;case"tablet":A({[C.label]:e}),A({[T.label]:e}),A({[v.label]:e}),A({[_.label]:e});break;case"mobile":A({[P.label]:e}),A({[k.label]:e}),A({[S.label]:e}),A({[w.label]:e})}},E=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",l=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=a;switch(""===a&&""!==e&&(i=""===e.target.value?0:Number(e.target.value)),l||(x.value?U(i,t):O(t)),t){case"desktop":A({[h.label]:i});break;case"tablet":A({[C.label]:i});break;case"mobile":A({[P.label]:i})}},O=e=>{switch(e){case"desktop":A({[h.label]:""===h.value||void 0===h.value?0:h.value}),A({[f.label]:""===f.value||void 0===f.value?0:f.value}),A({[m.label]:""===m.value||void 0===m.value?0:m.value}),A({[y.label]:""===y.value||void 0===y.value?0:y.value});break;case"tablet":A({[C.label]:void 0===C.value||""===C.value?0:C.value}),A({[T.label]:void 0===T.value||""===T.value?0:T.value}),A({[v.label]:void 0===v.value||""===v.value?0:v.value}),A({[_.label]:void 0===_.value||""===_.value?0:_.value});break;case"mobile":A({[P.label]:""===P.value||void 0===P.value?0:P.value}),A({[k.label]:""===k.value||void 0===k.value?0:k.value}),A({[S.label]:""===S.value||void 0===S.value?0:S.value}),A({[w.label]:""===w.value||void 0===w.value?0:w.value})}},L=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",l=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=a;switch(""===a&&""!==e&&(i=""===e.target.value?0:Number(e.target.value)),l||(x.value?U(i,t):O(t)),t){case"desktop":A({[f.label]:i});break;case"tablet":A({[T.label]:i});break;case"mobile":A({[k.label]:i})}},H=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",l=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=a;switch(""===a&&""!==e&&(i=""===e.target.value?0:Number(e.target.value)),l||(x.value?U(i,t):O(c)),t){case"desktop":A({[m.label]:i});break;case"tablet":A({[v.label]:i});break;case"mobile":A({[S.label]:i})}},F=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",l=arguments.length>3&&void 0!==arguments[3]&&arguments[3],i=a;switch(""===a&&""!==e&&(i=""===e.target.value?0:Number(e.target.value)),l||(x.value&&!l?U(i,t):O(c)),t){case"desktop":A({[y.label]:i});break;case"tablet":A({[_.label]:i});break;case"mobile":A({[w.label]:i})}};let N=[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}];e.units&&(N=e.units);let I="";x&&(I=React.createElement("span",{className:"uagb-spacing-control__link uagb-spacing-control-connected dashicons dashicons-admin-links ",onClick:()=>{O(c.toLowerCase()),A({[x.label]:!1})}}),x.value||(I=React.createElement("span",{className:"uagb-spacing-control__link uagb-spacing-control-disconnected dashicons dashicons-editor-unlink",onClick:()=>{V(),A({[x.label]:!0})}})));const V=()=>{let e;const t=c.toLowerCase();switch(t){case"desktop":e=h.value;break;case"tablet":e=C.value;break;case"mobile":e=P.value}U(e,t)},W={};W.Desktop=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-spacing-control__inputs"},React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>E(e,"desktop"),value:void 0!==h.value?h.value:""}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>L(e,"desktop"),value:void 0!==f.value?f.value:""}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>H(e,"desktop"),value:void 0!==m.value?m.value:""}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>F(e,"desktop"),value:void 0!==y.value?y.value:""}),I)),W.Tablet=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-spacing-control__inputs"},React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>E(e,"tablet"),value:void 0!==C.value?C.value:"",placeholder:R("tablet",P.value,C.value,h.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>L(e,"tablet"),value:void 0!==T.value?T.value:"",placeholder:R("tablet",k.value,T.value,f.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>H(e,"tablet"),value:void 0!==v.value?v.value:"",placeholder:R("tablet",S.value,v.value,m.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>F(e,"tablet"),value:void 0!==_.value?_.value:"",placeholder:R("tablet",w.value,_.value,y.value)}),I)),W.Mobile=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-spacing-control__inputs"},React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>E(e,"mobile"),value:void 0!==P.value?P.value:"",placeholder:R("mobile",P.value,C.value,h.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>L(e,"mobile"),value:void 0!==k.value?k.value:"",placeholder:R("mobile",k.value,T.value,f.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>H(e,"mobile"),value:void 0!==S.value?S.value:"",placeholder:R("mobile",S.value,v.value,m.value)}),React.createElement("input",{className:"uagb-spacing-control__number",type:"number",min:M,onChange:e=>F(e,"mobile"),value:void 0!==w.value?w.value:"",placeholder:R("mobile",w.value,_.value,y.value)}),I));const q=z(e.label),Z=Object(j.applyFilters)(`spectra.${s}.${a}.${q}.before`,"",s),$=Object(j.applyFilters)(`spectra.${s}.${a}.${q}`,"",s);return React.createElement("div",{ref:i,className:"components-base-control"},Z,React.createElement("div",{className:"uagb-spacing-control"},React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:u,responsive:!0}),React.createElement("div",{className:"uagb-control__actions"},React.createElement(Ka,{onReset:e=>{switch(c.toLowerCase()){case"desktop":E("","desktop",e[h.label],!0),L("","desktop",e[f.label],!0),H("","desktop",e[m.label],!0),F("","desktop",e[y.label],!0),A({[null==p?void 0:p.label]:e[null==p?void 0:p.label]});break;case"tablet":E("","tablet",e[C.label],!0),L("","tablet",e[T.label],!0),H("","tablet",e[v.label],!0),F("","tablet",e[_.label],!0),A({[null==d?void 0:d.label]:e[null==d?void 0:d.label]});break;case"mobile":E("","mobile",e[P.label],!0),L("","mobile",e[k.label],!0),H("","mobile",e[S.label],!0),F("","mobile",e[w.label],!0),A({[null==b?void 0:b.label]:e[null==b?void 0:b.label]})}},attributeNames:[null==h?void 0:h.label,null==f?void 0:f.label,null==m?void 0:m.label,null==y?void 0:y.label,null==C?void 0:C.label,null==T?void 0:T.label,null==v?void 0:v.label,null==_?void 0:_.label,null==P?void 0:P.label,null==k?void 0:k.label,null==S?void 0:S.label,null==w?void 0:w.label,null==p?void 0:p.label,null==d?void 0:d.label,null==b?void 0:b.label]}),React.createElement(Le.ButtonGroup,{className:"uagb-control__units","aria-label":Object(r.__)("Select Units","ultimate-addons-for-gutenberg")},!g&&(e=>{const t=[];return e.map(e=>t.push(React.createElement(Le.Tooltip,{text:Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),e.name)},React.createElement(Le.Button,{key:e.unitValue,className:"uagb-range-control__units--"+e.name,isSmall:!0,isPrimary:"Desktop"===c&&p.value===e.unitValue||"Mobile"===c&&b.value===e.unitValue||"Tablet"===c&&d.value===e.unitValue,isSecondary:p.value!==e.unitValue||b.value!==e.unitValue||d.value!==e.unitValue,"aria-pressed":"Desktop"===c&&p.value===e.unitValue||"Mobile"===c&&b.value===e.unitValue||"Tablet"===c&&d.value===e.unitValue,"data-device-type":c,"aria-label":Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),e.name),onClick:()=>{return t=e,void A("Mobile"===c?{[b.label]:t.unitValue}:"Tablet"===c?{[d.label]:t.unitValue}:{[p.label]:t.unitValue});var t}},e.unitValue)))),t})(N)))),W[c]?W[c]:W.Desktop,React.createElement("div",{className:"uagb-spacing-control__input-labels"},React.createElement("span",{className:"uagb-spacing-control__number-label"},Object(r.__)("Top","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-spacing-control__number-label"},Object(r.__)("Right","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-spacing-control__number-label"},Object(r.__)("Bottom","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-spacing-control__number-label"},Object(r.__)("Left","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-spacing-control__number-label uagb-spacing-control__link-label"}))),React.createElement(De,{text:G})),$)},xl=a(84),Al=0,Gl={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ml={};Ml.locals=xl.a.locals||{},Ml.use=function(){return Al++||(wl=ke()(xl.a,Gl)),Ml},Ml.unuse=function(){Al>0&&!--Al&&(wl(),wl=null)};var Rl,Bl=Ml,Ul=a(85),El=0,Ol={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ll={};Ll.locals=Ul.a.locals||{},Ll.use=function(){return El++||(Rl=ke()(Ul.a,Ol)),Ll},Ll.unuse=function(){El>0&&!--El&&(Rl(),Rl=null)};var Hl,jl=Ll,Fl=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null),{getSelectedBlock:o}=Object(n.select)("core/block-editor");Object(B.useLayoutEffect)(()=>(jl.use(),()=>{jl.unuse()}),[]);const{setAttributes:s,gradientType:c,backgroundGradient:u,backgroundGradientColor2:p,backgroundGradientColor1:b,backgroundGradientType:d,backgroundGradientLocation1:g,backgroundGradientLocationTablet1:m,backgroundGradientLocationMobile1:y,backgroundGradientLocation2:f,backgroundGradientLocationTablet2:h,backgroundGradientLocationMobile2:v,backgroundGradientAngle:_,backgroundGradientAngleTablet:T,backgroundGradientAngleMobile:C}=e,S=null===(t=o())||void 0===t?void 0:t.name.split("/").pop(),w=Object(n.select)("core/block-editor").getSelectedBlock();Object(B.useEffect)(()=>{l(D(i))},[S]);const k=Object(j.applyFilters)(`spectra.${S}.${a}.gradient-settings.before`,"",S),P=Object(j.applyFilters)(`spectra.${S}.${a}.gradient-settings`,"",S),x=void 0!==c?c.value:"basic";return React.createElement(React.Fragment,null,void 0!==c&&React.createElement(Na,{setAttributes:s,label:"Select Gradient",data:{value:c.value,label:c.label},options:[{value:"basic",label:Object(r.__)("Basic","ultimate-addons-for-gutenberg")},{value:"advanced",label:Object(r.__)("Advanced","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement("div",{ref:i},k,"basic"===x&&React.createElement(Le.GradientPicker,{__nextHasNoMargin:!0,value:(null==u?void 0:u.value)||null,onChange:e=>{s({[u.label]:e})},className:"uagb-gradient-picker",gradients:[]}),P),"advanced"===x&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color 1","ultimate-addons-for-gutenberg"),colorValue:b.value?b.value:"",data:{value:b.value,label:b.label},setAttributes:s}),React.createElement(hl,{label:Object(r.__)("Color 2","ultimate-addons-for-gutenberg"),colorValue:p.value?p.value:"",data:{value:p.value,label:p.label},setAttributes:s}),React.createElement(Na,{setAttributes:s,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:d.value,label:d.label},className:"uagb-multi-button-alignment-control",options:[{value:"linear",label:Object(r.__)("Linear","ultimate-addons-for-gutenberg")},{value:"radial",label:Object(r.__)("Radial","ultimate-addons-for-gutenberg")}]}),"uagb/columns"===(null==w?void 0:w.name)||"uagb/column"===(null==w?void 0:w.name)||"uagb/section"===(null==w?void 0:w.name)?React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Location 1","ultimate-addons-for-gutenberg"),setAttributes:s,value:g.value,data:{value:g.value,label:g.label},min:-100,max:100,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Location 2","ultimate-addons-for-gutenberg"),setAttributes:s,value:f.value,data:{value:f.value,label:f.label},min:-100,max:100,displayUnit:!1}),"linear"===d.value&&React.createElement(Qa,{label:Object(r.__)("Angle","ultimate-addons-for-gutenberg"),setAttributes:s,value:_.value,data:{value:_.value,label:_.label},min:0,max:360,displayUnit:!1})):React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Location 1","ultimate-addons-for-gutenberg"),data:{desktop:{value:g.value,label:g.label},tablet:{value:m.value,label:m.label},mobile:{value:y.value,label:y.label}},min:-100,max:100,setAttributes:s,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Location 2","ultimate-addons-for-gutenberg"),data:{desktop:{value:f.value,label:f.label},tablet:{value:h.value,label:h.label},mobile:{value:v.value,label:v.label}},min:-100,max:100,setAttributes:s,displayUnit:!1}),"linear"===d.value&&React.createElement(tl,{label:Object(r.__)("Angle","ultimate-addons-for-gutenberg"),data:{desktop:{value:_.value,label:_.label},tablet:{value:T.value,label:T.label},mobile:{value:C.value,label:C.label}},min:0,max:360,setAttributes:s,displayUnit:!1}))))},zl=a(86),Dl=0,Nl={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Il={};Il.locals=zl.a.locals||{},Il.use=function(){return Dl++||(Hl=ke()(zl.a,Nl)),Il},Il.unuse=function(){Dl>0&&!--Dl&&(Hl(),Hl=null)};var Vl=Il;const Wl=e=>{const{isOpen:t,setOpen:a,onConfirm:l,title:i,description:o,confirmLabel:n=Object(r.__)("Confirm","ultimate-addons-for-gutenberg"),cancelLabel:s=Object(r.__)("Cancel","ultimate-addons-for-gutenberg"),processingLabel:c=Object(r.__)("Processing…","ultimate-addons-for-gutenberg"),icon:u="",executable:p=!1}=e;Object(B.useLayoutEffect)(()=>(Vl.use(),()=>{Vl.unuse()}),[]);const[b,d]=Object(B.useState)(!1),g=()=>{a(!1),d(!1)};return React.createElement(React.Fragment,null,t&&React.createElement(Le.Modal,{onRequestClose:g,className:"uag-confirm-popup-wrapper",overlayClassName:"uag-confirm-popup-overlay"},React.createElement("div",{className:"uag-confirm-popup-icon"},""!==u?Ce(u):React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 24 24",strokeWidth:"1.5",stroke:"currentColor",className:"w-6 h-6"},React.createElement("path",{strokeLinecap:"round",strokeLinejoin:"round",d:"M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z"}))),React.createElement("div",{className:"uag-confirm-popup-content"},React.createElement("div",{className:"uag-confirm-popup-text"},React.createElement("span",{className:"uag-confirm-popup-title"},i),React.createElement("span",{className:"uag-confirm-popup-description"},o)),React.createElement("div",{className:"uag-confirm-popup-controls"},!1===b?React.createElement(React.Fragment,null,React.createElement(Le.Button,{className:"uag-confirm-popup-buttons uag-popup-confirmation-button",onClick:()=>{d(!0),p?l(p):l()}},n),React.createElement(Le.Button,{className:"uag-confirm-popup-buttons uag-popup-cancellation-button",onClick:g},s)):React.createElement(Le.Button,{isBusy:!0,className:"uag-confirm-popup-buttons uag-popup-confirmation-button"},c)))))};Wl.defaultProps={};var ql,Zl=Wl,$l=async e=>{let{url:t,action:a,data:l}=e;if(!((i=l)&&Object.keys(i).length>0&&Object.getPrototypeOf(i)===Object.prototype))return Promise.reject(new Error(Object(r.__)("data object is empty","ultimate-addons-for-gutenberg")));var i;const o=new window.FormData;o.append("action",a);for(const e in l){const t=l[e];o.append(e,t)}return await w()({url:t,method:"POST",body:o})},Yl=e=>{const[t,a]=Object(B.useState)(null),l=Object(B.useRef)(null),i=Object(n.useSelect)(e=>e("core/block-editor").getSelectedBlock(),[]),o=te(),s=null==i?void 0:i.name.split("/").pop();Object(B.useEffect)(()=>{a(D(l))},[s]);const[c,u]=Object(B.useState)(!1),{onSelectImage:p,backgroundImage:b,onRemoveImage:d,slug:g="image",label:m=Object(r.__)("Image","ultimate-addons-for-gutenberg"),disableLabel:y=!1,disableRemove:f=!1,allow:h=["image"],disableDynamicContent:v=!1,help:_=!1}=e;let T,C,S;switch(g){case"video":C=Object(r.__)("Select Video","ultimate-addons-for-gutenberg"),S=Object(r.__)("Change Video","ultimate-addons-for-gutenberg"),T=se.video_placeholder;break;case"lottie":C=Object(r.__)("Select Lottie Animation","ultimate-addons-for-gutenberg"),S=Object(r.__)("Change Lottie Animation","ultimate-addons-for-gutenberg"),T=se.lottie;break;case"svg":C=Object(r.__)("Upload SVG","ultimate-addons-for-gutenberg"),S=Object(r.__)("Change SVG","ultimate-addons-for-gutenberg");break;default:C=Object(r.__)("Select Image","ultimate-addons-for-gutenberg"),S=Object(r.__)("Change Image","ultimate-addons-for-gutenberg")}const w=v?null:Object(j.applyFilters)("uagb.registerImageExtender","",null==i?void 0:i.name,p),k=v?null:Object(j.applyFilters)("uagb.registerImageLinkExtender","",null==i?void 0:i.name,"bgImageLink","url"),P=e=>{const t={svg_nonce:uagb_blocks_info.uagb_svg_confirmation_nonce,confirmation:"yes"};$l({url:uagb_blocks_info.ajax_url,action:"uagb_svg_confirmation",data:t}).then(t=>{t.success&&(o.setItem("uagSvgConfirmation",JSON.stringify("yes")),e())})},x=e=>{const t=te("uagSvgConfirmation");"svg"===g&&"yes"!==t?u(!0):e()},A=e=>React.createElement("div",{className:"spectra-media-control__button spectra-media-control__button--"+e},se[e]),G=z(null==e?void 0:e.label),M=Object(j.applyFilters)(`spectra.${s}.${t}.${G}.before`,"",s),R=Object(j.applyFilters)(`spectra.${s}.${t}.${G}`,"",s);return React.createElement("div",{ref:l,className:"components-base-control"},M,React.createElement(Le.BaseControl,{className:"spectra-media-control",id:"uagb-option-selector-"+g,label:m,hideLabelFromVision:y},(()=>{var e,t;if(v)return!0;const a=null==i||null===(e=i.attributes)||void 0===e?void 0:e.dynamicContent;return!a||!0!==(null==a||null===(t=a.bgImage)||void 0===t?void 0:t.enable)})()?React.createElement(React.Fragment,null,React.createElement("div",{className:"spectra-media-control__wrapper",style:{backgroundImage:!T&&(null==b?void 0:b.url)&&!(null!=b&&b.svg)&&`url("${(e=>{let t=e;switch(/(?:\.([^.]+))?$/.exec(String(t))[1]){case"json":t="";break;case"avi":case"mpg":case"mp4":case"m4v":case"mov":case"ogv":case"vtt":case"wmv":case"3gp":case"3g2":t=""}return t})(null==b?void 0:b.url)}")`}},T&&(null==b?void 0:b.url)&&React.createElement("div",{className:"spectra-media-control__icon spectra-media-control__icon--stroke"},T),(null==b?void 0:b.svg)&&React.createElement("div",{className:"spectra-media-control__icon spectra-media-control__icon--stroke",dangerouslySetInnerHTML:{__html:b.svg}}),React.createElement(ge.MediaUpload,{title:C,onSelect:p,allowedTypes:h,value:null==b?void 0:b.id,render:e=>{let{open:t}=e;return(e=>{const t=null!=b&&b.url?"replace":"add";return React.createElement(React.Fragment,null,"add"===t&&React.createElement("button",{className:"spectra-media-control__clickable spectra-media-control__clickable--"+t,onClick:()=>x(e)},A(t)),React.createElement("div",{className:"spectra-media-control__footer"},React.createElement("button",{className:"uag-control-label",onClick:()=>x(e)},S),w),"svg"===g&&React.createElement(Zl,{isOpen:c,setOpen:u,onConfirm:P,title:Object(r.__)("Upload SVG?","ultimate-addons-for-gutenberg"),description:Object(r.__)("Upload SVG can be potentially risky. Are you sure?","ultimate-addons-for-gutenberg"),confirmLabel:Object(r.__)("Upload Anyway","ultimate-addons-for-gutenberg"),cancelLabel:Object(r.__)("Cancel","ultimate-addons-for-gutenberg"),executable:e}))})(t)}}),!f&&(null==b?void 0:b.url)&&React.createElement("button",{className:"spectra-media-control__clickable spectra-media-control__clickable--close",onClick:d},A("close"))),React.createElement(De,{text:_})):w),k,R)},Kl=a(87),Jl=0,Xl={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ql={};Ql.locals=Kl.a.locals||{},Ql.use=function(){return Jl++||(ql=ke()(Kl.a,Xl)),Ql},Ql.unuse=function(){Jl>0&&!--Jl&&(ql(),ql=null)};var ei,ti=Ql,ai=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(ti.use(),()=>{ti.unuse()}),[]);const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),r=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[r]);const{label:s,data:c,setAttributes:u,options:p,help:b=!1}=e,d=le(),g={};g.Desktop=React.createElement(Le.SelectControl,{value:c.desktop.value,onChange:e=>u({[c.desktop.label]:e}),options:p.desktop}),g.Tablet=React.createElement(Le.SelectControl,{value:c.tablet.value,onChange:e=>u({[c.tablet.label]:e}),options:p.tablet||p.desktop}),g.Mobile=React.createElement(Le.SelectControl,{value:c.mobile.value,onChange:e=>u({[c.mobile.label]:e}),options:p.mobile||p.desktop});const m=z(e.label),y=Object(j.applyFilters)(`spectra.${r}.${a}.${m}.before`,"",r),f=Object(j.applyFilters)(`spectra.${r}.${a}.${m}`,"",r);return React.createElement("div",{ref:i,className:"uagb-responsive-select-control components-base-control"},y,React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:s,responsive:!0})),g[d]?g[d]:g.Desktop),React.createElement(De,{text:b}),f)},li=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null),{backgroundImage:o,setAttributes:s,help:c=!1}=e,{getSelectedBlock:u}=Object(n.select)("core/block-editor"),p=null===(t=u())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[p]);const b=le(),d=b.toLowerCase(),g=e=>{e&&e.url?e.type&&"image"===e.type?s({[o[d].label]:e}):s({[o[d].label]:null}):s({[o[d].label]:null})},m=()=>{s({[o[d].label]:""})},y={};y.Desktop=React.createElement(Yl,{onSelectImage:g,backgroundImage:o.desktop.value,onRemoveImage:m,disableLabel:!0}),y.Tablet=React.createElement(Yl,{onSelectImage:g,backgroundImage:o.tablet.value,onRemoveImage:m,disableLabel:!0}),y.Mobile=React.createElement(Yl,{onSelectImage:g,backgroundImage:o.mobile.value,onRemoveImage:m,disableLabel:!0});const f=Object(j.applyFilters)(`spectra.${p}.${a}.image.before`,"",p),h=Object(j.applyFilters)(`spectra.${p}.${a}.image`,"",p);return React.createElement("div",{ref:i,className:"components-base-control"},f,React.createElement("div",{className:"uag-responsive-image-select uagb-responsive-select-control"},React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:Object(r.__)("Image","ultimate-addons-for-gutenberg"),responsive:!0})),y[b]?y[b]:y.Desktop),React.createElement(De,{text:c})),h)},ii=a(88),oi=0,ni={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ri={};ri.locals=ii.a.locals||{},ri.use=function(){return oi++||(ei=ke()(ii.a,ni)),ri},ri.unuse=function(){oi>0&&!--oi&&(ei(),ei=null)};var si,ci=ri,ui=e=>{var t,a,l,i,o,s,c,u;const[p,b]=Object(B.useState)(null),d=Object(B.useRef)(null),{backgroundPosition:g,backgroundImage:m,setAttributes:y}=e,{getSelectedBlock:f}=Object(n.select)("core/block-editor"),h=null===(t=f())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{b(D(d))},[h]);const v=le(),_=v.toLowerCase();Object(B.useLayoutEffect)(()=>(ci.use(),()=>{ci.unuse()}),[]);const T={},C=null===(a=m[_])||void 0===a||null===(l=a.value)||void 0===l?void 0:l.url,S=null===(i=g[_])||void 0===i?void 0:i.value;T.Desktop=React.createElement(Le.FocalPointPicker,{url:C,value:S,onChange:e=>{var t;y({[null===(t=g[_])||void 0===t?void 0:t.label]:e})}}),T.Tablet=React.createElement(Le.FocalPointPicker,{url:C||(null===(o=m.desktop)||void 0===o||null===(s=o.value)||void 0===s?void 0:s.url),value:S,onChange:e=>{var t;y({[null===(t=g[_])||void 0===t?void 0:t.label]:e})}}),T.Mobile=React.createElement(Le.FocalPointPicker,{url:C||(null===(c=m.desktop)||void 0===c||null===(u=c.value)||void 0===u?void 0:u.url),value:S,onChange:e=>{var t;y({[null===(t=g[_])||void 0===t?void 0:t.label]:e})}});const w=Object(j.applyFilters)(`spectra.${h}.${p}.position.before`,"",h),k=Object(j.applyFilters)(`spectra.${h}.${p}.position`,"",h);return React.createElement("div",{ref:d,className:"components-base-control"},w,React.createElement("div",{className:"uagb-responsive-select-control"},React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),responsive:!0})),T[v]?T[v]:T.Desktop),React.createElement(De,{text:e.help})),k)},pi=a(89),bi=0,di={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},gi={};gi.locals=pi.a.locals||{},gi.use=function(){return bi++||(si=ke()(pi.a,di)),gi},gi.unuse=function(){bi>0&&!--bi&&(si(),si=null)};var mi=gi;const yi={disabledTopSpace:G.a.bool};function fi(e){var t;let{disabledTopSpace:a}=e;const[l,i]=Object(B.useState)(null),o=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(mi.use(),()=>{mi.unuse()}),[]);const{getSelectedBlock:r}=Object(n.select)("core/block-editor"),s=null===(t=r())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{i(D(o))},[s]);const c=Object(j.applyFilters)(`spectra.${s}.${l}.separator.before`,"",s),u=Object(j.applyFilters)(`spectra.${s}.${l}.separator`,"",s);return React.createElement("div",{ref:o},c,React.createElement("div",{className:"spectra-separator "+(a?"spectra-separator--removed-top-space":"")}),u)}fi.propTypes=yi,fi.defaultProps={disabledTopSpace:!1};var hi,vi=e=>{var t,a,l,i;const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),[s,c]=Object(B.useState)(null),u=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Bl.use(),()=>{Bl.unuse()}),[]);const p=le().toLowerCase(),{setAttributes:b,overlayType:d,overlayOpacity:g,backgroundSize:m,backgroundRepeat:y,backgroundAttachment:f,backgroundPosition:h,backgroundImage:v,backgroundColor:_,backgroundVideoType:T,backgroundType:C,backgroundVideo:S,backgroundVideoColor:w,onOpacityChange:k,backgroundCustomSize:P,backgroundCustomSizeType:x,imageResponsive:A,gradientOverlay:G,customPosition:M,centralizedPosition:R,xPositionDesktop:U,xPositionTablet:E,xPositionMobile:O,xPositionType:L,xPositionTypeTablet:H,xPositionTypeMobile:F,yPositionDesktop:z,yPositionTablet:N,yPositionMobile:I,yPositionType:V,yPositionTypeTablet:W,yPositionTypeMobile:q,backgroundVideoOpacity:Z,help:$=!1,backgroundOverlaySize:Y,backgroundOverlayRepeat:K,backgroundOverlayAttachment:J,backgroundOverlayPosition:X,backgroundOverlayImage:Q,backgroundImageColor:ee,backgroundOverlayCustomSize:te,backgroundOverlayCustomSizeType:ae,customOverlayPosition:ie,xPositionOverlayDesktop:oe,xPositionOverlayTablet:ne,xPositionOverlayMobile:re,xPositionOverlayType:ce,xPositionOverlayTypeTablet:ue,xPositionOverlayTypeMobile:pe,yPositionOverlayDesktop:be,yPositionOverlayTablet:de,yPositionOverlayMobile:ge,yPositionOverlayType:me,yPositionOverlayTypeTablet:ye,yPositionOverlayTypeMobile:fe,overlayBlendMode:he,imageOverlayResponsive:ve,label:_e=Object(r.__)("Type","ultimate-addons-for-gutenberg"),backgroundVideoFallbackImage:Te}=e,Ce=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{c(D(u))},[Ce]);const Se=Object(n.select)("core/block-editor").getSelectedBlock(),we="uagb/container"===(null==Se?void 0:Se.name);let ke=[];if(we)switch(C.value){case"color":case"gradient":ke.push({value:"image",icon:se.bg_image,tooltip:Object(r.__)("Image","ultimate-addons-for-gutenberg")});break;case"image":ke.push({value:"color",icon:se.bg_color,tooltip:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",icon:se.bg_gradient,tooltip:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")},{value:"image",icon:se.bg_image,tooltip:Object(r.__)("Image","ultimate-addons-for-gutenberg")});break;case"video":ke.push({value:"color",icon:se.bg_color,tooltip:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",icon:se.bg_gradient,tooltip:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")})}else ke=[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Classic","ultimate-addons-for-gutenberg")}],G.value&&ke.push({value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")});const Pe=[{value:"color",icon:se.bg_color,tooltip:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",icon:se.bg_gradient,tooltip:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")},{value:"image",icon:se.bg_image,tooltip:Object(r.__)("Image","ultimate-addons-for-gutenberg")}];let xe=[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}];P||(xe=[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")}]),T.value&&Pe.push({value:"video",icon:se.bg_video,tooltip:Object(r.__)("Video","ultimate-addons-for-gutenberg")});const Ae=!(!A||!(null!==(a=v.desktop)&&void 0!==a&&a.value||null!==(l=v.tablet)&&void 0!==l&&l.value||null!==(i=v.mobile)&&void 0!==i&&i.value)),Ge=()=>we?React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-opacity"},React.createElement(Qa,{label:Object(r.__)("Overlay Opacity","ultimate-addons-for-gutenberg"),setAttributes:b,value:g.value,data:{value:g.value,label:g.label},min:0,max:1,step:.05,displayUnit:!1}))):null,Me=()=>{var e,t,a;if(!we)return null;const l=!(!ve||!(null!==(e=Q.desktop)&&void 0!==e&&e.value||null!==(t=Q.tablet)&&void 0!==t&&t.value||null!==(a=Q.mobile)&&void 0!==a&&a.value));return React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image"},!ve&&React.createElement(Yl,{onSelectImage:e=>{e&&e.url?e.type&&"image"===e.type&&b({[Q.label]:e}):b({[Q.label]:null})},backgroundOverlayImage:Q.value,onRemoveImage:()=>{b({[Q.label]:null})},disableLabel:!0}),!ve&&Q.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},React.createElement(Le.SelectControl,{label:Object(r.__)("Image Position","ultimate-addons-for-gutenberg"),value:X.value,onChange:e=>b({[X.label]:e}),options:[{value:"left top",label:Object(r.__)("Top Left","ultimate-addons-for-gutenberg")},{value:"center top",label:Object(r.__)("Top Center","ultimate-addons-for-gutenberg")},{value:"right top",label:Object(r.__)("Top Right","ultimate-addons-for-gutenberg")},{value:"center top",label:Object(r.__)("Center Top","ultimate-addons-for-gutenberg")},{value:"center center",label:Object(r.__)("Center Center","ultimate-addons-for-gutenberg")},{value:"center bottom",label:Object(r.__)("Center Bottom","ultimate-addons-for-gutenberg")},{value:"left bottom",label:Object(r.__)("Bottom Left","ultimate-addons-for-gutenberg")},{value:"center bottom",label:Object(r.__)("Bottom Center","ultimate-addons-for-gutenberg")},{value:"right bottom",label:Object(r.__)("Bottom Right","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-attachment"},React.createElement(Le.SelectControl,{label:Object(r.__)("Attachment","ultimate-addons-for-gutenberg"),value:J.value,onChange:e=>b({[J.label]:e}),options:[{value:"fixed",label:Object(r.__)("Fixed","ultimate-addons-for-gutenberg")},{value:"scroll",label:Object(r.__)("Scroll","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-blend-mode"},React.createElement(Le.SelectControl,{label:Object(r.__)("Blend Mode","ultimate-addons-for-gutenberg"),value:he.value,onChange:e=>b({[he.label]:e}),options:[{value:"normal",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"multiply",label:Object(r.__)("Multiply","ultimate-addons-for-gutenberg")},{value:"screen",label:Object(r.__)("Screen","ultimate-addons-for-gutenberg")},{value:"overlay",label:Object(r.__)("Overlay","ultimate-addons-for-gutenberg")},{value:"darken",label:Object(r.__)("Darken","ultimate-addons-for-gutenberg")},{value:"lighten",label:Object(r.__)("Lighten","ultimate-addons-for-gutenberg")},{value:"color-dodge",label:Object(r.__)("Color Dodge","ultimate-addons-for-gutenberg")},{value:"saturation",label:Object(r.__)("Saturation","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-repeat"},React.createElement(Le.SelectControl,{label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg"),value:K.value,onChange:e=>b({[K.label]:e}),options:[{value:"no-repeat",label:Object(r.__)("No Repeat","ultimate-addons-for-gutenberg")},{value:"repeat",label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg")},{value:"repeat-x",label:Object(r.__)("Repeat-x","ultimate-addons-for-gutenberg")},{value:"repeat-y",label:Object(r.__)("Repeat-y","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-size"},React.createElement(Le.SelectControl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),value:Y.value,onChange:e=>b({[Y.label]:e}),options:xe}),"custom"===Y.value&&te&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:te.desktop.value,label:te.desktop.label},tablet:{value:te.tablet.value,label:te.tablet.label},mobile:{value:te.mobile.value,label:te.mobile.label}},min:0,limitMax:{px:1600,"%":100,em:574},unit:{value:ae.value,label:ae.label},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:b}))),ve&&Q&&React.createElement(li,{backgroundImage:Q,setAttributes:b}),ve&&Q&&l&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},React.createElement(Na,{setAttributes:b,label:Object(r.__)("Image Position","ultimate-addons-for-gutenberg"),data:{value:ie.value,label:ie.label},options:[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}]})),"custom"!==ie.value&&React.createElement("div",{className:"uag-background-image-position"},React.createElement(ui,{backgroundPosition:X,setAttributes:b,backgroundImage:Q})),"custom"===ie.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},React.createElement(tl,{label:Object(r.__)("X Position","ultimate-addons-for-gutenberg"),data:{desktop:{value:oe.value,label:"xPositionOverlayDesktop",unit:{value:ce.value,label:"xPositionOverlayType"}},tablet:{value:ne.value,label:"xPositionOverlayTablet",unit:{value:ue.value,label:"xPositionOverlayTypeTablet"}},mobile:{value:re.value,label:"xPositionOverlayMobile",unit:{value:pe.value,label:"xPositionOverlayTypeMobile"}}},limitMin:{px:-800,"%":-100,em:-100,vw:-100},limitMax:{px:800,"%":100,em:100,vw:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:b})),React.createElement("div",{className:"uag-background-image-position"},React.createElement(tl,{label:Object(r.__)("Y Position","ultimate-addons-for-gutenberg"),data:{desktop:{value:be.value,label:"yPositionOverlayDesktop",unit:{value:me.value,label:"yPositionOverlayType"}},tablet:{value:de.value,label:"yPositionOverlayTablet",unit:{value:ye.value,label:"yPositionOverlayTypeTablet"}},mobile:{value:ge.value,label:"yPositionOverlayMobile",unit:{value:fe.value,label:"yPositionOverlayTypeMobile"}}},limitMin:{px:-800,"%":-100,em:-100,vh:-100},limitMax:{px:800,"%":100,em:100,vh:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("VH","ultimate-addons-for-gutenberg"),unitValue:"vh"}],setAttributes:b}))),React.createElement("div",{className:"uag-background-image-attachment"},React.createElement(ai,{label:Object(r.__)("Attachment","ultimate-addons-for-gutenberg"),data:J,options:{desktop:[{value:"fixed",label:Object(r.__)("Fixed","ultimate-addons-for-gutenberg")},{value:"scroll",label:Object(r.__)("Scroll","ultimate-addons-for-gutenberg")}]},setAttributes:b})),React.createElement("div",{className:"uag-background-blend-mode"},React.createElement(ai,{label:Object(r.__)("Blend Mode","ultimate-addons-for-gutenberg"),data:he,options:{desktop:[{value:"normal",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"multiply",label:Object(r.__)("Multiply","ultimate-addons-for-gutenberg")},{value:"screen",label:Object(r.__)("Screen","ultimate-addons-for-gutenberg")},{value:"overlay",label:Object(r.__)("Overlay","ultimate-addons-for-gutenberg")},{value:"darken",label:Object(r.__)("Darken","ultimate-addons-for-gutenberg")},{value:"lighten",label:Object(r.__)("Lighten","ultimate-addons-for-gutenberg")},{value:"color-dodge",label:Object(r.__)("Color Dodge","ultimate-addons-for-gutenberg")},{value:"saturation",label:Object(r.__)("Saturation","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]},setAttributes:b})),React.createElement("div",{className:"uag-background-image-repeat"},React.createElement(ai,{label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg"),data:K,options:{desktop:[{value:"no-repeat",label:Object(r.__)("No Repeat","ultimate-addons-for-gutenberg")},{value:"repeat",label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg")},{value:"repeat-x",label:Object(r.__)("Repeat-x","ultimate-addons-for-gutenberg")},{value:"repeat-y",label:Object(r.__)("Repeat-y","ultimate-addons-for-gutenberg")}]},setAttributes:b})),React.createElement("div",{className:"uag-background-image-size"},React.createElement(ai,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:Y,options:{desktop:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}]},setAttributes:b}),"custom"===Y[p].value&&te&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:te,min:0,limitMax:{px:1600,"%":100,em:574},unit:{value:ae.value,label:ae.label},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:b}))),Ge()))},Re=React.createElement(React.Fragment,null,React.createElement(fi,null),React.createElement("div",{className:"uag-background-image-overlay-type"},React.createElement(Na,{setAttributes:b,label:Object(r.__)("Overlay Type","ultimate-addons-for-gutenberg"),data:{value:d.value,label:d.label},options:ke,showIcons:!!we,colorVariant:"secondary",layoutVariant:"inline"}))),Be=React.createElement(React.Fragment,null,("color"===C.value&&_.value||"gradient"===C.value&&G.value)&&React.createElement(React.Fragment,null,Re,"image"===d.value&&Me()),"image"===C.value&&(A&&Ae||!A&&(null==v?void 0:v.value))&&React.createElement(React.Fragment,null,Re,"color"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-color"},React.createElement(hl,{label:Object(r.__)("Image Overlay Color","ultimate-addons-for-gutenberg"),colorValue:ee.value,data:{value:ee.value,label:ee.label},setAttributes:b})),Ge()),"gradient"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-gradient"},React.createElement(Fl,{backgroundGradient:e.backgroundGradient,setAttributes:b,gradientType:e.gradientType,backgroundGradientColor2:e.backgroundGradientColor2,backgroundGradientColor1:e.backgroundGradientColor1,backgroundGradientType:e.backgroundGradientType,backgroundGradientLocation1:e.backgroundGradientLocation1,backgroundGradientLocationTablet1:e.backgroundGradientLocationTablet1,backgroundGradientLocationMobile1:e.backgroundGradientLocationMobile1,backgroundGradientLocation2:e.backgroundGradientLocation2,backgroundGradientLocationTablet2:e.backgroundGradientLocationTablet2,backgroundGradientLocationMobile2:e.backgroundGradientLocationMobile2,backgroundGradientAngle:e.backgroundGradientAngle,backgroundGradientAngleTablet:e.backgroundGradientAngleTablet,backgroundGradientAngleMobile:e.backgroundGradientAngleMobile})),Ge()),"image"===d.value&&Me()),"video"===C.value&&"video"===C.value&&S.value&&T.value&&React.createElement("div",{className:"uag-background-video-overlay"},d&&S&&S.value&&React.createElement(React.Fragment,null,Re,"color"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-color"},React.createElement(hl,{label:Object(r.__)("Image Overlay Color","ultimate-addons-for-gutenberg"),colorValue:w.value,data:{value:w.value,label:w.label},setAttributes:b,onOpacityChange:k,backgroundVideoOpacity:{value:Z.value,label:Z.label}})),Ge()),G.value&&"gradient"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-gradient"},React.createElement(Fl,{backgroundGradient:e.backgroundGradient,setAttributes:b,gradientType:e.gradientType,backgroundGradientColor2:e.backgroundGradientColor2,backgroundGradientColor1:e.backgroundGradientColor1,backgroundGradientType:e.backgroundGradientType,backgroundGradientLocation1:e.backgroundGradientLocation1,backgroundGradientLocationTablet1:e.backgroundGradientLocationTablet1,backgroundGradientLocationMobile1:e.backgroundGradientLocationMobile1,backgroundGradientLocation2:e.backgroundGradientLocation2,backgroundGradientLocationTablet2:e.backgroundGradientLocationTablet2,backgroundGradientLocationMobile2:e.backgroundGradientLocationMobile2,backgroundGradientAngle:e.backgroundGradientAngle,backgroundGradientAngleTablet:e.backgroundGradientAngleTablet,backgroundGradientAngleMobile:e.backgroundGradientAngleMobile})),Ge())))),Ue=React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:b,label:_e,data:{value:C.value,label:C.label},options:Pe,showIcons:!0,colorVariant:"secondary",layoutVariant:"inline"}),"color"===C.value&&React.createElement("div",{className:"uag-background-color"},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:_.value?_.value:"",data:{value:_.value,label:_.label},setAttributes:b})),"image"===C.value&&React.createElement("div",{className:"uag-background-image"},!A&&React.createElement(Yl,{onSelectImage:e=>{e&&e.url?e.type&&"image"===e.type&&b({[v.label]:e}):b({[v.label]:null})},backgroundImage:v.value,onRemoveImage:()=>{b({[v.label]:null})},disableLabel:!0}),!A&&v.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},React.createElement(Le.SelectControl,{label:Object(r.__)("Image Position","ultimate-addons-for-gutenberg"),value:h.value,onChange:e=>b({[h.label]:e}),options:[{value:"left top",label:Object(r.__)("Top Left","ultimate-addons-for-gutenberg")},{value:"center top",label:Object(r.__)("Top Center","ultimate-addons-for-gutenberg")},{value:"right top",label:Object(r.__)("Top Right","ultimate-addons-for-gutenberg")},{value:"center top",label:Object(r.__)("Center Top","ultimate-addons-for-gutenberg")},{value:"center center",label:Object(r.__)("Center Center","ultimate-addons-for-gutenberg")},{value:"center bottom",label:Object(r.__)("Center Bottom","ultimate-addons-for-gutenberg")},{value:"left bottom",label:Object(r.__)("Bottom Left","ultimate-addons-for-gutenberg")},{value:"center bottom",label:Object(r.__)("Bottom Center","ultimate-addons-for-gutenberg")},{value:"right bottom",label:Object(r.__)("Bottom Right","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-attachment"},React.createElement(Le.SelectControl,{label:Object(r.__)("Attachment","ultimate-addons-for-gutenberg"),value:f.value,onChange:e=>b({[f.label]:e}),options:[{value:"fixed",label:Object(r.__)("Fixed","ultimate-addons-for-gutenberg")},{value:"scroll",label:Object(r.__)("Scroll","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-repeat"},React.createElement(Le.SelectControl,{label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg"),value:y.value,onChange:e=>b({[y.label]:e}),options:[{value:"no-repeat",label:Object(r.__)("No Repeat","ultimate-addons-for-gutenberg")},{value:"repeat",label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg")},{value:"repeat-x",label:Object(r.__)("Repeat-x","ultimate-addons-for-gutenberg")},{value:"repeat-y",label:Object(r.__)("Repeat-y","ultimate-addons-for-gutenberg")}]})),React.createElement("div",{className:"uag-background-image-size"},React.createElement(Le.SelectControl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),value:m.value,onChange:e=>b({[m.label]:e}),options:xe}),"custom"===m.value&&P&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:P.desktop.value,label:P.desktop.label},tablet:{value:P.tablet.value,label:P.tablet.label},mobile:{value:P.mobile.value,label:P.mobile.label}},min:0,limitMax:{px:1600,"%":100,em:574},unit:{value:x.value,label:x.label},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:b}))),A&&v&&React.createElement(li,{backgroundImage:v,setAttributes:b}),A&&v&&Ae&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},React.createElement(Na,{setAttributes:b,label:Object(r.__)("Image Position","ultimate-addons-for-gutenberg"),data:{value:M.value,label:M.label},options:[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}]})),"custom"!==M.value&&React.createElement("div",{className:"uag-background-image-position"},React.createElement(ui,{backgroundPosition:h,setAttributes:b,backgroundImage:v})),"custom"===M.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-position"},we&&React.createElement("div",{className:"uag-background-image-axis-position"},React.createElement(Le.ToggleControl,{label:Object(r.__)("Centralized Position","ultimate-addons-for-gutenberg"),checked:R.value,onChange:()=>b({[R.label]:!R.value})})),React.createElement(tl,{label:Object(r.__)("X Position","ultimate-addons-for-gutenberg"),data:{desktop:{value:U.value,label:"xPositionDesktop",unit:{value:L.value,label:"xPositionType"}},tablet:{value:E.value,label:"xPositionTablet",unit:{value:H.value,label:"xPositionTypeTablet"}},mobile:{value:O.value,label:"xPositionMobile",unit:{value:F.value,label:"xPositionTypeMobile"}}},limitMin:{px:-1e3,"%":-100,em:-100,vw:-100},limitMax:{px:1e3,"%":100,em:100,vw:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:b})),React.createElement("div",{className:"uag-background-image-position"},React.createElement(tl,{label:Object(r.__)("Y Position","ultimate-addons-for-gutenberg"),data:{desktop:{value:z.value,label:"yPositionDesktop",unit:{value:V.value,label:"yPositionType"}},tablet:{value:N.value,label:"yPositionTablet",unit:{value:W.value,label:"yPositionTypeTablet"}},mobile:{value:I.value,label:"yPositionMobile",unit:{value:q.value,label:"yPositionTypeMobile"}}},limitMin:{px:-800,"%":-100,em:-100,vh:-100},limitMax:{px:800,"%":100,em:100,vh:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("VH","ultimate-addons-for-gutenberg"),unitValue:"vh"}],setAttributes:b}))),React.createElement("div",{className:"uag-background-image-attachment"},React.createElement(ai,{label:Object(r.__)("Attachment","ultimate-addons-for-gutenberg"),data:f,options:{desktop:[{value:"fixed",label:Object(r.__)("Fixed","ultimate-addons-for-gutenberg")},{value:"scroll",label:Object(r.__)("Scroll","ultimate-addons-for-gutenberg")}]},setAttributes:b})),React.createElement("div",{className:"uag-background-image-repeat"},React.createElement(ai,{label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg"),data:y,options:{desktop:[{value:"no-repeat",label:Object(r.__)("No Repeat","ultimate-addons-for-gutenberg")},{value:"repeat",label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg")},{value:"repeat-x",label:Object(r.__)("Repeat-x","ultimate-addons-for-gutenberg")},{value:"repeat-y",label:Object(r.__)("Repeat-y","ultimate-addons-for-gutenberg")}]},setAttributes:b})),React.createElement("div",{className:"uag-background-image-size"},React.createElement(ai,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:m,options:{desktop:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}]},setAttributes:b}),"custom"===m[p].value&&P&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:P,min:0,limitMax:{px:1600,"%":100,em:574},unit:{value:x.value,label:x.label},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:b}))),!we&&d&&v&&(A&&Ae||!A&&(null==v?void 0:v.value))&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-type"},React.createElement(Na,{setAttributes:b,label:Object(r.__)("Overlay Type","ultimate-addons-for-gutenberg"),data:{value:d.value,label:d.label},className:"uagb-multi-button-alignment-control",options:ke,showIcons:!1})),"color"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-color"},React.createElement(hl,{label:Object(r.__)("Image Overlay Color","ultimate-addons-for-gutenberg"),colorValue:ee.value,data:{value:ee.value,label:ee.label},setAttributes:b})),Ge()),"gradient"===d.value&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uag-background-image-overlay-gradient"},React.createElement(Fl,{backgroundGradient:e.backgroundGradient,setAttributes:b,gradientType:e.gradientType,backgroundGradientColor2:e.backgroundGradientColor2,backgroundGradientColor1:e.backgroundGradientColor1,backgroundGradientType:e.backgroundGradientType,backgroundGradientLocation1:e.backgroundGradientLocation1,backgroundGradientLocationTablet1:e.backgroundGradientLocationTablet1,backgroundGradientLocationMobile1:e.backgroundGradientLocationMobile1,backgroundGradientLocation2:e.backgroundGradientLocation2,backgroundGradientLocationTablet2:e.backgroundGradientLocationTablet2,backgroundGradientLocationMobile2:e.backgroundGradientLocationMobile2,backgroundGradientAngle:e.backgroundGradientAngle,backgroundGradientAngleTablet:e.backgroundGradientAngleTablet,backgroundGradientAngleMobile:e.backgroundGradientAngleMobile})),Ge()))),G.value&&"gradient"===C.value&&React.createElement("div",{className:"uag-background-gradient"},React.createElement(Fl,{backgroundGradient:e.backgroundGradient,gradientType:e.gradientType,setAttributes:e.setAttributes,backgroundGradientColor2:e.backgroundGradientColor2,backgroundGradientColor1:e.backgroundGradientColor1,backgroundGradientType:e.backgroundGradientType,backgroundGradientLocation1:e.backgroundGradientLocation1,backgroundGradientLocationTablet1:e.backgroundGradientLocationTablet1,backgroundGradientLocationMobile1:e.backgroundGradientLocationMobile1,backgroundGradientLocation2:e.backgroundGradientLocation2,backgroundGradientLocationTablet2:e.backgroundGradientLocationTablet2,backgroundGradientLocationMobile2:e.backgroundGradientLocationMobile2,backgroundGradientAngle:e.backgroundGradientAngle,backgroundGradientAngleTablet:e.backgroundGradientAngleTablet,backgroundGradientAngleMobile:e.backgroundGradientAngleMobile})),"video"===C.value&&T.value&&React.createElement("div",{className:"uag-background-video"},React.createElement(Yl,{onSelectImage:e=>{e&&e.url?e.type&&"video"===e.type&&b({[S.label]:e}):b({[S.label]:null})},backgroundImage:S.value,onRemoveImage:()=>{b({[S.label]:null})},slug:"video",label:Object(r.__)("Video","ultimate-addons-for-gutenberg"),allow:["video"]})),(null==T?void 0:T.value)&&"video"===C.value&&React.createElement("div",{className:"uag-background-video-image-fallback"},React.createElement(Yl,{slug:"image",allow:["image"],onSelectImage:e=>{null!=e&&e.url?e.type&&"image"===e.type&&b({[Te.label]:e}):b({[Te.label]:null})},backgroundImage:Te.value,onRemoveImage:()=>{b({[Te.label]:null})},disableDynamicContent:!0,label:Object(r.__)("Fallback Image","ultimate-addons-for-gutenberg"),help:Object(r.__)("This cover image will replace the background video in case that the video could not be loaded.","ultimate-addons-for-gutenberg")})),we&&Be),Ee=Object(j.applyFilters)(`spectra.${Ce}.${s}.background.before`,"",Ce),Oe=Object(j.applyFilters)(`spectra.${Ce}.${s}.background`,"",Ce);return React.createElement("div",{ref:u,className:"components-base-control"},Ee,React.createElement("div",{className:"uag-bg-select-control"},Ue,React.createElement(De,{text:$})),Oe)},_i=a(90),Ti=0,Ci={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Si={};Si.locals=_i.a.locals||{},Si.use=function(){return Ti++||(hi=ke()(_i.a,Ci)),Si},Si.unuse=function(){Ti>0&&!--Ti&&(hi(),hi=null)};var wi=Si;const ki={label:G.a.string,layout:G.a.string,options:G.a.array,data:G.a.object,setAttributes:G.a.func,onChange:G.a.func,help:G.a.string};function Pi(e){var t;let{layout:a,label:l,options:i,data:o,setAttributes:r,onChange:s,help:c,children:u,panelId:p}=e;const[b,d]=Object(B.useState)(null),g=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(wi.use(),()=>{wi.unuse()}),[]);const{getSelectedBlock:m}=Object(n.select)("core/block-editor"),y=null===(t=m())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{d(D(g))},[y]);const f=p||z(l),h=Object(j.applyFilters)(`spectra.${y}.${b}.${f}.before`,"",y),v=Object(j.applyFilters)(`spectra.${y}.${b}.${f}`,"",y),_=Object(j.applyFilters)(`spectra.${y}.${b}.${f}.options`,i,y),T=Object(j.applyFilters)(`spectra.${y}.${b}.${f}.children`,u,y);return React.createElement("div",{ref:g,className:"uagb-select-control uagb-select-control--layout-"+a},h,u?React.createElement(Le.SelectControl,{label:l,value:o.value,onChange:e=>s?s(e):r({[o.label]:e}),help:c},T):React.createElement(Le.SelectControl,{label:l,value:o.value,onChange:e=>s?s(e):r({[o.label]:e}),options:_,help:c}),v)}Pi.propTypes=ki,Pi.defaultProps={layout:"inline",onChange:null};var xi,Ai=a(91),Gi=0,Mi={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ri={};Ri.locals=Ai.a.locals||{},Ri.use=function(){return Gi++||(xi=ke()(Ai.a,Mi)),Ri},Ri.unuse=function(){Gi>0&&!--Gi&&(xi(),xi=null)};var Bi=Ri,Ui=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Bi.use(),()=>{Bi.unuse()}),[]);const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),r=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[r]);const s=Object(B.useRef)(null),c=3===e.tabs.length?"uag-control-tabs-three-tabs ":"",u=e.tabs.map((e,t)=>({...e,className:`uagb-tab-${t+1} ${null==e?void 0:e.name}`})),p=Object(j.applyFilters)(`spectra.${r}.${a}.tabs.before`,"",r),b=Object(j.applyFilters)(`spectra.${r}.${a}.tabs`,"",r);return React.createElement("div",{ref:i},p,React.createElement(Le.TabPanel,{className:"uag-control-tabs "+c,activeClass:"active-tab",tabs:u,ref:s,onSelect:e=>{var t,a;const l=null===(t=document.getElementsByClassName("uag-control-tabs")[0])||void 0===t?void 0:t.querySelector("."+e);let i=!1;l&&null!=l&&l.classList&&(null==l||l.classList.forEach(e=>{e.includes("uagb-tab")&&(i="."+e)}));const n=null===(a=o())||void 0===a?void 0:a.name,r=te("uagSettingState"),s={...r,[n]:{...null==r?void 0:r[n],selectedInnerTab:i}},c=te();c&&c.setItem("uagSettingState",JSON.stringify(s))}},t=>React.createElement("div",{className:"uag-control-tabs-output"},e[t.name])),!(null!=e&&e.disableBottomSeparator)&&React.createElement(fi,null),React.createElement(De,{text:e.help}),b)};const Ei={prefix:G.a.string,borderStyleLabel:G.a.string,borderWidthLabel:G.a.string,borderRadiusLabel:G.a.string,borderColorLabel:G.a.string},Oi={borderStyleLabel:Object(r.__)("Style","ultimate-addons-for-gutenberg"),borderWidthLabel:Object(r.__)("Width","ultimate-addons-for-gutenberg"),borderRadiusLabel:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),borderColorLabel:Object(r.__)("Color","ultimate-addons-for-gutenberg"),borderHoverColorLabel:Object(r.__)("Color","ultimate-addons-for-gutenberg")},Li=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null),{attributes:o,setAttributes:s,disabledBorderTitle:c,disableBottomSeparator:u,deviceType:p,prefix:b,borderStyleLabel:d,borderWidthLabel:g,borderRadiusLabel:m,borderColorLabel:y,borderHoverColorLabel:f,showWidth:h,label:v=Object(r.__)("Border","ultimate-addons-for-gutenberg"),normalTabLabel:_=Object(r.__)("Normal","ultimate-addons-for-gutenberg"),hoverTabLabel:T=Object(r.__)("Hover","ultimate-addons-for-gutenberg"),borderRadiusHelp:C,help:S=!1}=e,{getSelectedBlock:w}=Object(n.select)("core/block-editor"),k=null===(t=w())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[k]);const P=[{name:"normal",title:_}];P.push({name:"hover",title:T});const x=o[b+"BorderStyle"],A=React.createElement(hl,{label:y,colorValue:o[b+"BorderColor"]?o[b+"BorderColor"]:"",data:{value:o[b+"BorderColor"],label:b+"BorderColor"},setAttributes:s}),G=React.createElement(hl,{label:f,colorValue:o[b+"BorderHColor"]?o[b+"BorderHColor"]:"",data:{value:o[b+"BorderHColor"],label:b+"BorderHColor"},setAttributes:s}),M=React.createElement(React.Fragment,null,!c&&React.createElement("p",{className:"spectra-panel__body-sub-heading"},v),React.createElement(Pi,{label:d,data:{value:x,label:b+"BorderStyle"},setAttributes:s,options:[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),"default"!==x&&"none"!==x&&!1!==h&&React.createElement(Pl,{label:g,valueTop:{value:o[b+"BorderTopWidth"],label:b+"BorderTopWidth"},valueRight:{value:o[b+"BorderRightWidth"],label:b+"BorderRightWidth"},valueBottom:{value:o[b+"BorderBottomWidth"],label:b+"BorderBottomWidth"},valueLeft:{value:o[b+"BorderLeftWidth"],label:b+"BorderLeftWidth"},valueTopTablet:{value:o[b+"BorderTopWidthTablet"],label:b+"BorderTopWidthTablet"},valueRightTablet:{value:o[b+"BorderRightWidthTablet"],label:b+"BorderRightWidthTablet"},valueBottomTablet:{value:o[b+"BorderBottomWidthTablet"],label:b+"BorderBottomWidthTablet"},valueLeftTablet:{value:o[b+"BorderLeftWidthTablet"],label:b+"BorderLeftWidthTablet"},valueTopMobile:{value:o[b+"BorderTopWidthMobile"],label:b+"BorderTopWidthMobile"},valueRightMobile:{value:o[b+"BorderRightWidthMobile"],label:b+"BorderRightWidthMobile"},valueBottomMobile:{value:o[b+"BorderBottomWidthMobile"],label:b+"BorderBottomWidthMobile"},valueLeftMobile:{value:o[b+"BorderLeftWidthMobile"],label:b+"BorderLeftWidthMobile"},disableUnits:!0,deviceType:p,attributes:o,setAttributes:s,link:{value:o[b+"BorderLink"],label:b+"BorderLink"},min:0}),"default"!==x&&React.createElement(Pl,{label:m,valueTop:{value:o[b+"BorderTopLeftRadius"],label:b+"BorderTopLeftRadius"},valueRight:{value:o[b+"BorderTopRightRadius"],label:b+"BorderTopRightRadius"},valueBottom:{value:o[b+"BorderBottomRightRadius"],label:b+"BorderBottomRightRadius"},valueLeft:{value:o[b+"BorderBottomLeftRadius"],label:b+"BorderBottomLeftRadius"},valueTopTablet:{value:o[b+"BorderTopLeftRadiusTablet"],label:b+"BorderTopLeftRadiusTablet"},valueRightTablet:{value:o[b+"BorderTopRightRadiusTablet"],label:b+"BorderTopRightRadiusTablet"},valueBottomTablet:{value:o[b+"BorderBottomRightRadiusTablet"],label:b+"BorderBottomRightRadiusTablet"},valueLeftTablet:{value:o[b+"BorderBottomLeftRadiusTablet"],label:b+"BorderBottomLeftRadiusTablet"},valueTopMobile:{value:o[b+"BorderTopLeftRadiusMobile"],label:b+"BorderTopLeftRadiusMobile"},valueRightMobile:{value:o[b+"BorderTopRightRadiusMobile"],label:b+"BorderTopRightRadiusMobile"},valueBottomMobile:{value:o[b+"BorderBottomRightRadiusMobile"],label:b+"BorderBottomRightRadiusMobile"},valueLeftMobile:{value:o[b+"BorderBottomLeftRadiusMobile"],label:b+"BorderBottomLeftRadiusMobile"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],unit:{value:o[b+"BorderRadiusUnit"],label:b+"BorderRadiusUnit"},mUnit:{value:o[b+"BorderRadiusUnitMobile"],label:b+"BorderRadiusUnitMobile"},tUnit:{value:o[b+"BorderRadiusUnitTablet"],label:b+"BorderRadiusUnitTablet"},deviceType:p,attributes:o,setAttributes:s,link:{value:o[b+"BorderRadiusLink"],label:b+"BorderRadiusLink"},help:C||!1,min:0}),"none"!==x&&"default"!==x&&React.createElement(Ui,{tabs:P,normal:A,hover:G,active:"",disableBottomSeparator:!0}),!u&&React.createElement(fi,null),React.createElement(De,{text:S})),R=z(e.label),U=Object(j.applyFilters)(`spectra.${k}.${a}.${R}.before`,"",k),E=Object(j.applyFilters)(`spectra.${k}.${a}.${R}`,"",k);return React.createElement("div",{ref:i},U,M,E)};var Hi=Li;Li.propTypes=Ei,Li.defaultProps=Oi;var ji,Fi=a(92),zi=0,Di={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ni={};Ni.locals=Fi.a.locals||{},Ni.use=function(){return zi++||(ji=ke()(Fi.a,Di)),Ni},Ni.unuse=function(){zi>0&&!--zi&&(ji(),ji=null)};var Ii=Ni;const Vi={label:G.a.string,data:G.a.object,onChange:G.a.func,setAttributes:G.a.func},Wi={label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg")},qi=e=>{Object(B.useLayoutEffect)(()=>(Ii.use(),()=>{Ii.unuse()}),[]);const{label:t,data:a,onChange:l,setAttributes:i,help:o=!1}=e;return React.createElement(React.Fragment,null,React.createElement("div",{className:"components-base-control spectra__matrix-control"},React.createElement("div",{className:"uag-control-label"},t),React.createElement(Le.__experimentalAlignmentMatrixControl,{className:"spectra__matrix-control--box",label:t,value:null==a?void 0:a.value,onChange:!(!l&&!i)&&(e=>(e=>{i?i({[null==a?void 0:a.label]:e}):l&&l(e)})(e))})),React.createElement(De,{text:o}))};qi.propTypes=Vi,qi.defaultProps=Wi;var Zi,$i=qi,Yi=a(93),Ki=0,Ji={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Xi={};Xi.locals=Yi.a.locals||{},Xi.use=function(){return Ki++||(Zi=ke()(Yi.a,Ji)),Xi},Xi.unuse=function(){Ki>0&&!--Ki&&(Zi(),Zi=null)};var Qi=Xi,eo=a(16),to=a.n(eo),ao=a(17),lo=a.n(ao),io=a(18),oo=a.n(io),no=a(19),ro=a.n(no),so=a(13),co=a.n(so),uo=a(20),po=a.n(uo),bo=a(9),go=a.n(bo),mo=a(5),yo=a.n(mo);function fo(){var e=this.constructor.getDerivedStateFromProps(this.props,this.state);null!=e&&this.setState(e)}function ho(e){this.setState(function(t){var a=this.constructor.getDerivedStateFromProps(e,t);return null!=a?a:null}.bind(this))}function vo(e,t){try{var a=this.props,l=this.state;this.props=e,this.state=t,this.__reactInternalSnapshotFlag=!0,this.__reactInternalSnapshot=this.getSnapshotBeforeUpdate(a,l)}finally{this.props=a,this.state=l}}function _o(e){var t=e.prototype;if(!t||!t.isReactComponent)throw new Error("Can only polyfill class components");if("function"!=typeof e.getDerivedStateFromProps&&"function"!=typeof t.getSnapshotBeforeUpdate)return e;var a=null,l=null,i=null;if("function"==typeof t.componentWillMount?a="componentWillMount":"function"==typeof t.UNSAFE_componentWillMount&&(a="UNSAFE_componentWillMount"),"function"==typeof t.componentWillReceiveProps?l="componentWillReceiveProps":"function"==typeof t.UNSAFE_componentWillReceiveProps&&(l="UNSAFE_componentWillReceiveProps"),"function"==typeof t.componentWillUpdate?i="componentWillUpdate":"function"==typeof t.UNSAFE_componentWillUpdate&&(i="UNSAFE_componentWillUpdate"),null!==a||null!==l||null!==i){var o=e.displayName||e.name,n="function"==typeof e.getDerivedStateFromProps?"getDerivedStateFromProps()":"getSnapshotBeforeUpdate()";throw Error("Unsafe legacy lifecycles will not be called for components using new component APIs.\n\n"+o+" uses "+n+" but also contains the following legacy lifecycles:"+(null!==a?"\n  "+a:"")+(null!==l?"\n  "+l:"")+(null!==i?"\n  "+i:"")+"\n\nThe above lifecycles should be removed. Learn more about this warning here:\nhttps://fb.me/react-async-component-lifecycle-hooks")}if("function"==typeof e.getDerivedStateFromProps&&(t.componentWillMount=fo,t.componentWillReceiveProps=ho),"function"==typeof t.getSnapshotBeforeUpdate){if("function"!=typeof t.componentDidUpdate)throw new Error("Cannot polyfill getSnapshotBeforeUpdate() for components that do not define componentDidUpdate() on the prototype");t.componentWillUpdate=vo;var r=t.componentDidUpdate;t.componentDidUpdate=function(e,t,a){var l=this.__reactInternalSnapshotFlag?this.__reactInternalSnapshot:a;r.call(this,e,t,l)}}return e}fo.__suppressDeprecationWarning=!0,ho.__suppressDeprecationWarning=!0,vo.__suppressDeprecationWarning=!0;var To=a(23),Co=a.n(To);function So(e){var t,a,l="";if("string"==typeof e||"number"==typeof e)l+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(a=So(e[t]))&&(l&&(l+=" "),l+=a);else for(t in e)e[t]&&(l&&(l+=" "),l+=t);return l}var wo=function(){for(var e,t,a=0,l="";a<arguments.length;)(e=arguments[a++])&&(t=So(e))&&(l&&(l+=" "),l+=t);return l};function ko(e){var t=e.cellCount,a=e.cellSize,l=e.computeMetadataCallback,i=e.computeMetadataCallbackProps,o=e.nextCellsCount,n=e.nextCellSize,r=e.nextScrollToIndex,s=e.scrollToIndex,c=e.updateScrollOffsetForScrollToIndex;t===o&&("number"!=typeof a&&"number"!=typeof n||a===n)||(l(i),s>=0&&s===r&&c())}var Po=a(29),xo=a.n(Po),Ao=function(){function e(t){var a=t.cellCount,l=t.cellSizeGetter,i=t.estimatedCellSize;to()(this,e),go()(this,"_cellSizeAndPositionData",{}),go()(this,"_lastMeasuredIndex",-1),go()(this,"_lastBatchedIndex",-1),go()(this,"_cellCount",void 0),go()(this,"_cellSizeGetter",void 0),go()(this,"_estimatedCellSize",void 0),this._cellSizeGetter=l,this._cellCount=a,this._estimatedCellSize=i}return lo()(e,[{key:"areOffsetsAdjusted",value:function(){return!1}},{key:"configure",value:function(e){var t=e.cellCount,a=e.estimatedCellSize,l=e.cellSizeGetter;this._cellCount=t,this._estimatedCellSize=a,this._cellSizeGetter=l}},{key:"getCellCount",value:function(){return this._cellCount}},{key:"getEstimatedCellSize",value:function(){return this._estimatedCellSize}},{key:"getLastMeasuredIndex",value:function(){return this._lastMeasuredIndex}},{key:"getOffsetAdjustment",value:function(){return 0}},{key:"getSizeAndPositionOfCell",value:function(e){if(e<0||e>=this._cellCount)throw Error("Requested index ".concat(e," is outside of range 0..").concat(this._cellCount));if(e>this._lastMeasuredIndex)for(var t=this.getSizeAndPositionOfLastMeasuredCell(),a=t.offset+t.size,l=this._lastMeasuredIndex+1;l<=e;l++){var i=this._cellSizeGetter({index:l});if(void 0===i||isNaN(i))throw Error("Invalid size returned for cell ".concat(l," of value ").concat(i));null===i?(this._cellSizeAndPositionData[l]={offset:a,size:0},this._lastBatchedIndex=e):(this._cellSizeAndPositionData[l]={offset:a,size:i},a+=i,this._lastMeasuredIndex=e)}return this._cellSizeAndPositionData[e]}},{key:"getSizeAndPositionOfLastMeasuredCell",value:function(){return this._lastMeasuredIndex>=0?this._cellSizeAndPositionData[this._lastMeasuredIndex]:{offset:0,size:0}}},{key:"getTotalSize",value:function(){var e=this.getSizeAndPositionOfLastMeasuredCell();return e.offset+e.size+(this._cellCount-this._lastMeasuredIndex-1)*this._estimatedCellSize}},{key:"getUpdatedOffsetForIndex",value:function(e){var t=e.align,a=void 0===t?"auto":t,l=e.containerSize,i=e.currentOffset,o=e.targetIndex;if(l<=0)return 0;var n,r=this.getSizeAndPositionOfCell(o),s=r.offset,c=s-l+r.size;switch(a){case"start":n=s;break;case"end":n=c;break;case"center":n=s-(l-r.size)/2;break;default:n=Math.max(c,Math.min(s,i))}var u=this.getTotalSize();return Math.max(0,Math.min(u-l,n))}},{key:"getVisibleCellRange",value:function(e){var t=e.containerSize,a=e.offset;if(0===this.getTotalSize())return{};var l=a+t,i=this._findNearestCell(a),o=this.getSizeAndPositionOfCell(i);a=o.offset+o.size;for(var n=i;a<l&&n<this._cellCount-1;)n++,a+=this.getSizeAndPositionOfCell(n).size;return{start:i,stop:n}}},{key:"resetCell",value:function(e){this._lastMeasuredIndex=Math.min(this._lastMeasuredIndex,e-1)}},{key:"_binarySearch",value:function(e,t,a){for(;t<=e;){var l=t+Math.floor((e-t)/2),i=this.getSizeAndPositionOfCell(l).offset;if(i===a)return l;i<a?t=l+1:i>a&&(e=l-1)}return t>0?t-1:0}},{key:"_exponentialSearch",value:function(e,t){for(var a=1;e<this._cellCount&&this.getSizeAndPositionOfCell(e).offset<t;)e+=a,a*=2;return this._binarySearch(Math.min(e,this._cellCount-1),Math.floor(e/2),t)}},{key:"_findNearestCell",value:function(e){if(isNaN(e))throw Error("Invalid offset ".concat(e," specified"));e=Math.max(0,e);var t=this.getSizeAndPositionOfLastMeasuredCell(),a=Math.max(0,this._lastMeasuredIndex);return t.offset>=e?this._binarySearch(a,0,e):this._exponentialSearch(a,e)}}]),e}(),Go=function(){function e(t){var a=t.maxScrollSize,l=void 0===a?"undefined"!=typeof window&&window.chrome?16777100:15e5:a,i=xo()(t,["maxScrollSize"]);to()(this,e),go()(this,"_cellSizeAndPositionManager",void 0),go()(this,"_maxScrollSize",void 0),this._cellSizeAndPositionManager=new Ao(i),this._maxScrollSize=l}return lo()(e,[{key:"areOffsetsAdjusted",value:function(){return this._cellSizeAndPositionManager.getTotalSize()>this._maxScrollSize}},{key:"configure",value:function(e){this._cellSizeAndPositionManager.configure(e)}},{key:"getCellCount",value:function(){return this._cellSizeAndPositionManager.getCellCount()}},{key:"getEstimatedCellSize",value:function(){return this._cellSizeAndPositionManager.getEstimatedCellSize()}},{key:"getLastMeasuredIndex",value:function(){return this._cellSizeAndPositionManager.getLastMeasuredIndex()}},{key:"getOffsetAdjustment",value:function(e){var t=e.containerSize,a=e.offset,l=this._cellSizeAndPositionManager.getTotalSize(),i=this.getTotalSize(),o=this._getOffsetPercentage({containerSize:t,offset:a,totalSize:i});return Math.round(o*(i-l))}},{key:"getSizeAndPositionOfCell",value:function(e){return this._cellSizeAndPositionManager.getSizeAndPositionOfCell(e)}},{key:"getSizeAndPositionOfLastMeasuredCell",value:function(){return this._cellSizeAndPositionManager.getSizeAndPositionOfLastMeasuredCell()}},{key:"getTotalSize",value:function(){return Math.min(this._maxScrollSize,this._cellSizeAndPositionManager.getTotalSize())}},{key:"getUpdatedOffsetForIndex",value:function(e){var t=e.align,a=void 0===t?"auto":t,l=e.containerSize,i=e.currentOffset,o=e.targetIndex;i=this._safeOffsetToOffset({containerSize:l,offset:i});var n=this._cellSizeAndPositionManager.getUpdatedOffsetForIndex({align:a,containerSize:l,currentOffset:i,targetIndex:o});return this._offsetToSafeOffset({containerSize:l,offset:n})}},{key:"getVisibleCellRange",value:function(e){var t=e.containerSize,a=e.offset;return a=this._safeOffsetToOffset({containerSize:t,offset:a}),this._cellSizeAndPositionManager.getVisibleCellRange({containerSize:t,offset:a})}},{key:"resetCell",value:function(e){this._cellSizeAndPositionManager.resetCell(e)}},{key:"_getOffsetPercentage",value:function(e){var t=e.containerSize,a=e.offset,l=e.totalSize;return l<=t?0:a/(l-t)}},{key:"_offsetToSafeOffset",value:function(e){var t=e.containerSize,a=e.offset,l=this._cellSizeAndPositionManager.getTotalSize(),i=this.getTotalSize();if(l===i)return a;var o=this._getOffsetPercentage({containerSize:t,offset:a,totalSize:l});return Math.round(o*(i-t))}},{key:"_safeOffsetToOffset",value:function(e){var t=e.containerSize,a=e.offset,l=this._cellSizeAndPositionManager.getTotalSize(),i=this.getTotalSize();if(l===i)return a;var o=this._getOffsetPercentage({containerSize:t,offset:a,totalSize:i});return Math.round(o*(l-t))}}]),e}();function Mo(){var e=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],t={};return function(a){var l=a.callback,i=a.indices,o=Object.keys(i),n=!e||o.every((function(e){var t=i[e];return Array.isArray(t)?t.length>0:t>=0})),r=o.length!==Object.keys(t).length||o.some((function(e){var a=t[e],l=i[e];return Array.isArray(l)?a.join(",")!==l.join(","):a!==l}));t=i,n&&r&&l(i)}}function Ro(e){var t=e.cellSize,a=e.cellSizeAndPositionManager,l=e.previousCellsCount,i=e.previousCellSize,o=e.previousScrollToAlignment,n=e.previousScrollToIndex,r=e.previousSize,s=e.scrollOffset,c=e.scrollToAlignment,u=e.scrollToIndex,p=e.size,b=e.sizeJustIncreasedFromZero,d=e.updateScrollIndexCallback,g=a.getCellCount(),m=u>=0&&u<g;m&&(p!==r||b||!i||"number"==typeof t&&t!==i||c!==o||u!==n)?d(u):!m&&g>0&&(p<r||g<l)&&s>a.getTotalSize()-p&&d(g-1)}var Bo,Uo,Eo=!("undefined"==typeof window||!window.document||!window.document.createElement);function Oo(e){if((!Bo&&0!==Bo||e)&&Eo){var t=document.createElement("div");t.style.position="absolute",t.style.top="-9999px",t.style.width="50px",t.style.height="50px",t.style.overflow="scroll",document.body.appendChild(t),Bo=t.offsetWidth-t.clientWidth,document.body.removeChild(t)}return Bo}var Lo,Ho,jo=(Uo="undefined"!=typeof window?window:"undefined"!=typeof self?self:{}).requestAnimationFrame||Uo.webkitRequestAnimationFrame||Uo.mozRequestAnimationFrame||Uo.oRequestAnimationFrame||Uo.msRequestAnimationFrame||function(e){return Uo.setTimeout(e,1e3/60)},Fo=Uo.cancelAnimationFrame||Uo.webkitCancelAnimationFrame||Uo.mozCancelAnimationFrame||Uo.oCancelAnimationFrame||Uo.msCancelAnimationFrame||function(e){Uo.clearTimeout(e)},zo=jo,Do=Fo,No=function(e){return Do(e.id)},Io=function(e,t){var a;Promise.resolve().then((function(){a=Date.now()}));var l={id:zo((function i(){Date.now()-a>=t?e.call():l.id=zo(i)}))};return l};function Vo(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function Wo(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?Vo(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):Vo(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var qo=(Ho=Lo=function(e){function t(e){var a;to()(this,t),a=oo()(this,ro()(t).call(this,e)),go()(co()(a),"_onGridRenderedMemoizer",Mo()),go()(co()(a),"_onScrollMemoizer",Mo(!1)),go()(co()(a),"_deferredInvalidateColumnIndex",null),go()(co()(a),"_deferredInvalidateRowIndex",null),go()(co()(a),"_recomputeScrollLeftFlag",!1),go()(co()(a),"_recomputeScrollTopFlag",!1),go()(co()(a),"_horizontalScrollBarSize",0),go()(co()(a),"_verticalScrollBarSize",0),go()(co()(a),"_scrollbarPresenceChanged",!1),go()(co()(a),"_scrollingContainer",void 0),go()(co()(a),"_childrenToDisplay",void 0),go()(co()(a),"_columnStartIndex",void 0),go()(co()(a),"_columnStopIndex",void 0),go()(co()(a),"_rowStartIndex",void 0),go()(co()(a),"_rowStopIndex",void 0),go()(co()(a),"_renderedColumnStartIndex",0),go()(co()(a),"_renderedColumnStopIndex",0),go()(co()(a),"_renderedRowStartIndex",0),go()(co()(a),"_renderedRowStopIndex",0),go()(co()(a),"_initialScrollTop",void 0),go()(co()(a),"_initialScrollLeft",void 0),go()(co()(a),"_disablePointerEventsTimeoutId",void 0),go()(co()(a),"_styleCache",{}),go()(co()(a),"_cellCache",{}),go()(co()(a),"_debounceScrollEndedCallback",(function(){a._disablePointerEventsTimeoutId=null,a.setState({isScrolling:!1,needToResetStyleCache:!1})})),go()(co()(a),"_invokeOnGridRenderedHelper",(function(){var e=a.props.onSectionRendered;a._onGridRenderedMemoizer({callback:e,indices:{columnOverscanStartIndex:a._columnStartIndex,columnOverscanStopIndex:a._columnStopIndex,columnStartIndex:a._renderedColumnStartIndex,columnStopIndex:a._renderedColumnStopIndex,rowOverscanStartIndex:a._rowStartIndex,rowOverscanStopIndex:a._rowStopIndex,rowStartIndex:a._renderedRowStartIndex,rowStopIndex:a._renderedRowStopIndex}})})),go()(co()(a),"_setScrollingContainerRef",(function(e){a._scrollingContainer=e})),go()(co()(a),"_onScroll",(function(e){e.target===a._scrollingContainer&&a.handleScrollEvent(e.target)}));var l=new Go({cellCount:e.columnCount,cellSizeGetter:function(a){return t._wrapSizeGetter(e.columnWidth)(a)},estimatedCellSize:t._getEstimatedColumnSize(e)}),i=new Go({cellCount:e.rowCount,cellSizeGetter:function(a){return t._wrapSizeGetter(e.rowHeight)(a)},estimatedCellSize:t._getEstimatedRowSize(e)});return a.state={instanceProps:{columnSizeAndPositionManager:l,rowSizeAndPositionManager:i,prevColumnWidth:e.columnWidth,prevRowHeight:e.rowHeight,prevColumnCount:e.columnCount,prevRowCount:e.rowCount,prevIsScrolling:!0===e.isScrolling,prevScrollToColumn:e.scrollToColumn,prevScrollToRow:e.scrollToRow,scrollbarSize:0,scrollbarSizeMeasured:!1},isScrolling:!1,scrollDirectionHorizontal:1,scrollDirectionVertical:1,scrollLeft:0,scrollTop:0,scrollPositionChangeReason:null,needToResetStyleCache:!1},e.scrollToRow>0&&(a._initialScrollTop=a._getCalculatedScrollTop(e,a.state)),e.scrollToColumn>0&&(a._initialScrollLeft=a._getCalculatedScrollLeft(e,a.state)),a}return po()(t,e),lo()(t,[{key:"getOffsetForCell",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.alignment,a=void 0===t?this.props.scrollToAlignment:t,l=e.columnIndex,i=void 0===l?this.props.scrollToColumn:l,o=e.rowIndex,n=void 0===o?this.props.scrollToRow:o,r=Wo({},this.props,{scrollToAlignment:a,scrollToColumn:i,scrollToRow:n});return{scrollLeft:this._getCalculatedScrollLeft(r),scrollTop:this._getCalculatedScrollTop(r)}}},{key:"getTotalRowsHeight",value:function(){return this.state.instanceProps.rowSizeAndPositionManager.getTotalSize()}},{key:"getTotalColumnsWidth",value:function(){return this.state.instanceProps.columnSizeAndPositionManager.getTotalSize()}},{key:"handleScrollEvent",value:function(e){var t=e.scrollLeft,a=void 0===t?0:t,l=e.scrollTop,i=void 0===l?0:l;if(!(i<0)){this._debounceScrollEnded();var o=this.props,n=o.autoHeight,r=o.autoWidth,s=o.height,c=o.width,u=this.state.instanceProps,p=u.scrollbarSize,b=u.rowSizeAndPositionManager.getTotalSize(),d=u.columnSizeAndPositionManager.getTotalSize(),g=Math.min(Math.max(0,d-c+p),a),m=Math.min(Math.max(0,b-s+p),i);if(this.state.scrollLeft!==g||this.state.scrollTop!==m){var y={isScrolling:!0,scrollDirectionHorizontal:g!==this.state.scrollLeft?g>this.state.scrollLeft?1:-1:this.state.scrollDirectionHorizontal,scrollDirectionVertical:m!==this.state.scrollTop?m>this.state.scrollTop?1:-1:this.state.scrollDirectionVertical,scrollPositionChangeReason:"observed"};n||(y.scrollTop=m),r||(y.scrollLeft=g),y.needToResetStyleCache=!1,this.setState(y)}this._invokeOnScrollMemoizer({scrollLeft:g,scrollTop:m,totalColumnsWidth:d,totalRowsHeight:b})}}},{key:"invalidateCellSizeAfterRender",value:function(e){var t=e.columnIndex,a=e.rowIndex;this._deferredInvalidateColumnIndex="number"==typeof this._deferredInvalidateColumnIndex?Math.min(this._deferredInvalidateColumnIndex,t):t,this._deferredInvalidateRowIndex="number"==typeof this._deferredInvalidateRowIndex?Math.min(this._deferredInvalidateRowIndex,a):a}},{key:"measureAllCells",value:function(){var e=this.props,t=e.columnCount,a=e.rowCount,l=this.state.instanceProps;l.columnSizeAndPositionManager.getSizeAndPositionOfCell(t-1),l.rowSizeAndPositionManager.getSizeAndPositionOfCell(a-1)}},{key:"recomputeGridSize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.columnIndex,a=void 0===t?0:t,l=e.rowIndex,i=void 0===l?0:l,o=this.props,n=o.scrollToColumn,r=o.scrollToRow,s=this.state.instanceProps;s.columnSizeAndPositionManager.resetCell(a),s.rowSizeAndPositionManager.resetCell(i),this._recomputeScrollLeftFlag=n>=0&&(1===this.state.scrollDirectionHorizontal?a<=n:a>=n),this._recomputeScrollTopFlag=r>=0&&(1===this.state.scrollDirectionVertical?i<=r:i>=r),this._styleCache={},this._cellCache={},this.forceUpdate()}},{key:"scrollToCell",value:function(e){var t=e.columnIndex,a=e.rowIndex,l=this.props.columnCount,i=this.props;l>1&&void 0!==t&&this._updateScrollLeftForScrollToColumn(Wo({},i,{scrollToColumn:t})),void 0!==a&&this._updateScrollTopForScrollToRow(Wo({},i,{scrollToRow:a}))}},{key:"componentDidMount",value:function(){var e=this.props,a=e.getScrollbarSize,l=e.height,i=e.scrollLeft,o=e.scrollToColumn,n=e.scrollTop,r=e.scrollToRow,s=e.width,c=this.state.instanceProps;if(this._initialScrollTop=0,this._initialScrollLeft=0,this._handleInvalidatedGridSize(),c.scrollbarSizeMeasured||this.setState((function(e){var t=Wo({},e,{needToResetStyleCache:!1});return t.instanceProps.scrollbarSize=a(),t.instanceProps.scrollbarSizeMeasured=!0,t})),"number"==typeof i&&i>=0||"number"==typeof n&&n>=0){var u=t._getScrollToPositionStateUpdate({prevState:this.state,scrollLeft:i,scrollTop:n});u&&(u.needToResetStyleCache=!1,this.setState(u))}this._scrollingContainer&&(this._scrollingContainer.scrollLeft!==this.state.scrollLeft&&(this._scrollingContainer.scrollLeft=this.state.scrollLeft),this._scrollingContainer.scrollTop!==this.state.scrollTop&&(this._scrollingContainer.scrollTop=this.state.scrollTop));var p=l>0&&s>0;o>=0&&p&&this._updateScrollLeftForScrollToColumn(),r>=0&&p&&this._updateScrollTopForScrollToRow(),this._invokeOnGridRenderedHelper(),this._invokeOnScrollMemoizer({scrollLeft:i||0,scrollTop:n||0,totalColumnsWidth:c.columnSizeAndPositionManager.getTotalSize(),totalRowsHeight:c.rowSizeAndPositionManager.getTotalSize()}),this._maybeCallOnScrollbarPresenceChange()}},{key:"componentDidUpdate",value:function(e,t){var a=this,l=this.props,i=l.autoHeight,o=l.autoWidth,n=l.columnCount,r=l.height,s=l.rowCount,c=l.scrollToAlignment,u=l.scrollToColumn,p=l.scrollToRow,b=l.width,d=this.state,g=d.scrollLeft,m=d.scrollPositionChangeReason,y=d.scrollTop,f=d.instanceProps;this._handleInvalidatedGridSize();var h=n>0&&0===e.columnCount||s>0&&0===e.rowCount;"requested"===m&&(!o&&g>=0&&(g!==this._scrollingContainer.scrollLeft||h)&&(this._scrollingContainer.scrollLeft=g),!i&&y>=0&&(y!==this._scrollingContainer.scrollTop||h)&&(this._scrollingContainer.scrollTop=y));var v=(0===e.width||0===e.height)&&r>0&&b>0;if(this._recomputeScrollLeftFlag?(this._recomputeScrollLeftFlag=!1,this._updateScrollLeftForScrollToColumn(this.props)):Ro({cellSizeAndPositionManager:f.columnSizeAndPositionManager,previousCellsCount:e.columnCount,previousCellSize:e.columnWidth,previousScrollToAlignment:e.scrollToAlignment,previousScrollToIndex:e.scrollToColumn,previousSize:e.width,scrollOffset:g,scrollToAlignment:c,scrollToIndex:u,size:b,sizeJustIncreasedFromZero:v,updateScrollIndexCallback:function(){return a._updateScrollLeftForScrollToColumn(a.props)}}),this._recomputeScrollTopFlag?(this._recomputeScrollTopFlag=!1,this._updateScrollTopForScrollToRow(this.props)):Ro({cellSizeAndPositionManager:f.rowSizeAndPositionManager,previousCellsCount:e.rowCount,previousCellSize:e.rowHeight,previousScrollToAlignment:e.scrollToAlignment,previousScrollToIndex:e.scrollToRow,previousSize:e.height,scrollOffset:y,scrollToAlignment:c,scrollToIndex:p,size:r,sizeJustIncreasedFromZero:v,updateScrollIndexCallback:function(){return a._updateScrollTopForScrollToRow(a.props)}}),this._invokeOnGridRenderedHelper(),g!==t.scrollLeft||y!==t.scrollTop){var _=f.rowSizeAndPositionManager.getTotalSize(),T=f.columnSizeAndPositionManager.getTotalSize();this._invokeOnScrollMemoizer({scrollLeft:g,scrollTop:y,totalColumnsWidth:T,totalRowsHeight:_})}this._maybeCallOnScrollbarPresenceChange()}},{key:"componentWillUnmount",value:function(){this._disablePointerEventsTimeoutId&&No(this._disablePointerEventsTimeoutId)}},{key:"render",value:function(){var e=this.props,t=e.autoContainerWidth,a=e.autoHeight,l=e.autoWidth,i=e.className,o=e.containerProps,n=e.containerRole,r=e.containerStyle,s=e.height,c=e.id,u=e.noContentRenderer,p=e.role,b=e.style,d=e.tabIndex,g=e.width,m=this.state,y=m.instanceProps,f=m.needToResetStyleCache,h=this._isScrolling(),v={boxSizing:"border-box",direction:"ltr",height:a?"auto":s,position:"relative",width:l?"auto":g,WebkitOverflowScrolling:"touch",willChange:"transform"};f&&(this._styleCache={}),this.state.isScrolling||this._resetStyleCache(),this._calculateChildrenToRender(this.props,this.state);var _=y.columnSizeAndPositionManager.getTotalSize(),T=y.rowSizeAndPositionManager.getTotalSize(),C=T>s?y.scrollbarSize:0,S=_>g?y.scrollbarSize:0;S===this._horizontalScrollBarSize&&C===this._verticalScrollBarSize||(this._horizontalScrollBarSize=S,this._verticalScrollBarSize=C,this._scrollbarPresenceChanged=!0),v.overflowX=_+C<=g?"hidden":"auto",v.overflowY=T+S<=s?"hidden":"auto";var w=this._childrenToDisplay,k=0===w.length&&s>0&&g>0;return mo.createElement("div",Co()({ref:this._setScrollingContainerRef},o,{"aria-label":this.props["aria-label"],"aria-readonly":this.props["aria-readonly"],className:wo("ReactVirtualized__Grid",i),id:c,onScroll:this._onScroll,role:p,style:Wo({},v,{},b),tabIndex:d}),w.length>0&&mo.createElement("div",{className:"ReactVirtualized__Grid__innerScrollContainer",role:n,style:Wo({width:t?"auto":_,height:T,maxWidth:_,maxHeight:T,overflow:"hidden",pointerEvents:h?"none":"",position:"relative"},r)},w),k&&u())}},{key:"_calculateChildrenToRender",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state,a=e.cellRenderer,l=e.cellRangeRenderer,i=e.columnCount,o=e.deferredMeasurementCache,n=e.height,r=e.overscanColumnCount,s=e.overscanIndicesGetter,c=e.overscanRowCount,u=e.rowCount,p=e.width,b=e.isScrollingOptOut,d=t.scrollDirectionHorizontal,g=t.scrollDirectionVertical,m=t.instanceProps,y=this._initialScrollTop>0?this._initialScrollTop:t.scrollTop,f=this._initialScrollLeft>0?this._initialScrollLeft:t.scrollLeft,h=this._isScrolling(e,t);if(this._childrenToDisplay=[],n>0&&p>0){var v=m.columnSizeAndPositionManager.getVisibleCellRange({containerSize:p,offset:f}),_=m.rowSizeAndPositionManager.getVisibleCellRange({containerSize:n,offset:y}),T=m.columnSizeAndPositionManager.getOffsetAdjustment({containerSize:p,offset:f}),C=m.rowSizeAndPositionManager.getOffsetAdjustment({containerSize:n,offset:y});this._renderedColumnStartIndex=v.start,this._renderedColumnStopIndex=v.stop,this._renderedRowStartIndex=_.start,this._renderedRowStopIndex=_.stop;var S=s({direction:"horizontal",cellCount:i,overscanCellsCount:r,scrollDirection:d,startIndex:"number"==typeof v.start?v.start:0,stopIndex:"number"==typeof v.stop?v.stop:-1}),w=s({direction:"vertical",cellCount:u,overscanCellsCount:c,scrollDirection:g,startIndex:"number"==typeof _.start?_.start:0,stopIndex:"number"==typeof _.stop?_.stop:-1}),k=S.overscanStartIndex,P=S.overscanStopIndex,x=w.overscanStartIndex,A=w.overscanStopIndex;if(o){if(!o.hasFixedHeight())for(var G=x;G<=A;G++)if(!o.has(G,0)){k=0,P=i-1;break}if(!o.hasFixedWidth())for(var M=k;M<=P;M++)if(!o.has(0,M)){x=0,A=u-1;break}}this._childrenToDisplay=l({cellCache:this._cellCache,cellRenderer:a,columnSizeAndPositionManager:m.columnSizeAndPositionManager,columnStartIndex:k,columnStopIndex:P,deferredMeasurementCache:o,horizontalOffsetAdjustment:T,isScrolling:h,isScrollingOptOut:b,parent:this,rowSizeAndPositionManager:m.rowSizeAndPositionManager,rowStartIndex:x,rowStopIndex:A,scrollLeft:f,scrollTop:y,styleCache:this._styleCache,verticalOffsetAdjustment:C,visibleColumnIndices:v,visibleRowIndices:_}),this._columnStartIndex=k,this._columnStopIndex=P,this._rowStartIndex=x,this._rowStopIndex=A}}},{key:"_debounceScrollEnded",value:function(){var e=this.props.scrollingResetTimeInterval;this._disablePointerEventsTimeoutId&&No(this._disablePointerEventsTimeoutId),this._disablePointerEventsTimeoutId=Io(this._debounceScrollEndedCallback,e)}},{key:"_handleInvalidatedGridSize",value:function(){if("number"==typeof this._deferredInvalidateColumnIndex&&"number"==typeof this._deferredInvalidateRowIndex){var e=this._deferredInvalidateColumnIndex,t=this._deferredInvalidateRowIndex;this._deferredInvalidateColumnIndex=null,this._deferredInvalidateRowIndex=null,this.recomputeGridSize({columnIndex:e,rowIndex:t})}}},{key:"_invokeOnScrollMemoizer",value:function(e){var t=this,a=e.scrollLeft,l=e.scrollTop,i=e.totalColumnsWidth,o=e.totalRowsHeight;this._onScrollMemoizer({callback:function(e){var a=e.scrollLeft,l=e.scrollTop,n=t.props,r=n.height;(0,n.onScroll)({clientHeight:r,clientWidth:n.width,scrollHeight:o,scrollLeft:a,scrollTop:l,scrollWidth:i})},indices:{scrollLeft:a,scrollTop:l}})}},{key:"_isScrolling",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state;return Object.hasOwnProperty.call(e,"isScrolling")?Boolean(e.isScrolling):Boolean(t.isScrolling)}},{key:"_maybeCallOnScrollbarPresenceChange",value:function(){if(this._scrollbarPresenceChanged){var e=this.props.onScrollbarPresenceChange;this._scrollbarPresenceChanged=!1,e({horizontal:this._horizontalScrollBarSize>0,size:this.state.instanceProps.scrollbarSize,vertical:this._verticalScrollBarSize>0})}}},{key:"scrollToPosition",value:function(e){var a=e.scrollLeft,l=e.scrollTop,i=t._getScrollToPositionStateUpdate({prevState:this.state,scrollLeft:a,scrollTop:l});i&&(i.needToResetStyleCache=!1,this.setState(i))}},{key:"_getCalculatedScrollLeft",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state;return t._getCalculatedScrollLeft(e,a)}},{key:"_updateScrollLeftForScrollToColumn",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state,l=t._getScrollLeftForScrollToColumnStateUpdate(e,a);l&&(l.needToResetStyleCache=!1,this.setState(l))}},{key:"_getCalculatedScrollTop",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state;return t._getCalculatedScrollTop(e,a)}},{key:"_resetStyleCache",value:function(){var e=this._styleCache,t=this._cellCache,a=this.props.isScrollingOptOut;this._cellCache={},this._styleCache={};for(var l=this._rowStartIndex;l<=this._rowStopIndex;l++)for(var i=this._columnStartIndex;i<=this._columnStopIndex;i++){var o="".concat(l,"-").concat(i);this._styleCache[o]=e[o],a&&(this._cellCache[o]=t[o])}}},{key:"_updateScrollTopForScrollToRow",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props,a=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.state,l=t._getScrollTopForScrollToRowStateUpdate(e,a);l&&(l.needToResetStyleCache=!1,this.setState(l))}}],[{key:"getDerivedStateFromProps",value:function(e,a){var l={};0===e.columnCount&&0!==a.scrollLeft||0===e.rowCount&&0!==a.scrollTop?(l.scrollLeft=0,l.scrollTop=0):(e.scrollLeft!==a.scrollLeft&&e.scrollToColumn<0||e.scrollTop!==a.scrollTop&&e.scrollToRow<0)&&Object.assign(l,t._getScrollToPositionStateUpdate({prevState:a,scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}));var i,o,n=a.instanceProps;return l.needToResetStyleCache=!1,e.columnWidth===n.prevColumnWidth&&e.rowHeight===n.prevRowHeight||(l.needToResetStyleCache=!0),n.columnSizeAndPositionManager.configure({cellCount:e.columnCount,estimatedCellSize:t._getEstimatedColumnSize(e),cellSizeGetter:t._wrapSizeGetter(e.columnWidth)}),n.rowSizeAndPositionManager.configure({cellCount:e.rowCount,estimatedCellSize:t._getEstimatedRowSize(e),cellSizeGetter:t._wrapSizeGetter(e.rowHeight)}),0!==n.prevColumnCount&&0!==n.prevRowCount||(n.prevColumnCount=0,n.prevRowCount=0),e.autoHeight&&!1===e.isScrolling&&!0===n.prevIsScrolling&&Object.assign(l,{isScrolling:!1}),ko({cellCount:n.prevColumnCount,cellSize:"number"==typeof n.prevColumnWidth?n.prevColumnWidth:null,computeMetadataCallback:function(){return n.columnSizeAndPositionManager.resetCell(0)},computeMetadataCallbackProps:e,nextCellsCount:e.columnCount,nextCellSize:"number"==typeof e.columnWidth?e.columnWidth:null,nextScrollToIndex:e.scrollToColumn,scrollToIndex:n.prevScrollToColumn,updateScrollOffsetForScrollToIndex:function(){i=t._getScrollLeftForScrollToColumnStateUpdate(e,a)}}),ko({cellCount:n.prevRowCount,cellSize:"number"==typeof n.prevRowHeight?n.prevRowHeight:null,computeMetadataCallback:function(){return n.rowSizeAndPositionManager.resetCell(0)},computeMetadataCallbackProps:e,nextCellsCount:e.rowCount,nextCellSize:"number"==typeof e.rowHeight?e.rowHeight:null,nextScrollToIndex:e.scrollToRow,scrollToIndex:n.prevScrollToRow,updateScrollOffsetForScrollToIndex:function(){o=t._getScrollTopForScrollToRowStateUpdate(e,a)}}),n.prevColumnCount=e.columnCount,n.prevColumnWidth=e.columnWidth,n.prevIsScrolling=!0===e.isScrolling,n.prevRowCount=e.rowCount,n.prevRowHeight=e.rowHeight,n.prevScrollToColumn=e.scrollToColumn,n.prevScrollToRow=e.scrollToRow,n.scrollbarSize=e.getScrollbarSize(),void 0===n.scrollbarSize?(n.scrollbarSizeMeasured=!1,n.scrollbarSize=0):n.scrollbarSizeMeasured=!0,l.instanceProps=n,Wo({},l,{},i,{},o)}},{key:"_getEstimatedColumnSize",value:function(e){return"number"==typeof e.columnWidth?e.columnWidth:e.estimatedColumnSize}},{key:"_getEstimatedRowSize",value:function(e){return"number"==typeof e.rowHeight?e.rowHeight:e.estimatedRowSize}},{key:"_getScrollToPositionStateUpdate",value:function(e){var t=e.prevState,a=e.scrollLeft,l=e.scrollTop,i={scrollPositionChangeReason:"requested"};return"number"==typeof a&&a>=0&&(i.scrollDirectionHorizontal=a>t.scrollLeft?1:-1,i.scrollLeft=a),"number"==typeof l&&l>=0&&(i.scrollDirectionVertical=l>t.scrollTop?1:-1,i.scrollTop=l),"number"==typeof a&&a>=0&&a!==t.scrollLeft||"number"==typeof l&&l>=0&&l!==t.scrollTop?i:{}}},{key:"_wrapSizeGetter",value:function(e){return"function"==typeof e?e:function(){return e}}},{key:"_getCalculatedScrollLeft",value:function(e,t){var a=e.columnCount,l=e.height,i=e.scrollToAlignment,o=e.scrollToColumn,n=e.width,r=t.scrollLeft,s=t.instanceProps;if(a>0){var c=a-1,u=o<0?c:Math.min(c,o),p=s.rowSizeAndPositionManager.getTotalSize(),b=s.scrollbarSizeMeasured&&p>l?s.scrollbarSize:0;return s.columnSizeAndPositionManager.getUpdatedOffsetForIndex({align:i,containerSize:n-b,currentOffset:r,targetIndex:u})}return 0}},{key:"_getScrollLeftForScrollToColumnStateUpdate",value:function(e,a){var l=a.scrollLeft,i=t._getCalculatedScrollLeft(e,a);return"number"==typeof i&&i>=0&&l!==i?t._getScrollToPositionStateUpdate({prevState:a,scrollLeft:i,scrollTop:-1}):{}}},{key:"_getCalculatedScrollTop",value:function(e,t){var a=e.height,l=e.rowCount,i=e.scrollToAlignment,o=e.scrollToRow,n=e.width,r=t.scrollTop,s=t.instanceProps;if(l>0){var c=l-1,u=o<0?c:Math.min(c,o),p=s.columnSizeAndPositionManager.getTotalSize(),b=s.scrollbarSizeMeasured&&p>n?s.scrollbarSize:0;return s.rowSizeAndPositionManager.getUpdatedOffsetForIndex({align:i,containerSize:a-b,currentOffset:r,targetIndex:u})}return 0}},{key:"_getScrollTopForScrollToRowStateUpdate",value:function(e,a){var l=a.scrollTop,i=t._getCalculatedScrollTop(e,a);return"number"==typeof i&&i>=0&&l!==i?t._getScrollToPositionStateUpdate({prevState:a,scrollLeft:-1,scrollTop:i}):{}}}]),t}(mo.PureComponent),go()(Lo,"propTypes",null),Ho);go()(qo,"defaultProps",{"aria-label":"grid","aria-readonly":!0,autoContainerWidth:!1,autoHeight:!1,autoWidth:!1,cellRangeRenderer:function(e){for(var t=e.cellCache,a=e.cellRenderer,l=e.columnSizeAndPositionManager,i=e.columnStartIndex,o=e.columnStopIndex,n=e.deferredMeasurementCache,r=e.horizontalOffsetAdjustment,s=e.isScrolling,c=e.isScrollingOptOut,u=e.parent,p=e.rowSizeAndPositionManager,b=e.rowStartIndex,d=e.rowStopIndex,g=e.styleCache,m=e.verticalOffsetAdjustment,y=e.visibleColumnIndices,f=e.visibleRowIndices,h=[],v=l.areOffsetsAdjusted()||p.areOffsetsAdjusted(),_=!s&&!v,T=b;T<=d;T++)for(var C=p.getSizeAndPositionOfCell(T),S=i;S<=o;S++){var w=l.getSizeAndPositionOfCell(S),k=S>=y.start&&S<=y.stop&&T>=f.start&&T<=f.stop,P="".concat(T,"-").concat(S),x=void 0;_&&g[P]?x=g[P]:n&&!n.has(T,S)?x={height:"auto",left:0,position:"absolute",top:0,width:"auto"}:(x={height:C.size,left:w.offset+r,position:"absolute",top:C.offset+m,width:w.size},g[P]=x);var A={columnIndex:S,isScrolling:s,isVisible:k,key:P,parent:u,rowIndex:T,style:x},G=void 0;!c&&!s||r||m?G=a(A):(t[P]||(t[P]=a(A)),G=t[P]),null!=G&&!1!==G&&h.push(G)}return h},containerRole:"rowgroup",containerStyle:{},estimatedColumnSize:100,estimatedRowSize:30,getScrollbarSize:Oo,noContentRenderer:function(){return null},onScroll:function(){},onScrollbarPresenceChange:function(){},onSectionRendered:function(){},overscanColumnCount:0,overscanIndicesGetter:function(e){var t=e.cellCount,a=e.overscanCellsCount,l=e.scrollDirection,i=e.startIndex,o=e.stopIndex;return 1===l?{overscanStartIndex:Math.max(0,i),overscanStopIndex:Math.min(t-1,o+a)}:{overscanStartIndex:Math.max(0,i-a),overscanStopIndex:Math.min(t-1,o)}},overscanRowCount:10,role:"grid",scrollingResetTimeInterval:150,scrollToAlignment:"auto",scrollToColumn:-1,scrollToRow:-1,style:{},tabIndex:0,isScrollingOptOut:!1}),_o(qo);var Zo,$o,Yo=qo;function Ko(e){var t=e.cellCount,a=e.overscanCellsCount,l=e.scrollDirection,i=e.startIndex,o=e.stopIndex;return a=Math.max(1,a),1===l?{overscanStartIndex:Math.max(0,i-1),overscanStopIndex:Math.min(t-1,o+a)}:{overscanStartIndex:Math.max(0,i-a),overscanStopIndex:Math.min(t-1,o+1)}}function Jo(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}var Xo=($o=Zo=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"state",{scrollToColumn:0,scrollToRow:0,instanceProps:{prevScrollToColumn:0,prevScrollToRow:0}}),go()(co()(a),"_columnStartIndex",0),go()(co()(a),"_columnStopIndex",0),go()(co()(a),"_rowStartIndex",0),go()(co()(a),"_rowStopIndex",0),go()(co()(a),"_onKeyDown",(function(e){var t=a.props,l=t.columnCount,i=t.disabled,o=t.mode,n=t.rowCount;if(!i){var r=a._getScrollState(),s=r.scrollToColumn,c=r.scrollToRow,u=a._getScrollState(),p=u.scrollToColumn,b=u.scrollToRow;switch(e.key){case"ArrowDown":b="cells"===o?Math.min(b+1,n-1):Math.min(a._rowStopIndex+1,n-1);break;case"ArrowLeft":p="cells"===o?Math.max(p-1,0):Math.max(a._columnStartIndex-1,0);break;case"ArrowRight":p="cells"===o?Math.min(p+1,l-1):Math.min(a._columnStopIndex+1,l-1);break;case"ArrowUp":b="cells"===o?Math.max(b-1,0):Math.max(a._rowStartIndex-1,0)}p===s&&b===c||(e.preventDefault(),a._updateScrollState({scrollToColumn:p,scrollToRow:b}))}})),go()(co()(a),"_onSectionRendered",(function(e){var t=e.columnStartIndex,l=e.columnStopIndex,i=e.rowStartIndex,o=e.rowStopIndex;a._columnStartIndex=t,a._columnStopIndex=l,a._rowStartIndex=i,a._rowStopIndex=o})),a}return po()(t,e),lo()(t,[{key:"setScrollIndexes",value:function(e){var t=e.scrollToColumn,a=e.scrollToRow;this.setState({scrollToRow:a,scrollToColumn:t})}},{key:"render",value:function(){var e=this.props,t=e.className,a=e.children,l=this._getScrollState(),i=l.scrollToColumn,o=l.scrollToRow;return mo.createElement("div",{className:t,onKeyDown:this._onKeyDown},a({onSectionRendered:this._onSectionRendered,scrollToColumn:i,scrollToRow:o}))}},{key:"_getScrollState",value:function(){return this.props.isControlled?this.props:this.state}},{key:"_updateScrollState",value:function(e){var t=e.scrollToColumn,a=e.scrollToRow,l=this.props,i=l.isControlled,o=l.onScrollToChange;"function"==typeof o&&o({scrollToColumn:t,scrollToRow:a}),i||this.setState({scrollToColumn:t,scrollToRow:a})}}],[{key:"getDerivedStateFromProps",value:function(e,t){return e.isControlled?{}:e.scrollToColumn!==t.instanceProps.prevScrollToColumn||e.scrollToRow!==t.instanceProps.prevScrollToRow?function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?Jo(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):Jo(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}({},t,{scrollToColumn:e.scrollToColumn,scrollToRow:e.scrollToRow,instanceProps:{prevScrollToColumn:e.scrollToColumn,prevScrollToRow:e.scrollToRow}}):{}}}]),t}(mo.PureComponent),go()(Zo,"propTypes",null),$o);go()(Xo,"defaultProps",{disabled:!1,isControlled:!1,mode:"edges",scrollToColumn:0,scrollToRow:0}),_o(Xo);var Qo,en,tn=a(53);function an(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function ln(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?an(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):an(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var on=(en=Qo=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"state",{height:a.props.defaultHeight||0,width:a.props.defaultWidth||0}),go()(co()(a),"_parentNode",void 0),go()(co()(a),"_autoSizer",void 0),go()(co()(a),"_window",void 0),go()(co()(a),"_detectElementResize",void 0),go()(co()(a),"_onResize",(function(){var e=a.props,t=e.disableHeight,l=e.disableWidth,i=e.onResize;if(a._parentNode){var o=a._parentNode.offsetHeight||0,n=a._parentNode.offsetWidth||0,r=(a._window||window).getComputedStyle(a._parentNode)||{},s=parseInt(r.paddingLeft,10)||0,c=parseInt(r.paddingRight,10)||0,u=parseInt(r.paddingTop,10)||0,p=parseInt(r.paddingBottom,10)||0,b=o-u-p,d=n-s-c;(!t&&a.state.height!==b||!l&&a.state.width!==d)&&(a.setState({height:o-u-p,width:n-s-c}),i({height:o,width:n}))}})),go()(co()(a),"_setRef",(function(e){a._autoSizer=e})),a}return po()(t,e),lo()(t,[{key:"componentDidMount",value:function(){var e=this.props.nonce;this._autoSizer&&this._autoSizer.parentNode&&this._autoSizer.parentNode.ownerDocument&&this._autoSizer.parentNode.ownerDocument.defaultView&&this._autoSizer.parentNode instanceof this._autoSizer.parentNode.ownerDocument.defaultView.HTMLElement&&(this._parentNode=this._autoSizer.parentNode,this._window=this._autoSizer.parentNode.ownerDocument.defaultView,this._detectElementResize=Object(tn.a)(e,this._window),this._detectElementResize.addResizeListener(this._parentNode,this._onResize),this._onResize())}},{key:"componentWillUnmount",value:function(){this._detectElementResize&&this._parentNode&&this._detectElementResize.removeResizeListener(this._parentNode,this._onResize)}},{key:"render",value:function(){var e=this.props,t=e.children,a=e.className,l=e.disableHeight,i=e.disableWidth,o=e.style,n=this.state,r=n.height,s=n.width,c={overflow:"visible"},u={};return l||(c.height=0,u.height=r),i||(c.width=0,u.width=s),mo.createElement("div",{className:a,ref:this._setRef,style:ln({},c,{},o)},t(u))}}]),t}(mo.Component),go()(Qo,"propTypes",null),en);go()(on,"defaultProps",{onResize:function(){},disableHeight:!1,disableWidth:!1,style:{}});var nn,rn,sn=a(22),cn=(rn=nn=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"_child",void 0),go()(co()(a),"_measure",(function(){var e=a.props,t=e.cache,l=e.columnIndex,i=void 0===l?0:l,o=e.parent,n=e.rowIndex,r=void 0===n?a.props.index||0:n,s=a._getCellMeasurements(),c=s.height,u=s.width;c===t.getHeight(r,i)&&u===t.getWidth(r,i)||(t.set(r,i,u,c),o&&"function"==typeof o.recomputeGridSize&&o.recomputeGridSize({columnIndex:i,rowIndex:r}))})),go()(co()(a),"_registerChild",(function(e){!e||e instanceof Element||console.warn("CellMeasurer registerChild expects to be passed Element or null"),a._child=e,e&&a._maybeMeasureCell()})),a}return po()(t,e),lo()(t,[{key:"componentDidMount",value:function(){this._maybeMeasureCell()}},{key:"componentDidUpdate",value:function(){this._maybeMeasureCell()}},{key:"render",value:function(){var e=this.props.children;return"function"==typeof e?e({measure:this._measure,registerChild:this._registerChild}):e}},{key:"_getCellMeasurements",value:function(){var e=this.props.cache,t=this._child||Object(sn.findDOMNode)(this);if(t&&t.ownerDocument&&t.ownerDocument.defaultView&&t instanceof t.ownerDocument.defaultView.HTMLElement){var a=t.style.width,l=t.style.height;e.hasFixedWidth()||(t.style.width="auto"),e.hasFixedHeight()||(t.style.height="auto");var i=Math.ceil(t.offsetHeight),o=Math.ceil(t.offsetWidth);return a&&(t.style.width=a),l&&(t.style.height=l),{height:i,width:o}}return{height:0,width:0}}},{key:"_maybeMeasureCell",value:function(){var e=this.props,t=e.cache,a=e.columnIndex,l=void 0===a?0:a,i=e.parent,o=e.rowIndex,n=void 0===o?this.props.index||0:o;if(!t.has(n,l)){var r=this._getCellMeasurements(),s=r.height,c=r.width;t.set(n,l,c,s),i&&"function"==typeof i.invalidateCellSizeAfterRender&&i.invalidateCellSizeAfterRender({columnIndex:l,rowIndex:n})}}}]),t}(mo.PureComponent),go()(nn,"propTypes",null),rn);function un(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function pn(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?un(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):un(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}go()(cn,"__internalCellMeasurerFlag",!1);var bn=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"state",{isScrolling:!1,scrollLeft:0,scrollTop:0}),go()(co()(a),"_calculateSizeAndPositionDataOnNextUpdate",!1),go()(co()(a),"_onSectionRenderedMemoizer",Mo()),go()(co()(a),"_onScrollMemoizer",Mo(!1)),go()(co()(a),"_invokeOnSectionRenderedHelper",(function(){var e=a.props,t=e.cellLayoutManager,l=e.onSectionRendered;a._onSectionRenderedMemoizer({callback:l,indices:{indices:t.getLastRenderedIndices()}})})),go()(co()(a),"_setScrollingContainerRef",(function(e){a._scrollingContainer=e})),go()(co()(a),"_updateScrollPositionForScrollToCell",(function(){var e=a.props,t=e.cellLayoutManager,l=e.height,i=e.scrollToAlignment,o=e.scrollToCell,n=e.width,r=a.state,s=r.scrollLeft,c=r.scrollTop;if(o>=0){var u=t.getScrollPositionForCell({align:i,cellIndex:o,height:l,scrollLeft:s,scrollTop:c,width:n});u.scrollLeft===s&&u.scrollTop===c||a._setScrollPosition(u)}})),go()(co()(a),"_onScroll",(function(e){if(e.target===a._scrollingContainer){a._enablePointerEventsAfterDelay();var t=a.props,l=t.cellLayoutManager,i=t.height,o=t.isScrollingChange,n=t.width,r=a._scrollbarSize,s=l.getTotalSize(),c=s.height,u=s.width,p=Math.max(0,Math.min(u-n+r,e.target.scrollLeft)),b=Math.max(0,Math.min(c-i+r,e.target.scrollTop));if(a.state.scrollLeft!==p||a.state.scrollTop!==b){var d=e.cancelable?"observed":"requested";a.state.isScrolling||o(!0),a.setState({isScrolling:!0,scrollLeft:p,scrollPositionChangeReason:d,scrollTop:b})}a._invokeOnScrollMemoizer({scrollLeft:p,scrollTop:b,totalWidth:u,totalHeight:c})}})),a._scrollbarSize=Oo(),void 0===a._scrollbarSize?(a._scrollbarSizeMeasured=!1,a._scrollbarSize=0):a._scrollbarSizeMeasured=!0,a}return po()(t,e),lo()(t,[{key:"recomputeCellSizesAndPositions",value:function(){this._calculateSizeAndPositionDataOnNextUpdate=!0,this.forceUpdate()}},{key:"componentDidMount",value:function(){var e=this.props,t=e.cellLayoutManager,a=e.scrollLeft,l=e.scrollToCell,i=e.scrollTop;this._scrollbarSizeMeasured||(this._scrollbarSize=Oo(),this._scrollbarSizeMeasured=!0,this.setState({})),l>=0?this._updateScrollPositionForScrollToCell():(a>=0||i>=0)&&this._setScrollPosition({scrollLeft:a,scrollTop:i}),this._invokeOnSectionRenderedHelper();var o=t.getTotalSize(),n=o.height,r=o.width;this._invokeOnScrollMemoizer({scrollLeft:a||0,scrollTop:i||0,totalHeight:n,totalWidth:r})}},{key:"componentDidUpdate",value:function(e,t){var a=this.props,l=a.height,i=a.scrollToAlignment,o=a.scrollToCell,n=a.width,r=this.state,s=r.scrollLeft,c=r.scrollPositionChangeReason,u=r.scrollTop;"requested"===c&&(s>=0&&s!==t.scrollLeft&&s!==this._scrollingContainer.scrollLeft&&(this._scrollingContainer.scrollLeft=s),u>=0&&u!==t.scrollTop&&u!==this._scrollingContainer.scrollTop&&(this._scrollingContainer.scrollTop=u)),l===e.height&&i===e.scrollToAlignment&&o===e.scrollToCell&&n===e.width||this._updateScrollPositionForScrollToCell(),this._invokeOnSectionRenderedHelper()}},{key:"componentWillUnmount",value:function(){this._disablePointerEventsTimeoutId&&clearTimeout(this._disablePointerEventsTimeoutId)}},{key:"render",value:function(){var e=this.props,t=e.autoHeight,a=e.cellCount,l=e.cellLayoutManager,i=e.className,o=e.height,n=e.horizontalOverscanSize,r=e.id,s=e.noContentRenderer,c=e.style,u=e.verticalOverscanSize,p=e.width,b=this.state,d=b.isScrolling,g=b.scrollLeft,m=b.scrollTop;(this._lastRenderedCellCount!==a||this._lastRenderedCellLayoutManager!==l||this._calculateSizeAndPositionDataOnNextUpdate)&&(this._lastRenderedCellCount=a,this._lastRenderedCellLayoutManager=l,this._calculateSizeAndPositionDataOnNextUpdate=!1,l.calculateSizeAndPositionData());var y=l.getTotalSize(),f=y.height,h=y.width,v=Math.max(0,g-n),_=Math.max(0,m-u),T=Math.min(h,g+p+n),C=Math.min(f,m+o+u),S=o>0&&p>0?l.cellRenderers({height:C-_,isScrolling:d,width:T-v,x:v,y:_}):[],w={boxSizing:"border-box",direction:"ltr",height:t?"auto":o,position:"relative",WebkitOverflowScrolling:"touch",width:p,willChange:"transform"},k=f>o?this._scrollbarSize:0,P=h>p?this._scrollbarSize:0;return w.overflowX=h+k<=p?"hidden":"auto",w.overflowY=f+P<=o?"hidden":"auto",mo.createElement("div",{ref:this._setScrollingContainerRef,"aria-label":this.props["aria-label"],className:wo("ReactVirtualized__Collection",i),id:r,onScroll:this._onScroll,role:"grid",style:pn({},w,{},c),tabIndex:0},a>0&&mo.createElement("div",{className:"ReactVirtualized__Collection__innerScrollContainer",style:{height:f,maxHeight:f,maxWidth:h,overflow:"hidden",pointerEvents:d?"none":"",width:h}},S),0===a&&s())}},{key:"_enablePointerEventsAfterDelay",value:function(){var e=this;this._disablePointerEventsTimeoutId&&clearTimeout(this._disablePointerEventsTimeoutId),this._disablePointerEventsTimeoutId=setTimeout((function(){(0,e.props.isScrollingChange)(!1),e._disablePointerEventsTimeoutId=null,e.setState({isScrolling:!1})}),150)}},{key:"_invokeOnScrollMemoizer",value:function(e){var t=this,a=e.scrollLeft,l=e.scrollTop,i=e.totalHeight,o=e.totalWidth;this._onScrollMemoizer({callback:function(e){var a=e.scrollLeft,l=e.scrollTop,n=t.props,r=n.height;(0,n.onScroll)({clientHeight:r,clientWidth:n.width,scrollHeight:i,scrollLeft:a,scrollTop:l,scrollWidth:o})},indices:{scrollLeft:a,scrollTop:l}})}},{key:"_setScrollPosition",value:function(e){var t=e.scrollLeft,a=e.scrollTop,l={scrollPositionChangeReason:"requested"};t>=0&&(l.scrollLeft=t),a>=0&&(l.scrollTop=a),(t>=0&&t!==this.state.scrollLeft||a>=0&&a!==this.state.scrollTop)&&this.setState(l)}}],[{key:"getDerivedStateFromProps",value:function(e,t){return 0!==e.cellCount||0===t.scrollLeft&&0===t.scrollTop?e.scrollLeft!==t.scrollLeft||e.scrollTop!==t.scrollTop?{scrollLeft:null!=e.scrollLeft?e.scrollLeft:t.scrollLeft,scrollTop:null!=e.scrollTop?e.scrollTop:t.scrollTop,scrollPositionChangeReason:"requested"}:null:{scrollLeft:0,scrollTop:0,scrollPositionChangeReason:"requested"}}}]),t}(mo.PureComponent);go()(bn,"defaultProps",{"aria-label":"grid",horizontalOverscanSize:0,noContentRenderer:function(){return null},onScroll:function(){return null},onSectionRendered:function(){return null},scrollToAlignment:"auto",scrollToCell:-1,style:{},verticalOverscanSize:0}),bn.propTypes={},_o(bn);var dn=bn,gn=function(){function e(t){var a=t.height,l=t.width,i=t.x,o=t.y;to()(this,e),this.height=a,this.width=l,this.x=i,this.y=o,this._indexMap={},this._indices=[]}return lo()(e,[{key:"addCellIndex",value:function(e){var t=e.index;this._indexMap[t]||(this._indexMap[t]=!0,this._indices.push(t))}},{key:"getCellIndices",value:function(){return this._indices}},{key:"toString",value:function(){return"".concat(this.x,",").concat(this.y," ").concat(this.width,"x").concat(this.height)}}]),e}(),mn=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:100;to()(this,e),this._sectionSize=t,this._cellMetadata=[],this._sections={}}return lo()(e,[{key:"getCellIndices",value:function(e){var t=e.height,a=e.width,l=e.x,i=e.y,o={};return this.getSections({height:t,width:a,x:l,y:i}).forEach((function(e){return e.getCellIndices().forEach((function(e){o[e]=e}))})),Object.keys(o).map((function(e){return o[e]}))}},{key:"getCellMetadata",value:function(e){var t=e.index;return this._cellMetadata[t]}},{key:"getSections",value:function(e){for(var t=e.height,a=e.width,l=e.x,i=e.y,o=Math.floor(l/this._sectionSize),n=Math.floor((l+a-1)/this._sectionSize),r=Math.floor(i/this._sectionSize),s=Math.floor((i+t-1)/this._sectionSize),c=[],u=o;u<=n;u++)for(var p=r;p<=s;p++){var b="".concat(u,".").concat(p);this._sections[b]||(this._sections[b]=new gn({height:this._sectionSize,width:this._sectionSize,x:u*this._sectionSize,y:p*this._sectionSize})),c.push(this._sections[b])}return c}},{key:"getTotalSectionCount",value:function(){return Object.keys(this._sections).length}},{key:"toString",value:function(){var e=this;return Object.keys(this._sections).map((function(t){return e._sections[t].toString()}))}},{key:"registerCell",value:function(e){var t=e.cellMetadatum,a=e.index;this._cellMetadata[a]=t,this.getSections(t).forEach((function(e){return e.addCellIndex({index:a})}))}}]),e}();function yn(e){var t=e.align,a=void 0===t?"auto":t,l=e.cellOffset,i=e.cellSize,o=e.containerSize,n=e.currentOffset,r=l,s=r-o+i;switch(a){case"start":return r;case"end":return s;case"center":return r-(o-i)/2;default:return Math.max(s,Math.min(r,n))}}var fn=function(e){function t(e,a){var l;return to()(this,t),(l=oo()(this,ro()(t).call(this,e,a)))._cellMetadata=[],l._lastRenderedCellIndices=[],l._cellCache=[],l._isScrollingChange=l._isScrollingChange.bind(co()(l)),l._setCollectionViewRef=l._setCollectionViewRef.bind(co()(l)),l}return po()(t,e),lo()(t,[{key:"forceUpdate",value:function(){void 0!==this._collectionView&&this._collectionView.forceUpdate()}},{key:"recomputeCellSizesAndPositions",value:function(){this._cellCache=[],this._collectionView.recomputeCellSizesAndPositions()}},{key:"render",value:function(){var e=Co()({},this.props);return mo.createElement(dn,Co()({cellLayoutManager:this,isScrollingChange:this._isScrollingChange,ref:this._setCollectionViewRef},e))}},{key:"calculateSizeAndPositionData",value:function(){var e=this.props,t=function(e){for(var t=e.cellCount,a=e.cellSizeAndPositionGetter,l=[],i=new mn(e.sectionSize),o=0,n=0,r=0;r<t;r++){var s=a({index:r});if(null==s.height||isNaN(s.height)||null==s.width||isNaN(s.width)||null==s.x||isNaN(s.x)||null==s.y||isNaN(s.y))throw Error("Invalid metadata returned for cell ".concat(r,":\n        x:").concat(s.x,", y:").concat(s.y,", width:").concat(s.width,", height:").concat(s.height));o=Math.max(o,s.y+s.height),n=Math.max(n,s.x+s.width),l[r]=s,i.registerCell({cellMetadatum:s,index:r})}return{cellMetadata:l,height:o,sectionManager:i,width:n}}({cellCount:e.cellCount,cellSizeAndPositionGetter:e.cellSizeAndPositionGetter,sectionSize:e.sectionSize});this._cellMetadata=t.cellMetadata,this._sectionManager=t.sectionManager,this._height=t.height,this._width=t.width}},{key:"getLastRenderedIndices",value:function(){return this._lastRenderedCellIndices}},{key:"getScrollPositionForCell",value:function(e){var t=e.align,a=e.cellIndex,l=e.height,i=e.scrollLeft,o=e.scrollTop,n=e.width,r=this.props.cellCount;if(a>=0&&a<r){var s=this._cellMetadata[a];i=yn({align:t,cellOffset:s.x,cellSize:s.width,containerSize:n,currentOffset:i,targetIndex:a}),o=yn({align:t,cellOffset:s.y,cellSize:s.height,containerSize:l,currentOffset:o,targetIndex:a})}return{scrollLeft:i,scrollTop:o}}},{key:"getTotalSize",value:function(){return{height:this._height,width:this._width}}},{key:"cellRenderers",value:function(e){var t=this,a=e.height,l=e.isScrolling,i=e.width,o=e.x,n=e.y,r=this.props,s=r.cellGroupRenderer,c=r.cellRenderer;return this._lastRenderedCellIndices=this._sectionManager.getCellIndices({height:a,width:i,x:o,y:n}),s({cellCache:this._cellCache,cellRenderer:c,cellSizeAndPositionGetter:function(e){var a=e.index;return t._sectionManager.getCellMetadata({index:a})},indices:this._lastRenderedCellIndices,isScrolling:l})}},{key:"_isScrollingChange",value:function(e){e||(this._cellCache=[])}},{key:"_setCollectionViewRef",value:function(e){this._collectionView=e}}]),t}(mo.PureComponent);go()(fn,"defaultProps",{"aria-label":"grid",cellGroupRenderer:function(e){var t=e.cellCache,a=e.cellRenderer,l=e.cellSizeAndPositionGetter,i=e.indices,o=e.isScrolling;return i.map((function(e){var i=l({index:e}),n={index:e,isScrolling:o,key:e,style:{height:i.height,left:i.x,position:"absolute",top:i.y,width:i.width}};return o?(e in t||(t[e]=a(n)),t[e]):a(n)})).filter((function(e){return!!e}))}}),fn.propTypes={},(function(e){function t(e,a){var l;return to()(this,t),(l=oo()(this,ro()(t).call(this,e,a)))._registerChild=l._registerChild.bind(co()(l)),l}return po()(t,e),lo()(t,[{key:"componentDidUpdate",value:function(e){var t=this.props,a=t.columnMaxWidth,l=t.columnMinWidth,i=t.columnCount,o=t.width;a===e.columnMaxWidth&&l===e.columnMinWidth&&i===e.columnCount&&o===e.width||this._registeredChild&&this._registeredChild.recomputeGridSize()}},{key:"render",value:function(){var e=this.props,t=e.children,a=e.columnMaxWidth,l=e.columnMinWidth,i=e.columnCount,o=e.width,n=l||1,r=a?Math.min(a,o):o,s=o/i;return s=Math.max(n,s),s=Math.min(r,s),s=Math.floor(s),t({adjustedWidth:Math.min(o,s*i),columnWidth:s,getColumnWidth:function(){return s},registerChild:this._registerChild})}},{key:"_registerChild",value:function(e){if(e&&"function"!=typeof e.recomputeGridSize)throw Error("Unexpected child type registered; only Grid/MultiGrid children are supported.");this._registeredChild=e,this._registeredChild&&this._registeredChild.recomputeGridSize()}}]),t}(mo.PureComponent)).propTypes={};var hn=a(75),vn=a.n(hn),Tn=function(e){function t(e,a){var l;return to()(this,t),(l=oo()(this,ro()(t).call(this,e,a)))._loadMoreRowsMemoizer=Mo(),l._onRowsRendered=l._onRowsRendered.bind(co()(l)),l._registerChild=l._registerChild.bind(co()(l)),l}return po()(t,e),lo()(t,[{key:"resetLoadMoreRowsCache",value:function(e){this._loadMoreRowsMemoizer=Mo(),e&&this._doStuff(this._lastRenderedStartIndex,this._lastRenderedStopIndex)}},{key:"render",value:function(){return(0,this.props.children)({onRowsRendered:this._onRowsRendered,registerChild:this._registerChild})}},{key:"_loadUnloadedRanges",value:function(e){var t=this,a=this.props.loadMoreRows;e.forEach((function(e){var l=a(e);l&&l.then((function(){var a;(a={lastRenderedStartIndex:t._lastRenderedStartIndex,lastRenderedStopIndex:t._lastRenderedStopIndex,startIndex:e.startIndex,stopIndex:e.stopIndex}).startIndex>a.lastRenderedStopIndex||a.stopIndex<a.lastRenderedStartIndex||t._registeredChild&&function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,a="function"==typeof e.recomputeGridSize?e.recomputeGridSize:e.recomputeRowHeights;a?a.call(e,t):e.forceUpdate()}(t._registeredChild,t._lastRenderedStartIndex)}))}))}},{key:"_onRowsRendered",value:function(e){var t=e.startIndex,a=e.stopIndex;this._lastRenderedStartIndex=t,this._lastRenderedStopIndex=a,this._doStuff(t,a)}},{key:"_doStuff",value:function(e,t){var a,l=this,i=this.props,o=i.isRowLoaded,n=i.minimumBatchSize,r=i.rowCount,s=i.threshold,c=function(e){for(var t=e.isRowLoaded,a=e.minimumBatchSize,l=e.rowCount,i=e.stopIndex,o=[],n=null,r=null,s=e.startIndex;s<=i;s++)t({index:s})?null!==r&&(o.push({startIndex:n,stopIndex:r}),n=r=null):(r=s,null===n&&(n=s));if(null!==r){for(var c=Math.min(Math.max(r,n+a-1),l-1),u=r+1;u<=c&&!t({index:u});u++)r=u;o.push({startIndex:n,stopIndex:r})}if(o.length)for(var p=o[0];p.stopIndex-p.startIndex+1<a&&p.startIndex>0;){var b=p.startIndex-1;if(t({index:b}))break;p.startIndex=b}return o}({isRowLoaded:o,minimumBatchSize:n,rowCount:r,startIndex:Math.max(0,e-s),stopIndex:Math.min(r-1,t+s)}),u=(a=[]).concat.apply(a,vn()(c.map((function(e){return[e.startIndex,e.stopIndex]}))));this._loadMoreRowsMemoizer({callback:function(){l._loadUnloadedRanges(c)},indices:{squashedUnloadedRanges:u}})}},{key:"_registerChild",value:function(e){this._registeredChild=e}}]),t}(mo.PureComponent);go()(Tn,"defaultProps",{minimumBatchSize:10,rowCount:0,threshold:15}),Tn.propTypes={};var Cn,Sn,wn=(Sn=Cn=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"Grid",void 0),go()(co()(a),"_cellRenderer",(function(e){var t=e.parent,l=e.rowIndex,i=e.style,o=e.isScrolling,n=e.isVisible,r=e.key,s=a.props.rowRenderer,c=Object.getOwnPropertyDescriptor(i,"width");return c&&c.writable&&(i.width="100%"),s({index:l,style:i,isScrolling:o,isVisible:n,key:r,parent:t})})),go()(co()(a),"_setRef",(function(e){a.Grid=e})),go()(co()(a),"_onScroll",(function(e){var t=e.clientHeight,l=e.scrollHeight,i=e.scrollTop;(0,a.props.onScroll)({clientHeight:t,scrollHeight:l,scrollTop:i})})),go()(co()(a),"_onSectionRendered",(function(e){var t=e.rowOverscanStartIndex,l=e.rowOverscanStopIndex,i=e.rowStartIndex,o=e.rowStopIndex;(0,a.props.onRowsRendered)({overscanStartIndex:t,overscanStopIndex:l,startIndex:i,stopIndex:o})})),a}return po()(t,e),lo()(t,[{key:"forceUpdateGrid",value:function(){this.Grid&&this.Grid.forceUpdate()}},{key:"getOffsetForRow",value:function(e){var t=e.alignment,a=e.index;return this.Grid?this.Grid.getOffsetForCell({alignment:t,rowIndex:a,columnIndex:0}).scrollTop:0}},{key:"invalidateCellSizeAfterRender",value:function(e){var t=e.columnIndex,a=e.rowIndex;this.Grid&&this.Grid.invalidateCellSizeAfterRender({rowIndex:a,columnIndex:t})}},{key:"measureAllRows",value:function(){this.Grid&&this.Grid.measureAllCells()}},{key:"recomputeGridSize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.columnIndex,a=void 0===t?0:t,l=e.rowIndex,i=void 0===l?0:l;this.Grid&&this.Grid.recomputeGridSize({rowIndex:i,columnIndex:a})}},{key:"recomputeRowHeights",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.recomputeGridSize({rowIndex:e,columnIndex:0})}},{key:"scrollToPosition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.scrollToPosition({scrollTop:e})}},{key:"scrollToRow",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.scrollToCell({columnIndex:0,rowIndex:e})}},{key:"render",value:function(){var e=this.props,t=e.className,a=e.noRowsRenderer,l=e.scrollToIndex,i=e.width,o=wo("ReactVirtualized__List",t);return mo.createElement(Yo,Co()({},this.props,{autoContainerWidth:!0,cellRenderer:this._cellRenderer,className:o,columnWidth:i,columnCount:1,noContentRenderer:a,onScroll:this._onScroll,onSectionRendered:this._onSectionRendered,ref:this._setRef,scrollToRow:l}))}}]),t}(mo.PureComponent),go()(Cn,"propTypes",null),Sn);go()(wn,"defaultProps",{autoHeight:!1,estimatedRowSize:30,onScroll:function(){},noRowsRenderer:function(){return null},onRowsRendered:function(){},overscanIndicesGetter:Ko,overscanRowCount:10,scrollToAlignment:"auto",scrollToIndex:-1,style:{}});var kn=a(76),Pn=a.n(kn),xn=function(e,t,a,l,i){return"function"==typeof a?function(e,t,a,l,i){for(var o=a+1;t<=a;){var n=t+a>>>1;i(e[n],l)>=0?(o=n,a=n-1):t=n+1}return o}(e,void 0===l?0:0|l,void 0===i?e.length-1:0|i,t,a):function(e,t,a,l){for(var i=a+1;t<=a;){var o=t+a>>>1;e[o]>=l?(i=o,a=o-1):t=o+1}return i}(e,void 0===a?0:0|a,void 0===l?e.length-1:0|l,t)};function An(e,t,a,l,i){this.mid=e,this.left=t,this.right=a,this.leftPoints=l,this.rightPoints=i,this.count=(t?t.count:0)+(a?a.count:0)+l.length}var Gn=An.prototype;function Mn(e,t){e.mid=t.mid,e.left=t.left,e.right=t.right,e.leftPoints=t.leftPoints,e.rightPoints=t.rightPoints,e.count=t.count}function Rn(e,t){var a=zn(t);e.mid=a.mid,e.left=a.left,e.right=a.right,e.leftPoints=a.leftPoints,e.rightPoints=a.rightPoints,e.count=a.count}function Bn(e,t){var a=e.intervals([]);a.push(t),Rn(e,a)}function Un(e,t){var a=e.intervals([]),l=a.indexOf(t);return l<0?0:(a.splice(l,1),Rn(e,a),1)}function En(e,t,a){for(var l=0;l<e.length&&e[l][0]<=t;++l){var i=a(e[l]);if(i)return i}}function On(e,t,a){for(var l=e.length-1;l>=0&&e[l][1]>=t;--l){var i=a(e[l]);if(i)return i}}function Ln(e,t){for(var a=0;a<e.length;++a){var l=t(e[a]);if(l)return l}}function Hn(e,t){return e-t}function jn(e,t){return e[0]-t[0]||e[1]-t[1]}function Fn(e,t){return e[1]-t[1]||e[0]-t[0]}function zn(e){if(0===e.length)return null;for(var t=[],a=0;a<e.length;++a)t.push(e[a][0],e[a][1]);t.sort(Hn);var l=t[t.length>>1],i=[],o=[],n=[];for(a=0;a<e.length;++a){var r=e[a];r[1]<l?i.push(r):l<r[0]?o.push(r):n.push(r)}var s=n,c=n.slice();return s.sort(jn),c.sort(Fn),new An(l,zn(i),zn(o),s,c)}function Dn(e){this.root=e}Gn.intervals=function(e){return e.push.apply(e,this.leftPoints),this.left&&this.left.intervals(e),this.right&&this.right.intervals(e),e},Gn.insert=function(e){var t=this.count-this.leftPoints.length;if(this.count+=1,e[1]<this.mid)this.left?4*(this.left.count+1)>3*(t+1)?Bn(this,e):this.left.insert(e):this.left=zn([e]);else if(e[0]>this.mid)this.right?4*(this.right.count+1)>3*(t+1)?Bn(this,e):this.right.insert(e):this.right=zn([e]);else{var a=xn(this.leftPoints,e,jn),l=xn(this.rightPoints,e,Fn);this.leftPoints.splice(a,0,e),this.rightPoints.splice(l,0,e)}},Gn.remove=function(e){var t=this.count-this.leftPoints;if(e[1]<this.mid)return this.left?4*(this.right?this.right.count:0)>3*(t-1)?Un(this,e):2===(o=this.left.remove(e))?(this.left=null,this.count-=1,1):(1===o&&(this.count-=1),o):0;if(e[0]>this.mid)return this.right?4*(this.left?this.left.count:0)>3*(t-1)?Un(this,e):2===(o=this.right.remove(e))?(this.right=null,this.count-=1,1):(1===o&&(this.count-=1),o):0;if(1===this.count)return this.leftPoints[0]===e?2:0;if(1===this.leftPoints.length&&this.leftPoints[0]===e){if(this.left&&this.right){for(var a=this,l=this.left;l.right;)a=l,l=l.right;if(a===this)l.right=this.right;else{var i=this.left,o=this.right;a.count-=l.count,a.right=l.left,l.left=i,l.right=o}Mn(this,l),this.count=(this.left?this.left.count:0)+(this.right?this.right.count:0)+this.leftPoints.length}else this.left?Mn(this,this.left):Mn(this,this.right);return 1}for(i=xn(this.leftPoints,e,jn);i<this.leftPoints.length&&this.leftPoints[i][0]===e[0];++i)if(this.leftPoints[i]===e)for(this.count-=1,this.leftPoints.splice(i,1),o=xn(this.rightPoints,e,Fn);o<this.rightPoints.length&&this.rightPoints[o][1]===e[1];++o)if(this.rightPoints[o]===e)return this.rightPoints.splice(o,1),1;return 0},Gn.queryPoint=function(e,t){return e<this.mid?this.left&&(a=this.left.queryPoint(e,t))?a:En(this.leftPoints,e,t):e>this.mid?this.right&&(a=this.right.queryPoint(e,t))?a:On(this.rightPoints,e,t):Ln(this.leftPoints,t);var a},Gn.queryInterval=function(e,t,a){var l;return e<this.mid&&this.left&&(l=this.left.queryInterval(e,t,a))||t>this.mid&&this.right&&(l=this.right.queryInterval(e,t,a))?l:t<this.mid?En(this.leftPoints,t,a):e>this.mid?On(this.rightPoints,e,a):Ln(this.leftPoints,a)};var Nn=Dn.prototype;Nn.insert=function(e){this.root?this.root.insert(e):this.root=new An(e[0],null,null,[e],[e])},Nn.remove=function(e){if(this.root){var t=this.root.remove(e);return 2===t&&(this.root=null),0!==t}return!1},Nn.queryPoint=function(e,t){if(this.root)return this.root.queryPoint(e,t)},Nn.queryInterval=function(e,t,a){if(e<=t&&this.root)return this.root.queryInterval(e,t,a)},Object.defineProperty(Nn,"count",{get:function(){return this.root?this.root.count:0}}),Object.defineProperty(Nn,"intervals",{get:function(){return this.root?this.root.intervals([]):[]}});var In,Vn,Wn=function(){function e(){to()(this,e),go()(this,"_columnSizeMap",{}),go()(this,"_intervalTree",new Dn(null)),go()(this,"_leftMap",{})}return lo()(e,[{key:"estimateTotalHeight",value:function(e,t,a){var l=e-this.count;return this.tallestColumnSize+Math.ceil(l/t)*a}},{key:"range",value:function(e,t,a){var l=this;this._intervalTree.queryInterval(e,e+t,(function(e){var t=Pn()(e,3),i=t[0],o=(t[1],t[2]);return a(o,l._leftMap[o],i)}))}},{key:"setPosition",value:function(e,t,a,l){this._intervalTree.insert([a,a+l,e]),this._leftMap[e]=t;var i=this._columnSizeMap,o=i[t];i[t]=void 0===o?a+l:Math.max(o,a+l)}},{key:"count",get:function(){return this._intervalTree.count}},{key:"shortestColumnSize",get:function(){var e=this._columnSizeMap,t=0;for(var a in e){var l=e[a];t=0===t?l:Math.min(t,l)}return t}},{key:"tallestColumnSize",get:function(){var e=this._columnSizeMap,t=0;for(var a in e){var l=e[a];t=Math.max(t,l)}return t}}]),e}();function qn(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function Zn(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?qn(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):qn(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var $n=(Vn=In=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"state",{isScrolling:!1,scrollTop:0}),go()(co()(a),"_debounceResetIsScrollingId",void 0),go()(co()(a),"_invalidateOnUpdateStartIndex",null),go()(co()(a),"_invalidateOnUpdateStopIndex",null),go()(co()(a),"_positionCache",new Wn),go()(co()(a),"_startIndex",null),go()(co()(a),"_startIndexMemoized",null),go()(co()(a),"_stopIndex",null),go()(co()(a),"_stopIndexMemoized",null),go()(co()(a),"_debounceResetIsScrollingCallback",(function(){a.setState({isScrolling:!1})})),go()(co()(a),"_setScrollingContainerRef",(function(e){a._scrollingContainer=e})),go()(co()(a),"_onScroll",(function(e){var t=a.props.height,l=e.currentTarget.scrollTop,i=Math.min(Math.max(0,a._getEstimatedTotalHeight()-t),l);l===i&&(a._debounceResetIsScrolling(),a.state.scrollTop!==i&&a.setState({isScrolling:!0,scrollTop:i}))})),a}return po()(t,e),lo()(t,[{key:"clearCellPositions",value:function(){this._positionCache=new Wn,this.forceUpdate()}},{key:"invalidateCellSizeAfterRender",value:function(e){var t=e.rowIndex;null===this._invalidateOnUpdateStartIndex?(this._invalidateOnUpdateStartIndex=t,this._invalidateOnUpdateStopIndex=t):(this._invalidateOnUpdateStartIndex=Math.min(this._invalidateOnUpdateStartIndex,t),this._invalidateOnUpdateStopIndex=Math.max(this._invalidateOnUpdateStopIndex,t))}},{key:"recomputeCellPositions",value:function(){var e=this._positionCache.count-1;this._positionCache=new Wn,this._populatePositionCache(0,e),this.forceUpdate()}},{key:"componentDidMount",value:function(){this._checkInvalidateOnUpdate(),this._invokeOnScrollCallback(),this._invokeOnCellsRenderedCallback()}},{key:"componentDidUpdate",value:function(e,t){this._checkInvalidateOnUpdate(),this._invokeOnScrollCallback(),this._invokeOnCellsRenderedCallback(),this.props.scrollTop!==e.scrollTop&&this._debounceResetIsScrolling()}},{key:"componentWillUnmount",value:function(){this._debounceResetIsScrollingId&&No(this._debounceResetIsScrollingId)}},{key:"render",value:function(){var e,t=this,a=this.props,l=a.autoHeight,i=a.cellCount,o=a.cellMeasurerCache,n=a.cellRenderer,r=a.className,s=a.height,c=a.id,u=a.keyMapper,p=a.overscanByPixels,b=a.role,d=a.style,g=a.tabIndex,m=a.width,y=a.rowDirection,f=this.state,h=f.isScrolling,v=f.scrollTop,_=[],T=this._getEstimatedTotalHeight(),C=this._positionCache.shortestColumnSize,S=this._positionCache.count,w=0;if(this._positionCache.range(Math.max(0,v-p),s+2*p,(function(a,l,i){var r;void 0===e?(w=a,e=a):(w=Math.min(w,a),e=Math.max(e,a)),_.push(n({index:a,isScrolling:h,key:u(a),parent:t,style:(r={height:o.getHeight(a)},go()(r,"ltr"===y?"left":"right",l),go()(r,"position","absolute"),go()(r,"top",i),go()(r,"width",o.getWidth(a)),r)}))})),C<v+s+p&&S<i)for(var k=Math.min(i-S,Math.ceil((v+s+p-C)/o.defaultHeight*m/o.defaultWidth)),P=S;P<S+k;P++)e=P,_.push(n({index:P,isScrolling:h,key:u(P),parent:this,style:{width:o.getWidth(P)}}));return this._startIndex=w,this._stopIndex=e,mo.createElement("div",{ref:this._setScrollingContainerRef,"aria-label":this.props["aria-label"],className:wo("ReactVirtualized__Masonry",r),id:c,onScroll:this._onScroll,role:b,style:Zn({boxSizing:"border-box",direction:"ltr",height:l?"auto":s,overflowX:"hidden",overflowY:T<s?"hidden":"auto",position:"relative",width:m,WebkitOverflowScrolling:"touch",willChange:"transform"},d),tabIndex:g},mo.createElement("div",{className:"ReactVirtualized__Masonry__innerScrollContainer",style:{width:"100%",height:T,maxWidth:"100%",maxHeight:T,overflow:"hidden",pointerEvents:h?"none":"",position:"relative"}},_))}},{key:"_checkInvalidateOnUpdate",value:function(){if("number"==typeof this._invalidateOnUpdateStartIndex){var e=this._invalidateOnUpdateStartIndex,t=this._invalidateOnUpdateStopIndex;this._invalidateOnUpdateStartIndex=null,this._invalidateOnUpdateStopIndex=null,this._populatePositionCache(e,t),this.forceUpdate()}}},{key:"_debounceResetIsScrolling",value:function(){var e=this.props.scrollingResetTimeInterval;this._debounceResetIsScrollingId&&No(this._debounceResetIsScrollingId),this._debounceResetIsScrollingId=Io(this._debounceResetIsScrollingCallback,e)}},{key:"_getEstimatedTotalHeight",value:function(){var e=this.props,t=e.cellCount,a=e.cellMeasurerCache,l=e.width,i=Math.max(1,Math.floor(l/a.defaultWidth));return this._positionCache.estimateTotalHeight(t,i,a.defaultHeight)}},{key:"_invokeOnScrollCallback",value:function(){var e=this.props,t=e.height,a=e.onScroll,l=this.state.scrollTop;this._onScrollMemoized!==l&&(a({clientHeight:t,scrollHeight:this._getEstimatedTotalHeight(),scrollTop:l}),this._onScrollMemoized=l)}},{key:"_invokeOnCellsRenderedCallback",value:function(){this._startIndexMemoized===this._startIndex&&this._stopIndexMemoized===this._stopIndex||((0,this.props.onCellsRendered)({startIndex:this._startIndex,stopIndex:this._stopIndex}),this._startIndexMemoized=this._startIndex,this._stopIndexMemoized=this._stopIndex)}},{key:"_populatePositionCache",value:function(e,t){for(var a=this.props,l=a.cellMeasurerCache,i=a.cellPositioner,o=e;o<=t;o++){var n=i(o),r=n.left,s=n.top;this._positionCache.setPosition(o,r,s,l.getHeight(o))}}}],[{key:"getDerivedStateFromProps",value:function(e,t){return void 0!==e.scrollTop&&t.scrollTop!==e.scrollTop?{isScrolling:!0,scrollTop:e.scrollTop}:null}}]),t}(mo.PureComponent),go()(In,"propTypes",null),Vn);function Yn(){}go()($n,"defaultProps",{autoHeight:!1,keyMapper:function(e){return e},onCellsRendered:Yn,onScroll:Yn,overscanByPixels:20,role:"grid",scrollingResetTimeInterval:150,style:{},tabIndex:0,rowDirection:"ltr"}),_o($n);var Kn=function(){function e(){var t=this,a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};to()(this,e),go()(this,"_cellMeasurerCache",void 0),go()(this,"_columnIndexOffset",void 0),go()(this,"_rowIndexOffset",void 0),go()(this,"columnWidth",(function(e){var a=e.index;t._cellMeasurerCache.columnWidth({index:a+t._columnIndexOffset})})),go()(this,"rowHeight",(function(e){var a=e.index;t._cellMeasurerCache.rowHeight({index:a+t._rowIndexOffset})}));var l=a.cellMeasurerCache,i=a.columnIndexOffset,o=void 0===i?0:i,n=a.rowIndexOffset,r=void 0===n?0:n;this._cellMeasurerCache=l,this._columnIndexOffset=o,this._rowIndexOffset=r}return lo()(e,[{key:"clear",value:function(e,t){this._cellMeasurerCache.clear(e+this._rowIndexOffset,t+this._columnIndexOffset)}},{key:"clearAll",value:function(){this._cellMeasurerCache.clearAll()}},{key:"hasFixedHeight",value:function(){return this._cellMeasurerCache.hasFixedHeight()}},{key:"hasFixedWidth",value:function(){return this._cellMeasurerCache.hasFixedWidth()}},{key:"getHeight",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return this._cellMeasurerCache.getHeight(e+this._rowIndexOffset,t+this._columnIndexOffset)}},{key:"getWidth",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return this._cellMeasurerCache.getWidth(e+this._rowIndexOffset,t+this._columnIndexOffset)}},{key:"has",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return this._cellMeasurerCache.has(e+this._rowIndexOffset,t+this._columnIndexOffset)}},{key:"set",value:function(e,t,a,l){this._cellMeasurerCache.set(e+this._rowIndexOffset,t+this._columnIndexOffset,a,l)}},{key:"defaultHeight",get:function(){return this._cellMeasurerCache.defaultHeight}},{key:"defaultWidth",get:function(){return this._cellMeasurerCache.defaultWidth}}]),e}();function Jn(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function Xn(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?Jn(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):Jn(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var Qn=function(e){function t(e,a){var l;to()(this,t),l=oo()(this,ro()(t).call(this,e,a)),go()(co()(l),"state",{scrollLeft:0,scrollTop:0,scrollbarSize:0,showHorizontalScrollbar:!1,showVerticalScrollbar:!1}),go()(co()(l),"_deferredInvalidateColumnIndex",null),go()(co()(l),"_deferredInvalidateRowIndex",null),go()(co()(l),"_bottomLeftGridRef",(function(e){l._bottomLeftGrid=e})),go()(co()(l),"_bottomRightGridRef",(function(e){l._bottomRightGrid=e})),go()(co()(l),"_cellRendererBottomLeftGrid",(function(e){var t=e.rowIndex,a=xo()(e,["rowIndex"]),i=l.props,o=i.cellRenderer,n=i.fixedRowCount;return t===i.rowCount-n?mo.createElement("div",{key:a.key,style:Xn({},a.style,{height:20})}):o(Xn({},a,{parent:co()(l),rowIndex:t+n}))})),go()(co()(l),"_cellRendererBottomRightGrid",(function(e){var t=e.columnIndex,a=e.rowIndex,i=xo()(e,["columnIndex","rowIndex"]),o=l.props,n=o.cellRenderer,r=o.fixedColumnCount,s=o.fixedRowCount;return n(Xn({},i,{columnIndex:t+r,parent:co()(l),rowIndex:a+s}))})),go()(co()(l),"_cellRendererTopRightGrid",(function(e){var t=e.columnIndex,a=xo()(e,["columnIndex"]),i=l.props,o=i.cellRenderer,n=i.columnCount,r=i.fixedColumnCount;return t===n-r?mo.createElement("div",{key:a.key,style:Xn({},a.style,{width:20})}):o(Xn({},a,{columnIndex:t+r,parent:co()(l)}))})),go()(co()(l),"_columnWidthRightGrid",(function(e){var t=e.index,a=l.props,i=a.columnCount,o=a.fixedColumnCount,n=a.columnWidth,r=l.state,s=r.scrollbarSize;return r.showHorizontalScrollbar&&t===i-o?s:"function"==typeof n?n({index:t+o}):n})),go()(co()(l),"_onScroll",(function(e){var t=e.scrollLeft,a=e.scrollTop;l.setState({scrollLeft:t,scrollTop:a});var i=l.props.onScroll;i&&i(e)})),go()(co()(l),"_onScrollbarPresenceChange",(function(e){var t=e.horizontal,a=e.size,i=e.vertical,o=l.state,n=o.showHorizontalScrollbar,r=o.showVerticalScrollbar;if(t!==n||i!==r){l.setState({scrollbarSize:a,showHorizontalScrollbar:t,showVerticalScrollbar:i});var s=l.props.onScrollbarPresenceChange;"function"==typeof s&&s({horizontal:t,size:a,vertical:i})}})),go()(co()(l),"_onScrollLeft",(function(e){var t=e.scrollLeft;l._onScroll({scrollLeft:t,scrollTop:l.state.scrollTop})})),go()(co()(l),"_onScrollTop",(function(e){var t=e.scrollTop;l._onScroll({scrollTop:t,scrollLeft:l.state.scrollLeft})})),go()(co()(l),"_rowHeightBottomGrid",(function(e){var t=e.index,a=l.props,i=a.fixedRowCount,o=a.rowCount,n=a.rowHeight,r=l.state,s=r.scrollbarSize;return r.showVerticalScrollbar&&t===o-i?s:"function"==typeof n?n({index:t+i}):n})),go()(co()(l),"_topLeftGridRef",(function(e){l._topLeftGrid=e})),go()(co()(l),"_topRightGridRef",(function(e){l._topRightGrid=e}));var i=e.deferredMeasurementCache,o=e.fixedColumnCount,n=e.fixedRowCount;return l._maybeCalculateCachedStyles(!0),i&&(l._deferredMeasurementCacheBottomLeftGrid=n>0?new Kn({cellMeasurerCache:i,columnIndexOffset:0,rowIndexOffset:n}):i,l._deferredMeasurementCacheBottomRightGrid=o>0||n>0?new Kn({cellMeasurerCache:i,columnIndexOffset:o,rowIndexOffset:n}):i,l._deferredMeasurementCacheTopRightGrid=o>0?new Kn({cellMeasurerCache:i,columnIndexOffset:o,rowIndexOffset:0}):i),l}return po()(t,e),lo()(t,[{key:"forceUpdateGrids",value:function(){this._bottomLeftGrid&&this._bottomLeftGrid.forceUpdate(),this._bottomRightGrid&&this._bottomRightGrid.forceUpdate(),this._topLeftGrid&&this._topLeftGrid.forceUpdate(),this._topRightGrid&&this._topRightGrid.forceUpdate()}},{key:"invalidateCellSizeAfterRender",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.columnIndex,a=void 0===t?0:t,l=e.rowIndex,i=void 0===l?0:l;this._deferredInvalidateColumnIndex="number"==typeof this._deferredInvalidateColumnIndex?Math.min(this._deferredInvalidateColumnIndex,a):a,this._deferredInvalidateRowIndex="number"==typeof this._deferredInvalidateRowIndex?Math.min(this._deferredInvalidateRowIndex,i):i}},{key:"measureAllCells",value:function(){this._bottomLeftGrid&&this._bottomLeftGrid.measureAllCells(),this._bottomRightGrid&&this._bottomRightGrid.measureAllCells(),this._topLeftGrid&&this._topLeftGrid.measureAllCells(),this._topRightGrid&&this._topRightGrid.measureAllCells()}},{key:"recomputeGridSize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.columnIndex,a=void 0===t?0:t,l=e.rowIndex,i=void 0===l?0:l,o=this.props,n=o.fixedColumnCount,r=o.fixedRowCount,s=Math.max(0,a-n),c=Math.max(0,i-r);this._bottomLeftGrid&&this._bottomLeftGrid.recomputeGridSize({columnIndex:a,rowIndex:c}),this._bottomRightGrid&&this._bottomRightGrid.recomputeGridSize({columnIndex:s,rowIndex:c}),this._topLeftGrid&&this._topLeftGrid.recomputeGridSize({columnIndex:a,rowIndex:i}),this._topRightGrid&&this._topRightGrid.recomputeGridSize({columnIndex:s,rowIndex:i}),this._leftGridWidth=null,this._topGridHeight=null,this._maybeCalculateCachedStyles(!0)}},{key:"componentDidMount",value:function(){var e=this.props,t=e.scrollLeft,a=e.scrollTop;if(t>0||a>0){var l={};t>0&&(l.scrollLeft=t),a>0&&(l.scrollTop=a),this.setState(l)}this._handleInvalidatedGridSize()}},{key:"componentDidUpdate",value:function(){this._handleInvalidatedGridSize()}},{key:"render",value:function(){var e=this.props,t=e.onScroll,a=e.onSectionRendered,l=(e.onScrollbarPresenceChange,e.scrollLeft,e.scrollToColumn),i=(e.scrollTop,e.scrollToRow),o=xo()(e,["onScroll","onSectionRendered","onScrollbarPresenceChange","scrollLeft","scrollToColumn","scrollTop","scrollToRow"]);if(this._prepareForRender(),0===this.props.width||0===this.props.height)return null;var n=this.state,r=n.scrollLeft,s=n.scrollTop;return mo.createElement("div",{style:this._containerOuterStyle},mo.createElement("div",{style:this._containerTopStyle},this._renderTopLeftGrid(o),this._renderTopRightGrid(Xn({},o,{onScroll:t,scrollLeft:r}))),mo.createElement("div",{style:this._containerBottomStyle},this._renderBottomLeftGrid(Xn({},o,{onScroll:t,scrollTop:s})),this._renderBottomRightGrid(Xn({},o,{onScroll:t,onSectionRendered:a,scrollLeft:r,scrollToColumn:l,scrollToRow:i,scrollTop:s}))))}},{key:"_getBottomGridHeight",value:function(e){return e.height-this._getTopGridHeight(e)}},{key:"_getLeftGridWidth",value:function(e){var t=e.fixedColumnCount,a=e.columnWidth;if(null==this._leftGridWidth)if("function"==typeof a){for(var l=0,i=0;i<t;i++)l+=a({index:i});this._leftGridWidth=l}else this._leftGridWidth=a*t;return this._leftGridWidth}},{key:"_getRightGridWidth",value:function(e){return e.width-this._getLeftGridWidth(e)}},{key:"_getTopGridHeight",value:function(e){var t=e.fixedRowCount,a=e.rowHeight;if(null==this._topGridHeight)if("function"==typeof a){for(var l=0,i=0;i<t;i++)l+=a({index:i});this._topGridHeight=l}else this._topGridHeight=a*t;return this._topGridHeight}},{key:"_handleInvalidatedGridSize",value:function(){if("number"==typeof this._deferredInvalidateColumnIndex){var e=this._deferredInvalidateColumnIndex,t=this._deferredInvalidateRowIndex;this._deferredInvalidateColumnIndex=null,this._deferredInvalidateRowIndex=null,this.recomputeGridSize({columnIndex:e,rowIndex:t}),this.forceUpdate()}}},{key:"_maybeCalculateCachedStyles",value:function(e){var t=this.props,a=t.columnWidth,l=t.enableFixedColumnScroll,i=t.enableFixedRowScroll,o=t.height,n=t.fixedColumnCount,r=t.fixedRowCount,s=t.rowHeight,c=t.style,u=t.styleBottomLeftGrid,p=t.styleBottomRightGrid,b=t.styleTopLeftGrid,d=t.styleTopRightGrid,g=t.width,m=e||o!==this._lastRenderedHeight||g!==this._lastRenderedWidth,y=e||a!==this._lastRenderedColumnWidth||n!==this._lastRenderedFixedColumnCount,f=e||r!==this._lastRenderedFixedRowCount||s!==this._lastRenderedRowHeight;(e||m||c!==this._lastRenderedStyle)&&(this._containerOuterStyle=Xn({height:o,overflow:"visible",width:g},c)),(e||m||f)&&(this._containerTopStyle={height:this._getTopGridHeight(this.props),position:"relative",width:g},this._containerBottomStyle={height:o-this._getTopGridHeight(this.props),overflow:"visible",position:"relative",width:g}),(e||u!==this._lastRenderedStyleBottomLeftGrid)&&(this._bottomLeftGridStyle=Xn({left:0,overflowX:"hidden",overflowY:l?"auto":"hidden",position:"absolute"},u)),(e||y||p!==this._lastRenderedStyleBottomRightGrid)&&(this._bottomRightGridStyle=Xn({left:this._getLeftGridWidth(this.props),position:"absolute"},p)),(e||b!==this._lastRenderedStyleTopLeftGrid)&&(this._topLeftGridStyle=Xn({left:0,overflowX:"hidden",overflowY:"hidden",position:"absolute",top:0},b)),(e||y||d!==this._lastRenderedStyleTopRightGrid)&&(this._topRightGridStyle=Xn({left:this._getLeftGridWidth(this.props),overflowX:i?"auto":"hidden",overflowY:"hidden",position:"absolute",top:0},d)),this._lastRenderedColumnWidth=a,this._lastRenderedFixedColumnCount=n,this._lastRenderedFixedRowCount=r,this._lastRenderedHeight=o,this._lastRenderedRowHeight=s,this._lastRenderedStyle=c,this._lastRenderedStyleBottomLeftGrid=u,this._lastRenderedStyleBottomRightGrid=p,this._lastRenderedStyleTopLeftGrid=b,this._lastRenderedStyleTopRightGrid=d,this._lastRenderedWidth=g}},{key:"_prepareForRender",value:function(){this._lastRenderedColumnWidth===this.props.columnWidth&&this._lastRenderedFixedColumnCount===this.props.fixedColumnCount||(this._leftGridWidth=null),this._lastRenderedFixedRowCount===this.props.fixedRowCount&&this._lastRenderedRowHeight===this.props.rowHeight||(this._topGridHeight=null),this._maybeCalculateCachedStyles(),this._lastRenderedColumnWidth=this.props.columnWidth,this._lastRenderedFixedColumnCount=this.props.fixedColumnCount,this._lastRenderedFixedRowCount=this.props.fixedRowCount,this._lastRenderedRowHeight=this.props.rowHeight}},{key:"_renderBottomLeftGrid",value:function(e){var t=e.enableFixedColumnScroll,a=e.fixedColumnCount,l=e.fixedRowCount,i=e.rowCount,o=e.hideBottomLeftGridScrollbar,n=this.state.showVerticalScrollbar;if(!a)return null;var r=n?1:0,s=this._getBottomGridHeight(e),c=this._getLeftGridWidth(e),u=this.state.showVerticalScrollbar?this.state.scrollbarSize:0,p=o?c+u:c,b=mo.createElement(Yo,Co()({},e,{cellRenderer:this._cellRendererBottomLeftGrid,className:this.props.classNameBottomLeftGrid,columnCount:a,deferredMeasurementCache:this._deferredMeasurementCacheBottomLeftGrid,height:s,onScroll:t?this._onScrollTop:void 0,ref:this._bottomLeftGridRef,rowCount:Math.max(0,i-l)+r,rowHeight:this._rowHeightBottomGrid,style:this._bottomLeftGridStyle,tabIndex:null,width:p}));return o?mo.createElement("div",{className:"BottomLeftGrid_ScrollWrapper",style:Xn({},this._bottomLeftGridStyle,{height:s,width:c,overflowY:"hidden"})},b):b}},{key:"_renderBottomRightGrid",value:function(e){var t=e.columnCount,a=e.fixedColumnCount,l=e.fixedRowCount,i=e.rowCount,o=e.scrollToColumn,n=e.scrollToRow;return mo.createElement(Yo,Co()({},e,{cellRenderer:this._cellRendererBottomRightGrid,className:this.props.classNameBottomRightGrid,columnCount:Math.max(0,t-a),columnWidth:this._columnWidthRightGrid,deferredMeasurementCache:this._deferredMeasurementCacheBottomRightGrid,height:this._getBottomGridHeight(e),onScroll:this._onScroll,onScrollbarPresenceChange:this._onScrollbarPresenceChange,ref:this._bottomRightGridRef,rowCount:Math.max(0,i-l),rowHeight:this._rowHeightBottomGrid,scrollToColumn:o-a,scrollToRow:n-l,style:this._bottomRightGridStyle,width:this._getRightGridWidth(e)}))}},{key:"_renderTopLeftGrid",value:function(e){var t=e.fixedColumnCount,a=e.fixedRowCount;return t&&a?mo.createElement(Yo,Co()({},e,{className:this.props.classNameTopLeftGrid,columnCount:t,height:this._getTopGridHeight(e),ref:this._topLeftGridRef,rowCount:a,style:this._topLeftGridStyle,tabIndex:null,width:this._getLeftGridWidth(e)})):null}},{key:"_renderTopRightGrid",value:function(e){var t=e.columnCount,a=e.enableFixedRowScroll,l=e.fixedColumnCount,i=e.fixedRowCount,o=e.scrollLeft,n=e.hideTopRightGridScrollbar,r=this.state,s=r.showHorizontalScrollbar,c=r.scrollbarSize;if(!i)return null;var u=s?1:0,p=this._getTopGridHeight(e),b=this._getRightGridWidth(e),d=s?c:0,g=p,m=this._topRightGridStyle;n&&(g=p+d,m=Xn({},this._topRightGridStyle,{left:0}));var y=mo.createElement(Yo,Co()({},e,{cellRenderer:this._cellRendererTopRightGrid,className:this.props.classNameTopRightGrid,columnCount:Math.max(0,t-l)+u,columnWidth:this._columnWidthRightGrid,deferredMeasurementCache:this._deferredMeasurementCacheTopRightGrid,height:g,onScroll:a?this._onScrollLeft:void 0,ref:this._topRightGridRef,rowCount:i,scrollLeft:o,style:m,tabIndex:null,width:b}));return n?mo.createElement("div",{className:"TopRightGrid_ScrollWrapper",style:Xn({},this._topRightGridStyle,{height:p,width:b,overflowX:"hidden"})},y):y}}],[{key:"getDerivedStateFromProps",value:function(e,t){return e.scrollLeft!==t.scrollLeft||e.scrollTop!==t.scrollTop?{scrollLeft:null!=e.scrollLeft&&e.scrollLeft>=0?e.scrollLeft:t.scrollLeft,scrollTop:null!=e.scrollTop&&e.scrollTop>=0?e.scrollTop:t.scrollTop}:null}}]),t}(mo.PureComponent);function er(e){var t=e.className,a=e.columns,l=e.style;return mo.createElement("div",{className:t,role:"row",style:l},a)}go()(Qn,"defaultProps",{classNameBottomLeftGrid:"",classNameBottomRightGrid:"",classNameTopLeftGrid:"",classNameTopRightGrid:"",enableFixedColumnScroll:!1,enableFixedRowScroll:!1,fixedColumnCount:0,fixedRowCount:0,scrollToColumn:-1,scrollToRow:-1,style:{},styleBottomLeftGrid:{},styleBottomRightGrid:{},styleTopLeftGrid:{},styleTopRightGrid:{},hideTopRightGridScrollbar:!1,hideBottomLeftGridScrollbar:!1}),Qn.propTypes={},_o(Qn),(function(e){function t(e,a){var l;return to()(this,t),(l=oo()(this,ro()(t).call(this,e,a))).state={clientHeight:0,clientWidth:0,scrollHeight:0,scrollLeft:0,scrollTop:0,scrollWidth:0},l._onScroll=l._onScroll.bind(co()(l)),l}return po()(t,e),lo()(t,[{key:"render",value:function(){var e=this.props.children,t=this.state,a=t.clientHeight,l=t.clientWidth,i=t.scrollHeight,o=t.scrollLeft,n=t.scrollTop,r=t.scrollWidth;return e({clientHeight:a,clientWidth:l,onScroll:this._onScroll,scrollHeight:i,scrollLeft:o,scrollTop:n,scrollWidth:r})}},{key:"_onScroll",value:function(e){var t=e.clientHeight,a=e.clientWidth,l=e.scrollHeight,i=e.scrollLeft,o=e.scrollTop,n=e.scrollWidth;this.setState({clientHeight:t,clientWidth:a,scrollHeight:l,scrollLeft:i,scrollTop:o,scrollWidth:n})}}]),t}(mo.PureComponent)).propTypes={},er.propTypes=null;var tr="ASC",ar="DESC";function lr(e){var t=e.sortDirection,a=wo("ReactVirtualized__Table__sortableHeaderIcon",{"ReactVirtualized__Table__sortableHeaderIcon--ASC":t===tr,"ReactVirtualized__Table__sortableHeaderIcon--DESC":t===ar});return mo.createElement("svg",{className:a,width:18,height:18,viewBox:"0 0 24 24"},t===tr?mo.createElement("path",{d:"M7 14l5-5 5 5z"}):mo.createElement("path",{d:"M7 10l5 5 5-5z"}),mo.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}))}function ir(e){var t=e.dataKey,a=e.label,l=e.sortBy,i=e.sortDirection,o=l===t,n=[mo.createElement("span",{className:"ReactVirtualized__Table__headerTruncatedText",key:"label",title:"string"==typeof a?a:null},a)];return o&&n.push(mo.createElement(lr,{key:"SortIndicator",sortDirection:i})),n}function or(e){var t=e.className,a=e.columns,l=e.index,i=e.key,o=e.onRowClick,n=e.onRowDoubleClick,r=e.onRowMouseOut,s=e.onRowMouseOver,c=e.onRowRightClick,u=e.rowData,p=e.style,b={"aria-rowindex":l+1};return(o||n||r||s||c)&&(b["aria-label"]="row",b.tabIndex=0,o&&(b.onClick=function(e){return o({event:e,index:l,rowData:u})}),n&&(b.onDoubleClick=function(e){return n({event:e,index:l,rowData:u})}),r&&(b.onMouseOut=function(e){return r({event:e,index:l,rowData:u})}),s&&(b.onMouseOver=function(e){return s({event:e,index:l,rowData:u})}),c&&(b.onContextMenu=function(e){return c({event:e,index:l,rowData:u})})),mo.createElement("div",Co()({},b,{className:t,key:i,role:"row",style:p}),a)}lr.propTypes={},ir.propTypes=null,or.propTypes=null;var nr=function(e){function t(){return to()(this,t),oo()(this,ro()(t).apply(this,arguments))}return po()(t,e),t}(mo.Component);function rr(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function sr(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?rr(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):rr(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}go()(nr,"defaultProps",{cellDataGetter:function(e){var t=e.dataKey,a=e.rowData;return"function"==typeof a.get?a.get(t):a[t]},cellRenderer:function(e){var t=e.cellData;return null==t?"":String(t)},defaultSortDirection:tr,flexGrow:0,flexShrink:1,headerRenderer:ir,style:{}}),nr.propTypes={};var cr=function(e){function t(e){var a;return to()(this,t),(a=oo()(this,ro()(t).call(this,e))).state={scrollbarWidth:0},a._createColumn=a._createColumn.bind(co()(a)),a._createRow=a._createRow.bind(co()(a)),a._onScroll=a._onScroll.bind(co()(a)),a._onSectionRendered=a._onSectionRendered.bind(co()(a)),a._setRef=a._setRef.bind(co()(a)),a}return po()(t,e),lo()(t,[{key:"forceUpdateGrid",value:function(){this.Grid&&this.Grid.forceUpdate()}},{key:"getOffsetForRow",value:function(e){var t=e.alignment,a=e.index;return this.Grid?this.Grid.getOffsetForCell({alignment:t,rowIndex:a}).scrollTop:0}},{key:"invalidateCellSizeAfterRender",value:function(e){var t=e.columnIndex,a=e.rowIndex;this.Grid&&this.Grid.invalidateCellSizeAfterRender({rowIndex:a,columnIndex:t})}},{key:"measureAllRows",value:function(){this.Grid&&this.Grid.measureAllCells()}},{key:"recomputeGridSize",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.columnIndex,a=void 0===t?0:t,l=e.rowIndex,i=void 0===l?0:l;this.Grid&&this.Grid.recomputeGridSize({rowIndex:i,columnIndex:a})}},{key:"recomputeRowHeights",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.recomputeGridSize({rowIndex:e})}},{key:"scrollToPosition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.scrollToPosition({scrollTop:e})}},{key:"scrollToRow",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0;this.Grid&&this.Grid.scrollToCell({columnIndex:0,rowIndex:e})}},{key:"getScrollbarWidth",value:function(){if(this.Grid){var e=Object(sn.findDOMNode)(this.Grid),t=e.clientWidth||0;return(e.offsetWidth||0)-t}return 0}},{key:"componentDidMount",value:function(){this._setScrollbarWidth()}},{key:"componentDidUpdate",value:function(){this._setScrollbarWidth()}},{key:"render",value:function(){var e=this,t=this.props,a=t.children,l=t.className,i=t.disableHeader,o=t.gridClassName,n=t.gridStyle,r=t.headerHeight,s=t.headerRowRenderer,c=t.height,u=t.id,p=t.noRowsRenderer,b=t.rowClassName,d=t.rowStyle,g=t.scrollToIndex,m=t.style,y=t.width,f=this.state.scrollbarWidth,h=i?c:c-r,v="function"==typeof b?b({index:-1}):b,_="function"==typeof d?d({index:-1}):d;return this._cachedColumnStyles=[],mo.Children.toArray(a).forEach((function(t,a){var l=e._getFlexStyleForColumn(t,t.props.style);e._cachedColumnStyles[a]=sr({overflow:"hidden"},l)})),mo.createElement("div",{"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],"aria-colcount":mo.Children.toArray(a).length,"aria-rowcount":this.props.rowCount,className:wo("ReactVirtualized__Table",l),id:u,role:"grid",style:m},!i&&s({className:wo("ReactVirtualized__Table__headerRow",v),columns:this._getHeaderColumns(),style:sr({height:r,overflow:"hidden",paddingRight:f,width:y},_)}),mo.createElement(Yo,Co()({},this.props,{"aria-readonly":null,autoContainerWidth:!0,className:wo("ReactVirtualized__Table__Grid",o),cellRenderer:this._createRow,columnWidth:y,columnCount:1,height:h,id:void 0,noContentRenderer:p,onScroll:this._onScroll,onSectionRendered:this._onSectionRendered,ref:this._setRef,role:"rowgroup",scrollbarWidth:f,scrollToRow:g,style:sr({},n,{overflowX:"hidden"})})))}},{key:"_createColumn",value:function(e){var t=e.column,a=e.columnIndex,l=e.isScrolling,i=e.parent,o=e.rowData,n=e.rowIndex,r=this.props.onColumnClick,s=t.props,c=s.cellDataGetter,u=s.cellRenderer,p=s.className,b=s.columnData,d=s.dataKey,g=s.id,m=u({cellData:c({columnData:b,dataKey:d,rowData:o}),columnData:b,columnIndex:a,dataKey:d,isScrolling:l,parent:i,rowData:o,rowIndex:n}),y=this._cachedColumnStyles[a],f="string"==typeof m?m:null;return mo.createElement("div",{"aria-colindex":a+1,"aria-describedby":g,className:wo("ReactVirtualized__Table__rowColumn",p),key:"Row"+n+"-Col"+a,onClick:function(e){r&&r({columnData:b,dataKey:d,event:e})},role:"gridcell",style:y,title:f},m)}},{key:"_createHeader",value:function(e){var t,a,l,i,o,n=e.column,r=e.index,s=this.props,c=s.headerClassName,u=s.headerStyle,p=s.onHeaderClick,b=s.sort,d=s.sortBy,g=s.sortDirection,m=n.props,y=m.columnData,f=m.dataKey,h=m.defaultSortDirection,v=m.disableSort,_=m.headerRenderer,T=m.id,C=m.label,S=!v&&b,w=wo("ReactVirtualized__Table__headerColumn",c,n.props.headerClassName,{ReactVirtualized__Table__sortableHeaderColumn:S}),k=this._getFlexStyleForColumn(n,sr({},u,{},n.props.headerStyle)),P=_({columnData:y,dataKey:f,disableSort:v,label:C,sortBy:d,sortDirection:g});if(S||p){var x=d!==f?h:g===ar?tr:ar,A=function(e){S&&b({defaultSortDirection:h,event:e,sortBy:f,sortDirection:x}),p&&p({columnData:y,dataKey:f,event:e})};o=n.props["aria-label"]||C||f,i="none",l=0,t=A,a=function(e){"Enter"!==e.key&&" "!==e.key||A(e)}}return d===f&&(i=g===tr?"ascending":"descending"),mo.createElement("div",{"aria-label":o,"aria-sort":i,className:w,id:T,key:"Header-Col"+r,onClick:t,onKeyDown:a,role:"columnheader",style:k,tabIndex:l},P)}},{key:"_createRow",value:function(e){var t=this,a=e.rowIndex,l=e.isScrolling,i=e.key,o=e.parent,n=e.style,r=this.props,s=r.children,c=r.onRowClick,u=r.onRowDoubleClick,p=r.onRowRightClick,b=r.onRowMouseOver,d=r.onRowMouseOut,g=r.rowClassName,m=r.rowGetter,y=r.rowRenderer,f=r.rowStyle,h=this.state.scrollbarWidth,v="function"==typeof g?g({index:a}):g,_="function"==typeof f?f({index:a}):f,T=m({index:a}),C=mo.Children.toArray(s).map((function(e,i){return t._createColumn({column:e,columnIndex:i,isScrolling:l,parent:o,rowData:T,rowIndex:a,scrollbarWidth:h})})),S=wo("ReactVirtualized__Table__row",v),w=sr({},n,{height:this._getRowHeight(a),overflow:"hidden",paddingRight:h},_);return y({className:S,columns:C,index:a,isScrolling:l,key:i,onRowClick:c,onRowDoubleClick:u,onRowRightClick:p,onRowMouseOver:b,onRowMouseOut:d,rowData:T,style:w})}},{key:"_getFlexStyleForColumn",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a="".concat(e.props.flexGrow," ").concat(e.props.flexShrink," ").concat(e.props.width,"px"),l=sr({},t,{flex:a,msFlex:a,WebkitFlex:a});return e.props.maxWidth&&(l.maxWidth=e.props.maxWidth),e.props.minWidth&&(l.minWidth=e.props.minWidth),l}},{key:"_getHeaderColumns",value:function(){var e=this,t=this.props,a=t.children;return(t.disableHeader?[]:mo.Children.toArray(a)).map((function(t,a){return e._createHeader({column:t,index:a})}))}},{key:"_getRowHeight",value:function(e){var t=this.props.rowHeight;return"function"==typeof t?t({index:e}):t}},{key:"_onScroll",value:function(e){var t=e.clientHeight,a=e.scrollHeight,l=e.scrollTop;(0,this.props.onScroll)({clientHeight:t,scrollHeight:a,scrollTop:l})}},{key:"_onSectionRendered",value:function(e){var t=e.rowOverscanStartIndex,a=e.rowOverscanStopIndex,l=e.rowStartIndex,i=e.rowStopIndex;(0,this.props.onRowsRendered)({overscanStartIndex:t,overscanStopIndex:a,startIndex:l,stopIndex:i})}},{key:"_setRef",value:function(e){this.Grid=e}},{key:"_setScrollbarWidth",value:function(){var e=this.getScrollbarWidth();this.setState({scrollbarWidth:e})}}]),t}(mo.PureComponent);go()(cr,"defaultProps",{disableHeader:!1,estimatedRowSize:30,headerHeight:0,headerStyle:{},noRowsRenderer:function(){return null},onRowsRendered:function(){return null},onScroll:function(){return null},overscanIndicesGetter:Ko,overscanRowCount:10,rowRenderer:or,headerRowRenderer:er,rowStyle:{},scrollToAlignment:"auto",scrollToIndex:-1,style:{}}),cr.propTypes={};var ur=[],pr=null,br=null;function dr(){br&&(br=null,document.body&&null!=pr&&(document.body.style.pointerEvents=pr),pr=null)}function gr(){dr(),ur.forEach((function(e){return e.__resetIsScrolling()}))}function mr(e){e.currentTarget===window&&null==pr&&document.body&&(pr=document.body.style.pointerEvents,document.body.style.pointerEvents="none"),function(){br&&No(br);var e=0;ur.forEach((function(t){e=Math.max(e,t.props.scrollingResetTimeInterval)})),br=Io(gr,e)}(),ur.forEach((function(t){t.props.scrollElement===e.currentTarget&&t.__handleWindowScrollEvent()}))}function yr(e,t){ur.some((function(e){return e.props.scrollElement===t}))||t.addEventListener("scroll",mr),ur.push(e)}function fr(e,t){(ur=ur.filter((function(t){return t!==e}))).length||(t.removeEventListener("scroll",mr),br&&(No(br),dr()))}var hr,vr,_r=function(e){return e===window},Tr=function(e){return e.getBoundingClientRect()};function Cr(e,t){if(e){if(_r(e)){var a=window,l=a.innerHeight,i=a.innerWidth;return{height:"number"==typeof l?l:0,width:"number"==typeof i?i:0}}return Tr(e)}return{height:t.serverHeight,width:t.serverWidth}}function Sr(e,t){if(_r(t)&&document.documentElement){var a=document.documentElement,l=Tr(e),i=Tr(a);return{top:l.top-i.top,left:l.left-i.left}}var o=wr(t),n=Tr(e),r=Tr(t);return{top:n.top+o.top-r.top,left:n.left+o.left-r.left}}function wr(e){return _r(e)&&document.documentElement?{top:"scrollY"in window?window.scrollY:document.documentElement.scrollTop,left:"scrollX"in window?window.scrollX:document.documentElement.scrollLeft}:{top:e.scrollTop,left:e.scrollLeft}}function kr(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function Pr(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?kr(a,!0).forEach((function(t){go()(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):kr(a).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}var xr=function(){return"undefined"!=typeof window?window:void 0},Ar=(vr=hr=function(e){function t(){var e,a;to()(this,t);for(var l=arguments.length,i=new Array(l),o=0;o<l;o++)i[o]=arguments[o];return a=oo()(this,(e=ro()(t)).call.apply(e,[this].concat(i))),go()(co()(a),"_window",xr()),go()(co()(a),"_isMounted",!1),go()(co()(a),"_positionFromTop",0),go()(co()(a),"_positionFromLeft",0),go()(co()(a),"_detectElementResize",void 0),go()(co()(a),"_child",void 0),go()(co()(a),"state",Pr({},Cr(a.props.scrollElement,a.props),{isScrolling:!1,scrollLeft:0,scrollTop:0})),go()(co()(a),"_registerChild",(function(e){!e||e instanceof Element||console.warn("WindowScroller registerChild expects to be passed Element or null"),a._child=e,a.updatePosition()})),go()(co()(a),"_onChildScroll",(function(e){var t=e.scrollTop;if(a.state.scrollTop!==t){var l=a.props.scrollElement;l&&("function"==typeof l.scrollTo?l.scrollTo(0,t+a._positionFromTop):l.scrollTop=t+a._positionFromTop)}})),go()(co()(a),"_registerResizeListener",(function(e){e===window?window.addEventListener("resize",a._onResize,!1):a._detectElementResize.addResizeListener(e,a._onResize)})),go()(co()(a),"_unregisterResizeListener",(function(e){e===window?window.removeEventListener("resize",a._onResize,!1):e&&a._detectElementResize.removeResizeListener(e,a._onResize)})),go()(co()(a),"_onResize",(function(){a.updatePosition()})),go()(co()(a),"__handleWindowScrollEvent",(function(){if(a._isMounted){var e=a.props.onScroll,t=a.props.scrollElement;if(t){var l=wr(t),i=Math.max(0,l.left-a._positionFromLeft),o=Math.max(0,l.top-a._positionFromTop);a.setState({isScrolling:!0,scrollLeft:i,scrollTop:o}),e({scrollLeft:i,scrollTop:o})}}})),go()(co()(a),"__resetIsScrolling",(function(){a.setState({isScrolling:!1})})),a}return po()(t,e),lo()(t,[{key:"updatePosition",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.props.scrollElement,t=this.props.onResize,a=this.state,l=a.height,i=a.width,o=this._child||sn.findDOMNode(this);if(o instanceof Element&&e){var n=Sr(o,e);this._positionFromTop=n.top,this._positionFromLeft=n.left}var r=Cr(e,this.props);l===r.height&&i===r.width||(this.setState({height:r.height,width:r.width}),t({height:r.height,width:r.width}))}},{key:"componentDidMount",value:function(){var e=this.props.scrollElement;this._detectElementResize=Object(tn.a)(),this.updatePosition(e),e&&(yr(this,e),this._registerResizeListener(e)),this._isMounted=!0}},{key:"componentDidUpdate",value:function(e,t){var a=this.props.scrollElement,l=e.scrollElement;l!==a&&null!=l&&null!=a&&(this.updatePosition(a),fr(this,l),yr(this,a),this._unregisterResizeListener(l),this._registerResizeListener(a))}},{key:"componentWillUnmount",value:function(){var e=this.props.scrollElement;e&&(fr(this,e),this._unregisterResizeListener(e)),this._isMounted=!1}},{key:"render",value:function(){var e=this.props.children,t=this.state,a=t.isScrolling,l=t.scrollTop,i=t.scrollLeft,o=t.height,n=t.width;return e({onChildScroll:this._onChildScroll,registerChild:this._registerChild,height:o,isScrolling:a,scrollLeft:i,scrollTop:l,width:n})}}]),t}(mo.PureComponent),go()(hr,"propTypes",null),vr);go()(Ar,"defaultProps",{onResize:function(){},onScroll:function(){},scrollingResetTimeInterval:150,scrollElement:xr(),serverHeight:0,serverWidth:0});var Gr=e=>{const{searchIconInputValue:t,onClickRemoveSearch:a,searchIcon:l,inputElement:i}=e;return React.createElement("section",{className:"uagb-ip-header"},React.createElement("h2",null,Object(r.__)("Icon Library","ultimate-addons-for-gutenberg")),React.createElement("div",{className:"uagb-ip-search-container"},React.createElement("div",{className:"uagb-ip-search-bar"},""===t?Ce("sistrix"):React.createElement("span",{onClick:a,className:"dashicons dashicons-no-alt"}),React.createElement("input",{type:"text",placeholder:Object(r.__)("Search","ultimate-addons-for-gutenberg"),value:t,onChange:l,ref:i}))))},Mr=e=>{const{value:t,onChange:a,closeModal:l,defaultIcons:i,iconCategoryList:o}=e,n={...uagb_blocks_info.uagb_svg_icons},s=e=>{return t=e,a=8,Array.from({length:Math.ceil(t.length/a)},(e,l)=>t.slice(l*a,l*a+a));var t,a},[c,u]=Object(B.useState)(""),[p,b]=Object(B.useState)(s(i)),[d,g]=Object(B.useState)("all"),[m,y]=Object(B.useState)(i),[f,h]=Object(B.useState)(""),v=Object(B.useRef)(),_=Object(B.useRef)(),[T,C]=Object(B.useState)(null),[S,w]=Object(B.useState)(null),[k,P]=Object(B.useState)(null),x=e=>{const t=null==_?void 0:_.current;return t?"w"===e?t.offsetWidth:t.offsetHeight:null};Object(B.useEffect)(()=>{v.current.focus(),C(x("h")),w(x("w"));const e=p.findIndex(e=>e.includes(t));P(e)},[]);const A=e=>{let t=[];if("all"===e)t=i;else if("no-category"===e)for(const e in n)0===n[e].custom_categories.length&&t.push(e);else for(const a in n)n[a].custom_categories.includes(e)&&t.push(a);g(e),y(t),P(null),b(s(t)),u("")};return React.createElement(Le.Modal,{className:"uagb-ip-modal-wrapper",onRequestClose:l,overlayClassName:"uagb-ip-modal-wrapper-overlay",shouldCloseOnClickOutside:!1,closeButtonLabel:Object(r.__)("Close","ultimate-addons-for-gutenberg")},React.createElement(Gr,{searchIconInputValue:c,onClickRemoveSearch:()=>{A(d),u("")},searchIcon:e=>{const t=e.target.value.toLowerCase();if(""!==t){const e=[...m].filter(e=>{var a;return!(null===(a=n[e])||void 0===a||!a.label)&&-1!==n[e].label.toLowerCase().indexOf(t)});b(s(e))}else A(d);u(t)},inputElement:v}),React.createElement("section",{className:"uagb-ip-lr-container"},React.createElement("div",{className:"uagb-ip-left"},React.createElement("div",{className:"uagb-ip-categories-list"},React.createElement("div",{key:"all",className:"all"===d?"selected":null,onClick:()=>A("all")},Object(r.__)("All Icons","ultimate-addons-for-gutenberg")),o.map((e,t)=>React.createElement("div",{key:t,className:e.slug===d?"selected":null,onClick:()=>A(e.slug)},e.title)),React.createElement("div",{key:"no-category",className:"no-category"===d?"selected":null,onClick:()=>A("no-category")},Object(r.__)("Other","ultimate-addons-for-gutenberg")))),React.createElement("div",{className:"uagb-ip-right"},React.createElement("div",{className:"uagb-ip-modal-container",ref:_},(()=>{if(!p.length)return React.createElement("div",{className:"uagb-ip-icons icon-not-found"},React.createElement("div",{className:"uagb-icon-not-available"},React.createElement("span",null,Object(r.__)("No Icons Found","ultimate-addons-for-gutenberg"))));const e=S/8;return React.createElement("div",{className:"uagb-ip-icons"},React.createElement(Yo,{cellRenderer:function(e){var a;const{columnIndex:l,key:i,rowIndex:o,style:r}=e,s=p[o][l];if(!s)return null;const c=Z(["uagb-icon-item",t===s&&"default",s===f&&"selected"]),u=null!==(a=n[s])&&void 0!==a&&a.label?n[s].label:"";return React.createElement("div",{key:i,style:r},React.createElement("div",{className:c,onClick:()=>{t!==s&&h(s)}},Ce(s),React.createElement(Le.Tooltip,{text:u},React.createElement("span",null,(e=>e?e.length<11?e:e.slice(0,10)+"..":"")(u)))))},columnCount:p[0].length,columnWidth:8===p[0].length?e-2:100,height:T,rowCount:p.length,rowHeight:8===p[0].length?e:100,width:S,scrollToRow:k,autoContainerWidth:!0}))})()))),React.createElement("section",{className:"uagb-ip-footer"},React.createElement("button",{className:""===f?"disable":null,onClick:""!==f?()=>{a(f),l()}:null},Object(r.__)("Insert Icon","ultimate-addons-for-gutenberg"))))};function Rr(){return(Rr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Br,Ur=e=>{Object(B.useLayoutEffect)(()=>(Qi.use(),()=>{Qi.unuse()}),[]);const{label:t,value:a,onChange:l,help:i=!1}=e,o=[...wp.UAGBSvgIcons],n=[...wp.uagb_icon_category_list],[s,c]=Object(B.useState)(!1),u=()=>c(!0),p=a&&""!==a,b=React.createElement("div",{className:"uag-ip-placeholder-wrap"},p&&React.createElement("div",{className:"uag-ip-remove-icon",onClick:()=>{l("")}},Ce("xmark")),React.createElement("div",{className:"uag-ip-selected-icon",onClick:u},React.createElement("div",{className:"uag-ip-selected-icon-overlay"},!p&&Ce("plus")),p&&React.createElement("div",{className:"uag-ip-selected-icon-value"},Ce(a))),React.createElement("div",{className:"uag-ip-actions"},React.createElement("span",{onClick:u},p?Object(r.__)("Change Icon","ultimate-addons-for-gutenberg"):Object(r.__)("Choose Icon","ultimate-addons-for-gutenberg"))));return React.createElement("div",{className:"uag-custom-ip components-base-control"},React.createElement("span",{className:"uag-control-label"},t||Object(r.__)("Icon","ultimate-addons-for-gutenberg")),b,s&&React.createElement(Mr,Rr({},e,{closeModal:()=>c(!1),defaultIcons:o,iconCategoryList:n})),React.createElement(De,{text:i}))},Er=a(94),Or=0,Lr={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Hr={};Hr.locals=Er.a.locals||{},Hr.use=function(){return Or++||(Br=ke()(Er.a,Lr)),Hr},Hr.unuse=function(){Or>0&&!--Or&&(Br(),Br=null)};var jr=Hr;const Fr=e=>{var t;const[a,l]=Object(B.useState)(null),i=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(jr.use(),()=>{jr.unuse()}),[]);const{getSelectedBlock:o}=Object(n.select)("core/block-editor"),r=null===(t=o())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{l(D(i))},[r]);const{setAttributes:s,presets:c,presetInputType:u,label:p,className:b,help:d=!1}=e,g=[];c&&c.map(e=>{if(null!=e&&e.attributes)for(const t of null==e?void 0:e.attributes)g.includes(null==t?void 0:t.label)||g.push(null==t?void 0:t.label);return e});const[m,y]=Object(B.useState)(""),f=e=>{y(e),c&&c.map(t=>{var a,l;return t.value&&("default"!==e&&"default"===t.value&&t.attributes&&t.attributes.map(e=>(s({[e.label]:e.value}),e)),t.value&&t.value===e&&t.attributes&&(null===(a=c[1])||void 0===a||null===(l=a.defaultPresetAttributes)||void 0===l||l.map(e=>{var t,a;return s({[e.label]:null===(t=c[0])||void 0===t||null===(a=t.defaultAttributes[e.label])||void 0===a?void 0:a.default}),e}),t.attributes.map(e=>(s({[e.label]:e.value}),e)),t.childAttributes&&h(t))),t})},h=e=>{let t=[];o().innerBlocks&&(t=o().innerBlocks);const a=[];t.map(e=>(e.clientId&&a.push(e.clientId),e));const l={};e.childAttributes.map(e=>(l[e.label]=e.value,e)),a.map(e=>(Object(n.dispatch)("core/block-editor").updateBlockAttributes(e,l),e))},v=c.map(e=>{if(!e.value)return"";const t=e.value,a=m===t;return React.createElement(React.Fragment,null,React.createElement("input",{key:t,className:"uag-presets-radio-input",type:"radio",value:t,checked:a,onChange:()=>f(t),onClick:()=>f(t)}),React.createElement("label",{htmlFor:t,className:"uag-presets-radio-input-label",dangerouslySetInnerHTML:{__html:e.icon},onClick:()=>f(t)}))}),_=React.createElement(Le.SelectControl,{className:"uagb-presets-dropdown",onChange:f,options:c,label:p}),T=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-presets-radio-image-wrap"},v)),C=z(p),S=Object(j.applyFilters)(`spectra.${r}.${a}.${C}.before`,"",r),w=Object(j.applyFilters)(`spectra.${r}.${a}.${C}`,"",r);return React.createElement("div",{ref:i,className:"components-base-control"},S,React.createElement("div",{className:Be()(b,"uagb-presets-main-wrap")},React.createElement("div",{className:"uagb-presets-label-reset-wrap"},React.createElement("label",{htmlFor:"uag-presets-label",className:"uag-presets-label"},p),React.createElement(Ka,{attributeNames:g,setAttributes:s,onReset:()=>{y(""),(()=>{let e=[];o().innerBlocks&&(e=o().innerBlocks);const t=[];e.map(e=>(e.clientId&&t.push(e.clientId),e));const a={};c.map(e=>(null!=e&&e.childAttributes&&(null==e||e.childAttributes.map(e=>{var t,l,i,o;return null!==(t=c[1])&&void 0!==t&&t.defaultChildAttributes&&null!==(l=c[1])&&void 0!==l&&l.defaultChildAttributes[e.label]&&void 0!==(null===(i=c[1])||void 0===i?void 0:i.defaultChildAttributes[e.label].default)&&(a[e.label]=null===(o=c[1])||void 0===o?void 0:o.defaultChildAttributes[e.label].default),e})),e)),t.map(e=>(Object(n.dispatch)("core/block-editor").updateBlockAttributes(e,a),e))})()}})),"dropdown"===u&&_,"radioImage"===u&&T,React.createElement(De,{text:d})),w)};Fr.defaultProps={presetInputType:"dropdown",label:Object(r.__)("Select Preset","ultimate-addons-for-gutenberg")};var zr=Object(B.memo)(Fr);const Dr=[{defaultAttributes:pe},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Nr=[{defaultAttributes:pe},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:15},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var Ir,Vr={banner:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2.68164 7.81525L20.7827 7.81525M4.80615 5.30768L8.21387 5.30768M17.083 5.30768L19.1719 5.30768M13.1616 5.30768L15.2505 5.30768M4.68164 2.93213H19.3184C20.4229 2.93213 21.3184 3.82756 21.3184 4.93213V19.0679C21.3184 20.1724 20.4229 21.0679 19.3184 21.0679H4.68164C3.57707 21.0679 2.68164 20.1724 2.68164 19.0679V4.93213C2.68164 3.82756 3.57707 2.93213 4.68164 2.93213Z",stroke:"#1d2327",strokeWidth:"1.4",strokeLinecap:"round"})),popup:React.createElement("svg",{width:"24",height:"24",viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M18.7917 3.37823L20.5278 5.1143M20.5278 5.1143L22.2639 6.85037M20.5278 5.1143L18.7917 6.85037M20.5278 5.1143L22.2639 3.37823M15.5239 3.99998H4C2.89543 3.99998 2 4.89542 2 5.99998V20C2 21.1046 2.89543 22 4 22H20C21.1046 22 22 21.1046 22 20V9.52723M4.75635 7.02196L16.1973 7.02196M6.75781 10.2004H8.61794C9.72251 10.2004 10.6179 11.0958 10.6179 12.2004V16C10.6179 17.1046 9.72251 18 8.61794 18H6.75781C5.65324 18 4.75781 17.1046 4.75781 16V12.2004C4.75781 11.0958 5.65324 10.2004 6.75781 10.2004ZM15.3825 10.2004H17.2427C18.3472 10.2004 19.2427 11.0958 19.2427 12.2004V16C19.2427 17.1046 18.3472 18 17.2427 18H15.3825C14.278 18 13.3825 17.1046 13.3825 16V12.2004C13.3825 11.0958 14.278 10.2004 15.3825 10.2004Z",stroke:"#1d2327",strokeWidth:"1.4",strokeLinecap:"round",strokeLinejoin:"round"}))},Wr=a(95),qr=0,Zr={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},$r={};$r.locals=Wr.a.locals||{},$r.use=function(){return qr++||(Ir=ke()(Wr.a,Zr)),$r},$r.unuse=function(){qr>0&&!--qr&&(Ir(),Ir=null)};var Yr=$r;const Kr=()=>{let e=uagb_blocks_info.uagb_url;return e+="/assets/images/upsell/globalBanner.svg",React.createElement("img",{src:e,alt:"Upsell Cover",className:"max-w-full h-auto"})},Jr={"advanced-animations":{image:React.createElement(Kr,null),title:Object(r.__)("Unlock Advanced Animations","ultimate-addons-for-gutenberg"),header:Object(r.__)("Make your pages visually stunning with advanced animations that capture attention.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Take your website’s visual appeal to the next level with smooth, highly customizable animations. Control pacing, delays, and effects effortlessly.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Smooth animations with precise control.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Set delay and duration for animations","ultimate-addons-for-gutenberg"),Object(r.__)("Customize animation pacing and easing","ultimate-addons-for-gutenberg"),Object(r.__)("Repeat animations on scroll","ultimate-addons-for-gutenberg"),Object(r.__)("Animate nested blocks seamlessly","ultimate-addons-for-gutenberg")]},modal:{image:React.createElement(Kr,null),title:Object(r.__)("Get Modal Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Boost engagement with highly customizable modals that demand attention. Create modals with triggers, transitions, and animations.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add professional, high-converting modals with advanced triggers, seamless animations, and flexible customization.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Customizable modals with dynamic triggers.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Advanced triggers like exit intent and delay","ultimate-addons-for-gutenberg"),Object(r.__)("Off-canvas and full-screen display options","ultimate-addons-for-gutenberg"),Object(r.__)("Smooth entrance and exit effects","ultimate-addons-for-gutenberg"),Object(r.__)("Cookie-based automatic triggering for conversions","ultimate-addons-for-gutenberg")]},"popup-builder":{image:React.createElement(Kr,null),title:Object(r.__)("Unlock Popup Builder Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Create high-converting popups with powerful targeting and trigger options.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Design and display engaging popups with advanced triggers, precise targeting, and seamless controls to boost conversions and engagement.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Advanced popup triggers and targeting options.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Control triggers: page load, exit intent, or custom class","ultimate-addons-for-gutenberg"),Object(r.__)("Display popups site-wide or on specific pages","ultimate-addons-for-gutenberg"),Object(r.__)("Set custom delays and frequency controls","ultimate-addons-for-gutenberg")]},countdown:{image:React.createElement(Kr,null),title:Object(r.__)("Get Countdown Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Increase urgency and boost conversions with advanced countdown timers. Perfect for sales, events, and promotions.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create real-time urgency with highly customizable countdown timers, evergreen deadlines, and smart expiry options.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Advanced countdown timers with smart options.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Evergreen countdown with auto-reset","ultimate-addons-for-gutenberg"),Object(r.__)("Fixed date and time countdowns","ultimate-addons-for-gutenberg"),Object(r.__)("Customizable expiry actions","ultimate-addons-for-gutenberg")]},"image-gallery":{image:React.createElement(Kr,null),title:Object(r.__)("Get Image Gallery Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Transform your image galleries into interactive experiences with custom click actions and animations.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Engage your audience with interactive image galleries featuring custom redirections, lightboxes, and effects.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Clickable images with custom actions.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Redirect users with custom click actions","ultimate-addons-for-gutenberg"),Object(r.__)("Built-in lightbox and modal options","ultimate-addons-for-gutenberg"),Object(r.__)("Multiple layout styles and hover effects","ultimate-addons-for-gutenberg")]},"post-grid":{image:React.createElement(Kr,null),title:Object(r.__)("Unlock Loop Builder","ultimate-addons-for-gutenberg"),header:Object(r.__)("Customize post layouts like never before with powerful loop builder options.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Design stunning post grids with dynamic content, flexible layouts, and seamless integrations.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Fully customizable post loops with Loop Builder.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Drag-and-drop design with Spectra blocks","ultimate-addons-for-gutenberg"),Object(r.__)("ACF, Custom Fields, and Taxonomy integration","ultimate-addons-for-gutenberg"),Object(r.__)("Advanced filtering and sorting","ultimate-addons-for-gutenberg")]},"dynamic-content":{image:React.createElement(Kr,null),title:Object(r.__)("Unlock Dynamic Content Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Deliver personalized content dynamically based on user behavior. Make your pages more relevant and engaging.","ultimate-addons-for-gutenberg"),description:Object(r.__)("Tailor content dynamically for users based on preferences, interactions, and data sources. Create truly personalized experiences.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Dynamic text and images from any source","ultimate-addons-for-gutenberg"),Object(r.__)("Global updates: Change once, reflect everywhere","ultimate-addons-for-gutenberg"),Object(r.__)("Smart fallback options for dynamic content","ultimate-addons-for-gutenberg")]},slider:{image:React.createElement(Kr,null),title:Object(r.__)("Get Slider Pro","ultimate-addons-for-gutenberg"),header:Object(r.__)("Create Stunning Sliders with Enhanced Customization","ultimate-addons-for-gutenberg"),description:Object(r.__)("Take full control over your slider designs with advanced settings.","ultimate-addons-for-gutenberg"),shortDesc:Object(r.__)("Fully customizable sliders.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Slide-per-view option","ultimate-addons-for-gutenberg"),Object(r.__)("Custom navigation styles","ultimate-addons-for-gutenberg"),Object(r.__)("Unique navigation slugs","ultimate-addons-for-gutenberg")]}},Xr=e=>{Object(B.useLayoutEffect)(()=>(Yr.use(),()=>{Yr.unuse()}),[]);const{campaign:t="default"}=e.control;return React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-upgrade-pro-wrap"},React.createElement(es,{campaign:t})))};Xr.propTypes={control:G.a.object.isRequired};var Qr=Xr;const es=e=>{let{campaign:t}=e;const a=Jr[{"post-grid":"post-grid","post-carousel":"post-grid","post-masonry":"post-grid"}[t]||t],l={title:null==a?void 0:a.title,Image:null==a?void 0:a.image,header:null==a?void 0:a.header,description:null==a?void 0:a.description,features:null==a?void 0:a.features,shortDesc:null==a?void 0:a.shortDesc},i={"Spectra Pro":l,"Essential Toolkit":{...l,features:[Object(r.__)("Spectra Pro","ultimate-addons-for-gutenberg"),Object(r.__)("Astra Pro","ultimate-addons-for-gutenberg"),Object(r.__)("Premium Starter Templates","ultimate-addons-for-gutenberg"),Object(r.__)("Ultimate Addons for Elementor","ultimate-addons-for-gutenberg"),Object(r.__)("Elementor Premium Templates","ultimate-addons-for-gutenberg"),Object(r.__)("Seamless Page Building","ultimate-addons-for-gutenberg")]},"Business Toolkit":{...l,features:[Object(r.__)("Essential Toolkit","ultimate-addons-for-gutenberg"),Object(r.__)("SureFeedback","ultimate-addons-for-gutenberg"),Object(r.__)("SureWriter Pro","ultimate-addons-for-gutenberg"),Object(r.__)("SureTriggers Pro","ultimate-addons-for-gutenberg"),Object(r.__)("CartFlows Starter","ultimate-addons-for-gutenberg"),Object(r.__)("ZipWP Pro","ultimate-addons-for-gutenberg")]}},[o,n]=Object(mo.useState)(!1),[s,c]=Object(mo.useState)(window.innerWidth<=768),u=e=>{e||n(!1)};return Object(mo.useEffect)(()=>{if(o){const e=document.querySelector(".components-modal__content");e&&(document.querySelector(".components-modal__frame").style.margin="0 !important",e.style.marginTop="0 !important",e.style.padding="0 !important",e.innerHTML="",e.classList.remove("components-modal__content"),wp.element.render(React.createElement(ts,{setIsModalOpen:u,modalData:i}),e))}},[o]),Object(mo.useEffect)(()=>{const e=()=>{c(window.innerWidth<=768)};return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)},[]),React.createElement("div",{style:{backgroundColor:"#fff",bottom:s?"0":"38px",width:s?"100%":"250px"}},React.createElement("div",{className:"spectra-support-container",style:{padding:"8px",border:"0.5px solid #D6CDFF",borderRadius:"5px",backgroundColor:"#F3F0FF",display:"flex",justifyContent:"center",alignItems:"center",gap:"8px",zIndex:"1000005"}},React.createElement("div",{className:"spectra-support-icon",style:{height:"100%"}},React.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M8.66667 1.3335L2 9.3335H8L7.33333 14.6668L14 6.66683H8L8.66667 1.3335Z",stroke:"#6005FF",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}))),React.createElement("div",{className:"spectra-support-text",style:{fontSize:"13px",fontFamily:"Figtree",fontWeight:400,color:"#111827"}},a.shortDesc," ",React.createElement("div",{style:{display:"inline",color:"#0369A1",textDecoration:"underline",cursor:"pointer"},onClick:()=>{n(!0)}},Object(r.__)("Learn more","ultimate-addons-for-gutenberg")))),o&&React.createElement(Le.Modal,{title:"This is my modal",onRequestClose:u}))},ts=e=>{var t,a,l,i,o,n,s,c,u;let{modalData:p,setIsModalOpen:b}=e;const[d,g]=Object(mo.useState)(window.innerWidth<=768),[m,y]=Object(mo.useState)(!0),[f,h]=Object(mo.useState)(""),[v,_]=Object(mo.useState)(""),[T,C]=Object(mo.useState)("Spectra Pro"),S=uagb_blocks_info.contry_code,{title:w,Image:k,header:P,description:x,features:A}=p[T];return Object(mo.useEffect)(()=>{const e=()=>{g(window.innerWidth<=768)};return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)},[]),Object(mo.useEffect)(()=>{(async()=>{try{const e=await fetch("https://store.brainstormforce.com/wp-json/pse/v1/pricing",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({})}),t=await e.json(),a=Object.entries(t.data).reduce((e,t)=>{let[a,l]=t;return(l.product.includes("Spectra Pro - Annual Subscription")&&l.variant.includes("1 Site")||l.product.includes("Essential Toolkit for Spectra - Annual Subscription")&&l.variant.includes("1 Site")||l.product.includes("Business Toolkit - Annual Subscription")&&l.variant.includes("1 Site"))&&(e[a]=l),e},{});h(a),Object.keys(a).length>0&&_(Object.keys(a)[0]),y(!1)}catch(e){h("")}})()},[]),Object(mo.useEffect)(()=>{var e;const t=(null===(e=f[v])||void 0===e?void 0:e.product)||"",a=Object.keys({"Spectra Pro":"Spectra Pro","Essential Toolkit":"Essential Toolkit"}).find(e=>t.includes(e))||"Business Toolkit";C(a)},[v]),React.createElement("div",{className:"bg-white rounded-lg p-5 upsell-modal-component "+(d?"":"w-[500px]"),onClick:e=>{e.stopPropagation()},style:{width:d?"auto":"500px",fontFamily:"Figtree"}},React.createElement("div",{className:"flex w-full justify-between items-center"},React.createElement("div",{className:"text-brand-primary-600 flex space-x-1"},React.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M8.66667 1.3335L2 9.3335H8L7.33333 14.6668L14 6.66683H8L8.66667 1.3335Z",stroke:"#6005FF",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("div",{className:"font-semibold text-xs"},w)),React.createElement("div",{onClick:()=>b(!1),className:"p-1 cursor-pointer"},React.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M12 4L4 12",stroke:"#111827",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4 4L12 12",stroke:"#111827",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})))),m?React.createElement(React.Fragment,null,React.createElement("div",{className:"w-48 h-6 rounded-md mb-6 mt-6",style:{background:"#e5e7eb"}}),React.createElement("div",{className:"w-60 h-6 rounded-md mb-6",style:{background:"#e5e7eb"}}),React.createElement("div",{className:"w-48 h-6 rounded-md mb-6",style:{background:"#e5e7eb"}})):React.createElement(React.Fragment,null,React.createElement("div",{className:"w-full flex justify-center items-center mt-4"},k),React.createElement("div",{className:"mt-4"},React.createElement("h5",{className:"text-lg font-medium m-0 text-text-primary"},P),React.createElement("p",{className:"text-sm text-text-secondary mt-1 m-0"},x)),React.createElement("div",{className:("Essential Toolkit"===T||"Business Toolkit"===T||A.length>3&&!A.some(e=>e.length>25)?"grid grid-cols-2":"flex flex-col")+" w-full gap-1 mt-4"},null==A?void 0:A.map((e,t)=>React.createElement("div",{key:t,className:"text-brand-primary-600 flex gap-1.5 items-center "+(t%2!=0&&"mr-3")},React.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M11.6666 3.5L5.24992 9.91667L2.33325 7",stroke:"#6005FF",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("p",{className:"text-field-label m-0",style:{fontSize:"14px",lineHeight:"20px"}},e)))),React.createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle mt-4"}),React.createElement("div",{className:"flex justify-between items-center mt-4"},React.createElement("div",{className:"w-1/2"},React.createElement(as,{options:f?null===(t=Object.values(f))||void 0===t?void 0:t.map(e=>{var t;return null==e||null===(t=e.product.split(" - ")[0])||void 0===t?void 0:t.replace(" for Spectra","")}):[],onSelect:e=>{(e=>{if(f&&Object.keys(f).length>0)for(const l in f){var t,a;if((null===(t=f[l])||void 0===t||null===(a=t.product.split(" - ")[0])||void 0===a?void 0:a.replace(" for Spectra",""))===e){_(l);break}}})(e)}})),React.createElement("div",{className:"flex items-center justify-between gap-2"},f&&v&&React.createElement(React.Fragment,null,React.createElement("button",{className:"",tag:"button",type:"button",style:{padding:"10px 14px",color:"white",fontSize:"14px",fontWeight:"600",backgroundColor:"#F9FAFB",borderRadius:"8px",outline:"none !important",boxShadow:"unset !important",cursor:"pointer",border:"none",lineHeight:"20px"}},React.createElement("span",{style:{color:"black"}},"$",null===(a=f[v])||void 0===a||null===(l=a.price)||void 0===l||null===(i=l[S])||void 0===i?void 0:i.discounted),null!==(o=f[v])&&void 0!==o&&null!==(n=o.variant)&&void 0!==n&&n.includes("Annual Subscription")||null!==(s=f[v])&&void 0!==s&&null!==(c=s.product)&&void 0!==c&&c.includes("Annual Subscription")?React.createElement("span",{className:"text-text-tertiary font-normal"},Object(r.__)("/year","ultimate-addons-for-gutenberg")):null),React.createElement("a",{href:f[v].checkout_url+"&utm_medium=spectra-editor&utm_campaign=upsell-popup-buy-now",target:"_blank",rel:"noreferrer",className:"no-underline text-text-on-color"},React.createElement("button",{className:"",tag:"button",type:"button",style:{padding:"10px 14px",color:"white",fontSize:"14px",fontWeight:"600",backgroundColor:"#6005FF",borderRadius:"8px",outline:"none !important",boxShadow:"unset !important",cursor:"pointer",border:"none",lineHeight:"20px"}},Object(r.__)("Buy Now","ultimate-addons-for-gutenberg")))))),React.createElement("div",{className:"flex justify-end md:pr-[10px] pr-2 w-full"},React.createElement("a",{href:null===(u=uagb_blocks_info)||void 0===u?void 0:u.upsellModalEditor,target:"_blank",rel:"noreferrer",className:"text-xxs text-brand-primary-600 uagb-remove-ring"},Object(r.__)("View plans","ultimate-addons-for-gutenberg")))))},as=e=>{let{options:t,onSelect:a}=e;const l=Array.from(new Set(t)),[i,o]=Object(mo.useState)(!1),[n,r]=Object(mo.useState)(""),[s,c]=Object(mo.useState)(!0),u=Object(mo.useRef)(!0),p=Object(mo.useRef)(null),b=e=>{p.current&&!p.current.contains(e.target)&&o(!1)};return Object(mo.useEffect)(()=>{u.current&&l.length>0&&(r(l[0]),u.current=!1,c(!1))},[l]),Object(mo.useEffect)(()=>(document.addEventListener("mousedown",b),()=>{document.removeEventListener("mousedown",b)}),[]),s?React.createElement("div",{className:"w-full flex justify-center items-center text-lg"},"Loading..."):React.createElement("div",{className:"relative w-full",ref:p},React.createElement("div",{className:"p-2 cursor-pointer rounded-lg outline-none shadow-none w-full flex justify-center items-center border-border-subtle font-semibold text-text-primary",style:{border:"1px solid rgb(229, 231, 235)"},onClick:()=>o(!i)},React.createElement("div",{className:"text-sm text-text-primary flex items-center justify-between w-full"},n,React.createElement("span",null,React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"14",height:"14",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round",className:"lucide lucide-chevron-down"},React.createElement("path",{d:"m6 9 6 6 6-6"}))))),i&&React.createElement("div",{className:"absolute mt-2 bg-white border border-gray-300 rounded-md shadow-lg w-60 -top-4 -translate-y-full p-2"},null==l?void 0:l.map((e,t)=>React.createElement("div",{key:t,className:"px-4 py-2 cursor-pointer text-base rounded "+(n===e?"bg-background-secondary":"hover:bg-background-secondary"),onClick:()=>(e=>{r(e),a(e),o(!1)})(e)},e))))};var ls=()=>{const e=Object(n.useSelect)(e=>e("core/editor").getCurrentPostType()),[t,a]=Object(de.useEntityProp)("postType",e,"meta"),[l,i]=Object(B.useState)(t["spectra-popup-repetition"]),[o,s]=Object(B.useState)(!1);Object(B.useEffect)(()=>{-1===l&&(s(!0),i(1))},[]);const c=e=>{a({...t,"spectra-popup-repetition":e})};return React.createElement(Fe,{title:Object(r.__)("Repetition","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Repeat Infinitely","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>{return s(e=!o),void c(e?-1:l);var e}}),!o&&React.createElement(Qa,{label:Object(r.__)("Repetition per Browser","ultimate-addons-for-gutenberg"),value:l,data:{value:l,label:"repetition"},onChange:e=>(e=>{i(e),c(e)})(e),min:1,max:100,displayUnit:!1,allowReset:!1,help:Object(r.__)("Note: Repetition decreases on close, not on refresh.","ultimate-addons-for-gutenberg")}))};function is(){return(is=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var os=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,variationSelected:o,variantType:n,popupPositionV:s,popupPositionH:c,popupContentAlignmentV:u,popupWidth:p,popupWidthTablet:b,popupWidthMobile:d,popupWidthUnit:g,popupWidthUnitTablet:m,popupWidthUnitMobile:y,popupHeight:f,popupHeightTablet:h,popupHeightMobile:v,popupHeightUnit:_,popupHeightUnitTablet:T,popupHeightUnitMobile:C,hasFixedHeight:S,hasOverlay:w,isDismissable:k,haltBackgroundInteraction:P,willPushContent:x,closeIcon:A,closeIconPosition:G,closeOverlayClick:M,closeEscapePress:R,selectGradient:U,gradientValue:E,gradientColor1:O,gradientColor2:L,gradientLocation1:H,gradientLocationTablet1:F,gradientLocationMobile1:z,gradientLocation2:D,gradientLocationTablet2:N,gradientLocationMobile2:I,gradientType:V,gradientAngle:W,gradientAngleTablet:q,gradientAngleMobile:$,backgroundImageColor:Y,backgroundSizeDesktop:K,backgroundSizeTablet:J,backgroundSizeMobile:X,backgroundCustomSizeDesktop:Q,backgroundCustomSizeTablet:ee,backgroundCustomSizeMobile:te,backgroundCustomSizeType:ae,backgroundRepeatDesktop:le,backgroundRepeatTablet:ie,backgroundRepeatMobile:oe,backgroundAttachmentDesktop:ne,backgroundAttachmentTablet:re,backgroundAttachmentMobile:se,backgroundPositionDesktop:ce,backgroundPositionTablet:ue,backgroundPositionMobile:pe,backgroundImageDesktop:be,backgroundImageTablet:de,backgroundImageMobile:me,backgroundColor:ye,backgroundType:fe,overlayType:he,customPosition:ve,xPositionDesktop:_e,xPositionTablet:Te,xPositionMobile:Ce,xPositionType:Se,xPositionTypeTablet:we,xPositionTypeMobile:ke,yPositionDesktop:Pe,yPositionTablet:xe,yPositionMobile:Ae,yPositionType:Ge,yPositionTypeTablet:Me,yPositionTypeMobile:Re,popupOverlayColor:Be,closeIconSize:Ue,closeIconSizeTablet:Oe,closeIconSizeMobile:He,closeIconColor:je,closeIconColorHover:De,useSeparateBoxShadows:Ne,boxShadowColor:Ie,boxShadowHOffset:Ve,boxShadowVOffset:We,boxShadowBlur:qe,boxShadowSpread:Ze,boxShadowPosition:$e,boxShadowColorHover:Ye,boxShadowHOffsetHover:Ke,boxShadowVOffsetHover:Je,boxShadowBlurHover:Xe,boxShadowSpreadHover:Qe,boxShadowPositionHover:et,popupPaddingTop:tt,popupPaddingRight:at,popupPaddingBottom:lt,popupPaddingLeft:it,popupPaddingTopTablet:ot,popupPaddingRightTablet:nt,popupPaddingBottomTablet:rt,popupPaddingLeftTablet:st,popupPaddingTopMobile:ct,popupPaddingRightMobile:ut,popupPaddingBottomMobile:pt,popupPaddingLeftMobile:bt,popupPaddingUnit:dt,popupPaddingUnitTablet:gt,popupPaddingUnitMobile:mt,popupPaddingLink:yt,popupMarginTop:ft,popupMarginRight:ht,popupMarginBottom:vt,popupMarginLeft:_t,popupMarginTopTablet:Tt,popupMarginRightTablet:Ct,popupMarginBottomTablet:St,popupMarginLeftTablet:wt,popupMarginTopMobile:kt,popupMarginRightMobile:Pt,popupMarginBottomMobile:xt,popupMarginLeftMobile:At,popupMarginUnit:Gt,popupMarginUnitTablet:Mt,popupMarginUnitMobile:Rt,popupMarginLink:Bt,closePaddingTop:Ut,closePaddingRight:Et,closePaddingBottom:Ot,closePaddingLeft:Lt,closePaddingTopTablet:Ht,closePaddingRightTablet:jt,closePaddingBottomTablet:Ft,closePaddingLeftTablet:zt,closePaddingTopMobile:Dt,closePaddingRightMobile:Nt,closePaddingBottomMobile:It,closePaddingLeftMobile:Vt,closePaddingUnit:Wt,closePaddingUnitTablet:qt,closePaddingUnitMobile:Zt,closePaddingLink:$t}=t,[Yt,Kt]=Object(B.useState)(""),[Jt,Xt]=Object(B.useState)(!1),[Qt,ea]=Object(B.useState)(!1),ta=!!navigator.clipboard,aa=Object(B.useCallback)(e=>{ta&&e&&e.addEventListener("click",()=>{e.style.pointerEvents="none";const t=document.createElement("input");t.style.display="none",t.setAttribute("value","spectra-popup-close-"+uagb_blocks_info.current_post_id),document.body.appendChild(t),t.select(),t.setSelectionRange(0,99999),navigator.clipboard.writeText(t.value),ea(!0),setTimeout(()=>{document.body.removeChild(t),ea(!1),e.style.pointerEvents=""},750)})},[]);Object(B.useEffect)(()=>{let e;switch(s){case"flex-start":e="top";break;case"flex-end":e="bottom";break;default:e="center"}switch(c){case"flex-start":e+=" left";break;case"flex-end":e+=" right";break;default:e+=" center"}Kt(e)},[]);const la={popup:A?Object(r.__)("Popup Padding","ultimate-addons-for-gutenberg"):Object(r.__)("Padding","ultimate-addons-for-gutenberg"),banner:A?Object(r.__)("Info Bar Padding","ultimate-addons-for-gutenberg"):Object(r.__)("Padding","ultimate-addons-for-gutenberg"),close:Object(r.__)("Close Button Padding","ultimate-addons-for-gutenberg")},ia={popup:S?Object(r.__)("Popup Height","ultimate-addons-for-gutenberg"):Object(r.__)("Popup Max Height","ultimate-addons-for-gutenberg"),banner:S?Object(r.__)("Info Bar Height","ultimate-addons-for-gutenberg"):Object(r.__)("Info Bar Min Height","ultimate-addons-for-gutenberg")},oa=e=>{const t=e.split(" ");"top"===t[0]?t[0]="flex-start":"bottom"===t[0]&&(t[0]="flex-end"),"left"===t[1]?t[1]="flex-start":"right"===t[1]&&(t[1]="flex-end"),Kt(e),a({popupPositionV:t[0],popupPositionH:t[1]})},na=function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:e?Nr:Dr,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:e?Ye:Ie,label:e?"boxShadowColorHover":"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:e?Ke:Ve,label:e?"boxShadowHOffsetHover":"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:e?Je:We,label:e?"boxShadowVOffsetHover":"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:e?Xe:qe,label:e?"boxShadowBlurHover":"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:e?Qe:Ze,label:e?"boxShadowSpreadHover":"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:e?et:$e,label:e?"boxShadowPositionHover":"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))},ra=e=>{switch(e){case"banner":a({variantType:"banner",popupPositionV:"flex-start",hasOverlay:!1}),S||a({popupHeight:50,popupHeightUnit:"px"});break;case"popup":a({variantType:"popup",hasOverlay:!0}),oa("center center"),S||a({popupHeight:400,popupHeightUnit:"px"})}},sa=Object(j.applyFilters)("spectra.popup-builder.tab_general.repetition.before",React.createElement(ls,null));return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(Le.ToolbarGroup,{className:"uagb-popup-builder__variant-control"},React.createElement(Le.ToolbarButton,{icon:"update",label:Object(r.__)("Change Variation","ultimate-addons-for-gutenberg"),onClick:()=>Xt(!Jt)})),Jt&&React.createElement(Le.Popover,{position:"bottom left",className:"uagb-popup-builder__variant-control-popover",focusOnMount:"container",onFocusOutside:()=>{Xt(!1)}},React.createElement(Le.MenuItem,{onClick:()=>ra("banner"),disabled:"banner"===n},Vr.banner,Object(r.__)("Info Bar","ultimate-addons-for-gutenberg")),React.createElement(Le.MenuItem,{onClick:()=>ra("popup"),disabled:"popup"===n},Vr.popup,Object(r.__)("Popup","ultimate-addons-for-gutenberg")))),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,o&&React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},"popup"===n&&React.createElement(tl,{label:Object(r.__)("Popup Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"popupWidth",unit:{value:g,label:"popupWidthUnit"},max:"vw"===g?100:1500},tablet:{value:b,label:"popupWidthTablet",unit:{value:m,label:"popupWidthUnitTablet"},max:"vw"===m?100:1500},mobile:{value:d,label:"popupWidthMobile",unit:{value:y,label:"popupWidthUnitMobile"},max:"vw"===y?100:1500}},min:0,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:a}),React.createElement(tl,{label:ia[n],data:{desktop:{value:f,label:"popupHeight",unit:{value:_,label:"popupHeightUnit"},max:"vh"===_?100:1500},tablet:{value:h,label:"popupHeightTablet",unit:{value:T,label:"popupHeightUnitTablet"},max:"vh"===T?100:1500},mobile:{value:v,label:"popupHeightMobile",unit:{value:C,label:"popupHeightUnitMobile"},max:"vh"===C?100:1500}},min:0,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("VH","ultimate-addons-for-gutenberg"),unitValue:"vh"}],setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Use Fixed Height","ultimate-addons-for-gutenberg"),checked:S,onChange:()=>a({hasFixedHeight:!S})}),S&&React.createElement(Na,{label:Object(r.__)("Content Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:u,label:"popupContentAlignmentV"},options:[{value:"flex-start",tooltip:Object(r.__)("Flex Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-start")})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-center")})},{value:"flex-end",tooltip:Object(r.__)("Flex End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-end")})}],setAttributes:a,showIcons:!0}),"popup"===n&&React.createElement(React.Fragment,null,React.createElement($i,{label:Object(r.__)("Popup Alignment","ultimate-addons-for-gutenberg"),data:{label:"popupPositions",value:Yt},onChange:e=>oa(e)}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Use Overlay","ultimate-addons-for-gutenberg"),checked:w,onChange:()=>a({hasOverlay:!w})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Prevent Background Interaction","ultimate-addons-for-gutenberg"),checked:P,onChange:()=>a({haltBackgroundInteraction:!P}),help:Object(r.__)("The background scroll and click events will be disabled once this popup is visible","ultimate-addons-for-gutenberg")})),"banner"===n&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Push Content","ultimate-addons-for-gutenberg"),checked:x,onChange:()=>a({willPushContent:!x})}),!x&&React.createElement(Na,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:s,label:"popupPositionV"},options:[{value:"flex-start",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"flex-end",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],setAttributes:a,showIcons:!1}))),React.createElement(Fe,{title:Object(r.__)("Close","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Dismissible","ultimate-addons-for-gutenberg"),checked:k,onChange:()=>a({isDismissable:!k})}),k&&React.createElement(React.Fragment,null,"popup"===n&&P&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Close with Escape","ultimate-addons-for-gutenberg"),checked:R,onChange:()=>a({closeEscapePress:!R})}),w&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Close on Overlay Click","ultimate-addons-for-gutenberg"),checked:M,onChange:()=>a({closeOverlayClick:!M})}),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:A,onChange:e=>a({closeIcon:e})}),A&&React.createElement(Pi,{label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:G,label:"closeIconPosition"},setAttributes:a,options:[{value:"top-left",label:Object(r.__)("Top Left","ultimate-addons-for-gutenberg")},{value:"top-right",label:Object(r.__)("Top Right","ultimate-addons-for-gutenberg")}]})),React.createElement("p",{className:Z(["spectra-popup__notice",ta&&"spectra-popup__notice--clickable"]),ref:aa},ta&&React.createElement(Le.Dashicon,{icon:"clipboard",style:{color:Qt?"#007cba":""}}),"spectra-popup-close-"+uagb_blocks_info.current_post_id),React.createElement("p",{className:"spectra-popup__notice spectra-popup__notice--secondary"},Object(r.__)("Copy and paste the class above into the Additional Classes field of any block in this popup to close it.","ultimate-addons-for-gutenberg"))),sa,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Popup builder to the next level with powerful features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("On load, exit intent, and class-based triggers","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Display conditions","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"popup-builder"}})))),React.createElement(il,nl,React.createElement(Fe,{title:"banner"===n?Object(r.__)("Info Bar","ultimate-addons-for-gutenberg"):Object(r.__)("Popup","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,is({label:Object(r.__)("Background","ultimate-addons-for-gutenberg"),setAttributes:a,gradientType:{value:U,label:"selectGradient"},backgroundGradient:{value:E,label:"gradientValue"},backgroundGradientColor1:{value:O,label:"gradientColor1"},backgroundGradientColor2:{value:L,label:"gradientColor2"},backgroundGradientLocation1:{value:H,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:F,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:z,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:D,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:N,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:I,label:"gradientLocationMobile2"},backgroundGradientType:{value:V,label:"gradientType"},backgroundGradientAngle:{value:W,label:"gradientAngle"},backgroundGradientAngleTablet:{value:q,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:$,label:"gradientAngleMobile"},backgroundImageColor:{value:Y,label:"backgroundImageColor"},backgroundSize:{desktop:{value:K,label:"backgroundSizeDesktop"},tablet:{value:J,label:"backgroundSizeTablet"},mobile:{value:X,label:"backgroundSizeMobile"}},backgroundCustomSize:{desktop:{value:Q,label:"backgroundCustomSizeDesktop"},tablet:{value:ee,label:"backgroundCustomSizeTablet"},mobile:{value:te,label:"backgroundCustomSizeMobile"}},backgroundCustomSizeType:{value:ae,label:"backgroundCustomSizeType"},backgroundRepeat:{desktop:{value:le,label:"backgroundRepeatDesktop"},tablet:{value:ie,label:"backgroundRepeatTablet"},mobile:{value:oe,label:"backgroundRepeatMobile"}},backgroundAttachment:{desktop:{value:ne,label:"backgroundAttachmentDesktop"},tablet:{value:re,label:"backgroundAttachmentTablet"},mobile:{value:se,label:"backgroundAttachmentMobile"}},backgroundPosition:{desktop:{value:ce,label:"backgroundPositionDesktop"},tablet:{value:ue,label:"backgroundPositionTablet"},mobile:{value:pe,label:"backgroundPositionMobile"}},backgroundImage:{desktop:{value:be,label:"backgroundImageDesktop"},tablet:{value:de,label:"backgroundImageTablet"},mobile:{value:me,label:"backgroundImageMobile"}},imageResponsive:!0,backgroundColor:{value:ye,label:"backgroundColor"},backgroundType:{value:fe,label:"backgroundType"},overlayType:{value:he,label:"overlayType"},gradientOverlay:{value:!0},customPosition:{value:ve,label:"customPosition"},xPositionDesktop:{value:_e,label:"xPositionDesktop"},xPositionTablet:{value:Te,label:"xPositionTablet"},xPositionMobile:{value:Ce,label:"xPositionMobile"},xPositionType:{value:Se,label:"xPositionType"},xPositionTypeTablet:{value:we,label:"xPositionTypeTablet"},xPositionTypeMobile:{value:ke,label:"xPositionTypeMobile"},yPositionDesktop:{value:Pe,label:"yPositionDesktop"},yPositionTablet:{value:xe,label:"yPositionTablet"},yPositionMobile:{value:Ae,label:"yPositionMobile"},yPositionType:{value:Ge,label:"yPositionType"},yPositionTypeTablet:{value:Me,label:"yPositionTypeTablet"},yPositionTypeMobile:{value:Re,label:"yPositionTypeMobile"},backgroundVideoType:{value:!1}},e)),w&&React.createElement(React.Fragment,null,"image"===fe&&React.createElement(fi,null),React.createElement(hl,{label:"image"===fe?Object(r.__)("Popup Overlay Color","ultimate-addons-for-gutenberg"):Object(r.__)("Overlay Color","ultimate-addons-for-gutenberg"),colorValue:Be||"",data:{value:Be,label:"popupOverlayColor"},setAttributes:a})),React.createElement(fi,null),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:a,prefix:"content",attributes:t,deviceType:l,disableBottomSeparator:!0})),k&&A&&React.createElement(Fe,{title:Object(r.__)("Close Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ue,label:"closeIconSize"},tablet:{value:Oe,label:"closeIconSizeTablet"},mobile:{value:He,label:"closeIconSizeMobile"}},min:0,max:50,displayUnit:!1,setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:je||"",data:{value:je,label:"closeIconColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:De||"",data:{value:De,label:"closeIconColorHover"},setAttributes:a}),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:Ne,onChange:()=>a({useSeparateBoxShadows:!Ne})}),Ne?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:na(),hover:na(!0),disableBottomSeparator:!0}):na()),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,is({},e,{label:la[n],valueTop:{value:tt,label:"popupPaddingTop"},valueRight:{value:at,label:"popupPaddingRight"},valueBottom:{value:lt,label:"popupPaddingBottom"},valueLeft:{value:it,label:"popupPaddingLeft"},valueTopTablet:{value:ot,label:"popupPaddingTopTablet"},valueRightTablet:{value:nt,label:"popupPaddingRightTablet"},valueBottomTablet:{value:rt,label:"popupPaddingBottomTablet"},valueLeftTablet:{value:st,label:"popupPaddingLeftTablet"},valueTopMobile:{value:ct,label:"popupPaddingTopMobile"},valueRightMobile:{value:ut,label:"popupPaddingRightMobile"},valueBottomMobile:{value:pt,label:"popupPaddingBottomMobile"},valueLeftMobile:{value:bt,label:"popupPaddingLeftMobile"},unit:{value:dt,label:"popupPaddingUnit"},mUnit:{value:gt,label:"popupPaddingUnitTablet"},tUnit:{value:mt,label:"popupPaddingUnitMobile"},deviceType:l,attributes:t,setAttributes:a,link:{value:yt,label:"popupPaddingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),"popup"===n&&React.createElement(Pl,is({},e,{label:Object(r.__)("Popup Margin","ultimate-addons-for-gutenberg"),valueTop:{value:ft,label:"popupMarginTop"},valueRight:{value:ht,label:"popupMarginRight"},valueBottom:{value:vt,label:"popupMarginBottom"},valueLeft:{value:_t,label:"popupMarginLeft"},valueTopTablet:{value:Tt,label:"popupMarginTopTablet"},valueRightTablet:{value:Ct,label:"popupMarginRightTablet"},valueBottomTablet:{value:St,label:"popupMarginBottomTablet"},valueLeftTablet:{value:wt,label:"popupMarginLeftTablet"},valueTopMobile:{value:kt,label:"popupMarginTopMobile"},valueRightMobile:{value:Pt,label:"popupMarginRightMobile"},valueBottomMobile:{value:xt,label:"popupMarginBottomMobile"},valueLeftMobile:{value:At,label:"popupMarginLeftMobile"},unit:{value:Gt,label:"popupMarginUnit"},mUnit:{value:Mt,label:"popupMarginUnitTablet"},tUnit:{value:Rt,label:"popupMarginUnitMobile"},deviceType:l,attributes:t,setAttributes:a,link:{value:Bt,label:"popupMarginLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),k&&A&&React.createElement(Pl,is({},e,{label:la.close,valueTop:{value:Ut,label:"closePaddingTop"},valueRight:{value:Et,label:"closePaddingRight"},valueBottom:{value:Ot,label:"closePaddingBottom"},valueLeft:{value:Lt,label:"closePaddingLeft"},valueTopTablet:{value:Ht,label:"closePaddingTopTablet"},valueRightTablet:{value:jt,label:"closePaddingRightTablet"},valueBottomTablet:{value:Ft,label:"closePaddingBottomTablet"},valueLeftTablet:{value:zt,label:"closePaddingLeftTablet"},valueTopMobile:{value:Dt,label:"closePaddingTopMobile"},valueRightMobile:{value:Nt,label:"closePaddingRightMobile"},valueBottomMobile:{value:It,label:"closePaddingBottomMobile"},valueLeftMobile:{value:Vt,label:"closePaddingLeftMobile"},unit:{value:Wt,label:"closePaddingUnit"},mUnit:{value:qt,label:"closePaddingUnitTablet"},tUnit:{value:Zt,label:"closePaddingUnitMobile"},deviceType:l,attributes:t,setAttributes:a,link:{value:$t,label:"closePaddingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})))),React.createElement(il,is({},rl,{parentProps:e})))))}),ns=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",a=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return isNaN(e)||""===e?"":e+t+(a?" !important":"")},rs=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"desktop";if("default"!==e[t+"BorderStyle"]){switch(a){case"tablet":a="Tablet";break;case"mobile":a="Mobile";break;default:a=""}const l={},i=e[t+"BorderStyle"],o=e[t+"BorderColor"],n=ns(e[t+"BorderTopWidth"+a],"px"),r=ns(e[t+"BorderRightWidth"+a],"px"),s=ns(e[t+"BorderBottomWidth"+a],"px"),c=ns(e[t+"BorderLeftWidth"+a],"px"),u=e[t+"BorderRadiusUnit"+a]||"px",p=ns(e[t+"BorderTopLeftRadius"+a],u),b=ns(e[t+"BorderTopRightRadius"+a],u),d=ns(e[t+"BorderBottomRightRadius"+a],u),g=ns(e[t+"BorderBottomLeftRadius"+a],u);return"none"!==e[t+"BorderStyle"]&&""!==e[t+"BorderStyle"]&&(l["border-top-width"]=n,l["border-right-width"]=r,l["border-bottom-width"]=s,l["border-left-width"]=c,l["border-color"]=o),l["border-style"]=i,l["border-top-left-radius"]=p,l["border-top-right-radius"]=b,l["border-bottom-right-radius"]=d,l["border-bottom-left-radius"]=g,l}return{}},ss=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};const{backgroundType:a,backgroundImage:l,backgroundColor:i,gradientValue:o,backgroundRepeat:n,backgroundPosition:r,backgroundSize:s,backgroundAttachment:c,backgroundCustomSize:u,backgroundCustomSizeType:p,backgroundImageColor:b,overlayType:d,overlayOpacity:g,backgroundVideoColor:m,backgroundVideo:y,customPosition:f,centralizedPosition:h,xPosition:v,xPositionType:_,yPosition:T,yPositionType:C,gradientColor1:S,gradientColor2:w,gradientLocation1:k,gradientLocation2:P,gradientType:x,gradientAngle:A,selectGradient:G,backgroundOverlayImage:M,backgroundOverlayRepeat:R,backgroundOverlayPosition:B,backgroundOverlaySize:U,backgroundOverlayAttachment:E,backgroundCustomOverlaySize:O,backgroundCustomOverlaySizeType:L,customOverlayPosition:H,xPositionOverlay:j,xPositionOverlayType:F,yPositionOverlay:z,yPositionOverlayType:D,blendMode:N,globalBlockStyleId:I}=e,V={},W={},q=isNaN(v)||""===v?0:v,Z=void 0!==_?_:"",$=isNaN(T)||""===T?0:T,Y=void 0!==C?C:"",K="number"!=typeof j?0:j,J=void 0!==F?F:"",X="number"!=typeof z?0:z,Q=void 0!==D?D:"",ee=ns(q,Z),te=ns($,Y),ae=()=>{void 0!==g&&""!==g&&(W.opacity=""+g)};let le;switch(G){case"basic":le=o;break;case"advanced":switch(x){case"linear":le=`linear-gradient(${A}deg, ${S} ${k}%, ${w} ${P}%)`;break;case"radial":le=`radial-gradient( at center center, ${S} ${k}%, ${w} ${P}%)`;break;default:le=""}break;default:le=""}let ie=s;if("custom"===s&&(ie=u+p),void 0!==a&&""!==a&&("color"===a?(""!==i&&void 0!==i&&"unset"!==i&&null!=l&&l.url?V["background-image"]="linear-gradient(to right, "+i+", "+i+"), url("+(null==l?void 0:l.url)+");":void 0!==l&&""!==l&&"unset"!==l||(V["background-color"]=i),I&&(V["background-image"]="unset;")):"image"===a?("color"===d&&""!==b&&void 0!==b&&"unset"!==b&&null!=l&&l.url&&(null!=t&&t.hasPseudo?(V["background-image"]=`url(${l.url});`,W.background=b,ae()):"container"===(null==t?void 0:t.blockName)?V["background-image"]=`url(${l.url});`:V["background-image"]="linear-gradient(to right, "+b+", "+b+"), url("+l.url+");"),"gradient"===d&&le&&null!=l&&l.url&&(null!=t&&t.hasPseudo?(V["background-image"]=`url(${l.url});`,W["background-image"]=le,ae()):"container"===(null==t?void 0:t.blockName)?V["background-image"]=`url(${l.url});`:V["background-image"]=le+", url("+(null==l?void 0:l.url)+");"),["image","none",""].includes(d)&&null!=l&&l.url&&(V["background-image"]="url("+(null==l?void 0:l.url)+");"),V["background-repeat"]=n,"custom"!==f&&null!=r&&r.x&&null!=r&&r.y?V["background-position"]=`${100*(null==r?void 0:r.x)}% ${100*(null==r?void 0:r.y)}%`:"custom"===f&&(V["background-position"]=!1===h?`${ee} ${te}`:`calc(50% + ${ee}) calc(50% + ${te})`),V["background-size"]=ie,V["background-attachment"]=c,V["background-clip"]="padding-box"):"gradient"===a?""!==le&&"unset"!==le&&(V.background=le,V["background-clip"]="padding-box"):"video"===a&&("color"===d&&""!==y&&""!==m&&void 0!==m&&"unset"!==m&&(V.background=m),"gradient"===d&&""!==y&&y&&le&&(V["background-image"]=le+";"))),"image"===d){""!==M&&null!=M&&M.url&&(W["background-image"]=`url(${M.url} );`),W["background-repeat"]=R,"custom"!==H&&null!=B&&B.x&&null!=B&&B.y?W["background-position"]=`${100*B.x}% ${100*B.y}%`:"custom"===H&&(W["background-position"]=`${K}${J} ${X}${Q}`);let e=U;"custom"===U&&(e=O+L),W["background-size"]=e,W["background-attachment"]=E,W["background-clip"]="padding-box",W["mix-blend-mode"]=N,W.opacity=g}return null!=t&&t.forStyleSheet?W:V},cs=e=>{let{horizontal:t,vertical:a,blur:l,spread:i,horizontalUnit:o="px",verticalUnit:n="px",blurUnit:r="px",spreadUnit:s="px",color:c,position:u="outset",altColor:p=""}=e;return c||p?(t=ns(t,o),""===t&&(t=0),a=ns(a,n),""===a&&(a=0),l=ns(l,r),""===l&&(l=0),i=ns(i,s),""===i&&(i=0),0===t&&0===a&&0===l&&0===i?"":`${t} ${a} ${l}${i?" "+i:""} ${c||p}${"outset"===u?"":" "+u}`):""};function us(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:NaN,l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:NaN,i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:NaN;return Number.isNaN(a)?ns(t,e):Number.isNaN(l)?`${ns(t,e)} ${ns(a,e)}`:Number.isNaN(i)?`${ns(t,e)} ${ns(a,e)} ${ns(l,e)}`:`${ns(t,e)} ${ns(a,e)} ${ns(l,e)} ${ns(i,e)}`}var ps,bs=a(96),ds=0,gs={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ms={};ms.locals=bs.a.locals||{},ms.use=function(){return ds++||(ps=ke()(bs.a,gs)),ms},ms.unuse=function(){ds>0&&!--ds&&(ps(),ps=null)};var ys=ms;const fs="yes"===uagb_blocks_info.uagb_old_user_less_than_2,hs=e=>e.reduce((e,t)=>{var a;if(null!=t&&null!==(a=t.attributes)&&void 0!==a&&a.block_id&&t.name.includes("uagb")&&(e.blockIds.push(t.attributes.block_id),e.clientIds.push(t.clientId)),t.innerBlocks){const{blockIds:a,clientIds:l}=hs(t.innerBlocks);e.blockIds=[...e.blockIds,...a],e.clientIds=[...e.clientIds,...l]}return e},{blockIds:[],clientIds:[]});var vs=e=>t=>{const{name:a,setAttributes:l,clientId:i,attributes:{block_id:o}}=t,r=["uagb/faq","uagb/buttons","uagb/icon-list","uagb/restaurant-menu","uagb/social-share","uagb/content-timeline","uagb/tabs","uagb/how-to"];return Object(B.useEffect)(()=>{uagb_blocks_info.is_customize_preview&&("0"===o||void 0===o)&&r.includes(a)&&document.addEventListener(`UAG-${a}-${i.substr(0,8)}-BlockCustomizeWidgetEditor`,(function(e){l({block_id:e.detail.id,classMigrate:e.detail.classMigrate,childMigrate:e.detail.childMigrate})}))},[]),Object(B.useEffect)(()=>{if(uagb_blocks_info.is_customize_preview&&("0"===o||void 0===o)&&r.includes(a)){const e=new CustomEvent(`UAG-${a}-${i.substr(0,8)}-BlockCustomizeWidgetEditor`,{detail:{id:i.substr(0,8),classMigrate:!0,childMigrate:!0}});document.dispatchEvent(e)}},[t.attributes]),Object(B.useEffect)(()=>{const e={block_id:i.substr(0,8)};["uagb/post-carousel","uagb/post-grid","uagb/post-masonry"].includes(a)&&(e.allTaxonomyStore=void 0),["uagb/countdown"].includes(a)&&(e.editorInnerblocksPreview=!1),["uagb/cf7-styler","uagb/gf-styler"].includes(a)&&(e.isHtml=!1),["uagb/buttons","uagb/icon-list","uagb/restaurant-menu","uagb/social-share","uagb/content-timeline","uagb/instagram-feed"].includes(a)&&(e.childMigrate=!0),["uagb/advanced-heading","uagb/blockquote","uagb/buttons","uagb/call-to-action","uagb/column","uagb/columns","uagb/icon-list","uagb/marketing-button","uagb/image-gallery","uagb/info-box","uagb/lottie","uagb/restaurant-menu","uagb/section","uagb/social-share","uagb/content-timeline","uagb/table-of-contents","uagb/team","uagb/testimonial","uagb/instagram-feed","uagb/login","uagb/register"].includes(a)&&(e.classMigrate=!0),"uagb/advanced-heading"===a&&(e.headingDescToggle=fs);const t=Object(n.select)("core/block-editor"),r=null!=t&&t.getBlocks?t.getBlocks():null,{blockIds:s,clientIds:c}=r?hs(r):{blockIds:[],clientIds:[]};"not_set"!==o&&"0"!==o&&o&&!((e,t,a)=>e.filter(e=>e===t).length>1&&a===e.lastIndexOf(t))(s,o,c.indexOf(i))||l(e)},[i]),React.createElement(e,t)},_s=Object(L.compose)(Object(n.withDispatch)(e=>(e("core/block-editor").setTemplateValidity(!0),!0)),vs,fe)(e=>{const{clientId:t,name:a,attributes:l,setAttributes:i,isSelected:o,deviceType:s}=e,{UAGHideDesktop:c,UAGHideTab:u,UAGHideMob:p,variationSelected:b,variantType:d}=l,{isParentOfSelectedBlock:g,variations:m,defaultVariation:y}=Object(n.useSelect)(e=>{const{getBlockVariations:l,getDefaultBlockVariation:i}=e("core/blocks");return{defaultVariation:void 0===i?null:i(a),variations:void 0===l?null:l(a),isParentOfSelectedBlock:e("core/block-editor").hasSelectedInnerBlock(t,!0)}}),{replaceInnerBlocks:f}=Object(n.useDispatch)("core/block-editor");Object(B.useLayoutEffect)(()=>(ys.use(),()=>{ys.unuse()}),[]);const h=Object(B.useMemo)(()=>function(e,t,a,l){const i=l.toLowerCase(),{variantType:o,popupPositionH:n,popupPositionV:r,popupContentAlignmentV:s,popupWidth:c,popupWidthTablet:u,popupWidthMobile:p,popupWidthUnit:b,popupWidthUnitTablet:d,popupWidthUnitMobile:g,popupHeight:m,popupHeightTablet:y,popupHeightMobile:f,popupHeightUnit:h,popupHeightUnitTablet:v,popupHeightUnitMobile:_,hasFixedHeight:T,hasOverlay:C,closeIconPosition:S,selectGradient:w,gradientValue:k,gradientColor1:P,gradientColor2:x,gradientLocation1:A,gradientLocationTablet1:G,gradientLocationMobile1:M,gradientLocation2:R,gradientLocationTablet2:B,gradientLocationMobile2:U,gradientType:E,gradientAngle:O,gradientAngleTablet:L,gradientAngleMobile:H,backgroundImageColor:F,backgroundSizeDesktop:z,backgroundSizeTablet:D,backgroundSizeMobile:N,backgroundCustomSizeDesktop:I,backgroundCustomSizeTablet:V,backgroundCustomSizeMobile:W,backgroundCustomSizeType:q,backgroundRepeatDesktop:Z,backgroundRepeatTablet:$,backgroundRepeatMobile:Y,backgroundAttachmentDesktop:K,backgroundAttachmentTablet:J,backgroundAttachmentMobile:X,backgroundPositionDesktop:Q,backgroundPositionTablet:ee,backgroundPositionMobile:te,backgroundImageDesktop:le,backgroundImageTablet:ie,backgroundImageMobile:oe,backgroundColor:ne,backgroundType:re,overlayType:se,customPosition:ce,xPositionDesktop:ue,xPositionTablet:pe,xPositionMobile:be,xPositionType:de,xPositionTypeTablet:ge,xPositionTypeMobile:me,yPositionDesktop:ye,yPositionTablet:fe,yPositionMobile:he,yPositionType:ve,yPositionTypeTablet:_e,yPositionTypeMobile:Te,popupOverlayColor:Ce,closeIconSize:Se,closeIconSizeTablet:we,closeIconSizeMobile:ke,closeIconColor:Pe,closeIconColorHover:xe,useSeparateBoxShadows:Ae,boxShadowColor:Ge,boxShadowHOffset:Me,boxShadowVOffset:Re,boxShadowBlur:Be,boxShadowSpread:Ue,boxShadowPosition:Ee,boxShadowColorHover:Oe,boxShadowHOffsetHover:Le,boxShadowVOffsetHover:He,boxShadowBlurHover:je,boxShadowSpreadHover:Fe,boxShadowPositionHover:ze,popupPaddingTop:De,popupPaddingRight:Ne,popupPaddingBottom:Ie,popupPaddingLeft:Ve,popupPaddingTopTablet:We,popupPaddingRightTablet:qe,popupPaddingBottomTablet:Ze,popupPaddingLeftTablet:$e,popupPaddingTopMobile:Ye,popupPaddingRightMobile:Ke,popupPaddingBottomMobile:Je,popupPaddingLeftMobile:Xe,popupPaddingUnit:Qe,popupPaddingUnitTablet:et,popupPaddingUnitMobile:tt,popupMarginTop:at,popupMarginRight:lt,popupMarginBottom:it,popupMarginLeft:ot,popupMarginTopTablet:nt,popupMarginRightTablet:rt,popupMarginBottomTablet:st,popupMarginLeftTablet:ct,popupMarginTopMobile:ut,popupMarginRightMobile:pt,popupMarginBottomMobile:bt,popupMarginLeftMobile:dt,popupMarginUnit:gt,popupMarginUnitTablet:mt,popupMarginUnitMobile:yt,closePaddingTop:ft,closePaddingRight:ht,closePaddingBottom:vt,closePaddingLeft:_t,closePaddingTopTablet:Tt,closePaddingRightTablet:Ct,closePaddingBottomTablet:St,closePaddingLeftTablet:wt,closePaddingTopMobile:kt,closePaddingRightMobile:Pt,closePaddingBottomMobile:xt,closePaddingLeftMobile:At,closePaddingUnit:Gt,closePaddingUnitTablet:Mt,closePaddingUnitMobile:Rt,contentBorderHColor:Bt,block_id:Ut}=e,Et=a.replace("uagb/",""),Ot={backgroundType:re,backgroundImage:le,backgroundColor:ne,selectGradient:w,gradientValue:k,gradientColor1:P,gradientColor2:x,gradientLocation1:A,gradientLocation2:R,gradientType:E,gradientAngle:O,backgroundRepeat:Z,backgroundPosition:Q,backgroundSize:z,backgroundAttachment:K,backgroundCustomSize:I,backgroundCustomSizeType:q,backgroundImageColor:F,overlayType:se,customPosition:ce,xPosition:ue,xPositionType:de,yPosition:ye,yPositionType:ve},Lt={backgroundType:re,backgroundImage:ie,backgroundColor:ne,selectGradient:w,gradientValue:k,gradientColor1:P,gradientColor2:x,gradientLocation1:"number"==typeof G?G:Ot.gradientLocation1,gradientLocation2:"number"==typeof B?B:Ot.gradientLocation2,gradientType:E,gradientAngle:"number"==typeof L?L:Ot.gradientAngle,backgroundRepeat:$,backgroundPosition:ee,backgroundSize:D,backgroundAttachment:J,backgroundCustomSize:V,backgroundCustomSizeType:q,backgroundImageColor:F,overlayType:se,customPosition:ce,xPosition:pe,xPositionType:ge,yPosition:fe,yPositionType:_e},Ht={backgroundType:re,backgroundImage:oe,backgroundColor:ne,selectGradient:w,gradientValue:k,gradientColor1:P,gradientColor2:x,gradientLocation1:"number"==typeof M?M:Lt.gradientLocation1,gradientLocation2:"number"==typeof U?U:Lt.gradientLocation2,gradientType:E,gradientAngle:"number"==typeof H?H:Lt.gradientAngle,backgroundRepeat:Y,backgroundPosition:te,backgroundSize:N,backgroundAttachment:X,backgroundCustomSize:W,backgroundCustomSizeType:q,backgroundImageColor:F,overlayType:se,customPosition:ce,xPosition:be,xPositionType:me,yPosition:he,yPositionType:Te},jt={desktop:{width:"vw"===b?"%":b,height:"vh"===h?"%":h},tablet:{width:"vw"===d?"%":d,height:"vh"===v?"%":v},mobile:{width:"vw"===g?"%":g,height:"vh"===_?"%":_}},Ft=ss(Ot),zt=ss(Lt),Dt=ss(Ht),Nt=rs(e,"content"),It=rs(e,"content","tablet"),Vt=rs(e,"content","mobile"),Wt=cs({horizontal:Me,vertical:Re,blur:Be,spread:Ue,color:Ge,position:Ee}),qt=cs({horizontal:Le,vertical:He,blur:je,spread:Fe,color:Oe,position:ze,altColor:Ge});let Zt={".uagb-popup-builder":{"align-items":"banner"===o?r||"flex-start":r||"center","justify-content":(()=>{if("banner"!==o)return n||"center"})(),"background-color":C?Ce:void 0}," .uagb-popup-builder__wrapper--banner":{height:T?ns(m,jt.desktop.height):void 0,"min-height":T?void 0:ns(m,jt.desktop.height)}," .uagb-popup-builder__wrapper--popup":{height:T?ns(m,jt.desktop.height):void 0,"max-height":T?void 0:ns(m,jt.desktop.height),width:ns(c,jt.desktop.width),margin:us(gt,at,lt,it,ot)}," button.uagb-popup-builder__close":{left:"top-left"===S?0:void 0,right:"top-right"===S?0:void 0,padding:us(Gt,ft,ht,vt,_t)}," button.uagb-popup-builder__close svg":{width:ns(Se,"px"),height:ns(Se,"px"),"line-height":ns(Se,"px"),"font-size":ns(Se,"px"),fill:Pe}," button.uagb-popup-builder__close:hover svg":{fill:xe}," button.uagb-popup-builder__close:focus svg":{fill:xe}," .uagb-popup-builder__container":{"justify-content":T?s:"","overflow-y":!T||"center"!==s&&"flex-end"!==s?"":"hidden","box-shadow":Wt,padding:us(Qe,De,Ne,Ie,Ve),...Ft,...Nt}," .uagb-popup-builder__container:hover":{"box-shadow":Ae?qt:"","border-color":Bt}," .uagb-popup-builder__container--popup":{"max-height":T?void 0:ns(m,jt.desktop.height)}},$t={" .uagb-popup-builder__wrapper--banner":{height:T?ns(y,jt.tablet.height):void 0,"min-height":T?void 0:ns(y,jt.tablet.height)}," .uagb-popup-builder__wrapper--popup":{height:T?ns(y,jt.tablet.height):void 0,"max-height":T?void 0:ns(y,jt.tablet.height),width:ns(u,jt.tablet.width),margin:us(mt,nt,rt,st,ct)}," button.uagb-popup-builder__close":{padding:us(Mt,Tt,Ct,St,wt)}," button.uagb-popup-builder__close svg":{width:ns(we,"px"),height:ns(we,"px"),"line-height":ns(we,"px"),"font-size":ns(we,"px")}," .uagb-popup-builder__container":{padding:us(et,We,qe,Ze,$e),...zt,...It}," .uagb-popup-builder__container--popup":{"max-height":T?void 0:ns(y,jt.tablet.height)}},Yt={" .uagb-popup-builder__wrapper--banner":{height:T?ns(f,jt.mobile.height):void 0,"min-height":T?void 0:ns(f,jt.mobile.height)}," .uagb-popup-builder__wrapper--popup":{height:T?ns(f,jt.mobile.height):void 0,"max-height":T?void 0:ns(f,jt.mobile.height),width:ns(p,jt.mobile.width),margin:us(yt,ut,pt,bt,dt)}," button.uagb-popup-builder__close":{padding:us(Rt,kt,Pt,xt,At)}," button.uagb-popup-builder__close svg":{width:ns(ke,"px"),height:ns(ke,"px"),"line-height":ns(ke,"px"),"font-size":ns(ke,"px")}," .uagb-popup-builder__container":{padding:us(tt,Ye,Ke,Je,Xe),...Dt,...Vt}," .uagb-popup-builder__container--popup":{"max-height":T?void 0:ns(f,jt.mobile.height)}};("none"===re||"image"===re&&!le)&&(Zt[" .uagb-popup-builder__container"]["background-color"]="#fff"),"banner"===o&&(Zt[".uagb-popup-builder"]={...Zt[".uagb-popup-builder"],"min-height":ns(m||50,jt.desktop.height)+" !important",height:T?"":"auto !important",overflow:T?"":"visible"},Zt[" .uagb-popup-builder__container--banner"]={"min-height":""+ns(m||50,jt.desktop.height)},$t[".uagb-popup-builder"]={"min-height":ns(y,jt.tablet.height)+" !important"},Yt[".uagb-popup-builder"]={"min-height":ns(f,jt.mobile.height)+" !important"});const Kt=".editor-styles-wrapper .uagb-block-"+Ut;Zt=Object(j.applyFilters)(`spectra.${Et}.styling`,Zt,e),$t=Object(j.applyFilters)(`spectra.${Et}.tabletStyling`,$t,e),Yt=Object(j.applyFilters)(`spectra.${Et}.mobileStyling`,Yt,e);let Jt=ae(Zt,Kt);return"tablet"!==i&&"mobile"!==i||(Jt+=ae($t,Kt,!0,"tablet"),"mobile"===i&&(Jt+=ae(Yt,Kt,!0,"mobile"))),Jt}(l,0,a,s),[l,s]);if(Object(B.useEffect)(()=>{he(e)},[c,u,p,s]),g){const e=document.querySelector(".block-editor-block-list__empty-block-inserter");e&&(e.style.display="none")}const v=Object(n.useSelect)(e=>e("core/editor").getCurrentPostType()),[_,T]=Object(de.useEntityProp)("postType",v,"meta");return Object(B.useEffect)(()=>{"spectra-popup"===v&&T(b?{..._,"spectra-popup-type":d,"spectra-popup-enabled":!0}:{..._,"spectra-popup-type":"unset","spectra-popup-enabled":!1})},[b,d]),b||0!==Object(n.select)("core/block-editor").getBlockParents(t).length?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:h}),o&&React.createElement(os,e),React.createElement(Se,e)):React.createElement("div",{className:"uagb-variation-picker"},React.createElement(ge.__experimentalBlockVariationPicker,{icon:se.popup_builder,label:Object(r.__)("Spectra Popup Builder","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Select a Popup type to start with.","ultimate-addons-for-gutenberg"),variations:m,onSelect:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:y;e.attributes&&i(e.attributes),e.innerBlocks&&f(t,Object(be.createBlocksFromInnerBlocksTemplate)(e.innerBlocks))}(e)}))}),Ts=[{name:"banner",title:Object(r.__)("Info Bar","ultimate-addons-for-gutenberg"),icon:Vr.banner,attributes:{variationSelected:!0,variantType:"banner",popupPositionV:"flex-start",popupHeight:50,popupHeightUnit:"px",hasFixedHeight:!1,hasOverlay:!1,backgroundType:"color",backgroundColor:"#6104ff",closeIconSize:20,closeIconColor:"#ffffff",closePaddingTop:12,closePaddingRight:12,closePaddingBottom:12,closePaddingLeft:12,popupPaddingTop:8,popupPaddingRight:8,popupPaddingBottom:8,popupPaddingLeft:8,contentBorderStyle:"default"},scope:["block"],innerBlocks:[["uagb/container",{widthDesktop:100,directionDesktop:"row",directionTablet:"column",backgroundType:"color",backgroundSizeTablet:"cover",backgroundSizeMobile:"cover",backgroundColor:"",topPaddingDesktop:0,bottomPaddingDesktop:0,leftPaddingDesktop:0,rightPaddingDesktop:0,topPaddingTablet:0,bottomPaddingTablet:0,leftPaddingTablet:0,rightPaddingTablet:0,topPaddingMobile:0,bottomPaddingMobile:0,leftPaddingMobile:0,rightPaddingMobile:0,variationSelected:!0,widthSetByUser:!0,rowGapDesktop:20,rowGapTablet:25,rowGapMobile:20,columnGapDesktop:30},[["uagb/container",{widthDesktop:25,topPaddingDesktop:0,bottomPaddingDesktop:0,leftPaddingDesktop:0,rightPaddingDesktop:0,topPaddingTablet:0,bottomPaddingTablet:0,leftPaddingTablet:0,rightPaddingTablet:0,topPaddingMobile:0,bottomPaddingMobile:0,leftPaddingMobile:0,rightPaddingMobile:0,variationSelected:!0,widthSetByUser:!0},[["uagb/countdown",{showSeparator:!1,digitColor:"#1e293b",digitFontWeight:600,digitFontSize:21,digitFontSizeTablet:24,digitFontSizeMobile:20,labelColor:"#1e293b",labelFontWeight:400,labelFontSize:9,labelFontSizeTablet:8,labelFontSizeMobile:8,separatorRightSpacing:40,separatorRightSpacingTablet:27,separatorRightSpacingMobile:16,boxTopPadding:0,boxRightPadding:0,boxLeftPadding:0,boxBottomPadding:0,boxTopPaddingMobile:5,boxRightPaddingMobile:5,boxLeftPaddingMobile:5,boxBottomPaddingMobile:5,boxWidth:60,boxWidthMobile:40,boxSpacing:15,internalBoxSpacing:4,internalBoxSpacingTablet:4,internalBoxSpacingMobile:2,labelVerticalAlignment:"end",labelVerticalAlignmentTablet:"end",labelVerticalAlignmentMobile:"end",boxBgType:"color",boxBgColor:"#ffffff",boxShadowColor:"rgb(0 0 0 / 15%)",boxShadowBlur:0,boxShadowSpread:0,boxBorderTopWidth:2,boxBorderLeftWidth:2,boxBorderRightWidth:2,boxBorderBottomWidth:2,boxBorderTopLeftRadius:6,boxBorderTopRightRadius:6,boxBorderBottomLeftRadius:6,boxBorderBottomRightRadius:6,boxBorderRadiusUnit:"%",boxBorderTopWidthTablet:2,boxBorderLeftWidthTablet:2,boxBorderRightWidthTablet:2,boxBorderBottomWidthTablet:2,boxBorderTopLeftRadiusTablet:6,boxBorderTopRightRadiusTablet:6,boxBorderBottomLeftRadiusTablet:6,boxBorderBottomRightRadiusTablet:6,boxBorderRadiusUnitTablet:"%",boxBorderTopWidthMobile:2,boxBorderLeftWidthMobile:2,boxBorderRightWidthMobile:2,boxBorderBottomWidthMobile:2,boxBorderTopLeftRadiusMobile:6,boxBorderTopRightRadiusMobile:6,boxBorderBottomLeftRadiusMobile:6,boxBorderBottomRightRadiusMobile:6,boxBorderRadiusUnitMobile:"%",boxBorderStyle:"none",boxBorderColor:"rgba(33,33,33,0.67)",blockTopPadding:0,blockRightPadding:0,blockBottomPadding:0,blockLeftPadding:0}]]],["uagb/container",{widthDesktop:45,widthTablet:100,topPaddingDesktop:0,bottomPaddingDesktop:0,leftPaddingDesktop:0,rightPaddingDesktop:0,topPaddingTablet:0,bottomPaddingTablet:0,leftPaddingTablet:0,rightPaddingTablet:0,topPaddingMobile:0,bottomPaddingMobile:0,leftPaddingMobile:0,rightPaddingMobile:0,variationSelected:!0,widthSetByUser:!0},[["uagb/advanced-heading",{classMigrate:!0,headingDescToggle:!1,headingAlign:"left",headingAlignTablet:"center",headingAlignMobile:"center",headingColor:"#ffffff",headingTag:"h3",headingTitle:Object(r.__)("Engage your visitors!","ultimate-addons-for-gutenberg")}]]],["uagb/container",{widthDesktop:20,widthTablet:100,topPaddingDesktop:0,bottomPaddingDesktop:0,leftPaddingDesktop:0,rightPaddingDesktop:0,topPaddingTablet:0,bottomPaddingTablet:0,leftPaddingTablet:0,rightPaddingTablet:0,topPaddingMobile:0,bottomPaddingMobile:0,leftPaddingMobile:0,rightPaddingMobile:0,variationSelected:!0,widthSetByUser:!0},[["uagb/buttons",{classMigrate:!0,childMigrate:!0,align:"right"},[["uagb/buttons-child",{link:"#",color:"#1e293b",hColor:"",background:"#ffffff",hBackground:"#f2f2f2",borderStyle:"",borderColor:"",borderHColor:"",btnBorderTopWidth:1,btnBorderLeftWidth:1,btnBorderRightWidth:1,btnBorderBottomWidth:1,btnBorderTopLeftRadius:30,btnBorderTopRightRadius:30,btnBorderBottomLeftRadius:30,btnBorderBottomRightRadius:30,btnBorderStyle:"none",btnBorderHColor:"#333"}]]]]]]]]},{name:"popup",title:Object(r.__)("Popup","ultimate-addons-for-gutenberg"),icon:Vr.popup,attributes:{variationSelected:!0,variantType:"popup",popupPositionH:"center",popupPositionV:"center",popupHeight:400,popupHeightUnit:"px",hasFixedHeight:!1,contentBorderStyle:"none",contentBorderTopLeftRadius:4,contentBorderTopRightRadius:4,contentBorderBottomLeftRadius:4,contentBorderBottomRightRadius:4},isDefault:!0,scope:["block"],innerBlocks:[["uagb/info-box",{icon:"circle-check",iconBottomMargin:15,infoBoxTitle:Object(r.__)("Engage Your Visitors!","ultimate-addons-for-gutenberg"),subHeadSpace:30,ctaType:"button",showCtaIcon:!1,ctaText:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg"),paddingBtnTop:14,paddingBtnRight:28,paddingBtnBottom:14,paddingBtnLeft:28,btnBorderStyle:"default"}]]}],Cs=[{attributes:{block_id:{type:"string"},isPreview:{type:"boolean",default:!1},variationSelected:{type:"boolean",default:!1},variantType:{type:"string"},popupPositionH:{type:"string"},popupPositionV:{type:"string"},popupContentAlignmentV:{type:"string",default:"flex-start"},popupWidth:{type:"number",default:700},popupWidthTablet:{type:"number"},popupWidthMobile:{type:"number"},popupWidthUnit:{type:"string",default:"px"},popupWidthUnitTablet:{type:"string",default:"px"},popupWidthUnitMobile:{type:"string",default:"px"},popupHeight:{type:"number"},popupHeightTablet:{type:"number"},popupHeightMobile:{type:"number"},popupMaxHeight:{type:"number"},popupMaxHeightTablet:{type:"number"},popupMaxHeightMobile:{type:"number"},popupHeightUnit:{type:"string",default:"px"},popupHeightUnitTablet:{type:"string",default:"px"},popupHeightUnitMobile:{type:"string",default:"px"},hasFixedHeight:{type:"boolean",default:!1},popupBehaviour:{type:"number",default:"overlay"},hasOverlay:{type:"boolean",default:!0},isDismissable:{type:"boolean",default:!0},haltBackgroundInteraction:{type:"boolean",default:!0},willPushContent:{type:"boolean",default:!0},closeIcon:{type:"string",default:"xmark"},closeIconPosition:{type:"string",default:"top-right"},closeOverlayClick:{type:"boolean",default:!0},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgb(149, 201, 242) 0%, rgb(206, 168, 240) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063a1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#ffffff75"},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},popupOverlayColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"overlay-bg-color"}},...ce("content"),contentBorderStyle:{type:"string",default:"default",UAGCopyPaste:{styleType:"content-border-style"}},closeIconSize:{type:"number",default:25},closeIconSizeTablet:{type:"number"},closeIconSizeMobile:{type:"number"},closeIconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"close-icon-color"}},useSeparateBoxShadows:{type:"boolean",default:!1},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},popupPaddingTop:{type:"number",default:32,UAGCopyPaste:{styleType:"container-top-padding-desktop"}},popupPaddingRight:{type:"number",default:32,UAGCopyPaste:{styleType:"container-right-padding-desktop"}},popupPaddingBottom:{type:"number",default:32,UAGCopyPaste:{styleType:"container-bottom-padding-desktop"}},popupPaddingLeft:{type:"number",default:32,UAGCopyPaste:{styleType:"container-left-padding-desktop"}},popupPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-tablet"}},popupPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-tablet"}},popupPaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-tablet"}},popupPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-tablet"}},popupPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-mobile"}},popupPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-mobile"}},popupPaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-mobile"}},popupPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-mobile"}},popupPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},popupPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},popupPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},popupPaddingLink:{type:"boolean",default:!0},popupMarginTop:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-desktop"}},popupMarginRight:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-desktop"}},popupMarginBottom:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},popupMarginLeft:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-desktop"}},popupMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-tablet"}},popupMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-tablet"}},popupMarginBottomTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},popupMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-tablet"}},popupMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-mobile"}},popupMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-mobile"}},popupMarginBottomMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},popupMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-mobile"}},popupMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},popupMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},popupMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},popupMarginLink:{type:"boolean",default:!0},closePaddingTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-desktop"}},closePaddingRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-desktop"}},closePaddingBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-desktop"}},closePaddingLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-desktop"}},closePaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},closePaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},closePaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},closePaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},closePaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},closePaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},closePaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},closePaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},closePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type"}},closePaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-tablet"}},closePaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-type-mobile"}},closePaddingLink:{type:"boolean",default:!0}},save:function(e){const{attributes:t}=e,{block_id:a,variationSelected:l,variantType:i,isDismissable:o,closeIcon:n}=t,r=ge.useBlockProps.save();return l&&React.createElement("div",{id:r.id,className:Z([r.className,"uagb-block-"+a,"uagb-popup-builder"])},React.createElement("div",{className:Z(["uagb-popup-builder__wrapper","uagb-popup-builder__wrapper--"+i])},o&&n&&React.createElement("div",{className:"uagb-popup-builder__close"},Ce(n)),React.createElement("div",{className:Z(["uagb-popup-builder__container","uagb-popup-builder__container--"+i])},React.createElement(ge.InnerBlocks.Content,null))))},supports:{anchor:!0,multiple:!1,reusable:!1,lock:!1}}],Ss=e=>{let{image:t,isChildren:a=!1}=e;t||console.error(__("Please add preview image.","ultimate-addons-for-gutenberg"));let l=uagb_blocks_info.uagb_url;return l+="/assets/images/block-previews/",a&&(l+="children/"),l+=t+".svg",React.createElement("img",{width:"100%",src:l,alt:""})},ws=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t={example:{attributes:{isPreview:!0}},usesContext:["postId","postType"]};return"site-editor"===uagb_blocks_info.is_site_editor&&(t={}),Object(j.applyFilters)("addCommonDataToSpectraBlocks",{...e,...t})};if("spectra-popup"===window.typenow){let e={};e=Object(j.applyFilters)("uagb/popup-builder",ws(e)),Object(be.registerBlockType)("uagb/popup-builder",{...e,apiVersion:2,title:Object(r.__)("Popup Builder","ultimate-addons-for-gutenberg"),description:Object(r.__)("This block allows you to build a site-wide popup.","ultimate-addons-for-gutenberg"),icon:se.popup_builder,keywords:[Object(r.__)("popup","ultimate-addons-for-gutenberg"),Object(r.__)("builder","ultimate-addons-for-gutenberg")],supports:{anchor:!0,multiple:!1,reusable:!1,lock:!1},category:uagb_blocks_info.category,attributes:pe,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"modal"}):React.createElement(_s,e),save:function(e){const{attributes:t}=e,{block_id:a,variationSelected:l,variantType:i,isDismissable:o,closeIcon:n}=t,s=ge.useBlockProps.save(),c="popup"===i?Object(r.__)("Close Popup","ultimate-addons-for-gutenberg"):Object(r.__)("Close Info Bar","ultimate-addons-for-gutenberg");return l&&React.createElement("div",{id:s.id,className:Z([s.className,"uagb-block-"+a,"uagb-popup-builder"])},React.createElement("div",{className:Z(["uagb-popup-builder__wrapper","uagb-popup-builder__wrapper--"+i])},React.createElement("div",{className:Z(["uagb-popup-builder__container","uagb-popup-builder__container--"+i])},React.createElement(ge.InnerBlocks.Content,null)),o&&n&&React.createElement("button",{className:"uagb-popup-builder__close","aria-label":c},Ce(n))))},variations:Ts,deprecated:Cs})}var ks=function(e,t,a){let l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},i=[];const o=Object(n.select)("core/block-editor").getBlockParents(a);(null==o?void 0:o.length)>0&&(i=o.map(e=>Object(n.select)("core/block-editor").getBlockName(e)));const r=i.includes("uagb/loop-builder"),s=r?{type:"image",url:uagb_blocks_info.uagb_url+"/admin/assets/images/uag-placeholder.svg"}:"",{backgroundType:c,backgroundImageDesktop:u,backgroundImageTablet:p,backgroundImageMobile:b,backgroundColor:d,backgroundPositionDesktop:g,backgroundPositionTablet:m,backgroundPositionMobile:y,backgroundAttachmentDesktop:f,backgroundAttachmentTablet:h,backgroundAttachmentMobile:v,backgroundRepeatDesktop:_,backgroundRepeatTablet:T,backgroundRepeatMobile:C,backgroundSizeDesktop:S,backgroundSizeTablet:w,backgroundSizeMobile:k,gradientValue:P,backgroundCustomSizeDesktop:x,backgroundCustomSizeTablet:A,backgroundCustomSizeMobile:G,backgroundCustomSizeType:M,backgroundImageColor:R,overlayType:B,overlayOpacity:U,customPosition:E,centralizedPosition:O,xPositionDesktop:L,xPositionTablet:H,xPositionMobile:j,xPositionType:F,xPositionTypeTablet:z,xPositionTypeMobile:D,yPositionDesktop:N,yPositionTablet:I,yPositionMobile:V,yPositionType:W,yPositionTypeTablet:q,yPositionTypeMobile:Z,backgroundVideoColor:$,backgroundVideo:Y,gradientColor1:K,gradientColor2:J,gradientLocation1:X,gradientLocationTablet1:Q,gradientLocationMobile1:ee,gradientLocation2:te,gradientLocationTablet2:ae,gradientLocationMobile2:le,gradientType:ie,gradientAngle:oe,gradientAngleTablet:ne,gradientAngleMobile:re,selectGradient:se,backgroundOverlayImageDesktop:ce,backgroundOverlayImageTablet:ue,backgroundOverlayImageMobile:pe,backgroundRepeatOverlayDesktop:be,backgroundRepeatOverlayTablet:de,backgroundRepeatOverlayMobile:ge,backgroundPositionOverlayDesktop:me,backgroundPositionOverlayTablet:ye,backgroundPositionOverlayMobile:fe,backgroundSizeOverlayDesktop:he,backgroundSizeOverlayTablet:ve,backgroundSizeOverlayMobile:_e,backgroundCustomSizeOverlayDesktop:Te,backgroundCustomSizeOverlayTablet:Ce,backgroundCustomSizeOverlayMobile:Se,backgroundCustomOverlaySizeType:we,backgroundAttachmentOverlayDesktop:ke,backgroundAttachmentOverlayTablet:Pe,backgroundAttachmentOverlayMobile:xe,customOverlayPosition:Ae,xPositionOverlayDesktop:Ge,xPositionOverlayTablet:Me,xPositionOverlayMobile:Re,xPositionOverlayType:Be,xPositionOverlayTypeTablet:Ue,xPositionOverlayTypeMobile:Ee,yPositionOverlayDesktop:Oe,yPositionOverlayTablet:Le,yPositionOverlayMobile:He,yPositionOverlayType:je,yPositionOverlayTypeTablet:Fe,yPositionOverlayTypeMobile:ze,overlayBlendMode:De,overlayBlendModeTablet:Ne,overlayBlendModeMobile:Ie,globalBlockStyleId:Ve}=e,We={backgroundType:c,backgroundColor:d,backgroundImage:null!=u&&u.url?u:s,gradientValue:P,gradientColor1:K,gradientColor2:J,gradientLocation1:X,gradientLocation2:te,gradientType:ie,gradientAngle:oe,selectGradient:se,backgroundRepeat:_,backgroundPosition:g,backgroundSize:S,backgroundAttachment:f,backgroundCustomSize:x,backgroundCustomSizeType:M,backgroundImageColor:R,overlayType:B,overlayOpacity:U,backgroundVideo:Y,backgroundVideoColor:$,customPosition:E,centralizedPosition:O,xPosition:L,xPositionType:F,yPosition:N,yPositionType:W,backgroundOverlayImage:ce,backgroundOverlayRepeat:be,backgroundOverlayPosition:me,backgroundOverlaySize:he,backgroundOverlayAttachment:ke,backgroundCustomOverlaySize:Te,backgroundCustomOverlaySizeType:we,customOverlayPosition:Ae,xPositionOverlay:Ge,xPositionOverlayType:Be,yPositionOverlay:Oe,yPositionOverlayType:je,blendMode:De,globalBlockStyleId:Ve},qe={backgroundType:c,backgroundColor:d,backgroundImage:null!=p&&p.url?p:We.backgroundImage,gradientValue:P,gradientColor1:K,gradientColor2:J,gradientLocation1:"number"==typeof Q?Q:We.gradientLocation1,gradientLocation2:"number"==typeof ae?ae:We.gradientLocation2,gradientType:ie,gradientAngle:"number"==typeof ne?ne:We.gradientAngle,selectGradient:se,backgroundRepeat:T||We.backgroundRepeat,backgroundPosition:m||We.backgroundPosition,backgroundSize:w||We.backgroundSize,backgroundAttachment:h||We.backgroundAttachment,backgroundCustomSize:A||We.backgroundCustomSize,backgroundCustomSizeType:M,backgroundImageColor:R,overlayType:B,overlayOpacity:U,backgroundVideo:Y,backgroundVideoColor:$,customPosition:E,centralizedPosition:O,xPosition:isNaN(H)?We.xPosition:H,xPositionType:z||We.xPositionType,yPosition:isNaN(I)?We.yPosition:I,yPositionType:q||We.yPositionType,backgroundOverlayImage:ue||ce,backgroundOverlayRepeat:de||be,backgroundOverlayPosition:ye||me,backgroundOverlaySize:ve||he,backgroundOverlayAttachment:Pe||ke,backgroundCustomOverlaySize:Ce||Te,backgroundCustomOverlaySizeType:we,customOverlayPosition:Ae,xPositionOverlay:"number"==typeof Me?Me:We.xPositionOverlay,xPositionOverlayType:Ue||We.xPositionOverlayType,yPositionOverlay:"number"==typeof Le?Le:We.yPositionOverlay,yPositionOverlayType:Fe||We.yPositionOverlayType,blendMode:Ne||De,globalBlockStyleId:Ve},Ze={backgroundType:c,backgroundColor:d,backgroundImage:null!=b&&b.url?b:qe.backgroundImage,gradientValue:P,gradientColor1:K,gradientColor2:J,gradientLocation1:"number"==typeof ee?ee:qe.gradientLocation1,gradientLocation2:"number"==typeof le?le:qe.gradientLocation2,gradientType:ie,gradientAngle:"number"==typeof re?re:qe.gradientAngle,selectGradient:se,backgroundRepeat:C||qe.backgroundRepeat,backgroundPosition:y||qe.backgroundPosition,backgroundSize:k||qe.backgroundSize,backgroundAttachment:v||qe.backgroundAttachment,backgroundCustomSize:G||qe.backgroundCustomSize,backgroundCustomSizeType:M,backgroundImageColor:R,overlayType:B,overlayOpacity:U,backgroundVideo:Y,backgroundVideoColor:$,customPosition:E,centralizedPosition:O,xPosition:isNaN(j)?qe.xPosition:j,xPositionType:D||qe.xPositionType,yPosition:isNaN(V)?qe.yPosition:V,yPositionType:Z||qe.yPositionType,backgroundOverlayImage:pe||ue||ce,backgroundOverlayRepeat:ge||de||be,backgroundOverlayPosition:fe||ye||me,backgroundOverlaySize:_e||ve||he,backgroundOverlayAttachment:xe||Pe||ke,backgroundCustomOverlaySize:Se||Ce||Te,backgroundCustomOverlaySizeType:we,customOverlayPosition:Ae,xPositionOverlay:"number"==typeof Re?Re:qe.xPositionOverlay,xPositionOverlayType:Ee||qe.xPositionOverlayType,yPositionOverlay:"number"==typeof He?He:qe.yPositionOverlay,yPositionOverlayType:ze||qe.yPositionOverlayType,blendMode:Ie||Ne||De,globalBlockStyleId:Ve};let $e;switch(t){case"Mobile":$e=ss(Ze,l);break;case"Tablet":$e=ss(qe,l);break;default:$e=ss(We,l)}if(!$e)return null;if(null!=l&&l.forStyleSheet)return $e;const Ye={},Ke=e=>e.toLowerCase().replace(/([-_][a-z])/g,e=>e.toUpperCase().replace("-","").replace("_",""));for(const e in $e)$e[e]&&(Ye[Ke(e)]="string"==typeof $e[e]?$e[e].replace(";",""):$e[e]);return Ye};const Ps=(e,t,a)=>{const l=Object(j.applyFilters)("uagb.blocksAttributes",za);return isNaN(e)?l[a][t].default:e};var xs=(e,t,a)=>{const l=Object(j.applyFilters)("uagb.blocksAttributes",za);return e||l[a][t].default};const As=e=>{let t="";return e.forEach(e=>{var a,l;t&&(t+=" ");let i="";"custom"===(null==e?void 0:e.default)&&(null!=e&&null!==(a=e.custom)&&void 0!==a&&a.value||0===(null==e||null===(l=e.custom)||void 0===l?void 0:l.value))?i=`minmax(1px, ${e.custom.value}${e.custom.unit})`:"minmax"===e.default?i=`minmax(${e.min.value}${e.min.unit}, ${e.max.value}${e.max.unit})`:"auto"===e.default&&(i="minmax(1px, auto)"),t+=i+" "}),t};var Gs=function(e){var t,a;let l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Desktop";const i={};return null!==(t=e["gridColumn"+l])&&void 0!==t&&t.length&&(i["grid-template-columns"]=As(e["gridColumn"+l])),null!==(a=e["gridRow"+l])&&void 0!==a&&a.length&&(i["grid-template-rows"]=As(e["gridRow"+l])),e["gridAlignItems"+l]&&(i["align-items"]=e["gridAlignItems"+l]),e["gridJustifyItems"+l]&&(i["justify-items"]=e["gridJustifyItems"+l]),e["gridAlignContent"+l]&&(i["align-content"]=e["gridAlignContent"+l]),e["gridJustifyContent"+l]&&(i["justify-content"]=e["gridJustifyContent"+l]),i},Ms=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase();let{widthDesktop:r,widthTablet:s,widthMobile:c,widthType:u,minHeightDesktop:p,minHeightTablet:b,minHeightMobile:d,minHeightType:g,minHeightTypeTablet:m,minHeightTypeMobile:y,directionDesktop:f,directionTablet:h,directionMobile:v,alignItemsDesktop:_,alignItemsTablet:T,alignItemsMobile:C,justifyContentDesktop:S,justifyContentTablet:w,justifyContentMobile:k,wrapDesktop:P,wrapTablet:x,wrapMobile:A,alignContentDesktop:G,alignContentTablet:M,alignContentMobile:R,backgroundType:B,backgroundImageDesktop:U,backgroundColor:E,backgroundPositionDesktop:O,backgroundAttachmentDesktop:L,backgroundRepeatDesktop:H,backgroundSizeDesktop:j,gradientValue:F,containerBorderHColor:z,boxShadowColor:D,boxShadowHOffset:N,boxShadowVOffset:I,boxShadowBlur:V,boxShadowSpread:W,boxShadowPosition:q,boxShadowColorHover:Z,boxShadowHOffsetHover:$,boxShadowVOffsetHover:Y,boxShadowBlurHover:K,boxShadowSpreadHover:J,boxShadowPositionHover:X,topPaddingDesktop:Q,bottomPaddingDesktop:ee,leftPaddingDesktop:te,rightPaddingDesktop:le,topPaddingTablet:ie,bottomPaddingTablet:oe,leftPaddingTablet:ne,rightPaddingTablet:re,topPaddingMobile:se,bottomPaddingMobile:ce,leftPaddingMobile:ue,rightPaddingMobile:pe,paddingType:be,paddingTypeTablet:de,paddingTypeMobile:ge,topMarginDesktop:me,bottomMarginDesktop:ye,leftMarginDesktop:fe,rightMarginDesktop:he,topMarginTablet:ve,bottomMarginTablet:_e,leftMarginTablet:Te,rightMarginTablet:Ce,topMarginMobile:Se,bottomMarginMobile:we,leftMarginMobile:ke,rightMarginMobile:Pe,marginType:xe,marginTypeTablet:Ae,marginTypeMobile:Ge,rowGapDesktop:Me,rowGapTablet:Re,rowGapMobile:Be,rowGapType:Ue,rowGapTypeTablet:Ee,rowGapTypeMobile:Oe,columnGapDesktop:Le,columnGapTablet:He,columnGapMobile:je,columnGapType:Fe,columnGapTypeTablet:ze,columnGapTypeMobile:De,contentWidth:Ne,innerContentWidth:Ie,bottomColor:Ve,bottomHeight:We,bottomHeightTablet:qe,bottomHeightMobile:Ze,bottomWidth:$e,topColor:Ye,topHeight:Ke,topHeightTablet:Je,topHeightMobile:Xe,topWidth:Qe,backgroundCustomSizeDesktop:et,backgroundCustomSizeType:tt,backgroundImageColor:at,overlayType:lt,overlayOpacity:it,backgroundVideoColor:ot,innerContentCustomWidthType:nt,backgroundVideo:rt,textColor:st,linkColor:ct,linkHoverColor:ut,innerContentCustomWidthDesktop:pt,innerContentCustomWidthTablet:bt,innerContentCustomWidthMobile:dt,innerContentCustomWidthTypeMobile:gt,innerContentCustomWidthTypeTablet:mt,overflow:yt,isBlockRootParent:ft,widthTypeTablet:ht,widthTypeMobile:vt,gradientColor1:_t,gradientColor2:Tt,gradientLocation1:Ct,gradientLocationTablet1:St,gradientLocationMobile1:wt,gradientLocation2:kt,gradientLocationTablet2:Pt,gradientLocationMobile2:xt,gradientType:At,gradientAngle:Gt,gradientAngleTablet:Mt,gradientAngleMobile:Rt,selectGradient:Bt,customPosition:Ut,xPositionDesktop:Et,xPositionTablet:Ot,xPositionMobile:Lt,xPositionType:Ht,xPositionTypeTablet:jt,xPositionTypeMobile:Ft,yPositionDesktop:zt,yPositionTablet:Dt,yPositionMobile:Nt,yPositionType:It,yPositionTypeTablet:Vt,yPositionTypeMobile:Wt,backgroundCustomSizeTablet:qt,backgroundCustomSizeMobile:Zt,backgroundSizeTablet:$t,backgroundSizeMobile:Yt,backgroundRepeatTablet:Kt,backgroundRepeatMobile:Jt,backgroundAttachmentTablet:Xt,backgroundAttachmentMobile:Qt,backgroundPositionTablet:ea,backgroundPositionMobile:ta,backgroundImageTablet:aa,backgroundImageMobile:la,containerBorderTopWidth:ia,containerBorderRightWidth:oa,containerBorderBottomWidth:na,containerBorderLeftWidth:ra,containerBorderTopWidthTablet:sa,containerBorderRightWidthTablet:ca,containerBorderBottomWidthTablet:ua,containerBorderLeftWidthTablet:pa,containerBorderTopWidthMobile:ba,containerBorderRightWidthMobile:da,containerBorderBottomWidthMobile:ga,containerBorderLeftWidthMobile:ma,backgroundVideoFallbackImage:ya,globalBlockStyleId:fa,childrenWidthDesktop:ha,childrenWidthTablet:va,childrenWidthMobile:_a,layout:Ta,isGridCssInParent:Ca,gridColumnStart:Sa,gridColumnEnd:wa,gridRowStart:ka,gridRowEnd:Pa,gridAlignItems:xa,gridJustifyItems:Aa,gridColumnSpan:Ga,gridRowSpan:Ma,gridSettingType:Ra,gridColumnStartTablet:Ba,gridColumnEndTablet:Ua,gridRowStartTablet:Ea,gridRowEndTablet:Oa,gridColumnStartMobile:La,gridColumnEndMobile:Ha,gridRowStartMobile:ja,gridRowEndMobile:Fa,gridColumnSpanTablet:za,gridRowSpanTablet:Da,gridColumnSpanMobile:Na,gridRowSpanMobile:Ia,gridAlignItemsTablet:Va,gridJustifyItemsTablet:Wa,gridAlignItemsMobile:qa,gridJustifyItemsMobile:Za,orderDesktop:$a,orderTablet:Ya,orderMobile:Ka,customOrderDesktop:Ja,customOrderTablet:Xa,customOrderMobile:Qa}=e;const el=ks(e,l,t,{hasPseudo:!0,forStyleSheet:!0}),tl="grid"===Ta,al=Ps(pt,"innerContentCustomWidthDesktop",o),ll=Ps(r,"widthDesktop",o),il=Ps(Me,"rowGapDesktop",o),ol=Ps(Le,"columnGapDesktop",o),nl=rs(e,"container"),rl=rs(e,"container","tablet"),sl=rs(e,"container","mobile");nl["border-color"]||(nl["border-color"]="inherit"),ie=void 0!==ie?ie:Q,se=void 0!==se?se:ie,oe=void 0!==oe?oe:ee,ce=void 0!==ce?ce:oe,ne=void 0!==ne?ne:te,ue=void 0!==ue?ue:ne,re=void 0!==re?re:le,pe=void 0!==pe?pe:re,ve=void 0!==ve?ve:me,Se=void 0!==Se?Se:ve,_e=void 0!==_e?_e:ye,we=void 0!==we?we:_e,Te=void 0!==Te?Te:fe,ke=void 0!==ke?ke:Te,Ce=void 0!==Ce?Ce:he,Pe=void 0!==Pe?Pe:Ce,Ya="initial"!==Ya?Ya:$a,Ka="initial"!==Ka?Ka:Ya,Xa=void 0!==Xa?Xa:Ja,Qa=void 0!==Qa?Qa:Xa;const cl=fe,ul=he,pl=Te,bl=Ce,dl=ke,gl=Pe;"alignfull"!==Ne&&"alignwide"!==Ne||(fe=he=Te=Ce=ke=Pe="");const ml="100vw",yl="number"==typeof it&&"none"!==lt&&("color"===lt&&ot||"gradient"===lt&&F)?1-it:1,fl={backgroundType:B,backgroundImage:U,backgroundColor:E,gradientValue:F,gradientColor1:_t,gradientColor2:Tt,gradientLocation1:Ct,gradientLocation2:kt,gradientType:At,gradientAngle:Gt,selectGradient:Bt,backgroundRepeat:H,backgroundPosition:O,backgroundSize:j,backgroundAttachment:L,backgroundCustomSize:et,backgroundCustomSizeType:tt,backgroundImageColor:at,overlayType:lt,backgroundVideo:rt,backgroundVideoColor:ot},hl=ss(fl),vl={".wp-block-uagb-container .block-editor-block-list__block":{color:st},".wp-block-uagb-container *":{color:st},".wp-block-uagb-container .block-editor-block-list__block a":{color:ct},".wp-block-uagb-container .block-editor-block-list__block a:hover":{color:ut}," > .uagb-container__shape-top svg":{width:"calc( "+Qe+"% + 1.3px )",height:ns(Ke,"px")}," > .uagb-container__shape-top .uagb-container__shape-fill":{fill:Ye}," > .uagb-container__shape-bottom svg":{width:"calc( "+$e+"% + 1.3px )",height:ns(We,"px")}," > .uagb-container__shape-bottom .uagb-container__shape-fill":{fill:Ve}," .uagb-container__video-wrap video":{opacity:yl}};null!=ya&&ya.url&&(vl[" .uagb-container__video-wrap video"].background=`url(${ya.url}) 50% 50%;`,vl[" .uagb-container__video-wrap video"]["background-size"]="cover");let _l=q;"outset"===q&&(_l="");let Tl=X;"outset"===X&&(Tl="");let Cl={},Sl={},wl={};if(i){const e={backgroundType:B,backgroundImage:U,backgroundColor:E,gradientValue:F,gradientColor1:_t,gradientColor2:Tt,gradientLocation1:Ct,gradientLocation2:kt,gradientType:At,gradientAngle:Gt,selectGradient:Bt,backgroundRepeat:H,backgroundPosition:O,backgroundSize:j,backgroundAttachment:L,backgroundCustomSize:et,backgroundCustomSizeType:tt,backgroundImageColor:at,overlayType:lt,backgroundVideo:rt,backgroundVideoColor:ot,customPosition:Ut,xPosition:Et,xPositionType:Ht,yPosition:zt,yPositionType:It,globalBlockStyleId:fa};wl=ss(e,{blockName:"container"});const t={backgroundType:B,backgroundImage:aa,backgroundColor:E,gradientValue:F,gradientColor1:_t,gradientColor2:Tt,gradientLocation1:St||e.gradientLocation1,gradientLocation2:Pt||e.gradientLocation2,gradientType:At,gradientAngle:Mt||e.gradientAngle,selectGradient:Bt,backgroundRepeat:Kt,backgroundPosition:ea,backgroundSize:$t,backgroundAttachment:Xt,backgroundCustomSize:qt,backgroundCustomSizeType:tt,backgroundImageColor:at,overlayType:lt,backgroundVideo:rt,backgroundVideoColor:ot,customPosition:Ut,xPosition:Ot,xPositionType:jt,yPosition:Dt,yPositionType:Vt,globalBlockStyleId:fa};Sl=ss(t,{blockName:"container"});const a={backgroundType:B,backgroundImage:la,backgroundColor:E,gradientValue:F,gradientColor1:_t,gradientColor2:Tt,gradientLocation1:wt||t.gradientLocation1,gradientLocation2:xt||t.gradientLocation2,gradientType:At,gradientAngle:Rt||t.gradientAngle,selectGradient:Bt,backgroundRepeat:Jt,backgroundPosition:ta,backgroundSize:Yt,backgroundAttachment:Qt,backgroundCustomSize:Zt,backgroundCustomSizeType:tt,backgroundImageColor:at,overlayType:lt,backgroundVideo:rt,backgroundVideoColor:ot,customPosition:Ut,xPosition:Lt,xPositionType:Ft,yPosition:Nt,yPositionType:Wt,globalBlockStyleId:fa};Cl=ss(a,{blockName:"container"})}const kl={"padding-top":ns(Q,be),"padding-bottom":ns(ee,be),"padding-left":ns(te,be),"padding-right":ns(le,be),"margin-top":ns(me,xe,!0),"margin-bottom":ns(ye,xe,!0),"margin-left":ns(fe,xe,!0),"margin-right":ns(he,xe,!0),"box-shadow":ns(N,"px")+" "+ns(I,"px")+" "+ns(V,"px")+" "+ns(W,"px")+" "+D+" "+_l,"min-height":ns(p,g),...nl,...wl,overflow:yt,order:"custom"===$a?Ja:$a};K=isNaN(K)?"":K,Z=Z||"";let Pl=".wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout";ft&&"alignfull"===Ne&&"alignwide"===Ie||(Pl=".wp-block-uagb-container > .block-editor-inner-blocks > .block-editor-block-list__layout");const xl=i||"#block-"+t,Al={},Gl={},Ml={};vl[Pl]={"min-height":ns(p,g)},vl[".block-editor-block-list__block"]={"min-height":ns(p,g)},tl||(vl[Pl]={"flex-direction":f,"align-items":_,"justify-content":S,"flex-wrap":P,"align-content":G,"row-gap":ns(il,Ue),"column-gap":ns(ol,Fe),...vl[Pl]},vl[".block-editor-block-list__block"]={"flex-direction":f,"align-items":_,"justify-content":S,"flex-wrap":P,"align-content":G,...vl[".block-editor-block-list__block"]}),Al[`.is-root-container > .block-editor-block-list__block .block-editor-block-list__block${xl} `]={"max-width":ns(ll,u),width:"100%"},Gl[`.is-root-container > .block-editor-block-list__block .uagb-editor-preview-mode-tablet.block-editor-block-list__block${xl} `]={"max-width":ns(s,ht),width:"100%"},Ml[`.is-root-container > .block-editor-block-list__block .uagb-editor-preview-mode-mobile.block-editor-block-list__block${xl} `]={"max-width":ns(c,vt),width:"100%"},"alignfull"===Ne&&"alignwide"===Ie&&(Al[`.block-editor-block-list__block.wp-block-uagb-container${xl} > .uagb-container-inner-blocks-wrap`]={"--inner-content-custom-width":`min(${ml},${al}${nt})`,"max-width":"var(--inner-content-custom-width)",width:"100%","margin-left":"auto","margin-right":"auto"},Gl[`.block-editor-block-list__block.uagb-editor-preview-mode-tablet.wp-block-uagb-container${xl} > .uagb-container-inner-blocks-wrap`]={"--inner-content-custom-width":`min(${ml},${bt||al}${mt})`,"max-width":"var(--inner-content-custom-width)",width:"100%","margin-left":"auto","margin-right":"auto"},Ml[`.block-editor-block-list__block.uagb-editor-preview-mode-mobile.wp-block-uagb-container${xl} > .uagb-container-inner-blocks-wrap`]={"--inner-content-custom-width":`min(${ml},${dt||bt||al}${gt})`,"max-width":"var(--inner-content-custom-width)",width:"100%","margin-left":"auto","margin-right":"auto"});const Rl={[Pl]:{"flex-direction":h,"align-items":T,"justify-content":w,"flex-wrap":x,"align-content":M,"row-gap":ns(Re,Ee),"column-gap":ns(He,ze),"min-height":ns(b,m)},".block-editor-block-list__block":{"min-height":ns(b,m),"flex-direction":h,"align-items":T,"justify-content":w,"flex-wrap":x,"align-content":M}," > .uagb-container__shape-top svg":{height:ns(Je,"px")}," > .uagb-container__shape-bottom svg":{height:ns(qe,"px")}},Bl={'.wp-block-uagb-container .block-editor-inner-blocks .block-editor-block-list__layout .wp-block[data-type="core/quote"]':{"margin-inline-start":"0px","margin-inline-end":"0px"},[Pl]:{"flex-direction":v,"align-items":C,"justify-content":k,"flex-wrap":A,"align-content":R,"row-gap":ns(Be,Oe),"column-gap":ns(je,De),"min-height":ns(d,y)},".block-editor-block-list__block":{"min-height":ns(d,y),"flex-direction":v,"align-items":C,"justify-content":k,"flex-wrap":A,"align-content":R}," > .uagb-container__shape-top svg":{height:ns(Xe,"px")}," > .uagb-container__shape-bottom svg":{height:ns(Ze,"px")}};if(tl){const t={};t["grid-column-gap"]=ns(ol,Fe),t["grid-row-gap"]=ns(il,Ue),vl[Pl]={...t,...Gs(e,"Desktop")};const a={};a["grid-column-gap"]=ns(He,ze),a["grid-row-gap"]=ns(Re,Ee),Rl[Pl]={...a,...Gs(e,"Tablet")};const l={};l["grid-column-gap"]=ns(je,De),l["grid-row-gap"]=ns(Be,Oe),Bl[Pl]={...l,...Gs(e,"Mobile")}}if("video"===B){if(vl[" .uagb-container__video-wrap"]={...hl,...nl},Rl[" .uagb-container__video-wrap"]={...rl},Bl[" .uagb-container__video-wrap"]={...sl},vl[".wp-block-uagb-container"]={"padding-top":ns(Q,be),"padding-bottom":ns(ee,be),"padding-left":ns(te,be),"padding-right":ns(le,be),"margin-top":ns(me,xe,!0),"margin-bottom":ns(ye,xe,!0),"margin-left":ns(fe,xe,!0),"margin-right":ns(he,xe,!0),"box-shadow":ns(N,"px")+" "+ns(I,"px")+" "+ns(V,"px")+" "+ns(W,"px")+" "+D+" "+_l,"min-height":ns(p,g),overflow:yt},Rl[".wp-block-uagb-container"]={"padding-top":ns(ie,de),"padding-bottom":ns(oe,de),"padding-left":ns(ne,de),"padding-right":ns(re,de),"margin-top":ns(ve,Ae,!0),"margin-bottom":ns(_e,Ae,!0),"margin-left":ns(Te,Ae,!0),"margin-right":ns(Ce,Ae,!0),"min-height":ns(b,m)},Bl[".wp-block-uagb-container"]={"padding-top":ns(se,ge),"padding-bottom":ns(ce,ge),"padding-left":ns(ue,ge),"padding-right":ns(pe,ge),"margin-top":ns(Se,Ge,!0),"margin-bottom":ns(we,Ge,!0),"margin-left":ns(ke,Ge,!0),"margin-right":ns(Pe,Ge,!0),"min-height":ns(d,y)},vl[".wp-block-uagb-container:hover .uagb-container__video-wrap"]={"border-color":z,"box-shadow":""},""!==Z||""!==K){const e=""===K?"":ns(K,"px");vl[".wp-block-uagb-container:hover .uagb-container__video-wrap"]["box-shadow"]=ns($,"px")+" "+ns(Y,"px")+" "+e+" "+ns(J,"px")+" "+Z+" "+Tl}}else if(vl[".wp-block-uagb-container"]=kl,vl[".wp-block-uagb-container:not(.uagb-is-root-container)"]={"margin-left":ns(cl,xe)+" !important","margin-right":ns(ul,xe)+" !important"},Rl[".wp-block-uagb-container"]={"padding-top":ns(ie,de),"padding-bottom":ns(oe,de),"padding-left":ns(ne,de),"padding-right":ns(re,de),"margin-top":ns(ve,Ae,!0),"margin-bottom":ns(_e,Ae,!0),"margin-left":ns(Te,Ae,!0),"margin-right":ns(Ce,Ae,!0),"min-height":ns(b,m,!0),...rl,...Sl,order:"custom"===Ya?Xa:Ya},Rl[".wp-block-uagb-container:not(.uagb-is-root-container)"]={"margin-left":ns(pl,Ae)+" !important","margin-right":ns(bl,Ae)+" !important"},Bl[".wp-block-uagb-container"]={"padding-top":ns(se,ge),"padding-bottom":ns(ce,ge),"padding-left":ns(ue,ge),"padding-right":ns(pe,ge),"margin-top":ns(Se,Ge,!0),"margin-bottom":ns(we,Ge,!0),"margin-left":ns(ke,Ge,!0),"margin-right":ns(Pe,Ge,!0),"min-height":ns(d,y),...sl,...Cl,order:"custom"===Ka?Qa:Ka},Bl[".wp-block-uagb-container:not(.uagb-is-root-container)"]={"margin-left":ns(dl,Ge)+" !important","margin-right":ns(gl,Ge)+" !important"},vl[".wp-block-uagb-container:hover"]={"border-color":z,"box-shadow":""},""!==Z||""!==K){const e=""===K?"":ns(K,"px");vl[".wp-block-uagb-container:hover"]["box-shadow"]=ns($,"px")+" "+ns(Y,"px")+" "+e+" "+ns(J,"px")+" "+Z+" "+Tl}if("default"===Ne&&(vl[".block-editor-block-list__block"]["max-width"]=ns(ll,u),Rl[".block-editor-block-list__block"]["max-width"]=ns(s,ht),Bl[".block-editor-block-list__block"]["max-width"]=ns(c,vt)),lt&&"none"!==lt&&Object.keys(el).length){const e={top:ia||0,right:oa||0,bottom:na||0,left:ra||0},t={top:sa||e.top,right:ca||e.right,bottom:ua||e.bottom,left:pa||e.left},a={top:ba||t.top,right:da||t.right,bottom:ga||t.bottom,left:ma||t.left};vl[".wp-block-uagb-container::before"]={content:'""',top:"-"+ns(e.top,"px"),left:"-"+ns(e.left,"px"),width:`calc(100% + ${ns(e.left,"px")} + ${ns(e.right,"px")})`,height:`calc(100% + ${ns(e.top,"px")} + ${ns(e.bottom,"px")})`,...nl,...el},vl[".wp-block-uagb-container:hover::before"]={"border-color":z},Rl[".wp-block-uagb-container::before"]={top:"-"+ns(t.top,"px"),left:"-"+ns(t.left,"px"),width:"100%",height:"100%",...rl},Bl[".wp-block-uagb-container::before"]={top:"-"+ns(a.top,"px"),left:"-"+ns(a.left,"px"),width:"100%",height:"100%",...sl}}const Ul={width:"auto"},El={width:"100%"},Ol=".wp-block-uagb-container > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block",Ll=".wp-block-uagb-container > .uagb-container-inner-blocks-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > .wp-block";if(f&&"auto"===ha&&(vl[Ol]=Ul,vl[Ll]=Ul),h&&("auto"===va?(Rl[Ol]=Ul,Rl[Ll]=Ul):(Rl[Ol]=El,Rl[Ll]=El)),v&&("auto"===_a?(Bl[Ol]=Ul,Bl[Ll]=Ul):(Bl[Ol]=El,Bl[Ll]=El)),Ca){const e={},a={"grid-column":"span 1","grid-row":"span 1"},l={"grid-column":"span 1","grid-row":"span 1"};"advance"===Ra?(Sa&&wa&&(e["grid-column"]=`${Sa} / ${wa}`),ka&&Pa&&(e["grid-row"]=`${ka} / ${Pa}`),Ba&&Ua&&(a["grid-column"]=`${Ba} / ${Ua}`),Ea&&Oa&&(a["grid-row"]=`${Ea} / ${Oa}`),La&&Ha&&(l["grid-column"]=`${La} / ${Ha}`),ja&&Fa&&(l["grid-row"]=`${ja} / ${Fa}`)):(Ga&&(e["grid-column"]="span "+Ga),Ma&&(e["grid-row"]="span "+Ma),za&&(a["grid-column"]="span "+za),Da&&(a["grid-row"]="span "+Da),Na&&(l["grid-column"]="span "+Na),Ia&&(l["grid-row"]="span "+Ia)),xa&&(e["align-self"]=xa),Aa&&(e["justify-self"]=Aa),Va&&(a["align-self"]=Va),Wa&&(a["justify-self"]=Wa),qa&&(l["align-self"]=qa),Za&&(l["justify-self"]=Za),Al[".block-editor-block-list__layout > #block-"+t]=e,Gl[".block-editor-block-list__layout > #block-"+t]=a,Ml[".block-editor-block-list__layout > #block-"+t]=l}const Hl=i?".editor-styles-wrapper "+i:".editor-styles-wrapper #block-"+t;let jl=ae(vl,Hl);return jl+=ae(Al,".editor-styles-wrapper "),("tablet"===n||"mobile"===n||i)&&(jl+=ae(Rl,""+Hl,!0,"tablet"),jl+=ae(Gl,".editor-styles-wrapper ",!0,"tablet"),("mobile"===n||i)&&(jl+=ae(Bl,""+Hl,!0,"mobile"),jl+=ae(Ml,".editor-styles-wrapper ",!0,"mobile"))),jl};var Rs,Bs=()=>{var e,t;const{getSelectedBlock:a}=Object(n.select)("core/block-editor"),l=!(null===(e=a())||void 0===e||!e.clientId)&&"block-"+(null===(t=a())||void 0===t?void 0:t.clientId);l&&setTimeout(()=>{const e=(()=>{const e=document.getElementsByClassName("is-tablet-preview"),t=document.getElementsByClassName("is-mobile-preview");if(0!==e.length||0!==t.length){var a,l;const i=e[0]||t[0];let o=!1;i&&(o=i.getElementsByTagName("iframe")[0]);const n=(null===(a=o)||void 0===a?void 0:a.contentWindow.document)||(null===(l=o)||void 0===l?void 0:l.contentDocument);if(n)return n}return document})().getElementById(l);e&&e.scrollIntoView({behavior:"smooth",block:"center",inline:"center"})},500)},Us=a(97),Es=0,Os={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ls={};Ls.locals=Us.a.locals||{},Ls.use=function(){return Es++||(Rs=ke()(Us.a,Os)),Ls},Ls.unuse=function(){Es>0&&!--Es&&(Rs(),Rs=null)};var Hs=Ls;const js=e=>{const[t,a]=Object(B.useState)(null),l=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Hs.use(),()=>{Hs.unuse()}),[]);const i=Object(n.useSelect)(e=>e("core/block-editor").getSelectedBlock(),[]),o=null==i?void 0:i.name.split("/").pop();Object(B.useEffect)(()=>{a(D(l))},[o]);const r=e.enableDynamicContent&&e.name?Object(j.applyFilters)("uagb.registerTextExtender","",null==i?void 0:i.name,e.name,e.dynamicContentType):null,s=()=>{var t,a;if(!e.enableDynamicContent||!e.name)return!1;const l=null==i||null===(t=i.attributes)||void 0===t?void 0:t.dynamicContent;return!(!l||!0!==(null==l||null===(a=l[e.name])||void 0===a?void 0:a.enable))},c=t=>{if(e.name&&null!=e&&e.setAttributes)e.setAttributes({[e.name]:t});else if(null!=e&&e.setAttributes){var a;null==e||e.setAttributes({[null==e||null===(a=e.data)||void 0===a?void 0:a.label]:t})}null!=e&&e.onChange&&(null==e||e.onChange(t))},u=t=>{var a;null!=e&&e.onChange&&(null==e||e.onChange(t[null==e||null===(a=e.data)||void 0===a?void 0:a.label]))},p=()=>{var t;return React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:null==e?void 0:e.label}),React.createElement("div",{className:"uagb-number-control__actions uagb-control__actions"},React.createElement(Ka,{onReset:u,attributeNames:[null==e||null===(t=e.data)||void 0===t?void 0:t.label],setAttributes:null==e?void 0:e.setAttributes})))},b=z(e.label),d=Object(j.applyFilters)(`spectra.${o}.${t}.${b}.before`,"",o),g=Object(j.applyFilters)(`spectra.${o}.${t}.${b}`,"",o);return React.createElement("div",{ref:l,className:"components-base-control"},d,React.createElement("div",{className:Be()("components-base-control uagb-text-control uagb-size-type-field-tabs",s()?" uagb-text-control--open-dynamic-content":"",e.className)},"inline"!==(null==e?void 0:e.variant)&&(null==e?void 0:e.showHeaderControls)&&React.createElement(p,null),React.createElement("div",{className:Be()("uagb-text-control__controls","uagb-text-control__controls-"+(null==e?void 0:e.variant))},!s()&&React.createElement(React.Fragment,null,"textarea"!==(null==e?void 0:e.variant)&&React.createElement(Le.TextControl,{label:("inline"===(null==e?void 0:e.variant)||!("inline"===(null==e?void 0:e.variant)||null!=e&&e.showHeaderControls))&&(null==e?void 0:e.label),type:null==e?void 0:e.type,value:null==e?void 0:e.value,onChange:c,autoComplete:null==e?void 0:e.autoComplete,readOnly:s(),placeholder:null==e?void 0:e.placeholder,onKeyUp:null==e?void 0:e.onKeyUp}),"textarea"===(null==e?void 0:e.variant)&&React.createElement(Le.TextareaControl,{label:(null==e||!e.showHeaderControls)&&(null==e?void 0:e.label),value:null==e?void 0:e.value,onChange:c,autoComplete:null==e?void 0:e.autoComplete,readOnly:s()})),s()&&"inline"===(null==e?void 0:e.variant)&&React.createElement("div",{className:"components-base-control"},React.createElement("div",{className:"components-base-control__field"},React.createElement("label",{className:"components-base-control__label"},e.label))),r),React.createElement(De,{text:e.help}),s()&&React.createElement(fi,null)),g)};js.defaultProps={label:"",type:"text",className:"",allowReset:!0,resetFallbackValue:"",placeholder:null,variant:"full-width",autoComplete:"off",showHeaderControls:!0,dynamicContentType:"url",enableDynamicContent:!1,help:!1};var Fs=js;const zs=[{defaultAttributes:va},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Ds=[{defaultAttributes:va},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:15},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var Ns,Is=a(98),Vs=0,Ws={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},qs={};qs.locals=Is.a.locals||{},qs.use=function(){return Vs++||(Ns=ke()(Is.a,Ws)),qs},qs.unuse=function(){Vs>0&&!--Vs&&(Ns(),Ns=null)};var Zs=qs,$s=e=>{const{closeModal:t,setAttributes:a,globalBlockStyles:l,updateGlobalBlockStyles:i,setGenerate:o,uniqueID:n,setUniqueID:s,openModal:c,attributes:{globalBlockStyleId:u},isOpen:p,blockName:b}=e,[d,g]=Object(B.useState)(""),[m,y]=Object(B.useState)(null),f=()=>y(null),h=u?null:React.createElement("div",{className:"gbs-update-save-add-btn"},React.createElement(Le.Button,{className:"spectra-gbs-button components-base-control",onClick:()=>{c(),s((new Date).getTime().toString())},variant:"secondary"},Object(r.__)("Add New","ultimate-addons-for-gutenberg"))),v=()=>{var e;const s=null==d?void 0:d.trim();if(!s||""===s)return void y(Object(r.__)("Please enter a style name","ultimate-addons-for-gutenberg"));if(s.length<3||s.length>50)return void y(Object(r.__)("Style name should be more then 3 characters and less then 50 characters","ultimate-addons-for-gutenberg"));if(l.find(e=>e.label===s&&e.blockName===b))return void y(Object(r.__)("Style name already exists","ultimate-addons-for-gutenberg"));if(/^(?=.*[~`!@#$%^&*()--+={}\[\]|\\:;"'<>,.?/_₹]).*$/.test(s))return void y(Object(r.__)("Style name should not contain special characters","ultimate-addons-for-gutenberg"));o(!0);const c=(null==s||null===(e=s.replace(/\s+/g,"-"))||void 0===e?void 0:e.toLowerCase())+n;a({globalBlockStyleName:s,globalBlockStyleId:c});const u=[...l,{value:c,label:s}];t(),g(""),i(u),f()};return React.createElement(React.Fragment,null,h,"open"===p&&React.createElement(Le.Modal,{onRequestClose:()=>{t(),g(""),f()},className:"spectra-global-block-style-name-modal"},React.createElement("div",{className:"gbs-add-new-style-head"},React.createElement("div",null,React.createElement("h3",null,Object(r.__)("Save as Global Block Style","ultimate-addons-for-gutenberg")),React.createElement("p",null," ",Object(r.__)("Use the saved style anywhere on the website","ultimate-addons-for-gutenberg"))),React.createElement("svg",{className:"popup-close-btn",onClick:t,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},React.createElement("path",{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}))),React.createElement("div",{className:"input-wrap "+(m?"gbs-error":"")},React.createElement(Fs,{placeholder:Object(r.__)("Name","ultimate-addons-for-gutenberg"),value:d,onChange:e=>{g(null==e?void 0:e.toString())},label:Object(r.__)("Style Name","ultimate-addons-for-gutenberg"),onKeyUp:e=>{13===e.keyCode&&v()},showHeaderControls:!1}),m&&React.createElement("p",{className:"gbs-error-msg"},m)),React.createElement("div",{className:"button-wrap"},React.createElement(Le.Button,{onClick:t,variant:"secondary",className:"cancel-button"},Object(r.__)("Cancel","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{onClick:v,variant:"primary"},Object(r.__)("Save","ultimate-addons-for-gutenberg")))))};function Ys(e){return e?Object(r.__)("Linked Style","ultimate-addons-for-gutenberg"):Object(r.__)("Link to Existing Style","ultimate-addons-for-gutenberg")}function Ks(e,t){const a={};for(const t in e){const l=e[t];if(null!=l&&l.isGBSStyle){let e="";switch(l.type){case"boolean":e=!1;break;case"number":e=.001020304;break;case"object":e={};break;case"array":e=[]}a[t]=e}}$(a)||t(a)}function Js(e,t){const a={};for(const t in e).001020304===e[t]&&(a[t]=void 0);$(a)||t(a)}function Xs(e,t,a){const l=(null==e?void 0:e.attributes)||t,i={};for(const e in t){var o;const l=t[e];null!==(o=a[e])&&void 0!==o&&o.isGBSStyle&&l&&"0.001020304"!==l&&{}!==l&&[]!==l&&!$(l)&&(i[e]=l)}const n={...l,...i};for(const e in n).001020304===(null==n?void 0:n[e])&&(n[e]="");return n}function Qs(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"post_ids";const l="post_ids"===a?"post_ids":"page_template_slugs";let i=null!=e&&e[l]?[...e[l]]:[];return i.push(t),null!=e&&e[l]&&(i=[...new Set(i)]),i}const ec=(e,t)=>{var a;const l=e.find(e=>(null==e?void 0:e.value)===t);if(null==l||!l.attributes)return{};const i=l.attributes,o=null==l||null===(a=l.blockName)||void 0===a?void 0:a.replace("uagb/",""),n={};for(const e in i){var r,s;null!=za&&null!==(r=za[o])&&void 0!==r&&null!==(s=r[e])&&void 0!==s&&s.isGBSStyle&&(n[e]=i[e])}return n};function tc(){return(tc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var ac=Object(L.compose)(Object(n.withSelect)(e=>{const t=e("spectra").getGlobalBlockStyles(),a=e("spectra").getGlobalBlockStylesPopupState(),l=e("spectra").getGlobalBlockStylesFontFamilies(),{getSelectedBlock:i}=e("core/block-editor"),o=i(),{name:n,clientId:r}=o;return{globalBlockStyles:t,isOpen:a,globalBlockStylesFontFamilies:l,blockName:n,clientId:r}}),Object(n.withDispatch)(e=>({openModal:()=>e(k).toggleGlobalBlockStylesPopup("open"),closeModal:()=>e(k).toggleGlobalBlockStylesPopup("close"),updateGlobalBlockStyles:t=>e(k).updateGlobalBlockStyles(t),updateGlobalBlockStylesFontFamilies:t=>e(k).updateGlobalBlockStylesFontFamilies(t)})))(e=>{var t,a,l;Object(mo.useLayoutEffect)(()=>(Zs.use(),()=>{Zs.unuse()}),[]);const i=le(),{globalBlockStyles:o,globalBlockStylesFontFamilies:s,updateGlobalBlockStyles:c,updateGlobalBlockStylesFontFamilies:u,attributes:p,attributes:{globalBlockStyleId:b},styling:d,setAttributes:g,blockName:m,clientId:y}=e,[f,h]=Object(B.useState)(!1),[v,_]=Object(B.useState)(!1),[T,C]=Object(B.useState)(!1),[S,k]=Object(B.useState)(!1),[P,x]=Object(B.useState)(!1),A=m.replace("uagb/",""),G=null===(t=Object(n.select)("core/editor"))||void 0===t?void 0:t.getCurrentPostId(),M=wp.hooks.applyFilters("uagb.blocksAttributes",za)[A],R=null===(a=Object(n.select)("core/edit-site"))||void 0===a?void 0:a.getPage(),U=null!=R&&null!==(l=R.context)&&void 0!==l&&l.templateSlug?R.context.templateSlug:null;let E=!1;U||G||(E=!0);const O=function(e,t){return e.filter(e=>(null==e?void 0:e.blockName)===t||!(null!=e&&e.blockName))}(o,m);Object(mo.useEffect)(()=>{S&&L()},[S]),Object(mo.useEffect)(()=>{P&&H()},[b,o]);const L=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"no",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:o,a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],l={};t.map(e=>((null==e?void 0:e.value)!==f&&(null==e?void 0:e.value)!==b||(l=null==e?void 0:e.attributes),e));const i=new window.FormData;i.append("action","uag_global_block_styles"),i.append("security",uagb_blocks_info.uagb_ajax_nonce),i.append("attributes",JSON.stringify(l)),i.append("spectraGlobalStyles",JSON.stringify(t)),i.append("globalBlockStylesFontFamilies",JSON.stringify(s)),i.append("blockName",m),i.append("postId",G),i.append("globalBlockStyleId",b),i.append("bulkUpdateStyles",e),w()({url:uagb_blocks_info.ajax_url,method:"POST",body:i}).then(e=>{null!=e&&e.success&&(c(null==e?void 0:e.data),a?Js(p,g):Ks(M,g)),_(!1),C(!1),k(!1)})},H=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:b;F(p),e&&(o.map(t=>{if(e&&(null==t?void 0:t.value)===String(e)){const e=".spectra-gbs-"+(null==t?void 0:t.value),a=Xs(t,p,M),l=d(a,y,m,i,e);t.editorStyles=l,t.attributes=a,t.clientId=y,t.blockName=m,t.post_ids=Qs(t,G),U&&(t.page_template_slugs=Qs(t,U,"page_template_slugs")),E&&(t.styleForGlobal=Qs(t,"widget","widget_ids"))}return t}),c(o),k(!0),x(!1))},F=e=>{e={...e},Object.keys(e).map(t=>(t.includes("Family")&&""!==e[t]&&s.push(e[t]),t));const t=[];for(const e of s)t.includes(e)||t.push(e);u(t)},z=Object(j.applyFilters)("spectra.manage.gbs.options","",e);return yo.a.createElement(Fe,{title:Object(r.__)("Global Block Styles","ultimate-addons-for-gutenberg"),initialOpen:!0,className:T?"loading":""},z,(null==O?void 0:O.length)>1?yo.a.createElement(Pi,{label:Ys(b),data:{value:b,label:"globalBlockStyleId"},onChange:e=>{let t="";for(let i=0;i<o.length;i++){var a;if((null===(a=o[i])||void 0===a?void 0:a.value)===e){var l;t=null===(l=o[i])||void 0===l?void 0:l.label;break}}o.map(a=>((null==a?void 0:a.value)===e&&(t=null==a?void 0:a.label,a.post_ids=Qs(a,G),U&&(a.page_template_slugs=Qs(a,U,"page_template_slugs")),E&&(a.styleForGlobal=Qs(a,"widget","widget_ids"))),a)),c(o);const i=""===e;L("bulkUpdateStyles",o,i);let n={globalBlockStyleId:e,globalBlockStyleName:t};i&&(n={...ec(o,b),...n}),g(n),C(!0),h(e)},options:O,layout:"stack"}):"",yo.a.createElement("div",{className:"spectra-gbs-buttons-wrap"},yo.a.createElement($s,tc({},e,{setGenerate:x,uniqueID:f,setUniqueID:h})),b&&""!==b&&yo.a.createElement("div",{className:"gbs-update-save-add-btn"},yo.a.createElement(Le.Button,{className:`spectra-gbs-button ${v?"loading":""} components-base-control`,onClick:()=>{_(!0),H()},variant:"secondary"},Object(r.__)("Update Style","ultimate-addons-for-gutenberg")),yo.a.createElement(Le.Button,{className:"spectra-gbs-button components-base-control",onClick:()=>{const e={...ec(o,b),globalBlockStyleId:"",globalBlockStyleName:""};g(e),h(!1)},variant:"secondary"},Object(r.__)("Unlink Style","ultimate-addons-for-gutenberg")))))}),lc=(e,t,a)=>{var l,i;return null!==(l=uagb_blocks_info)&&void 0!==l&&l.spectra_pro_status&&"enabled"===(null===(i=uagb_blocks_info)||void 0===i?void 0:i.uag_enable_gbs_extension)?React.createElement(ac,{setAttributes:t,styling:e,attributes:a}):null};const ic=e=>{let{attributes:t,setAttributes:a,deviceType:l,isColumn:i}=e;if(-1===(i?["column-reverse","column"]:["row-reverse","row"]).indexOf(t["direction"+l]))return null;const o="childrenWidth"+l,n=i?[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"equal",label:Object(r.__)("Full","ultimate-addons-for-gutenberg")}]:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"equal",label:Object(r.__)("Equal","ultimate-addons-for-gutenberg")}];return React.createElement(Na,{setAttributes:a,label:Object(r.__)("Children Width ","ultimate-addons-for-gutenberg"),data:{value:t[o]||"equal",label:o},options:n,showIcons:!1,responsive:!1})};var oc,nc=a(99),rc=0,sc={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},cc={};cc.locals=nc.a.locals||{},cc.use=function(){return rc++||(oc=ke()(nc.a,sc)),cc},cc.unuse=function(){rc>0&&!--rc&&(oc(),oc=null)};var uc=cc;const pc=e=>{var t,a,l;const[i,o]=Object(B.useState)(null),s=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(uc.use(),()=>{uc.unuse()}),[]);const{getSelectedBlock:c}=Object(n.select)("core/block-editor"),u=null===(t=c())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{o(D(s))},[u]);const p=Object(n.useSelect)(()=>Object(n.select)("core/block-editor").getSelectedBlock(),[]),b=e.enableDynamicContent&&e.name?wp.hooks.applyFilters("uagb.registerTextExtender","",null==p?void 0:p.name,e.name,e.dynamicContentType):null,d=()=>{var t,a;if(!e.enableDynamicContent||!e.name)return!1;const l=null==p||null===(t=p.attributes)||void 0===t?void 0:t.dynamicContent;return!(!l||!0!==(null==l||null===(a=l[e.name])||void 0===a?void 0:a.enable))},{isShiftStepEnabled:g}=e;let m=$a(null===(a=e.unit)||void 0===a?void 0:a.value,e),y=Ya(null===(l=e.unit)||void 0===l?void 0:l.value,e);const f=isNaN(null==e?void 0:e.value)?"":null==e?void 0:e.value;let h=[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}];e.units&&(h=e.units);const v=t=>{const a=parseFloat(t);e.setAttributes&&e.setAttributes({[e.data.label]:a}),null!=e&&e.onChange&&e.onChange(a)},_=t=>{var a,l;null!=e&&e.onChange&&(null==e||e.onChange(t[null==e||null===(a=e.data)||void 0===a?void 0:a.label])),e.displayUnit&&T(t[null==e||null===(l=e.unit)||void 0===l?void 0:l.label])},T=t=>{e.setAttributes({[e.unit.label]:t}),m=$a(t,e),y=Ya(t,e),e.value>m&&v(m),e.value<y&&v(y)},C=()=>React.createElement("div",{className:"uagb-control__header"},React.createElement("div",{className:"uagb-number-control__actions uagb-control__actions"},React.createElement(Ka,{onReset:_,attributeNames:[e.data.label,!!e.displayUnit&&e.unit.label],setAttributes:e.setAttributes}),e.displayUnit&&React.createElement(Le.ButtonGroup,{className:"uagb-control__units","aria-label":Object(r.__)("Select Units","ultimate-addons-for-gutenberg")},(t=>{const a=[];return t.map(t=>a.push(React.createElement(Le.Tooltip,{text:Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),t.name),key:t.name},React.createElement(Le.Button,{key:t.unitValue,className:"uagb-number-control__units--"+t.name,isSmall:!0,isPrimary:e.unit.value===t.unitValue,isSecondary:e.unit.value!==t.unitValue,"aria-pressed":e.unit.value===t.unitValue,"aria-label":Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s units","ultimate-addons-for-gutenberg"),t.name),onClick:()=>T(t.unitValue)},t.unitValue)))),a})(h)))),S=e.inlineControl?"inline":"full-width",w=z(null==e?void 0:e.label),k=Object(j.applyFilters)(`spectra.${u}.${i}.${w}.before`,"",u),P=Object(j.applyFilters)(`spectra.${u}.${i}.${w}`,"",u);return React.createElement("div",{ref:s,className:"components-base-control uag-number-control uagb-size-type-field-tabs"+(d()?" uagb-text-control--open-dynamic-content":"")},k,e.showControlHeader&&React.createElement(C,null),React.createElement("div",{className:Be()("uagb-number-control__mobile-controls","uag-number-control__"+S)},React.createElement(Ne,{label:e.label,responsive:e.responsive}),!d()&&React.createElement(React.Fragment,null,React.createElement(Le.__experimentalNumberControl,{labelPosition:"edge",disabled:e.disabled,isShiftStepEnabled:g,max:m,min:y,onChange:v,value:f,step:(null==e?void 0:e.step)||1,required:null==e?void 0:e.required,readOnly:d()})),b),React.createElement(De,{text:e.help}),d()&&React.createElement(fi,null),P)};pc.defaultProps={label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),className:"",allowReset:!0,isShiftStepEnabled:!0,max:1/0,min:-1/0,resetFallbackValue:"",placeholder:null,unit:["px","em"],displayUnit:!0,responsive:!1,showControlHeader:!0,inlineControl:!0,dynamicContentType:"text",enableDynamicContent:!1,help:!1};var bc=pc;function dc(){return(dc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const gc=e=>{const{attributes:t,attributes:{gridAlignItemsDesktop:a,gridAlignItemsTablet:l,gridAlignItemsMobile:i,gridJustifyItemsDesktop:o,gridJustifyItemsTablet:n,gridJustifyItemsMobile:s,gridAlignContentDesktop:c,gridAlignContentTablet:u,gridAlignContentMobile:p,gridJustifyContentDesktop:b,gridJustifyContentTablet:d,gridJustifyContentMobile:g,orderDesktop:m,orderTablet:y,orderMobile:f,customOrderDesktop:h,customOrderTablet:v,customOrderMobile:_,isBlockRootParent:T},setAttributes:C,deviceType:S}=e,[w,k]=Object(B.useState)(!1),[P,x]=Object(B.useState)(!1),A=t["gridColumn"+S],G=t["gridRow"+S];Object(B.useEffect)(()=>(document.addEventListener("click",e=>{const t=e.target.closest("#grid-properties-setting-wrap"),a=e.target.closest(".uagb-grid-Column-opener"),l=e.target.closest(".uagb-grid-Row-opener");t||(a||!w&&0!==w||k(!1),l||!P&&0!==P||x(!1))}),()=>document.removeEventListener("click",()=>{})),[w,P]);const M=(e,t)=>{let a=1600;return"fr"===t?a=10:"%"===t&&(a=100),{min:0,displayUnit:!0,units:[{name:Object(r.__)("Fr","ultimate-addons-for-gutenberg"),unitValue:"fr"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("Px","ultimate-addons-for-gutenberg"),unitValue:"px"}],value:e,max:a}},R=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"column";return[{value:"start",tooltip:Object(r.__)("Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-start`)})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-center`)})},{value:"end",tooltip:Object(r.__)("End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-end`)})},{value:"stretch",tooltip:Object(r.__)("Stretch","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${e}-strech`)})}]},U=[...R("column"),{value:"space-between",tooltip:Object(r.__)("Space Between","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-space-between")})},{value:"space-around",tooltip:Object(r.__)("Space Around","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-space-around")})}],E=[...R("row"),{value:"space-between",tooltip:Object(r.__)("Space Between","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-row-space-between")})},{value:"space-around",tooltip:Object(r.__)("Space Around","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-row-space-around")})}],O=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1?arguments[1]:void 0;return React.createElement("label",t,e)},L=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Column";const t="grid"+e+S,a="Column"===e?A:G;C({[t]:[...a,{default:"custom",min:{unit:"px",value:10},max:{unit:"fr",value:1},custom:{unit:"fr",value:1}}]})},H=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"Column";const a="grid"+t+S,l="Column"===t?A:G;C({[a]:[...l.slice(0,e),...l.slice(e+1)]})},j=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Column";const l="grid"+a+S,i="Column"===a?A:G,o=xs(!1,l,"container"),n=(e,t,a,l)=>e!==a||t!==l,s=(e,a,o)=>{const n={};n[o]=a,C({[l]:[...i.slice(0,t),{...i[t],[e]:{...i[t][e],...n}},...i.slice(t+1)]})},c=e=>{C({[l]:[...i.slice(0,t),{...i[t],[e]:{...i[t][e],value:o[0][e].value,unit:o[0][e].unit}},...i.slice(t+1)]})},u=e=>({onChange:t=>s(e,t,"value"),onChangeUnits:t=>s(e,t,"unit"),resetStateEnabled:n(o[0][e].value,o[0][e].unit,i[t][e].value,i[t][e].unit),isReset:()=>c(e),...M(i[t][e].value,i[t][e].unit),unit:{value:i[t][e].unit,label:e},data:{value:i[t][e].value,label:e}}),p=React.createElement(React.Fragment,null,React.createElement(Qa,dc({label:Object(r.__)("Min","ultimate-addons-for-gutenberg")},u("min"))),React.createElement(Qa,dc({label:Object(r.__)("Max","ultimate-addons-for-gutenberg")},u("max")))),b="Column"===a?Object(r.__)("Width","ultimate-addons-for-gutenberg"):Object(r.__)("Height","ultimate-addons-for-gutenberg"),d=React.createElement(Qa,dc({label:b},u("custom")));let g=null;"minmax"===e.default?g=p:"custom"===e.default&&(g=d);let m=null;return"auto"===i[t].default&&(m="Column"===a?Object(r.__)("The column-width will be automatic.","ultimate-addons-for-gutenberg"):Object(r.__)("The row-height will be automatic.","ultimate-addons-for-gutenberg")),React.createElement("div",{className:"uagb-grid-settings",id:"grid-properties-setting-wrap"},React.createElement(Na,{label:Object(r.__)("Grid Property","ultimate-addons-for-gutenberg"),data:{value:i[t].default,label:i[t].default},options:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"minmax",label:Object(r.__)("Min/Max","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}],onChange:e=>{C({[l]:[...i.slice(0,t),{...i[t],default:e},...i.slice(t+1)]})},help:m}),g&&React.createElement("div",{className:"uagb-grid-settings-content"},g))},F=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Column";if(e.length>1)return React.createElement("div",{className:"uagb-grid-repeater-delete"},React.createElement("button",{onClick:()=>{H(t,a)}},React.createElement(Le.Icon,{icon:Ce("trash-can")})))};return React.createElement(React.Fragment,null,React.createElement(Le.BaseControl,{className:"uagb-grid-repeater-container"},React.createElement("div",{className:"uagb-grid-repeater-head uagb-control__header uagb-size-type-field-tabs"},React.createElement(Ne,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),responsive:!0}),React.createElement("button",{onClick:()=>L()},React.createElement(Le.Icon,{icon:"plus-alt2"}))),React.createElement("div",{className:"uagb-grid-repeater-items"},A.map((e,t)=>React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-grid-repeater-item",key:t},React.createElement("div",{className:"uagb-grid-repeater-content uagb-grid-Column-opener",onClick:()=>{k(w!==t&&t)}},O(Object(r.__)("Column ","ultimate-addons-for-gutenberg")+(t+1)),React.createElement("button",null,se.pencilIcon)),F(A,t)),t===w&&j(e,t))))),React.createElement(Le.BaseControl,{className:"uagb-grid-repeater-container"},React.createElement("div",{className:"uagb-grid-repeater-head uagb-control__header uagb-size-type-field-tabs"},React.createElement(Ne,{label:Object(r.__)("Rows","ultimate-addons-for-gutenberg"),responsive:!0}),React.createElement("button",{onClick:()=>L("Row")},React.createElement(Le.Icon,{icon:"plus-alt2"}))),React.createElement("div",{className:"uagb-grid-repeater-items"},G.map((e,t)=>React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-grid-repeater-item",key:t},React.createElement("div",{className:"uagb-grid-repeater-content uagb-grid-Row-opener",onClick:()=>{x(P!==t&&t)}},O(Object(r.__)("Row ","ultimate-addons-for-gutenberg")+(t+1)),React.createElement("button",null,se.pencilIcon)),F(G,t,"Row")),t===P&&j(e,t,"Row"))))),!T&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:C,label:Object(r.__)("Order","ultimate-addons-for-gutenberg"),data:{desktop:{value:m,label:"orderDesktop"},tablet:{value:y,label:"orderTablet"},mobile:{value:f,label:"orderMobile"}},options:[{value:"-99999",tooltip:Object(r.__)("Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("start-order")})},{value:"99999",tooltip:Object(r.__)("End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("end-order")})},{value:"custom",tooltip:Object(r.__)("Custom","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("custom-order")})}],showIcons:!0,responsive:!0,help:Object(r.__)("Define the order for grid items inside the container.","ultimate-addons-for-gutenberg")}),"custom"===m&&"Desktop"===S&&React.createElement(bc,{label:Object(r.__)("Custom Order","ultimate-addons-for-gutenberg"),value:h,data:{value:h,label:"customOrderDesktop"},displayUnit:!1,setAttributes:C,min:-1/0,step:1,max:1/0,showControlHeader:!1}),"custom"===y&&"Tablet"===S&&React.createElement(bc,{label:Object(r.__)("Custom Order","ultimate-addons-for-gutenberg"),value:v,data:{value:v,label:"customOrderTablet"},displayUnit:!1,setAttributes:C,min:-1/0,step:1,max:1/0,showControlHeader:!1}),"custom"===f&&"Mobile"===S&&React.createElement(bc,{label:Object(r.__)("Custom Order","ultimate-addons-for-gutenberg"),value:_,data:{value:_,label:"customOrderMobile"},displayUnit:!1,setAttributes:C,min:-1/0,step:1,max:1/0,showControlHeader:!1})),React.createElement(Na,{setAttributes:C,label:Object(r.__)("Align Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:a,label:"gridAlignItemsDesktop"},tablet:{value:l,label:"gridAlignItemsTablet"},mobile:{value:i,label:"gridAlignItemsMobile"}},options:[...R("column")],showIcons:!0,responsive:!0,help:Object(r.__)("Define the vertical alignment for grid items inside the container.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:C,label:Object(r.__)("Justify Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:o,label:"gridJustifyItemsDesktop"},tablet:{value:n,label:"gridJustifyItemsTablet"},mobile:{value:s,label:"gridJustifyItemsMobile"}},options:[...R("row")],showIcons:!0,responsive:!0,help:Object(r.__)("Define the horizontal alignment for grid items within the container.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:C,label:Object(r.__)("Align Content","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"gridAlignContentDesktop"},tablet:{value:u,label:"gridAlignContentTablet"},mobile:{value:p,label:"gridAlignContentMobile"}},options:U,showIcons:!0,responsive:!0,help:Object(r.__)("Define the vertical alignment of the entire grid within its container.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:C,label:Object(r.__)("Justify Content","ultimate-addons-for-gutenberg"),data:{desktop:{value:b,label:"gridJustifyContentDesktop"},tablet:{value:d,label:"gridJustifyContentTablet"},mobile:{value:g,label:"gridJustifyContentMobile"}},options:E,showIcons:!0,responsive:!0,help:Object(r.__)("Define the horizontal alignment of the entire grid within its container.","ultimate-addons-for-gutenberg")}))};function mc(){return(mc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var yc=Object(B.memo)(e=>{var t;const{attributes:a,setAttributes:l,deviceType:i}=e,{block_id:o,htmlTag:n,htmlTagLink:s,widthDesktop:c,widthTablet:u,widthMobile:p,widthType:b,minHeightDesktop:d,minHeightTablet:g,minHeightMobile:m,minHeightType:y,directionDesktop:f,directionTablet:h,directionMobile:v,alignItemsDesktop:_,alignItemsTablet:T,alignItemsMobile:C,justifyContentDesktop:S,justifyContentTablet:w,justifyContentMobile:k,wrapDesktop:P,wrapTablet:x,wrapMobile:A,alignContentDesktop:G,alignContentTablet:M,alignContentMobile:R,backgroundType:B,backgroundImageDesktop:U,backgroundImageTablet:E,backgroundImageMobile:O,backgroundColor:L,backgroundPositionDesktop:H,backgroundPositionTablet:j,backgroundPositionMobile:F,backgroundAttachmentDesktop:z,backgroundAttachmentTablet:D,backgroundAttachmentMobile:N,backgroundRepeatDesktop:I,backgroundRepeatTablet:V,backgroundRepeatMobile:W,backgroundSizeDesktop:q,backgroundSizeTablet:Z,backgroundSizeMobile:$,backgroundImageColor:Y,gradientValue:K,boxShadowColor:J,boxShadowHOffset:X,boxShadowVOffset:Q,boxShadowBlur:ee,boxShadowSpread:te,boxShadowPosition:ae,boxShadowColorHover:le,boxShadowHOffsetHover:ie,boxShadowVOffsetHover:oe,boxShadowBlurHover:ne,boxShadowSpreadHover:re,boxShadowPositionHover:se,topPaddingDesktop:ce,bottomPaddingDesktop:ue,leftPaddingDesktop:pe,rightPaddingDesktop:be,topPaddingTablet:de,bottomPaddingTablet:me,leftPaddingTablet:ye,rightPaddingTablet:fe,topPaddingMobile:he,bottomPaddingMobile:ve,leftPaddingMobile:_e,rightPaddingMobile:Te,paddingType:Ce,paddingTypeTablet:Se,paddingTypeMobile:we,paddingLink:ke,topMarginDesktop:Pe,bottomMarginDesktop:xe,leftMarginDesktop:Ae,rightMarginDesktop:Ge,topMarginTablet:Me,bottomMarginTablet:Re,leftMarginTablet:Be,rightMarginTablet:Ue,topMarginMobile:Oe,bottomMarginMobile:He,leftMarginMobile:je,rightMarginMobile:De,marginType:Ne,marginTypeTablet:Ie,marginTypeMobile:Ve,marginLink:We,rowGapDesktop:qe,rowGapTablet:Ze,rowGapMobile:$e,rowGapType:Ye,rowGapTypeTablet:Ke,rowGapTypeMobile:Je,columnGapDesktop:Xe,columnGapTablet:Qe,columnGapMobile:et,columnGapType:tt,columnGapTypeTablet:at,columnGapTypeMobile:lt,contentWidth:it,isBlockRootParent:ot,innerContentWidth:nt,innerContentCustomWidthDesktop:rt,innerContentCustomWidthTablet:st,innerContentCustomWidthMobile:ct,innerContentCustomWidthType:ut,bottomType:pt,bottomColor:bt,bottomHeight:dt,bottomHeightTablet:gt,bottomHeightMobile:mt,bottomWidth:yt,topType:ft,topColor:ht,topHeight:vt,topHeightTablet:_t,topHeightMobile:Tt,topWidth:Ct,bottomFlip:St,topFlip:wt,topContentAboveShape:kt,bottomContentAboveShape:Pt,backgroundCustomSizeDesktop:xt,backgroundCustomSizeTablet:At,backgroundCustomSizeMobile:Gt,backgroundCustomSizeType:Mt,overlayType:Rt,overlayOpacity:Bt,customPosition:Ut,centralizedPosition:Et,xPositionDesktop:Ot,xPositionTablet:Lt,xPositionMobile:Ht,xPositionType:jt,xPositionTypeTablet:Ft,xPositionTypeMobile:zt,yPositionDesktop:Dt,yPositionTablet:Nt,yPositionMobile:It,yPositionType:Vt,yPositionTypeTablet:Wt,yPositionTypeMobile:qt,backgroundVideoColor:Zt,backgroundVideo:$t,topInvert:Yt,bottomInvert:Kt,textColor:Jt,linkColor:Xt,linkHoverColor:Qt,gradientOverlayColor1:ea,gradientOverlayColor2:ta,gradientOverlayLocation1:aa,gradientOverlayLocationTablet1:la,gradientOverlayLocationMobile1:ia,gradientOverlayLocation2:oa,gradientOverlayLocationTablet2:na,gradientOverlayLocationMobile2:ra,gradientOverlayType:sa,gradientOverlayAngle:ca,gradientOverlayAngleTablet:ua,gradientOverlayAngleMobile:pa,selectOverlayGradient:ba,backgroundOverlayColor:da,backgroundSizeOverlayDesktop:ga,backgroundSizeOverlayTablet:ma,backgroundSizeOverlayMobile:ya,backgroundCustomSizeOverlayDesktop:fa,backgroundCustomSizeOverlayTablet:ha,backgroundCustomSizeOverlayMobile:va,backgroundCustomOverlaySizeType:_a,backgroundRepeatOverlayDesktop:Ta,backgroundRepeatOverlayTablet:Ca,backgroundRepeatOverlayMobile:Sa,backgroundAttachmentOverlayDesktop:wa,backgroundAttachmentOverlayTablet:ka,backgroundAttachmentOverlayMobile:Pa,backgroundPositionOverlayDesktop:xa,backgroundPositionOverlayTablet:Aa,backgroundPositionOverlayMobile:Ga,backgroundOverlayImageDesktop:Ma,backgroundOverlayImageTablet:Ra,backgroundOverlayImageMobile:Ba,customOverlayPosition:Ua,xPositionOverlayDesktop:Ea,xPositionOverlayTablet:Oa,xPositionOverlayMobile:La,xPositionOverlayType:Ha,xPositionOverlayTypeTablet:ja,xPositionOverlayTypeMobile:Fa,yPositionOverlayDesktop:za,yPositionOverlayTablet:Da,yPositionOverlayMobile:Ia,yPositionOverlayType:Va,yPositionOverlayTypeTablet:Wa,yPositionOverlayTypeMobile:qa,overlayBlendMode:Za,overlayBlendModeTablet:$a,overlayBlendModeMobile:Ya,innerContentCustomWidthTypeTablet:Ka,innerContentCustomWidthTypeMobile:Ja,widthTypeTablet:Xa,widthTypeMobile:el,minHeightTypeTablet:al,minHeightTypeMobile:ll,topHeightType:sl,topHeightTypeTablet:cl,topHeightTypeMobile:ul,bottomHeightType:pl,bottomHeightTypeTablet:bl,bottomHeightTypeMobile:dl,overflow:gl,topDividerWidthType:ml,bottomDividerWidthType:yl,topDividerHeightType:fl,bottomDividerHeightType:_l,equalHeight:Tl,gradientColor1:Cl,gradientColor2:Sl,gradientLocation1:wl,gradientLocationTablet1:kl,gradientLocationMobile1:xl,gradientLocation2:Al,gradientLocationTablet2:Gl,gradientLocationMobile2:Ml,gradientType:Rl,gradientAngle:Bl,gradientAngleTablet:Ul,gradientAngleMobile:El,selectGradient:Ol,backgroundVideoFallbackImage:Ll,layout:Hl,linkTarget:jl}=a,Fl=uagb_blocks_info.spectra_pro_status;let zl=null==f||null===(t=f.split("-"))||void 0===t?void 0:t[0];a["direction"+i]&&a["direction"+i].split("-")[0]&&(zl=a["direction"+i].split("-")[0]);const Dl="row"===zl?"column":"row",Nl=Object(r.__)("Define the vertical alignment inside this container.","ultimate-addons-for-gutenberg"),Il=Object(r.__)("Define the horizontal alignment inside this container.","ultimate-addons-for-gutenberg"),Vl="row"===zl?Object(r.__)("Define the vertical alignment of every line of blocks inside this flex container.","ultimate-addons-for-gutenberg"):Object(r.__)("Define the horizontal alignment of every line of blocks inside this flex container.","ultimate-addons-for-gutenberg"),Wl=React.createElement(hl,{label:Object(r.__)("Link Color","ultimate-addons-for-gutenberg"),colorValue:Xt,data:{value:Xt,label:"linkColor"},setAttributes:l}),ql=React.createElement(hl,{label:Object(r.__)("Link Color","ultimate-addons-for-gutenberg"),colorValue:Qt,data:{value:Qt,label:"linkHoverColor"},setAttributes:l}),Zl="alignwide"===it?Object(r.__)("The left-right margins will be inherited from theme for boxed containers.","ultimate-addons-for-gutenberg"):Object(r.__)("The left-right margins will not be applied for full-width containers.","ultimate-addons-for-gutenberg");return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,mc({},ol,{parentProps:e}),(()=>{const t=[{value:"row",tooltip:Object(r.__)("Row","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-direction-row")})},{value:"column",tooltip:Object(r.__)("Column","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-direction-column")})},{value:"row-reverse",tooltip:Object(r.__)("Row Reverse","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-direction-row-reverse")})},{value:"column-reverse",tooltip:Object(r.__)("Column Reverse","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-direction-column-reverse")})}],o=[{value:"flex-start",tooltip:Object(r.__)("Flex Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-start`)})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-center`)})},{value:"flex-end",tooltip:Object(r.__)("Flex End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-end`)})},{value:"stretch",tooltip:Object(r.__)("Stretch","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-strech`)})}],B=[{value:"flex-start",tooltip:Object(r.__)("Flex Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-start`)})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-center`)})},{value:"flex-end",tooltip:Object(r.__)("Flex End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-end`)})},{value:"space-between",tooltip:Object(r.__)("Space Between","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-space-between`)})},{value:"space-around",tooltip:Object(r.__)("Space Around","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-space-around`)})},{value:"space-evenly",tooltip:Object(r.__)("Space Evenly","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${zl}-space-evenly`)})}],U=[{value:"flex-start",tooltip:Object(r.__)("Flex Start","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-start`)})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-center`)})},{value:"flex-end",tooltip:Object(r.__)("Flex End","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-end`)})},{value:"space-between",tooltip:Object(r.__)("Space Between","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-space-between`)})},{value:"space-around",tooltip:Object(r.__)("Space Around","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-space-around`)})},{value:"space-evenly",tooltip:Object(r.__)("Space Evenly","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze(`flex-${Dl}-space-evenly`)})}],E=[{value:"wrap",tooltip:Object(r.__)("Wrap","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-wrap")})},{value:"nowrap",tooltip:Object(r.__)("No Wrap","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-no-wrap")})},{value:"wrap-reverse",tooltip:Object(r.__)("Wrap Reverse","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-wrap-reverse")})}],O=[{value:"alignfull",label:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")},{value:"alignwide",label:Object(r.__)("Boxed","ultimate-addons-for-gutenberg")},{value:"default",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}],L=[{value:"visible",label:Object(r.__)("Visible","ultimate-addons-for-gutenberg")},{value:"hidden",label:Object(r.__)("Hidden","ultimate-addons-for-gutenberg")},{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")}],H=[{value:"alignwide",label:Object(r.__)("Boxed","ultimate-addons-for-gutenberg")},{value:"alignfull",label:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Container Type","ultimate-addons-for-gutenberg"),initialOpen:!0},ot&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Container Width","ultimate-addons-for-gutenberg"),data:{value:it,label:"contentWidth"},options:O,showIcons:!1,responsive:!1}),"alignfull"===it&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Content Width","ultimate-addons-for-gutenberg"),data:{value:nt,label:"innerContentWidth"},options:H,showIcons:!1,responsive:!1}),"alignwide"===nt&&React.createElement(tl,{label:Object(r.__)("Content Box Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:rt,label:"innerContentCustomWidthDesktop",unit:{value:ut,label:"innerContentCustomWidthType"}},tablet:{value:st,label:"innerContentCustomWidthTablet",unit:{value:Ka,label:"innerContentCustomWidthTypeTablet"}},mobile:{value:ct,label:"innerContentCustomWidthMobile",unit:{value:Ja,label:"innerContentCustomWidthTypeMobile"}}},min:0,limitMax:{px:1600,"%":100,vw:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],unit:{value:ut,label:"innerContentCustomWidthType"},setAttributes:l}))),(ot&&"default"===it||!ot)&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Custom Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"widthDesktop",unit:{value:b,label:"widthType"}},tablet:{value:u,label:"widthTablet",unit:{value:Xa,label:"widthTypeTablet"}},mobile:{value:p,label:"widthMobile",unit:{value:el,label:"widthTypeMobile"}}},min:0,unit:{value:b,label:"widthType"},limitMax:{px:1600,"%":100,vw:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:l,onChange:()=>{l({widthSetByUser:!0})}})),React.createElement(tl,{label:Object(r.__)("Minimum Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:d,label:"minHeightDesktop",unit:{value:y,label:"minHeightType"}},tablet:{value:g,label:"minHeightTablet",unit:{value:al,label:"minHeightTypeTablet"}},mobile:{value:m,label:"minHeightMobile",unit:{value:ll,label:"minHeightTypeMobile"}}},min:0,limitMax:{px:1e3,vh:100},unit:{value:y,label:"minHeightType"},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("VH","ultimate-addons-for-gutenberg"),unitValue:"vh"}],setAttributes:l}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:Tl,onChange:e=>(e=>{l({equalHeight:e}),e?(l({alignItemsDesktop:"stretch"}),l({alignItemsTablet:"stretch"}),l({alignItemsMobile:"stretch"})):(l({alignItemsDesktop:"center"}),l({alignItemsTablet:"center"}),l({alignItemsMobile:"center"}))})(e),help:Object(r.__)("Enabling this will change the Align Items value to Stretch.","ultimate-addons-for-gutenberg")}),React.createElement(Pi,{label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:n,label:"htmlTag"},setAttributes:l,options:[{value:"div",label:Object(r.__)("div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("header","ultimate-addons-for-gutenberg")},{value:"footer",label:Object(r.__)("footer","ultimate-addons-for-gutenberg")},{value:"main",label:Object(r.__)("main","ultimate-addons-for-gutenberg")},{value:"article",label:Object(r.__)("article","ultimate-addons-for-gutenberg")},{value:"section",label:Object(r.__)("section","ultimate-addons-for-gutenberg")},{value:"aside",label:Object(r.__)("aside","ultimate-addons-for-gutenberg")},{value:"figure",label:Object(r.__)("figure","ultimate-addons-for-gutenberg")},{value:"figcaption",label:Object(r.__)("figcaption","ultimate-addons-for-gutenberg")},{value:"summary",label:Object(r.__)("summary","ultimate-addons-for-gutenberg")},{value:"nav",label:Object(r.__)("nav","ultimate-addons-for-gutenberg")},{value:"a",label:Object(r.__)("link","ultimate-addons-for-gutenberg")}]}),"a"===n&&(Fl?React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,name:"htmlTagLink",value:null==s?void 0:s.url,onChange:e=>l({htmlTagLink:{...s,url:e}}),data:{value:null==s?void 0:s.url,label:"htmlTagLink"}}),React.createElement(Le.ToggleControl,{checked:jl,onChange:()=>l({linkTarget:!jl}),label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg")})):React.createElement(ge.__experimentalLinkControl,{searchInputPlaceholder:Object(r.__)("Search here…","ultimate-addons-for-gutenberg"),value:s,settings:[{id:"opensInNewTab",title:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg")},{id:"noFollow",title:Object(r.__)("Add nofollow","ultimate-addons-for-gutenberg")}],onChange:e=>l({htmlTagLink:e}),withCreateSuggestion:!0,createSuggestion:e=>l({post:{...a.post,title:e,type:"custom-url",id:Date.now(),url:e}}),createSuggestionButtonText:e=>`${Object(r.__)("New:","ultimate-addons-for-gutenberg")} ${e}`,onRemove:()=>l({htmlTagLink:void 0})})),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Overflow","ultimate-addons-for-gutenberg"),data:{value:gl,label:"overflow"},options:L,showIcons:!1,responsive:!1})),React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{data:{value:Hl||"flex",label:"layout"},options:[{value:"flex",label:Object(r.__)("Flex","ultimate-addons-for-gutenberg")},{value:"grid",label:Object(r.__)("Grid","ultimate-addons-for-gutenberg")}],onChange:e=>{l({layout:e})}}),"grid"===Hl?React.createElement(gc,e):React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Direction","ultimate-addons-for-gutenberg"),data:{desktop:{value:f,label:"directionDesktop"},tablet:{value:h,label:"directionTablet"},mobile:{value:v,label:"directionMobile"}},options:t,showIcons:!0,responsive:!0,help:Object(r.__)("Define the direction in which blocks inside this container will be placed one after the other.","ultimate-addons-for-gutenberg")}),React.createElement(ic,{attributes:a,setAttributes:l,deviceType:i,isColumn:!1}),React.createElement(ic,{attributes:a,setAttributes:l,deviceType:i,isColumn:!0}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Align Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:_,label:"alignItemsDesktop"},tablet:{value:T,label:"alignItemsTablet"},mobile:{value:C,label:"alignItemsMobile"}},options:o,showIcons:!0,onChange:(j=_,void l({equalHeight:"stretch"===j})),responsive:!0,help:"row"===Dl?Il:Nl}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Justify Content","ultimate-addons-for-gutenberg"),data:{desktop:{value:S,label:"justifyContentDesktop"},tablet:{value:w,label:"justifyContentTablet"},mobile:{value:k,label:"justifyContentMobile"}},options:B,showIcons:!0,responsive:!0,help:"row"===zl?Il:Nl}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Wrap","ultimate-addons-for-gutenberg"),data:{desktop:{value:P,label:"wrapDesktop"},tablet:{value:x,label:"wrapTablet"},mobile:{value:A,label:"wrapMobile"}},options:E,showIcons:!0,responsive:!0,help:Object(r.__)("Define whether the items are forced in a single line (No Wrap) or can be flowed into multiple lines (Wrap).","ultimate-addons-for-gutenberg")}),("wrap"===a["wrap"+i]||"wrap-reverse"===a["wrap"+i])&&React.createElement(Na,{setAttributes:l,label:Object(r.__)("Align Content","ultimate-addons-for-gutenberg"),data:{desktop:{value:G,label:"alignContentDesktop"},tablet:{value:M,label:"alignContentTablet"},mobile:{value:R,label:"alignContentMobile"}},options:U,showIcons:!0,responsive:!0,help:Vl}))));var j})(),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,mc({},nl,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,mc({setAttributes:l,backgroundGradient:{value:K,label:"gradientValue"},backgroundGradientColor1:{value:Cl,label:"gradientColor1"},backgroundOverlayGradientColor1:{value:ea,label:"gradientOverlayColor1"},gradientType:{value:Ol,label:"selectGradient"},backgroundGradientColor2:{value:Sl,label:"gradientColor2"},backgroundOverlayGradientColor2:{value:ta,label:"gradientOverlayColor2"},backgroundGradientLocation1:{value:wl,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:kl,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:xl,label:"gradientLocationMobile1"},backgroundOverlayGradientLocation1:{value:aa,label:"gradientOverlayLocation1"},backgroundOverlayGradientLocationTablet1:{value:la,label:"gradientOverlayLocationTablet1"},backgroundOverlayGradientLocationMobile1:{value:ia,label:"gradientOverlayLocationMobile1"},backgroundGradientLocation2:{value:Al,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:Gl,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:Ml,label:"gradientLocationMobile2"},backgroundOverlayGradientLocation2:{value:oa,label:"gradientOverlayLocation2"},backgroundOverlayGradientLocationTablet2:{value:na,label:"gradientOverlayLocationTablet2"},backgroundOverlayGradientLocationMobile2:{value:ra,label:"gradientOverlayLocationMobile2"},backgroundGradientType:{value:Rl,label:"gradientType"},backgroundOverlayGradientType:{value:sa,label:"gradientOverlayType"},backgroundGradientAngle:{value:Bl,label:"gradientAngle"},backgroundGradientAngleTablet:{value:Ul,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:El,label:"gradientAngleMobile"},backgroundOverlayGradientAngle:{value:ca,label:"gradientOverlayAngle"},backgroundOverlayGradientAngleTablet:{value:ua,label:"gradientOverlayAngleTablet"},backgroundOverlayGradientAngleMobile:{value:pa,label:"gradientOverlayAngleMobile"},backgroundImageColor:{value:Y,label:"backgroundImageColor"},backgroundSize:{desktop:{value:q,label:"backgroundSizeDesktop"},tablet:{value:Z,label:"backgroundSizeTablet"},mobile:{value:$,label:"backgroundSizeMobile"}},backgroundCustomSize:{desktop:{value:xt,label:"backgroundCustomSizeDesktop"},tablet:{value:At,label:"backgroundCustomSizeTablet"},mobile:{value:Gt,label:"backgroundCustomSizeMobile"}},backgroundCustomSizeType:{value:Mt,label:"backgroundCustomSizeType"},backgroundRepeat:{desktop:{value:I,label:"backgroundRepeatDesktop"},tablet:{value:V,label:"backgroundRepeatTablet"},mobile:{value:W,label:"backgroundRepeatMobile"}},backgroundAttachment:{desktop:{value:z,label:"backgroundAttachmentDesktop"},tablet:{value:D,label:"backgroundAttachmentTablet"},mobile:{value:N,label:"backgroundAttachmentMobile"}},backgroundPosition:{desktop:{value:H,label:"backgroundPositionDesktop"},tablet:{value:j,label:"backgroundPositionTablet"},mobile:{value:F,label:"backgroundPositionMobile"}},backgroundImage:{desktop:{value:U,label:"backgroundImageDesktop"},tablet:{value:E,label:"backgroundImageTablet"},mobile:{value:O,label:"backgroundImageMobile"}},imageResponsive:!0,imageOverlayResponsive:!0,backgroundColor:{value:L,label:"backgroundColor"},backgroundOverlayColor:{value:da,label:"backgroundOverlayColor"},backgroundType:{value:B,label:"backgroundType"},overlayType:{value:Rt,label:"overlayType"},overlayOpacity:{value:Bt,label:"overlayOpacity"},gradientOverlay:{value:!0},customPosition:{value:Ut,label:"customPosition"},centralizedPosition:{value:Et,label:"centralizedPosition"},xPositionDesktop:{value:Ot,label:"xPositionDesktop"},xPositionTablet:{value:Lt,label:"xPositionTablet"},xPositionMobile:{value:Ht,label:"xPositionMobile"},xPositionType:{value:jt,label:"xPositionType"},xPositionTypeTablet:{value:Ft,label:"xPositionTypeTablet"},xPositionTypeMobile:{value:zt,label:"xPositionTypeMobile"},yPositionDesktop:{value:Dt,label:"yPositionDesktop"},yPositionTablet:{value:Nt,label:"yPositionTablet"},yPositionMobile:{value:It,label:"yPositionMobile"},yPositionType:{value:Vt,label:"yPositionType"},yPositionTypeTablet:{value:Wt,label:"yPositionTypeTablet"},yPositionTypeMobile:{value:qt,label:"yPositionTypeMobile"},backgroundVideoType:{value:!0},backgroundVideo:{value:$t,label:"backgroundVideo"},backgroundVideoColor:{value:Zt,label:"backgroundVideoColor"},backgroundVideoOpacity:{value:Bt,label:"overlayOpacity"},backgroundVideoFallbackImage:{value:Ll,label:"backgroundVideoFallbackImage"},overlayGradientType:{value:ba,label:"selectOverlayGradient"},backgroundOverlaySize:{desktop:{value:ga,label:"backgroundSizeOverlayDesktop"},tablet:{value:ma,label:"backgroundSizeOverlayTablet"},mobile:{value:ya,label:"backgroundSizeOverlayMobile"}},backgroundOverlayCustomSize:{desktop:{value:fa,label:"backgroundCustomSizeOverlayDesktop"},tablet:{value:ha,label:"backgroundCustomSizeOverlayTablet"},mobile:{value:va,label:"backgroundCustomSizeOverlayMobile"}},backgroundOverlayCustomSizeType:{value:_a,label:"backgroundCustomOverlaySizeType"},backgroundOverlayRepeat:{desktop:{value:Ta,label:"backgroundRepeatOverlayDesktop"},tablet:{value:Ca,label:"backgroundRepeatOverlayTablet"},mobile:{value:Sa,label:"backgroundRepeatOverlayMobile"}},backgroundOverlayAttachment:{desktop:{value:wa,label:"backgroundAttachmentOverlayDesktop"},tablet:{value:ka,label:"backgroundAttachmentOverlayTablet"},mobile:{value:Pa,label:"backgroundAttachmentOverlayMobile"}},backgroundOverlayPosition:{desktop:{value:xa,label:"backgroundPositionOverlayDesktop"},tablet:{value:Aa,label:"backgroundPositionOverlayTablet"},mobile:{value:Ga,label:"backgroundPositionOverlayMobile"}},backgroundOverlayImage:{desktop:{value:Ma,label:"backgroundOverlayImageDesktop"},tablet:{value:Ra,label:"backgroundOverlayImageTablet"},mobile:{value:Ba,label:"backgroundOverlayImageMobile"}},customOverlayPosition:{value:Ua,label:"customOverlayPosition"},xPositionOverlayDesktop:{value:Ea,label:"xPositionOverlayDesktop"},xPositionOverlayTablet:{value:Oa,label:"xPositionOverlayTablet"},xPositionOverlayMobile:{value:La,label:"xPositionOverlayMobile"},xPositionOverlayType:{value:Ha,label:"xPositionOverlayType"},xPositionOverlayTypeTablet:{value:ja,label:"xPositionOverlayTypeTablet"},xPositionOverlayTypeMobile:{value:Fa,label:"xPositionOverlayTypeMobile"},yPositionOverlayDesktop:{value:za,label:"yPositionOverlayDesktop"},yPositionOverlayTablet:{value:Da,label:"yPositionOverlayTablet"},yPositionOverlayMobile:{value:Ia,label:"yPositionOverlayMobile"},yPositionOverlayType:{value:Va,label:"yPositionOverlayType"},yPositionOverlayTypeTablet:{value:Wa,label:"yPositionOverlayTypeTablet"},yPositionOverlayTypeMobile:{value:qa,label:"yPositionOverlayTypeMobile"},overlayBlendMode:{desktop:{value:Za,label:"overlayBlendMode"},tablet:{value:$a,label:"overlayBlendModeTablet"},mobile:{value:Ya,label:"overlayBlendModeMobile"}},onOpacityChange:e=>l({overlayOpacity:e})},e))),React.createElement(Fe,{title:Object(r.__)("Color","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Jt,data:{value:Jt,label:"textColor"},setAttributes:l}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:Wl,hover:ql,disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:l,prefix:"container",attributes:a,deviceType:i,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:l,presets:zs,presetInputType:"radioImage"}),React.createElement(vl,{blockId:o,setAttributes:l,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:J,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:X,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Q,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ee,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:te,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ae,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:l,presets:Ds,presetInputType:"radioImage"}),React.createElement(vl,{blockId:o,setAttributes:l,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:le,label:"boxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ie,label:"boxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:oe,label:"boxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ne,label:"boxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:re,label:"boxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:se,label:"boxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0})),(()=>{const e=[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tilt",label:Object(r.__)("Tilt","ultimate-addons-for-gutenberg")},{value:"mountains",label:Object(r.__)("Mountains","ultimate-addons-for-gutenberg")},{value:"wave_brush",label:Object(r.__)("Wave Brush","ultimate-addons-for-gutenberg")},{value:"waves",label:Object(r.__)("Waves","ultimate-addons-for-gutenberg")},{value:"wave_pattern",label:Object(r.__)("Waves Pattern","ultimate-addons-for-gutenberg")},{value:"triangle",label:Object(r.__)("Triangle","ultimate-addons-for-gutenberg")},{value:"drops",label:Object(r.__)("Drops","ultimate-addons-for-gutenberg")},{value:"clouds",label:Object(r.__)("Clouds","ultimate-addons-for-gutenberg")},{value:"zigzag",label:Object(r.__)("ZigZag","ultimate-addons-for-gutenberg")},{value:"pyramids",label:Object(r.__)("Pyramids","ultimate-addons-for-gutenberg")},{value:"triangle_asymmetrical",label:Object(r.__)("Triangle Asymmetrical","ultimate-addons-for-gutenberg")},{value:"tilt_opacity",label:Object(r.__)("Tilt Opacity","ultimate-addons-for-gutenberg")},{value:"fan_opacity",label:Object(r.__)("Fan Opacity","ultimate-addons-for-gutenberg")},{value:"curve",label:Object(r.__)("Curve","ultimate-addons-for-gutenberg")},{value:"curve_asymmetrical",label:Object(r.__)("Curve Asymmetrical","ultimate-addons-for-gutenberg")},{value:"curve_reverse",label:Object(r.__)("Curve Reverse","ultimate-addons-for-gutenberg")},{value:"curve_asym_reverse",label:Object(r.__)("Curve Asymmetrical Reverse","ultimate-addons-for-gutenberg")},{value:"arrow",label:Object(r.__)("Arrow","ultimate-addons-for-gutenberg")},{value:"arrow_split",label:Object(r.__)("Arrow Split","ultimate-addons-for-gutenberg")},{value:"book",label:Object(r.__)("Book","ultimate-addons-for-gutenberg")}],t=React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:ft,label:"topType"},setAttributes:l,options:e}),"none"!==ft&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ht,data:{value:ht,label:"topColor"},setAttributes:l}),React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:l,value:Ct,data:{value:Ct,label:"topWidth"},min:0,max:100,unit:{value:ml,label:"topDividerWidthType"},units:[{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:vt,label:"topHeight",unit:{value:sl,label:"topHeightType"}},tablet:{value:_t,label:"topHeightTablet",unit:{value:cl,label:"topHeightTypeTablet"}},mobile:{value:Tt,label:"topHeightMobile",unit:{value:ul,label:"topHeightTypeMobile"}}},min:0,max:500,unit:{value:fl,label:"topDividerHeightType"},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Flip","ultimate-addons-for-gutenberg"),checked:wt,onChange:()=>l({topFlip:!wt})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Invert","ultimate-addons-for-gutenberg"),checked:Yt,onChange:()=>l({topInvert:!Yt})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Bring To Front","ultimate-addons-for-gutenberg"),checked:kt,onChange:()=>l({topContentAboveShape:!kt})}))),a=React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:pt,label:"bottomType"},setAttributes:l,options:e}),"none"!==pt&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:bt,data:{value:bt,label:"bottomColor"},setAttributes:l}),React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:l,value:yt,data:{value:yt,label:"bottomWidth"},min:0,max:100,unit:{value:yl,label:"bottomDividerWidthType"},units:[{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:dt,label:"bottomHeight",unit:{value:pl,label:"bottomHeightType"}},tablet:{value:gt,label:"bottomHeightTablet",unit:{value:bl,label:"bottomHeightTypeTablet"}},mobile:{value:mt,label:"bottomHeightMobile",unit:{value:dl,label:"bottomHeightTypeMobile"}}},min:0,max:500,unit:{value:_l,label:"bottomDividerHeightType"},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Flip","ultimate-addons-for-gutenberg"),checked:St,onChange:()=>l({bottomFlip:!St})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Invert","ultimate-addons-for-gutenberg"),checked:Kt,onChange:()=>l({bottomInvert:!Kt})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Bring To Front","ultimate-addons-for-gutenberg"),checked:Pt,onChange:()=>l({bottomContentAboveShape:!Pt})})));return React.createElement(Fe,{title:Object(r.__)("Shape Dividers","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"top",title:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{name:"bottom",title:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],top:t,bottom:a,disableBottomSeparator:!0}))})(),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:qe,label:"rowGapDesktop",unit:{value:Ye,label:"rowGapType"}},tablet:{value:Ze,label:"rowGapTablet",unit:{value:Ke,label:"rowGapTypeTablet"}},mobile:{value:$e,label:"rowGapMobile",unit:{value:Je,label:"rowGapTypeMobile"}}},min:0,max:200,units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:l}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:Xe,label:"columnGapDesktop",unit:{value:tt,label:"columnGapType"}},tablet:{value:Qe,label:"columnGapTablet",unit:{value:at,label:"columnGapTypeTablet"}},mobile:{value:et,label:"columnGapMobile",unit:{value:lt,label:"columnGapTypeMobile"}}},min:0,max:200,units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],setAttributes:l}),React.createElement(Pl,mc({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ce,label:"topPaddingDesktop"},valueRight:{value:be,label:"rightPaddingDesktop"},valueBottom:{value:ue,label:"bottomPaddingDesktop"},valueLeft:{value:pe,label:"leftPaddingDesktop"},valueTopTablet:{value:de,label:"topPaddingTablet"},valueRightTablet:{value:fe,label:"rightPaddingTablet"},valueBottomTablet:{value:me,label:"bottomPaddingTablet"},valueLeftTablet:{value:ye,label:"leftPaddingTablet"},valueTopMobile:{value:he,label:"topPaddingMobile"},valueRightMobile:{value:Te,label:"rightPaddingMobile"},valueBottomMobile:{value:ve,label:"bottomPaddingMobile"},valueLeftMobile:{value:_e,label:"leftPaddingMobile"},unit:{value:Ce,label:"paddingType"},mUnit:{value:we,label:"paddingTypeMobile"},tUnit:{value:Se,label:"paddingTypeTablet"},attributes:a,setAttributes:l,link:{value:ke,label:"paddingLink"}})),React.createElement(Pl,mc({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Pe,label:"topMarginDesktop"},valueRight:{value:Ge,label:"rightMarginDesktop"},valueBottom:{value:xe,label:"bottomMarginDesktop"},valueLeft:{value:Ae,label:"leftMarginDesktop"},valueTopTablet:{value:Me,label:"topMarginTablet"},valueRightTablet:{value:Ue,label:"rightMarginTablet"},valueBottomTablet:{value:Re,label:"bottomMarginTablet"},valueLeftTablet:{value:Be,label:"leftMarginTablet"},valueTopMobile:{value:Oe,label:"topMarginMobile"},valueRightMobile:{value:De,label:"rightMarginMobile"},valueBottomMobile:{value:He,label:"bottomMarginMobile"},valueLeftMobile:{value:je,label:"leftMarginMobile"},unit:{value:Ne,label:"marginType"},mUnit:{value:Ve,label:"marginTypeMobile"},tUnit:{value:Ie,label:"marginTypeTablet"},attributes:a,setAttributes:l,link:{value:We,label:"marginLink"},help:"default"!==it&&Zl})))),React.createElement(il,mc({},rl,{parentProps:e}),lc(Ms,l,a))))}),fc={triangle:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M500,98.9L0,6.1V0h1000v6.1L500,98.9z"})),wave_brush:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7\ts-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7\tc-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z M260.8,11.3\tc-0.7-1-2-0.4-4.3-0.4c-2.3,0-6.1-1.2-5.8-1.1c0.3,0.1,3.1,1.5,6,1.9C259.7,12.2,261.4,12.3,260.8,11.3z M242.4,8.6\tc0,0-2.4-0.2-5.6-0.9c-3.2-0.8-10.3-2.8-15.1-3.5c-8.2-1.1-15.8,0-15.1,0.1c0.8,0.1,9.6-0.6,17.6,1.1c3.3,0.7,9.3,2.2,12.4,2.7\tC239.9,8.7,242.4,8.6,242.4,8.6z M185.2,8.5c1.7-0.7-13.3,4.7-18.5,6.1c-2.1,0.6-6.2,1.6-10,2c-3.9,0.4-8.9,0.4-8.8,0.5\tc0,0.2,5.8,0.8,11.2,0c5.4-0.8,5.2-1.1,7.6-1.6C170.5,14.7,183.5,9.2,185.2,8.5z M199.1,6.9c0.2,0-0.8-0.4-4.8,1.1\tc-4,1.5-6.7,3.5-6.9,3.7c-0.2,0.1,3.5-1.8,6.6-3C197,7.5,199,6.9,199.1,6.9z M283,6c-0.1,0.1-1.9,1.1-4.8,2.5s-6.9,2.8-6.7,2.7\tc0.2,0,3.5-0.6,7.4-2.5C282.8,6.8,283.1,5.9,283,6z M31.3,11.6c0.1-0.2-1.9-0.2-4.5-1.2s-5.4-1.6-7.8-2C15,7.6,7.3,8.5,7.7,8.6\tC8,8.7,15.9,8.3,20.2,9.3c2.2,0.5,2.4,0.5,5.7,1.6S31.2,11.9,31.3,11.6z M73,9.2c0.4-0.1,3.5-1.6,8.4-2.6c4.9-1.1,8.9-0.5,8.9-0.8\tc0-0.3-1-0.9-6.2-0.3S72.6,9.3,73,9.2z M71.6,6.7C71.8,6.8,75,5.4,77.3,5c2.3-0.3,1.9-0.5,1.9-0.6c0-0.1-1.1-0.2-2.7,0.2\tC74.8,5.1,71.4,6.6,71.6,6.7z M93.6,4.4c0.1,0.2,3.5,0.8,5.6,1.8c2.1,1,1.8,0.6,1.9,0.5c0.1-0.1-0.8-0.8-2.4-1.3\tC97.1,4.8,93.5,4.2,93.6,4.4z M65.4,11.1c-0.1,0.3,0.3,0.5,1.9-0.2s2.6-1.3,2.2-1.2s-0.9,0.4-2.5,0.8C65.3,10.9,65.5,10.8,65.4,11.1\tz M34.5,12.4c-0.2,0,2.1,0.8,3.3,0.9c1.2,0.1,2,0.1,2-0.2c0-0.3-0.1-0.5-1.6-0.4C36.6,12.8,34.7,12.4,34.5,12.4z M152.2,21.1\tc-0.1,0.1-2.4-0.3-7.5-0.3c-5,0-13.6-2.4-17.2-3.5c-3.6-1.1,10,3.9,16.5,4.1C150.5,21.6,152.3,21,152.2,21.1z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M269.6,18c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC267.7,18.8,269.7,18,269.6,18z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M227.4,9.8c-0.2-0.1-4.5-1-9.5-1.2c-5-0.2-12.7,0.6-12.3,0.5c0.3-0.1,5.9-1.8,13.3-1.2\tS227.6,9.9,227.4,9.8z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M204.5,13.4c-0.1-0.1,2-1,3.2-1.1c1.2-0.1,2,0,2,0.3c0,0.3-0.1,0.5-1.6,0.4\tC206.4,12.9,204.6,13.5,204.5,13.4z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M201,10.6c0-0.1-4.4,1.2-6.3,2.2c-1.9,0.9-6.2,3.1-6.1,3.1c0.1,0.1,4.2-1.6,6.3-2.6\tS201,10.7,201,10.6z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M154.5,26.7c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC152.6,27.5,154.6,26.8,154.5,26.7z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M41.9,19.3c0,0,1.2-0.3,2.9-0.1c1.7,0.2,5.8,0.9,8.2,0.7c4.2-0.4,7.4-2.7,7-2.6\tc-0.4,0-4.3,2.2-8.6,1.9c-1.8-0.1-5.1-0.5-6.7-0.4S41.9,19.3,41.9,19.3z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M75.5,12.6c0.2,0.1,2-0.8,4.3-1.1c2.3-0.2,2.1-0.3,2.1-0.5c0-0.1-1.8-0.4-3.4,0\tC76.9,11.5,75.3,12.5,75.5,12.6z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M15.6,13.2c0-0.1,4.3,0,6.7,0.5c2.4,0.5,5,1.9,5,2c0,0.1-2.7-0.8-5.1-1.4\tC19.9,13.7,15.7,13.3,15.6,13.2z"})),tilt:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0,6V0h1000v100L0,6z"})),mountains:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.33",d:"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.66",d:"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z"})),waves:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7  c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4  c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z"})),wave_pattern:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1047.1 3.7",preserveAspectRatio:"xMidYMin slice"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M1047.1,0C557,0,8.9,0,0,0v1.6c0,0,0.6-1.5,2.7-0.3C3.9,2,6.1,4.1,8.3,3.5c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3C13.8,2,16,4.1,18.2,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C23.6,2,25.9,4.1,28,3.5c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C63,2,65.3,4.1,67.4,3.5\tC68.3,3.3,69,1.6,69,1.6s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tC82.7,2,85,4.1,87.1,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C92.6,2,94.8,4.1,97,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.6-0.4V0z M2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2z M2.7,1.4c0.1,0,0.1,0.1,0.1,0.1C2.8,1.4,2.8,1.4,2.7,1.4z"})),drops:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0 0v1.4c.6.7 1.1 1.4 1.4 2 2 3.8 2.2 6.6 1.8 10.8-.3 3.3-2.4 9.4 0 12.3 1.7 2 3.7 1.4 4.6-.9 1.4-3.8-.7-8.2-.6-12 .1-3.7 3.2-5.5 6.9-4.9 4 .6 4.8 4 4.9 7.4.1 1.8-1.1 7 0 8.5.6.8 1.6 1.2 2.4.5 1.4-1.1.1-5.4.1-6.9.1-3.7.3-8.6 4.1-10.5 5-2.5 6.2 1.6 5.4 5.6-.4 1.7-1 9.2 2.9 6.3 1.5-1.1.7-3.5.5-4.9-.4-2.4-.4-4.3 1-6.5.9-1.4 2.4-3.1 4.2-3 2.4.1 2.7 2.2 4 3.7 1.5 1.8 1.8 2.2 3 .1 1.1-1.9 1.2-2.8 3.6-3.3 1.3-.3 4.8-1.4 5.9-.5 1.5 1.1.6 2.8.4 4.3-.2 1.1-.6 4 1.8 3.4 1.7-.4-.3-4.1.6-5.6 1.3-2.2 5.8-1.4 7 .5 1.3 2.1.5 5.8.1 8.1s-1.2 5-.6 7.4c1.3 5.1 4.4.9 4.3-2.4-.1-4.4-2-8.8-.5-13 .9-2.4 4.6-6.6 7.7-4.5 2.7 1.8.5 7.8.2 10.3-.2 1.7-.8 4.6.2 6.2.9 1.4 2 1.5 2.6-.3.5-1.5-.9-4.5-1-6.1-.2-1.7-.4-3.7.2-5.4 1.8-5.6 3.5 2.4 6.3.6 1.4-.9 4.3-9.4 6.1-3.1.6 2.2-1.3 7.8.7 8.9 4.2 2.3 1.5-7.1 2.2-8 3.1-4 4.7 3.8 6.1 4.1 3.1.7 2.8-7.9 8.1-4.5 1.7 1.1 2.9 3.3 3.2 5.2.4 2.2-1 4.5-.6 6.6 1 4.3 4.4 1.5 4.4-1.7 0-2.7-3-8.3 1.4-9.1 4.4-.9 7.3 3.5 7.8 6.9.3 2-1.5 10.9 1.3 11.3 4.1.6-3.2-15.7 4.8-15.8 4.7-.1 2.8 4.1 3.9 6.6 1 2.4 2.1 1 2.3-.8.3-1.9-.9-3.2 1.3-4.3 5.9-2.9 5.9 5.4 5.5 8.5-.3 2-1.7 8.4 2 8.1 6.9-.5-2.8-16.9 4.8-18.7 4.7-1.2 6.1 3.6 6.3 7.1.1 1.7-1.2 8.1.6 9.1 3.5 2 1.9-7 2-8.4.2-4 1.2-9.6 6.4-9.8 4.7-.2 3.2 4.6 2.7 7.5-.4 2.2 1.3 8.6 3.8 4.4 1.1-1.9-.3-4.1-.3-6 0-1.7.4-3.2 1.3-4.6 1-1.6 2.9-3.5 5.1-2.9 2.5.6 2.3 4.1 4.1 4.9 1.9.8 1.6-.9 2.3-2.1 1.2-2.1 2.1-2.1 4.4-2.4 1.4-.2 3.6-1.5 4.9-.5 2.3 1.7-.7 4.4.1 6.5.6 1.5 2.1 1.7 2.8.3.7-1.4-1.1-3.4-.3-4.8 1.4-2.5 6.2-1.2 7.2 1 2.3 4.8-3.3 12-.2 16.3 3 4.1 3.9-2.8 3.8-4.8-.4-4.3-2.1-8.9 0-13.1 1.3-2.5 5.9-5.7 7.9-2.4 2 3.2-1.3 9.8-.8 13.4.5 4.4 3.5 3.3 2.7-.8-.4-1.9-2.4-10 .6-11.1 3.7-1.4 2.8 7.2 6.5.4 2.2-4.1 4.9-3.1 5.2 1.2.1 1.5-.6 3.1-.4 4.6.2 1.9 1.8 3.7 3.3 1.3 1-1.6-2.6-10.4 2.9-7.3 2.6 1.5 1.6 6.5 4.8 2.7 1.3-1.5 1.7-3.6 4-3.7 2.2-.1 4 2.3 4.8 4.1 1.3 2.9-1.5 8.4.9 10.3 4.2 3.3 3-5.5 2.7-6.9-.6-3.9 1-7.2 5.5-5 4.1 2.1 4.3 7.7 4.1 11.6 0 .8-.6 9.5 2.5 5.2 1.2-1.7-.1-7.7.1-9.6.3-2.9 1.2-5.5 4.3-6.2 4.5-1 7.7 1.5 7.4 5.8-.2 3.5-1.8 7.7-.5 11.1 1 2.7 3.6 2.8 5 .2 1.6-3.1 0-8.3-.4-11.6-.4-4.2-.2-7 1.8-10.8 0 0-.1.1-.1.2-.2.4-.3.7-.4.8v.1c-.1.2-.1.2 0 0v-.1l.4-.8c0-.1.1-.1.1-.2.2-.4.5-.8.8-1.2V0H0zM282.7 3.4z"})),clouds:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0 0v6.7c1.9-.8 4.7-1.4 8.5-1 9.5 1.1 11.1 6 11.1 6s2.1-.7 4.3-.2c2.1.5 2.8 2.6 2.8 2.6s.2-.5 1.4-.7c1.2-.2 1.7.2 1.7.2s0-2.1 1.9-2.8c1.9-.7 3.6.7 3.6.7s.7-2.9 3.1-4.1 4.7 0 4.7 0 1.2-.5 2.4 0 1.7 1.4 1.7 1.4h1.4c.7 0 1.2.7 1.2.7s.8-1.8 4-2.2c3.5-.4 5.3 2.4 6.2 4.4.4-.4 1-.7 1.8-.9 2.8-.7 4 .7 4 .7s1.7-5 11.1-6c9.5-1.1 12.3 3.9 12.3 3.9s1.2-4.8 5.7-5.7c4.5-.9 6.8 1.8 6.8 1.8s.6-.6 1.5-.9c.9-.2 1.9-.2 1.9-.2s5.2-6.4 12.6-3.3c7.3 3.1 4.7 9 4.7 9s1.9-.9 4 0 2.8 2.4 2.8 2.4 1.9-1.2 4.5-1.2 4.3 1.2 4.3 1.2.2-1 1.4-1.7 2.1-.7 2.1-.7-.5-3.1 2.1-5.5 5.7-1.4 5.7-1.4 1.5-2.3 4.2-1.1c2.7 1.2 1.7 5.2 1.7 5.2s.3-.1 1.3.5c.5.4.8.8.9 1.1.5-1.4 2.4-5.8 8.4-4 7.1 2.1 3.5 8.9 3.5 8.9s.8-.4 2 0 1.1 1.1 1.1 1.1 1.1-1.1 2.3-1.1 2.1.5 2.1.5 1.9-3.6 6.2-1.2 1.9 6.4 1.9 6.4 2.6-2.4 7.4 0c3.4 1.7 3.9 4.9 3.9 4.9s3.3-6.9 10.4-7.9 11.5 2.6 11.5 2.6.8 0 1.2.2c.4.2.9.9.9.9s4.4-3.1 8.3.2c1.9 1.7 1.5 5 1.5 5s.3-1.1 1.6-1.4c1.3-.3 2.3.2 2.3.2s-.1-1.2.5-1.9 1.9-.9 1.9-.9-4.7-9.3 4.4-13.4c5.6-2.5 9.2.9 9.2.9s5-6.2 15.9-6.2 16.1 8.1 16.1 8.1.7-.2 1.6-.4V0H0z"})),zigzag:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1800 5.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M5.4.4l5.4 5.3L16.5.4l5.4 5.3L27.5.4 33 5.7 38.6.4l5.5 5.4h.1L49.9.4l5.4 5.3L60.9.4l5.5 5.3L72 .4l5.5 5.3L83.1.4l5.4 5.3L94.1.4l5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3L161 .4l5.4 5.3L172 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3L261 .4l5.4 5.3L272 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3L361 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3L461 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1L550 .4l5.4 5.3L561 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L650 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L750 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2L850 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4V0H-.2v5.8z"})),pyramids:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9"})),triangle_asymmetrical:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M738,99l262-93V0H0v5.6L738,99z"})),tilt_opacity:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 2600 131.1",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0 0L2600 0 2600 69.1 0 0z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.5",d:"M0 0L2600 0 2600 69.1 0 69.1z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.25",d:"M2600 0L0 0 0 130.1 2600 69.1z"})),fan_opacity:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 19.6",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.33",d:"M0 0L0 18.8 141.8 4.1 283.5 18.8 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.33",d:"M0 0L0 12.6 141.8 4 283.5 12.6 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",opacity:"0.33",d:"M0 0L0 6.4 141.8 4 283.5 6.4 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0 0L0 1.2 141.8 4 283.5 1.2 283.5 0z"})),curve:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M1000,4.3V0H0v4.3C0.9,23.1,126.7,99.2,500,100S1000,22.7,1000,4.3z"})),curve_asymmetrical:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0,0c0,0,0,6,0,6.7c0,18,240.2,93.6,615.2,92.6C989.8,98.5,1000,25,1000,6.7c0-0.7,0-6.7,0-6.7H0z"})),arrow:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 700 10",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M350,10L340,0h20L350,10z"})),arrow_split:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 20",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M0,0v3c0,0,393.8,0,483.4,0c9.2,0,16.6,7.4,16.6,16.6c0-9.1,7.4-16.6,16.6-16.6C606.2,3,1000,3,1000,3V0H0z"})),book:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M194,99c186.7,0.7,305-78.3,306-97.2c1,18.9,119.3,97.9,306,97.2c114.3-0.3,194,0.3,194,0.3s0-91.7,0-100c0,0,0,0,0-0 L0,0v99.3C0,99.3,79.7,98.7,194,99z"})),curve_reverse:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M937,129.8V-0.1H0v129.9C0,62.6,209.6,8.2,468.4,8.2S936.9,62.6,937,129.8z"})),curve_asym_reverse:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-container__shape-fill",d:"M937.5,124.3V0H0v124.3C0,100.8,227.4,2.9,578.9,4.1C926.9,0.3,937.5,100.4,937.5,124.3z"}))};function hc(){return(hc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var vc,_c=Object(B.memo)(e=>{const{attributes:t,clientId:a,deviceType:l,hasSliderParent:i,hasPopupParent:o}=e,{block_id:r,htmlTag:s,topType:c,topFlip:u,topContentAboveShape:p,bottomType:b,bottomFlip:d,bottomContentAboveShape:g,backgroundType:m,backgroundVideo:y,topInvert:f,bottomInvert:h,isBlockRootParent:v,contentWidth:_,innerContentWidth:T}=t,C="row"===t["direction"+l]?"horizontal":"vertical",S=ks(t,l,a,{hasPseudo:!0,forStyleSheet:!1}),w="none"!==c&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-top",{"uagb-container__shape-flip":!0===u},{"uagb-container__shape-above-content":!0===p},{"uagb-container__invert":!0===f})},fc[c]),k="none"!==b&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-bottom",{"uagb-container__shape-flip":!0===d},{"uagb-container__shape-above-content":!0===g},{"uagb-container__invert":!0===h})},fc[b]),{getBlockOrder:P}=Object(n.select)("core/block-editor"),x=P(a).length>0,A="a"===s?"div":""+s,G=0!==Object(n.select)("core/block-editor").getBlocks(a).length?"uagb-container-has-children":"",M=v?_+" uagb-is-root-container":"",R=Object(ge.useBlockProps)({className:`uagb-block-${r} ${G} uagb-editor-preview-mode-${l.toLowerCase()} ${M}`,style:S}),B={__experimentalMoverDirection:{moverDirection:C},renderAppender:x?void 0:ge.InnerBlocks.ButtonBlockAppender};if(i||o){let e=Object(be.getBlockTypes)().filter(e=>!e.parent).map(e=>e.name);i&&(e=e.filter(e=>-1===["uagb/slider"].indexOf(e))),o&&(e=e.filter(e=>-1===["uagb/modal"].indexOf(e))),B.allowedBlocks=e}const{getBlockParentsAll:U,getBlockSingle:E}=Object(n.useSelect)(e=>{const{getBlockParents:t,getBlock:a}=e("core/block-editor");return{getBlockParentsAll:t,getBlockSingle:a}},[]);if(U(a).map(e=>E(e).name).includes("uagb/loop-builder")){const e=["uagb/advanced-heading","uagb/image","uagb/buttons","uagb/container","uagb/info-box"];B.allowedBlocks=e}return React.createElement(React.Fragment,null,React.createElement(A,hc({},R,{key:r}),"video"===m&&React.createElement("div",{className:"uagb-container__video-wrap"},y&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:y.url,type:"video/mp4"}))),w,k,v&&"alignfull"===_&&"alignwide"===T?React.createElement("div",{className:"uagb-container-inner-blocks-wrap"},React.createElement(ge.InnerBlocks,B)):React.createElement(ge.InnerBlocks,B)))}),Tc=(a(161),a(100)),Cc=0,Sc={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},wc={};wc.locals=Tc.a.locals||{},wc.use=function(){return Cc++||(vc=ke()(Tc.a,Sc)),wc},wc.unuse=function(){Cc>0&&!--Cc&&(vc(),vc=null)};var kc=wc,Pc=e=>t=>{var a;const{globalBlockStyles:l,initialStateFlag:i}=Object(n.useSelect)(e=>{var t;const a=e("spectra");return{globalBlockStyles:a.getGlobalBlockStyles(),initialStateFlag:null===(t=a.getState())||void 0===t?void 0:t.initialStateSetFlag}},[]),{attributes:o,attributes:{globalBlockStyleId:r},setAttributes:s,name:c}=t,u=c.replace("uagb/",""),p={...o},b=Object(B.useMemo)(()=>null==l?void 0:l.find(e=>r&&(null==e?void 0:e.value)===r),[r,l]);if(Object(B.useEffect)(()=>{var e,t,a;if(null!==(e=uagb_blocks_info)&&void 0!==e&&e.spectra_pro_status&&"enabled"===(null===(t=uagb_blocks_info)||void 0===t?void 0:t.uag_enable_gbs_extension)){const e=((e,t)=>{if(!e||!t)return"";let a="";for(const l of e)if((null==l?void 0:l.value)===t){a=null==l?void 0:l.editorStyles;break}return a})(l,r);((e,t)=>{const a=(t,a,l)=>{if(!a)return;l="spectra-gbs-"+e;const i=t.getElementById(l);if(i)i.textContent=a;else{const e=document.createElement("style");e.setAttribute("id",l),e.textContent=a,t.head.appendChild(e)}};a(document,t,e),setTimeout(()=>{const l=document.getElementsByTagName("iframe");if(null!=l&&l.length)for(const i of l)if(!uagb_blocks_info.exclude_crops_iframes.includes(i.name))try{const l=(null==i?void 0:i.contentWindow.document)||(null==i?void 0:i.contentDocument);if(null==l||!l.head)continue;a(l,t,e)}catch(e){}})})(r,e)}if("disabled"!==(null===(a=uagb_blocks_info)||void 0===a?void 0:a.uag_enable_gbs_extension)&&i&&!b&&r){const e={globalBlockStyleId:"",globalBlockStyleName:""};for(const t in p){var o,n;null!=za&&null!==(o=za[u])&&void 0!==o&&null!==(n=o[t])&&void 0!==n&&n.isGBSStyle&&(.001020304===(null==p?void 0:p[t])&&(e[t]=Ps("",t,u)),null!=p&&p[t]||(e[t]=xs("",t,u)))}s(e)}},[l]),r&&"disabled"===(null===(a=uagb_blocks_info)||void 0===a?void 0:a.uag_enable_gbs_extension))for(const e in p){var d,g;null!=za&&null!==(d=za[u])&&void 0!==d&&null!==(g=d[e])&&void 0!==g&&g.isGBSStyle&&(.001020304===(null==p?void 0:p[e])&&(p[e]=Ps("",e,u)),null!=p&&p[e]||(p[e]=xs("",e,u)))}else for(const e in p).001020304===(null==p?void 0:p[e])&&(p[e]="");const m={...o,...p};return t={...t,attributes:m,isGBSPresent:b},React.createElement(e,t)};const xc={100:React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("rect",{x:"7.62939e-06",width:"114",height:"60",rx:"2",fill:"inherit"})),"50-50+100_100":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 2C0 0.895447 0.895416 0 2 0H54C55.1046 0 56 0.895447 56 2V58C56 59.1046 55.1046 60 54 60H2C0.895416 60 0 59.1046 0 58V2ZM58 2C58 0.895447 58.8954 0 60 0H112C113.105 0 114 0.895447 114 2V27C114 28.1046 113.105 29 112 29H60C58.8954 29 58 28.1046 58 27V2ZM60 31C58.8954 31 58 31.8954 58 33V58C58 59.1046 58.8954 60 60 60H112C113.105 60 114 59.1046 114 58V33C114 31.8954 113.105 31 112 31H60Z",fill:"inherit"})),"50-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.00001 0C0.895439 0 7.62939e-06 0.895447 7.62939e-06 2V58C7.62939e-06 59.1046 0.895439 60 2.00001 60H54C55.1046 60 56 59.1046 56 58V2C56 0.895447 55.1046 0 54 0H2.00001ZM60 0C58.8954 0 58 0.895447 58 2V58C58 59.1046 58.8954 60 60 60H112C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H60Z",fill:"inherit"})),"75-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.00001 0C0.895439 0 7.62939e-06 0.895447 7.62939e-06 2V58C7.62939e-06 59.1046 0.895439 60 2.00001 60H73C74.1046 60 75 59.1046 75 58V2C75 0.895447 74.1046 0 73 0H2.00001ZM79 0C77.8954 0 77 0.895447 77 2V58C77 59.1046 77.8954 60 79 60H112C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H79Z",fill:"inherit"})),"50-25-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 2C0 0.895447 0.895432 0 2 0H54C55.1046 0 56 0.895447 56 2V58C56 59.1046 55.1046 60 54 60H2C0.895432 60 0 59.1046 0 58V2ZM87 2C87 0.895447 87.8954 0 89 0H112C113.105 0 114 0.895447 114 2V58C114 59.1046 113.105 60 112 60H89C87.8954 60 87 59.1046 87 58V2ZM60 0C58.8954 0 58 0.895447 58 2V58C58 59.1046 58.8954 60 60 60H83C84.1046 60 85 59.1046 85 58V2C85 0.895447 84.1046 0 83 0H60Z",fill:"inherit"})),"33-33-33":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 2C0 0.895447 0.895432 0 2 0H35C36.1046 0 37 0.895447 37 2V58C37 59.1046 36.1046 60 35 60H2C0.895432 60 0 59.1046 0 58V2ZM39 2C39 0.895447 39.8954 0 41 0H73C74.1046 0 75 0.895447 75 2V58C75 59.1046 74.1046 60 73 60H41C39.8954 60 39 59.1046 39 58V2ZM79 0C77.8954 0 77 0.895447 77 2V58C77 59.1046 77.8954 60 79 60H112C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H79Z",fill:"inherit"})),"25-75":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M35 60C36.1046 60 37 59.1046 37 58L37 2C37 0.895447 36.1046 0 35 0H2.00002C0.895447 0 1.52588e-05 0.895447 1.52588e-05 2L7.62939e-06 58C7.62939e-06 59.1046 0.895439 60 2.00001 60H35ZM112 60C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H41C39.8954 0 39 0.895447 39 2L39 58C39 59.1046 39.8954 60 41 60H112Z",fill:"inherit"})),"25-50-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 58C27 59.1046 26.1046 60 25 60H2C0.895447 60 0 59.1046 0 58V2C0 0.895447 0.895447 0 2 0H25C26.1046 0 27 0.895447 27 2V58ZM85 58C85 59.1046 84.1046 60 83 60H31C29.8954 60 29 59.1046 29 58V2C29 0.895447 29.8954 0 31 0H83C84.1046 0 85 0.895447 85 2V58ZM112 60C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H89C87.8954 0 87 0.895447 87 2V58C87 59.1046 87.8954 60 89 60H112Z",fill:"inherit"})),"25-25-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 58C27 59.1046 26.1046 60 25 60H2C0.895416 60 0 59.1046 0 58V2C0 0.895447 0.895447 0 2 0H25C26.1046 0 27 0.895447 27 2V58ZM114 58C114 59.1046 113.105 60 112 60H60C58.8954 60 58 59.1046 58 58V2C58 0.895447 58.8954 0 60 0H112C113.105 0 114 0.895447 114 2V58ZM54 60C55.1046 60 56 59.1046 56 58V2C56 0.895447 55.1046 0 54 0H31C29.8954 0 29 0.895447 29 2V58C29 59.1046 29.8954 60 31 60H54Z",fill:"inherit"})),"25-25-25-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 0C0.895416 0 0 0.895447 0 2V58C0 59.1046 0.895416 60 2 60H25C26.1046 60 27 59.1046 27 58V2C27 0.895447 26.1046 0 25 0H2ZM31 0C29.8954 0 29 0.895447 29 2V58C29 59.1046 29.8954 60 31 60H54C55.1046 60 56 59.1046 56 58V2C56 0.895447 55.1046 0 54 0H31ZM89 0C87.8954 0 87 0.895447 87 2V58C87 59.1046 87.8954 60 89 60H112C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H89ZM58 2C58 0.895447 58.8954 0 60 0H83C84.1046 0 85 0.895447 85 2V58C85 59.1046 84.1046 60 83 60H60C58.8954 60 58 59.1046 58 58V2Z",fill:"inherit"})),"20-20-20-20-20":React.createElement("svg",{width:"113",height:"60",viewBox:"0 0 113 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 0C0.895447 0 0 0.895447 0 2V58C0 59.1046 0.895447 60 2 60H19C20.1046 60 21 59.1046 21 58V2C21 0.895447 20.1046 0 19 0H2ZM25 0C23.8954 0 23 0.895447 23 2V58C23 59.1046 23.8954 60 25 60H42C43.1046 60 44 59.1046 44 58V2C44 0.895447 43.1046 0 42 0H25ZM69 2C69 0.895447 69.8954 0 71 0H88C89.1046 0 90 0.895447 90 2V58C90 59.1046 89.1046 60 88 60H71C69.8954 60 69 59.1046 69 58V2ZM92 2C92 0.895447 92.8954 0 94 0H111C112.105 0 113 0.895447 113 2V58C113 59.1046 112.105 60 111 60H94C92.8954 60 92 59.1046 92 58V2ZM46 2C46 0.895447 46.8954 0 48 0H65C66.1046 0 67 0.895447 67 2V58C67 59.1046 66.1046 60 65 60H48C46.8954 60 46 59.1046 46 58V2Z",fill:"inherit"})),"100_50-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M114 27C114 28.1046 113.105 29 112 29H2C0.895432 29 0 28.1046 0 27V2C0 0.895447 0.895432 0 2 0H112C113.105 0 114 0.895447 114 2V27ZM114 58C114 59.1046 113.105 60 112 60H60C58.8954 60 58 59.1046 58 58V33C58 31.8954 58.8954 31 60 31H112C113.105 31 114 31.8954 114 33V58ZM54 60C55.1046 60 56 59.1046 56 58V33C56 31.8954 55.1046 31 54 31H2C0.895432 31 0 31.8954 0 33V58C0 59.1046 0.895432 60 2 60H54Z",fill:"inherit"})),"75+100_100+50-50-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.00001 0C0.895439 0 7.62939e-06 0.895447 7.62939e-06 2L0 27C0 28.1046 0.895432 29 2 29H73C74.1046 29 75 28.1046 75 27V2C75 0.895447 74.1046 0 73 0H2.00001ZM73 60C74.1046 60 75 59.1046 75 58V33C75 31.8954 74.1046 31 73 31H41C39.8954 31 39 31.8954 39 33V58C39 59.1046 39.8954 60 41 60H73ZM37 58C37 59.1046 36.1046 60 35 60H2.00001C0.895439 60 7.62939e-06 59.1046 7.62939e-06 58V33C7.62939e-06 31.8954 0.895439 31 2.00001 31H35C36.1046 31 37 31.8954 37 33V58ZM79 0C77.8954 0 77 0.895447 77 2L77 58C77 59.1046 77.8954 60 79 60H112C113.105 60 114 59.1046 114 58L114 2C114 0.895447 113.105 0 112 0H79Z",fill:"inherit"})),"75-25_25_75":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 0C0.895432 0 0 0.895447 0 2V27C0 28.1046 0.895416 29 2 29H73C74.1046 29 75 28.1046 75 27V2C75 0.895447 74.1046 0 73 0H2ZM112 60C113.105 60 114 59.1046 114 58V33C114 31.8954 113.105 31 112 31H41C39.8954 31 39 31.8954 39 33V58C39 59.1046 39.8954 60 41 60H112ZM37 58C37 59.1046 36.1046 60 35 60H2C0.895432 60 0 59.1046 0 58V33C0 31.8954 0.895432 31 2 31H35C36.1046 31 37 31.8954 37 33V58ZM79 0C77.8954 0 77 0.895447 77 2V27C77 28.1046 77.8954 29 79 29H112C113.105 29 114 28.1046 114 27V2C114 0.895447 113.105 0 112 0H79Z",fill:"inherit"})),"50+100_100+50-50-50+50-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 2C0 0.895447 0.895416 0 2 0H54C55.1046 0 56 0.895447 56 2V27C56 28.1046 55.1046 29 54 29H2C0.895416 29 0 28.1046 0 27V2ZM114 58C114 59.1046 113.105 60 112 60H89C87.8954 60 87 59.1046 87 58V2C87 0.895447 87.8954 0 89 0H112C113.105 0 114 0.895447 114 2V58ZM56 58C56 59.1046 55.1046 60 54 60H31C29.8954 60 29 59.1046 29 58V33C29 31.8954 29.8954 31 31 31H54C55.1046 31 56 31.8954 56 33V58ZM83 60C84.1046 60 85 59.1046 85 58V2C85 0.895447 84.1046 0 83 0H60C58.8954 0 58 0.895447 58 2V58C58 59.1046 58.8954 60 60 60H83ZM25 60C26.1046 60 27 59.1046 27 58V33C27 31.8954 26.1046 31 25 31H2C0.895416 31 0 31.8954 0 33V58C0 59.1046 0.895416 60 2 60H25Z",fill:"inherit"})),"50+100_100-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M114 58C114 59.1046 113.105 60 112 60H60C58.8954 60 58 59.1046 58 58V2C58 0.895447 58.8954 0 60 0H112C113.105 0 114 0.895447 114 2V58ZM56 58C56 59.1046 55.1046 60 54 60H2C0.895432 60 0 59.1046 0 58V33C0 31.8954 0.895432 31 2 31H54C55.1046 31 56 31.8954 56 33V58ZM54 29C55.1046 29 56 28.1046 56 27V2C56 0.895447 55.1046 0 54 0H2C0.895432 0 0 0.895447 0 2V27C0 28.1046 0.895432 29 2 29H54Z",fill:"inherit"})),"50-50_100":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.62939e-06 2C7.62939e-06 0.895447 0.895439 0 2.00001 0H54C55.1046 0 56 0.895447 56 2V27C56 28.1046 55.1046 29 54 29H2.00001C0.895439 29 7.62939e-06 28.1046 7.62939e-06 27V2ZM7.62939e-06 33C7.62939e-06 31.8954 0.895439 31 2.00001 31H112C113.105 31 114 31.8954 114 33V58C114 59.1046 113.105 60 112 60H2.00001C0.895439 60 7.62939e-06 59.1046 7.62939e-06 58V33ZM60 0C58.8954 0 58 0.895447 58 2V27C58 28.1046 58.8954 29 60 29H112C113.105 29 114 28.1046 114 27V2C114 0.895447 113.105 0 112 0H60Z",fill:"inherit"})),"50-50_50-50":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.00001 0C0.895439 0 7.62939e-06 0.895447 7.62939e-06 2V27C7.62939e-06 28.1046 0.895439 29 2.00001 29H54C55.1046 29 56 28.1046 56 27V2C56 0.895447 55.1046 0 54 0H2.00001ZM60 0C58.8954 0 58 0.895447 58 2V27C58 28.1046 58.8954 29 60 29H112C113.105 29 114 28.1046 114 27V2C114 0.895447 113.105 0 112 0H60ZM58 33C58 31.8954 58.8954 31 60 31H112C113.105 31 114 31.8954 114 33V58C114 59.1046 113.105 60 112 60H60C58.8954 60 58 59.1046 58 58V33ZM2.00001 31C0.895439 31 7.62939e-06 31.8954 7.62939e-06 33V58C7.62939e-06 59.1046 0.895439 60 2.00001 60H54C55.1046 60 56 59.1046 56 58V33C56 31.8954 55.1046 31 54 31H2.00001Z",fill:"inherit"})),"33-33+100_100-33":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 0C0.895447 0 0 0.895447 0 2V58C0 59.1046 0.895447 60 2 60H35C36.1046 60 37 59.1046 37 58V2C37 0.895447 36.1046 0 35 0H2ZM80 0C78.8954 0 78 0.895447 78 2V58C78 59.1046 78.8954 60 80 60H112C113.105 60 114 59.1046 114 58V2C114 0.895447 113.105 0 112 0H80ZM39 2C39 0.895447 39.8954 0 41 0H74C75.1046 0 76 0.895447 76 2V27C76 28.1046 75.1046 29 74 29H41C39.8954 29 39 28.1046 39 27V2ZM41 31C39.8954 31 39 31.8954 39 33V58C39 59.1046 39.8954 60 41 60H74C75.1046 60 76 59.1046 76 58V33C76 31.8954 75.1046 31 74 31H41Z",fill:"inherit"})),"33-33-33+100_100":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 0C0.895447 0 0 0.895447 0 2V58C0 59.1046 0.895447 60 2 60H35C36.1046 60 37 59.1046 37 58V2C37 0.895447 36.1046 0 35 0H2ZM41 0C39.8954 0 39 0.895447 39 2V58C39 59.1046 39.8954 60 41 60H73C74.1046 60 75 59.1046 75 58V2C75 0.895447 74.1046 0 73 0H41ZM77 2C77 0.895447 77.8954 0 79 0H112C113.105 0 114 0.895447 114 2V27C114 28.1046 113.105 29 112 29H79C77.8954 29 77 28.1046 77 27V2ZM79 31C77.8954 31 77 31.8954 77 33V58C77 59.1046 77.8954 60 79 60H112C113.105 60 114 59.1046 114 58V33C114 31.8954 113.105 31 112 31H79Z",fill:"inherit"})),"33-33-33_33-33-33":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.62939e-06 2C7.62939e-06 0.895447 0.895439 0 2.00001 0H34C35.1046 0 36 0.895447 36 2V27C36 28.1046 35.1046 29 34 29H2.00001C0.895439 29 7.62939e-06 28.1046 7.62939e-06 27V2ZM40 0C38.8954 0 38 0.895447 38 2V27C38 28.1046 38.8954 29 40 29H74C75.1046 29 76 28.1046 76 27V2C76 0.895447 75.1046 0 74 0H40ZM80 0C78.8954 0 78 0.895447 78 2V27C78 28.1046 78.8954 29 80 29H112C113.105 29 114 28.1046 114 27V2C114 0.895447 113.105 0 112 0H80ZM40 31C38.8954 31 38 31.8954 38 33V58C38 59.1046 38.8954 60 40 60H74C75.1046 60 76 59.1046 76 58V33C76 31.8954 75.1046 31 74 31H40ZM78 33C78 31.8954 78.8954 31 80 31H112C113.105 31 114 31.8954 114 33V58C114 59.1046 113.105 60 112 60H80C78.8954 60 78 59.1046 78 58V33ZM2.00001 31C0.895439 31 7.62939e-06 31.8954 7.62939e-06 33V58C7.62939e-06 59.1046 0.895439 60 2.00001 60H34C35.1046 60 36 59.1046 36 58V33C36 31.8954 35.1046 31 34 31H2.00001Z",fill:"inherit"})),"25-75+100+50-50_100":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M35 60C36.1046 60 37 59.1046 37 58V2C37 0.895447 36.1046 0 35 0H2C0.895432 0 0 0.895447 0 2L-1.52588e-05 58C-1.52588e-05 59.1046 0.895416 60 1.99998 60H35ZM41 0C39.8954 0 39 0.895447 39 2V27C39 28.1046 39.8954 29 41 29H73C74.1046 29 75 28.1046 75 27V2C75 0.895447 74.1046 0 73 0H41ZM112 60C113.105 60 114 59.1046 114 58V33C114 31.8954 113.105 31 112 31H41C39.8954 31 39 31.8954 39 33V58C39 59.1046 39.8954 60 41 60H112ZM77 2C77 0.895447 77.8954 0 79 0H112C113.105 0 114 0.895447 114 2V27C114 28.1046 113.105 29 112 29H79C77.8954 29 77 28.1046 77 27V2Z",fill:"inherit"})),"25-75_75-25":React.createElement("svg",{width:"114",height:"60",viewBox:"0 0 114 60",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M112 0C113.105 0 114 0.895447 114 2V27C114 28.1046 113.105 29 112 29H41C39.8954 29 39 28.1046 39 27V2C39 0.895447 39.8954 0 41 0H112ZM2 60C0.895416 60 0 59.1046 0 58V33C0 31.8954 0.895416 31 2 31H73C74.1046 31 75 31.8954 75 33V58C75 59.1046 74.1046 60 73 60H2ZM77 58C77 59.1046 77.8954 60 79 60H112C113.105 60 114 59.1046 114 58V33C114 31.8954 113.105 31 112 31H79C77.8954 31 77 31.8954 77 33V58ZM35 0C36.1046 0 37 0.895447 37 2V27C37 28.1046 36.1046 29 35 29H2C0.895447 29 0 28.1046 0 27V2C0 0.895447 0.895416 0 2 0H35Z",fill:"inherit"}))};function Ac(){return(Ac=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const Gc=[{name:"one-column",icon:xc[100],attributes:{variationSelected:!0},scope:["block"]},{name:"two-column-split",icon:xc["50-50"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},isDefault:!0,innerBlocks:[["uagb/container",{widthDesktop:50,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:50,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"three-columns-equal",icon:xc["33-33-33"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:33,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:33,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:33,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"four-column",icon:xc["25-25-25-25"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"50-50_50-50",icon:xc["50-50_50-50"],attributes:{variationSelected:!0,directionDesktop:"row",wrapDesktop:"wrap",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"two-columns-one-third-two-thirds",icon:xc["25-75"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:75,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"33-33-33_33-33-33",icon:xc["33-33-33_33-33-33"],attributes:{variationSelected:!0,directionDesktop:"row",wrapDesktop:"wrap",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:31,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"three-columns-wider-center",icon:xc["25-50-25"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:50,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"two-columns-two-thirds-one-third",icon:xc["75-25"],attributes:{variationSelected:!0,directionDesktop:"row",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:75,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:25,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"75-25_25_75",icon:xc["75-25_25_75"],attributes:{variationSelected:!0,directionDesktop:"row",wrapDesktop:"wrap",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:73,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:23,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:23,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:73,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"50-50_100",icon:xc["50-50_100"],attributes:{variationSelected:!0,directionDesktop:"row",wrapDesktop:"wrap",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:100,widthSetByUser:!0,directionDesktop:"row"},[["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:48,widthMobile:100,widthSetByUser:!0}]]],["uagb/container",{widthDesktop:100,widthMobile:100,widthSetByUser:!0}]],scope:["block"]},{name:"25-75_75-25",icon:xc["25-75_75-25"],attributes:{variationSelected:!0,directionDesktop:"row",wrapDesktop:"wrap",wrapMobile:"wrap"},innerBlocks:[["uagb/container",{widthDesktop:23,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:73,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:73,widthMobile:100,widthSetByUser:!0}],["uagb/container",{widthDesktop:23,widthMobile:100,widthSetByUser:!0}]],scope:["block"]}],Mc=e=>{const{clientId:t,setAttributes:a,defaultVariation:l}=e,{replaceInnerBlocks:i}=Object(n.useDispatch)("core/block-editor");return React.createElement("div",Ac({},Object(ge.useBlockProps)(),{className:"uagb-container-variation-picker"}),React.createElement(ge.__experimentalBlockVariationPicker,{icon:se.container,label:Object(r.__)("Container","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Select a container layout to start with.","ultimate-addons-for-gutenberg"),variations:Gc,onSelect:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;e.attributes&&a(e.attributes),e.innerBlocks&&"one-column"!==e.name&&i(t,Object(be.createBlocksFromInnerBlocksTemplate)(e.innerBlocks))}(e)}))};function Rc(){return(Rc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Bc=Object(L.compose)((function(e){return t=>{var a,l;const{attributes:i,context:o}=t,n=null==i||null===(a=i.dynamicContent)||void 0===a||null===(l=a.bgImage)||void 0===l?void 0:l.enable;if(t={...t,hasDynamicContent:n},!n)return React.createElement(e,t);const r=Object(j.applyFilters)("spectra_filter_dc_image",i,o);return t={...t,attributes:{...i,backgroundImageDesktop:{type:"image",url:r.url}}},React.createElement(e,t)}}),vs,fe,Pc)(e=>{const{isSelected:t,attributes:a,attributes:{borderStyle:l,borderWidth:i,borderColor:o,borderHoverColor:r,borderRadius:s,variationSelected:c,UAGHideDesktop:u,UAGHideTab:p,UAGHideMob:b,globalBlockStyleId:d,backgroundType:g,backgroundVideoOpacity:m,isGridCssInParent:y},clientId:f,setAttributes:h,name:v,deviceType:_,context:T,hasDynamicContent:C}=e,{isParentOfSelectedBlock:S,variations:w,defaultVariation:k,getBlockParents:P,parentBlocks:x,parentAttributes:A}=Object(n.useSelect)(t=>{const a=t("core/blocks"),l=t("core/block-editor"),i=null==l?void 0:l.getBlockParents(f),o=l.getBlockRootClientId(e.clientId);return{defaultVariation:null==a?void 0:a.getDefaultBlockVariation(v),variations:null==a?void 0:a.getBlockVariations(v),isParentOfSelectedBlock:null==l?void 0:l.hasSelectedInnerBlock(f,!0),getBlockParents:i,parentBlocks:null==l?void 0:l.getBlocksByClientId(i),parentAttributes:l.getBlockAttributes(o)}}),G=Object(B.useMemo)(()=>{const e={hasSliderParent:!1,hasPopupParent:!1},t={sliderBlocks:["uagb/slider","uagb/slider-child"],popupBlocks:["uagb/modal","uagb/popup-builder"]};if(null!=x&&x.length)for(const l in x){var a;const i=null===(a=x[l])||void 0===a?void 0:a.name;t.sliderBlocks.includes(i)&&(e.hasSliderParent=!0),t.popupBlocks.includes(i)&&(e.hasPopupParent=!0)}return e},[]);if(e={...e,...G},Object(B.useLayoutEffect)(()=>(kc.use(),()=>{kc.unuse()}),[]),S){const e=document.querySelector(".block-editor-block-list__empty-block-inserter");e&&(e.style.display="none")}Object(B.useEffect)(()=>{const e="grid"===(null==A?void 0:A.layout);e!==y&&h({isGridCssInParent:e})},[null==A?void 0:A.layout]),Object(B.useEffect)(()=>{const e={};x&&0!==x.length&&x.some(e=>"uagb/container"===e.name)||(e.isBlockRootParent=!0),"video"===g&&m&&(e.overlayOpacity=m,e.backgroundVideoOpacity=0),e.isBlockRootParent===a.isBlockRootParent&&e.hasPopupParent===a.hasPopupParent&&e.hasSliderParent===a.hasSliderParent&&e.backgroundVideoOpacity===a.backgroundVideoOpacity||h(e),d||(i||s||o||r||l)&&ue("container",{label:"borderWidth",value:i},{label:"borderRadius",value:s},{label:"borderColor",value:o},{label:"borderHoverColor",value:r},{label:"borderStyle",value:l},h,a)},[]),Object(B.useEffect)(()=>{var e;!C||null!=a&&null!==(e=a.context)&&void 0!==e&&e.postId||h(e=>({...e,context:T}))},[C,null==T?void 0:T.postId]);const M=Object(B.useMemo)(()=>Ms(a,f,v,_),[a,_]);return Object(B.useEffect)(()=>{Bs()},[_]),Object(B.useEffect)(()=>{he(e)},[u,p,b,_]),c||0!==(null==P?void 0:P.length)?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:M}),t&&React.createElement(yc,e),React.createElement(_c,e)):React.createElement(Mc,Rc({},e,{variations:w,defaultVariation:k}))});function Uc(){return(Uc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const Ec=ce("container");var Oc={block_id:{type:"string"},htmlTag:{type:"string",default:"div"},htmlTagLink:{type:"object"},contentWidth:{type:"string",default:"alignfull",UAGCopyPaste:{styleType:"content-width"}},innerContentWidth:{type:"string",default:"alignwide",UAGCopyPaste:{styleType:"inner-content-width"}},widthDesktop:{type:"number",default:100,UAGCopyPaste:{styleType:"container-width-desktop"}},widthTablet:{type:"number",UAGCopyPaste:{styleType:"container-width-tablet"}},widthMobile:{type:"number",default:100,UAGCopyPaste:{styleType:"container-width-mobile"}},widthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"container-width-type"}},innerContentCustomWidthDesktop:{type:"number",default:uagb_blocks_info.content_width},innerContentCustomWidthTablet:{type:"number",default:1024},innerContentCustomWidthMobile:{type:"number",default:767},innerContentCustomWidthType:{type:"string",default:"px"},minHeightDesktop:{type:"number",UAGCopyPaste:{styleType:"container-min-height-desktop"}},minHeightTablet:{type:"number",UAGCopyPaste:{styleType:"container-min-height-tablet"}},minHeightMobile:{type:"number",UAGCopyPaste:{styleType:"container-min-height-mobile"}},minHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-min-height-type"}},directionDesktop:{type:"string",default:"column",UAGCopyPaste:{styleType:"container-direction-desktop"}},directionTablet:{type:"string",UAGCopyPaste:{styleType:"container-direction-tablet"}},directionMobile:{type:"string",UAGCopyPaste:{styleType:"container-direction-mobile"}},alignItemsDesktop:{type:"string",default:"center",UAGCopyPaste:{styleType:"container-align-items-desktop"}},alignItemsTablet:{type:"string",UAGCopyPaste:{styleType:"container-align-items-tablet"}},alignItemsMobile:{type:"string",UAGCopyPaste:{styleType:"container-align-items-mobile"}},justifyContentDesktop:{type:"string",default:"center",UAGCopyPaste:{styleType:"container-justify-content-desktop"}},justifyContentTablet:{type:"string",UAGCopyPaste:{styleType:"container-justify-content-tablet"}},justifyContentMobile:{type:"string",UAGCopyPaste:{styleType:"container-justify-content-mobile"}},wrapDesktop:{type:"string",default:"nowrap",UAGCopyPaste:{styleType:"container-wrap-desktop"}},wrapTablet:{type:"string",UAGCopyPaste:{styleType:"container-wrap-tablet"}},wrapMobile:{type:"string",default:"wrap",UAGCopyPaste:{styleType:"container-wrap-mobile"}},alignContentDesktop:{type:"string",default:"",UAGCopyPaste:{styleType:"container-align-content-desktop"}},alignContentTablet:{type:"string",UAGCopyPaste:{styleType:"container-align-content-tablet"}},alignContentMobile:{type:"string",UAGCopyPaste:{styleType:"container-align-content-mobile"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},borderStyle:{type:"string"},borderWidth:{type:"number"},borderRadius:{type:"number"},borderColor:{type:"string"},borderHoverColor:{type:"string"},boxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},topPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-desktop"},default:uagb_blocks_info.container_global_padding},bottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-desktop"},default:uagb_blocks_info.container_global_padding},leftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-desktop"},default:uagb_blocks_info.container_global_padding},rightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-desktop"},default:uagb_blocks_info.container_global_padding},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-tablet"},default:uagb_blocks_info.container_global_padding},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-tablet"},default:uagb_blocks_info.container_global_padding},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-tablet"},default:uagb_blocks_info.container_global_padding},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-tablet"},default:uagb_blocks_info.container_global_padding},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-padding-mobile"},default:uagb_blocks_info.container_global_padding},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-padding-mobile"},default:uagb_blocks_info.container_global_padding},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-padding-mobile"},default:uagb_blocks_info.container_global_padding},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-padding-mobile"},default:uagb_blocks_info.container_global_padding},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-desktop"}},bottomMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-desktop"}},rightMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-desktop"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"container-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},marginLink:{type:"boolean",default:!0},variationSelected:{type:"boolean",default:!1},rowGapDesktop:{type:"number",UAGCopyPaste:{styleType:"container-row-gap-desktop"},default:uagb_blocks_info.container_elements_gap},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"container-row-gap-tablet"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"container-row-gap-mobile"}},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type"}},rowGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-tablet"}},rowGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-mobile"}},columnGapDesktop:{type:"number",UAGCopyPaste:{styleType:"container-column-gap-desktop"},default:uagb_blocks_info.container_elements_gap},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"container-column-gap-tablet"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"container-column-gap-mobile"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type"}},columnGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-tablet"}},columnGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-mobile"}},isPreview:{type:"boolean",default:!1},isBlockRootParent:{type:"boolean",default:!1},bottomType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bottom-type"}},bottomColor:{type:"string",UAGCopyPaste:{styleType:"container-bottom-color"},default:"#333"},bottomHeight:{type:"number",UAGCopyPaste:{styleType:"container-bottom-height"}},bottomHeightTablet:{type:"number",UAGCopyPaste:{styleType:"container-bottom-height-tablet"}},bottomHeightMobile:{type:"number",UAGCopyPaste:{styleType:"container-bottom-height-mobile"}},bottomWidth:{type:"number",UAGCopyPaste:{styleType:"container-bottom-width"},default:100},topType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-top-type"}},topColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"container-top-color"}},topHeight:{type:"number",UAGCopyPaste:{styleType:"container-top-height"}},topHeightTablet:{type:"number",UAGCopyPaste:{styleType:"container-top-height-tablet"}},topHeightMobile:{type:"number",UAGCopyPaste:{styleType:"container-top-height-mobile"}},topWidth:{type:"number",UAGCopyPaste:{styleType:"container-top-width"},default:100},topFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-flip"}},bottomFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-flip"}},topInvert:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-invert"}},bottomInvert:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"container-bottom-invert"}},topContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-content-above-shape"}},bottomContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-content-above-shape"}},widthSetByUser:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},backgroundVideoColor:{type:"string",UAGCopyPaste:{styleType:"bg-video-color"},default:"#FFFFFF75"},backgroundVideo:{type:"object",UAGCopyPaste:{styleType:"bg-video"}},backgroundVideoOpacity:{type:"number",UAGCopyPaste:{styleType:"bg-video-opacity"},default:.5},textColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},linkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},linkHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"}},innerContentCustomWidthTypeTablet:{type:"string",default:"px"},innerContentCustomWidthTypeMobile:{type:"string",default:"px"},widthTypeTablet:{type:"string",default:"%"},widthTypeMobile:{type:"string",default:"%"},minHeightTypeTablet:{type:"string",default:"px"},minHeightTypeMobile:{type:"string",default:"px"},topHeightType:{type:"string",default:"px"},topHeightTypeTablet:{type:"string",default:"px"},topHeightTypeMobile:{type:"string",default:"px"},bottomHeightType:{type:"string",default:"px"},bottomHeightTypeTablet:{type:"string",default:"px"},bottomHeightTypeMobile:{type:"string",default:"px"},overflow:{type:"string",default:"visible"},topDividerWidthType:{type:"string",default:"%"},bottomDividerWidthType:{type:"string",default:"%"},topDividerHeightType:{type:"string",default:"px"},bottomDividerHeightType:{type:"string",default:"px"},equalHeight:{type:"boolean",default:!1},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},...Ec};function Lc(){return(Lc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function Hc(){return(Hc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function jc(){return(jc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const Fc=ce("container"),zc={block_id:{type:"string"},htmlTag:{type:"string",default:"div"},htmlTagLink:{type:"object"},contentWidth:{type:"string",default:"alignfull",UAGCopyPaste:{styleType:"content-width"}},innerContentWidth:{type:"string",default:"alignwide",UAGCopyPaste:{styleType:"inner-content-width"}},widthDesktop:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-desktop"}},widthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-tablet"}},widthMobile:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-width-mobile"}},widthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"container-width-type"}},innerContentCustomWidthDesktop:{type:"number",default:uagb_blocks_info.content_width},innerContentCustomWidthTablet:{type:"number",default:1024},innerContentCustomWidthMobile:{type:"number",default:767},innerContentCustomWidthType:{type:"string",default:"px"},minHeightDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-desktop"}},minHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-tablet"}},minHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-min-height-mobile"}},minHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-min-height-type"}},directionDesktop:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-desktop"}},directionTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-tablet"}},directionMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-direction-mobile"}},alignItemsDesktop:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-desktop"}},alignItemsTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-tablet"}},alignItemsMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-items-mobile"}},justifyContentDesktop:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-desktop"}},justifyContentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-tablet"}},justifyContentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-justify-content-mobile"}},wrapDesktop:{type:"string",default:"nowrap",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-desktop"}},wrapTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-tablet"}},wrapMobile:{type:"string",default:"wrap",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-wrap-mobile"}},alignContentDesktop:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-desktop"}},alignContentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-tablet"}},alignContentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-align-content-mobile"}},backgroundType:{type:"string",default:"none",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bg-gradient-value"}},borderStyle:{type:"string"},borderWidth:{type:"number"},borderRadius:{type:"number"},borderColor:{type:"string"},borderHoverColor:{type:"string"},boxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-voffset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-box-shadow-position-hover"}},topPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-desktop"},default:uagb_blocks_info.container_global_padding},bottomPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-desktop"},default:uagb_blocks_info.container_global_padding},leftPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-desktop"},default:uagb_blocks_info.container_global_padding},rightPaddingDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-desktop"},default:uagb_blocks_info.container_global_padding},topPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-tablet"}},bottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-tablet"}},leftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-tablet"}},rightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-tablet"}},topPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-padding-mobile"}},bottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-padding-mobile"}},leftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-padding-mobile"}},rightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-padding-mobile"}},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-desktop"}},bottomMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-desktop"}},rightMarginDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-desktop"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-left-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-margin-type-mobile"}},marginLink:{type:"boolean",default:!0},variationSelected:{type:"boolean",default:!1},rowGapDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-desktop"},default:uagb_blocks_info.container_elements_gap},rowGapTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-tablet"}},rowGapMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-row-gap-mobile"}},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type"}},rowGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-tablet"}},rowGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-row-gap-type-mobile"}},columnGapDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-desktop"},default:uagb_blocks_info.container_elements_gap},columnGapTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-tablet"}},columnGapMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-column-gap-mobile"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type"}},columnGapTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-tablet"}},columnGapTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"container-column-gap-type-mobile"}},isPreview:{type:"boolean",default:!1},isBlockRootParent:{type:"boolean",default:!1},bottomType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bottom-type"}},bottomColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-color"},default:"#333"},bottomHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height"}},bottomHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height-tablet"}},bottomHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-height-mobile"}},bottomWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-bottom-width"},default:100},topType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-top-type"}},topColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-color"}},topHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height"}},topHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height-tablet"}},topHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-height-mobile"}},topWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"container-top-width"},default:100},topFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-flip"}},bottomFlip:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-flip"}},topInvert:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-invert"}},bottomInvert:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"container-bottom-invert"}},topContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-top-content-above-shape"}},bottomContentAboveShape:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"container-bottom-content-above-shape"}},widthSetByUser:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-overlay-type"}},overlayOpacity:{type:"number",default:1,UAGCopyPaste:{styleType:"background-overlay-opacity"}},overlayBlendMode:{type:"string",default:"normal",UAGCopyPaste:{styleType:"background-overlay-blend-mode"}},overlayBlendModeTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"background-overlay-blend-mode-tablet"}},overlayBlendModeMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"background-overlay-blend-mode-mobile"}},centralizedPosition:{type:"boolean",default:!1},customPosition:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},backgroundVideoColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"bg-video-color"},default:"#FFFFFF75"},backgroundVideo:{type:"object",UAGCopyPaste:{styleType:"bg-video"}},backgroundVideoOpacity:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"bg-video-opacity"},default:.5},textColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},linkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},linkHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},innerContentCustomWidthTypeTablet:{type:"string",default:"px"},innerContentCustomWidthTypeMobile:{type:"string",default:"px"},widthTypeTablet:{type:"string",default:"%"},widthTypeMobile:{type:"string",default:"%"},minHeightTypeTablet:{type:"string",default:"px"},minHeightTypeMobile:{type:"string",default:"px"},topHeightType:{type:"string",default:"px"},topHeightTypeTablet:{type:"string",default:"px"},topHeightTypeMobile:{type:"string",default:"px"},bottomHeightType:{type:"string",default:"px"},bottomHeightTypeTablet:{type:"string",default:"px"},bottomHeightTypeMobile:{type:"string",default:"px"},overflow:{type:"string",default:"visible"},topDividerWidthType:{type:"string",default:"%"},bottomDividerWidthType:{type:"string",default:"%"},topDividerHeightType:{type:"string",default:"px"},bottomDividerHeightType:{type:"string",default:"px"},equalHeight:{type:"boolean",default:!1},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"gradient-angle"}},gradientOverlayAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-overlay-angle"}},backgroundOverlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-overlay-type"}},backgroundOverlayImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-desktop"}},backgroundOverlayImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-tablet"}},backgroundOverlayImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-overlay-mobile"}},backgroundPositionOverlayDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-overlay-desktop"}},backgroundPositionOverlayTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-overlay-tablet"}},backgroundPositionOverlayMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-overlay-mobile"}},backgroundSizeOverlayDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-overlay-size-desktop"}},backgroundSizeOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-size-tablet"}},backgroundSizeOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-size-mobile"}},backgroundRepeatOverlayDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-desktop"}},backgroundRepeatOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-tablet"}},backgroundRepeatOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-overlay-mobile"}},backgroundAttachmentOverlayDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-desktop"}},backgroundAttachmentOverlayTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-tablet"}},backgroundAttachmentOverlayMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-overlay-mobile"}},backgroundOverlayColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-color"}},backgroundImageOverlayColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-overlay-color"},default:"#FFFFFF75"},backgroundOverlayImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-overlay-image-color"},default:"#FFFFFF75"},backgroundCustomSizeOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-desktop"},default:100},backgroundCustomSizeOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-tablet"}},backgroundCustomSizeOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-overlay-mobile"}},backgroundCustomOverlaySizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-overlay-size-type"}},customOverlayPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-overlay-position-type"}},xPositionOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-desktop"},default:""},xPositionOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-tablet"}},xPositionOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-overlay-mobile"}},xPositionOverlayType:{type:"string",default:"px"},xPositionOverlayTypeTablet:{type:"string",default:"px"},xPositionOverlayTypeMobile:{type:"string",default:"px"},yPositionOverlayDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-desktop"},default:""},yPositionOverlayTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-tablet"}},yPositionOverlayMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-overlay-mobile"}},yPositionOverlayType:{type:"string",default:"px"},yPositionOverlayTypeTablet:{type:"string",default:"px"},yPositionOverlayTypeMobile:{type:"string",default:"px"},gradientOverlayColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-overlay-color-1"}},gradientOverlayColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-overlay-color-2"}},gradientOverlayType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-overlay-color-type"}},selectOverlayGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-overlay-type"}},gradientOverlayLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-overlay-location-1"}},gradientOverlayLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-overlay-location-2"}},...Fc,childrenWidthDesktop:{type:"string",UAGCopyPaste:{styleType:"container-children-width-desktop"},isGBSStyle:!0},childrenWidthTablet:{type:"string",UAGCopyPaste:{styleType:"container-children-width-tablet"},isGBSStyle:!0},childrenWidthMobile:{type:"string",UAGCopyPaste:{styleType:"container-children-width-mobile"},isGBSStyle:!0},UAGAnimationDelayInterval:{type:"number",default:200,UAGCopyPaste:{styleType:"block-animation-delay-interval"}},UAGAnimationDoNotApplyToContainer:{type:"boolean",default:!1},UAGAnimationShowContainerAdvancedSettings:{type:"boolean",default:!1},backgroundVideoFallbackImage:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}}};var Dc=[{attributes:zc,save:function(e){const{block_id:t,htmlTag:a,htmlTagLink:l,contentWidth:i,innerContentWidth:o,isBlockRootParent:n,topType:r,topFlip:s,topContentAboveShape:c,bottomType:u,bottomFlip:p,bottomContentAboveShape:b,backgroundType:d,backgroundVideo:g,topInvert:m,bottomInvert:y}=e.attributes,f="none"!==r&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-top",{"uagb-container__shape-flip":!0===s},{"uagb-container__shape-above-content":!0===c},{"uagb-container__invert":!0===m})},fc[r]),h="none"!==u&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-bottom",{"uagb-container__shape-flip":!0===p},{"uagb-container__shape-above-content":!0===b},{"uagb-container__invert":!0===y}),"data-negative":"false"},fc[u]),v=""+a,_={};"a"===a&&(_.rel="noopener",null!=l&&l.url&&(_.href=null==l?void 0:l.url),null!=l&&l.opensInNewTab&&(_.target="_blank"),null!=l&&l.noFollow&&(_.rel="nofollow noopener"));const T=ge.useBlockProps.save();return React.createElement(v,Hc({id:T.id,className:Be()(T.className,"uagb-block-"+t,n?i+" uagb-is-root-container":"")},_),"video"===d&&React.createElement("div",{className:"uagb-container__video-wrap"},g&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:g.url,type:"video/mp4"}))),f,h,n&&"alignfull"===i&&"alignwide"===o?React.createElement("div",{className:"uagb-container-inner-blocks-wrap"},React.createElement(ge.InnerBlocks.Content,null)):React.createElement(ge.InnerBlocks.Content,null))}},{attributes:Oc,save:function(e){const{block_id:t,htmlTag:a,htmlTagLink:l,contentWidth:i,innerContentWidth:o,isBlockRootParent:n,topType:r,topFlip:s,topContentAboveShape:c,bottomType:u,bottomFlip:p,bottomContentAboveShape:b,backgroundType:d,backgroundVideo:g,topInvert:m,bottomInvert:y}=e.attributes,f="none"!==r&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-top",{"uagb-container__shape-flip":!0===s},{"uagb-container__shape-above-content":!0===c},{"uagb-container__invert":!0===m})},fc[r]),h="none"!==u&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-bottom",{"uagb-container__shape-flip":!0===p},{"uagb-container__shape-above-content":!0===b},{"uagb-container__invert":!0===y}),"data-negative":"false"},fc[u]),v=""+a,_={};"a"===a&&(_.rel="noopener",null!=l&&l.url&&(_.href=null==l?void 0:l.url),null!=l&&l.opensInNewTab&&(_.target="_blank"),null!=l&&l.noFollow&&(_.rel="nofollow noopener"));const T=ge.useBlockProps.save();return React.createElement(v,Lc({id:T.id,className:Be()(T.className,"uagb-block-"+t,n?i+" uagb-is-root-container":"")},_),f,"video"===d&&React.createElement("div",{className:"uagb-container__video-wrap"},g&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:g.url,type:"video/mp4"}))),n&&"alignfull"===i&&"alignwide"===o?React.createElement("div",{className:"uagb-container-inner-blocks-wrap"},React.createElement(ge.InnerBlocks.Content,null)):React.createElement(ge.InnerBlocks.Content,null),h)}},{attributes:zc,save:function(e){const{block_id:t,htmlTag:a,htmlTagLink:l,contentWidth:i,innerContentWidth:o,isBlockRootParent:n,topType:r,topFlip:s,topContentAboveShape:c,bottomType:u,bottomFlip:p,bottomContentAboveShape:b,backgroundType:d,backgroundVideo:g,topInvert:m,bottomInvert:y}=e.attributes,f="none"!==r&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-top",{"uagb-container__shape-flip":!0===s},{"uagb-container__shape-above-content":!0===c},{"uagb-container__invert":!0===m})},fc[r]),h="none"!==u&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-bottom",{"uagb-container__shape-flip":!0===p},{"uagb-container__shape-above-content":!0===b},{"uagb-container__invert":!0===y}),"data-negative":"false"},fc[u]),v=uagb_blocks_info.spectra_pro_status,_="a"===a?"div":""+a,T={};"a"===a&&(T.rel="noopener",v?null!=l&&l.url&&(T.href=null==l?void 0:l.url):(null!=l&&l.url&&(T.href=null==l?void 0:l.url),null!=l&&l.opensInNewTab&&(T.target="_blank"),null!=l&&l.noFollow&&(T.rel="nofollow noopener")));const C=ge.useBlockProps.save();return React.createElement(React.Fragment,null,React.createElement(_,{id:C.id,className:Be()(C.className,"uagb-block-"+t,n?i+" uagb-is-root-container":"")},"video"===d&&React.createElement("div",{className:"uagb-container__video-wrap"},g&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:g.url,type:"video/mp4"}))),f,h,n&&"alignfull"===i&&"alignwide"===o?React.createElement("div",{className:"uagb-container-inner-blocks-wrap"},React.createElement(ge.InnerBlocks.Content,null)):React.createElement(ge.InnerBlocks.Content,null),"a"===a&&void 0!==T.href&&React.createElement("a",jc({className:"spectra-container-link-overlay"},T)," ")))}}],Nc=function(e){let t;const a={black:"#000000","cyan-bluish-gray":"#abb8c3",white:"#ffffff","pale-pink":"#f78da7","luminous-vivid-orange":"#ff6900","luminous-vivid-amber":"#fcb900","light-green-cyan":"#7bdcb5","vivid-green-cyan":"#00d084","pale-cyan-blue":"#8ed1fc","vivid-cyan-blue":"#0693e3","vivid-purple":"#9b51e0","vivid-red":"#cf2e2e"};return t=void 0!==a[null==e?void 0:e.toLowerCase()]?a[null==e?void 0:e.toLowerCase()]:pl(`var(--wp--preset--color--${e})`),t};function Ic(e){switch(e){case"left top":return{x:0,y:0};case"center top":return{x:.5,y:0};case"right top":return{x:1,y:0};case"left center":return{x:0,y:.5};case"center center":return{x:.5,y:.5};case"right center":return{x:1,y:.5};case"left bottom":return{x:0,y:1};case"center bottom":return{x:.5,y:1};case"right bottom":return{x:1,y:1};default:return{x:.5,y:.5}}}var Vc={from:[{type:"block",blocks:["core/group"],priority:1,transform:(e,t)=>{var a,l,i,o,n;const{align:r,backgroundColor:s,style:c,gradient:u}=e,p=r?"align"+r:"default",b=s||(null!=c&&null!==(a=c.color)&&void 0!==a&&a.background?null==c||null===(l=c.color)||void 0===l?void 0:l.background:null),d=u||null!=c&&null!==(i=c.color)&&void 0!==i&&i.gradient?"gradient":b||null!=c&&null!==(o=c.color)&&void 0!==o&&o.background?"color":"none";return Object(be.createBlock)("uagb/container",{contentWidth:p,backgroundType:d,backgroundColor:b,gradientValue:u||(null==c||null===(n=c.color)||void 0===n?void 0:n.gradient),variationSelected:!0},t)}},{type:"block",blocks:["core/columns"],priority:1,transform:(e,t)=>{var a,l,i,o,n;const{align:r,backgroundColor:s,style:c,gradient:u,isStackedOnMobile:p}=e,b=r?"align"+r:"default",d=s||(null!=c&&null!==(a=c.color)&&void 0!==a&&a.background?null==c||null===(l=c.color)||void 0===l?void 0:l.background:null),g=u||null!=c&&null!==(i=c.color)&&void 0!==i&&i.gradient?"gradient":d||null!=c&&null!==(o=c.color)&&void 0!==o&&o.background?"color":"none",m=[],y=100/t.length;return t.map(e=>{var t,a,l,i,o,n,r,s,p,b,d,g,f,h,v,_,T,C;const S=null!=e&&null!==(t=e.attributes)&&void 0!==t&&t.backgroundColor?null==e||null===(a=e.attributes)||void 0===a?void 0:a.backgroundColor:null!=e&&null!==(l=e.attributes)&&void 0!==l&&null!==(i=l.style)&&void 0!==i&&null!==(o=i.color)&&void 0!==o&&o.background?null==e||null===(n=e.attributes)||void 0===n||null===(r=n.style)||void 0===r||null===(s=r.color)||void 0===s?void 0:s.background:null,w=null!=e&&null!==(p=e.attributes)&&void 0!==p&&p.gradient||null!=e&&null!==(b=e.attributes)&&void 0!==b&&null!==(d=b.style)&&void 0!==d&&null!==(g=d.color)&&void 0!==g&&g.gradient?"gradient":S||null!=e&&null!==(f=e.attributes)&&void 0!==f&&null!==(h=f.style)&&void 0!==h&&null!==(v=h.color)&&void 0!==v&&v.background?"color":"none",k=null!=e&&null!==(_=e.attributes)&&void 0!==_&&_.width?null==e||null===(T=e.attributes)||void 0===T?void 0:T.width:y;return m.push(["uagb/container",{widthDesktop:k,backgroundTypeChild:w,backgroundColor:S,gradientValue:u||(null==c||null===(C=c.color)||void 0===C?void 0:C.gradient)},null==e?void 0:e.innerBlocks]),e}),Object(be.createBlock)("uagb/container",{contentWidth:b,backgroundType:g,backgroundColor:d,gradientValue:u||(null==c||null===(n=c.color)||void 0===n?void 0:n.gradient),directionDesktop:"row",directionTablet:"row",directionMobile:p?"column":"row",variationSelected:!0},Object(be.createBlocksFromInnerBlocksTemplate)(m))}},{type:"block",blocks:["uagb/section"],priority:1,transform:(e,t)=>{const{backgroundType:a,backgroundColor:l,innerWidth:i,innerWidthType:o,contentWidth:n,topPaddingTablet:r,bottomPaddingTablet:s,leftPaddingTablet:c,rightPaddingTablet:u,topMarginTablet:p,bottomMarginTablet:b,leftMarginTablet:d,rightMarginTablet:g,topPaddingMobile:m,bottomPaddingMobile:y,leftPaddingMobile:f,rightPaddingMobile:h,topMarginMobile:v,bottomMarginMobile:_,leftMarginMobile:T,rightMarginMobile:C,boxShadowColor:S,boxShadowHOffset:w,boxShadowVOffset:k,boxShadowBlur:P,boxShadowSpread:x,boxShadowPosition:A,gradientValue:G,overallBorderStyle:M,overallBorderColor:R,overallBorderHColor:B,overallBorderTopLeftRadius:U,overallBorderTopRightRadius:E,overallBorderBottomLeftRadius:O,overallBorderBottomRightRadius:L,overallBorderTopWidth:H,overallBorderRightWidth:j,overallBorderLeftWidth:F,overallBorderBottomWidth:z,topMargin:D,bottomMargin:N,leftMargin:I,rightMargin:V,leftPadding:W,rightPadding:q,topPadding:Z,bottomPadding:$,backgroundImage:Y,backgroundSize:K,backgroundRepeat:J,backgroundAttachment:X,backgroundVideoColor:Q,backgroundVideo:ee,overlayType:te,backgroundImageColor:ae,tag:le,backgroundPosition:ie}=e,oe="full_width"===n?"alignfull":"alignwide";let ne=null,re=null;return"full_width"===n&&(ne="px"===o?i:1200,re="px"===o?"alignwide":"alignfull"),Object(be.createBlock)("uagb/container",{contentWidth:oe,backgroundType:a,backgroundColor:l,gradientValue:G,innerContentCustomWidthDesktop:ne||1200,innerContentWidth:re||"alignfull",containerBorderStyle:M,containerBorderTopLeftRadius:U,containerBorderTopRightRadius:E,containerBorderBottomLeftRadius:O,containerBorderBottomRightRadius:L,containerBorderTopWidth:H,containerBorderRightWidth:j,containerBorderLeftWidth:F,containerBorderBottomWidth:z,containerBorderColor:R,containerBorderHColor:B,boxShadowColor:S,boxShadowHOffset:w,boxShadowVOffset:k,boxShadowBlur:P,boxShadowSpread:x,boxShadowPosition:A,topMarginDesktop:D,bottomMarginDesktop:N,leftMarginDesktop:I,rightMarginDesktop:V,topMarginTablet:p,bottomMarginTablet:b,leftMarginTablet:d,rightMarginTablet:g,topMarginMobile:v,bottomMarginMobile:_,leftMarginMobile:T,rightMarginMobile:C,topPaddingMobile:m,bottomPaddingMobile:y,leftPaddingMobile:f,rightPaddingMobile:h,topPaddingTablet:r,bottomPaddingTablet:s,leftPaddingTablet:c,rightPaddingTablet:u,leftPaddingDesktop:W,rightPaddingDesktop:q,topPaddingDesktop:Z,bottomPaddingDesktop:$,backgroundImageDesktop:Y,backgroundSizeDesktop:K,backgroundRepeatDesktop:J,backgroundAttachmentDesktop:X,backgroundVideoColor:Q||"#00000011",backgroundVideo:ee,overlayType:"color"===te&&ae?te:"gradient"===te?"gradient":"none",backgroundImageColor:ae||"#00000000",variationSelected:!0,htmlTag:le,backgroundPositionDesktop:Ic(ie)},t)}},{type:"block",blocks:["uagb/columns"],priority:1,transform:(e,t)=>{const{backgroundType:a,backgroundColor:l,widthType:i,contentWidth:o,borderRadius:n,topPaddingTablet:r,bottomPaddingTablet:s,leftPaddingTablet:c,rightPaddingTablet:u,topMarginTablet:p,bottomMarginTablet:b,leftMarginTablet:d,rightMarginTablet:g,topPaddingMobile:m,bottomPaddingMobile:y,leftPaddingMobile:f,rightPaddingMobile:h,topMarginMobile:v,bottomMarginMobile:_,leftMarginMobile:T,rightMarginMobile:C,boxShadowColor:S,boxShadowHOffset:w,boxShadowVOffset:k,boxShadowBlur:P,boxShadowSpread:x,boxShadowPosition:A,gradientValue:G,borderStyle:M,borderWidth:R,borderColor:B,borderHoverColor:U,topMarginDesktop:E,bottomMarginDesktop:O,leftMarginDesktop:L,rightMarginDesktop:H,leftPadding:j,rightPadding:F,topPadding:z,bottomPadding:D,stack:N,align:I,width:V,columns:W,backgroundImage:q,backgroundPosition:Z,backgroundSize:$,backgroundRepeat:Y,backgroundAttachment:K,backgroundVideoColor:J,backgroundVideo:X,backgroundImageColor:Q,tag:ee,columnsBorderTopLeftRadius:te,columnsBorderTopRightRadius:ae,columnsBorderBottomLeftRadius:le,columnsBorderBottomRightRadius:ie,columnsBorderStyle:oe,columnsBorderColor:ne,columnsBorderHColor:re,columnsBorderTopWidth:se,columnsBorderBottomWidth:ce,columnsBorderLeftWidth:ue,columnsBorderRightWidth:pe,topType:de,topColor:ge,topWidth:me,topHeight:ye,topHeightTablet:fe,topHeightMobile:he,topFlip:ve,topContentAboveShape:_e,bottomType:Te,bottomColor:Ce,bottomWidth:Se,bottomHeight:we,bottomHeightTablet:ke,bottomHeightMobile:Pe,bottomFlip:xe,bottomContentAboveShape:Ae,reverseMobile:Ge,reverseTablet:Me}=e,Re="full"===I?"alignfull":"alignwide";let Be=null,Ue=null;"full"===I&&(Be="custom"===o&&"px"===i?V:1200,Ue="custom"===o&&"px"===i?"alignwide":"alignfull");const Ee=[],Oe=100/W;t.map(e=>{const{backgroundType:t,backgroundColor:a,borderRadius:l,topPaddingTablet:i,bottomPaddingTablet:o,leftPaddingTablet:n,rightPaddingTablet:r,topMarginTablet:s,bottomMarginTablet:c,leftMarginTablet:u,rightMarginTablet:p,topPaddingMobile:b,bottomPaddingMobile:d,leftPaddingMobile:g,rightPaddingMobile:m,topMarginMobile:y,bottomMarginMobile:f,leftMarginMobile:h,rightMarginMobile:v,gradientValue:_,borderStyle:T,borderWidth:C,borderColor:S,columnBorderHColor:w,borderHoverColor:k,topMargin:P,bottomMargin:x,leftMargin:A,rightMargin:G,leftPadding:M,rightPadding:R,topPadding:B,bottomPadding:U,colWidth:E,columnBorderTopLeftRadius:O,columnBorderTopRightRadius:L,columnBorderBottomLeftRadius:H,columnBorderBottomRightRadius:j,columnBorderStyle:F,columnBorderColor:z,columnBorderTopWidth:D,columnBorderBottomWidth:N,columnBorderLeftWidth:I,columnBorderRightWidth:V,backgroundImage:W,backgroundPosition:q,backgroundAttachment:Z,backgroundRepeat:$,backgroundSize:Y,backgroundImageColor:K}=null==e?void 0:e.attributes,J=E||Oe;return Ee.push(["uagb/container",{widthDesktop:J,backgroundType:t,backgroundColor:a,borderRadius:l,topPaddingTablet:i,bottomPaddingTablet:o,leftPaddingTablet:n,rightPaddingTablet:r,topMarginTablet:s,bottomMarginTablet:c,leftMarginTablet:u,rightMarginTablet:p,topPaddingMobile:b,bottomPaddingMobile:d,leftPaddingMobile:g,rightPaddingMobile:m,topMarginMobile:y,bottomMarginMobile:f,leftMarginMobile:h,rightMarginMobile:v,gradientValue:_,borderStyle:T,borderWidth:C,borderColor:S,borderHoverColor:k,topMarginDesktop:P,bottomMarginDesktop:x,leftMarginDesktop:A,rightMarginDesktop:G,leftPaddingDesktop:M,rightPaddingDesktop:R,topPaddingDesktop:B,bottomPaddingDesktop:U,containerBorderTopLeftRadius:l||O,containerBorderTopRightRadius:l||L,containerBorderBottomLeftRadius:l||H,containerBorderBottomRightRadius:l||j,containerBorderStyle:T||F,containerBorderColor:S||z,containerBorderHColor:w,containerBorderTopWidth:C||D,containerBorderBottomWidth:C||N,containerBorderLeftWidth:C||I,containerBorderRightWidth:C||V,backgroundImageDesktop:W,backgroundPositionDesktop:Ic(q),backgroundAttachmentDesktop:Z,backgroundRepeatDesktop:$,backgroundSizeDesktop:Y,backgroundImageColor:K,overlayType:K?"color":"none",alignItemsDesktop:"flex-start"},null==e?void 0:e.innerBlocks]),e});const Le=Me||Ge?"column-reverse":"column",He=Me||Ge?"row-reverse":"row",je=Me?"column-reverse":"column",Fe=Me?"row-reverse":"row";return Object(be.createBlock)("uagb/container",{contentWidth:Re,backgroundType:a,backgroundColor:l,gradientValue:G,innerContentCustomWidthDesktop:Be||1200,innerContentWidth:Ue||"alignfull",borderStyle:M,borderWidth:R,borderColor:B,borderHoverColor:U,borderRadius:n,boxShadowColor:S,boxShadowHOffset:w,boxShadowVOffset:k,boxShadowBlur:P,boxShadowSpread:x,boxShadowPosition:A,topMarginDesktop:E,bottomMarginDesktop:O,leftMarginDesktop:L,rightMarginDesktop:H,topMarginTablet:p,bottomMarginTablet:b,leftMarginTablet:d,rightMarginTablet:g,topMarginMobile:v,bottomMarginMobile:_,leftMarginMobile:T,rightMarginMobile:C,topPaddingMobile:m,bottomPaddingMobile:y,leftPaddingMobile:f,rightPaddingMobile:h,topPaddingTablet:r,bottomPaddingTablet:s,leftPaddingTablet:c,rightPaddingTablet:u,leftPaddingDesktop:j,rightPaddingDesktop:F,topPaddingDesktop:z,bottomPaddingDesktop:D,backgroundImageDesktop:q,backgroundPositionDesktop:Ic(Z),backgroundSizeDesktop:$,backgroundRepeatDesktop:Y,backgroundAttachmentDesktop:K,backgroundVideoColor:J||"#00000011",backgroundVideo:X,overlayType:Q?"color":"none",backgroundImageColor:Q||"#00000000",directionDesktop:"row",directionTablet:"tablet"===N?je:Fe,directionMobile:"mobile"===N?Le:He,variationSelected:!0,columnGapDesktop:0,containerBorderTopLeftRadius:n||te,containerBorderTopRightRadius:n||ae,containerBorderBottomLeftRadius:n||le,containerBorderBottomRightRadius:n||ie,containerBorderStyle:M||oe,containerBorderColor:B||ne,containerBorderHColor:re,containerBorderTopWidth:R||se,containerBorderBottomWidth:R||ce,containerBorderLeftWidth:R||ue,containerBorderRightWidth:R||pe,htmlTag:ee,topType:de,topColor:ge,topWidth:me,topHeight:ye,topHeightTablet:fe,topHeightMobile:he,topFlip:ve,topContentAboveShape:_e,bottomType:Te,bottomColor:Ce,bottomWidth:Se,bottomHeight:we,bottomHeightTablet:ke,bottomHeightMobile:Pe,bottomFlip:xe,bottomContentAboveShape:Ae},Object(be.createBlocksFromInnerBlocksTemplate)(Ee))}},{type:"block",blocks:["core/cover"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,W,Z,$,Y,K,J,X,Q,ee,te,ae,le,ie,oe,ne,re,se,ce,ue,pe,de,ge,me,ye,fe,he,ve,_e,Te,Ce,Se,we,ke,Pe,xe,Ae,Ge,Me,Re,Be,Ue,Ee,Oe,Le,He,je,Fe,ze,De,Ne,Ie,Ve,We,qe,Ze,$e,Ye,Ke,Je,Xe,Qe,et,tt,at,lt,it,ot,nt,rt,st,ct,ut,pt,bt,dt,gt,mt,yt,ft,ht,vt,_t,Tt,Ct;const St={"xxx-small":"4px","xx-small":"8px","x-small":"16px",small:"28px",medium:"36px",large:"56px","x-large":"72px","xx-large":"100px"},wt=q((null==e||null===(a=e.style)||void 0===a||null===(l=a.spacing)||void 0===l||null===(i=l.padding)||void 0===i?void 0:i.top)||""),kt=q((null==e||null===(o=e.style)||void 0===o||null===(n=o.spacing)||void 0===n||null===(r=n.padding)||void 0===r?void 0:r.right)||""),Pt=q((null==e||null===(s=e.style)||void 0===s||null===(c=s.spacing)||void 0===c||null===(u=c.margin)||void 0===u?void 0:u.top)||""),xt=wt&&St.hasOwnProperty(wt),At=kt&&St.hasOwnProperty(kt),Gt=Pt&&St.hasOwnProperty(Pt),Mt=xt?N(St[wt]):"",Rt=At?N(St[kt]):"",Bt=Gt?N(St[Pt]):"";let Ut="color";null!=e&&e.url?Ut="image":null!=e&&e.overlayColor||null!=e&&e.customOverlayColor?Ut="color":null!=e&&e.customGradient&&(Ut="gradient");let Et="color";null!=e&&e.overlayColor||null!=e&&e.customOverlayColor?Et="color":null!=e&&e.customGradient&&(Et="gradient");const Ot=V("object"!=typeof(null==e||null===(p=e.style)||void 0===p||null===(b=p.border)||void 0===b?void 0:b.radius)&&(null==e||null===(d=e.style)||void 0===d||null===(g=d.border)||void 0===g?void 0:g.radius)||(null==e||null===(m=e.style)||void 0===m||null===(y=m.border)||void 0===y||null===(f=y.radius)||void 0===f?void 0:f.topRight)||(null==e||null===(h=e.style)||void 0===h||null===(v=h.border)||void 0===v||null===(_=v.radius)||void 0===_?void 0:_.topLeft)||(null==e||null===(T=e.style)||void 0===T||null===(C=T.border)||void 0===C||null===(S=C.radius)||void 0===S?void 0:S.bottomRight)||(null==e||null===(w=e.style)||void 0===w||null===(k=w.border)||void 0===k||null===(P=k.radius)||void 0===P?void 0:P.bottomLeft)||""),Lt=(null==e||null===(x=e.style)||void 0===x||null===(A=x.border)||void 0===A?void 0:A.color)||Nc((null==e?void 0:e.borderColor)||"")||(null==e||null===(G=e.style)||void 0===G||null===(M=G.border)||void 0===M||null===(R=M.top)||void 0===R?void 0:R.color)||Nc((null==e||null===(B=e.style)||void 0===B||null===(U=B.border)||void 0===U||null===(E=U.top)||void 0===E?void 0:E.color)||""),Ht=0!==e.dimRatio?e.dimRatio/100:0,jt={contentWidth:"alignwide",widthDesktop:1200,minHeightDesktop:void 0!==(null==e?void 0:e.minHeight)?e.minHeight:350,minHeightType:/^(px|vh)$/.test(null==e?void 0:e.minHeightUnit)?null==e?void 0:e.minHeightUnit:"px",widthType:"px",variationSelected:!0,backgroundImageDesktop:{id:null==e?void 0:e.id,url:null==e?void 0:e.url},backgroundType:Ut,backgroundPositionDesktop:(null==e?void 0:e.focalPoint)||{x:.5,y:.5},gradientValue:(null==e?void 0:e.customGradient)||"",backgroundColor:(null==e?void 0:e.customOverlayColor)||Nc(null==e?void 0:e.overlayColor),overlayOpacity:Ht,backgroundOverlayImageColor:(null==e?void 0:e.customOverlayColor)||Nc(null==e?void 0:e.overlayColor)||"",backgroundImageColor:(null==e?void 0:e.customOverlayColor)||Nc(null==e?void 0:e.overlayColor)||"#000001",backgroundRepeatDesktop:null!=e&&e.isRepeated?"repeat":"no-repeat",backgroundAttachmentDesktop:null!=e&&e.hasParallax?"fixed":"scroll",overlayType:Et,topPaddingDesktop:xt?Mt:N((null==e||null===(O=e.style)||void 0===O||null===(L=O.spacing)||void 0===L||null===(H=L.padding)||void 0===H?void 0:H.top)||""),bottomPaddingDesktop:xt?Mt:N((null==e||null===(j=e.style)||void 0===j||null===(F=j.spacing)||void 0===F||null===(z=F.padding)||void 0===z?void 0:z.bottom)||""),leftPaddingDesktop:At?Rt:N((null==e||null===(D=e.style)||void 0===D||null===(W=D.spacing)||void 0===W||null===(Z=W.padding)||void 0===Z?void 0:Z.left)||""),rightPaddingDesktop:At?Rt:N((null==e||null===($=e.style)||void 0===$||null===(Y=$.spacing)||void 0===Y||null===(K=Y.padding)||void 0===K?void 0:K.right)||""),topMarginDesktop:Gt?Bt:N((null==e||null===(J=e.style)||void 0===J||null===(X=J.spacing)||void 0===X||null===(Q=X.margin)||void 0===Q?void 0:Q.top)||""),bottomMarginDesktop:Gt?Bt:N((null==e||null===(ee=e.style)||void 0===ee||null===(te=ee.spacing)||void 0===te||null===(ae=te.margin)||void 0===ae?void 0:ae.bottom)||""),marginType:Gt?"px":I((null==e||null===(le=e.style)||void 0===le||null===(ie=le.spacing)||void 0===ie||null===(oe=ie.margin)||void 0===oe?void 0:oe.top)||"px"),paddingType:Rt?"px":I((null==e||null===(ne=e.style)||void 0===ne||null===(re=ne.spacing)||void 0===re||null===(se=re.padding)||void 0===se?void 0:se.top)||"px"),containerBorderTopWidth:N((null==e||null===(ce=e.style)||void 0===ce||null===(ue=ce.border)||void 0===ue?void 0:ue.width)||(null==e||null===(pe=e.style)||void 0===pe||null===(de=pe.border)||void 0===de||null===(ge=de.top)||void 0===ge?void 0:ge.width)||""),containerBorderBottomWidth:N((null==e||null===(me=e.style)||void 0===me||null===(ye=me.border)||void 0===ye?void 0:ye.width)||(null==e||null===(fe=e.style)||void 0===fe||null===(he=fe.border)||void 0===he||null===(ve=he.bottom)||void 0===ve?void 0:ve.width)||""),containerBorderLeftWidth:N((null==e||null===(_e=e.style)||void 0===_e||null===(Te=_e.border)||void 0===Te?void 0:Te.width)||(null==e||null===(Ce=e.style)||void 0===Ce||null===(Se=Ce.border)||void 0===Se||null===(we=Se.left)||void 0===we?void 0:we.width)||""),containerBorderRightWidth:N((null==e||null===(ke=e.style)||void 0===ke||null===(Pe=ke.border)||void 0===Pe?void 0:Pe.width)||(null==e||null===(xe=e.style)||void 0===xe||null===(Ae=xe.border)||void 0===Ae||null===(Ge=Ae.right)||void 0===Ge?void 0:Ge.width)||""),borderRadius:N("object"!=typeof(null==e||null===(Me=e.style)||void 0===Me||null===(Re=Me.border)||void 0===Re?void 0:Re.radius)&&(null==e||null===(Be=e.style)||void 0===Be||null===(Ue=Be.border)||void 0===Ue?void 0:Ue.radius)||(null==e||null===(Ee=e.style)||void 0===Ee||null===(Oe=Ee.border)||void 0===Oe||null===(Le=Oe.radius)||void 0===Le?void 0:Le.topRight)||""),borderColor:Lt,borderStyle:(null==e||null===(He=e.style)||void 0===He||null===(je=He.border)||void 0===je?void 0:je.style)||(null!=e&&null!==(Fe=e.style)&&void 0!==Fe&&null!==(ze=Fe.border)&&void 0!==ze&&ze.width||null!=e&&null!==(De=e.style)&&void 0!==De&&null!==(Ne=De.border)&&void 0!==Ne&&null!==(Ie=Ne.top)&&void 0!==Ie&&Ie.width?(null==e||null===(Ve=e.style)||void 0===Ve||null===(We=Ve.border)||void 0===We||null===(qe=We.top)||void 0===qe?void 0:qe.style)||(null==e||null===(Ze=e.style)||void 0===Ze||null===($e=Ze.border)||void 0===$e?void 0:$e.style)||"solid":"none"),containerBorderBottomLeftRadius:N("object"!=typeof(null==e||null===(Ye=e.style)||void 0===Ye||null===(Ke=Ye.border)||void 0===Ke?void 0:Ke.radius)&&(null==e||null===(Je=e.style)||void 0===Je||null===(Xe=Je.border)||void 0===Xe?void 0:Xe.radius)||(null==e||null===(Qe=e.style)||void 0===Qe||null===(et=Qe.border)||void 0===et||null===(tt=et.radius)||void 0===tt?void 0:tt.bottomLeft)||""),containerBorderBottomRightRadius:N("object"!=typeof(null==e||null===(at=e.style)||void 0===at||null===(lt=at.border)||void 0===lt?void 0:lt.radius)&&(null==e||null===(it=e.style)||void 0===it||null===(ot=it.border)||void 0===ot?void 0:ot.radius)||(null==e||null===(nt=e.style)||void 0===nt||null===(rt=nt.border)||void 0===rt||null===(st=rt.radius)||void 0===st?void 0:st.bottomRight)||""),containerBorderTopLeftRadius:N("object"!=typeof(null==e||null===(ct=e.style)||void 0===ct||null===(ut=ct.border)||void 0===ut?void 0:ut.radius)&&(null==e||null===(pt=e.style)||void 0===pt||null===(bt=pt.border)||void 0===bt?void 0:bt.radius)||(null==e||null===(dt=e.style)||void 0===dt||null===(gt=dt.border)||void 0===gt||null===(mt=gt.radius)||void 0===mt?void 0:mt.topLeft)||""),containerBorderTopRightRadius:N("object"!=typeof(null==e||null===(yt=e.style)||void 0===yt||null===(ft=yt.border)||void 0===ft?void 0:ft.radius)&&(null==e||null===(ht=e.style)||void 0===ht||null===(vt=ht.border)||void 0===vt?void 0:vt.radius)||(null==e||null===(_t=e.style)||void 0===_t||null===(Tt=_t.border)||void 0===Tt||null===(Ct=Tt.radius)||void 0===Ct?void 0:Ct.topRight)||""),containerBorderRadiusUnit:Ot};return Object(be.createBlock)("uagb/container",jt,t)}}]};let Wc={};function qc(){return(qc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function Zc(e){const t=le(),{sizeText:a,size:l,min:i,type:o,typeTablet:n,typeMobile:r,setAttributes:s,sizeLabel:c,sizeTabletText:u,sizeTablet:p,sizeTabletLabel:b,sizeMobileText:d,sizeMobile:g,sizeMobileLabel:m}=e,y={};return y.Desktop=React.createElement(React.Fragment,null,React.createElement(Qa,qc({},e,{label:a,value:l.value||"",min:i,max:200,unit:o,responsive:!0,setAttributes:s,data:{value:l.value,label:c},step:null==e?void 0:e.step}))),y.Tablet=React.createElement(React.Fragment,null,React.createElement(Qa,qc({},e,{label:u,value:p.value,min:i,max:200,unit:n||o,responsive:!0,setAttributes:s,data:{value:p.value,label:b},step:null!=e&&e.stepTablet?null==e?void 0:e.stepTablet:null==e?void 0:e.step}))),y.Mobile=React.createElement(React.Fragment,null,React.createElement(Qa,qc({},e,{label:d,value:g.value,min:i,max:200,unit:r||o,responsive:!0,setAttributes:s,data:{value:g.value,label:m},step:null!=e&&e.stepMobile?null==e?void 0:e.stepMobile:null==e?void 0:e.step}))),React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-responsive-control-inner"},y[t]?y[t]:y.Desktop))}Wc=Object(j.applyFilters)("uagb/container",ws(Wc)),Object(be.registerBlockType)("uagb/container",{...Wc,apiVersion:2,title:Object(r.__)("Container","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create beautiful layouts with flexbox powered container block.","ultimate-addons-for-gutenberg"),icon:se.container,keywords:[Object(r.__)("container","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg"),Object(r.__)("flex","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:va,category:uagb_blocks_info.category,variations:Gc,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"container"}):React.createElement(Bc,e),save:function(e){const{block_id:t,htmlTag:a,htmlTagLink:l,contentWidth:i,innerContentWidth:o,isBlockRootParent:n,topType:r,topFlip:s,topContentAboveShape:c,bottomType:u,bottomFlip:p,bottomContentAboveShape:b,backgroundType:d,backgroundVideo:g,topInvert:m,bottomInvert:y,linkTarget:f}=e.attributes,h="none"!==r&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-top",{"uagb-container__shape-flip":!0===s},{"uagb-container__shape-above-content":!0===c},{"uagb-container__invert":!0===m})},fc[r]),v="none"!==u&&React.createElement("div",{className:Be()("uagb-container__shape","uagb-container__shape-bottom",{"uagb-container__shape-flip":!0===p},{"uagb-container__shape-above-content":!0===b},{"uagb-container__invert":!0===y}),"data-negative":"false"},fc[u]),_=uagb_blocks_info.spectra_pro_status,T="a"===a?"div":""+a,C={};"a"===a&&(C.rel="noopener",_?(f&&(C.target="_blank"),null!=l&&l.url?C.href=null==l?void 0:l.url:!l||null!=l&&l.url||(C.href=l)):(null!=l&&l.url&&(C.href=null==l?void 0:l.url),null!=l&&l.opensInNewTab&&(C.target="_blank"),null!=l&&l.noFollow&&(C.rel="nofollow noopener")));const S=ge.useBlockProps.save();return React.createElement(React.Fragment,null,React.createElement(T,{id:S.id,className:Be()(S.className,"uagb-block-"+t,n?i+" uagb-is-root-container":"")},"video"===d&&React.createElement("div",{className:"uagb-container__video-wrap"},g&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:g.url,type:"video/mp4"}))),h,v,n&&"alignfull"===i&&"alignwide"===o?React.createElement("div",{className:"uagb-container-inner-blocks-wrap"},React.createElement(ge.InnerBlocks.Content,null)):React.createElement(ge.InnerBlocks.Content,null),"a"===a&&void 0!==C.href&&React.createElement("a",Uc({className:"spectra-container-link-overlay"},C)," ")))},deprecated:Dc,transforms:Vc});var $c={ABeeZee:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"ADLaM Display":{v:["regular"],subset:["adlam","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"AR One Sans":{v:["regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},Abel:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Abhaya Libre":{v:["regular","500","600","700","800"],subset:["latin","latin-ext","sinhala"],weight:["Default","400","500","600","700","800"],i:["normal"]},Aboreto:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Abril Fatface":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Abyssinica SIL":{v:["regular"],subset:["ethiopic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Aclonica:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Acme:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Actor:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Adamina:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Advent Pro":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Afacad:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Afacad Flux":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Agbalumo:{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Agdasima:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Aguafina Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Akatab:{v:["regular","500","600","700","800","900"],subset:["latin","latin-ext","tifinagh"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},"Akaya Kanadaka":{v:["regular"],subset:["kannada","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Akaya Telivigala":{v:["regular"],subset:["latin","latin-ext","telugu"],weight:["Default","400"],i:["normal"]},Akronim:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Akshar:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Aladin:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Alata:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Alatsi:{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Albert Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Aldrich:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Alef:{v:["regular","700"],subset:["hebrew","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Alegreya:{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Alegreya SC":{v:["regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","700","800","900"],i:["normal","italic"]},"Alegreya Sans":{v:["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","300","400","500","700","800","900"],i:["normal","italic"]},"Alegreya Sans SC":{v:["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","300","400","500","700","800","900"],i:["normal","italic"]},Aleo:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Alex Brush":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Alexandria:{v:["100","200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Alfa Slab One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Alice:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Alike:{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Alike Angular":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Alkalami:{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Alkatra:{v:["regular","500","600","700"],subset:["bengali","devanagari","latin","latin-ext","oriya"],weight:["Default","400","500","600","700"],i:["normal"]},Allan:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Allerta:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Allerta Stencil":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Allison:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Allura:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Almarai:{v:["300","regular","700","800"],subset:["arabic","latin"],weight:["Default","300","400","700","800"],i:["normal"]},Almendra:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Almendra Display":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Almendra SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Alumni Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Alumni Sans Collegiate One":{v:["regular","italic"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},"Alumni Sans Inline One":{v:["regular","italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},"Alumni Sans Pinstripe":{v:["regular","italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},Amarante:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Amaranth:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},"Amatic SC":{v:["regular","700"],subset:["cyrillic","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Amethysta:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Amiko:{v:["regular","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","600","700"],i:["normal"]},Amiri:{v:["regular","italic","700","700italic"],subset:["arabic","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Amiri Quran":{v:["regular"],subset:["arabic","latin"],weight:["Default","400"],i:["normal"]},Amita:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Anaheim:{v:["regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Andada Pro":{v:["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},Andika:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Anek Bangla":{v:["100","200","300","regular","500","600","700","800"],subset:["bengali","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Devanagari":{v:["100","200","300","regular","500","600","700","800"],subset:["devanagari","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Gujarati":{v:["100","200","300","regular","500","600","700","800"],subset:["gujarati","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Gurmukhi":{v:["100","200","300","regular","500","600","700","800"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Kannada":{v:["100","200","300","regular","500","600","700","800"],subset:["kannada","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Latin":{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Malayalam":{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","malayalam"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Odia":{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","oriya"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Tamil":{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","tamil"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Anek Telugu":{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","telugu"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},Angkor:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Annapurna SIL":{v:["regular","700"],subset:["devanagari","latin","latin-ext","math","symbols"],weight:["Default","400","700"],i:["normal"]},"Annie Use Your Telescope":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Anonymous Pro":{v:["regular","italic","700","700italic"],subset:["cyrillic","greek","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Anta:{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Antic:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Antic Didone":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Antic Slab":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Anton:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Anton SC":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Antonio:{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},Anuphan:{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},Anybody:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Aoboshi One":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Arapey:{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},Arbutus:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Arbutus Slab":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Architects Daughter":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Archivo:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Archivo Black":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Archivo Narrow":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Are You Serious":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Aref Ruqaa":{v:["regular","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Aref Ruqaa Ink":{v:["regular","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Arima:{v:["100","200","300","regular","500","600","700"],subset:["greek","greek-ext","latin","latin-ext","malayalam","tamil","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},Arimo:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Arizonia:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Armata:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Arsenal:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Arsenal SC":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Artifika:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Arvo:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},Arya:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Asap:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Asap Condensed":{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Asar:{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Asset:{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Assistant:{v:["200","300","regular","500","600","700","800"],subset:["hebrew","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Astloch:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Asul:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Athiti:{v:["200","300","regular","500","600","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},"Atkinson Hyperlegible":{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Atma:{v:["300","regular","500","600","700"],subset:["bengali","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Atomic Age":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Aubrey:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Audiowide:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Autour One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Average:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Average Sans":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Averia Gruesa Libre":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Averia Libre":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin"],weight:["Default","300","400","700"],i:["normal","italic"]},"Averia Sans Libre":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin"],weight:["Default","300","400","700"],i:["normal","italic"]},"Averia Serif Libre":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin"],weight:["Default","300","400","700"],i:["normal","italic"]},"Azeret Mono":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},B612:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},"B612 Mono":{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},"BIZ UDGothic":{v:["regular","700"],subset:["cyrillic","greek-ext","japanese","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"BIZ UDMincho":{v:["regular","700"],subset:["cyrillic","greek-ext","japanese","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"BIZ UDPGothic":{v:["regular","700"],subset:["cyrillic","greek-ext","japanese","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"BIZ UDPMincho":{v:["regular","700"],subset:["cyrillic","greek-ext","japanese","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Babylonica:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bacasime Antique":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Bad Script":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bagel Fat One":{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Bahiana:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Bahianita:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bai Jamjuree":{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},"Bakbak One":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ballet:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Baloo 2":{v:["regular","500","600","700","800"],subset:["devanagari","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Bhai 2":{v:["regular","500","600","700","800"],subset:["gujarati","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Bhaijaan 2":{v:["regular","500","600","700","800"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Bhaina 2":{v:["regular","500","600","700","800"],subset:["latin","latin-ext","oriya","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Chettan 2":{v:["regular","500","600","700","800"],subset:["latin","latin-ext","malayalam","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Da 2":{v:["regular","500","600","700","800"],subset:["bengali","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Paaji 2":{v:["regular","500","600","700","800"],subset:["gurmukhi","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Tamma 2":{v:["regular","500","600","700","800"],subset:["kannada","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Tammudu 2":{v:["regular","500","600","700","800"],subset:["latin","latin-ext","telugu","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Baloo Thambi 2":{v:["regular","500","600","700","800"],subset:["latin","latin-ext","tamil","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Balsamiq Sans":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Balthazar:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Bangers:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Barlow:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Barlow Condensed":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Barlow Semi Condensed":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Barriecito:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Barrio:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Basic:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Baskervville:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Baskervville SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Battambang:{v:["100","300","regular","700","900"],subset:["khmer","latin"],weight:["Default","100","300","400","700","900"],i:["normal"]},Baumans:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Bayon:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Be Vietnam Pro":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Beau Rivage":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bebas Neue":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Beiruti:{v:["200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},Belanosima:{v:["regular","600","700"],subset:["latin","latin-ext"],weight:["Default","400","600","700"],i:["normal"]},Belgrano:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Bellefair:{v:["regular"],subset:["hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Belleza:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Bellota:{v:["300","300italic","regular","italic","700","700italic"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","300","400","700"],i:["normal","italic"]},"Bellota Text":{v:["300","300italic","regular","italic","700","700italic"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","300","400","700"],i:["normal","italic"]},BenchNine:{v:["300","regular","700"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},Benne:{v:["regular"],subset:["kannada","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Bentham:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Berkshire Swash":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Besley:{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Beth Ellen":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Bevan:{v:["regular","italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},"BhuTuka Expanded One":{v:["regular"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Big Shoulders Display":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Big Shoulders Inline Display":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Big Shoulders Inline Text":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Big Shoulders Stencil Display":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Big Shoulders Stencil Text":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Big Shoulders Text":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Bigelow Rules":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Bigshot One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Bilbo:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bilbo Swash Caps":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},BioRhyme:{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"BioRhyme Expanded":{v:["200","300","regular","700","800"],subset:["latin","latin-ext"],weight:["Default","200","300","400","700","800"],i:["normal"]},Birthstone:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Birthstone Bounce":{v:["regular","500"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500"],i:["normal"]},Biryani:{v:["200","300","regular","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","200","300","400","600","700","800","900"],i:["normal"]},Bitter:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Black And White Picture":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Black Han Sans":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Black Ops One":{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Blaka:{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Blaka Hollow":{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Blaka Ink":{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Blinker:{v:["100","200","300","regular","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","600","700","800","900"],i:["normal"]},"Bodoni Moda":{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Bodoni Moda SC":{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},Bokor:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Bona Nova":{v:["regular","italic","700"],subset:["cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Bona Nova SC":{v:["regular","italic","700"],subset:["cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Bonbon:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Bonheur Royale":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Boogaloo:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Borel:{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Bowlby One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Bowlby One SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Braah One":{v:["regular"],subset:["gurmukhi","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Brawler:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Bree Serif":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Bricolage Grotesque":{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Bruno Ace":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Bruno Ace SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Brygada 1918":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Bubblegum Sans":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Bubbler One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Buda:{v:["300"],subset:["latin"],weight:["Default","300","400"],i:["normal"]},Buenard:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Bungee:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Hairline":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Inline":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Outline":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Shade":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Spice":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Bungee Tint":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Butcherman:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Butterfly Kids":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Cabin:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Cabin Condensed":{v:["regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},"Cabin Sketch":{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Cactus Classical Serif":{v:["regular"],subset:["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Caesar Dressing":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Cagliostro:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Cairo:{v:["200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Cairo Play":{v:["200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},Caladea:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Calistoga:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Calligraffitti:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Cambay:{v:["regular","italic","700","700italic"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Cambo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Candal:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Cantarell:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Cantata One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Cantora One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Caprasimo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Capriola:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Caramel:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Carattere:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Cardo:{v:["regular","italic","700"],subset:["greek","greek-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Carlito:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Carme:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Carrois Gothic":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Carrois Gothic SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Carter One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Castoro:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Castoro Titling":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Catamaran:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","tamil"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Caudex:{v:["regular","italic","700","700italic"],subset:["greek","greek-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Caveat:{v:["regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Caveat Brush":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Cedarville Cursive":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Ceviche One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Chakra Petch":{v:["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},Changa:{v:["200","300","regular","500","600","700","800"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Changa One":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},Chango:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Charis SIL":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Charm:{v:["regular","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400","700"],i:["normal"]},Charmonman:{v:["regular","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400","700"],i:["normal"]},Chathura:{v:["100","300","regular","700","800"],subset:["latin","telugu"],weight:["Default","100","300","400","700","800"],i:["normal"]},"Chau Philomene One":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Chela One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Chelsea Market":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Chenla:{v:["regular"],subset:["khmer"],weight:["Default","400"],i:["normal"]},Cherish:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Cherry Bomb One":{v:["regular"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Cherry Cream Soda":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Cherry Swash":{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Chewy:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Chicle:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Chilanka:{v:["regular"],subset:["latin","latin-ext","malayalam"],weight:["Default","400"],i:["normal"]},Chivo:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Chivo Mono":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Chocolate Classical Sans":{v:["regular"],subset:["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Chokokutai:{v:["regular"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Chonburi:{v:["regular"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400"],i:["normal"]},Cinzel:{v:["regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},"Cinzel Decorative":{v:["regular","700","900"],subset:["latin","latin-ext"],weight:["Default","400","700","900"],i:["normal"]},"Clicker Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Climate Crisis":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Coda:{v:["regular","800"],subset:["latin","latin-ext"],weight:["Default","400","800"],i:["normal"]},Codystar:{v:["300","regular"],subset:["latin","latin-ext"],weight:["Default","300","400"],i:["normal"]},Coiny:{v:["regular"],subset:["latin","latin-ext","tamil","vietnamese"],weight:["Default","400"],i:["normal"]},Combo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Comfortaa:{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Comforter:{v:["regular"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Comforter Brush":{v:["regular"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Comic Neue":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin"],weight:["Default","300","400","700"],i:["normal","italic"]},"Coming Soon":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Comme:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Commissioner:{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Concert One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Condiment:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Content:{v:["regular","700"],subset:["khmer"],weight:["Default","400","700"],i:["normal"]},"Contrail One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Convergence:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Cookie:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Copse:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Corben:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Corinthia:{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Cormorant:{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Cormorant Garamond":{v:["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Cormorant Infant":{v:["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Cormorant SC":{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Cormorant Unicase":{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Cormorant Upright":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Courgette:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Courier Prime":{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Cousine:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Coustard:{v:["regular","900"],subset:["latin"],weight:["Default","400","900"],i:["normal"]},"Covered By Your Grace":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Crafty Girls":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Creepster:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Crete Round":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Crimson Pro":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Crimson Text":{v:["regular","italic","600","600italic","700","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","600","700"],i:["normal","italic"]},"Croissant One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Crushed:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Cuprum:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Cute Font":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Cutive:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Cutive Mono":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"DM Mono":{v:["300","300italic","regular","italic","500","500italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500"],i:["normal","italic"]},"DM Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"DM Serif Display":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"DM Serif Text":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Dai Banna SIL":{v:["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","new-tai-lue"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},Damion:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Dancing Script":{v:["regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},Danfo:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Dangrek:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Darker Grotesque":{v:["300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},"Darumadrop One":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"David Libre":{v:["regular","500","700"],subset:["hebrew","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400","500","700"],i:["normal"]},"Dawning of a New Day":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Days One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Dekko:{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Dela Gothic One":{v:["regular"],subset:["cyrillic","greek","japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Delicious Handrawn":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Delius:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Delius Swash Caps":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Delius Unicase":{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Della Respira":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Denk One":{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Devonshire:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Dhurjati:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},"Didact Gothic":{v:["regular"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Diphylleia:{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Diplomata:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Diplomata SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Do Hyeon":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Dokdo:{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Domine:{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Donegal One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Dongle:{v:["300","regular","700"],subset:["korean","latin","latin-ext","vietnamese"],weight:["Default","300","400","700"],i:["normal"]},"Doppio One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Dorsa:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Dosis:{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},DotGothic16:{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Doto:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Dr Sugiyama":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Duru Sans":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},DynaPuff:{v:["regular","500","600","700"],subset:["cyrillic-ext","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Dynalight:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"EB Garamond":{v:["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},"Eagle Lake":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"East Sea Dokdo":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Eater:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Economica:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Eczar:{v:["regular","500","600","700","800"],subset:["devanagari","greek","greek-ext","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Edu AU VIC WA NT Arrows":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu AU VIC WA NT Dots":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu AU VIC WA NT Guides":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu AU VIC WA NT Hand":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu AU VIC WA NT Pre":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu NSW ACT Foundation":{v:["regular","500","600","700"],subset:["latin"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu QLD Beginner":{v:["regular","500","600","700"],subset:["latin"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu SA Beginner":{v:["regular","500","600","700"],subset:["latin"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu TAS Beginner":{v:["regular","500","600","700"],subset:["latin"],weight:["Default","400","500","600","700"],i:["normal"]},"Edu VIC WA NT Beginner":{v:["regular","500","600","700"],subset:["latin"],weight:["Default","400","500","600","700"],i:["normal"]},"El Messiri":{v:["regular","500","600","700"],subset:["arabic","cyrillic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Electrolize:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Elsie:{v:["regular","900"],subset:["latin","latin-ext"],weight:["Default","400","900"],i:["normal"]},"Elsie Swash Caps":{v:["regular","900"],subset:["latin","latin-ext"],weight:["Default","400","900"],i:["normal"]},"Emblema One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Emilys Candy":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Encode Sans":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Encode Sans Condensed":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Encode Sans Expanded":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Encode Sans SC":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Encode Sans Semi Condensed":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Encode Sans Semi Expanded":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Engagement:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Englebert:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Enriqueta:{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Ephesis:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Epilogue:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Erica One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Esteban:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Estonia:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Euphoria Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ewert:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Exo:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Exo 2":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Expletus Sans":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Explora:{v:["regular"],subset:["cherokee","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Faculty Glyphic":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Fahkwang:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},"Familjen Grotesk":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Fanwood Text":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Farro:{v:["300","regular","500","700"],subset:["latin","latin-ext"],weight:["Default","300","400","500","700"],i:["normal"]},Farsan:{v:["regular"],subset:["gujarati","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Fascinate:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Fascinate Inline":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Faster One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Fasthand:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Fauna One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Faustina:{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Federant:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Federo:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Felipa:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Fenix:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Festive:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Figtree:{v:["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800","900"],i:["normal","italic"]},"Finger Paint":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Finlandica:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Fira Code":{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Fira Mono":{v:["regular","500","700"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","400","500","700"],i:["normal"]},"Fira Sans":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Fira Sans Condensed":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Fira Sans Extra Condensed":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Fjalla One":{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Fjord One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Flamenco:{v:["300","regular"],subset:["latin"],weight:["Default","300","400"],i:["normal"]},Flavors:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Fleur De Leah":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Flow Block":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Flow Circular":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Flow Rounded":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Foldit:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Fondamento:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Fontdiner Swanky":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Forum:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Fragment Mono":{v:["regular","italic"],subset:["cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Francois One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Frank Ruhl Libre":{v:["300","regular","500","600","700","800","900"],subset:["hebrew","latin","latin-ext"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},Fraunces:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Freckle Face":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Fredericka the Great":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Fredoka:{v:["300","regular","500","600","700"],subset:["hebrew","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Freehand:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},Freeman:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Fresca:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Frijole:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Fruktur:{v:["regular","italic"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},"Fugaz One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Fuggles:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Funnel Display":{v:["300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800"],i:["normal"]},"Funnel Sans":{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Fustat:{v:["200","300","regular","500","600","700","800"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Fuzzy Bubbles":{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},"GFS Didot":{v:["regular"],subset:["greek"],weight:["Default","400"],i:["normal"]},"GFS Neohellenic":{v:["regular","italic","700","700italic"],subset:["greek"],weight:["Default","400","700"],i:["normal","italic"]},"Ga Maamli":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Gabarito:{v:["regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},Gabriela:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Gaegu:{v:["300","regular","700"],subset:["korean","latin"],weight:["Default","300","400","700"],i:["normal"]},Gafata:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Gajraj One":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Galada:{v:["regular"],subset:["bengali","latin"],weight:["Default","400"],i:["normal"]},Galdeano:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Galindo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Gamja Flower":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Gantari:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Gasoek One":{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Gayathri:{v:["100","regular","700"],subset:["latin","malayalam"],weight:["Default","100","400","700"],i:["normal"]},Geist:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Geist Mono":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Gelasio:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Gemunu Libre":{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","sinhala"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Genos:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cherokee","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Gentium Book Plus":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Gentium Plus":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Geo:{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},Geologica:{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Georama:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Geostar:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Geostar Fill":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Germania One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Gideon Roman":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Gidugu:{v:["regular"],subset:["latin","latin-ext","telugu"],weight:["Default","400"],i:["normal"]},"Gilda Display":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Girassol:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Give You Glory":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Glass Antiqua":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Glegoo:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Gloock:{v:["regular"],subset:["cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Gloria Hallelujah":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Glory:{v:["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal","italic"]},Gluten:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Goblin One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Gochi Hand":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Goldman:{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},"Golos Text":{v:["regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},Gorditas:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Gothic A1":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","korean","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Gotu:{v:["regular"],subset:["devanagari","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Goudy Bookletter 1911":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Gowun Batang":{v:["regular","700"],subset:["korean","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},"Gowun Dodum":{v:["regular"],subset:["korean","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Graduate:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Grand Hotel":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Grandiflora One":{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Grandstander:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Grape Nuts":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Gravitas One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Great Vibes":{v:["regular"],subset:["cyrillic","cyrillic-ext","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Grechen Fuemen":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Grenze:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Grenze Gotisch":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Grey Qo":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Griffy:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Gruppo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Gudea:{v:["regular","italic","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Gugi:{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Gulzar:{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Gupter:{v:["regular","500","700"],subset:["latin"],weight:["Default","400","500","700"],i:["normal"]},Gurajada:{v:["regular"],subset:["latin","latin-ext","telugu"],weight:["Default","400"],i:["normal"]},Gwendolyn:{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Habibi:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Hachi Maru Pop":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Hahmlet:{v:["100","200","300","regular","500","600","700","800","900"],subset:["korean","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Halant:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hammersmith One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Hanalei:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Hanalei Fill":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Handjet:{v:["100","200","300","regular","500","600","700","800","900"],subset:["arabic","armenian","cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Handlee:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Hanken Grotesk":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Hanuman:{v:["100","300","regular","700","900"],subset:["khmer","latin"],weight:["Default","100","300","400","700","900"],i:["normal"]},"Happy Monkey":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Harmattan:{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Headland One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Hedvig Letters Sans":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Hedvig Letters Serif":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Heebo:{v:["100","200","300","regular","500","600","700","800","900"],subset:["hebrew","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Henny Penny":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Hepta Slab":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Herr Von Muellerhoff":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Hi Melody":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Hina Mincho":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Hind:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hind Guntur":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","telugu"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hind Madurai":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","tamil"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hind Mysuru":{v:["300","regular","500","600","700"],subset:["kannada","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hind Siliguri":{v:["300","regular","500","600","700"],subset:["bengali","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Hind Vadodara":{v:["300","regular","500","600","700"],subset:["gujarati","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Holtwood One SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Homemade Apple":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Homenaje:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Honk:{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Host Grotesk":{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Hubballi:{v:["regular"],subset:["kannada","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Hubot Sans":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Hurricane:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"IBM Plex Mono":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"IBM Plex Sans":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"IBM Plex Sans Arabic":{v:["100","200","300","regular","500","600","700"],subset:["arabic","cyrillic-ext","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans Condensed":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"IBM Plex Sans Devanagari":{v:["100","200","300","regular","500","600","700"],subset:["cyrillic-ext","devanagari","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans Hebrew":{v:["100","200","300","regular","500","600","700"],subset:["cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans JP":{v:["100","200","300","regular","500","600","700"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans KR":{v:["100","200","300","regular","500","600","700"],subset:["korean","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans Thai":{v:["100","200","300","regular","500","600","700"],subset:["cyrillic-ext","latin","latin-ext","thai"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Sans Thai Looped":{v:["100","200","300","regular","500","600","700"],subset:["cyrillic-ext","latin","latin-ext","thai"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"IBM Plex Serif":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"IM Fell DW Pica":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},"IM Fell DW Pica SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"IM Fell Double Pica":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},"IM Fell Double Pica SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"IM Fell English":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},"IM Fell English SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"IM Fell French Canon":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},"IM Fell French Canon SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"IM Fell Great Primer":{v:["regular","italic"],subset:["latin"],weight:["Default","400"],i:["normal","italic"]},"IM Fell Great Primer SC":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Ibarra Real Nova":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Iceberg:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Iceland:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Imbue:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Imperial Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Imprima:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Inclusive Sans":{v:["regular","italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},Inconsolata:{v:["200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},Inder:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Indie Flower":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ingrid Darling":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Inika:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Inknut Antiqua":{v:["300","regular","500","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},"Inria Sans":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal","italic"]},"Inria Serif":{v:["300","300italic","regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal","italic"]},Inspiration:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Instrument Sans":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Instrument Serif":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Inter:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Inter Tight":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Irish Grover":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Island Moments":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Istok Web":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Italiana:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Italianno:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Itim:{v:["regular"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400"],i:["normal"]},"Jacquard 12":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Jacquard 12 Charted":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Jacquard 24":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jacquard 24 Charted":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jacquarda Bastarda 9":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Jacquarda Bastarda 9 Charted":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Jacques Francois":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Jacques Francois Shadow":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Jaini:{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jaini Purva":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Jaldi:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Jaro:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Jersey 10":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 10 Charted":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 15":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 15 Charted":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 20":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 20 Charted":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 25":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jersey 25 Charted":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"JetBrains Mono":{v:["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal","italic"]},"Jim Nightshade":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Joan:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jockey One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Jolly Lodger":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Jomhuria:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Jomolhari:{v:["regular"],subset:["latin","tibetan"],weight:["Default","400"],i:["normal"]},"Josefin Sans":{v:["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"Josefin Slab":{v:["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},Jost:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Joti One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Jua:{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Judson:{v:["regular","italic","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Julee:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Julius Sans One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Junge:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Jura:{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","kayah-li","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Just Another Hand":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Just Me Again Down Here":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},K2D:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal","italic"]},Kablammo:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Kadwa:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Kaisei Decol":{v:["regular","500","700"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400","500","700"],i:["normal"]},"Kaisei HarunoUmi":{v:["regular","500","700"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400","500","700"],i:["normal"]},"Kaisei Opti":{v:["regular","500","700"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400","500","700"],i:["normal"]},"Kaisei Tokumin":{v:["regular","500","700","800"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400","500","700","800"],i:["normal"]},Kalam:{v:["300","regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},Kalnia:{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext","math"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"Kalnia Glaze":{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},Kameron:{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Kanit:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Kantumruy Pro":{v:["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],subset:["khmer","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},Karantina:{v:["300","regular","700"],subset:["hebrew","latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},Karla:{v:["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal","italic"]},"Karla Tamil Inclined":{v:["regular","700"],subset:["tamil"],weight:["Default","400","700"],i:["normal"]},"Karla Tamil Upright":{v:["regular","700"],subset:["tamil"],weight:["Default","400","700"],i:["normal"]},Karma:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Katibeh:{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kaushan Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Kavivanar:{v:["regular"],subset:["latin","latin-ext","tamil"],weight:["Default","400"],i:["normal"]},Kavoon:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kay Pho Du":{v:["regular","500","600","700"],subset:["kayah-li","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Kdam Thmor Pro":{v:["regular"],subset:["khmer","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Keania One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kelly Slab":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Kenia:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Khand:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Khmer:{v:["regular"],subset:["khmer"],weight:["Default","400"],i:["normal"]},Khula:{v:["300","regular","600","700","800"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","600","700","800"],i:["normal"]},Kings:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Kirang Haerang":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Kite One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kiwi Maru":{v:["300","regular","500"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","300","400","500"],i:["normal"]},"Klee One":{v:["regular","600"],subset:["cyrillic","greek-ext","japanese","latin","latin-ext"],weight:["Default","400","600"],i:["normal"]},Knewave:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},KoHo:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},Kodchasan:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},"Kode Mono":{v:["regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Koh Santepheap":{v:["100","300","regular","700","900"],subset:["khmer","latin"],weight:["Default","100","300","400","700","900"],i:["normal"]},"Kolker Brush":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Konkhmer Sleokchher":{v:["regular"],subset:["khmer","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Kosugi:{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kosugi Maru":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kotta One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Koulen:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},Kranky:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Kreon:{v:["300","regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Kristi:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Krona One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Krub:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},Kufam:{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Kulim Park":{v:["200","200italic","300","300italic","regular","italic","600","600italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","200","300","400","600","700"],i:["normal","italic"]},"Kumar One":{v:["regular"],subset:["gujarati","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kumar One Outline":{v:["regular"],subset:["gujarati","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Kumbh Sans":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Kurale:{v:["regular"],subset:["cyrillic","cyrillic-ext","devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"LXGW WenKai Mono TC":{v:["300","regular","700"],subset:["chinese-hongkong","cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","lisu","vietnamese"],weight:["Default","300","400","700"],i:["normal"]},"LXGW WenKai TC":{v:["300","regular","700"],subset:["chinese-hongkong","cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","lisu","vietnamese"],weight:["Default","300","400","700"],i:["normal"]},"La Belle Aurore":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Labrada:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Lacquer:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Laila:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Lakki Reddy":{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Lalezar:{v:["regular"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Lancelot:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Langar:{v:["regular"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lateef:{v:["200","300","regular","500","600","700","800"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Lato:{v:["100","100italic","300","300italic","regular","italic","700","700italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","100","300","400","700","900"],i:["normal","italic"]},"Lavishly Yours":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"League Gothic":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"League Script":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"League Spartan":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Leckerli One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Ledger:{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lekton:{v:["regular","italic","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Lemon:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lemonada:{v:["300","regular","500","600","700"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Lexend:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Deca":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Exa":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Giga":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Mega":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Peta":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Tera":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lexend Zetta":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Libre Barcode 128":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode 128 Text":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode 39":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode 39 Extended":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode 39 Extended Text":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode 39 Text":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Barcode EAN13 Text":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Libre Baskerville":{v:["regular","italic","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Libre Bodoni":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Libre Caslon Display":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Libre Caslon Text":{v:["regular","italic","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Libre Franklin":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Licorice:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Life Savers":{v:["regular","700","800"],subset:["latin","latin-ext"],weight:["Default","400","700","800"],i:["normal"]},"Lilita One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Lily Script One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Limelight:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Linden Hill":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Linefont:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Lisu Bosa":{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","lisu"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Literata:{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Liu Jian Mao Cao":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},Livvic:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","900","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","900"],i:["normal","italic"]},Lobster:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Lobster Two":{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},"Londrina Outline":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Londrina Shadow":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Londrina Sketch":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Londrina Solid":{v:["100","300","regular","900"],subset:["latin"],weight:["Default","100","300","400","900"],i:["normal"]},"Long Cang":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},Lora:{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Love Light":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Love Ya Like A Sister":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Loved by the King":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Lovers Quarrel":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Luckiest Guy":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lugrasimo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lumanosimo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Lunasima:{v:["regular","700"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Lusitana:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Lustria:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Luxurious Roman":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Luxurious Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"M PLUS 1":{v:["100","200","300","regular","500","600","700","800","900"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"M PLUS 1 Code":{v:["100","200","300","regular","500","600","700"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"M PLUS 1p":{v:["100","300","regular","500","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","japanese","latin","latin-ext","vietnamese"],weight:["Default","100","300","400","500","700","800","900"],i:["normal"]},"M PLUS 2":{v:["100","200","300","regular","500","600","700","800","900"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"M PLUS Code Latin":{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"M PLUS Rounded 1c":{v:["100","300","regular","500","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","japanese","latin","latin-ext","vietnamese"],weight:["Default","100","300","400","500","700","800","900"],i:["normal"]},"Ma Shan Zheng":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},Macondo:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Macondo Swash Caps":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Mada:{v:["200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Madimi One":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Magra:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Maiden Orange":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Maitree:{v:["200","300","regular","500","600","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},"Major Mono Display":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Mako:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Mali:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},Mallanna:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Maname:{v:["regular"],subset:["latin","latin-ext","sinhala","vietnamese"],weight:["Default","400"],i:["normal"]},Mandali:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Manjari:{v:["100","regular","700"],subset:["latin","latin-ext","malayalam"],weight:["Default","100","400","700"],i:["normal"]},Manrope:{v:["200","300","regular","500","600","700","800"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Mansalva:{v:["regular"],subset:["greek","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Manuale:{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Marcellus:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Marcellus SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Marck Script":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Margarine:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Marhey:{v:["300","regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Markazi Text":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},"Marko One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Marmelad:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Martel:{v:["200","300","regular","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","200","300","400","600","700","800","900"],i:["normal"]},"Martel Sans":{v:["200","300","regular","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","200","300","400","600","700","800","900"],i:["normal"]},"Martian Mono":{v:["100","200","300","regular","500","600","700","800"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},Marvel:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},Mate:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Mate SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Matemasie:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Material Icons":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Material Icons Outlined":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Material Icons Round":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Material Icons Sharp":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Material Icons Two Tone":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Material Symbols Outlined":{v:["100","200","300","regular","500","600","700"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"Material Symbols Rounded":{v:["100","200","300","regular","500","600","700"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"Material Symbols Sharp":{v:["100","200","300","regular","500","600","700"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"Maven Pro":{v:["regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},McLaren:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mea Culpa":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Meddon:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},MedievalSharp:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Medula One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Meera Inimai":{v:["regular"],subset:["latin","tamil"],weight:["Default","400"],i:["normal"]},Megrim:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Meie Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Meow Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Merienda:{v:["300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},Merriweather:{v:["300","300italic","regular","italic","700","700italic","900","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","700","900"],i:["normal","italic"]},"Merriweather Sans":{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Metal:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Metal Mania":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Metamorphous:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Metrophobic:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Michroma:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Micro 5":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Micro 5 Charted":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Milonga:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Miltonian:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Miltonian Tattoo":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Mina:{v:["regular","700"],subset:["bengali","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Mingzat:{v:["regular"],subset:["latin","latin-ext","lepcha"],weight:["Default","400"],i:["normal"]},Miniver:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Miriam Libre":{v:["regular","500","600","700"],subset:["hebrew","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Mirza:{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Miss Fajardose":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Mitr:{v:["200","300","regular","500","600","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},"Mochiy Pop One":{v:["regular"],subset:["japanese","latin"],weight:["Default","400"],i:["normal"]},"Mochiy Pop P One":{v:["regular"],subset:["japanese","latin"],weight:["Default","400"],i:["normal"]},Modak:{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Modern Antiqua":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Moderustic:{v:["300","regular","500","600","700","800"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","300","400","500","600","700","800"],i:["normal"]},Mogra:{v:["regular"],subset:["gujarati","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Mohave:{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Moirai One":{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Molengo:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Molle:{v:["italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Mona Sans":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Monda:{v:["regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},Monofett:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Monomaniac One":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Monoton:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Monsieur La Doulaise":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Montaga:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Montagu Slab":{v:["100","200","300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},MonteCarlo:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Montez:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Montserrat:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Montserrat Alternates":{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Montserrat Subrayada":{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Montserrat Underline":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Moo Lah Lah":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Mooli:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Moon Dance":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Moul:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},Moulpali:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Mountains of Christmas":{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},"Mouse Memoirs":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mr Bedfort":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mr Dafoe":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mr De Haviland":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mrs Saint Delafield":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Mrs Sheppards":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ms Madi":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Mukta:{v:["200","300","regular","500","600","700","800"],subset:["devanagari","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Mukta Mahee":{v:["200","300","regular","500","600","700","800"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Mukta Malar":{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","tamil"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Mukta Vaani":{v:["200","300","regular","500","600","700","800"],subset:["gujarati","latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Mulish:{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Murecho:{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","japanese","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},MuseoModerno:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"My Soul":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Mynerve:{v:["regular"],subset:["greek","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Mystery Quest":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},NTR:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Nabla:{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","math","vietnamese"],weight:["Default","400"],i:["normal"]},Namdhinggo:{v:["regular","500","600","700","800"],subset:["latin","latin-ext","limbu"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Nanum Brush Script":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Nanum Gothic":{v:["regular","700","800"],subset:["korean","latin"],weight:["Default","400","700","800"],i:["normal"]},"Nanum Gothic Coding":{v:["regular","700"],subset:["korean","latin"],weight:["Default","400","700"],i:["normal"]},"Nanum Myeongjo":{v:["regular","700","800"],subset:["korean","latin"],weight:["Default","400","700","800"],i:["normal"]},"Nanum Pen Script":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Narnoor:{v:["regular","500","600","700","800"],subset:["gunjala-gondi","latin","latin-ext","math","symbols"],weight:["Default","400","500","600","700","800"],i:["normal"]},Neonderthaw:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Nerko One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Neucha:{v:["regular"],subset:["cyrillic","latin"],weight:["Default","400"],i:["normal"]},Neuton:{v:["200","300","regular","italic","700","800"],subset:["latin","latin-ext"],weight:["Default","200","300","400","700","800"],i:["normal","italic"]},"New Amsterdam":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"New Rocker":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"New Tegomin":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"News Cycle":{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Newsreader:{v:["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal","italic"]},Niconne:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Niramit:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal","italic"]},"Nixie One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Nobile:{v:["regular","italic","500","500italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","700"],i:["normal","italic"]},Nokora:{v:["100","300","regular","700","900"],subset:["khmer","latin"],weight:["Default","100","300","400","700","900"],i:["normal"]},Norican:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Nosifer:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Notable:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Nothing You Could Do":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Noticia Text":{v:["regular","italic","700","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Noto Color Emoji":{v:["regular"],subset:["emoji"],weight:["Default","400"],i:["normal"]},"Noto Emoji":{v:["300","regular","500","600","700"],subset:["emoji"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Noto Kufi Arabic":{v:["100","200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Music":{v:["regular"],subset:["latin","latin-ext","music"],weight:["Default","400"],i:["normal"]},"Noto Naskh Arabic":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext","math","symbols"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Nastaliq Urdu":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Rashi Hebrew":{v:["100","200","300","regular","500","600","700","800","900"],subset:["greek-ext","hebrew","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","devanagari","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Noto Sans Adlam":{v:["regular","500","600","700"],subset:["adlam","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Adlam Unjoined":{v:["regular","500","600","700"],subset:["adlam","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Anatolian Hieroglyphs":{v:["regular"],subset:["anatolian-hieroglyphs","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Arabic":{v:["100","200","300","regular","500","600","700","800","900"],subset:["arabic"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Armenian":{v:["100","200","300","regular","500","600","700","800","900"],subset:["armenian","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Avestan":{v:["regular"],subset:["avestan","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Balinese":{v:["regular","500","600","700"],subset:["balinese","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Bamum":{v:["regular","500","600","700"],subset:["bamum","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Bassa Vah":{v:["regular","500","600","700"],subset:["bassa-vah","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Batak":{v:["regular"],subset:["batak","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Bengali":{v:["100","200","300","regular","500","600","700","800","900"],subset:["bengali","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Bhaiksuki":{v:["regular"],subset:["bhaiksuki","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Brahmi":{v:["regular"],subset:["brahmi","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Noto Sans Buginese":{v:["regular"],subset:["buginese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Buhid":{v:["regular"],subset:["buhid","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Canadian Aboriginal":{v:["100","200","300","regular","500","600","700","800","900"],subset:["canadian-aboriginal","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Carian":{v:["regular"],subset:["carian","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Caucasian Albanian":{v:["regular"],subset:["caucasian-albanian","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Chakma":{v:["regular"],subset:["chakma","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Cham":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cham","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Cherokee":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cherokee","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Chorasmian":{v:["regular"],subset:["chorasmian","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Noto Sans Coptic":{v:["regular"],subset:["coptic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Cuneiform":{v:["regular"],subset:["cuneiform","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Cypriot":{v:["regular"],subset:["cypriot","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Cypro Minoan":{v:["regular"],subset:["cypro-minoan","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Deseret":{v:["regular"],subset:["deseret","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Devanagari":{v:["100","200","300","regular","500","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Display":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Noto Sans Duployan":{v:["regular","700"],subset:["duployan","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Noto Sans Egyptian Hieroglyphs":{v:["regular"],subset:["egyptian-hieroglyphs","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Elbasan":{v:["regular"],subset:["elbasan","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Elymaic":{v:["regular"],subset:["elymaic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Ethiopic":{v:["100","200","300","regular","500","600","700","800","900"],subset:["ethiopic","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Georgian":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic-ext","georgian","greek-ext","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Glagolitic":{v:["regular"],subset:["cyrillic-ext","glagolitic","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Noto Sans Gothic":{v:["regular"],subset:["gothic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Grantha":{v:["regular"],subset:["grantha","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Gujarati":{v:["100","200","300","regular","500","600","700","800","900"],subset:["gujarati","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Gunjala Gondi":{v:["regular","500","600","700"],subset:["gunjala-gondi","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Gurmukhi":{v:["100","200","300","regular","500","600","700","800","900"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans HK":{v:["100","200","300","regular","500","600","700","800","900"],subset:["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Hanifi Rohingya":{v:["regular","500","600","700"],subset:["hanifi-rohingya","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Hanunoo":{v:["regular"],subset:["hanunoo","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Hatran":{v:["regular"],subset:["hatran","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Hebrew":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic-ext","greek-ext","hebrew","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Imperial Aramaic":{v:["regular"],subset:["imperial-aramaic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Indic Siyaq Numbers":{v:["regular"],subset:["indic-siyaq-numbers","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Inscriptional Pahlavi":{v:["regular"],subset:["inscriptional-pahlavi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Inscriptional Parthian":{v:["regular"],subset:["inscriptional-parthian","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans JP":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","japanese","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Javanese":{v:["regular","500","600","700"],subset:["javanese","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans KR":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","korean","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Kaithi":{v:["regular"],subset:["kaithi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Kannada":{v:["100","200","300","regular","500","600","700","800","900"],subset:["kannada","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Kawi":{v:["regular","500","600","700"],subset:["kawi","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Kayah Li":{v:["regular","500","600","700"],subset:["kayah-li","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Kharoshthi":{v:["regular"],subset:["kharoshthi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Khmer":{v:["100","200","300","regular","500","600","700","800","900"],subset:["khmer","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Khojki":{v:["regular"],subset:["khojki","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Khudawadi":{v:["regular"],subset:["khudawadi","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Sans Lao":{v:["100","200","300","regular","500","600","700","800","900"],subset:["lao","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Lao Looped":{v:["100","200","300","regular","500","600","700","800","900"],subset:["lao","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Lepcha":{v:["regular"],subset:["latin","latin-ext","lepcha"],weight:["Default","400"],i:["normal"]},"Noto Sans Limbu":{v:["regular"],subset:["latin","latin-ext","limbu"],weight:["Default","400"],i:["normal"]},"Noto Sans Linear A":{v:["regular"],subset:["latin","latin-ext","linear-a"],weight:["Default","400"],i:["normal"]},"Noto Sans Linear B":{v:["regular"],subset:["latin","latin-ext","linear-b"],weight:["Default","400"],i:["normal"]},"Noto Sans Lisu":{v:["regular","500","600","700"],subset:["latin","latin-ext","lisu"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Lycian":{v:["regular"],subset:["lycian"],weight:["Default","400"],i:["normal"]},"Noto Sans Lydian":{v:["regular"],subset:["latin","latin-ext","lydian"],weight:["Default","400"],i:["normal"]},"Noto Sans Mahajani":{v:["regular"],subset:["latin","latin-ext","mahajani"],weight:["Default","400"],i:["normal"]},"Noto Sans Malayalam":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","malayalam"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Mandaic":{v:["regular"],subset:["latin","latin-ext","mandaic"],weight:["Default","400"],i:["normal"]},"Noto Sans Manichaean":{v:["regular"],subset:["latin","latin-ext","manichaean"],weight:["Default","400"],i:["normal"]},"Noto Sans Marchen":{v:["regular"],subset:["latin","latin-ext","marchen"],weight:["Default","400"],i:["normal"]},"Noto Sans Masaram Gondi":{v:["regular"],subset:["latin","latin-ext","masaram-gondi"],weight:["Default","400"],i:["normal"]},"Noto Sans Math":{v:["regular"],subset:["math"],weight:["Default","400"],i:["normal"]},"Noto Sans Mayan Numerals":{v:["regular"],subset:["latin","latin-ext","mayan-numerals"],weight:["Default","400"],i:["normal"]},"Noto Sans Medefaidrin":{v:["regular","500","600","700"],subset:["latin","latin-ext","medefaidrin"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Meetei Mayek":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","meetei-mayek"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Mende Kikakui":{v:["regular"],subset:["latin","latin-ext","mende-kikakui"],weight:["Default","400"],i:["normal"]},"Noto Sans Meroitic":{v:["regular"],subset:["latin","latin-ext","meroitic","meroitic-cursive","meroitic-hieroglyphs"],weight:["Default","400"],i:["normal"]},"Noto Sans Miao":{v:["regular"],subset:["latin","latin-ext","miao"],weight:["Default","400"],i:["normal"]},"Noto Sans Modi":{v:["regular"],subset:["latin","latin-ext","modi"],weight:["Default","400"],i:["normal"]},"Noto Sans Mongolian":{v:["regular"],subset:["latin","latin-ext","math","mongolian","symbols"],weight:["Default","400"],i:["normal"]},"Noto Sans Mono":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Mro":{v:["regular"],subset:["latin","latin-ext","mro"],weight:["Default","400"],i:["normal"]},"Noto Sans Multani":{v:["regular"],subset:["latin","latin-ext","multani"],weight:["Default","400"],i:["normal"]},"Noto Sans Myanmar":{v:["100","200","300","regular","500","600","700","800","900"],subset:["myanmar"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans NKo":{v:["regular"],subset:["latin","latin-ext","nko"],weight:["Default","400"],i:["normal"]},"Noto Sans NKo Unjoined":{v:["regular","500","600","700"],subset:["latin","latin-ext","nko"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Nabataean":{v:["regular"],subset:["latin","latin-ext","nabataean"],weight:["Default","400"],i:["normal"]},"Noto Sans Nag Mundari":{v:["regular","500","600","700"],subset:["latin","latin-ext","nag-mundari"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Nandinagari":{v:["regular"],subset:["latin","latin-ext","nandinagari"],weight:["Default","400"],i:["normal"]},"Noto Sans New Tai Lue":{v:["regular","500","600","700"],subset:["latin","latin-ext","new-tai-lue"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Newa":{v:["regular"],subset:["latin","latin-ext","newa"],weight:["Default","400"],i:["normal"]},"Noto Sans Nushu":{v:["regular"],subset:["latin","latin-ext","nushu"],weight:["Default","400"],i:["normal"]},"Noto Sans Ogham":{v:["regular"],subset:["latin","latin-ext","ogham"],weight:["Default","400"],i:["normal"]},"Noto Sans Ol Chiki":{v:["regular","500","600","700"],subset:["latin","latin-ext","ol-chiki"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Old Hungarian":{v:["regular"],subset:["latin","latin-ext","old-hungarian"],weight:["Default","400"],i:["normal"]},"Noto Sans Old Italic":{v:["regular"],subset:["latin","latin-ext","old-italic"],weight:["Default","400"],i:["normal"]},"Noto Sans Old North Arabian":{v:["regular"],subset:["latin","latin-ext","old-north-arabian"],weight:["Default","400"],i:["normal"]},"Noto Sans Old Permic":{v:["regular"],subset:["cyrillic-ext","latin","latin-ext","old-permic"],weight:["Default","400"],i:["normal"]},"Noto Sans Old Persian":{v:["regular"],subset:["latin","latin-ext","old-persian"],weight:["Default","400"],i:["normal"]},"Noto Sans Old Sogdian":{v:["regular"],subset:["latin","latin-ext","old-sogdian"],weight:["Default","400"],i:["normal"]},"Noto Sans Old South Arabian":{v:["regular"],subset:["latin","latin-ext","old-south-arabian"],weight:["Default","400"],i:["normal"]},"Noto Sans Old Turkic":{v:["regular"],subset:["latin","latin-ext","old-turkic"],weight:["Default","400"],i:["normal"]},"Noto Sans Oriya":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","oriya"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Osage":{v:["regular"],subset:["latin","latin-ext","osage"],weight:["Default","400"],i:["normal"]},"Noto Sans Osmanya":{v:["regular"],subset:["latin","latin-ext","osmanya"],weight:["Default","400"],i:["normal"]},"Noto Sans Pahawh Hmong":{v:["regular"],subset:["latin","latin-ext","pahawh-hmong"],weight:["Default","400"],i:["normal"]},"Noto Sans Palmyrene":{v:["regular"],subset:["latin","latin-ext","palmyrene"],weight:["Default","400"],i:["normal"]},"Noto Sans Pau Cin Hau":{v:["regular"],subset:["latin","latin-ext","pau-cin-hau"],weight:["Default","400"],i:["normal"]},"Noto Sans Phags Pa":{v:["regular"],subset:["phags-pa"],weight:["Default","400"],i:["normal"]},"Noto Sans Phoenician":{v:["regular"],subset:["latin","latin-ext","phoenician"],weight:["Default","400"],i:["normal"]},"Noto Sans Psalter Pahlavi":{v:["regular"],subset:["latin","latin-ext","psalter-pahlavi"],weight:["Default","400"],i:["normal"]},"Noto Sans Rejang":{v:["regular"],subset:["latin","latin-ext","rejang"],weight:["Default","400"],i:["normal"]},"Noto Sans Runic":{v:["regular"],subset:["latin","latin-ext","runic"],weight:["Default","400"],i:["normal"]},"Noto Sans SC":{v:["100","200","300","regular","500","600","700","800","900"],subset:["chinese-simplified","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Samaritan":{v:["regular"],subset:["latin","latin-ext","samaritan"],weight:["Default","400"],i:["normal"]},"Noto Sans Saurashtra":{v:["regular"],subset:["latin","latin-ext","saurashtra"],weight:["Default","400"],i:["normal"]},"Noto Sans Sharada":{v:["regular"],subset:["latin","latin-ext","sharada"],weight:["Default","400"],i:["normal"]},"Noto Sans Shavian":{v:["regular"],subset:["latin","latin-ext","shavian"],weight:["Default","400"],i:["normal"]},"Noto Sans Siddham":{v:["regular"],subset:["latin","latin-ext","siddham"],weight:["Default","400"],i:["normal"]},"Noto Sans SignWriting":{v:["regular"],subset:["latin","latin-ext","signwriting"],weight:["Default","400"],i:["normal"]},"Noto Sans Sinhala":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","sinhala"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Sogdian":{v:["regular"],subset:["latin","latin-ext","sogdian"],weight:["Default","400"],i:["normal"]},"Noto Sans Sora Sompeng":{v:["regular","500","600","700"],subset:["latin","latin-ext","sora-sompeng"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Soyombo":{v:["regular"],subset:["latin","latin-ext","soyombo"],weight:["Default","400"],i:["normal"]},"Noto Sans Sundanese":{v:["regular","500","600","700"],subset:["latin","latin-ext","sundanese"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Syloti Nagri":{v:["regular"],subset:["latin","latin-ext","syloti-nagri"],weight:["Default","400"],i:["normal"]},"Noto Sans Symbols":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Symbols 2":{v:["regular"],subset:["braille","latin","latin-ext","math","mayan-numerals","symbols"],weight:["Default","400"],i:["normal"]},"Noto Sans Syriac":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","syriac"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Syriac Eastern":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","syriac"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans TC":{v:["100","200","300","regular","500","600","700","800","900"],subset:["chinese-traditional","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Tagalog":{v:["regular"],subset:["latin","latin-ext","tagalog"],weight:["Default","400"],i:["normal"]},"Noto Sans Tagbanwa":{v:["regular"],subset:["latin","latin-ext","tagbanwa"],weight:["Default","400"],i:["normal"]},"Noto Sans Tai Le":{v:["regular"],subset:["latin","latin-ext","tai-le"],weight:["Default","400"],i:["normal"]},"Noto Sans Tai Tham":{v:["regular","500","600","700"],subset:["latin","latin-ext","tai-tham"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Tai Viet":{v:["regular"],subset:["latin","latin-ext","tai-viet"],weight:["Default","400"],i:["normal"]},"Noto Sans Takri":{v:["regular"],subset:["latin","latin-ext","takri"],weight:["Default","400"],i:["normal"]},"Noto Sans Tamil":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","tamil"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Tamil Supplement":{v:["regular"],subset:["latin","latin-ext","tamil-supplement"],weight:["Default","400"],i:["normal"]},"Noto Sans Tangsa":{v:["regular","500","600","700"],subset:["latin","latin-ext","tangsa"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Telugu":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","telugu"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Thaana":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","thaana"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Thai":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","thai"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Thai Looped":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","thai"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Sans Tifinagh":{v:["regular"],subset:["latin","latin-ext","tifinagh"],weight:["Default","400"],i:["normal"]},"Noto Sans Tirhuta":{v:["regular"],subset:["latin","latin-ext","tirhuta"],weight:["Default","400"],i:["normal"]},"Noto Sans Ugaritic":{v:["regular"],subset:["latin","latin-ext","ugaritic"],weight:["Default","400"],i:["normal"]},"Noto Sans Vai":{v:["regular"],subset:["latin","latin-ext","vai"],weight:["Default","400"],i:["normal"]},"Noto Sans Vithkuqi":{v:["regular","500","600","700"],subset:["latin","latin-ext","vithkuqi"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Sans Wancho":{v:["regular"],subset:["latin","latin-ext","wancho"],weight:["Default","400"],i:["normal"]},"Noto Sans Warang Citi":{v:["regular"],subset:["latin","latin-ext","warang-citi"],weight:["Default","400"],i:["normal"]},"Noto Sans Yi":{v:["regular"],subset:["latin","latin-ext","yi"],weight:["Default","400"],i:["normal"]},"Noto Sans Zanabazar Square":{v:["regular"],subset:["latin","latin-ext","zanabazar-square"],weight:["Default","400"],i:["normal"]},"Noto Serif":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Noto Serif Ahom":{v:["regular"],subset:["ahom","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Serif Armenian":{v:["100","200","300","regular","500","600","700","800","900"],subset:["armenian","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Balinese":{v:["regular"],subset:["balinese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Serif Bengali":{v:["100","200","300","regular","500","600","700","800","900"],subset:["bengali","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Devanagari":{v:["100","200","300","regular","500","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Display":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Noto Serif Dogra":{v:["regular"],subset:["dogra","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Serif Ethiopic":{v:["100","200","300","regular","500","600","700","800","900"],subset:["ethiopic","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Georgian":{v:["100","200","300","regular","500","600","700","800","900"],subset:["georgian","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Grantha":{v:["regular"],subset:["grantha","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Serif Gujarati":{v:["100","200","300","regular","500","600","700","800","900"],subset:["gujarati","latin","latin-ext","math","symbols"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Gurmukhi":{v:["100","200","300","regular","500","600","700","800","900"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif HK":{v:["200","300","regular","500","600","700","800","900"],subset:["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Hebrew":{v:["100","200","300","regular","500","600","700","800","900"],subset:["hebrew","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif JP":{v:["200","300","regular","500","600","700","800","900"],subset:["cyrillic","japanese","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif KR":{v:["200","300","regular","500","600","700","800","900"],subset:["cyrillic","korean","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Kannada":{v:["100","200","300","regular","500","600","700","800","900"],subset:["kannada","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Khitan Small Script":{v:["regular"],subset:["khitan-small-script","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Noto Serif Khmer":{v:["100","200","300","regular","500","600","700","800","900"],subset:["khmer","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Khojki":{v:["regular","500","600","700"],subset:["khojki","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Serif Lao":{v:["100","200","300","regular","500","600","700","800","900"],subset:["lao","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Makasar":{v:["regular"],subset:["latin","latin-ext","makasar"],weight:["Default","400"],i:["normal"]},"Noto Serif Malayalam":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","malayalam"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Myanmar":{v:["100","200","300","regular","500","600","700","800","900"],subset:["myanmar"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif NP Hmong":{v:["regular","500","600","700"],subset:["latin","nyiakeng-puachue-hmong"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Serif Old Uyghur":{v:["regular"],subset:["latin","latin-ext","old-uyghur"],weight:["Default","400"],i:["normal"]},"Noto Serif Oriya":{v:["regular","500","600","700"],subset:["latin","latin-ext","oriya"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Serif Ottoman Siyaq":{v:["regular"],subset:["latin","latin-ext","ottoman-siyaq-numbers"],weight:["Default","400"],i:["normal"]},"Noto Serif SC":{v:["200","300","regular","500","600","700","800","900"],subset:["chinese-simplified","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Sinhala":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","sinhala"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif TC":{v:["200","300","regular","500","600","700","800","900"],subset:["chinese-traditional","cyrillic","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Tamil":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","tamil"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Noto Serif Tangut":{v:["regular"],subset:["latin","latin-ext","tangut"],weight:["Default","400"],i:["normal"]},"Noto Serif Telugu":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","telugu"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Thai":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","thai"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Tibetan":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","tibetan"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Noto Serif Toto":{v:["regular","500","600","700"],subset:["latin","latin-ext","toto"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Serif Vithkuqi":{v:["regular","500","600","700"],subset:["latin","latin-ext","vithkuqi"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Serif Yezidi":{v:["regular","500","600","700"],subset:["latin","latin-ext","yezidi"],weight:["Default","400","500","600","700"],i:["normal"]},"Noto Traditional Nushu":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","nushu"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Noto Znamenny Musical Notation":{v:["regular"],subset:["latin","latin-ext","math","symbols","znamenny"],weight:["Default","400"],i:["normal"]},"Nova Cut":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Flat":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Mono":{v:["regular"],subset:["greek","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Oval":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Round":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Slim":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Nova Square":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Numans:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Nunito:{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Nunito Sans":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Nuosu SIL":{v:["regular"],subset:["latin","latin-ext","yi"],weight:["Default","400"],i:["normal"]},"Odibee Sans":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Odor Mean Chey":{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},Offside:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Oi:{v:["regular"],subset:["arabic","cyrillic","cyrillic-ext","greek","latin","latin-ext","tamil","vietnamese"],weight:["Default","400"],i:["normal"]},Ojuju:{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Old Standard TT":{v:["regular","italic","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Oldenburg:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ole:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Oleo Script":{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Oleo Script Swash Caps":{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Onest:{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Oooh Baby":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Open Sans":{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Oranienbaum:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Orbit:{v:["regular"],subset:["korean","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Orbitron:{v:["regular","500","600","700","800","900"],subset:["latin"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},Oregano:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Orelega One":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Orienta:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Original Surfer":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Oswald:{v:["200","300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},Outfit:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Over the Rainbow":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Overlock:{v:["regular","italic","700","700italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","400","700","900"],i:["normal","italic"]},"Overlock SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Overpass:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Overpass Mono":{v:["300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Ovo:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Oxanium:{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},Oxygen:{v:["300","regular","700"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},"Oxygen Mono":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"PT Mono":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"PT Sans":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"PT Sans Caption":{v:["regular","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"PT Sans Narrow":{v:["regular","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"PT Serif":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"PT Serif Caption":{v:["regular","italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Pacifico:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Padauk:{v:["regular","700"],subset:["latin","latin-ext","myanmar"],weight:["Default","400","700"],i:["normal"]},"Padyakke Expanded One":{v:["regular"],subset:["kannada","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Palanquin:{v:["100","200","300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700"],i:["normal"]},"Palanquin Dark":{v:["regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Palette Mosaic":{v:["regular"],subset:["japanese","latin"],weight:["Default","400"],i:["normal"]},Pangolin:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Paprika:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Parisienne:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Parkinsans:{v:["300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800"],i:["normal"]},"Passero One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Passion One":{v:["regular","700","900"],subset:["latin","latin-ext"],weight:["Default","400","700","900"],i:["normal"]},"Passions Conflict":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Pathway Extreme":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Pathway Gothic One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Patrick Hand":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Patrick Hand SC":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Pattaya:{v:["regular"],subset:["cyrillic","latin","latin-ext","thai","vietnamese"],weight:["Default","400"],i:["normal"]},"Patua One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Pavanam:{v:["regular"],subset:["latin","latin-ext","tamil"],weight:["Default","400"],i:["normal"]},"Paytone One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Peddana:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Peralta:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Permanent Marker":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Petemoss:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Petit Formal Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Petrona:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Phetsarath:{v:["regular","700"],subset:["lao"],weight:["Default","400","700"],i:["normal"]},Philosopher:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Phudu:{v:["300","regular","500","600","700","800","900"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},Piazzolla:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Piedra:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Pinyon Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Pirata One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Pixelify Sans":{v:["regular","500","600","700"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Plaster:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Platypi:{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Play:{v:["regular","700"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Playball:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Playfair:{v:["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal","italic"]},"Playfair Display":{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Playfair Display SC":{v:["regular","italic","700","700italic","900","900italic"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400","700","900"],i:["normal","italic"]},"Playpen Sans":{v:["100","200","300","regular","500","600","700","800"],subset:["emoji","latin","latin-ext","math","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Playwrite AR":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite AT":{v:["100","200","300","regular","100italic","200italic","300italic","italic"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal","italic"]},"Playwrite AU NSW":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite AU QLD":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite AU SA":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite AU TAS":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite AU VIC":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite BE VLG":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite BE WAL":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite BR":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite CA":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite CL":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite CO":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite CU":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite CZ":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DE Grund":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DE LA":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DE SAS":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DE VA":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DK Loopet":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite DK Uloopet":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite ES":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite ES Deco":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite FR Moderne":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite FR Trad":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite GB J":{v:["100","200","300","regular","100italic","200italic","300italic","italic"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal","italic"]},"Playwrite GB S":{v:["100","200","300","regular","100italic","200italic","300italic","italic"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal","italic"]},"Playwrite HR":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite HR Lijeva":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite HU":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite ID":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite IE":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite IN":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite IS":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite IT Moderna":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite IT Trad":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite MX":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite NG Modern":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite NL":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite NO":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite NZ":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite PE":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite PL":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite PT":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite RO":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite SK":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite TZ":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite US Modern":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite US Trad":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite VN":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Playwrite ZA":{v:["100","200","300","regular"],subset:["latin"],weight:["Default","100","200","300","400"],i:["normal"]},"Plus Jakarta Sans":{v:["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal","italic"]},Podkova:{v:["regular","500","600","700","800"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Poetsen One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Poiret One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Poller One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Poltawski Nowy":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Poly:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Pompiere:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Ponnala:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},"Pontano Sans":{v:["300","regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Poor Story":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Poppins:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Port Lligat Sans":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Port Lligat Slab":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Potta One":{v:["regular"],subset:["japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Pragati Narrow":{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Praise:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Prata:{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","vietnamese"],weight:["Default","400"],i:["normal"]},Preahvihear:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},"Press Start 2P":{v:["regular"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Pridi:{v:["200","300","regular","500","600","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},"Princess Sofia":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Prociono:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Prompt:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Prosto One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Protest Guerrilla":{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Protest Revolution":{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Protest Riot":{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Protest Strike":{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Proza Libre":{v:["regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},"Public Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Puppies Play":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Puritan:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},"Purple Purse":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Qahiri:{v:["regular"],subset:["arabic","latin"],weight:["Default","400"],i:["normal"]},Quando:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Quantico:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},Quattrocento:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Quattrocento Sans":{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Questrial:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Quicksand:{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Quintessential:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Qwigley:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Qwitcher Grypen":{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},REM:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Racing Sans One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Radio Canada":{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["canadian-aboriginal","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Radio Canada Big":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Radley:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Rajdhani:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Rakkas:{v:["regular"],subset:["arabic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Raleway:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Raleway Dots":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ramabhadra:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Ramaraja:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Rambla:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Rammetto One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rampart One":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ranchers:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Rancho:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Ranga:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Rasa:{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["gujarati","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},Rationale:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Ravi Prakash":{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},"Readex Pro":{v:["200","300","regular","500","600","700"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},Recursive:{v:["300","regular","500","600","700","800","900"],subset:["cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},"Red Hat Display":{v:["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700","800","900"],i:["normal","italic"]},"Red Hat Mono":{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Red Hat Text":{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Red Rose":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Redacted:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Redacted Script":{v:["300","regular","700"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},"Reddit Mono":{v:["200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Reddit Sans":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Reddit Sans Condensed":{v:["200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},Redressed:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Reem Kufi":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},"Reem Kufi Fun":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal"]},"Reem Kufi Ink":{v:["regular"],subset:["arabic","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Reenie Beanie":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Reggae One":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rethink Sans":{v:["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},Revalia:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rhodium Libre":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ribeye:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ribeye Marrow":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Righteous:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Risque:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Road Rage":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Roboto:{v:["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","900","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","300","400","500","700","900"],i:["normal","italic"]},"Roboto Condensed":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Roboto Flex":{v:["regular"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Roboto Mono":{v:["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},"Roboto Serif":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Roboto Slab":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Rochester:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Rock 3D":{v:["regular"],subset:["japanese","latin"],weight:["Default","400"],i:["normal"]},"Rock Salt":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"RocknRoll One":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Rokkitt:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Romanesco:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ropa Sans":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Rosario:{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},Rosarivo:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Rouge Script":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Rowdies:{v:["300","regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","700"],i:["normal"]},"Rozha One":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Rubik:{v:["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["arabic","cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","300","400","500","600","700","800","900"],i:["normal","italic"]},"Rubik 80s Fade":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Beastly":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Broken Fax":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Bubbles":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Burned":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Dirt":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Distressed":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Doodle Shadow":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Doodle Triangles":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Gemstones":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Glitch":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Glitch Pop":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Iso":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Lines":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Maps":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Marker Hatch":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Maze":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Microbe":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Mono One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Moonrocks":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Pixels":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Puddles":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Scribble":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Rubik Spray Paint":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Storm":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Vinyl":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rubik Wet Paint":{v:["regular"],subset:["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ruda:{v:["regular","500","600","700","800","900"],subset:["cyrillic","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},Rufina:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Ruge Boogie":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Ruluko:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Rum Raisin":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ruslan Display":{v:["regular"],subset:["cyrillic","latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Russo One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Ruthie:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Ruwudu:{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},Rye:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"STIX Two Text":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700"],i:["normal","italic"]},SUSE:{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},Sacramento:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sahitya:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Sail:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Saira:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Saira Condensed":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Saira Extra Condensed":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Saira Semi Condensed":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Saira Stencil One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Salsa:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Sanchez:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},Sancreek:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Sankofa Display":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Sansita:{v:["regular","italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","400","700","800","900"],i:["normal","italic"]},"Sansita Swashed":{v:["300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800","900"],i:["normal"]},Sarabun:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal","italic"]},Sarala:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Sarina:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sarpanch:{v:["regular","500","600","700","800","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},"Sassy Frass":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Satisfy:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Sawarabi Gothic":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Sawarabi Mincho":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Scada:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Scheherazade New":{v:["regular","500","600","700"],subset:["arabic","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal"]},"Schibsted Grotesk":{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},Schoolbell:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Scope One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Seaweed Script":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Secular One":{v:["regular"],subset:["hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sedan:{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Sedan SC":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Sedgwick Ave":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Sedgwick Ave Display":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Sen:{v:["regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Send Flowers":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Sevillana:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Seymour One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Shadows Into Light":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Shadows Into Light Two":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Shalimar:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Shantell Sans":{v:["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700","800"],i:["normal","italic"]},Shanti:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Share:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Share Tech":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Share Tech Mono":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Shippori Antique":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Shippori Antique B1":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Shippori Mincho":{v:["regular","500","600","700","800"],subset:["japanese","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Shippori Mincho B1":{v:["regular","500","600","700","800"],subset:["japanese","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},Shizuru:{v:["regular"],subset:["japanese","latin"],weight:["Default","400"],i:["normal"]},Shojumaru:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Short Stack":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Shrikhand:{v:["regular"],subset:["gujarati","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Siemreap:{v:["regular"],subset:["khmer"],weight:["Default","400"],i:["normal"]},Sigmar:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Sigmar One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Signika:{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Signika Negative":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},Silkscreen:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Simonetta:{v:["regular","italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","400","900"],i:["normal","italic"]},"Single Day":{v:["regular"],subset:["korean"],weight:["Default","400"],i:["normal"]},Sintony:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Sirin Stencil":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Six Caps":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sixtyfour:{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},"Sixtyfour Convergence":{v:["regular"],subset:["latin","latin-ext","math","symbols"],weight:["Default","400"],i:["normal"]},Skranji:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},"Slabo 13px":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Slabo 27px":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Slackey:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Slackside One":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Smokum:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Smooch:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Smooch Sans":{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Smythe:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Sniglet:{v:["regular","800"],subset:["latin","latin-ext"],weight:["Default","400","800"],i:["normal"]},Snippet:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Snowburst One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Sofadi One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Sofia:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Sofia Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Sofia Sans Condensed":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Sofia Sans Extra Condensed":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Sofia Sans Semi Condensed":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Solitreo:{v:["regular"],subset:["hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Solway:{v:["300","regular","500","700","800"],subset:["latin"],weight:["Default","300","400","500","700","800"],i:["normal"]},"Sometype Mono":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},"Song Myung":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},Sono:{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Sonsie One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sora:{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},"Sorts Mill Goudy":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Sour Gummy":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Source Code Pro":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Source Sans 3":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Source Serif 4":{v:["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Space Grotesk":{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Space Mono":{v:["regular","italic","700","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"Special Elite":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Spectral:{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal","italic"]},"Spectral SC":{v:["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800"],i:["normal","italic"]},"Spicy Rice":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Spinnaker:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Spirax:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Splash:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Spline Sans":{v:["300","regular","500","600","700"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Spline Sans Mono":{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Squada One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Square Peg":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Sree Krushnadevaraya":{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Sriracha:{v:["regular"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400"],i:["normal"]},Srisakdi:{v:["regular","700"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400","700"],i:["normal"]},Staatliches:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Stalemate:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Stalinist One":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Stardos Stencil":{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Stick:{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Stick No Bills":{v:["200","300","regular","500","600","700","800"],subset:["latin","latin-ext","sinhala"],weight:["Default","200","300","400","500","600","700","800"],i:["normal"]},"Stint Ultra Condensed":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Stint Ultra Expanded":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Stoke:{v:["300","regular"],subset:["latin","latin-ext"],weight:["Default","300","400"],i:["normal"]},Strait:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Style Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Stylish:{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Sue Ellen Francisco":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Suez One":{v:["regular"],subset:["hebrew","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Sulphur Point":{v:["300","regular","700"],subset:["latin","latin-ext"],weight:["Default","300","400","700"],i:["normal"]},Sumana:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Sunflower:{v:["300","500","700"],subset:["korean","latin"],weight:["Default","300","400","500","700"],i:["normal"]},Sunshiney:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Supermercado One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Sura:{v:["regular","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Suranna:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Suravaram:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Suwannaphum:{v:["100","300","regular","700","900"],subset:["khmer","latin"],weight:["Default","100","300","400","700","900"],i:["normal"]},"Swanky and Moo Moo":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Syncopate:{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]},Syne:{v:["regular","500","600","700","800"],subset:["greek","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Syne Mono":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Syne Tactile":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Tac One":{v:["regular"],subset:["latin","latin-ext","math","symbols","vietnamese"],weight:["Default","400"],i:["normal"]},"Tai Heritage Pro":{v:["regular","700"],subset:["latin","latin-ext","tai-viet","vietnamese"],weight:["Default","400","700"],i:["normal"]},Tajawal:{v:["200","300","regular","500","700","800","900"],subset:["arabic","latin"],weight:["Default","200","300","400","500","700","800","900"],i:["normal"]},Tangerine:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Tapestry:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Taprom:{v:["regular"],subset:["khmer","latin"],weight:["Default","400"],i:["normal"]},Tauri:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Taviraj:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Teachers:{v:["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],subset:["greek-ext","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},Teko:{v:["300","regular","500","600","700"],subset:["devanagari","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},Tektur:{v:["regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal"]},Telex:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Tenali Ramakrishna":{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},"Tenor Sans":{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Text Me One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Texturina:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Thasadith:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},"The Girl Next Door":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"The Nautigal":{v:["regular","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal"]},Tienne:{v:["regular","700","900"],subset:["latin"],weight:["Default","400","700","900"],i:["normal"]},Tillana:{v:["regular","500","600","700","800"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Tilt Neon":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Tilt Prism":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Tilt Warp":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Timmana:{v:["regular"],subset:["latin","telugu"],weight:["Default","400"],i:["normal"]},Tinos:{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],weight:["Default","400","700"],i:["normal","italic"]},Tiny5:{v:["regular"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Tiro Bangla":{v:["regular","italic"],subset:["bengali","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Devanagari Hindi":{v:["regular","italic"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Devanagari Marathi":{v:["regular","italic"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Devanagari Sanskrit":{v:["regular","italic"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Gurmukhi":{v:["regular","italic"],subset:["gurmukhi","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Kannada":{v:["regular","italic"],subset:["kannada","latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Tiro Tamil":{v:["regular","italic"],subset:["latin","latin-ext","tamil"],weight:["Default","400"],i:["normal","italic"]},"Tiro Telugu":{v:["regular","italic"],subset:["latin","latin-ext","telugu"],weight:["Default","400"],i:["normal","italic"]},"Titan One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Titillium Web":{v:["200","200italic","300","300italic","regular","italic","600","600italic","700","700italic","900"],subset:["latin","latin-ext"],weight:["Default","200","300","400","600","700","900"],i:["normal","italic"]},Tomorrow:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Tourney:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Trade Winds":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Train One":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Trirong:{v:["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],subset:["latin","latin-ext","thai","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Trispace:{v:["100","200","300","regular","500","600","700","800"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal"]},Trocchi:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Trochut:{v:["regular","italic","700"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},Truculenta:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Trykker:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Tsukimi Rounded":{v:["300","regular","500","600","700"],subset:["japanese","latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Tulpen One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Turret Road":{v:["200","300","regular","500","700","800"],subset:["latin","latin-ext"],weight:["Default","200","300","400","500","700","800"],i:["normal"]},"Twinkle Star":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Ubuntu:{v:["300","300italic","regular","italic","500","500italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","300","400","500","700"],i:["normal","italic"]},"Ubuntu Condensed":{v:["regular"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Ubuntu Mono":{v:["regular","italic","700","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},"Ubuntu Sans":{v:["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800"],i:["normal","italic"]},"Ubuntu Sans Mono":{v:["regular","500","600","700","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],weight:["Default","400","500","600","700"],i:["normal","italic"]},Uchen:{v:["regular"],subset:["latin","tibetan"],weight:["Default","400"],i:["normal"]},Ultra:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Unbounded:{v:["200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","200","300","400","500","600","700","800","900"],i:["normal"]},"Uncial Antiqua":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Underdog:{v:["regular"],subset:["cyrillic","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Unica One":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},UnifrakturCook:{v:["700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},UnifrakturMaguntia:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Unkempt:{v:["regular","700"],subset:["latin"],weight:["Default","400","700"],i:["normal"]},Unlock:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Unna:{v:["regular","italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal","italic"]},Updock:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Urbanist:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},VT323:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Vampiro One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Varela:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Varela Round":{v:["regular"],subset:["hebrew","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Varta:{v:["300","regular","500","600","700"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal"]},"Vast Shadow":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Vazirmatn:{v:["100","200","300","regular","500","600","700","800","900"],subset:["arabic","latin","latin-ext"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Vesper Libre":{v:["regular","500","700","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","400","500","700","900"],i:["normal"]},"Viaoda Libre":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Vibes:{v:["regular"],subset:["arabic","latin"],weight:["Default","400"],i:["normal"]},Vibur:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Victor Mono":{v:["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700"],i:["normal","italic"]},Vidaloka:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Viga:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Vina Sans":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Voces:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Volkhov:{v:["regular","italic","700","700italic"],subset:["latin"],weight:["Default","400","700"],i:["normal","italic"]},Vollkorn:{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Vollkorn SC":{v:["regular","600","700","900"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","600","700","900"],i:["normal"]},Voltaire:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Vujahday Script":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Waiting for the Sunrise":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Wallpoet:{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},"Walter Turncoat":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Warnes:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Water Brush":{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Waterfall:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Wavefont:{v:["100","200","300","regular","500","600","700","800","900"],subset:["latin"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},Wellfleet:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Wendy One":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Whisper:{v:["regular"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},WindSong:{v:["regular","500"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400","500"],i:["normal"]},"Wire One":{v:["regular"],subset:["latin"],weight:["Default","400"],i:["normal"]},Wittgenstein:{v:["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext"],weight:["Default","400","500","600","700","800","900"],i:["normal","italic"]},"Wix Madefor Display":{v:["regular","500","600","700","800"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal"]},"Wix Madefor Text":{v:["regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400","500","600","700","800"],i:["normal","italic"]},"Work Sans":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},Workbench:{v:["regular"],subset:["latin","math","symbols"],weight:["Default","400"],i:["normal"]},"Xanh Mono":{v:["regular","italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal","italic"]},Yaldevi:{v:["200","300","regular","500","600","700"],subset:["latin","latin-ext","sinhala"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},"Yanone Kaffeesatz":{v:["200","300","regular","500","600","700"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","200","300","400","500","600","700"],i:["normal"]},Yantramanav:{v:["100","300","regular","500","700","900"],subset:["devanagari","latin","latin-ext"],weight:["Default","100","300","400","500","700","900"],i:["normal"]},"Yarndings 12":{v:["regular"],subset:["latin","math","symbols"],weight:["Default","400"],i:["normal"]},"Yarndings 12 Charted":{v:["regular"],subset:["latin","math","symbols"],weight:["Default","400"],i:["normal"]},"Yarndings 20":{v:["regular"],subset:["latin","math","symbols"],weight:["Default","400"],i:["normal"]},"Yarndings 20 Charted":{v:["regular"],subset:["latin","math","symbols"],weight:["Default","400"],i:["normal"]},"Yatra One":{v:["regular"],subset:["devanagari","latin","latin-ext"],weight:["Default","400"],i:["normal"]},Yellowtail:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yeon Sung":{v:["regular"],subset:["korean","latin"],weight:["Default","400"],i:["normal"]},"Yeseva One":{v:["regular"],subset:["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},Yesteryear:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Yomogi:{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext","vietnamese"],weight:["Default","400"],i:["normal"]},"Young Serif":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Yrsa:{v:["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],subset:["latin","latin-ext","vietnamese"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},Ysabeau:{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Ysabeau Infant":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Ysabeau Office":{v:["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal","italic"]},"Ysabeau SC":{v:["100","200","300","regular","500","600","700","800","900"],subset:["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],weight:["Default","100","200","300","400","500","600","700","800","900"],i:["normal"]},"Yuji Boku":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yuji Hentaigana Akari":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yuji Hentaigana Akebono":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yuji Mai":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yuji Syuku":{v:["regular"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Yusei Magic":{v:["regular"],subset:["japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"ZCOOL KuaiLe":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},"ZCOOL QingKe HuangYou":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},"ZCOOL XiaoWei":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},Zain:{v:["200","300","300italic","regular","italic","700","800","900"],subset:["arabic","latin"],weight:["Default","200","300","400","700","800","900"],i:["normal","italic"]},"Zen Antique":{v:["regular"],subset:["cyrillic","greek","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Zen Antique Soft":{v:["regular"],subset:["cyrillic","greek","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Zen Dots":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Zen Kaku Gothic Antique":{v:["300","regular","500","700","900"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","300","400","500","700","900"],i:["normal"]},"Zen Kaku Gothic New":{v:["300","regular","500","700","900"],subset:["cyrillic","japanese","latin","latin-ext"],weight:["Default","300","400","500","700","900"],i:["normal"]},"Zen Kurenaido":{v:["regular"],subset:["cyrillic","greek","japanese","latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Zen Loop":{v:["regular","italic"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal","italic"]},"Zen Maru Gothic":{v:["300","regular","500","700","900"],subset:["cyrillic","greek","japanese","latin","latin-ext"],weight:["Default","300","400","500","700","900"],i:["normal"]},"Zen Old Mincho":{v:["regular","500","600","700","900"],subset:["cyrillic","greek","japanese","latin","latin-ext"],weight:["Default","400","500","600","700","900"],i:["normal"]},"Zen Tokyo Zoo":{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},Zeyada:{v:["regular"],subset:["latin","latin-ext"],weight:["Default","400"],i:["normal"]},"Zhi Mang Xing":{v:["regular"],subset:["chinese-simplified","latin"],weight:["Default","400"],i:["normal"]},"Zilla Slab":{v:["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],subset:["latin","latin-ext"],weight:["Default","300","400","500","600","700"],i:["normal","italic"]},"Zilla Slab Highlight":{v:["regular","700"],subset:["latin","latin-ext"],weight:["Default","400","700"],i:["normal"]}};function Yc(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}function Kc(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}function Jc(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?Kc(Object(a),!0).forEach((function(t){Yc(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):Kc(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}function Xc(e,t){(null==t||t>e.length)&&(t=e.length);for(var a=0,l=new Array(t);a<t;a++)l[a]=e[a];return l}function Qc(e,t){if(e){if("string"==typeof e)return Xc(e,t);var a=Object.prototype.toString.call(e).slice(8,-1);return"Object"===a&&e.constructor&&(a=e.constructor.name),"Map"===a||"Set"===a?Array.from(e):"Arguments"===a||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(a)?Xc(e,t):void 0}}function eu(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){var a=e&&("undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"]);if(null!=a){var l,i,o=[],_n=!0,n=!1;try{for(a=a.call(e);!(_n=(l=a.next()).done)&&(o.push(l.value),!t||o.length!==t);_n=!0);}catch(e){n=!0,i=e}finally{try{_n||null==a.return||a.return()}finally{if(n)throw i}}return o}}(e,t)||Qc(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function tu(e,t){if(null==e)return{};var a,l,i=function(e,t){if(null==e)return{};var a,l,i={},o=Object.keys(e);for(l=0;l<o.length;l++)a=o[l],t.indexOf(a)>=0||(i[a]=e[a]);return i}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(l=0;l<o.length;l++)a=o[l],t.indexOf(a)>=0||Object.prototype.propertyIsEnumerable.call(e,a)&&(i[a]=e[a])}return i}var au=["defaultInputValue","defaultMenuIsOpen","defaultValue","inputValue","menuIsOpen","onChange","onInputChange","onMenuClose","onMenuOpen","value"];function lu(){return(lu=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function iu(e,t){for(var a=0;a<t.length;a++){var l=t[a];l.enumerable=l.enumerable||!1,l.configurable=!0,"value"in l&&(l.writable=!0),Object.defineProperty(e,l.key,l)}}function ou(e,t){return(ou=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function nu(e){return(nu=Object.setPrototypeOf?Object.getPrototypeOf:function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}var ru=a(50),su=a.n(ru);function cu(e,t){return!t||"object"!==su()(t)&&"function"!=typeof t?function(e){if(void 0===e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return e}(e):t}function uu(e){return function(e){if(Array.isArray(e))return Xc(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Qc(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}var pu=function(){function e(e){var t=this;this._insertTag=function(e){var a;a=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,a),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(function(e){var t=document.createElement("style");return t.setAttribute("data-emotion",e.key),void 0!==e.nonce&&t.setAttribute("nonce",e.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t}(this));var t=this.tags[this.tags.length-1];if(this.isSpeedy){var a=function(e){if(e.sheet)return e.sheet;for(var t=0;t<document.styleSheets.length;t++)if(document.styleSheets[t].ownerNode===e)return document.styleSheets[t]}(t);try{a.insertRule(e,a.cssRules.length)}catch(e){}}else t.appendChild(document.createTextNode(e));this.ctr++},t.flush=function(){this.tags.forEach((function(e){var t;return null==(t=e.parentNode)?void 0:t.removeChild(e)})),this.tags=[],this.ctr=0},e}(),bu="-webkit-",du="@keyframes",gu=Math.abs,mu=String.fromCharCode,yu=Object.assign;function fu(e){return e.trim()}function hu(e,t,a){return e.replace(t,a)}function vu(e,t){return e.indexOf(t)}function _u(e,t){return 0|e.charCodeAt(t)}function Tu(e,t,a){return e.slice(t,a)}function Cu(e){return e.length}function Su(e){return e.length}function wu(e,t){return t.push(e),e}var ku=1,Pu=1,xu=0,Au=0,Gu=0,Mu="";function Ru(e,t,a,l,i,o,n){return{value:e,root:t,parent:a,type:l,props:i,children:o,line:ku,column:Pu,length:n,return:""}}function Bu(e,t){return yu(Ru("",null,null,"",null,null,0),e,{length:-e.length},t)}function Uu(){return Gu=Au<xu?_u(Mu,Au++):0,Pu++,10===Gu&&(Pu=1,ku++),Gu}function Eu(){return _u(Mu,Au)}function Ou(){return Au}function Lu(e,t){return Tu(Mu,e,t)}function Hu(e){switch(e){case 0:case 9:case 10:case 13:case 32:return 5;case 33:case 43:case 44:case 47:case 62:case 64:case 126:case 59:case 123:case 125:return 4;case 58:return 3;case 34:case 39:case 40:case 91:return 2;case 41:case 93:return 1}return 0}function ju(e){return ku=Pu=1,xu=Cu(Mu=e),Au=0,[]}function Fu(e){return Mu="",e}function zu(e){return fu(Lu(Au-1,function e(t){for(;Uu();)switch(Gu){case t:return Au;case 34:case 39:34!==t&&39!==t&&e(Gu);break;case 40:41===t&&e(t);break;case 92:Uu()}return Au}(91===e?e+2:40===e?e+1:e)))}function Du(e){for(;(Gu=Eu())&&Gu<33;)Uu();return Hu(e)>2||Hu(Gu)>3?"":" "}function Nu(e,t){for(;--t&&Uu()&&!(Gu<48||Gu>102||Gu>57&&Gu<65||Gu>70&&Gu<97););return Lu(e,Ou()+(t<6&&32==Eu()&&32==Uu()))}function Iu(e,t){for(;Uu()&&e+Gu!==57&&(e+Gu!==84||47!==Eu()););return"/*"+Lu(t,Au-1)+"*"+mu(47===e?e:Uu())}function Vu(e){for(;!Hu(Eu());)Uu();return Lu(e,Au)}function Wu(e){return Fu(function e(t,a,l,i,o,n,r,s,c){for(var u=0,p=0,b=r,d=0,g=0,m=0,y=1,f=1,h=1,v=0,_="",T=o,C=n,S=i,w=_;f;)switch(m=v,v=Uu()){case 40:if(108!=m&&58==_u(w,b-1)){-1!=vu(w+=hu(zu(v),"&","&\f"),"&\f")&&(h=-1);break}case 34:case 39:case 91:w+=zu(v);break;case 9:case 10:case 13:case 32:w+=Du(m);break;case 92:w+=Nu(Ou()-1,7);continue;case 47:switch(Eu()){case 42:case 47:wu(Zu(Iu(Uu(),Ou()),a,l),c);break;default:w+="/"}break;case 123*y:s[u++]=Cu(w)*h;case 125*y:case 59:case 0:switch(v){case 0:case 125:f=0;case 59+p:-1==h&&(w=hu(w,/\f/g,"")),g>0&&Cu(w)-b&&wu(g>32?$u(w+";",i,l,b-1):$u(hu(w," ","")+";",i,l,b-2),c);break;case 59:w+=";";default:if(wu(S=qu(w,a,l,u,p,o,s,_,T=[],C=[],b),n),123===v)if(0===p)e(w,a,S,S,T,n,b,s,C);else switch(99===d&&110===_u(w,3)?100:d){case 100:case 108:case 109:case 115:e(t,S,S,i&&wu(qu(t,S,S,0,0,o,s,_,o,T=[],b),C),o,C,b,s,i?T:C);break;default:e(w,S,S,S,[""],C,0,s,C)}}u=p=g=0,y=h=1,_=w="",b=r;break;case 58:b=1+Cu(w),g=m;default:if(y<1)if(123==v)--y;else if(125==v&&0==y++&&125==(Gu=Au>0?_u(Mu,--Au):0,Pu--,10===Gu&&(Pu=1,ku--),Gu))continue;switch(w+=mu(v),v*y){case 38:h=p>0?1:(w+="\f",-1);break;case 44:s[u++]=(Cu(w)-1)*h,h=1;break;case 64:45===Eu()&&(w+=zu(Uu())),d=Eu(),p=b=Cu(_=w+=Vu(Ou())),v++;break;case 45:45===m&&2==Cu(w)&&(y=0)}}return n}("",null,null,null,[""],e=ju(e),0,[0],e))}function qu(e,t,a,l,i,o,n,r,s,c,u){for(var p=i-1,b=0===i?o:[""],d=Su(b),g=0,m=0,y=0;g<l;++g)for(var f=0,h=Tu(e,p+1,p=gu(m=n[g])),v=e;f<d;++f)(v=fu(m>0?b[f]+" "+h:hu(h,/&\f/g,b[f])))&&(s[y++]=v);return Ru(e,t,a,0===i?"rule":r,s,c,u)}function Zu(e,t,a){return Ru(e,t,a,"comm",mu(Gu),Tu(e,2,-2),0)}function $u(e,t,a,l){return Ru(e,t,a,"decl",Tu(e,0,l),Tu(e,l+1,-1),l)}function Yu(e,t){for(var a="",l=Su(e),i=0;i<l;i++)a+=t(e[i],i,e,t)||"";return a}function Ku(e,t,a,l){switch(e.type){case"@layer":if(e.children.length)break;case"@import":case"decl":return e.return=e.return||e.value;case"comm":return"";case du:return e.return=e.value+"{"+Yu(e.children,l)+"}";case"rule":e.value=e.props.join(",")}return Cu(a=Yu(e.children,l))?e.return=e.value+"{"+a+"}":""}function Ju(e){var t=Su(e);return function(a,l,i,o){for(var n="",r=0;r<t;r++)n+=e[r](a,l,i,o)||"";return n}}function Xu(e){var t=Object.create(null);return function(a){return void 0===t[a]&&(t[a]=e(a)),t[a]}}var Qu,ep,tp="undefined"!=typeof document,ap=function(e,t,a){for(var l=0,i=0;l=i,i=Eu(),38===l&&12===i&&(t[a]=1),!Hu(i);)Uu();return Lu(e,Au)},lp=new WeakMap,ip=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,a=e.parent,l=e.column===a.column&&e.line===a.line;"rule"!==a.type;)if(!(a=a.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||lp.get(a))&&!l){lp.set(e,!0);for(var i=[],o=function(e,t){return Fu(function(e,t){var a=-1,l=44;do{switch(Hu(l)){case 0:38===l&&12===Eu()&&(t[a]=1),e[a]+=ap(Au-1,t,a);break;case 2:e[a]+=zu(l);break;case 4:if(44===l){e[++a]=58===Eu()?"&\f":"",t[a]=e[a].length;break}default:e[a]+=mu(l)}}while(l=Uu());return e}(ju(e),t))}(t,i),n=a.props,r=0,s=0;r<o.length;r++)for(var c=0;c<n.length;c++,s++)e.props[s]=i[r]?o[r].replace(/&\f/g,n[c]):n[c]+" "+o[r]}}},op=function(e){if("decl"===e.type){var t=e.value;108===t.charCodeAt(0)&&98===t.charCodeAt(2)&&(e.return="",e.value="")}},np=tp?void 0:(Qu=function(){return Xu((function(){var e={};return function(t){return e[t]}}))},ep=new WeakMap,function(e){if(ep.has(e))return ep.get(e);var t=Qu(e);return ep.set(e,t),t}),rp=[function(e,t,a,l){if(e.length>-1&&!e.return)switch(e.type){case"decl":e.return=function e(t,a){switch(i=a,45^_u(l=t,0)?(((i<<2^_u(l,0))<<2^_u(l,1))<<2^_u(l,2))<<2^_u(l,3):0){case 5103:return bu+"print-"+t+t;case 5737:case 4201:case 3177:case 3433:case 1641:case 4457:case 2921:case 5572:case 6356:case 5844:case 3191:case 6645:case 3005:case 6391:case 5879:case 5623:case 6135:case 4599:case 4855:case 4215:case 6389:case 5109:case 5365:case 5621:case 3829:return bu+t+t;case 5349:case 4246:case 4810:case 6968:case 2756:return bu+t+"-moz-"+t+"-ms-"+t+t;case 6828:case 4268:return bu+t+"-ms-"+t+t;case 6165:return bu+t+"-ms-flex-"+t+t;case 5187:return bu+t+hu(t,/(\w+).+(:[^]+)/,bu+"box-$1$2-ms-flex-$1$2")+t;case 5443:return bu+t+"-ms-flex-item-"+hu(t,/flex-|-self/,"")+t;case 4675:return bu+t+"-ms-flex-line-pack"+hu(t,/align-content|flex-|-self/,"")+t;case 5548:return bu+t+"-ms-"+hu(t,"shrink","negative")+t;case 5292:return bu+t+"-ms-"+hu(t,"basis","preferred-size")+t;case 6060:return bu+"box-"+hu(t,"-grow","")+bu+t+"-ms-"+hu(t,"grow","positive")+t;case 4554:return bu+hu(t,/([^-])(transform)/g,"$1"+bu+"$2")+t;case 6187:return hu(hu(hu(t,/(zoom-|grab)/,bu+"$1"),/(image-set)/,bu+"$1"),t,"")+t;case 5495:case 3959:return hu(t,/(image-set\([^]*)/,bu+"$1$`$1");case 4968:return hu(hu(t,/(.+:)(flex-)?(.*)/,bu+"box-pack:$3-ms-flex-pack:$3"),/s.+-b[^;]+/,"justify")+bu+t+t;case 4095:case 3583:case 4068:case 2532:return hu(t,/(.+)-inline(.+)/,bu+"$1$2")+t;case 8116:case 7059:case 5753:case 5535:case 5445:case 5701:case 4933:case 4677:case 5533:case 5789:case 5021:case 4765:if(Cu(t)-1-a>6)switch(_u(t,a+1)){case 109:if(45!==_u(t,a+4))break;case 102:return hu(t,/(.+:)(.+)-([^]+)/,"$1"+bu+"$2-$3$1-moz-"+(108==_u(t,a+3)?"$3":"$2-$3"))+t;case 115:return~vu(t,"stretch")?e(hu(t,"stretch","fill-available"),a)+t:t}break;case 4949:if(115!==_u(t,a+1))break;case 6444:switch(_u(t,Cu(t)-3-(~vu(t,"!important")&&10))){case 107:return hu(t,":",":"+bu)+t;case 101:return hu(t,/(.+:)([^;!]+)(;|!.+)?/,"$1"+bu+(45===_u(t,14)?"inline-":"")+"box$3$1"+bu+"$2$3$1-ms-$2box$3")+t}break;case 5936:switch(_u(t,a+11)){case 114:return bu+t+"-ms-"+hu(t,/[svh]\w+-[tblr]{2}/,"tb")+t;case 108:return bu+t+"-ms-"+hu(t,/[svh]\w+-[tblr]{2}/,"tb-rl")+t;case 45:return bu+t+"-ms-"+hu(t,/[svh]\w+-[tblr]{2}/,"lr")+t}return bu+t+"-ms-"+t+t}var l,i;return t}(e.value,e.length);break;case du:return Yu([Bu(e,{value:hu(e.value,"@","@"+bu)})],l);case"rule":if(e.length)return function(e,t){return e.map(t).join("")}(e.props,(function(t){switch((a=/(::plac\w+|:read-\w+)/.exec(a=t))?a[0]:a){case":read-only":case":read-write":return Yu([Bu(e,{props:[hu(t,/:(read-\w+)/,":-moz-$1")]})],l);case"::placeholder":return Yu([Bu(e,{props:[hu(t,/:(plac\w+)/,":"+bu+"input-$1")]}),Bu(e,{props:[hu(t,/:(plac\w+)/,":-moz-$1")]}),Bu(e,{props:[hu(t,/:(plac\w+)/,"-ms-input-$1")]})],l)}var a;return""}))}}],sp=function(e){var t=e.key;if(tp&&"css"===t){var a=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(a,(function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))}))}var l,i,o=e.stylisPlugins||rp,n={},r=[];tp&&(l=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+t+' "]'),(function(e){for(var t=e.getAttribute("data-emotion").split(" "),a=1;a<t.length;a++)n[t[a]]=!0;r.push(e)})));var s,c=[ip,op];if(tp){var u,p=[Ku,(s=function(e){u.insert(e)},function(e){e.root||(e=e.return)&&s(e)})],b=Ju(c.concat(o,p));i=function(e,t,a,l){u=a,Yu(Wu(e?e+"{"+t.styles+"}":t.styles),b),l&&(y.inserted[t.name]=!0)}}else{var d=[Ku],g=Ju(c.concat(o,d)),m=np(o)(t);i=function(e,t,a,l){var i=t.name,o=function(e,t){var a=t.name;return void 0===m[a]&&(m[a]=Yu(Wu(e?e+"{"+t.styles+"}":t.styles),g)),m[a]}(e,t);return void 0===y.compat?(l&&(y.inserted[i]=!0),o):l?void(y.inserted[i]=o):o}}var y={key:t,sheet:new pu({key:t,container:l,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:n,registered:{},insert:i};return y.sheet.hydrate(r),y};a(77);var cp="undefined"!=typeof document;var up=function(e,t,a){var l=e.key+"-"+t.name;(!1===a||!1===cp&&void 0!==e.compat)&&void 0===e.registered[l]&&(e.registered[l]=t.styles)},pp={animationIterationCount:1,aspectRatio:1,borderImageOutset:1,borderImageSlice:1,borderImageWidth:1,boxFlex:1,boxFlexGroup:1,boxOrdinalGroup:1,columnCount:1,columns:1,flex:1,flexGrow:1,flexPositive:1,flexShrink:1,flexNegative:1,flexOrder:1,gridRow:1,gridRowEnd:1,gridRowSpan:1,gridRowStart:1,gridColumn:1,gridColumnEnd:1,gridColumnSpan:1,gridColumnStart:1,msGridRow:1,msGridRowSpan:1,msGridColumn:1,msGridColumnSpan:1,fontWeight:1,lineHeight:1,opacity:1,order:1,orphans:1,scale:1,tabSize:1,widows:1,zIndex:1,zoom:1,WebkitLineClamp:1,fillOpacity:1,floodOpacity:1,stopOpacity:1,strokeDasharray:1,strokeDashoffset:1,strokeMiterlimit:1,strokeOpacity:1,strokeWidth:1},bp=/[A-Z]|^ms/g,dp=/_EMO_([^_]+?)_([^]*?)_EMO_/g,gp=function(e){return 45===e.charCodeAt(1)},mp=function(e){return null!=e&&"boolean"!=typeof e},yp=Xu((function(e){return gp(e)?e:e.replace(bp,"-$&").toLowerCase()})),fp=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(dp,(function(e,t,a){return vp={name:t,styles:a,next:vp},t}))}return 1===pp[e]||gp(e)||"number"!=typeof t||0===t?t:t+"px"};function hp(e,t,a){if(null==a)return"";var l=a;if(void 0!==l.__emotion_styles)return l;switch(typeof a){case"boolean":return"";case"object":var i=a;if(1===i.anim)return vp={name:i.name,styles:i.styles,next:vp},i.name;var o=a;if(void 0!==o.styles){var n=o.next;if(void 0!==n)for(;void 0!==n;)vp={name:n.name,styles:n.styles,next:vp},n=n.next;return o.styles+";"}return function(e,t,a){var l="";if(Array.isArray(a))for(var i=0;i<a.length;i++)l+=hp(e,t,a[i])+";";else for(var o in a){var n=a[o];if("object"!=typeof n){var r=n;null!=t&&void 0!==t[r]?l+=o+"{"+t[r]+"}":mp(r)&&(l+=yp(o)+":"+fp(o,r)+";")}else if(!Array.isArray(n)||"string"!=typeof n[0]||null!=t&&void 0!==t[n[0]]){var s=hp(e,t,n);switch(o){case"animation":case"animationName":l+=yp(o)+":"+s+";";break;default:l+=o+"{"+s+"}"}}else for(var c=0;c<n.length;c++)mp(n[c])&&(l+=yp(o)+":"+fp(o,n[c])+";")}return l}(e,t,a);case"function":if(void 0!==e){var r=vp,s=a(e);return vp=r,hp(e,t,s)}}var c=a;if(null==t)return c;var u=t[c];return void 0!==u?u:c}var vp,_p=/label:\s*([^\s;{]+)\s*(;|$)/g;function Tp(e,t,a){if(1===e.length&&"object"==typeof e[0]&&null!==e[0]&&void 0!==e[0].styles)return e[0];var l=!0,i="";vp=void 0;var o=e[0];null==o||void 0===o.raw?(l=!1,i+=hp(a,t,o)):i+=o[0];for(var n=1;n<e.length;n++)i+=hp(a,t,e[n]),l&&(i+=o[n]);_p.lastIndex=0;for(var r,s="";null!==(r=_p.exec(i));)s+="-"+r[1];return{name:function(e){for(var t,a=0,l=0,i=e.length;i>=4;++l,i-=4)t=1540483477*(65535&(t=255&e.charCodeAt(l)|(255&e.charCodeAt(++l))<<8|(255&e.charCodeAt(++l))<<16|(255&e.charCodeAt(++l))<<24))+(59797*(t>>>16)<<16),a=1540483477*(65535&(t^=t>>>24))+(59797*(t>>>16)<<16)^1540483477*(65535&a)+(59797*(a>>>16)<<16);switch(i){case 3:a^=(255&e.charCodeAt(l+2))<<16;case 2:a^=(255&e.charCodeAt(l+1))<<8;case 1:a=1540483477*(65535&(a^=255&e.charCodeAt(l)))+(59797*(a>>>16)<<16)}return(((a=1540483477*(65535&(a^=a>>>13))+(59797*(a>>>16)<<16))^a>>>15)>>>0).toString(36)}(i)+s,styles:i,next:vp}}var Cp="undefined"!=typeof document,Sp=!!mo.useInsertionEffect&&mo.useInsertionEffect,kp=Cp&&Sp||function(e){return e()},Pp=(Sp||mo.useLayoutEffect,"undefined"!=typeof document),xp=mo.createContext("undefined"!=typeof HTMLElement?sp({key:"css"}):null),Ap=(xp.Provider,function(e){return Object(mo.forwardRef)((function(t,a){var l=Object(mo.useContext)(xp);return e(t,l,a)}))});Pp||(Ap=function(e){return function(t){var a=Object(mo.useContext)(xp);return null===a?(a=sp({key:"css"}),mo.createElement(xp.Provider,{value:a},e(t,a))):e(t,a)}});var Gp=mo.createContext({}),Mp={}.hasOwnProperty,Rp="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",Bp=function(e,t){var a={};for(var l in t)Mp.call(t,l)&&(a[l]=t[l]);return a[Rp]=e,a},Up=function(e){var t=e.cache,a=e.serialized,l=e.isStringTag;up(t,a,l);var i=kp((function(){return function(e,t,a){up(e,t,a);var l=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var i="",o=t;do{var n=e.insert(t===o?"."+l:"",o,e.sheet,!0);cp||void 0===n||(i+=n),o=o.next}while(void 0!==o);if(!cp&&0!==i.length)return i}}(t,a,l)}));if(!Pp&&void 0!==i){for(var o,n=a.name,r=a.next;void 0!==r;)n+=" "+r.name,r=r.next;return mo.createElement("style",((o={})["data-emotion"]=t.key+" "+n,o.dangerouslySetInnerHTML={__html:i},o.nonce=t.sheet.nonce,o))}return null},Ep=Ap((function(e,t,a){var l=e.css;"string"==typeof l&&void 0!==t.registered[l]&&(l=t.registered[l]);var i=e[Rp],o=[l],n="";"string"==typeof e.className?n=function(e,t,a){var l="";return a.split(" ").forEach((function(a){void 0!==e[a]?t.push(e[a]+";"):a&&(l+=a+" ")})),l}(t.registered,o,e.className):null!=e.className&&(n=e.className+" ");var r=Tp(o,void 0,mo.useContext(Gp));n+=t.key+"-"+r.name;var s={};for(var c in e)Mp.call(e,c)&&"css"!==c&&c!==Rp&&(s[c]=e[c]);return s.className=n,a&&(s.ref=a),mo.createElement(mo.Fragment,null,mo.createElement(Up,{cache:t,serialized:r,isStringTag:"string"==typeof i}),mo.createElement(i,s))})),Op=(a(207),function(e,t){var a=arguments;if(null==t||!Mp.call(t,"css"))return mo.createElement.apply(void 0,a);var l=a.length,i=new Array(l);i[0]=Ep,i[1]=Bp(e,t);for(var o=2;o<l;o++)i[o]=a[o];return mo.createElement.apply(null,i)});function Lp(){for(var e=arguments.length,t=new Array(e),a=0;a<e;a++)t[a]=arguments[a];return Tp(t)}function Hp(e){return(Hp="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}const jp=Math.min,Fp=Math.max,zp=Math.round,Dp=Math.floor,Np=e=>({x:e,y:e});function Ip(){return"undefined"!=typeof window}function Vp(e){return Zp(e)?(e.nodeName||"").toLowerCase():"#document"}function Wp(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function qp(e){var t;return null==(t=(Zp(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Zp(e){return!!Ip()&&(e instanceof Node||e instanceof Wp(e).Node)}function $p(e){return!!Ip()&&(e instanceof Element||e instanceof Wp(e).Element)}function Yp(e){return!!Ip()&&(e instanceof HTMLElement||e instanceof Wp(e).HTMLElement)}function Kp(e){return!(!Ip()||"undefined"==typeof ShadowRoot)&&(e instanceof ShadowRoot||e instanceof Wp(e).ShadowRoot)}function Jp(e){const{overflow:t,overflowX:a,overflowY:l,display:i}=Xp(e);return/auto|scroll|overlay|hidden|clip/.test(t+l+a)&&!["inline","contents"].includes(i)}function Xp(e){return Wp(e).getComputedStyle(e)}function Qp(e,t,a){var l;void 0===t&&(t=[]),void 0===a&&(a=!0);const i=function e(t){const a=function(e){if("html"===Vp(e))return e;const t=e.assignedSlot||e.parentNode||Kp(e)&&e.host||qp(e);return Kp(t)?t.host:t}(t);return function(e){return["html","body","#document"].includes(Vp(e))}(a)?t.ownerDocument?t.ownerDocument.body:t.body:Yp(a)&&Jp(a)?a:e(a)}(e),o=i===(null==(l=e.ownerDocument)?void 0:l.body),n=Wp(i);if(o){const e=eb(n);return t.concat(n,n.visualViewport||[],Jp(i)?i:[],e&&a?Qp(e):[])}return t.concat(i,Qp(i,[],a))}function eb(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function tb(e){return $p(e)?e:e.contextElement}function ab(e){const t=tb(e);if(!Yp(t))return Np(1);const a=t.getBoundingClientRect(),{width:l,height:i,$:o}=function(e){const t=Xp(e);let a=parseFloat(t.width)||0,l=parseFloat(t.height)||0;const i=Yp(e),o=i?e.offsetWidth:a,n=i?e.offsetHeight:l,r=zp(a)!==o||zp(l)!==n;return r&&(a=o,l=n),{width:a,height:l,$:r}}(t);let n=(o?zp(a.width):a.width)/l,r=(o?zp(a.height):a.height)/i;return n&&Number.isFinite(n)||(n=1),r&&Number.isFinite(r)||(r=1),{x:n,y:r}}const lb=Np(0);function ib(e){const t=Wp(e);return"undefined"!=typeof CSS&&CSS.supports&&CSS.supports("-webkit-backdrop-filter","none")&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:lb}function ob(e,t,a,l){void 0===t&&(t=!1),void 0===a&&(a=!1);const i=e.getBoundingClientRect(),o=tb(e);let n=Np(1);t&&(l?$p(l)&&(n=ab(l)):n=ab(e));const r=function(e,t,a){return void 0===t&&(t=!1),!(!a||t&&a!==Wp(e))&&t}(o,a,l)?ib(o):Np(0);let s=(i.left+r.x)/n.x,c=(i.top+r.y)/n.y,u=i.width/n.x,p=i.height/n.y;if(o){const e=Wp(o),t=l&&$p(l)?Wp(l):l;let a=e,i=eb(a);for(;i&&l&&t!==a;){const e=ab(i),t=i.getBoundingClientRect(),l=Xp(i),o=t.left+(i.clientLeft+parseFloat(l.paddingLeft))*e.x,n=t.top+(i.clientTop+parseFloat(l.paddingTop))*e.y;s*=e.x,c*=e.y,u*=e.x,p*=e.y,s+=o,c+=n,a=Wp(i),i=eb(a)}}return function(e){const{x:t,y:a,width:l,height:i}=e;return{width:l,height:i,top:a,left:t,right:t+l,bottom:a+i,x:t,y:a}}({width:u,height:p,x:s,y:c})}var nb=mo.useLayoutEffect,rb=["className","clearValue","cx","getStyles","getClassNames","getValue","hasValue","isMulti","isRtl","options","selectOption","selectProps","setValue","theme"],sb=function(){};function cb(e,t){return t?"-"===t[0]?e+t:e+"__"+t:e}function ub(e,t){for(var a=arguments.length,l=new Array(a>2?a-2:0),i=2;i<a;i++)l[i-2]=arguments[i];var o=[].concat(l);if(t&&e)for(var n in t)t.hasOwnProperty(n)&&t[n]&&o.push("".concat(cb(e,n)));return o.filter((function(e){return e})).map((function(e){return String(e).trim()})).join(" ")}var pb=function(e){return t=e,Array.isArray(t)?e.filter(Boolean):"object"===Hp(e)&&null!==e?[e]:[];var t},bb=function(e){return e.className,e.clearValue,e.cx,e.getStyles,e.getClassNames,e.getValue,e.hasValue,e.isMulti,e.isRtl,e.options,e.selectOption,e.selectProps,e.setValue,e.theme,Jc({},tu(e,rb))},db=function(e,t,a){var l=e.cx,i=e.getStyles,o=e.getClassNames,n=e.className;return{css:i(t,e),className:l(null!=a?a:{},o(t,e),n)}};function gb(e){return[document.documentElement,document.body,window].indexOf(e)>-1}function mb(e){return gb(e)?window.pageYOffset:e.scrollTop}function yb(e,t){gb(e)?window.scrollTo(0,t):e.scrollTop=t}function fb(e,t,a,l){return a*((e=e/l-1)*e*e+1)+t}function hb(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:200,l=arguments.length>3&&void 0!==arguments[3]?arguments[3]:sb,i=mb(e),o=t-i,n=10,r=0;function s(){var t=fb(r+=n,i,o,a);yb(e,t),r<a?window.requestAnimationFrame(s):l(e)}s()}function vb(e,t){var a=e.getBoundingClientRect(),l=t.getBoundingClientRect(),i=t.offsetHeight/3;l.bottom+i>a.bottom?yb(e,Math.min(t.offsetTop+t.clientHeight-e.offsetHeight+i,e.scrollHeight)):l.top-i<a.top&&yb(e,Math.max(t.offsetTop-i,0))}function _b(){try{return document.createEvent("TouchEvent"),!0}catch(e){return!1}}var Tb=!1,Cb={get passive(){return Tb=!0}},Sb="undefined"!=typeof window?window:{};Sb.addEventListener&&Sb.removeEventListener&&(Sb.addEventListener("p",sb,Cb),Sb.removeEventListener("p",sb,!1));var wb=Tb;function kb(e){return null!=e}function Pb(e,t,a){return e?t:a}var xb=["children","innerProps"],Ab=["children","innerProps"];var Gb,Mb,Rb,Bb=function(e){return"auto"===e?"bottom":e},Ub=Object(mo.createContext)(null),Eb=function(e){var t=e.children,a=e.minMenuHeight,l=e.maxMenuHeight,i=e.menuPlacement,o=e.menuPosition,n=e.menuShouldScrollIntoView,r=e.theme,s=(Object(mo.useContext)(Ub)||{}).setPortalPlacement,c=Object(mo.useRef)(null),u=eu(Object(mo.useState)(l),2),p=u[0],b=u[1],d=eu(Object(mo.useState)(null),2),g=d[0],m=d[1],y=r.spacing.controlHeight;return nb((function(){var e=c.current;if(e){var t="fixed"===o,r=function(e){var t=e.maxHeight,a=e.menuEl,l=e.minHeight,i=e.placement,o=e.shouldScroll,n=e.isFixedPosition,r=e.controlHeight,s=function(e){var t=getComputedStyle(e),a="absolute"===t.position,l=/(auto|scroll)/;if("fixed"===t.position)return document.documentElement;for(var i=e;i=i.parentElement;)if(t=getComputedStyle(i),(!a||"static"!==t.position)&&l.test(t.overflow+t.overflowY+t.overflowX))return i;return document.documentElement}(a),c={placement:"bottom",maxHeight:t};if(!a||!a.offsetParent)return c;var u,p=s.getBoundingClientRect().height,b=a.getBoundingClientRect(),d=b.bottom,g=b.height,m=b.top,y=a.offsetParent.getBoundingClientRect().top,f=n||gb(u=s)?window.innerHeight:u.clientHeight,h=mb(s),v=parseInt(getComputedStyle(a).marginBottom,10),_=parseInt(getComputedStyle(a).marginTop,10),T=y-_,C=f-m,S=T+h,w=p-h-m,k=d-f+h+v,P=h+m-_;switch(i){case"auto":case"bottom":if(C>=g)return{placement:"bottom",maxHeight:t};if(w>=g&&!n)return o&&hb(s,k,160),{placement:"bottom",maxHeight:t};if(!n&&w>=l||n&&C>=l)return o&&hb(s,k,160),{placement:"bottom",maxHeight:n?C-v:w-v};if("auto"===i||n){var x=t,A=n?T:S;return A>=l&&(x=Math.min(A-v-r,t)),{placement:"top",maxHeight:x}}if("bottom"===i)return o&&yb(s,k),{placement:"bottom",maxHeight:t};break;case"top":if(T>=g)return{placement:"top",maxHeight:t};if(S>=g&&!n)return o&&hb(s,P,160),{placement:"top",maxHeight:t};if(!n&&S>=l||n&&T>=l){var G=t;return(!n&&S>=l||n&&T>=l)&&(G=n?T-_:S-_),o&&hb(s,P,160),{placement:"top",maxHeight:G}}return{placement:"bottom",maxHeight:t};default:throw new Error('Invalid placement provided "'.concat(i,'".'))}return c}({maxHeight:l,menuEl:e,minHeight:a,placement:i,shouldScroll:n&&!t,isFixedPosition:t,controlHeight:y});b(r.maxHeight),m(r.placement),null==s||s(r.placement)}}),[l,i,o,n,a,s,y]),t({ref:c,placerProps:Jc(Jc({},e),{},{placement:g||Bb(i),maxHeight:p})})},Ob=function(e,t){var a=e.theme,l=a.spacing.baseUnit,i=a.colors;return Jc({textAlign:"center"},t?{}:{color:i.neutral40,padding:"".concat(2*l,"px ").concat(3*l,"px")})},Lb=Ob,Hb=Ob,jb=["size"],Fb=["innerProps","isRtl","size"],zb={name:"8mmkcg",styles:"display:inline-block;fill:currentColor;line-height:1;stroke:currentColor;stroke-width:0"},Db=function(e){var t=e.size,a=tu(e,jb);return Op("svg",lu({height:t,width:t,viewBox:"0 0 20 20","aria-hidden":"true",focusable:"false",css:zb},a))},Nb=function(e){return Op(Db,lu({size:20},e),Op("path",{d:"M14.348 14.849c-0.469 0.469-1.229 0.469-1.697 0l-2.651-3.030-2.651 3.029c-0.469 0.469-1.229 0.469-1.697 0-0.469-0.469-0.469-1.229 0-1.697l2.758-3.15-2.759-3.152c-0.469-0.469-0.469-1.228 0-1.697s1.228-0.469 1.697 0l2.652 3.031 2.651-3.031c0.469-0.469 1.228-0.469 1.697 0s0.469 1.229 0 1.697l-2.758 3.152 2.758 3.15c0.469 0.469 0.469 1.229 0 1.698z"}))},Ib=function(e){return Op(Db,lu({size:20},e),Op("path",{d:"M4.516 7.548c0.436-0.446 1.043-0.481 1.576 0l3.908 3.747 3.908-3.747c0.533-0.481 1.141-0.446 1.574 0 0.436 0.445 0.408 1.197 0 1.615-0.406 0.418-4.695 4.502-4.695 4.502-0.217 0.223-0.502 0.335-0.787 0.335s-0.57-0.112-0.789-0.335c0 0-4.287-4.084-4.695-4.502s-0.436-1.17 0-1.615z"}))},Vb=function(e,t){var a=e.isFocused,l=e.theme,i=l.spacing.baseUnit,o=l.colors;return Jc({label:"indicatorContainer",display:"flex",transition:"color 150ms"},t?{}:{color:a?o.neutral60:o.neutral20,padding:2*i,":hover":{color:a?o.neutral80:o.neutral40}})},Wb=Vb,qb=Vb,Zb=function(){var e=Lp.apply(void 0,arguments),t="animation-"+e.name;return{name:t,styles:"@keyframes "+t+"{"+e.styles+"}",anim:1,toString:function(){return"_EMO_"+this.name+"_"+this.styles+"_EMO_"}}}(Gb||(Mb=["\n  0%, 80%, 100% { opacity: 0; }\n  40% { opacity: 1; }\n"],Rb||(Rb=Mb.slice(0)),Gb=Object.freeze(Object.defineProperties(Mb,{raw:{value:Object.freeze(Rb)}})))),$b=function(e){var t=e.delay,a=e.offset;return Op("span",{css:Lp({animation:"".concat(Zb," 1s ease-in-out ").concat(t,"ms infinite;"),backgroundColor:"currentColor",borderRadius:"1em",display:"inline-block",marginLeft:a?"1em":void 0,height:"1em",verticalAlign:"top",width:"1em"},"","")})},Yb=["data"],Kb=["innerRef","isDisabled","isHidden","inputClassName"],Jb={gridArea:"1 / 2",font:"inherit",minWidth:"2px",border:0,margin:0,outline:0,padding:0},Xb={flex:"1 1 auto",display:"inline-grid",gridArea:"1 / 1 / 2 / 3",gridTemplateColumns:"0 min-content","&:after":Jc({content:'attr(data-value) " "',visibility:"hidden",whiteSpace:"pre"},Jb)},Qb=function(e){return Jc({label:"input",color:"inherit",background:0,opacity:e?0:1,width:"100%"},Jb)},ed=function(e){var t=e.children,a=e.innerProps;return Op("div",a,t)},td={ClearIndicator:function(e){var t=e.children,a=e.innerProps;return Op("div",lu({},db(e,"clearIndicator",{indicator:!0,"clear-indicator":!0}),a),t||Op(Nb,null))},Control:function(e){var t=e.children,a=e.isDisabled,l=e.isFocused,i=e.innerRef,o=e.innerProps,n=e.menuIsOpen;return Op("div",lu({ref:i},db(e,"control",{control:!0,"control--is-disabled":a,"control--is-focused":l,"control--menu-is-open":n}),o,{"aria-disabled":a||void 0}),t)},DropdownIndicator:function(e){var t=e.children,a=e.innerProps;return Op("div",lu({},db(e,"dropdownIndicator",{indicator:!0,"dropdown-indicator":!0}),a),t||Op(Ib,null))},DownChevron:Ib,CrossIcon:Nb,Group:function(e){var t=e.children,a=e.cx,l=e.getStyles,i=e.getClassNames,o=e.Heading,n=e.headingProps,r=e.innerProps,s=e.label,c=e.theme,u=e.selectProps;return Op("div",lu({},db(e,"group",{group:!0}),r),Op(o,lu({},n,{selectProps:u,theme:c,getStyles:l,getClassNames:i,cx:a}),s),Op("div",null,t))},GroupHeading:function(e){var t=bb(e);t.data;var a=tu(t,Yb);return Op("div",lu({},db(e,"groupHeading",{"group-heading":!0}),a))},IndicatorsContainer:function(e){var t=e.children,a=e.innerProps;return Op("div",lu({},db(e,"indicatorsContainer",{indicators:!0}),a),t)},IndicatorSeparator:function(e){var t=e.innerProps;return Op("span",lu({},t,db(e,"indicatorSeparator",{"indicator-separator":!0})))},Input:function(e){var t=e.cx,a=e.value,l=bb(e),i=l.innerRef,o=l.isDisabled,n=l.isHidden,r=l.inputClassName,s=tu(l,Kb);return Op("div",lu({},db(e,"input",{"input-container":!0}),{"data-value":a||""}),Op("input",lu({className:t({input:!0},r),ref:i,style:Qb(n),disabled:o},s)))},LoadingIndicator:function(e){var t=e.innerProps,a=e.isRtl,l=e.size,i=void 0===l?4:l,o=tu(e,Fb);return Op("div",lu({},db(Jc(Jc({},o),{},{innerProps:t,isRtl:a,size:i}),"loadingIndicator",{indicator:!0,"loading-indicator":!0}),t),Op($b,{delay:0,offset:a}),Op($b,{delay:160,offset:!0}),Op($b,{delay:320,offset:!a}))},Menu:function(e){var t=e.children,a=e.innerRef,l=e.innerProps;return Op("div",lu({},db(e,"menu",{menu:!0}),{ref:a},l),t)},MenuList:function(e){var t=e.children,a=e.innerProps,l=e.innerRef,i=e.isMulti;return Op("div",lu({},db(e,"menuList",{"menu-list":!0,"menu-list--is-multi":i}),{ref:l},a),t)},MenuPortal:function(e){var t=e.appendTo,a=e.children,l=e.controlElement,i=e.innerProps,o=e.menuPlacement,n=e.menuPosition,r=Object(mo.useRef)(null),s=Object(mo.useRef)(null),c=eu(Object(mo.useState)(Bb(o)),2),u=c[0],p=c[1],b=Object(mo.useMemo)((function(){return{setPortalPlacement:p}}),[]),d=eu(Object(mo.useState)(null),2),g=d[0],m=d[1],y=Object(mo.useCallback)((function(){if(l){var e=function(e){var t=e.getBoundingClientRect();return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}(l),t="fixed"===n?0:window.pageYOffset,a=e[u]+t;a===(null==g?void 0:g.offset)&&e.left===(null==g?void 0:g.rect.left)&&e.width===(null==g?void 0:g.rect.width)||m({offset:a,rect:e})}}),[l,n,u,null==g?void 0:g.offset,null==g?void 0:g.rect.left,null==g?void 0:g.rect.width]);nb((function(){y()}),[y]);var f=Object(mo.useCallback)((function(){"function"==typeof s.current&&(s.current(),s.current=null),l&&r.current&&(s.current=function(e,t,a,l){void 0===l&&(l={});const{ancestorScroll:i=!0,ancestorResize:o=!0,elementResize:n="function"==typeof ResizeObserver,layoutShift:r="function"==typeof IntersectionObserver,animationFrame:s=!1}=l,c=tb(e),u=i||o?[...c?Qp(c):[],...Qp(t)]:[];u.forEach(e=>{i&&e.addEventListener("scroll",a,{passive:!0}),o&&e.addEventListener("resize",a)});const p=c&&r?function(e,t){let a,l=null;const i=qp(e);function o(){var e;clearTimeout(a),null==(e=l)||e.disconnect(),l=null}return function n(r,s){void 0===r&&(r=!1),void 0===s&&(s=1),o();const{left:c,top:u,width:p,height:b}=e.getBoundingClientRect();if(r||t(),!p||!b)return;const d={rootMargin:-Dp(u)+"px "+-Dp(i.clientWidth-(c+p))+"px "+-Dp(i.clientHeight-(u+b))+"px "+-Dp(c)+"px",threshold:Fp(0,jp(1,s))||1};let g=!0;function m(e){const t=e[0].intersectionRatio;if(t!==s){if(!g)return n();t?n(!1,t):a=setTimeout(()=>{n(!1,1e-7)},1e3)}g=!1}try{l=new IntersectionObserver(m,{...d,root:i.ownerDocument})}catch(e){l=new IntersectionObserver(m,d)}l.observe(e)}(!0),o}(c,a):null;let b,d=-1,g=null;n&&(g=new ResizeObserver(e=>{let[l]=e;l&&l.target===c&&g&&(g.unobserve(t),cancelAnimationFrame(d),d=requestAnimationFrame(()=>{var e;null==(e=g)||e.observe(t)})),a()}),c&&!s&&g.observe(c),g.observe(t));let m=s?ob(e):null;return s&&function t(){const l=ob(e);!m||l.x===m.x&&l.y===m.y&&l.width===m.width&&l.height===m.height||a(),m=l,b=requestAnimationFrame(t)}(),a(),()=>{var e;u.forEach(e=>{i&&e.removeEventListener("scroll",a),o&&e.removeEventListener("resize",a)}),null==p||p(),null==(e=g)||e.disconnect(),g=null,s&&cancelAnimationFrame(b)}}(l,r.current,y,{elementResize:"ResizeObserver"in window}))}),[l,y]);nb((function(){f()}),[f]);var h=Object(mo.useCallback)((function(e){r.current=e,f()}),[f]);if(!t&&"fixed"!==n||!g)return null;var v=Op("div",lu({ref:h},db(Jc(Jc({},e),{},{offset:g.offset,position:n,rect:g.rect}),"menuPortal",{"menu-portal":!0}),i),a);return Op(Ub.Provider,{value:b},t?Object(sn.createPortal)(v,t):v)},LoadingMessage:function(e){var t=e.children,a=void 0===t?"Loading...":t,l=e.innerProps,i=tu(e,Ab);return Op("div",lu({},db(Jc(Jc({},i),{},{children:a,innerProps:l}),"loadingMessage",{"menu-notice":!0,"menu-notice--loading":!0}),l),a)},NoOptionsMessage:function(e){var t=e.children,a=void 0===t?"No options":t,l=e.innerProps,i=tu(e,xb);return Op("div",lu({},db(Jc(Jc({},i),{},{children:a,innerProps:l}),"noOptionsMessage",{"menu-notice":!0,"menu-notice--no-options":!0}),l),a)},MultiValue:function(e){var t=e.children,a=e.components,l=e.data,i=e.innerProps,o=e.isDisabled,n=e.removeProps,r=e.selectProps,s=a.Container,c=a.Label,u=a.Remove;return Op(s,{data:l,innerProps:Jc(Jc({},db(e,"multiValue",{"multi-value":!0,"multi-value--is-disabled":o})),i),selectProps:r},Op(c,{data:l,innerProps:Jc({},db(e,"multiValueLabel",{"multi-value__label":!0})),selectProps:r},t),Op(u,{data:l,innerProps:Jc(Jc({},db(e,"multiValueRemove",{"multi-value__remove":!0})),{},{"aria-label":"Remove ".concat(t||"option")},n),selectProps:r}))},MultiValueContainer:ed,MultiValueLabel:ed,MultiValueRemove:function(e){var t=e.children,a=e.innerProps;return Op("div",lu({role:"button"},a),t||Op(Nb,{size:14}))},Option:function(e){var t=e.children,a=e.isDisabled,l=e.isFocused,i=e.isSelected,o=e.innerRef,n=e.innerProps;return Op("div",lu({},db(e,"option",{option:!0,"option--is-disabled":a,"option--is-focused":l,"option--is-selected":i}),{ref:o,"aria-disabled":a},n),t)},Placeholder:function(e){var t=e.children,a=e.innerProps;return Op("div",lu({},db(e,"placeholder",{placeholder:!0}),a),t)},SelectContainer:function(e){var t=e.children,a=e.innerProps,l=e.isDisabled,i=e.isRtl;return Op("div",lu({},db(e,"container",{"--is-disabled":l,"--is-rtl":i}),a),t)},SingleValue:function(e){var t=e.children,a=e.isDisabled,l=e.innerProps;return Op("div",lu({},db(e,"singleValue",{"single-value":!0,"single-value--is-disabled":a}),l),t)},ValueContainer:function(e){var t=e.children,a=e.innerProps,l=e.isMulti,i=e.hasValue;return Op("div",lu({},db(e,"valueContainer",{"value-container":!0,"value-container--is-multi":l,"value-container--has-value":i}),a),t)}},ad=Number.isNaN||function(e){return"number"==typeof e&&e!=e};function ld(e,t){if(e.length!==t.length)return!1;for(var a=0;a<e.length;a++)if(!((l=e[a])===(i=t[a])||ad(l)&&ad(i)))return!1;var l,i;return!0}for(var id={name:"7pg0cj-a11yText",styles:"label:a11yText;z-index:9999;border:0;clip:rect(1px, 1px, 1px, 1px);height:1px;width:1px;position:absolute;overflow:hidden;padding:0;white-space:nowrap"},od=function(e){return Op("span",lu({css:id},e))},nd={guidance:function(e){var t=e.isSearchable,a=e.isMulti,l=e.tabSelectsValue,i=e.context,o=e.isInitialFocus;switch(i){case"menu":return"Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu".concat(l?", press Tab to select the option and exit the menu":"",".");case"input":return o?"".concat(e["aria-label"]||"Select"," is focused ").concat(t?",type to refine list":"",", press Down to open the menu, ").concat(a?" press left to focus selected values":""):"";case"value":return"Use left and right to toggle between focused values, press Backspace to remove the currently focused value";default:return""}},onChange:function(e){var t=e.action,a=e.label,l=void 0===a?"":a,i=e.labels,o=e.isDisabled;switch(t){case"deselect-option":case"pop-value":case"remove-value":return"option ".concat(l,", deselected.");case"clear":return"All selected options have been cleared.";case"initial-input-focus":return"option".concat(i.length>1?"s":""," ").concat(i.join(","),", selected.");case"select-option":return"option ".concat(l,o?" is disabled. Select another option.":", selected.");default:return""}},onFocus:function(e){var t=e.context,a=e.focused,l=e.options,i=e.label,o=void 0===i?"":i,n=e.selectValue,r=e.isDisabled,s=e.isSelected,c=e.isAppleDevice,u=function(e,t){return e&&e.length?"".concat(e.indexOf(t)+1," of ").concat(e.length):""};if("value"===t&&n)return"value ".concat(o," focused, ").concat(u(n,a),".");if("menu"===t&&c){var p=r?" disabled":"",b="".concat(s?" selected":"").concat(p);return"".concat(o).concat(b,", ").concat(u(l,a),".")}return""},onFilter:function(e){var t=e.inputValue,a=e.resultsMessage;return"".concat(a).concat(t?" for search term "+t:"",".")}},rd=function(e){var t=e.ariaSelection,a=e.focusedOption,l=e.focusedValue,i=e.focusableOptions,o=e.isFocused,n=e.selectValue,r=e.selectProps,s=e.id,c=e.isAppleDevice,u=r.ariaLiveMessages,p=r.getOptionLabel,b=r.inputValue,d=r.isMulti,g=r.isOptionDisabled,m=r.isSearchable,y=r.menuIsOpen,f=r.options,h=r.screenReaderStatus,v=r.tabSelectsValue,_=r.isLoading,T=r["aria-label"],C=r["aria-live"],S=Object(mo.useMemo)((function(){return Jc(Jc({},nd),u||{})}),[u]),w=Object(mo.useMemo)((function(){var e,a="";if(t&&S.onChange){var l=t.option,i=t.options,o=t.removedValue,r=t.removedValues,s=t.value,c=o||l||(e=s,Array.isArray(e)?null:e),u=c?p(c):"",b=i||r||void 0,d=b?b.map(p):[],m=Jc({isDisabled:c&&g(c,n),label:u,labels:d},t);a=S.onChange(m)}return a}),[t,S,g,n,p]),k=Object(mo.useMemo)((function(){var e="",t=a||l,o=!!(a&&n&&n.includes(a));if(t&&S.onFocus){var r={focused:t,label:p(t),isDisabled:g(t,n),isSelected:o,options:i,context:t===a?"menu":"value",selectValue:n,isAppleDevice:c};e=S.onFocus(r)}return e}),[a,l,p,g,S,i,n,c]),P=Object(mo.useMemo)((function(){var e="";if(y&&f.length&&!_&&S.onFilter){var t=h({count:i.length});e=S.onFilter({inputValue:b,resultsMessage:t})}return e}),[i,b,y,S,f,h,_]),x="initial-input-focus"===(null==t?void 0:t.action),A=Object(mo.useMemo)((function(){var e="";if(S.guidance){var t=l?"value":y?"menu":"input";e=S.guidance({"aria-label":T,context:t,isDisabled:a&&g(a,n),isMulti:d,isSearchable:m,tabSelectsValue:v,isInitialFocus:x})}return e}),[T,a,l,d,g,m,y,S,n,v,x]),G=Op(mo.Fragment,null,Op("span",{id:"aria-selection"},w),Op("span",{id:"aria-focused"},k),Op("span",{id:"aria-results"},P),Op("span",{id:"aria-guidance"},A));return Op(mo.Fragment,null,Op(od,{id:s},x&&G),Op(od,{"aria-live":C,"aria-atomic":"false","aria-relevant":"additions text",role:"log"},o&&!x&&G))},sd=[{base:"A",letters:"AⒶAÀÁÂẦẤẪẨÃĀĂẰẮẴẲȦǠÄǞẢÅǺǍȀȂẠẬẶḀĄȺⱯ"},{base:"AA",letters:"Ꜳ"},{base:"AE",letters:"ÆǼǢ"},{base:"AO",letters:"Ꜵ"},{base:"AU",letters:"Ꜷ"},{base:"AV",letters:"ꜸꜺ"},{base:"AY",letters:"Ꜽ"},{base:"B",letters:"BⒷBḂḄḆɃƂƁ"},{base:"C",letters:"CⒸCĆĈĊČÇḈƇȻꜾ"},{base:"D",letters:"DⒹDḊĎḌḐḒḎĐƋƊƉꝹ"},{base:"DZ",letters:"DZDŽ"},{base:"Dz",letters:"DzDž"},{base:"E",letters:"EⒺEÈÉÊỀẾỄỂẼĒḔḖĔĖËẺĚȄȆẸỆȨḜĘḘḚƐƎ"},{base:"F",letters:"FⒻFḞƑꝻ"},{base:"G",letters:"GⒼGǴĜḠĞĠǦĢǤƓꞠꝽꝾ"},{base:"H",letters:"HⒽHĤḢḦȞḤḨḪĦⱧⱵꞍ"},{base:"I",letters:"IⒾIÌÍÎĨĪĬİÏḮỈǏȈȊỊĮḬƗ"},{base:"J",letters:"JⒿJĴɈ"},{base:"K",letters:"KⓀKḰǨḲĶḴƘⱩꝀꝂꝄꞢ"},{base:"L",letters:"LⓁLĿĹĽḶḸĻḼḺŁȽⱢⱠꝈꝆꞀ"},{base:"LJ",letters:"LJ"},{base:"Lj",letters:"Lj"},{base:"M",letters:"MⓂMḾṀṂⱮƜ"},{base:"N",letters:"NⓃNǸŃÑṄŇṆŅṊṈȠƝꞐꞤ"},{base:"NJ",letters:"NJ"},{base:"Nj",letters:"Nj"},{base:"O",letters:"OⓄOÒÓÔỒỐỖỔÕṌȬṎŌṐṒŎȮȰÖȪỎŐǑȌȎƠỜỚỠỞỢỌỘǪǬØǾƆƟꝊꝌ"},{base:"OI",letters:"Ƣ"},{base:"OO",letters:"Ꝏ"},{base:"OU",letters:"Ȣ"},{base:"P",letters:"PⓅPṔṖƤⱣꝐꝒꝔ"},{base:"Q",letters:"QⓆQꝖꝘɊ"},{base:"R",letters:"RⓇRŔṘŘȐȒṚṜŖṞɌⱤꝚꞦꞂ"},{base:"S",letters:"SⓈSẞŚṤŜṠŠṦṢṨȘŞⱾꞨꞄ"},{base:"T",letters:"TⓉTṪŤṬȚŢṰṮŦƬƮȾꞆ"},{base:"TZ",letters:"Ꜩ"},{base:"U",letters:"UⓊUÙÚÛŨṸŪṺŬÜǛǗǕǙỦŮŰǓȔȖƯỪỨỮỬỰỤṲŲṶṴɄ"},{base:"V",letters:"VⓋVṼṾƲꝞɅ"},{base:"VY",letters:"Ꝡ"},{base:"W",letters:"WⓌWẀẂŴẆẄẈⱲ"},{base:"X",letters:"XⓍXẊẌ"},{base:"Y",letters:"YⓎYỲÝŶỸȲẎŸỶỴƳɎỾ"},{base:"Z",letters:"ZⓏZŹẐŻŽẒẔƵȤⱿⱫꝢ"},{base:"a",letters:"aⓐaẚàáâầấẫẩãāăằắẵẳȧǡäǟảåǻǎȁȃạậặḁąⱥɐ"},{base:"aa",letters:"ꜳ"},{base:"ae",letters:"æǽǣ"},{base:"ao",letters:"ꜵ"},{base:"au",letters:"ꜷ"},{base:"av",letters:"ꜹꜻ"},{base:"ay",letters:"ꜽ"},{base:"b",letters:"bⓑbḃḅḇƀƃɓ"},{base:"c",letters:"cⓒcćĉċčçḉƈȼꜿↄ"},{base:"d",letters:"dⓓdḋďḍḑḓḏđƌɖɗꝺ"},{base:"dz",letters:"dzdž"},{base:"e",letters:"eⓔeèéêềếễểẽēḕḗĕėëẻěȅȇẹệȩḝęḙḛɇɛǝ"},{base:"f",letters:"fⓕfḟƒꝼ"},{base:"g",letters:"gⓖgǵĝḡğġǧģǥɠꞡᵹꝿ"},{base:"h",letters:"hⓗhĥḣḧȟḥḩḫẖħⱨⱶɥ"},{base:"hv",letters:"ƕ"},{base:"i",letters:"iⓘiìíîĩīĭïḯỉǐȉȋịįḭɨı"},{base:"j",letters:"jⓙjĵǰɉ"},{base:"k",letters:"kⓚkḱǩḳķḵƙⱪꝁꝃꝅꞣ"},{base:"l",letters:"lⓛlŀĺľḷḹļḽḻſłƚɫⱡꝉꞁꝇ"},{base:"lj",letters:"lj"},{base:"m",letters:"mⓜmḿṁṃɱɯ"},{base:"n",letters:"nⓝnǹńñṅňṇņṋṉƞɲʼnꞑꞥ"},{base:"nj",letters:"nj"},{base:"o",letters:"oⓞoòóôồốỗổõṍȭṏōṑṓŏȯȱöȫỏőǒȍȏơờớỡởợọộǫǭøǿɔꝋꝍɵ"},{base:"oi",letters:"ƣ"},{base:"ou",letters:"ȣ"},{base:"oo",letters:"ꝏ"},{base:"p",letters:"pⓟpṕṗƥᵽꝑꝓꝕ"},{base:"q",letters:"qⓠqɋꝗꝙ"},{base:"r",letters:"rⓡrŕṙřȑȓṛṝŗṟɍɽꝛꞧꞃ"},{base:"s",letters:"sⓢsßśṥŝṡšṧṣṩșşȿꞩꞅẛ"},{base:"t",letters:"tⓣtṫẗťṭțţṱṯŧƭʈⱦꞇ"},{base:"tz",letters:"ꜩ"},{base:"u",letters:"uⓤuùúûũṹūṻŭüǜǘǖǚủůűǔȕȗưừứữửựụṳųṷṵʉ"},{base:"v",letters:"vⓥvṽṿʋꝟʌ"},{base:"vy",letters:"ꝡ"},{base:"w",letters:"wⓦwẁẃŵẇẅẘẉⱳ"},{base:"x",letters:"xⓧxẋẍ"},{base:"y",letters:"yⓨyỳýŷỹȳẏÿỷẙỵƴɏỿ"},{base:"z",letters:"zⓩzźẑżžẓẕƶȥɀⱬꝣ"}],cd=new RegExp("["+sd.map((function(e){return e.letters})).join("")+"]","g"),ud={},pd=0;pd<sd.length;pd++)for(var bd=sd[pd],dd=0;dd<bd.letters.length;dd++)ud[bd.letters[dd]]=bd.base;var gd=function(e){return e.replace(cd,(function(e){return ud[e]}))},md=function(e,t){void 0===t&&(t=ld);var a=null;function l(){for(var l=[],i=0;i<arguments.length;i++)l[i]=arguments[i];if(a&&a.lastThis===this&&t(l,a.lastArgs))return a.lastResult;var o=e.apply(this,l);return a={lastResult:o,lastArgs:l,lastThis:this},o}return l.clear=function(){a=null},l}(gd),yd=function(e){return e.replace(/^\s+|\s+$/g,"")},fd=function(e){return"".concat(e.label," ").concat(e.value)},hd=["innerRef"];function vd(e){var t=e.innerRef,a=function(e){for(var t=arguments.length,a=new Array(t>1?t-1:0),l=1;l<t;l++)a[l-1]=arguments[l];var i=Object.entries(e).filter((function(e){var t=eu(e,1)[0];return!a.includes(t)}));return i.reduce((function(e,t){var a=eu(t,2),l=a[0],i=a[1];return e[l]=i,e}),{})}(tu(e,hd),"onExited","in","enter","exit","appear");return Op("input",lu({ref:t},a,{css:Lp({label:"dummyInput",background:0,border:0,caretColor:"transparent",fontSize:"inherit",gridArea:"1 / 1 / 2 / 3",outline:0,padding:0,width:1,color:"transparent",left:-100,opacity:0,position:"relative",transform:"scale(.01)"},"","")}))}var _d=["boxSizing","height","overflow","paddingRight","position"],Td={boxSizing:"border-box",overflow:"hidden",position:"relative",height:"100%"};function Cd(e){e.cancelable&&e.preventDefault()}function Sd(e){e.stopPropagation()}function wd(){var e=this.scrollTop,t=this.scrollHeight,a=e+this.offsetHeight;0===e?this.scrollTop=1:a===t&&(this.scrollTop=e-1)}function kd(){return"ontouchstart"in window||navigator.maxTouchPoints}var Pd=!("undefined"==typeof window||!window.document||!window.document.createElement),xd=0,Ad={capture:!1,passive:!1},Gd=function(e){var t=e.target;return t.ownerDocument.activeElement&&t.ownerDocument.activeElement.blur()},Md={name:"1kfdb0e",styles:"position:fixed;left:0;bottom:0;right:0;top:0"};function Rd(e){var t=e.children,a=e.lockEnabled,l=e.captureEnabled,i=function(e){var t=e.isEnabled,a=e.onBottomArrive,l=e.onBottomLeave,i=e.onTopArrive,o=e.onTopLeave,n=Object(mo.useRef)(!1),r=Object(mo.useRef)(!1),s=Object(mo.useRef)(0),c=Object(mo.useRef)(null),u=Object(mo.useCallback)((function(e,t){if(null!==c.current){var s=c.current,u=s.scrollTop,p=s.scrollHeight,b=s.clientHeight,d=c.current,g=t>0,m=p-b-u,y=!1;m>t&&n.current&&(l&&l(e),n.current=!1),g&&r.current&&(o&&o(e),r.current=!1),g&&t>m?(a&&!n.current&&a(e),d.scrollTop=p,y=!0,n.current=!0):!g&&-t>u&&(i&&!r.current&&i(e),d.scrollTop=0,y=!0,r.current=!0),y&&function(e){e.cancelable&&e.preventDefault(),e.stopPropagation()}(e)}}),[a,l,i,o]),p=Object(mo.useCallback)((function(e){u(e,e.deltaY)}),[u]),b=Object(mo.useCallback)((function(e){s.current=e.changedTouches[0].clientY}),[]),d=Object(mo.useCallback)((function(e){var t=s.current-e.changedTouches[0].clientY;u(e,t)}),[u]),g=Object(mo.useCallback)((function(e){if(e){var t=!!wb&&{passive:!1};e.addEventListener("wheel",p,t),e.addEventListener("touchstart",b,t),e.addEventListener("touchmove",d,t)}}),[d,b,p]),m=Object(mo.useCallback)((function(e){e&&(e.removeEventListener("wheel",p,!1),e.removeEventListener("touchstart",b,!1),e.removeEventListener("touchmove",d,!1))}),[d,b,p]);return Object(mo.useEffect)((function(){if(t){var e=c.current;return g(e),function(){m(e)}}}),[t,g,m]),function(e){c.current=e}}({isEnabled:void 0===l||l,onBottomArrive:e.onBottomArrive,onBottomLeave:e.onBottomLeave,onTopArrive:e.onTopArrive,onTopLeave:e.onTopLeave}),o=function(e){var t=e.isEnabled,a=e.accountForScrollbars,l=void 0===a||a,i=Object(mo.useRef)({}),o=Object(mo.useRef)(null),n=Object(mo.useCallback)((function(e){if(Pd){var t=document.body,a=t&&t.style;if(l&&_d.forEach((function(e){var t=a&&a[e];i.current[e]=t})),l&&xd<1){var o=parseInt(i.current.paddingRight,10)||0,n=document.body?document.body.clientWidth:0,r=window.innerWidth-n+o||0;Object.keys(Td).forEach((function(e){var t=Td[e];a&&(a[e]=t)})),a&&(a.paddingRight="".concat(r,"px"))}t&&kd()&&(t.addEventListener("touchmove",Cd,Ad),e&&(e.addEventListener("touchstart",wd,Ad),e.addEventListener("touchmove",Sd,Ad))),xd+=1}}),[l]),r=Object(mo.useCallback)((function(e){if(Pd){var t=document.body,a=t&&t.style;xd=Math.max(xd-1,0),l&&xd<1&&_d.forEach((function(e){var t=i.current[e];a&&(a[e]=t)})),t&&kd()&&(t.removeEventListener("touchmove",Cd,Ad),e&&(e.removeEventListener("touchstart",wd,Ad),e.removeEventListener("touchmove",Sd,Ad)))}}),[l]);return Object(mo.useEffect)((function(){if(t){var e=o.current;return n(e),function(){r(e)}}}),[t,n,r]),function(e){o.current=e}}({isEnabled:a});return Op(mo.Fragment,null,a&&Op("div",{onClick:Gd,css:Md}),t((function(e){i(e),o(e)})))}var Bd={name:"1a0ro4n-requiredInput",styles:"label:requiredInput;opacity:0;pointer-events:none;position:absolute;bottom:0;left:0;right:0;width:100%"},Ud=function(e){var t=e.name,a=e.onFocus;return Op("input",{required:!0,name:t,tabIndex:-1,"aria-hidden":"true",onFocus:a,css:Bd,value:"",onChange:function(){}})};function Ed(e){var t;return"undefined"!=typeof window&&null!=window.navigator&&e.test((null===(t=window.navigator.userAgentData)||void 0===t?void 0:t.platform)||window.navigator.platform)}function Od(){return Ed(/^Mac/i)}var Ld={clearIndicator:qb,container:function(e){var t=e.isDisabled;return{label:"container",direction:e.isRtl?"rtl":void 0,pointerEvents:t?"none":void 0,position:"relative"}},control:function(e,t){var a=e.isDisabled,l=e.isFocused,i=e.theme,o=i.colors,n=i.borderRadius;return Jc({label:"control",alignItems:"center",cursor:"default",display:"flex",flexWrap:"wrap",justifyContent:"space-between",minHeight:i.spacing.controlHeight,outline:"0 !important",position:"relative",transition:"all 100ms"},t?{}:{backgroundColor:a?o.neutral5:o.neutral0,borderColor:a?o.neutral10:l?o.primary:o.neutral20,borderRadius:n,borderStyle:"solid",borderWidth:1,boxShadow:l?"0 0 0 1px ".concat(o.primary):void 0,"&:hover":{borderColor:l?o.primary:o.neutral30}})},dropdownIndicator:Wb,group:function(e,t){var a=e.theme.spacing;return t?{}:{paddingBottom:2*a.baseUnit,paddingTop:2*a.baseUnit}},groupHeading:function(e,t){var a=e.theme,l=a.colors,i=a.spacing;return Jc({label:"group",cursor:"default",display:"block"},t?{}:{color:l.neutral40,fontSize:"75%",fontWeight:500,marginBottom:"0.25em",paddingLeft:3*i.baseUnit,paddingRight:3*i.baseUnit,textTransform:"uppercase"})},indicatorsContainer:function(){return{alignItems:"center",alignSelf:"stretch",display:"flex",flexShrink:0}},indicatorSeparator:function(e,t){var a=e.isDisabled,l=e.theme,i=l.spacing.baseUnit,o=l.colors;return Jc({label:"indicatorSeparator",alignSelf:"stretch",width:1},t?{}:{backgroundColor:a?o.neutral10:o.neutral20,marginBottom:2*i,marginTop:2*i})},input:function(e,t){var a=e.isDisabled,l=e.value,i=e.theme,o=i.spacing,n=i.colors;return Jc(Jc({visibility:a?"hidden":"visible",transform:l?"translateZ(0)":""},Xb),t?{}:{margin:o.baseUnit/2,paddingBottom:o.baseUnit/2,paddingTop:o.baseUnit/2,color:n.neutral80})},loadingIndicator:function(e,t){var a=e.isFocused,l=e.size,i=e.theme,o=i.colors,n=i.spacing.baseUnit;return Jc({label:"loadingIndicator",display:"flex",transition:"color 150ms",alignSelf:"center",fontSize:l,lineHeight:1,marginRight:l,textAlign:"center",verticalAlign:"middle"},t?{}:{color:a?o.neutral60:o.neutral20,padding:2*n})},loadingMessage:Hb,menu:function(e,t){var a,l=e.placement,i=e.theme,o=i.borderRadius,n=i.spacing,r=i.colors;return Jc((Yc(a={label:"menu"},function(e){return e?{bottom:"top",top:"bottom"}[e]:"bottom"}(l),"100%"),Yc(a,"position","absolute"),Yc(a,"width","100%"),Yc(a,"zIndex",1),a),t?{}:{backgroundColor:r.neutral0,borderRadius:o,boxShadow:"0 0 0 1px hsla(0, 0%, 0%, 0.1), 0 4px 11px hsla(0, 0%, 0%, 0.1)",marginBottom:n.menuGutter,marginTop:n.menuGutter})},menuList:function(e,t){var a=e.maxHeight,l=e.theme.spacing.baseUnit;return Jc({maxHeight:a,overflowY:"auto",position:"relative",WebkitOverflowScrolling:"touch"},t?{}:{paddingBottom:l,paddingTop:l})},menuPortal:function(e){var t=e.rect,a=e.offset,l=e.position;return{left:t.left,position:l,top:a,width:t.width,zIndex:1}},multiValue:function(e,t){var a=e.theme,l=a.spacing,i=a.borderRadius,o=a.colors;return Jc({label:"multiValue",display:"flex",minWidth:0},t?{}:{backgroundColor:o.neutral10,borderRadius:i/2,margin:l.baseUnit/2})},multiValueLabel:function(e,t){var a=e.theme,l=a.borderRadius,i=a.colors,o=e.cropWithEllipsis;return Jc({overflow:"hidden",textOverflow:o||void 0===o?"ellipsis":void 0,whiteSpace:"nowrap"},t?{}:{borderRadius:l/2,color:i.neutral80,fontSize:"85%",padding:3,paddingLeft:6})},multiValueRemove:function(e,t){var a=e.theme,l=a.spacing,i=a.borderRadius,o=a.colors,n=e.isFocused;return Jc({alignItems:"center",display:"flex"},t?{}:{borderRadius:i/2,backgroundColor:n?o.dangerLight:void 0,paddingLeft:l.baseUnit,paddingRight:l.baseUnit,":hover":{backgroundColor:o.dangerLight,color:o.danger}})},noOptionsMessage:Lb,option:function(e,t){var a=e.isDisabled,l=e.isFocused,i=e.isSelected,o=e.theme,n=o.spacing,r=o.colors;return Jc({label:"option",cursor:"default",display:"block",fontSize:"inherit",width:"100%",userSelect:"none",WebkitTapHighlightColor:"rgba(0, 0, 0, 0)"},t?{}:{backgroundColor:i?r.primary:l?r.primary25:"transparent",color:a?r.neutral20:i?r.neutral0:"inherit",padding:"".concat(2*n.baseUnit,"px ").concat(3*n.baseUnit,"px"),":active":{backgroundColor:a?void 0:i?r.primary:r.primary50}})},placeholder:function(e,t){var a=e.theme,l=a.spacing,i=a.colors;return Jc({label:"placeholder",gridArea:"1 / 1 / 2 / 3"},t?{}:{color:i.neutral50,marginLeft:l.baseUnit/2,marginRight:l.baseUnit/2})},singleValue:function(e,t){var a=e.isDisabled,l=e.theme,i=l.spacing,o=l.colors;return Jc({label:"singleValue",gridArea:"1 / 1 / 2 / 3",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},t?{}:{color:a?o.neutral40:o.neutral80,marginLeft:i.baseUnit/2,marginRight:i.baseUnit/2})},valueContainer:function(e,t){var a=e.theme.spacing,l=e.isMulti,i=e.hasValue,o=e.selectProps.controlShouldRenderValue;return Jc({alignItems:"center",display:l&&i&&o?"flex":"grid",flex:1,flexWrap:"wrap",WebkitOverflowScrolling:"touch",position:"relative",overflow:"hidden"},t?{}:{padding:"".concat(a.baseUnit/2,"px ").concat(2*a.baseUnit,"px")})}},Hd={borderRadius:4,colors:{primary:"#2684FF",primary75:"#4C9AFF",primary50:"#B2D4FF",primary25:"#DEEBFF",danger:"#DE350B",dangerLight:"#FFBDAD",neutral0:"hsl(0, 0%, 100%)",neutral5:"hsl(0, 0%, 95%)",neutral10:"hsl(0, 0%, 90%)",neutral20:"hsl(0, 0%, 80%)",neutral30:"hsl(0, 0%, 70%)",neutral40:"hsl(0, 0%, 60%)",neutral50:"hsl(0, 0%, 50%)",neutral60:"hsl(0, 0%, 40%)",neutral70:"hsl(0, 0%, 30%)",neutral80:"hsl(0, 0%, 20%)",neutral90:"hsl(0, 0%, 10%)"},spacing:{baseUnit:4,controlHeight:38,menuGutter:8}},jd={"aria-live":"polite",backspaceRemovesValue:!0,blurInputOnSelect:_b(),captureMenuScroll:!_b(),classNames:{},closeMenuOnSelect:!0,closeMenuOnScroll:!1,components:{},controlShouldRenderValue:!0,escapeClearsValue:!1,filterOption:function(e,t){if(e.data.__isNew__)return!0;var a=Jc({ignoreCase:!0,ignoreAccents:!0,stringify:fd,trim:!0,matchFrom:"any"},void 0),l=a.ignoreCase,i=a.ignoreAccents,o=a.stringify,n=a.trim,r=a.matchFrom,s=n?yd(t):t,c=n?yd(o(e)):o(e);return l&&(s=s.toLowerCase(),c=c.toLowerCase()),i&&(s=md(s),c=gd(c)),"start"===r?c.substr(0,s.length)===s:c.indexOf(s)>-1},formatGroupLabel:function(e){return e.label},getOptionLabel:function(e){return e.label},getOptionValue:function(e){return e.value},isDisabled:!1,isLoading:!1,isMulti:!1,isRtl:!1,isSearchable:!0,isOptionDisabled:function(e){return!!e.isDisabled},loadingMessage:function(){return"Loading..."},maxMenuHeight:300,minMenuHeight:140,menuIsOpen:!1,menuPlacement:"bottom",menuPosition:"absolute",menuShouldBlockScroll:!1,menuShouldScrollIntoView:!function(){try{return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)}catch(e){return!1}}(),noOptionsMessage:function(){return"No options"},openMenuOnFocus:!1,openMenuOnClick:!0,options:[],pageSize:5,placeholder:"Select...",screenReaderStatus:function(e){var t=e.count;return"".concat(t," result").concat(1!==t?"s":""," available")},styles:{},tabIndex:0,tabSelectsValue:!0,unstyled:!1};function Fd(e,t,a,l){return{type:"option",data:t,isDisabled:Zd(e,t,a),isSelected:$d(e,t,a),label:Wd(e,t),value:qd(e,t),index:l}}function zd(e,t){return e.options.map((function(a,l){if("options"in a){var i=a.options.map((function(a,l){return Fd(e,a,t,l)})).filter((function(t){return Id(e,t)}));return i.length>0?{type:"group",data:a,options:i,index:l}:void 0}var o=Fd(e,a,t,l);return Id(e,o)?o:void 0})).filter(kb)}function Dd(e){return e.reduce((function(e,t){return"group"===t.type?e.push.apply(e,uu(t.options.map((function(e){return e.data})))):e.push(t.data),e}),[])}function Nd(e,t){return e.reduce((function(e,a){return"group"===a.type?e.push.apply(e,uu(a.options.map((function(e){return{data:e.data,id:"".concat(t,"-").concat(a.index,"-").concat(e.index)}})))):e.push({data:a.data,id:"".concat(t,"-").concat(a.index)}),e}),[])}function Id(e,t){var a=e.inputValue,l=void 0===a?"":a,i=t.data,o=t.isSelected,n=t.label,r=t.value;return(!Kd(e)||!o)&&Yd(e,{label:n,value:r,data:i},l)}var Vd=function(e,t){var a;return(null===(a=e.find((function(e){return e.data===t})))||void 0===a?void 0:a.id)||null},Wd=function(e,t){return e.getOptionLabel(t)},qd=function(e,t){return e.getOptionValue(t)};function Zd(e,t,a){return"function"==typeof e.isOptionDisabled&&e.isOptionDisabled(t,a)}function $d(e,t,a){if(a.indexOf(t)>-1)return!0;if("function"==typeof e.isOptionSelected)return e.isOptionSelected(t,a);var l=qd(e,t);return a.some((function(t){return qd(e,t)===l}))}function Yd(e,t,a){return!e.filterOption||e.filterOption(t,a)}var Kd=function(e){var t=e.hideSelectedOptions,a=e.isMulti;return void 0===t?a:t},Jd=1,Xd=function(e){!function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),t&&ou(e,t)}(r,e);var t,a,l,i,o,n=(i=r,o=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}(),function(){var e,t=nu(i);if(o){var a=nu(this).constructor;e=Reflect.construct(t,arguments,a)}else e=t.apply(this,arguments);return cu(this,e)});function r(e){var t;if(function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r),(t=n.call(this,e)).state={ariaSelection:null,focusedOption:null,focusedOptionId:null,focusableOptionsWithIds:[],focusedValue:null,inputIsHidden:!1,isFocused:!1,selectValue:[],clearFocusValueOnUpdate:!1,prevWasFocused:!1,inputIsHiddenAfterUpdate:void 0,prevProps:void 0,instancePrefix:""},t.blockOptionHover=!1,t.isComposing=!1,t.commonProps=void 0,t.initialTouchX=0,t.initialTouchY=0,t.openAfterFocus=!1,t.scrollToFocusedOptionOnUpdate=!1,t.userIsDragging=void 0,t.isAppleDevice=Od()||Ed(/^iPhone/i)||Ed(/^iPad/i)||Od()&&navigator.maxTouchPoints>1,t.controlRef=null,t.getControlRef=function(e){t.controlRef=e},t.focusedOptionRef=null,t.getFocusedOptionRef=function(e){t.focusedOptionRef=e},t.menuListRef=null,t.getMenuListRef=function(e){t.menuListRef=e},t.inputRef=null,t.getInputRef=function(e){t.inputRef=e},t.focus=t.focusInput,t.blur=t.blurInput,t.onChange=function(e,a){var l=t.props,i=l.onChange,o=l.name;a.name=o,t.ariaOnChange(e,a),i(e,a)},t.setValue=function(e,a,l){var i=t.props,o=i.closeMenuOnSelect,n=i.isMulti,r=i.inputValue;t.onInputChange("",{action:"set-value",prevInputValue:r}),o&&(t.setState({inputIsHiddenAfterUpdate:!n}),t.onMenuClose()),t.setState({clearFocusValueOnUpdate:!0}),t.onChange(e,{action:a,option:l})},t.selectOption=function(e){var a=t.props,l=a.blurInputOnSelect,i=a.isMulti,o=a.name,n=t.state.selectValue,r=i&&t.isOptionSelected(e,n),s=t.isOptionDisabled(e,n);if(r){var c=t.getOptionValue(e);t.setValue(n.filter((function(e){return t.getOptionValue(e)!==c})),"deselect-option",e)}else{if(s)return void t.ariaOnChange(e,{action:"select-option",option:e,name:o});i?t.setValue([].concat(uu(n),[e]),"select-option",e):t.setValue(e,"select-option")}l&&t.blurInput()},t.removeValue=function(e){var a=t.props.isMulti,l=t.state.selectValue,i=t.getOptionValue(e),o=l.filter((function(e){return t.getOptionValue(e)!==i})),n=Pb(a,o,o[0]||null);t.onChange(n,{action:"remove-value",removedValue:e}),t.focusInput()},t.clearValue=function(){var e=t.state.selectValue;t.onChange(Pb(t.props.isMulti,[],null),{action:"clear",removedValues:e})},t.popValue=function(){var e=t.props.isMulti,a=t.state.selectValue,l=a[a.length-1],i=a.slice(0,a.length-1),o=Pb(e,i,i[0]||null);l&&t.onChange(o,{action:"pop-value",removedValue:l})},t.getFocusedOptionId=function(e){return Vd(t.state.focusableOptionsWithIds,e)},t.getFocusableOptionsWithIds=function(){return Nd(zd(t.props,t.state.selectValue),t.getElementId("option"))},t.getValue=function(){return t.state.selectValue},t.cx=function(){for(var e=arguments.length,a=new Array(e),l=0;l<e;l++)a[l]=arguments[l];return ub.apply(void 0,[t.props.classNamePrefix].concat(a))},t.getOptionLabel=function(e){return Wd(t.props,e)},t.getOptionValue=function(e){return qd(t.props,e)},t.getStyles=function(e,a){var l=t.props.unstyled,i=Ld[e](a,l);i.boxSizing="border-box";var o=t.props.styles[e];return o?o(i,a):i},t.getClassNames=function(e,a){var l,i;return null===(l=(i=t.props.classNames)[e])||void 0===l?void 0:l.call(i,a)},t.getElementId=function(e){return"".concat(t.state.instancePrefix,"-").concat(e)},t.getComponents=function(){return e=t.props,Jc(Jc({},td),e.components);var e},t.buildCategorizedOptions=function(){return zd(t.props,t.state.selectValue)},t.getCategorizedOptions=function(){return t.props.menuIsOpen?t.buildCategorizedOptions():[]},t.buildFocusableOptions=function(){return Dd(t.buildCategorizedOptions())},t.getFocusableOptions=function(){return t.props.menuIsOpen?t.buildFocusableOptions():[]},t.ariaOnChange=function(e,a){t.setState({ariaSelection:Jc({value:e},a)})},t.onMenuMouseDown=function(e){0===e.button&&(e.stopPropagation(),e.preventDefault(),t.focusInput())},t.onMenuMouseMove=function(e){t.blockOptionHover=!1},t.onControlMouseDown=function(e){if(!e.defaultPrevented){var a=t.props.openMenuOnClick;t.state.isFocused?t.props.menuIsOpen?"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&t.onMenuClose():a&&t.openMenu("first"):(a&&(t.openAfterFocus=!0),t.focusInput()),"INPUT"!==e.target.tagName&&"TEXTAREA"!==e.target.tagName&&e.preventDefault()}},t.onDropdownIndicatorMouseDown=function(e){if(!(e&&"mousedown"===e.type&&0!==e.button||t.props.isDisabled)){var a=t.props,l=a.isMulti,i=a.menuIsOpen;t.focusInput(),i?(t.setState({inputIsHiddenAfterUpdate:!l}),t.onMenuClose()):t.openMenu("first"),e.preventDefault()}},t.onClearIndicatorMouseDown=function(e){e&&"mousedown"===e.type&&0!==e.button||(t.clearValue(),e.preventDefault(),t.openAfterFocus=!1,"touchend"===e.type?t.focusInput():setTimeout((function(){return t.focusInput()})))},t.onScroll=function(e){"boolean"==typeof t.props.closeMenuOnScroll?e.target instanceof HTMLElement&&gb(e.target)&&t.props.onMenuClose():"function"==typeof t.props.closeMenuOnScroll&&t.props.closeMenuOnScroll(e)&&t.props.onMenuClose()},t.onCompositionStart=function(){t.isComposing=!0},t.onCompositionEnd=function(){t.isComposing=!1},t.onTouchStart=function(e){var a=e.touches,l=a&&a.item(0);l&&(t.initialTouchX=l.clientX,t.initialTouchY=l.clientY,t.userIsDragging=!1)},t.onTouchMove=function(e){var a=e.touches,l=a&&a.item(0);if(l){var i=Math.abs(l.clientX-t.initialTouchX),o=Math.abs(l.clientY-t.initialTouchY);t.userIsDragging=i>5||o>5}},t.onTouchEnd=function(e){t.userIsDragging||(t.controlRef&&!t.controlRef.contains(e.target)&&t.menuListRef&&!t.menuListRef.contains(e.target)&&t.blurInput(),t.initialTouchX=0,t.initialTouchY=0)},t.onControlTouchEnd=function(e){t.userIsDragging||t.onControlMouseDown(e)},t.onClearIndicatorTouchEnd=function(e){t.userIsDragging||t.onClearIndicatorMouseDown(e)},t.onDropdownIndicatorTouchEnd=function(e){t.userIsDragging||t.onDropdownIndicatorMouseDown(e)},t.handleInputChange=function(e){var a=t.props.inputValue,l=e.currentTarget.value;t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange(l,{action:"input-change",prevInputValue:a}),t.props.menuIsOpen||t.onMenuOpen()},t.onInputFocus=function(e){t.props.onFocus&&t.props.onFocus(e),t.setState({inputIsHiddenAfterUpdate:!1,isFocused:!0}),(t.openAfterFocus||t.props.openMenuOnFocus)&&t.openMenu("first"),t.openAfterFocus=!1},t.onInputBlur=function(e){var a=t.props.inputValue;t.menuListRef&&t.menuListRef.contains(document.activeElement)?t.inputRef.focus():(t.props.onBlur&&t.props.onBlur(e),t.onInputChange("",{action:"input-blur",prevInputValue:a}),t.onMenuClose(),t.setState({focusedValue:null,isFocused:!1}))},t.onOptionHover=function(e){if(!t.blockOptionHover&&t.state.focusedOption!==e){var a=t.getFocusableOptions().indexOf(e);t.setState({focusedOption:e,focusedOptionId:a>-1?t.getFocusedOptionId(e):null})}},t.shouldHideSelectedOptions=function(){return Kd(t.props)},t.onValueInputFocus=function(e){e.preventDefault(),e.stopPropagation(),t.focus()},t.onKeyDown=function(e){var a=t.props,l=a.isMulti,i=a.backspaceRemovesValue,o=a.escapeClearsValue,n=a.inputValue,r=a.isClearable,s=a.isDisabled,c=a.menuIsOpen,u=a.onKeyDown,p=a.tabSelectsValue,b=a.openMenuOnFocus,d=t.state,g=d.focusedOption,m=d.focusedValue,y=d.selectValue;if(!(s||"function"==typeof u&&(u(e),e.defaultPrevented))){switch(t.blockOptionHover=!0,e.key){case"ArrowLeft":if(!l||n)return;t.focusValue("previous");break;case"ArrowRight":if(!l||n)return;t.focusValue("next");break;case"Delete":case"Backspace":if(n)return;if(m)t.removeValue(m);else{if(!i)return;l?t.popValue():r&&t.clearValue()}break;case"Tab":if(t.isComposing)return;if(e.shiftKey||!c||!p||!g||b&&t.isOptionSelected(g,y))return;t.selectOption(g);break;case"Enter":if(229===e.keyCode)break;if(c){if(!g)return;if(t.isComposing)return;t.selectOption(g);break}return;case"Escape":c?(t.setState({inputIsHiddenAfterUpdate:!1}),t.onInputChange("",{action:"menu-close",prevInputValue:n}),t.onMenuClose()):r&&o&&t.clearValue();break;case" ":if(n)return;if(!c){t.openMenu("first");break}if(!g)return;t.selectOption(g);break;case"ArrowUp":c?t.focusOption("up"):t.openMenu("last");break;case"ArrowDown":c?t.focusOption("down"):t.openMenu("first");break;case"PageUp":if(!c)return;t.focusOption("pageup");break;case"PageDown":if(!c)return;t.focusOption("pagedown");break;case"Home":if(!c)return;t.focusOption("first");break;case"End":if(!c)return;t.focusOption("last");break;default:return}e.preventDefault()}},t.state.instancePrefix="react-select-"+(t.props.instanceId||++Jd),t.state.selectValue=pb(e.value),e.menuIsOpen&&t.state.selectValue.length){var a=t.getFocusableOptionsWithIds(),l=t.buildFocusableOptions(),i=l.indexOf(t.state.selectValue[0]);t.state.focusableOptionsWithIds=a,t.state.focusedOption=l[i],t.state.focusedOptionId=Vd(a,l[i])}return t}return t=r,l=[{key:"getDerivedStateFromProps",value:function(e,t){var a=t.prevProps,l=t.clearFocusValueOnUpdate,i=t.inputIsHiddenAfterUpdate,o=t.ariaSelection,n=t.isFocused,r=t.prevWasFocused,s=t.instancePrefix,c=e.options,u=e.value,p=e.menuIsOpen,b=e.inputValue,d=e.isMulti,g=pb(u),m={};if(a&&(u!==a.value||c!==a.options||p!==a.menuIsOpen||b!==a.inputValue)){var y=p?function(e,t){return Dd(zd(e,t))}(e,g):[],f=p?Nd(zd(e,g),"".concat(s,"-option")):[],h=l?function(e,t){var a=e.focusedValue,l=e.selectValue.indexOf(a);if(l>-1){if(t.indexOf(a)>-1)return a;if(l<t.length)return t[l]}return null}(t,g):null,v=function(e,t){var a=e.focusedOption;return a&&t.indexOf(a)>-1?a:t[0]}(t,y);m={selectValue:g,focusedOption:v,focusedOptionId:Vd(f,v),focusableOptionsWithIds:f,focusedValue:h,clearFocusValueOnUpdate:!1}}var _=null!=i&&e!==a?{inputIsHidden:i,inputIsHiddenAfterUpdate:void 0}:{},T=o,C=n&&r;return n&&!C&&(T={value:Pb(d,g,g[0]||null),options:g,action:"initial-input-focus"},C=!r),"initial-input-focus"===(null==o?void 0:o.action)&&(T=null),Jc(Jc(Jc({},m),_),{},{prevProps:e,ariaSelection:T,prevWasFocused:C})}}],(a=[{key:"componentDidMount",value:function(){this.startListeningComposition(),this.startListeningToTouch(),this.props.closeMenuOnScroll&&document&&document.addEventListener&&document.addEventListener("scroll",this.onScroll,!0),this.props.autoFocus&&this.focusInput(),this.props.menuIsOpen&&this.state.focusedOption&&this.menuListRef&&this.focusedOptionRef&&vb(this.menuListRef,this.focusedOptionRef)}},{key:"componentDidUpdate",value:function(e){var t=this.props,a=t.isDisabled,l=t.menuIsOpen,i=this.state.isFocused;(i&&!a&&e.isDisabled||i&&l&&!e.menuIsOpen)&&this.focusInput(),i&&a&&!e.isDisabled?this.setState({isFocused:!1},this.onMenuClose):i||a||!e.isDisabled||this.inputRef!==document.activeElement||this.setState({isFocused:!0}),this.menuListRef&&this.focusedOptionRef&&this.scrollToFocusedOptionOnUpdate&&(vb(this.menuListRef,this.focusedOptionRef),this.scrollToFocusedOptionOnUpdate=!1)}},{key:"componentWillUnmount",value:function(){this.stopListeningComposition(),this.stopListeningToTouch(),document.removeEventListener("scroll",this.onScroll,!0)}},{key:"onMenuOpen",value:function(){this.props.onMenuOpen()}},{key:"onMenuClose",value:function(){this.onInputChange("",{action:"menu-close",prevInputValue:this.props.inputValue}),this.props.onMenuClose()}},{key:"onInputChange",value:function(e,t){this.props.onInputChange(e,t)}},{key:"focusInput",value:function(){this.inputRef&&this.inputRef.focus()}},{key:"blurInput",value:function(){this.inputRef&&this.inputRef.blur()}},{key:"openMenu",value:function(e){var t=this,a=this.state,l=a.selectValue,i=a.isFocused,o=this.buildFocusableOptions(),n="first"===e?0:o.length-1;if(!this.props.isMulti){var r=o.indexOf(l[0]);r>-1&&(n=r)}this.scrollToFocusedOptionOnUpdate=!(i&&this.menuListRef),this.setState({inputIsHiddenAfterUpdate:!1,focusedValue:null,focusedOption:o[n],focusedOptionId:this.getFocusedOptionId(o[n])},(function(){return t.onMenuOpen()}))}},{key:"focusValue",value:function(e){var t=this.state,a=t.selectValue,l=t.focusedValue;if(this.props.isMulti){this.setState({focusedOption:null});var i=a.indexOf(l);l||(i=-1);var o=a.length-1,n=-1;if(a.length){switch(e){case"previous":n=0===i?0:-1===i?o:i-1;break;case"next":i>-1&&i<o&&(n=i+1)}this.setState({inputIsHidden:-1!==n,focusedValue:a[n]})}}}},{key:"focusOption",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"first",t=this.props.pageSize,a=this.state.focusedOption,l=this.getFocusableOptions();if(l.length){var i=0,o=l.indexOf(a);a||(o=-1),"up"===e?i=o>0?o-1:l.length-1:"down"===e?i=(o+1)%l.length:"pageup"===e?(i=o-t)<0&&(i=0):"pagedown"===e?(i=o+t)>l.length-1&&(i=l.length-1):"last"===e&&(i=l.length-1),this.scrollToFocusedOptionOnUpdate=!0,this.setState({focusedOption:l[i],focusedValue:null,focusedOptionId:this.getFocusedOptionId(l[i])})}}},{key:"getTheme",value:function(){return this.props.theme?"function"==typeof this.props.theme?this.props.theme(Hd):Jc(Jc({},Hd),this.props.theme):Hd}},{key:"getCommonProps",value:function(){var e=this.clearValue,t=this.cx,a=this.getStyles,l=this.getClassNames,i=this.getValue,o=this.selectOption,n=this.setValue,r=this.props,s=r.isMulti,c=r.isRtl,u=r.options;return{clearValue:e,cx:t,getStyles:a,getClassNames:l,getValue:i,hasValue:this.hasValue(),isMulti:s,isRtl:c,options:u,selectOption:o,selectProps:r,setValue:n,theme:this.getTheme()}}},{key:"hasValue",value:function(){return this.state.selectValue.length>0}},{key:"hasOptions",value:function(){return!!this.getFocusableOptions().length}},{key:"isClearable",value:function(){var e=this.props,t=e.isClearable,a=e.isMulti;return void 0===t?a:t}},{key:"isOptionDisabled",value:function(e,t){return Zd(this.props,e,t)}},{key:"isOptionSelected",value:function(e,t){return $d(this.props,e,t)}},{key:"filterOption",value:function(e,t){return Yd(this.props,e,t)}},{key:"formatOptionLabel",value:function(e,t){if("function"==typeof this.props.formatOptionLabel){var a=this.props.inputValue,l=this.state.selectValue;return this.props.formatOptionLabel(e,{context:t,inputValue:a,selectValue:l})}return this.getOptionLabel(e)}},{key:"formatGroupLabel",value:function(e){return this.props.formatGroupLabel(e)}},{key:"startListeningComposition",value:function(){document&&document.addEventListener&&(document.addEventListener("compositionstart",this.onCompositionStart,!1),document.addEventListener("compositionend",this.onCompositionEnd,!1))}},{key:"stopListeningComposition",value:function(){document&&document.removeEventListener&&(document.removeEventListener("compositionstart",this.onCompositionStart),document.removeEventListener("compositionend",this.onCompositionEnd))}},{key:"startListeningToTouch",value:function(){document&&document.addEventListener&&(document.addEventListener("touchstart",this.onTouchStart,!1),document.addEventListener("touchmove",this.onTouchMove,!1),document.addEventListener("touchend",this.onTouchEnd,!1))}},{key:"stopListeningToTouch",value:function(){document&&document.removeEventListener&&(document.removeEventListener("touchstart",this.onTouchStart),document.removeEventListener("touchmove",this.onTouchMove),document.removeEventListener("touchend",this.onTouchEnd))}},{key:"renderInput",value:function(){var e=this.props,t=e.isDisabled,a=e.isSearchable,l=e.inputId,i=e.inputValue,o=e.tabIndex,n=e.form,r=e.menuIsOpen,s=e.required,c=this.getComponents().Input,u=this.state,p=u.inputIsHidden,b=u.ariaSelection,d=this.commonProps,g=l||this.getElementId("input"),m=Jc(Jc(Jc({"aria-autocomplete":"list","aria-expanded":r,"aria-haspopup":!0,"aria-errormessage":this.props["aria-errormessage"],"aria-invalid":this.props["aria-invalid"],"aria-label":this.props["aria-label"],"aria-labelledby":this.props["aria-labelledby"],"aria-required":s,role:"combobox","aria-activedescendant":this.isAppleDevice?void 0:this.state.focusedOptionId||""},r&&{"aria-controls":this.getElementId("listbox")}),!a&&{"aria-readonly":!0}),this.hasValue()?"initial-input-focus"===(null==b?void 0:b.action)&&{"aria-describedby":this.getElementId("live-region")}:{"aria-describedby":this.getElementId("placeholder")});return a?mo.createElement(c,lu({},d,{autoCapitalize:"none",autoComplete:"off",autoCorrect:"off",id:g,innerRef:this.getInputRef,isDisabled:t,isHidden:p,onBlur:this.onInputBlur,onChange:this.handleInputChange,onFocus:this.onInputFocus,spellCheck:"false",tabIndex:o,form:n,type:"text",value:i},m)):mo.createElement(vd,lu({id:g,innerRef:this.getInputRef,onBlur:this.onInputBlur,onChange:sb,onFocus:this.onInputFocus,disabled:t,tabIndex:o,inputMode:"none",form:n,value:""},m))}},{key:"renderPlaceholderOrValue",value:function(){var e=this,t=this.getComponents(),a=t.MultiValue,l=t.MultiValueContainer,i=t.MultiValueLabel,o=t.MultiValueRemove,n=t.SingleValue,r=t.Placeholder,s=this.commonProps,c=this.props,u=c.controlShouldRenderValue,p=c.isDisabled,b=c.isMulti,d=c.inputValue,g=c.placeholder,m=this.state,y=m.selectValue,f=m.focusedValue,h=m.isFocused;if(!this.hasValue()||!u)return d?null:mo.createElement(r,lu({},s,{key:"placeholder",isDisabled:p,isFocused:h,innerProps:{id:this.getElementId("placeholder")}}),g);if(b)return y.map((function(t,n){var r=t===f,c="".concat(e.getOptionLabel(t),"-").concat(e.getOptionValue(t));return mo.createElement(a,lu({},s,{components:{Container:l,Label:i,Remove:o},isFocused:r,isDisabled:p,key:c,index:n,removeProps:{onClick:function(){return e.removeValue(t)},onTouchEnd:function(){return e.removeValue(t)},onMouseDown:function(e){e.preventDefault()}},data:t}),e.formatOptionLabel(t,"value"))}));if(d)return null;var v=y[0];return mo.createElement(n,lu({},s,{data:v,isDisabled:p}),this.formatOptionLabel(v,"value"))}},{key:"renderClearIndicator",value:function(){var e=this.getComponents().ClearIndicator,t=this.commonProps,a=this.props,l=a.isDisabled,i=a.isLoading,o=this.state.isFocused;if(!this.isClearable()||!e||l||!this.hasValue()||i)return null;var n={onMouseDown:this.onClearIndicatorMouseDown,onTouchEnd:this.onClearIndicatorTouchEnd,"aria-hidden":"true"};return mo.createElement(e,lu({},t,{innerProps:n,isFocused:o}))}},{key:"renderLoadingIndicator",value:function(){var e=this.getComponents().LoadingIndicator,t=this.commonProps,a=this.props,l=a.isDisabled,i=a.isLoading,o=this.state.isFocused;return e&&i?mo.createElement(e,lu({},t,{innerProps:{"aria-hidden":"true"},isDisabled:l,isFocused:o})):null}},{key:"renderIndicatorSeparator",value:function(){var e=this.getComponents(),t=e.DropdownIndicator,a=e.IndicatorSeparator;if(!t||!a)return null;var l=this.commonProps,i=this.props.isDisabled,o=this.state.isFocused;return mo.createElement(a,lu({},l,{isDisabled:i,isFocused:o}))}},{key:"renderDropdownIndicator",value:function(){var e=this.getComponents().DropdownIndicator;if(!e)return null;var t=this.commonProps,a=this.props.isDisabled,l=this.state.isFocused,i={onMouseDown:this.onDropdownIndicatorMouseDown,onTouchEnd:this.onDropdownIndicatorTouchEnd,"aria-hidden":"true"};return mo.createElement(e,lu({},t,{innerProps:i,isDisabled:a,isFocused:l}))}},{key:"renderMenu",value:function(){var e=this,t=this.getComponents(),a=t.Group,l=t.GroupHeading,i=t.Menu,o=t.MenuList,n=t.MenuPortal,r=t.LoadingMessage,s=t.NoOptionsMessage,c=t.Option,u=this.commonProps,p=this.state.focusedOption,b=this.props,d=b.captureMenuScroll,g=b.inputValue,m=b.isLoading,y=b.loadingMessage,f=b.minMenuHeight,h=b.maxMenuHeight,v=b.menuIsOpen,_=b.menuPlacement,T=b.menuPosition,C=b.menuPortalTarget,S=b.menuShouldBlockScroll,w=b.menuShouldScrollIntoView,k=b.noOptionsMessage,P=b.onMenuScrollToTop,x=b.onMenuScrollToBottom;if(!v)return null;var A,G=function(t,a){var l=t.type,i=t.data,o=t.isDisabled,n=t.isSelected,r=t.label,s=t.value,b=p===i,d=o?void 0:function(){return e.onOptionHover(i)},g=o?void 0:function(){return e.selectOption(i)},m="".concat(e.getElementId("option"),"-").concat(a),y={id:m,onClick:g,onMouseMove:d,onMouseOver:d,tabIndex:-1,role:"option","aria-selected":e.isAppleDevice?void 0:n};return mo.createElement(c,lu({},u,{innerProps:y,data:i,isDisabled:o,isSelected:n,key:m,label:r,type:l,value:s,isFocused:b,innerRef:b?e.getFocusedOptionRef:void 0}),e.formatOptionLabel(t.data,"menu"))};if(this.hasOptions())A=this.getCategorizedOptions().map((function(t){if("group"===t.type){var i=t.data,o=t.options,n=t.index,r="".concat(e.getElementId("group"),"-").concat(n),s="".concat(r,"-heading");return mo.createElement(a,lu({},u,{key:r,data:i,options:o,Heading:l,headingProps:{id:s,data:t.data},label:e.formatGroupLabel(t.data)}),t.options.map((function(e){return G(e,"".concat(n,"-").concat(e.index))})))}if("option"===t.type)return G(t,"".concat(t.index))}));else if(m){var M=y({inputValue:g});if(null===M)return null;A=mo.createElement(r,u,M)}else{var R=k({inputValue:g});if(null===R)return null;A=mo.createElement(s,u,R)}var B={minMenuHeight:f,maxMenuHeight:h,menuPlacement:_,menuPosition:T,menuShouldScrollIntoView:w},U=mo.createElement(Eb,lu({},u,B),(function(t){var a=t.ref,l=t.placerProps,n=l.placement,r=l.maxHeight;return mo.createElement(i,lu({},u,B,{innerRef:a,innerProps:{onMouseDown:e.onMenuMouseDown,onMouseMove:e.onMenuMouseMove},isLoading:m,placement:n}),mo.createElement(Rd,{captureEnabled:d,onTopArrive:P,onBottomArrive:x,lockEnabled:S},(function(t){return mo.createElement(o,lu({},u,{innerRef:function(a){e.getMenuListRef(a),t(a)},innerProps:{role:"listbox","aria-multiselectable":u.isMulti,id:e.getElementId("listbox")},isLoading:m,maxHeight:r,focusedOption:p}),A)})))}));return C||"fixed"===T?mo.createElement(n,lu({},u,{appendTo:C,controlElement:this.controlRef,menuPlacement:_,menuPosition:T}),U):U}},{key:"renderFormField",value:function(){var e=this,t=this.props,a=t.delimiter,l=t.isDisabled,i=t.isMulti,o=t.name,n=t.required,r=this.state.selectValue;if(n&&!this.hasValue()&&!l)return mo.createElement(Ud,{name:o,onFocus:this.onValueInputFocus});if(o&&!l){if(i){if(a){var s=r.map((function(t){return e.getOptionValue(t)})).join(a);return mo.createElement("input",{name:o,type:"hidden",value:s})}var c=r.length>0?r.map((function(t,a){return mo.createElement("input",{key:"i-".concat(a),name:o,type:"hidden",value:e.getOptionValue(t)})})):mo.createElement("input",{name:o,type:"hidden",value:""});return mo.createElement("div",null,c)}var u=r[0]?this.getOptionValue(r[0]):"";return mo.createElement("input",{name:o,type:"hidden",value:u})}}},{key:"renderLiveRegion",value:function(){var e=this.commonProps,t=this.state,a=t.ariaSelection,l=t.focusedOption,i=t.focusedValue,o=t.isFocused,n=t.selectValue,r=this.getFocusableOptions();return mo.createElement(rd,lu({},e,{id:this.getElementId("live-region"),ariaSelection:a,focusedOption:l,focusedValue:i,isFocused:o,selectValue:n,focusableOptions:r,isAppleDevice:this.isAppleDevice}))}},{key:"render",value:function(){var e=this.getComponents(),t=e.Control,a=e.IndicatorsContainer,l=e.SelectContainer,i=e.ValueContainer,o=this.props,n=o.className,r=o.id,s=o.isDisabled,c=o.menuIsOpen,u=this.state.isFocused,p=this.commonProps=this.getCommonProps();return mo.createElement(l,lu({},p,{className:n,innerProps:{id:r,onKeyDown:this.onKeyDown},isDisabled:s,isFocused:u}),this.renderLiveRegion(),mo.createElement(t,lu({},p,{innerRef:this.getControlRef,innerProps:{onMouseDown:this.onControlMouseDown,onTouchEnd:this.onControlTouchEnd},isDisabled:s,isFocused:u,menuIsOpen:c}),mo.createElement(i,lu({},p,{isDisabled:s}),this.renderPlaceholderOrValue(),this.renderInput()),mo.createElement(a,lu({},p,{isDisabled:s}),this.renderClearIndicator(),this.renderLoadingIndicator(),this.renderIndicatorSeparator(),this.renderDropdownIndicator())),this.renderMenu(),this.renderFormField())}}])&&iu(t.prototype,a),l&&iu(t,l),r}(mo.Component);Xd.defaultProps=jd,a(203),a(204),a(206);var Qd=Object(mo.forwardRef)((function(e,t){var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U=(i=void 0===(l=(a=e).defaultInputValue)?"":l,n=void 0!==(o=a.defaultMenuIsOpen)&&o,s=void 0===(r=a.defaultValue)?null:r,c=a.inputValue,u=a.menuIsOpen,p=a.onChange,b=a.onInputChange,d=a.onMenuClose,g=a.onMenuOpen,m=a.value,y=tu(a,au),h=(f=eu(Object(mo.useState)(void 0!==c?c:i),2))[0],v=f[1],T=(_=eu(Object(mo.useState)(void 0!==u?u:n),2))[0],C=_[1],w=(S=eu(Object(mo.useState)(void 0!==m?m:s),2))[0],k=S[1],P=Object(mo.useCallback)((function(e,t){"function"==typeof p&&p(e,t),k(e)}),[p]),x=Object(mo.useCallback)((function(e,t){var a;"function"==typeof b&&(a=b(e,t)),v(void 0!==a?a:e)}),[b]),A=Object(mo.useCallback)((function(){"function"==typeof g&&g(),C(!0)}),[g]),G=Object(mo.useCallback)((function(){"function"==typeof d&&d(),C(!1)}),[d]),M=void 0!==c?c:h,R=void 0!==u?u:T,B=void 0!==m?m:w,Jc(Jc({},y),{},{inputValue:M,menuIsOpen:R,onChange:P,onInputChange:x,onMenuClose:G,onMenuOpen:A,value:B}));return mo.createElement(Xd,lu({ref:t},U))}));function eg(){return(eg=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const{uag_select_font_globally:tg,uag_load_select_font_globally:ag}=uagb_blocks_info;var lg,ig=function(e){var t,a;const l=[{value:"Default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg"),weight:["Default","100","200","300","400","500","600","700","800","900"],google:!1},{value:"Arial",label:"Arial",weight:["Default","100","200","300","400","500","600","700","800","900"],google:!1},{value:"Helvetica",label:"Helvetica",weight:["Default","100","200","300","400","500","600","700","800","900"],google:!1},{value:"Times New Roman",label:"Times New Roman",weight:["Default","100","200","300","400","500","600","700","800","900"],google:!1},{value:"Georgia",label:"Georgia",weight:["Default","100","200","300","400","500","600","700","800","900"],google:!1}];let i="";const o=uagb_blocks_info.spectra_custom_fonts;Object.keys($c).map(t=>{l.push({value:t,label:t,weight:$c[t].weight}),t===e.fontFamily.value&&(i=$c[t].weight)}),Object.keys(o).map(t=>{l.push({value:t,label:t,weight:o[t].weight}),t===e.fontFamily.value&&(i=o[t].weight)}),""===i&&(i=l[0].weight);const n=[];i.forEach((function(e){n.push({value:"Default"===e?"":e,label:e})}));const s="enabled"===ag&&0!==tg?tg:l;let c,u;s&&s.map(t=>{e.fontFamily.weight||t.value!==e.fontFamily.value||(c={...e.fontFamily,weight:t.weight,label:t.value})});const p="em"===e.fontSizeType.value?.1:1,b="em"===(null===(t=e.fontSizeTypeMobile)||void 0===t?void 0:t.value)?.1:1,d="em"===(null===(a=e.fontSizeTypeTablet)||void 0===a?void 0:a.value)?.1:1;var g,m;return!0!==e.disableFontSize&&(u=React.createElement(Zc,eg({type:e.fontSizeType,typeLabel:e.fontSizeType.label,typeMobile:e.fontSizeTypeMobile?e.fontSizeTypeMobile:e.fontSizeType,typeLabelMobile:null!==(g=e.fontSizeTypeMobile)&&void 0!==g&&g.label?e.fontSizeTypeMobile.label:e.fontSizeType.label,typeTablet:e.fontSizeTypeTablet?e.fontSizeTypeTablet:e.fontSizeType,typeLabelTablet:null!==(m=e.fontSizeTypeTablet)&&void 0!==m&&m.label?e.fontSizeTypeTablet.label:e.fontSizeType.label,sizeMobile:e.fontSizeMobile,sizeMobileLabel:e.fontSizeMobile.label,sizeTablet:e.fontSizeTablet,sizeTabletLabel:e.fontSizeTablet.label,size:e.fontSize,sizeLabel:e.fontSize.label,min:0,sizeMobileText:e.fontSizeLabel?e.fontSizeLabel:Object(r.__)("Font Size","ultimate-addons-for-gutenberg"),sizeTabletText:e.fontSizeLabel?e.fontSizeLabel:Object(r.__)("Font Size","ultimate-addons-for-gutenberg"),sizeText:e.fontSizeLabel?e.fontSizeLabel:Object(r.__)("Font Size","ultimate-addons-for-gutenberg"),units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("VW","ultimate-addons-for-gutenberg"),unitValue:"vw"}],step:p,stepMobile:b,stepTablet:d},e))),React.createElement(React.Fragment,null,React.createElement("div",{className:"components-base-control uag-font-family-searchable-select__wrapper"},React.createElement("label",{className:"components-input-control__label",htmlFor:"font-family"},Object(r.__)("Font Family","ultimate-addons-for-gutenberg")),React.createElement(Qd,{styles:{container:e=>({...e,width:"100%"}),control:e=>({...e,border:"1px solid #E6E7E9",boxShadow:"none",height:"30px",minHeight:"30px",borderRadius:"3px"}),placeholder:e=>({...e,color:"#50575E"}),menu:e=>({...e,color:"#50575E"}),singleValue:e=>({...e,color:"#50575E",top:"50%"}),indicatorSeparator:e=>({...e,display:"none"}),dropdownIndicator:e=>({...e,color:"#50575E"}),valueContainer:e=>({...e,height:"30px",padding:"0px 8px"}),input:e=>({...e,height:"30px",padding:0,margin:0,'input[type="text"]:focus':{boxShadow:"none"}})},placeholder:Object(r.__)("Default","ultimate-addons-for-gutenberg"),onChange:t=>{const a=t.value,{loadGoogleFonts:l,fontFamily:i}=e;e.setAttributes({[i.label]:a}),((t,a)=>{let l;l=""===a||"object"==typeof $c[a],e.setAttributes({[t.label]:l})})(l,a)},options:s,value:c,defaultValue:c,isSearchable:!0,className:"uag-font-family-searchable-select",classNamePrefix:"uag-font-family-select"})),u,React.createElement(Pi,{label:Object(r.__)("Weight","ultimate-addons-for-gutenberg"),data:{value:e.fontWeight.value,label:e.fontWeight.label},setAttributes:e.setAttributes,options:n}),e.fontStyle&&React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:e.fontStyle.value,label:e.fontStyle.label},setAttributes:e.setAttributes,options:[{value:"normal",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"italic",label:Object(r.__)("Italic","ultimate-addons-for-gutenberg")},{value:"oblique",label:Object(r.__)("Oblique","ultimate-addons-for-gutenberg")}]}))},og=a(101),ng=0,rg={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},sg={};sg.locals=og.a.locals||{},sg.use=function(){return ng++||(lg=ke()(og.a,rg)),sg},sg.unuse=function(){ng>0&&!--ng&&(lg(),lg=null)};var cg=sg;function ug(){return(ug=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var pg,bg=e=>{var t,a,l,i;const[o,s]=Object(B.useState)(null),c=Object(B.useRef)(null),[u,p]=Object(B.useState)(!1),b=Object(j.applyFilters)("uagb.blocksAttributes",za);let d,g,m,y,f,h,v,_;Object(B.useLayoutEffect)(()=>(cg.use(),()=>{cg.unuse()}),[]),Object(B.useLayoutEffect)(()=>{window.addEventListener("click",(function(t){var a,l,i,o,n,r,s,c,u,b,d;const g=document.querySelector(`.active.popup-${null==e||null===(a=e.attributes)||void 0===a?void 0:a.block_id} .spectra-control-popup__options--action-button`),m=document.querySelector(`.active.popup-${null==e||null===(l=e.attributes)||void 0===l?void 0:l.block_id} .spectra-control-popup`);if(g&&(null==g||!g.contains(t.target))&&m&&(null==m||!m.contains(t.target))&&(null===(i=t.target)||void 0===i||null===(o=i.parentElement)||void 0===o||null===(n=o.parentElement)||void 0===n||null===(r=n.classList)||void 0===r||!r.contains("uag-font-family-select__menu"))&&(null===(s=t.target)||void 0===s||null===(c=s.classList)||void 0===c||!c.contains("uag-responsive-common-button"))&&(null===(u=t.target)||void 0===u||!u.closest(".uag-responsive-common-button"))&&(null===(b=t.target)||void 0===b||null===(d=b.parentElement)||void 0===d||!d.closest(".uagb-reset"))){var y;p(!1);const e=null===(y=U())||void 0===y?void 0:y.name,t=te("uagSettingState"),a={...t,[e]:{...null==t?void 0:t[e],selectedSetting:!1}},l=te();l&&l.setItem("uagSettingState",JSON.stringify(a))}}))},[]);const T=u?"active":"",{disableFontFamily:C,disableFontSize:S,disableLineHeight:w,disableTransform:k,disableDecoration:P,disableAdvancedOptions:x=!1,help:A=!1}=e;!0!==C&&(g=React.createElement(ig,e));const G="em"===(null===(t=e.lineHeightType)||void 0===t?void 0:t.value)?.1:1,M="em"===(null===(a=e.letterSpacingType)||void 0===a?void 0:a.value)?.1:1,R=[];C||R.push(e.fontFamily.label,e.fontWeight.label,e.fontStyle.label),S||(R.push(e.fontSizeType.label,e.fontSize.label,e.fontSizeMobile.label,e.fontSizeTablet.label),e.fontSizeTypeMobile&&e.fontSizeTypeTablet&&R.push(e.fontSizeTypeMobile.label,e.fontSizeTypeTablet.label)),w||R.push(e.lineHeightType.label,e.lineHeight.label,e.lineHeightMobile.label,e.lineHeightTablet.label),k||R.push(e.transform.label),P||R.push(e.decoration.label),e.letterSpacing&&R.push(e.letterSpacing.label,e.letterSpacingTablet.label,e.letterSpacingMobile.label,e.letterSpacingType.label);const{getSelectedBlock:U}=Object(n.select)("core/block-editor"),E=null===(l=U())||void 0===l?void 0:l.name.split("/").pop();Object(B.useEffect)(()=>{s(D(c))},[E]);const O=(()=>{var e;const t=(()=>{var e;const t=null===(e=U())||void 0===e?void 0:e.name.split("/").pop();let a=!1;return void 0!==b[t]&&R.forEach(e=>{if(e){var l,i;const o=void 0!==(null===(l=b[t][e])||void 0===l?void 0:l.default)?null===(i=b[t][e])||void 0===i?void 0:i.default:"";a={...a,[e]:o}}}),a})(),a=null===(e=U())||void 0===e?void 0:e.attributes;let l=!1;return R.forEach(e=>{null!=a&&a[e]&&(null==a?void 0:a[e])!==(null==t?void 0:t[e])&&(l=!0)}),l})();!0!==w&&(d=React.createElement(Zc,ug({type:e.lineHeightType,typeLabel:e.lineHeightType.label,sizeMobile:e.lineHeightMobile,sizeMobileLabel:e.lineHeightMobile.label,sizeTablet:e.lineHeightTablet,sizeTabletLabel:e.lineHeightTablet.label,size:e.lineHeight,sizeLabel:e.lineHeight.label,min:0,sizeMobileText:Object(r.__)("Line Height","ultimate-addons-for-gutenberg"),sizeTabletText:Object(r.__)("Line Height","ultimate-addons-for-gutenberg"),sizeText:Object(r.__)("Line Height","ultimate-addons-for-gutenberg"),step:G},e))),e.letterSpacing&&(_=React.createElement(Zc,ug({type:e.letterSpacingType,typeLabel:e.letterSpacingType.label,sizeMobile:e.letterSpacingMobile,sizeMobileLabel:e.letterSpacingMobile.label,sizeTablet:e.letterSpacingTablet,sizeTabletLabel:e.letterSpacingTablet.label,size:e.letterSpacing,sizeLabel:e.letterSpacing.label,min:-50,sizeMobileText:Object(r.__)("Letter Spacing","ultimate-addons-for-gutenberg"),sizeTabletText:Object(r.__)("Letter Spacing","ultimate-addons-for-gutenberg"),sizeText:Object(r.__)("Letter Spacing","ultimate-addons-for-gutenberg"),step:M},e))),!k&&e.transform&&(h=React.createElement(Pi,{label:Object(r.__)("Transform","ultimate-addons-for-gutenberg"),data:{value:e.transform.value,label:e.transform.label},setAttributes:e.setAttributes,options:[{value:"",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"capitalize",label:Object(r.__)("Capitalize","ultimate-addons-for-gutenberg")},{value:"uppercase",label:Object(r.__)("Uppercase","ultimate-addons-for-gutenberg")},{value:"lowercase",label:Object(r.__)("Lowercase","ultimate-addons-for-gutenberg")}]})),!P&&e.decoration&&(v=React.createElement("div",{className:"uag-typography-decoration"},React.createElement(Pi,{label:Object(r.__)("Decoration","ultimate-addons-for-gutenberg"),data:{value:e.decoration.value,label:e.decoration.label},setAttributes:e.setAttributes,options:[{value:"",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"underline",label:Object(r.__)("Underline","ultimate-addons-for-gutenberg")},{value:"overline",label:Object(r.__)("Overline","ultimate-addons-for-gutenberg")},{value:"line-through",label:Object(r.__)("Line Through","ultimate-addons-for-gutenberg")}]}))),!0!==C&&!0!==S?m=React.createElement(Le.Button,{className:"uag-typography-button spectra-control-popup__options--action-button","aria-pressed":u,onClick:()=>{var e;const t=document.querySelectorAll(".spectra-control-popup__options");if(t&&0<t.length)for(let e=0;e<t.length;e++){var a;const l=null===(a=t[e])||void 0===a?void 0:a.querySelector(".spectra-control-popup__options.active .spectra-control-popup__options--action-button");null==l||l.click()}p(!u);const l=null===(e=U())||void 0===e?void 0:e.name,i=te("uagSettingState");let o={...i,[l]:{...null==i?void 0:i[l],selectedSetting:".uag-typography-options"}};u&&(o={...i,[l]:{...null==i?void 0:i[l],selectedSetting:!1}});const n=te();n&&n.setItem("uagSettingState",JSON.stringify(o))}},React.createElement(Le.Dashicon,{icon:"edit"})):f=React.createElement(React.Fragment,null,g,h,v,d,_),!0===u&&(f=React.createElement("div",{className:"uagb-typography-advanced spectra-control-popup"},g,h,v,d,_)),!0!==C&&!0!==S&&(y=React.createElement("div",{className:"spectra-control-popup__options--action-wrapper"},React.createElement("span",{className:"uag-control-label"},e.label,O&&React.createElement("div",{className:"spectra__change-indicator--dot-right"})),m));const L=z(e.label),H=Object(j.applyFilters)(`spectra.${E}.${o}.${L}.before`,"",E),F=Object(j.applyFilters)(`spectra.${E}.${o}.${L}`,"",E);return React.createElement("div",{ref:c,className:"components-base-control"},H,React.createElement("div",{className:` uag-typography-options spectra-control-popup__options popup-${null==e||null===(i=e.attributes)||void 0===i?void 0:i.block_id} ${T}`},!x&&React.createElement(React.Fragment,null,y,f),React.createElement(De,{text:A})),F)},dg=a(102),gg=0,mg={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},yg={};yg.locals=dg.a.locals||{},yg.use=function(){return gg++||(pg=ke()(dg.a,mg)),yg},yg.unuse=function(){gg>0&&!--gg&&(pg(),pg=null)};var fg=yg;function hg(e){var t;let{label:a,type:l,classic:i,gradient:o,setAttributes:s}=e;const[c,u]=Object(B.useState)(null),p=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(fg.use(),()=>{fg.unuse()}),[]);const{getSelectedBlock:b}=Object(n.select)("core/block-editor"),d=null===(t=b())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{u(D(p))},[d]);const g=z(a),m=Object(j.applyFilters)(`spectra.${d}.${c}.${g}.before`,"",d),y=Object(j.applyFilters)(`spectra.${d}.${c}.${g}`,"",d);return React.createElement("div",{ref:p,className:"components-base-control"},m,React.createElement("div",{className:"uagb-color-switch-control-container"},React.createElement(Na,{setAttributes:s,label:a,data:l,className:"uagb-multi-button-alignment-control",options:[{value:"classic",label:Object(r.__)("Classic","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}],showIcons:!1}),"classic"===l.value?React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:i.value,data:{value:i.value,label:i.label},setAttributes:s}):React.createElement(Fl,{backgroundGradient:o,setAttributes:s})),y)}var vg=e=>{var t;const[a,l]=Object(B.useState)(!1),[i,o]=Object(B.useState)(null),s=Object(B.useRef)(null),{setAttributes:c,textShadowColor:u,textShadowHOffset:p,textShadowVOffset:b,textShadowBlur:d,label:g=Object(r.__)("Text Shadow","ultimate-addons-for-gutenberg"),popup:m=!1,blockId:y,help:f=!1}=e;let h;const v=a?"active":"";Object(B.useLayoutEffect)(()=>{window.addEventListener("click",(function(e){var t,a,i,o,n,r;const s=document.querySelector(`.active.popup-${y} .spectra-control-popup__options--action-button`),c=document.querySelector(`.active.popup-${y} .spectra-control-popup`);if(s&&(null==s||!s.contains(e.target))&&(null===(t=e.target)||void 0===t||null===(a=t.classList)||void 0===a||!a.contains("uagb-advanced-color-indicate"))&&(null===(i=e.target)||void 0===i||null===(o=i.parentElement)||void 0===o||!o.closest(".uagb-popover-color"))&&c&&(null==c||!c.contains(e.target))&&(null===(n=e.target)||void 0===n||null===(r=n.parentElement)||void 0===r||!r.closest(".uagb-reset"))){var u;l(!1);const e=null===(u=T())||void 0===u?void 0:u.name,t=te("uagSettingState"),a={...t,[e]:{...null==t?void 0:t[e],selectedSetting:!1}},i=te();i&&i.setItem("uagSettingState",JSON.stringify(a))}}))},[]);const _=[u.label,p.label,b.label,d.label],{getSelectedBlock:T}=Object(n.select)("core/block-editor"),C=null===(t=T())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{o(D(s))},[C]);const S=m&&(()=>{var e;const t=(()=>{var e;const t=null===(e=T())||void 0===e?void 0:e.name.split("/").pop();let a=!1;return void 0!==za[t]&&_.forEach(e=>{if(e){var l,i;const o=void 0!==(null===(l=za[t][e])||void 0===l?void 0:l.default)?null===(i=za[t][e])||void 0===i?void 0:i.default:"";a={...a,[e]:o}}}),a})(),a=null===(e=T())||void 0===e?void 0:e.attributes;let l=!1;return _.forEach(e=>{null!=a&&a[e]&&(null==a?void 0:a[e])!==(null==t?void 0:t[e])&&(l=!0)}),l})(),w=React.createElement(React.Fragment,null,React.createElement(hl,{label:u.title,colorValue:u.value,data:{value:u.value,label:u.label},setAttributes:c}),React.createElement(Qa,{label:p.title,value:p.value,min:-100,max:100,displayUnit:!1,setAttributes:c,data:{value:p.value,label:p.label}}),React.createElement(Qa,{label:b.title,value:b.value,min:-100,max:100,displayUnit:!1,setAttributes:c,data:{value:b.value,label:b.label}}),React.createElement(Qa,{label:d.title,value:d.value,min:0,max:100,displayUnit:!1,setAttributes:c,data:{value:d.value,label:d.label}}));a&&(h=React.createElement("div",{className:"uagb-text-shadow-advanced spectra-control-popup"},w));const k=React.createElement("div",{className:"spectra-control-popup__options--action-wrapper"},React.createElement("span",{className:"uag-control-label"},g,S&&React.createElement("div",{className:"spectra__change-indicator--dot-right"})),React.createElement(Le.Button,{className:"uag-text-shadow-button spectra-control-popup__options--action-button","aria-pressed":a,onClick:()=>{var e;const t=document.querySelectorAll(".spectra-control-popup__options");if(t&&0<t.length)for(let e=0;e<t.length;e++){var i;const a=null===(i=t[e])||void 0===i?void 0:i.querySelector(".spectra-control-popup__options.active .spectra-control-popup__options--action-button");null==a||a.click()}l(!a);const o=null===(e=T())||void 0===e?void 0:e.name,n=te("uagSettingState");let r={...n,[o]:{...null==n?void 0:n[o],selectedSetting:".uag-text-shadow-options"}};a&&(r={...n,[o]:{...null==n?void 0:n[o],selectedSetting:!1}});const s=te();s&&s.setItem("uagSettingState",JSON.stringify(r))}},React.createElement(Le.Dashicon,{icon:"edit"}))),P=z(e.label),x=Object(j.applyFilters)(`spectra.${C}.${i}.${P}.before`,"",C),A=Object(j.applyFilters)(`spectra.${C}.${i}.${P}`,"",C);return React.createElement("div",{ref:s,className:m?"components-base-control":""},x,m?React.createElement("div",{className:` uag-text-shadow-options spectra-control-popup__options popup-${y} ${v}`},k,a&&h):React.createElement(React.Fragment,null,w),React.createElement(De,{text:f}),A)},_g=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=l.toLowerCase(),n=a.replace("uagb/",""),{block_id:r,headingAlign:s,headingAlignTablet:c,headingAlignMobile:u,headingTag:p,headingColor:b,headingColorType:d,headingGradientColor:g,blockBackgroundType:m,blockBackground:y,blockGradientBackground:f,headSpace:h,headSpaceTablet:v,headSpaceMobile:_,seperatorStyle:T,separatorHeight:C,separatorHeightType:S,separatorWidth:w,separatorWidthTablet:k,separatorWidthMobile:P,separatorWidthType:x,separatorColor:A,separatorSpace:G,separatorSpaceTablet:M,separatorSpaceMobile:R,separatorSpaceType:B,subHeadingColor:U,headFontFamily:E,headFontStyle:O,headFontWeight:L,headFontSize:H,headFontSizeType:F,headFontSizeTypeMobile:z,headFontSizeTypeTablet:D,headFontSizeMobile:N,headFontSizeTablet:I,headLineHeight:V,headLineHeightType:W,headLineHeightMobile:q,headLineHeightTablet:Z,headLetterSpacing:$,headLetterSpacingTablet:Y,headLetterSpacingMobile:K,headLetterSpacingType:J,headShadowColor:X,headShadowHOffset:Q,headShadowVOffset:ee,headShadowBlur:te,subHeadFontFamily:le,subHeadFontStyle:ie,subHeadFontWeight:oe,subHeadFontSize:ne,subHeadFontSizeType:re,subHeadFontSizeTypeMobile:se,subHeadFontSizeTypeTablet:ce,subHeadFontSizeMobile:ue,subHeadFontSizeTablet:pe,subHeadLineHeight:be,subHeadLineHeightType:de,subHeadLineHeightMobile:ge,subHeadLineHeightTablet:me,headTransform:ye,headDecoration:fe,subHeadTransform:he,subHeadDecoration:ve,subHeadLetterSpacing:_e,subHeadLetterSpacingTablet:Te,subHeadLetterSpacingMobile:Ce,subHeadLetterSpacingType:Se,blockTopPadding:we,blockRightPadding:ke,blockLeftPadding:Pe,blockBottomPadding:xe,blockTopPaddingTablet:Ae,blockRightPaddingTablet:Ge,blockLeftPaddingTablet:Me,blockBottomPaddingTablet:Re,blockTopPaddingMobile:Be,blockRightPaddingMobile:Ue,blockLeftPaddingMobile:Ee,blockBottomPaddingMobile:Oe,blockPaddingUnit:Le,blockPaddingUnitTablet:He,blockPaddingUnitMobile:je,blockTopMargin:Fe,blockRightMargin:ze,blockLeftMargin:De,blockBottomMargin:Ne,blockTopMarginTablet:Ie,blockRightMarginTablet:Ve,blockLeftMarginTablet:We,blockBottomMarginTablet:qe,blockTopMarginMobile:Ze,blockRightMarginMobile:$e,blockLeftMarginMobile:Ye,blockBottomMarginMobile:Ke,blockMarginUnit:Je,blockMarginUnitTablet:Xe,blockMarginUnitMobile:Qe,linkColor:et,linkHColor:tt,highLightBorderHColor:at,highLightColor:lt,highLightBackground:it,highLightFontFamily:ot,highLightFontWeight:nt,highLightFontStyle:rt,highLightTransform:st,highLightDecoration:ct,highLightFontSizeType:ut,highLightFontSizeTypeTablet:pt,highLightFontSizeTypeMobile:bt,highLightLineHeightType:dt,highLightFontSize:gt,highLightFontSizeTablet:mt,highLightFontSizeMobile:yt,highLightLineHeight:ft,highLightLineHeightTablet:ht,highLightLineHeightMobile:vt,highLightLetterSpacing:_t,highLightLetterSpacingTablet:Tt,highLightLetterSpacingMobile:Ct,highLightLetterSpacingType:St,highLightTopPadding:wt,highLightRightPadding:kt,highLightLeftPadding:Pt,highLightBottomPadding:xt,highLightTopPaddingTablet:At,highLightRightPaddingTablet:Gt,highLightLeftPaddingTablet:Mt,highLightBottomPaddingTablet:Rt,highLightTopPaddingMobile:Bt,highLightRightPaddingMobile:Ut,highLightLeftPaddingMobile:Et,highLightBottomPaddingMobile:Ot,highLightPaddingUnit:Lt,highLightPaddingUnitTablet:Ht,highLightPaddingUnitMobile:jt,subHeadSpace:Ft,subHeadSpaceTablet:zt,subHeadSpaceMobile:Dt,headingDescToggle:Nt}=e;let It={},Vt={},Wt={},qt={};"gradient"===d&&(Wt={"-webkit-text-fill-color":et},qt={"-webkit-text-fill-color":tt});const Zt=rs(e,"highLight"),$t=rs(e,"highLight","tablet"),Yt=rs(e,"highLight","mobile");let Kt={".wp-block-uagb-advanced-heading ":{background:"classic"===m?y:f,"text-align":s,"margin-top":ns(Fe,Je),"margin-right":ns(ze,Je),"margin-bottom":ns(Ne,Je),"margin-left":ns(De,Je),"padding-top":ns(we,Le),"padding-right":ns(ke,Le),"padding-bottom":ns(xe,Le),"padding-left":ns(Pe,Le)}," p.uagb-desc-text":{"font-family":le,"font-style":ie,"text-decoration":ve,"text-transform":he,"font-weight":oe,"font-size":ns(ne,re),"line-height":ns(be,de),"letter-spacing":ns(_e,Se),color:U,"margin-bottom":ns(Ps(Ft,"subHeadSpace",n),"px")},".wp-block-uagb-advanced-heading a":{color:et,...Wt},".wp-block-uagb-advanced-heading span":{color:et,...Wt},".wp-block-uagb-advanced-heading a:hover":{color:tt,...qt},".wp-block-uagb-advanced-heading span:hover":{color:tt,...qt},".wp-block-uagb-advanced-heading .uagb-highlight":{background:it,color:lt,"-webkit-text-fill-color":lt,"font-family":ot,"font-style":rt,"text-decoration":ct,"text-transform":st,"font-weight":nt,"font-size":ns(gt,ut),"line-height":ns(ft,dt),"letter-spacing":ns(_t,St),"padding-top":ns(wt,Lt),"padding-right":ns(kt,Lt),"padding-bottom":ns(xt,Lt),"padding-left":ns(Pt,Lt),...Zt},".wp-block-uagb-advanced-heading .uagb-highlight:hover":{"border-color":at}},Jt={};"gradient"===d&&(Jt={background:g,"-webkit-background-clip":"text","-webkit-text-fill-color":"transparent"});const Xt={color:lt,background:it,"-webkit-text-fill-color":lt};Kt[".wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection"]=Xt,Kt[".wp-block-uagb-advanced-heading .uagb-highlight::selection"]=Xt,Kt[" "+p+".uagb-heading-text"]={"font-family":E,"font-style":O,"text-decoration":fe,"text-transform":ye,"font-weight":L,"font-size":ns(H,F),"line-height":ns(V,W),color:b,"letter-spacing":ns($,J),...Jt};const Qt=X&&ns(Q,"px")+" "+ns(ee,"px")+" "+ns(te,"px")+" "+X;"gradient"===d?Kt[" "+p+".uagb-heading-text"].filter=`drop-shadow(${Qt})`:Kt[" "+p+".uagb-heading-text"]["text-shadow"]=Qt,"none"!==T&&(Kt[" .uagb-separator"]={"border-top-style":T,"border-top-width":ns(Ps(C,"separatorHeight",n),S),width:ns(Ps(w,"separatorWidth",n),x),"border-color":A,"margin-bottom":ns(Ps(G,"separatorSpace",n),B)}),It[".wp-block-uagb-advanced-heading "]={"text-align":c,"margin-top":ns(Ie,Xe),"margin-right":ns(Ve,Xe),"margin-bottom":ns(qe,Xe),"margin-left":ns(We,Xe),"padding-top":ns(Ae,He),"padding-right":ns(Ge,He),"padding-bottom":ns(Re,He),"padding-left":ns(Me,He)},It[" "+p+".uagb-heading-text"]={"font-size":ns(I,D),"line-height":ns(Z,W),"letter-spacing":ns(Y,J)},It[" p.uagb-desc-text"]={"font-size":ns(pe,ce),"line-height":ns(me,de),"letter-spacing":ns(Te,Se),"margin-bottom":ns(Ps(zt,"subHeadSpaceTablet",n),"px")},It[".wp-block-uagb-advanced-heading .uagb-highlight"]={"font-size":ns(mt,pt),"line-height":ns(ht,dt),"letter-spacing":ns(Tt,St),"padding-top":ns(At,Ht),"padding-right":ns(Gt,Ht),"padding-bottom":ns(Rt,Ht),"padding-left":ns(Mt,Ht),...$t},Vt[".wp-block-uagb-advanced-heading "]={"text-align":u,"margin-top":ns(Ze,Qe),"margin-right":ns($e,Qe),"margin-bottom":ns(Ke,Qe),"margin-left":ns(Ye,Qe),"padding-top":ns(Be,je),"padding-right":ns(Ue,je),"padding-bottom":ns(Oe,je),"padding-left":ns(Ee,je)},It[" .uagb-separator"]={width:ns(Ps(k,"separatorWidthTablet",n),x),"margin-bottom":ns(Ps(M,"separatorSpaceTablet",n),B)},Vt[" "+p+".uagb-heading-text"]={"font-size":ns(N,z),"line-height":ns(q,W),"letter-spacing":ns(K,J)},Vt[" p.uagb-desc-text"]={"font-size":ns(ue,se),"line-height":ns(ge,de),"letter-spacing":ns(Ce,Se),"margin-bottom":ns(Ps(Dt,"subHeadSpaceMobile",n),"px")},Vt[".wp-block-uagb-advanced-heading .uagb-highlight"]={"font-size":ns(yt,bt),"line-height":ns(vt,dt),"letter-spacing":ns(Ct,St),"padding-top":ns(Bt,jt),"padding-right":ns(Ut,jt),"padding-bottom":ns(Ot,jt),"padding-left":ns(Et,jt),...Yt},Vt[" .uagb-separator"]={width:ns(Ps(P,"separatorWidthMobile",n),x),"margin-bottom":ns(Ps(R,"separatorSpaceMobile",n),B)},(Nt||"none"!==T)&&(Kt[" .uagb-heading-text"]={"margin-bottom":ns(Ps(h,"headSpace",n),"px")},It[" .uagb-heading-text"]={"margin-bottom":ns(Ps(v,"headSpaceTablet",n),"px")},Vt[" .uagb-heading-text"]={"margin-bottom":ns(Ps(_,"headSpaceMobile",n),"px")});const ea=".editor-styles-wrapper "+(i?i+" ":`#block-${t} .uagb-block-${r}`);Kt=Object(j.applyFilters)(`spectra.${n}.styling`,Kt,e),It=Object(j.applyFilters)(`spectra.${n}.tabletStyling`,It,e),Vt=Object(j.applyFilters)(`spectra.${n}.mobileStyling`,Vt,e);let ta=ae(Kt,ea);return("tablet"===o||"mobile"===o||i)&&(ta+=ae(It,""+ea,!0,"tablet"),("mobile"===o||i)&&(ta+=ae(Vt,""+ea,!0,"mobile"))),ta};function Tg(){return(Tg=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Cg=Object(B.memo)(e=>{const{attributes:t,deviceType:a,setAttributes:l}=e,{block_id:i,headingTitleToggle:o,headingAlign:n,headingAlignTablet:s,headingAlignMobile:c,headingColorType:u,headingColor:p,headingGradientColor:b,blockBackgroundType:d,blockBackground:g,blockGradientBackground:m,subHeadingColor:y,subHeadSpace:f,subHeadSpaceTablet:h,subHeadSpaceMobile:v,subHeadSpaceType:_,separatorColor:T,headingTag:C,headingWrapper:S,headFontFamily:w,headFontWeight:k,headFontStyle:P,headFontSizeType:x,headFontSizeTypeMobile:A,headFontSizeTypeTablet:G,headFontSize:M,headFontSizeMobile:R,headFontSizeTablet:B,headLineHeightType:U,headLineHeight:E,headLineHeightMobile:O,headLineHeightTablet:L,headLetterSpacing:H,headLetterSpacingTablet:j,headLetterSpacingMobile:F,headLetterSpacingType:z,headShadowColor:D,headShadowHOffset:N,headShadowVOffset:I,headShadowBlur:V,headingDescToggle:W,headingDescPosition:q,subHeadFontFamily:Z,subHeadFontWeight:$,subHeadFontStyle:Y,subHeadFontSize:K,subHeadFontSizeType:J,subHeadFontSizeTypeMobile:X,subHeadFontSizeTypeTablet:Q,subHeadFontSizeMobile:ee,subHeadFontSizeTablet:te,subHeadLineHeight:ae,subHeadLineHeightType:le,subHeadLineHeightMobile:ie,subHeadLineHeightTablet:oe,headTransform:ne,headDecoration:re,subHeadTransform:se,subHeadDecoration:ce,separatorWidth:ue,separatorWidthTablet:pe,separatorWidthMobile:be,separatorWidthType:de,seperatorStyle:me,seperatorPosition:ye,separatorHeight:fe,separatorHeightType:he,headSpace:ve,headSpaceTablet:_e,headSpaceMobile:Te,headSpaceType:Se,separatorSpace:we,separatorSpaceTablet:ke,separatorSpaceMobile:Pe,separatorSpaceType:xe,headLoadGoogleFonts:Ae,subHeadLoadGoogleFonts:Ge,subHeadLetterSpacing:Me,subHeadLetterSpacingTablet:Re,subHeadLetterSpacingMobile:Be,subHeadLetterSpacingType:Ue,blockTopPadding:Oe,blockRightPadding:He,blockLeftPadding:je,blockBottomPadding:ze,blockTopPaddingTablet:De,blockRightPaddingTablet:Ne,blockLeftPaddingTablet:Ie,blockBottomPaddingTablet:Ve,blockTopPaddingMobile:We,blockRightPaddingMobile:qe,blockLeftPaddingMobile:Ze,blockBottomPaddingMobile:$e,blockPaddingUnit:Ye,blockPaddingUnitTablet:Ke,blockPaddingUnitMobile:Je,blockPaddingLink:Xe,blockTopMargin:Qe,blockRightMargin:et,blockLeftMargin:tt,blockBottomMargin:at,blockTopMarginTablet:lt,blockRightMarginTablet:it,blockLeftMarginTablet:ot,blockBottomMarginTablet:nt,blockTopMarginMobile:rt,blockRightMarginMobile:st,blockLeftMarginMobile:ct,blockBottomMarginMobile:ut,blockMarginUnit:pt,blockMarginUnitTablet:bt,blockMarginUnitMobile:dt,blockMarginLink:gt,linkColor:mt,linkHColor:yt,highLightColor:ft,highLightBackground:ht,highLightLoadGoogleFonts:vt,highLightFontFamily:_t,highLightFontWeight:Tt,highLightFontStyle:Ct,highLightTransform:St,highLightDecoration:wt,highLightFontSizeType:kt,highLightFontSizeTypeMobile:Pt,highLightFontSizeTypeTablet:xt,highLightLineHeightType:At,highLightFontSize:Gt,highLightFontSizeTablet:Mt,highLightFontSizeMobile:Rt,highLightLineHeight:Bt,highLightLineHeightTablet:Ut,highLightLineHeightMobile:Et,highLightLetterSpacing:Ot,highLightLetterSpacingTablet:Lt,highLightLetterSpacingMobile:Ht,highLightLetterSpacingType:jt,highLightTopPadding:Ft,highLightRightPadding:zt,highLightLeftPadding:Dt,highLightBottomPadding:Nt,highLightTopPaddingTablet:It,highLightRightPaddingTablet:Vt,highLightLeftPaddingTablet:Wt,highLightBottomPaddingTablet:qt,highLightTopPaddingMobile:Zt,highLightRightPaddingMobile:$t,highLightLeftPaddingMobile:Yt,highLightBottomPaddingMobile:Kt,highLightPaddingUnit:Jt,highLightPaddingUnitTablet:Xt,highLightPaddingUnitMobile:Qt,highLightPaddingLink:ea}=t;let ta=[{value:"above-heading",label:Object(r.__)("Above Heading","ultimate-addons-for-gutenberg")},{value:"below-heading",label:Object(r.__)("Below Heading","ultimate-addons-for-gutenberg")},{value:"above-sub-heading",label:Object(r.__)("Above Sub-heading","ultimate-addons-for-gutenberg")},{value:"below-sub-heading",label:Object(r.__)("Below Sub-heading","ultimate-addons-for-gutenberg")}];return o||(ta=[{value:"above-sub-heading",label:Object(r.__)("Above Sub-heading","ultimate-addons-for-gutenberg")},{value:"below-sub-heading",label:Object(r.__)("Below Sub-heading","ultimate-addons-for-gutenberg")}]),W||(ta=[{value:"above-heading",label:Object(r.__)("Above Heading","ultimate-addons-for-gutenberg")},{value:"below-heading",label:Object(r.__)("Below Heading","ultimate-addons-for-gutenberg")}]),W&&"above-heading"===q&&(ta=[{value:"above-heading",label:Object(r.__)("Above Heading","ultimate-addons-for-gutenberg")},{value:"below-heading",label:Object(r.__)("Below Heading","ultimate-addons-for-gutenberg")},{value:"above-sub-heading",label:Object(r.__)("Above Sub-heading","ultimate-addons-for-gutenberg")}]),W&&"below-heading"===q&&(ta=[{value:"above-heading",label:Object(r.__)("Above Heading","ultimate-addons-for-gutenberg")},{value:"below-heading",label:Object(r.__)("Below Heading","ultimate-addons-for-gutenberg")},{value:"below-sub-heading",label:Object(r.__)("Below Sub-heading","ultimate-addons-for-gutenberg")}]),React.createElement("div",null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,Tg({},ol,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:l,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:n,label:"headingAlign"},tablet:{value:s,label:"headingAlignTablet"},mobile:{value:c,label:"headingAlignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>l({headingTitleToggle:!o})}),o&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:C,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")},{value:"div",label:Object(r.__)("Div","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Heading Wrapper","ultimate-addons-for-gutenberg"),data:{value:S,label:"headingWrapper"},options:[{value:"div",label:Object(r.__)("Div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("Header","ultimate-addons-for-gutenberg")}]}))),React.createElement(Fe,{title:Object(r.__)("Sub Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Sub Heading","ultimate-addons-for-gutenberg"),checked:W,onChange:()=>l({headingDescToggle:!W})}),W&&React.createElement(Pi,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:q,label:"headingDescPosition"},setAttributes:l,options:[{value:"above-heading",label:Object(r.__)("Above Heading","ultimate-addons-for-gutenberg")},{value:"below-heading",label:Object(r.__)("Below Heading","ultimate-addons-for-gutenberg")}]})),React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:me,label:"seperatorStyle"},setAttributes:l,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")}]}),"none"!==me&&React.createElement(Pi,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:ye,label:"seperatorPosition"},setAttributes:l,options:ta})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,Tg({},nl,{parentProps:e}),o&&React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hg,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),type:{value:u,label:"headingColorType"},classic:{value:p,label:"headingColor"},gradient:{value:b,label:"headingGradientColor"},setAttributes:l}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:l,loadGoogleFonts:{value:Ae,label:"headLoadGoogleFonts"},fontFamily:{value:w,label:"headFontFamily"},fontWeight:{value:k,label:"headFontWeight"},fontStyle:{value:P,label:"headFontStyle"},transform:{value:ne,label:"headTransform"},decoration:{value:re,label:"headDecoration"},fontSizeType:{value:x,label:"headFontSizeType"},fontSizeTypeMobile:{value:A,label:"headFontSizeTypeMobile"},fontSizeTypeTablet:{value:G,label:"headFontSizeTypeTablet"},fontSize:{value:M,label:"headFontSize"},fontSizeMobile:{value:R,label:"headFontSizeMobile"},fontSizeTablet:{value:B,label:"headFontSizeTablet"},lineHeightType:{value:U,label:"headLineHeightType"},lineHeight:{value:E,label:"headLineHeight"},lineHeightMobile:{value:O,label:"headLineHeightMobile"},lineHeightTablet:{value:L,label:"headLineHeightTablet"},letterSpacing:{value:H,label:"headLetterSpacing"},letterSpacingTablet:{value:j,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:F,label:"headLetterSpacingMobile"},letterSpacingType:{value:z,label:"headLetterSpacingType"}}),React.createElement(vg,{blockId:i,setAttributes:l,label:Object(r.__)("Text Shadow","ultimate-addons-for-gutenberg"),textShadowColor:{value:D,label:"headShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},textShadowHOffset:{value:N,label:"headShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},textShadowVOffset:{value:I,label:"headShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},textShadowBlur:{value:V,label:"headShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},popup:!0}),(W||"none"!==me)&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ve,label:"headSpace"},tablet:{value:_e,label:"headSpaceTablet"},mobile:{value:Te,label:"headSpaceMobile"}},min:0,max:200,unit:{value:Se,label:"headSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l})),"none"!==me&&React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:ue,label:"separatorWidth"},tablet:{value:pe,label:"separatorWidthTablet"},mobile:{value:be,label:"separatorWidthMobile"}},min:0,max:"%"===de?100:500,unit:{value:de,label:"separatorWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:l}),React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:l,value:fe,data:{value:fe,label:"separatorHeight"},min:0,max:20,unit:{value:he,label:"separatorHeightType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:T||"",data:{value:T,label:"separatorColor"},setAttributes:l}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:we,label:"separatorSpace"},tablet:{value:ke,label:"separatorSpaceTablet"},mobile:{value:Pe,label:"separatorSpaceMobile"}},min:0,max:200,unit:{value:xe,label:"separatorSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l})),W&&React.createElement(Fe,{title:Object(r.__)("Sub Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:y||"",data:{value:y,label:"subHeadingColor"},setAttributes:l}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:l,loadGoogleFonts:{value:Ge,label:"subHeadLoadGoogleFonts"},fontFamily:{value:Z,label:"subHeadFontFamily"},fontWeight:{value:$,label:"subHeadFontWeight"},fontStyle:{value:Y,label:"subHeadFontStyle"},transform:{value:se,label:"subHeadTransform"},decoration:{value:ce,label:"subHeadDecoration"},fontSizeType:{value:J,label:"subHeadFontSizeType"},fontSizeTypeMobile:{value:X,label:"subHeadFontSizeTypeMobile"},fontSizeTypeTablet:{value:Q,label:"subHeadFontSizeTypeTablet"},fontSize:{value:K,label:"subHeadFontSize"},fontSizeMobile:{value:ee,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:te,label:"subHeadFontSizeTablet"},lineHeightType:{value:le,label:"subHeadLineHeightType"},lineHeight:{value:ae,label:"subHeadLineHeight"},lineHeightMobile:{value:ie,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:oe,label:"subHeadLineHeightTablet"},letterSpacing:{value:Me,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:Re,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:Be,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:Ue,label:"subHeadLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:f,label:"subHeadSpace"},tablet:{value:h,label:"subHeadSpaceTablet"},mobile:{value:v,label:"subHeadSpaceMobile"}},min:0,max:200,unit:{value:_,label:"subHeadSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l})),React.createElement(Fe,{title:Object(r.__)("Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Below settings will apply to the heading text to which a link is applied.","ultimate-addons-for-gutenberg")),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:mt,data:{value:mt,label:"linkColor"},setAttributes:l}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:yt,data:{value:yt,label:"linkHColor"},setAttributes:l}),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Highlight","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Highlight heading text from toolbar to see the below controls working.","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ft,data:{value:ft,label:"highLightColor"},setAttributes:l}),React.createElement(hl,{label:Object(r.__)("Background","ultimate-addons-for-gutenberg"),colorValue:ht,data:{value:ht,label:"highLightBackground"},setAttributes:l}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:l,loadGoogleFonts:{value:vt,label:"highLightLoadGoogleFonts"},fontFamily:{value:_t,label:"highLightFontFamily"},fontWeight:{value:Tt,label:"highLightFontWeight"},fontStyle:{value:Ct,label:"highLightFontStyle"},transform:{value:St,label:"highLightTransform"},decoration:{value:wt,label:"highLightDecoration"},fontSizeType:{value:kt,label:"highLightFontSizeType"},fontSizeTypeMobile:{value:Pt,label:"highLightFontSizeTypeMobile"},fontSizeTypeTablet:{value:xt,label:"highLightFontSizeTypeTablet"},fontSize:{value:Gt,label:"highLightFontSize"},fontSizeMobile:{value:Rt,label:"highLightFontSizeMobile"},fontSizeTablet:{value:Mt,label:"highLightFontSizeTablet"},lineHeightType:{value:At,label:"highLightLineHeightType"},lineHeight:{value:Bt,label:"highLightLineHeight"},lineHeightMobile:{value:Et,label:"highLightLineHeightMobile"},lineHeightTablet:{value:Ut,label:"highLightLineHeightTablet"},letterSpacing:{value:Ot,label:"highLightLetterSpacing"},letterSpacingTablet:{value:Lt,label:"highLightLetterSpacingTablet"},letterSpacingMobile:{value:Ht,label:"highLightLetterSpacingMobile"},letterSpacingType:{value:jt,label:"highLightLetterSpacingType"}}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ft,label:"highLightTopPadding"},valueRight:{value:zt,label:"highLightRightPadding"},valueBottom:{value:Nt,label:"highLightBottomPadding"},valueLeft:{value:Dt,label:"highLightLeftPadding"},valueTopTablet:{value:It,label:"highLightTopPaddingTablet"},valueRightTablet:{value:Vt,label:"highLightRightPaddingTablet"},valueBottomTablet:{value:qt,label:"highLightBottomPaddingTablet"},valueLeftTablet:{value:Wt,label:"highLightLeftPaddingTablet"},valueTopMobile:{value:Zt,label:"highLightTopPaddingMobile"},valueRightMobile:{value:$t,label:"highLightRightPaddingMobile"},valueBottomMobile:{value:Kt,label:"highLightBottomPaddingMobile"},valueLeftMobile:{value:Yt,label:"highLightLeftPaddingMobile"},unit:{value:Jt,label:"highLightPaddingUnit"},mUnit:{value:Qt,label:"highLightPaddingUnitMobile"},tUnit:{value:Xt,label:"highLightPaddingUnitTablet"},deviceType:a,attributes:t,setAttributes:l,link:{value:ea,label:"highLightPaddingLink"}}),React.createElement(Hi,{setAttributes:l,prefix:"highLight",attributes:t,deviceType:a,disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hg,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),type:{value:d,label:"blockBackgroundType"},classic:{value:g,label:"blockBackground"},gradient:{value:m,label:"blockGradientBackground"},setAttributes:l})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Oe,label:"blockTopPadding"},valueRight:{value:He,label:"blockRightPadding"},valueBottom:{value:ze,label:"blockBottomPadding"},valueLeft:{value:je,label:"blockLeftPadding"},valueTopTablet:{value:De,label:"blockTopPaddingTablet"},valueRightTablet:{value:Ne,label:"blockRightPaddingTablet"},valueBottomTablet:{value:Ve,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:Ie,label:"blockLeftPaddingTablet"},valueTopMobile:{value:We,label:"blockTopPaddingMobile"},valueRightMobile:{value:qe,label:"blockRightPaddingMobile"},valueBottomMobile:{value:$e,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:Ze,label:"blockLeftPaddingMobile"},unit:{value:Ye,label:"blockPaddingUnit"},mUnit:{value:Je,label:"blockPaddingUnitMobile"},tUnit:{value:Ke,label:"blockPaddingUnitTablet"},deviceType:a,attributes:t,setAttributes:l,link:{value:Xe,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Qe,label:"blockTopMargin"},valueRight:{value:et,label:"blockRightMargin"},valueBottom:{value:at,label:"blockBottomMargin"},valueLeft:{value:tt,label:"blockLeftMargin"},valueTopTablet:{value:lt,label:"blockTopMarginTablet"},valueRightTablet:{value:it,label:"blockRightMarginTablet"},valueBottomTablet:{value:nt,label:"blockBottomMarginTablet"},valueLeftTablet:{value:ot,label:"blockLeftMarginTablet"},valueTopMobile:{value:rt,label:"blockTopMarginMobile"},valueRightMobile:{value:st,label:"blockRightMarginMobile"},valueBottomMobile:{value:ut,label:"blockBottomMarginMobile"},valueLeftMobile:{value:ct,label:"blockLeftMarginMobile"},unit:{value:pt,label:"blockMarginUnit"},mUnit:{value:dt,label:"blockMarginUnitMobile"},tUnit:{value:bt,label:"blockMarginUnitTablet"},deviceType:a,attributes:t,setAttributes:l,link:{value:gt,label:"blockMarginLink"}}))),React.createElement(il,Tg({},rl,{parentProps:e}),lc(_g,l,t)))))}),Sg=e=>{const{setAttributes:t,attributes:a,context:l,onReplace:i,mergeBlocks:o,headingHasDynamicContent:n}=e;let{headingTitle:s,headingTag:c}=a,u=!1;if(n){const e=Object(j.applyFilters)("uag_render_text_loop_data",s,l);""!==e&&(u=["uagb/dynamic-content"],s=e)}return React.createElement(ge.RichText,{tagName:c,placeholder:Object(r.__)("Write a Heading","ultimate-addons-for-gutenberg"),value:s,className:"uagb-heading-text",onChange:e=>{t({headingTitle:e})},allowedFormats:u,onMerge:o,onSplit:e=>e?Object(be.createBlock)("uagb/advanced-heading",{...a,headingTitle:e}):Object(be.createBlock)("core/paragraph"),onReplace:i,onRemove:()=>i([])})},wg=e=>{const{setAttributes:t,attributes:a,context:l,onReplace:i,mergeBlocks:o,descriptionHasDynamicContent:n}=e;let{headingDesc:s}=e.attributes,c=!1;if(n){const e=Object(j.applyFilters)("uag_render_text_loop_data",s,l);""!==e&&(c=["uagb/dynamic-content"],s=e)}return React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),value:s,className:"uagb-desc-text",onChange:e=>t({headingDesc:e}),allowedFormats:c,onMerge:o,onSplit:e=>e?Object(be.createBlock)("uagb/advanced-heading",{...a,headingDesc:e}):Object(be.createBlock)("core/paragraph"),onReplace:i,onRemove:()=>i([])})},kg=Object(B.memo)(e=>{const{attributes:{block_id:t,headingTitleToggle:a,headingDescToggle:l,seperatorStyle:i,seperatorPosition:o,headingDescPosition:n,headingWrapper:r},className:s,deviceType:c}=e,u=r||"div",p="none"!==i&&React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"})),b=React.createElement(React.Fragment,null,"above-heading"===o?p:"",React.createElement(Sg,e),"below-heading"===o?p:""),d=React.createElement(React.Fragment,null,"above-sub-heading"===o?p:"",React.createElement(wg,e),"below-sub-heading"===o?p:"");return React.createElement(u,{className:Z([s,"uagb-editor-preview-mode-"+c.toLowerCase(),"uagb-block-"+t])},l&&"above-heading"===n?d:"",a&&b,l&&"below-heading"===n?d:"",l||a?"":p)});a(162);var Pg=Object(B.memo)(e=>{let{attributes:t}=e;const{headLoadGoogleFonts:a,headFontFamily:l,headFontWeight:i,subHeadLoadGoogleFonts:o,subHeadFontFamily:n,subHeadFontWeight:r,highLightLoadGoogleFonts:s,highLightFontFamily:c,highLightFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),xg=Object(L.compose)(vs,fe,Pc)(e=>{const{attributes:t,attributes:{UAGHideDesktop:a,UAGHideTab:l,UAGHideMob:i,headingTitle:o,headingDesc:n},isSelected:r,clientId:s,name:c,deviceType:u,context:p,setAttributes:b}=e,d=-1!==o.indexOf('<span data-spectra-dc-field="'),g=n&&-1!==n.indexOf('<span data-spectra-dc-field="');e={...e,headingHasDynamicContent:d,descriptionHasDynamicContent:g},Object(B.useEffect)(()=>{he(e)},[a,l,i,u]),Object(B.useEffect)(()=>{var e;!d&&!g||null!=t&&null!==(e=t.context)&&void 0!==e&&e.postId||b(e=>({...e,context:p}))},[d,g,null==p?void 0:p.postId]),Object(B.useEffect)(()=>{Bs()},[u]);const m=Object(B.useMemo)(()=>_g(t,s,c,u),[t,u]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:m}),React.createElement(Pg,{attributes:t}),r&&React.createElement(Cg,e),React.createElement(kg,e))});const Ag=ce("highLight"),Gg="yes"===uagb_blocks_info.uagb_old_user_less_than_2?"center":"left",Mg="yes"===uagb_blocks_info.uagb_old_user_less_than_2,Rg={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},headingTitleToggle:{source:"boolean",default:!0},headingTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6"},headingId:{type:"string"},headingDesc:{source:"html",selector:"p",default:""},headingAlign:{type:"string",default:"center"},headingColor:{type:"string"},seperatorPosition:{type:"string",default:"below-heading"},headingDescPosition:{type:"string",default:"below-heading"},subHeadingColor:{type:"string"},separatorColor:{type:"string"},headingTag:{type:"string",default:"h2"},level:{type:"number",default:2},seperatorStyle:{type:"string",default:"solid"},separatorHeight:{type:"number",default:2},separatorWidth:{type:"number",default:12},separatorWidthType:{type:"string",default:"%"},headSpace:{type:"number",default:15},headFontFamily:{type:"string",default:"Default"},headFontWeight:{type:"string"},headFontSubset:{type:"string"},headFontSizeType:{type:"string",default:"px"},headLineHeightType:{type:"string",default:"em"},headFontSize:{type:"number"},headFontSizeTablet:{type:"number"},headFontSizeMobile:{type:"number"},headLineHeight:{type:"number"},headLineHeightTablet:{type:"number"},headLineHeightMobile:{type:"number"},subHeadFontFamily:{type:"string",default:""},subHeadFontWeight:{type:"string"},subHeadFontSubset:{type:"string"},subHeadFontSize:{type:"number"},subHeadFontSizeType:{type:"string",default:"px"},subHeadFontSizeTablet:{type:"number"},subHeadFontSizeMobile:{type:"number"},subHeadLineHeight:{type:"number"},subHeadLineHeightType:{type:"string",default:"em"},subHeadLineHeightTablet:{type:"number"},subHeadLineHeightMobile:{type:"number"},separatorSpace:{type:"number",default:15},headLoadGoogleFonts:{type:"boolean",default:!1},subHeadLoadGoogleFonts:{type:"boolean",default:!1},headingDescToggle:{source:"boolean",default:!0},headSpaceType:{type:"string",default:"px"},separatorHeightType:{type:"string",default:"px"},separatorSpaceType:{type:"string",default:"px"}};var Bg=[{attributes:Rg,save(e){const{block_id:t,headingTitle:a,headingDesc:l,headingTag:i,seperatorStyle:o}=e.attributes;let n="";return"none"!==o&&(n=React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"}))),React.createElement("div",{className:e.className,id:"uagb-adv-heading-"+t},React.createElement(ge.RichText.Content,{tagName:i,value:a,className:"uagb-heading-text"}),n,React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uagb-desc-text"}))}},{attributes:Rg,save(e){const{block_id:t,headingTitle:a,headingDesc:l,headingTag:i,seperatorStyle:o,headingId:n}=e.attributes;let r="";return"none"!==o&&(r=React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"}))),React.createElement("div",{className:e.className,id:"uagb-adv-heading-"+t},React.createElement(ge.RichText.Content,{tagName:i,value:a,className:"uagb-heading-text",id:n}),r,React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uagb-desc-text"}))}},{attributes:Rg,save(e){const{block_id:t,headingTitle:a,headingDesc:l,headingTag:i,seperatorStyle:o,headingId:n}=e.attributes;let r="";return"none"!==o&&(r=React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"}))),React.createElement("div",{className:Be()(e.className,"uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:i,value:a,className:"uagb-heading-text",id:n}),r,React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uagb-desc-text"}))}},{attributes:Rg,save(e){const{block_id:t,headingTitle:a,headingDesc:l,headingTag:i,seperatorStyle:o,headingId:n}=e.attributes;let r="";"none"!==o&&(r=React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"})));let s="";""!==a&&(s=React.createElement(ge.RichText.Content,{tagName:i,value:a,className:"uagb-heading-text",id:n}));let c="";return""!==l&&(c=React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uagb-desc-text"})),React.createElement("div",{className:Be()(e.className,"uagb-block-"+t)},s,r,c)}},{attributes:Rg,save(e){const{block_id:t,headingTitle:a,headingDesc:l,headingTag:i,seperatorStyle:o,headingId:n}=e.attributes;let r="";"none"!==o&&(r=React.createElement("div",{className:"uagb-separator-wrap"},React.createElement("div",{className:"uagb-separator"})));let s="";""!==a&&(s=React.createElement(ge.RichText.Content,{tagName:i,value:a,className:"uagb-heading-text",id:n}));let c="";return""!==l&&(c=React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uagb-desc-text"})),React.createElement("div",{className:Be()(e.className,"uagb-block-"+t)},s,r,c)}},{attributes:{block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},blockBackgroundType:{type:"string",default:"classic",UAGCopyPaste:{styleType:"block-blackground-type"}},blockGradientBackground:{type:"string",default:"linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)",UAGCopyPaste:{styleType:"block-gradient-blackground"}},blockBackground:{type:"string",UAGCopyPaste:{styleType:"block-blackground"}},headingTitleToggle:{type:"boolean",default:!0},headingTitle:{source:"html",selector:".uagb-heading-text",default:Object(r.__)("Your Attractive Heading","ultimate-addons-for-gutenberg")},headingId:{type:"string"},headingDescToggle:{type:"boolean",default:Mg},headingDescPosition:{type:"string",default:"below-heading",UAGCopyPaste:{styleType:"prefix-position"}},headingDesc:{source:"html",selector:".uagb-desc-text"},headingAlign:{type:"string",default:Gg,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColorType:{type:"string",default:"classic",UAGCopyPaste:{styleType:"main-title-color-type"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},headingGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",UAGCopyPaste:{styleType:"main-title-gradient-color"}},subHeadingColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},separatorColor:{type:"string",default:"#0170b9",UAGCopyPaste:{styleType:"separator-color"}},headingTag:{type:"string",default:"h2"},level:{type:"number",default:2},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorPosition:{type:"string",default:"below-heading",UAGCopyPaste:{styleType:"separator-position"}},separatorHeight:{type:"number",UAGCopyPaste:{styleType:"separator-thickness"},default:2},separatorHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-height-type"}},separatorWidth:{type:"number",UAGCopyPaste:{styleType:"separator-width"},default:12},separatorWidthTablet:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},separatorWidthMobile:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},headSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headSpaceMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headSpaceTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-type"}},subHeadSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"sub-title-bottom-margin"}},subHeadSpaceMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"sub-title-bottom-margin-tablet"}},subHeadSpaceTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"sub-title-bottom-margin-mobile"}},subHeadSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"sub-title-unit-type"}},headFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},headShadowColor:{type:"string",default:""},headShadowHOffset:{type:"number",default:0},headShadowVOffset:{type:"number",default:0},headShadowBlur:{type:"number",default:10},subHeadFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},separatorSpace:{type:"number",default:15,UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"separator-bottom-margin"}},separatorSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-type"}},headLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},separatorHoverColor:{type:"string",UAGCopyPaste:{styleType:"separator-hover-color"}},isPreview:{type:"boolean",default:!1},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},blockTopMargin:{type:"number",UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},linkColor:{type:"string",UAGCopyPaste:{styleType:"link-color"}},linkHColor:{type:"string",UAGCopyPaste:{styleType:"link-hover-color"}},highLightColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"highlight-color"}},highLightBackground:{type:"string",default:"#007cba",UAGCopyPaste:{styleType:"highlight-background"}},highLightLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"highlight-load-google-fonts"}},highLightFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"highlight-font-family"}},highLightFontWeight:{type:"string",UAGCopyPaste:{styleType:"highlight-font-weight"}},highLightFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"highlight-font-style"}},highLightTransform:{type:"string",UAGCopyPaste:{styleType:"highlight-font-transform"}},highLightDecoration:{type:"string",UAGCopyPaste:{styleType:"highlight-font-decoration"}},highLightFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-font-size-type"}},highLightLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"highlight-line-height-type"}},highLightFontSize:{type:"number",UAGCopyPaste:{styleType:"highlight-font-size"}},highLightFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-font-size-tablet"}},highLightFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-font-size-mobile"}},highLightLineHeight:{type:"number",UAGCopyPaste:{styleType:"highlight-line-height"}},highLightLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-line-height-tablet"}},highLightLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-line-height-mobile"}},highLightLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"highlight-letter-spacing"}},highLightLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-letter-spacing-tablet"}},highLightLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-letter-spacing-mobile"}},highLightLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-letter-spacing-type"}},highLightTopPadding:{type:"number",UAGCopyPaste:{styleType:"highlight-top-padding"}},highLightRightPadding:{type:"number",UAGCopyPaste:{styleType:"highlight-right-padding"}},highLightLeftPadding:{type:"number",UAGCopyPaste:{styleType:"highlight-left-padding"}},highLightBottomPadding:{type:"number",UAGCopyPaste:{styleType:"highlight-bottom-padding"}},highLightTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-top-padding-tablet"}},highLightRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-right-padding-tablet"}},highLightLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-left-padding-tablet"}},highLightBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"highlight-bottom-padding-tablet"}},highLightTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-top-padding-mobile"}},highLightRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-right-padding-mobile"}},highLightLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-left-padding-mobile"}},highLightBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"highlight-bottom-padding-mobile"}},highLightPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit"}},highLightPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit-tablet"}},highLightPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"highlight-padding-unit-mobile"}},highLightPaddingLink:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"highlight-padding-link"}},...Ag},save:function(e){const{block_id:t,headingTitleToggle:a,headingTitle:l,headingDesc:i,headingDescToggle:o,headingTag:n,seperatorStyle:r,headingId:s,seperatorPosition:c,headingDescPosition:u}=e.attributes;let p="";"none"!==r&&(p=React.createElement("div",{className:"uagb-separator"}));let b="";l&&(b=React.createElement(React.Fragment,null,"above-heading"===c?p:"",React.createElement(ge.RichText.Content,{tagName:n,value:l,className:"uagb-heading-text",id:s}),"below-heading"===c?p:""));let d="";return i&&(d=React.createElement(React.Fragment,null,"above-sub-heading"===c?p:"",React.createElement(ge.RichText.Content,{tagName:"p",value:i,className:"uagb-desc-text"}),"below-sub-heading"===c?p:"")),React.createElement("div",{className:Be()(e.className,"uagb-block-"+t)},o&&"above-heading"===u?d:"",a&&b,o&&"below-heading"===u?d:"")}}],Ug=a(103);Object(Ug.registerFormatType)("uagb/advanced-heading-highlight",{title:"Spectra Highlight",tagName:"mark",className:"uagb-highlight",edit:function(e){let{isActive:t,onChange:a,value:l}=e;const i=Object(n.useSelect)(e=>e("core/block-editor").getSelectedBlock(),[]);return React.createElement(ge.BlockControls,null,i&&"uagb/advanced-heading"===i.name&&React.createElement(Le.ToolbarGroup,{className:"uag-highlight-toolbar",label:"Options"},React.createElement(Le.Tooltip,{text:Object(r.__)("Highlight Text","ultimate-addons-for-gutenberg")},React.createElement(Le.Button,{isPrimary:t,onClick:()=>{a(Object(Ug.toggleFormat)(l,{type:"uagb/advanced-heading-highlight"}))}},React.createElement("span",{className:"dashicons  dashicons-admin-customizer"})))))}});let Eg={};function Og(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase(),{block_id:r,width:s,widthTablet:c,widthMobile:u,height:p,heightTablet:b,heightMobile:d,align:g,alignTablet:m,alignMobile:y,imageTopMargin:f,imageRightMargin:h,imageLeftMargin:v,imageBottomMargin:_,imageTopMarginTablet:T,imageRightMarginTablet:C,imageLeftMarginTablet:S,imageBottomMarginTablet:w,imageTopMarginMobile:k,imageRightMarginMobile:P,imageLeftMarginMobile:x,imageBottomMarginMobile:A,imageMarginUnit:G,imageMarginUnitTablet:M,imageMarginUnitMobile:R,captionShowOn:B,captionAlign:U,captionFontFamily:E,captionFontWeight:O,captionFontStyle:L,captionFontSize:H,captionColor:j,captionTransform:F,captionDecoration:z,captionFontSizeType:D,captionFontSizeTypeMobile:N,captionFontSizeTypeTablet:I,captionFontSizeMobile:V,captionFontSizeTablet:W,captionLineHeight:q,captionLineHeightType:Z,captionLineHeightMobile:$,captionLineHeightTablet:Y,captionTopMargin:K,captionRightMargin:J,captionLeftMargin:X,captionBottomMargin:Q,captionTopMarginTablet:ee,captionRightMarginTablet:te,captionLeftMarginTablet:le,captionBottomMarginTablet:ie,captionTopMarginMobile:oe,captionRightMarginMobile:ne,captionLeftMarginMobile:re,captionBottomMarginMobile:se,captionMarginUnit:ce,captionMarginUnitTablet:ue,captionMarginUnitMobile:pe,headingShowOn:be,headingFontFamily:de,headingFontWeight:ge,headingFontStyle:me,headingFontSize:ye,headingColor:fe,headingTransform:he,headingDecoration:ve,headingFontSizeType:_e,headingFontSizeTypeMobile:Te,headingFontSizeTypeTablet:Ce,headingFontSizeMobile:Se,headingFontSizeTablet:we,headingLineHeight:ke,headingLineHeightType:Pe,headingLineHeightMobile:xe,headingLineHeightTablet:Ae,headingTopMargin:Ge,headingRightMargin:Me,headingLeftMargin:Re,headingBottomMargin:Be,headingTopMarginTablet:Ue,headingRightMarginTablet:Ee,headingLeftMarginTablet:Oe,headingBottomMarginTablet:Le,headingTopMarginMobile:He,headingRightMarginMobile:je,headingLeftMarginMobile:Fe,headingBottomMarginMobile:ze,headingMarginUnit:De,headingMarginUnitTablet:Ne,headingMarginUnitMobile:Ie,objectFit:Ve,objectFitTablet:We,objectFitMobile:qe,overlayOpacity:Ze,overlayHoverOpacity:$e,overlayPositionFromEdge:Ye,overlayPositionFromEdgeUnit:Ke,overlayBackground:Je,overlayBorderHColor:Xe,seperatorShowOn:Qe,seperatorStyle:et,seperatorWidth:tt,separatorWidthType:at,seperatorThickness:lt,seperatorThicknessUnit:it,seperatorColor:ot,seperatorTopMargin:nt,seperatorRightMargin:rt,seperatorLeftMargin:st,seperatorBottomMargin:ct,seperatorTopMarginTablet:ut,seperatorRightMarginTablet:pt,seperatorLeftMarginTablet:bt,seperatorBottomMarginTablet:dt,seperatorTopMarginMobile:gt,seperatorRightMarginMobile:mt,seperatorLeftMarginMobile:yt,seperatorBottomMarginMobile:ft,seperatorMarginUnit:ht,seperatorMarginUnitTablet:vt,seperatorMarginUnitMobile:_t,imageBorderHColor:Tt,useSeparateBoxShadows:Ct,imageBoxShadowColor:St,imageBoxShadowHOffset:wt,imageBoxShadowVOffset:kt,imageBoxShadowBlur:Pt,imageBoxShadowSpread:xt,imageBoxShadowPosition:At,imageBoxShadowColorHover:Gt,imageBoxShadowHOffsetHover:Mt,imageBoxShadowVOffsetHover:Rt,imageBoxShadowBlurHover:Bt,imageBoxShadowSpreadHover:Ut,imageBoxShadowPositionHover:Et,maskShape:Ot,maskCustomShape:Lt,maskSize:Ht,maskPosition:jt,maskRepeat:Ft,headingLetterSpacing:zt,headingLetterSpacingTablet:Dt,headingLetterSpacingMobile:Nt,headingLetterSpacingType:It,captionLetterSpacing:Vt,captionLetterSpacingTablet:Wt,captionLetterSpacingMobile:qt,captionLetterSpacingType:Zt,customHeightSetDesktop:$t,customHeightSetTablet:Yt,customHeightSetMobile:Kt,layout:Jt}=e,Xt=Ps(tt,"seperatorWidth",o),Qt=Ps(Ye,"overlayPositionFromEdge",o),ea=Ps(lt,"seperatorThickness",o),ta=Ps(Ze,"overlayOpacity",o),aa=Ps($e,"overlayHoverOpacity",o),la=rs(e,"overlay"),ia=rs(e,"overlay","tablet"),oa=rs(e,"overlay","mobile"),na=rs(e,"image"),ra=rs(e,"image","tablet"),sa=rs(e,"image","mobile"),ca=""!==c?c:s,ua=""!==u?u:ca,pa=""!==b?b:p,ba=""!==d?d:pa,da=cs({horizontal:wt,vertical:kt,blur:Pt,spread:xt,color:St,position:At}),ga=cs({horizontal:Mt,vertical:Rt,blur:Bt,spread:Ut,color:Gt,position:Et,altColor:St});function ma(e){switch(e){case"center":return"center";case"left":return"flex-start";case"right":return"flex-end";default:return""}}const ya=ma(g),fa=ma(m),ha=ma(y),va=""===z&&uagb_blocks_info.is_astra_based_theme?uagb_blocks_info.astra_body_text_decoration:z,_a={".wp-block-uagb-image":{"margin-top":ns(f,G),"margin-right":ns(h,G),"margin-bottom":ns(_,G),"margin-left":ns(v,G),"text-align":g,"justify-content":ya}," .wp-block-uagb-image__figure":{"align-items":ya},".wp-block-uagb-image--layout-default figure img":{width:"inherit",height:"inherit","box-shadow":da,...na},".wp-block-uagb-image .wp-block-uagb-image__figure img:hover":{"border-color":Tt},".wp-block-uagb-image .wp-block-uagb-image__figure figcaption":{"font-family":E,"font-style":L,"text-decoration":va,"text-transform":F,"font-weight":O,"font-size":ns(H,D),"line-height":ns(q,Z),"letter-spacing":ns(Vt,Zt),color:j,"margin-top":ns(K,ce),"margin-right":ns(J,ce),"margin-bottom":ns(Q,ce),"margin-left":ns(X,ce),"align-self":"overlay"!==Jt?U:""},".wp-block-uagb-image .wp-block-uagb-image__figure figcaption a":{color:j},".wp-block-uagb-image--layout-overlay figure img":{width:"inherit",height:"inherit","box-shadow":da,...na},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper":{background:Je,opacity:ta,...na},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper:hover":{"border-color":Tt},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner":{left:ns(Qt,Ke),right:ns(Qt,Ke),top:ns(Qt,Ke),bottom:ns(Qt,Ke),...la},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading":{"font-family":de,"font-style":me,"text-decoration":ve,"text-transform":he,"font-weight":ge,"font-size":ns(ye,_e),"line-height":ns(ke,Pe),"letter-spacing":ns(zt,It),color:fe,"margin-top":ns(Ge,De),"margin-right":ns(Me,De),"margin-bottom":ns(Be,De),"margin-left":ns(Re,De),opacity:"always"===be?1:0},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a":{color:fe},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption":{opacity:"always"===B?1:0},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner":{"border-color":Xe},".wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper":{opacity:aa},".wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator":{width:ns(Xt,at),"border-top-width":ns(ea,it),"border-top-color":ot,"border-top-style":et,"margin-bottom":ns(ct,ht),"margin-top":ns(nt,ht),"margin-left":ns(st,ht),"margin-right":ns(rt,ht),opacity:"always"===Qe?1:0}};if(_a[".wp-block-uagb-image .wp-block-uagb-image__figure img"]={"object-fit":Ve,width:s+"px",height:"auto"},$t&&(_a[".wp-block-uagb-image .wp-block-uagb-image__figure img"].height=p+"px"),"hover"===be&&(_a[".wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading"]={opacity:1}),"hover"===B&&(_a[".wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption"]={opacity:1}),"hover"===Qe&&(_a[".wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator"]={opacity:1}),Ct&&(_a[".wp-block-uagb-image--layout-default figure:hover img"]={"box-shadow":ga},_a[".wp-block-uagb-image--layout-overlay figure:hover img"]={"box-shadow":ga}),"none"!==Ot){var Ta,Ca;let e=`${null===(Ta=window)||void 0===Ta||null===(Ca=Ta.uagb_blocks_info)||void 0===Ca?void 0:Ca.uagb_url}assets/images/masks/${Ot}.svg`;"custom"===Ot&&(e=""+(null==Lt?void 0:Lt.url)),void 0!==e&&e&&(_a[`.wp-block-uagb-image .wp-block-uagb-image__figure img, .uagb-block-${r} .wp-block-uagb-image--layout-overlay__color-wrapper`]={"mask-image":`url(${e})`,"-webkit-mask-image":`url(${e})`,"mask-size":Ht,"-webkit-mask-size":Ht,"mask-repeat":Ft,"-webkit-mask-repeat":Ft,"mask-position":jt,"-webkit-mask-position":jt})}const Sa={},wa={};Sa[".wp-block-uagb-image .components-resizable-box__container"]={width:ns(c,"px"),height:ns(b,"px")},Sa[".wp-block-uagb-image--layout-default figure img"]=ra,Sa[".wp-block-uagb-image--layout-overlay figure img"]=ra,Sa[".wp-block-uagb-image"]={"margin-top":ns(T,M),"margin-right":ns(C,M),"margin-bottom":ns(w,M),"margin-left":ns(S,M),"text-align":m,"justify-content":fa},Sa[" .wp-block-uagb-image__figure"]={"align-items":fa},Sa[".wp-block-uagb-image .wp-block-uagb-image__figure figcaption"]={"font-size":ns(W,I),"line-height":ns(Y,Z),"letter-spacing":ns(Wt,Zt),"margin-top":ns(ee,ue),"margin-right":ns(te,ue),"margin-bottom":ns(ie,ue),"margin-left":ns(le,ue)},Sa[".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner"]=ia,Sa[".wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading"]={"font-size":ns(we,Ce),"line-height":ns(Ae,Pe),"letter-spacing":ns(Dt,It),"margin-top":ns(Ue,Ne),"margin-right":ns(Ee,Ne),"margin-bottom":ns(Le,Ne),"margin-left":ns(Oe,Ne)},Sa[".wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator"]={"margin-bottom":ns(dt,vt),"margin-top":ns(ut,vt),"margin-left":ns(bt,vt),"margin-right":ns(pt,vt)},Sa[".wp-block-uagb-image .wp-block-uagb-image__figure img"]={"object-fit":We,width:ca+"px",height:"auto"},Yt&&(Sa[".wp-block-uagb-image .wp-block-uagb-image__figure img"].height=pa+"px"),wa[".wp-block-uagb-image .components-resizable-box__container"]={width:ns(u,"px"),height:ns(d,"px")},wa[".wp-block-uagb-image--layout-default figure img"]=sa,wa[".wp-block-uagb-image--layout-overlay figure img"]=sa,wa[".wp-block-uagb-image"]={"margin-top":ns(k,R),"margin-right":ns(P,R),"margin-bottom":ns(A,R),"margin-left":ns(x,R),"text-align":y,"justify-content":ha},wa[" .wp-block-uagb-image__figure"]={"align-items":ha},wa[".wp-block-uagb-image .wp-block-uagb-image__figure figcaption"]={"font-size":ns(V,N),"line-height":ns($,Z),"letter-spacing":ns(qt,Zt),"margin-top":ns(oe,pe),"margin-right":ns(ne,pe),"margin-bottom":ns(se,pe),"margin-left":ns(re,pe)},wa[".wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner"]=oa,wa[".wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading"]={"font-size":ns(Se,Te),"line-height":ns(xe,Pe),"letter-spacing":ns(Nt,It),"margin-top":ns(He,Ie),"margin-right":ns(je,Ie),"margin-bottom":ns(ze,Ie),"margin-left":ns(Fe,Ie)},wa[".wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator"]={"margin-bottom":ns(ft,_t),"margin-top":ns(gt,_t),"margin-left":ns(yt,_t),"margin-right":ns(mt,_t)},wa[".wp-block-uagb-image .wp-block-uagb-image__figure img"]={"object-fit":qe,width:ua+"px",height:"auto"},Kt&&(wa[".wp-block-uagb-image .wp-block-uagb-image__figure img"].height=ba+"px");const ka=i?`.editor-styles-wrapper ${i} `:".editor-styles-wrapper .uagb-block-"+r;let Pa=ae(_a,ka);return("tablet"===n||"mobile"===n||i)&&(Pa+=ae(Sa,""+ka,!0,"tablet"),("mobile"===n||i)&&(Pa+=ae(wa,""+ka,!0,"mobile"))),Pa}Eg=Object(j.applyFilters)("uagb/advanced-heading",ws(Eg)),Object(be.registerBlockType)("uagb/advanced-heading",{...Eg,title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add heading, sub heading and a separator using one block.","ultimate-addons-for-gutenberg"),icon:se.advanced_heading,keywords:[Object(r.__)("creative heading","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg"),Object(r.__)("heading","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Ke,category:uagb_blocks_info.category,__experimentalLabel:(e,t)=>{var a;const{context:l}=t;if("list-view"===l&&null!=e&&null!==(a=e.metadata)&&void 0!==a&&a.name&&e.metadata.name)return e.metadata.name;return Object(j.applyFilters)("uag_loop_data_source_label","",e)||(e.headingTitle?e.headingTitle:Object(r.__)("Heading","ultimate-addons-for-gutenberg"))},edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"advanced-heading"}):React.createElement(xg,e),save:function(e){const{block_id:t,headingTitleToggle:a,headingTitle:l,headingDesc:i,headingDescToggle:o,headingTag:n,seperatorStyle:r,headingId:s,seperatorPosition:c,headingDescPosition:u,headingWrapper:p}=e.attributes,b=p||"div";let d="";"none"!==r&&(d=React.createElement("div",{className:"uagb-separator"}));let g="";l&&(g=React.createElement(React.Fragment,null,"above-heading"===c?d:"",React.createElement(ge.RichText.Content,{tagName:n,value:l,className:"uagb-heading-text",id:s}),"below-heading"===c?d:""));let m="";return i&&(m=React.createElement(React.Fragment,null,"above-sub-heading"===c?d:"",React.createElement(ge.RichText.Content,{tagName:"p",value:i,className:"uagb-desc-text"}),"below-sub-heading"===c?d:"")),React.createElement(b,{className:Be()(e.className,"uagb-block-"+t)},o&&"above-heading"===u?m:"",a&&g,o&&"below-heading"===u?m:"",o||a?"":d)},deprecated:Bg,usesContext:["postId","postType"],transforms:{from:[{type:"block",blocks:["core/heading"],transform:e=>Object(be.createBlock)("uagb/advanced-heading",{headingTitle:e.content,headingAlign:e.textAlign,headingColor:Nc(e.textColor),blockBackground:Nc(e.backgroundColor)})},{type:"block",blocks:["core/quote"],transform:e=>Object(be.createBlock)("uagb/advanced-heading",{headingTitle:e.value,headingDesc:e.citation,headingAlign:e.align,headingColor:Nc(e.textColor),blockBackground:Nc(e.backgroundColor)})},{type:"block",blocks:["core/paragraph"],transform:e=>Object(be.createBlock)("uagb/advanced-heading",{headingTitle:e.content,headingAlign:e.align,headingColor:Nc(e.textColor),blockBackground:Nc(e.backgroundColor)})},{type:"block",blocks:["core/list"],transform:(e,t)=>{const a=[];return t.forEach((e,l)=>{a.push({text:t[l].attributes.content})}),a.map(t=>Object(be.createBlock)("uagb/advanced-heading",{headingTitle:t.text,headingColor:Nc(e.textColor),blockBackground:Nc(e.backgroundColor)}))}}],to:[{type:"block",blocks:["core/heading"],transform:e=>Object(be.createBlock)("core/heading",{content:e.headingTitle,align:e.headingAlign})},{type:"block",blocks:["core/quote"],transform:e=>Object(be.createBlock)("core/quote",{value:e.headingTitle,citation:e.headingDesc})},{type:"block",blocks:["core/paragraph"],transform:e=>Object(be.createBlock)("core/paragraph",{content:e.headingTitle})}]}});var Lg,Hg=a(104),jg=0,Fg={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},zg={};zg.locals=Hg.a.locals||{},zg.use=function(){return jg++||(Lg=ke()(Hg.a,Fg)),zg},zg.unuse=function(){jg>0&&!--jg&&(Lg(),Lg=null)};var Dg=zg;function Ng(e){var t;let{imageWidth:a,imageHeight:l,imageSizeOptions:i=[],isResizable:o=!0,data:s,width:c,widthTablet:u,widthMobile:p,height:b,heightTablet:d,heightMobile:g,setAttributes:m,onChange:y,help:f}=e;const[h,v]=Object(B.useState)(null),_=Object(B.useRef)(null);Object(B.useLayoutEffect)(()=>(Dg.use(),()=>{Dg.unuse()}),[]);const{getSelectedBlock:T}=Object(n.select)("core/block-editor"),C=null===(t=T())||void 0===t?void 0:t.name.split("/").pop();Object(B.useEffect)(()=>{v(D(_))},[C]);const S=le();let w,k;switch(S){case"Tablet":w=d,k=u;break;case"Mobile":w=g,k=p;break;default:w=b,k=c}const{currentHeight:P,currentWidth:x,updateDimension:A}=function(e,t,a,l,i){const[o,n]=Object(B.useState)(t||l||""),[r,s]=Object(B.useState)(e||a||"");return Object(B.useEffect)(()=>{void 0===t&&void 0!==l&&n(l),void 0===e&&void 0!==a&&s(a)},[l,a]),Object(B.useEffect)(()=>{void 0!==t&&Number.parseInt(t)!==Number.parseInt(o)&&n(t),void 0!==e&&Number.parseInt(e)!==Number.parseInt(r)&&s(e)},[t,e]),{currentHeight:r,currentWidth:o,updateDimension:(e,t)=>{"width"===e?n(t):s(t),i({[e]:""===t?void 0:parseInt(t,10)})},updateDimensions:(e,t)=>{s(e||a||""),s(t||l||""),i({height:e,width:t})}}}(w,k,l,a,y),G={};G.Desktop=React.createElement(React.Fragment,null,React.createElement(bc,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),value:x,data:{value:c,label:"width"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>A("width",e)}),React.createElement(bc,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),value:P,data:{value:b,label:"height"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>{A("height",e),isNaN(e)||""===e?m({customHeightSetDesktop:!1}):m({customHeightSetDesktop:!0})}})),G.Tablet=React.createElement(React.Fragment,null,React.createElement(bc,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),value:x,data:{value:u,label:"widthTablet"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>A("widthTablet",e)}),React.createElement(bc,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),value:P,data:{value:d,label:"heightTablet"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>{A("heightTablet",e),isNaN(e)||""===e?m({customHeightSetTablet:!1}):m({customHeightSetTablet:!0})}})),G.Mobile=React.createElement(React.Fragment,null,React.createElement(bc,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),value:x,data:{value:p,label:"widthMobile"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>A("widthMobile",e)}),React.createElement(bc,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),value:P,data:{value:g,label:"heightMobile"},displayUnit:!1,setAttributes:m,min:1/0,step:1,max:-1/0,showControlHeader:!1,onChange:e=>{A("heightMobile",e),isNaN(e)||""===e?m({customHeightSetMobile:!1}):m({customHeightSetMobile:!0})}}));const M=Object(j.applyFilters)(`spectra.${C}.${h}.image-size.before`,"",C),R=Object(j.applyFilters)(`spectra.${C}.${h}.image-size`,"",C);return React.createElement("div",{ref:_,className:"components-base-control"},M,0!==i.length&&React.createElement(ai,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),options:{desktop:i,tablet:i,mobile:i},data:{desktop:{label:s.sizeSlug.label,value:s.sizeSlug.value},tablet:{label:s.sizeSlugTablet.label,value:s.sizeSlugTablet.value},mobile:{label:s.sizeSlugMobile.label,value:s.sizeSlugMobile.value}},setAttributes:m}),o&&React.createElement("div",{className:"block-editor-image-size-control"},React.createElement("div",{className:"uagb-size-type-field-tabs"},React.createElement("div",{className:"uagb-control__header"},React.createElement(Ne,{label:Object(r.__)("Image Dimensions","ultimate-addons-for-gutenberg"),responsive:!0})),React.createElement("div",{className:"block-editor-image-size-control__row"},G[S])),f&&React.createElement("p",{className:"components-base-control__help"},f)),R)}const Ig=[{defaultAttributes:Ta},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:3},{label:"imageBoxShadowVOffset",value:8},{label:"imageBoxShadowBlur",value:12},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:18},{label:"imageBoxShadowBlur",value:40},{label:"imageBoxShadowSpread",value:-10},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:4},{label:"imageBoxShadowBlur",value:12},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:2},{label:"imageBoxShadowBlur",value:5},{label:"imageBoxShadowSpread",value:-1},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:50},{label:"imageBoxShadowBlur",value:50},{label:"imageBoxShadowSpread",value:-30},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:20},{label:"imageBoxShadowBlur",value:30},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Vg=[{defaultAttributes:Ta},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:3},{label:"imageBoxShadowVOffsetHover",value:8},{label:"imageBoxShadowBlurHover",value:12},{label:"imageBoxShadowSpreadHover",value:0},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:18},{label:"imageBoxShadowBlurHover",value:40},{label:"imageBoxShadowSpreadHover",value:-10},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:4},{label:"imageBoxShadowBlurHover",value:12},{label:"imageBoxShadowSpreadHover",value:0},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:2},{label:"imageBoxShadowBlurHover",value:5},{label:"imageBoxShadowSpreadHover",value:-1},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:50},{label:"imageBoxShadowBlurHover",value:50},{label:"imageBoxShadowSpreadHover",value:-30},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:20},{label:"imageBoxShadowBlurHover",value:30},{label:"imageBoxShadowSpreadHover",value:0},{label:"imageBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var Wg=Object(j.applyFilters)("uag_image_presets",Ig),qg=a(30);const Zg=(e,t)=>{var a;const{alt:l,id:i,link:o,caption:n,title:r}=e,s={alt:l,id:i,link:o,caption:n,title:r};var c,u,p,b,d,g,m,y,f;return null!=e&&e.sizes&&null!=e&&e.sizes[t]?{...s,width:null==e||null===(c=e.sizes[t])||void 0===c?void 0:c.width,height:null==e||null===(u=e.sizes[t])||void 0===u?void 0:u.height,url:null==e||null===(p=e.sizes[t])||void 0===p?void 0:p.url}:null!=e&&e.media_details&&null!=e&&null!==(a=e.media_details)&&void 0!==a&&a.sizes[t]?{...s,width:null==e||null===(b=e.media_details)||void 0===b||null===(d=b.sizes[t])||void 0===d?void 0:d.width,height:null==e||null===(g=e.media_details)||void 0===g||null===(m=g.sizes[t])||void 0===m?void 0:m.height,url:null==e||null===(y=e.media_details)||void 0===y||null===(f=y.sizes[t])||void 0===f?void 0:f.source_url}:{...s,url:null==e?void 0:e.url}},$g=(e,t)=>t&&!e&&!Object(qg.isBlobURL)(t),Yg=(e,t)=>{var a,l,i;return!!(null!=e&&null!==(a=e.sizes)&&void 0!==a&&a[t]||null!=e&&null!==(l=e.media_details)&&void 0!==l&&null!==(i=l.sizes)&&void 0!==i&&i[t])},Kg=e=>{var t,a;return((null===(t=wp)||void 0===t||null===(a=t.media)||void 0===a?void 0:a.attachment(e))||{}).destroyed},Jg=(e,t)=>{const a="url"+t,l="height"+t,i="width"+t,o="sizeSlug"+t,n=Zg(e,o),r={};return n.url&&(r[a]=n.url),"custom"!==o?(n.height&&(r[l]=n.height),n.width&&(r[i]=n.width)):(r[l]=void 0,r[i]=void 0),r};function Xg(){return(Xg=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function Qg(e){const{attributes:t,setAttributes:a,context:l,isSelected:i,clientId:o,deviceType:s}=e,{block_id:c,objectFit:u,objectFitTablet:p,objectFitMobile:b,layout:d,id:g,url:m,urlTablet:y,urlMobile:f,width:h,widthTablet:v,widthMobile:_,height:T,heightTablet:C,heightMobile:S,align:w,alignTablet:k,alignMobile:P,alt:x,title:A,sizeSlug:G,sizeSlugTablet:M,sizeSlugMobile:R,enableCaption:U,naturalWidth:E,naturalHeight:O,imageTopMargin:H,imageRightMargin:j,imageLeftMargin:F,imageBottomMargin:z,imageTopMarginTablet:D,imageRightMarginTablet:N,imageLeftMarginTablet:I,imageBottomMarginTablet:V,imageTopMarginMobile:W,imageRightMarginMobile:q,imageLeftMarginMobile:Z,imageBottomMarginMobile:$,imageMarginUnit:Y,imageMarginUnitTablet:K,imageMarginUnitMobile:J,imageMarginLink:X,captionShowOn:Q,captionLoadGoogleFonts:ee,captionAlign:te,captionFontFamily:ae,captionFontWeight:le,captionFontStyle:ie,captionFontSize:oe,captionColor:ne,captionTransform:re,captionDecoration:se,captionFontSizeType:ce,captionFontSizeTypeMobile:ue,captionFontSizeTypeTablet:pe,captionFontSizeMobile:be,captionFontSizeTablet:me,captionLineHeight:ye,captionLineHeightType:fe,captionLineHeightMobile:he,captionLineHeightTablet:ve,captionTopMargin:_e,captionRightMargin:Te,captionLeftMargin:Se,captionBottomMargin:we,captionTopMarginTablet:ke,captionRightMarginTablet:Pe,captionLeftMarginTablet:xe,captionBottomMarginTablet:Ae,captionTopMarginMobile:Ge,captionRightMarginMobile:Me,captionLeftMarginMobile:Re,captionBottomMarginMobile:Be,captionMarginUnit:Ue,captionMarginUnitTablet:Oe,captionMarginUnitMobile:He,captionMarginLink:je,headingTag:ze,headingShowOn:De,headingLoadGoogleFonts:Ne,headingFontFamily:Ie,headingFontWeight:Ve,headingFontStyle:We,headingFontSize:qe,headingColor:Ze,headingTransform:$e,headingDecoration:Ye,headingFontSizeType:Ke,headingFontSizeTypeMobile:Je,headingFontSizeTypeTablet:Xe,headingFontSizeMobile:Qe,headingFontSizeTablet:et,headingLineHeight:tt,headingLineHeightType:at,headingLineHeightMobile:lt,headingLineHeightTablet:it,headingTopMargin:ot,headingRightMargin:nt,headingLeftMargin:rt,headingBottomMargin:st,headingTopMarginTablet:ct,headingRightMarginTablet:ut,headingLeftMarginTablet:pt,headingBottomMarginTablet:bt,headingTopMarginMobile:dt,headingRightMarginMobile:gt,headingLeftMarginMobile:mt,headingBottomMarginMobile:yt,headingMarginUnit:ft,headingMarginUnitTablet:ht,headingMarginUnitMobile:vt,headingMarginLink:_t,overlayPositionFromEdge:Tt,overlayPositionFromEdgeUnit:Ct,overlayContentPosition:St,overlayBackground:wt,overlayOpacity:kt,overlayHoverOpacity:Pt,seperatorShowOn:xt,seperatorStyle:At,seperatorWidth:Gt,separatorWidthType:Mt,seperatorThickness:Rt,seperatorThicknessUnit:Bt,seperatorPosition:Ut,seperatorColor:Et,seperatorTopMargin:Ot,seperatorRightMargin:Lt,seperatorLeftMargin:Ht,seperatorBottomMargin:jt,seperatorTopMarginTablet:Ft,seperatorRightMarginTablet:zt,seperatorLeftMarginTablet:Dt,seperatorBottomMarginTablet:Nt,seperatorTopMarginMobile:It,seperatorRightMarginMobile:Vt,seperatorLeftMarginMobile:Wt,seperatorBottomMarginMobile:qt,seperatorMarginUnit:Zt,seperatorMarginUnitTablet:$t,seperatorMarginUnitMobile:Yt,seperatorMarginLink:Kt,imageHoverEffect:Jt,useSeparateBoxShadows:Xt,imageBoxShadowColor:Qt,imageBoxShadowHOffset:ea,imageBoxShadowVOffset:ta,imageBoxShadowBlur:aa,imageBoxShadowSpread:la,imageBoxShadowPosition:ia,imageBoxShadowColorHover:oa,imageBoxShadowHOffsetHover:na,imageBoxShadowVOffsetHover:ra,imageBoxShadowBlurHover:sa,imageBoxShadowSpreadHover:ca,imageBoxShadowPositionHover:ua,maskShape:pa,maskCustomShape:ba,maskSize:da,maskPosition:ga,maskRepeat:ma,headingLetterSpacing:ya,headingLetterSpacingTablet:fa,headingLetterSpacingMobile:ha,headingLetterSpacingType:va,captionLetterSpacing:_a,captionLetterSpacingTablet:Ta,captionLetterSpacingMobile:Ca,captionLetterSpacingType:Sa,disableLazyLoad:wa,imgRole:ka}=t,{imageSizes:Pa}=Object(n.useSelect)(e=>{const{getSettings:t}=e(ge.store),{imageSizes:a}=t();return{imageSizes:a}},[o]),{image:xa}=Object(n.useSelect)(e=>{const{getMedia:t}=e(de.store);return{image:g&&i?t(g):null}},[g,i]),{imageDefaultSize:Aa}=Object(n.useSelect)(e=>{const{getSettings:t}=e(ge.store),{imageDefaultSize:a}=t();return{imageDefaultSize:a}},[]),[Ga,Ma]=Object(B.useState)({desktop:G,tablet:M,mobile:R});Object(B.useEffect)(()=>{if(G)switch(s){case"Mobile":"custom"===R&&Ga.mobile!==R?a({objectFitMobile:"cover"}):"custom"!==R&&ja(R),Ma({...Ga,mobile:R});break;case"Tablet":"custom"===M&&Ga.tablet!==M?a({objectFitTablet:"cover"}):"custom"!==M&&Ha(M),Ma({...Ga,tablet:M});break;default:"custom"===G&&Ga.desktop!==G?a({objectFit:"cover"}):"custom"!==G&&La(G),Ma({...Ga,desktop:G})}},[G,M,R]);const{allowResize:Ra=!0}=l,Ba=Object(L.useViewportMatch)("medium"),Ua=["wide","full"].includes(w),Ea=Ra&&!(Ua&&Ba),Oa=(null==xa?void 0:xa.media_details)&&Pa.reduce((e,t)=>{var a;if(null!=xa&&null!==(a=xa.media_details)&&void 0!==a&&a.sizes[t.slug]){const a=e.pop();e.push({value:t.slug,label:t.name},a)}return e},[{value:"custom",label:"Custom"}]),La=e=>{var t;const l=null==xa||null===(t=xa.media_details)||void 0===t?void 0:t.sizes[e];if(!l||(null==l?void 0:l.source_url)===m)return null;a({url:null==l?void 0:l.source_url,width:null==l?void 0:l.width,height:null==l?void 0:l.height,sizeSlug:e})},Ha=e=>{var t;const l=null==xa||null===(t=xa.media_details)||void 0===t?void 0:t.sizes[e];if(!l||(null==l?void 0:l.source_url)===y)return null;a({urlTablet:null==l?void 0:l.source_url,widthTablet:null==l?void 0:l.width,heightTablet:null==l?void 0:l.height,sizeSlugTablet:e})},ja=e=>{var t;const l=null==xa||null===(t=xa.media_details)||void 0===t?void 0:t.sizes[e];if(!l||(null==l?void 0:l.source_url)===f)return null;a({urlMobile:null==l?void 0:l.source_url,widthMobile:null==l?void 0:l.width,heightMobile:null==l?void 0:l.height,sizeSlugMobile:e})},Fa={desktop:[{value:"",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"fill",label:Object(r.__)("Fill","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")}],tablet:[{value:"",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"fill",label:Object(r.__)("Fill","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")}],mobile:[{value:"",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"fill",label:Object(r.__)("Fill","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")}]},za=React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Yl,{onSelectImage:e=>{if(!e||!e.url)return void a({url:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0});let t=Zg(e,Aa);t={...t,...Jg(e,"Tablet"),...Jg(e,"Mobile")},"custom"===G&&(delete t.width,delete t.height),a(t)},backgroundImage:{id:g,url:m},onRemoveImage:()=>{a({url:void 0,urlTablet:void 0,urlMobile:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0,width:void 0,widthTablet:void 0,widthMobile:void 0,height:void 0,heightTablet:void 0,heightMobile:void 0})},disableLabel:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Disable Lazy Loading","ultimate-addons-for-gutenberg"),checked:wa,onChange:()=>{a({disableLazyLoad:!wa})}}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:w,label:"align"},tablet:{value:k,label:"alignTablet"},mobile:{value:P,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0,help:("left"===w||"right"===w)&&Object(r.__)("Note: We use WP core alignment. Left or Right alignments on desktop won`t support responsive alignment.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:d,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"default",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"overlay",label:Object(r.__)("Overlay","ultimate-addons-for-gutenberg")}],showIcons:!1}),"overlay"===d&&React.createElement(React.Fragment,null,React.createElement($i,{label:Object(r.__)("Content Position","ultimate-addons-for-gutenberg"),data:{label:"overlayContentPosition",value:St},setAttributes:a}),React.createElement(Hi,{setAttributes:a,prefix:"overlay",attributes:t,deviceType:s}),React.createElement(Qa,{label:Object(r.__)("Border Distance From EDGE","ultimate-addons-for-gutenberg"),setAttributes:a,value:Tt,data:{value:Tt,label:"overlayPositionFromEdge"},min:-100,max:100,unit:{value:Ct,label:"overlayPositionFromEdgeUnit"}})),i&&React.createElement(React.Fragment,null,React.createElement(Ng,{onChange:e=>a(e),data:{sizeSlug:{label:"sizeSlug",value:G},sizeSlugTablet:{label:"sizeSlugTablet",value:M},sizeSlugMobile:{label:"sizeSlugMobile",value:R}},width:h||E,widthTablet:v,widthMobile:_,height:T||O,heightTablet:C,heightMobile:S,setAttributes:a,imageSizeOptions:Oa,isResizable:Ea,imageWidth:E,imageHeight:O}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Image Role","ultimate-addons-for-gutenberg"),data:{value:ka,label:"imgRole"},options:[{value:"img",label:Object(r.__)("Image","ultimate-addons-for-gutenberg")},{value:"presentation",label:Object(r.__)("Presentation","ultimate-addons-for-gutenberg")}]}),"presentation"!==ka&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Alt Text","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,dynamicContentType:"text",value:x,name:"alt",setAttributes:a,data:{value:x,label:"alt"}}),React.createElement(Fs,{label:Object(r.__)("Title","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,dynamicContentType:"text",value:A,name:"title",setAttributes:a,data:{value:A,label:"title"}}))),React.createElement(ai,{label:Object(r.__)("Object Fit","ultimate-addons-for-gutenberg"),data:{desktop:{value:u,label:"objectFit"},tablet:{value:p,label:"objectFitTablet"},mobile:{value:b,label:"objectFitMobile"}},options:Fa,setAttributes:a}),React.createElement(Pi,{label:Object(r.__)("On Hover Image","ultimate-addons-for-gutenberg"),data:{value:Jt,label:"imageHoverEffect"},setAttributes:a,options:[{value:"static",label:Object(r.__)("Static","ultimate-addons-for-gutenberg")},{value:"zoomin",label:Object(r.__)("Zoom In","ultimate-addons-for-gutenberg")},{value:"slide",label:Object(r.__)("Slide","ultimate-addons-for-gutenberg")},{value:"grayscale",label:Object(r.__)("Gray Scale","ultimate-addons-for-gutenberg")},{value:"blur",label:Object(r.__)("Blur","ultimate-addons-for-gutenberg")}]}),"overlay"!==d&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Caption","ultimate-addons-for-gutenberg"),checked:U,onChange:()=>{a({enableCaption:!U})}}),U&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:te,label:"captionAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"start",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"end",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}))),Da=React.createElement(Fe,{title:Object(r.__)("Mask","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Mask Shape","ultimate-addons-for-gutenberg"),data:{value:pa,label:"maskShape"},setAttributes:a,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"circle",label:Object(r.__)("Circle","ultimate-addons-for-gutenberg")},{value:"diamond",label:Object(r.__)("Diamond","ultimate-addons-for-gutenberg")},{value:"hexagon",label:Object(r.__)("Hexagon","ultimate-addons-for-gutenberg")},{value:"rounded",label:Object(r.__)("Rounded","ultimate-addons-for-gutenberg")},{value:"blob1",label:Object(r.__)("Blob 1","ultimate-addons-for-gutenberg")},{value:"blob2",label:Object(r.__)("Blob 2","ultimate-addons-for-gutenberg")},{value:"blob3",label:Object(r.__)("Blob 3","ultimate-addons-for-gutenberg")},{value:"blob4",label:Object(r.__)("Blob 4","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}]}),"custom"===pa&&React.createElement(Yl,{onSelectImage:e=>{e&&e.url?e.type&&"image"===e.type&&a({maskCustomShape:e}):a({maskCustomShape:null})},backgroundImage:ba,onRemoveImage:()=>{a({maskCustomShape:null})},label:Object(r.__)("Custom Mask Image","ultimate-addons-for-gutenberg"),slug:"custom-mask-image"}),"none"!==pa&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Mask Size","ultimate-addons-for-gutenberg"),data:{value:da,label:"maskSize"},setAttributes:a,options:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"contain",label:Object(r.__)("Contain","ultimate-addons-for-gutenberg")},{value:"cover",label:Object(r.__)("Cover","ultimate-addons-for-gutenberg")}]}),React.createElement(Pi,{label:Object(r.__)("Mask Position","ultimate-addons-for-gutenberg"),data:{value:ga,label:"maskPosition"},setAttributes:a,options:[{value:"center top",label:Object(r.__)("Center Top","ultimate-addons-for-gutenberg")},{value:"center center",label:Object(r.__)("Center Center","ultimate-addons-for-gutenberg")},{value:"center bottom",label:Object(r.__)("Center Bottom","ultimate-addons-for-gutenberg")},{value:"left top",label:Object(r.__)("Left Top","ultimate-addons-for-gutenberg")},{value:"left center",label:Object(r.__)("Left Center","ultimate-addons-for-gutenberg")},{value:"left bottom",label:Object(r.__)("Left Bottom","ultimate-addons-for-gutenberg")},{value:"right top",label:Object(r.__)("Right Top","ultimate-addons-for-gutenberg")},{value:"right center",label:Object(r.__)("Right Center","ultimate-addons-for-gutenberg")},{value:"right bottom",label:Object(r.__)("Right Bottom","ultimate-addons-for-gutenberg")}]}),React.createElement(Pi,{label:Object(r.__)("Mask Repeat","ultimate-addons-for-gutenberg"),data:{value:ma,label:"maskRepeat"},setAttributes:a,options:[{value:"no-repeat",label:Object(r.__)("No Repeat","ultimate-addons-for-gutenberg")},{value:"repeat",label:Object(r.__)("Repeat","ultimate-addons-for-gutenberg")},{value:"repeat-x",label:Object(r.__)("Repeat-X","ultimate-addons-for-gutenberg")},{value:"repeat-y",label:Object(r.__)("Repeat-Y","ultimate-addons-for-gutenberg")}]}))),Ia=React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},"none"!==At&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Show On","ultimate-addons-for-gutenberg"),data:{value:xt,label:"seperatorShowOn"},className:"uagb-multi-button-alignment-control",options:[{value:"always",label:Object(r.__)("Always","ultimate-addons-for-gutenberg")},{value:"hover",label:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:At,label:"seperatorStyle"},setAttributes:a,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")}]}),"none"!==At&&React.createElement(Pi,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:Ut,label:"seperatorPosition"},setAttributes:a,options:[{value:"before_title",label:Object(r.__)("Before Title","ultimate-addons-for-gutenberg")},{value:"after_title",label:Object(r.__)("After Title","ultimate-addons-for-gutenberg")},{value:"after_sub_title",label:Object(r.__)("After Sub Title","ultimate-addons-for-gutenberg")}]})),Va=React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Show On","ultimate-addons-for-gutenberg"),data:{value:De,label:"headingShowOn"},className:"uagb-multi-button-alignment-control",options:[{value:"always",label:Object(r.__)("Always","ultimate-addons-for-gutenberg")},{value:"hover",label:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],showIcons:!1})),Wa=React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Show On","ultimate-addons-for-gutenberg"),data:{value:Q,label:"captionShowOn"},className:"uagb-multi-button-alignment-control",options:[{value:"always",label:Object(r.__)("Always","ultimate-addons-for-gutenberg")},{value:"hover",label:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],showIcons:!1})),qa=React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:ze,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")}]}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:a,loadGoogleFonts:{value:Ne,label:"headingLoadGoogleFonts"},fontFamily:{value:Ie,label:"headingFontFamily"},fontWeight:{value:Ve,label:"headingFontWeight"},fontStyle:{value:We,label:"headingFontStyle"},transform:{value:$e,label:"headingTransform"},decoration:{value:Ye,label:"headingDecoration"},fontSizeType:{value:Ke,label:"headingFontSizeType"},fontSizeTypeTablet:{value:Xe,label:"headingFontSizeTypeTablet"},fontSizeTypeMobile:{value:Je,label:"headingFontSizeTypeMobile"},fontSize:{value:qe,label:"headingFontSize"},fontSizeMobile:{value:Qe,label:"headingFontSizeMobile"},fontSizeTablet:{value:et,label:"headingFontSizeTablet"},lineHeightType:{value:at,label:"headingLineHeightType"},lineHeight:{value:tt,label:"headingLineHeight"},lineHeightMobile:{value:lt,label:"headingLineHeightMobile"},lineHeightTablet:{value:it,label:"headingLineHeightTablet"},letterSpacing:{value:ya,label:"headingLetterSpacing"},letterSpacingTablet:{value:fa,label:"headingLetterSpacingTablet"},letterSpacingMobile:{value:ha,label:"headingLetterSpacingMobile"},letterSpacingType:{value:va,label:"headingLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ze||"",data:{value:Ze,label:"headingColor"},setAttributes:a}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:ot,label:"headingTopMargin"},valueRight:{value:nt,label:"headingRightMargin"},valueBottom:{value:st,label:"headingBottomMargin"},valueLeft:{value:rt,label:"headingLeftMargin"},valueTopTablet:{value:ct,label:"headingTopMarginTablet"},valueRightTablet:{value:ut,label:"headingRightMarginTablet"},valueBottomTablet:{value:bt,label:"headingBottomMarginTablet"},valueLeftTablet:{value:pt,label:"headingLeftMarginTablet"},valueTopMobile:{value:dt,label:"headingTopMarginMobile"},valueRightMobile:{value:gt,label:"headingRightMarginMobile"},valueBottomMobile:{value:yt,label:"headingBottomMarginMobile"},valueLeftMobile:{value:mt,label:"headingLeftMarginMobile"},unit:{value:ft,label:"headingMarginUnit"},mUnit:{value:vt,label:"headingMarginUnitMobile"},tUnit:{value:ht,label:"headingMarginUnitTablet"},deviceType:s,attributes:t,setAttributes:a,link:{value:_t,label:"headingMarginLink"}})),Za=React.createElement(Fe,{title:"overlay"===d?Object(r.__)("Description","ultimate-addons-for-gutenberg"):Object(r.__)("Caption","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:a,loadGoogleFonts:{value:ee,label:"captionLoadGoogleFonts"},fontFamily:{value:ae,label:"captionFontFamily"},fontWeight:{value:le,label:"captionFontWeight"},fontStyle:{value:ie,label:"captionFontStyle"},transform:{value:re,label:"captionTransform"},decoration:{value:se,label:"captionDecoration"},fontSizeType:{value:ce,label:"captionFontSizeType"},fontSizeTypeTablet:{value:pe,label:"captionFontSizeTypeTablet"},fontSizeTypeMobile:{value:ue,label:"captionFontSizeTypeMobile"},fontSize:{value:oe,label:"captionFontSize"},fontSizeMobile:{value:be,label:"captionFontSizeMobile"},fontSizeTablet:{value:me,label:"captionFontSizeTablet"},lineHeightType:{value:fe,label:"captionLineHeightType"},lineHeight:{value:ye,label:"captionLineHeight"},lineHeightMobile:{value:he,label:"captionLineHeightMobile"},lineHeightTablet:{value:ve,label:"captionLineHeightTablet"},letterSpacing:{value:_a,label:"captionLetterSpacing"},letterSpacingTablet:{value:Ta,label:"captionLetterSpacingTablet"},letterSpacingMobile:{value:Ca,label:"captionLetterSpacingMobile"},letterSpacingType:{value:Sa,label:"captionLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ne||"",data:{value:ne,label:"captionColor"},setAttributes:a}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:_e,label:"captionTopMargin"},valueRight:{value:Te,label:"captionRightMargin"},valueBottom:{value:we,label:"captionBottomMargin"},valueLeft:{value:Se,label:"captionLeftMargin"},valueTopTablet:{value:ke,label:"captionTopMarginTablet"},valueRightTablet:{value:Pe,label:"captionRightMarginTablet"},valueBottomTablet:{value:Ae,label:"captionBottomMarginTablet"},valueLeftTablet:{value:xe,label:"captionLeftMarginTablet"},valueTopMobile:{value:Ge,label:"captionTopMarginMobile"},valueRightMobile:{value:Me,label:"captionRightMarginMobile"},valueBottomMobile:{value:Be,label:"captionBottomMarginMobile"},valueLeftMobile:{value:Re,label:"captionLeftMarginMobile"},unit:{value:Ue,label:"captionMarginUnit"},mUnit:{value:He,label:"captionMarginUnitMobile"},tUnit:{value:Oe,label:"captionMarginUnitTablet"},deviceType:s,attributes:t,setAttributes:a,link:{value:je,label:"captionMarginLink"}})),$a=React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Hi,{setAttributes:a,prefix:"image",attributes:t,deviceType:s}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:H,label:"imageTopMargin"},valueRight:{value:j,label:"imageRightMargin"},valueBottom:{value:z,label:"imageBottomMargin"},valueLeft:{value:F,label:"imageLeftMargin"},valueTopTablet:{value:D,label:"imageTopMarginTablet"},valueRightTablet:{value:N,label:"imageRightMarginTablet"},valueBottomTablet:{value:V,label:"imageBottomMarginTablet"},valueLeftTablet:{value:I,label:"imageLeftMarginTablet"},valueTopMobile:{value:W,label:"imageTopMarginMobile"},valueRightMobile:{value:q,label:"imageRightMarginMobile"},valueBottomMobile:{value:$,label:"imageBottomMarginMobile"},valueLeftMobile:{value:Z,label:"imageLeftMarginMobile"},unit:{value:Y,label:"imageMarginUnit"},mUnit:{value:J,label:"imageMarginUnitMobile"},tUnit:{value:K,label:"imageMarginUnitTablet"},deviceType:s,attributes:t,setAttributes:a,link:{value:X,label:"imageMarginLink"}})),Ya=React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:Xt,onChange:()=>a({useSeparateBoxShadows:!Xt})}),Xt?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Wg,presetInputType:"radioImage"}),React.createElement(vl,{blockId:c,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Qt,label:"imageBoxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ea,label:"imageBoxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ta,label:"imageBoxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:aa,label:"imageBoxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:la,label:"imageBoxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ia,label:"imageBoxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")},popup:!1})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Vg,presetInputType:"radioImage"}),React.createElement(vl,{blockId:c,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:oa,label:"imageBoxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:na,label:"imageBoxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ra,label:"imageBoxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:sa,label:"imageBoxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ca,label:"imageBoxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ua,label:"imageBoxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")},popup:!1})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Wg,presetInputType:"radioImage"}),React.createElement(vl,{blockId:c,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Qt,label:"imageBoxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ea,label:"imageBoxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ta,label:"imageBoxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:aa,label:"imageBoxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:la,label:"imageBoxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ia,label:"imageBoxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")},popup:!1}))),Ka=React.createElement(Fe,{title:Object(r.__)("Overlay","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Background","ultimate-addons-for-gutenberg"),colorValue:wt||"",data:{value:wt,label:"overlayBackground"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Overlay Opacity","ultimate-addons-for-gutenberg"),setAttributes:a,value:kt,data:{value:kt,label:"overlayOpacity"},min:0,max:1,step:.1,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Overlay Hover Opacity","ultimate-addons-for-gutenberg"),setAttributes:a,value:Pt,data:{value:Pt,label:"overlayHoverOpacity"},min:0,max:1,step:.1,displayUnit:!1})),Ja=React.createElement(Fe,{title:"Separator",initialOpen:!1},React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:Gt,data:{value:Gt,label:"seperatorWidth"},min:0,max:"%"===Mt?100:500,unit:{value:Mt,label:"separatorWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:a,value:Rt,data:{value:Rt,label:"seperatorThickness"},min:0,max:10,unit:{value:Bt,label:"seperatorThicknessUnit"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Et||"",data:{value:Et,label:"seperatorColor"},setAttributes:a}),React.createElement(Pl,Xg({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Ot,label:"seperatorTopMargin"},valueRight:{value:Lt,label:"seperatorRightMargin"},valueBottom:{value:jt,label:"seperatorBottomMargin"},valueLeft:{value:Ht,label:"seperatorLeftMargin"},valueTopTablet:{value:Ft,label:"seperatorTopMarginTablet"},valueRightTablet:{value:zt,label:"seperatorRightMarginTablet"},valueBottomTablet:{value:Nt,label:"seperatorBottomMarginTablet"},valueLeftTablet:{value:Dt,label:"seperatorLeftMarginTablet"},valueTopMobile:{value:It,label:"seperatorTopMarginMobile"},valueRightMobile:{value:Vt,label:"seperatorRightMarginMobile"},valueBottomMobile:{value:qt,label:"seperatorBottomMarginMobile"},valueLeftMobile:{value:Wt,label:"seperatorLeftMarginMobile"},unit:{value:Zt,label:"seperatorMarginUnit"},mUnit:{value:Yt,label:"seperatorMarginUnitMobile"},tUnit:{value:$t,label:"seperatorMarginUnitTablet"},deviceType:s,attributes:t,setAttributes:a,link:{value:Kt,label:"seperatorMarginLink"}})));return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,Xg({},ol,{parentProps:e}),za,Da,"overlay"===d&&React.createElement(React.Fragment,null,Va,Wa,Ia),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,Xg({},nl,{parentProps:e}),$a,"static"===Jt&&Ya,"overlay"===d&&React.createElement(React.Fragment,null,Ka,qa,Za),U&&"overlay"!==d&&Za,"none"!==At&&"overlay"===d&&Ja),React.createElement(il,Xg({},rl,{parentProps:e}),lc(Og,a,t)))))}var em=a(25),tm=Object(B.createElement)(em.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(B.createElement)(em.Path,{d:"M18.5 15v3.5H13V6.7l4.5 4.1 1-1.1-6.2-5.8-5.8 5.8 1 1.1 4-4v11.7h-6V15H4v5h16v-5z"})),am=a(39),lm=Object(B.createElement)(em.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(B.createElement)(em.Path,{d:"M17.5 7v8H19V7c0-1.1-.9-2-2-2H9v1.5h8c.3 0 .5.2.5.5zM7 17.5c-.3 0-.5-.2-.5-.5V1H5v4H1v1.5h4V17c0 1.1.9 2 2 2h10.5v4H19v-4h4v-1.5H7z"}));const im=["image"];function om(e){var t;let{temporaryURL:a,attributes:l,attributes:{url:i="",urlTablet:o="",urlMobile:s="",alt:c,title:u,align:p,id:b,width:d,widthTablet:g,widthMobile:m,height:y,heightTablet:f,heightMobile:h,disableLazyLoad:v,imgRole:_},setAttributes:T,isSelected:C,onCloseModal:S,onSelectImage:w,onSelectURL:k,onUploadError:P,containerRef:x,context:A,clientId:G,onImageLoadError:M}=e;const R=Object(B.useRef)(),{allowResize:U=!0}=A,{toggleSelection:E}=Object(n.useDispatch)(ge.store),O=le(),{multiImageSelection:H}=Object(n.useSelect)(e=>{const{getMultiSelectedBlockClientIds:t,getBlockName:a}=e(ge.store),l=t();return{multiImageSelection:l.length&&l.every(e=>"uagb/image"===a(e))}},[b,C]),{imageEditing:j,maxWidth:F}=Object(n.useSelect)(e=>{const{getSettings:t}=e(ge.store),{imageEditing:a,maxWidth:l}=t();return{imageEditing:a,maxWidth:l}},[G]),z=Object(L.useViewportMatch)("medium"),D=["wide","full"].includes(p),[{loadedNaturalWidth:N,loadedNaturalHeight:I},V]=Object(B.useState)({}),[W,q]=Object(B.useState)(!1),Z=function(e,t){const[a,l]=Object(B.useState)();function i(){l(e.current.clientWidth)}return Object(B.useEffect)(i,t),Object(B.useEffect)(()=>{const{defaultView:t}=e.current.ownerDocument;return t.addEventListener("resize",i),()=>{t.removeEventListener("resize",i)}},[]),a}(x,[p]),$=U&&!(D&&z),{naturalWidth:Y,naturalHeight:K}=Object(B.useMemo)(()=>{var e,t;const a=(null===(e=R.current)||void 0===e?void 0:e.naturalWidth)||N||void 0,i=(null===(t=R.current)||void 0===t?void 0:t.naturalHeight)||I||void 0;return l.naturalWidth&&l.naturalHeight||T({naturalWidth:a,naturalHeight:i}),{naturalWidth:a,naturalHeight:i}},[N,I,null===(t=R.current)||void 0===t?void 0:t.complete]),J=Object(am.getFilename)(i);let X,Q;X=c||(J?Object(r.sprintf)(
/* translators: %s: file name */
Object(r.__)("This image has an empty alt attribute; its file name is %s","ultimate-addons-for-gutenberg"),J):Object(r.__)("This image has an empty alt attribute","ultimate-addons-for-gutenberg")),Q=u||(J?Object(r.sprintf)(
/* translators: %s: file name */
Object(r.__)("This image has an empty title attribute; its file name is %s","ultimate-addons-for-gutenberg"),J):Object(r.__)("This image has an empty title attribute","ultimate-addons-for-gutenberg"));const ee=b&&i&&(o||s)&&(i!==o||i!==s);let te,ae,ie=React.createElement(React.Fragment,null,React.createElement("img",{srcSet:ee?`${a||i} ${o?","+o+" 780w":""}${s?", "+s+" 360w":""}`:null,src:a||i,alt:"presentation"===_?"":X,title:"presentation"===_?"":Q,onLoad:e=>{var t,a;V({loadedNaturalWidth:null===(t=e.target)||void 0===t?void 0:t.naturalWidth,loadedNaturalHeight:null===(a=e.target)||void 0===a?void 0:a.naturalHeight})},ref:R,loading:v?void 0:"lazy",role:_}),a&&React.createElement(Le.Spinner,null));if(Z&&Y&&K){const e=Y>Z,t=K/Y;te=e?Z:Y,ae=e?Z*t:K}Object(B.useEffect)(()=>{C||q(!1),C&&Kg(b)&&M()},[C]);const oe=b&&Y&&K&&j,ne=!H&&oe&&!W;if(oe&&W)ie=React.createElement(ge.__experimentalImageEditor,{id:b,url:i,width:d,height:y,clientWidth:Z,naturalHeight:K,naturalWidth:Y,onSaveImage:e=>T(e),onFinishEditing:()=>{q(!1)}});else if($&&te){const e=d||te,t=y||ae,a=Y/K,l=Y<K?20:20*a,i=K<Y?20:20/a,o=2.5*F;let n=!1,s=!1;"center"===p?(n=!0,s=!0):Object(r.isRTL)()?"left"===p?n=!0:s=!0:"right"===p?s=!0:n=!0;let c="",u="";"Tablet"===O?(c=g||d,u=f||y):"Mobile"===O?(c=m||g||d,u=h||f||y):(c=d,u=y),ie=React.createElement(Le.ResizableBox,{size:{width:c||"auto",height:u||"auto"},showHandle:C,minWidth:l,maxWidth:o,minHeight:i,maxHeight:o/a,lockAspectRatio:!0,enable:{top:!1,right:n,bottom:!0,left:s},onResizeStart:function(){E(!1)},onResizeStop:(a,l,i,o)=>{if(E(!0),"Tablet"===O){const e=g||780;T({widthTablet:Math.abs(parseInt(e+o.width,10)),heightTablet:Math.abs(parseInt(f+o.height,10))})}else if("Mobile"===O){const e=m||320;T({widthMobile:Math.abs(parseInt(e+o.width,10)),heightMobile:Math.abs(parseInt(h+o.height,10))})}else T({width:Math.abs(parseInt(e+o.width,10)),height:Math.abs(parseInt(t+o.height,10))})}},ie)}else"full"!==p&&(ie=React.createElement("div",null,ie));const re=React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{group:"block"},ne&&React.createElement(Le.ToolbarButton,{onClick:()=>q(!0),icon:lm,label:Object(r.__)("Crop","ultimate-addons-for-gutenberg")})),!H&&!W&&React.createElement(ge.BlockControls,{group:"other"},React.createElement(ge.MediaReplaceFlow,{mediaId:b,mediaURL:i,allowedTypes:im,accept:"image/*",onSelect:w,onSelectURL:k,onError:P,onCloseModal:S})));return React.createElement(React.Fragment,null,!a&&re,ie)}function nm(e){let{attributes:t,isSelected:a,setAttributes:l,captionRef:i}=e;const{caption:o,enableCaption:n,heading:s,headingTag:c,layout:u,overlayContentPosition:p,seperatorStyle:b,seperatorPosition:d}=t,g=Object(B.useRef)();Object(B.useEffect)(()=>{g.current=s},[o]);const m=React.createElement(React.Fragment,null,(!ge.RichText.isEmpty(s)||a)&&React.createElement(ge.RichText,{ref:g,tagName:c,className:"uagb-image-heading","aria-label":Object(r.__)("Image overlay heading text","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Add Heading","ultimate-addons-for-gutenberg"),value:s,onChange:e=>l({heading:e})})),y=React.createElement(React.Fragment,null,(!ge.RichText.isEmpty(o)||a)&&React.createElement(ge.RichText,{ref:i,tagName:"figcaption",className:"uagb-image-caption","aria-label":Object(r.__)("Image caption text","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Add caption","ultimate-addons-for-gutenberg"),value:o,onChange:e=>l({caption:e})})),f="none"!==b&&React.createElement("div",{className:"uagb-image-separator"});return React.createElement(React.Fragment,null,"overlay"===u?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+p.replace(" ","-")},"before_title"===d&&f,m,"after_title"===d&&f,y,"after_sub_title"===d&&f)):React.createElement(React.Fragment,null,n&&y))}var rm,sm=a(105),cm=0,um={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},pm={};pm.locals=sm.a.locals||{},pm.use=function(){return cm++||(rm=ke()(sm.a,um)),pm},pm.unuse=function(){cm>0&&!--cm&&(rm(),rm=null)};var bm=pm;function dm(){return(dm=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const gm=e=>{let{attributes:t}=e;const{setAttributes:a,className:l,isSelected:i,insertBlocksAfter:o,onReplace:s,context:c,clientId:u,deviceType:p}=e;null!=e&&e.loopUrl&&(t={...t,url:e.loopUrl}),null!=e&&e.loopAlt&&(t={...t,alt:e.loopAlt}),null!=e&&e.loopTitle&&(t={...t,title:e.loopTitle}),null!=e&&e.loopWidth&&(t={...t,width:e.loopWidth});const{block_id:b,layout:d,url:g,alt:m,title:y,caption:f,align:h,id:v,linkTarget:_,linkClass:T,rel:C,imageHoverEffect:S,href:w,linkDestination:k,sizeSlug:P,sizeSlugTablet:x,sizeSlugMobile:A}=t;Object(B.useLayoutEffect)(()=>(bm.use(),()=>{bm.unuse()}),[]);const{createNotice:G}=Object(n.useDispatch)("core/notices"),[M,R]=Object(B.useState)(),[U,E]=Object(B.useState)(),O=Object(B.useRef)();Object(B.useEffect)(()=>{O.current=m},[m]);const L=Object(B.useRef)();Object(B.useEffect)(()=>{L.current=y},[y]);const H=Object(B.useRef)();Object(B.useEffect)(()=>{H.current=f},[f]);const j=Object(B.useRef)(),{imageDefaultSize:F,mediaUpload:z}=Object(n.useSelect)(e=>{const{getSettings:t}=e(ge.store),{imageDefaultSize:a,mediaUpload:l}=t();return{imageDefaultSize:a,mediaUpload:l}},[]),{image:D}=Object(n.useSelect)(e=>{const{getMedia:t}=e(de.store);return{image:v&&i?t(v):null}},[v,i]);function N(){var e;Kg(null===(e=t)||void 0===e?void 0:e.id)&&a({url:void 0,id:void 0})}function I(e){G("error",e,{type:"snackbar"})}function V(e){var l,i,o,n,r;if(!e||!e.url)return void a({url:void 0,alt:void 0,id:void 0,title:void 0,caption:void 0});if(Object(qg.isBlobURL)(e.url))return void R(e.url);R();let s=Zg(e,F);"custom"===P&&(delete s.width,delete s.height),H.current&&!s.caption&&(s={...s,alt:s.alt,title:s.title,id:s.id,link:s.link});let c={};e.id&&e.id===v?c={url:g}:("custom"!==P&&(c={width:void 0,height:void 0,sizeSlug:Yg(e,F)?F:"full",...c}),"custom"!==x&&(c={...c,sizeSlugTablet:Yg(e,F)?F:"full"}),"custom"!==A&&(c={...c,sizeSlugMobile:Yg(e,F)?F:"full"}));let u,p=t.linkDestination;if(!p)switch((null===(l=wp)||void 0===l||null===(i=l.media)||void 0===i||null===(o=i.view)||void 0===o||null===(n=o.settings)||void 0===n||null===(r=n.defaultProps)||void 0===r?void 0:r.link)||"none"){case"file":case"media":p="media";break;case"post":case"attachment":p="attachment";break;case"custom":p="custom";break;case"none":p="none"}switch(p){case"media":u=e.url;break;case"attachment":u=e.link}s.href=u,s={...s,...Jg(e,"Tablet"),...Jg(e,"Mobile")};const b={...s,...c,linkDestination:p};a(b)}function W(e){if(e!==g){let t={url:e,urlTablet:e,urlMobile:e,id:void 0};"custom"!==P&&(t={...t,width:void 0,height:void 0,sizeSlug:F}),"custom"!==x&&(t={...t,widthTablet:void 0,heightTablet:void 0,sizeSlugTablet:F}),"custom"!==A&&(t={...t,heightMobile:void 0,widthMobile:void 0,sizeSlugMobile:F}),a(t)}}let q=((e,t)=>!e&&Object(qg.isBlobURL)(t))(v,g);Object(B.useEffect)(()=>{if(!q)return;const e=Object(qg.getBlobByURL)(g);e&&z({filesList:[e],onFileChange:e=>{let[t]=e;V(t)},allowedTypes:im,onError:e=>{q=!1,G("error",e,{type:"snackbar"}),a({src:void 0,id:void 0,url:void 0})}})},[]),Object(B.useEffect)(()=>{q?R(g):Object(qg.revokeBlobURL)(M)},[q,g]);const Z=$g(v,g)?g:void 0,$="not-installed"===g&&React.createElement("img",{alt:Object(r.__)("Edit image","ultimate-addons-for-gutenberg"),title:Object(r.__)("Edit image","ultimate-addons-for-gutenberg"),className:"edit-image-preview",src:g});Object(B.useEffect)(()=>{$g(v,g)&&i&&!U&&window.fetch(g).then(e=>e.blob()).then(e=>E(e)).catch(()=>{})},[v,g,i,U]);const Y=Object(ge.useBlockProps)({ref:j});return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{group:"block"},React.createElement(ge.__experimentalImageURLInputUI,{url:w||"",onChangeUrl:function(e){a(e)},linkDestination:k,mediaUrl:D&&D.source_url||g,mediaLink:D&&D.link,linkTarget:_,linkClass:T,rel:C}),U&&React.createElement(Le.ToolbarButton,{onClick:function(){z({filesList:[U],onFileChange(e){let[t]=e;V(t),Object(qg.isBlobURL)(null==t?void 0:t.url)||(E(),G("success",Object(r.__)("Image uploaded.","ultimate-addons-for-gutenberg"),{type:"snackbar"}))},allowedTypes:im,onError(e){G("error",e,{type:"snackbar"})}})},icon:tm,label:Object(r.__)("Upload external image","ultimate-addons-for-gutenberg")})),React.createElement("div",dm({},Y,{className:Be()(l,"uagb-editor-preview-mode-"+p.toLowerCase(),"uagb-block-"+b,"wp-block-uagb-image--layout-"+d,"wp-block-uagb-image--effect-"+S,"wp-block-uagb-image--align-"+(h||"none"))}),(M||g)&&React.createElement("figure",{className:"wp-block-uagb-image__figure"},React.createElement(om,{temporaryURL:M,attributes:t,setAttributes:a,isSelected:i,insertBlocksAfter:o,onReplace:s,onSelectImage:V,onSelectURL:W,onUploadError:I,containerRef:j,context:c,clientId:u,onCloseModal:N,onImageLoadError:function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];e||a({url:void 0,id:void 0})}}),React.createElement(nm,{captionRef:H,attributes:t,setAttributes:a,isSelected:i})),React.createElement(ge.MediaPlaceholder,{icon:React.createElement(ge.BlockIcon,{icon:se.image}),labels:{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Upload an image file, pick one from your media library, or add one with a URL.","ultimate-addons-for-gutenberg")},onSelect:V,onSelectURL:W,onError:I,onClose:N,accept:"image/*",allowedTypes:im,value:{id:v,src:Z},mediaPreview:$,disableMediaButtons:M||g})))};gm.propTypes={},gm.defaultProps={};var mm=Object(B.memo)(gm);a(163);var ym=Object(L.compose)((function(e){return t=>{var a,l;const{attributes:i,context:o}=t,n=null==i||null===(a=i.dynamicContent)||void 0===a||null===(l=a.bgImage)||void 0===l?void 0:l.enable;if(t={...t,hasDynamicContent:n},!n)return React.createElement(e,t);const r=Object(j.applyFilters)("spectra_filter_dc_image",i,o);return t={...t,attributes:r},React.createElement(e,t)}}),vs,fe,Pc)((function(e){const{isSelected:t,attributes:a,name:l,attributes:{UAGHideDesktop:i,UAGHideTab:o,UAGHideMob:n,id:r},deviceType:s,context:c,setAttributes:u,clientId:p,hasDynamicContent:b}=e;Object(B.useEffect)(()=>{var e;!b||null!=a&&null!==(e=a.context)&&void 0!==e&&e.postId||u(e=>({...e,context:c}))},[b,null==c?void 0:c.postId]),Object(B.useEffect)(()=>{Bs()},[s]);const d=Object(B.useMemo)(()=>Og(a,p,l,s),[a,s]);return Object(B.useEffect)(()=>{he(e)},[i,o,n,s]),Object(B.useMemo)(()=>{r&&(e=>{const t=window.location.protocol,a=!!(l=e.url)&&(l&&l.indexOf("http:")>=0?"http:":"https:");var l;a!==t&&["url","urlMobile","urlTablet"].map(l=>{e[l]=e[l].replace(a,t)})})(e.attributes)},[a]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:d}),t&&React.createElement(Qg,e),React.createElement(mm,e))}));const fm=ce("overlay");var hm={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"default",UAGCopyPaste:{styleType:"image-layout"}},url:{type:"string",default:""},urlTablet:{type:"string",default:""},urlMobile:{type:"string",default:""},alt:{type:"string",default:""},enableCaption:{type:"boolean",default:!1},caption:{type:"string",default:""},align:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align-mobile"}},id:{type:"integer",default:""},href:{type:"string",default:""},rel:{type:"string",default:""},linkClass:{type:"string",default:""},linkDestination:{type:"string",default:""},title:{type:"string",default:""},width:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width"}},widthTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-tablet"}},widthMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-mobile"}},height:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height"}},heightTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-tablet"}},heightMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-mobile"}},naturalWidth:{type:"integer",default:""},naturalHeight:{type:"integer",default:""},linkTarget:{type:"string",default:""},sizeSlug:{type:"string",default:""},sizeSlugTablet:{type:"string",default:""},sizeSlugMobile:{type:"string",default:""},imageTopMargin:{type:"number",UAGCopyPaste:{styleType:"image-top-margin"}},imageRightMargin:{type:"number",UAGCopyPaste:{styleType:"image-right-margin"}},imageLeftMargin:{type:"number",UAGCopyPaste:{styleType:"image-left-margin"}},imageBottomMargin:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-tablet"}},imageBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-margin-mobile"}},imageLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},imageMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},imageMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},imageMarginLink:{type:"boolean",default:!0},captionText:{type:"string",default:""},captionShowOn:{type:"string",default:"hover"},captionLoadGoogleFonts:{type:"boolean",default:!1},captionColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},captionAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"desc-align"}},captionFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},captionFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},captionFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},captionTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},captionDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},captionFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},captionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},captionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},captionLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},captionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},captionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},captionTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},captionRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},captionLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},captionBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},captionTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},captionRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},captionLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},captionBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},captionTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},captionRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},captionLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},captionBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},captionMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},captionMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},captionMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},captionMarginLink:{type:"boolean",default:!1},heading:{type:"string",default:""},headingShowOn:{type:"string",default:"always"},headingTag:{type:"string",default:"h2"},headingId:{type:"string"},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height"}},headingFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headingTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},overlayPositionFromEdge:{type:"number",default:15,UAGCopyPaste:{styleType:"overlay-position-from-edge"}},overlayPositionFromEdgeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overlay-position-from-edge-unit"}},overlayContentPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"overlay-content-position"}},overlayBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"overlay-background"}},overlayOpacity:{type:"float",default:.2,UAGCopyPaste:{styleType:"overlay-opacity"}},overlayHoverOpacity:{type:"number",default:1,UAGCopyPaste:{styleType:"overlay-hover-opacity"}},seperatorShowOn:{type:"string",default:"hover",UAGCopyPaste:{styleType:"seperator-show-on"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"separator-color"}},seperatorPosition:{type:"string",default:"after_title"},seperatorWidth:{type:"number",default:30,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorThicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-unit"}},seperatorTopMargin:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin"}},seperatorRightMargin:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin"}},seperatorLeftMargin:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin"}},seperatorBottomMargin:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin"}},seperatorTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},seperatorRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},seperatorBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},seperatorTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},seperatorRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},seperatorMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},seperatorMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"}},seperatorMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"}},seperatorMarginLink:{type:"boolean",default:!1},imageHoverEffect:{type:"string",default:"static"},objectFit:{type:"string"},objectFitTablet:{type:"string"},objectFitMobile:{type:"string"},imageBoxShadowColor:{type:"string",UAGCopyPaste:{styleType:"image-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-h-offset"}},imageBoxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-v-offset"}},imageBoxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"image-shadow-blur"}},imageBoxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"image-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"image-shadow-position"}},maskShape:{type:"string",default:"none"},maskCustomShape:{type:"object",default:{url:"",alt:"mask shape"}},maskSize:{type:"string",default:"auto"},maskPosition:{type:"string",default:"center center"},maskRepeat:{type:"string",default:"no-repeat"},headingLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},headingLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},captionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},captionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},captionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},captionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},customHeightSetDesktop:{type:"boolean",default:!1},customHeightSetTablet:{type:"boolean",default:!1},customHeightSetMobile:{type:"boolean",default:!1},...ce("image"),...fm};const vm=ce("overlay");var _m={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"default",UAGCopyPaste:{styleType:"image-layout"}},url:{type:"string",default:""},urlTablet:{type:"string",default:""},urlMobile:{type:"string",default:""},alt:{type:"string",default:""},enableCaption:{type:"boolean",default:!1},caption:{type:"string",default:""},align:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align"}},alignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align-tablet"}},alignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align-mobile"}},id:{type:"integer",default:""},href:{type:"string",default:""},rel:{type:"string",default:""},linkClass:{type:"string",default:""},linkDestination:{type:"string",default:""},title:{type:"string",default:""},width:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width"}},widthTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-tablet"}},widthMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-mobile"}},height:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height"}},heightTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-tablet"}},heightMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-mobile"}},naturalWidth:{type:"integer",default:""},naturalHeight:{type:"integer",default:""},linkTarget:{type:"string",default:""},sizeSlug:{type:"string",default:""},sizeSlugTablet:{type:"string",default:""},sizeSlugMobile:{type:"string",default:""},imageTopMargin:{type:"number",UAGCopyPaste:{styleType:"image-top-margin"}},imageRightMargin:{type:"number",UAGCopyPaste:{styleType:"image-right-margin"}},imageLeftMargin:{type:"number",UAGCopyPaste:{styleType:"image-left-margin"}},imageBottomMargin:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin"}},imageTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-tablet"}},imageBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-margin-mobile"}},imageLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},imageMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},imageMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},imageMarginLink:{type:"boolean",default:!0},captionText:{type:"string",default:""},captionShowOn:{type:"string",default:"hover"},captionLoadGoogleFonts:{type:"boolean",default:!1},captionColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},captionAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"desc-align"}},captionFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},captionFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},captionFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},captionTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},captionDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},captionFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},captionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},captionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},captionLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},captionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},captionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},captionTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},captionRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},captionLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},captionBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},captionTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},captionRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},captionLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},captionBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},captionTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},captionRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},captionLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},captionBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},captionMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},captionMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},captionMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},captionMarginLink:{type:"boolean",default:!1},heading:{type:"string",default:""},headingShowOn:{type:"string",default:"always"},headingTag:{type:"string",default:"h2"},headingId:{type:"string"},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height"}},headingFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headingTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},overlayPositionFromEdge:{type:"number",default:15,UAGCopyPaste:{styleType:"overlay-position-from-edge"}},overlayPositionFromEdgeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overlay-position-from-edge-unit"}},overlayContentPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"overlay-content-position"}},overlayBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"overlay-background"}},overlayOpacity:{type:"float",default:.2,UAGCopyPaste:{styleType:"overlay-opacity"}},overlayHoverOpacity:{type:"number",default:1,UAGCopyPaste:{styleType:"overlay-hover-opacity"}},seperatorShowOn:{type:"string",default:"hover",UAGCopyPaste:{styleType:"seperator-show-on"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"separator-color"}},seperatorPosition:{type:"string",default:"after_title"},seperatorWidth:{type:"number",default:30,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorThicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-unit"}},seperatorTopMargin:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin"}},seperatorRightMargin:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin"}},seperatorLeftMargin:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin"}},seperatorBottomMargin:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin"}},seperatorTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},seperatorRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},seperatorBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},seperatorTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},seperatorRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},seperatorMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},seperatorMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"}},seperatorMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"}},seperatorMarginLink:{type:"boolean",default:!1},imageHoverEffect:{type:"string",default:"static"},objectFit:{type:"string"},objectFitTablet:{type:"string"},objectFitMobile:{type:"string"},imageBoxShadowColor:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"image-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-h-offset"}},imageBoxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-v-offset"}},imageBoxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"image-shadow-blur"}},imageBoxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"image-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"image-shadow-position"}},maskShape:{type:"string",default:"none"},maskCustomShape:{type:"object",default:{url:"",alt:"mask shape"}},maskSize:{type:"string",default:"auto"},maskPosition:{type:"string",default:"center center"},maskRepeat:{type:"string",default:"no-repeat"},headingLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},headingLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},captionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},captionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},captionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},captionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},customHeightSetDesktop:{type:"boolean",default:!1},customHeightSetTablet:{type:"boolean",default:!1},customHeightSetMobile:{type:"boolean",default:!1},...ce("image"),...vm};const Tm=ce("overlay");var Cm={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"default",UAGCopyPaste:{styleType:"image-layout"}},url:{type:"string",default:""},urlTablet:{type:"string",default:""},urlMobile:{type:"string",default:""},alt:{type:"string",default:""},imgRole:{type:"string",default:"img"},enableCaption:{type:"boolean",default:!1},caption:{type:"string",default:""},align:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align"}},alignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-tablet"}},alignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-mobile"}},id:{type:"integer",default:""},href:{type:"string",default:""},rel:{type:"string",default:""},linkClass:{type:"string",default:""},linkDestination:{type:"string",default:""},title:{type:"string",default:""},width:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width"}},widthTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-tablet"}},widthMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-mobile"}},height:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height"}},heightTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-tablet"}},heightMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-mobile"}},naturalWidth:{type:"integer",default:""},naturalHeight:{type:"integer",default:""},linkTarget:{type:"string",default:""},sizeSlug:{type:"string",default:""},sizeSlugTablet:{type:"string",default:""},sizeSlugMobile:{type:"string",default:""},imageTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin"}},imageRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin"}},imageLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin"}},imageBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-tablet"}},imageBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-mobile"}},imageLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},imageMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},imageMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},imageMarginLink:{type:"boolean",default:!0},captionText:{type:"string",default:""},captionShowOn:{type:"string",default:"hover"},captionLoadGoogleFonts:{type:"boolean",default:!1},captionColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},captionAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-align"}},captionFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},captionFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},captionFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},captionTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},captionDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},captionFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},captionFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},captionFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},captionFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},captionFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},captionLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},captionLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},captionLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},captionTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},captionRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},captionLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},captionBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},captionTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},captionRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},captionLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},captionBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},captionTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},captionRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},captionLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},captionBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},captionMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},captionMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},captionMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},captionMarginLink:{type:"boolean",default:!1},heading:{type:"string",default:""},headingShowOn:{type:"string",default:"always"},headingTag:{type:"string",default:"h2"},headingId:{type:"string"},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headingFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height"}},headingFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headingTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},overlayPositionFromEdge:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-position-from-edge"}},overlayPositionFromEdgeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overlay-position-from-edge-unit"}},overlayContentPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"overlay-content-position"}},overlayBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-background"}},overlayOpacity:{type:"float",default:.2,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-opacity"}},overlayHoverOpacity:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-hover-opacity"}},seperatorShowOn:{type:"string",default:"hover",isGBSStyle:!0,UAGCopyPaste:{styleType:"seperator-show-on"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},seperatorPosition:{type:"string",default:"after_title"},seperatorWidth:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorThicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-unit"}},seperatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},seperatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},seperatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},seperatorBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},seperatorTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},seperatorRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},seperatorBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},seperatorTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},seperatorRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},seperatorMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},seperatorMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"}},seperatorMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"}},seperatorMarginLink:{type:"boolean",default:!1},imageHoverEffect:{type:"string",default:"static"},objectFit:{type:"string"},objectFitTablet:{type:"string"},objectFitMobile:{type:"string"},useSeparateBoxShadows:{type:"boolean",default:!0},imageBoxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-h-offset"}},imageBoxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-v-offset"}},imageBoxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-blur"}},imageBoxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-position"}},imageBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"image-shadow-color-hover"}},imageBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-h-offset-hover"}},imageBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-v-offset-hover"}},imageBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-blur-hover"}},imageBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-spread-hover"}},imageBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"image-shadow-position-hover"}},maskShape:{type:"string",default:"none"},maskCustomShape:{type:"object",default:{url:"",alt:"mask shape"}},maskSize:{type:"string",default:"auto"},maskPosition:{type:"string",default:"center center"},maskRepeat:{type:"string",default:"no-repeat"},headingLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},headingLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},captionLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},captionLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},captionLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},captionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},customHeightSetDesktop:{type:"boolean",default:!1},customHeightSetTablet:{type:"boolean",default:!1},customHeightSetMobile:{type:"boolean",default:!1},...ce("image"),...Tm};const Sm=ce("overlay");var wm=[{attributes:Cm,save:e=>{const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,align:g,id:m,linkTarget:y,rel:f,title:h,heading:v,headingTag:_,headingId:T,overlayContentPosition:C,seperatorStyle:S,seperatorPosition:w}=e.attributes,k=React.createElement("img",{srcSet:`${l} 1024w${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,src:l,alt:n,className:m?"uag-image-"+m:null,width:b,height:d,title:h}),P=()=>f?f+" noopener":"noopener",x=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:y,rel:P()},k):k),A=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(v)&&React.createElement(ge.RichText.Content,{tagName:_,id:T,className:"uagb-image-heading",value:v})),G=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),M="none"!==S&&React.createElement("div",{className:"uagb-image-separator"}),R=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:y,rel:P()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(g||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},x,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+C.replace(" ","-")},R,"before_title"===w&&M,A,"after_title"===w&&M,G,"after_sub_title"===w&&M)):React.createElement(React.Fragment,null,s&&G)))}},{attributes:Cm,save:e=>{const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,align:g,id:m,linkTarget:y,rel:f,title:h,heading:v,headingTag:_,headingId:T,overlayContentPosition:C,seperatorStyle:S,seperatorPosition:w}=e.attributes,k=React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,src:l,alt:n,className:m?"uag-image-"+m:null,width:b,height:d,title:h}),P=()=>f?f+" noopener":"noopener",x=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:y,rel:P()},k):k),A=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(v)&&React.createElement(ge.RichText.Content,{tagName:_,id:T,className:"uagb-image-heading",value:v})),G=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),M="none"!==S&&React.createElement("div",{className:"uagb-image-separator"}),R=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:y,rel:P()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(g||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},x,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+C.replace(" ","-")},R,"before_title"===w&&M,A,"after_title"===w&&M,G,"after_sub_title"===w&&M)):React.createElement(React.Fragment,null,s&&G)))}},{attributes:hm,save:function(e){const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,align:g,id:m,linkTarget:y,rel:f,title:h,heading:v,headingTag:_,headingId:T,overlayContentPosition:C,seperatorStyle:S,seperatorPosition:w}=e.attributes,k=React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,src:l,alt:n,className:m?"uag-image-"+m:null,width:b,height:d,title:h}),P=()=>f?f.trim():"noopener",x=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:y,rel:P()},k):k),A=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(v)&&React.createElement(ge.RichText.Content,{tagName:_,id:T,className:"uagb-image-heading",value:v})),G=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),M="none"!==S&&React.createElement("div",{className:"uagb-image-separator"}),R=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:y,rel:P()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(g||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},x,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+C.replace(" ","-")},R,"before_title"===w&&M,A,"after_title"===w&&M,G,"after_sub_title"===w&&M)):React.createElement(React.Fragment,null,s&&G)))}},{attributes:_m,save:function(e){const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,align:g,id:m,linkTarget:y,rel:f,title:h,heading:v,headingTag:_,headingId:T,overlayContentPosition:C,seperatorStyle:S,seperatorPosition:w}=e.attributes,k=React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,src:l,alt:n,className:m?"uag-image-"+m:null,width:b,height:d,title:h,loading:"lazy"}),P=()=>f?f.trim():"noopener",x=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:y,rel:P()},k):k),A=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(v)&&React.createElement(ge.RichText.Content,{tagName:_,id:T,className:"uagb-image-heading",value:v})),G=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),M="none"!==S&&React.createElement("div",{className:"uagb-image-separator"}),R=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:y,rel:P()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(g||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},x,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+C.replace(" ","-")},R,"before_title"===w&&M,A,"after_title"===w&&M,G,"after_sub_title"===w&&M)):React.createElement(React.Fragment,null,s&&G)))}},{attributes:Cm,save:function(e){const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,align:g,id:m,linkTarget:y,rel:f,title:h,heading:v,headingTag:_,headingId:T,overlayContentPosition:C,seperatorStyle:S,seperatorPosition:w}=e.attributes,k=React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,src:l,alt:n,className:m?"uag-image-"+m:null,width:b,height:d,title:h,loading:"lazy"}),P=()=>f?f.trim():"noopener",x=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:y,rel:P()},k):k),A=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(v)&&React.createElement(ge.RichText.Content,{tagName:_,id:T,className:"uagb-image-heading",value:v})),G=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),M="none"!==S&&React.createElement("div",{className:"uagb-image-separator"}),R=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:y,rel:P()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(g||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},x,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+C.replace(" ","-")},R,"before_title"===w&&M,A,"after_title"===w&&M,G,"after_sub_title"===w&&M)):React.createElement(React.Fragment,null,s&&G)))}},{attributes:Cm,save:function(e){const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,naturalHeight:g,naturalWidth:m,align:y,id:f,linkTarget:h,rel:v,title:_,heading:T,headingTag:C,headingId:S,overlayContentPosition:w,seperatorStyle:k,seperatorPosition:P}=e.attributes,x=React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,sizes:"(max-width: 480px) 150px",src:l,alt:n,className:f?"uag-image-"+f:null,width:b||m,height:d||g,title:_,loading:"lazy"}),A=()=>v?v.trim():"noopener",G=React.createElement(React.Fragment,null,u?React.createElement("a",{className:p,href:u,target:h,rel:A()},x):x),M=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(T)&&React.createElement(ge.RichText.Content,{tagName:C,id:S,className:"uagb-image-heading",value:T})),R=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),B="none"!==k&&React.createElement("div",{className:"uagb-image-separator"}),U=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:h,rel:A()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(y||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},G,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+w.replace(" ","-")},U,"before_title"===P&&B,M,"after_title"===P&&B,R,"after_sub_title"===P&&B)):React.createElement(React.Fragment,null,s&&R)))}},{attributes:Cm,save:function(e){const{block_id:t,layout:a,url:l,urlTablet:i,urlMobile:o,alt:n,caption:r,enableCaption:s,imageHoverEffect:c,href:u,linkClass:p,width:b,height:d,naturalHeight:g,naturalWidth:m,align:y,id:f,linkTarget:h,rel:v,title:_,heading:T,headingTag:C,headingId:S,overlayContentPosition:w,seperatorStyle:k,seperatorPosition:P}=e.attributes,x=l&&""!==l&&React.createElement("img",{srcSet:`${l} ${i?","+i+" 780w":""}${o?", "+o+" 360w":""}`,sizes:"(max-width: 480px) 150px",src:l,alt:n,className:f?"uag-image-"+f:null,width:b||m,height:d||g,title:_,loading:"lazy"}),A=()=>v?v.trim():"noopener",G=React.createElement(React.Fragment,null,u&&""!==u?React.createElement("a",{className:p,href:u,target:h,rel:A()},x):x),M=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(T)&&React.createElement(ge.RichText.Content,{tagName:C,id:S,className:"uagb-image-heading",value:T})),R=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(r)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:r})),B="none"!==k&&React.createElement("div",{className:"uagb-image-separator"}),U=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+p,href:u,target:h,rel:A()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"wp-block-uagb-image","wp-block-uagb-image--layout-"+a,"wp-block-uagb-image--effect-"+c,"wp-block-uagb-image--align-"+(y||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},G,"overlay"===a?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+w.replace(" ","-")},U,"before_title"===P&&B,M,"after_title"===P&&B,R,"after_sub_title"===P&&B)):React.createElement(React.Fragment,null,s&&R)))}},{attributes:{block_id:{type:"string"},isPreview:{type:"boolean",default:!1},layout:{type:"string",default:"default",UAGCopyPaste:{styleType:"image-layout"}},disableLazyLoad:{type:"boolean",default:!1},url:{type:"string",default:""},urlTablet:{type:"string",default:""},urlMobile:{type:"string",default:""},alt:{type:"string",default:""},imgRole:{type:"string",default:"img"},enableCaption:{type:"boolean",default:!1},caption:{type:"string",default:""},align:{type:"string",default:"",UAGCopyPaste:{styleType:"image-align"}},alignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-tablet"}},alignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-align-mobile"}},id:{type:"integer",default:""},href:{type:"string",default:""},rel:{type:"string",default:""},linkClass:{type:"string",default:""},linkDestination:{type:"string",default:""},title:{type:"string",default:""},width:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width"}},widthTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-tablet"}},widthMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-width-mobile"}},height:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height"}},heightTablet:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-tablet"}},heightMobile:{type:"integer",default:"",UAGCopyPaste:{styleType:"image-height-mobile"}},naturalWidth:{type:"integer",default:""},naturalHeight:{type:"integer",default:""},linkTarget:{type:"string",default:""},sizeSlug:{type:"string",default:""},sizeSlugTablet:{type:"string",default:""},sizeSlugMobile:{type:"string",default:""},imageTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin"}},imageRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin"}},imageLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin"}},imageBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin"}},imageTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-tablet"}},imageRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-tablet"}},imageLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-tablet"}},imageBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-tablet"}},imageTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-top-margin-mobile"}},imageRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-right-margin-mobile"}},imageLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-left-margin-mobile"}},imageBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-bottom-margin-mobile"}},imageMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit"}},imageMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-tablet"}},imageMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-margin-unit-mobile"}},imageMarginLink:{type:"boolean",default:!0},captionText:{type:"string",default:""},captionShowOn:{type:"string",default:"hover"},captionLoadGoogleFonts:{type:"boolean",default:!1},captionColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},captionAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-align"}},captionFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},captionFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},captionFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},captionTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},captionDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},captionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},captionFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},captionFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},captionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},captionFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},captionFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},captionFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},captionLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},captionLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},captionLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},captionTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},captionRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},captionLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},captionBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},captionTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},captionRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},captionLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},captionBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},captionTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},captionRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},captionLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},captionBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},captionMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},captionMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},captionMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},captionMarginLink:{type:"boolean",default:!1},heading:{type:"string",default:""},headingShowOn:{type:"string",default:"always"},headingTag:{type:"string",default:"h2"},headingId:{type:"string"},headingLoadGoogleFonts:{type:"boolean",default:!1},headingColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},headingFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headingFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headingFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headingTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headingDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headingFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headingFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headingFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headingLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height"}},headingFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headingFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headingFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headingLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headingLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headingLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},headingTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headingRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headingLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headingBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},headingTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headingRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headingLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},headingBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headingTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headingRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headingLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headingBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headingMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit"}},headingMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},headingMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},headingMarginLink:{type:"boolean",default:!1},overlayPositionFromEdge:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-position-from-edge"}},overlayPositionFromEdgeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"overlay-position-from-edge-unit"}},overlayContentPosition:{type:"string",default:"center center",UAGCopyPaste:{styleType:"overlay-content-position"}},overlayBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-background"}},overlayOpacity:{type:"float",default:.2,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-opacity"}},overlayHoverOpacity:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"overlay-hover-opacity"}},seperatorShowOn:{type:"string",default:"hover",isGBSStyle:!0,UAGCopyPaste:{styleType:"seperator-show-on"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},seperatorPosition:{type:"string",default:"after_title"},seperatorWidth:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},seperatorThicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-width-unit"}},seperatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},seperatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},seperatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},seperatorBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},seperatorTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},seperatorRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},seperatorBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},seperatorTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},seperatorRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},seperatorMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},seperatorMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"}},seperatorMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"}},seperatorMarginLink:{type:"boolean",default:!1},imageHoverEffect:{type:"string",default:"static"},objectFit:{type:"string"},objectFitTablet:{type:"string"},objectFitMobile:{type:"string"},useSeparateBoxShadows:{type:"boolean",default:!0},imageBoxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-color"}},imageBoxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-h-offset"}},imageBoxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-v-offset"}},imageBoxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-blur"}},imageBoxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-spread"}},imageBoxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-shadow-position"}},imageBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"image-shadow-color-hover"}},imageBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-h-offset-hover"}},imageBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"image-shadow-v-offset-hover"}},imageBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-blur-hover"}},imageBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"image-shadow-spread-hover"}},imageBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"image-shadow-position-hover"}},maskShape:{type:"string",default:"none"},maskCustomShape:{type:"object",default:{url:"",alt:"mask shape"}},maskSize:{type:"string",default:"auto"},maskPosition:{type:"string",default:"center center"},maskRepeat:{type:"string",default:"no-repeat"},headingLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},headingLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},headingLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},headingLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},captionLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},captionLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},captionLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},captionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},customHeightSetDesktop:{type:"boolean",default:!1},customHeightSetTablet:{type:"boolean",default:!1},customHeightSetMobile:{type:"boolean",default:!1},...ce("image"),...Sm},save:function(e){var t,a;const{attributes:l}=e,{block_id:i,layout:o,url:n,urlTablet:r,urlMobile:s,alt:c,caption:u,enableCaption:p,imageHoverEffect:b,href:d,linkClass:g,width:m,height:y,naturalHeight:f,naturalWidth:h,align:v,id:_,linkTarget:T,rel:C,title:S,heading:w,headingTag:k,headingId:P,overlayContentPosition:x,seperatorStyle:A,seperatorPosition:G,disableLazyLoad:M}=e.attributes,R=n&&""!==n&&React.createElement("img",{srcSet:`${n} ${r?","+r+" 780w":""}${s?", "+s+" 360w":""}`,sizes:"(max-width: 480px) 150px",src:n,alt:c,className:_?"uag-image-"+_:null,width:m||h,height:y||f,title:S,loading:M?void 0:"lazy"}),B=()=>C?C.trim():"noopener",U=React.createElement(React.Fragment,null,d&&""!==d?React.createElement("a",{className:g,href:d,target:T,rel:B()},R):R),E=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(w)&&React.createElement(ge.RichText.Content,{tagName:k,id:P,className:"uagb-image-heading",value:w})),O=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(u)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:u})),L="none"!==A&&React.createElement("div",{className:"uagb-image-separator"}),H=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+g,href:d,target:T,rel:B()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+i,"wp-block-uagb-image","wp-block-uagb-image--layout-"+o,"wp-block-uagb-image--effect-"+b,"wp-block-uagb-image--align-"+(v||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},U,"overlay"===o?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+x.replace(" ","-")},(!0===(null==l||null===(t=l.dynamicContent)||void 0===t||null===(a=t.bgImageLink)||void 0===a?void 0:a.enable)||d)&&H,"before_title"===G&&L,E,"after_title"===G&&L,O,"after_sub_title"===G&&L)):React.createElement(React.Fragment,null,p&&O)))}}],km={from:[{type:"block",blocks:["core/image"],transform:e=>{let{url:t,sizeSlug:a}=e;return Object(be.createBlock)("uagb/image",{url:t,sizeSlug:a})}},{type:"block",blocks:["core/post-featured-image"],transform:e=>{let{sizeSlug:t}=e;return Object(be.createBlock)("uagb/image",{useDynamicData:!0,dynamicContentType:"featured-image",sizeSlug:t})}},{type:"block",blocks:["core/cover"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,W,q,Z,$,Y,K,J,X,Q,ee,te,ae,le,ie,oe,ne,re,se,ce,ue,pe,de,ge,me,ye,fe,he,ve,_e,Te,Ce,Se,we,ke,Pe,xe,Ae,Ge,Me,Re,Be,Ue,Ee,Oe,Le,He,je,Fe,ze,De,Ne,Ie,Ve,We,qe,Ze,$e,Ye,Ke,Je,Xe,Qe,et,tt,at,lt,it,ot,nt,rt,st,ct,ut,pt,bt,dt,gt,mt,yt,ft,ht,vt,_t,Tt,Ct,St,wt,kt,Pt,xt,At,Gt,Mt,Rt,Bt,Ut,Et,Ot,Lt,Ht,jt,Ft,zt,Dt,Nt,It,Vt;const Wt=V("object"!=typeof(null==e||null===(a=e.style)||void 0===a||null===(l=a.border)||void 0===l?void 0:l.radius)&&(null==e||null===(i=e.style)||void 0===i||null===(o=i.border)||void 0===o?void 0:o.radius)||(null==e||null===(n=e.style)||void 0===n||null===(r=n.border)||void 0===r||null===(s=r.radius)||void 0===s?void 0:s.topRight)||(null==e||null===(c=e.style)||void 0===c||null===(u=c.border)||void 0===u||null===(p=u.radius)||void 0===p?void 0:p.topLeft)||(null==e||null===(b=e.style)||void 0===b||null===(d=b.border)||void 0===d||null===(g=d.radius)||void 0===g?void 0:g.bottomRight)||(null==e||null===(m=e.style)||void 0===m||null===(y=m.border)||void 0===y||null===(f=y.radius)||void 0===f?void 0:f.bottomLeft)||""),qt=(null===(h=t[0])||void 0===h?void 0:h.attributes)||{},Zt=Boolean(qt.content);let $t;var Yt,Kt;if(null!=qt&&null!==(v=qt.style)&&void 0!==v&&null!==(_=v.color)&&void 0!==_&&_.text)$t=null==qt||null===(Yt=qt.style)||void 0===Yt||null===(Kt=Yt.color)||void 0===Kt?void 0:Kt.text;else if(Nc(null==qt?void 0:qt.textColor))$t=Nc(null==qt?void 0:qt.textColor);else if(null!=e&&null!==(T=e.style)&&void 0!==T&&null!==(C=T.color)&&void 0!==C&&C.text){var Jt,Xt;$t=null==e||null===(Jt=e.style)||void 0===Jt||null===(Xt=Jt.color)||void 0===Xt?void 0:Xt.text}else $t=Nc(null==e?void 0:e.textColor)?Nc(null==e?void 0:e.textColor):"";return Object(be.createBlock)("uagb/image",{url:e.url,alt:e.alt,title:e.title,enableCaption:Zt,headingColor:$t,heading:Zt?qt.content:"",headingFontWeight:(null==qt||null===(S=qt.style)||void 0===S||null===(w=S.typography)||void 0===w?void 0:w.fontWeight)||(null==e||null===(k=e.style)||void 0===k||null===(P=k.typography)||void 0===P?void 0:P.fontWeight)||"",headingFontSize:N((null==qt||null===(x=qt.style)||void 0===x||null===(A=x.typography)||void 0===A?void 0:A.fontSize)||(null==e||null===(G=e.style)||void 0===G||null===(M=G.typography)||void 0===M?void 0:M.fontSize)||""),headingFontSizeType:I((null==qt||null===(R=qt.style)||void 0===R||null===(B=R.typography)||void 0===B?void 0:B.fontSize)||(null==e||null===(U=e.style)||void 0===U||null===(E=U.typography)||void 0===E?void 0:E.fontSize)||""),headingLetterSpacing:N((null==qt||null===(O=qt.style)||void 0===O||null===(L=O.typography)||void 0===L?void 0:L.letterSpacing)||(null==e||null===(H=e.style)||void 0===H||null===(j=H.typography)||void 0===j?void 0:j.letterSpacing)||""),headingLetterSpacingType:I((null==qt||null===(F=qt.style)||void 0===F||null===(z=F.typography)||void 0===z?void 0:z.letterSpacing)||(null==e||null===(D=e.style)||void 0===D||null===(W=D.typography)||void 0===W?void 0:W.letterSpacing)||""),headingDecoration:(null==qt||null===(q=qt.style)||void 0===q||null===(Z=q.typography)||void 0===Z?void 0:Z.textDecoration)||(null==e||null===($=e.style)||void 0===$||null===(Y=$.typography)||void 0===Y?void 0:Y.textDecoration)||"",headingTransform:(null==qt||null===(K=qt.style)||void 0===K||null===(J=K.typography)||void 0===J?void 0:J.textTransform)||(null==e||null===(X=e.style)||void 0===X||null===(Q=X.typography)||void 0===Q?void 0:Q.textTransform)||"",headingLineHeight:N((null==qt||null===(ee=qt.style)||void 0===ee||null===(te=ee.typography)||void 0===te?void 0:te.lineHeight)||(null==e||null===(ae=e.style)||void 0===ae||null===(le=ae.typography)||void 0===le?void 0:le.lineHeight)||""),imageTopMargin:N((null==e||null===(ie=e.style)||void 0===ie||null===(oe=ie.spacing)||void 0===oe||null===(ne=oe.margin)||void 0===ne?void 0:ne.top)||""),imageBottomMargin:N((null==e||null===(re=e.style)||void 0===re||null===(se=re.spacing)||void 0===se||null===(ce=se.margin)||void 0===ce?void 0:ce.bottom)||""),imageMarginLink:!1,imageMarginUnit:I((null==e||null===(ue=e.style)||void 0===ue||null===(pe=ue.spacing)||void 0===pe||null===(de=pe.margin)||void 0===de?void 0:de.top)||"px"),headingTopMargin:N((null==qt||null===(ge=qt.style)||void 0===ge||null===(me=ge.spacing)||void 0===me||null===(ye=me.margin)||void 0===ye?void 0:ye.top)||""),headingRightMargin:N((null==qt||null===(fe=qt.style)||void 0===fe||null===(he=fe.spacing)||void 0===he||null===(ve=he.margin)||void 0===ve?void 0:ve.right)||""),headingLeftMargin:N((null==qt||null===(_e=qt.style)||void 0===_e||null===(Te=_e.spacing)||void 0===Te||null===(Ce=Te.margin)||void 0===Ce?void 0:Ce.left)||""),headingBottomMargin:N((null==qt||null===(Se=qt.style)||void 0===Se||null===(we=Se.spacing)||void 0===we||null===(ke=we.margin)||void 0===ke?void 0:ke.bottom)||""),headingMarginUnit:I((null==qt||null===(Pe=qt.style)||void 0===Pe||null===(xe=Pe.spacing)||void 0===xe||null===(Ae=xe.margin)||void 0===Ae?void 0:Ae.top)||""),align:"center",imageBorderStyle:(null==e||null===(Ge=e.style)||void 0===Ge||null===(Me=Ge.border)||void 0===Me?void 0:Me.style)||(null!=e&&null!==(Re=e.style)&&void 0!==Re&&null!==(Be=Re.border)&&void 0!==Be&&Be.width||null!=e&&null!==(Ue=e.style)&&void 0!==Ue&&null!==(Ee=Ue.border)&&void 0!==Ee&&null!==(Oe=Ee.top)&&void 0!==Oe&&Oe.width?(null==e||null===(Le=e.style)||void 0===Le||null===(He=Le.border)||void 0===He?void 0:He.style)||"solid":"none"),imageBorderTopWidth:N((null==e||null===(je=e.style)||void 0===je||null===(Fe=je.border)||void 0===Fe?void 0:Fe.width)||(null==e||null===(ze=e.style)||void 0===ze||null===(De=ze.border)||void 0===De||null===(Ne=De.top)||void 0===Ne?void 0:Ne.width)||""),imageBorderBottomWidth:N((null==e||null===(Ie=e.style)||void 0===Ie||null===(Ve=Ie.border)||void 0===Ve?void 0:Ve.width)||(null==e||null===(We=e.style)||void 0===We||null===(qe=We.border)||void 0===qe||null===(Ze=qe.bottom)||void 0===Ze?void 0:Ze.width)||""),imageBorderLeftWidth:N((null==e||null===($e=e.style)||void 0===$e||null===(Ye=$e.border)||void 0===Ye?void 0:Ye.width)||(null==e||null===(Ke=e.style)||void 0===Ke||null===(Je=Ke.border)||void 0===Je||null===(Xe=Je.left)||void 0===Xe?void 0:Xe.width)||""),imageBorderRightWidth:N((null==e||null===(Qe=e.style)||void 0===Qe||null===(et=Qe.border)||void 0===et?void 0:et.width)||(null==e||null===(tt=e.style)||void 0===tt||null===(at=tt.border)||void 0===at||null===(lt=at.right)||void 0===lt?void 0:lt.width)||""),imageBorderWidthUnit:N((null==e||null===(it=e.style)||void 0===it||null===(ot=it.border)||void 0===ot?void 0:ot.width)||(null==e||null===(nt=e.style)||void 0===nt||null===(rt=nt.border)||void 0===rt||null===(st=rt.top)||void 0===st?void 0:st.width)||""),imageBorderColor:Nc(null==e?void 0:e.borderColor)||Nc(null==e||null===(ct=e.style)||void 0===ct||null===(ut=ct.border)||void 0===ut||null===(pt=ut.right)||void 0===pt?void 0:pt.color)||(null==e||null===(bt=e.style)||void 0===bt||null===(dt=bt.border)||void 0===dt?void 0:dt.color)||(null==e||null===(gt=e.style)||void 0===gt||null===(mt=gt.border)||void 0===mt||null===(yt=mt.right)||void 0===yt?void 0:yt.color)||"",imageBorderTopRightRadius:N("object"!=typeof(null==e||null===(ft=e.style)||void 0===ft||null===(ht=ft.border)||void 0===ht?void 0:ht.radius)&&(null==e||null===(vt=e.style)||void 0===vt||null===(_t=vt.border)||void 0===_t?void 0:_t.radius)||(null==e||null===(Tt=e.style)||void 0===Tt||null===(Ct=Tt.border)||void 0===Ct||null===(St=Ct.radius)||void 0===St?void 0:St.topRight)||""),imageBorderTopLeftRadius:N("object"!=typeof(null==e||null===(wt=e.style)||void 0===wt||null===(kt=wt.border)||void 0===kt?void 0:kt.radius)&&(null==e||null===(Pt=e.style)||void 0===Pt||null===(xt=Pt.border)||void 0===xt?void 0:xt.radius)||(null==e||null===(At=e.style)||void 0===At||null===(Gt=At.border)||void 0===Gt||null===(Mt=Gt.radius)||void 0===Mt?void 0:Mt.topLeft)||""),imageBorderBottomRightRadius:N("object"!=typeof(null==e||null===(Rt=e.style)||void 0===Rt||null===(Bt=Rt.border)||void 0===Bt?void 0:Bt.radius)&&(null==e||null===(Ut=e.style)||void 0===Ut||null===(Et=Ut.border)||void 0===Et?void 0:Et.radius)||(null==e||null===(Ot=e.style)||void 0===Ot||null===(Lt=Ot.border)||void 0===Lt||null===(Ht=Lt.radius)||void 0===Ht?void 0:Ht.bottomRight)||""),imageBorderBottomLeftRadius:N("object"!=typeof(null==e||null===(jt=e.style)||void 0===jt||null===(Ft=jt.border)||void 0===Ft?void 0:Ft.radius)&&(null==e||null===(zt=e.style)||void 0===zt||null===(Dt=zt.border)||void 0===Dt?void 0:Dt.radius)||(null==e||null===(Nt=e.style)||void 0===Nt||null===(It=Nt.border)||void 0===It||null===(Vt=It.radius)||void 0===Vt?void 0:Vt.bottomLeft)||""),imageBorderRadiusUnit:Wt,layout:"overlay",overlayOpacity:0!==e.dimRatio?e.dimRatio/100:0,overlayHoverOpacity:0!==e.dimRatio?e.dimRatio/100:0,overlayBackground:(null==e?void 0:e.customOverlayColor)||Nc(null==e?void 0:e.overlayColor)})}},{type:"block",blocks:["core/media-text"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,W,q,Z,$,Y,K,J,X,Q,ee,te,ae,le,ie,oe,ne,re,se,ce,ue,pe,de,ge,me,ye,fe,he;const ve=(null===(a=t[0])||void 0===a?void 0:a.attributes)||{},_e=Boolean(ve.content);let Te;var Ce,Se;if(null!=ve&&null!==(l=ve.style)&&void 0!==l&&null!==(i=l.color)&&void 0!==i&&i.text)Te=null==ve||null===(Ce=ve.style)||void 0===Ce||null===(Se=Ce.color)||void 0===Se?void 0:Se.text;else if(Nc(null==ve?void 0:ve.textColor))Te=Nc(null==ve?void 0:ve.textColor);else if(null!=e&&null!==(o=e.style)&&void 0!==o&&null!==(n=o.color)&&void 0!==n&&n.text){var we,ke;Te=null==e||null===(we=e.style)||void 0===we||null===(ke=we.color)||void 0===ke?void 0:ke.text}else Te=Nc(null==e?void 0:e.textColor)?Nc(null==e?void 0:e.textColor):"";return Object(be.createBlock)("uagb/image",{url:e.mediaUrl,alt:e.mediaAlt,title:e.mediaTitle,enableCaption:_e,captionColor:Te,caption:_e?ve.content:"",captionFontWeight:(null==ve||null===(r=ve.style)||void 0===r||null===(s=r.typography)||void 0===s?void 0:s.fontWeight)||(null==e||null===(c=e.style)||void 0===c||null===(u=c.typography)||void 0===u?void 0:u.fontWeight)||"",captionFontSize:N((null==ve||null===(p=ve.style)||void 0===p||null===(b=p.typography)||void 0===b?void 0:b.fontSize)||(null==e||null===(d=e.style)||void 0===d||null===(g=d.typography)||void 0===g?void 0:g.fontSize)||""),captionFontSizeType:I((null==ve||null===(m=ve.style)||void 0===m||null===(y=m.typography)||void 0===y?void 0:y.fontSize)||(null==e||null===(f=e.style)||void 0===f||null===(h=f.typography)||void 0===h?void 0:h.fontSize)||""),captionLetterSpacing:N((null==ve||null===(v=ve.style)||void 0===v||null===(_=v.typography)||void 0===_?void 0:_.letterSpacing)||(null==e||null===(T=e.style)||void 0===T||null===(C=T.typography)||void 0===C?void 0:C.letterSpacing)||""),captionLetterSpacingType:I((null==ve||null===(S=ve.style)||void 0===S||null===(w=S.typography)||void 0===w?void 0:w.letterSpacing)||(null==e||null===(k=e.style)||void 0===k||null===(P=k.typography)||void 0===P?void 0:P.letterSpacing)||""),captionDecoration:(null==ve||null===(x=ve.style)||void 0===x||null===(A=x.typography)||void 0===A?void 0:A.textDecoration)||(null==e||null===(G=e.style)||void 0===G||null===(M=G.typography)||void 0===M?void 0:M.textDecoration)||"",captionTransform:(null==ve||null===(R=ve.style)||void 0===R||null===(B=R.typography)||void 0===B?void 0:B.textTransform)||(null==e||null===(U=e.style)||void 0===U||null===(E=U.typography)||void 0===E?void 0:E.textTransform)||"",captionLineHeight:N((null==ve||null===(O=ve.style)||void 0===O||null===(L=O.typography)||void 0===L?void 0:L.lineHeight)||(null==e||null===(H=e.style)||void 0===H||null===(j=H.typography)||void 0===j?void 0:j.lineHeight)||""),imageTopMargin:N((null==e||null===(F=e.style)||void 0===F||null===(z=F.spacing)||void 0===z||null===(D=z.margin)||void 0===D?void 0:D.top)||""),imageRightMargin:N((null==e||null===(W=e.style)||void 0===W||null===(q=W.spacing)||void 0===q||null===(Z=q.margin)||void 0===Z?void 0:Z.right)||""),imageLeftMargin:N((null==e||null===($=e.style)||void 0===$||null===(Y=$.spacing)||void 0===Y||null===(K=Y.margin)||void 0===K?void 0:K.left)||""),imageBottomMargin:N((null==e||null===(J=e.style)||void 0===J||null===(X=J.spacing)||void 0===X||null===(Q=X.margin)||void 0===Q?void 0:Q.bottom)||""),imageMarginUnit:V((null==e||null===(ee=e.style)||void 0===ee||null===(te=ee.spacing)||void 0===te||null===(ae=te.margin)||void 0===ae?void 0:ae.top)||"px"),captionTopMargin:N((null==ve||null===(le=ve.style)||void 0===le||null===(ie=le.spacing)||void 0===ie||null===(oe=ie.margin)||void 0===oe?void 0:oe.top)||""),captionRightMargin:N((null==ve||null===(ne=ve.style)||void 0===ne||null===(re=ne.spacing)||void 0===re||null===(se=re.margin)||void 0===se?void 0:se.right)||""),captionLeftMargin:N((null==ve||null===(ce=ve.style)||void 0===ce||null===(ue=ce.spacing)||void 0===ue||null===(pe=ue.margin)||void 0===pe?void 0:pe.left)||""),captionBottomMargin:N((null==ve||null===(de=ve.style)||void 0===de||null===(ge=de.spacing)||void 0===ge||null===(me=ge.margin)||void 0===me?void 0:me.bottom)||""),captionMarginUnit:V((null==ve||null===(ye=ve.style)||void 0===ye||null===(fe=ye.spacing)||void 0===fe||null===(he=fe.margin)||void 0===he?void 0:he.top)||""),align:"center"})}}],to:[{type:"block",blocks:["core/image"],transform:e=>{let{url:t,sizeSlug:a}=e;return Object(be.createBlock)("core/image",{url:t,sizeSlug:a})}}]};let Pm={};Pm=Object(j.applyFilters)("uagb/image",ws(Pm)),Object(be.registerBlockType)("uagb/image",{...Pm,title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add images on your webpage with multiple customization options.","ultimate-addons-for-gutenberg"),icon:se.image,keywords:[Object(r.__)("image","ultimate-addons-for-gutenberg"),Object(r.__)("advance image","ultimate-addons-for-gutenberg"),Object(r.__)("caption","ultimate-addons-for-gutenberg"),Object(r.__)("overlay image","ultimate-addons-for-gutenberg")],supports:{anchor:!0,color:{__experimentalDuotone:"img",text:!1,background:!1},align:!0},attributes:Ta,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"image"}):React.createElement(ym,e),save:function(e){var t,a;const{attributes:l}=e,{block_id:i,layout:o,url:n,urlTablet:r,urlMobile:s,alt:c,caption:u,enableCaption:p,imageHoverEffect:b,href:d,linkClass:g,width:m,height:y,naturalHeight:f,naturalWidth:h,align:v,id:_,linkTarget:T,rel:C,title:S,heading:w,headingTag:k,headingId:P,overlayContentPosition:x,seperatorStyle:A,seperatorPosition:G,disableLazyLoad:M,imgRole:R}=e.attributes,B=n&&""!==n&&React.createElement("img",{srcSet:`${n} ${r?","+r+" 780w":""}${s?", "+s+" 360w":""}`,sizes:"(max-width: 480px) 150px",src:n,alt:"presentation"===R?"":c,className:_?"uag-image-"+_:null,width:m||h,height:y||f,title:"presentation"===R?"":S,loading:M?void 0:"lazy",role:R}),U=()=>C?C.trim():"noopener",E=React.createElement(React.Fragment,null,d&&""!==d?React.createElement("a",{className:g,href:d,target:T,rel:U()},B):B),O=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(w)&&React.createElement(ge.RichText.Content,{tagName:k,id:P,className:"uagb-image-heading",value:w})),L=React.createElement(React.Fragment,null,!ge.RichText.isEmpty(u)&&React.createElement(ge.RichText.Content,{tagName:"figcaption",className:"uagb-image-caption",value:u})),H="none"!==A&&React.createElement("div",{className:"uagb-image-separator"}),j=React.createElement("a",{className:"wp-block-uagb-image--layout-overlay-link "+g,href:d,target:T,rel:U()});return React.createElement("div",{className:Be()(e.className,"uagb-block-"+i,"wp-block-uagb-image","wp-block-uagb-image--layout-"+o,"wp-block-uagb-image--effect-"+b,"wp-block-uagb-image--align-"+(v||"none"))},React.createElement("figure",{className:"wp-block-uagb-image__figure"},E,"overlay"===o?React.createElement(React.Fragment,null,React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__color-wrapper"}),React.createElement("div",{className:"wp-block-uagb-image--layout-overlay__inner "+x.replace(" ","-")},(!0===(null==l||null===(t=l.dynamicContent)||void 0===t||null===(a=t.bgImageLink)||void 0===a?void 0:a.enable)||d)&&j,"before_title"===G&&H,O,"after_title"===G&&H,L,"after_sub_title"===G&&H)):React.createElement(React.Fragment,null,p&&L)))},__experimentalLabel:(e,t)=>{var a;let{context:l}=t;return"list-view"===l&&null!=e&&null!==(a=e.metadata)&&void 0!==a&&a.name&&e.metadata.name?e.metadata.name:Object(j.applyFilters)("uag_loop_data_source_label",Object(r.__)("Image","ultimate-addons-for-gutenberg"),e)},usesContext:["postId","postType"],deprecated:wm,transforms:km});var xm=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase(),{block_id:r,fontFamily:s,fontWeight:c,gap:u,gapTablet:p,gapMobile:b,inheritGap:d,flexWrap:g,stack:m,align:y,fontStyle:f,fontTransform:h,fontDecoration:v,alignTablet:_,alignMobile:T,fontSizeType:C,fontSizeTypeTablet:S,fontSizeTypeMobile:w,fontSize:k,fontSizeMobile:P,fontSizeTablet:x,lineHeightType:A,lineHeight:G,lineHeightMobile:M,lineHeightTablet:R,topPadding:B,rightPadding:U,bottomPadding:E,leftPadding:O,topMobilePadding:L,rightMobilePadding:H,bottomMobilePadding:j,leftMobilePadding:F,topTabletPadding:z,rightTabletPadding:D,bottomTabletPadding:N,leftTabletPadding:I,paddingUnit:V,mobilePaddingUnit:W,tabletPaddingUnit:q,topMargin:Z,rightMargin:$,bottomMargin:Y,leftMargin:K,topMarginTablet:J,rightMarginTablet:X,bottomMarginTablet:Q,leftMarginTablet:ee,topMarginMobile:te,rightMarginMobile:le,bottomMarginMobile:ie,leftMarginMobile:oe,marginType:ne,fontLetterSpacing:re,fontLetterSpacingTablet:se,fontLetterSpacingMobile:ce,fontLetterSpacingType:ue,verticalAlignment:pe,buttonSize:be}=e,de={},ge={},me={};let ye;switch(pe){case"top":ye="flex-start";break;case"bottom":ye="flex-end";break;default:ye="center"}de[".uagb-buttons__outer-wrap .uagb-buttons-repeater:not(.wp-block-button__link)"]={"font-family":s,"font-style":f,"text-decoration":v,"text-transform":h,"font-weight":c,"font-size":ns(k,C),"line-height":ns(G,A)},de[".uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-buttons-repeater"]={"font-family":s,"font-style":f,"text-decoration":v,"text-transform":h,"font-weight":c,"font-size":ns(k,C),"line-height":ns(G,A),"letter-spacing":ns(re,ue)},de[".uagb-buttons__outer-wrap .uagb-button__wrapper"]={"margin-left":ns(K,ne),"margin-right":ns($,ne),"margin-top":ns(Z,ne),"margin-bottom":ns(Y,ne)},"default"===be&&(de[" .uagb-buttons-repeater.wp-block-button__link"]={"padding-left":ns(O,V),"padding-right":ns(U,V),"padding-top":ns(B,V),"padding-bottom":ns(E,V)},ge[" .uagb-buttons-repeater.wp-block-button__link"]={"padding-left":ns(I,q),"padding-right":ns(D,q),"padding-top":ns(z,q),"padding-bottom":ns(N,q)},me[" .uagb-buttons-repeater.wp-block-button__link"]={"padding-left":ns(F,W),"padding-right":ns(H,W),"padding-top":ns(L,W),"padding-bottom":ns(j,W)}),d?d&&("desktop"===m?(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"}):"tablet"===m?(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row"},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"}):"mobile"===m&&(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row"},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row"},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column"})):"desktop"===m?(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(Ps(u,"gap",o),"px")},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(p,"px")},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(b,"px")}):"tablet"===m?(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row",gap:ns(Ps(u,"gap",o),"px")},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(p,"px")},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(b,"px")}):"mobile"===m?(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row",gap:ns(Ps(u,"gap",o),"px")},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"row",gap:ns(p,"px")},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={"flex-direction":"column",gap:ns(b,"px")}):"none"===m&&(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={gap:ns(Ps(u,"gap",o),"px")},ge[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={gap:ns(p,"px")},me[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]={gap:ns(b,"px")}),g&&(de[".uagb-buttons__outer-wrap .block-editor-block-list__layout"]["flex-wrap"]="wrap"),"full"!==y?(de[".uagb-editor-preview-mode-desktop .block-editor-inner-blocks"]={"text-align":y},de[".uagb-editor-preview-mode-desktop .block-editor-block-list__layout"]={"align-items":ye,"justify-content":y}):(de[".uagb-editor-preview-mode-desktop .block-editor-block-list__layout"]={width:"100%","align-items":ye},de[" .block-editor-block-list__block"]={width:"100%"}),"full"!==_?(ge[".uagb-editor-preview-mode-tablet .block-editor-inner-blocks"]={"text-align":_},ge[".uagb-editor-preview-mode-tablet .block-editor-block-list__layout"]={"align-items":ye,"justify-content":_}):(ge[".uagb-editor-preview-mode-tablet .block-editor-block-list__layout"]={"flex-direction":"column","row-gap":ns(Ps(u,"gap",o),"px")},ge[".uagb-editor-preview-mode-tablet .block-editor-block-list__layout"]={width:"100%","align-items":ye},ge[" .block-editor-block-list__block "]={width:"100%"}),"full"!==T?(me[".uagb-editor-preview-mode-mobile .block-editor-inner-blocks"]={"text-align":T},me[".uagb-editor-preview-mode-mobile .block-editor-block-list__layout"]={"align-items":ye,"justify-content":T}):(me[".uagb-editor-preview-mode-mobile .block-editor-block-list__layout"]={"flex-direction":"column","row-gap":ns(Ps(u,"gap",o),"px")},me[".uagb-editor-preview-mode-mobile .block-editor-block-list__layout"]={width:"100%","align-items":ye},me[" .block-editor-block-list__block "]={width:"100%"}),ge[".uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-buttons-repeater"]={"font-size":ns(x,S),"line-height":ns(R,A),"letter-spacing":ns(se,ue)},ge[".uagb-buttons__outer-wrap .uagb-button__wrapper"]={"margin-left":ns(ee,ne),"margin-right":ns(X,ne),"margin-top":ns(J,ne),"margin-bottom":ns(Q,ne)},me[".uagb-buttons__outer-wrap .uagb-button__wrapper .uagb-buttons-repeater"]={"font-size":ns(P,w),"line-height":ns(M,A),"letter-spacing":ns(ce,ue)},me[".uagb-buttons__outer-wrap .uagb-button__wrapper"]={"margin-left":ns(oe,ne),"margin-right":ns(le,ne),"margin-top":ns(te,ne),"margin-bottom":ns(ie,ne)};const fe=i?i+" ":".editor-styles-wrapper .uagb-block-"+r;let he=ae(de,fe);return("tablet"===n||"mobile"===n||i)&&(he+=ae(ge,""+fe,!0,"tablet"),("mobile"===n||i)&&(he+=ae(me,""+fe,!0,"mobile"))),he};function Am(){return(Am=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Gm,Mm=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{align:l,gap:i,gapTablet:o,gapMobile:s,inheritGap:c,flexWrap:u,stack:p,loadGoogleFonts:b,fontFamily:d,fontWeight:g,fontStyle:m,fontTransform:y,fontDecoration:f,alignTablet:h,alignMobile:v,fontSizeType:_,fontSizeTypeMobile:T,fontSizeTypeTablet:C,fontSize:S,fontSizeMobile:w,fontSizeTablet:k,lineHeightType:P,lineHeight:x,lineHeightMobile:A,lineHeightTablet:G,buttonSize:M,buttonSizeTablet:R,buttonSizeMobile:B,paddingUnit:U,mobilePaddingUnit:E,tabletPaddingUnit:O,paddingLink:L,topPadding:H,rightPadding:j,bottomPadding:F,leftPadding:z,topMobilePadding:D,rightMobilePadding:N,bottomMobilePadding:I,leftMobilePadding:V,topTabletPadding:W,rightTabletPadding:q,bottomTabletPadding:Z,leftTabletPadding:$,topMargin:Y,rightMargin:K,bottomMargin:J,leftMargin:X,topMarginTablet:Q,rightMarginTablet:ee,bottomMarginTablet:te,leftMarginTablet:ae,topMarginMobile:le,rightMarginMobile:ie,bottomMarginMobile:oe,leftMarginMobile:ne,marginType:re,marginLink:se,fontLetterSpacing:ce,fontLetterSpacingTablet:ue,fontLetterSpacingMobile:pe,fontLetterSpacingType:be,verticalAlignment:de}=t,me=Object(n.select)("core/block-editor").getSelectedBlock().innerBlocks.length,ye=[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"small",label:Object(r.__)("Small","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"large",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")},{value:"extralarge",label:Object(r.__)("Extra Large","ultimate-addons-for-gutenberg")}],fe=[{align:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),title:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{align:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),title:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{align:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),title:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{align:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),title:Object(r.__)("Full","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(ge.BlockVerticalAlignmentControl,{onChange:e=>a({verticalAlignment:e}),value:de}),React.createElement(ge.AlignmentToolbar,{value:l,onChange:e=>{a({align:e})},alignmentControls:fe})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,Am({},ol,{parentProps:e}),React.createElement(Fe,{initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Overall Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:l,label:"align"},tablet:{value:h,label:"alignTablet"},mobile:{value:v,label:"alignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:de,label:"verticalAlignment"},options:[{value:"top",label:"Top"},{value:"center",label:"Middle"},{value:"bottom",label:"Bottom"}],showIcons:!1,responsive:!1}),me>1&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Stack Orientation","ultimate-addons-for-gutenberg"),data:{value:p,label:"stack"},options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"desktop",label:Object(r.__)("Desktop","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: Choose on what breakpoint the buttons will stack.","ultimate-addons-for-gutenberg")}),me>1&&React.createElement(React.Fragment,null,!u&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Inherit gap from theme","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>a({inheritGap:!c})}),!c&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Flex wrap","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>a({flexWrap:!u})}),!c&&React.createElement(tl,{label:Object(r.__)("Gap Between Buttons","ultimate-addons-for-gutenberg"),data:{desktop:{value:i,label:"gap"},tablet:{value:o,label:"gapTablet"},mobile:{value:s,label:"gapMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a})),React.createElement(ai,{label:Object(r.__)("Button Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:M,label:"buttonSize"},tablet:{value:R,label:"buttonSizeTablet"},mobile:{value:B,label:"buttonSizeMobile"}},options:{desktop:ye,tablet:ye,mobile:ye},setAttributes:a}))),React.createElement(il,Am({},nl,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Text","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:b,label:"loadGoogleFonts"},fontFamily:{value:d,label:"fontFamily"},fontWeight:{value:g,label:"fontWeight"},fontStyle:{value:m,label:"fontStyle"},transform:{value:y,label:"fontTransform"},decoration:{value:f,label:"fontDecoration"},fontSizeType:{value:_,label:"fontSizeType"},fontSizeTypeTablet:{value:C,label:"fontSizeTypeTablet"},fontSizeTypeMobile:{value:T,label:"fontSizeTypeMobile"},fontSize:{value:S,label:"fontSize"},fontSizeMobile:{value:w,label:"fontSizeMobile"},fontSizeTablet:{value:k,label:"fontSizeTablet"},lineHeightType:{value:P,label:"lineHeightType"},lineHeight:{value:x,label:"lineHeight"},lineHeightMobile:{value:A,label:"lineHeightMobile"},lineHeightTablet:{value:G,label:"lineHeightTablet"},letterSpacing:{value:ce,label:"fontLetterSpacing"},letterSpacingTablet:{value:ue,label:"fontLetterSpacingTablet"},letterSpacingMobile:{value:pe,label:"fontLetterSpacingMobile"},letterSpacingType:{value:be,label:"fontLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},"default"===M&&React.createElement(Pl,Am({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:H,label:"topPadding"},valueRight:{value:j,label:"rightPadding"},valueBottom:{value:F,label:"bottomPadding"},valueLeft:{value:z,label:"leftPadding"},valueTopTablet:{value:W,label:"topTabletPadding"},valueRightTablet:{value:q,label:"rightTabletPadding"},valueBottomTablet:{value:Z,label:"bottomTabletPadding"},valueLeftTablet:{value:$,label:"leftTabletPadding"},valueTopMobile:{value:D,label:"topMobilePadding"},valueRightMobile:{value:N,label:"rightMobilePadding"},valueBottomMobile:{value:I,label:"bottomMobilePadding"},valueLeftMobile:{value:V,label:"leftMobilePadding"},unit:{value:U,label:"paddingUnit"},mUnit:{value:E,label:"mobilePaddingUnit"},tUnit:{value:O,label:"tabletPaddingUnit"},attributes:t,setAttributes:a,link:{value:L,label:"paddingLink"}})),React.createElement(Pl,Am({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Y,label:"topMargin"},valueRight:{value:K,label:"rightMargin"},valueBottom:{value:J,label:"bottomMargin"},valueLeft:{value:X,label:"leftMargin"},valueTopTablet:{value:Q,label:"topMarginTablet"},valueRightTablet:{value:ee,label:"rightMarginTablet"},valueBottomTablet:{value:te,label:"bottomMarginTablet"},valueLeftTablet:{value:ae,label:"leftMarginTablet"},valueTopMobile:{value:le,label:"topMarginMobile"},valueRightMobile:{value:ie,label:"rightMarginMobile"},valueBottomMobile:{value:oe,label:"bottomMarginMobile"},valueLeftMobile:{value:ne,label:"leftMarginMobile"},unit:{value:re,label:"marginType"},mUnit:{value:re,label:"marginType"},tUnit:{value:re,label:"marginType"},attributes:t,setAttributes:a,link:{value:se,label:"marginLink"}})))),React.createElement(il,Am({},rl,{parentProps:e}),lc(xm,a,t)))))}),Rm=a(106),Bm=0,Um={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Em={};Em.locals=Rm.a.locals||{},Em.use=function(){return Bm++||(Gm=ke()(Rm.a,Um)),Em},Em.unuse=function(){Bm>0&&!--Bm&&(Gm(),Gm=null)};var Om=Em;const Lm=["uagb/buttons-child"];var Hm=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Om.use(),()=>{Om.unuse()}),[]);const{attributes:t,deviceType:a}=e,{className:l,btn_count:i,buttons:o,stack:n,buttonSize:r,buttonSizeTablet:s,buttonSizeMobile:c,block_id:u,inheritGap:p}=t,b={template:Object(B.useMemo)(()=>{const e=[];for(let t=0;t<i;t++)e.push(["uagb/buttons-child",o[t]]);return e},[i,o]),templateLock:!1,allowedBlocks:Lm,__experimentalMoverDirection:"desktop"===n?"vertical":"horizontal"},d=Object(ge.useInnerBlocksProps)({className:p?"is-layout-flex":""},b);return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap",`uagb-btn__${r}-btn`,`uagb-btn-tablet__${s}-btn`,`uagb-btn-mobile__${c}-btn`,"uagb-editor-preview-mode-"+a.toLowerCase(),"uagb-block-"+u)},React.createElement("div",{className:Be()("uagb-buttons__wrap","uagb-buttons-stack-"+n)},React.createElement("div",{className:"block-editor-inner-blocks"},React.createElement("div",d))))}),jm=Object(B.memo)(e=>{let{attributes:t}=e;const{loadGoogleFonts:a,fontFamily:l,fontWeight:i}=t;let o;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};o=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,o)});let Fm;var zm=Object(L.compose)(Pc,vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o},clientId:n,name:r,deviceType:s}=e,[c,u]=Object(B.useState)({isFocused:"false",isHovered:"false"});Object(B.useEffect)(()=>{Fm=t},[]),Object(B.useEffect)(()=>{!t&&Fm&&c.isFocused&&u({isFocused:"false"}),Fm=t},[a,s]),Object(B.useEffect)(()=>{Bs()},[s]),Object(B.useEffect)(()=>{he(e)},[l,i,o,s]);const p=Object(B.useMemo)(()=>xm(a,n,r,s),[a,s]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:p}),React.createElement(jm,{attributes:a}),t&&React.createElement(Mm,e),React.createElement(Hm,e))});const Dm=[];for(let e=1;e<=2;e++){const e="Click Here",t="#";Dm.push({label:e,link:t,target:"_self",size:"",vPadding:"",hPadding:"",color:"",background:"",hColor:"",hBackground:"",sizeType:"px",sizeMobile:"",sizeTablet:"",lineHeight:"",lineHeightType:"em",lineHeightMobile:"",lineHeightTablet:""})}var Nm=[{attributes:rt,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,buttons:n,btn_count:r}=e.attributes,s=n.map((e,t)=>React.createElement("div",{className:Be()("uagb-buttons-repeater-"+t,"uagb-button__wrapper"),key:t},React.createElement(ge.RichText.Content,{value:e.label,tagName:"a",className:"uagb-button__link",href:e.link,rel:"noopener noreferrer",target:e.target})));return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap"),id:"uagb-buttons-"+l},React.createElement("div",{className:"uagb-buttons__wrap"},s))}},{attributes:rt,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,buttons:n,btn_count:r}=e.attributes,s=n.map((e,t)=>React.createElement("div",{className:Be()("uagb-buttons-repeater-"+t,"uagb-button__wrapper"),key:t},React.createElement(ge.RichText.Content,{value:e.label,tagName:"a",className:"uagb-button__link",href:e.link,rel:"noopener noreferrer",target:e.target})));return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap"),id:"uagb-buttons-"+l},React.createElement("div",{className:"uagb-buttons__wrap"},s))}},{attributes:rt,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,buttons:n,btn_count:r}=e.attributes,s=n.map((e,t)=>React.createElement("div",{className:Be()("uagb-buttons-repeater-"+t,"uagb-button__wrapper"),key:t},React.createElement(ge.RichText.Content,{value:e.label,tagName:"a",className:"uagb-button__link",href:e.link,rel:"noopener noreferrer",target:e.target})));return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l)},React.createElement("div",{className:"uagb-buttons__wrap"},s))}},{attributes:rt,save:e=>{const{className:t}=e,{block_id:a}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-buttons__outer-wrap","uagb-block-"+a)},React.createElement("div",{className:"uagb-buttons__wrap uagb-buttons-layout-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:{block_id:{type:"string"},btn_count:{type:"number",default:2},buttons:{type:"array",default:Dm},classMigrate:{type:"boolean",default:!1},childMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align"}},alignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align-tablet"}},alignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align-mobile"}},gap:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-gap"}},gapTablet:{type:"number",UAGCopyPaste:{styleType:"btn-gap-tablet"}},gapMobile:{type:"number",UAGCopyPaste:{styleType:"btn-gap-mobile"}},stack:{type:"string",default:"none",UAGCopyPaste:{styleType:"btn-stack"}},loadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},fontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},fontTransform:{type:"string",UAGCopyPaste:{styleType:"btn-font-transform"}},fontDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-font-decoration"}},isPreview:{type:"boolean",default:!1},fontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},fontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},fontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},fontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},fontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},fontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},lineHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},buttonSize:{type:"string",default:"default",UAGCopyPaste:{styleType:"btn-size"}},buttonSizeTablet:{type:"string",default:"default",UAGCopyPaste:{styleType:"btn-size-tablet"}},buttonSizeMobile:{type:"string",default:"default",UAGCopyPaste:{styleType:"btn-size-mobile"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},topPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},fontLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},fontLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},fontLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},fontLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}}},save:function(e){const{className:t}=e,{block_id:a,buttonSize:l,buttonSizeTablet:i,buttonSizeMobile:o}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-buttons__outer-wrap",`uagb-btn__${l}-btn`,`uagb-btn-tablet__${i}-btn`,`uagb-btn-mobile__${o}-btn`,"uagb-block-"+a)},React.createElement("div",{className:"uagb-buttons__wrap uagb-buttons-layout-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];a(210);var Im={from:[{type:"block",blocks:["core/buttons"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S;let w=!1;const k=[],P=(null==e||null===(a=e.layout)||void 0===a?void 0:a.justifyContent)||"left";t.forEach(e=>{var t,a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,W,q,Z,$,Y,K,J,X,Q,ee,te,ae,le,ie,oe,ne,re,se,ce,ue,pe,de,ge,me,ye,fe,he,ve,_e,Te,Ce,Se,we,ke,Pe,xe,Ae,Ge,Me,Re,Be,Ue,Ee,Oe,Le,He,je,Fe,ze,De,Ne,Ie,Ve,We,qe,Ze,$e,Ye,Ke,Je,Xe,Qe,et,tt,at,lt,it,ot,nt,rt,st,ct,ut,pt,bt,dt,gt,mt,yt,ft,ht,vt,_t,Tt,Ct,St,wt,kt,Pt,xt,At,Gt,Mt,Rt,Bt,Ut,Et,Ot,Lt,Ht,jt,Ft;const zt=e.attributes;w=100===(null==zt?void 0:zt.width)||w;const Dt=V("object"!=typeof(null==zt||null===(t=zt.style)||void 0===t||null===(a=t.border)||void 0===a?void 0:a.radius)&&(null==zt||null===(l=zt.style)||void 0===l||null===(i=l.border)||void 0===i?void 0:i.radius)||(null==zt||null===(o=zt.style)||void 0===o||null===(n=o.border)||void 0===n||null===(r=n.radius)||void 0===r?void 0:r.topRight)||(null==zt||null===(s=zt.style)||void 0===s||null===(c=s.border)||void 0===c||null===(u=c.radius)||void 0===u?void 0:u.topLeft)||(null==zt||null===(p=zt.style)||void 0===p||null===(b=p.border)||void 0===b||null===(d=b.radius)||void 0===d?void 0:d.bottomRight)||(null==zt||null===(g=zt.style)||void 0===g||null===(m=g.border)||void 0===m||null===(y=m.radius)||void 0===y?void 0:y.bottomLeft)||""),Nt=Object(be.createBlock)("uagb/buttons-child",{label:zt.text,color:(null==zt||null===(f=zt.style)||void 0===f||null===(h=f.color)||void 0===h?void 0:h.text)||Nc(zt.textColor),background:(null==zt||null===(v=zt.style)||void 0===v||null===(_=v.color)||void 0===_?void 0:_.background)||Nc(zt.backgroundColor)||"",fontWeight:(null==zt||null===(T=zt.style)||void 0===T||null===(C=T.typography)||void 0===C?void 0:C.fontWeight)||"",size:N((null==zt||null===(S=zt.style)||void 0===S||null===(P=S.typography)||void 0===P?void 0:P.fontSize)||"#"),sizeType:I((null==zt||null===(x=zt.style)||void 0===x||null===(A=x.typography)||void 0===A?void 0:A.letterSpacing)||""),letterSpacing:N((null==zt||null===(G=zt.style)||void 0===G||null===(M=G.typography)||void 0===M?void 0:M.letterSpacing)||"#"),letterSpacingType:I((null==zt||null===(R=zt.style)||void 0===R||null===(B=R.typography)||void 0===B?void 0:B.letterSpacing)||"px"),decoration:(null==zt||null===(U=zt.style)||void 0===U||null===(E=U.typography)||void 0===E?void 0:E.textDecoration)||"",transform:(null==zt||null===(O=zt.style)||void 0===O||null===(L=O.typography)||void 0===L?void 0:L.textTransform)||"",lineHeight:N((null==zt||null===(H=zt.style)||void 0===H||null===(j=H.typography)||void 0===j?void 0:j.lineHeight)||"#"),lineHeightType:"em",borderColor:(null==zt||null===(F=zt.style)||void 0===F||null===(z=F.border)||void 0===z?void 0:z.color)||Nc((null==zt?void 0:zt.borderColor)||"")||(null==zt||null===(D=zt.style)||void 0===D||null===(W=D.border)||void 0===W||null===(q=W.top)||void 0===q?void 0:q.color)||Nc((null==zt||null===(Z=zt.style)||void 0===Z||null===($=Z.border)||void 0===$||null===(Y=$.top)||void 0===Y?void 0:Y.color)||""),btnBorderTopWidth:N((null==zt||null===(K=zt.style)||void 0===K||null===(J=K.border)||void 0===J?void 0:J.width)||(null==zt||null===(X=zt.style)||void 0===X||null===(Q=X.border)||void 0===Q||null===(ee=Q.top)||void 0===ee?void 0:ee.width)||"#"),btnBorderBottomWidth:N((null==zt||null===(te=zt.style)||void 0===te||null===(ae=te.border)||void 0===ae?void 0:ae.width)||(null==zt||null===(le=zt.style)||void 0===le||null===(ie=le.border)||void 0===ie||null===(oe=ie.bottom)||void 0===oe?void 0:oe.width)||"#"),btnBorderLeftWidth:N((null==zt||null===(ne=zt.style)||void 0===ne||null===(re=ne.border)||void 0===re?void 0:re.width)||(null==zt||null===(se=zt.style)||void 0===se||null===(ce=se.border)||void 0===ce||null===(ue=ce.left)||void 0===ue?void 0:ue.width)||"#"),btnBorderRightWidth:N((null==zt||null===(pe=zt.style)||void 0===pe||null===(de=pe.border)||void 0===de?void 0:de.width)||(null==zt||null===(ge=zt.style)||void 0===ge||null===(me=ge.border)||void 0===me||null===(ye=me.right)||void 0===ye?void 0:ye.width)||"#"),borderRadius:N("object"!=typeof(null==zt||null===(fe=zt.style)||void 0===fe||null===(he=fe.border)||void 0===he?void 0:he.radius)&&(null==zt||null===(ve=zt.style)||void 0===ve||null===(_e=ve.border)||void 0===_e?void 0:_e.radius)||(null==zt||null===(Te=zt.style)||void 0===Te||null===(Ce=Te.border)||void 0===Ce||null===(Se=Ce.radius)||void 0===Se?void 0:Se.topRight)||"#"),leftMargin:N((null==zt||null===(we=zt.style)||void 0===we||null===(ke=we.spacing)||void 0===ke||null===(Pe=ke.margin)||void 0===Pe?void 0:Pe.left)||"#"),bottomMargin:N((null==zt||null===(xe=zt.style)||void 0===xe||null===(Ae=xe.spacing)||void 0===Ae||null===(Ge=Ae.margin)||void 0===Ge?void 0:Ge.bottom)||"#"),rightMargin:N((null==zt||null===(Me=zt.style)||void 0===Me||null===(Re=Me.spacing)||void 0===Re||null===(Be=Re.margin)||void 0===Be?void 0:Be.right)||"#"),topMargin:N((null==zt||null===(Ue=zt.style)||void 0===Ue||null===(Ee=Ue.spacing)||void 0===Ee||null===(Oe=Ee.margin)||void 0===Oe?void 0:Oe.top)||"#"),marginType:I((null==zt||null===(Le=zt.style)||void 0===Le||null===(He=Le.spacing)||void 0===He||null===(je=He.margin)||void 0===je?void 0:je.top)||""),leftPadding:N((null==zt||null===(Fe=zt.style)||void 0===Fe||null===(ze=Fe.spacing)||void 0===ze||null===(De=ze.padding)||void 0===De?void 0:De.left)||"#"),bottomPadding:N((null==zt||null===(Ne=zt.style)||void 0===Ne||null===(Ie=Ne.spacing)||void 0===Ie||null===(Ve=Ie.padding)||void 0===Ve?void 0:Ve.bottom)||"#"),rightPadding:N((null==zt||null===(We=zt.style)||void 0===We||null===(qe=We.spacing)||void 0===qe||null===(Ze=qe.padding)||void 0===Ze?void 0:Ze.right)||"#"),topPadding:N((null==zt||null===($e=zt.style)||void 0===$e||null===(Ye=$e.spacing)||void 0===Ye||null===(Ke=Ye.padding)||void 0===Ke?void 0:Ke.top)||"#"),paddingUnit:I((null==zt||null===(Je=zt.style)||void 0===Je||null===(Xe=Je.spacing)||void 0===Xe||null===(Qe=Xe.padding)||void 0===Qe?void 0:Qe.top)||""),borderHColor:"",borderStyle:(null==zt||null===(et=zt.style)||void 0===et||null===(tt=et.border)||void 0===tt?void 0:tt.style)||(null!=zt&&null!==(at=zt.style)&&void 0!==at&&null!==(lt=at.border)&&void 0!==lt&&lt.width||null!=zt&&null!==(it=zt.style)&&void 0!==it&&null!==(ot=it.border)&&void 0!==ot&&null!==(nt=ot.top)&&void 0!==nt&&nt.width?(null==zt||null===(rt=zt.style)||void 0===rt||null===(st=rt.border)||void 0===st||null===(ct=st.top)||void 0===ct?void 0:ct.style)||(null==zt||null===(ut=zt.style)||void 0===ut||null===(pt=ut.border)||void 0===pt?void 0:pt.style)||"solid":"none"),btnBorderBottomLeftRadius:N("object"!=typeof(null==zt||null===(bt=zt.style)||void 0===bt||null===(dt=bt.border)||void 0===dt?void 0:dt.radius)&&(null==zt||null===(gt=zt.style)||void 0===gt||null===(mt=gt.border)||void 0===mt?void 0:mt.radius)||(null==zt||null===(yt=zt.style)||void 0===yt||null===(ft=yt.border)||void 0===ft||null===(ht=ft.radius)||void 0===ht?void 0:ht.bottomLeft)||"#"),btnBorderBottomRightRadius:N("object"!=typeof(null==zt||null===(vt=zt.style)||void 0===vt||null===(_t=vt.border)||void 0===_t?void 0:_t.radius)&&(null==zt||null===(Tt=zt.style)||void 0===Tt||null===(Ct=Tt.border)||void 0===Ct?void 0:Ct.radius)||(null==zt||null===(St=zt.style)||void 0===St||null===(wt=St.border)||void 0===wt||null===(kt=wt.radius)||void 0===kt?void 0:kt.bottomRight)||"#"),btnBorderTopLeftRadius:N("object"!=typeof(null==zt||null===(Pt=zt.style)||void 0===Pt||null===(xt=Pt.border)||void 0===xt?void 0:xt.radius)&&(null==zt||null===(At=zt.style)||void 0===At||null===(Gt=At.border)||void 0===Gt?void 0:Gt.radius)||(null==zt||null===(Mt=zt.style)||void 0===Mt||null===(Rt=Mt.border)||void 0===Rt||null===(Bt=Rt.radius)||void 0===Bt?void 0:Bt.topLeft)||"#"),btnBorderTopRightRadius:N("object"!=typeof(null==zt||null===(Ut=zt.style)||void 0===Ut||null===(Et=Ut.border)||void 0===Et?void 0:Et.radius)&&(null==zt||null===(Ot=zt.style)||void 0===Ot||null===(Lt=Ot.border)||void 0===Lt?void 0:Lt.radius)||(null==zt||null===(Ht=zt.style)||void 0===Ht||null===(jt=Ht.border)||void 0===jt||null===(Ft=jt.radius)||void 0===Ft?void 0:Ft.topRight)||"#"),btnBorderRadiusUnit:Dt,link:(null==zt?void 0:zt.url)||"",opensInNewTab:"_blank"===(null==zt?void 0:zt.linkTarget)});k.push(Nt)});const x=function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"=";const l=e=>e.split("-")[0].split(".").map(e=>parseInt(e,10)||0).concat(0,0,0).slice(0,3),[i,o]=[l(e),l(t)],n=i.reduce((e,t,a)=>e||t-(o[a]||0),0);switch(a){case"<":return n<0;case"<=":return n<=0;case">":return n>0;case">=":return n>=0;default:return 0===n}}(uagb_blocks_info.wp_version,"6.7",">="),A=null==e||null===(l=e.layout)||void 0===l?void 0:l.orientation,G=W(x?"10px":(null==e||null===(i=e.style)||void 0===i||null===(o=i.spacing)||void 0===o?void 0:o.blockGap)||"10px"),M=W("vertical"===A?(null===(n=e.style)||void 0===n||null===(r=n.spacing)||void 0===r||null===(s=r.blockGap)||void 0===s?void 0:s.top)||"10px":(null===(c=e.style)||void 0===c||null===(u=c.spacing)||void 0===u||null===(p=u.blockGap)||void 0===p?void 0:p.left)||"10px"),R=w?"full":"space-between"===P?"center":P,B={left:"top",center:"center",right:"bottom",stretch:"top"}[P];return Object(be.createBlock)("uagb/buttons",{fontWeight:(null==e||null===(b=e.style)||void 0===b||null===(d=b.typography)||void 0===d?void 0:d.fontWeight)||"",fontSize:N((null==e||null===(g=e.style)||void 0===g||null===(m=g.typography)||void 0===m?void 0:m.fontSize)||"#"),fontLetterSpacing:N((null==e||null===(y=e.style)||void 0===y||null===(f=y.typography)||void 0===f?void 0:f.letterSpacing)||"#"),fontDecoration:(null==e||null===(h=e.style)||void 0===h||null===(v=h.typography)||void 0===v?void 0:v.textDecoration)||"",fontTransform:(null==e||null===(_=e.style)||void 0===_||null===(T=_.typography)||void 0===T?void 0:T.textTransform)||"",lineHeight:N((null==e||null===(C=e.style)||void 0===C||null===(S=C.typography)||void 0===S?void 0:S.lineHeight)||"#"),lineHeightType:"em",align:R,alignTablet:R,alignMobile:R,gap:x?M:G,stack:"vertical"===A?"desktop":"none",verticalAlignment:"vertical"===A?B:""},k)}}]};let Vm={};Vm=Object(j.applyFilters)("uagb/buttons",ws(Vm)),Object(be.registerBlockType)("uagb/buttons",{...Vm,title:Object(r.__)("Buttons","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add multiple buttons to redirect user to different webpages.","ultimate-addons-for-gutenberg"),icon:se.buttons,keywords:[Object(r.__)("buttons","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},getEditWrapperProps:e=>({"data-btn-width":e.align}),attributes:rt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"buttons"}):React.createElement(zm,e),save:function(e){const{className:t}=e,{block_id:a,buttonSize:l,buttonSizeTablet:i,buttonSizeMobile:o,inheritGap:n}=e.attributes,r=n?"is-layout-flex":"";return React.createElement("div",{className:Be()(t,"uagb-buttons__outer-wrap",`uagb-btn__${l}-btn`,`uagb-btn-tablet__${i}-btn`,`uagb-btn-mobile__${o}-btn`,"uagb-block-"+a)},React.createElement("div",{className:"uagb-buttons__wrap uagb-buttons-layout-wrap "+r},React.createElement(ge.InnerBlocks.Content,null)))},deprecated:Nm,transforms:Im});var Wm=function(e){e=ve(e);const t=uagb_blocks_info.uagb_svg_icons[e];if(void 0!==t){const e=t.svg.hasOwnProperty("brands")?t.svg.brands.viewBox:t.svg.solid.viewBox,a=t.svg.hasOwnProperty("brands")?t.svg.brands.path:t.svg.solid.path,l=null==e?void 0:e.join(" ");return React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:l},React.createElement("path",{d:a}))}};const qm=ce("btn"),Zm="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",$m="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var Ym={inheritFromTheme:{type:"boolean",default:!1},block_id:{type:"string"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:Zm,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:$m,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},hovergradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},boxShadowColor:{type:"string",default:"#000",UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...qm,letterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const Km=ce("btn"),Jm="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",Xm="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var Qm={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:!1},block_id:{type:"string"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:Jm,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:Xm,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},hovergradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},boxShadowColor:{type:"string",default:"#00000026",UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...Km,letterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const ey=ce("btn"),ty="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",ay="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var ly={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},block_id:{type:"string"},align:{type:"string",default:"center",UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:ty,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:ay,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...ey,letterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const iy=ce("btn"),oy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",ny="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var ry={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:oy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:ny,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...iy,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const sy=ce("btn"),cy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",uy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var py={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:cy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:uy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...sy,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const by=ce("btn"),dy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",gy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var my={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:dy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:gy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...by,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const yy=ce("btn"),fy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",hy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var vy={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:fy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:hy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...yy,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const _y=ce("btn"),Ty="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",Cy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var Sy={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:Ty,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:Cy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},..._y,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const wy=ce("btn"),ky="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",Py="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var xy={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:ky,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:Py,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...wy,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const Ay=ce("btn"),Gy="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?10:"",My="yes"===uagb_blocks_info.uagb_old_user_less_than_2||"yes"===uagb_blocks_info.enable_legacy_blocks?14:"";var Ry={isPreview:{type:"boolean",default:!1},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},buttonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"btn-type"}},block_id:{type:"string"},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},gap:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},fontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},fontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},label:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"}},vPadding:{type:"number",default:Gy,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},hPadding:{type:"number",default:My,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},topPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},rightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},bottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},leftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},topMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},rightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},bottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},leftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},topTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},rightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},bottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},leftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingUnit:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-unit"}},gradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-color-type"}},hoverselectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},selectGradient:{type:"string",default:"basic",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},hovergradientValue:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},hovergradientColor1:{type:"string",default:"#06558a",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},hovergradientColor2:{type:"string",default:"#0063A1",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},hovergradientType:{type:"string",default:"linear",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},hovergradientLocation1:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},hovergradientLocation2:{type:"number",default:100,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},hovergradientAngle:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}},mobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingLink:{type:"boolean",default:!0},color:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},background:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},hColor:{type:"string",default:"#fff",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},hBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},sizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},sizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},sizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},sizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},sizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},lineHeight:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height"}},lineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},lineHeightMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-mobile"}},lineHeightTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-line-height-tablet"}},opensInNewTab:{type:"boolean"},noFollow:{type:"boolean",default:!1},icon:{type:"string",default:"arrow-right"},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},iconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},iconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},fontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},transform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},decoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},backgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-background-type"}},hoverbackgroundType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hbackground-type"}},topMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},rightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},bottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},leftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},topMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},rightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},bottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},leftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},topMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},rightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},bottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},leftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-type"}},marginLink:{type:"string",default:!0},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000026",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-h-offset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-v-offset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"btn-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"btn-box-shadow-position-hover"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"btn-icon-color"}},iconHColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-hover-color"}},iconSize:{type:"number",default:15,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-size-mobile"}},removeText:{type:"boolean",default:!1},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:""},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},...Ay,letterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},letterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},letterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},letterSpacingType:{type:"string",default:"px",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},showIcon:{type:"boolean",default:!1}};const By={inheritFromTheme:{type:"boolean",default:!1},block_id:{type:"string"},align:{type:"string",default:"center"},gap:{type:"number",default:10},stack:{type:"string",default:"none"},loadGoogleFonts:{type:"boolean",default:!1},fontFamily:{type:"string",default:"Default"},fontWeight:{type:"string"},fontSubset:{type:"string"},label:{type:"html",default:"#Click Here"},link:{type:"string",default:""},target:{type:"string",default:"_self"},size:{type:"number"},vPadding:{type:"number",default:10},hPadding:{type:"number",default:14},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderStyle:{type:"string",default:"solid"},borderColor:{type:"string",default:"#333"},borderHColor:{type:"string",default:"#333"},color:{type:"string",default:"#333"},background:{type:"string",default:""},backgroundType:{type:"string",default:"color"},hColor:{type:"string",default:"#333"},hBackground:{type:"string",default:""},sizeType:{type:"string",default:"px"},sizeMobile:{type:"number",default:""},sizeTablet:{type:"number",default:""},lineHeight:{type:"number",default:""},lineHeightType:{type:"string",default:"em"},lineHeightMobile:{type:"number",default:""},lineHeightTablet:{type:"number",default:""},opensInNewTab:{type:"boolean"},icon:{type:"string",default:""},iconPosition:{type:"string",default:"after"},iconSpace:{type:"number",default:8},paddingUnit:{type:"string",default:"px"},...ce("btn")};var Uy=[{attributes:By,save:e=>{const{attributes:t,className:a}=e,{block_id:l,target:i,link:o,label:n}=t;return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l)},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("div",{className:"uagb-buttons-repeater"},React.createElement(ge.RichText.Content,{value:n,tagName:"a",className:"uagb-button__link",href:o,rel:"noopener noreferrer",target:i}))))}},{attributes:By,save:e=>{const{attributes:t,className:a}=e,{block_id:l,target:i,link:o,label:n,inheritFromTheme:r,icon:s,iconPosition:c}=t,u=e=>""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Wm(s)):null;return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l,r?"wp-block-button":null)},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater",r?"wp-block-button__link":null),href:o,rel:"noopener noreferrer",target:i},u("before"),React.createElement(ge.RichText.Content,{value:n,tagName:"div",className:"uagb-button__link"}),u("after"))))}},{attributes:Ym,save:function(e){const{attributes:t,className:a}=e,{block_id:l,opensInNewTab:i,link:o,label:n,icon:r,iconPosition:s,removeText:c,noFollow:u,backgroundType:p,borderStyle:b,background:d,color:g,showIcon:m}=t,y=e=>m&&""!==r&&e===s?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+s)},Ce(r)):null,f=i?"_blank":"_self",h=""!==d||"transparent"===p||"gradient"===p?"has-background":"";return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l,"wp-block-button","none"!==b?"is-style-outline":"")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link",h,""!==g?"has-text-color":""),href:o,rel:u?"nofollow noopener ":"follow noopener",target:f},y("before"),c?"":React.createElement(ge.RichText.Content,{value:n.replace(/(<([^>]+)>)/gi,""),tagName:"div",className:"uagb-button__link"}),y("after"))))}},{attributes:Qm,save:function(e){const{attributes:t,className:a}=e,{block_id:l,opensInNewTab:i,link:o,label:n,icon:r,iconPosition:s,removeText:c,noFollow:u,backgroundType:p,btnBorderStyle:b,background:d,color:g,showIcon:m}=t,y=e=>m&&""!==r&&e===s?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+s)},Ce(r)):null,f=i?"_blank":"_self",h=""!==d||"transparent"===p||"gradient"===p?"has-background":"";return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l,"wp-block-button","none"!==b&&"default"!==b?"is-style-outline":"")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link",h,""!==g?"has-text-color":""),href:o,rel:u?"nofollow noopener":"follow noopener",target:f},y("before"),c?"":React.createElement(ge.RichText.Content,{value:n.replace(/(<([^>]+)>)/gi,""),tagName:"div",className:"uagb-button__link"}),y("after"))))}},{attributes:ry,save:function(e){const{attributes:t,className:a}=e,{block_id:l,opensInNewTab:i,link:o,label:n,icon:r,iconPosition:s,removeText:c,noFollow:u,backgroundType:p,btnBorderStyle:b,background:d,color:g,showIcon:m}=t,y=e=>m&&""!==r&&e===s?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+s)},Ce(r)):null,f=i?"_blank":"_self",h=""!==d||"transparent"===p||"gradient"===p?"has-background":"";return React.createElement("div",{className:Be()(a,"uagb-buttons__outer-wrap","uagb-block-"+l,"wp-block-button","none"!==b&&"default"!==b?"is-style-outline":"")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link",h,""!==g?"has-text-color":""),href:""===o||"#"===o?"#":o,onClick:""===o||"#"===o?"return false;":"return true;",rel:u?"nofollow noopener":"follow noopener",target:f},y("before"),c?"":React.createElement(ge.RichText.Content,{value:n.replace(/<(?!br\s*V?)[^>]+>/g,""),tagName:"div",className:"uagb-button__link"}),y("after"))))}},{attributes:py,save:function(e){var t;const{attributes:a,className:l}=e,{block_id:i,opensInNewTab:o,link:n,label:r,icon:s,iconPosition:c,removeText:u,noFollow:p,backgroundType:b,btnBorderStyle:d,background:g,color:m,showIcon:y,dynamicContent:f}=a,h=e=>y&&""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Ce(s)):null,v=o?"_blank":"_self",_=""!==g||"transparent"===b||"gradient"===b?"has-background":"";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+i,"wp-block-button","none"!==d&&"default"!==d?"is-style-outline":"")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link",_,""!==m?"has-text-color":""),href:""===n||"#"===n?"#":n,onClick:""!==n&&"#"!==n||null!=f&&null!==(t=f.link)&&void 0!==t&&t.enable?"return true;":"return false;",rel:p?"nofollow noopener":"follow noopener",target:v},h("before"),u?"":React.createElement(ge.RichText.Content,{value:r.replace(/<(?!br\s*V?)[^>]+>/g,""),tagName:"div",className:"uagb-button__link"}),h("after"))))}},{attributes:my,save:function(e){var t;const{attributes:a,className:l}=e,{block_id:i,opensInNewTab:o,link:n,label:r,icon:s,iconPosition:c,removeText:u,noFollow:p,showIcon:b,dynamicContent:d}=a,g=e=>b&&""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Ce(s)):null,m=o?"_blank":"_self";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+i,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link"),href:""===n?"#":n,onClick:""!==n&&"#"!==n||null!=d&&null!==(t=d.link)&&void 0!==t&&t.enable?"return true;":"return false;",rel:p?"nofollow noopener":"follow noopener",target:m},g("before"),u?"":React.createElement(ge.RichText.Content,{value:r.replace(/<(?!br\s*V?)[^>]+>/g,""),tagName:"div",className:"uagb-button__link"}),g("after"))))}},{attributes:vy,save:function(e){var t;const{attributes:a,className:l}=e,{block_id:i,opensInNewTab:o,link:n,label:r,icon:s,iconPosition:c,removeText:u,noFollow:p,showIcon:b,dynamicContent:d}=a,g=e=>b&&""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Ce(s)):null,m=o?"_blank":"_self";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+i,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link"),href:""===n?"#":n,onClick:""!==n&&"#"!==n||null!=d&&null!==(t=d.link)&&void 0!==t&&t.enable?"return true;":"return false;",rel:p?"nofollow noopener":"follow noopener",target:m},g("before"),u?"":React.createElement(ge.RichText.Content,{value:r,tagName:"div",className:"uagb-button__link"}),g("after"))))}},{attributes:ly,save:function(e){var t,a;const{attributes:l,className:i}=e,{block_id:o,opensInNewTab:n,link:r,label:s,icon:c,iconPosition:u,removeText:p,noFollow:b,showIcon:d,dynamicContent:g}=l,m=e=>d&&""!==c&&e===u?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+u)},Ce(c)):null,y=n?"_blank":"_self";return React.createElement("div",{className:Be()(i,"uagb-buttons__outer-wrap","uagb-block-"+o,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater","wp-block-button__link"),href:""===r||null!=g&&null!==(t=g.link)&&void 0!==t&&t.enable?"#":r,onClick:""!==r&&"#"!==r||null!=g&&null!==(a=g.link)&&void 0!==a&&a.enable?"return true;":"return false;",rel:b?"nofollow noopener":"follow noopener",target:y},m("before"),p?"":React.createElement(ge.RichText.Content,{value:s,tagName:"div",className:"uagb-button__link"}),m("after"))))}},{attributes:Sy,save:function(e){var t,a;const{attributes:l,className:i}=e,{block_id:o,opensInNewTab:n,link:r,label:s,icon:c,iconPosition:u,removeText:p,noFollow:b,showIcon:d,dynamicContent:g,buttonType:m,inheritFromTheme:y}=l,f=y&&"secondary"===m,h=f?"ast-outline-button":"wp-block-button__link",v=f?{borderWidth:"revert-layer"}:{},_=e=>d&&""!==c&&e===u?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+u)},Ce(c)):null,T=n?"_blank":"_self";return React.createElement("div",{className:Be()(i,"uagb-buttons__outer-wrap","uagb-block-"+o,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater",""+h),style:v,href:""===r||null!=g&&null!==(t=g.link)&&void 0!==t&&t.enable?"#":r,onClick:""!==r&&"#"!==r||null!=g&&null!==(a=g.link)&&void 0!==a&&a.enable?"return true;":"return false;",rel:b?"nofollow noopener":"follow noopener",target:T},_("before"),p?"":React.createElement(ge.RichText.Content,{value:s,tagName:"div",className:"uagb-button__link"}),_("after"))))}},{attributes:xy,save:function(e){var t;const{attributes:a,className:l}=e,{block_id:i,opensInNewTab:o,link:n,label:r,icon:s,iconPosition:c,removeText:u,noFollow:p,showIcon:b,dynamicContent:d,buttonType:g,inheritFromTheme:m}=a,y=m&&"secondary"===g,f=y?"ast-outline-button":"wp-block-button__link",h=y?{borderWidth:"revert-layer"}:{},v=e=>b&&""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Ce(s)):null,_=o?"_blank":"_self";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+i,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater",""+f),"aria-label":u?r:"",style:h,href:""===n||null!=d&&null!==(t=d.link)&&void 0!==t&&t.enable?"#":n,rel:p?"nofollow noopener":"follow noopener",target:_},v("before"),u?"":React.createElement(ge.RichText.Content,{value:r,tagName:"div",className:"uagb-button__link"}),v("after"))))}},{attributes:Ry,save:function(e){var t;const{attributes:a,className:l,setAttributes:i}=e,{block_id:o,opensInNewTab:n,link:r,label:s,icon:c,iconPosition:u,removeText:p,noFollow:b,showIcon:d,dynamicContent:g,buttonType:m,inheritFromTheme:y}=a,f=y&&"secondary"===m,h=f?"ast-outline-button":"wp-block-button__link",v=f?{borderWidth:"revert-layer"}:{},_={"aria-hidden":"true",focussable:"false"},T=e=>d&&""!==c&&e===u?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+u)},Ce(c,i,_)):null,C=n?"_blank":"_self";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+o,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater",""+h),"aria-label":p?s:"",style:v,href:""===r||null!=g&&null!==(t=g.link)&&void 0!==t&&t.enable?"#":r,rel:b?"nofollow noopener":"follow noopener",target:C},T("before"),p?"":React.createElement(ge.RichText.Content,{value:s,tagName:"div",className:"uagb-button__link"}),T("after"))))}}],Ey=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase(),{block_id:r,fontFamily:s,fontWeight:c,size:u,topPadding:p,rightPadding:b,bottomPadding:d,leftPadding:g,topMobilePadding:m,rightMobilePadding:y,bottomMobilePadding:f,leftMobilePadding:h,topTabletPadding:v,rightTabletPadding:_,bottomTabletPadding:T,leftTabletPadding:C,paddingUnit:S,mobilePaddingUnit:w,tabletPaddingUnit:k,btnBorderHColor:P,color:x,background:A,hColor:G,hBackground:M,sizeType:R,sizeTypeTablet:B,sizeTypeMobile:U,sizeMobile:E,sizeTablet:O,lineHeight:L,lineHeightType:H,lineHeightMobile:j,lineHeightTablet:F,iconSpace:z,iconSpaceMobile:D,iconSpaceTablet:N,fontStyle:I,transform:V,decoration:W,backgroundType:q,hoverbackgroundType:Z,gradientValue:$,gradientColor1:Y,gradientColor2:K,gradientLocation1:J,gradientLocationTablet1:X,gradientLocationMobile1:Q,gradientLocation2:ee,gradientLocationTablet2:te,gradientLocationMobile2:le,gradientType:ie,gradientAngle:oe,gradientAngleTablet:ne,gradientAngleMobile:re,selectGradient:se,hovergradientValue:ce,hovergradientColor1:ue,hovergradientColor2:pe,hovergradientLocation1:be,hovergradientLocationTablet1:de,hovergradientLocationMobile1:ge,hovergradientLocation2:me,hovergradientLocationTablet2:ye,hovergradientLocationMobile2:fe,hovergradientType:he,hovergradientAngle:ve,hovergradientAngleTablet:_e,hovergradientAngleMobile:Te,hoverselectGradient:Ce,topMargin:Se,rightMargin:we,bottomMargin:ke,leftMargin:Pe,topMarginTablet:xe,rightMarginTablet:Ae,bottomMarginTablet:Ge,leftMarginTablet:Me,topMarginMobile:Re,rightMarginMobile:Be,bottomMarginMobile:Ue,leftMarginMobile:Ee,marginType:Oe,useSeparateBoxShadows:Le,boxShadowColor:He,boxShadowHOffset:je,boxShadowVOffset:Fe,boxShadowBlur:ze,boxShadowSpread:De,boxShadowPosition:Ne,boxShadowColorHover:Ie,boxShadowHOffsetHover:Ve,boxShadowVOffsetHover:We,boxShadowBlurHover:qe,boxShadowSpreadHover:Ze,boxShadowPositionHover:$e,iconColor:Ye,iconHColor:Ke,iconSize:Je,iconSizeTablet:Xe,iconSizeMobile:Qe,removeText:et,letterSpacing:tt,letterSpacingTablet:at,letterSpacingMobile:lt,letterSpacingType:it,inheritFromTheme:ot,buttonType:nt}=e,rt="primary"===nt?".wp-block-button__link":".ast-outline-button",st={},ct={};let ut={};const pt=cs({horizontal:je,vertical:Fe,blur:ze,spread:De,color:He,position:Ne}),bt=cs({horizontal:Ve,vertical:We,blur:qe,spread:Ze,color:Ie,position:$e,altColor:He});if(ot)ut[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"margin-left":ns(Pe,Oe),"margin-right":ns(we,Oe),"margin-top":ns(Se,Oe),"margin-bottom":ns(ke,Oe),"box-shadow":pt},ct[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"margin-left":ns(Ee,Oe),"margin-right":ns(Be,Oe),"margin-top":ns(Re,Oe),"margin-bottom":ns(Ue,Oe)},st[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"margin-left":ns(Me,Oe),"margin-right":ns(Ae,Oe),"margin-top":ns(xe,Oe),"margin-bottom":ns(Ge,Oe)};else{const t=rs(e,"btn"),a=rs(e,"btn","tablet"),l=rs(e,"btn","mobile");if(ut={".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater:hover .uagb-button__link":{color:G},".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater:hover":{color:G},".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater .uagb-button__link":{color:x}},ut[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"font-size":ns(u,R),"line-height":ns(L,H),"font-family":s,"font-weight":c,"font-style":I,"text-transform":V,"text-decoration":W,"padding-left":ns(g,S),"padding-right":ns(b,S),"padding-top":ns(p,S),"padding-bottom":ns(d,S),"margin-left":ns(Pe,Oe),"margin-right":ns(we,Oe),"margin-top":ns(Se,Oe),"margin-bottom":ns(ke,Oe),color:x,"box-shadow":pt,"letter-spacing":ns(tt,it)},ut[" .wp-block-button__link.uagb-buttons-repeater"]=t,ut[".uagb-buttons__outer-wrap .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover"]={"border-color":P},Le&&(ut[".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater:hover"]={"box-shadow":bt}),ut[".uagb-buttons__outer-wrap.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater"]=t,st[".uagb-buttons__outer-wrap.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater"]=a,ct[".uagb-buttons__outer-wrap.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater"]=l,ut[".uagb-buttons__outer-wrap.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover"]={"border-color":P},ct[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"font-size":ns(E,U),"line-height":ns(j,H),"letter-spacing":ns(lt,it),"padding-left":ns(h,w),"padding-right":ns(y,w),"padding-top":ns(m,w),"padding-bottom":ns(f,w),"margin-left":ns(Ee,Oe),"margin-right":ns(Be,Oe),"margin-top":ns(Re,Oe),"margin-bottom":ns(Ue,Oe),...l},st[`.uagb-buttons__outer-wrap .uagb-button__wrapper ${rt}.uagb-buttons-repeater`]={"font-size":ns(O,B),"line-height":ns(F,H),"letter-spacing":ns(at,it),"padding-left":ns(C,k),"padding-right":ns(_,k),"padding-top":ns(v,k),"padding-bottom":ns(T,k),"margin-left":ns(Me,Oe),"margin-right":ns(Ae,Oe),"margin-top":ns(xe,Oe),"margin-bottom":ns(Ge,Oe),...a},"transparent"===q)ut[".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater"]={background:"transparent"};else if("gradient"===q){const e={backgroundType:"gradient",gradientValue:$,gradientColor1:Y,gradientColor2:K,gradientLocation1:J,gradientLocation2:ee,gradientType:ie,gradientAngle:oe,selectGradient:se},t={backgroundType:"gradient",gradientValue:$,gradientColor1:Y,gradientColor2:K,gradientLocation1:"number"==typeof X?X:e.gradientLocation1,gradientLocation2:"number"==typeof te?te:e.gradientLocation2,gradientType:ie,gradientAngle:"number"==typeof ne?ne:e.gradientAngle,selectGradient:se},a={backgroundType:"gradient",gradientValue:$,gradientColor1:Y,gradientColor2:K,gradientLocation1:"number"==typeof Q?Q:t.gradientLocation1,gradientLocation2:"number"==typeof le?le:t.gradientLocation2,gradientType:ie,gradientAngle:"number"==typeof re?re:t.gradientAngle,selectGradient:se},l=ss(e),i=ss(t),o=ss(a);ut[".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater"]=l,st[".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater"]=i,ct[".uagb-buttons__outer-wrap .wp-block-button__link.uagb-buttons-repeater"]=o}else"color"===q&&(ut[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater"]={background:A});if("transparent"===Z)ut[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater:hover"]={background:"transparent"};else if("gradient"===Z){const e={backgroundType:"gradient",gradientValue:ce,gradientColor1:ue,gradientColor2:pe,gradientLocation1:be,gradientLocation2:me,gradientType:he,gradientAngle:ve,selectGradient:Ce},t={backgroundType:"gradient",gradientValue:ce,gradientColor1:ue,gradientColor2:pe,gradientLocation1:"number"==typeof de?de:e.gradientLocation1,gradientLocation2:"number"==typeof ye?ye:e.gradientLocation2,gradientType:he,gradientAngle:"number"==typeof _e?_e:e.gradientAngle,selectGradient:Ce},a={backgroundType:"gradient",gradientValue:ce,gradientColor1:ue,gradientColor2:pe,gradientLocation1:"number"==typeof ge?ge:t.gradientLocation1,gradientLocation2:"number"==typeof fe?fe:t.gradientLocation2,gradientType:he,gradientAngle:"number"==typeof Te?Te:t.gradientAngle,selectGradient:Ce},l=ss(e),i=ss(t),o=ss(a);ut[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater:hover"]=l,st[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater:hover"]=i,ct[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater:hover"]=o}else"color"===Z&&(ut[".uagb-buttons__outer-wrap.wp-block-button .wp-block-button__link.uagb-buttons-repeater:hover"]={background:M})}if(ut[`.uagb-buttons__outer-wrap ${rt}.uagb-buttons-repeater .uagb-button__icon svg`]={width:ns(Ps(Je,"iconSize",o),"px"),height:ns(Ps(Je,"iconSize",o),"px"),fill:Ye},st[`.uagb-buttons__outer-wrap ${rt}.uagb-buttons-repeater .uagb-button__icon svg`]={width:ns(Xe,"px"),height:ns(Xe,"px"),fill:Ye},ct[`.uagb-buttons__outer-wrap ${rt}.uagb-buttons-repeater .uagb-button__icon svg`]={width:ns(Qe,"px"),height:ns(Qe,"px"),fill:Ye},ut[`.uagb-buttons__outer-wrap ${rt}.uagb-buttons-repeater:hover .uagb-button__icon > svg`]={fill:Ke||G},!et){const e=ns(Ps(z,"iconSpace",o),"px"),t=ns(N,"px"),a=ns(D,"px");let l="margin-right",i="margin-left";"1"!==uagb_blocks_info.is_rtl&&(l="margin-left",i="margin-right"),ut[" .uagb-button__icon-position-after"]={[l]:e},ut[" .uagb-button__icon-position-before"]={[i]:e},st[" .uagb-button__icon-position-before"]={[i]:t},st[" .uagb-button__icon-position-after"]={[l]:t},ct[" .uagb-button__icon-position-before"]={[i]:a},ct[" .uagb-button__icon-position-after"]={[l]:a}}const dt=i?i+" ":".editor-styles-wrapper .uagb-block-"+r;let gt=ae(ut,dt);return("tablet"===n||"mobile"===n||i)&&(gt+=ae(st,""+dt,!0,"tablet"),("mobile"===n||i)&&(gt+=ae(ct,""+dt,!0,"mobile"))),gt},Oy=Object(B.memo)(e=>{let{attributes:t}=e;const{loadGoogleFonts:a,fontFamily:l,fontWeight:i}=t;let o;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};o=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,o)});const Ly=[{defaultAttributes:ct},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowPosition",value:"outset"},{label:"boxShadowSpread",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Hy=[{defaultAttributes:ct},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowPositionHover",value:"outset"},{label:"boxShadowSpreadHover",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var jy=Object(j.applyFilters)("uag_buttons_child_presets",Ly);const Fy=[{defaultAttributes:ct},{defaultPresetAttributes:[{label:"iconSpace"},{label:"backgroundType"},{label:"hoverbackgroundType"},{label:"hBackground"},{label:"hColor"},{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidth"},{label:"btnBorderTopWidth"},{label:"btnBorderLeftWidth"},{label:"btnBorderRightWidth"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"color"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderColor",value:""},{label:"color",value:"#ffffff"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"color"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderColor",value:""},{label:"color",value:"#ffffff"},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"color"},{label:"btnBorderColor",value:""},{label:"color",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"backgroundType",value:"color"},{label:"showIcon",value:!0},{label:"iconSpace",value:12},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderColor",value:""},{label:"color",value:"#ffffff"},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M119.2 144H110.775V127.325H118.975C120.458 127.325 121.617 127.733 122.45 128.55C123.3 129.35 123.725 130.358 123.725 131.575C123.725 132.575 123.442 133.425 122.875 134.125C122.325 134.808 121.642 135.233 120.825 135.4C121.725 135.533 122.483 136 123.1 136.8C123.733 137.583 124.05 138.483 124.05 139.5C124.05 140.833 123.617 141.917 122.75 142.75C121.9 143.583 120.717 144 119.2 144ZM118.375 134.225C119.108 134.225 119.683 134.025 120.1 133.625C120.517 133.225 120.725 132.708 120.725 132.075C120.725 131.425 120.517 130.9 120.1 130.5C119.683 130.1 119.108 129.9 118.375 129.9H113.7V134.225H118.375ZM118.5 141.425C119.3 141.425 119.925 141.225 120.375 140.825C120.825 140.408 121.05 139.833 121.05 139.1C121.05 138.45 120.825 137.908 120.375 137.475C119.925 137.025 119.3 136.8 118.5 136.8H113.7V141.425H118.5ZM137.686 144H135.061V142.4C133.928 143.667 132.503 144.3 130.786 144.3C128.203 144.3 126.911 143.025 126.911 140.475V131.925H129.536V139.525C129.536 140.408 129.744 141.042 130.161 141.425C130.578 141.792 131.178 141.975 131.961 141.975C132.594 141.975 133.186 141.825 133.736 141.525C134.286 141.225 134.728 140.85 135.061 140.4V131.925H137.686V144ZM144.721 144.3C143.704 144.3 142.929 144.033 142.396 143.5C141.879 142.967 141.621 142.2 141.621 141.2V134.225H139.621V131.925H141.621V128.625H144.246V131.925H146.696V134.225H144.246V140.55C144.246 140.983 144.346 141.333 144.546 141.6C144.746 141.85 145.029 141.975 145.396 141.975C145.929 141.975 146.321 141.833 146.571 141.55L147.196 143.525C146.646 144.042 145.821 144.3 144.721 144.3ZM152.704 144.3C151.687 144.3 150.912 144.033 150.379 143.5C149.862 142.967 149.604 142.2 149.604 141.2V134.225H147.604V131.925H149.604V128.625H152.229V131.925H154.679V134.225H152.229V140.55C152.229 140.983 152.329 141.333 152.529 141.6C152.729 141.85 153.012 141.975 153.379 141.975C153.912 141.975 154.304 141.833 154.554 141.55L155.179 143.525C154.629 144.042 153.804 144.3 152.704 144.3ZM162.512 144.3C160.646 144.3 159.146 143.692 158.012 142.475C156.879 141.242 156.312 139.733 156.312 137.95C156.312 136.167 156.879 134.667 158.012 133.45C159.146 132.233 160.646 131.625 162.512 131.625C164.396 131.625 165.904 132.233 167.037 133.45C168.171 134.667 168.737 136.167 168.737 137.95C168.737 139.75 168.171 141.258 167.037 142.475C165.904 143.692 164.396 144.3 162.512 144.3ZM162.512 141.975C163.596 141.975 164.446 141.592 165.062 140.825C165.696 140.042 166.012 139.083 166.012 137.95C166.012 136.833 165.696 135.892 165.062 135.125C164.446 134.342 163.596 133.95 162.512 133.95C161.446 133.95 160.596 134.342 159.962 135.125C159.346 135.892 159.037 136.833 159.037 137.95C159.037 139.083 159.346 140.042 159.962 140.825C160.596 141.592 161.446 141.975 162.512 141.975ZM182.168 144H179.543V136.45C179.543 134.783 178.735 133.95 177.118 133.95C176.485 133.95 175.893 134.108 175.343 134.425C174.793 134.742 174.352 135.125 174.018 135.575V144H171.393V131.925H174.018V133.575C174.468 133.042 175.068 132.583 175.818 132.2C176.568 131.817 177.385 131.625 178.268 131.625C179.552 131.625 180.518 131.958 181.168 132.625C181.835 133.292 182.168 134.25 182.168 135.5V144Z" fill="white"/> <path d="M217 138L207 132.226V143.774L217 138ZM189 139H208V137H189V139Z" fill="white"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"transparent"},{label:"color",value:"#0170b9"},{label:"hoverbackgroundType",value:"color"},{label:"hBackground",value:"#3a3a3a"},{label:"hColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderColor",value:""},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"transparent"},{label:"color",value:"#0170b9"},{label:"hoverbackgroundType",value:"color"},{label:"hBackground",value:"#3a3a3a"},{label:"hColor",value:"#ffffff"},{label:"btnBorderColor",value:""},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-7",label:Object(r.__)("Preset 7","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"backgroundType",value:"transparent"},{label:"color",value:"#0170b9"},{label:"hoverbackgroundType",value:"color"},{label:"hBackground",value:"#3a3a3a"},{label:"hColor",value:"#ffffff"},{label:"btnBorderColor",value:""},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'},{value:"preset-8",label:Object(r.__)("Preset 8","ultimate-addons-for-gutenberg"),attributes:[{label:"backgroundType",value:"transparent"},{label:"color",value:"#0170b9"},{label:"hoverbackgroundType",value:"color"},{label:"hBackground",value:"#3a3a3a"},{label:"hColor",value:"#ffffff"},{label:"showIcon",value:!0},{label:"iconSpace",value:12},{label:"btnBorderColor",value:""},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="104" width="207.786" height="64" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M119.2 145H110.775V128.325H118.975C120.458 128.325 121.617 128.733 122.45 129.55C123.3 130.35 123.725 131.358 123.725 132.575C123.725 133.575 123.442 134.425 122.875 135.125C122.325 135.808 121.642 136.233 120.825 136.4C121.725 136.533 122.483 137 123.1 137.8C123.733 138.583 124.05 139.483 124.05 140.5C124.05 141.833 123.617 142.917 122.75 143.75C121.9 144.583 120.717 145 119.2 145ZM118.375 135.225C119.108 135.225 119.683 135.025 120.1 134.625C120.517 134.225 120.725 133.708 120.725 133.075C120.725 132.425 120.517 131.9 120.1 131.5C119.683 131.1 119.108 130.9 118.375 130.9H113.7V135.225H118.375ZM118.5 142.425C119.3 142.425 119.925 142.225 120.375 141.825C120.825 141.408 121.05 140.833 121.05 140.1C121.05 139.45 120.825 138.908 120.375 138.475C119.925 138.025 119.3 137.8 118.5 137.8H113.7V142.425H118.5ZM137.686 145H135.061V143.4C133.928 144.667 132.503 145.3 130.786 145.3C128.203 145.3 126.911 144.025 126.911 141.475V132.925H129.536V140.525C129.536 141.408 129.744 142.042 130.161 142.425C130.578 142.792 131.178 142.975 131.961 142.975C132.594 142.975 133.186 142.825 133.736 142.525C134.286 142.225 134.728 141.85 135.061 141.4V132.925H137.686V145ZM144.721 145.3C143.704 145.3 142.929 145.033 142.396 144.5C141.879 143.967 141.621 143.2 141.621 142.2V135.225H139.621V132.925H141.621V129.625H144.246V132.925H146.696V135.225H144.246V141.55C144.246 141.983 144.346 142.333 144.546 142.6C144.746 142.85 145.029 142.975 145.396 142.975C145.929 142.975 146.321 142.833 146.571 142.55L147.196 144.525C146.646 145.042 145.821 145.3 144.721 145.3ZM152.704 145.3C151.687 145.3 150.912 145.033 150.379 144.5C149.862 143.967 149.604 143.2 149.604 142.2V135.225H147.604V132.925H149.604V129.625H152.229V132.925H154.679V135.225H152.229V141.55C152.229 141.983 152.329 142.333 152.529 142.6C152.729 142.85 153.012 142.975 153.379 142.975C153.912 142.975 154.304 142.833 154.554 142.55L155.179 144.525C154.629 145.042 153.804 145.3 152.704 145.3ZM162.512 145.3C160.646 145.3 159.146 144.692 158.012 143.475C156.879 142.242 156.312 140.733 156.312 138.95C156.312 137.167 156.879 135.667 158.012 134.45C159.146 133.233 160.646 132.625 162.512 132.625C164.396 132.625 165.904 133.233 167.037 134.45C168.171 135.667 168.737 137.167 168.737 138.95C168.737 140.75 168.171 142.258 167.037 143.475C165.904 144.692 164.396 145.3 162.512 145.3ZM162.512 142.975C163.596 142.975 164.446 142.592 165.062 141.825C165.696 141.042 166.012 140.083 166.012 138.95C166.012 137.833 165.696 136.892 165.062 136.125C164.446 135.342 163.596 134.95 162.512 134.95C161.446 134.95 160.596 135.342 159.962 136.125C159.346 136.892 159.037 137.833 159.037 138.95C159.037 140.083 159.346 141.042 159.962 141.825C160.596 142.592 161.446 142.975 162.512 142.975ZM182.168 145H179.543V137.45C179.543 135.783 178.735 134.95 177.118 134.95C176.485 134.95 175.893 135.108 175.343 135.425C174.793 135.742 174.352 136.125 174.018 136.575V145H171.393V132.925H174.018V134.575C174.468 134.042 175.068 133.583 175.818 133.2C176.568 132.817 177.385 132.625 178.268 132.625C179.552 132.625 180.518 132.958 181.168 133.625C181.835 134.292 182.168 135.25 182.168 136.5V145Z" fill="#959595"/> <path d="M217 139L207 133.226V144.774L217 139ZM189 140H208V138H189V140Z" fill="#959595"/> </svg>'}];function zy(){return(zy=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Dy=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l,clientId:i}=e,{block_id:o,link:s,size:c,topPadding:u,rightPadding:p,bottomPadding:b,leftPadding:d,topMobilePadding:g,rightMobilePadding:m,bottomMobilePadding:y,leftMobilePadding:f,topTabletPadding:h,rightTabletPadding:v,bottomTabletPadding:_,leftTabletPadding:T,paddingUnit:C,mobilePaddingUnit:S,tabletPaddingUnit:w,paddingLink:k,color:P,background:x,hColor:A,hBackground:G,sizeType:M,sizeTypeMobile:R,sizeTypeTablet:B,sizeMobile:U,sizeTablet:E,lineHeight:O,lineHeightType:L,lineHeightMobile:H,lineHeightTablet:j,icon:F,iconPosition:z,iconSpace:D,iconSpaceTablet:N,iconSpaceMobile:I,opensInNewTab:V,loadGoogleFonts:W,fontFamily:q,fontWeight:Z,fontStyle:$,transform:Y,decoration:K,backgroundType:J,hoverbackgroundType:X,gradientValue:Q,hovergradientValue:ee,hovergradientColor1:te,hoverselectGradient:ae,hovergradientColor2:le,hovergradientLocation1:ie,hovergradientLocationTablet1:oe,hovergradientLocationMobile1:ne,hovergradientLocation2:re,hovergradientLocationTablet2:se,hovergradientLocationMobile2:ce,hovergradientType:ue,hovergradientAngle:pe,hovergradientAngleTablet:be,hovergradientAngleMobile:de,gradientColor1:me,gradientColor2:ye,gradientLocation1:fe,gradientLocationTablet1:he,gradientLocationMobile1:ve,gradientLocation2:_e,gradientLocationTablet2:Te,gradientLocationMobile2:Se,gradientType:we,gradientAngle:ke,gradientAngleTablet:Pe,gradientAngleMobile:xe,selectGradient:Ae,topMargin:Ge,rightMargin:Me,bottomMargin:Re,leftMargin:Be,topMarginTablet:Ue,rightMarginTablet:Oe,bottomMarginTablet:He,leftMarginTablet:je,topMarginMobile:ze,rightMarginMobile:De,bottomMarginMobile:Ne,leftMarginMobile:Ie,marginType:Ve,marginLink:We,useSeparateBoxShadows:qe,boxShadowColor:Ze,boxShadowHOffset:$e,boxShadowVOffset:Ye,boxShadowBlur:Ke,boxShadowSpread:Je,boxShadowPosition:Xe,boxShadowColorHover:Qe,boxShadowHOffsetHover:et,boxShadowVOffsetHover:tt,boxShadowBlurHover:at,boxShadowSpreadHover:lt,boxShadowPositionHover:it,iconColor:ot,iconHColor:nt,iconSize:rt,iconSizeTablet:st,iconSizeMobile:ct,noFollow:ut,removeText:pt,letterSpacing:bt,letterSpacingTablet:dt,letterSpacingMobile:gt,letterSpacingType:mt,showIcon:yt,inheritFromTheme:ft,buttonType:ht,showLinkOpensInNewTabNoFollow:vt}=t,_t=uagb_blocks_info.current_theme,Tt=uagb_blocks_info.is_astra_based_theme,{updateBlockAttributes:Ct}=Object(n.useDispatch)(ge.store),St=Object(n.select)("core/block-editor").getBlockParents(i).at(-1),wt=Object(n.select)("core/block-editor").getBlockAttributes(St),kt=[{align:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),title:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{align:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),title:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{align:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),title:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{align:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),title:Object(r.__)("Full","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(ge.AlignmentToolbar,{value:wt.align,onChange:e=>{a({align:e}),Ct(St,{align:e})},alignmentControls:kt})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,zy({},ol,{parentProps:e}),!ft&&React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(zr,{setAttributes:a,presets:Fy,presetInputType:"radioImage"})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{checked:ft,onChange:()=>a({inheritFromTheme:!ft}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),ft&&("Astra"===_t||Tt)&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:ht,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Icon","ultimate-addons-for-gutenberg"),checked:yt,onChange:()=>a({showIcon:!yt})}),yt&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:F,onChange:e=>a({icon:e})}),""!==F&&!pt&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:z,label:"iconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:"Before Text"},{value:"after",label:"After Text"}],showIcons:!1}))),vt&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,name:"link",value:s,setAttributes:a,data:{value:s,label:"link"}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg"),checked:V,onChange:()=>a({opensInNewTab:!V})}),React.createElement(Le.ToggleControl,{label:Object(r.__)('Add "nofollow" to link',"ultimate-addons-for-gutenberg"),checked:ut,onChange:()=>a({noFollow:!ut})}),""!==F&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Remove Text","ultimate-addons-for-gutenberg"),checked:pt,onChange:()=>a({removeText:!pt})}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,zy({},nl,{parentProps:e}),!pt&&!ft&&React.createElement(Fe,{title:Object(r.__)("Text","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:P||"",data:{value:P,label:"color"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:A||"",data:{value:A,label:"hColor"},setAttributes:a}))}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:W,label:"loadGoogleFonts"},fontFamily:{value:q,label:"fontFamily"},fontWeight:{value:Z,label:"fontWeight"},fontStyle:{value:$,label:"fontStyle"},transform:{value:Y,label:"transform"},decoration:{value:K,label:"decoration"},fontSizeType:{value:M,label:"sizeType"},fontSizeTypeTablet:{value:B,label:"sizeTypeTablet"},fontSizeTypeMobile:{value:R,label:"sizeTypeMobile"},fontSize:{value:c,label:"size"},fontSizeMobile:{value:U,label:"sizeMobile"},fontSizeTablet:{value:E,label:"sizeTablet"},lineHeightType:{value:L,label:"lineHeightType"},lineHeight:{value:O,label:"lineHeight"},lineHeightMobile:{value:H,label:"lineHeightMobile"},lineHeightTablet:{value:j,label:"lineHeightTablet"},letterSpacing:{value:bt,label:"letterSpacing"},letterSpacingTablet:{value:dt,label:"letterSpacingTablet"},letterSpacingMobile:{value:gt,label:"letterSpacingMobile"},letterSpacingType:{value:mt,label:"letterSpacingType"}})),yt&&""!==F&&React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:rt,label:"iconSize"},tablet:{value:st,label:"iconSizeTablet"},mobile:{value:ct,label:"iconSizeMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a}),""!==F&&!pt&&React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:D,label:"iconSpace"},tablet:{value:N,label:"iconSpaceTablet"},mobile:{value:I,label:"iconSpaceMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ot||"",data:{value:ot,label:"iconColor"},setAttributes:a}),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:nt||"",data:{value:nt,label:"iconHColor"},setAttributes:a})),disableBottomSeparator:!0})),!ft&&React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:J,label:"backgroundType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}]}),"color"===J&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:x||"",data:{value:x,label:"background"},setAttributes:a})),"gradient"===J&&React.createElement(Fl,{backgroundGradient:{value:Q,label:"gradientValue"},backgroundGradientColor1:{value:me,label:"gradientColor1"},gradientType:{value:Ae,label:"selectGradient"},backgroundGradientColor2:{value:ye,label:"gradientColor2"},backgroundGradientLocation1:{value:fe,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:he,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:ve,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:_e,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:Te,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:Se,label:"gradientLocationMobile2"},backgroundGradientType:{value:we,label:"gradientType"},backgroundGradientAngle:{value:ke,label:"gradientAngle"},backgroundGradientAngleTablet:{value:Pe,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:xe,label:"gradientAngleMobile"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:X,label:"hoverbackgroundType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}]}),"color"===X&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:G||"",data:{value:G,label:"hBackground"},setAttributes:a})),"gradient"===X&&React.createElement(Fl,{backgroundGradient:{value:ee,label:"hovergradientValue"},backgroundGradientColor1:{value:te,label:"hovergradientColor1"},gradientType:{value:ae,label:"hoverselectGradient"},backgroundGradientColor2:{value:le,label:"hovergradientColor2"},backgroundGradientLocation1:{value:ie,label:"hovergradientLocation1"},backgroundGradientLocationTablet1:{value:oe,label:"hovergradientLocationTablet1"},backgroundGradientLocationMobile1:{value:ne,label:"hovergradientLocationMobile1"},backgroundGradientLocation2:{value:re,label:"hovergradientLocation2"},backgroundGradientLocationTablet2:{value:se,label:"hovergradientLocationTablet2"},backgroundGradientLocationMobile2:{value:ce,label:"hovergradientLocationMobile2"},backgroundGradientType:{value:ue,label:"hovergradientType"},backgroundGradientAngle:{value:pe,label:"hovergradientAngle"},backgroundGradientAngleTablet:{value:be,label:"hovergradientAngleTablet"},backgroundGradientAngleMobile:{value:de,label:"hovergradientAngleMoble"},setAttributes:a})),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"btn",attributes:t,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:qe,onChange:()=>a({useSeparateBoxShadows:!qe})}),qe?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:jy,presetInputType:"radioImage"}),React.createElement(vl,{blockId:o,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Ze,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:$e,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Ye,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:Ke,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:Je,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:Xe,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Hy,presetInputType:"radioImage"}),React.createElement(vl,{blockId:o,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Qe,label:"boxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:et,label:"boxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:tt,label:"boxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:at,label:"boxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:lt,label:"boxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:it,label:"boxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:jy,presetInputType:"radioImage"}),React.createElement(vl,{blockId:o,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Ze,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:$e,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Ye,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:Ke,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:Je,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:Xe,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},!ft&&React.createElement(Pl,zy({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:u,label:"topPadding"},valueRight:{value:p,label:"rightPadding"},valueBottom:{value:b,label:"bottomPadding"},valueLeft:{value:d,label:"leftPadding"},valueTopTablet:{value:h,label:"topTabletPadding"},valueRightTablet:{value:v,label:"rightTabletPadding"},valueBottomTablet:{value:_,label:"bottomTabletPadding"},valueLeftTablet:{value:T,label:"leftTabletPadding"},valueTopMobile:{value:g,label:"topMobilePadding"},valueRightMobile:{value:m,label:"rightMobilePadding"},valueBottomMobile:{value:y,label:"bottomMobilePadding"},valueLeftMobile:{value:f,label:"leftMobilePadding"},unit:{value:C,label:"paddingUnit"},mUnit:{value:S,label:"mobilePaddingUnit"},tUnit:{value:w,label:"tabletPaddingUnit"},attributes:t,setAttributes:a,link:{value:k,label:"paddingLink"}})),React.createElement(Pl,zy({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Ge,label:"topMargin"},valueRight:{value:Me,label:"rightMargin"},valueBottom:{value:Re,label:"bottomMargin"},valueLeft:{value:Be,label:"leftMargin"},valueTopTablet:{value:Ue,label:"topMarginTablet"},valueRightTablet:{value:Oe,label:"rightMarginTablet"},valueBottomTablet:{value:He,label:"bottomMarginTablet"},valueLeftTablet:{value:je,label:"leftMarginTablet"},valueTopMobile:{value:ze,label:"topMarginMobile"},valueRightMobile:{value:De,label:"rightMarginMobile"},valueBottomMobile:{value:Ne,label:"bottomMarginMobile"},valueLeftMobile:{value:Ie,label:"leftMarginMobile"},unit:{value:Ve,label:"marginType"},mUnit:{value:Ve,label:"marginType"},tUnit:{value:Ve,label:"marginType"},attributes:t,setAttributes:a,link:{value:We,label:"marginLink"}})))),React.createElement(il,zy({},rl,{parentProps:e}),lc(Ey,a,t)))))}),Ny=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l,context:i,labelHasDynamicContent:o}=e,{className:n,icon:s,iconPosition:c,removeText:u,noFollow:p,showIcon:b,block_id:d,buttonType:g,inheritFromTheme:m}=t;let{label:y}=t;const f=m&&"secondary"===g,h=f?"ast-outline-button":"wp-block-button__link",v=f?{borderWidth:"revert-layer"}:{};if(o){const e=Object(j.applyFilters)("uag_render_text_loop_data",y,i);""!==e&&(y=e)}const _={"aria-hidden":"true",focussable:"false"},T=e=>b&&""!==s&&e===c?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+c)},Ce(s,a,_)):null,C=uagb_blocks_info.spectra_pro_status?["uagb/dynamic-content"]:[];return React.createElement("div",{className:Be()(n,"uagb-buttons__outer-wrap","uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-block-"+d,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("div",{className:Be()("uagb-buttons-repeater",""+h),style:v},T("before"),u?"":React.createElement(ge.RichText,{placeholder:Object(r.__)("Add text…","ultimate-addons-for-gutenberg"),value:y,tagName:"div",onChange:e=>{a({label:e})},className:"uagb-button__link",rel:p?"nofollow noopener":"follow noopener",keepPlaceholderOnFocus:!0,allowedFormats:C}),T("after"))))});function Iy(){return(Iy=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Vy=Object(L.compose)(vs,fe,Pc)(e=>{const{isSelected:t,clientId:a,attributes:l,attributes:{borderStyle:i,borderWidth:o,borderRadius:n,borderHColor:r,borderColor:s,label:c,globalBlockStyleId:u},setAttributes:p,name:b,deviceType:d,context:g}=e,[m,y]=Object(B.useState)({isURLPickerOpen:!1}),f=c&&-1!==c.indexOf('<span data-spectra-dc-field="');e={...e,labelHasDynamicContent:f},Object(B.useEffect)(()=>{u||(o||n||s||r||i)&&ue("btn",{label:"borderWidth",value:o},{label:"borderRadius",value:n},{label:"borderColor",value:s},{label:"borderHColor",value:r},{label:"borderStyle",value:i},p,l)},[]),Object(B.useEffect)(()=>{var e;!f||null!=l&&null!==(e=l.context)&&void 0!==e&&e.postId||p(e=>({...e,context:g}))},[f,null==g?void 0:g.postId]),Object(B.useEffect)(()=>{Bs()},[d]);const h=Object(B.useMemo)(()=>Ey(l,a,b,d),[l,d]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:h}),React.createElement(Oy,{attributes:l}),t&&React.createElement(Dy,Iy({},e,{state:m,setStateValue:y})),React.createElement(Ny,e))});a(211);let Wy={};Wy=Object(j.applyFilters)("uagb/buttons-child",ws(Wy)),Object(be.registerBlockType)("uagb/buttons-child",{...Wy,title:Object(r.__)("Button","ultimate-addons-for-gutenberg"),description:Object(r.__)("This block allows you to style button.","ultimate-addons-for-gutenberg"),icon:se.buttons_child,parent:["uagb/buttons"],attributes:ct,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"buttons-child",isChildren:!0}):React.createElement(Vy,e),save:function(e){var t;const{attributes:a,className:l,setAttributes:i}=e,{block_id:o,opensInNewTab:n,link:r,label:s,icon:c,iconPosition:u,removeText:p,noFollow:b,showIcon:d,dynamicContent:g,buttonType:m,inheritFromTheme:y}=a,f=y&&"secondary"===m,h=f?"ast-outline-button":"wp-block-button__link",v=f?{borderWidth:"revert-layer"}:{},_={"aria-hidden":"true",focussable:"false"},T=e=>d&&""!==c&&e===u?React.createElement("span",{className:Be()("uagb-button__icon","uagb-button__icon-position-"+u)},Ce(c,i,_)):null,C=n?"_blank":"_self";return React.createElement("div",{className:Be()(l,"uagb-buttons__outer-wrap","uagb-block-"+o,"wp-block-button")},React.createElement("div",{className:"uagb-button__wrapper"},React.createElement("a",{className:Be()("uagb-buttons-repeater",""+h),"aria-label":p?s:"",style:v,href:""===r||null!=g&&null!==(t=g.link)&&void 0!==t&&t.enable?"#":r,rel:b?"nofollow noopener":"follow noopener",target:C,role:"button"},T("before"),p?"":React.createElement(ge.RichText.Content,{value:s,tagName:"div",className:"uagb-button__link"}),T("after"))))},deprecated:Uy,usesContext:["queryId","query","queryContext","attrs","postId","postType"],supports:{anchor:!0,html:!1}});var qy=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=l.toLowerCase(),{block_id:n,headingAlign:r,headingAlignTablet:s,headingAlignMobile:c,headingColor:u,subHeadingColor:p,prefixColor:b,prefixFontSize:d,prefixFontSizeType:g,prefixFontSizeTypeMobile:m,prefixFontSizeTypeTablet:y,prefixFontSizeTablet:f,prefixFontSizeMobile:h,prefixFontFamily:v,prefixFontWeight:_,prefixLineHeightType:T,prefixLineHeight:C,prefixLineHeightTablet:S,prefixLineHeightMobile:w,prefixLetterSpacing:k,prefixLetterSpacingTablet:P,prefixLetterSpacingMobile:x,prefixLetterSpacingType:A,headFontSize:G,headFontSizeType:M,headFontSizeTypeMobile:R,headFontSizeTypeTablet:B,headFontSizeTablet:U,headFontSizeMobile:E,headFontFamily:O,headFontWeight:L,headLineHeightType:H,headLineHeight:j,headLineHeightTablet:F,headLineHeightMobile:z,headLetterSpacing:D,headLetterSpacingTablet:N,headLetterSpacingMobile:I,headLetterSpacingType:V,subHeadFontSize:W,subHeadFontSizeType:q,subHeadFontSizeTypeMobile:Z,subHeadFontSizeTypeTablet:$,subHeadFontSizeTablet:Y,subHeadFontSizeMobile:K,subHeadFontFamily:J,subHeadFontWeight:X,subHeadLineHeightType:Q,subHeadLineHeight:ee,subHeadLineHeightTablet:te,subHeadLineHeightMobile:le,separatorWidthType:ie,iconColor:oe,iconSize:ne,iconSizeType:re,iconSizeTablet:se,iconSizeMobile:ce,iconimgPosition:ue,iconHover:pe,iconimgBorderRadius:be,iconimgBorderRadiusUnit:de,seperatorStyle:ge,seperatorWidth:me,seperatorWidthTablet:ye,seperatorWidthMobile:fe,seperatorColor:he,seperatorThickness:ve,thicknessUnit:_e,ctaLinkColor:Te,ctaFontSize:Ce,ctaFontSizeType:Se,ctaFontSizeTypeMobile:we,ctaFontSizeTypeTablet:ke,ctaFontSizeMobile:Pe,ctaFontSizeTablet:xe,ctaLineHeightType:Ae,ctaLineHeight:Ge,ctaLineHeightMobile:Me,ctaLineHeightTablet:Re,ctaLetterSpacingType:Be,ctaLetterSpacing:Ue,ctaLetterSpacingTablet:Ee,ctaLetterSpacingMobile:Oe,ctaFontFamily:Le,ctaFontWeight:He,ctaBtnLinkColor:je,ctaBgType:Fe,ctaBgHoverType:ze,ctaBgColor:De,paddingBtnUnit:Ne,mobilePaddingBtnUnit:Ie,tabletPaddingBtnUnit:Ve,paddingBtnTop:We,paddingBtnBottom:qe,paddingBtnLeft:Ze,paddingBtnRight:$e,paddingBtnTopTablet:Ye,paddingBtnRightTablet:Ke,paddingBtnBottomTablet:Je,paddingBtnLeftTablet:Xe,paddingBtnTopMobile:Qe,paddingBtnRightMobile:et,paddingBtnBottomMobile:tt,paddingBtnLeftMobile:at,iconLeftMargin:lt,iconRightMargin:it,iconTopMargin:ot,iconBottomMargin:nt,iconMarginTopTablet:rt,iconMarginRightTablet:st,iconMarginBottomTablet:ct,iconMarginLeftTablet:ut,iconMarginTopMobile:pt,iconMarginRightMobile:bt,iconMarginBottomMobile:dt,iconMarginLeftMobile:gt,iconMarginUnit:mt,iconMobileMarginUnit:yt,iconTabletMarginUnit:ft,imageWidth:ht,imageWidthMobile:vt,imageWidthTablet:_t,imageWidthType:Tt,imageWidthUnit:Ct,imageWidthUnitTablet:St,imageWidthUnitMobile:wt,ctaLinkHoverColor:kt,ctaBgHoverColor:Pt,btnBorderHColor:xt,ctaIconSpace:At,ctaIconSpaceTablet:Gt,ctaIconSpaceMobile:Mt,ctaIconSpaceType:Rt,ctaTransform:Bt,ctaDecoration:Ut,prefixTransform:Et,prefixDecoration:Ot,headTransform:Lt,headDecoration:Ht,subHeadTransform:jt,subHeadDecoration:Ft,stack:zt,prefixFontStyle:Dt,headFontStyle:Nt,subHeadFontStyle:It,ctaFontStyle:Vt,ctaIconPosition:Wt,prefixTopMargin:qt,prefixRightMargin:Zt,prefixSpace:$t,prefixLeftMargin:Yt,prefixMarginTopTablet:Kt,prefixMarginRightTablet:Jt,prefixTabletSpace:Xt,prefixMarginLeftTablet:Qt,prefixMarginTopMobile:ea,prefixMarginRightMobile:ta,prefixMobileSpace:aa,prefixMarginLeftMobile:la,prefixSpaceUnit:ia,prefixMobileMarginUnit:oa,prefixTabletMarginUnit:na,headTopMargin:ra,headRightMargin:sa,headSpace:ca,headLeftMargin:ua,headMarginTopTablet:pa,headMarginRightTablet:ba,headTabletSpace:da,headMarginLeftTablet:ga,headMarginTopMobile:ma,headMarginRightMobile:ya,headMobileSpace:fa,headMarginLeftMobile:ha,headSpaceUnit:va,headMobileMarginUnit:_a,headTabletMarginUnit:Ta,separatorTopMargin:Ca,separatorRightMargin:Sa,seperatorSpace:wa,separatorLeftMargin:ka,separatorMarginTopTablet:Pa,separatorMarginRightTablet:xa,seperatorTabletSpace:Aa,separatorMarginLeftTablet:Ga,separatorMarginTopMobile:Ma,separatorMarginRightMobile:Ra,seperatorMobileSpace:Ba,separatorMarginLeftMobile:Ua,seperatorSpaceUnit:Ea,separatorMobileMarginUnit:Oa,separatorTabletMarginUnit:La,subHeadTopMargin:Ha,subHeadRightMargin:ja,subHeadSpace:Fa,subHeadLeftMargin:za,subHeadMarginTopTablet:Da,subHeadMarginRightTablet:Na,subHeadTabletSpace:Ia,subHeadMarginLeftTablet:Va,subHeadMarginTopMobile:Wa,subHeadMarginRightMobile:qa,subHeadMobileSpace:Za,subHeadMarginLeftMobile:$a,subHeadSpaceUnit:Ya,subHeadMobileMarginUnit:Ka,subHeadTabletMarginUnit:Ja,subHeadLetterSpacing:Xa,subHeadLetterSpacingTablet:Qa,subHeadLetterSpacingMobile:el,subHeadLetterSpacingType:tl,iconView:al,iconBackgroundColor:ll,iconBackgroundHoverColor:il,iconBorderWidth:ol,blockTopMargin:nl,blockRightMargin:rl,blockLeftMargin:sl,blockBottomMargin:cl,blockTopMarginTablet:ul,blockRightMarginTablet:pl,blockLeftMarginTablet:bl,blockBottomMarginTablet:dl,blockTopMarginMobile:gl,blockRightMarginMobile:ml,blockLeftMarginMobile:yl,blockBottomMarginMobile:fl,blockMarginUnit:hl,blockMarginUnitTablet:vl,blockMarginUnitMobile:_l,blockTopPadding:Tl,blockRightPadding:Cl,blockLeftPadding:Sl,blockBottomPadding:wl,blockTopPaddingTablet:kl,blockRightPaddingTablet:Pl,blockLeftPaddingTablet:xl,blockBottomPaddingTablet:Al,blockTopPaddingMobile:Gl,blockRightPaddingMobile:Ml,blockLeftPaddingMobile:Rl,blockBottomPaddingMobile:Bl,blockPaddingUnit:Ul,blockPaddingUnitTablet:El,blockPaddingUnitMobile:Ol,inheritFromTheme:Ll,infoboxBorderHColor:Hl}=e,jl=a.replace("uagb/",""),Fl=Ps(ve,"seperatorThickness",jl),zl=Ps(ne,"iconSize",jl),Dl=isNaN(se)?zl:se,Nl=isNaN(ce)?Dl:ce,Il=Ps(be,"iconimgBorderRadius",jl),Vl=Ps(me,"seperatorWidth",jl),Wl=Ps(ye,"seperatorWidthTablet",jl),ql=Ps(fe,"seperatorWidthMobile",jl),Zl=Ps(At,"ctaIconSpace",jl),$l=isNaN(Gt)?Zl:Gt,Yl=isNaN(Mt)?$l:Mt,Kl=Ps(ht,"imageWidth",jl),Jl=isNaN(_t)?Kl:_t,Xl=isNaN(vt)?Jl:vt,Ql="%"===re?"border-box":"content-box",ei="%"===Ct?"border-box":"content-box",ti="%"===St?"border-box":"content-box",ai="%"===wt?"border-box":"content-box",li=rs(e,"infobox"),ii=rs(e,"infobox","tablet"),oi=rs(e,"infobox","mobile"),ni=e=>{if("1"!==uagb_blocks_info.is_rtl)return e;switch(e){case"left":return"right";case"right":return"left";default:return e}},ri=ni(r),si=ni(s),ci=ni(c),ui="1"===uagb_blocks_info.is_rtl?"padding-left":"padding-right",pi="1"===uagb_blocks_info.is_rtl?"padding-right":"padding-left",bi={" .uagb-ifb-content .uagb-ifb-icon-wrap svg":{"font-size":ns(zl,re),color:oe,fill:oe,"line-height":ns(zl,re)}," .uagb-iconbox-icon-wrap":{margin:"auto",display:"inline-flex","align-items":"center","justify-content":"center","box-sizing":"content-box",width:ns(zl,re),height:ns(zl,re),"line-height":ns(zl,re),[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt)}," .uagb-ifb-content .uagb-ifb-left-title-image svg":{"font-size":ns(zl,re),color:oe,fill:oe,width:ns(zl,re),"line-height":ns(zl,re)}," .uagb-ifb-content .uagb-ifb-right-title-image svg":{"font-size":ns(zl,re),color:oe,fill:oe,width:ns(zl,re),"line-height":ns(zl,re)},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg":{"font-size":ns(zl,re),color:oe,fill:oe,width:ns(zl,re),height:ns(zl,re),"line-height":ns(zl,re)}," .uagb-ifb-content .uagb-ifb-icon-wrap svg:hover":{fill:pe},".uagb-infobox-icon-left .uagb-ifb-icon-wrap > svg:hover":{fill:pe},".uagb-infobox-icon-right .uagb-ifb-icon-wrap:hover > svg:hover":{fill:pe},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg:hover":{fill:pe},".uagb-infobox_cta-type-all:hover .uagb-infobox__content-wrap svg":{fill:pe,color:pe},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt)},".uagb-infobox__content-wrap .uagb-ifb-image-content > img":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt),"border-radius":ns(Il,de)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt),"border-radius":ns(Il,de)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt),"border-radius":ns(Il,de)},".uagb-infobox__content-wrap .uagb-ifb-content img":{[pi]:ns(lt,mt),[ui]:ns(it,mt),"padding-top":ns(ot,mt),"padding-bottom":ns(nt,mt),"border-radius":ns(Il,de),"box-sizing":""+ei}," .block-editor-rich-text__editable.uagb-ifb-title-prefix":{"font-size":ns(d,g),"font-family":v,"font-weight":_,"line-height":ns(C,T),"font-style":Dt,"text-decoration":Ot,"text-transform":Et,color:b,"letter-spacing":ns(k,A),"margin-bottom":ns($t,ia),"margin-top":ns(qt,ia),"margin-left":ns(Yt,ia),"margin-right":ns(Zt,ia)}," .block-editor-rich-text__editable.uagb-ifb-title a":{color:u}," .block-editor-rich-text__editable.uagb-ifb-title":{"font-size":ns(G,M),"font-family":O,"font-weight":L,"line-height":ns(j,H),"font-style":Nt,"text-decoration":Ht,"text-transform":Lt,"letter-spacing":ns(D,V),color:u,"margin-top":ns(ra,va),"margin-bottom":ns(ca,va),"margin-left":ns(ua,va),"margin-right":ns(sa,va)}," .uagb-ifb-desc.block-editor-block-list__layout p":{color:p,"line-height":ns(ee,Q),"text-decoration":Ft}," .uagb-ifb-desc.block-editor-block-list__layout":{"font-size":ns(W,q),"font-family":J,"font-weight":X,"font-style":It,"text-transform":jt,"letter-spacing":ns(Xa,tl),color:p,"margin-bottom":ns(Fa,Ya),"margin-top":ns(Ha,Ya),"margin-left":ns(za,Ya),"margin-right":ns(ja,Ya)}," .block-editor-rich-text__editable.uagb-ifb-desc":{"font-size":ns(W,q),"font-family":J,"font-weight":X,"line-height":ns(ee,Q),"font-style":It,"text-decoration":Ft,"text-transform":jt,"letter-spacing":ns(Xa,tl),color:p,"margin-bottom":ns(Fa,Ya),"margin-top":ns(Ha,Ya),"margin-left":ns(za,Ya),"margin-right":ns(ja,Ya)},".uagb-infobox__content-wrap .uagb-ifb-separator":{width:ns(Vl,ie),"border-top-width":ns(Fl,_e),"border-top-color":he,"border-top-style":ge}," .uagb-ifb-separator":{"margin-bottom":ns(wa,Ea),"margin-top":ns(Ca,Ea),"margin-left":ns(ka,Ea),"margin-right":ns(Sa,Ea)},".uagb-infobox__content-wrap .uagb-ifb-content svg":{"box-sizing":""+Ql},".uagb-infobox__content-wrap":li,".uagb-infobox__content-wrap:hover":{"border-color":Hl}};"Stacked"===al?(bi[" .uagb-iconbox-icon-wrap.uagb-infobox-shape-circle"]={"background-color":ll,"border-radius":"50%"},bi[" .uagb-iconbox-icon-wrap.uagb-infobox-shape-squre"]={"background-color":ll},bi[" .uagb-iconbox-icon-wrap:hover"]={"background-color":il+" !important"}):"Framed"===al&&(bi[" .uagb-iconbox-icon-wrap.uagb-infobox-shape-circle"]={border:`${ol}px solid ${ll}`,"border-radius":"50%"},bi[" .uagb-iconbox-icon-wrap.uagb-infobox-shape-squre"]={border:`${ol}px solid ${ll}`},bi[" .uagb-iconbox-icon-wrap:hover"]={border:`${ol}px solid ${il}`});const di={" .uagb-iconbox-icon-wrap":{"padding-top":ns(rt,ft),"padding-right":ns(st,ft),"padding-bottom":ns(ct,ft),"padding-left":ns(ut,ft),width:ns(Dl,re),height:ns(Dl,re),"line-height":ns(Dl,re)}," .block-editor-rich-text__editable.uagb-ifb-desc":{"margin-bottom":ns(Ia,Ja),"margin-top":ns(Da,Ja),"margin-left":ns(Va,Ja),"margin-right":ns(Na,Ja),"font-size":ns(Y,$),"line-height":ns(te,Q),"letter-spacing":ns(Qa,tl)}," .uagb-ifb-desc.block-editor-block-list__layout p":{"line-height":ns(te,Q)}," .uagb-ifb-desc.block-editor-block-list__layout":{"margin-bottom":ns(Ia,Ja),"margin-top":ns(Da,Ja),"margin-left":ns(Va,Ja),"margin-right":ns(Na,Ja),"font-size":ns(Y,$),"letter-spacing":ns(Qa,tl)}," .block-editor-rich-text__editable.uagb-ifb-title":{"margin-top":ns(pa,Ta),"margin-bottom":ns(da,Ta),"margin-left":ns(ga,Ta),"margin-right":ns(ba,Ta),"font-size":ns(U,B),"line-height":ns(F,H),"letter-spacing":ns(N,V)}," .block-editor-rich-text__editable.uagb-ifb-title-prefix":{"margin-bottom":ns(Xt,na),"margin-top":ns(Kt,na),"margin-left":ns(Qt,na),"margin-right":ns(Jt,na),"font-size":ns(f,y),"line-height":ns(S,T),"letter-spacing":ns(P,A)},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-image-content > img":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-content img":{"padding-top":ns(rt,ft),[ui]:ns(st,ft),"padding-bottom":ns(ct,ft),[pi]:ns(ut,ft)},".uagb-infobox__content-wrap .uagb-ifb-separator":{width:ns(Wl,ie)}," .uagb-ifb-separator":{"margin-bottom":ns(Aa,La),"margin-top":ns(Pa,La),"margin-left":ns(Ga,La),"margin-right":ns(xa,La)},".uagb-infobox__content-wrap  .uagb-ifb-content img":{"box-sizing":""+ti}," .uagb-ifb-content .uagb-ifb-icon-wrap svg":{"font-size":ns(Dl,re),"line-height":ns(Dl,re)}," .uagb-ifb-content .uagb-ifb-left-title-image svg":{"font-size":ns(Dl,re),width:ns(Dl,re),"line-height":ns(Dl,re)}," .uagb-ifb-content .uagb-ifb-right-title-image svg":{"font-size":ns(Dl,re),width:ns(Dl,re),"line-height":ns(Dl,re)},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg":{"font-size":ns(Dl,re),width:ns(Dl,re),height:ns(Dl,re),"line-height":ns(Dl,re)},".uagb-infobox__content-wrap":ii},gi={" .uagb-iconbox-icon-wrap":{"padding-top":ns(pt,yt),"padding-right":ns(bt,yt),"padding-bottom":ns(dt,yt),"padding-left":ns(gt,yt)}," .uagb-ifb-desc.block-editor-block-list__layout p":{"line-height":ns(le,Q)}," .block-editor-rich-text__editable.uagb-ifb-desc":{"font-size":ns(K,Z),"letter-spacing":ns(el,tl),"margin-bottom":ns(Za,Ka),"margin-top":ns(Wa,Ka),"margin-left":ns($a,Ka),"margin-right":ns(qa,Ka)}," .uagb-ifb-desc.block-editor-block-list__layout":{"font-size":ns(K,Z),"letter-spacing":ns(el,tl),"margin-bottom":ns(Za,Ka),"margin-top":ns(Wa,Ka),"margin-left":ns($a,Ka),"margin-right":ns(qa,Ka)}," .block-editor-rich-text__editable.uagb-ifb-title":{"font-size":ns(E,R),"line-height":ns(z,H),"letter-spacing":ns(I,V),"margin-top":ns(ma,_a),"margin-bottom":ns(fa,_a),"margin-left":ns(ha,_a),"margin-right":ns(ya,_a)}," .block-editor-rich-text__editable.uagb-ifb-title-prefix":{"font-size":ns(h,m),"line-height":ns(w,T),"letter-spacing":ns(x,A),"margin-bottom":ns(aa,oa),"margin-top":ns(ea,oa),"margin-left":ns(la,oa),"margin-right":ns(ta,oa)}," .uagb-ifb-separator":{"margin-bottom":ns(Ba,Oa),"margin-top":ns(Ma,Oa),"margin-left":ns(Ua,Oa),"margin-right":ns(Ra,Oa)},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt)},".uagb-infobox__content-wrap .uagb-ifb-image-content > img":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt)},".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt)},".uagb-infobox__content-wrap .uagb-ifb-content img":{"padding-top":ns(pt,yt),[ui]:ns(bt,yt),"padding-bottom":ns(dt,yt),[pi]:ns(gt,yt),"box-sizing":""+ai},".uagb-infobox__content-wrap .uagb-ifb-separator":{width:ns(ql,ie)}," .uagb-infobox-cta-link svg":{"font-size":ns(Pe,we),height:ns(Pe,we),"line-height":ns(Pe,we),width:ns(Pe,we)}," .uagb-ifb-content .uagb-ifb-icon-wrap svg":{"font-size":ns(Nl,re),"line-height":ns(Nl,re)}," .uagb-ifb-content .uagb-ifb-left-title-image svg":{"font-size":ns(Nl,re),width:ns(Nl,re),"line-height":ns(Nl,re)}," .uagb-ifb-content .uagb-ifb-right-title-image svg":{"font-size":ns(Nl,re),width:ns(Nl,re),"line-height":ns(Nl,re)},".uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg":{"font-size":ns(Nl,re),width:ns(Nl,re),height:ns(Nl,re),"line-height":ns(Nl,re)},".uagb-infobox__content-wrap":oi};"left"!==ue&&"right"!==ue||("none"===zt?(di[" .uagb-infobox-margin-wrapper"]={display:"flex"},gi[" .uagb-infobox-margin-wrapper"]={display:"flex"}):"mobile"===zt&&(di[" .uagb-infobox-margin-wrapper"]={display:"flex"},gi[" .uagb-infobox-margin-wrapper"]={display:"block"})),"above-title"===ue&&(bi[".uagb-infobox-icon-above-title"]={"text-align":ri},di[".uagb-infobox-icon-above-title"]={"text-align":si},gi[".uagb-infobox-icon-above-title"]={"text-align":ci}),"below-title"===ue&&(bi[".uagb-infobox-icon-below-title"]={"text-align":ri},di[".uagb-infobox-icon-below-title"]={"text-align":si},gi[".uagb-infobox-icon-below-title"]={"text-align":ci}),bi[".uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)"]={"padding-top":ns(Tl,Ul),"padding-right":ns(Cl,Ul),"padding-bottom":ns(wl,Ul),"padding-left":ns(Sl,Ul)},bi[".uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper"]={"padding-top":ns(Tl,Ul),"padding-right":ns(Cl,Ul),"padding-bottom":ns(wl,Ul),"padding-left":ns(Sl,Ul),"margin-top":ns(nl,hl),"margin-right":ns(rl,hl),"margin-bottom":ns(cl,hl),"margin-left":ns(sl,hl)},di[".uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)"]={"padding-top":ns(kl,El),"padding-right":ns(Pl,El),"padding-bottom":ns(Al,El),"padding-left":ns(xl,El)},di[".uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper"]={"padding-top":ns(kl,El),"padding-right":ns(Pl,El),"padding-bottom":ns(Al,El),"padding-left":ns(xl,El),"margin-top":ns(ul,vl),"margin-right":ns(pl,vl),"margin-bottom":ns(dl,vl),"margin-left":ns(bl,vl)},gi[".uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)"]={"padding-top":ns(Gl,Ol),"padding-right":ns(Ml,Ol),"padding-bottom":ns(Bl,Ol),"padding-left":ns(Rl,Ol)},gi[".uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper"]={"padding-top":ns(Gl,Ol),"padding-right":ns(Ml,Ol),"padding-bottom":ns(Bl,Ol),"padding-left":ns(Rl,Ol),"margin-top":ns(gl,_l),"margin-right":ns(ml,_l),"margin-bottom":ns(fl,_l),"margin-left":ns(yl,_l)},Tt&&(bi[".uagb-infobox__content-wrap img"]={width:ns(Kl,Ct)},bi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img"]={width:ns(Kl,Ct)},bi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img"]={width:ns(Kl,Ct)},bi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-image-content > img"]={width:ns(Kl,Ct)},di[".uagb-infobox__content-wrap img"]={width:ns(Jl,St)},di[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img"]={width:ns(Jl,St)},di[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img"]={width:ns(Jl,St)},di[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-image-content > img"]={width:ns(Jl,St)},gi[".uagb-infobox__content-wrap img"]={width:ns(Xl,wt)},gi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img"]={width:ns(Xl,wt)},gi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img"]={width:ns(Xl,wt)},gi[".uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-image-content > img"]={width:ns(Xl,wt)});const mi=ns(Zl,Rt),yi=ns($l,Rt),fi=ns(Yl,Rt);if("after"===Wt){const e="1"===uagb_blocks_info.is_rtl?"margin-right":"margin-left";bi[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:mi},di[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:yi},gi[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:fi}}else{const e="1"===uagb_blocks_info.is_rtl?"margin-left":"margin-right";bi[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:mi},di[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:yi},gi[".uagb-infobox__content-wrap .uagb-infobox-cta-link > svg"]={[e]:fi}}if(!Ll){const t=rs(e,"btn"),a=rs(e,"btn","tablet"),l=rs(e,"btn","mobile");bi[" div.uagb-ifb-cta a.uagb-infobox-cta-link"]={"font-size":ns(Ce,Se),"font-family":Le,"font-weight":He,"font-style":Vt,"text-decoration":Ut,"text-transform":Bt,"letter-spacing":ns(Ue,Be),"line-height":ns(Ge,Ae),color:Te},bi[" div.uagb-ifb-cta a.uagb-infobox-cta-link:hover"]={color:kt},bi[" .uagb-infobox-cta-link svg"]={"font-size":ns(Ce,Se),height:ns(Ce,Se),width:ns(Ce,Se),"line-height":ns(Ce,Se),fill:Te},bi[" .uagb-infobox-cta-link:hover svg"]={fill:kt},bi[" div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link"]={color:je,"background-color":"color"===Fe?De:"transparent","padding-top":ns(We,Ne),"padding-bottom":ns(qe,Ne),"padding-left":ns(Ze,Ne),"padding-right":ns($e,Ne)},bi[".uagb-infobox__content-wrap .uagb-ifb-cta .uagb-ifb-button-wrapper.wp-block-button a.uagb-infobox-cta-link.wp-block-button__link"]={color:je,"background-color":De,"padding-top":ns(We,Ne),"padding-bottom":ns(qe,Ne),"padding-left":ns(Ze,Ne),"padding-right":ns($e,Ne)},bi[".uagb-infobox__content-wrap .uagb-ifb-cta .uagb-ifb-button-wrapper.wp-block-button a.uagb-infobox-cta-link.wp-block-button__link:hover"]={color:kt,"background-color":"color"===ze?Pt:"transparent","border-color":xt},bi[" .uagb-ifb-button-wrapper .uagb-infobox-cta-link:hover"]={color:kt,"background-color":"color"===ze?Pt:"transparent","border-color":xt},bi[" .uagb-ifb-button-wrapper .uagb-infobox-cta-link svg"]={fill:je},bi[" .uagb-ifb-button-wrapper .uagb-infobox-cta-link:hover svg"]={fill:kt},di[".uagb-infobox__content-wrap .uagb-ifb-cta .uagb-ifb-button-wrapper.wp-block-button a.uagb-infobox-cta-link.wp-block-button__link"]={"padding-top":ns(Ye,Ve),"padding-bottom":ns(Je,Ve),"padding-left":ns(Xe,Ve),"padding-right":ns(Ke,Ve)},di[" .uagb-infobox-cta-link"]={"font-size":ns(xe,ke),"letter-spacing":ns(Ee,Be),"line-height":ns(Re,Ae)},gi[".uagb-infobox__content-wrap .uagb-ifb-cta .uagb-ifb-button-wrapper.wp-block-button a.uagb-infobox-cta-link.wp-block-button__link"]={"padding-top":ns(Qe,Ie),"padding-bottom":ns(tt,Ie),"padding-left":ns(at,Ie),"padding-right":ns(et,Ie)},gi[" .uagb-infobox-cta-link"]={"font-size":ns(Pe,we),"letter-spacing":ns(Oe,Be),"line-height":ns(Me,Ae)},bi[" .uagb-infobox-cta-link.wp-block-button__link"]=t,gi[" .uagb-infobox-cta-link.wp-block-button__link"]=l,di[" .uagb-infobox-cta-link.wp-block-button__link"]=a}const hi=".editor-styles-wrapper "+(i?i+" ":`#block-${t} .uagb-block-${n}`);let vi=ae(bi,hi);return("tablet"===o||"mobile"===o||i)&&(vi+=ae(di,""+hi,!0,"tablet"),("mobile"===o||i)&&(vi+=ae(gi,""+hi,!0,"mobile"))),vi},Zy=Object(B.memo)(e=>{let{attributes:t}=e;const{prefixLoadGoogleFonts:a,headLoadGoogleFonts:l,subHeadLoadGoogleFonts:i,ctaLoadGoogleFonts:o,prefixFontFamily:n,prefixFontWeight:r,headFontFamily:s,headFontWeight:c,subHeadFontFamily:u,subHeadFontWeight:p,ctaFontFamily:b,ctaFontWeight:d}=t;let g,m,y,f;if(!0===a){const e={google:{families:[n+(r?":"+r:"")]}};g=React.createElement(O,{config:e})}if(!0===l){const e={google:{families:[s+(c?":"+c:"")]}};f=React.createElement(O,{config:e})}if(!0===i){const e={google:{families:[u+(p?":"+p:"")]}};m=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[b+(d?":"+d:"")]}};y=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,g,m,y,f)});const $y=[{defaultAttributes:dt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"headingAlign",value:"center"},{label:"ctaType",value:"button"},{label:"showIcon",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 153C58 151.343 59.138 150 60.5418 150H266.259C267.663 150 268.801 151.343 268.801 153C268.801 154.657 267.663 156 266.259 156H60.5418C59.138 156 58 154.657 58 153Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M84.0166 172.009C84.0166 170.352 85.1483 169.009 86.5442 169.009H240.257C241.653 169.009 242.784 170.352 242.784 172.009C242.784 173.666 241.653 175.009 240.257 175.009H86.5442C85.1483 175.009 84.0166 173.666 84.0166 172.009Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86.0176 129.003C86.0176 126.792 87.6854 125 89.7428 125H237.057C239.115 125 240.783 126.792 240.783 129.003C240.783 131.213 239.115 133.005 237.057 133.005H89.7428C87.6854 133.005 86.0176 131.213 86.0176 129.003Z" fill="#B6B6B6"/> <path d="M127.377 193.749C127.377 192.231 128.588 191 130.083 191H196.717C198.211 191 199.423 192.231 199.423 193.749V210.932C199.423 212.45 198.211 213.681 196.717 213.681H130.083C128.588 213.681 127.377 212.45 127.377 210.932V193.749Z" fill="#B6B6B6"/> <path d="M187 83C187 96.8071 175.807 108 162 108C148.193 108 137 96.8071 137 83C137 69.1929 148.193 58 162 58C175.807 58 187 69.1929 187 83Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M173.753 72.1759C174.632 73.0646 174.625 74.4979 173.736 75.3773L156.326 92.6048L147.35 82.3526C146.526 81.412 146.621 79.9818 147.562 79.1582C148.503 78.3346 149.933 78.4295 150.756 79.3702L156.563 86.0015L170.552 72.1591C171.44 71.2797 172.874 71.2872 173.753 72.1759Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"headingAlign",value:"left"},{label:"ctaType",value:"button"},{label:"iconLeftMargin",value:0},{label:"iconRightMargin",value:0},{label:"showIcon",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 153C58 151.343 59.138 150 60.5418 150H266.259C267.663 150 268.801 151.343 268.801 153C268.801 154.657 267.663 156 266.259 156H60.5418C59.138 156 58 154.657 58 153Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 172.009C58 170.352 59.1317 169.009 60.5276 169.009H214.24C215.636 169.009 216.768 170.352 216.768 172.009C216.768 173.666 215.636 175.009 214.24 175.009H60.5276C59.1317 175.009 58 173.666 58 172.009Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 129.003C58 126.792 59.6678 125 61.7252 125H209.04C211.097 125 212.765 126.792 212.765 129.003C212.765 131.213 211.097 133.005 209.04 133.005H61.7252C59.6678 133.005 58 131.213 58 129.003Z" fill="#BFBFBF"/> <path d="M58 193.749C58 192.231 59.2115 191 60.7059 191H127.34C128.834 191 130.046 192.231 130.046 193.749V210.932C130.046 212.45 128.834 213.681 127.34 213.681H60.7059C59.2115 213.681 58 212.45 58 210.932V193.749Z" fill="#BFBFBF"/> <path d="M108 83C108 96.8071 96.8071 108 83 108C69.1929 108 58 96.8071 58 83C58 69.1929 69.1929 58 83 58C96.8071 58 108 69.1929 108 83Z" fill="#BFBFBF"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M94.7529 72.1759C95.6323 73.0646 95.6248 74.4979 94.7361 75.3773L77.3263 92.6048L68.35 82.3526C67.5265 81.412 67.6214 79.9818 68.562 79.1582C69.5027 78.3346 70.9329 78.4295 71.7565 79.3702L77.5625 86.0015L91.5515 72.1591C92.4402 71.2797 93.8735 71.2872 94.7529 72.1759Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"headingAlign",value:"left"},{label:"ctaType",value:"none"},{label:"showIcon",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 177.631C58 175.975 59.138 174.631 60.5418 174.631H266.259C267.663 174.631 268.801 175.975 268.801 177.631C268.801 179.288 267.663 180.631 266.259 180.631H60.5418C59.138 180.631 58 179.288 58 177.631Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 196.64C58 194.984 59.1317 193.64 60.5276 193.64H214.24C215.636 193.64 216.768 194.984 216.768 196.64C216.768 198.297 215.636 199.64 214.24 199.64H60.5276C59.1317 199.64 58 198.297 58 196.64Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 154.634C58 152.423 59.6678 150.631 61.7252 150.631H209.04C211.097 150.631 212.765 152.423 212.765 154.634C212.765 156.845 211.097 158.637 209.04 158.637H61.7252C59.6678 158.637 58 156.845 58 154.634Z" fill="#B6B6B6"/> <path d="M114 102C114 117.464 101.464 130 86 130C70.536 130 58 117.464 58 102C58 86.536 70.536 74 86 74C101.464 74 114 86.536 114 102Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M101.644 92.9563C102.629 93.9516 102.62 95.5569 101.625 96.5419L82.126 115.837L72.0726 104.354C71.1502 103.301 71.2565 101.699 72.31 100.776C73.3635 99.854 74.9654 99.9603 75.8878 101.014L82.3906 108.441L98.0582 92.9374C99.0536 91.9525 100.659 91.9609 101.644 92.9563Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"headingAlign",value:"center"},{label:"showIcon",value:!1},{label:"ctaType",value:"text"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 127C58 125.343 59.138 124 60.5418 124H266.259C267.663 124 268.801 125.343 268.801 127C268.801 128.657 267.663 130 266.259 130H60.5418C59.138 130 58 128.657 58 127Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M84 146.009C84 144.352 85.1317 143.009 86.5276 143.009H240.24C241.636 143.009 242.768 144.352 242.768 146.009C242.768 147.666 241.636 149.009 240.24 149.009H86.5276C85.1317 149.009 84 147.666 84 146.009Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86 104.003C86 101.792 87.6678 100 89.7252 100H237.04C239.097 100 240.765 101.792 240.765 104.003C240.765 106.213 239.097 108.005 237.04 108.005H89.7252C87.6678 108.005 86 106.213 86 104.003Z" fill="#B6B6B6"/> <rect x="125" y="164" width="77" height="10" rx="4" fill="#B6B6B6"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"headingAlign",value:"left"},{label:"showIcon",value:!1},{label:"ctaType",value:"text"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 127C58 125.343 59.138 124 60.5418 124H266.259C267.663 124 268.801 125.343 268.801 127C268.801 128.657 267.663 130 266.259 130H60.5418C59.138 130 58 128.657 58 127Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 146.009C58 144.352 59.1317 143.009 60.5276 143.009H214.24C215.636 143.009 216.768 144.352 216.768 146.009C216.768 147.666 215.636 149.009 214.24 149.009H60.5276C59.1317 149.009 58 147.666 58 146.009Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 104.003C58 101.792 59.6678 100 61.7252 100H209.04C211.097 100 212.765 101.792 212.765 104.003C212.765 106.213 211.097 108.005 209.04 108.005H61.7252C59.6678 108.005 58 106.213 58 104.003Z" fill="#B6B6B6"/> <rect x="58" y="164" width="77" height="10" rx="4" fill="#B6B6B6"/> </svg>'}];var Yy=Object(j.applyFilters)("uag_info_box_presets",$y);const Ky=[{defaultAttributes:dt},{defaultPresetAttributes:[{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidthDesktop"},{label:"btnBorderTopWidthDesktop"},{label:"btnBorderLeftWidthDesktop"},{label:"btnBorderRightWidthDesktop"},{label:"showCtaIcon"},{label:"ctaIconSpace"},{label:"ctaBgType"},{label:"ctaBgHoverColor"},{label:"ctaBtnLinkColor"},{label:"ctaLinkHoverColor"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"showCtaIcon",value:!0},{label:"ctaIconSpace",value:12},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M119.2 144H110.775V127.325H118.975C120.458 127.325 121.617 127.733 122.45 128.55C123.3 129.35 123.725 130.358 123.725 131.575C123.725 132.575 123.442 133.425 122.875 134.125C122.325 134.808 121.642 135.233 120.825 135.4C121.725 135.533 122.483 136 123.1 136.8C123.733 137.583 124.05 138.483 124.05 139.5C124.05 140.833 123.617 141.917 122.75 142.75C121.9 143.583 120.717 144 119.2 144ZM118.375 134.225C119.108 134.225 119.683 134.025 120.1 133.625C120.517 133.225 120.725 132.708 120.725 132.075C120.725 131.425 120.517 130.9 120.1 130.5C119.683 130.1 119.108 129.9 118.375 129.9H113.7V134.225H118.375ZM118.5 141.425C119.3 141.425 119.925 141.225 120.375 140.825C120.825 140.408 121.05 139.833 121.05 139.1C121.05 138.45 120.825 137.908 120.375 137.475C119.925 137.025 119.3 136.8 118.5 136.8H113.7V141.425H118.5ZM137.686 144H135.061V142.4C133.928 143.667 132.503 144.3 130.786 144.3C128.203 144.3 126.911 143.025 126.911 140.475V131.925H129.536V139.525C129.536 140.408 129.744 141.042 130.161 141.425C130.578 141.792 131.178 141.975 131.961 141.975C132.594 141.975 133.186 141.825 133.736 141.525C134.286 141.225 134.728 140.85 135.061 140.4V131.925H137.686V144ZM144.721 144.3C143.704 144.3 142.929 144.033 142.396 143.5C141.879 142.967 141.621 142.2 141.621 141.2V134.225H139.621V131.925H141.621V128.625H144.246V131.925H146.696V134.225H144.246V140.55C144.246 140.983 144.346 141.333 144.546 141.6C144.746 141.85 145.029 141.975 145.396 141.975C145.929 141.975 146.321 141.833 146.571 141.55L147.196 143.525C146.646 144.042 145.821 144.3 144.721 144.3ZM152.704 144.3C151.687 144.3 150.912 144.033 150.379 143.5C149.862 142.967 149.604 142.2 149.604 141.2V134.225H147.604V131.925H149.604V128.625H152.229V131.925H154.679V134.225H152.229V140.55C152.229 140.983 152.329 141.333 152.529 141.6C152.729 141.85 153.012 141.975 153.379 141.975C153.912 141.975 154.304 141.833 154.554 141.55L155.179 143.525C154.629 144.042 153.804 144.3 152.704 144.3ZM162.512 144.3C160.646 144.3 159.146 143.692 158.012 142.475C156.879 141.242 156.312 139.733 156.312 137.95C156.312 136.167 156.879 134.667 158.012 133.45C159.146 132.233 160.646 131.625 162.512 131.625C164.396 131.625 165.904 132.233 167.037 133.45C168.171 134.667 168.737 136.167 168.737 137.95C168.737 139.75 168.171 141.258 167.037 142.475C165.904 143.692 164.396 144.3 162.512 144.3ZM162.512 141.975C163.596 141.975 164.446 141.592 165.062 140.825C165.696 140.042 166.012 139.083 166.012 137.95C166.012 136.833 165.696 135.892 165.062 135.125C164.446 134.342 163.596 133.95 162.512 133.95C161.446 133.95 160.596 134.342 159.962 135.125C159.346 135.892 159.037 136.833 159.037 137.95C159.037 139.083 159.346 140.042 159.962 140.825C160.596 141.592 161.446 141.975 162.512 141.975ZM182.168 144H179.543V136.45C179.543 134.783 178.735 133.95 177.118 133.95C176.485 133.95 175.893 134.108 175.343 134.425C174.793 134.742 174.352 135.125 174.018 135.575V144H171.393V131.925H174.018V133.575C174.468 133.042 175.068 132.583 175.818 132.2C176.568 131.817 177.385 131.625 178.268 131.625C179.552 131.625 180.518 131.958 181.168 132.625C181.835 133.292 182.168 134.25 182.168 135.5V144Z" fill="white"/> <path d="M217 138L207 132.226V143.774L217 138ZM189 139H208V137H189V139Z" fill="white"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverType",value:"color"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverType",value:"color"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-7",label:Object(r.__)("Preset 7","ultimate-addons-for-gutenberg"),attributes:[{label:"showCtaIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverType",value:"color"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'},{value:"preset-8",label:Object(r.__)("Preset 8","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverType",value:"color"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"showCtaIcon",value:!0},{label:"ctaIconSpace",value:12},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="104" width="207.786" height="64" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M119.2 145H110.775V128.325H118.975C120.458 128.325 121.617 128.733 122.45 129.55C123.3 130.35 123.725 131.358 123.725 132.575C123.725 133.575 123.442 134.425 122.875 135.125C122.325 135.808 121.642 136.233 120.825 136.4C121.725 136.533 122.483 137 123.1 137.8C123.733 138.583 124.05 139.483 124.05 140.5C124.05 141.833 123.617 142.917 122.75 143.75C121.9 144.583 120.717 145 119.2 145ZM118.375 135.225C119.108 135.225 119.683 135.025 120.1 134.625C120.517 134.225 120.725 133.708 120.725 133.075C120.725 132.425 120.517 131.9 120.1 131.5C119.683 131.1 119.108 130.9 118.375 130.9H113.7V135.225H118.375ZM118.5 142.425C119.3 142.425 119.925 142.225 120.375 141.825C120.825 141.408 121.05 140.833 121.05 140.1C121.05 139.45 120.825 138.908 120.375 138.475C119.925 138.025 119.3 137.8 118.5 137.8H113.7V142.425H118.5ZM137.686 145H135.061V143.4C133.928 144.667 132.503 145.3 130.786 145.3C128.203 145.3 126.911 144.025 126.911 141.475V132.925H129.536V140.525C129.536 141.408 129.744 142.042 130.161 142.425C130.578 142.792 131.178 142.975 131.961 142.975C132.594 142.975 133.186 142.825 133.736 142.525C134.286 142.225 134.728 141.85 135.061 141.4V132.925H137.686V145ZM144.721 145.3C143.704 145.3 142.929 145.033 142.396 144.5C141.879 143.967 141.621 143.2 141.621 142.2V135.225H139.621V132.925H141.621V129.625H144.246V132.925H146.696V135.225H144.246V141.55C144.246 141.983 144.346 142.333 144.546 142.6C144.746 142.85 145.029 142.975 145.396 142.975C145.929 142.975 146.321 142.833 146.571 142.55L147.196 144.525C146.646 145.042 145.821 145.3 144.721 145.3ZM152.704 145.3C151.687 145.3 150.912 145.033 150.379 144.5C149.862 143.967 149.604 143.2 149.604 142.2V135.225H147.604V132.925H149.604V129.625H152.229V132.925H154.679V135.225H152.229V141.55C152.229 141.983 152.329 142.333 152.529 142.6C152.729 142.85 153.012 142.975 153.379 142.975C153.912 142.975 154.304 142.833 154.554 142.55L155.179 144.525C154.629 145.042 153.804 145.3 152.704 145.3ZM162.512 145.3C160.646 145.3 159.146 144.692 158.012 143.475C156.879 142.242 156.312 140.733 156.312 138.95C156.312 137.167 156.879 135.667 158.012 134.45C159.146 133.233 160.646 132.625 162.512 132.625C164.396 132.625 165.904 133.233 167.037 134.45C168.171 135.667 168.737 137.167 168.737 138.95C168.737 140.75 168.171 142.258 167.037 143.475C165.904 144.692 164.396 145.3 162.512 145.3ZM162.512 142.975C163.596 142.975 164.446 142.592 165.062 141.825C165.696 141.042 166.012 140.083 166.012 138.95C166.012 137.833 165.696 136.892 165.062 136.125C164.446 135.342 163.596 134.95 162.512 134.95C161.446 134.95 160.596 135.342 159.962 136.125C159.346 136.892 159.037 137.833 159.037 138.95C159.037 140.083 159.346 141.042 159.962 141.825C160.596 142.592 161.446 142.975 162.512 142.975ZM182.168 145H179.543V137.45C179.543 135.783 178.735 134.95 177.118 134.95C176.485 134.95 175.893 135.108 175.343 135.425C174.793 135.742 174.352 136.125 174.018 136.575V145H171.393V132.925H174.018V134.575C174.468 134.042 175.068 133.583 175.818 133.2C176.568 132.817 177.385 132.625 178.268 132.625C179.552 132.625 180.518 132.958 181.168 133.625C181.835 134.292 182.168 135.25 182.168 136.5V145Z" fill="#959595"/> <path d="M217 139L207 133.226V144.774L217 139ZM189 140H208V138H189V140Z" fill="#959595"/> </svg>'}];function Jy(){return(Jy=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}let Xy=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];var Qy=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l}=e,{headingAlign:i,headingAlignTablet:o,headingAlignMobile:n,headingColor:s,subHeadingColor:c,prefixColor:u,prefixFontSize:p,prefixFontSizeType:b,prefixFontSizeTypeMobile:d,prefixFontSizeTypeTablet:g,prefixFontSizeTablet:m,prefixFontSizeMobile:y,prefixFontFamily:f,prefixFontWeight:h,prefixFontStyle:v,prefixLineHeightType:_,prefixLineHeight:T,prefixLineHeightTablet:C,prefixLineHeightMobile:S,prefixTransform:w,prefixDecoration:k,prefixLoadGoogleFonts:P,prefixHeadingTag:x,headingTag:A,headFontSize:G,headFontSizeType:M,headFontSizeTypeMobile:R,headFontSizeTypeTablet:B,headFontSizeTablet:U,headFontSizeMobile:E,headFontFamily:O,headFontWeight:L,headFontStyle:H,headLineHeightType:j,headLineHeight:z,headLineHeightTablet:D,headLineHeightMobile:N,headLoadGoogleFonts:I,subHeadFontSize:V,subHeadFontSizeType:W,subHeadFontSizeTypeMobile:q,subHeadFontSizeTypeTablet:Z,subHeadFontSizeTablet:$,subHeadFontSizeMobile:Y,subHeadFontFamily:K,subHeadFontWeight:J,subHeadFontStyle:X,subHeadLineHeightType:Q,subHeadLineHeight:ee,subHeadLineHeightTablet:te,subHeadLineHeightMobile:ae,subHeadTransform:le,subHeadDecoration:ie,subHeadLoadGoogleFonts:oe,separatorWidthType:ne,icon:re,iconColor:se,iconSize:ce,iconSizeType:ue,iconSizeTablet:pe,iconSizeMobile:be,iconimgPosition:de,iconHover:me,iconimgBorderRadius:ye,iconimgBorderRadiusUnit:fe,source_type:he,sourceAlign:ve,seperatorPosition:_e,seperatorStyle:Te,seperatorWidth:Se,seperatorWidthTablet:we,seperatorWidthMobile:ke,seperatorColor:Pe,seperatorThickness:xe,thicknessUnit:Ae,ctaType:Ge,ctaButtonType:Me,ctaBgType:Re,ctaBgHoverType:Be,ctaLink:Ue,ctaTarget:Oe,showCtaIcon:He,ctaIcon:je,ctaIconPosition:ze,ctaIconSpace:De,ctaIconSpaceTablet:Ne,ctaIconSpaceMobile:Ie,ctaIconSpaceType:Ve,ctaLinkColor:We,ctaFontSize:qe,ctaFontSizeType:Ze,ctaFontSizeTypeMobile:$e,ctaFontSizeTypeTablet:Ye,ctaFontSizeMobile:Ke,ctaFontSizeTablet:Je,ctaTransform:Xe,ctaDecoration:Qe,ctaFontFamily:et,ctaFontWeight:tt,ctaFontStyle:at,ctaLineHeightType:lt,ctaLineHeight:it,ctaLineHeightMobile:ot,ctaLineHeightTablet:nt,ctaLetterSpacingType:rt,ctaLetterSpacing:st,ctaLetterSpacingTablet:ct,ctaLetterSpacingMobile:ut,ctaLoadGoogleFonts:pt,ctaBtnLinkColor:bt,ctaLinkHoverColor:dt,ctaBgHoverColor:gt,ctaBgColor:mt,paddingBtnUnit:yt,mobilePaddingBtnUnit:ft,tabletPaddingBtnUnit:ht,paddingBtnTop:vt,paddingBtnBottom:_t,paddingBtnLeft:Tt,paddingBtnRight:Ct,paddingBtnTopTablet:St,paddingBtnRightTablet:wt,paddingBtnBottomTablet:kt,paddingBtnLeftTablet:Pt,paddingBtnTopMobile:xt,paddingBtnRightMobile:At,paddingBtnBottomMobile:Gt,paddingBtnLeftMobile:Mt,iconLeftMargin:Rt,iconRightMargin:Bt,iconTopMargin:Ut,iconBottomMargin:Et,iconMarginTopTablet:Ot,iconMarginRightTablet:Lt,iconMarginBottomTablet:Ht,iconMarginLeftTablet:jt,iconMarginTopMobile:Ft,iconMarginRightMobile:zt,iconMarginBottomMobile:Dt,iconMarginLeftMobile:Nt,iconMarginUnit:It,iconMobileMarginUnit:Vt,iconTabletMarginUnit:Wt,iconImage:qt,imageSize:Zt,imageWidth:$t,imageWidthMobile:Yt,imageWidthTablet:Kt,imageWidthType:Jt,imageWidthUnit:Xt,imageWidthUnitTablet:Qt,imageWidthUnitMobile:ea,stack:ta,showIcon:aa,showPrefix:la,showTitle:ia,showDesc:oa,spacingLink:na,paddingspacingLink:ra,htmlTag:sa,headTransform:ca,headDecoration:ua,headLetterSpacing:pa,headLetterSpacingTablet:ba,headLetterSpacingMobile:da,headLetterSpacingType:ga,tempHeadingDesc:ma,prefixTopMargin:ya,prefixRightMargin:fa,prefixSpace:ha,prefixLeftMargin:va,prefixMarginTopTablet:_a,prefixMarginRightTablet:Ta,prefixTabletSpace:Ca,prefixMarginLeftTablet:Sa,prefixMarginTopMobile:wa,prefixMarginRightMobile:ka,prefixMobileSpace:Pa,prefixMarginLeftMobile:xa,prefixSpaceUnit:Aa,prefixMobileMarginUnit:Ga,prefixTabletMarginUnit:Ma,spacingPrefixLink:Ra,prefixLetterSpacing:Ba,prefixLetterSpacingTablet:Ua,prefixLetterSpacingMobile:Ea,prefixLetterSpacingType:Oa,headTopMargin:La,headRightMargin:Ha,headSpace:ja,headLeftMargin:Fa,headMarginTopTablet:za,headMarginRightTablet:Da,headTabletSpace:Ia,headMarginLeftTablet:Va,headMarginTopMobile:Wa,headMarginRightMobile:qa,headMobileSpace:Za,headMarginLeftMobile:$a,headSpaceUnit:Ya,headMobileMarginUnit:Ka,headTabletMarginUnit:Ja,spacingHeadLink:Xa,separatorTopMargin:el,separatorRightMargin:al,seperatorSpace:ll,separatorLeftMargin:sl,separatorMarginTopTablet:cl,separatorMarginRightTablet:ul,seperatorTabletSpace:pl,separatorMarginLeftTablet:bl,separatorMarginTopMobile:dl,separatorMarginRightMobile:gl,seperatorMobileSpace:ml,separatorMarginLeftMobile:yl,seperatorSpaceUnit:fl,separatorMobileMarginUnit:vl,separatorTabletMarginUnit:_l,spacingSeparatorLink:Tl,subHeadTopMargin:Cl,subHeadRightMargin:Sl,subHeadSpace:wl,subHeadLeftMargin:kl,subHeadMarginTopTablet:xl,subHeadMarginRightTablet:Al,subHeadTabletSpace:Gl,subHeadMarginLeftTablet:Ml,subHeadMarginTopMobile:Rl,subHeadMarginRightMobile:Bl,subHeadMobileSpace:Ul,subHeadMarginLeftMobile:El,subHeadSpaceUnit:Ol,subHeadMobileMarginUnit:Ll,subHeadTabletMarginUnit:Hl,spacingSubheadLink:jl,subHeadLetterSpacing:Fl,subHeadLetterSpacingTablet:zl,subHeadLetterSpacingMobile:Dl,subHeadLetterSpacingType:Nl,iconView:Il,iconShape:Vl,iconBackgroundColor:Wl,iconBackgroundHoverColor:ql,iconBorderWidth:Zl,blockTopMargin:$l,blockRightMargin:Kl,blockLeftMargin:Jl,blockBottomMargin:Xl,blockTopMarginTablet:Ql,blockRightMarginTablet:ei,blockLeftMarginTablet:ti,blockBottomMarginTablet:ai,blockTopMarginMobile:li,blockRightMarginMobile:ii,blockLeftMarginMobile:oi,blockBottomMarginMobile:ni,blockMarginUnit:ri,blockMarginUnitTablet:si,blockMarginUnitMobile:ci,blockMarginLink:ui,blockTopPadding:pi,blockRightPadding:bi,blockLeftPadding:di,blockBottomPadding:gi,blockTopPaddingTablet:mi,blockRightPaddingTablet:yi,blockLeftPaddingTablet:fi,blockBottomPaddingTablet:hi,blockTopPaddingMobile:vi,blockRightPaddingMobile:_i,blockLeftPaddingMobile:Ti,blockBottomPaddingMobile:Ci,blockPaddingUnit:Si,blockPaddingUnitTablet:wi,blockPaddingUnitMobile:ki,blockPaddingLink:xi,inheritFromTheme:Ai,enableMultilineParagraph:Gi,imageAlt:Mi}=a;qt&&qt.sizes&&(Xy=F(qt.sizes));const Ri=uagb_blocks_info.current_theme;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,Jy({},ol,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Image/Icon","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Le.ToggleControl,{checked:aa,onChange:()=>t({showIcon:!aa}),label:Object(r.__)("Enable Icon/Image","ultimate-addons-for-gutenberg")}),aa&&React.createElement(Pi,{label:Object(r.__)("Select Position","ultimate-addons-for-gutenberg"),data:{value:de,label:"iconimgPosition"},setAttributes:t,options:[{value:"above-title",label:Object(r.__)("Above Title","ultimate-addons-for-gutenberg")},{value:"below-title",label:Object(r.__)("Below Title","ultimate-addons-for-gutenberg")},{value:"left-title",label:Object(r.__)("Left of Title","ultimate-addons-for-gutenberg")},{value:"right-title",label:Object(r.__)("Right of Title","ultimate-addons-for-gutenberg")},{value:"left",label:Object(r.__)("Left of Text and Title","ultimate-addons-for-gutenberg")},{value:"right",label:Object(r.__)("Right of Text and Title","ultimate-addons-for-gutenberg")}]}),("left"===de||"right"===de)&&React.createElement(Pi,{label:Object(r.__)("Stack on","ultimate-addons-for-gutenberg"),data:{value:ta,label:"stack"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: Choose on what breakpoint the Info Box will stack.","ultimate-addons-for-gutenberg")}),de&&"above-title"!==de&&"below-title"!==de&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:ve,label:"sourceAlign"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"middle",label:Object(r.__)("Middle","ultimate-addons-for-gutenberg")}]}),aa&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Select Source","ultimate-addons-for-gutenberg"),data:{value:he,label:"source_type"},options:[{value:"icon",label:Object(r.__)("Icon","ultimate-addons-for-gutenberg")},{value:"image",label:Object(r.__)("Image","ultimate-addons-for-gutenberg")}]}),!1!==aa&&"icon"===he&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:re,onChange:e=>t({icon:e})})),!1!==aa&&"image"===he&&React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{if(e&&e.url)if(e.type&&"image"===e.type){if(e.sizes){const t=F(e.sizes);Xy=t}t({iconImage:e}),t({imageAlt:e.alt})}else t({iconImage:null});else t({iconImage:null})},backgroundImage:qt,onRemoveImage:()=>{t({iconImage:""})}}),React.createElement(Fs,{label:Object(r.__)("Alternate Text","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,dynamicContentType:"text",value:Mi,name:"imageAlt",setAttributes:t,data:{value:Mi,label:"imageAlt"}}),qt&&"null"!==qt.url&&""!==qt.url&&React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:Zt,label:"imageSize"},setAttributes:t,options:Xy}))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:sa,label:"htmlTag"},setAttributes:t,options:[{value:"div",label:Object(r.__)("div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("header","ultimate-addons-for-gutenberg")},{value:"footer",label:Object(r.__)("footer","ultimate-addons-for-gutenberg")},{value:"main",label:Object(r.__)("main","ultimate-addons-for-gutenberg")},{value:"article",label:Object(r.__)("article","ultimate-addons-for-gutenberg")},{value:"section",label:Object(r.__)("section","ultimate-addons-for-gutenberg")},{value:"aside",label:Object(r.__)("aside","ultimate-addons-for-gutenberg")},{value:"nav",label:Object(r.__)("nav","ultimate-addons-for-gutenberg")}]}),!1===aa&&"left-title"!==de&&"right-title"!==de&&"left"!==de&&"right"!==de||aa&&de&&("above-title"===de||"below-title"===de)?React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:i,label:"headingAlign"},tablet:{value:o,label:"headingAlignTablet"},mobile:{value:n,label:"headingAlignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}):null,React.createElement(Le.ToggleControl,{checked:la,onChange:()=>t({showPrefix:!la}),label:Object(r.__)("Enable Prefix","ultimate-addons-for-gutenberg")}),la&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Prefix Tag","ultimate-addons-for-gutenberg"),data:{value:x,label:"prefixHeadingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")}]})),React.createElement(Le.ToggleControl,{checked:ia,onChange:()=>t({showTitle:!ia}),label:Object(r.__)("Enable Title","ultimate-addons-for-gutenberg")}),ia&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Title Tag","ultimate-addons-for-gutenberg"),data:{value:A,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]})),React.createElement(Le.ToggleControl,{checked:oa,onChange:()=>t({showDesc:!oa}),label:Object(r.__)("Enable Description","ultimate-addons-for-gutenberg")}),oa&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Gi,onChange:()=>{t({enableMultilineParagraph:!Gi}),Gi&&t({headingDesc:ma})},label:Object(r.__)("Enable Semantic Markup","ultimate-addons-for-gutenberg"),help:Gi?"":Object(r.__)("Use Core/Paragraph: Improve accessibility and SEO with semantic HTML markup. Note: Existing Rich Text content will not be preserved.","ultimate-addons-for-gutenberg")}))),React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:Te,label:"seperatorStyle"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")}]}),"none"!==Te&&React.createElement(Pi,{label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:_e,label:"seperatorPosition"},setAttributes:t,options:[{value:"after_icon",label:Object(r.__)("After Icon/Image","ultimate-addons-for-gutenberg")},{value:"after_prefix",label:Object(r.__)("After Prefix","ultimate-addons-for-gutenberg")},{value:"after_title",label:Object(r.__)("After Title","ultimate-addons-for-gutenberg")},{value:"after_desc",label:Object(r.__)("After Description","ultimate-addons-for-gutenberg")}]})),React.createElement(Fe,{title:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:Ge,label:"ctaType"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"text",label:Object(r.__)("Text","ultimate-addons-for-gutenberg")},{value:"button",label:Object(r.__)("Button","ultimate-addons-for-gutenberg")},{value:"all",label:Object(r.__)("Complete Box","ultimate-addons-for-gutenberg")}]}),"button"===Ge&&React.createElement(React.Fragment,null,!Ai&&React.createElement(zr,{setAttributes:t,presets:Ky,presetInputType:"radioImage"})),"all"!==Ge&&"none"!==Ge&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Ai,onChange:()=>t({inheritFromTheme:!Ai}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ai&&"Astra"===Ri&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Me,label:"ctaButtonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Icon","ultimate-addons-for-gutenberg"),checked:He,onChange:()=>t({showCtaIcon:!He})}),He&&React.createElement(Ur,{label:Object(r.__)("Button Icon","ultimate-addons-for-gutenberg"),value:je,onChange:e=>t({ctaIcon:e})})),"none"!==Ge&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,name:"ctaLink",value:Ue,setAttributes:t,data:{value:Ue,label:"ctaLink"}}),React.createElement(Le.ToggleControl,{checked:Oe,onChange:()=>t({ctaTarget:!Oe}),label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg")})),aa&&"all"!==Ge&&"none"!==Ge&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:je,onChange:e=>t({ctaIcon:e})})),He&&""!==je&&"all"!==Ge&&"none"!==Ge&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:ze,label:"ctaIconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:Object(r.__)("Before Text","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After Text","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:De,label:"ctaIconSpace"},tablet:{value:Ne,label:"ctaIconSpaceTablet"},mobile:{value:Ie,label:"ctaIconSpaceMobile"}},min:-50,max:50,unit:{value:Ve,label:"ctaIconSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:t,presets:Yy,presetInputType:"radioImage"})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,Jy({},nl,{parentProps:e}),React.createElement(React.Fragment,null,(!1!==aa&&"icon"!==he&&qt&&"null"!==qt.url&&""!==qt.url||!1!==aa&&"icon"===he&&""!==re)&&React.createElement(Fe,{title:"Icon/Image",initialOpen:!0},React.createElement(React.Fragment,null,"icon"===he&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("View","ultimate-addons-for-gutenberg"),data:{value:Il,label:"iconView"},setAttributes:t,options:[{value:"none",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"Stacked",label:Object(r.__)("Stacked","ultimate-addons-for-gutenberg")},{value:"Framed",label:Object(r.__)("Framed","ultimate-addons-for-gutenberg")}]}),"none"!==Il&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Shape","ultimate-addons-for-gutenberg"),data:{value:Vl,label:"iconShape"},setAttributes:t,options:[{value:"Circle",label:Object(r.__)("Circle","ultimate-addons-for-gutenberg")},{value:"Square",label:Object(r.__)("Square","ultimate-addons-for-gutenberg")}]})),"Framed"===Il&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Set Border Width","ultimate-addons-for-gutenberg"),setAttributes:t,value:Zl,data:{value:Zl,label:"iconBorderWidth"},min:0,max:15,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]})),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:se||"",data:{value:se,label:"iconColor"},setAttributes:t}),"none"!==Il&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:Wl||"",data:{value:Wl,label:"iconBackgroundColor"},setAttributes:t}))),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:me||"",data:{value:me,label:"iconHover"},setAttributes:t}),"none"!==Il&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:ql||"",data:{value:ql,label:"iconBackgroundHoverColor"},setAttributes:t}))),disableBottomSeparator:!1}),React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:ce,label:"iconSize"},tablet:{value:pe,label:"iconSizeTablet"},mobile:{value:be,label:"iconSizeMobile"}},min:0,max:100,unit:{value:ue,label:"iconSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t})),"image"===he&&qt&&"null"!==qt.url&&""!==qt.url&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Jt,onChange:()=>t({imageWidthType:!Jt}),label:Object(r.__)("Custom Width","ultimate-addons-for-gutenberg"),help:Object(r.__)("Turn this off to inherit the natural width of Image.","ultimate-addons-for-gutenberg")}),Jt&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:$t,label:"imageWidth",unit:{value:Xt,label:"imageWidthUnit"}},tablet:{value:Kt,label:"imageWidthTablet",unit:{value:Qt,label:"imageWidthUnitTablet"}},mobile:{value:Yt,label:"imageWidthMobile",unit:{value:ea,label:"imageWidthUnitMobile"}}},min:0,limitMax:{px:500,"%":100,em:100},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:ye,data:{value:ye,label:"iconimgBorderRadius"},min:0,max:100,unit:{value:fe,label:"iconimgBorderRadiusUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}]})),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ut,label:"iconTopMargin"},valueRight:{value:Bt,label:"iconRightMargin"},valueBottom:{value:Et,label:"iconBottomMargin"},valueLeft:{value:Rt,label:"iconLeftMargin"},valueTopTablet:{value:Ot,label:"iconMarginTopTablet"},valueRightTablet:{value:Lt,label:"iconMarginRightTablet"},valueBottomTablet:{value:Ht,label:"iconMarginBottomTablet"},valueLeftTablet:{value:jt,label:"iconMarginLeftTablet"},valueTopMobile:{value:Ft,label:"iconMarginTopMobile"},valueRightMobile:{value:zt,label:"iconMarginRightMobile"},valueBottomMobile:{value:Dt,label:"iconMarginBottomMobile"},valueLeftMobile:{value:Nt,label:"iconMarginLeftMobile"},unit:{value:It,label:"iconMarginUnit"},mUnit:{value:Vt,label:"iconMobileMarginUnit"},tUnit:{value:Wt,label:"iconTabletMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:na,label:"spacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}]})))),la&&React.createElement(Fe,{title:"Prefix",initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"prefixColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:P,label:"prefixLoadGoogleFonts"},fontFamily:{value:f,label:"prefixFontFamily"},fontWeight:{value:h,label:"prefixFontWeight"},fontStyle:{value:v,label:"prefixFontStyle"},fontSizeType:{value:b,label:"prefixFontSizeType"},fontSizeTypeTablet:{value:g,label:"prefixFontSizeTypeTablet"},fontSizeTypeMobile:{value:d,label:"prefixFontSizeTypeMobile"},fontSize:{value:p,label:"prefixFontSize"},fontSizeMobile:{value:y,label:"prefixFontSizeMobile"},fontSizeTablet:{value:m,label:"prefixFontSizeTablet"},lineHeightType:{value:_,label:"prefixLineHeightType"},lineHeight:{value:T,label:"prefixLineHeight"},lineHeightMobile:{value:S,label:"prefixLineHeightMobile"},lineHeightTablet:{value:C,label:"prefixLineHeightTablet"},transform:{value:w,label:"prefixTransform"},decoration:{value:k,label:"prefixDecoration"},letterSpacing:{value:Ba,label:"prefixLetterSpacing"},letterSpacingTablet:{value:Ua,label:"prefixLetterSpacingTablet"},letterSpacingMobile:{value:Ea,label:"prefixLetterSpacingMobile"},letterSpacingType:{value:Oa,label:"prefixLetterSpacingType"}}),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:ya,label:"prefixTopMargin"},valueRight:{value:fa,label:"prefixRightMargin"},valueBottom:{value:ha,label:"prefixSpace"},valueLeft:{value:va,label:"prefixLeftMargin"},valueTopTablet:{value:_a,label:"prefixMarginTopTablet"},valueRightTablet:{value:Ta,label:"prefixMarginRightTablet"},valueBottomTablet:{value:Ca,label:"prefixTabletSpace"},valueLeftTablet:{value:Sa,label:"prefixMarginLeftTablet"},valueTopMobile:{value:wa,label:"prefixMarginTopMobile"},valueRightMobile:{value:ka,label:"prefixMarginRightMobile"},valueBottomMobile:{value:Pa,label:"prefixMobileSpace"},valueLeftMobile:{value:xa,label:"prefixMarginLeftMobile"},unit:{value:Aa,label:"prefixSpaceUnit"},mUnit:{value:Ga,label:"prefixMobileMarginUnit"},tUnit:{value:Ma,label:"prefixTabletMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Ra,label:"spacingPrefixLink"}})))),ia&&React.createElement(Fe,{title:"Title",initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"headingColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:I,label:"headLoadGoogleFonts"},fontFamily:{value:O,label:"headFontFamily"},fontWeight:{value:L,label:"headFontWeight"},fontStyle:{value:H,label:"headFontStyle"},fontSizeType:{value:M,label:"headFontSizeType"},fontSizeTypeTablet:{value:B,label:"headFontSizeTypeTablet"},fontSizeTypeMobile:{value:R,label:"headFontSizeTypeMobile"},fontSize:{value:G,label:"headFontSize"},fontSizeMobile:{value:E,label:"headFontSizeMobile"},fontSizeTablet:{value:U,label:"headFontSizeTablet"},lineHeightType:{value:j,label:"headLineHeightType"},lineHeight:{value:z,label:"headLineHeight"},lineHeightMobile:{value:N,label:"headLineHeightMobile"},lineHeightTablet:{value:D,label:"headLineHeightTablet"},transform:{value:ca,label:"headTransform"},decoration:{value:ua,label:"headDecoration"},letterSpacing:{value:pa,label:"headLetterSpacing"},letterSpacingTablet:{value:ba,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:da,label:"headLetterSpacingMobile"},letterSpacingType:{value:ga,label:"headLetterSpacingType"}}),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:La,label:"headTopMargin"},valueRight:{value:Ha,label:"headRightMargin"},valueBottom:{value:ja,label:"headSpace"},valueLeft:{value:Fa,label:"headLeftMargin"},valueTopTablet:{value:za,label:"headMarginTopTablet"},valueRightTablet:{value:Da,label:"headMarginRightTablet"},valueBottomTablet:{value:Ia,label:"headTabletSpace"},valueLeftTablet:{value:Va,label:"headMarginLeftTablet"},valueTopMobile:{value:Wa,label:"headMarginTopMobile"},valueRightMobile:{value:qa,label:"headMarginRightMobile"},valueBottomMobile:{value:Za,label:"headMobileSpace"},valueLeftMobile:{value:$a,label:"headMarginLeftMobile"},unit:{value:Ya,label:"headSpaceUnit"},mUnit:{value:Ka,label:"headMobileMarginUnit"},tUnit:{value:Ja,label:"headTabletMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Xa,label:"spacingHeadLink"}}))),"none"!==Te&&React.createElement(Fe,{title:"Separator",initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:Se,label:"seperatorWidth"},tablet:{value:we,label:"seperatorWidthTablet"},mobile:{value:ke,label:"seperatorWidthMobile"}},min:0,max:"%"===ne?100:500,unit:{value:ne,label:"separatorWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:t,value:xe,data:{value:xe,label:"seperatorThickness"},min:0,max:10,unit:{value:Ae,label:"thicknessUnit"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Pe||"",data:{value:Pe,label:"seperatorColor"},setAttributes:t}),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:el,label:"separatorTopMargin"},valueRight:{value:al,label:"separatorRightMargin"},valueBottom:{value:ll,label:"seperatorSpace"},valueLeft:{value:sl,label:"separatorLeftMargin"},valueTopTablet:{value:cl,label:"separatorMarginTopTablet"},valueRightTablet:{value:ul,label:"separatorMarginRightTablet"},valueBottomTablet:{value:pl,label:"seperatorTabletSpace"},valueLeftTablet:{value:bl,label:"separatorMarginLeftTablet"},valueTopMobile:{value:dl,label:"separatorMarginTopMobile"},valueRightMobile:{value:gl,label:"separatorMarginRightMobile"},valueBottomMobile:{value:ml,label:"seperatorMobileSpace"},valueLeftMobile:{value:yl,label:"separatorMarginLeftMobile"},unit:{value:fl,label:"seperatorSpaceUnit"},mUnit:{value:vl,label:"separatorMobileMarginUnit"},tUnit:{value:_l,label:"separatorTabletMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Tl,label:"spacingSeparatorLink"}}))),oa&&React.createElement(Fe,{title:"Description",initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"subHeadingColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:oe,label:"subHeadLoadGoogleFonts"},fontFamily:{value:K,label:"subHeadFontFamily"},fontWeight:{value:J,label:"subHeadFontWeight"},fontStyle:{value:X,label:"subHeadFontStyle"},fontSizeType:{value:W,label:"subHeadFontSizeType"},fontSizeTypeTablet:{value:Z,label:"subHeadFontSizeTypeTablet"},fontSizeTypeMobile:{value:q,label:"subHeadFontSizeTypeMobile"},fontSize:{value:V,label:"subHeadFontSize"},fontSizeMobile:{value:Y,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:$,label:"subHeadFontSizeTablet"},lineHeightType:{value:Q,label:"subHeadLineHeightType"},lineHeight:{value:ee,label:"subHeadLineHeight"},lineHeightMobile:{value:ae,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:te,label:"subHeadLineHeightTablet"},transform:{value:le,label:"subHeadTransform"},decoration:{value:ie,label:"subHeadDecoration"},letterSpacing:{value:Fl,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:zl,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:Dl,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:Nl,label:"subHeadLetterSpacingType"}}),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Cl,label:"subHeadTopMargin"},valueRight:{value:Sl,label:"subHeadRightMargin"},valueBottom:{value:wl,label:"subHeadSpace"},valueLeft:{value:kl,label:"subHeadLeftMargin"},valueTopTablet:{value:xl,label:"subHeadMarginTopTablet"},valueRightTablet:{value:Al,label:"subHeadMarginRightTablet"},valueBottomTablet:{value:Gl,label:"subHeadTabletSpace"},valueLeftTablet:{value:Ml,label:"subHeadMarginLeftTablet"},valueTopMobile:{value:Rl,label:"subHeadMarginTopMobile"},valueRightMobile:{value:Bl,label:"subHeadMarginRightMobile"},valueBottomMobile:{value:Ul,label:"subHeadMobileSpace"},valueLeftMobile:{value:El,label:"subHeadMarginLeftMobile"},unit:{value:Ol,label:"subHeadSpaceUnit"},mUnit:{value:Ll,label:"subHeadMobileMarginUnit"},tUnit:{value:Hl,label:"subHeadTabletMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:jl,label:"spacingSubheadLink"}})))),"none"!==Ge&&"all"!==Ge&&!Ai&&React.createElement(Fe,{title:"Call to Action",initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:pt,label:"ctaLoadGoogleFonts"},fontFamily:{value:et,label:"ctaFontFamily"},fontWeight:{value:tt,label:"ctaFontWeight"},fontStyle:{value:at,label:"ctaFontStyle"},fontSizeType:{value:Ze,label:"ctaFontSizeType"},fontSizeTypeTablet:{value:Ye,label:"ctaFontSizeTypeTablet"},fontSizeTypeMobile:{value:$e,label:"ctaFontSizeTypeMobile"},fontSize:{value:qe,label:"ctaFontSize"},fontSizeMobile:{value:Ke,label:"ctaFontSizeMobile"},fontSizeTablet:{value:Je,label:"ctaFontSizeTablet"},lineHeightType:{value:lt,label:"ctaLineHeightType"},lineHeight:{value:it,label:"ctaLineHeight"},lineHeightMobile:{value:ot,label:"ctaLineHeightMobile"},lineHeightTablet:{value:nt,label:"ctaLineHeightTablet"},transform:{value:Xe,label:"ctaTransform"},decoration:{value:Qe,label:"ctaDecoration"},letterSpacing:{value:st,label:"ctaLetterSpacing"},letterSpacingTablet:{value:ct,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:ut,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:rt,label:"ctaLetterSpacingType"}}),"text"===Ge&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:We||"",data:{value:We,label:"ctaLinkColor"},setAttributes:t}),hover:React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:dt||"",data:{value:dt,label:"ctaLinkHoverColor"},setAttributes:t}),disableBottomSeparator:!0}),"button"===Ge&&!Ai&&React.createElement(React.Fragment,null,React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Button Text Color","ultimate-addons-for-gutenberg"),colorValue:bt||"",data:{value:bt,label:"ctaBtnLinkColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Re,label:"ctaBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===Re&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:mt||"",data:{value:mt,label:"ctaBgColor"},setAttributes:t}))),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Button Text Color","ultimate-addons-for-gutenberg"),colorValue:dt||"",data:{value:dt,label:"ctaLinkHoverColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Be,label:"ctaBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===Be&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:gt||"",data:{value:gt,label:"ctaBgHoverColor"},setAttributes:t})))}),React.createElement(Pl,Jy({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:vt,label:"paddingBtnTop"},valueRight:{value:Ct,label:"paddingBtnRight"},valueBottom:{value:_t,label:"paddingBtnBottom"},valueLeft:{value:Tt,label:"paddingBtnLeft"},valueTopTablet:{value:St,label:"paddingBtnTopTablet"},valueRightTablet:{value:wt,label:"paddingBtnRightTablet"},valueBottomTablet:{value:kt,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:Pt,label:"paddingBtnLeftTablet"},valueTopMobile:{value:xt,label:"paddingBtnTopMobile"},valueRightMobile:{value:At,label:"paddingBtnRightMobile"},valueBottomMobile:{value:Gt,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:Mt,label:"paddingBtnLeftMobile"},unit:{value:yt,label:"paddingBtnUnit"},mUnit:{value:ft,label:"mobilePaddingBtnUnit"},tUnit:{value:ht,label:"tabletPaddingBtnUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:ra,label:"paddingspacingLink"}})),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:t,prefix:"btn",attributes:a,deviceType:l,disableBottomSeparator:!0}))))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:t,prefix:"infobox",attributes:a,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:pi,label:"blockTopPadding"},valueRight:{value:bi,label:"blockRightPadding"},valueBottom:{value:gi,label:"blockBottomPadding"},valueLeft:{value:di,label:"blockLeftPadding"},valueTopTablet:{value:mi,label:"blockTopPaddingTablet"},valueRightTablet:{value:yi,label:"blockRightPaddingTablet"},valueBottomTablet:{value:hi,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:fi,label:"blockLeftPaddingTablet"},valueTopMobile:{value:vi,label:"blockTopPaddingMobile"},valueRightMobile:{value:_i,label:"blockRightPaddingMobile"},valueBottomMobile:{value:Ci,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:Ti,label:"blockLeftPaddingMobile"},unit:{value:Si,label:"blockPaddingUnit"},mUnit:{value:ki,label:"blockPaddingUnitMobile"},tUnit:{value:wi,label:"blockPaddingUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:xi,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:$l,label:"blockTopMargin"},valueRight:{value:Kl,label:"blockRightMargin"},valueBottom:{value:Xl,label:"blockBottomMargin"},valueLeft:{value:Jl,label:"blockLeftMargin"},valueTopTablet:{value:Ql,label:"blockTopMarginTablet"},valueRightTablet:{value:ei,label:"blockRightMarginTablet"},valueBottomTablet:{value:ai,label:"blockBottomMarginTablet"},valueLeftTablet:{value:ti,label:"blockLeftMarginTablet"},valueTopMobile:{value:li,label:"blockTopMarginMobile"},valueRightMobile:{value:ii,label:"blockRightMarginMobile"},valueBottomMobile:{value:ni,label:"blockBottomMarginMobile"},valueLeftMobile:{value:oi,label:"blockLeftMarginMobile"},unit:{value:ri,label:"blockMarginUnit"},mUnit:{value:ci,label:"blockMarginUnitMobile"},tUnit:{value:si,label:"blockMarginUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:ui,label:"blockMarginLink"}}))),React.createElement(il,Jy({},rl,{parentProps:e}),lc(qy,t,a)))))}),ef=function(e){let t="";return t+=" ",t+="uagb-infobox-icon-"+e.iconimgPosition+" ","left"!==e.iconimgPosition&&"left-title"!==e.iconimgPosition||(t+="uagb-infobox-left "),"right"!==e.iconimgPosition&&"right-title"!==e.iconimgPosition||(t+="uagb-infobox-right "),"left"!==e.iconimgPosition&&"right"!==e.iconimgPosition||"none"===e.stack||(t+="uagb-infobox-stacked-"+e.stack+" ","right"===e.iconimgPosition&&(t+="uagb-infobox-reverse-order-"+e.stack+" ")),"above-title"===e.iconimgPosition&&"below-title"===e.iconimgPosition||(t+="uagb-infobox-image-valign-"+e.sourceAlign+" "),[t]},tf=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o,context:n,hasTitleDC:s}=e;let{infoBoxTitle:c}=t;if("not_set"===a)return React.createElement(ge.RichText.Content,{tagName:t.headingTag,value:c,className:"uagb-ifb-title"});let u=!1;if(s){const e=Object(j.applyFilters)("uag_render_text_loop_data",c,n);""!==e&&(u=["uagb/dynamic-content"],c=e)}return React.createElement(ge.RichText,{tagName:t.headingTag,placeholder:Object(r.__)("Write a Title","ultimate-addons-for-gutenberg"),value:c,className:"uagb-ifb-title",onChange:e=>a({infoBoxTitle:e}),multiline:!1,onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([]),allowedFormats:u})},af=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o,context:n,hasDescriptionDC:s}=e;let{headingDesc:c,enableMultilineParagraph:u}=t;const p={allowedBlocks:["core/paragraph"],template:[["core/paragraph",{content:c}]],templateLock:!1,renderAppender:!1},b=Object(ge.useInnerBlocksProps)({className:"uagb-ifb-desc"},p);if("not_set"===a&&!u)return React.createElement(ge.RichText.Content,{tagName:"p",value:c,className:"uagb-ifb-desc"});let d=!1;if(s){const e=Object(j.applyFilters)("uag_render_text_loop_data",c,n);""!==e&&(d=["uagb/dynamic-content"],c=e)}const g=React.createElement(React.Fragment,null,React.createElement(ge.RichText,{tagName:"p",value:c,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-ifb-desc",onChange:e=>a({headingDesc:e,tempHeadingDesc:e}),onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([]),allowedFormats:d}));return React.createElement(React.Fragment,null,u?React.createElement("div",b):g)},lf=e=>{var t,a,l,i,o,n;const{attributes:s,setAttributes:c="not_set"}=e,u=s.inheritFromTheme&&"secondary"===s.ctaButtonType,p=u?{borderWidth:"revert-layer"}:{},b="uagb-infobox-cta-link "+(u?"ast-outline-button":"wp-block-button__link"),d=u?"div":"a";let g="_self";const m="noopener noreferrer";s.ctaTarget&&(g="_blank");let y="";s.showCtaIcon&&""!==s.ctaIcon&&(y=Ce(s.ctaIcon,c));const f=React.createElement(React.Fragment,null,"before"===s.ctaIconPosition&&y,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:s.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{c({ctaText:e})},allowedFormats:[]}),"after"===s.ctaIconPosition&&y);if("not_set"!==c)return React.createElement("div",{className:"uagb-ifb-cta"},"text"===s.ctaType&&s.inheritFromTheme&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","uagb-ifb-button-type-text","wp-block-button")},React.createElement(d,{target:g,className:Be()(b),rel:m,style:p},f)),"text"===s.ctaType&&!s.inheritFromTheme&&React.createElement("a",{target:g,className:Be()("uagb-infobox-cta-link"),rel:m},f),"button"===s.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement(d,{className:b,target:g,rel:m,style:p},f)));const h=React.createElement(React.Fragment,null,"before"===s.ctaIconPosition&&y,React.createElement(ge.RichText.Content,{tagName:"span",value:s.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===s.ctaIconPosition&&y);return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","text"===s.ctaType&&s.inheritFromTheme?"uagb-ifb-button-type-text":"","wp-block-button")},"text"===s.ctaType&&s.inheritFromTheme&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",target:g,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(t=s.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?"return true;":"return false;",className:b,rel:m,style:p},h)),"text"===s.ctaType&&!s.inheritFromTheme&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",target:g,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(l=s.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable?"return true;":"return false;",className:"uagb-infobox-cta-link",rel:m},h)),"button"===s.ctaType&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",className:b,target:g,rel:m,style:p,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(o=s.dynamicContent)&&void 0!==o&&null!==(n=o.ctaLink)&&void 0!==n&&n.enable?"return true;":"return false;"},h))))};function of(){return React.createElement("div",{className:"uagb-ifb-separator"})}var nf,rf=e=>{const{attributes:t,setAttributes:a}=e,{iconView:l,iconShape:i}=t;return React.createElement(React.Fragment,null,t.showIcon&&React.createElement("div",{className:"uagb-ifb-icon-wrap"},"none"===l?React.createElement(React.Fragment,null,Ce(t.icon,a)):React.createElement(React.Fragment,null,React.createElement("div",{className:"none"===l?"uagb-iconbox-icon-wrap":"Circle"===i?"uagb-iconbox-icon-wrap uagb-infobox-shape-circle":"uagb-iconbox-icon-wrap uagb-infobox-shape-squre"},Ce(t.icon,a)))))},sf=e=>{const{attributes:t}=e;let a="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(a=t.iconImage.url);let l="";if(""!==a){const e=t.iconImage.sizes,i=t.imageSize,{imgTagWidth:o,imgTagHeight:n,imageWidth:r,imageWidthType:s}=t;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement(React.Fragment,null,t.showIcon&&React.createElement("div",{className:"uagb-ifb-image-content"},React.createElement("img",{src:l,alt:t.imageAlt,width:s?r:o,height:n,loading:"lazy",style:{display:l?void 0:"none"}})))}return null},cf=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o,context:n,hasPrefixTitleDC:s}=e;let{prefixTitle:c}=t;if("not_set"===a)return React.createElement(ge.RichText.Content,{tagName:t.prefixHeadingTag,value:c,className:"uagb-ifb-title-prefix"});let u=!1;if(s){const e=Object(j.applyFilters)("uag_render_text_loop_data",c,n);""!==e&&(u=["uagb/dynamic-content"],c=e)}return React.createElement(ge.RichText,{tagName:t.prefixHeadingTag,value:c,placeholder:Object(r.__)("Write a Prefix","ultimate-addons-for-gutenberg"),className:"uagb-ifb-title-prefix",multiline:!1,onChange:e=>{a({prefixTitle:e})},onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([]),allowedFormats:u})},uf=a(107),pf=0,bf={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},df={};df.locals=uf.a.locals||{},df.use=function(){return pf++||(nf=ke()(uf.a,bf)),df},df.unuse=function(){pf>0&&!--pf&&(nf(),nf=null)};var gf=df,mf=async function(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;const l=new Image;l.addEventListener("load",(function(){const e="height"===(null==a?void 0:a.type)?parseInt(a.value*(null==this?void 0:this.naturalWidth)/(null==this?void 0:this.naturalHeight)):null==this?void 0:this.naturalWidth,l="width"===(null==a?void 0:a.type)?parseInt(a.value*(null==this?void 0:this.naturalHeight)/(null==this?void 0:this.naturalWidth)):null==this?void 0:this.naturalHeight;t({imgTagHeight:isNaN(l)&&null!==a?null==a?void 0:a.value:l}),t({imgTagWidth:isNaN(e)&&null!==a?null==a?void 0:a.value:e})})),l.src=e},yf=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(gf.use(),()=>{gf.unuse()}),[]);const{attributes:t,setAttributes:a,deviceType:l}=e,{icon:i,iconimgPosition:o,source_type:n,seperatorPosition:r,seperatorStyle:s,ctaType:c,showPrefix:u,showTitle:p,showDesc:b,block_id:d,imageWidthType:g,imageWidth:m,blockBottomMargin:y,blockLeftMargin:f,blockRightMargin:h,blockTopMargin:v,blockBottomMarginTablet:_,blockLeftMarginTablet:T,blockRightMarginTablet:C,blockTopMarginTablet:S,blockBottomMarginMobile:w,blockLeftMarginMobile:k,blockRightMarginMobile:P,blockTopMarginMobile:x,htmlTag:A}=t;let G="";G="icon"===n&&""!==i?React.createElement(rf,{attributes:t,setAttributes:a}):React.createElement(sf,{attributes:t});const M=[y,f,h,v,_,T,C,S,w,k,P,x].some(e=>"number"==typeof e),R=A||"div";let U=G,E=r;const O=React.createElement(of,{attributes:t});let L=!0,H="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(H=t.iconImage.url);let j="";if(""!==H){const e=t.iconImage.sizes,a=t.imageSize;j=void 0!==e&&void 0!==e[a]?e[a].url:H}Object(B.useEffect)(()=>{g?mf(j,a,{type:"width",value:m}):mf(j,a)},[j,m,g]),"after_icon"!==E||"above-title"!==o&&"below-title"!==o||(L=!1,U=React.createElement(React.Fragment,null,G,"none"!==s&&O)),"after_icon"!==E||"left-title"!==o&&"right-title"!==o&&"left"!==o&&"right"!==o||(E="after_title"),"below-title"===o&&"after_title"===E&&(L=!1,U=React.createElement(React.Fragment,null,"none"!==s&&O,G));const F=React.createElement(React.Fragment,null,"none"!==s&&"after_title"===E&&L&&O,b&&React.createElement(af,e),"none"!==s&&"after_desc"===E&&O,"none"!==c&&React.createElement(lf,{attributes:t,setAttributes:a})),z=React.createElement("div",{className:"uagb-ifb-title-wrap"},u&&React.createElement(cf,e),"none"!==s&&"after_prefix"===E&&O,p&&React.createElement(tf,e)),D=React.createElement(React.Fragment,null,"left"===o&&U,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===o&&U,("above-title"===o||"below-title"===o)&&z,"below-title"===o&&U,("above-title"===o||"below-title"===o)&&F,"left-title"===o&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},U,z),F),"right-title"===o&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},z,U),F),("left"===o||"right"===o)&&React.createElement(React.Fragment,null,z,F)),"right"===o&&U),N=React.createElement(React.Fragment,null,"all"===c&&React.createElement("a",{className:"uagb-infobox-link-wrap uagb-infbox__link-to-all","aria-label":"Infobox Link",rel:"noopener noreferrer",href:"/"}),D);return React.createElement(R,{className:Z(["uagb-block-"+d,"uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-infobox__content-wrap","all"===c?" uagb-infobox_cta-type-all":"",...ef(t),M?"wp-block-uagb-info-box--has-margin":""])},M?React.createElement("div",{className:"uagb-infobox-margin-wrapper"},N):React.createElement(React.Fragment,null,N))}),ff=Object(L.compose)(vs,fe,(function(e){return t=>{var a,l;const{attributes:i,context:o}=t,n=null==i||null===(a=i.dynamicContent)||void 0===a||null===(l=a.bgImage)||void 0===l?void 0:l.enable,r=""!==i.headingDesc&&-1!==i.headingDesc.indexOf('<span data-spectra-dc-field="'),s=""!==i.prefixTitle&&-1!==i.prefixTitle.indexOf('<span data-spectra-dc-field="'),c=""!==i.infoBoxTitle&&-1!==i.infoBoxTitle.indexOf('<span data-spectra-dc-field="');if(t={...t,hasDynamicImg:n,hasDescriptionDC:r,hasPrefixTitleDC:s,hasTitleDC:c},!n)return React.createElement(e,t);const u=Object(j.applyFilters)("spectra_filter_dc_image",i,o);return t={...t,attributes:{...i,iconImage:{url:u.url}}},React.createElement(e,t)}}),Pc)(e=>{const{setAttributes:t,isSelected:a,attributes:l,attributes:{ctaBorderStyle:i,ctaBorderWidth:o,ctaBorderRadius:n,ctaBorderColor:r,ctaBorderhoverColor:s,ctaBgType:c,ctaBgHoverType:u,showCtaIcon:p,UAGHideDesktop:b,UAGHideTab:d,UAGHideMob:g,globalBlockStyleId:m},name:y,clientId:f,deviceType:h,context:v,hasDynamicImg:_,hasDescriptionDC:T,hasPrefixTitleDC:C,hasTitleDC:S}=e;Object(B.useEffect)(()=>{m||(void 0===c&&t({ctaBgType:"color"}),void 0===u&&t({ctaBgHoverType:"color"}),void 0===p&&t({showCtaIcon:!0}),(o||n||r||s||i)&&ue("btn",{label:"ctaBorderWidth",value:o},{label:"ctaBorderRadius",value:n},{label:"ctaBorderColor",value:r},{label:"ctaBorderhoverColor",value:s},{label:"ctaBorderStyle",value:i},t,l))},[]),Object(B.useEffect)(()=>{var e;!(_||T||C||S)||null!=l&&null!==(e=l.context)&&void 0!==e&&e.postId||t(e=>({...e,context:v}))},[_,T,C,S,null==v?void 0:v.postId]),Object(B.useEffect)(()=>{he(e)},[b,d,g,h]);const w=Object(B.useMemo)(()=>qy(l,f,y,h),[l,h]);return Object(B.useEffect)(()=>{Bs()},[h]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:w}),React.createElement(Zy,{attributes:l}),a&&React.createElement(Qy,e),React.createElement(yf,e))}),hf=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o,context:n,hasDescriptionDC:s}=e;let{headingDesc:c}=t;if("not_set"===a)return React.createElement(ge.RichText.Content,{tagName:"p",value:c,className:"uagb-ifb-desc"});let u=!1;if(s){const e=Object(j.applyFilters)("uag_render_text_loop_data",c,n);""!==e&&(u=["uagb/dynamic-content"],c=e)}return React.createElement(ge.RichText,{tagName:"p",value:c,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-ifb-desc",onChange:e=>a({headingDesc:e}),onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([]),allowedFormats:u})},vf=e=>{const{attributes:t}=e;return React.createElement("div",{className:"uagb-ifb-image-icon-content uagb-ifb-imgicon-wrap"},React.createElement("div",{className:"uagb-ifb-icon-wrap"},React.createElement("span",{className:"uagb-ifb-icon"},React.createElement("span",{className:t.icon}))))},_f=e=>{const{attributes:t}=e;return React.createElement("div",{className:"uagb-ifb-image-icon-content uagb-ifb-imgicon-wrap"},React.createElement("div",{className:"uagb-ifb-icon-wrap"},React.createElement("span",{className:"uagb-ifb-icon"},Wm(t.icon))))},Tf=function(e){let t="uagb-infobox-has-image";"icon"===e.source_type&&(t="uagb-infobox-has-icon");let a="";return a+="uagb-infobox ",a+=t+" ",a+="uagb-infobox-icon-"+e.iconimgPosition+" ","left"!==e.iconimgPosition&&"left-title"!==e.iconimgPosition||(a+="uagb-infobox-left "),"right"!==e.iconimgPosition&&"right-title"!==e.iconimgPosition||(a+="uagb-infobox-right "),"left"!==e.iconimgPosition&&"right"!==e.iconimgPosition||"none"===e.stack||(a+="uagb-infobox-stacked-"+e.stack+" ","right"===e.iconimgPosition&&(a+="uagb-infobox-reverse-order-"+e.stack+" ")),"above-title"===e.iconimgPosition&&"below-title"===e.iconimgPosition||(a+="uagb-infobox-image-valign-"+e.sourceAlign+" "),e.enableBorder&&(a+="uagb-infobox-enable-border "),a+="uagb-infobox-enable-border-radius ",[a]};function Cf(){return React.createElement("div",{className:"uagb-ifb-separator-parent"},React.createElement("div",{className:"uagb-ifb-separator"}))}var Sf=e=>{const{attributes:t}=e;let a="_self";const l="noopener noreferrer";t.ctaTarget&&(a="_blank");let i="";return""!==t.ctaIcon&&(i=React.createElement("span",{className:Be()(`uagb-ifb-${t.ctaType}-icon`,"uagb-ifb-align-icon-"+t.ctaIconPosition)},React.createElement("i",{className:t.ctaIcon}))),React.createElement("div",{className:"uagb-ifb-cta uagb-infobox-cta-link-style"},"text"===t.ctaType&&React.createElement("a",{href:t.ctaLink,target:a,className:"uagb-infobox-cta-link",rel:l},"before"===t.ctaIconPosition&&i,React.createElement("span",{className:"uagb-inline-editing"},t.ctaText),"after"===t.ctaIconPosition&&i),"button"===t.ctaType&&React.createElement("div",{className:"uagb-ifb-button-wrapper"},React.createElement("a",{href:t.ctaLink,className:"uagb-infobox-cta-link uagb-ifb-cta-button",target:a,rel:l},i,React.createElement("span",{className:"uagb-ifb-cta-content-wrapper"},React.createElement("span",{className:"uagb-inline-editing "},t.ctaText)))))},wf=e=>{const{attributes:t,setAttributes:a="not_set"}=e;let l="uagb-infobox-cta-link uagb-ifb-cta-button";t.inheritFromTheme&&(l="wp-block-button__link");let i="_self";const o="noopener noreferrer";t.ctaTarget&&(i="_blank");let n="";return""!==t.ctaIcon&&(n=React.createElement("span",{className:Be()(`uagb-ifb-${t.ctaType}-icon`,"uagb-ifb-align-icon-"+t.ctaIconPosition)},Wm(t.ctaIcon))),"not_set"!==a?React.createElement("div",{className:"uagb-ifb-cta uagb-infobox-cta-link-style"},"text"===t.ctaType&&React.createElement("a",{target:i,className:"uagb-infobox-cta-link",rel:o},"before"===t.ctaIconPosition&&n,React.createElement("span",{className:"uagb-inline-editing"},t.ctaText),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper",t.inheritFromTheme?"wp-block-button":null)},React.createElement("a",{className:l,target:i,rel:o},n,React.createElement("span",{className:"uagb-ifb-cta-content-wrapper"},React.createElement("span",{className:"uagb-inline-editing "},t.ctaText))))):React.createElement("div",{className:"uagb-ifb-cta uagb-infobox-cta-link-style"},"text"===t.ctaType&&React.createElement("a",{href:t.ctaLink,target:i,className:"uagb-infobox-cta-link",rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement("span",{className:"uagb-inline-editing"},t.ctaText),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper",t.inheritFromTheme?"wp-block-button":null)},React.createElement("a",{href:t.ctaLink,className:l,target:i,rel:o,alt:""},n,React.createElement("span",{className:"uagb-ifb-cta-content-wrapper"},React.createElement("span",{className:"uagb-inline-editing "},t.ctaText)))))},kf=e=>{const{attributes:t}=e;let a="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(a=t.iconImage.url);let l="";if(""!==a){const e=t.iconImage.sizes,i=t.imageSize;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement("div",{className:"uagb-ifb-image-icon-content uagb-ifb-imgicon-wrap"},React.createElement("div",{className:"uagb-ifb-image"},React.createElement("div",{className:"uagb-ifb-image-content"},React.createElement("img",{className:"",src:l,alt:t.iconImage.alt}))))}return null},Pf=e=>{const{attributes:t}=e;let a="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(a=t.iconImage.url);let l="";if(""!==a){const e=t.iconImage.sizes,i=t.imageSize;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement("div",{className:"uagb-ifb-image-icon-content uagb-ifb-imgicon-wrap"},React.createElement("div",{className:"uagb-ifb-image"},React.createElement("div",{className:"uagb-ifb-image-content"},React.createElement("img",{className:"uagb-ifb-img-src",src:l,alt:t.iconImage.alt}))))}return null},xf={inheritFromTheme:{type:"boolean",default:!0},prefixTitle:{source:"html",selector:"span.uagb-ifb-title-prefix",default:"Prefix"},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"Info Box"},headingDesc:{source:"html",selector:"p",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},headingAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-font"}},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},ctaIcon:{type:"string",default:""},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},ctaType:{type:"string",default:"none"},ctaText:{type:"html",default:"Read More"},ctaLink:{type:"string",default:"#"},ctaLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string"},ctaBorderStyle:{type:"string",default:"solid"},ctaBtnVertPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-vertical-padding"}},ctaBtnHrPadding:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},iconLeftMargin:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:"yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:""},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"number",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"number",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"number",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"number",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"number",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"number",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"number",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"number",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,UAGCopyPaste:{styleType:"icon-border-width"}},...ce("btn")},Af=e=>{const{attributes:t,setAttributes:a="not_set"}=e,l="uagb-infobox-cta-link wp-block-button__link";let i="_self";const o="noopener noreferrer";t.ctaTarget&&(i="_blank");let n="";return""!==t.ctaIcon&&(n=Ce(t.ctaIcon)),"not_set"!==a?React.createElement("div",{className:"uagb-ifb-cta"},"text"===t.ctaType&&React.createElement("a",{target:i,className:"uagb-infobox-cta-link",rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText,className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})}}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement("a",{className:l,target:i,rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText,className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})}}),"after"===t.ctaIconPosition&&n))):React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-button-wrapper wp-block-button"},"text"===t.ctaType&&React.createElement("a",{href:t.ctaLink,target:i,className:"uagb-infobox-cta-link",rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText,className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("a",{href:t.ctaLink,className:l,target:i,rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText,className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n)))},Gf=e=>{const{attributes:t,setAttributes:a="not_set"}=e,l="uagb-infobox-cta-link wp-block-button__link";let i="_self";const o="noopener noreferrer";t.ctaTarget&&(i="_blank");let n="";return t.showCtaIcon&&""!==t.ctaIcon&&(n=Ce(t.ctaIcon,a)),"not_set"!==a?React.createElement("div",{className:"uagb-ifb-cta"},"text"===t.ctaType&&React.createElement("a",{target:i,className:t.ctaLink?"uagb-infobox-cta-link":"uagb-infobox-cta-link uagb-disable-link",rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText.replace(/(<([^>]+)>)/gi,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})},allowedFormats:[]}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement("a",{className:t.ctaLink?l:l+"  uagb-disable-link",target:i,rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText.replace(/(<([^>]+)>)/gi,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})},allowedFormats:[]}),"after"===t.ctaIconPosition&&n))):React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-button-wrapper wp-block-button"},"text"===t.ctaType&&React.createElement("a",{href:t.ctaLink,target:i,className:t.ctaLink?"uagb-infobox-cta-link":"uagb-infobox-cta-link uagb-disable-link",rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText.replace(/(<([^>]+)>)/gi,""),className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("a",{href:t.ctaLink,className:t.ctaLink?l:l+"  uagb-disable-link",target:i,rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText.replace(/(<([^>]+)>)/gi,""),className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n)))},Mf=e=>{const{attributes:t,setAttributes:a="not_set"}=e,l="uagb-infobox-cta-link wp-block-button__link";let i="_self";const o="noopener noreferrer";t.ctaTarget&&(i="_blank");let n="";return t.showCtaIcon&&""!==t.ctaIcon&&(n=Ce(t.ctaIcon,a)),"not_set"!==a?React.createElement("div",{className:"uagb-ifb-cta"},"text"===t.ctaType&&React.createElement("a",{target:i,className:"uagb-infobox-cta-link",rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})},allowedFormats:[]}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement("a",{className:l,target:i,rel:o},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{a({ctaText:e})},allowedFormats:[]}),"after"===t.ctaIconPosition&&n))):React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-button-wrapper wp-block-button"},"text"===t.ctaType&&React.createElement("a",{href:t.ctaLink,target:i,onClick:""===t.ctaLink||"#"===t.ctaLink?"return false;":"return true;",className:"uagb-infobox-cta-link",rel:o,alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n),"button"===t.ctaType&&React.createElement("a",{href:t.ctaLink,className:l,target:i,rel:o,onClick:""===t.ctaLink||"#"===t.ctaLink?"return false;":"return true;",alt:""},"before"===t.ctaIconPosition&&n,React.createElement(ge.RichText.Content,{tagName:"span",value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===t.ctaIconPosition&&n)))},Rf=e=>{var t,a,l,i;const{attributes:o,setAttributes:n="not_set"}=e,s="uagb-infobox-cta-link wp-block-button__link";let c="_self";const u="noopener noreferrer";o.ctaTarget&&(c="_blank");let p="";return o.showCtaIcon&&""!==o.ctaIcon&&(p=Ce(o.ctaIcon,n)),"not_set"!==n?React.createElement("div",{className:"uagb-ifb-cta"},"text"===o.ctaType&&React.createElement("a",{target:c,className:"uagb-infobox-cta-link",rel:u},"before"===o.ctaIconPosition&&p,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:o.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{n({ctaText:e})},allowedFormats:[]}),"after"===o.ctaIconPosition&&p),"button"===o.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement("a",{className:s,target:c,rel:u},"before"===o.ctaIconPosition&&p,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:o.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{n({ctaText:e})},allowedFormats:[]}),"after"===o.ctaIconPosition&&p))):React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-button-wrapper wp-block-button"},"text"===o.ctaType&&React.createElement("a",{href:o.ctaLink||"#",target:c,onClick:""!==o.ctaLink&&"#"!==o.ctaLink||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?"return true;":"return false;",className:"uagb-infobox-cta-link",rel:u,alt:""},"before"===o.ctaIconPosition&&p,React.createElement(ge.RichText.Content,{tagName:"span",value:o.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===o.ctaIconPosition&&p),"button"===o.ctaType&&React.createElement("a",{href:o.ctaLink||"#",className:s,target:c,rel:u,onClick:""!==o.ctaLink&&"#"!==o.ctaLink||null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable?"return true;":"return false;",alt:""},"before"===o.ctaIconPosition&&p,React.createElement(ge.RichText.Content,{tagName:"span",value:o.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===o.ctaIconPosition&&p)))};const Bf="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",Uf=ce("btn");var Ef={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:"span.uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-font"}},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},ctaType:{type:"string",default:"none"},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string"},ctaBorderStyle:{type:"string",default:"solid"},ctaBtnVertPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-vertical-padding"}},ctaBtnHrPadding:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},iconLeftMargin:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:Bf},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...Uf};const Of="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",Lf=ce("btn");var Hf={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},ctaType:{type:"string",default:"none"},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBtnVertPadding:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},ctaBtnHrPadding:{type:"number",default:14,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:Of},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...Lf};const jf="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",Ff=ce("btn");var zf={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},ctaType:{type:"string",default:"none"},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBtnVertPadding:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},ctaBtnHrPadding:{type:"number",default:14,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:jf},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...Ff};const Df="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",Nf=ce("btn");var If={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},ctaType:{type:"string",default:"none"},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBtnVertPadding:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"}},ctaBtnHrPadding:{type:"number",default:14,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:Df},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...Nf};const Vf="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",Wf=ce("btn");var qf={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},htmlTag:{type:"string",default:"div"},ctaType:{type:"string",default:"none"},ctaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"cta-btn-type"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:Vf},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...Wf};const Zf="yes"===uagb_blocks_info.uagb_old_user_less_than_2?120:"",$f=ce("btn");var Yf={inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},prefixTitle:{source:"html",selector:".uagb-ifb-title-prefix",default:Object(r.__)("Prefix","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:".uagb-ifb-title",default:Object(r.__)("Info Box","ultimate-addons-for-gutenberg")},headingDesc:{source:"html",selector:".uagb-ifb-desc",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},tempHeadingDesc:{type:"string",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},enableMultilineParagraph:{type:"boolean",default:!1},headingAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},headingAlignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},headingAlignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},headingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},subHeadingColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},prefixColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-color"}},icon:{type:"string",default:"circle-check"},iconimgPosition:{type:"string",default:"above-title",UAGCopyPaste:{styleType:"icon-img-position"}},iconSize:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"String",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconBgHover:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size"}},prefixFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type"}},prefixFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-tablet"}},prefixFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-font-size-type-mobile"}},prefixFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},prefixFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},prefixFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-family"}},prefixFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-weight"}},prefixFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-font-style"}},prefixLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"prefix-line-height-type"}},prefixLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height"}},prefixLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},prefixTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-transform"}},prefixDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-decoration"}},prefixLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},prefixLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-load-google-font"}},prefixHeadingTag:{type:"string",default:"span"},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},headFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},headFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},headFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},headFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},headFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},headFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"}},headFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},headFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},headTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},headDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},headLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},headLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},headLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},headLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},subHeadTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},subHeadDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},headLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},headLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},headLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},headLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},subHeadFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},subHeadFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},subHeadFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},subHeadFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},subHeadFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},subHeadFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},subHeadFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},subHeadFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},subHeadFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},subHeadLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},subHeadLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},subHeadLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},subHeadLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},subHeadLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},subHeadLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},subHeadLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},subHeadLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},subHeadLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},subHeadSpace:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},seperatorSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin"}},iconimgBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-radius"}},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},showCtaIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},seperatorPosition:{type:"string",default:"after_title",UAGCopyPaste:{styleType:"seperator-position"}},seperatorStyle:{type:"string",default:"none",UAGCopyPaste:{styleType:"separator-style"}},seperatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"},default:"#333"},seperatorWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"},default:30},seperatorWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},seperatorWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},seperatorThickness:{type:"number",default:2,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-thickness"}},thicknessUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},htmlTag:{type:"string",default:"div"},ctaType:{type:"string",default:"none"},ctaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"cta-btn-type"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:""},ctaLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},ctaLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"cta-line-height-type"}},ctaLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height"}},ctaLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-tablet"}},ctaLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-line-height-mobile"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-load-google-font"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBorderColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-color"}},ctaBorderhoverColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-hover-color"}},ctaBorderStyle:{type:"string",default:"solid",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-style"}},ctaBorderWidth:{type:"number",default:1,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-width"}},ctaBorderRadius:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-btn-border-radius"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:Zf},imageWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},stack:{type:"string",default:"tablet"},showPrefix:{type:"boolean",default:!1},showTitle:{type:"boolean",default:!0},showIcon:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-tablet"}},iconMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-tablet"}},iconMarginBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-tablet"}},iconMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-tablet"}},iconMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin-mobile"}},iconMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin-mobile"}},iconMarginBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin-mobile"}},iconMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin-mobile"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-mobile"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit-tablet"}},spacingLink:{type:"boolean",default:!1},paddingspacingLink:{type:"boolean",default:!1},paddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobilePaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-mobile-unit"}},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-tablet-unit"}},paddingBtnTop:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-padding-tablet"}},paddingBtnTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},prefixTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin"},default:5},prefixRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin"}},prefixSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin"},default:10},prefixLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin"}},prefixMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-tablet"}},prefixMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-tablet"}},prefixTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-tablet"}},prefixMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-tablet"}},prefixMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-top-margin-mobile"}},prefixMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-right-margin-mobile"}},prefixMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-bottom-margin-mobile"}},prefixMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"prefix-left-margin-mobile"}},prefixSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-unit"}},prefixMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-mobile-unit"}},prefixTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"prefix-margin-tablet-unit"}},prefixLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},prefixLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},prefixLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},prefixLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},headTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin"}},headRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin"}},headLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin"}},headMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},headMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},headTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},headMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-margin-mobile"}},headMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},headMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},headMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},headMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},headSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit"},default:"px"},headMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"},default:"px"},headTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"},default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!0},separatorTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin"}},separatorRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin"}},separatorLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin"}},separatorMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-tablet"}},separatorMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-tablet"}},seperatorTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-tablet"}},separatorMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-tablet"}},separatorMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-margin-mobile"}},separatorMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-margin-mobile"}},seperatorMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-bottom-margin-mobile"}},separatorMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-left-margin-mobile"}},seperatorSpaceUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-margin-unit"}},separatorMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-mobile"},default:"px"},separatorTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"separator-margin-unit-tablet"},default:"px"},subHeadTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin"}},subHeadRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin"}},subHeadLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin"}},subHeadMarginTopTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},subHeadMarginRightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},subHeadTabletSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},subHeadMarginLeftTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},subHeadMarginTopMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},subHeadMarginRightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},subHeadMobileSpace:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},subHeadMarginLeftMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},subHeadSpaceUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit"},default:"px"},subHeadMobileMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"},default:"px"},subHeadTabletMarginUnit:{type:"string",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"},default:"px"},isPreview:{type:"boolean",default:!1},iconView:{type:"string",default:"none"},iconShape:{type:"string",default:"Circle"},iconBackgroundColor:{type:"string",default:"#6EC1E3",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-color"}},iconBackgroundHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bg-hover-color"}},iconBorderWidth:{type:"number",default:3,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-width"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},...$f},Kf=e=>{var t,a,l,i,o,n;const{attributes:s,setAttributes:c="not_set"}=e,u=s.inheritFromTheme&&"secondary"===s.ctaButtonType,p=u?{borderWidth:"revert-layer"}:{},b="uagb-infobox-cta-link "+(u?"ast-outline-button":"wp-block-button__link"),d=u?"div":"a";let g="_self";const m="noopener noreferrer";s.ctaTarget&&(g="_blank");let y="";s.showCtaIcon&&""!==s.ctaIcon&&(y=Ce(s.ctaIcon,c));const f=React.createElement(React.Fragment,null,"before"===s.ctaIconPosition&&y,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),value:s.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing",multiline:!1,onChange:e=>{c({ctaText:e})},allowedFormats:[]}),"after"===s.ctaIconPosition&&y);if("not_set"!==c)return React.createElement("div",{className:"uagb-ifb-cta"},"text"===s.ctaType&&s.inheritFromTheme&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","uagb-ifb-button-type-text","wp-block-button")},React.createElement(d,{target:g,className:Be()(b),rel:m,style:p},f)),"text"===s.ctaType&&!s.inheritFromTheme&&React.createElement("a",{target:g,className:Be()("uagb-infobox-cta-link"),rel:m},f),"button"===s.ctaType&&React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","wp-block-button")},React.createElement(d,{className:b,target:g,rel:m,style:p},f)));const h=React.createElement(React.Fragment,null,"before"===s.ctaIconPosition&&y,React.createElement(ge.RichText.Content,{tagName:"span",value:s.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-inline-editing"}),"after"===s.ctaIconPosition&&y);return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-ifb-button-wrapper","text"===s.ctaType&&s.inheritFromTheme?"uagb-ifb-button-type-text":"","wp-block-button")},"text"===s.ctaType&&s.inheritFromTheme&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",target:g,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(t=s.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?"return true;":"return false;",className:b,rel:m,style:p,alt:""},h)),"text"===s.ctaType&&!s.inheritFromTheme&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",target:g,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(l=s.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable?"return true;":"return false;",className:"uagb-infobox-cta-link",rel:m,alt:""},h)),"button"===s.ctaType&&React.createElement(React.Fragment,null,React.createElement("a",{href:s.ctaLink||"#",className:b,target:g,rel:m,style:p,onClick:""!==s.ctaLink&&"#"!==s.ctaLink||null!=s&&null!==(o=s.dynamicContent)&&void 0!==o&&null!==(n=o.ctaLink)&&void 0!==n&&n.enable?"return true;":"return false;",alt:""},h))))},Jf=e=>{const{attributes:t}=e;let a="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(a=t.iconImage.url);let l="";if(""!==a){const e=t.iconImage.sizes,i=t.imageSize,{imgTagWidth:o,imgTagHeight:n,imageWidth:r,imageWidthType:s}=t;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement(React.Fragment,null,t.showIcon&&React.createElement("div",{className:"uagb-ifb-image-content"},React.createElement("img",{src:l,alt:t.iconImage.alt,width:s?r:o,height:n,loading:"lazy"})))}return null},Xf=e=>{const{attributes:t}=e;let a="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(a=t.iconImage.url);let l="";if(""!==a){const e=t.iconImage.sizes,i=t.imageSize;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement(React.Fragment,null,t.showIcon&&React.createElement("div",{className:"uagb-ifb-image-content"},React.createElement("img",{src:l,alt:t.iconImage.alt})))}return null};const Qf={inheritFromTheme:{type:"boolean",default:!1},prefixTitle:{source:"html",selector:"span.uagb-ifb-title-prefix",default:"Prefix"},classMigrate:{type:"boolean",default:!1},infoBoxTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"Info Box"},headingDesc:{source:"html",selector:"p",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},headingAlign:{type:"string",default:"center"},headingColor:{type:"string"},subHeadingColor:{type:"string"},prefixColor:{type:"string"},icon:{type:"string",default:"fa fa-star"},iconimgPosition:{type:"string",default:"above-title"},iconSize:{type:"number",default:40},iconHover:{type:"string",default:""},iconSizeType:{type:"String",default:"px"},prefixFontSizeType:{type:"string",default:"px"},headFontSizeType:{type:"string",default:"px"},subHeadFontSizeType:{type:"string",default:"px"},ctaIconSpaceType:{type:"string",default:"px"},thicknessUnit:{type:"string",default:"px"},ctaFontSizeType:{type:"string",default:"px"},iconMarginUnit:{type:"string",default:"px"},iconMobilePaddingUnit:{type:"string",default:"px"},iconTabletPaddingUnit:{type:"string",default:"px"},paddingBtnUnit:{type:"string",default:"px"},mobilePaddingBtnUnit:{type:"string",default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px"},prefixSpaceUnit:{type:"string",default:"px"},headSpaceUnit:{type:"string",default:"px"},seperatorSpaceUnit:{type:"string",default:"px"},subHeadSpaceUnit:{type:"string",default:"px"},imageWidthUnit:{type:"string",default:"px"},iconimgBorderRadiusUnit:{type:"string",default:"px"},iconBgHover:{type:"string",default:""},iconColor:{type:"string",default:"#333"},prefixTag:{type:"string",default:"h3"},prefixFontSize:{type:"number"},prefixFontSizeType:{type:"string",default:"px"},prefixFontSizeTablet:{type:"number"},prefixFontSizeMobile:{type:"number"},prefixFontFamily:{type:"string",default:"Default"},prefixFontWeight:{type:"string"},prefixFontSubset:{type:"string"},prefixLineHeightType:{type:"string",default:"em"},prefixLineHeight:{type:"number"},prefixLineHeightTablet:{type:"number"},prefixLineHeightMobile:{type:"number"},prefixLoadGoogleFonts:{type:"boolean",default:!1},headingTag:{type:"string",default:"h3"},headFontSize:{type:"number"},headFontSizeType:{type:"string",default:"px"},headFontSizeTablet:{type:"number"},headFontSizeMobile:{type:"number"},headFontFamily:{type:"string",default:"Default"},headFontWeight:{type:"string"},headFontSubset:{type:"string"},headLineHeightType:{type:"string",default:"em"},headLineHeight:{type:"number"},headLineHeightTablet:{type:"number"},headLineHeightMobile:{type:"number"},headLoadGoogleFonts:{type:"boolean",default:!1},subHeadFontSize:{type:"number"},subHeadFontSizeType:{type:"string",default:"px"},subHeadFontSizeTablet:{type:"number"},subHeadFontSizeMobile:{type:"number"},subHeadFontFamily:{type:"string",default:"Default"},subHeadFontWeight:{type:"string"},subHeadFontSubset:{type:"string"},subHeadLineHeightType:{type:"string",default:"em"},subHeadLineHeight:{type:"number"},subHeadLineHeightTablet:{type:"number"},subHeadLineHeightMobile:{type:"number"},subHeadLoadGoogleFonts:{type:"boolean",default:!1},headSpace:{type:"number",default:10},subHeadSpace:{type:"number",default:10},seperatorSpace:{type:"number",default:10},iconimgBorderRadius:{type:"number",default:0},source_type:{type:"string",default:"icon"},block_id:{type:"string",default:"not_set"},sourceAlign:{type:"string",default:"top"},ctaTarget:{type:"boolean",default:!1},ctaIcon:{type:"string",default:""},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5},seperatorPosition:{type:"string",default:"after_title"},seperatorStyle:{type:"string",default:"solid"},seperatorColor:{type:"string",default:"#333"},seperatorWidth:{type:"number",default:30},separatorWidthType:{type:"string",default:"%"},seperatorThickness:{type:"number",default:2},ctaType:{type:"string",default:"none"},ctaText:{type:"html",default:"Read More"},ctaLink:{type:"string",default:"#"},ctaLinkColor:{type:"string",default:"#333"},ctaFontSize:{type:"number"},ctaFontSizeType:{type:"string",default:"px"},ctaFontSizeMobile:{type:"number"},ctaFontSizeTablet:{type:"number"},ctaFontFamily:{type:"string",default:"Default"},ctaFontWeight:{type:"string"},ctaFontSubset:{type:"string"},ctaLoadGoogleFonts:{type:"boolean",default:!1},ctaBtnLinkColor:{type:"string",default:"#333"},ctaLinkHoverColor:{type:"string",default:""},ctaBgColor:{type:"string",default:"transparent"},ctaBgHoverColor:{type:"string",default:"transparent"},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string",default:""},ctaBorderStyle:{type:"string",default:"solid"},ctaBtnVertPadding:{type:"number",default:10},ctaBtnHrPadding:{type:"number",default:14},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},prefixSpace:{type:"number",default:5},iconLeftMargin:{type:"number",default:10},iconRightMargin:{type:"number",default:10},iconTopMargin:{type:"number",default:5},iconBottomMargin:{type:"number",default:5},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail"},imageWidth:{type:"number",default:120},imageWidthType:{type:"boolean",default:!0},stack:{type:"string",default:"tablet"},showIcon:{type:"boolean",default:!0},showPrefix:{type:"boolean",default:!0},showTitle:{type:"boolean",default:!0},showDesc:{type:"boolean",default:!0},iconView:{type:"string",default:"none"},...ce("btn")};var eh=[{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,backgroundType:o,ctaType:n,ctaLink:r,ctaTarget:s,className:c}=e.attributes;let u="";u="icon"===l?React.createElement(vf,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});const p=React.createElement(React.Fragment,null,"none"!==i&&React.createElement(Cf,{attributes:e.attributes}),React.createElement("div",{className:"uagb-ifb-text-wrap"},React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),React.createElement(Sf,{attributes:e.attributes}))),b=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-title-wrap"},React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"}))),d=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-infobox__content-wrap",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&u,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&u,("above-title"==t||"below-title"==t)&&b,"below-title"==t&&u,("above-title"==t||"below-title"==t)&&p,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},u,b),p),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},b,u),p),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,b,p)),"right"==t&&u)));let g="";return s&&(g="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(c,"uagb-infobox__outer-wrap"),id:"uagb-infobox-"+a},"all"==n&&React.createElement(React.Fragment,null,React.createElement("a",{href:r,className:"uagb-infobox-link-wrap",target:g,rel:"noopener noreferrer"}," ",d)),"all"!==n&&d))}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,backgroundType:o,ctaType:n,ctaLink:r,ctaTarget:s,className:c,prefixTitle:u,infoBoxTitle:p,headingDesc:b,showPrefix:d,showTitle:g,showDesc:m,icon:y}=e.attributes;let f="";f="icon"===l&&""!==y?React.createElement(vf,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});const h=React.createElement(React.Fragment,null,"none"!==i&&React.createElement(Cf,{attributes:e.attributes}),React.createElement("div",{className:"uagb-ifb-text-wrap"},m&&""!==b&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==n&&React.createElement(Sf,{attributes:e.attributes}))),v=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-title-wrap"},d&&""!==u&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),g&&""!==p&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"}))),_=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-infobox__content-wrap",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&f,("above-title"==t||"below-title"==t)&&v,"below-title"==t&&f,("above-title"==t||"below-title"==t)&&h,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},f,v),h),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},v,f),h),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,v,h)),"right"==t&&f)));let T="";return s&&(T="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(c,"uagb-infobox__outer-wrap"),id:"uagb-infobox-"+a},"all"==n&&React.createElement(React.Fragment,null,React.createElement("a",{href:r,className:"uagb-infobox-link-wrap",target:T,rel:"noopener noreferrer"}," ",_)),"all"!==n&&_))}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,backgroundType:o,ctaType:n,ctaLink:r,ctaTarget:s,className:c,prefixTitle:u,infoBoxTitle:p,headingDesc:b,showPrefix:d,showTitle:g,showDesc:m,icon:y}=e.attributes;let f="";f="icon"===l&&""!==y?React.createElement(_f,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});const h=React.createElement(React.Fragment,null,"none"!==i&&React.createElement(Cf,{attributes:e.attributes}),React.createElement("div",{className:"uagb-ifb-text-wrap"},m&&""!==b&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==n&&React.createElement(wf,{attributes:e.attributes}))),v=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-title-wrap"},d&&""!==u&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),g&&""!==p&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"}))),_=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-infobox__content-wrap",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&f,("above-title"==t||"below-title"==t)&&v,"below-title"==t&&f,("above-title"==t||"below-title"==t)&&h,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},f,v),h),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},v,f),h),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,v,h)),"right"==t&&f)));let T="";return s&&(T="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(c,"uagb-infobox__outer-wrap"),id:"uagb-infobox-"+a},"all"==n&&React.createElement(React.Fragment,null,React.createElement("a",{href:r,className:"uagb-infobox-link-wrap",target:T,rel:"noopener noreferrer"}," ",_)),"all"!==n&&_))}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,backgroundType:o,ctaType:n,ctaLink:r,ctaTarget:s,className:c,prefixTitle:u,infoBoxTitle:p,headingDesc:b,showPrefix:d,showTitle:g,showDesc:m,icon:y,seperatorPosition:f}=e.attributes;let h="";h="icon"===l&&""!==y?React.createElement(_f,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});let v=h,_=f;const T=React.createElement(Cf,{attributes:e.attributes});let C=!0;"after_icon"!=f||"above-title"!=t&&"below-title"!=t||(C=!1,v=React.createElement(React.Fragment,null,h,"none"!==i&&T)),"after_icon"!=f||"above-title"===t&&"below-title"===t||(_="after_title"),"below-title"==t&&"after_title"==f&&(C=!1,v=React.createElement(React.Fragment,null,"none"!==i&&T,h));const S=React.createElement(React.Fragment,null,"none"!==i&&"after_title"==_&&C&&T,React.createElement("div",{className:"uagb-ifb-text-wrap"},m&&""!==b&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"==_&&T,"none"!==n&&React.createElement(wf,{attributes:e.attributes}))),w=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-title-wrap"},d&&""!==u&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"==_&&T,g&&""!==p&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"}))),k=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-infobox__content-wrap","all"==n?" uagb-infobox_cta-type-all":"",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&h,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&v,("above-title"==t||"below-title"==t)&&w,"below-title"==t&&v,("above-title"==t||"below-title"==t)&&S,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},v,w),S),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},w,v),S),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,w,S)),"right"==t&&v)));let P="";return s&&(P="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(c,"uagb-infobox__outer-wrap"),id:"uagb-infobox-"+a},"all"==n&&React.createElement(React.Fragment,null,React.createElement("a",{href:r,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:P,rel:"noopener noreferrer"}),k),"all"!==n&&k))}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,backgroundType:o,ctaType:n,ctaLink:r,ctaTarget:s,className:c,prefixTitle:u,infoBoxTitle:p,headingDesc:b,showPrefix:d,showTitle:g,showDesc:m,icon:y,seperatorPosition:f}=e.attributes;let h="";h="icon"===l&&""!==y?React.createElement(_f,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});let v=h,_=f;const T=React.createElement(Cf,{attributes:e.attributes});let C=!0;"after_icon"!=f||"above-title"!=t&&"below-title"!=t||(C=!1,v=React.createElement(React.Fragment,null,h,"none"!==i&&T)),"after_icon"!=f||"above-title"===t&&"below-title"===t||(_="after_title"),"below-title"==t&&"after_title"==f&&(C=!1,v=React.createElement(React.Fragment,null,"none"!==i&&T,h));const S=React.createElement(React.Fragment,null,"none"!==i&&"after_title"==_&&C&&T,React.createElement("div",{className:"uagb-ifb-text-wrap"},m&&""!==b&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"==_&&T,"none"!==n&&React.createElement(wf,{attributes:e.attributes}))),w=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-title-wrap"},d&&""!==u&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"==_&&T,g&&""!==p&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"}))),k=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-infobox__content-wrap","all"==n?" uagb-infobox_cta-type-all":"",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&h,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&v,("above-title"==t||"below-title"==t)&&w,"below-title"==t&&v,("above-title"==t||"below-title"==t)&&S,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},v,w),S),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},w,v),S),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,w,S)),"right"==t&&v)));let P="";return s&&(P="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(c,"uagb-infobox__outer-wrap","uagb-block-"+a)},"all"==n&&React.createElement(React.Fragment,null,React.createElement("a",{href:r,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:P,rel:"noopener noreferrer"}),k),"all"!==n&&k))}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,className:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=e.attributes;let f="";f="icon"===l&&""!==m?React.createElement(_f,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});let h=f,v=y;const _=React.createElement(Cf,{attributes:e.attributes});let T=!0;"after_icon"!=y||"above-title"!=t&&"below-title"!=t||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==i&&_)),"after_icon"!=y||"above-title"===t&&"below-title"===t||(v="after_title"),"below-title"==t&&"after_title"==y&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==i&&_,f));const C=React.createElement(React.Fragment,null,"none"!==i&&"after_title"==v&&T&&_,React.createElement("div",{className:"uagb-ifb-text-wrap"},g&&""!==p&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"==v&&_,"none"!==o&&React.createElement(wf,{attributes:e.attributes}))),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"==v&&_,d&&""!==u&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),w=React.createElement("div",{className:Be()("uagb-infobox__content-wrap","all"==o?" uagb-infobox_cta-type-all":"",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&h,("above-title"==t||"below-title"==t)&&S,"below-title"==t&&h,("above-title"==t||"below-title"==t)&&C,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,S,C)),"right"==t&&h));let k="";return r&&(k="_blank"),React.createElement("div",{className:Be()(s,"uagb-infobox__outer-wrap","uagb-block-"+a)},"all"==o&&React.createElement("a",{href:n,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),w)}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,className:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=e.attributes;let f="";f="icon"===l&&""!==m?React.createElement(_f,{attributes:e.attributes}):React.createElement(kf,{attributes:e.attributes});let h=f,v=y;const _=React.createElement(Cf,{attributes:e.attributes});let T=!0;"after_icon"!=y||"above-title"!=t&&"below-title"!=t||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==i&&_)),"after_icon"!=y||"above-title"===t&&"below-title"===t||(v="after_title"),"below-title"==t&&"after_title"==y&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==i&&_,f));const C=React.createElement(React.Fragment,null,"none"!==i&&"after_title"==v&&T&&_,React.createElement("div",{className:"uagb-ifb-text-wrap"},g&&""!==p&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"==v&&_,"none"!==o&&React.createElement(wf,{attributes:e.attributes}))),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"==v&&_,d&&""!==u&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),w=React.createElement("div",{className:Be()("uagb-infobox__content-wrap","all"==o?" uagb-infobox_cta-type-all":"",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"==t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"==t&&h,("above-title"==t||"below-title"==t)&&S,"below-title"==t&&h,("above-title"==t||"below-title"==t)&&C,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,S,C)),"right"==t&&h));let k="";return r&&(k="_blank"),React.createElement("div",{className:Be()(s,"uagb-infobox__outer-wrap","uagb-block-"+a)},"all"==o&&React.createElement("a",{href:n,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),w)}},{attributes:Qf,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,className:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=e.attributes;let f="";f="icon"===l&&""!==m?React.createElement(_f,{attributes:e.attributes}):React.createElement(Pf,{attributes:e.attributes});let h=f,v=y;const _=React.createElement(Cf,{attributes:e.attributes});let T=!0;"after_icon"!==v||"above-title"!==t&&"below-title"!==t||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==i&&_)),"after_icon"!==v||"above-title"===t&&"below-title"===t||(v="after_title"),"below-title"===t&&"after_title"===v&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==i&&_,f));const C=React.createElement(React.Fragment,null,"none"!==i&&"after_title"===v&&T&&_,React.createElement("div",{className:"uagb-ifb-text-wrap"},g&&""!==p&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"===v&&_,"none"!==o&&React.createElement(wf,{attributes:e.attributes}))),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"===v&&_,d&&""!==u&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),w=React.createElement("div",{className:Be()("uagb-infobox__content-wrap","all"===o?" uagb-infobox_cta-type-all":"",...Tf(e.attributes))},React.createElement("div",{className:"uagb-ifb-left-right-wrap"},"left"===t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===t&&h,("above-title"===t||"below-title"===t)&&S,"below-title"===t&&h,("above-title"===t||"below-title"===t)&&C,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"===t||"right"===t)&&React.createElement(React.Fragment,null,S,C)),"right"===t&&h));let k="_self";return r&&(k="_blank"),React.createElement("div",{className:Be()(s,"uagb-infobox__outer-wrap","uagb-block-"+a)},"all"===o&&React.createElement("a",{href:n,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),w)}},{attributes:dt,save(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,prefixTitle:s,infoBoxTitle:c,headingDesc:u,showPrefix:p,showTitle:b,showDesc:d,icon:g,seperatorPosition:m}=e.attributes;let y="";y="icon"===l&&""!==g?React.createElement(rf,{attributes:e.attributes}):React.createElement(Xf,{attributes:e.attributes});let f=y,h=m;const v=React.createElement(of,{attributes:e.attributes});let _=!0;"after_icon"!==h||"above-title"!==t&&"below-title"!==t||(_=!1,f=React.createElement(React.Fragment,null,y,"none"!==i&&v)),"after_icon"!==h||"left-title"!==t&&"right-title"!==t&&"left"!==t&&"right"!==t||(h="after_title"),"below-title"===t&&"after_title"===h&&(_=!1,f=React.createElement(React.Fragment,null,"none"!==i&&v,y));const T=React.createElement(React.Fragment,null,"none"!==i&&"after_title"===h&&_&&v,d&&""!==u&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"===h&&v,"none"!==o&&React.createElement(wf,{attributes:e.attributes})),C=React.createElement("div",{className:"uagb-ifb-title-wrap"},p&&""!==s&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"===h&&v,b&&""!==c&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),S=React.createElement(React.Fragment,null,"left"===t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===t&&f,("above-title"===t||"below-title"===t)&&C,"below-title"===t&&f,("above-title"===t||"below-title"===t)&&T,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},f,C),T),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},C,f),T),("left"===t||"right"===t)&&React.createElement(React.Fragment,null,C,T)),"right"===t&&f);let w="_self";return r&&(w="_blank"),React.createElement("div",{className:Be()("uagb-block-"+a,"uagb-infobox__content-wrap","all"===o?" uagb-infobox_cta-type-all":"",...ef(e.attributes))},"all"===o&&React.createElement("a",{href:n,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:w,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),S)}},{attributes:xf,save:function(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,prefixTitle:s,infoBoxTitle:c,headingDesc:u,showPrefix:p,showTitle:b,showDesc:d,icon:g,seperatorPosition:m}=e.attributes;let y="";y="icon"===l&&""!==g?React.createElement(rf,{attributes:e.attributes}):React.createElement(sf,{attributes:e.attributes});let f=y,h=m;const v=React.createElement(of,{attributes:e.attributes});let _=!0;"after_icon"!==h||"above-title"!==t&&"below-title"!==t||(_=!1,f=React.createElement(React.Fragment,null,y,"none"!==i&&v)),"after_icon"!==h||"left-title"!==t&&"right-title"!==t&&"left"!==t&&"right"!==t||(h="after_title"),"below-title"===t&&"after_title"===h&&(_=!1,f=React.createElement(React.Fragment,null,"none"!==i&&v,y));const T=React.createElement(React.Fragment,null,"none"!==i&&"after_title"===h&&_&&v,d&&""!==u&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"===h&&v,"none"!==o&&React.createElement(Af,{attributes:e.attributes})),C=React.createElement("div",{className:"uagb-ifb-title-wrap"},p&&""!==s&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"===h&&v,b&&""!==c&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),S=React.createElement(React.Fragment,null,"left"===t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===t&&f,("above-title"===t||"below-title"===t)&&C,"below-title"===t&&f,("above-title"===t||"below-title"===t)&&T,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},f,C),T),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},C,f),T),("left"===t||"right"===t)&&React.createElement(React.Fragment,null,C,T)),"right"===t&&f);let w="_self";return r&&(w="_blank"),React.createElement("div",{className:Be()("uagb-block-"+a,"uagb-infobox__content-wrap","all"===o?" uagb-infobox_cta-type-all":"",...ef(e.attributes))},"all"===o&&React.createElement("a",{href:n,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:w,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),S)}},{attributes:dt,save:function(e){const{iconimgPosition:t,block_id:a,source_type:l,seperatorStyle:i,ctaType:o,ctaLink:n,ctaTarget:r,prefixTitle:s,infoBoxTitle:c,headingDesc:u,showPrefix:p,showTitle:b,showDesc:d,icon:g,seperatorPosition:m}=e.attributes;let y="";y="icon"===l&&""!==g?React.createElement(rf,{attributes:e.attributes}):React.createElement(sf,{attributes:e.attributes});let f=y,h=m;const v=React.createElement(of,{attributes:e.attributes});let _=!0;"after_icon"!==h||"above-title"!==t&&"below-title"!==t||(_=!1,f=React.createElement(React.Fragment,null,y,"none"!==i&&v)),"after_icon"!==h||"left-title"!==t&&"right-title"!==t&&"left"!==t&&"right"!==t||(h="after_title"),"below-title"===t&&"after_title"===h&&(_=!1,f=React.createElement(React.Fragment,null,"none"!==i&&v,y));const T=React.createElement(React.Fragment,null,"none"!==i&&"after_title"===h&&_&&v,d&&""!==u&&React.createElement(hf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_desc"===h&&v,"none"!==o&&React.createElement(Gf,{attributes:e.attributes})),C=React.createElement("div",{className:"uagb-ifb-title-wrap"},p&&""!==s&&React.createElement(cf,{attributes:e.attributes,setAttributes:"not_set"}),"none"!==i&&"after_prefix"===h&&v,b&&""!==c&&React.createElement(tf,{attributes:e.attributes,setAttributes:"not_set"})),S=React.createElement(React.Fragment,null,"left"===t&&f,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===t&&f,("above-title"===t||"below-title"===t)&&C,"below-title"===t&&f,("above-title"===t||"below-title"===t)&&T,"left-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},f,C),T),"right-title"===t&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},C,f),T),("left"===t||"right"===t)&&React.createElement(React.Fragment,null,C,T)),"right"===t&&f);let w="_self";return r&&(w="_blank"),React.createElement("div",{className:Be()("uagb-block-"+a,"uagb-infobox__content-wrap","all"===o?" uagb-infobox_cta-type-all":"",...ef(e.attributes))},"all"===o&&React.createElement("a",{href:n,className:n?"uagb-infobox-link-wrap uagb-infbox__link-to-all":"uagb-infobox-link-wrap uagb-infbox__link-to-all uagb-disable-link",target:w,"aria-label":"Infobox Link",rel:"noopener noreferrer"}),S)}},{attributes:dt,save:function(e){const{attributes:t}=e,{iconimgPosition:a,block_id:l,source_type:i,seperatorStyle:o,ctaType:n,ctaLink:r,ctaTarget:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=t;let f="";f="icon"===i&&""!==m?React.createElement(rf,{attributes:t}):React.createElement(sf,{attributes:t});let h=f,v=y;const _=React.createElement(of,{attributes:t});let T=!0;"after_icon"!==v||"above-title"!==a&&"below-title"!==a||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==o&&_)),"after_icon"!==v||"left-title"!==a&&"right-title"!==a&&"left"!==a&&"right"!==a||(v="after_title"),"below-title"===a&&"after_title"===v&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==o&&_,f));const C=React.createElement(React.Fragment,null,"none"!==o&&"after_title"===v&&T&&_,g&&""!==p&&React.createElement(ge.RichText.Content,{tagName:"p",value:t.headingDesc,className:"uagb-ifb-desc"}),"none"!==o&&"after_desc"===v&&_,"none"!==n&&React.createElement(Mf,{attributes:t})),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(ge.RichText.Content,{tagName:"span",value:t.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==o&&"after_prefix"===v&&_,d&&""!==u&&React.createElement(ge.RichText.Content,{tagName:t.headingTag,value:t.infoBoxTitle,className:"uagb-ifb-title"})),w=React.createElement(React.Fragment,null,"left"===a&&h,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===a&&h,("above-title"===a||"below-title"===a)&&S,"below-title"===a&&h,("above-title"===a||"below-title"===a)&&C,"left-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"===a||"right"===a)&&React.createElement(React.Fragment,null,S,C)),"right"===a&&h);let k="_self";return s&&(k="_blank"),React.createElement("div",{className:Be()("uagb-block-"+l,"uagb-infobox__content-wrap","all"===n?" uagb-infobox_cta-type-all":"",...ef(t))},"all"===n&&React.createElement("a",{href:r,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:""===r||"#"===r?"return false;":"return true;"}),w)}},{attributes:Ef,save:function(e){const{attributes:t}=e,{iconimgPosition:a,block_id:l,source_type:i,seperatorStyle:o,ctaType:n,ctaLink:r,ctaTarget:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=t;let f="";f="icon"===i&&""!==m?React.createElement(rf,{attributes:t}):React.createElement(sf,{attributes:t});let h=f,v=y;const _=React.createElement(of,{attributes:t});let T=!0;"after_icon"!==v||"above-title"!==a&&"below-title"!==a||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==o&&_)),"after_icon"!==v||"left-title"!==a&&"right-title"!==a&&"left"!==a&&"right"!==a||(v="after_title"),"below-title"===a&&"after_title"===v&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==o&&_,f));const C=React.createElement(React.Fragment,null,"none"!==o&&"after_title"===v&&T&&_,g&&""!==p&&React.createElement(ge.RichText.Content,{tagName:"p",value:t.headingDesc,className:"uagb-ifb-desc"}),"none"!==o&&"after_desc"===v&&_,"none"!==n&&React.createElement(Rf,{attributes:t})),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(ge.RichText.Content,{tagName:"span",value:t.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==o&&"after_prefix"===v&&_,d&&""!==u&&React.createElement(ge.RichText.Content,{tagName:t.headingTag,value:t.infoBoxTitle,className:"uagb-ifb-title"})),w=React.createElement(React.Fragment,null,"left"===a&&h,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===a&&h,("above-title"===a||"below-title"===a)&&S,"below-title"===a&&h,("above-title"===a||"below-title"===a)&&C,"left-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"===a||"right"===a)&&React.createElement(React.Fragment,null,S,C)),"right"===a&&h);let k="_self";return s&&(k="_blank"),React.createElement("div",{className:Be()("uagb-block-"+l,"uagb-infobox__content-wrap","all"===n?" uagb-infobox_cta-type-all":"",...ef(t))},"all"===n&&React.createElement("a",{href:r,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:""===r||"#"===r?"return false;":"return true;"}),w)}},{attributes:Hf,save:function(e){const{attributes:t}=e,{iconimgPosition:a,block_id:l,source_type:i,seperatorStyle:o,ctaType:n,ctaLink:r,ctaTarget:s,prefixTitle:c,infoBoxTitle:u,headingDesc:p,showPrefix:b,showTitle:d,showDesc:g,icon:m,seperatorPosition:y}=t;let f="";f="icon"===i&&""!==m?React.createElement(rf,{attributes:t}):React.createElement(sf,{attributes:t});let h=f,v=y;const _=React.createElement(of,{attributes:t});let T=!0;"after_icon"!==v||"above-title"!==a&&"below-title"!==a||(T=!1,h=React.createElement(React.Fragment,null,f,"none"!==o&&_)),"after_icon"!==v||"left-title"!==a&&"right-title"!==a&&"left"!==a&&"right"!==a||(v="after_title"),"below-title"===a&&"after_title"===v&&(T=!1,h=React.createElement(React.Fragment,null,"none"!==o&&_,f));const C=React.createElement(React.Fragment,null,"none"!==o&&"after_title"===v&&T&&_,g&&""!==p&&React.createElement(ge.RichText.Content,{tagName:"p",value:t.headingDesc,className:"uagb-ifb-desc"}),"none"!==o&&"after_desc"===v&&_,"none"!==n&&React.createElement(lf,{attributes:t})),S=React.createElement("div",{className:"uagb-ifb-title-wrap"},b&&""!==c&&React.createElement(ge.RichText.Content,{tagName:t.prefixHeadingTag,value:t.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==o&&"after_prefix"===v&&_,d&&""!==u&&React.createElement(ge.RichText.Content,{tagName:t.headingTag,value:t.infoBoxTitle,className:"uagb-ifb-title"})),w=React.createElement(React.Fragment,null,"left"===a&&h,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===a&&h,("above-title"===a||"below-title"===a)&&S,"below-title"===a&&h,("above-title"===a||"below-title"===a)&&C,"left-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},h,S),C),"right-title"===a&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},S,h),C),("left"===a||"right"===a)&&React.createElement(React.Fragment,null,S,C)),"right"===a&&h);let k="_self";return s&&(k="_blank"),React.createElement("div",{className:Be()("uagb-block-"+l,"uagb-infobox__content-wrap","all"===n?" uagb-infobox_cta-type-all":"",...ef(t))},"all"===n&&React.createElement("a",{href:r,className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:k,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:""===r||"#"===r?"return false;":"return true;"}),w)}},{attributes:zf,save:function(e){var t,a,l,i;const{attributes:o}=e,{iconimgPosition:n,block_id:r,source_type:s,seperatorStyle:c,ctaType:u,ctaLink:p,ctaTarget:b,prefixTitle:d,infoBoxTitle:g,headingDesc:m,showPrefix:y,showTitle:f,showDesc:h,icon:v,seperatorPosition:_}=o;let T="";T="icon"===s&&""!==v?React.createElement(rf,{attributes:o}):React.createElement(sf,{attributes:o});let C=T,S=_;const w=React.createElement(of,{attributes:o});let k=!0;"after_icon"!==S||"above-title"!==n&&"below-title"!==n||(k=!1,C=React.createElement(React.Fragment,null,T,"none"!==c&&w)),"after_icon"!==S||"left-title"!==n&&"right-title"!==n&&"left"!==n&&"right"!==n||(S="after_title"),"below-title"===n&&"after_title"===S&&(k=!1,C=React.createElement(React.Fragment,null,"none"!==c&&w,T));const P=React.createElement(React.Fragment,null,"none"!==c&&"after_title"===S&&k&&w,h&&""!==m&&React.createElement(ge.RichText.Content,{tagName:"p",value:o.headingDesc,className:"uagb-ifb-desc"}),"none"!==c&&"after_desc"===S&&w,"none"!==u&&React.createElement(lf,{attributes:o})),x=React.createElement("div",{className:"uagb-ifb-title-wrap"},y&&""!==d&&React.createElement(ge.RichText.Content,{tagName:o.prefixHeadingTag,value:o.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==c&&"after_prefix"===S&&w,f&&""!==g&&React.createElement(ge.RichText.Content,{tagName:o.headingTag,value:o.infoBoxTitle,className:"uagb-ifb-title"})),A=React.createElement(React.Fragment,null,"left"===n&&C,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===n&&C,("above-title"===n||"below-title"===n)&&x,"below-title"===n&&C,("above-title"===n||"below-title"===n)&&P,"left-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},C,x),P),"right-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},x,C),P),("left"===n||"right"===n)&&React.createElement(React.Fragment,null,x,P)),"right"===n&&C);let G="_self";b&&(G="_blank");let M="return false;";return""===p&&"#"===p||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable&&(M="return true;"):M="return true;",React.createElement("div",{className:Be()("uagb-block-"+r,"uagb-infobox__content-wrap","all"===u?" uagb-infobox_cta-type-all":"",...ef(o))},"all"===u&&React.createElement("a",{href:p||"",className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:G,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:M}),A)}},{attributes:If,save:function(e){var t,a,l,i;const{attributes:o}=e,{iconimgPosition:n,block_id:r,source_type:s,seperatorStyle:c,ctaType:u,ctaLink:p,ctaTarget:b,prefixTitle:d,infoBoxTitle:g,headingDesc:m,showPrefix:y,showTitle:f,showDesc:h,icon:v,seperatorPosition:_}=o;let T="";T="icon"===s&&""!==v?React.createElement(rf,{attributes:o}):React.createElement(sf,{attributes:o});let C=T,S=_;const w=React.createElement(of,{attributes:o});let k=!0;"after_icon"!==S||"above-title"!==n&&"below-title"!==n||(k=!1,C=React.createElement(React.Fragment,null,T,"none"!==c&&w)),"after_icon"!==S||"left-title"!==n&&"right-title"!==n&&"left"!==n&&"right"!==n||(S="after_title"),"below-title"===n&&"after_title"===S&&(k=!1,C=React.createElement(React.Fragment,null,"none"!==c&&w,T));const P=React.createElement(React.Fragment,null,"none"!==c&&"after_title"===S&&k&&w,h&&""!==m&&React.createElement(ge.RichText.Content,{tagName:"p",value:o.headingDesc,className:"uagb-ifb-desc"}),"none"!==c&&"after_desc"===S&&w,"none"!==u&&React.createElement(lf,{attributes:o})),x=React.createElement("div",{className:"uagb-ifb-title-wrap"},y&&""!==d&&React.createElement(ge.RichText.Content,{tagName:o.prefixHeadingTag,value:o.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==c&&"after_prefix"===S&&w,f&&""!==g&&React.createElement(ge.RichText.Content,{tagName:o.headingTag,value:o.infoBoxTitle,className:"uagb-ifb-title"})),A=React.createElement(React.Fragment,null,"left"===n&&C,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===n&&C,("above-title"===n||"below-title"===n)&&x,"below-title"===n&&C,("above-title"===n||"below-title"===n)&&P,"left-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},C,x),P),"right-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},x,C),P),("left"===n||"right"===n)&&React.createElement(React.Fragment,null,x,P)),"right"===n&&C);let G="_self";b&&(G="_blank");let M="return false;";return""===p||"#"===p||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable&&(M="return true;"):M="return true;",React.createElement("div",{className:Be()("uagb-block-"+r,"uagb-infobox__content-wrap","all"===u?" uagb-infobox_cta-type-all":"",...ef(o))},"all"===u&&React.createElement("a",{href:p||"",className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:G,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:M}),A)}},{attributes:qf,save:function(e){var t,a,l,i;const{attributes:o}=e,{iconimgPosition:n,block_id:r,source_type:s,seperatorStyle:c,ctaType:u,ctaLink:p,ctaTarget:b,prefixTitle:d,infoBoxTitle:g,headingDesc:m,showPrefix:y,showTitle:f,showDesc:h,icon:v,seperatorPosition:_,blockBottomMargin:T,blockLeftMargin:C,blockRightMargin:S,blockTopMargin:w,blockBottomMarginTablet:k,blockLeftMarginTablet:P,blockRightMarginTablet:x,blockTopMarginTablet:A,blockBottomMarginMobile:G,blockLeftMarginMobile:M,blockRightMarginMobile:R,blockTopMarginMobile:B,htmlTag:U}=o;let E="";const O=U||"div";E="icon"===s&&""!==v?React.createElement(rf,{attributes:o}):React.createElement(sf,{attributes:o});const L=[T,C,S,w,k,P,x,A,G,M,R,B].some(e=>"number"==typeof e);let H=E,j=_;const F=React.createElement(of,{attributes:o});let z=!0;"after_icon"!==j||"above-title"!==n&&"below-title"!==n||(z=!1,H=React.createElement(React.Fragment,null,E,"none"!==c&&F)),"after_icon"!==j||"left-title"!==n&&"right-title"!==n&&"left"!==n&&"right"!==n||(j="after_title"),"below-title"===n&&"after_title"===j&&(z=!1,H=React.createElement(React.Fragment,null,"none"!==c&&F,E));const D=React.createElement(React.Fragment,null,"none"!==c&&"after_title"===j&&z&&F,h&&""!==m&&React.createElement(ge.RichText.Content,{tagName:"p",value:o.headingDesc,className:"uagb-ifb-desc"}),"none"!==c&&"after_desc"===j&&F,"none"!==u&&React.createElement(lf,{attributes:o})),N=React.createElement("div",{className:"uagb-ifb-title-wrap"},y&&""!==d&&React.createElement(ge.RichText.Content,{tagName:o.prefixHeadingTag,value:o.prefixTitle,className:"uagb-ifb-title-prefix"}),"none"!==c&&"after_prefix"===j&&F,f&&""!==g&&React.createElement(ge.RichText.Content,{tagName:o.headingTag,value:o.infoBoxTitle,className:"uagb-ifb-title"})),I=React.createElement(React.Fragment,null,"left"===n&&H,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===n&&H,("above-title"===n||"below-title"===n)&&N,"below-title"===n&&H,("above-title"===n||"below-title"===n)&&D,"left-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},H,N),D),"right-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},N,H),D),("left"===n||"right"===n)&&React.createElement(React.Fragment,null,N,D)),"right"===n&&H);let V="_self";b&&(V="_blank");let W="return false;";""===p||"#"===p||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable&&(W="return true;"):W="return true;";const q=React.createElement(React.Fragment,null,"all"===u&&React.createElement("a",{href:p||"",className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:V,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:W}),I);return React.createElement(O,{className:Z(["uagb-block-"+r,"uagb-infobox__content-wrap","all"===u?" uagb-infobox_cta-type-all":"",...ef(o),L?"wp-block-uagb-info-box--has-margin":""])},L?React.createElement("div",{className:"uagb-infobox-margin-wrapper"},q):React.createElement(React.Fragment,null,q))}},{attributes:Yf,save:function(e){var t,a,l,i;const{attributes:o}=e,{iconimgPosition:n,block_id:r,source_type:s,seperatorStyle:c,ctaType:u,ctaLink:p,ctaTarget:b,prefixTitle:d,infoBoxTitle:g,headingDesc:m,showPrefix:y,showTitle:f,showDesc:h,icon:v,seperatorPosition:_,blockBottomMargin:T,blockLeftMargin:C,blockRightMargin:S,blockTopMargin:w,blockBottomMarginTablet:k,blockLeftMarginTablet:P,blockRightMarginTablet:x,blockTopMarginTablet:A,blockBottomMarginMobile:G,blockLeftMarginMobile:M,blockRightMarginMobile:R,blockTopMarginMobile:B,htmlTag:U,enableMultilineParagraph:E}=o;let O="";const L=U||"div";O="icon"===s&&""!==v?React.createElement(rf,{attributes:o}):React.createElement(Jf,{attributes:o});const H=[T,C,S,w,k,P,x,A,G,M,R,B].some(e=>"number"==typeof e);let j=O,F=_;const z=React.createElement(of,{attributes:o});let D=!0;const N=e=>{if("none"!==c&&F===e&&D)return z};"after_icon"!==F||"above-title"!==n&&"below-title"!==n||(D=!1,j=React.createElement(React.Fragment,null,O,"none"!==c&&z)),"after_icon"!==F||"left-title"!==n&&"right-title"!==n&&"left"!==n&&"right"!==n||(F="after_title"),"below-title"===n&&"after_title"===F&&(D=!1,j=React.createElement(React.Fragment,null,"none"!==c&&z,O));const I=E?React.createElement(React.Fragment,null,N("after_title"),h&&React.createElement("div",{className:"uagb-ifb-desc"},React.createElement(ge.InnerBlocks.Content,null)),N("after_desc"),"none"!==u&&React.createElement(Kf,{attributes:o})):React.createElement(React.Fragment,null,N("after_title"),h&&""!==m&&React.createElement(ge.RichText.Content,{tagName:"p",value:o.headingDesc,className:"uagb-ifb-desc"}),N("after_desc"),"none"!==u&&React.createElement(Kf,{attributes:o})),V=React.createElement("div",{className:"uagb-ifb-title-wrap"},y&&""!==d&&React.createElement(ge.RichText.Content,{tagName:o.prefixHeadingTag,value:o.prefixTitle,className:"uagb-ifb-title-prefix"}),N("after_prefix"),f&&""!==g&&React.createElement(ge.RichText.Content,{tagName:o.headingTag,value:o.infoBoxTitle,className:"uagb-ifb-title"})),W=React.createElement(React.Fragment,null,"left"===n&&j,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===n&&j,("above-title"===n||"below-title"===n)&&V,"below-title"===n&&j,("above-title"===n||"below-title"===n)&&I,"left-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},j,V),I),"right-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},V,j),I),("left"===n||"right"===n)&&React.createElement(React.Fragment,null,V,I)),"right"===n&&j);let q="_self";b&&(q="_blank");let $="return false;";""===p||"#"===p||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable&&($="return true;"):$="return true;";const Y=React.createElement(React.Fragment,null,"all"===u&&React.createElement("a",{href:p||"",className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:q,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:$}),W);return React.createElement(L,{className:Z(["uagb-block-"+r,"uagb-infobox__content-wrap","all"===u?" uagb-infobox_cta-type-all":"",...ef(o),H?"wp-block-uagb-info-box--has-margin":""])},H?React.createElement("div",{className:"uagb-infobox-margin-wrapper"},Y):React.createElement(React.Fragment,null,Y))}}];a(212);var th={from:[{type:"block",blocks:["core/media-text"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,V,W,q,Z,$,Y,K,J,X,Q,ee,te,ae,le,ie,oe,ne,re,se,ce,ue,pe,de;const ge=(null===(a=t[0])||void 0===a?void 0:a.attributes)||{},me=Boolean(ge.content);let ye;var fe,he;if(null!=ge&&null!==(l=ge.style)&&void 0!==l&&null!==(i=l.color)&&void 0!==i&&i.text)ye=null==ge||null===(fe=ge.style)||void 0===fe||null===(he=fe.color)||void 0===he?void 0:he.text;else if(Nc(null==ge?void 0:ge.textColor))ye=Nc(null==ge?void 0:ge.textColor);else if(null!=e&&null!==(o=e.style)&&void 0!==o&&null!==(n=o.color)&&void 0!==n&&n.text){var ve,_e;ye=null==e||null===(ve=e.style)||void 0===ve||null===(_e=ve.color)||void 0===_e?void 0:_e.text}else ye=Nc(null==e?void 0:e.textColor)?Nc(null==e?void 0:e.textColor):"";return Object(be.createBlock)("uagb/info-box",{source_type:"image",infoBoxTitle:me?ge.content:"",imageSize:(null==e?void 0:e.mediaSizeSlug)||"large",headingColor:ye,iconImage:{url:e.mediaUrl},headFontWeight:(null==ge||null===(r=ge.style)||void 0===r||null===(s=r.typography)||void 0===s?void 0:s.fontWeight)||(null==e||null===(c=e.style)||void 0===c||null===(u=c.typography)||void 0===u?void 0:u.fontWeight)||"",headFontSize:N((null==ge||null===(p=ge.style)||void 0===p||null===(b=p.typography)||void 0===b?void 0:b.fontSize)||(null==e||null===(d=e.style)||void 0===d||null===(g=d.typography)||void 0===g?void 0:g.fontSize)||""),headLetterSpacing:N((null==ge||null===(m=ge.style)||void 0===m||null===(y=m.typography)||void 0===y?void 0:y.letterSpacing)||(null==e||null===(f=e.style)||void 0===f||null===(h=f.typography)||void 0===h?void 0:h.letterSpacing)||""),headLetterSpacingType:I((null==ge||null===(v=ge.style)||void 0===v||null===(_=v.typography)||void 0===_?void 0:_.letterSpacing)||(null==e||null===(T=e.style)||void 0===T||null===(C=T.typography)||void 0===C?void 0:C.letterSpacing)||""),headDecoration:(null==ge||null===(S=ge.style)||void 0===S||null===(w=S.typography)||void 0===w?void 0:w.textDecoration)||(null==e||null===(k=e.style)||void 0===k||null===(P=k.typography)||void 0===P?void 0:P.textDecoration)||"",headTransform:(null==ge||null===(x=ge.style)||void 0===x||null===(A=x.typography)||void 0===A?void 0:A.textTransform)||(null==e||null===(G=e.style)||void 0===G||null===(M=G.typography)||void 0===M?void 0:M.textTransform)||"",headLineHeight:N((null==ge||null===(R=ge.style)||void 0===R||null===(B=R.typography)||void 0===B?void 0:B.lineHeight)||(null==e||null===(U=e.style)||void 0===U||null===(E=U.typography)||void 0===E?void 0:E.lineHeight)||""),showDesc:!1,blockTopPadding:N((null==e||null===(O=e.style)||void 0===O||null===(L=O.spacing)||void 0===L||null===(H=L.padding)||void 0===H?void 0:H.top)||""),blockRightPadding:N((null==e||null===(j=e.style)||void 0===j||null===(F=j.spacing)||void 0===F||null===(z=F.padding)||void 0===z?void 0:z.right)||""),blockLeftPadding:N((null==e||null===(D=e.style)||void 0===D||null===(V=D.spacing)||void 0===V||null===(W=V.padding)||void 0===W?void 0:W.left)||""),blockBottomPadding:N((null==e||null===(q=e.style)||void 0===q||null===(Z=q.spacing)||void 0===Z||null===($=Z.padding)||void 0===$?void 0:$.bottom)||""),blockPaddingUnit:I((null==e||null===(Y=e.style)||void 0===Y||null===(K=Y.spacing)||void 0===K||null===(J=K.margin)||void 0===J?void 0:J.top)||""),headLeftMargin:N((null==ge||null===(X=ge.style)||void 0===X||null===(Q=X.spacing)||void 0===Q||null===(ee=Q.margin)||void 0===ee?void 0:ee.left)||"30"),headSpace:N((null==ge||null===(te=ge.style)||void 0===te||null===(ae=te.spacing)||void 0===ae||null===(le=ae.margin)||void 0===le?void 0:le.bottom)||""),headRightMargin:N((null==ge||null===(ie=ge.style)||void 0===ie||null===(oe=ie.spacing)||void 0===oe||null===(ne=oe.margin)||void 0===ne?void 0:ne.right)||""),headTopMargin:N((null==ge||null===(re=ge.style)||void 0===re||null===(se=re.spacing)||void 0===se||null===(ce=se.margin)||void 0===ce?void 0:ce.top)||""),headSpaceUnit:I((null==ge||null===(ue=ge.style)||void 0===ue||null===(pe=ue.spacing)||void 0===pe||null===(de=pe.margin)||void 0===de?void 0:de.top)||""),imageWidth:350,imageWidthUnit:"px",iconimgPosition:"left",sourceAlign:"middle"})}}]};let ah={};ah=Object(j.applyFilters)("uagb/info-box",ws(ah)),Object(be.registerBlockType)("uagb/info-box",{...ah,title:Object(r.__)("Info Box","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add image/icon, separator and text description using a single block.","ultimate-addons-for-gutenberg"),icon:se.info_box,keywords:[Object(r.__)("info box","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},usesContext:["postId","postType"],attributes:dt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"info-box"}):React.createElement(ff,e),save:function(e){var t,a,l,i;const{attributes:o}=e,{iconimgPosition:n,block_id:r,source_type:s,seperatorStyle:c,ctaType:u,ctaLink:p,ctaTarget:b,prefixTitle:d,infoBoxTitle:g,headingDesc:m,showPrefix:y,showTitle:f,showDesc:h,icon:v,seperatorPosition:_,blockBottomMargin:T,blockLeftMargin:C,blockRightMargin:S,blockTopMargin:w,blockBottomMarginTablet:k,blockLeftMarginTablet:P,blockRightMarginTablet:x,blockTopMarginTablet:A,blockBottomMarginMobile:G,blockLeftMarginMobile:M,blockRightMarginMobile:R,blockTopMarginMobile:B,htmlTag:U,enableMultilineParagraph:E}=o;let O="";const L=U||"div";O="icon"===s&&""!==v?React.createElement(rf,{attributes:o}):React.createElement(sf,{attributes:o});const H=[T,C,S,w,k,P,x,A,G,M,R,B].some(e=>"number"==typeof e);let j=O,F=_;const z=React.createElement(of,{attributes:o});let D=!0;const N=e=>{if("none"!==c&&F===e&&D)return z};"after_icon"!==F||"above-title"!==n&&"below-title"!==n||(D=!1,j=React.createElement(React.Fragment,null,O,"none"!==c&&z)),"after_icon"!==F||"left-title"!==n&&"right-title"!==n&&"left"!==n&&"right"!==n||(F="after_title"),"below-title"===n&&"after_title"===F&&(D=!1,j=React.createElement(React.Fragment,null,"none"!==c&&z,O));const I=E?React.createElement(React.Fragment,null,N("after_title"),h&&React.createElement("div",{className:"uagb-ifb-desc"},React.createElement(ge.InnerBlocks.Content,null)),N("after_desc"),"none"!==u&&React.createElement(lf,{attributes:o})):React.createElement(React.Fragment,null,N("after_title"),h&&""!==m&&React.createElement(ge.RichText.Content,{tagName:"p",value:o.headingDesc,className:"uagb-ifb-desc"}),N("after_desc"),"none"!==u&&React.createElement(lf,{attributes:o})),V=React.createElement("div",{className:"uagb-ifb-title-wrap"},y&&""!==d&&React.createElement(ge.RichText.Content,{tagName:o.prefixHeadingTag,value:o.prefixTitle,className:"uagb-ifb-title-prefix"}),N("after_prefix"),f&&""!==g&&React.createElement(ge.RichText.Content,{tagName:o.headingTag,value:o.infoBoxTitle,className:"uagb-ifb-title"})),W=React.createElement(React.Fragment,null,"left"===n&&j,React.createElement("div",{className:"uagb-ifb-content"},"above-title"===n&&j,("above-title"===n||"below-title"===n)&&V,"below-title"===n&&j,("above-title"===n||"below-title"===n)&&I,"left-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-left-title-image"},j,V),I),"right-title"===n&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-ifb-right-title-image"},V,j),I),("left"===n||"right"===n)&&React.createElement(React.Fragment,null,V,I)),"right"===n&&j);let q="_self";b&&(q="_blank");let $="return false;";""===p||"#"===p||null!=o&&null!==(t=o.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable?null!=o&&null!==(l=o.dynamicContent)&&void 0!==l&&null!==(i=l.ctaLink)&&void 0!==i&&i.enable&&($="return true;"):$="return true;";const Y=React.createElement(React.Fragment,null,"all"===u&&React.createElement("a",{href:p||"",className:"uagb-infobox-link-wrap uagb-infbox__link-to-all",target:q,"aria-label":"Infobox Link",rel:"noopener noreferrer",onClick:$}),W);return React.createElement(L,{className:Z(["uagb-block-"+r,"uagb-infobox__content-wrap","all"===u?" uagb-infobox_cta-type-all":"",...ef(o),H?"wp-block-uagb-info-box--has-margin":""])},H?React.createElement("div",{className:"uagb-infobox-margin-wrapper"},Y):React.createElement(React.Fragment,null,Y))},deprecated:eh,transforms:th});var lh=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase(),{stack:r,textAlign:s,titleColor:c,descColor:u,titleFontSize:p,titleFontSizeType:b,titleFontSizeTypeMobile:d,titleFontSizeTypeTablet:g,titleFontSizeMobile:m,titleFontSizeTablet:y,titleFontFamily:f,titleFontWeight:h,titleLineHeightType:v,titleLineHeight:_,titleLineHeightTablet:T,titleLineHeightMobile:C,descFontSize:S,descFontSizeType:w,descFontSizeTypeMobile:k,descFontSizeTypeTablet:P,descFontSizeMobile:x,descFontSizeTablet:A,descFontFamily:G,descFontWeight:M,descLineHeightType:R,descLineHeight:B,descLineHeightTablet:U,descLineHeightMobile:E,titleSpace:O,titleSpaceTablet:L,titleSpaceMobile:H,titleSpaceType:j,descSpace:F,descSpaceTablet:z,descSpaceMobile:D,descSpaceType:N,ctaPosition:I,ctaFontSize:V,ctaFontSizeType:W,ctaFontSizeTypeMobile:q,ctaFontSizeTypeTablet:Z,ctaFontSizeMobile:$,ctaFontSizeTablet:Y,ctaFontFamily:K,ctaFontWeight:J,ctaBtnLinkColor:X,ctaBgType:Q,ctaBgColor:ee,ctaTopPadding:te,ctaRightPadding:le,ctaBottomPadding:ie,ctaLeftPadding:oe,ctaTopPaddingTablet:ne,ctaRightPaddingTablet:re,ctaBottomPaddingTablet:se,ctaLeftPaddingTablet:ce,ctaTopPaddingMobile:ue,ctaRightPaddingMobile:pe,ctaBottomPaddingMobile:be,ctaLeftPaddingMobile:de,ctaPaddingUnit:ge,mobileCTAPaddingUnit:me,tabletCTAPaddingUnit:ye,ctaLinkHoverColor:fe,ctaBgHoverType:he,ctaBgHoverColor:ve,btnBorderHColor:_e,ctaIconSpace:Te,ctaIconSpaceTablet:Ce,ctaIconSpaceMobile:Se,contentWidth:we,contentWidthTablet:ke,contentWidthMobile:Pe,contentWidthType:xe,ctaType:Ae,titleTransform:Ge,titleDecoration:Me,descTransform:Re,descDecoration:Be,ctaTransform:Ue,ctaDecoration:Ee,titleFontStyle:Oe,descFontStyle:Le,ctaFontStyle:He,buttonAlign:je,ctaIconPosition:Fe,secondCtaBgType:ze,secondCtaBgHoverType:De,secondCtaIconSpace:Ne,secondCtaIconPosition:Ie,secondCtaFontSize:Ve,secondCtaFontSizeType:We,secondCtaFontSizeTypeMobile:qe,secondCtaFontSizeTypeTablet:Ze,secondCtaFontSizeMobile:$e,secondCtaFontSizeTablet:Ye,secondCtaFontFamily:Ke,secondCtaFontWeight:Je,secondCtaFontStyle:Xe,secondCtaFontTransform:Qe,secondCtaFontDecoration:et,secondCtaTopPadding:tt,secondCtaRightPadding:at,secondCtaBottomPadding:lt,secondCtaLeftPadding:it,secondCtaTopMobilePadding:ot,secondCtaRightMobilePadding:nt,secondCtaBottomMobilePadding:rt,secondCtaLeftMobilePadding:st,secondCtaTopTabletPadding:ct,secondCtaRightTabletPadding:ut,secondCtaBottomTabletPadding:pt,secondCtaLeftTabletPadding:bt,secondCtaPaddingUnit:dt,secondCtaMobilePaddingUnit:gt,secondCtaTabletPaddingUnit:mt,secondCtaBorderHColor:yt,secondCtaColor:ft,secondCtaBackground:ht,secondCtaHoverColor:vt,secondCtaHoverBackground:_t,stackBtn:Tt,gapBtn:Ct,gapBtnTablet:St,gapBtnMobile:wt,textAlignTablet:kt,textAlignMobile:Pt,overallBlockTopMargin:xt,overallBlockRightMargin:At,overallBlockBottomMargin:Gt,overallBlockLeftMargin:Mt,overallBlockTopMobileMargin:Rt,overallBlockRightMobileMargin:Bt,overallBlockBottomMobileMargin:Ut,overallBlockLeftMobileMargin:Et,overallBlockTopTabletMargin:Ot,overallBlockRightTabletMargin:Lt,overallBlockBottomTabletMargin:Ht,overallBlockLeftTabletMargin:jt,overallBlockMarginUnit:Ft,overallBlockMobileMarginUnit:zt,overallBlockTabletMarginUnit:Dt,overallBlockTopPadding:Nt,overallBlockRightPadding:It,overallBlockBottomPadding:Vt,overallBlockLeftPadding:Wt,overallBlockTopMobilePadding:qt,overallBlockRightMobilePadding:Zt,overallBlockBottomMobilePadding:$t,overallBlockLeftMobilePadding:Yt,overallBlockTopTabletPadding:Kt,overallBlockRightTabletPadding:Jt,overallBlockBottomTabletPadding:Xt,overallBlockLeftTabletPadding:Qt,overallBlockPaddingUnit:ea,overallBlockMobilePaddingUnit:ta,overallBlockTabletPaddingUnit:aa,buttonRightSpace:la,buttonRightSpaceTablet:ia,buttonRightSpaceMobile:oa,buttonRightSpaceType:na,secondCtaIconSpaceTablet:ra,secondCtaIconSpaceMobile:sa,titleLetterSpacing:ca,titleLetterSpacingTablet:ua,titleLetterSpacingMobile:pa,titleLetterSpacingType:ba,descLetterSpacing:da,descLetterSpacingTablet:ga,descLetterSpacingMobile:ma,descLetterSpacingType:ya,ctaLetterSpacing:fa,ctaLetterSpacingTablet:ha,ctaLetterSpacingMobile:va,ctaLetterSpacingType:_a,secondCtaLetterSpacing:Ta,secondCtaLetterSpacingTablet:Ca,secondCtaLetterSpacingMobile:Sa,secondCtaLetterSpacingType:wa,btncontentWidth:ka,btncontentWidthTablet:Pa,btncontentWidthMobile:xa,btncontentWidthType:Aa,enabledSecondCtaButton:Ga,inheritFromTheme:Ma,secInheritFromTheme:Ra,block_id:Ba}=e,Ua=rs(e,"btn"),Ea=rs(e,"btn","tablet"),Oa=rs(e,"btn","mobile"),La=Ps(O,"titleSpace",o),Ha=Ps(F,"descSpace",o),ja=Ps(Ne,"secondCtaIconSpace",o),Fa=Ps(Te,"ctaIconSpace",o),za=Ps(we,"contentWidth",o),Da=Ps(ka,"btncontentWidth",o),Na=Ps(Ct,"gapBtn",o),Ia=Ps(la,"buttonRightSpace",o),Va=rs(e,"secondCta"),Wa=rs(e,"secondCta","tablet"),qa=rs(e,"secondCta","mobile"),Za={" .uagb-cta__content-wrap":{"text-align":s}," .uagb-cta__wrap":{"text-align":s},".uagb-cta__outer-wrap":{"text-align":s,"padding-top":ns(Nt,ea),"padding-bottom":ns(Vt,ea),"padding-left":ns(Wt,ea),"padding-right":ns(It,ea),"margin-top":ns(xt,Ft),"margin-bottom":ns(Gt,Ft),"margin-left":ns(Mt,Ft),"margin-right":ns(At,Ft)}," .block-editor-rich-text__editable.uagb-cta__title":{"font-size":ns(p,b),"font-family":f,"font-style":Oe,"text-decoration":Me,"text-transform":Ge,"font-weight":h,"line-height":ns(_,v),"letter-spacing":ns(ca,ba),color:c,"margin-bottom":ns(La,j)}," .block-editor-rich-text__editable.uagb-cta__desc":{"font-size":ns(S,w),"font-family":G,"font-style":Le,"text-decoration":Be,"text-transform":Re,"font-weight":M,"line-height":ns(B,R),"letter-spacing":ns(da,ya),color:u,"margin-bottom":ns(Ha,N)}," .uagb-cta__desc":{"font-size":ns(S,w),"font-family":G,"font-style":Le,"text-transform":Re,"font-weight":M,"letter-spacing":ns(da,ya),color:u,"margin-bottom":ns(Ha,N)}," .uagb-cta__desc p":{color:u,"line-height":ns(B,R),"text-decoration":Be}};"right"===I&&(Za[".uagb-cta__outer-wrap "]={display:"inline-flex"}),Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper svg"]={"font-size":ns(V,W),width:ns(V,W),height:ns(V,W),"line-height":ns(V,W),fill:X,"letter-spacing":ns(fa,_a)},Za[".uagb-cta__outer-wrap a.uagb-cta-second__button svg"]={"font-size":ns(Ve,We),width:ns(Ve,We),"line-height":ns(Ve,We),fill:ft},Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper:hover svg"]={fill:fe},Za[".uagb-cta__outer-wrap a.uagb-cta-second__button:hover svg"]={fill:vt};const $a={" .uagb-cta__wrap":{"text-align":kt},".uagb-editor-preview-mode-tablet.uagb-cta__outer-wrap ":{"text-align":kt,"padding-top":ns(Kt,aa),"padding-bottom":ns(Xt,aa),"padding-left":ns(Qt,aa),"padding-right":ns(Jt,aa),"margin-top":ns(Ot,Dt),"margin-bottom":ns(Ht,Dt),"margin-left":ns(jt,Dt),"margin-right":ns(Lt,Dt)}," .block-editor-rich-text__editable.uagb-cta__title":{"font-size":ns(y,g),"line-height":ns(T,v),"letter-spacing":ns(ua,ba),"margin-bottom":ns(L,j)}," .block-editor-rich-text__editable.uagb-cta__desc":{"font-size":ns(A,P),"line-height":ns(U,R),"letter-spacing":ns(ga,ya),"margin-bottom":ns(z,N)}," .uagb-cta__desc":{"font-size":ns(A,P),"letter-spacing":ns(ga,ya),"margin-bottom":ns(z,N)}," .uagb-cta__desc p":{"line-height":ns(U,R)},".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper svg":{"font-size":ns(Y,Z),height:ns(Y,Z),width:ns(Y,Z),"line-height":ns(Y,Z),"letter-spacing":ns(ha,_a)},".uagb-cta__outer-wrap a.uagb-cta-second__button svg":{"font-size":ns(Ye,Ze),height:ns(Ye,Ze),width:ns(Ye,Ze),"line-height":ns(Ye,Ze),"letter-spacing":ns(Ca,wa)}};"right"===I&&($a[".uagb-cta__outer-wrap.uagb-cta__content-stacked-tablet "]={display:"inherit"},$a[".uagb-cta__content-stacked-tablet .uagb-cta__wrap "]={width:"100%"});const Ya={" .uagb-cta__wrap":{"text-align":Pt},".uagb-editor-preview-mode-mobile.uagb-cta__outer-wrap ":{"text-align":Pt,"padding-top":ns(qt,ta),"padding-bottom":ns($t,ta),"padding-left":ns(Yt,ta),"padding-right":ns(Zt,ta),"margin-top":ns(Rt,zt),"margin-bottom":ns(Ut,zt),"margin-left":ns(Et,zt),"margin-right":ns(Bt,zt)}," .block-editor-rich-text__editable.uagb-cta__title":{"font-size":ns(m,d),"line-height":ns(C,v),"letter-spacing":ns(pa,ba),"margin-bottom":ns(H,j)}," .block-editor-rich-text__editable.uagb-cta__desc":{"font-size":ns(x,k),"line-height":ns(E,R),"letter-spacing":ns(ma,ya),"margin-bottom":ns(D,N)}," .uagb-cta__desc":{"font-size":ns(x,k),"letter-spacing":ns(ma,ya),"margin-bottom":ns(D,N)}," .uagb-cta__desc p":{"line-height":ns(E,R)}," .uagb-cta__button-wrapper a.uagb-cta-typeof-text":{"font-size":ns($,q),"letter-spacing":ns(va,_a)}," .uagb-cta__button-wrapper .uagb-cta-with-svg":{"font-size":ns($,q),height:ns($,q),width:ns($,q),"line-height":ns($,q),"letter-spacing":ns(va,_a)},".uagb-cta__outer-wrap a.uagb-cta-second__button svg":{"font-size":ns($e,qe),height:ns($e,qe),width:ns($e,qe),"line-height":ns($e,qe),"letter-spacing":ns(Sa,wa)}};"text"===Ae&&(Za[" a.uagb-cta__button-link-wrapper"]={color:X,"border-style":"none !important","text-decoration":"underline",padding:"unset !important"},Za[" a.uagb-cta__button-link-wrapper:hover "]={color:fe});const Ka=ns(ja,"px"),Ja=ns(ra,"px"),Xa=ns(sa,"px");if("before"===Ie){const e="1"===uagb_blocks_info.is_rtl?"margin-left":"margin-right";Za[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Ka},$a[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Ja},Ya[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Xa},Za[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Ka},$a[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Ja},Ya[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Xa}}else{const e="1"===uagb_blocks_info.is_rtl?"margin-right":"margin-left";Za[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Ka},$a[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Ja},Ya[".uagb-cta__outer-wrap a.uagb-cta-second__button > svg"]={[e]:Xa},Za[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Ka},$a[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Ja},Ya[".uagb-cta__outer-wrap div.uagb-cta-second__button > svg"]={[e]:Xa}}const Qa=ns(Fa,"px"),el=ns(Ce,"px"),tl=ns(Se,"px");if("before"===Fe){const e="1"===uagb_blocks_info.is_rtl?"margin-left":"margin-right";Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:Qa},$a[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:el},Ya[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:tl},Za[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:Qa},$a[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:el},Ya[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:tl}}else{const e="1"===uagb_blocks_info.is_rtl?"margin-right":"margin-left";Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:Qa},$a[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:el},Ya[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper > svg"]={[e]:tl},Za[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:Qa},$a[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:el},Ya[".uagb-cta__outer-wrap div.uagb-cta__button-link-wrapper > svg"]={[e]:tl}}let al,ll,il;"none"!==Ae&&"all"!==Ae||(Za[" .uagb-cta__wrap"]={width:"100%"}),"right"!==I||"text"!==Ae&&"button"!==Ae||(Za[" .uagb-cta__wrap"]={width:ns(za,xe)},Za[".uagb-cta__outer-wrap > a"]={"align-self":"top"===je?"flex-start":"center",height:"fit-content","margin-left":"auto"},$a[" .uagb-cta__wrap"]={width:ns(ke,xe)},Ya[" .uagb-cta__wrap"]={width:ns(Pe,xe)}),"right"===I&&(Ya[".uagb-cta__outer-wrap.uagb-cta__content-stacked-mobile "]={display:"inherit"},Ya[".uagb-cta__outer-wrap.uagb-cta__content-stacked-tablet "]={display:"inherit"},Ya[".uagb-cta__content-stacked-mobile .uagb-cta__wrap "]={width:"100%"}),"below-title"===I&&(Ya[".uagb-cta__outer-wrap "]={display:"inherit"}),"desktop"===Tt?(Za[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(Na,"px")},$a[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(St,"px")},Ya[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(wt,"px")}):"tablet"===Tt?(Za[" .uagb-cta__buttons"]={"column-gap":ns(Na,"px"),"align-items":"center"},$a[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(St,"px")},Ya[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(wt,"px")}):"mobile"===Tt?(Za[" .uagb-cta__buttons"]={"column-gap":ns(Na,"px"),"align-items":"center"},$a[" .uagb-cta__buttons"]={"column-gap":ns(St,"px"),"align-items":"center"},Ya[" .uagb-cta__buttons"]={"flex-direction":"column","row-gap":ns(wt,"px")}):"none"===Tt&&(Za[" .uagb-cta__buttons"]={"column-gap":ns(Na,"px"),"align-items":"center"},$a[" .uagb-cta__buttons"]={"column-gap":ns(St,"px")},Ya[" .uagb-cta__buttons"]={"column-gap":ns(wt,"px"),"justify-content":"center"}),"button"===Ae&&Ga&&(Za[".uagb-cta__outer-wrap .uagb-cta__buttons"]={width:ns(Da,Aa)},$a[".uagb-cta__outer-wrap .uagb-cta__buttons"]={width:ns(Pa,Aa)},Ya[".uagb-cta__outer-wrap .uagb-cta__buttons"]={width:ns(xa,Aa)}),al="left"===s?"flex-start":"right"===s?"flex-end":"center",ll="left"===kt?"flex-start":"right"===kt?"flex-end":"center",il="left"===Pt?"flex-start":"right"===Pt?"flex-end":"center","desktop"===r?(Za[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":al},$a[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":ll},Ya[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":il}):"tablet"===r?(Za[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},$a[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":ll},Ya[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":il}):"mobile"===r?(Za[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},$a[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},Ya[".uagb-cta__outer-wrap "]={"flex-direction":"column","align-items":il}):"none"===r&&(Za[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},$a[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},Ya[".uagb-cta__outer-wrap "]={"flex-direction":"row","align-items":"top"===je?"flex-start":"center"},Za[" .uagb-cta__buttons"]={"column-gap":ns(Ct,"px"),"margin-left":ns(Ia,na)},$a[" .uagb-cta__buttons"]={"column-gap":ns(St,"px"),"margin-left":ns(ia,na)},Ya[" .uagb-cta__buttons"]={"column-gap":ns(wt,"px"),"margin-left":ns(oa,na)}),Ma||(Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper"]={"font-size":ns(V,W),"font-family":K,"font-style":He,"text-decoration":Ee,"text-transform":Ue,"font-weight":J,color:X,"background-color":"color"===Q?ee:"transparent","padding-top":ns(te,ge),"padding-bottom":ns(ie,ge),"padding-left":ns(oe,ge),"padding-right":ns(le,ge),...Ua,"letter-spacing":ns(fa,_a)},Za[".uagb-cta__outer-wrap.wp-block-button:not(.is-style-outline) a.uagb-cta__button-link-wrapper .wp-block-button__link:not(.has-background)"]={"font-size":ns(V,W),"font-family":K,"font-style":He,"text-decoration":Ee,"text-transform":Ue,"font-weight":J,color:X,"background-color":ee,"padding-top":ns(te,ge),"padding-bottom":ns(ie,ge),"padding-left":ns(oe,ge),"padding-right":ns(le,ge),...Ua},Za[".uagb-cta__outer-wrap.wp-block-button:not(.is-style-outline) a.uagb-cta__button-link-wrapper.wp-block-button__link:not(.has-background):hover"]={color:fe,"background-color":"color"===he?ve:"transparent","border-color":_e},$a[".uagb-cta__outer-wrap.wp-block-button:not(.is-style-outline) a.uagb-cta__button-link-wrapper.wp-block-button__link:not(.has-background)"]={"font-size":ns(Y,Z),"padding-top":ns(ne,ye),"padding-bottom":ns(se,ye),"padding-left":ns(ce,ye),"padding-right":ns(re,ye),"letter-spacing":ns(ha,_a),...Ea},Ya[".uagb-cta__outer-wrap.wp-block-button:not(.is-style-outline) a.uagb-cta__button-link-wrapper.wp-block-button__link:not(.has-background)"]={"font-size":ns($,q),"padding-top":ns(ue,me),"padding-bottom":ns(be,me),"padding-left":ns(de,me),"padding-right":ns(pe,me),"letter-spacing":ns(va,_a),...Oa},$a[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper"]={"font-size":ns(Y,Z),"padding-top":ns(ne,ye),"padding-bottom":ns(se,ye),"padding-left":ns(ce,ye),"padding-right":ns(re,ye),"letter-spacing":ns(ha,_a),...Ea},Ya[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper"]={"font-size":ns($,q),"padding-top":ns(ue,me),"padding-bottom":ns(be,me),"padding-left":ns(de,me),"padding-right":ns(pe,me),"letter-spacing":ns(va,_a),...Oa}),Ra||(Za[".uagb-cta__outer-wrap a.uagb-cta-second__button"]={"font-size":ns(Ve,We),"font-family":Ke,"font-style":Xe,"text-decoration":et,"text-transform":Qe,"font-weight":Je,color:ft,"background-color":"color"===ze?ht:"transparent","padding-top":ns(tt,dt),"padding-bottom":ns(lt,dt),"padding-left":ns(it,dt),"padding-right":ns(at,dt),"align-self":"top"===je?"flex-start":"center",height:"fit-content",...Va,"letter-spacing":ns(Ta,wa)},Za[".uagb-cta__outer-wrap a.uagb-cta-second__button:hover"]={color:vt,"background-color":"color"===De?_t:"transparent","border-color":yt},Za[".uagb-cta__outer-wrap a.uagb-cta__button-link-wrapper:hover"]={color:fe,"background-color":"color"===he?ve:"transparent","border-color":_e},$a[".uagb-cta__outer-wrap a.uagb-cta-second__button"]={"font-size":ns(Ye,Ze),"padding-top":ns(ct,mt),"padding-bottom":ns(pt,mt),"padding-left":ns(bt,mt),"padding-right":ns(ut,mt),...Wa,"letter-spacing":ns(Ca,wa)},Ya[".uagb-cta__outer-wrap a.uagb-cta-second__button"]={"font-size":ns($e,qe),"padding-top":ns(ot,gt),"padding-bottom":ns(rt,gt),"padding-left":ns(st,gt),"padding-right":ns(nt,gt),...qa,"letter-spacing":ns(Sa,wa)});const ol=i?`.editor-styles-wrapper ${i} `:`.editor-styles-wrapper #block-${t} .uagb-block-${Ba}`;let nl=ae(Za,""+ol);return("tablet"===n||"mobile"===n||i)&&(nl+=ae($a,""+ol,!0,"tablet"),("mobile"===n||i)&&(nl+=ae(Ya,""+ol,!0,"mobile"))),nl};const ih=[{defaultAttributes:Ot},{defaultPresetAttributes:[{label:"showIcon"},{label:"ctaIconSpace"},{label:"ctaBgType"},{label:"ctaBgHoverColor"},{label:"ctaBtnLinkColor"},{label:"ctaLinkHoverColor"},{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidthDesktop"},{label:"btnBorderTopWidthDesktop"},{label:"btnBorderLeftWidthDesktop"},{label:"btnBorderRightWidthDesktop"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!0},{label:"ctaIconSpace",value:12},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M119.2 144H110.775V127.325H118.975C120.458 127.325 121.617 127.733 122.45 128.55C123.3 129.35 123.725 130.358 123.725 131.575C123.725 132.575 123.442 133.425 122.875 134.125C122.325 134.808 121.642 135.233 120.825 135.4C121.725 135.533 122.483 136 123.1 136.8C123.733 137.583 124.05 138.483 124.05 139.5C124.05 140.833 123.617 141.917 122.75 142.75C121.9 143.583 120.717 144 119.2 144ZM118.375 134.225C119.108 134.225 119.683 134.025 120.1 133.625C120.517 133.225 120.725 132.708 120.725 132.075C120.725 131.425 120.517 130.9 120.1 130.5C119.683 130.1 119.108 129.9 118.375 129.9H113.7V134.225H118.375ZM118.5 141.425C119.3 141.425 119.925 141.225 120.375 140.825C120.825 140.408 121.05 139.833 121.05 139.1C121.05 138.45 120.825 137.908 120.375 137.475C119.925 137.025 119.3 136.8 118.5 136.8H113.7V141.425H118.5ZM137.686 144H135.061V142.4C133.928 143.667 132.503 144.3 130.786 144.3C128.203 144.3 126.911 143.025 126.911 140.475V131.925H129.536V139.525C129.536 140.408 129.744 141.042 130.161 141.425C130.578 141.792 131.178 141.975 131.961 141.975C132.594 141.975 133.186 141.825 133.736 141.525C134.286 141.225 134.728 140.85 135.061 140.4V131.925H137.686V144ZM144.721 144.3C143.704 144.3 142.929 144.033 142.396 143.5C141.879 142.967 141.621 142.2 141.621 141.2V134.225H139.621V131.925H141.621V128.625H144.246V131.925H146.696V134.225H144.246V140.55C144.246 140.983 144.346 141.333 144.546 141.6C144.746 141.85 145.029 141.975 145.396 141.975C145.929 141.975 146.321 141.833 146.571 141.55L147.196 143.525C146.646 144.042 145.821 144.3 144.721 144.3ZM152.704 144.3C151.687 144.3 150.912 144.033 150.379 143.5C149.862 142.967 149.604 142.2 149.604 141.2V134.225H147.604V131.925H149.604V128.625H152.229V131.925H154.679V134.225H152.229V140.55C152.229 140.983 152.329 141.333 152.529 141.6C152.729 141.85 153.012 141.975 153.379 141.975C153.912 141.975 154.304 141.833 154.554 141.55L155.179 143.525C154.629 144.042 153.804 144.3 152.704 144.3ZM162.512 144.3C160.646 144.3 159.146 143.692 158.012 142.475C156.879 141.242 156.312 139.733 156.312 137.95C156.312 136.167 156.879 134.667 158.012 133.45C159.146 132.233 160.646 131.625 162.512 131.625C164.396 131.625 165.904 132.233 167.037 133.45C168.171 134.667 168.737 136.167 168.737 137.95C168.737 139.75 168.171 141.258 167.037 142.475C165.904 143.692 164.396 144.3 162.512 144.3ZM162.512 141.975C163.596 141.975 164.446 141.592 165.062 140.825C165.696 140.042 166.012 139.083 166.012 137.95C166.012 136.833 165.696 135.892 165.062 135.125C164.446 134.342 163.596 133.95 162.512 133.95C161.446 133.95 160.596 134.342 159.962 135.125C159.346 135.892 159.037 136.833 159.037 137.95C159.037 139.083 159.346 140.042 159.962 140.825C160.596 141.592 161.446 141.975 162.512 141.975ZM182.168 144H179.543V136.45C179.543 134.783 178.735 133.95 177.118 133.95C176.485 133.95 175.893 134.108 175.343 134.425C174.793 134.742 174.352 135.125 174.018 135.575V144H171.393V131.925H174.018V133.575C174.468 133.042 175.068 132.583 175.818 132.2C176.568 131.817 177.385 131.625 178.268 131.625C179.552 131.625 180.518 131.958 181.168 132.625C181.835 133.292 182.168 134.25 182.168 135.5V144Z" fill="white"/> <path d="M217 138L207 132.226V143.774L217 138ZM189 139H208V137H189V139Z" fill="white"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverColor",value:"#3a3a3a"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverColor",value:"#3a3a3a"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-7",label:Object(r.__)("Preset 7","ultimate-addons-for-gutenberg"),attributes:[{label:"showIcon",value:!1},{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverColor",value:"#3a3a3a"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'},{value:"preset-8",label:Object(r.__)("Preset 8","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHoverColor",value:"#3a3a3a"},{label:"ctaBtnLinkColor",value:"#0170b9"},{label:"ctaLinkHoverColor",value:"#ffffff"},{label:"showIcon",value:!0},{label:"ctaIconSpace",value:12},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidthDesktop",value:1},{label:"btnBorderTopWidthDesktop",value:1},{label:"btnBorderLeftWidthDesktop",value:1},{label:"btnBorderRightWidthDesktop",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="104" width="207.786" height="64" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M119.2 145H110.775V128.325H118.975C120.458 128.325 121.617 128.733 122.45 129.55C123.3 130.35 123.725 131.358 123.725 132.575C123.725 133.575 123.442 134.425 122.875 135.125C122.325 135.808 121.642 136.233 120.825 136.4C121.725 136.533 122.483 137 123.1 137.8C123.733 138.583 124.05 139.483 124.05 140.5C124.05 141.833 123.617 142.917 122.75 143.75C121.9 144.583 120.717 145 119.2 145ZM118.375 135.225C119.108 135.225 119.683 135.025 120.1 134.625C120.517 134.225 120.725 133.708 120.725 133.075C120.725 132.425 120.517 131.9 120.1 131.5C119.683 131.1 119.108 130.9 118.375 130.9H113.7V135.225H118.375ZM118.5 142.425C119.3 142.425 119.925 142.225 120.375 141.825C120.825 141.408 121.05 140.833 121.05 140.1C121.05 139.45 120.825 138.908 120.375 138.475C119.925 138.025 119.3 137.8 118.5 137.8H113.7V142.425H118.5ZM137.686 145H135.061V143.4C133.928 144.667 132.503 145.3 130.786 145.3C128.203 145.3 126.911 144.025 126.911 141.475V132.925H129.536V140.525C129.536 141.408 129.744 142.042 130.161 142.425C130.578 142.792 131.178 142.975 131.961 142.975C132.594 142.975 133.186 142.825 133.736 142.525C134.286 142.225 134.728 141.85 135.061 141.4V132.925H137.686V145ZM144.721 145.3C143.704 145.3 142.929 145.033 142.396 144.5C141.879 143.967 141.621 143.2 141.621 142.2V135.225H139.621V132.925H141.621V129.625H144.246V132.925H146.696V135.225H144.246V141.55C144.246 141.983 144.346 142.333 144.546 142.6C144.746 142.85 145.029 142.975 145.396 142.975C145.929 142.975 146.321 142.833 146.571 142.55L147.196 144.525C146.646 145.042 145.821 145.3 144.721 145.3ZM152.704 145.3C151.687 145.3 150.912 145.033 150.379 144.5C149.862 143.967 149.604 143.2 149.604 142.2V135.225H147.604V132.925H149.604V129.625H152.229V132.925H154.679V135.225H152.229V141.55C152.229 141.983 152.329 142.333 152.529 142.6C152.729 142.85 153.012 142.975 153.379 142.975C153.912 142.975 154.304 142.833 154.554 142.55L155.179 144.525C154.629 145.042 153.804 145.3 152.704 145.3ZM162.512 145.3C160.646 145.3 159.146 144.692 158.012 143.475C156.879 142.242 156.312 140.733 156.312 138.95C156.312 137.167 156.879 135.667 158.012 134.45C159.146 133.233 160.646 132.625 162.512 132.625C164.396 132.625 165.904 133.233 167.037 134.45C168.171 135.667 168.737 137.167 168.737 138.95C168.737 140.75 168.171 142.258 167.037 143.475C165.904 144.692 164.396 145.3 162.512 145.3ZM162.512 142.975C163.596 142.975 164.446 142.592 165.062 141.825C165.696 141.042 166.012 140.083 166.012 138.95C166.012 137.833 165.696 136.892 165.062 136.125C164.446 135.342 163.596 134.95 162.512 134.95C161.446 134.95 160.596 135.342 159.962 136.125C159.346 136.892 159.037 137.833 159.037 138.95C159.037 140.083 159.346 141.042 159.962 141.825C160.596 142.592 161.446 142.975 162.512 142.975ZM182.168 145H179.543V137.45C179.543 135.783 178.735 134.95 177.118 134.95C176.485 134.95 175.893 135.108 175.343 135.425C174.793 135.742 174.352 136.125 174.018 136.575V145H171.393V132.925H174.018V134.575C174.468 134.042 175.068 133.583 175.818 133.2C176.568 132.817 177.385 132.625 178.268 132.625C179.552 132.625 180.518 132.958 181.168 133.625C181.835 134.292 182.168 135.25 182.168 136.5V145Z" fill="#959595"/> <path d="M217 139L207 133.226V144.774L217 139ZM189 140H208V138H189V140Z" fill="#959595"/> </svg>'}],oh=[{defaultAttributes:Ot},{defaultPresetAttributes:[{label:"secondCtaBorderStyle"},{label:"secondCtaBorderTopLeftRadius"},{label:"secondCtaBorderTopRightRadius"},{label:"secondCtaBorderBottomLeftRadius"},{label:"secondCtaBorderBottomRightRadius"},{label:"secondCtaBorderBottomWidthDesktop"},{label:"secondCtaBorderTopWidthDesktop"},{label:"secondCtaBorderLeftWidthDesktop"},{label:"secondCtaBorderRightWidthDesktop"},{label:"showSecondIcon"},{label:"secondCtaIconSpace"},{label:"secondCtaBgType"},{label:"secondCtaHoverBackground"},{label:"secondCtaColor"},{label:"secondCtaHoverColor"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBorderStyle",value:"none"},{label:"secondCtaBorderTopLeftRadius",value:0},{label:"secondCtaBorderTopRightRadius",value:0},{label:"secondCtaBorderBottomLeftRadius",value:0},{label:"secondCtaBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBorderStyle",value:"none"},{label:"secondCtaBorderTopLeftRadius",value:5},{label:"secondCtaBorderTopRightRadius",value:5},{label:"secondCtaBorderBottomLeftRadius",value:5},{label:"secondCtaBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBorderStyle",value:"none"},{label:"secondCtaBorderTopLeftRadius",value:30},{label:"secondCtaBorderTopRightRadius",value:30},{label:"secondCtaBorderBottomLeftRadius",value:30},{label:"secondCtaBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!0},{label:"secondCtaIconSpace",value:12},{label:"secondCtaBorderStyle",value:"none"},{label:"secondCtaBorderTopLeftRadius",value:5},{label:"secondCtaBorderTopRightRadius",value:5},{label:"secondCtaBorderBottomLeftRadius",value:5},{label:"secondCtaBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M119.2 144H110.775V127.325H118.975C120.458 127.325 121.617 127.733 122.45 128.55C123.3 129.35 123.725 130.358 123.725 131.575C123.725 132.575 123.442 133.425 122.875 134.125C122.325 134.808 121.642 135.233 120.825 135.4C121.725 135.533 122.483 136 123.1 136.8C123.733 137.583 124.05 138.483 124.05 139.5C124.05 140.833 123.617 141.917 122.75 142.75C121.9 143.583 120.717 144 119.2 144ZM118.375 134.225C119.108 134.225 119.683 134.025 120.1 133.625C120.517 133.225 120.725 132.708 120.725 132.075C120.725 131.425 120.517 130.9 120.1 130.5C119.683 130.1 119.108 129.9 118.375 129.9H113.7V134.225H118.375ZM118.5 141.425C119.3 141.425 119.925 141.225 120.375 140.825C120.825 140.408 121.05 139.833 121.05 139.1C121.05 138.45 120.825 137.908 120.375 137.475C119.925 137.025 119.3 136.8 118.5 136.8H113.7V141.425H118.5ZM137.686 144H135.061V142.4C133.928 143.667 132.503 144.3 130.786 144.3C128.203 144.3 126.911 143.025 126.911 140.475V131.925H129.536V139.525C129.536 140.408 129.744 141.042 130.161 141.425C130.578 141.792 131.178 141.975 131.961 141.975C132.594 141.975 133.186 141.825 133.736 141.525C134.286 141.225 134.728 140.85 135.061 140.4V131.925H137.686V144ZM144.721 144.3C143.704 144.3 142.929 144.033 142.396 143.5C141.879 142.967 141.621 142.2 141.621 141.2V134.225H139.621V131.925H141.621V128.625H144.246V131.925H146.696V134.225H144.246V140.55C144.246 140.983 144.346 141.333 144.546 141.6C144.746 141.85 145.029 141.975 145.396 141.975C145.929 141.975 146.321 141.833 146.571 141.55L147.196 143.525C146.646 144.042 145.821 144.3 144.721 144.3ZM152.704 144.3C151.687 144.3 150.912 144.033 150.379 143.5C149.862 142.967 149.604 142.2 149.604 141.2V134.225H147.604V131.925H149.604V128.625H152.229V131.925H154.679V134.225H152.229V140.55C152.229 140.983 152.329 141.333 152.529 141.6C152.729 141.85 153.012 141.975 153.379 141.975C153.912 141.975 154.304 141.833 154.554 141.55L155.179 143.525C154.629 144.042 153.804 144.3 152.704 144.3ZM162.512 144.3C160.646 144.3 159.146 143.692 158.012 142.475C156.879 141.242 156.312 139.733 156.312 137.95C156.312 136.167 156.879 134.667 158.012 133.45C159.146 132.233 160.646 131.625 162.512 131.625C164.396 131.625 165.904 132.233 167.037 133.45C168.171 134.667 168.737 136.167 168.737 137.95C168.737 139.75 168.171 141.258 167.037 142.475C165.904 143.692 164.396 144.3 162.512 144.3ZM162.512 141.975C163.596 141.975 164.446 141.592 165.062 140.825C165.696 140.042 166.012 139.083 166.012 137.95C166.012 136.833 165.696 135.892 165.062 135.125C164.446 134.342 163.596 133.95 162.512 133.95C161.446 133.95 160.596 134.342 159.962 135.125C159.346 135.892 159.037 136.833 159.037 137.95C159.037 139.083 159.346 140.042 159.962 140.825C160.596 141.592 161.446 141.975 162.512 141.975ZM182.168 144H179.543V136.45C179.543 134.783 178.735 133.95 177.118 133.95C176.485 133.95 175.893 134.108 175.343 134.425C174.793 134.742 174.352 135.125 174.018 135.575V144H171.393V131.925H174.018V133.575C174.468 133.042 175.068 132.583 175.818 132.2C176.568 131.817 177.385 131.625 178.268 131.625C179.552 131.625 180.518 131.958 181.168 132.625C181.835 133.292 182.168 134.25 182.168 135.5V144Z" fill="white"/> <path d="M217 138L207 132.226V143.774L217 138ZM189 139H208V137H189V139Z" fill="white"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBgType",value:"transparent"},{label:"secondCtaHoverBackground",value:"#3a3a3a"},{label:"secondCtaColor",value:"#0170b9"},{label:"secondCtaHoverColor",value:"#ffffff"},{label:"secondCtaBorderStyle",value:"solid"},{label:"secondCtaBorderTopLeftRadius",value:0},{label:"secondCtaBorderTopRightRadius",value:0},{label:"secondCtaBorderBottomLeftRadius",value:0},{label:"secondCtaBorderBottomRightRadius",value:0},{label:"secondCtaBorderBottomWidth",value:1},{label:"secondCtaBorderTopWidth",value:1},{label:"secondCtaBorderLeftWidth",value:1},{label:"secondCtaBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBgType",value:"transparent"},{label:"secondCtaHoverBackground",value:"#3a3a3a"},{label:"secondCtaColor",value:"#0170b9"},{label:"secondCtaHoverColor",value:"#ffffff"},{label:"secondCtaBorderStyle",value:"solid"},{label:"secondCtaBorderTopLeftRadius",value:5},{label:"secondCtaBorderTopRightRadius",value:5},{label:"secondCtaBorderBottomLeftRadius",value:5},{label:"secondCtaBorderBottomRightRadius",value:5},{label:"secondCtaBorderBottomWidth",value:1},{label:"secondCtaBorderTopWidth",value:1},{label:"secondCtaBorderLeftWidth",value:1},{label:"secondCtaBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-7",label:Object(r.__)("Preset 7","ultimate-addons-for-gutenberg"),attributes:[{label:"showSecondIcon",value:!1},{label:"secondCtaBgType",value:"transparent"},{label:"secondCtaHoverBackground",value:"#3a3a3a"},{label:"secondCtaColor",value:"#0170b9"},{label:"secondCtaHoverColor",value:"#ffffff"},{label:"secondCtaBorderStyle",value:"solid"},{label:"secondCtaBorderTopLeftRadius",value:30},{label:"secondCtaBorderTopRightRadius",value:30},{label:"secondCtaBorderBottomLeftRadius",value:30},{label:"secondCtaBorderBottomRightRadius",value:30},{label:"secondCtaBorderBottomWidth",value:1},{label:"secondCtaBorderTopWidth",value:1},{label:"secondCtaBorderLeftWidth",value:1},{label:"secondCtaBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'},{value:"preset-8",label:Object(r.__)("Preset 8","ultimate-addons-for-gutenberg"),attributes:[{label:"secondCtaBgType",value:"transparent"},{label:"secondCtaHoverBackground",value:"#3a3a3a"},{label:"secondCtaColor",value:"#0170b9"},{label:"secondCtaHoverColor",value:"#ffffff"},{label:"showSecondIcon",value:!0},{label:"secondCtaIconSpace",value:12},{label:"secondCtaBorderStyle",value:"solid"},{label:"secondCtaBorderTopLeftRadius",value:5},{label:"secondCtaBorderTopRightRadius",value:5},{label:"secondCtaBorderBottomLeftRadius",value:5},{label:"secondCtaBorderBottomRightRadius",value:5},{label:"secondCtaBorderBottomWidth",value:1},{label:"secondCtaBorderTopWidth",value:1},{label:"secondCtaBorderLeftWidth",value:1},{label:"secondCtaBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="104" width="207.786" height="64" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M119.2 145H110.775V128.325H118.975C120.458 128.325 121.617 128.733 122.45 129.55C123.3 130.35 123.725 131.358 123.725 132.575C123.725 133.575 123.442 134.425 122.875 135.125C122.325 135.808 121.642 136.233 120.825 136.4C121.725 136.533 122.483 137 123.1 137.8C123.733 138.583 124.05 139.483 124.05 140.5C124.05 141.833 123.617 142.917 122.75 143.75C121.9 144.583 120.717 145 119.2 145ZM118.375 135.225C119.108 135.225 119.683 135.025 120.1 134.625C120.517 134.225 120.725 133.708 120.725 133.075C120.725 132.425 120.517 131.9 120.1 131.5C119.683 131.1 119.108 130.9 118.375 130.9H113.7V135.225H118.375ZM118.5 142.425C119.3 142.425 119.925 142.225 120.375 141.825C120.825 141.408 121.05 140.833 121.05 140.1C121.05 139.45 120.825 138.908 120.375 138.475C119.925 138.025 119.3 137.8 118.5 137.8H113.7V142.425H118.5ZM137.686 145H135.061V143.4C133.928 144.667 132.503 145.3 130.786 145.3C128.203 145.3 126.911 144.025 126.911 141.475V132.925H129.536V140.525C129.536 141.408 129.744 142.042 130.161 142.425C130.578 142.792 131.178 142.975 131.961 142.975C132.594 142.975 133.186 142.825 133.736 142.525C134.286 142.225 134.728 141.85 135.061 141.4V132.925H137.686V145ZM144.721 145.3C143.704 145.3 142.929 145.033 142.396 144.5C141.879 143.967 141.621 143.2 141.621 142.2V135.225H139.621V132.925H141.621V129.625H144.246V132.925H146.696V135.225H144.246V141.55C144.246 141.983 144.346 142.333 144.546 142.6C144.746 142.85 145.029 142.975 145.396 142.975C145.929 142.975 146.321 142.833 146.571 142.55L147.196 144.525C146.646 145.042 145.821 145.3 144.721 145.3ZM152.704 145.3C151.687 145.3 150.912 145.033 150.379 144.5C149.862 143.967 149.604 143.2 149.604 142.2V135.225H147.604V132.925H149.604V129.625H152.229V132.925H154.679V135.225H152.229V141.55C152.229 141.983 152.329 142.333 152.529 142.6C152.729 142.85 153.012 142.975 153.379 142.975C153.912 142.975 154.304 142.833 154.554 142.55L155.179 144.525C154.629 145.042 153.804 145.3 152.704 145.3ZM162.512 145.3C160.646 145.3 159.146 144.692 158.012 143.475C156.879 142.242 156.312 140.733 156.312 138.95C156.312 137.167 156.879 135.667 158.012 134.45C159.146 133.233 160.646 132.625 162.512 132.625C164.396 132.625 165.904 133.233 167.037 134.45C168.171 135.667 168.737 137.167 168.737 138.95C168.737 140.75 168.171 142.258 167.037 143.475C165.904 144.692 164.396 145.3 162.512 145.3ZM162.512 142.975C163.596 142.975 164.446 142.592 165.062 141.825C165.696 141.042 166.012 140.083 166.012 138.95C166.012 137.833 165.696 136.892 165.062 136.125C164.446 135.342 163.596 134.95 162.512 134.95C161.446 134.95 160.596 135.342 159.962 136.125C159.346 136.892 159.037 137.833 159.037 138.95C159.037 140.083 159.346 141.042 159.962 141.825C160.596 142.592 161.446 142.975 162.512 142.975ZM182.168 145H179.543V137.45C179.543 135.783 178.735 134.95 177.118 134.95C176.485 134.95 175.893 135.108 175.343 135.425C174.793 135.742 174.352 136.125 174.018 136.575V145H171.393V132.925H174.018V134.575C174.468 134.042 175.068 133.583 175.818 133.2C176.568 132.817 177.385 132.625 178.268 132.625C179.552 132.625 180.518 132.958 181.168 133.625C181.835 134.292 182.168 135.25 182.168 136.5V145Z" fill="#959595"/> <path d="M217 139L207 133.226V144.774L217 139ZM189 140H208V138H189V140Z" fill="#959595"/> </svg>'}];function nh(){return(nh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var rh,sh=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l}=e,{textAlign:i,titleColor:o,descColor:n,titleTag:s,titleFontSize:c,titleFontSizeType:u,titleFontSizeTypeMobile:p,titleFontSizeTypeTablet:b,titleFontSizeMobile:d,titleFontSizeTablet:g,titleFontFamily:m,titleFontWeight:y,titleLineHeightType:f,titleLineHeight:h,titleLineHeightTablet:v,titleLineHeightMobile:_,titleLoadGoogleFonts:T,descFontSize:C,descFontSizeType:S,descFontSizeTypeMobile:w,descFontSizeTypeTablet:k,descFontSizeMobile:P,descFontSizeTablet:x,descFontFamily:A,descFontWeight:G,descLineHeightType:M,descLineHeight:R,descLineHeightTablet:B,descLineHeightMobile:U,descLoadGoogleFonts:E,titleSpace:O,titleSpaceTablet:L,titleSpaceMobile:H,titleSpaceType:j,descSpace:F,descSpaceTablet:z,descSpaceMobile:D,descSpaceType:N,buttonAlign:I,htmlTag:V,ctaType:W,ctaText:q,ctaLink:Z,ctaTarget:$,ctaIcon:Y,ctaIconPosition:K,ctaIconSpace:J,ctaIconSpaceTablet:X,ctaIconSpaceMobile:Q,ctaFontSize:ee,ctaFontSizeType:te,ctaFontSizeTypeMobile:ae,ctaFontSizeTypeTablet:le,ctaFontSizeMobile:ie,ctaFontSizeTablet:oe,ctaFontFamily:ne,ctaFontWeight:re,ctaLoadGoogleFonts:se,contentWidth:ce,contentWidthTablet:ue,contentWidthMobile:pe,contentWidthType:be,ctaBtnLinkColor:de,ctaBgType:me,ctaBgHoverType:ye,secondCtaBgType:fe,secondCtaBgHoverType:he,ctaBgHoverColor:ve,ctaBgColor:_e,ctaTopPadding:Te,ctaRightPadding:Se,ctaBottomPadding:we,ctaLeftPadding:ke,ctaTopPaddingTablet:Pe,ctaRightPaddingTablet:xe,ctaBottomPaddingTablet:Ae,ctaLeftPaddingTablet:Ge,ctaTopPaddingMobile:Me,ctaRightPaddingMobile:Re,ctaBottomPaddingMobile:Be,ctaLeftPaddingMobile:Ue,ctaPaddingUnit:Oe,mobileCTAPaddingUnit:He,tabletCTAPaddingUnit:je,ctaPaddingLink:ze,stack:De,ctaLinkHoverColor:Ne,titleTransform:Ie,titleDecoration:Ve,descTransform:We,descDecoration:qe,ctaTransform:Ze,ctaDecoration:$e,titleFontStyle:Ye,descFontStyle:Ke,ctaFontStyle:Je,enabledSecondCtaButton:Xe,secondCtaLink:Qe,secondCtaLabel:et,secondCtaTarget:tt,secondCtaLoadGoogleFonts:at,secondCtaFontFamily:lt,secondCtaFontWeight:it,secondCtaFontStyle:ot,secondCtaFontTransform:nt,secondCtaFontDecoration:rt,secondCtaTopPadding:st,secondCtaRightPadding:ct,secondCtaBottomPadding:ut,secondCtaLeftPadding:pt,secondCtaTopMobilePadding:bt,secondCtaRightMobilePadding:dt,secondCtaBottomMobilePadding:gt,secondCtaLeftMobilePadding:mt,secondCtaTopTabletPadding:yt,secondCtaRightTabletPadding:ft,secondCtaBottomTabletPadding:ht,secondCtaLeftTabletPadding:vt,secondCtaPaddingUnit:_t,secondCtaMobilePaddingUnit:Tt,secondCtaTabletPaddingUnit:Ct,secondCtaPaddingLink:St,secondCtaColor:wt,secondCtaBackground:kt,secondCtaHoverColor:Pt,secondCtaHoverBackground:xt,secondCtaFontSize:At,secondCtaFontSizeType:Gt,secondCtaFontSizeTypeMobile:Mt,secondCtaFontSizeTypeTablet:Rt,secondCtaFontSizeMobile:Bt,secondCtaFontSizeTablet:Ut,secondCtaIcon:Et,secondCtaIconPosition:Ot,secondCtaIconSpace:Lt,stackBtn:Ht,gapBtn:jt,gapBtnTablet:Ft,gapBtnMobile:zt,textAlignTablet:Dt,textAlignMobile:Nt,overallBlockTopMargin:It,overallBlockRightMargin:Vt,overallBlockBottomMargin:Wt,overallBlockLeftMargin:qt,overallBlockTopMobileMargin:Zt,overallBlockRightMobileMargin:$t,overallBlockBottomMobileMargin:Yt,overallBlockLeftMobileMargin:Kt,overallBlockTopTabletMargin:Jt,overallBlockRightTabletMargin:Xt,overallBlockBottomTabletMargin:Qt,overallBlockLeftTabletMargin:ea,overallBlockMarginUnit:ta,overallBlockMobileMarginUnit:aa,overallBlockTabletMarginUnit:la,overallBlockMarginLink:ia,overallBlockTopPadding:oa,overallBlockRightPadding:na,overallBlockBottomPadding:ra,overallBlockLeftPadding:sa,overallBlockTopMobilePadding:ca,overallBlockRightMobilePadding:ua,overallBlockBottomMobilePadding:pa,overallBlockLeftMobilePadding:ba,overallBlockTopTabletPadding:da,overallBlockRightTabletPadding:ga,overallBlockBottomTabletPadding:ma,overallBlockLeftTabletPadding:ya,overallBlockPaddingUnit:fa,overallBlockMobilePaddingUnit:ha,overallBlockTabletPaddingUnit:va,overallBlockPaddingLink:_a,buttonRightSpace:Ta,buttonRightSpaceTablet:Ca,buttonRightSpaceMobile:Sa,buttonRightSpaceType:wa,secondCtaIconSpaceTablet:ka,secondCtaIconSpaceMobile:Pa,titleLetterSpacing:xa,titleLetterSpacingTablet:Aa,titleLetterSpacingMobile:Ga,titleLetterSpacingType:Ma,descLetterSpacing:Ra,descLetterSpacingTablet:Ba,descLetterSpacingMobile:Ua,descLetterSpacingType:Ea,ctaLetterSpacing:Oa,ctaLetterSpacingTablet:La,ctaLetterSpacingMobile:Ha,ctaLetterSpacingType:ja,secondCtaLetterSpacing:Fa,secondCtaLetterSpacingTablet:za,secondCtaLetterSpacingMobile:Da,secondCtaLetterSpacingType:Ia,showIcon:Va,showSecondIcon:Wa,btncontentWidth:qa,btncontentWidthTablet:Za,btncontentWidthMobile:$a,btncontentWidthType:Ya,inheritFromTheme:Ka,ctaButtonType:Ja,secCtaButtonType:Xa,secInheritFromTheme:Qa,enableMultilineParagraph:el}=a,al=uagb_blocks_info.current_theme;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,nh({},ol,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:V,label:"htmlTag"},setAttributes:t,options:[{value:"div",label:Object(r.__)("div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("header","ultimate-addons-for-gutenberg")},{value:"footer",label:Object(r.__)("footer","ultimate-addons-for-gutenberg")},{value:"main",label:Object(r.__)("main","ultimate-addons-for-gutenberg")},{value:"article",label:Object(r.__)("article","ultimate-addons-for-gutenberg")},{value:"section",label:Object(r.__)("section","ultimate-addons-for-gutenberg")},{value:"aside",label:Object(r.__)("aside","ultimate-addons-for-gutenberg")},{value:"nav",label:Object(r.__)("nav","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{checked:el,onChange:()=>t({enableMultilineParagraph:!el}),label:Object(r.__)("Enable Semantic Markup","ultimate-addons-for-gutenberg"),help:el?"":Object(r.__)("Use Core/Paragraph: Improve accessibility and SEO with semantic HTML markup. Note: Existing Rich Text content will not be preserved.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Overall Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:i,label:"textAlign"},tablet:{value:Dt,label:"textAlignTablet"},mobile:{value:Nt,label:"textAlignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Stack On","ultimate-addons-for-gutenberg"),data:{value:De,label:"stack"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"desktop",label:Object(r.__)("Desktop","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],showIcons:!1,help:Object(r.__)("Note: Choose on what breakpoint the CTA button will stack.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:s,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")}]}),"all"!==W&&"none"!==W&&React.createElement(React.Fragment,null,("text"===W||"button"===W)&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Content Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:ce,label:"contentWidth"},tablet:{value:ue,label:"contentWidthTablet"},mobile:{value:pe,label:"contentWidthMobile"}},min:0,max:100,unit:{value:be,label:"contentWidthType"},units:[{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:t}))),"all"!==W&&"none"!==W&&"text"!==W&&React.createElement(React.Fragment,null,Xe&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Buttons Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:qa,label:"btncontentWidth"},tablet:{value:Za,label:"btncontentWidthTablet"},mobile:{value:$a,label:"btncontentWidthMobile"}},min:20,max:100,unit:{value:Ya,label:"btncontentWidthType"},units:[{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:t})))),React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:W,label:"ctaType"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"text",label:Object(r.__)("Text","ultimate-addons-for-gutenberg")},{value:"button",label:Object(r.__)("Button","ultimate-addons-for-gutenberg")},{value:"all",label:Object(r.__)("Complete Box","ultimate-addons-for-gutenberg")}],showIcons:!1}),"button"===W&&React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:t,presets:ih,presetInputType:"radioImage"}),React.createElement(Le.ToggleControl,{checked:Ka,onChange:()=>t({inheritFromTheme:!Ka}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ka&&"Astra"===al&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Ja,label:"ctaButtonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]})),"desktop"!==De&&"all"!==W&&"none"!==W&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:I,label:"buttonAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"middle",label:Object(r.__)("Middle","ultimate-addons-for-gutenberg")}],showIcons:!1}),"text"===W&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:q,data:{value:q,label:"ctaText"},setAttributes:t,onChange:e=>t({ctaText:e})})),"none"!==W&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),name:"ctaLink",enableDynamicContent:!0,value:Z,setAttributes:t,data:{value:Z,label:"ctaLink"}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in New Window","ultimate-addons-for-gutenberg"),checked:$,onChange:()=>t({ctaTarget:!$})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Icon","ultimate-addons-for-gutenberg"),checked:Va,onChange:()=>t({showIcon:!Va})})),Va&&"all"!==W&&"none"!==W&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:Y,onChange:e=>t({ctaIcon:e})}),""!==Y&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:K,label:"ctaIconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:Object(r.__)("Before Text","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After Text","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:J,label:"ctaIconSpace"},tablet:{value:X,label:"ctaIconSpaceTablet"},mobile:{value:Q,label:"ctaIconSpaceMobile"}},min:-50,max:50,displayUnit:!1,setAttributes:t}))))),"button"===W&&React.createElement(Fe,{title:Object(r.__)("Additional Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Additional Button","ultimate-addons-for-gutenberg"),checked:Xe,onChange:()=>t({enabledSecondCtaButton:!Xe})}),Xe&&React.createElement(React.Fragment,null,!Qa&&React.createElement(zr,{setAttributes:t,presets:oh,presetInputType:"radioImage"}),React.createElement(Le.ToggleControl,{checked:Qa,onChange:()=>t({secInheritFromTheme:!Qa}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Qa&&"Astra"===al&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Xa,label:"secCtaButtonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Stack Orientation","ultimate-addons-for-gutenberg"),data:{value:Ht,label:"stackBtn"},options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"desktop",label:Object(r.__)("Desktop","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: Choose on what breakpoint the buttons will stack.","ultimate-addons-for-gutenberg")}),React.createElement(tl,{label:Object(r.__)("Gap Between Buttons","ultimate-addons-for-gutenberg"),data:{desktop:{value:jt,label:"gapBtn"},tablet:{value:Ft,label:"gapBtnTablet"},mobile:{value:zt,label:"gapBtnMobile"}},min:0,max:200,displayUnit:!1,setAttributes:t}),React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:et,data:{value:et,label:"secondCtaLabel"},setAttributes:t,onChange:e=>t({secondCtaLabel:e})}),React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,name:"secondCtaLink",value:Qe,setAttributes:t,data:{value:Qe,label:"secondCtaLink"}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in New Window","ultimate-addons-for-gutenberg"),checked:tt,onChange:()=>t({secondCtaTarget:!tt})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Icon","ultimate-addons-for-gutenberg"),checked:Wa,onChange:()=>t({showSecondIcon:!Wa})}),Wa&&React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:Et,onChange:e=>t({secondCtaIcon:e})}),Wa&&""!==Et&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:Ot,label:"secondCtaIconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:Object(r.__)("Before Text","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After Text","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Lt,label:"secondCtaIconSpace"},tablet:{value:ka,label:"secondCtaIconSpaceTablet"},mobile:{value:Pa,label:"secondCtaIconSpaceMobile"}},min:-50,max:50,displayUnit:!1,setAttributes:t})))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nh({},nl,{parentProps:e}),React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:o||"",data:{value:o,label:"titleColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:T,label:"titleLoadGoogleFonts"},fontFamily:{value:m,label:"titleFontFamily"},fontWeight:{value:y,label:"titleFontWeight"},fontStyle:{value:Ye,label:"titleFontStyle"},transform:{value:Ie,label:"titleTransform"},decoration:{value:Ve,label:"titleDecoration"},fontSizeType:{value:u,label:"titleFontSizeType"},fontSizeTypeTablet:{value:b,label:"titleFontSizeTypeTablet"},fontSizeTypeMobile:{value:p,label:"titleFontSizeTypeMobile"},fontSize:{value:c,label:"titleFontSize"},fontSizeMobile:{value:d,label:"titleFontSizeMobile"},fontSizeTablet:{value:g,label:"titleFontSizeTablet"},lineHeightType:{value:f,label:"titleLineHeightType"},lineHeight:{value:h,label:"titleLineHeight"},lineHeightMobile:{value:_,label:"titleLineHeightMobile"},lineHeightTablet:{value:v,label:"titleLineHeightTablet"},letterSpacing:{value:xa,label:"titleLetterSpacing"},letterSpacingTablet:{value:Aa,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Ga,label:"titleLetterSpacingMobile"},letterSpacingType:{value:Ma,label:"titleLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:O,label:"titleSpace"},tablet:{value:L,label:"titleSpaceTablet"},mobile:{value:H,label:"titleSpaceMobile"}},min:0,max:200,unit:{value:j,label:"titleSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:n||"",data:{value:n,label:"descColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:E,label:"descLoadGoogleFonts"},fontFamily:{value:A,label:"descFontFamily"},fontWeight:{value:G,label:"descFontWeight"},fontStyle:{value:Ke,label:"descFontStyle"},transform:{value:We,label:"descTransform"},decoration:{value:qe,label:"descDecoration"},fontSizeType:{value:S,label:"descFontSizeType"},fontSizeTypeTablet:{value:k,label:"descFontSizeTypeMobile"},fontSizeTypeMobile:{value:w,label:"descFontSizeTypeMobile"},fontSize:{value:C,label:"descFontSize"},fontSizeMobile:{value:P,label:"descFontSizeMobile"},fontSizeTablet:{value:x,label:"descFontSizeTablet"},lineHeightType:{value:M,label:"descLineHeightType"},lineHeight:{value:R,label:"descLineHeight"},lineHeightMobile:{value:U,label:"descLineHeightMobile"},lineHeightTablet:{value:B,label:"descLineHeightTablet"},letterSpacing:{value:Ra,label:"descLetterSpacing"},letterSpacingTablet:{value:Ba,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:Ua,label:"descLetterSpacingMobile"},letterSpacingType:{value:Ea,label:"descLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:F,label:"descSpace"},tablet:{value:z,label:"descSpaceTablet"},mobile:{value:D,label:"descSpaceMobile"}},min:0,max:200,unit:{value:N,label:"descSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t})),"all"!==W&&"none"!==W&&!Ka&&React.createElement(Fe,{title:Object(r.__)("Button","ultimate-addons-for-gutenberg"),initialOpen:!1},"text"===W&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:de||"",data:{value:de,label:"ctaBtnLinkColor"},setAttributes:t})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Ne||"",data:{value:Ne,label:"ctaLinkHoverColor"},setAttributes:t}))}),"button"===W&&!Ka&&React.createElement(React.Fragment,null,React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:de||"",data:{value:de,label:"ctaBtnLinkColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:me,label:"ctaBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===me&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:_e||"",data:{value:_e,label:"ctaBgColor"},setAttributes:t})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Ne||"",data:{value:Ne,label:"ctaLinkHoverColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:ye,label:"ctaBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===ye&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ve||"",data:{value:ve,label:"ctaBgHoverColor"},setAttributes:t}))})),("text"===W||"button"===W&&!Ka)&&React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:se,label:"ctaLoadGoogleFonts"},fontFamily:{value:ne,label:"ctaFontFamily"},fontWeight:{value:re,label:"ctaFontWeight"},fontStyle:{value:Je,label:"ctaFontStyle"},transform:{value:Ze,label:"ctaTransform"},decoration:{value:$e,label:"ctaDecoration"},fontSizeType:{value:te,label:"ctaFontSizeType"},fontSizeTypeTablet:{value:le,label:"ctaFontSizeTypeTablet"},fontSizeTypeMobile:{value:ae,label:"ctaFontSizeTypeMobile"},fontSize:{value:ee,label:"ctaFontSize"},fontSizeMobile:{value:ie,label:"ctaFontSizeMobile"},fontSizeTablet:{value:oe,label:"ctaFontSizeTablet"},letterSpacing:{value:Oa,label:"ctaLetterSpacing"},letterSpacingTablet:{value:La,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:Ha,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:ja,label:"ctaLetterSpacingType"},disableLineHeight:!0}),"button"===W&&!Ka&&React.createElement(React.Fragment,null,React.createElement(Hi,{setAttributes:t,prefix:"btn",attributes:a,deviceType:l,disabledBorderTitle:!1}),React.createElement(Pl,nh({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Te,label:"ctaTopPadding"},valueRight:{value:Se,label:"ctaRightPadding"},valueBottom:{value:we,label:"ctaBottomPadding"},valueLeft:{value:ke,label:"ctaLeftPadding"},valueTopTablet:{value:Pe,label:"ctaTopPaddingTablet"},valueRightTablet:{value:xe,label:"ctaRightPaddingTablet"},valueBottomTablet:{value:Ae,label:"ctaBottomPaddingTablet"},valueLeftTablet:{value:Ge,label:"ctaLeftPaddingTablet"},valueTopMobile:{value:Me,label:"ctaTopPaddingMobile"},valueRightMobile:{value:Re,label:"ctaRightPaddingMobile"},valueBottomMobile:{value:Be,label:"ctaBottomPaddingMobile"},valueLeftMobile:{value:Ue,label:"ctaLeftPaddingMobile"},unit:{value:Oe,label:"ctaPaddingUnit"},mUnit:{value:He,label:"mobileCTAPaddingUnit"},tUnit:{value:je,label:"tabletCTAPaddingUnit"},attributes:a,setAttributes:t,link:{value:ze,label:"ctaPaddingLink"}})))),"button"===W&&Xe&&!Qa&&React.createElement(Fe,{title:Object(r.__)("Additional Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:at,label:"secondCtaLoadGoogleFonts"},fontFamily:{value:lt,label:"secondCtaFontFamily"},fontWeight:{value:it,label:"secondCtaFontWeight"},fontStyle:{value:ot,label:"secondCtaFontStyle"},transform:{value:nt,label:"secondCtaFontTransform"},decoration:{value:rt,label:"secondCtaFontDecoration"},fontSizeType:{value:Gt,label:"secondCtaFontSizeType"},fontSizeTypeTablet:{value:Rt,label:"secondCtaFontSizeTypeTablet"},fontSizeTypeMobile:{value:Mt,label:"secondCtaFontSizeTypeMobile"},fontSize:{value:At,label:"secondCtaFontSize"},fontSizeMobile:{value:Bt,label:"secondCtaFontSizeMobile"},fontSizeTablet:{value:Ut,label:"secondCtaFontSizeTablet"},letterSpacing:{value:Fa,label:"secondCtaLetterSpacing"},letterSpacingTablet:{value:za,label:"secondCtaLetterSpacingTablet"},letterSpacingMobile:{value:Da,label:"secondCtaLetterSpacingMobile"},letterSpacingType:{value:Ia,label:"secondCtaLetterSpacingType"},disableLineHeight:!0}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:wt||"",data:{value:wt,label:"secondCtaColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:fe,label:"secondCtaBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===fe&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:kt||"",data:{value:kt,label:"secondCtaBackground"},setAttributes:t})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Pt||"",data:{value:Pt,label:"secondCtaHoverColor"},setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:he,label:"secondCtaBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===he&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:xt||"",data:{value:xt,label:"secondCtaHoverBackground"},setAttributes:t})),disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:t,prefix:"secondCta",attributes:a,deviceType:l,disabledBorderTitle:!1}),React.createElement(Pl,nh({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:st,label:"secondCtaTopPadding"},valueRight:{value:ct,label:"secondCtaRightPadding"},valueBottom:{value:ut,label:"secondCtaBottomPadding"},valueLeft:{value:pt,label:"secondCtaLeftPadding"},valueTopTablet:{value:yt,label:"secondCtaTopTabletPadding"},valueRightTablet:{value:ft,label:"secondCtaRightTabletPadding"},valueBottomTablet:{value:ht,label:"secondCtaBottomTabletPadding"},valueLeftTablet:{value:vt,label:"secondCtaLeftTabletPadding"},valueTopMobile:{value:bt,label:"secondCtaTopMobilePadding"},valueRightMobile:{value:dt,label:"secondCtaRightMobilePadding"},valueBottomMobile:{value:gt,label:"secondCtaBottomMobilePadding"},valueLeftMobile:{value:mt,label:"secondCtaLeftMobilePadding"},unit:{value:_t,label:"secondCtaPaddingUnit"},mUnit:{value:Tt,label:"secondCtaMobilePaddingUnit"},tUnit:{value:Ct,label:"secondCtaTabletPaddingUnit"},attributes:a,setAttributes:t,link:{value:St,label:"secondCtaPaddingLink"}}))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},("right"!==i&&"none"===De&&"Desktop"===l||"right"!==Dt&&"Tablet"===l&&"none"===De||"right"!==Nt&&"Mobile"===l&&"none"===De)&&React.createElement(tl,{label:Object(r.__)("Content And Buttons Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ta,label:"buttonRightSpace"},tablet:{value:Ca,label:"buttonRightSpaceTablet"},mobile:{value:Sa,label:"buttonRightSpaceMobile"}},min:0,max:200,unit:{value:wa,label:"buttonRightSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t}),React.createElement(Pl,nh({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:oa,label:"overallBlockTopPadding"},valueRight:{value:na,label:"overallBlockRightPadding"},valueBottom:{value:ra,label:"overallBlockBottomPadding"},valueLeft:{value:sa,label:"overallBlockLeftPadding"},valueTopTablet:{value:da,label:"overallBlockTopTabletPadding"},valueRightTablet:{value:ga,label:"overallBlockRightTabletPadding"},valueBottomTablet:{value:ma,label:"overallBlockBottomTabletPadding"},valueLeftTablet:{value:ya,label:"overallBlockLeftTabletPadding"},valueTopMobile:{value:ca,label:"overallBlockTopMobilePadding"},valueRightMobile:{value:ua,label:"overallBlockRightMobilePadding"},valueBottomMobile:{value:pa,label:"overallBlockBottomMobilePadding"},valueLeftMobile:{value:ba,label:"overallBlockLeftMobilePadding"},unit:{value:fa,label:"overallBlockPaddingUnit"},mUnit:{value:ha,label:"overallBlockMobilePaddingUnit"},tUnit:{value:va,label:"overallBlockTabletPaddingUnit"},attributes:a,setAttributes:t,link:{value:_a,label:"overallBlockPaddingLink"}})),React.createElement(Pl,nh({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:It,label:"overallBlockTopMargin"},valueRight:{value:Vt,label:"overallBlockRightMargin"},valueBottom:{value:Wt,label:"overallBlockBottomMargin"},valueLeft:{value:qt,label:"overallBlockLeftMargin"},valueTopTablet:{value:Jt,label:"overallBlockTopTabletMargin"},valueRightTablet:{value:Xt,label:"overallBlockRightTabletMargin"},valueBottomTablet:{value:Qt,label:"overallBlockBottomTabletMargin"},valueLeftTablet:{value:ea,label:"overallBlockLeftTabletMargin"},valueTopMobile:{value:Zt,label:"overallBlockTopMobileMargin"},valueRightMobile:{value:$t,label:"overallBlockRightMobileMargin"},valueBottomMobile:{value:Yt,label:"overallBlockBottomMobileMargin"},valueLeftMobile:{value:Kt,label:"overallBlockLeftMobileMargin"},unit:{value:ta,label:"overallBlockMarginUnit"},mUnit:{value:aa,label:"overallBlockMobileMarginUnit"},tUnit:{value:la,label:"overallBlockTabletMarginUnit"},attributes:a,setAttributes:t,link:{value:ia,label:"overallBlockMarginLink"}})))),React.createElement(il,nh({},rl,{parentProps:e}),lc(lh,t,a)))))}),ch=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o}=e;return"not_set"!==a?React.createElement(ge.RichText,{tagName:t.titleTag,placeholder:Object(r.__)("Write a Heading","ultimate-addons-for-gutenberg"),value:t.ctaTitle,className:"uagb-cta__title",onChange:e=>a({ctaTitle:e}),multiline:!1,onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([])}):React.createElement(ge.RichText.Content,{tagName:t.titleTag,value:t.ctaTitle,className:"uagb-cta__title"})},uh=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o}=e,{enableMultilineParagraph:n,description:s}=t,c={allowedBlocks:["core/paragraph"],template:[["core/paragraph",{content:s}]],templateLock:!1,renderAppender:!1};if("not_set"===a&&!n)return React.createElement(ge.RichText.Content,{tagName:"p",value:t.description,className:"uagb-cta__desc"});const u=React.createElement(React.Fragment,null,React.createElement(ge.RichText,{tagName:"p",value:t.description,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-cta__desc",onChange:e=>a({description:e,tempDesc:e}),onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([])})),p=Object(ge.useInnerBlocksProps)({className:"uagb-cta__desc"},c);return React.createElement(React.Fragment,null,n?React.createElement("div",p):u)},ph=e=>{var t,a;const{attributes:l,setAttributes:i}=e;let o="_self";const n="noopener noreferrer";l.ctaTarget&&(o="_blank");const r=l.inheritFromTheme&&"secondary"===l.ctaButtonType,s=r?"ast-outline-button":"wp-block-button__link",c=r?{borderWidth:"revert-layer"}:{},u=r?"div":"a";let p="";l.showIcon&&""!==l.ctaIcon&&(p="not_set"!==i?Ce(l.ctaIcon,i):Ce(l.ctaIcon));let b="/",d=e=>{e.preventDefault()};return("not_set"===i||null!=l&&null!==(t=l.dynamicContent)&&void 0!==t&&null!==(a=t.ctaLink)&&void 0!==a&&a.enable)&&(b=l.ctaLink||"#",d=!1),"not_set"!==i?React.createElement(React.Fragment,null,("button"===l.ctaType||"text"===l.ctaType)&&React.createElement(u,{href:b,className:Be()("uagb-cta__button-link-wrapper","button"===l.ctaType?s:""),target:o,rel:n,style:c,onClick:d},"before"===l.ctaIconPosition&&p,React.createElement(ge.RichText,{value:l.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),onChange:e=>{i({ctaText:e})},allowedFormats:[]}),"after"===l.ctaIconPosition&&p)):React.createElement(React.Fragment,null,("button"===l.ctaType||"text"===l.ctaType)&&React.createElement("a",{href:b,className:Be()("uagb-cta__button-link-wrapper","button"===l.ctaType?s:""),target:o,rel:n,style:c,onClick:d},"before"===l.ctaIconPosition&&p,React.createElement(ge.RichText.Content,{value:l.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,"")}),"after"===l.ctaIconPosition&&p))},bh=e=>{const{attributes:t,setAttributes:a}=e;let l="_self";const i="noopener noreferrer";t.secondCtaTarget&&(l="_blank");const o=t.secInheritFromTheme&&"secondary"===t.secCtaButtonType,n=o?"ast-outline-button":"wp-block-button__link",r=o?{borderWidth:"revert-layer"}:{},s=o?"div":"a";let c="";t.showSecondIcon&&""!==t.secondCtaIcon&&(c="not_set"!==a?Ce(t.secondCtaIcon,a):Ce(t.secondCtaIcon));let u="/",p=e=>{e.preventDefault()};return"not_set"===a&&(u=t.secondCtaLink,p=!1),"not_set"!==a?React.createElement(React.Fragment,null,React.createElement(s,{href:u,className:Be()("uagb-cta-second__button",n),target:l,rel:i,style:r,onClick:p},"before"===t.secondCtaIconPosition&&c,React.createElement(ge.RichText,{value:t.secondCtaLabel.replace(/<(?!br\s*V?)[^>]+>/g,""),onChange:e=>{a({secondCtaLabel:e})},allowedFormats:[]}),"after"===t.secondCtaIconPosition&&c)):React.createElement(React.Fragment,null,React.createElement("a",{href:u,className:Be()("uagb-cta-second__button",n),target:l,rel:i,style:r,onClick:p},"before"===t.secondCtaIconPosition&&c,React.createElement(ge.RichText.Content,{value:t.secondCtaLabel.replace(/<(?!br\s*V?)[^>]+>/g,"")}),"after"===t.secondCtaIconPosition&&c))},dh=a(108),gh=0,mh={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},yh={};yh.locals=dh.a.locals||{},yh.use=function(){return gh++||(rh=ke()(dh.a,mh)),yh},yh.unuse=function(){gh>0&&!--gh&&(rh(),rh=null)};var fh=yh,hh=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(fh.use(),()=>{fh.unuse()}),[]);const{setAttributes:t,attributes:a,deviceType:l}=e,{block_id:i,ctaType:o,enabledSecondCtaButton:n,htmlTag:r}=a,s=r||"div",c=React.createElement(ph,{attributes:a,setAttributes:t}),u="button"===o&&n?React.createElement(bh,{attributes:a,setAttributes:t}):"",p=React.createElement(uh,{attributes:a,setAttributes:t,props:e}),b=React.createElement(ch,{attributes:a,setAttributes:t,props:e}),d=()=>React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-cta__wrap"},b,p),React.createElement("div",{className:"uagb-cta__buttons"},c,u));return React.createElement(s,{className:Be()("uagb-block-"+i,"uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-cta__outer-wrap","button"===o?"wp-block-button":"")},"all"===o&&React.createElement(React.Fragment,null,React.createElement("a",{href:"/",className:"uagb-cta__link-to-all",rel:"noopener noreferrer",onClick:e=>e.preventDefault()}," "),d()),"all"!==o&&d())}),vh=Object(B.memo)(e=>{let{attributes:t}=e;const{secondCtaLoadGoogleFonts:a,ctaLoadGoogleFonts:l,titleLoadGoogleFonts:i,descLoadGoogleFonts:o,secondCtaFontFamily:n,secondCtaFontWeight:r,ctaFontFamily:s,ctaFontWeight:c,titleFontFamily:u,titleFontWeight:p,descFontFamily:b,descFontWeight:d}=t;let g,m,y,f;if(!0===a){const e={google:{families:[n+(r?":"+r:"")]}};f=React.createElement(O,{config:e})}if(!0===l){const e={google:{families:[s+(c?":"+c:"")]}};g=React.createElement(O,{config:e})}if(!0===i){const e={google:{families:[u+(p?":"+p:"")]}};m=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[b+(d?":"+d:"")]}};y=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,g,f,m,y)}),_h=Object(L.compose)(vs,fe,Pc)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{UAGHideDesktop:i,UAGHideTab:o,UAGHideMob:n,ctaPosition:r,stack:s,ctaLeftSpace:c,overallBlockLeftMargin:u,textAlign:p,ctaBorderStyle:b,ctaBorderWidth:d,ctaBorderColor:g,ctaBorderhoverColor:m,ctaBorderRadius:y,globalBlockStyleId:f,enableMultilineParagraph:h,tempDesc:v},clientId:_,name:T,deviceType:C}=e;Object(B.useEffect)(()=>{"none"===s&&"right"===r?a({stack:"none"}):"none"===s&&"below-title"===r&&a({stack:"desktop"}),f||(c&&void 0===u&&"left"===p&&"right"===r&&a({overallBlockLeftMargin:c}),h&&a({description:v}),(d||y||g||m||b)&&ue("btn",{label:"ctaBorderWidth",value:d},{label:"ctaBorderRadius",value:y},{label:"ctaBorderColor",value:g},{label:"ctaBorderhoverColor",value:m},{label:"ctaBorderStyle",value:b},a,l))},[]),Object(B.useEffect)(()=>{Bs()},[C]),Object(B.useEffect)(()=>{he(e)},[i,o,n,C]);const S=Object(B.useMemo)(()=>lh(l,_,T,C),[l,C]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:S}),React.createElement(vh,{attributes:l}),t&&React.createElement(sh,e),React.createElement(hh,e))}),Th=e=>{const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o}=e;return"not_set"!==a?React.createElement(ge.RichText,{tagName:"p",value:t.description,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-cta__desc",onChange:e=>a({description:e}),onMerge:l,onSplit:i?function(e,t){a({content:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>o([])}):React.createElement(ge.RichText.Content,{tagName:"p",value:t.description,className:"uagb-cta__desc"})},Ch=function(e){let t="";return t+="uagb-cta__block ",t+="uagb-cta__icon-position-"+e.ctaPosition+" ","right"===e.ctaPosition&&(t+="uagb-cta__content-right "),"right"===e.ctaPosition&&"none"!==e.stack&&(t+="uagb-cta__content-stacked-"+e.stack+" "),"below-title"!==e.ctaPosition&&(t+="uagb-cta__button-valign-"+e.buttonAlign+" "),"text"!==e.ctaType&&"button"!==e.ctaType&&(t+="uagb-cta__button-type-none "),[t]},Sh=e=>{const{attributes:t,setAttributes:a}=e,l="uagb-cta__block-link uagb-cta__button-link-wrapper uagb-cta-typeof-"+t.ctaType;let i="_self";t.ctaTarget&&(i="_blank");let o="";""!==t.ctaIcon&&(o=React.createElement("span",{className:Be()(`uagb-cta-${t.ctaType}-icon`,"uagb-cta__align-button-"+t.ctaIconPosition)},React.createElement("i",{className:t.ctaIcon})));let n="javascript:void(0)";return"not_set"===a&&(n=t.ctaLink),React.createElement("div",{className:"uagb-cta__link-wrapper uagb-cta__block-link-style"},("button"===t.ctaType||"text"===t.ctaType)&&React.createElement("div",{className:"uagb-cta__button-wrapper"},React.createElement("a",{href:n,className:l,target:i,rel:"noopener noreferrer"},"before"===t.ctaIconPosition&&o,React.createElement("span",{className:"uagb-cta__link-content-inner"},React.createElement("span",null,t.ctaText)),"after"===t.ctaIconPosition&&o)))},wh=e=>{const{attributes:t,setAttributes:a}=e;let l="_self";t.ctaTarget&&(l="_blank");let i="";""!==t.ctaIcon&&(i=React.createElement("span",{className:Be()(`uagb-cta-${t.ctaType}-icon`,"uagb-cta__align-button-"+t.ctaIconPosition,"uagb-cta-with-svg")},Wm(t.ctaIcon)));let o="/";return"not_set"===a&&(o=t.ctaLink),React.createElement("div",{className:"uagb-cta__link-wrapper uagb-cta__block-link-style"},("button"===t.ctaType||"text"===t.ctaType)&&React.createElement("div",{className:Be()("uagb-cta__button-wrapper",t.inheritFromTheme&&"button"===t.ctaType?"wp-block-button":null)},React.createElement("a",{href:o,className:Be()("uagb-cta__button-link-wrapper",t.inheritFromTheme?null:"uagb-cta__block-link",t.inheritFromTheme?null:"uagb-cta-typeof-"+t.ctaType,t.inheritFromTheme&&"button"===t.ctaType?"wp-block-button__link":null),target:l,rel:"noopener noreferrer"},"before"===t.ctaIconPosition&&i,React.createElement("span",{className:"uagb-cta__link-content-inner"},React.createElement("span",null,t.ctaText)),"after"===t.ctaIconPosition&&i)))},kh={showIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},showSecondIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-second-show-icon"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-hover-type"}},secondCtaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"second-btn-bg-type"}},secondCtaBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"second-btn-bg-type"}},inheritFromTheme:{type:"boolean",default:!1},ctaTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:"Call To Action"},classMigrate:{type:"boolean",default:!1},description:{source:"html",selector:"p",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},textAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},descColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},ctaPosition:{type:"string",default:"right",UAGCopyPaste:{styleType:"btn-position"}},titleTag:{type:"string",default:"h3"},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},titleSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-type"}},descSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},descSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit-type"}},block_id:{type:"string",default:"not_set"},buttonAlign:{type:"string",default:"middle",UAGCopyPaste:{styleType:"btn-align"}},ctaTarget:{type:"boolean",default:!1},ctaIcon:{type:"string",default:""},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},ctaType:{type:"string",default:"button"},ctaText:{type:"html",default:"Read More"},ctaLink:{type:"string",default:"#"},ctaFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"},default:14},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",UAGCopyPaste:{styleType:"btn-font-family"},default:"Default"},ctaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",UAGCopyPaste:{styleType:"btn-font-style"},default:"normal"},ctaTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},contentWidth:{type:"number",default:70,UAGCopyPaste:{styleType:"desc-width"}},contentWidthTablet:{type:"number",UAGCopyPaste:{styleType:"desc-width"}},contentWidthMobile:{type:"number",UAGCopyPaste:{styleType:"desc-width"}},contentWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-width-type"}},ctaBtnLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBtnVertPadding:{type:"number",UAGCopyPaste:{styleType:"btn-vertical-padding"},default:""},ctaBtnHrPadding:{type:"number",UAGCopyPaste:{styleType:"btn-horizontal-padding"},default:""},stack:{type:"string",default:"tablet"},ctaLeftSpace:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-right-margin"}},ctaTopPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},ctaBottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},ctaLeftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},ctaRightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},ctaLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},ctaRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},ctaTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},ctaBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},ctaLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},ctaRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},ctaTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},ctaBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},ctaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobileCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},ctaPaddingLink:{type:"boolean",default:!1},enabledSecondCtaButton:{type:"boolean",default:!1},secondCtaLabel:{type:"html",default:"Click Here"},secondCtaLink:{type:"string",default:"#"},secondCtaTarget:{type:"boolean",default:!1},secondCtaLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},secondCtaFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},secondCtaFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},secondCtaFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},secondCtaFontTransform:{type:"string",UAGCopyPaste:{styleType:"btn-font-transform"}},secondCtaFontDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-font-decoration"}},secondCtaTopPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},secondCtaRightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},secondCtaBottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},secondCtaLeftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},secondCtaTopMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},secondCtaRightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},secondCtaBottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},secondCtaLeftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},secondCtaTopTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},secondCtaRightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},secondCtaBottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},secondCtaLeftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},secondCtaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},secondCtaMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},secondCtaTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},secondCtaPaddingLink:{type:"boolean",default:!1},secondCtaBorderWidth:{type:"number",default:""},secondCtaBorderRadius:{type:"number",default:""},secondCtaBorderStyle:{type:"string",default:"none"},secondCtaBorderColor:{type:"string",default:""},secondCtaBorderHColor:{type:"string",default:""},secondCtaColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},secondCtaBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-bg-color"}},secondCtaHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},secondCtaHoverBackground:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-h-background"}},secondCtaFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-size"},default:14},secondCtaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},secondCtaFontSizeMobile:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-mobile"}},secondCtaFontSizeTablet:{type:"number",default:"",UAGCopyPaste:{styleType:"btn-size-tablet"}},secondCtaIcon:{type:"string",default:""},secondCtaIconPosition:{type:"string",default:"after"},secondCtaIconSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"btn-icon-space"}},secondCtaIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},secondCtaIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},isPreview:{type:"boolean",default:!1},stackBtn:{type:"string",default:"none"},gapBtn:{type:"number",default:15},gapBtnTablet:{type:"number"},gapBtnMobile:{type:"number"},textAlignTablet:{type:"string",default:"center"},textAlignMobile:{type:"string",default:"center"},overallBlockTopPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},overallBlockRightPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},overallBlockBottomPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},overallBlockLeftPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},overallBlockTopMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},overallBlockRightMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},overallBlockBottomMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},overallBlockLeftMobilePadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},overallBlockTopTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},overallBlockRightTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},overallBlockBottomTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},overallBlockLeftTabletPadding:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},overallBlockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},overallBlockMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},overallBlockTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},overallBlockPaddingLink:{type:"boolean",default:!1},overallBlockTopMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin"}},overallBlockRightMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin"}},overallBlockBottomMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin"}},overallBlockLeftMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin"}},overallBlockTopMobileMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},overallBlockRightMobileMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},overallBlockBottomMobileMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},overallBlockLeftMobileMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},overallBlockTopTabletMargin:{type:"number",UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},overallBlockRightTabletMargin:{type:"number",UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},overallBlockBottomTabletMargin:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},overallBlockLeftTabletMargin:{type:"number",UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},overallBlockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit"}},overallBlockMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-mobile"}},overallBlockTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-tablet"}},overallBlockMarginLink:{type:"boolean",default:!1},buttonRightSpace:{type:"number",default:10,UAGCopyPaste:{styleType:"main-button-bottom-margin"}},buttonRightSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"main-button-bottom-margin-tablet"}},buttonRightSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"main-button-bottom-margin-mobile"}},buttonRightSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-button-unit-type"}},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string",default:""},ctaBorderStyle:{type:"string",default:"solid"},...ce("btn"),...ce("secondCta"),titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},ctaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},secondCtaLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"secondCta-letter-spacing"}},secondCtaLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"secondCta-letter-spacing-tablet"}},secondCtaLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"secondCta-letter-spacing-mobile"}},secondCtaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"secondCta-letter-spacing-type"}}},Ph=e=>{const{attributes:t,setAttributes:a}=e;let l="_self";const i="noopener noreferrer";t.ctaTarget&&(l="_blank");let o="";t.showIcon&&""!==t.ctaIcon&&(o="not_set"!==a?Ce(t.ctaIcon,a):Ce(t.ctaIcon));let n="/",r=e=>{e.preventDefault()};return"not_set"===a&&(n=t.ctaLink,r=!1),"not_set"!==a?React.createElement(React.Fragment,null,("button"===t.ctaType||"text"===t.ctaType)&&React.createElement("a",{href:n,className:Be()("uagb-cta__button-link-wrapper","button"===t.ctaType?"wp-block-button__link":""),target:l,rel:i,onClick:r},"before"===t.ctaIconPosition&&o,React.createElement(ge.RichText,{value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,""),onChange:e=>{a({ctaText:e})},allowedFormats:[]}),"after"===t.ctaIconPosition&&o)):React.createElement(React.Fragment,null,("button"===t.ctaType||"text"===t.ctaType)&&React.createElement("a",{href:n,className:Be()("uagb-cta__button-link-wrapper","button"===t.ctaType?"wp-block-button__link":""),target:l,rel:i,onClick:r},"before"===t.ctaIconPosition&&o,React.createElement(ge.RichText.Content,{value:t.ctaText.replace(/<(?!br\s*V?)[^>]+>/g,"")}),"after"===t.ctaIconPosition&&o))};const xh=ce("btn"),Ah=ce("secondCta");var Gh=[{attributes:kh,save(e){const{ctaPosition:t,block_id:a,ctaType:l,ctaLink:i,ctaTarget:o,className:n,ctaTitle:r,description:s}=e.attributes,c=React.createElement(Sh,{attributes:e.attributes,setAttributes:"not_set"}),u=React.createElement(React.Fragment,null,""!==s&&React.createElement("div",{className:"uagb-cta-text-wrap"},React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"}))),p=React.createElement(React.Fragment,null,""!==r&&React.createElement("div",{className:"uagb-cta__title-wrap"},React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"}))),b=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-cta__content-wrap",...Ch(e.attributes))},React.createElement("div",{className:"uagb-cta__left-right-wrap"},"left"==t&&c,React.createElement("div",{className:"uagb-cta__content"},"above-title"==t&&React.createElement(React.Fragment,null,c,p,u),"below-title"==t&&React.createElement(React.Fragment,null,p,u,c),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,p,u)),"right"==t&&c)));let d="";return o&&(d="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(n,"uagb-cta__outer-wrap"),id:"uagb-cta-block-"+a},"all"==l&&React.createElement(React.Fragment,null,React.createElement("a",{href:i,className:"uagb-cta__block-link-wrap uagb-cta__link-to-all",target:d,rel:"noopener noreferrer"}),b),"all"!==l&&b))}},{attributes:kh,save(e){const{ctaPosition:t,block_id:a,ctaType:l,ctaLink:i,ctaTarget:o,className:n,ctaTitle:r,description:s}=e.attributes,c=React.createElement(wh,{attributes:e.attributes,setAttributes:"not_set"}),u=React.createElement(React.Fragment,null,""!==s&&React.createElement("div",{className:"uagb-cta-text-wrap"},React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"}))),p=React.createElement(React.Fragment,null,""!==r&&React.createElement("div",{className:"uagb-cta__title-wrap"},React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"}))),b=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-cta__content-wrap",...Ch(e.attributes))},React.createElement("div",{className:"uagb-cta__left-right-wrap"},"left"==t&&c,React.createElement("div",{className:"uagb-cta__content"},"above-title"==t&&React.createElement(React.Fragment,null,c,p,u),"below-title"==t&&React.createElement(React.Fragment,null,p,u,c),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,p,u)),"right"==t&&c)));let d="";return o&&(d="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(n,"uagb-cta__outer-wrap"),id:"uagb-cta-block-"+a},"all"==l&&React.createElement(React.Fragment,null,React.createElement("a",{href:i,className:"uagb-cta__block-link-wrap uagb-cta__link-to-all",target:d,rel:"noopener noreferrer"}),b),"all"!==l&&b))}},{attributes:kh,save(e){const{ctaPosition:t,block_id:a,ctaType:l,ctaLink:i,ctaTarget:o,className:n,ctaTitle:r,description:s}=e.attributes,c=React.createElement(wh,{attributes:e.attributes,setAttributes:"not_set"}),u=React.createElement(React.Fragment,null,""!==s&&React.createElement("div",{className:"uagb-cta-text-wrap"},React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"}))),p=React.createElement(React.Fragment,null,""!==r&&React.createElement("div",{className:"uagb-cta__title-wrap"},React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"}))),b=React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-cta__content-wrap",...Ch(e.attributes))},React.createElement("div",{className:"uagb-cta__left-right-wrap"},"left"==t&&c,React.createElement("div",{className:"uagb-cta__content"},"above-title"==t&&React.createElement(React.Fragment,null,c,p,u),"below-title"==t&&React.createElement(React.Fragment,null,p,u,c),("left"==t||"right"==t)&&React.createElement(React.Fragment,null,p,u)),"right"==t&&c)));let d="";return o&&(d="_blank"),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(n,"uagb-cta__outer-wrap","uagb-block-"+a)},"all"==l&&React.createElement(React.Fragment,null,React.createElement("a",{href:i,className:"uagb-cta__block-link-wrap uagb-cta__link-to-all",target:d,rel:"noopener noreferrer"}),b),"all"!==l&&b))}},{attributes:kh,save(e){const{block_id:t,ctaType:a,ctaLink:l,ctaTarget:i,ctaTitle:o,description:n,enabledSecondCtaButton:r}=e.attributes,s=React.createElement(ph,{attributes:e.attributes,setAttributes:"not_set"}),c="button"===a&&r?React.createElement(bh,{attributes:e.attributes,setAttributes:"not_set"}):"",u=React.createElement(React.Fragment,null,""!==n&&React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"})),p=React.createElement(React.Fragment,null,""!==o&&React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"})),b=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-cta__wrap"},p,u),React.createElement("div",{className:"uagb-cta__buttons"},s,c));let d="";return i&&(d="_blank"),React.createElement("div",{className:Be()("uagb-block-"+t,"button"===a?"wp-block-button":"")},"all"===a&&React.createElement(React.Fragment,null,React.createElement("a",{href:l,className:"uagb-cta__link-to-all",target:d,rel:"noopener noreferrer"}),b),"all"!==a&&b)}},{attributes:kh,saveV2_7_0:function(e){const{block_id:t,ctaType:a,ctaLink:l,ctaTarget:i,ctaTitle:o,description:n,enabledSecondCtaButton:r}=e.attributes,s=React.createElement(Ph,{attributes:e.attributes,setAttributes:"not_set"}),c="button"===a&&r?React.createElement(bh,{attributes:e.attributes,setAttributes:"not_set"}):"",u=React.createElement(React.Fragment,null,""!==n&&React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"})),p=React.createElement(React.Fragment,null,""!==o&&React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"})),b=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-cta__wrap"},p,u),React.createElement("div",{className:"uagb-cta__buttons"},s,c));let d="";return i&&(d="_blank"),React.createElement("div",{className:Be()("uagb-block-"+t,"button"===a?"wp-block-button":"")},"all"===a&&React.createElement(React.Fragment,null,React.createElement("a",{href:l,className:"uagb-cta__link-to-all",target:d,rel:"noopener noreferrer"}),b),"all"!==a&&b)}},{attributes:{inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},ctaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"cta-btn-type"}},secCtaButtonType:{type:"string",default:"primary",UAGCopyPaste:{styleType:"sec-cta-btn-type"}},secInheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},ctaTitle:{source:"html",selector:"h1,h2,h3,h4,h5,h6",default:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg")},classMigrate:{type:"boolean",default:!1},description:{source:"html",selector:"p",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")},textAlign:{type:"string",default:"left",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-align"}},titleColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-color"}},descColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-color"}},ctaPosition:{type:"string",default:"right",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-position"}},titleTag:{type:"string",default:"h3"},titleFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-tablet"}},titleFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type-mobile"}},titleFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-font-style"}},titleTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-decoration"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},descFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-tablet"}},descFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type-mobile"}},descFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-decoration"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin"}},titleSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},titleSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},titleSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-type"}},descSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin"}},descSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},descSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit-type"}},block_id:{type:"string",default:"not_set"},buttonAlign:{type:"string",default:"middle",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-align"}},ctaTarget:{type:"boolean",default:!1},showIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-show-icon"}},showSecondIcon:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"btn-second-show-icon"}},ctaIcon:{type:"string",default:"right-long"},ctaIconPosition:{type:"string",default:"after"},ctaIconSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},ctaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},htmlTag:{type:"string",default:"div"},ctaType:{type:"string",default:"button"},ctaText:{type:"html",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},ctaLink:{type:"string",default:"#"},ctaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size"}},ctaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},ctaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-tablet"}},ctaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type-mobile"}},ctaFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},ctaFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},ctaFontFamily:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"},default:"Default"},ctaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},ctaFontStyle:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"},default:"normal"},ctaTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-transform"}},ctaDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-decoration"}},ctaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},contentWidth:{type:"number",default:70,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},contentWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-width-type"}},ctaBtnLinkColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},ctaLinkHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},ctaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-bg-type"}},ctaBgHoverType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-type"}},secondCtaBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"second-btn-bg-type"}},secondCtaBgHoverType:{type:"string",default:"color",isGBSStyle:!0,UAGCopyPaste:{styleType:"second-btn-bg-type"}},ctaBgColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},ctaBgHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-hover-color"}},ctaBtnVertPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-vertical-padding"},default:""},ctaBtnHrPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-horizontal-padding"},default:""},stack:{type:"string",default:"tablet"},ctaLeftSpace:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},ctaTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},ctaBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},ctaLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},ctaRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},ctaLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},ctaRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},ctaTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},ctaBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},ctaLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},ctaRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},ctaTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},ctaBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},ctaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},mobileCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},tabletCTAPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},ctaPaddingLink:{type:"boolean",default:!1},enabledSecondCtaButton:{type:"boolean",default:!1},secondCtaLabel:{type:"html",default:Object(r.__)("Click Here","ultimate-addons-for-gutenberg")},secondCtaLink:{type:"string",default:"#"},secondCtaTarget:{type:"boolean",default:!1},secondCtaLoadGoogleFonts:{type:"boolean",default:!1,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},secondCtaFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-family"}},secondCtaFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-weight"}},secondCtaFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-style"}},secondCtaFontTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-transform"}},secondCtaFontDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-font-decoration"}},secondCtaTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},secondCtaRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},secondCtaBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},secondCtaLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},secondCtaTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},secondCtaRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},secondCtaBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},secondCtaLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},secondCtaTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},secondCtaRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},secondCtaBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},secondCtaLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},secondCtaPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},secondCtaMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},secondCtaTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},secondCtaPaddingLink:{type:"boolean",default:!1},secondCtaBorderWidth:{type:"number",default:""},secondCtaBorderRadius:{type:"number",default:""},secondCtaBorderStyle:{type:"string",default:"none"},secondCtaBorderColor:{type:"string",default:""},secondCtaBorderHColor:{type:"string",default:""},secondCtaColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-color"}},secondCtaBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bg-color"}},secondCtaHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-hover-color"}},secondCtaHoverBackground:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-h-background"}},secondCtaFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size"},default:14},secondCtaFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},secondCtaFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-tablet"}},secondCtaFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit-mobile"}},secondCtaFontSizeMobile:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-mobile"}},secondCtaFontSizeTablet:{type:"number",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-size-tablet"}},secondCtaIcon:{type:"string",default:"right-long"},secondCtaIconPosition:{type:"string",default:"after"},secondCtaIconSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space"}},secondCtaIconSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-tablet"}},secondCtaIconSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-icon-space-mobile"}},isPreview:{type:"boolean",default:!1},stackBtn:{type:"string",default:"none"},gapBtn:{type:"number",default:15},gapBtnTablet:{type:"number"},gapBtnMobile:{type:"number"},textAlignTablet:{type:"string",default:"center"},textAlignMobile:{type:"string",default:"center"},overallBlockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding"}},overallBlockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding"}},overallBlockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding"}},overallBlockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding"}},overallBlockTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},overallBlockRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},overallBlockBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},overallBlockLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},overallBlockTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},overallBlockRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},overallBlockBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},overallBlockLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},overallBlockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit"}},overallBlockMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"}},overallBlockTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},overallBlockPaddingLink:{type:"boolean",default:!1},overallBlockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin"}},overallBlockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin"}},overallBlockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin"}},overallBlockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin"}},overallBlockTopMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-mobile"}},overallBlockRightMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-mobile"}},overallBlockBottomMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-mobile"}},overallBlockLeftMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-mobile"}},overallBlockTopTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-top-margin-tablet"}},overallBlockRightTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-right-margin-tablet"}},overallBlockBottomTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-bottom-margin-tablet"}},overallBlockLeftTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"btn-left-margin-tablet"}},overallBlockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit"}},overallBlockMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-mobile"}},overallBlockTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-margin-unit-tablet"}},overallBlockMarginLink:{type:"boolean",default:!1},buttonRightSpace:{type:"number",default:10,isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin"}},buttonRightSpaceTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin-tablet"}},buttonRightSpaceMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-button-bottom-margin-mobile"}},buttonRightSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-button-unit-type"}},ctaBorderWidth:{type:"number",default:1},ctaBorderRadius:{type:"number",default:0},ctaBorderColor:{type:"string",default:"#333"},ctaBorderhoverColor:{type:"string",default:""},ctaBorderStyle:{type:"string",default:"solid"},...xh,...Ah,titleLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},ctaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing"}},ctaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-tablet"}},ctaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"cta-letter-spacing-mobile"}},ctaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"cta-letter-spacing-type"}},secondCtaLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing"}},secondCtaLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing-tablet"}},secondCtaLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"secondCta-letter-spacing-mobile"}},secondCtaLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"secondCta-letter-spacing-type"}},btncontentWidth:{type:"number",default:30,isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"desc-width"}},btncontentWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"desc-width-type"}}},save:function(e){const{block_id:t,htmlTag:a,ctaType:l,ctaLink:i,ctaTarget:o,ctaTitle:n,description:r,enabledSecondCtaButton:s}=e.attributes,c=React.createElement(ph,{attributes:e.attributes,setAttributes:"not_set"}),u="button"===l&&s?React.createElement(bh,{attributes:e.attributes,setAttributes:"not_set"}):"",p=React.createElement(React.Fragment,null,""!==r&&React.createElement(Th,{attributes:e.attributes,setAttributes:"not_set"})),b=React.createElement(React.Fragment,null,""!==n&&React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"})),d=a||"div",g=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-cta__wrap"},b,p),React.createElement("div",{className:"uagb-cta__buttons"},c,u));let m="";return o&&(m="_blank"),React.createElement(d,{className:Be()("uagb-block-"+t,"button"===l?"wp-block-button":"")},"all"===l&&React.createElement(React.Fragment,null,React.createElement("a",{href:i,className:"uagb-cta__link-to-all",target:m,rel:"noopener noreferrer"}),g),"all"!==l&&g)}}];a(213);let Mh={};Mh=Object(j.applyFilters)("uagb/call-to-action",ws(Mh)),Object(be.registerBlockType)("uagb/call-to-action",{...Mh,title:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a button along with heading and description.","ultimate-addons-for-gutenberg"),icon:se.call_to_action,keywords:[Object(r.__)("cta","ultimate-addons-for-gutenberg"),Object(r.__)("call to action","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Ot,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"call-to-action"}):React.createElement(_h,e),save:function(e){const{block_id:t,htmlTag:a,ctaType:l,ctaLink:i,ctaTarget:o,ctaTitle:n,description:r,enabledSecondCtaButton:s,enableMultilineParagraph:c}=e.attributes,u=React.createElement(ph,{attributes:e.attributes,setAttributes:"not_set"}),p="button"===l&&s?React.createElement(bh,{attributes:e.attributes,setAttributes:"not_set"}):"",b=c?React.createElement("div",{className:"uagb-cta__desc"}," ",React.createElement(ge.InnerBlocks.Content,null)," "):""!==r&&React.createElement(uh,{attributes:e.attributes,setAttributes:"not_set"}),d=React.createElement(React.Fragment,null,""!==n&&React.createElement(ch,{attributes:e.attributes,setAttributes:"not_set"})),g=a||"div",m=React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-cta__wrap"},d,b),React.createElement("div",{className:"uagb-cta__buttons"},u,p));let y="";return o&&(y="_blank"),React.createElement(g,{className:Be()("uagb-block-"+t,"button"===l?"wp-block-button":"")},"all"===l&&React.createElement(React.Fragment,null,React.createElement("a",{href:i,className:"uagb-cta__link-to-all",target:y,rel:"noopener noreferrer"}),m),"all"!==l&&m)},deprecated:Gh});var Rh=function(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=a.replace("uagb/",""),n=l.toLowerCase(),{block_id:r,iconSize:s,iconSizeTablet:c,iconSizeMobile:u,iconSizeUnit:p,align:b,alignTablet:d,alignMobile:g,rotation:m,rotationUnit:y,iconColor:f,iconBackgroundColorType:h,iconBackgroundColor:v,iconBackgroundGradientColor:_,iconHoverColor:T,iconHoverBackgroundColorType:C,iconHoverBackgroundColor:S,iconHoverBackgroundGradientColor:w,iconTopPadding:k,iconRightPadding:P,iconBottomPadding:x,iconLeftPadding:A,iconTopTabletPadding:G,iconRightTabletPadding:M,iconBottomTabletPadding:R,iconLeftTabletPadding:B,iconTopMobilePadding:U,iconRightMobilePadding:E,iconBottomMobilePadding:O,iconLeftMobilePadding:L,iconPaddingUnit:H,iconMobilePaddingUnit:j,iconTabletPaddingUnit:F,iconTopMargin:z,iconRightMargin:D,iconBottomMargin:N,iconLeftMargin:I,iconTopTabletMargin:V,iconRightTabletMargin:W,iconBottomTabletMargin:q,iconLeftTabletMargin:Z,iconTopMobileMargin:$,iconRightMobileMargin:Y,iconBottomMobileMargin:K,iconLeftMobileMargin:J,iconMarginUnit:X,iconMobileMarginUnit:Q,iconTabletMarginUnit:ee,iconBorderStyle:te,iconBorderColor:le,iconBorderHColor:ie,iconShadowColor:oe,iconShadowHOffset:ne,iconShadowVOffset:re,iconShadowBlur:se,useSeparateBoxShadows:ce,iconBoxShadowColor:ue,iconBoxShadowHOffset:pe,iconBoxShadowVOffset:be,iconBoxShadowBlur:de,iconBoxShadowSpread:ge,iconBoxShadowPosition:me,iconBoxShadowColorHover:ye,iconBoxShadowHOffsetHover:fe,iconBoxShadowVOffsetHover:he,iconBoxShadowBlurHover:ve,iconBoxShadowSpreadHover:_e,iconBoxShadowPositionHover:Te}=e,Ce=Ps(s,"iconSize",o),Se=ns(Ps(m,"rotation",o),y),we="classic"===h?v:_,ke="classic"===C?S:w,Pe=cs({horizontal:ne,vertical:re,blur:se,color:oe}),xe=cs({horizontal:pe,vertical:be,blur:de,spread:ge,color:ue,position:me}),Ae=cs({horizontal:fe,vertical:he,blur:ve,spread:_e,color:ye,position:Te,altColor:ue}),Ge={".uagb-icon-wrapper":{"text-align":b},".uagb-icon-wrapper svg":{width:ns(Ce,p),height:ns(Ce,p),"box-sizing":"content-box",transform:`rotate(${Se})`,fill:f,filter:Pe?`drop-shadow( ${Pe} )`:""},".uagb-icon-wrapper .uagb-svg-wrapper":{display:"inline-flex",background:we,"padding-top":ns(k,H),"padding-right":ns(P,H),"padding-bottom":ns(x,H),"padding-left":ns(A,H),"border-style":te,"border-color":le,...rs(e,"icon"),"box-shadow":xe},".uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper":{"margin-top":ns(z,X),"margin-right":ns(D,X),"margin-bottom":ns(N,X),"margin-left":ns(I,X)},".uagb-icon-wrapper .uagb-svg-wrapper:hover":{"border-color":ie,background:ke},".uagb-icon-wrapper .uagb-svg-wrapper:hover svg":{fill:T}};ce&&(Ge[".uagb-icon-wrapper .uagb-svg-wrapper:hover"]={"box-shadow":Ae,background:ke,"border-color":ie});const Me={".uagb-icon-wrapper":{"text-align":d},".uagb-icon-wrapper .uagb-svg-wrapper":{"padding-top":ns(G,F),"padding-right":ns(M,F),"padding-bottom":ns(R,F),"padding-left":ns(B,F),...rs(e,"icon","tablet")},".uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper":{"margin-top":ns(V,ee),"margin-right":ns(W,ee),"margin-bottom":ns(q,ee),"margin-left":ns(Z,ee)},".uagb-icon-wrapper .uagb-svg-wrapper svg":{width:ns(c,p),height:ns(c,p)}},Re={".uagb-icon-wrapper":{"text-align":g},".uagb-icon-wrapper .uagb-svg-wrapper":{"padding-top":ns(U,j),"padding-right":ns(E,j),"padding-bottom":ns(O,j),"padding-left":ns(L,j),...rs(e,"icon","mobile")},".uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper":{"margin-top":ns($,Q),"margin-right":ns(Y,Q),"margin-bottom":ns(K,Q),"margin-left":ns(J,Q)},".uagb-icon-wrapper .uagb-svg-wrapper svg":{width:ns(u,p),height:ns(u,p)}};let Be="";const Ue=i||".uagb-block-"+r;return Be=ae(Ge,Ue),("tablet"===n||"mobile"===n||i)&&(Be+=ae(Me,""+Ue,!0,"tablet"),("mobile"===n||i)&&(Be+=ae(Re,""+Ue,!0,"mobile"))),Be};const Bh=[{defaultAttributes:Tt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:2},{label:"iconShadowVOffset",value:4},{label:"iconShadowBlur",value:3}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:0},{label:"iconShadowVOffset",value:5},{label:"iconShadowBlur",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:0},{label:"iconShadowVOffset",value:2},{label:"iconShadowBlur",value:3}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:0},{label:"iconShadowVOffset",value:1},{label:"iconShadowBlur",value:3}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:0},{label:"iconShadowVOffset",value:5},{label:"iconShadowBlur",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"iconShadowHOffset",value:0},{label:"iconShadowVOffset",value:5},{label:"iconShadowBlur",value:8}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Uh=[{defaultAttributes:Tt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:3},{label:"iconBoxShadowVOffset",value:8},{label:"iconBoxShadowBlur",value:12},{label:"iconBoxShadowSpread",value:0},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:0},{label:"iconBoxShadowVOffset",value:18},{label:"iconBoxShadowBlur",value:40},{label:"iconBoxShadowSpread",value:-10},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:0},{label:"iconBoxShadowVOffset",value:4},{label:"iconBoxShadowBlur",value:12},{label:"iconBoxShadowSpread",value:0},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:0},{label:"iconBoxShadowVOffset",value:2},{label:"iconBoxShadowBlur",value:5},{label:"iconBoxShadowSpread",value:-1},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:0},{label:"iconBoxShadowVOffset",value:50},{label:"iconBoxShadowBlur",value:50},{label:"iconBoxShadowSpread",value:-30},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffset",value:0},{label:"iconBoxShadowVOffset",value:20},{label:"iconBoxShadowBlur",value:30},{label:"iconBoxShadowSpread",value:0},{label:"iconBoxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Eh=[{defaultAttributes:Tt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:3},{label:"iconBoxShadowVOffsetHover",value:8},{label:"iconBoxShadowBlurHover",value:12},{label:"iconBoxShadowSpreadHover",value:0},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:0},{label:"iconBoxShadowVOffsetHover",value:18},{label:"iconBoxShadowBlurHover",value:40},{label:"iconBoxShadowSpreadHover",value:-10},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:0},{label:"iconBoxShadowVOffsetHover",value:4},{label:"iconBoxShadowBlurHover",value:12},{label:"iconBoxShadowSpreadHover",value:0},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:0},{label:"iconBoxShadowVOffsetHover",value:2},{label:"iconBoxShadowBlurHover",value:5},{label:"iconBoxShadowSpreadHover",value:-1},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:0},{label:"iconBoxShadowVOffsetHover",value:50},{label:"iconBoxShadowBlurHover",value:50},{label:"iconBoxShadowSpreadHover",value:-30},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBoxShadowHOffsetHover",value:0},{label:"iconBoxShadowVOffsetHover",value:20},{label:"iconBoxShadowBlurHover",value:30},{label:"iconBoxShadowSpreadHover",value:0},{label:"iconBoxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Oh=[{defaultAttributes:Tt},{defaultPresetAttributes:[{label:"iconBackgroundColor"},{label:"iconBorderTopLeftRadius"},{label:"iconBorderTopRightRadius"},{label:"iconBorderBottomRightRadius"},{label:"iconBorderBottomLeftRadius"},{label:"iconBorderTopWidth"},{label:"iconBorderRightWidth"},{label:"iconBorderBottomWidth"},{label:"iconBorderLeftWidth"},{label:"iconBorderStyle"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBackgroundColor",value:"#DCF1FF"},{label:"iconBorderStyle",value:""},{label:"iconBorderTopLeftRadius",value:50},{label:"iconBorderTopRightRadius",value:50},{label:"iconBorderBottomRightRadius",value:50},{label:"iconBorderBottomLeftRadius",value:50},{label:"iconTopPadding",value:12},{label:"iconRightPadding",value:12},{label:"iconBottomPadding",value:12},{label:"iconLeftPadding",value:12}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><circle cx="162.619" cy="136.119" r="30" fill="#B6B6B6"/><path d="M161.512 118.9C161.922 117.917 163.316 117.917 163.726 118.9L167.605 128.193C167.778 128.608 168.168 128.891 168.615 128.927L178.652 129.744C179.715 129.831 180.145 131.156 179.336 131.851L171.697 138.412C171.356 138.704 171.207 139.162 171.311 139.599L173.635 149.397C173.881 150.434 172.754 151.254 171.844 150.699L163.243 145.461C162.86 145.227 162.378 145.227 161.995 145.461L153.394 150.699C152.484 151.254 151.356 150.434 151.602 149.397L153.927 139.599C154.031 139.162 153.882 138.704 153.541 138.412L145.901 131.851C145.093 131.156 145.523 129.831 146.586 129.744L156.623 128.927C157.07 128.891 157.46 128.608 157.633 128.193L161.512 118.9Z" fill="white"/></svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBackgroundColor",value:""},{label:"iconBorderStyle",value:"solid"},{label:"iconBorderTopLeftRadius",value:50},{label:"iconBorderTopRightRadius",value:50},{label:"iconBorderBottomRightRadius",value:50},{label:"iconBorderBottomLeftRadius",value:50},{label:"iconBorderTopWidth",value:2},{label:"iconBorderRightWidth",value:2},{label:"iconBorderBottomWidth",value:2},{label:"iconBorderLeftWidth",value:2},{label:"iconTopPadding",value:12},{label:"iconRightPadding",value:12},{label:"iconBottomPadding",value:12},{label:"iconLeftPadding",value:12}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><path d="M192.119 136C192.119 152.225 178.913 165.381 162.619 165.381C146.325 165.381 133.119 152.225 133.119 136C133.119 119.775 146.325 106.619 162.619 106.619C178.913 106.619 192.119 119.775 192.119 136Z" stroke="#959595" fill="none"/><path d="M161.512 118.848C161.924 117.867 163.314 117.867 163.726 118.848L167.604 128.105C167.778 128.518 168.167 128.801 168.614 128.837L178.643 129.65C179.707 129.736 180.137 131.064 179.326 131.758L171.699 138.281C171.357 138.574 171.208 139.033 171.312 139.471L173.634 149.219C173.881 150.255 172.755 151.075 171.844 150.523L163.241 145.304C162.859 145.072 162.379 145.072 161.996 145.304L153.394 150.523C152.483 151.075 151.357 150.255 151.604 149.219L153.926 139.471C154.03 139.033 153.88 138.574 153.538 138.281L145.912 131.758C145.101 131.064 145.531 129.736 146.595 129.65L156.624 128.837C157.071 128.801 157.46 128.518 157.633 128.105L161.512 118.848Z" fill="#B6B6B6"/></svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBackgroundColor",value:"#DCF1FF"},{label:"iconBorderStyle",value:""},{label:"iconBorderTopLeftRadius",value:6},{label:"iconBorderTopRightRadius",value:6},{label:"iconBorderBottomRightRadius",value:6},{label:"iconBorderBottomLeftRadius",value:6},{label:"iconTopPadding",value:12},{label:"iconRightPadding",value:12},{label:"iconBottomPadding",value:12},{label:"iconLeftPadding",value:12}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><rect x="132.902" y="106" width="60.1963" height="60" rx="5" fill="#B6B6B6"/><path d="M161.893 118.849C162.305 117.867 163.695 117.867 164.107 118.849L167.986 128.105C168.159 128.519 168.548 128.801 168.995 128.837L179.024 129.651C180.088 129.737 180.518 131.065 179.707 131.759L172.081 138.282C171.738 138.574 171.589 139.034 171.693 139.472L174.015 149.219C174.262 150.256 173.136 151.076 172.225 150.523L163.622 145.304C163.24 145.072 162.76 145.072 162.378 145.304L153.775 150.523C152.864 151.076 151.738 150.256 151.985 149.219L154.307 139.472C154.411 139.034 154.261 138.574 153.919 138.282L146.293 131.759C145.482 131.065 145.912 129.737 146.976 129.651L157.005 128.837C157.452 128.801 157.841 128.519 158.014 128.105L161.893 118.849Z" fill="white"/></svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"iconBackgroundColor",value:""},{label:"iconBorderStyle",value:"solid"},{label:"iconBorderTopWidth",value:2},{label:"iconBorderRightWidth",value:2},{label:"iconBorderBottomWidth",value:2},{label:"iconBorderLeftWidth",value:2},{label:"iconTopPadding",value:12},{label:"iconRightPadding",value:12},{label:"iconBottomPadding",value:12},{label:"iconLeftPadding",value:12}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><rect x="133.402" y="106.5" width="59.1963" height="59" rx="4.5" stroke="#959595" fill="none"/><path d="M161.893 118.849C162.305 117.867 163.695 117.867 164.107 118.849L167.986 128.105C168.159 128.519 168.548 128.801 168.995 128.837L179.024 129.651C180.088 129.737 180.518 131.065 179.707 131.759L172.081 138.282C171.738 138.574 171.589 139.034 171.693 139.472L174.015 149.219C174.262 150.256 173.136 151.076 172.225 150.523L163.622 145.304C163.24 145.072 162.76 145.072 162.378 145.304L153.775 150.523C152.864 151.076 151.738 150.256 151.985 149.219L154.307 139.472C154.411 139.034 154.261 138.574 153.919 138.282L146.293 131.759C145.482 131.065 145.912 129.737 146.976 129.651L157.005 128.837C157.452 128.801 157.841 128.519 158.014 128.105L161.893 118.849Z" fill="#B6B6B6"/></svg>'}];var Lh=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{icon:l,iconSize:i,iconSizeTablet:o,iconSizeMobile:n,iconSizeUnit:s,align:c,alignTablet:u,alignMobile:p,rotation:b,rotationUnit:d,link:g,target:m,disableLink:y,iconAccessabilityMode:f,iconAccessabilityDesc:h}=t;return React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:l,onChange:e=>a({icon:e})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Accessibility Mode","ultimate-addons-for-gutenberg"),data:{value:f,label:"iconAccessabilityMode"},options:[{value:"svg",label:Object(r.__)("SVG","ultimate-addons-for-gutenberg")},{value:"image",label:Object(r.__)("Image","ultimate-addons-for-gutenberg")},{value:"presentation",label:Object(r.__)("Decorative","ultimate-addons-for-gutenberg")}]}),"presentation"!==f&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Accessibility Label","ultimate-addons-for-gutenberg"),data:{value:h,label:"iconAccessabilityDesc"},value:h,setAttributes:a,onChange:e=>a({iconAccessabilityDesc:e})})),React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:i,label:"iconSize"},tablet:{value:o,label:"iconSizeTablet"},mobile:{value:n,label:"iconSizeMobile"}},min:0,max:200,unit:{value:s,label:"iconSizeUnit"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"align"},tablet:{value:u,label:"alignTablet"},mobile:{value:p,label:"alignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Qa,{label:Object(r.__)("Rotation","ultimate-addons-for-gutenberg"),setAttributes:a,value:b,data:{value:b,label:"rotation"},min:-180,max:180,unit:{value:d,label:"rotationUnit"},units:[{name:Object(r.__)("Degree","ultimate-addons-for-gutenberg"),unitValue:"deg"}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),checked:y,onChange:()=>a({disableLink:!y})}),y&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:g,data:{value:g,label:"link"},setAttributes:a,onChange:e=>a({link:e}),placeholder:Object(r.__)("Enter URL","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in New Tab","ultimate-addons-for-gutenberg"),checked:m,onChange:()=>a({target:!m})}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:Oh,presetInputType:"radioImage"})))});function Hh(){return(Hh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var jh=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,iconColor:o,iconBackgroundColorType:n,iconBackgroundColor:s,iconBackgroundGradientColor:c,iconHoverColor:u,iconHoverBackgroundColorType:p,iconHoverBackgroundColor:b,iconHoverBackgroundGradientColor:d,iconTopPadding:g,iconRightPadding:m,iconBottomPadding:y,iconLeftPadding:f,iconTopTabletPadding:h,iconRightTabletPadding:v,iconBottomTabletPadding:_,iconLeftTabletPadding:T,iconTopMobilePadding:C,iconRightMobilePadding:S,iconBottomMobilePadding:w,iconLeftMobilePadding:k,iconPaddingUnit:P,iconMobilePaddingUnit:x,iconTabletPaddingUnit:A,iconPaddingLink:G,iconTopMargin:M,iconRightMargin:R,iconBottomMargin:B,iconLeftMargin:U,iconTopTabletMargin:E,iconRightTabletMargin:O,iconBottomTabletMargin:L,iconLeftTabletMargin:H,iconTopMobileMargin:j,iconRightMobileMargin:F,iconBottomMobileMargin:z,iconLeftMobileMargin:D,iconMarginUnit:N,iconMobileMarginUnit:I,iconTabletMarginUnit:V,iconMarginLink:W,iconShadowColor:q,iconShadowHOffset:Z,iconShadowVOffset:$,iconShadowBlur:Y,useSeparateBoxShadows:K,iconBoxShadowColor:J,iconBoxShadowHOffset:X,iconBoxShadowVOffset:Q,iconBoxShadowBlur:ee,iconBoxShadowSpread:te,iconBoxShadowPosition:ae,iconBoxShadowColorHover:le,iconBoxShadowHOffsetHover:ie,iconBoxShadowVOffsetHover:oe,iconBoxShadowBlurHover:ne,iconBoxShadowSpreadHover:re,iconBoxShadowPositionHover:se}=t;return React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:o||"",data:{value:o,label:"iconColor"},setAttributes:a}),React.createElement(hg,{label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),type:{value:n,label:"iconBackgroundColorType"},classic:{value:s,label:"iconBackgroundColor"},gradient:{value:c,label:"iconBackgroundGradientColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"iconHoverColor"},setAttributes:a}),React.createElement(hg,{label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),type:{value:p,label:"iconHoverBackgroundColorType"},classic:{value:b,label:"iconHoverBackgroundColor"},gradient:{value:d,label:"iconHoverBackgroundGradientColor"},setAttributes:a})),disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:a,prefix:"icon",attributes:t,deviceType:l,disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Drop Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:Bh,presetInputType:"radioImage"}),React.createElement(vg,{blockId:i,setAttributes:a,textShadowColor:{value:q,label:"iconShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},textShadowHOffset:{value:Z,label:"iconShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},textShadowVOffset:{value:$,label:"iconShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},textShadowBlur:{value:Y,label:"iconShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},popup:!1})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:K,onChange:()=>a({useSeparateBoxShadows:!K})}),K?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Uh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,boxShadowColor:{value:J,label:"iconBoxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:X,label:"iconBoxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Q,label:"iconBoxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ee,label:"iconBoxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:te,label:"iconBoxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ae,label:"iconBoxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Eh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,boxShadowColor:{value:le,label:"iconBoxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ie,label:"iconBoxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:oe,label:"iconBoxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ne,label:"iconBoxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:re,label:"iconBoxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:se,label:"iconBoxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Uh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,boxShadowColor:{value:J,label:"iconBoxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:X,label:"iconBoxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Q,label:"iconBoxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ee,label:"iconBoxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:te,label:"iconBoxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ae,label:"iconBoxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,Hh({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:g,label:"iconTopPadding"},valueRight:{value:m,label:"iconRightPadding"},valueBottom:{value:y,label:"iconBottomPadding"},valueLeft:{value:f,label:"iconLeftPadding"},valueTopTablet:{value:h,label:"iconTopTabletPadding"},valueRightTablet:{value:v,label:"iconRightTabletPadding"},valueBottomTablet:{value:_,label:"iconBottomTabletPadding"},valueLeftTablet:{value:T,label:"iconLeftTabletPadding"},valueTopMobile:{value:C,label:"iconTopMobilePadding"},valueRightMobile:{value:S,label:"iconRightMobilePadding"},valueBottomMobile:{value:w,label:"iconBottomMobilePadding"},valueLeftMobile:{value:k,label:"iconLeftMobilePadding"},unit:{value:P,label:"iconPaddingUnit"},mUnit:{value:x,label:"iconMobilePaddingUnit"},tUnit:{value:A,label:"iconTabletPaddingUnit"},attributes:t,setAttributes:a,link:{value:G,label:"iconPaddingLink"}})),React.createElement(Pl,Hh({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:M,label:"iconTopMargin"},valueRight:{value:R,label:"iconRightMargin"},valueBottom:{value:B,label:"iconBottomMargin"},valueLeft:{value:U,label:"iconLeftMargin"},valueTopTablet:{value:E,label:"iconTopTabletMargin"},valueRightTablet:{value:O,label:"iconRightTabletMargin"},valueBottomTablet:{value:L,label:"iconBottomTabletMargin"},valueLeftTablet:{value:H,label:"iconLeftTabletMargin"},valueTopMobile:{value:j,label:"iconTopMobileMargin"},valueRightMobile:{value:F,label:"iconRightMobileMargin"},valueBottomMobile:{value:z,label:"iconBottomMobileMargin"},valueLeftMobile:{value:D,label:"iconLeftMobileMargin"},unit:{value:N,label:"iconMarginUnit"},mUnit:{value:I,label:"iconMobileMarginUnit"},tUnit:{value:V,label:"iconTabletMarginUnit"},attributes:t,setAttributes:a,link:{value:W,label:"iconMarginLink"}}))))});function Fh(){return(Fh=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var zh=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,Fh({},ol,{parentProps:e}),React.createElement(Lh,e)),React.createElement(il,Fh({},nl,{parentProps:e}),React.createElement(jh,e)),React.createElement(il,Fh({},rl,{parentProps:e}),lc(Rh,a,t))))}),Dh=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{icon:i,block_id:o,iconAccessabilityMode:n,iconAccessabilityDesc:r,iconBottomMargin:s,iconLeftMargin:c,iconRightMargin:u,iconTopMargin:p,iconTopTabletMargin:b,iconRightTabletMargin:d,iconLeftTabletMargin:g,iconBottomTabletMargin:m,iconTopMobileMargin:y,iconRightMobileMargin:f,iconLeftMobileMargin:h,iconBottomMobileMargin:v}=t,_={..."presentation"!==n&&{role:"svg"===n?"graphics-symbol":"image","aria-label":r},"aria-hidden":"presentation"===n},T=[s,c,u,p,b,d,g,m,y,f,h,v].some(e=>"number"==typeof e),C=Ce(i||"circle-check",a,_),S=T?"wp-block-uagb-icon--has-margin":"",w=Object(ge.useBlockProps)({className:`uagb-block-${o} uagb-icon-wrapper uagb-editor-preview-mode-${l.toLowerCase()} ${S}`}),k=()=>React.createElement("span",{className:"uagb-svg-wrapper"},C);return React.createElement("div",w,T?React.createElement("div",{className:"uagb-icon-margin-wrapper"},k()):k())}),Nh=Object(L.compose)(vs,fe,Pc)(e=>{const{attributes:t,attributes:{UAGHideDesktop:a,UAGHideTab:l,UAGHideMob:i},isSelected:o,name:n,deviceType:r,clientId:s}=e,c=Object(B.useMemo)(()=>Rh(t,s,n,r),[t,r]);return Object(B.useEffect)(()=>{Bs()},[r]),Object(B.useEffect)(()=>{he(e)},[a,l,i,r]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:c}),o&&React.createElement(zh,e),React.createElement(Dh,e))});a(214);var Ih=[{attributes:{icon:{type:"string",default:"circle-check"},iconSize:{type:"number",default:40,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},iconColor:{type:"string",default:"#333",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-color"}},iconBorderColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-color"}},iconBackgroundColorType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-color-type"}},iconBackgroundColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-color"}},iconBackgroundGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-background-gradient-color"}},iconHoverColor:{type:"string",default:"",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-color"}},iconHoverBackgroundColorType:{type:"string",default:"classic",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-color-type"}},iconHoverBackgroundColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-color"}},iconHoverBackgroundGradientColor:{type:"string",default:"linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-hover-background-gradient-color"}},rotation:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-rotation"}},rotationUnit:{type:"string",default:"deg",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-rotation-type"}},block_id:{type:"string"},link:{type:"string",default:""},target:{type:"boolean",default:!1},disableLink:{type:"boolean",default:!1},iconAccessabilityMode:{type:"string",default:"svg"},iconAccessabilityDesc:{type:"string",default:""},iconTopPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-padding"}},iconRightPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-padding"}},iconLeftPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-padding"}},iconBottomPadding:{type:"number",default:5,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-padding"}},iconTopTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-tablet-padding"}},iconRightTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-tablet-padding"}},iconLeftTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-tablet-padding"}},iconBottomTabletPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-tablet-padding"}},iconTopMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-mobile-padding"}},iconRightMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-mobile-padding"}},iconLeftMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-mobile-padding"}},iconBottomMobilePadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-mobile-padding"}},iconPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-padding-unit"}},iconTabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-tablet-padding-unit"}},iconMobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-mobile-padding-unit"}},iconPaddingLink:{type:"boolean",default:!1},iconTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-margin"}},iconRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-margin"}},iconLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-margin"}},iconBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-margin"}},iconTopTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-tablet-margin"}},iconRightTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-tablet-margin"}},iconLeftTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-tablet-margin"}},iconBottomTabletMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-tablet-margin"}},iconTopMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-top-mobile-margin"}},iconRightMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-right-mobile-margin"}},iconLeftMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-left-mobile-margin"}},iconBottomMobileMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-bottom-mobile-margin"}},iconMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-margin-unit"}},iconTabletMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-tablet-margin-unit"}},iconMobileMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-mobile-margin-unit"}},iconMarginLink:{type:"boolean",default:!1},isPreview:{type:"boolean",default:!1},...ce("icon"),iconBorderStyle:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-border-style"}},useSeparateBoxShadows:{type:"boolean",default:!0},iconShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-color"}},iconShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-hoffset"}},iconShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-voffset"}},iconShadowBlur:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-shadow-blur"}},iconBoxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-color"}},iconBoxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-hoffset"}},iconBoxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-voffset"}},iconBoxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-blur"}},iconBoxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-spread"}},iconBoxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"icon-box-shadow-position"}},iconShadowColorHover:{type:"string",default:"#00000070",UAGCopyPaste:{styleType:"icon-shadow-color-hover"}},iconShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-hoffset-hover"}},iconShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-voffset-hover"}},iconShadowBlurHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-shadow-blur-hover"}},iconBoxShadowColorHover:{type:"string",UAGCopyPaste:{styleType:"icon-box-shadow-color-hover"}},iconBoxShadowHOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-box-shadow-hoffset-hover"}},iconBoxShadowVOffsetHover:{type:"number",default:0,UAGCopyPaste:{styleType:"icon-box-shadow-voffset-hover"}},iconBoxShadowBlurHover:{type:"number",UAGCopyPaste:{styleType:"icon-box-shadow-blur-hover"}},iconBoxShadowSpreadHover:{type:"number",UAGCopyPaste:{styleType:"icon-box-shadow-spread-hover"}},iconBoxShadowPositionHover:{type:"string",default:"outset",UAGCopyPaste:{styleType:"icon-box-shadow-position-hover"}}},save:function(e){const{attributes:t}=e,{icon:a,block_id:l,link:i,target:o,disableLink:n}=t;let r="";const s=o?"_blank":"_self";let c=n?i:"#";"#"!==c&&(c=Object(am.getProtocol)(c)?c:Object(am.prependHTTP)(c)),r=n&&c?React.createElement("a",{rel:"noopener noreferrer",href:c||"#",target:s},Ce(a||"circle-check")):Ce(a||"circle-check");const u=ge.useBlockProps.save({className:`uagb-block-${l} uagb-icon-wrapper`});return React.createElement("div",u,React.createElement("span",{className:"uagb-svg-wrapper"},r))}}];let Vh={};Vh=Object(j.applyFilters)("uagb/icon",ws(Vh)),Object(be.registerBlockType)("uagb/icon",{...Vh,apiVersion:2,title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add stunning customizable icons to your website.","ultimate-addons-for-gutenberg"),icon:se.icon,keywords:[Object(r.__)("icon","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:Tt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"icon"}):React.createElement(Nh,e),save:()=>null,deprecated:Ih});const Wh=ce("box"),qh={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},timerType:{type:"string",default:"date"},ariaLiveType:{type:"string",default:"off"},endDateTime:{type:"string",default:"2023-01-01T00:00:00Z"},displayEndDateTime:{type:"string",default:"2023-01-01T00:00:00Z"},endDateTimeCopy:{type:"string"},timeModified:{type:"boolean",default:!1},showDays:{type:"boolean",default:!0},showHours:{type:"boolean",default:!0},showMinutes:{type:"boolean",default:!0},showLabels:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"countdown-show-labels"}},labelDays:{type:"string",default:Object(r.__)("DAYS","ultimate-addons-for-gutenberg")},labelHours:{type:"string",default:Object(r.__)("HOURS","ultimate-addons-for-gutenberg")},labelMinutes:{type:"string",default:Object(r.__)("MINUTES","ultimate-addons-for-gutenberg")},labelSeconds:{type:"string",default:Object(r.__)("SECONDS","ultimate-addons-for-gutenberg")},showSeparator:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"countdown-show-separator"}},separatorType:{type:"string",default:":",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-separator-type"}},timerEndAction:{type:"string",default:"zero"},redirectURL:{type:"object"},digitLoadGoogleFonts:{type:"boolean",default:!1},digitColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-color"}},digitFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-family"}},digitFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-weight"}},digitFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-style"}},digitTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-transform"}},digitDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-decoration"}},digitFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type"}},digitFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type-tablet"}},digitFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"digit-font-size-type-mobile"}},digitLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"digit-line-height-type"}},digitLetterSpacingType:{type:"string",default:"em",UAGCopyPaste:{styleType:"digit-letter-spacing-type"}},digitFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-size"}},digitFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-tablet"}},digitFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-font-size-mobile"}},digitLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height"}},digitLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height-tablet"}},digitLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-line-height-mobile"}},digitLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing"}},digitLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing-tablet"}},digitLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"digit-letter-spacing-mobile"}},labelLoadGoogleFonts:{type:"boolean",default:!1},labelColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-color"}},labelFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-family"}},labelFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-weight"}},labelFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-style"}},labelTransform:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-transform"}},labelDecoration:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-decoration"}},labelFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type"}},labelFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type-tablet"}},labelFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-font-size-type-mobile"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-line-height-type"}},labelLetterSpacingType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},labelFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-size"}},labelFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-tablet"}},labelFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-font-size-mobile"}},labelLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height"}},labelLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height-tablet"}},labelLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-line-height-mobile"}},labelLetterSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},separatorLoadGoogleFonts:{type:"boolean",default:!1},separatorColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-color"}},separatorFontFamily:{type:"string",default:"Default",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-family"}},separatorFontWeight:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-weight"}},separatorFontStyle:{type:"string",default:"normal",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-style"}},separatorFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type"}},separatorFontSizeTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type-tablet"}},separatorFontSizeTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-font-size-type-mobile"}},separatorLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"separator-line-height-type"}},separatorFontSize:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-size"}},separatorFontSizeTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-tablet"}},separatorFontSizeMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-font-size-mobile"}},separatorLineHeight:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height"}},separatorLineHeightTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height-tablet"}},separatorLineHeightMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-line-height-mobile"}},separatorRightSpacing:{type:"number",default:26,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing"}},separatorRightSpacingTablet:{type:"number",default:14,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing-tablet"}},separatorRightSpacingMobile:{type:"number",default:12,isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-right-spacing-mobile"}},separatorTopSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing"}},separatorTopSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing-tablet"}},separatorTopSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"separator-top-spacing-mobile"}},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-desktop"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-desktop"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-desktop"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-desktop"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-desktop"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-desktop"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-desktop"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-desktop"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-desktop"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},boxTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-desktop"}},boxRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-desktop"}},boxLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-desktop"}},boxBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-desktop"}},boxTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-tablet"}},boxRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-tablet"}},boxLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-tablet"}},boxBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-tablet"}},boxTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-top-padding-mobile"}},boxRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-right-padding-mobile"}},boxLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-left-padding-mobile"}},boxBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bottom-padding-mobile"}},boxPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit"}},boxPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit-tablet"}},boxPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"countdown-box-padding-unit-mobile"}},boxPaddingLink:{type:"boolean",default:!1},align:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment"}},alignTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-tablet"}},alignMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"overall-alignment-mobile"}},boxAlign:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment"}},boxAlignTablet:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment-tablet"}},boxAlignMobile:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-alignment-mobile"}},boxWidth:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width"}},boxWidthTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width-tablet"}},boxWidthMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-width-mobile"}},isSquareBox:{type:"boolean",default:!0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-square"}},boxSpacing:{type:"number",default:38,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap"}},boxSpacingTablet:{type:"number",default:20,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap-tablet"}},boxSpacingMobile:{type:"number",default:18,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-gap-mobile"}},internalBoxSpacing:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap"}},internalBoxSpacingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap-tablet"}},internalBoxSpacingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-internal-box-gap-mobile"}},boxFlex:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction"}},boxFlexTablet:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction-tablet"}},boxFlexMobile:{type:"string",default:"column",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-flex-direction-mobile"}},labelVerticalAlignment:{type:"string",default:"center",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment"}},labelVerticalAlignmentTablet:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment-tablet"}},labelVerticalAlignmentMobile:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-label-vertical-alignment-mobile"}},boxBgType:{type:"string",default:"transparent",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bg-type"}},boxBgColor:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-bg-color"}},useSeparateBoxShadows:{type:"boolean",default:!0},boxShadowColor:{type:"string",default:"#00000070",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-color"}},boxShadowHOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-hoffset"}},boxShadowVOffset:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-voffset"}},boxShadowBlur:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-blur"}},boxShadowSpread:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-spread"}},boxShadowPosition:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-position"}},boxShadowColorHover:{type:"string",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-color-hover"}},boxShadowHOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-hoffset-hover"}},boxShadowVOffsetHover:{type:"number",default:0,isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-voffset-hover"}},boxShadowBlurHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-blur-hover"}},boxShadowSpreadHover:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-spread-hover"}},boxShadowPositionHover:{type:"string",default:"outset",isGBSStyle:!0,UAGCopyPaste:{styleType:"countdown-box-shadow-position-hover"}},...Wh,boxBorderStyle:{type:"string",default:"default",isGBSStyle:!0,UAGCopyPaste:{styleType:"box-border-style"}}};var Zh=e=>React.createElement("div",{className:Z(["wp-block-uagb-countdown__box","wp-block-uagb-countdown__box-"+e.unitType])},React.createElement("div",{role:e.role,"aria-live":e.ariaLiveType,className:Z(["wp-block-uagb-countdown__time","wp-block-uagb-countdown__time-"+e.unitType])},"-"),e.showLabels&&React.createElement("div",{className:"wp-block-uagb-countdown__label"},e.label)),$h=[{attributes:qh,save:function(e){const{attributes:{block_id:t,showLabels:a,labelDays:l,labelHours:i,labelMinutes:o,labelSeconds:n,timerEndAction:r},name:s}=e,c=ge.useBlockProps.save({className:`uagb-block-${t} wp-block-uagb-countdown`}),u="not-installed"===uagb_blocks_info.spectra_pro_status&&"content"===r&&React.createElement("div",{className:`uagb-block-countdown-innerblocks-${t} wp-block-uagb-countdown-innerblocks`},Object(j.applyFilters)("spectra.countdown.save-innerblocks","",s));return React.createElement(React.Fragment,null,React.createElement("div",c,React.createElement(Zh,{unitType:"days",showLabels:a,label:l}),React.createElement(Zh,{unitType:"hours",showLabels:a,label:i}),React.createElement(Zh,{unitType:"minutes",showLabels:a,label:o}),React.createElement(Zh,{unitType:"seconds",showLabels:a,label:n}),u))}}];function Yh(e,t,a,l){let i=arguments.length>4&&void 0!==arguments[4]&&arguments[4];const o=l.toLowerCase(),{block_id:n,showDays:r,showHours:s,showMinutes:c,showSeconds:u,digitFontFamily:p,digitFontWeight:b,digitFontStyle:d,digitFontSize:g,digitColor:m,digitDecoration:y,digitFontSizeType:f,digitFontSizeTypeMobile:h,digitFontSizeTypeTablet:v,digitFontSizeMobile:_,digitFontSizeTablet:T,digitLineHeight:C,digitLineHeightType:S,digitLineHeightMobile:w,digitLineHeightTablet:k,digitLetterSpacing:P,digitLetterSpacingType:x,digitLetterSpacingMobile:A,digitLetterSpacingTablet:G,labelFontFamily:M,labelFontWeight:R,labelFontStyle:B,labelFontSize:U,labelColor:E,labelTransform:O,labelDecoration:L,labelFontSizeType:H,labelFontSizeTypeMobile:F,labelFontSizeTypeTablet:z,labelFontSizeMobile:D,labelFontSizeTablet:N,labelLineHeight:I,labelLineHeightType:V,labelLineHeightMobile:W,labelLineHeightTablet:q,labelLetterSpacing:Z,labelLetterSpacingType:$,labelLetterSpacingMobile:Y,labelLetterSpacingTablet:K,separatorFontFamily:J,separatorFontWeight:X,separatorFontStyle:Q,separatorFontSize:ee,separatorColor:te,separatorFontSizeType:le,separatorFontSizeTypeMobile:ie,separatorFontSizeTypeTablet:oe,separatorFontSizeMobile:ne,separatorFontSizeTablet:re,separatorLineHeight:se,separatorLineHeightType:ce,separatorLineHeightMobile:ue,separatorLineHeightTablet:pe,separatorRightSpacing:be,separatorRightSpacingTablet:de,separatorRightSpacingMobile:ge,separatorTopSpacing:me,separatorTopSpacingTablet:ye,separatorTopSpacingMobile:fe,blockTopMargin:he,blockRightMargin:ve,blockLeftMargin:_e,blockBottomMargin:Te,blockTopMarginTablet:Ce,blockRightMarginTablet:Se,blockLeftMarginTablet:we,blockBottomMarginTablet:ke,blockTopMarginMobile:Pe,blockRightMarginMobile:xe,blockLeftMarginMobile:Ae,blockBottomMarginMobile:Ge,blockMarginUnit:Me,blockMarginUnitTablet:Re,blockMarginUnitMobile:Be,blockTopPadding:Ue,blockRightPadding:Ee,blockLeftPadding:Oe,blockBottomPadding:Le,blockTopPaddingTablet:He,blockRightPaddingTablet:je,blockLeftPaddingTablet:Fe,blockBottomPaddingTablet:ze,blockTopPaddingMobile:De,blockRightPaddingMobile:Ne,blockLeftPaddingMobile:Ie,blockBottomPaddingMobile:Ve,blockPaddingUnit:We,blockPaddingUnitTablet:qe,blockPaddingUnitMobile:Ze,boxTopPadding:$e,boxRightPadding:Ye,boxLeftPadding:Ke,boxBottomPadding:Je,boxTopPaddingTablet:Xe,boxRightPaddingTablet:Qe,boxLeftPaddingTablet:et,boxBottomPaddingTablet:tt,boxTopPaddingMobile:at,boxRightPaddingMobile:lt,boxLeftPaddingMobile:it,boxBottomPaddingMobile:ot,boxPaddingUnit:nt,boxPaddingUnitTablet:rt,boxPaddingUnitMobile:st,align:ct,alignTablet:ut,alignMobile:pt,boxAlign:bt,boxAlignTablet:dt,boxAlignMobile:gt,boxWidth:mt,boxWidthTablet:yt,boxWidthMobile:ft,isSquareBox:ht,labelVerticalAlignment:vt,labelVerticalAlignmentTablet:_t,labelVerticalAlignmentMobile:Tt,boxSpacing:Ct,boxSpacingTablet:St,boxSpacingMobile:wt,internalBoxSpacing:kt,internalBoxSpacingTablet:Pt,internalBoxSpacingMobile:xt,boxFlex:At,boxFlexTablet:Gt,boxFlexMobile:Mt,boxBgType:Rt,boxBgColor:Bt,useSeparateBoxShadows:Ut,boxShadowColor:Et,boxShadowHOffset:Ot,boxShadowVOffset:Lt,boxShadowBlur:Ht,boxShadowSpread:jt,boxShadowPosition:Ft,boxShadowColorHover:zt,boxShadowHOffsetHover:Dt,boxShadowVOffsetHover:Nt,boxShadowBlurHover:It,boxShadowSpreadHover:Vt,boxShadowPositionHover:Wt,showSeparator:qt,separatorType:Zt,boxBorderHColor:$t,globalBlockStyleId:Yt}=e,Kt=a.replace("uagb/",""),Jt="1"===uagb_blocks_info.is_rtl,Xt=Jt?"first":"last",Qt=Jt?"before":"after",ea=".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:"+Xt+"-child) .wp-block-uagb-countdown__time::"+Qt,ta=".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:"+Xt+"-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-minutes::"+Qt,aa=".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:"+Xt+"-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-hours::"+Qt,la=".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:"+Xt+"-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-days::"+Qt,ia=Ps(Ct,"boxSpacing",Kt),oa=isNaN(St)?Ct:St,na=isNaN(wt)?St:wt,ra=Ps(kt,"internalBoxSpacing",Kt),sa=isNaN(Pt)?kt:Pt,ca=isNaN(xt)?Pt:xt,ua=Ps(be,"separatorRightSpacing",Kt),pa=isNaN(de)?be:de,ba=isNaN(ge)?de:ge,da=Ps(me,"separatorTopSpacing",Kt),ga=isNaN(ye)?me:ye,ma=isNaN(fe)?ye:fe,ya=rs(e,"box"),fa=rs(e,"box","tablet"),ha=rs(e,"box","mobile"),va=cs({horizontal:Ot,vertical:Lt,blur:Ht,spread:jt,color:Et,position:Ft}),_a=cs({horizontal:Dt,vertical:Nt,blur:It,spread:Vt,color:zt,position:Wt,altColor:Et});let Ta={},Ca={},Sa={".wp-block-uagb-countdown":{"justify-content":ct,"margin-top":ns(he,Me),"margin-right":ns(ve,Me),"margin-bottom":ns(Te,Me),"margin-left":ns(_e,Me),"padding-top":ns(Ue,We),"padding-right":ns(Ee,We),"padding-bottom":ns(Le,We),"padding-left":ns(Oe,We)},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days":{display:r?"":"none"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours":{display:s?"":"none"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes":{display:c?"":"none"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds":{display:u?"":"none"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box":{"aspect-ratio":ht?1:Yt?"":"auto",width:ns(mt,"px"),height:ht?ns(mt,"px"):Yt?"":"auto","flex-direction":At,"justify-content":"column"!==At?bt:"center","align-items":"row"!==At?bt:"center","background-color":"transparent"!==Rt?Bt:"transparent","padding-top":ns($e,nt),"padding-right":ns(Ye,nt),"padding-bottom":ns(Je,nt),"padding-left":ns(Ke,nt),"row-gap":ns(ra,"px"),"column-gap":ns(ra,"px"),"box-shadow":va,...ya},".wp-block-uagb-countdown:hover .wp-block-uagb-countdown__box":{"border-color":$t},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)":{"margin-right":u?ns(ia,"px"):"unset"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)":{"margin-right":u||c?ns(ia,"px"):"unset"},".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)":{"margin-right":u||c||s?ns(ia,"px"):"unset"},".wp-block-uagb-countdown .wp-block-uagb-countdown__time":{"font-family":p,"font-style":d,"text-decoration":y,"font-weight":b,"font-size":ns(g,f),"line-height":ns(C,S),"letter-spacing":ns(P,x),color:m},".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:last-child) .wp-block-uagb-countdown__time::after":{},".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:first-child)":{},".wp-block-uagb-countdown div.wp-block-uagb-countdown__label":{"align-self":ht||"row"!==At?"unset":vt,"font-family":M,"font-style":B,"text-decoration":L,"text-transform":O,"font-weight":R,"font-size":ns(U,H),"line-height":ns(I,V),"letter-spacing":ns(Z,$),color:E}};if(Ut&&(Sa[".wp-block-uagb-countdown:hover .wp-block-uagb-countdown__box"]["box-shadow"]=_a),Ta[".wp-block-uagb-countdown"]={"justify-content":ut,"margin-top":ns(Ce,Re),"margin-right":ns(Se,Re),"margin-bottom":ns(ke,Re),"margin-left":ns(we,Re),"padding-top":ns(He,qe),"padding-right":ns(je,qe),"padding-bottom":ns(ze,qe),"padding-left":ns(Fe,qe)},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__box"]={width:ns(yt,"px"),height:ht?ns(yt,"px"):Yt?"":"auto","flex-direction":Gt,"justify-content":"column"!==Gt?dt:"center","align-items":"row"!==Gt?dt:"center","padding-top":ns(Xe,rt),"padding-right":ns(Qe,rt),"padding-bottom":ns(tt,rt),"padding-left":ns(et,rt),"row-gap":ns(sa,"px"),"column-gap":ns(sa,"px"),...fa},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)"]={"margin-right":u?ns(oa,"px"):"unset"},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)"]={"margin-right":u||c?ns(oa,"px"):"unset"},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)"]={"margin-right":u||c||s?ns(oa,"px"):"unset"},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:first-child)"]={},Ta[".wp-block-uagb-countdown .wp-block-uagb-countdown__time"]={"font-size":ns(T,v),"line-height":ns(k,S),"letter-spacing":ns(G,x)},Ta[".wp-block-uagb-countdown div.wp-block-uagb-countdown__label"]={"align-self":ht||"row"!==Gt?"unset":_t,"font-size":ns(N,z),"line-height":ns(q,V),"letter-spacing":ns(K,$)},Ca[".wp-block-uagb-countdown"]={"justify-content":pt,"margin-top":ns(Pe,Be),"margin-right":ns(xe,Be),"margin-bottom":ns(Ge,Be),"margin-left":ns(Ae,Be),"padding-top":ns(De,Ze),"padding-right":ns(Ne,Ze),"padding-bottom":ns(Ve,Ze),"padding-left":ns(Ie,Ze)},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__box"]={width:ns(ft,"px"),height:ht?ns(ft,"px"):Yt?"":"auto","flex-direction":Mt,"justify-content":"column"!==Mt?gt:"center","align-items":"row"!==Mt?gt:"center","padding-top":ns(at,st),"padding-right":ns(lt,st),"padding-bottom":ns(ot,st),"padding-left":ns(it,st),"row-gap":ns(ca,"px"),"column-gap":ns(ca,"px"),...ha},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)"]={"margin-right":u?ns(na,"px"):"unset"},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)"]={"margin-right":u||c?ns(na,"px"):"unset"},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)"]={"margin-right":u||c||s?ns(na,"px"):"unset"},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:first-child)"]={},Ca[".wp-block-uagb-countdown .wp-block-uagb-countdown__time"]={"font-size":ns(_,h),"line-height":ns(w,S),"letter-spacing":ns(A,x)},Ca[".wp-block-uagb-countdown div.wp-block-uagb-countdown__label"]={"align-self":ht||"row"!==Mt?"unset":Tt,"font-size":ns(D,F),"line-height":ns(W,V),"letter-spacing":ns(Y,$)},qt&&(Sa[ea]={content:Zt?`'${Zt}'`:"","font-family":J,"font-style":Q,"font-weight":X,"font-size":ns(ee,le),"line-height":ns(se,ce),color:te,right:ua?ns(-ua,"px"):"",top:ns(da,"px")},Sa[ta]={display:u?"":"none"},Sa[aa]={display:c||u?"":"none"},Sa[la]={display:s||c||u?"":"none"},Ta[ea]={"font-size":ns(re,oe),"line-height":ns(pe,ce),right:pa?ns(-pa,"px"):"",top:ns(ga,"px")},Ca[ea]={"font-size":ns(ne,ie),"line-height":ns(ue,ce),right:ba?ns(-ba,"px"):"",top:ns(ma,"px")}),Jt){const e=".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:last-child)",t=".wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:first-child)";Sa[e]["margin-right"]="unset",Ta[e]["margin-right"]="unset",Ca[e]["margin-right"]="unset",Sa[t]["margin-right"]=ns(ia,"px"),Ta[t]["margin-right"]=ns(oa,"px"),Ca[t]["margin-right"]=ns(na,"px")}const wa=".editor-styles-wrapper "+(i||".uagb-block-"+n);Sa=Object(j.applyFilters)(`spectra.${Kt}.styling`,Sa,e),Ta=Object(j.applyFilters)(`spectra.${Kt}.tabletStyling`,Ta,e),Ca=Object(j.applyFilters)(`spectra.${Kt}.mobileStyling`,Ca,e);let ka=ae(Sa,wa);return("tablet"===o||"mobile"===o||i)&&(ka+=ae(Ta,""+wa,!0,"tablet"),("mobile"===o||i)&&(ka+=ae(Ca,""+wa,!0,"mobile"))),ka}const Kh=[{defaultAttributes:Ea},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"isSquareBox",value:!0},{label:"boxAlign",value:"center"},{label:"boxAlignTablet",value:"center"},{label:"boxAlignMobile",value:"center"},{label:"boxFlex",value:"column"},{label:"boxFlexTablet",value:"column"},{label:"boxFlexMobile",value:"column"},{label:"showSeparator",value:!1},{label:"boxBgColor",value:"#f0f0f1"},{label:"boxBgType",value:"color"},{label:"boxBorderBottomLeftRadius",value:50},{label:"boxBorderBottomRightRadius",value:50},{label:"boxBorderTopLeftRadius",value:50},{label:"boxBorderTopRightRadius",value:50},{label:"boxBorderBottomLeftRadiusTablet",value:50},{label:"boxBorderBottomRightRadiusTablet",value:50},{label:"boxBorderTopLeftRadiusTablet",value:50},{label:"boxBorderTopRightRadiusTablet",value:50},{label:"boxBorderBottomLeftRadiusMobile",value:50},{label:"boxBorderBottomRightRadiusMobile",value:50},{label:"boxBorderTopLeftRadiusMobile",value:50},{label:"boxBorderTopRightRadiusMobile",value:50},{label:"boxBorderRadiusUnit",value:"%"},{label:"boxBorderRadiusUnitTablet",value:"%"},{label:"boxBorderRadiusUnitMobile",value:"%"},{label:"boxSpacing",value:40},{label:"boxSpacingTablet",value:20},{label:"boxSpacingMobile",value:18},{label:"boxWidth",value:""},{label:"boxWidthTablet",value:""},{label:"boxWidthMobile",value:60},{label:"boxTopPadding",value:""},{label:"boxRightPadding",value:""},{label:"boxLeftPadding",value:""},{label:"boxBottomPadding",value:""},{label:"boxTopPaddingTablet",value:""},{label:"boxRightPaddingTablet",value:""},{label:"boxLeftPaddingTablet",value:""},{label:"boxBottomPaddingTablet",value:""},{label:"boxTopPaddingMobile",value:5},{label:"boxRightPaddingMobile",value:5},{label:"boxLeftPaddingMobile",value:5},{label:"boxBottomPaddingMobile",value:5},{label:"boxPaddingUnit",value:"px"},{label:"boxPaddingUnitTablet",value:"px"},{label:"boxPaddingUnitMobile",value:"px"},{label:"internalBoxSpacing",value:4},{label:"internalBoxSpacingTablet",value:4},{label:"internalBoxSpacingMobile",value:2},{label:"digitColor",value:"inherit"},{label:"digitFontSize",value:56},{label:"digitFontSizeTablet",value:32},{label:"digitFontSizeMobile",value:26},{label:"digitFontSizeType",value:"px"},{label:"digitLineHeight",value:"normal"},{label:"showLabels",value:!0},{label:"labelColor",value:"inherit"},{label:"labelFontSize",value:12},{label:"labelFontSizeTablet",value:8},{label:"labelFontSizeMobile",value:8},{label:"labelFontSizeType",value:"px"},{label:"labelLineHeight",value:"normal"},{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:0},{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:0},{label:"boxShadowBlur",value:0},{label:"boxShadowSpread",value:0},{label:"boxBorderStyle",value:"none"}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><circle cx="80.3564" cy="136" r="20.6301" fill="#E6E6E6"/><rect x="73.0564" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><rect x="81.3699" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><path d="M72.5025 145.801C72.5025 145.249 72.9502 144.801 73.5025 144.801H87.2104C87.7627 144.801 88.2104 145.249 88.2104 145.801C88.2104 146.354 87.7627 146.801 87.2104 146.801H73.5025C72.9502 146.801 72.5025 146.354 72.5025 145.801Z" fill="#B6B6B6"/><circle cx="135.119" cy="136" r="20.6301" fill="#E6E6E6"/><rect x="127.819" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><rect x="136.132" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><path d="M127.265 145.801C127.265 145.249 127.713 144.801 128.265 144.801H141.973C142.525 144.801 142.973 145.249 142.973 145.801C142.973 146.354 142.525 146.801 141.973 146.801H128.265C127.713 146.801 127.265 146.354 127.265 145.801Z" fill="#B6B6B6"/><circle cx="189.881" cy="136" r="20.6301" fill="#E6E6E6"/><rect x="182.581" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><rect x="190.895" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><path d="M182.027 145.801C182.027 145.249 182.475 144.801 183.027 144.801H196.735C197.287 144.801 197.735 145.249 197.735 145.801C197.735 146.354 197.287 146.801 196.735 146.801H183.027C182.475 146.801 182.027 146.354 182.027 145.801Z" fill="#B6B6B6"/><circle cx="244.644" cy="136" r="20.6301" fill="#E6E6E6"/><rect x="237.344" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><rect x="245.657" y="125.566" width="6.28647" height="14.814" fill="#B6B6B6"/><path d="M236.79 145.801C236.79 145.249 237.237 144.801 237.79 144.801H251.498C252.05 144.801 252.498 145.249 252.498 145.801C252.498 146.354 252.05 146.801 251.498 146.801H237.79C237.237 146.801 236.79 146.354 236.79 145.801Z" fill="#B6B6B6"/></svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"isSquareBox",value:!0},{label:"boxAlign",value:"center"},{label:"boxAlignTablet",value:"center"},{label:"boxAlignMobile",value:"center"},{label:"boxFlex",value:"column"},{label:"boxFlexTablet",value:"column"},{label:"boxFlexMobile",value:"column"},{label:"showSeparator",value:!0},{label:"separatorType",value:":"},{label:"separatorRightSpacing",value:40},{label:"separatorRightSpacingTablet",value:27},{label:"separatorRightSpacingMobile",value:16},{label:"boxBgType",value:"transparent"},{label:"boxBorderBottomLeftRadius",value:50},{label:"boxBorderBottomRightRadius",value:50},{label:"boxBorderTopLeftRadius",value:50},{label:"boxBorderTopRightRadius",value:50},{label:"boxBorderBottomLeftRadiusTablet",value:50},{label:"boxBorderBottomRightRadiusTablet",value:50},{label:"boxBorderTopLeftRadiusTablet",value:50},{label:"boxBorderTopRightRadiusTablet",value:50},{label:"boxBorderBottomLeftRadiusMobile",value:50},{label:"boxBorderBottomRightRadiusMobile",value:50},{label:"boxBorderTopLeftRadiusMobile",value:50},{label:"boxBorderTopRightRadiusMobile",value:50},{label:"boxBorderRadiusUnit",value:"%"},{label:"boxBorderRadiusUnitTablet",value:"%"},{label:"boxBorderRadiusUnitMobile",value:"%"},{label:"boxSpacing",value:60},{label:"boxSpacingTablet",value:40},{label:"boxSpacingMobile",value:20},{label:"boxWidth",value:""},{label:"boxWidthTablet",value:""},{label:"boxWidthMobile",value:60},{label:"boxTopPadding",value:""},{label:"boxRightPadding",value:""},{label:"boxLeftPadding",value:""},{label:"boxBottomPadding",value:""},{label:"boxTopPaddingTablet",value:""},{label:"boxRightPaddingTablet",value:""},{label:"boxLeftPaddingTablet",value:""},{label:"boxBottomPaddingTablet",value:""},{label:"boxTopPaddingMobile",value:5},{label:"boxRightPaddingMobile",value:5},{label:"boxLeftPaddingMobile",value:5},{label:"boxBottomPaddingMobile",value:5},{label:"boxPaddingUnit",value:"px"},{label:"boxPaddingUnitTablet",value:"px"},{label:"boxPaddingUnitMobile",value:"px"},{label:"internalBoxSpacing",value:5},{label:"internalBoxSpacingTablet",value:5},{label:"internalBoxSpacingMobile",value:2},{label:"digitColor",value:"inherit"},{label:"digitFontSize",value:56},{label:"digitFontSizeTablet",value:32},{label:"digitFontSizeMobile",value:26},{label:"digitFontSizeType",value:"px"},{label:"digitLineHeight",value:"normal"},{label:"showLabels",value:!0},{label:"labelColor",value:"inherit"},{label:"labelFontSize",value:12},{label:"labelFontSizeTablet",value:8},{label:"labelFontSizeMobile",value:8},{label:"labelFontSizeType",value:"px"},{label:"labelLineHeight",value:"normal"},{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:0},{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:0},{label:"boxShadowBlur",value:0},{label:"boxShadowSpread",value:0},{label:"boxBorderStyle",value:"solid"},{label:"boxBorderColor",value:"rgba(33,33,33,0.67)"},{label:"boxBorderTopWidth",value:2},{label:"boxBorderTopWidthTablet",value:2},{label:"boxBorderTopWidthMobile",value:2},{label:"boxBorderBottomWidth",value:2},{label:"boxBorderBottomWidthTablet",value:2},{label:"boxBorderBottomWidthMobile",value:2},{label:"boxBorderLeftWidth",value:2},{label:"boxBorderLeftWidthTablet",value:2},{label:"boxBorderLeftWidthMobile",value:2},{label:"boxBorderRightWidth",value:2},{label:"boxBorderRightWidthTablet",value:2},{label:"boxBorderRightWidthMobile",value:2}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><circle cx="80.3565" cy="136" r="20.1301" stroke="#B6B6B6" fill="none"/><rect x="73.5565" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><rect x="81.87" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><path d="M73.0025 145.801C73.0025 145.525 73.2264 145.301 73.5025 145.301H87.2104C87.4865 145.301 87.7104 145.525 87.7104 145.801C87.7104 146.077 87.4865 146.301 87.2104 146.301H73.5025C73.2264 146.301 73.0025 146.077 73.0025 145.801Z" fill="#B6B6B6" stroke="#B6B6B6"/><circle cx="135.119" cy="136" r="20.1301" stroke="#B6B6B6" fill="none"/><rect x="128.319" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><rect x="136.632" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><path d="M127.765 145.801C127.765 145.525 127.989 145.301 128.265 145.301H141.973C142.249 145.301 142.473 145.525 142.473 145.801C142.473 146.077 142.249 146.301 141.973 146.301H128.265C127.989 146.301 127.765 146.077 127.765 145.801Z" fill="#B6B6B6" stroke="#B6B6B6"/><circle cx="189.881" cy="136" r="20.1301" stroke="#B6B6B6" fill="none"/><rect x="183.081" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><rect x="191.395" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><path d="M182.527 145.801C182.527 145.525 182.751 145.301 183.027 145.301H196.735C197.011 145.301 197.235 145.525 197.235 145.801C197.235 146.077 197.011 146.301 196.735 146.301H183.027C182.751 146.301 182.527 146.077 182.527 145.801Z" fill="#B6B6B6" stroke="#B6B6B6"/><circle cx="244.644" cy="136" r="20.1301" stroke="#B6B6B6" fill="none"/><rect x="237.844" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><rect x="246.157" y="126.066" width="5.28647" height="13.814" fill="#B6B6B6" stroke="#B6B6B6"/><path d="M237.29 145.801C237.29 145.525 237.514 145.301 237.79 145.301H251.498C251.774 145.301 251.998 145.525 251.998 145.801C251.998 146.077 251.774 146.301 251.498 146.301H237.79C237.514 146.301 237.29 146.077 237.29 145.801Z" fill="#B6B6B6" stroke="#B6B6B6"/><circle cx="106.635" cy="132.526" r="1.30509" fill="#B6B6B6"/><circle cx="106.635" cy="139.473" r="1.30509" fill="#B6B6B6"/><circle cx="162.5" cy="132.526" r="1.30509" fill="#B6B6B6"/><circle cx="162.5" cy="139.473" r="1.30509" fill="#B6B6B6"/><circle cx="217.625" cy="132.527" r="1.30509" fill="#B6B6B6"/><circle cx="217.625" cy="139.473" r="1.30509" fill="#B6B6B6"/></svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"isSquareBox",value:!1},{label:"boxAlign",value:"center"},{label:"boxAlignTablet",value:"center"},{label:"boxAlignMobile",value:"center"},{label:"boxFlex",value:"column"},{label:"boxFlexTablet",value:"column"},{label:"boxFlexMobile",value:"column"},{label:"showSeparator",value:!1},{label:"boxBgColor",value:"#2B2B2B"},{label:"boxBgType",value:"color"},{label:"boxBorderBottomLeftRadius",value:4},{label:"boxBorderBottomRightRadius",value:4},{label:"boxBorderTopLeftRadius",value:4},{label:"boxBorderTopRightRadius",value:4},{label:"boxBorderBottomLeftRadiusTablet",value:4},{label:"boxBorderBottomRightRadiusTablet",value:4},{label:"boxBorderTopLeftRadiusTablet",value:4},{label:"boxBorderTopRightRadiusTablet",value:4},{label:"boxBorderBottomLeftRadiusMobile",value:4},{label:"boxBorderBottomRightRadiusMobile",value:4},{label:"boxBorderTopLeftRadiusMobile",value:4},{label:"boxBorderTopRightRadiusMobile",value:4},{label:"boxBorderRadiusUnit",value:"px"},{label:"boxBorderRadiusUnitTablet",value:"px"},{label:"boxBorderRadiusUnitMobile",value:"px"},{label:"boxSpacing",value:40},{label:"boxSpacingTablet",value:40},{label:"boxSpacingMobile",value:15},{label:"boxWidth",value:160},{label:"boxWidthTablet",value:75},{label:"boxWidthMobile",value:60},{label:"boxTopPadding",value:15},{label:"boxRightPadding",value:10},{label:"boxLeftPadding",value:10},{label:"boxBottomPadding",value:15},{label:"boxTopPaddingTablet",value:15},{label:"boxRightPaddingTablet",value:10},{label:"boxLeftPaddingTablet",value:10},{label:"boxBottomPaddingTablet",value:15},{label:"boxTopPaddingMobile",value:12},{label:"boxRightPaddingMobile",value:12},{label:"boxLeftPaddingMobile",value:12},{label:"boxBottomPaddingMobile",value:12},{label:"boxPaddingUnit",value:"px"},{label:"boxPaddingUnitTablet",value:"px"},{label:"boxPaddingUnitMobile",value:"px"},{label:"internalBoxSpacing",value:4},{label:"internalBoxSpacingTablet",value:4},{label:"internalBoxSpacingMobile",value:2},{label:"digitColor",value:"#ffffff"},{label:"digitFontSize",value:52},{label:"digitFontSizeTablet",value:32},{label:"digitFontSizeMobile",value:30},{label:"digitFontSizeType",value:"px"},{label:"digitLineHeight",value:"normal"},{label:"showLabels",value:!0},{label:"labelColor",value:"#f4f4f4"},{label:"labelFontSize",value:11},{label:"labelFontSizeTablet",value:11},{label:"labelFontSizeMobile",value:10},{label:"labelFontSizeType",value:"px"},{label:"labelLineHeight",value:"normal"},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"},{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:0},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxBorderStyle",value:"none"}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><rect x="65.1709" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="79.2689" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="87.5824" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M78.7149 144.051C78.7149 143.498 79.1626 143.051 79.7149 143.051H93.4228C93.9751 143.051 94.4228 143.498 94.4228 144.051C94.4228 144.603 93.9751 145.051 93.4228 145.051H79.7149C79.1626 145.051 78.7149 144.603 78.7149 144.051Z" fill="white"/><rect x="115.792" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="129.89" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="138.203" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M129.336 144.051C129.336 143.498 129.783 143.051 130.336 143.051H144.044C144.596 143.051 145.044 143.498 145.044 144.051C145.044 144.603 144.596 145.051 144.044 145.051H130.336C129.783 145.051 129.336 144.603 129.336 144.051Z" fill="white"/><rect x="166.412" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="180.51" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="188.824" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M179.956 144.051C179.956 143.498 180.404 143.051 180.956 143.051H194.664C195.217 143.051 195.664 143.498 195.664 144.051C195.664 144.603 195.217 145.051 194.664 145.051H180.956C180.404 145.051 179.956 144.603 179.956 144.051Z" fill="white"/><rect x="217.033" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="231.131" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="239.445" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M230.577 144.051C230.577 143.498 231.025 143.051 231.577 143.051H245.285C245.837 143.051 246.285 143.498 246.285 144.051C246.285 144.603 245.837 145.051 245.285 145.051H231.577C231.025 145.051 230.577 144.603 230.577 144.051Z" fill="white"/><rect x="65.1709" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="79.2689" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="87.5824" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M78.7149 144.051C78.7149 143.498 79.1626 143.051 79.7149 143.051H93.4228C93.9751 143.051 94.4228 143.498 94.4228 144.051C94.4228 144.603 93.9751 145.051 93.4228 145.051H79.7149C79.1626 145.051 78.7149 144.603 78.7149 144.051Z" fill="white"/><rect x="115.792" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="129.89" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="138.203" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M129.336 144.051C129.336 143.498 129.783 143.051 130.336 143.051H144.044C144.596 143.051 145.044 143.498 145.044 144.051C145.044 144.603 144.596 145.051 144.044 145.051H130.336C129.783 145.051 129.336 144.603 129.336 144.051Z" fill="white"/><rect x="166.412" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="180.51" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="188.824" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M179.956 144.051C179.956 143.498 180.404 143.051 180.956 143.051H194.664C195.217 143.051 195.664 143.498 195.664 144.051C195.664 144.603 195.217 145.051 194.664 145.051H180.956C180.404 145.051 179.956 144.603 179.956 144.051Z" fill="white"/><rect x="217.033" y="119.366" width="42.796" height="30.1343" fill="#B6B6B6"/><rect x="231.131" y="123.816" width="6.28647" height="14.814" fill="white"/><rect x="239.445" y="123.816" width="6.28647" height="14.814" fill="white"/><path d="M230.577 144.051C230.577 143.498 231.025 143.051 231.577 143.051H245.285C245.837 143.051 246.285 143.498 246.285 144.051C246.285 144.603 245.837 145.051 245.285 145.051H231.577C231.025 145.051 230.577 144.603 230.577 144.051Z" fill="white"/></svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"isSquareBox",value:!1},{label:"boxAlign",value:"center"},{label:"boxAlignTablet",value:"center"},{label:"boxAlignMobile",value:"center"},{label:"boxFlex",value:"row"},{label:"boxFlexTablet",value:"row"},{label:"boxFlexMobile",value:"column"},{label:"showSeparator",value:!1},{label:"boxBgType",value:"transparent"},{label:"boxBorderBottomLeftRadius",value:4},{label:"boxBorderBottomRightRadius",value:4},{label:"boxBorderTopLeftRadius",value:4},{label:"boxBorderTopRightRadius",value:4},{label:"boxBorderBottomLeftRadiusTablet",value:4},{label:"boxBorderBottomRightRadiusTablet",value:4},{label:"boxBorderTopLeftRadiusTablet",value:4},{label:"boxBorderTopRightRadiusTablet",value:4},{label:"boxBorderBottomLeftRadiusMobile",value:4},{label:"boxBorderBottomRightRadiusMobile",value:4},{label:"boxBorderTopLeftRadiusMobile",value:4},{label:"boxBorderTopRightRadiusMobile",value:4},{label:"boxBorderRadiusUnit",value:"%"},{label:"boxBorderRadiusUnitTablet",value:"%"},{label:"boxBorderRadiusUnitMobile",value:"%"},{label:"boxSpacing",value:30},{label:"boxSpacingTablet",value:30},{label:"boxSpacingMobile",value:15},{label:"boxWidth",value:170},{label:"boxWidthTablet",value:130},{label:"boxWidthMobile",value:60},{label:"boxTopPadding",value:20},{label:"boxRightPadding",value:30},{label:"boxLeftPadding",value:30},{label:"boxBottomPadding",value:20},{label:"boxTopPaddingTablet",value:""},{label:"boxRightPaddingTablet",value:""},{label:"boxLeftPaddingTablet",value:""},{label:"boxBottomPaddingTablet",value:""},{label:"boxTopPaddingMobile",value:15},{label:"boxRightPaddingMobile",value:15},{label:"boxLeftPaddingMobile",value:15},{label:"boxBottomPaddingMobile",value:15},{label:"boxPaddingUnit",value:"px"},{label:"boxPaddingUnitTablet",value:"px"},{label:"boxPaddingUnitMobile",value:"px"},{label:"internalBoxSpacing",value:5},{label:"internalBoxSpacingTablet",value:5},{label:"internalBoxSpacingMobile",value:5},{label:"digitColor",value:"inherit"},{label:"digitFontSize",value:48},{label:"digitFontSizeTablet",value:35},{label:"digitFontSizeMobile",value:24},{label:"digitFontSizeType",value:"px"},{label:"showLabels",value:!0},{label:"labelColor",value:"inherit"},{label:"labelFontSize",value:13},{label:"labelFontSizeTablet",value:13},{label:"labelFontSizeMobile",value:10},{label:"labelFontSizeType",value:"px"},{label:"labelVerticalAlignment",value:"center"},{label:"labelVerticalAlignmentTablet",value:"center"},{label:"labelVerticalAlignmentMobile",value:"center"},{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:0},{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:0},{label:"boxShadowBlur",value:0},{label:"boxShadowSpread",value:0},{label:"boxBorderStyle",value:"solid"},{label:"boxBorderColor",value:"rgba(33,33,33,0.67)"},{label:"boxBorderTopWidth",value:2},{label:"boxBorderTopWidthTablet",value:2},{label:"boxBorderTopWidthMobile",value:2},{label:"boxBorderBottomWidth",value:2},{label:"boxBorderBottomWidthTablet",value:2},{label:"boxBorderBottomWidthMobile",value:2},{label:"boxBorderLeftWidth",value:2},{label:"boxBorderLeftWidthTablet",value:2},{label:"boxBorderLeftWidthMobile",value:2},{label:"boxBorderRightWidth",value:2},{label:"boxBorderRightWidthTablet",value:2},{label:"boxBorderRightWidthMobile",value:2}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><rect x="71.2434" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="80.7755" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="66.0374" y="119.866" width="41.796" height="29.1343" stroke="#B6B6B6" fill="none"/><path d="M90.3075 134.433C90.3075 133.8 90.8208 133.287 91.4541 133.287H101.481C102.114 133.287 102.627 133.8 102.627 134.433V134.433C102.627 135.066 102.114 135.58 101.481 135.58H91.4541C90.8208 135.58 90.3075 135.066 90.3075 134.433V134.433Z" fill="#B6B6B6"/><rect x="121.62" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="131.152" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="116.414" y="119.866" width="41.796" height="29.1343" stroke="#B6B6B6" fill="none"/><path d="M140.684 134.433C140.684 133.8 141.197 133.287 141.831 133.287H151.857C152.49 133.287 153.004 133.8 153.004 134.433V134.433C153.004 135.066 152.49 135.58 151.857 135.58H141.831C141.197 135.58 140.684 135.066 140.684 134.433V134.433Z" fill="#B6B6B6"/><rect x="171.996" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="181.528" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="166.79" y="119.866" width="41.796" height="29.1343" stroke="#B6B6B6" fill="none"/><path d="M191.06 134.433C191.06 133.8 191.574 133.287 192.207 133.287H202.234C202.867 133.287 203.38 133.8 203.38 134.433V134.433C203.38 135.066 202.867 135.58 202.234 135.58H192.207C191.574 135.58 191.06 135.066 191.06 134.433V134.433Z" fill="#B6B6B6"/><rect x="222.373" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><rect x="231.905" y="125.94" width="7.20791" height="16.9854" fill="#B6B6B6"/><path d="M241.437 134.433C241.437 133.8 241.95 133.287 242.583 133.287H252.61C253.243 133.287 253.757 133.8 253.757 134.433V134.433C253.757 135.066 253.243 135.58 252.61 135.58H242.583C241.95 135.58 241.437 135.066 241.437 134.433V134.433Z" fill="#B6B6B6"/><rect x="217.167" y="119.866" width="41.796" height="29.1343" stroke="#B6B6B6" fill="none"/></svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"isSquareBox",value:!1},{label:"boxAlign",value:"center"},{label:"boxAlignTablet",value:"center"},{label:"boxAlignMobile",value:"center"},{label:"boxFlex",value:"row"},{label:"boxFlexTablet",value:"row"},{label:"boxFlexMobile",value:"column"},{label:"showSeparator",value:!1},{label:"boxBgType",value:"transparent"},{label:"boxBorderBottomLeftRadius",value:4},{label:"boxBorderBottomRightRadius",value:4},{label:"boxBorderTopLeftRadius",value:4},{label:"boxBorderTopRightRadius",value:4},{label:"boxBorderBottomLeftRadiusTablet",value:4},{label:"boxBorderBottomRightRadiusTablet",value:4},{label:"boxBorderTopLeftRadiusTablet",value:4},{label:"boxBorderTopRightRadiusTablet",value:4},{label:"boxBorderBottomLeftRadiusMobile",value:4},{label:"boxBorderBottomRightRadiusMobile",value:4},{label:"boxBorderTopLeftRadiusMobile",value:4},{label:"boxBorderTopRightRadiusMobile",value:4},{label:"boxBorderRadiusUnit",value:"%"},{label:"boxBorderRadiusUnitTablet",value:"%"},{label:"boxBorderRadiusUnitMobile",value:"%"},{label:"boxSpacing",value:22},{label:"boxSpacingTablet",value:22},{label:"boxSpacingMobile",value:15},{label:"boxWidth",value:""},{label:"boxWidthTablet",value:130},{label:"boxWidthMobile",value:25},{label:"boxTopPadding",value:25},{label:"boxRightPadding",value:25},{label:"boxLeftPadding",value:25},{label:"boxBottomPadding",value:25},{label:"boxTopPaddingTablet",value:25},{label:"boxRightPaddingTablet",value:25},{label:"boxLeftPaddingTablet",value:25},{label:"boxBottomPaddingTablet",value:25},{label:"boxTopPaddingMobile",value:25},{label:"boxRightPaddingMobile",value:25},{label:"boxLeftPaddingMobile",value:25},{label:"boxBottomPaddingMobile",value:25},{label:"boxPaddingUnit",value:"px"},{label:"boxPaddingUnitTablet",value:"px"},{label:"boxPaddingUnitMobile",value:"px"},{label:"internalBoxSpacing",value:10},{label:"internalBoxSpacingTablet",value:4},{label:"internalBoxSpacingMobile",value:6},{label:"digitColor",value:"inherit"},{label:"digitFontSize",value:""},{label:"digitFontSizeTablet",value:""},{label:"digitFontSizeMobile",value:""},{label:"digitFontSizeType",value:"px"},{label:"digitLineHeight",value:.8},{label:"digitLineHeightType",value:"em"},{label:"showLabels",value:!0},{label:"labelColor",value:"inherit"},{label:"labelFontSize",value:""},{label:"labelFontSizeTablet",value:""},{label:"labelFontSizeMobile",value:""},{label:"labelFontSizeType",value:"px"},{label:"labelLineHeight",value:1},{label:"labelLineHeightType",value:"em"},{label:"labelVerticalAlignment",value:"end"},{label:"labelVerticalAlignmentTablet",value:"end"},{label:"labelVerticalAlignmentMobile",value:"end"},{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:0},{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:0},{label:"boxShadowBlur",value:0},{label:"boxShadowSpread",value:0},{label:"boxBorderStyle",value:"none"}],icon:'<svg width="325" height="245" viewBox="0 0 325 245" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/><rect x="65.4309" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><rect x="77.0472" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><path d="M88.6635 144.952C88.6635 144.181 89.289 143.555 90.0607 143.555H102.28C103.051 143.555 103.677 144.181 103.677 144.952C103.677 145.724 103.051 146.35 102.28 146.35H90.0607C89.289 146.35 88.6635 145.724 88.6635 144.952Z" fill="#B6B6B6"/><rect x="117.395" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><rect x="129.011" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><path d="M140.628 144.952C140.628 144.181 141.253 143.555 142.025 143.555H154.244C155.015 143.555 155.641 144.181 155.641 144.952C155.641 145.724 155.015 146.35 154.244 146.35H142.025C141.253 146.35 140.628 145.724 140.628 144.952Z" fill="#B6B6B6"/><rect x="169.359" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><rect x="180.975" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><path d="M192.592 144.952C192.592 144.181 193.217 143.555 193.989 143.555H206.208C206.979 143.555 207.605 144.181 207.605 144.952C207.605 145.724 206.979 146.35 206.208 146.35H193.989C193.217 146.35 192.592 145.724 192.592 144.952Z" fill="#B6B6B6"/><rect x="221.323" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><rect x="232.939" y="125.65" width="8.78394" height="20.6993" fill="#B6B6B6"/><path d="M244.556 144.952C244.556 144.181 245.181 143.555 245.953 143.555H258.172C258.943 143.555 259.569 144.181 259.569 144.952C259.569 145.724 258.943 146.35 258.172 146.35H245.953C245.181 146.35 244.556 145.724 244.556 144.952Z" fill="#B6B6B6"/></svg>'}],Jh=[{defaultAttributes:Ea},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowColor",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Xh=[{defaultAttributes:Ea},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:15},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var Qh=a(14);function ev(){return(ev=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var tv,av=Object(B.memo)((function(e){const t=uagb_blocks_info.spectra_pro_status,{setAttributes:a,attributes:l,attributes:{block_id:i,timerType:o,displayEndDateTime:n,showDays:s,showHours:c,showMinutes:u,showSeconds:p,showLabels:b,labelDays:d,labelHours:g,labelMinutes:m,labelSeconds:y,showSeparator:f,separatorType:h,ariaLiveType:v,digitLoadGoogleFonts:_,digitFontFamily:T,digitFontWeight:C,digitFontStyle:S,digitFontSize:w,digitColor:k,digitDecoration:P,digitFontSizeType:x,digitFontSizeTypeMobile:A,digitFontSizeTypeTablet:G,digitFontSizeMobile:M,digitFontSizeTablet:R,digitLineHeight:B,digitLineHeightType:U,digitLineHeightMobile:E,digitLineHeightTablet:O,digitLetterSpacing:L,digitLetterSpacingType:H,digitLetterSpacingMobile:F,digitLetterSpacingTablet:z,labelLoadGoogleFonts:D,labelFontFamily:N,labelFontWeight:I,labelFontStyle:V,labelFontSize:W,labelColor:q,labelTransform:Z,labelDecoration:$,labelFontSizeType:Y,labelFontSizeTypeMobile:K,labelFontSizeTypeTablet:J,labelFontSizeMobile:X,labelFontSizeTablet:Q,labelLineHeight:ee,labelLineHeightType:te,labelLineHeightMobile:ae,labelLineHeightTablet:le,labelLetterSpacing:ie,labelLetterSpacingType:oe,labelLetterSpacingMobile:ne,labelLetterSpacingTablet:re,separatorLoadGoogleFonts:se,separatorFontFamily:ce,separatorFontWeight:ue,separatorFontStyle:pe,separatorFontSize:be,separatorColor:de,separatorFontSizeType:me,separatorFontSizeTypeMobile:ye,separatorFontSizeTypeTablet:fe,separatorFontSizeMobile:he,separatorFontSizeTablet:ve,separatorLineHeight:_e,separatorLineHeightType:Te,separatorLineHeightMobile:Se,separatorLineHeightTablet:we,separatorRightSpacing:ke,separatorRightSpacingTablet:Pe,separatorRightSpacingMobile:xe,separatorTopSpacing:Ae,separatorTopSpacingTablet:Ge,separatorTopSpacingMobile:Me,blockTopMargin:Re,blockRightMargin:Be,blockLeftMargin:Ue,blockBottomMargin:Oe,blockTopMarginTablet:He,blockRightMarginTablet:je,blockLeftMarginTablet:De,blockBottomMarginTablet:Ne,blockTopMarginMobile:Ie,blockRightMarginMobile:Ve,blockLeftMarginMobile:We,blockBottomMarginMobile:qe,blockMarginUnit:Ze,blockMarginUnitTablet:$e,blockMarginUnitMobile:Ye,blockMarginLink:Ke,blockTopPadding:Je,blockRightPadding:Xe,blockLeftPadding:Qe,blockBottomPadding:et,blockTopPaddingTablet:tt,blockRightPaddingTablet:at,blockLeftPaddingTablet:lt,blockBottomPaddingTablet:it,blockTopPaddingMobile:ot,blockRightPaddingMobile:nt,blockLeftPaddingMobile:rt,blockBottomPaddingMobile:st,blockPaddingUnit:ct,blockPaddingUnitTablet:ut,blockPaddingUnitMobile:pt,blockPaddingLink:bt,boxTopPadding:dt,boxRightPadding:gt,boxLeftPadding:mt,boxBottomPadding:yt,boxTopPaddingTablet:ft,boxRightPaddingTablet:ht,boxLeftPaddingTablet:vt,boxBottomPaddingTablet:_t,boxTopPaddingMobile:Tt,boxRightPaddingMobile:Ct,boxLeftPaddingMobile:St,boxBottomPaddingMobile:wt,boxPaddingUnit:kt,boxPaddingUnitTablet:Pt,boxPaddingUnitMobile:xt,boxPaddingLink:At,align:Gt,alignTablet:Mt,alignMobile:Rt,boxAlign:Bt,boxAlignTablet:Ut,boxAlignMobile:Et,isSquareBox:Ot,labelVerticalAlignment:Lt,labelVerticalAlignmentTablet:Ht,labelVerticalAlignmentMobile:jt,boxWidth:Ft,boxWidthTablet:zt,boxWidthMobile:Dt,boxSpacing:Nt,boxSpacingTablet:It,boxSpacingMobile:Vt,internalBoxSpacing:Wt,internalBoxSpacingTablet:qt,internalBoxSpacingMobile:Zt,boxFlex:$t,boxFlexTablet:Yt,boxFlexMobile:Kt,boxBgType:Jt,boxBgColor:Xt,useSeparateBoxShadows:Qt,boxShadowColor:ea,boxShadowHOffset:ta,boxShadowVOffset:aa,boxShadowBlur:la,boxShadowSpread:ia,boxShadowPosition:oa,boxShadowColorHover:na,boxShadowHOffsetHover:ra,boxShadowVOffsetHover:sa,boxShadowBlurHover:ca,boxShadowSpreadHover:ua,boxShadowPositionHover:pa},deviceType:ba}=e,da=[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}],ga=[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],ma=[{value:"flex-start",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"flex-end",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],{timezone:ya}=Object(Qh.getSettings)(),fa=React.createElement(Fe,{panelId:"general",title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},(()=>{let e=!0;if(!o)return!1;switch(o){case"date":e=!0;break;case"evergreen":e=!t}return e})()&&React.createElement("div",{className:"uagb-countdown__datetime-picker"},React.createElement("div",null,React.createElement("h2",null,Object(r.__)("Timer End Date & Time","ultimate-addons-for-gutenberg"))),React.createElement(Le.DateTimePicker,{className:"uagb-date-picker",currentDate:n,onChange:e=>{const t=new Date(e+"Z");t.setMilliseconds(t.getMilliseconds()-60*ya.offset*60*1e3),a({endDateTime:t,endDateTimeCopy:t,displayEndDateTime:e})},is12Hour:!0,__nextRemoveResetButton:!0,__nextRemoveHelpButton:!0})),React.createElement(fi,null),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Days","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>{(c||u||p)&&a({showDays:!s})}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Hours","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>{(s||u||p)&&a({showHours:!c})}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Minutes","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>{(s||c||p)&&a({showMinutes:!u})}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Seconds","ultimate-addons-for-gutenberg"),checked:p,onChange:()=>{(s||c||u)&&a({showSeconds:!p})}}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Aria Live Type","ultimate-addons-for-gutenberg"),data:{value:v,label:"ariaLiveType"},options:[{value:"off",label:Object(r.__)("Off","ultimate-addons-for-gutenberg")},{value:"polite",label:Object(r.__)("Polite","ultimate-addons-for-gutenberg")},{value:"assertive",label:Object(r.__)("Assertive","ultimate-addons-for-gutenberg")}]})),ha=React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:Kh,presetInputType:"radioImage"})),va=React.createElement(Fe,{title:Object(r.__)("Labels","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Labels","ultimate-addons-for-gutenberg"),checked:b,onChange:()=>a({showLabels:!b})}),b&&React.createElement(React.Fragment,null,s&&React.createElement(Fs,{label:Object(r.__)("Days","ultimate-addons-for-gutenberg"),variant:"full-width",value:d,data:{value:d,label:"labelDays"},setAttributes:a}),c&&React.createElement(Fs,{label:Object(r.__)("Hours","ultimate-addons-for-gutenberg"),variant:"full-width",value:g,data:{value:g,label:"labelHours"},setAttributes:a}),u&&React.createElement(Fs,{label:Object(r.__)("Minutes","ultimate-addons-for-gutenberg"),variant:"full-width",value:m,data:{value:m,label:"labelMinutes"},setAttributes:a}),p&&React.createElement(Fs,{label:Object(r.__)("Seconds","ultimate-addons-for-gutenberg"),variant:"full-width",value:y,data:{value:y,label:"labelSeconds"},setAttributes:a}))),_a=React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Separator","ultimate-addons-for-gutenberg"),checked:f,onChange:()=>a({showSeparator:!f})}),f&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Separator Type","ultimate-addons-for-gutenberg"),data:{value:h,label:"separatorType"},options:[{value:":",label:Object(r.__)("Colon","ultimate-addons-for-gutenberg")},{value:"|",label:Object(r.__)("Line","ultimate-addons-for-gutenberg")},{value:"/",label:Object(r.__)("Slash","ultimate-addons-for-gutenberg")}]}))),Ta=React.createElement(Fe,{title:Object(r.__)("Box","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Square Shaped Box","ultimate-addons-for-gutenberg"),checked:Ot,onChange:()=>a({isSquareBox:!Ot})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Overall Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:Gt,label:"align"},tablet:{value:Mt,label:"alignTablet"},mobile:{value:Rt,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:ga,showIcons:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Inner Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:Bt,label:"boxAlign"},tablet:{value:Ut,label:"boxAlignTablet"},mobile:{value:Et,label:"boxAlignMobile"}},className:"uagb-multi-button-alignment-control",options:ma,showIcons:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Label Position","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:$t,label:"boxFlex"},tablet:{value:Yt,label:"boxFlexTablet"},mobile:{value:Kt,label:"boxFlexMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"row",icon:React.createElement(Le.Icon,{icon:ze("flex-direction-row")}),tooltip:Object(r.__)("Row","ultimate-addons-for-gutenberg")},{value:"column",icon:React.createElement(Le.Icon,{icon:ze("flex-direction-column")}),tooltip:Object(r.__)("Column","ultimate-addons-for-gutenberg")}],showIcons:!0}),!Ot&&("Desktop"===ba&&"row"===$t||"Tablet"===ba&&"row"===Yt||"Mobile"===ba&&"row"===Kt)&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Label Vertical Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:Lt,label:"labelVerticalAlignment"},tablet:{value:Ht,label:"labelVerticalAlignmentTablet"},mobile:{value:jt,label:"labelVerticalAlignmentMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"start",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"center",label:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"end",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],showIcons:!1,help:Object(r.__)("This feature works best after adding line-height to the label.","ultimate-addons-for-gutenberg")})),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Jt,label:"boxBgType"},className:"uagb-multi-button-alignment-control",options:da}),"color"===Jt&&React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Xt||"",data:{value:Xt,label:"boxBgColor"},setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Box Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ft,label:"boxWidth"},tablet:{value:zt,label:"boxWidthTablet"},mobile:{value:Dt,label:"boxWidthMobile"}},min:0,max:250,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Gap Between Boxes","ultimate-addons-for-gutenberg"),data:{desktop:{value:Nt,label:"boxSpacing"},tablet:{value:It,label:"boxSpacingTablet"},mobile:{value:Vt,label:"boxSpacingMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Gap Between Digits & Labels","ultimate-addons-for-gutenberg"),data:{desktop:{value:Wt,label:"internalBoxSpacing"},tablet:{value:qt,label:"internalBoxSpacingTablet"},mobile:{value:Zt,label:"internalBoxSpacingMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a}),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:a,prefix:"box",attributes:l,deviceType:ba,disableBottomSeparator:!1}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:dt,label:"boxTopPadding"},valueRight:{value:gt,label:"boxRightPadding"},valueBottom:{value:yt,label:"boxBottomPadding"},valueLeft:{value:mt,label:"boxLeftPadding"},valueTopTablet:{value:ft,label:"boxTopPaddingTablet"},valueRightTablet:{value:ht,label:"boxRightPaddingTablet"},valueBottomTablet:{value:_t,label:"boxBottomPaddingTablet"},valueLeftTablet:{value:vt,label:"boxLeftPaddingTablet"},valueTopMobile:{value:Tt,label:"boxTopPaddingMobile"},valueRightMobile:{value:Ct,label:"boxRightPaddingMobile"},valueBottomMobile:{value:wt,label:"boxBottomPaddingMobile"},valueLeftMobile:{value:St,label:"boxLeftPaddingMobile"},unit:{value:kt,label:"boxPaddingUnit"},mUnit:{value:xt,label:"boxPaddingUnitMobile"},tUnit:{value:Pt,label:"boxPaddingUnitTablet"},deviceType:ba,attributes:l,setAttributes:a,link:{value:At,label:"boxPaddingLink"}})),Ca=React.createElement(Fe,{title:Object(r.__)("Digit","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:k||"",data:{value:k,label:"digitColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:a,loadGoogleFonts:{value:_,label:"digitLoadGoogleFonts"},fontFamily:{value:T,label:"digitFontFamily"},fontWeight:{value:C,label:"digitFontWeight"},fontStyle:{value:S,label:"digitFontStyle"},disableTransform:!0,decoration:{value:P,label:"digitDecoration"},fontSizeType:{value:x,label:"digitFontSizeType"},fontSizeTypeTablet:{value:G,label:"digitFontSizeTypeTablet"},fontSizeTypeMobile:{value:A,label:"digitFontSizeTypeMobile"},fontSize:{value:w,label:"digitFontSize"},fontSizeMobile:{value:M,label:"digitFontSizeMobile"},fontSizeTablet:{value:R,label:"digitFontSizeTablet"},lineHeightType:{value:U,label:"digitLineHeightType"},lineHeight:{value:B,label:"digitLineHeight"},lineHeightMobile:{value:E,label:"digitLineHeightMobile"},lineHeightTablet:{value:O,label:"digitLineHeightTablet"},letterSpacingType:{value:H,label:"digitLetterSpacingType"},letterSpacing:{value:L,label:"digitLetterSpacing"},letterSpacingMobile:{value:F,label:"digitLetterSpacingMobile"},letterSpacingTablet:{value:z,label:"digitLetterSpacingTablet"}})),Sa=React.createElement(Fe,{title:Object(r.__)("Label","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:q||"",data:{value:q,label:"labelColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:a,loadGoogleFonts:{value:D,label:"labelLoadGoogleFonts"},fontFamily:{value:N,label:"labelFontFamily"},fontWeight:{value:I,label:"labelFontWeight"},fontStyle:{value:V,label:"labelFontStyle"},transform:{value:Z,label:"labelTransform"},decoration:{value:$,label:"labelDecoration"},fontSizeType:{value:Y,label:"labelFontSizeType"},fontSizeTypeTablet:{value:J,label:"labelFontSizeTypeTablet"},fontSizeTypeMobile:{value:K,label:"labelFontSizeTypeMobile"},fontSize:{value:W,label:"labelFontSize"},fontSizeMobile:{value:X,label:"labelFontSizeMobile"},fontSizeTablet:{value:Q,label:"labelFontSizeTablet"},lineHeightType:{value:te,label:"labelLineHeightType"},lineHeight:{value:ee,label:"labelLineHeight"},lineHeightMobile:{value:ae,label:"labelLineHeightMobile"},lineHeightTablet:{value:le,label:"labelLineHeightTablet"},letterSpacingType:{value:oe,label:"labelLetterSpacingType"},letterSpacing:{value:ie,label:"labelLetterSpacing"},letterSpacingMobile:{value:ne,label:"labelLetterSpacingMobile"},letterSpacingTablet:{value:re,label:"labelLetterSpacingTablet"}})),wa=React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:de||"",data:{value:de,label:"separatorColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:a,loadGoogleFonts:{value:se,label:"separatorLoadGoogleFonts"},fontFamily:{value:ce,label:"separatorFontFamily"},fontWeight:{value:ue,label:"separatorFontWeight"},fontStyle:{value:pe,label:"separatorFontStyle"},disableTransform:!0,disableDecoration:!0,fontSizeType:{value:me,label:"separatorFontSizeType"},fontSizeTypeTablet:{value:fe,label:"separatorFontSizeTypeTablet"},fontSizeTypeMobile:{value:ye,label:"separatorFontSizeTypeMobile"},fontSize:{value:be,label:"separatorFontSize"},fontSizeMobile:{value:he,label:"separatorFontSizeMobile"},fontSizeTablet:{value:ve,label:"separatorFontSizeTablet"},lineHeightType:{value:Te,label:"separatorLineHeightType"},lineHeight:{value:_e,label:"separatorLineHeight"},lineHeightMobile:{value:Se,label:"separatorLineHeightMobile"},lineHeightTablet:{value:we,label:"separatorLineHeightTablet"}}),React.createElement(tl,{label:Object(r.__)("Separator Right Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ke,label:"separatorRightSpacing"},tablet:{value:Pe,label:"separatorRightSpacingTablet"},mobile:{value:xe,label:"separatorRightSpacingMobile"}},min:0,max:300,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Separator Top Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ae,label:"separatorTopSpacing"},tablet:{value:Ge,label:"separatorTopSpacingTablet"},mobile:{value:Me,label:"separatorTopSpacingMobile"}},min:0,max:300,displayUnit:!1,setAttributes:a})),ka=React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:Qt,onChange:()=>a({useSeparateBoxShadows:!Qt})}),Qt?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Jh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:ea,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ta,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:aa,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:la,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ia,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:oa,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Xh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:na,label:"boxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ra,label:"boxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:sa,label:"boxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ca,label:"boxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ua,label:"boxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:pa,label:"boxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:Jh,presetInputType:"radioImage"}),React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:ea,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ta,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:aa,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:la,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ia,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:oa,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))),Pa=React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Je,label:"blockTopPadding"},valueRight:{value:Xe,label:"blockRightPadding"},valueBottom:{value:et,label:"blockBottomPadding"},valueLeft:{value:Qe,label:"blockLeftPadding"},valueTopTablet:{value:tt,label:"blockTopPaddingTablet"},valueRightTablet:{value:at,label:"blockRightPaddingTablet"},valueBottomTablet:{value:it,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:lt,label:"blockLeftPaddingTablet"},valueTopMobile:{value:ot,label:"blockTopPaddingMobile"},valueRightMobile:{value:nt,label:"blockRightPaddingMobile"},valueBottomMobile:{value:st,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:rt,label:"blockLeftPaddingMobile"},unit:{value:ct,label:"blockPaddingUnit"},mUnit:{value:pt,label:"blockPaddingUnitMobile"},tUnit:{value:ut,label:"blockPaddingUnitTablet"},deviceType:ba,attributes:l,setAttributes:a,link:{value:bt,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Re,label:"blockTopMargin"},valueRight:{value:Be,label:"blockRightMargin"},valueBottom:{value:Oe,label:"blockBottomMargin"},valueLeft:{value:Ue,label:"blockLeftMargin"},valueTopTablet:{value:He,label:"blockTopMarginTablet"},valueRightTablet:{value:je,label:"blockRightMarginTablet"},valueBottomTablet:{value:Ne,label:"blockBottomMarginTablet"},valueLeftTablet:{value:De,label:"blockLeftMarginTablet"},valueTopMobile:{value:Ie,label:"blockTopMarginMobile"},valueRightMobile:{value:Ve,label:"blockRightMarginMobile"},valueBottomMobile:{value:qe,label:"blockBottomMarginMobile"},valueLeftMobile:{value:We,label:"blockLeftMarginMobile"},unit:{value:Ze,label:"blockMarginUnit"},mUnit:{value:Ye,label:"blockMarginUnitMobile"},tUnit:{value:$e,label:"blockMarginUnitTablet"},deviceType:ba,attributes:l,setAttributes:a,link:{value:Ke,label:"blockMarginLink"}}));return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ev({},ol,{parentProps:e}),fa,va,_a,Object(j.applyFilters)("spectra.countdown.expiry-settings"),ha,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Countdown Block to the next level with powerful features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("Evergreen mode","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Expiry options","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"countdown"}}))),React.createElement(il,ev({},nl,{parentProps:e}),Ta,Ca,b&&Sa,f&&wa,ka,Pa),React.createElement(il,ev({},rl,{parentProps:e}),lc(Yh,a,l)))))})),lv=a(109),iv=0,ov={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},nv={};nv.locals=lv.a.locals||{},nv.use=function(){return iv++||(tv=ke()(lv.a,ov)),nv},nv.unuse=function(){iv>0&&!--iv&&(tv(),tv=null)};var rv=nv,sv=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(rv.use(),()=>{rv.unuse()}),[]);const t=e.countdownRef,{attributes:{block_id:a,name:l,showLabels:i,labelDays:o,labelHours:n,labelMinutes:r,labelSeconds:s,timerEndAction:c},deviceType:u}=e,p=Object(ge.useBlockProps)({className:`uagb-block-${a} uagb-editor-preview-mode-${u.toLowerCase()}`,ref:t}),b="active"===uagb_blocks_info.spectra_pro_status&&"content"===c&&React.createElement("div",{className:`uagb-block-countdown-innerblocks-${a} wp-block-uagb-countdown-innerblocks`},Object(j.applyFilters)("spectra.countdown.render-innerblocks","",l));return React.createElement(React.Fragment,null,React.createElement("div",p,React.createElement(Zh,{unitType:"days",showLabels:i,label:o}),React.createElement(Zh,{unitType:"hours",showLabels:i,label:n}),React.createElement(Zh,{unitType:"minutes",showLabels:i,label:r}),React.createElement(Zh,{unitType:"seconds",showLabels:i,label:s}),b))}),cv=Object(B.memo)(e=>{let{attributes:t}=e;const{digitLoadGoogleFonts:a,digitFontFamily:l,digitFontWeight:i,labelLoadGoogleFonts:o,labelFontFamily:n,labelFontWeight:r,separatorLoadGoogleFonts:s,separatorFontFamily:c,separatorFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});function uv(){return(uv=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}a(164);var pv=Object(L.compose)(vs,fe,Pc)(e=>{const{isSelected:t,clientId:a,attributes:l,attributes:{block_id:i,timeModified:o,endDateTime:n,showDays:r,showHours:s,showMinutes:c,UAGHideDesktop:u,UAGHideTab:p,UAGHideMob:b},setAttributes:d,name:g,deviceType:m}=e,[y,f]=Object(B.useState)(0);Object(B.useEffect)(()=>{if(!o){const{timezone:e}=Object(Qh.getSettings)(),t=new Date,a=new Date;t.setMilliseconds(t.getMilliseconds()+6048e5),a.setMilliseconds(a.getMilliseconds()+6048e5),a.setMilliseconds(a.getMilliseconds()+(60*a.getTimezoneOffset()*1e3+60*e.offset*60*1e3)),d({endDateTime:t,endDateTimeCopy:t,displayEndDateTime:a,timeModified:!0})}},[]);const h=Object(B.useRef)(null);Object(B.useEffect)(()=>{let e=null;return h&&i&&(e=setTimeout(()=>{UAGBCountdown.editorInit(".uagb-block-"+i,l,h.current)})),()=>{null===e&&clearInterval(e)}},[h,i]);const v=Object(B.useMemo)(()=>Yh(l,a,g,m),[l,m]);Object(B.useEffect)(()=>{i&&1===y&&UAGBCountdown.changeEndTime(".uagb-block-"+i,l,h.current),f(1)},[n,r,s,c]),Object(B.useEffect)(()=>{he(e)},[u,p,b,m]);const _=Object(j.applyFilters)("spectra.countdown.toolbar-hook","",g);return React.createElement(React.Fragment,null,"content"===l.timerEndAction&&_,React.createElement(cv,{attributes:l}),React.createElement(me,{blockStyling:v}),t&&React.createElement(av,e),React.createElement(sv,uv({countdownRef:h},e)))});let bv={};bv=Object(j.applyFilters)("uagb/countdown",ws(bv)),Object(be.registerBlockType)("uagb/countdown",{...bv,apiVersion:2,title:Object(r.__)("Countdown","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create a sense of urgency among your visitors.","ultimate-addons-for-gutenberg"),icon:se.countdown,keywords:[Object(r.__)("countdown","ultimate-addons-for-gutenberg"),Object(r.__)("timer","ultimate-addons-for-gutenberg"),Object(r.__)("sale","ultimate-addons-for-gutenberg"),Object(r.__)("offer","ultimate-addons-for-gutenberg"),Object(r.__)("discount","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Ea,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"countdown"}):React.createElement(pv,e),save:function(e){const{attributes:{block_id:t,showLabels:a,labelDays:l,labelHours:i,labelMinutes:o,labelSeconds:n,timerEndAction:r,ariaLiveType:s},name:c}=e,u=ge.useBlockProps.save({className:`uagb-block-${t} wp-block-uagb-countdown`}),p="active"===uagb_blocks_info.spectra_pro_status&&"content"===r&&React.createElement("div",{className:`uagb-block-countdown-innerblocks-${t} wp-block-uagb-countdown-innerblocks`},Object(j.applyFilters)("spectra.countdown.save-innerblocks","",c));return React.createElement(React.Fragment,null,React.createElement("div",u,React.createElement(Zh,{role:"timer",ariaLiveType:s,unitType:"days",showLabels:a,label:l}),React.createElement(Zh,{role:"timer",ariaLiveType:s,unitType:"hours",showLabels:a,label:i}),React.createElement(Zh,{role:"timer",ariaLiveType:s,unitType:"minutes",showLabels:a,label:o}),React.createElement(Zh,{role:"timer",ariaLiveType:s,unitType:"seconds",showLabels:a,label:n}),p))},deprecated:$h});var dv=Object(B.memo)(e=>{let{attributes:t}=e;const{descLoadGoogleFonts:a,authorLoadGoogleFonts:l,tweetBtnLoadGoogleFonts:i,descFontFamily:o,descFontWeight:n,authorFontFamily:r,authorFontWeight:s,tweetBtnFontFamily:c,tweetBtnFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[o+(n?":"+n:"")]}};p=React.createElement(O,{config:e})}if(!0===l){const e={google:{families:[r+(s?":"+s:"")]}};b=React.createElement(O,{config:e})}if(!0===i){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});function gv(){return(gv=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var mv,yv=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l}=e,{skinStyle:i,align:o,authorColor:n,descColor:s,descFontSize:c,descFontSizeType:u,descFontSizeTablet:p,descFontSizeMobile:b,descFontFamily:d,descFontWeight:g,descFontStyle:m,descLineHeightType:y,descLineHeight:f,descLineHeightTablet:h,descLineHeightMobile:v,descLoadGoogleFonts:_,authorFontSize:T,authorFontSizeType:C,authorFontSizeTablet:S,authorFontSizeMobile:w,authorFontFamily:k,authorFontWeight:P,authorFontStyle:x,authorLineHeightType:A,authorLineHeight:G,authorLineHeightTablet:M,authorLineHeightMobile:R,authorLoadGoogleFonts:B,descSpace:U,descSpaceTablet:E,descSpaceMobile:O,authorSpace:L,authorSpaceTablet:H,authorSpaceMobile:j,borderColor:F,borderStyle:z,borderWidth:D,borderGap:N,borderGapTablet:I,borderGapMobile:V,verticalPadding:W,verticalPaddingTablet:q,verticalPaddingMobile:Z,quoteColor:$,quoteBgColor:Y,quoteSize:K,quoteSizeType:J,quoteSizeTablet:X,quoteSizeMobile:Q,quotePadding:ee,quotePaddingType:te,quotePaddingTablet:ae,quotePaddingMobile:le,quoteBorderRadius:ie,quoteStyle:oe,enableTweet:ne,tweetLinkColor:re,tweetBtnColor:se,tweetBtnHoverColor:ce,tweetBtnBgColor:ue,tweetBtnBgHoverColor:pe,tweetBtnFontSize:be,tweetBtnFontSizeType:de,tweetBtnFontSizeTablet:me,tweetBtnFontSizeMobile:ye,tweetBtnFontFamily:fe,tweetBtnFontWeight:he,tweetBtnFontStyle:ve,tweetBtnLineHeightType:_e,tweetBtnLineHeight:Te,tweetBtnLineHeightTablet:Se,tweetBtnLineHeightMobile:we,tweetBtnLoadGoogleFonts:ke,tweetIconSpacing:Pe,tweetIconSpacingUnit:xe,iconView:Ae,iconSkin:Ge,iconLabel:Me,iconShareVia:Re,iconTargetUrl:Be,customUrl:Ue,authorImage:Oe,authorImageWidth:He,authorImageWidthTablet:je,authorImageWidthMobile:ze,authorImageWidthUnit:De,authorImageGap:Ne,authorImageGapTablet:Ie,authorImageGapMobile:Ve,authorImageGapUnit:We,authorImageSize:qe,authorImgBorderRadius:Ze,authorImgBorderRadiusTablet:$e,authorImgBorderRadiusMobile:Ye,authorImgPosition:Ke,quoteTopMargin:Je,quoteBottomMargin:Xe,quoteLeftMargin:Qe,quoteRightMargin:et,quoteHoverColor:tt,quoteBgHoverColor:at,borderHoverColor:lt,authorImgBorderRadiusUnit:it,borderWidthUnit:ot,quoteBorderRadiusUnit:nt,quoteUnit:rt,quotemobileUnit:st,quotetabletUnit:ct,borderGapUnit:ut,descSpaceUnit:pt,authorSpaceUnit:bt,verticalPaddingUnit:dt,paddingBtnTop:gt,paddingBtnBottom:mt,paddingBtnLeft:yt,paddingBtnRight:ft,paddingBtnTopTablet:ht,paddingBtnRightTablet:vt,paddingBtnBottomTablet:_t,paddingBtnLeftTablet:Tt,paddingBtnTopMobile:Ct,paddingBtnRightMobile:St,paddingBtnBottomMobile:wt,paddingBtnLeftMobile:kt,paddingBtnUnit:Pt,mobilePaddingBtnUnit:xt,tabletPaddingBtnUnit:At,btnspacingLink:Gt,spacingLink:Mt,descTransform:Rt,authorTransform:Bt,tweetBtnTransform:Ut,descDecoration:Et,authorDecoration:Ot,tweetBtnDecoration:Lt,quoteTopMarginTablet:Ht,quoteBottomMarginTablet:jt,quoteLeftMarginTablet:Ft,quoteRightMarginTablet:zt,quoteTopMarginMobile:Dt,quoteBottomMarginMobile:Nt,quoteLeftMarginMobile:It,quoteRightMarginMobile:Vt,author:Wt,descLetterSpacing:qt,descLetterSpacingTablet:Zt,descLetterSpacingMobile:$t,descLetterSpacingType:Yt,authorLetterSpacing:Kt,authorLetterSpacingTablet:Jt,authorLetterSpacingMobile:Xt,authorLetterSpacingType:Qt,tweetBtnLetterSpacing:ea,tweetBtnLetterSpacingTablet:ta,tweetBtnLetterSpacingMobile:aa,tweetBtnLetterSpacingType:la}=a,ia=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}],oa=React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{e&&e.url?e.type&&"image"===e.type&&t({authorImage:e}):t({authorImage:null})},backgroundImage:Oe,onRemoveImage:()=>{t({authorImage:null})},label:Object(r.__)("Author Image","ultimate-addons-for-gutenberg"),slug:"author-image"}),Oe&&"null"!==Oe.url&&""!==Oe.url&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Author Image Position","ultimate-addons-for-gutenberg"),data:{value:Ke,label:"authorImgPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"left",label:"Left"},{value:"top",label:"Top"},{value:"right",label:"Right"}],showIcons:!1}))),na=React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Quote Icon Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:K,label:"quoteSize"},tablet:{value:X,label:"quoteSizeTablet"},mobile:{value:Q,label:"quoteSizeMobile"}},min:0,max:50,unit:{value:J,label:"quoteSizeType"},setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Background Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:ee,label:"quotePadding"},tablet:{value:ae,label:"quotePaddingTablet"},mobile:{value:le,label:"quotePaddingMobile"}},min:0,max:200,unit:{value:te,label:"quotePaddingType"},setAttributes:t}),Y&&React.createElement(Qa,{label:Object(r.__)("Quote Icon Border Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:ie,data:{value:ie,label:"quoteBorderRadius"},min:0,max:100,unit:{value:nt,label:"quoteBorderRadiusUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),ra=React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg")},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:i,label:"skinStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"border",label:Object(r.__)("Border","ultimate-addons-for-gutenberg")},{value:"quotation",label:Object(r.__)("Quotation","ultimate-addons-for-gutenberg")}],showIcons:!1}),"quotation"===i&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Quotation Type","ultimate-addons-for-gutenberg"),data:{value:oe,label:"quoteStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"style_1",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"style_2",label:Object(r.__)("Inline","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),oa),sa=React.createElement(Fe,{title:Object(r.__)("Quote","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Quote Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"descColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Quote Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:_,label:"descLoadGoogleFonts"},fontFamily:{value:d,label:"descFontFamily"},fontWeight:{value:g,label:"descFontWeight"},fontStyle:{value:m,label:"descFontStyle"},fontSizeType:{value:u,label:"descFontSizeType"},fontSize:{value:c,label:"descFontSize"},fontSizeMobile:{value:b,label:"descFontSizeMobile"},fontSizeTablet:{value:p,label:"descFontSizeTablet"},lineHeightType:{value:y,label:"descLineHeightType"},lineHeight:{value:f,label:"descLineHeight"},lineHeightMobile:{value:v,label:"descLineHeightMobile"},lineHeightTablet:{value:h,label:"descLineHeightTablet"},letterSpacing:{value:qt,label:"descLetterSpacing"},letterSpacingTablet:{value:Zt,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:$t,label:"descLetterSpacingMobile"},letterSpacingType:{value:Yt,label:"descLetterSpacingType"},transform:{value:Rt,label:"descTransform"},decoration:{value:Et,label:"descDecoration"}})),ca=React.createElement(Fe,{title:Object(r.__)("Author","ultimate-addons-for-gutenberg"),initialOpen:!1},""!==Wt&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Author Color","ultimate-addons-for-gutenberg"),colorValue:n||"",data:{value:n,label:"authorColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Author Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:B,label:"authorLoadGoogleFonts"},fontFamily:{value:k,label:"authorFontFamily"},fontWeight:{value:P,label:"authorFontWeight"},fontStyle:{value:x,label:"authorFontStyle"},fontSizeType:{value:C,label:"authorFontSizeType"},fontSize:{value:T,label:"authorFontSize"},fontSizeMobile:{value:w,label:"authorFontSizeMobile"},fontSizeTablet:{value:S,label:"authorFontSizeTablet"},lineHeightType:{value:A,label:"authorLineHeightType"},lineHeight:{value:G,label:"authorLineHeight"},lineHeightMobile:{value:R,label:"authorLineHeightMobile"},lineHeightTablet:{value:M,label:"authorLineHeightTablet"},letterSpacing:{value:Kt,label:"authorLetterSpacing"},letterSpacingTablet:{value:Jt,label:"authorLetterSpacingTablet"},letterSpacingMobile:{value:Xt,label:"authorLetterSpacingMobile"},letterSpacingType:{value:Qt,label:"authorLetterSpacingType"},transform:{value:Bt,label:"authorTransform"},decoration:{value:Ot,label:"authorDecoration"}})),Oe&&"null"!==Oe.url&&""!==Oe.url&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Author Image Size","ultimate-addons-for-gutenberg"),data:{value:qe,label:"authorImageSize"},setAttributes:t,options:ia}),React.createElement(tl,{label:Object(r.__)("Author Image Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:He,label:"authorImageWidth"},tablet:{value:je,label:"authorImageWidthTablet"},mobile:{value:ze,label:"authorImageWidthMobile"}},min:0,max:500,unit:{value:De,label:"authorImageWidthUnit"},setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Image Border Radius","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ze,label:"authorImgBorderRadius"},tablet:{value:$e,label:"authorImgBorderRadiusTablet"},mobile:{value:Ye,label:"authorImgBorderRadiusMobile"}},min:0,max:50,unit:{value:it,label:"authorImgBorderRadiusUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:t}))),ua=React.createElement(Fe,{title:Object(r.__)("Twitter Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Icon","ultimate-addons-for-gutenberg"),checked:ne,onChange:()=>t({enableTweet:!ne})}),ne&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Twitter Username","ultimate-addons-for-gutenberg"),data:{value:Re,label:"iconShareVia"},setAttributes:t,value:Re,onChange:e=>t({iconShareVia:e})}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Icon View","ultimate-addons-for-gutenberg"),data:{value:Ae,label:"iconView"},className:"uagb-multi-button-alignment-control",options:[{value:"icon_text",label:Object(r.__)("Both","ultimate-addons-for-gutenberg")},{value:"icon",label:Object(r.__)("Icon","ultimate-addons-for-gutenberg")},{value:"text",label:Object(r.__)("Text","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Icon Style","ultimate-addons-for-gutenberg"),data:{value:Ge,label:"iconSkin"},className:"uagb-multi-button-alignment-control",options:[{value:"classic",label:Object(r.__)("Classic","ultimate-addons-for-gutenberg")},{value:"bubble",label:Object(r.__)("Bubble","ultimate-addons-for-gutenberg")},{value:"link",label:Object(r.__)("Link","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Target URL","ultimate-addons-for-gutenberg"),data:{value:Be,label:"iconTargetUrl"},className:"uagb-multi-button-alignment-control",options:[{value:"current",label:Object(r.__)("Current Page","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom URL","ultimate-addons-for-gutenberg")}],showIcons:!1}),"custom"===Be&&React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:Ue,data:{value:Ue,label:"customUrl"},setAttributes:t,onChange:e=>t({customUrl:e})})),ne&&"icon"!==Ae&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Label","ultimate-addons-for-gutenberg"),value:Me,data:{value:Me,label:"iconLabel"},setAttributes:t,onChange:e=>t({iconLabel:e})}))),pa=React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},Oe&&Oe.url&&React.createElement(tl,{label:Object(r.__)("Author - Image Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ne,label:"authorImageGap"},tablet:{value:Ie,label:"authorImageGapTablet"},mobile:{value:Ve,label:"authorImageGapMobile"}},min:0,max:500,unit:{value:We,label:"authorImageGapUnit"},setAttributes:t}),"quotation"===i&&React.createElement(Pl,gv({},e,{label:Object(r.__)("Quote Icon Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Je,label:"quoteTopMargin"},valueRight:{value:et,label:"quoteRightMargin"},valueBottom:{value:Xe,label:"quoteBottomMargin"},valueLeft:{value:Qe,label:"quoteLeftMargin"},valueTopTablet:{value:Ht,label:"quoteTopMarginTablet"},valueRightTablet:{value:zt,label:"quoteRightMarginTablet"},valueBottomTablet:{value:jt,label:"quoteBottomMarginTablet"},valueLeftTablet:{value:Ft,label:"quoteLeftMarginTablet"},valueTopMobile:{value:Dt,label:"quoteTopMarginMobile"},valueRightMobile:{value:Vt,label:"quoteRightMarginMobile"},valueBottomMobile:{value:Nt,label:"quoteBottomMarginMobile"},valueLeftMobile:{value:It,label:"quoteLeftMarginMobile"},unit:{value:rt,label:"quoteUnit"},mUnit:{value:st,label:"quotemobileUnit"},tUnit:{value:ct,label:"quotetabletUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Mt,label:"spacingLink"}})),"border"===i&&React.createElement(tl,{label:Object(r.__)("Border - Quote Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:N,label:"borderGap"},tablet:{value:I,label:"borderGapTablet"},mobile:{value:V,label:"borderGapMobile"}},min:0,max:200,unit:{value:ut,label:"borderGapUnit"},setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Quote Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:U,label:"descSpace"},tablet:{value:E,label:"descSpaceTablet"},mobile:{value:O,label:"descSpaceMobile"}},min:0,max:200,unit:{value:pt,label:"descSpaceUnit"},setAttributes:t}),"center"===o&&"border"!==i&&React.createElement(tl,{label:Object(r.__)("Author Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:L,label:"authorSpace"},tablet:{value:H,label:"authorSpaceTablet"},mobile:{value:j,label:"authorSpaceMobile"}},min:0,max:200,unit:{value:bt,label:"authorSpaceUnit"},setAttributes:t}),"border"===i&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Vertical Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:W,label:"verticalPadding"},tablet:{value:q,label:"verticalPaddingTablet"},mobile:{value:Z,label:"verticalPaddingMobile"}},min:0,max:500,unit:{value:dt,label:"verticalPaddingUnit"},setAttributes:t})));return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{key:"controls"}),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,ra,ua,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,(()=>{const e=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:$||"",data:{value:$,label:"quoteColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:Y||"",data:{value:Y,label:"quoteBgColor"},setAttributes:t})),a=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:tt||"",data:{value:tt,label:"quoteHoverColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:at||"",data:{value:at,label:"quoteBgHoverColor"},setAttributes:t}));return React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},"border"===i&&(()=>{const e=React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:F||"",data:{value:F,label:"borderColor"},setAttributes:t}),a=React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:lt||"",data:{value:lt,label:"borderHoverColor"},setAttributes:t});return React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Border Style","ultimate-addons-for-gutenberg"),data:{value:z,label:"borderStyle"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),"none"!==z&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:t,value:D,data:{value:D,label:"borderWidth"},min:0,max:50,unit:{value:ot,label:"borderWidthUnit"}}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:e,hover:a,disableBottomSeparator:!0})))})(),"quotation"===i&&na,"quotation"===i&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:e,hover:a,disableBottomSeparator:!0}))})(),ne&&React.createElement(Fe,{title:Object(r.__)("Twitter Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},"link"===Ge&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:re||"",data:{value:re,label:"tweetLinkColor"},setAttributes:t}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ce||"",data:{value:ce,label:"tweetBtnHoverColor"},setAttributes:t})}),"link"!==Ge&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:se||"",data:{value:se,label:"tweetBtnColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ue||"",data:{value:ue,label:"tweetBtnBgColor"},setAttributes:t})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ce||"",data:{value:ce,label:"tweetBtnHoverColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:pe||"",data:{value:pe,label:"tweetBtnBgHoverColor"},setAttributes:t}))}),"icon_text"===Ae&&React.createElement(Qa,{label:Object(r.__)("Icon & Text Spacing","ultimate-addons-for-gutenberg"),setAttributes:t,value:Pe,data:{value:Pe,label:"tweetIconSpacing"},min:0,max:20,unit:{value:xe,label:"tweetIconSpacingUnit"},initialPosition:5}),"link"!==Ge&&React.createElement(Pl,gv({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:gt,label:"paddingBtnTop"},valueRight:{value:ft,label:"paddingBtnRight"},valueBottom:{value:mt,label:"paddingBtnBottom"},valueLeft:{value:yt,label:"paddingBtnLeft"},valueTopTablet:{value:ht,label:"paddingBtnTopTablet"},valueRightTablet:{value:vt,label:"paddingBtnRightTablet"},valueBottomTablet:{value:_t,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:Tt,label:"paddingBtnLeftTablet"},valueTopMobile:{value:Ct,label:"paddingBtnTopMobile"},valueRightMobile:{value:St,label:"paddingBtnRightMobile"},valueBottomMobile:{value:wt,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:kt,label:"paddingBtnLeftMobile"},unit:{value:Pt,label:"paddingBtnUnit"},mUnit:{value:xt,label:"mobilePaddingBtnUnit"},tUnit:{value:At,label:"tabletPaddingBtnUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Gt,label:"btnspacingLink"}})),"icon"!==Ae&&React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:ke,label:"tweetBtnLoadGoogleFonts"},fontFamily:{value:fe,label:"tweetBtnFontFamily"},fontWeight:{value:he,label:"tweetBtnFontWeight"},fontStyle:{value:ve,label:"tweetBtnFontStyle"},fontSizeType:{value:de,label:"tweetBtnFontSizeType"},fontSize:{value:be,label:"tweetBtnFontSize"},fontSizeMobile:{value:ye,label:"tweetBtnFontSizeMobile"},fontSizeTablet:{value:me,label:"tweetBtnFontSizeTablet"},lineHeightType:{value:_e,label:"tweetBtnLineHeightType"},lineHeight:{value:Te,label:"tweetBtnLineHeight"},lineHeightMobile:{value:we,label:"tweetBtnLineHeightMobile"},lineHeightTablet:{value:Se,label:"tweetBtnLineHeightTablet"},letterSpacing:{value:ea,label:"tweetBtnLetterSpacing"},letterSpacingTablet:{value:ta,label:"tweetBtnLetterSpacingTablet"},letterSpacingMobile:{value:aa,label:"tweetBtnLetterSpacingMobile"},letterSpacingType:{value:la,label:"tweetBtnLetterSpacingType"},transform:{value:Ut,label:"tweetBtnTransform"},decoration:{value:Lt,label:"tweetBtnDecoration"}})),sa,ca,pa),React.createElement(il,gv({},rl,{parentProps:e})))))}),fv=e=>{let{attributes:t,setAttributes:a,props:l}=e;return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:t.descriptionText,placeholder:Object(r.__)("Write a Quote","ultimate-addons-for-gutenberg"),className:"uagb-blockquote__content",onChange:e=>a({descriptionText:e}),onMerge:l.mergeBlocks,onSplit:l.insertBlocksAfter?function(e,t){a({content:e});for(var i=arguments.length,o=new Array(i>2?i-2:0),n=2;n<i;n++)o[n-2]=arguments[n];l.insertBlocksAfter([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>l.onReplace([])}):React.createElement(ge.RichText.Content,{tagName:"div",value:t.descriptionText,className:"uagb-blockquote__content"})},hv=e=>{let{attributes:t}=e,a="";void 0!==t.authorImage&&null!==t.authorImage&&""!==t.authorImage&&(a=t.authorImage.url);let l="";if(""!==a){const e=t.authorImage.sizes,{authorImageSize:i,authorImageWidth:o}=t;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement("img",{className:"",src:l,alt:t.authorImage.alt,width:o,height:o,loading:"lazy"})}return null},vv=e=>{let{attributes:t,setAttributes:a,props:l}=e;return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:t.author,placeholder:Object(r.__)("Author","ultimate-addons-for-gutenberg"),className:"uagb-blockquote__author",onChange:e=>a({author:e}),onMerge:l.mergeBlocks,onSplit:l.insertBlocksAfter?function(e,t){a({content:e});for(var i=arguments.length,o=new Array(i>2?i-2:0),n=2;n<i;n++)o[n-2]=arguments[n];l.insertBlocksAfter([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>l.onReplace([])}):React.createElement(ge.RichText.Content,{tagName:"cite",value:t.author,className:"uagb-blockquote__author"})},_v=function(e){const{attributes:t}=e;return React.createElement("a",{onClick:e=>e.preventDefault(),href:"/",className:"uagb-blockquote__tweet-button",target:"_blank",rel:"noopener noreferrer"},"icon_text"===t.iconView&&React.createElement(React.Fragment,null,se.quote_tweet_icon,t.iconLabel),"icon"===t.iconView&&React.createElement(React.Fragment,null,se.quote_tweet_icon),"text"===t.iconView&&React.createElement(React.Fragment,null,t.iconLabel))},Tv=a(110),Cv=0,Sv={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},wv={};wv.locals=Tv.a.locals||{},wv.use=function(){return Cv++||(mv=ke()(Tv.a,Sv)),wv},wv.unuse=function(){Cv>0&&!--Cv&&(mv(),mv=null)};var kv=wv,Pv=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(kv.use(),()=>{kv.unuse()}),[]);const{className:t,setAttributes:a,attributes:l,deviceType:i}=e,{block_id:o,skinStyle:n,align:r,stack:s,quoteStyle:c,enableTweet:u,iconView:p,iconSkin:b,authorImage:d,authorImgPosition:g}=l;return React.createElement("div",{className:Be()(t,"uagb-block-"+o,"uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-blockquote__skin-"+n,"border"!==n?"uagb-blockquote__align-"+r:"","quotation"===n?"uagb-blockquote__style-"+c:"",u?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${b} uagb-blockquote__tweet-${p}`:"","uagb-blockquote__stack-img-"+s)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===n&&React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon),React.createElement(fv,{attributes:l,setAttributes:a,props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==d?"uagb-blockquote__author-at-"+g:"")},React.createElement(hv,{attributes:l}),React.createElement(vv,{attributes:l,setAttributes:a,props:e})),u&&React.createElement(_v,{attributes:l}))))}),xv=Object(L.compose)(vs,fe)(e=>{const{attributes:t,attributes:{UAGHideDesktop:a,UAGHideTab:l,UAGHideMob:i,authorImageWidthUnit:o,authorImgBorderRadiusUnit:n},isSelected:r,setAttributes:s,clientId:c,name:u,deviceType:p}=e;Object(B.useEffect)(()=>{void 0===o&&s({authorImageWidthUnit:"px"}),void 0===n&&s({authorImgBorderRadiusUnit:"%"})},[]),Object(B.useEffect)(()=>{Bs()},[p]),Object(B.useEffect)(()=>{he(e)},[a,l,i,p]);const b=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,skinStyle:r,align:s,authorColor:c,descColor:u,descFontSize:p,descFontSizeType:b,descFontSizeTablet:d,descFontSizeMobile:g,descFontFamily:m,descFontWeight:y,descLineHeightType:f,descLineHeight:h,descLineHeightTablet:v,descLineHeightMobile:_,authorFontSize:T,authorFontSizeType:C,authorFontSizeTablet:S,authorFontSizeMobile:w,authorFontFamily:k,authorFontWeight:P,authorLineHeightType:x,authorLineHeight:A,authorLineHeightTablet:G,authorLineHeightMobile:M,descSpace:R,descSpaceTablet:B,descSpaceMobile:U,authorSpace:E,authorSpaceTablet:O,authorSpaceMobile:L,borderColor:H,borderStyle:j,borderWidth:F,borderGap:z,borderGapTablet:D,borderGapMobile:N,verticalPadding:I,verticalPaddingTablet:V,verticalPaddingMobile:W,verticalPaddingUnit:q,quoteColor:Z,quoteSize:$,quoteSizeType:Y,quoteSizeTablet:K,quoteSizeMobile:J,quoteBgColor:X,enableTweet:Q,tweetBtnFontSize:ee,tweetBtnFontSizeType:te,tweetBtnFontSizeTablet:le,tweetBtnFontSizeMobile:ie,tweetBtnFontFamily:oe,tweetBtnFontWeight:ne,tweetBtnLineHeightType:re,tweetBtnLineHeight:se,tweetBtnLineHeightTablet:ce,tweetBtnLineHeightMobile:ue,tweetLinkColor:pe,tweetBtnColor:be,tweetBtnBgColor:de,tweetBtnHoverColor:ge,tweetBtnBgHoverColor:me,tweetIconSpacing:ye,tweetIconSpacingUnit:fe,authorImageWidth:he,authorImageWidthTablet:ve,authorImageWidthMobile:_e,authorImageWidthUnit:Te,authorImageGap:Ce,authorImageGapTablet:Se,authorImageGapMobile:we,authorImageGapUnit:ke,authorImgBorderRadius:Pe,authorImgBorderRadiusTablet:xe,authorImgBorderRadiusMobile:Ae,quoteBorderRadius:Ge,quoteTopMargin:Me,quoteBottomMargin:Re,quoteLeftMargin:Be,quoteRightMargin:Ue,quoteHoverColor:Ee,quoteBgHoverColor:Oe,borderHoverColor:Le,quotePadding:He,quotePaddingType:je,quotePaddingTablet:Fe,quotePaddingMobile:ze,authorImgBorderRadiusUnit:De,borderWidthUnit:Ne,quoteBorderRadiusUnit:Ie,quoteUnit:Ve,borderGapUnit:We,descSpaceUnit:qe,authorSpaceUnit:Ze,paddingBtnTop:$e,paddingBtnBottom:Ye,paddingBtnLeft:Ke,paddingBtnRight:Je,paddingBtnTopTablet:Xe,paddingBtnRightTablet:Qe,paddingBtnBottomTablet:et,paddingBtnLeftTablet:tt,paddingBtnTopMobile:at,paddingBtnRightMobile:lt,paddingBtnBottomMobile:it,paddingBtnLeftMobile:ot,paddingBtnUnit:nt,mobilePaddingBtnUnit:rt,tabletPaddingBtnUnit:st,descTransform:ct,authorTransform:ut,tweetBtnTransform:pt,descDecoration:bt,authorDecoration:dt,tweetBtnDecoration:gt,quoteTopMarginTablet:mt,quoteBottomMarginTablet:yt,quoteLeftMarginTablet:ft,quoteRightMarginTablet:ht,quoteTopMarginMobile:vt,quoteBottomMarginMobile:_t,quoteLeftMarginMobile:Tt,quoteRightMarginMobile:Ct,quotemobileUnit:St,quotetabletUnit:wt,descFontStyle:kt,authorFontStyle:Pt,tweetBtnFontStyle:xt,stack:At,descLetterSpacing:Gt,descLetterSpacingTablet:Mt,descLetterSpacingMobile:Rt,descLetterSpacingType:Bt,authorLetterSpacing:Ut,authorLetterSpacingTablet:Et,authorLetterSpacingMobile:Ot,authorLetterSpacingType:Lt,tweetBtnLetterSpacing:Ht,tweetBtnLetterSpacingTablet:jt,tweetBtnLetterSpacingMobile:Ft,tweetBtnLetterSpacingType:zt}=e;let Dt=E,Nt=O,It=L;"center"===s&&"border"!==r||(Dt=0,Nt=0,It=0);const Vt=Ps(R,"descSpace",i),Wt=Ps(B,"descSpaceTablet",i),qt=Ps(U,"descSpaceMobile",i),Zt=Ps(F,"borderWidth",i),$t=Ps(z,"borderGap",i),Yt=Ps(D,"borderGapTablet",i),Kt=Ps(N,"borderGapMobile",i),Jt=Ps(Ge,"quoteBorderRadius",i),Xt=Ps($,"quoteSize",i),Qt=Ps(K,"quoteSizeTablet",i),ea=Ps(J,"quoteSizeMobile",i),ta=Ps(Dt,"authorSpace",i),aa=Ps(Nt,"authorSpaceTablet",i),la=Ps(It,"authorSpaceMobile",i),ia=Ps(he,"authorImageWidth",i),oa=Ps(ve,"authorImageWidthTablet",i),na=Ps(_e,"authorImageWidthMobile",i),ra=Ps(Ce,"authorImageGap",i),sa=Ps(Se,"authorImageGapTablet",i),ca=Ps(we,"authorImageGapMobile",i),ua=Ps(ye,"tweetIconSpacing",i);let pa=s;"border"===r&&(pa="left");const ba={" .uagb-blockquote__content.block-editor-rich-text__editable":{"font-size":ns(p,b),"font-family":m,"font-weight":y,"line-height":ns(h,f),"font-style":kt,"text-decoration":bt,"text-transform":ct,color:u,"margin-bottom":ns(Vt,qe),"text-align":pa,"letter-spacing":ns(Gt,Bt)}," .uagb-blockquote__author.block-editor-rich-text__editable":{"font-size":ns(T,C),"font-family":k,"font-weight":P,"line-height":ns(A,x),"font-style":Pt,"text-decoration":dt,"text-transform":ut,color:c,"text-align":pa,"letter-spacing":ns(Ut,Lt)},".uagb-blockquote__skin-border blockquote.uagb-blockquote":{"border-color":H,"border-left-style":j,"border-left-width":ns(Zt,Ne),"padding-left":ns($t,We),"padding-top":ns(I,q),"padding-bottom":ns(I,q)},".uagb-blockquote__skin-border blockquote.uagb-blockquote:hover":{"border-left-color":Le},".uagb-blockquote__skin-quotation .uagb-blockquote__icon":{background:X,"border-radius":ns(Jt,Ie),"margin-top":ns(Me,Ve),"margin-bottom":ns(Re,Ve),"margin-left":ns(Be,Ve),"margin-right":ns(Ue,Ve),padding:ns(He,je)},".uagb-blockquote__skin-quotation .uagb-blockquote__icon svg":{width:ns(Xt,Y),height:ns(Xt,Y),fill:Z},".uagb-blockquote__skin-quotation .uagb-blockquote__icon:hover":{background:Oe},".uagb-blockquote__skin-quotation .uagb-blockquote__icon:hover svg":{fill:Ee},".uagb-blockquote__style-style_1 .uagb-blockquote":{"text-align":s}," .uagb-blockquote__author-wrap":{"margin-bottom":ns(ta,Ze)}," .uagb-blockquote__author-wrap img":{width:ns(ia,Te),height:ns(ia,Te),"border-radius":ns(Pe,De)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img":{"margin-left":ns(ra,ke)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img":{"margin-bottom":ns(ra,ke)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img":{"margin-right":ns(ra,ke)}};if(Q){ba[" a.uagb-blockquote__tweet-button"]={"font-size":ns(ee,te),"font-family":oe,"font-weight":ne,"line-height":ns(se,re),"font-style":xt,"text-decoration":gt,"text-transform":pt,"letter-spacing":ns(Ht,zt)},ba[".uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button"]={color:pe},ba[".uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button svg"]={fill:pe},ba[".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button"]={color:be,"background-color":de,"padding-left":ns(Ke,nt),"padding-right":ns(Je,nt),"padding-top":ns($e,nt),"padding-bottom":ns(Ye,nt)},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button"]={color:be,"background-color":de,"padding-left":ns(Ke,nt),"padding-right":ns(Je,nt),"padding-top":ns($e,nt),"padding-bottom":ns(Ye,nt)},ba[".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button svg"]={fill:be},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button svg"]={fill:be},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before"]={"border-right-color":de},ba[" a.uagb-blockquote__tweet-button svg"]={width:ns(ee,te),height:ns(ee,te)};const e="1"===uagb_blocks_info.is_rtl?"margin-left":"margin-right";ba[".uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button svg"]={[e]:ns(ua,fe)},ba[".uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover"]={color:ge},ba[".uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover svg"]={fill:ge},ba[".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover"]={color:ge,"background-color":me},ba[".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover svg"]={fill:ge,"background-color":me},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover "]={color:ge,"background-color":me},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover svg"]={fill:ge,"background-color":me},ba[".uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover:before"]={"border-right-color":me}}const da={".uagb-blockquote__skin-quotation .uagb-blockquote__icon":{"margin-top":ns(mt,wt),"margin-bottom":ns(yt,wt),"margin-left":ns(ft,wt),"margin-right":ns(ht,wt),padding:ns(Fe,je)}," .uagb-blockquote__content.block-editor-rich-text__editable":{"font-size":ns(d,b),"line-height":ns(v,f),"margin-bottom":ns(Wt,qe),"letter-spacing":ns(Mt,Bt)}," .uagb-blockquote__author.block-editor-rich-text__editable":{"font-size":ns(S,C),"line-height":ns(G,x),"letter-spacing":ns(Et,Lt)}," a.uagb-blockquote__tweet-button":{"font-size":ns(le,te),"line-height":ns(ce,re),"letter-spacing":ns(jt,zt)}," a.uagb-blockquote__tweet-button svg":{width:ns(le,te),height:ns(le,te)},".uagb-blockquote__skin-quotation .uagb-blockquote__icon svg":{width:ns(Qt,Y),height:ns(Qt,Y)},".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button":{"padding-left":ns(tt,st),"padding-right":ns(Qe,st),"padding-top":ns(Xe,st),"padding-bottom":ns(et,st)},".uagb-blockquote__skin-border blockquote.uagb-blockquote":{"padding-top":ns(V,q),"padding-bottom":ns(V,q),"padding-left":ns(Yt,We)}," .uagb-blockquote__author-wrap":{"margin-bottom":ns(aa,Ze)}," .uagb-blockquote__author-wrap img":{width:ns(oa,Te),height:ns(oa,Te),"border-radius":ns(xe,De)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img":{"margin-left":"tablet"===At?"0px":ns(sa,ke),"margin-bottom":"tablet"===At?ns(sa,ke):"0px"}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img":{"margin-bottom":ns(sa,ke)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img":{"margin-right":"tablet"===At?"0px":ns(sa,ke),"margin-bottom":"tablet"===At?ns(sa,ke):"0px"}},ga={".uagb-blockquote__skin-quotation .uagb-blockquote__icon":{"margin-top":ns(vt,St),"margin-bottom":ns(_t,St),"margin-left":ns(Tt,St),"margin-right":ns(Ct,St),padding:ns(ze,je)}," .uagb-blockquote__content.block-editor-rich-text__editable":{"font-size":ns(g,b),"line-height":ns(_,f),"margin-bottom":ns(qt,qe),"letter-spacing":ns(Rt,Bt)}," .uagb-blockquote__author.block-editor-rich-text__editable":{"font-size":ns(w,C),"line-height":ns(M,x),"letter-spacing":ns(Ot,Lt)}," a.uagb-blockquote__tweet-button":{"font-size":ns(ie,te),"line-height":ns(ue,re),"letter-spacing":ns(Ft,zt)}," a.uagb-blockquote__tweet-button svg":{width:ns(ie,te),height:ns(ie,te)},".uagb-blockquote__skin-quotation .uagb-blockquote__icon svg":{width:ns(ea,Y),height:ns(ea,Y)},".uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button":{"padding-left":ns(ot,rt),"padding-right":ns(lt,rt),"padding-top":ns(at,rt),"padding-bottom":ns(it,rt)},".uagb-blockquote__skin-border blockquote.uagb-blockquote":{"padding-top":ns(W,q),"padding-bottom":ns(W,q),"padding-left":ns(Kt,We)}," .uagb-blockquote__author-wrap":{"margin-bottom":ns(la,Ze)}," .uagb-blockquote__author-wrap img":{width:ns(na,Te),height:ns(na,Te),"border-radius":ns(Ae,De)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img":{"margin-left":"none"!==At?"0px":ns(ca,ke),"margin-bottom":"none"!==At?ns(ca,ke):"0px"}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img":{"margin-bottom":ns(ca,ke)}," .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img":{"margin-right":"none"!==At?"0px":ns(ca,ke),"margin-bottom":"none"!==At?ns(ca,ke):"0px"}},ma=".editor-styles-wrapper .uagb-block-"+n;let ya=ae(ba,ma);return"tablet"!==o&&"mobile"!==o||(ya+=ae(da,""+ma,!0,"tablet"),"mobile"===o&&(ya+=ae(ga,""+ma,!0,"mobile"))),ya}(t,0,u,p),[t,p]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:b}),React.createElement(dv,{attributes:t}),r&&React.createElement(yv,e),React.createElement(Pv,e))});a(215);var Av=e=>{let{attributes:t}=e;return React.createElement("a",{href:"/",className:"uagb-blockquote__tweet-button",target:"_blank",rel:"noopener noreferrer"},"icon_text"===t.iconView&&React.createElement(React.Fragment,null,se.quote_tweet_icon,React.createElement("span",{className:"uagb-blockquote__tweet-label"},t.iconLabel)),"icon"===t.iconView&&React.createElement(React.Fragment,null,se.quote_tweet_icon),"text"===t.iconView&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-blockquote__tweet-label"},t.iconLabel)))},Gv=e=>{let{attributes:t}=e,a="";void 0!==t.authorImage&&null!==t.authorImage&&""!==t.authorImage&&(a=t.authorImage.url);let l="";if(""!==a){const e=t.authorImage.sizes,i=t.authorImageSize;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement("div",{className:"uagb-blockquote__author-image"},React.createElement("img",{className:"",src:l,alt:t.authorImage.alt}))}return null},Mv=e=>{let{attributes:t}=e,a="";void 0!==t.authorImage&&null!==t.authorImage&&""!==t.authorImage&&(a=t.authorImage.url);let l="";if(""!==a){const e=t.authorImage.sizes,i=t.authorImageSize;return l=void 0!==e&&void 0!==e[i]?e[i].url:a,React.createElement("img",{className:"",src:l,alt:t.authorImage.alt})}return null};const Rv={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},skinStyle:{type:"string",default:"border"},align:{type:"string",default:"left"},descriptionText:{selector:"div.uagb-blockquote__content",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},descColor:{type:"string"},descFontSize:{type:"number"},descFontSizeType:{type:"string",default:"px"},descFontSizeTablet:{type:"number"},descFontSizeMobile:{type:"number"},descFontFamily:{type:"string",default:"Default"},descFontWeight:{type:"string"},descFontSubset:{type:"string"},descLineHeightType:{type:"string",default:"em"},descLineHeight:{type:"number"},descLineHeightTablet:{type:"number"},descLineHeightMobile:{type:"number"},descLoadGoogleFonts:{type:"boolean",default:!1},descSpace:{type:"number",default:20},author:{selector:".uagb-blockquote__author",default:"Author"},authorColor:{type:"string",default:"#888888"},authorFontSize:{type:"number"},authorFontSizeType:{type:"string",default:"px"},authorFontSizeTablet:{type:"number"},authorFontSizeMobile:{type:"number"},authorFontFamily:{type:"string",default:"Default"},authorFontWeight:{type:"string"},authorFontSubset:{type:"string"},authorLineHeightType:{type:"string",default:"em"},authorLineHeight:{type:"number"},authorLineHeightTablet:{type:"number"},authorLineHeightMobile:{type:"number"},authorLoadGoogleFonts:{type:"boolean",default:!1},authorSpace:{type:"number",default:10},authorImage:{type:"object",default:{url:"",alt:"Author Image"}},authorImageSize:{type:"string",default:"thumbnail"},authorImageWidth:{type:"number",default:40},authorImgBorderRadius:{type:"number",default:100},authorImgPosition:{type:"string",default:"left"},stack:{type:"string",default:"none"},enableTweet:{type:"boolean",default:!0},iconView:{type:"string",default:"icon_text"},iconSkin:{type:"string",default:"classic"},iconLabel:{type:"string",default:"Tweet"},iconShareVia:{type:"string",default:""},iconTargetUrl:{type:"string",default:"current"},customUrl:{type:"string"},tweetLinkColor:{type:"string",default:"#1DA1F2"},tweetBtnColor:{type:"string",default:"#fff"},tweetBtnBgColor:{type:"string",default:"#1DA1F2"},tweetBtnHoverColor:{type:"string"},tweetBtnBgHoverColor:{type:"string",default:"#1DA1F2"},tweetBtnFontSize:{type:"number",default:15},tweetBtnFontSizeType:{type:"string",default:"px"},tweetBtnFontSizeTablet:{type:"number"},tweetBtnFontSizeMobile:{type:"number"},tweetBtnFontFamily:{type:"string",default:"Default"},tweetBtnFontWeight:{type:"string"},tweetBtnFontSubset:{type:"string"},tweetBtnLineHeightType:{type:"string",default:"em"},tweetBtnLineHeight:{type:"number"},tweetBtnLineHeightTablet:{type:"number"},tweetBtnLineHeightMobile:{type:"number"},tweetBtnLoadGoogleFonts:{type:"boolean",default:!1},tweetBtnHrPadding:{type:"number",default:10},tweetBtnVrPadding:{type:"number",default:10},tweetIconSpacing:{type:"number",default:10},borderColor:{type:"string",default:"#abb8c3"},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:4},borderGap:{type:"number",default:15},verticalPadding:{type:"number"},quoteStyle:{type:"string",default:"style_2"},quoteColor:{type:"string",default:"#abb8c3"},quoteSize:{type:"number",default:25},quoteSizeType:{type:"string",default:"px"},quoteSizeTablet:{type:"number"},quoteSizeMobile:{type:"number"},quotePadding:{type:"number",default:10},quotePaddingType:{type:"string",default:"px"},quotePaddingTablet:{type:"number"},quotePaddingMobile:{type:"number"},quoteBorderRadius:{type:"number",default:100},quoteBgColor:{type:"string",default:"#333"},quoteTopMargin:{type:"number"},quoteBottomMargin:{type:"number"},quoteLeftMargin:{type:"number"},quoteRightMargin:{type:"number",default:20},quoteHoverColor:{type:"string"},quoteBgHoverColor:{type:"string"},borderHoverColor:{type:"string"},quoteBorderRadiusUnit:{type:"string",default:"%"},paddingBtnUnit:{type:"string",default:"px"},mobilePaddingBtnUnit:{type:"string",default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px"},tweetIconSpacingUnit:{type:"string",default:"px"},quoteUnit:{type:"string",default:"px"},quotemobileUnit:{type:"string",default:"px"},quotetabletUnit:{type:"string",default:"px"},descSpaceUnit:{type:"string",default:"px"},borderWidthUnit:{type:"string",default:"px"},borderGapUnit:{type:"string",default:"px"},verticalPaddingUnit:{type:"string",default:"px"}};var Bv=[{attributes:Rv,save(e){const{block_id:t,skinStyle:a,align:l,quoteStyle:i,iconSkin:o,authorImage:n,enableTweet:r,iconView:s,author:c,descriptionText:u,authorImgPosition:p,stack:b}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-blockquote__outer-wrap"),id:"uagb-blockquote-"+t},React.createElement("div",{className:Be()("uagb-blockquote__wrap","uagb-blockquote__skin-"+a,"border"!==a?"uagb-blockquote__align-"+l:"","quotation"===a?"uagb-blockquote__style-"+i:"",r?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${o} uagb-blockquote__tweet-${s}`:"","uagb-blockquote__stack-img-"+b)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===a&&React.createElement("div",{className:"uagb-blockquote__icon-wrap"},React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon)),React.createElement("div",{className:"uagb-blockquote__content-wrap"},""!==u&&React.createElement(fv,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==n?"uagb-blockquote__author-at-"+p:"")},React.createElement(Gv,{attributes:e.attributes}),""!==c&&React.createElement(vv,{attributes:e.attributes,setAttributes:"not_set",props:e})),r&&React.createElement(Av,{attributes:e.attributes}))))))}},{attributes:Rv,save(e){const{block_id:t,skinStyle:a,align:l,quoteStyle:i,iconSkin:o,authorImage:n,enableTweet:r,iconView:s,author:c,descriptionText:u,authorImgPosition:p,stack:b}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-blockquote__outer-wrap"),id:"uagb-blockquote-"+t},React.createElement("div",{className:Be()("uagb-blockquote__wrap","uagb-blockquote__skin-"+a,"border"!==a?"uagb-blockquote__align-"+l:"","quotation"===a?"uagb-blockquote__style-"+i:"",r?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${o} uagb-blockquote__tweet-${s}`:"","uagb-blockquote__stack-img-"+b)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===a&&React.createElement("div",{className:"uagb-blockquote__icon-wrap"},React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon)),React.createElement("div",{className:"uagb-blockquote__content-wrap"},""!==u&&React.createElement(fv,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==n?"uagb-blockquote__author-at-"+p:"")},React.createElement(Gv,{attributes:e.attributes}),""!==c&&React.createElement(vv,{attributes:e.attributes,setAttributes:"not_set",props:e})),r&&React.createElement(Av,{attributes:e.attributes}))))))}},{attributes:Rv,save(e){const{block_id:t,skinStyle:a,align:l,quoteStyle:i,iconSkin:o,authorImage:n,enableTweet:r,iconView:s,author:c,descriptionText:u,authorImgPosition:p,stack:b}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-blockquote__outer-wrap","uagb-block-"+t)},React.createElement("div",{className:Be()("uagb-blockquote__wrap","uagb-blockquote__skin-"+a,"border"!==a?"uagb-blockquote__align-"+l:"","quotation"===a?"uagb-blockquote__style-"+i:"",r?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${o} uagb-blockquote__tweet-${s}`:"","uagb-blockquote__stack-img-"+b)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===a&&React.createElement("div",{className:"uagb-blockquote__icon-wrap"},React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon)),React.createElement("div",{className:"uagb-blockquote__content-wrap"},""!==u&&React.createElement(fv,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==n?"uagb-blockquote__author-at-"+p:"")},React.createElement(Gv,{attributes:e.attributes}),""!==c&&React.createElement(vv,{attributes:e.attributes,setAttributes:"not_set",props:e})),r&&React.createElement(Av,{attributes:e.attributes}))))))}},{attributes:Ft,save(e){const{block_id:t,skinStyle:a,align:l,quoteStyle:i,iconSkin:o,authorImage:n,enableTweet:r,iconView:s,author:c,descriptionText:u,authorImgPosition:p,stack:b}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"uagb-blockquote__skin-"+a,"border"!==a?"uagb-blockquote__align-"+l:"","quotation"===a?"uagb-blockquote__style-"+i:"",r?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${o} uagb-blockquote__tweet-${s}`:"","uagb-blockquote__stack-img-"+b)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===a&&React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon),""!==u&&React.createElement(fv,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==n?"uagb-blockquote__author-at-"+p:"")},React.createElement(Mv,{attributes:e.attributes}),""!==c&&React.createElement(vv,{attributes:e.attributes,setAttributes:"not_set",props:e})),r&&React.createElement(_v,{attributes:e.attributes}))))}}],Uv={from:[{type:"block",blocks:["core/quote"],transform:e=>Object(be.createBlock)("uagb/blockquote",{descriptionText:e.value,author:e.citation,align:e.align,descColor:Nc(e.textColor),authorColor:Nc(e.backgroundColor)})},{type:"block",blocks:["core/pullquote"],transform:e=>{var t,a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,V;return Object(be.createBlock)("uagb/blockquote",{descriptionText:e.value,author:(null==e?void 0:e.citation)||"",align:(null==e?void 0:e.textAlign)||"center",enableTweet:!1,descColor:(null==e||null===(t=e.style)||void 0===t||null===(a=t.color)||void 0===a?void 0:a.text)||Nc(null==e?void 0:e.textColor)||"",authorColor:(null==e||null===(l=e.style)||void 0===l||null===(i=l.color)||void 0===i?void 0:i.text)||Nc(null==e?void 0:e.textColor)||"",descFontSize:N((null==e||null===(o=e.style)||void 0===o||null===(n=o.typography)||void 0===n?void 0:n.fontSize)||"16"),authorFontSize:N((null==e||null===(r=e.style)||void 0===r||null===(s=r.typography)||void 0===s?void 0:s.fontSize)||"16"),descFontSizeType:I((null==e||null===(c=e.style)||void 0===c||null===(u=c.typography)||void 0===u?void 0:u.fontSize)||""),authorFontSizeType:I((null==e||null===(p=e.style)||void 0===p||null===(b=p.typography)||void 0===b?void 0:b.fontSize)||""),descFontWeight:(null==e||null===(d=e.style)||void 0===d||null===(g=d.typography)||void 0===g?void 0:g.fontWeight)||"",authorFontWeight:(null==e||null===(m=e.style)||void 0===m||null===(y=m.typography)||void 0===y?void 0:y.fontWeight)||"",descLetterSpacing:N((null==e||null===(f=e.style)||void 0===f||null===(h=f.typography)||void 0===h?void 0:h.letterSpacing)||"0"),authorLetterSpacing:N((null==e||null===(v=e.style)||void 0===v||null===(_=v.typography)||void 0===_?void 0:_.letterSpacing)||"0"),descLetterSpacingType:I((null==e||null===(T=e.style)||void 0===T||null===(C=T.typography)||void 0===C?void 0:C.letterSpacing)||""),authorLetterSpacingType:I((null==e||null===(S=e.style)||void 0===S||null===(w=S.typography)||void 0===w?void 0:w.letterSpacing)||""),descDecoration:(null==e||null===(k=e.style)||void 0===k||null===(P=k.typography)||void 0===P?void 0:P.textDecoration)||"",authorDecoration:(null==e||null===(x=e.style)||void 0===x||null===(A=x.typography)||void 0===A?void 0:A.textDecoration)||"",descTransform:(null==e||null===(G=e.style)||void 0===G||null===(M=G.typography)||void 0===M?void 0:M.textTransform)||"",authorTransform:(null==e||null===(R=e.style)||void 0===R||null===(B=R.typography)||void 0===B?void 0:B.textTransform)||"",descLineHeight:N((null==e||null===(U=e.style)||void 0===U||null===(E=U.typography)||void 0===E?void 0:E.lineHeight)||"1.5"),authorLineHeight:N((null==e||null===(O=e.style)||void 0===O||null===(L=O.typography)||void 0===L?void 0:L.lineHeight)||"1.5"),skinStyle:"quotation",quoteStyle:"style_1",descFontStyle:"normal",quoteColor:(null==e||null===(H=e.style)||void 0===H||null===(j=H.color)||void 0===j?void 0:j.text)||Nc(null==e?void 0:e.textColor)||"",quoteSize:N((null==e||null===(F=e.style)||void 0===F||null===(z=F.typography)||void 0===z?void 0:z.fontSize)||"16"),quoteSizeType:I((null==e||null===(D=e.style)||void 0===D||null===(V=D.typography)||void 0===V?void 0:V.fontSize)||"")})}},{type:"block",blocks:["core/heading"],transform:e=>Object(be.createBlock)("uagb/blockquote",{descriptionText:e.content,align:e.textAlign,descColor:Nc(e.textColor),authorColor:Nc(e.backgroundColor)})},{type:"block",blocks:["core/paragraph"],transform:e=>Object(be.createBlock)("uagb/blockquote",{descriptionText:e.content,descColor:Nc(e.textColor),authorColor:Nc(e.backgroundColor)})},{type:"block",blocks:["core/list"],transform:(e,t)=>{const a=[];return t.forEach((e,l)=>{a.push({text:t[l].attributes.content})}),a.map(t=>Object(be.createBlock)("uagb/blockquote",{descriptionText:t.text,descColor:Nc(e.textColor),authorColor:Nc(e.backgroundColor)}))}}],to:[{type:"block",blocks:["core/quote"],transform:e=>Object(be.createBlock)("core/quote",{value:`<p>${e.descriptionText}</p>`,citation:e.author,align:e.align})},{type:"block",blocks:["core/heading"],transform:e=>Object(be.createBlock)("core/heading",{content:e.descriptionText,align:e.align})},{type:"block",blocks:["core/paragraph"],transform:e=>Object(be.createBlock)("core/paragraph",{content:e.descriptionText,align:e.align})}]};let Ev={};Ev=Object(j.applyFilters)("uagb/blockquote",ws(Ev)),Object(be.registerBlockType)("uagb/blockquote",{...Ev,title:Object(r.__)("Blockquote","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display qoutes/quoted texts using blockquote.","ultimate-addons-for-gutenberg"),icon:se.blockquote,keywords:[Object(r.__)("blockquote","ultimate-addons-for-gutenberg"),Object(r.__)("quote","ultimate-addons-for-gutenberg"),Object(r.__)("uagb","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Ft,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"blockquote"}):React.createElement(xv,e),save:function(e){const{block_id:t,skinStyle:a,align:l,quoteStyle:i,iconSkin:o,authorImage:n,enableTweet:r,iconView:s,author:c,descriptionText:u,authorImgPosition:p,stack:b}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-block-"+t,"uagb-blockquote__skin-"+a,"border"!==a?"uagb-blockquote__align-"+l:"","quotation"===a?"uagb-blockquote__style-"+i:"",r?`uagb-blockquote__with-tweet uagb-blockquote__tweet-style-${o} uagb-blockquote__tweet-${s}`:"","uagb-blockquote__stack-img-"+b)},React.createElement("blockquote",{className:"uagb-blockquote"},"quotation"===a&&React.createElement("span",{className:"uagb-blockquote__icon"},se.quote_inline_icon),""!==u&&React.createElement(fv,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("footer",null,React.createElement("div",{className:Be()("uagb-blockquote__author-wrap",""!==n?"uagb-blockquote__author-at-"+p:"")},React.createElement(hv,{attributes:e.attributes}),""!==c&&React.createElement(vv,{attributes:e.attributes,setAttributes:"not_set",props:e})),r&&React.createElement(_v,{attributes:e.attributes}))))},deprecated:Bv,transforms:Uv}),a(57);var Ov=function(e,t){let a="uagb-timeline__arrow-top ";"center"===e.arrowlinAlignment?a="uagb-timeline__arrow-center ":"bottom"===e.arrowlinAlignment&&(a="uagb-timeline__arrow-bottom ");let l=t;"Desktop"===t&&(l="");const i=void 0!==e["timelinAlignment"+l]?e["timelinAlignment"+l]:e.timelinAlignment;let o="uagb-timeline__center-block  ";return"left"===i?o="uagb-timeline__left-block ":"right"===i&&(o="uagb-timeline__right-block "),o+=a+"",o+=" uagb-timeline",[o]},Lv=function(e,t,a){let l="",i=a;"Desktop"===a&&(i="");const o=void 0!==e["timelinAlignment"+i]?e["timelinAlignment"+i]:e.timelinAlignment;return"left"===o?l="uagb-timeline__left":"right"===o?l="uagb-timeline__right":"center"===o&&(l=t%2==0?"uagb-timeline__right":"uagb-timeline__left"),[l]},Hv=function(e,t,a){let l="",i=a;"Desktop"===a&&(i="");const o=void 0!==e["timelinAlignment"+i]?e["timelinAlignment"+i]:e.timelinAlignment;return"left"===o?l="uagb-timeline__day-new uagb-timeline__day-left":"right"===o?l="uagb-timeline__day-new uagb-timeline__day-right":"center"===o&&(l=t%2==0?"uagb-timeline__day-new uagb-timeline__day-right":"uagb-timeline__day-new uagb-timeline__day-left"),[l]};function jv(e){var t="uagb-timeline__arrow-top ";"center"==e.arrowlinAlignment?t="uagb-timeline__arrow-center ":"bottom"==e.arrowlinAlignment&&(t="uagb-timeline__arrow-bottom ");var a="uagb-timeline__center-block  ";return"left"==e.timelinAlignment?a="uagb-timeline__left-block ":"right"==e.timelinAlignment&&(a="uagb-timeline__right-block "),a+=t+"",[a+="uagb-timeline__responsive-"+e.stack+" uagb-timeline"]}var Fv=[{attributes:Mt,save(e){const{block_id:t,headingTag:a,timelinAlignment:l,displayPostDate:i,icon:o,tm_content:n,t_date:r,stack:s,className:c}=e.attributes,u=(Array.isArray(n)&&n.length,Object(Qh.getSettings)().formats.date);let p=Lv(e.attributes,0),b=Hv(e.attributes,0),d=!1;return React.createElement("div",{className:Be()(c,"uagb-timeline__outer-wrap"),id:"uagb-ctm-"+t},React.createElement("div",{className:Be()("uagb-timeline__content-wrap",...Ov(e.attributes))},React.createElement("div",{className:"uagb-timeline-wrapper"},React.createElement("div",{className:"uagb-timeline__main"},React.createElement("div",{className:"uagb-timeline__days"},n.map((t,n)=>{"center"==l&&(d=!0,p=Lv(e.attributes,n),b=Hv(e.attributes,n));const s="uagb-timeline__icon-new out-view-uagb-timeline__icon "+o;return React.createElement("article",{className:"uagb-timeline__field uagb-timeline__animate-border",key:n},React.createElement("div",{className:Be()(...p)},React.createElement("div",{className:"uagb-timeline__marker out-view-uagb-timeline__icon"},React.createElement("span",{className:s})),React.createElement("div",{className:Be()(...b)},React.createElement("div",{className:"uagb-events-new"},React.createElement("div",{className:"uagb-timeline__events-inner-new"},React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__date-inner"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__inner-date-new"},Object(Qh.dateI18n)(u,r[n].title))),React.createElement("div",{className:"uagb-timeline-content"},React.createElement("div",{className:"uagb-timeline__heading-text"},React.createElement(ge.RichText.Content,{tagName:a,value:t.time_heading,className:"uagb-timeline__heading"})),React.createElement(ge.RichText.Content,{tagName:"p",value:t.time_desc,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))))),d&&React.createElement("div",{className:"uagb-timeline__date-new"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__date-new"},Object(Qh.dateI18n)(u,r[n].title)))))})),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"}))))))}},{attributes:Mt,save(e){const{block_id:t,headingTag:a,timelinAlignment:l,displayPostDate:i,icon:o,tm_content:n,t_date:r,stack:s,className:c}=e.attributes,u=(Array.isArray(n)&&n.length,Object(Qh.getSettings)().formats.date);let p=Lv(e.attributes,0),b=Hv(e.attributes,0),d=!1;return React.createElement("div",{className:Be()(c,"uagb-timeline__outer-wrap"),id:"uagb-ctm-"+t},React.createElement("div",{className:Be()("uagb-timeline__content-wrap",...Ov(e.attributes))},React.createElement("div",{className:"uagb-timeline-wrapper"},React.createElement("div",{className:"uagb-timeline__main"},React.createElement("div",{className:"uagb-timeline__days"},n.map((t,n)=>{"center"==l&&(d=!0,p=Lv(e.attributes,n),b=Hv(e.attributes,n));const s="uagb-timeline__icon-new out-view-uagb-timeline__icon "+o;let c=Object(Qh.dateI18n)(u,r[n].title);return"Invalid date"===c&&(c=r[n].title),React.createElement("article",{className:"uagb-timeline__field uagb-timeline__field-wrap",key:n},React.createElement("div",{className:Be()(...p)},React.createElement("div",{className:"uagb-timeline__marker out-view-uagb-timeline__icon"},React.createElement("span",{className:s})),React.createElement("div",{className:Be()(...b)},React.createElement("div",{className:"uagb-events-new"},React.createElement("div",{className:"uagb-timeline__events-inner-new"},React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__date-inner"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__inner-date-new"},c)),React.createElement("div",{className:"uagb-timeline-content"},React.createElement("div",{className:"uagb-timeline__heading-text"},React.createElement(ge.RichText.Content,{tagName:a,value:t.time_heading,className:"uagb-timeline__heading"})),React.createElement(ge.RichText.Content,{tagName:"p",value:t.time_desc,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))))),d&&React.createElement("div",{className:"uagb-timeline__date-new"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__date-new"},c))))})),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"}))))))}},{attributes:Mt,save(e){const{block_id:t,headingTag:a,timelinAlignment:l,displayPostDate:i,icon:o,tm_content:n,t_date:r,date_icon:s,stack:c,timelineItem:u}=e.attributes,p=(Array.isArray(n)&&n.length,Object(Qh.getSettings)().formats.date);let b=Lv(e.attributes,0),d=Hv(e.attributes,0),g=!1;return React.createElement("div",{className:Be()(e.className,"uagb-timeline__outer-wrap"),id:"uagb-ctm-"+t},React.createElement("div",{className:Be()("uagb-timeline__content-wrap",...Ov(e.attributes))},React.createElement("div",{className:"uagb-timeline-wrapper"},React.createElement("div",{className:"uagb-timeline__main"},React.createElement("div",{className:"uagb-timeline__days"},n.map((t,n)=>{if(u<=n)return;"center"==l&&(g=!0,b=Lv(e.attributes,n),d=Hv(e.attributes,n));let s=Object(Qh.dateI18n)(p,r[n].title);return"Invalid date"===s&&(s=r[n].title),React.createElement("article",{className:"uagb-timeline__field uagb-timeline__field-wrap",key:n},React.createElement("div",{className:Be()(...b)},React.createElement("div",{className:"uagb-timeline__marker out-view-uagb-timeline__icon"},React.createElement("span",{className:"uagb-timeline__icon-new out-view-uagb-timeline__icon "},Wm(o))),React.createElement("div",{className:Be()(...d)},React.createElement("div",{className:"uagb-events-new"},React.createElement("div",{className:"uagb-timeline__events-inner-new"},React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__date-inner"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__inner-date-new"},s)),React.createElement("div",{className:"uagb-timeline-content"},React.createElement("div",{className:"uagb-timeline__heading-text"},React.createElement(ge.RichText.Content,{tagName:a,value:t.time_heading,className:"uagb-timeline__heading"})),React.createElement(ge.RichText.Content,{tagName:"p",value:t.time_desc,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))))),g&&React.createElement("div",{className:"uagb-timeline__date-new"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__date-new"},s))))})),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"}))))))}},{attributes:Mt,save(e){const{block_id:t,headingTag:a,timelinAlignment:l,displayPostDate:i,icon:o,tm_content:n,t_date:r,date_icon:s,stack:c,timelineItem:u,dateFormat:p}=e.attributes;Array.isArray(n)&&n.length;let b=Lv(e.attributes,0),d=Hv(e.attributes,0),g=!1;return React.createElement("div",{className:Be()(e.className,"uagb-timeline__outer-wrap","uagb-block-"+t)},React.createElement("div",{className:Be()("uagb-timeline__content-wrap",...Ov(e.attributes))},React.createElement("div",{className:"uagb-timeline-wrapper"},React.createElement("div",{className:"uagb-timeline__main"},React.createElement("div",{className:"uagb-timeline__days"},n.map((t,n)=>{if(u<=n)return;"center"==l&&(g=!0,b=Lv(e.attributes,n),d=Hv(e.attributes,n));let s=r[n].title;return"custom"!=p&&(s=Object(Qh.dateI18n)(p,r[n].title),"Invalid date"===s&&(s=r[n].title)),React.createElement("article",{className:"uagb-timeline__field uagb-timeline__field-wrap",key:n},React.createElement("div",{className:Be()(...b)},React.createElement("div",{className:"uagb-timeline__marker out-view-uagb-timeline__icon"},React.createElement("span",{className:"uagb-timeline__icon-new out-view-uagb-timeline__icon "},Wm(o))),React.createElement("div",{className:Be()(...d)},React.createElement("div",{className:"uagb-events-new"},React.createElement("div",{className:"uagb-timeline__events-inner-new"},React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__date-inner"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__inner-date-new"},s)),React.createElement("div",{className:"uagb-timeline-content"},React.createElement("div",{className:"uagb-timeline__heading-text"},React.createElement(ge.RichText.Content,{tagName:a,value:t.time_heading,className:"uagb-timeline__heading"})),React.createElement(ge.RichText.Content,{tagName:"p",value:t.time_desc,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))))),g&&React.createElement("div",{className:"uagb-timeline__date-new"},i&&r[n].title&&React.createElement("div",{className:"uagb-timeline__date-new"},s))))})),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"}))))))}},{attributes:Mt,save(e){const{block_id:t}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-timeline__outer-wrap","uagb-block-"+t)},React.createElement("div",{className:Be()("uagb-timeline__content-wrap",...jv(e.attributes))},React.createElement("div",{className:"uagb-timeline-wrapper"},React.createElement("div",{className:"uagb-timeline__main"},React.createElement("div",{className:"uagb-timeline__days"},React.createElement(ge.InnerBlocks.Content,null)),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"}))))))}}];function zv(){return(zv=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Dv,Nv=Object(B.memo)(e=>{const{setAttributes:t,clientId:a,attributes:{headSpace:l,headSpaceTablet:i,headSpaceMobile:o,headingColor:s,subHeadingColor:c,backgroundColor:u,separatorColor:p,separatorFillColor:b,separatorBg:d,separatorBorder:g,borderFocus:m,headingTag:y,headFontSizeType:f,headFontSize:h,headFontSizeTablet:v,headFontSizeMobile:_,headFontFamily:T,headFontWeight:C,headFontStyle:S,headLineHeightType:w,headLineHeight:k,headLineHeightTablet:P,headLineHeightMobile:x,headLoadGoogleFonts:A,timelinAlignment:G,timelinAlignmentTablet:M,timelinAlignmentMobile:R,arrowlinAlignment:B,subHeadFontSizeType:U,subHeadFontSize:E,subHeadFontSizeTablet:O,subHeadFontSizeMobile:L,subHeadFontFamily:H,subHeadFontWeight:j,subHeadFontStyle:F,subHeadLineHeightType:z,subHeadLineHeight:D,subHeadLineHeightTablet:N,subHeadLineHeightMobile:I,subHeadLoadGoogleFonts:V,separatorwidth:W,borderwidth:q,connectorBgsize:Z,connectorBgsizeTablet:$,connectorBgsizeMobile:Y,dateBottomspace:K,dateBottomspaceTablet:J,dateBottomspaceMobile:X,align:Q,alignTablet:ee,alignMobile:te,icon:ae,iconColor:le,dateColor:ie,dateFontSizeType:oe,dateFontSize:ne,dateFontSizeTablet:re,dateFontSizeMobile:se,dateFontFamily:ce,dateFontWeight:ue,dateFontStyle:pe,dateLineHeightType:be,dateLineHeight:de,dateLineHeightTablet:me,dateLineHeightMobile:ye,dateLoadGoogleFonts:fe,iconSize:he,iconSizeTablet:ve,iconSizeMobile:_e,borderRadius:Te,borderRadiusTablet:Se,borderRadiusMobile:we,iconFocus:ke,iconBgFocus:Pe,displayPostDate:xe,dateFormat:Ae,topPadding:Ge,rightPadding:Me,bottomPadding:Re,leftPadding:Be,topPaddingTablet:Ue,rightPaddingTablet:Oe,bottomPaddingTablet:He,leftPaddingTablet:je,topPaddingMobile:ze,rightPaddingMobile:De,bottomPaddingMobile:Ne,leftPaddingMobile:Ie,paddingUnit:Ve,mobilePaddingUnit:We,tabletPaddingUnit:qe,paddingLink:Ze,headTransform:$e,subHeadTransform:Ye,dateTransform:Ke,headDecoration:Je,subHeadDecoration:Xe,headLetterSpacing:Qe,headLetterSpacingTablet:et,headLetterSpacingMobile:tt,headLetterSpacingType:at,subHeadLetterSpacing:lt,subHeadLetterSpacingTablet:it,subHeadLetterSpacingMobile:ot,subHeadLetterSpacingType:nt,dateLetterSpacing:rt,dateLetterSpacingTablet:st,dateLetterSpacingMobile:ct,dateLetterSpacingType:ut,dateDecoration:pt,verticalSpace:bt,verticalSpaceTablet:dt,verticalSpaceMobile:gt,verticalSpaceUnit:mt,verticalSpaceUnitTablet:yt,verticalSpaceUnitMobile:ft,horizontalSpace:ht,horizontalSpaceTablet:vt,horizontalSpaceMobile:_t,horizontalSpaceUnit:Tt,horizontalSpaceUnitTablet:Ct,horizontalSpaceUnitMobile:St}}=e,wt=new Date;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Orientation","ultimate-addons-for-gutenberg"),data:{desktop:{value:G,label:"timelinAlignment"},tablet:{value:M,label:"timelinAlignmentTablet"},mobile:{value:R,label:"timelinAlignmentMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:Q,label:"align"},tablet:{value:ee,label:"alignTablet"},mobile:{value:te,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Arrow Alignment","ultimate-addons-for-gutenberg"),data:{value:B,label:"arrowlinAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")},{value:"center",label:Object(r.__)("Center","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement("h2",null,Object(r.__)("Date","ultimate-addons-for-gutenberg")),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Date","ultimate-addons-for-gutenberg"),checked:xe,onChange:()=>{Object(n.select)("core/block-editor").getBlocks(a).forEach(e=>{e.attributes.displayPostDate=xe}),t({displayPostDate:!xe})}}),xe&&React.createElement(Pi,{label:Object(r.__)("Date Format","ultimate-addons-for-gutenberg"),data:{value:Ae},onChange:e=>{Object(n.select)("core/block-editor").getBlocks(a).forEach(t=>{t.attributes.dateFormat=e}),t({dateFormat:e})},options:[{value:"M j, Y",label:Object(Qh.dateI18n)("M j, Y",wt)},{value:"F j, Y",label:Object(Qh.dateI18n)("F j, Y",wt)},{value:"m/d/Y",label:Object(Qh.dateI18n)("m/d/Y",wt)},{value:"m-d-Y",label:Object(Qh.dateI18n)("m-d-Y",wt)},{value:"m.d.Y",label:Object(Qh.dateI18n)("m.d.Y",wt)},{value:"d M Y",label:Object(Qh.dateI18n)("d M Y",wt)},{value:"d F Y",label:Object(Qh.dateI18n)("d F Y",wt)},{value:"d-m-Y",label:Object(Qh.dateI18n)("d-m-Y",wt)},{value:"d.m.Y",label:Object(Qh.dateI18n)("d.m.Y",wt)},{value:"d/m/Y",label:Object(Qh.dateI18n)("d/m/Y",wt)},{value:"Y-m-d",label:Object(Qh.dateI18n)("Y-m-d",wt)},{value:"Y.m.d",label:Object(Qh.dateI18n)("Y.m.d",wt)},{value:"Y/m/d",label:Object(Qh.dateI18n)("Y/m/d",wt)},{value:"M, Y",label:Object(Qh.dateI18n)("M, Y",wt)},{value:"M Y",label:Object(Qh.dateI18n)("M Y",wt)},{value:"F, Y",label:Object(Qh.dateI18n)("F, Y",wt)},{value:"F Y",label:Object(Qh.dateI18n)("F Y",wt)},{value:"custom",label:Object(r.__)("Normal Text","ultimate-addons-for-gutenberg")}]})),React.createElement(Fe,{title:Object(r.__)("Timeline Item","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:y,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]})),React.createElement(Fe,{title:Object(r.__)("Connector","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:ae,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(a).forEach(t=>{t.attributes.icon=e}),t({icon:e})}}),ae&&React.createElement(tl,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:he,label:"iconSize"},tablet:{value:ve,label:"iconSizeTablet"},mobile:{value:_e,label:"iconSizeMobile"}},min:0,max:30,displayUnit:!1,setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Icon Background Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:Z,label:"connectorBgsize"},tablet:{value:$,label:"connectorBgsizeTablet"},mobile:{value:Y,label:"connectorBgsizeMobile"}},min:0,max:90,displayUnit:!1,setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),setAttributes:t,value:q,data:{value:q,label:"borderwidth"},onChange:e=>{Object(n.select)("core/block-editor").getBlocks(a).forEach(t=>{t.attributes.borderwidth=e}),t({borderwidth:e})},min:1,max:10,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Connector Thickness","ultimate-addons-for-gutenberg"),setAttributes:t,value:W,data:{value:W,label:"separatorwidth"},onChange:e=>{Object(n.select)("core/block-editor").getBlocks(a).forEach(t=>{t.attributes.separatorwidth=e}),t({separatorwidth:e})},min:1,max:10,displayUnit:!1}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Pl,zv({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ge,label:"topPadding"},valueRight:{value:Me,label:"rightPadding"},valueBottom:{value:Re,label:"bottomPadding"},valueLeft:{value:Be,label:"leftPadding"},valueTopTablet:{value:Ue,label:"topPaddingTablet"},valueRightTablet:{value:Oe,label:"rightPaddingTablet"},valueBottomTablet:{value:He,label:"bottomPaddingTablet"},valueLeftTablet:{value:je,label:"leftPaddingTablet"},valueTopMobile:{value:ze,label:"topPaddingMobile"},valueRightMobile:{value:De,label:"rightPaddingMobile"},valueBottomMobile:{value:Ne,label:"bottomPaddingMobile"},valueLeftMobile:{value:Ie,label:"leftPaddingMobile"},unit:{value:Ve,label:"paddingUnit"},mUnit:{value:We,label:"mobilePaddingUnit"},tUnit:{value:qe,label:"tabletPaddingUnit"},attributes:e,setAttributes:t,link:{value:Ze,label:"paddingLink"}})),React.createElement(tl,{label:Object(r.__)("Timeline - Marker Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:ht,label:"horizontalSpace",unit:{value:Tt,label:"horizontalSpaceUnit"}},tablet:{value:vt,label:"horizontalSpaceTablet",unit:{value:Ct,label:"horizontalSpaceUnitTablet"}},mobile:{value:_t,label:"horizontalSpaceMobile",unit:{value:St,label:"horizontalSpaceUnitMobile"}}},min:0,limitMax:{px:50,"%":100,em:50},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Timeline Item Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:bt,label:"verticalSpace",unit:{value:mt,label:"verticalSpaceUnit"}},tablet:{value:dt,label:"verticalSpaceTablet",unit:{value:yt,label:"verticalSpaceUnitTablet"}},mobile:{value:gt,label:"verticalSpaceMobile",unit:{value:ft,label:"verticalSpaceUnitMobile"}}},min:0,limitMax:{px:100,"%":100,em:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Timeline Item","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("h2",null,Object(r.__)("Heading","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"headingColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:t,loadGoogleFonts:{value:A,label:"headLoadGoogleFonts"},fontFamily:{value:T,label:"headFontFamily"},fontWeight:{value:C,label:"headFontWeight"},fontStyle:{value:S,label:"headFontStyle"},fontSizeType:{value:f,label:"headFontSizeType"},fontSize:{value:h,label:"headFontSize"},fontSizeMobile:{value:_,label:"headFontSizeMobile"},fontSizeTablet:{value:v,label:"headFontSizeTablet"},lineHeightType:{value:w,label:"headLineHeightType"},lineHeight:{value:k,label:"headLineHeight"},lineHeightMobile:{value:x,label:"headLineHeightMobile"},lineHeightTablet:{value:P,label:"headLineHeightTablet"},letterSpacing:{value:Qe,label:"headLetterSpacing"},letterSpacingTablet:{value:et,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:tt,label:"headLetterSpacingMobile"},letterSpacingType:{value:at,label:"headLetterSpacingType"},transform:{value:$e,label:"headTransform"},decoration:{value:Je,label:"headDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:l,label:"headSpace"},tablet:{value:i,label:"headSpaceTablet"},mobile:{value:o,label:"headSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("h2",null,Object(r.__)("Description","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"subHeadingColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:t,loadGoogleFonts:{value:V,label:"subHeadLoadGoogleFonts"},fontFamily:{value:H,label:"subHeadFontFamily"},fontWeight:{value:j,label:"subHeadFontWeight"},fontStyle:{value:F,label:"subHeadFontStyle"},fontSizeType:{value:U,label:"subHeadFontSizeType"},fontSize:{value:E,label:"subHeadFontSize"},fontSizeMobile:{value:L,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:O,label:"subHeadFontSizeTablet"},lineHeightType:{value:z,label:"subHeadLineHeightType"},lineHeight:{value:D,label:"subHeadLineHeight"},lineHeightMobile:{value:I,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:N,label:"subHeadLineHeightTablet"},letterSpacing:{value:lt,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:it,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:ot,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:nt,label:"subHeadLetterSpacingType"},transform:{value:Ye,label:"subHeadTransform"},decoration:{value:Xe,label:"subHeadDecoration"}}),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("h2",null,Object(r.__)("Timeline","ultimate-addons-for-gutenberg")),React.createElement(tl,{label:Object(r.__)("Border radius","ultimate-addons-for-gutenberg"),data:{desktop:{value:Te,label:"borderRadius"},tablet:{value:Se,label:"borderRadiusTablet"},mobile:{value:we,label:"borderRadiusMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"backgroundColor"},setAttributes:t})),xe&&React.createElement(Fe,{title:Object(r.__)("Date","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ie||"",data:{value:ie,label:"dateColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:t,loadGoogleFonts:{value:fe,label:"dateLoadGoogleFonts"},fontFamily:{value:ce,label:"dateFontFamily"},fontWeight:{value:ue,label:"dateFontWeight"},fontStyle:{value:pe,label:"dateFontStyle"},fontSizeType:{value:oe,label:"dateFontSizeType"},fontSize:{value:ne,label:"dateFontSize"},fontSizeMobile:{value:se,label:"dateFontSizeMobile"},fontSizeTablet:{value:re,label:"dateFontSizeTablet"},lineHeightType:{value:be,label:"dateLineHeightType"},lineHeight:{value:de,label:"dateLineHeight"},lineHeightMobile:{value:ye,label:"dateLineHeightMobile"},lineHeightTablet:{value:me,label:"dateLineHeightTablet"},letterSpacing:{value:rt,label:"dateLetterSpacing"},letterSpacingTablet:{value:st,label:"dateLetterSpacingTablet"},letterSpacingMobile:{value:ct,label:"dateLetterSpacingMobile"},letterSpacingType:{value:ut,label:"dateLetterSpacingType"},transform:{value:Ke,label:"dateTransform"},decoration:{value:pt,label:"dateDecoration"}}),"center"!==G&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:K,label:"dateBottomspace"},tablet:{value:J,label:"dateBottomspaceTablet"},mobile:{value:X,label:"dateBottomspaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t})),(()=>{const e=React.createElement(Fe,null,React.createElement(hl,{label:Object(r.__)("Connector Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"separatorColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:le||"",data:{value:le,label:"iconColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"separatorBg"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"separatorBorder"},setAttributes:t})),a=React.createElement(Fe,null,React.createElement(hl,{label:Object(r.__)("Connector Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"separatorFillColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:ke||"",data:{value:ke,label:"iconFocus"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Pe||"",data:{value:Pe,label:"iconBgFocus"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:m||"",data:{value:m,label:"borderFocus"},setAttributes:t}));return React.createElement(Fe,{title:Object(r.__)("Connector","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"focus",title:Object(r.__)("Focus","ultimate-addons-for-gutenberg")}],normal:e,focus:a,disableBottomSeparator:!0}))})()),React.createElement(il,zv({},rl,{parentProps:e})))))}),Iv=a(111),Vv=0,Wv={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},qv={};qv.locals=Iv.a.locals||{},qv.use=function(){return Vv++||(Dv=ke()(Iv.a,Wv)),qv},qv.unuse=function(){Vv>0&&!--Vv&&(Dv(),Dv=null)};var Zv=qv;const $v=["uagb/content-timeline-child"];var Yv=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Zv.use(),()=>{Zv.unuse()}),[]);const{className:t,attributes:{tm_content:a,timelineItem:l,block_id:i},attributes:o,deviceType:n}=e,r=Object(B.useMemo)(()=>{const e=[];for(let t=0;t<l;t++)e.push(["uagb/content-timeline-child",a[t]]);return e},[l,a]);return React.createElement("div",{className:Be()(t,"uagb-timeline__outer-wrap","uagb-editor-preview-mode-"+n.toLowerCase(),"uagb-block-"+i,"uagb-timeline__content-wrap",...Ov(o,n))},React.createElement(ge.InnerBlocks,{template:r,templateLock:!1,allowedBlocks:$v}),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"})))}),Kv=Object(B.memo)(e=>{let{attributes:t}=e;const{headLoadGoogleFonts:a,headFontFamily:l,headFontWeight:i,subHeadLoadGoogleFonts:o,subHeadFontFamily:n,subHeadFontWeight:r,dateLoadGoogleFonts:s,dateFontFamily:c,dateFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),Jv=Object(L.compose)(vs,fe)(e=>{const{setAttributes:t,clientId:a,attributes:l,attributes:{timelinAlignmentTablet:i,timelinAlignmentMobile:o,stack:r,UAGHideDesktop:s,UAGHideTab:c,UAGHideMob:u,dateFontSizeType:p,dateFontSize:b,dateFontSizeTablet:d,dateFontSizeMobile:g,dateFontsizeType:m,dateFontsize:y,dateFontsizeTablet:f,dateFontsizeMobile:h},isSelected:v,name:_,deviceType:T}=e;Object(B.useEffect)(()=>{l.timelinAlignment&&("none"===r?(void 0===i&&t({timelinAlignmentTablet:l.timelinAlignment}),void 0===o&&t({timelinAlignmentMobile:l.timelinAlignment})):(void 0===i&&"tablet"===r&&(t({timelinAlignmentTablet:"left"}),t({timelinAlignmentMobile:"left"})),void 0===o&&"mobile"===r&&(t({timelinAlignmentMobile:"left"}),t({timelinAlignmentTablet:l.timelinAlignment}))))},[]),Object(B.useEffect)(()=>{void 0===p&&t({dateFontSizeType:m}),void 0===b&&t({dateFontSize:y}),void 0===d&&t({dateFontSizeTablet:f}),void 0===g&&t({dateFontSizeMobile:h})},[]),Object(B.useEffect)(()=>{if(null===Object(n.select)("core/block-editor").getBlocksByClientId(a)[0])return;let e=T;"Desktop"===T&&(e="");const t=void 0!==l["timelinAlignment"+e]?l["timelinAlignment"+e]:l.timelinAlignment;Object(n.select)("core/block-editor").getBlocksByClientId(a)[0].innerBlocks.forEach((function(e,a){let l="";"left"===t?l="uagb-timeline__left":"right"===t?l="uagb-timeline__right":"center"===t&&(l=a%2==0?"uagb-timeline__right":"uagb-timeline__left");let i="";"left"===t?i="uagb-timeline__day-new uagb-timeline__day-left":"right"===t?i="uagb-timeline__day-new uagb-timeline__day-right":"center"===t&&(i=a%2==0?"uagb-timeline__day-new uagb-timeline__day-right":"uagb-timeline__day-new uagb-timeline__day-left"),Object(n.dispatch)("core/block-editor").updateBlockAttributes(e.clientId,{content_class:l}),Object(n.dispatch)("core/block-editor").updateBlockAttributes(e.clientId,{dayalign_class:i})})),Object(n.select)("core/block-editor").getBlocks(a).forEach(e=>{e.attributes.headingTag=l.headingTag,e.attributes.dateFormat=l.dateFormat})},[e,T]),Object(B.useEffect)(()=>{he(e)},[s,c,u,T]),Object(B.useEffect)(()=>{Bs()},[T]);const C=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,dateBottomspace:r,dateBottomspaceTablet:s,dateBottomspaceMobile:c,backgroundColor:u,separatorColor:p,separatorFillColor:b,separatorBg:d,separatorBorder:g,borderFocus:m,separatorwidth:y,borderwidth:f,connectorBgsize:h,connectorBgsizeTablet:v,connectorBgsizeMobile:_,borderRadius:T,borderRadiusTablet:C,borderRadiusMobile:S,iconColor:w,dateFontSizeType:k,dateFontSize:P,dateFontSizeTablet:x,dateFontSizeMobile:A,dateFontFamily:G,dateFontWeight:M,dateLineHeightType:R,dateLineHeight:B,dateLineHeightTablet:U,dateLineHeightMobile:E,dateColor:O,iconSize:L,iconSizeTablet:H,iconSizeMobile:j,iconBgFocus:F,headFontSizeType:z,headFontSize:D,headFontSizeTablet:N,headFontSizeMobile:I,headFontFamily:V,headFontWeight:W,headLineHeightType:q,headLineHeight:Z,headLineHeightTablet:$,headLineHeightMobile:Y,align:K,alignTablet:J,alignMobile:X,headingColor:Q,headSpace:ee,headSpaceTablet:te,headSpaceMobile:le,subHeadFontSizeType:ie,subHeadFontSize:oe,subHeadFontSizeTablet:ne,subHeadFontSizeMobile:re,subHeadFontFamily:se,subHeadFontWeight:ce,subHeadLineHeightType:ue,subHeadLineHeight:pe,subHeadLineHeightTablet:be,subHeadLineHeightMobile:de,subHeadingColor:ge,topPadding:me,rightPadding:ye,bottomPadding:fe,leftPadding:he,topPaddingTablet:ve,rightPaddingTablet:_e,bottomPaddingTablet:Te,leftPaddingTablet:Ce,topPaddingMobile:Se,rightPaddingMobile:we,bottomPaddingMobile:ke,leftPaddingMobile:Pe,paddingUnit:xe,mobilePaddingUnit:Ae,tabletPaddingUnit:Ge,headFontStyle:Me,subHeadFontStyle:Re,dateFontStyle:Be,headTransform:Ue,subHeadTransform:Ee,dateTransform:Oe,headDecoration:Le,subHeadDecoration:He,dateDecoration:je,iconFocus:Fe,headLetterSpacing:ze,headLetterSpacingTablet:De,headLetterSpacingMobile:Ne,headLetterSpacingType:Ie,subHeadLetterSpacing:Ve,subHeadLetterSpacingTablet:We,subHeadLetterSpacingMobile:qe,subHeadLetterSpacingType:Ze,dateLetterSpacing:$e,dateLetterSpacingTablet:Ye,dateLetterSpacingMobile:Ke,dateLetterSpacingType:Je,verticalSpace:Xe,verticalSpaceTablet:Qe,verticalSpaceMobile:et,verticalSpaceUnit:tt,verticalSpaceUnitTablet:at,verticalSpaceUnitMobile:lt,horizontalSpace:it,horizontalSpaceTablet:ot,horizontalSpaceMobile:nt,horizontalSpaceUnit:rt,horizontalSpaceUnitTablet:st,horizontalSpaceUnitMobile:ct}=e,ut=Ps(f,"borderwidth",i),pt=Ps(y,"separatorwidth",i),bt=Ps(ee,"headSpace",i),dt=Ps(T,"borderRadius",i),gt=Ps(r,"dateBottomspace",i),mt=Ps(L,"iconSize",i),yt=Ps(H,"iconSizeTablet",i),ft=Ps(j,"iconSizeMobile",i),ht=Ps(h,"connectorBgsize",i),vt=Ps(v,"connectorBgsizeTablet",i),_t=Ps(_,"connectorBgsizeMobile",i),Tt={" .uagb-timeline__heading.rich-text":{"font-size":ns(D,z),"font-family":V,"font-weight":W,"line-height":ns(Z,q),"text-align":K,color:Q,"font-style":Me,"text-decoration":Le,"text-transform":Ue,"letter-spacing":ns(ze,Ie)}," .uagb-timeline__heading a":{"font-size":ns(D,z),"font-family":V,"font-weight":W,"line-height":ns(Z,q),"text-align":K,color:Q,"font-style":Me,"text-decoration":Le,"text-transform":Ue,"letter-spacing":ns(ze,Ie)}," .uagb-timeline__heading":{"margin-bottom":ns(bt,"px")}," p.uagb-timeline-desc-content":{"font-size":ns(oe,ie),"font-family":se,"font-weight":ce,"line-height":ns(pe,ue),"text-align":K,color:ge,"font-style":Re,"text-decoration":He,"text-transform":Ee,"letter-spacing":ns(Ve,Ze)}," .uagb-timeline__day-new":{"text-align":K}," .uagb-timeline__date-inner":{"text-align":K}," .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-left-color":u,"border-right-color":u}," .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-left-color":u,"border-right-color":u}," .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-left-color":u}," .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-left-color":u}," .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-left-color":u}," .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-right-color":u}," .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-right-color":u}," .uagb-timeline__line__inner":{"background-color":b}," .uagb-timeline__line":{"background-color":p,width:ns(pt,"px")},".uagb-timeline__right-block .uagb-timeline__line":{right:"calc( "+ht+"px / 2 )"},".uagb-timeline__left-block .uagb-timeline__line":{left:"calc( "+ht+"px / 2 )"},".uagb-timeline__center-block .uagb-timeline__line":{right:"calc( "+ht+"px / 2 )"}," .uagb-timeline__marker":{"background-color":d,"min-height":ns(ht,"px"),"min-width":ns(ht,"px"),"line-height":ns(ht,"px"),border:ut+"px solid "+g},".uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(ht,"px")},".uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(ht,"px")},".uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(ht,"px")},".uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(ht,"px")},".uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__marker":{"margin-left":ns(it,rt),"margin-right":ns(it,rt)},".uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__marker":{"margin-left":ns(it,rt),"margin-right":ns(it,rt)}," .uagb-timeline__field":{"margin-bottom":ns(Xe,tt)}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"margin-bottom":ns(gt,"px"),color:O,"font-size":ns(P,k),"font-family":G,"font-weight":M,"line-height":ns(B,R),"text-align":K,"font-style":Be,"text-decoration":je,"text-transform":Oe,"letter-spacing":ns($e,Je)}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"margin-bottom":ns(gt,"px"),color:O,"font-size":ns(P,k),"font-family":G,"font-weight":M,"line-height":ns(B,R),"text-align":K,"font-style":Be,"text-decoration":je,"text-transform":Oe,"letter-spacing":ns($e,Je)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-right":ns(it,rt)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(it,rt)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-left":ns(it,rt)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-right":ns(it,rt)}," .uagb-timeline__date-new":{color:O,"font-size":ns(P,k),"font-family":G,"font-weight":M,"line-height":ns(B,R),"font-style":Be,"text-decoration":je,"text-transform":Oe,"letter-spacing":ns($e,Je)}," .uagb-timeline__events-inner-new":{"background-color":u,"border-radius":ns(dt,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(he,xe),"padding-right":ns(ye,xe),"padding-top":ns(me,xe),"padding-bottom":ns(fe,xe)}," svg":{fill:w,"font-size":ns(mt,"px"),width:ns(mt,"px")}," .uagb-timeline__marker.uagb-timeline__in-view-icon":{background:F,"border-color":m}," .uagb-timeline__marker.uagb-timeline__in-view-icon svg":{fill:Fe}},Ct={" .uagb-timeline__heading.rich-text":{"text-align":J}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"font-size":ns(x,k),"line-height":ns(U,R),"margin-bottom":ns(s,"px"),"letter-spacing":ns(Ye,Je)}," svg":{"font-size":ns(yt,"px"),width:ns(yt,"px")}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"font-size":ns(x,k),"line-height":ns(U,R),"margin-bottom":ns(s,"px"),"text-align":J,"letter-spacing":ns(Ye,Je)}," .uagb-timeline__date-new":{"font-size":ns(x,k),"line-height":ns(U,R),"margin-bottom":ns(s,"px"),"letter-spacing":ns(Ye,Je)}," .uagb-timeline__heading":{"text-align":J,"font-size":ns(N,z),"line-height":ns($,q),"margin-bottom":ns(te,"px"),"letter-spacing":ns(De,Ie)}," .uagb-timeline__heading a":{"font-size":ns(N,z),"line-height":ns($,q),"text-align":J,"letter-spacing":ns(De,Ie)}," p.uagb-timeline-desc-content":{"font-size":ns(ne,ie),"line-height":ns(be,ue),"text-align":J,"letter-spacing":ns(We,Ze)},".uagb-timeline__center-block .uagb-timeline__marker":{"margin-left":ns(ot,st),"margin-right":ns(ot,st)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-right":ns(ot,st)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(ot,st)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-left":ns(ot,st)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-right":ns(ot,st)}," .uagb-timeline__field":{"margin-bottom":ns(Qe,at)}," .uagb-timeline__events-inner-new":{"border-radius":ns(C,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(Ce,Ge),"padding-right":ns(_e,Ge),"padding-top":ns(ve,Ge),"padding-bottom":ns(Te,Ge)}," .uagb-timeline__day-new":{"text-align":J}," .uagb-timeline__date-inner":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__heading":{"text-align":J}," .uagb-timeline__center-block p.uagb-timeline-desc-content":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__day-new":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__date-inner":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__author-link":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__link_parent":{"text-align":J}," .uagb-timeline__center-block .uagb-timeline__image a":{"text-align":J}," .uagb-timeline__center-block a.uagb-timeline__image":{"text-align":J},".uagb-timeline__right-block .uagb-timeline__line":{right:"calc( "+vt+"px / 2 )"},".uagb-timeline__left-block .uagb-timeline__line":{left:"calc( "+vt+"px / 2 )"},".uagb-timeline__center-block .uagb-timeline__line":{right:"calc( "+vt+"px / 2 )"}," .uagb-timeline__marker":{"min-height":ns(vt,"px"),"min-width":ns(vt,"px"),"line-height":ns(vt,"px")},".uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(vt,"px")},".uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(vt,"px")},".uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(vt,"px")},".uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(vt,"px")}},St={" .uagb-timeline__heading.rich-text":{"text-align":X}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"font-size":ns(A,k),"line-height":ns(E,R),"margin-bottom":ns(c,"px"),"letter-spacing":ns(Ke,Je)}," svg":{"font-size":ns(ft,"px"),width:ns(ft,"px")}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"font-size":ns(A,k),"line-height":ns(E,R),"margin-bottom":ns(c,"px"),"text-align":X,"letter-spacing":ns(Ke,Je)}," .uagb-timeline__date-new":{"font-size":ns(A,k),"line-height":ns(E,R),"margin-bottom":ns(c,"px"),"letter-spacing":ns(Ke,Je)}," .uagb-timeline__heading":{"font-size":ns(I,z),"line-height":ns(Y,q),"margin-bottom":ns(le,"px"),"text-align":X,"letter-spacing":ns(Ne,Ie)}," .uagb-timeline__heading a":{"font-size":ns(I,z),"line-height":ns(Y,q),"text-align":X,"letter-spacing":ns(Ne,Ie)}," p.uagb-timeline-desc-content":{"font-size":ns(re,ie),"line-height":ns(de,ue),"text-align":X,"letter-spacing":ns(qe,Ze)},".uagb-timeline__center-block .uagb-timeline__marker":{"margin-left":0,"margin-right":0},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-right":ns(nt,ct)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(nt,ct)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-left":ns(nt,ct)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-right":ns(nt,ct)}," .uagb-timeline__events-inner-new":{"border-radius":ns(S,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(Pe,Ae),"padding-right":ns(we,Ae),"padding-top":ns(Se,Ae),"padding-bottom":ns(ke,Ae)}," .uagb-timeline__field":{"margin-bottom":ns(et,lt)}," .uagb-timeline__day-new":{"text-align":X}," .uagb-timeline__date-inner":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__heading":{"text-align":X}," .uagb-timeline__center-block p.uagb-timeline-desc-content":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__day-new":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__date-inner":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__author-link":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__link_parent":{"text-align":X}," .uagb-timeline__center-block .uagb-timeline__image a":{"text-align":X}," .uagb-timeline__center-block a.uagb-timeline__image":{"text-align":X},".uagb-timeline__right-block .uagb-timeline__line":{right:"calc( "+_t+"px / 2 )"},".uagb-timeline__left-block .uagb-timeline__line":{left:"calc( "+_t+"px / 2 )"},".uagb-timeline__center-block .uagb-timeline__line":{right:"calc( "+_t+"px / 2 )"}," .uagb-timeline__marker":{"min-height":ns(_t,"px"),"min-width":ns(_t,"px"),"line-height":ns(_t,"px")},".uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(_t,"px")},".uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(_t,"px")},".uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(_t,"px")},".uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(_t,"px")}};let wt="";const kt=`.editor-styles-wrapper .uagb-block-${n}.uagb-timeline__outer-wrap`;return wt=ae(Tt,kt),"tablet"!==o&&"mobile"!==o||(wt+=ae(Ct,""+kt,!0,"tablet"),"mobile"===o&&(wt+=ae(St,""+kt,!0,"mobile"))),wt}(l,0,_,T),[l,T]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:C}),React.createElement(Kv,{attributes:l}),v&&React.createElement(Nv,e),React.createElement(Yv,e))});const Xv=Object(L.compose)(Object(n.withSelect)(e=>({selected:e("core/block-editor").getSelectedBlock()}))),Qv=Object(L.createHigherOrderComponent)(e=>Xv(t=>{let{...a}=t;return React.createElement(e,a)}),"withcontentTimeline");let e_={};function t_(){return(t_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}e_=Object(j.applyFilters)("uagb/content-timeline",ws(e_)),Object(be.registerBlockType)("uagb/content-timeline",{...e_,title:Object(r.__)("Content Timeline","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create a timeline displaying contents of your site.","ultimate-addons-for-gutenberg"),icon:se.content_timeline,keywords:[Object(r.__)("Content Timeline","ultimate-addons-for-gutenberg"),Object(r.__)("Timeline","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,supports:{anchor:!0,html:!1},attributes:Mt,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"content-timeline"}):React.createElement(Jv,e),save:function(e){const{block_id:t}=e.attributes;return React.createElement("div",{className:Be()(e.className,"uagb-timeline__outer-wrap","uagb-block-"+t,"uagb-timeline__content-wrap",...Ov(e.attributes))},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"})))},deprecated:Fv}),Object(j.addFilter)("editor.BlockEdit","uagb/content-timeline",Qv),a(216);var a_,l_=Object(B.memo)(e=>{const{setAttributes:t,attributes:{t_date:a,displayPostDate:l}}=e;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,l?"":React.createElement(Fe,{initialOpen:!0},React.createElement(Fs,{label:Object(r.__)("Date (mm/dd/yyyy)","ultimate-addons-for-gutenberg"),value:a,data:{value:a,label:"t_date"},setAttributes:t,onChange:e=>t({t_date:e})}))),React.createElement(il,t_({},rl,{parentProps:e}))))}),i_=a(112),o_=0,n_={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},r_={};r_.locals=i_.a.locals||{},r_.use=function(){return o_++||(a_=ke()(i_.a,n_)),r_},r_.unuse=function(){o_>0&&!--o_&&(a_(),a_=null)};var s_=r_,c_=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(s_.use(),()=>{s_.unuse()}),[]);const{setAttributes:t,insertBlocksAfter:a,mergeBlocks:l,onReplace:i,attributes:o,attributes:{block_id:s,headingTag:c,t_date:u,displayPostDate:p,dateFormat:b,time_heading:d,time_desc:g,content:m,icon:y},deviceType:f,clientId:h}=e,v=Object(n.select)("core/block-editor").getBlockParents(h).at(-1),_=Object(n.select)("core/block-editor").getBlockAttributes(v);Object(B.useEffect)(()=>{null!=_&&_.icon&&t({icon:_.icon})},[null==_?void 0:_.icon]);let T=!1;const C=u;return"center"===(void 0!==o["timelinAlignment"+f]?o["timelinAlignment"+f]:o.timelinAlignment)&&(T=!0),React.createElement("article",{className:Be()("wp-block-uagb-content-timeline-child uagb-timeline__field","uagb-timeline-child-"+s,e.attributes.content_class)},React.createElement("div",{className:"uagb-timeline__marker uagb-timeline__out-view-icon"},Ce(y,t)),React.createElement("div",{className:Be()(e.attributes.dayalign_class,"uagb-timeline__events-inner-new")},React.createElement("div",{className:"uagb-timeline__events-inner--content"},!0!==p&&u&&React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__inner-date-new"},"custom"!==b&&Object(Qh.format)(b,C)||C),React.createElement(ge.RichText,{tagName:c,value:d,onChange:e=>t({time_heading:e}),placeholder:Object(r.__)("Write a Heading","ultimate-addons-for-gutenberg"),className:"uagb-timeline__heading",onMerge:l,onSplit:a?function(e,l){t({content:e});for(var i=arguments.length,o=new Array(i>2?i-2:0),n=2;n<i;n++)o[n-2]=arguments[n];a([...o,Object(be.createBlock)("core/paragraph",{content:l})])}:void 0,onRemove:()=>i([])}),React.createElement(ge.RichText,{tagName:"p",value:g,onChange:e=>t({time_desc:e}),placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-timeline-desc-content",onMerge:l,onSplit:function(e,l){for(var o=arguments.length,n=new Array(o>2?o-2:0),r=2;r<o;r++)n[r-2]=arguments[r];l&&n.push(Object(be.createBlock)("core/paragraph",{content:l})),n.length&&a&&a(n),e?m!==e&&t({content:e}):i([])},onRemove:()=>i([])}),React.createElement("div",{className:"uagb-timeline__arrow"}))),T&&React.createElement("div",{className:"uagb-timeline__date-new"},!0!==p&&u&&React.createElement(React.Fragment,null,"custom"!==b&&Object(Qh.format)(b,C)||C)))}),u_=Object(L.compose)(vs)(e=>{const{isSelected:t,deviceType:a}=e;return Object(B.useEffect)(()=>{const e=new CustomEvent("UAGTimelineEditor",{detail:{}});document.dispatchEvent(e)},[e,a]),React.createElement(React.Fragment,null,t&&React.createElement(l_,e),React.createElement(c_,e))});Rt.time_desc.default=Object(r.__)("This is Timeline description, you can change me anytime click here ","ultimate-addons-for-gutenberg");var p_=[{attributes:Rt,save(e){const{block_id:t,headingTag:a,displayPostDate:l,icon:i,t_date:o,dateFormat:n,time_heading:r,time_desc:s}=e.attributes;let c=o;"custom"!=n&&(c=Object(Qh.dateI18n)(n,o),"Invalid date"===c&&(c=o));let u="",p="";return"undefined"!=e.attributes.dayalign_class&&"undefined"!=e.attributes.content_class&&(u=e.attributes.content_class,p=e.attributes.dayalign_class),React.createElement("article",{className:Be()("uagb-timeline__field uagb-timeline__field-wrap","uagb-timeline-child-"+t)},React.createElement("div",{className:Be()(u)},React.createElement("div",{className:"uagb-timeline__marker out-view-uagb-timeline__icon"},React.createElement("span",{className:"uagb-timeline__icon-new out-view-uagb-timeline__icon "},Wm(i))),React.createElement("div",{className:Be()(p)},React.createElement("div",{className:"uagb-events-new"},React.createElement("div",{className:"uagb-timeline__events-inner-new"},React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__date-inner"},React.createElement("div",{className:"uagb-timeline__inner-date-new"},c)),React.createElement("div",{className:"uagb-timeline-content"},React.createElement("div",{className:"uagb-timeline__heading-text"},React.createElement(ge.RichText.Content,{tagName:a,value:r,className:"uagb-timeline__heading"})),React.createElement(ge.RichText.Content,{tagName:"p",value:s,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))))),React.createElement("div",{className:"uagb-timeline__date-new"},1!=l&&o&&React.createElement("div",{className:"uagb-timeline__date-new"},c))))}},{attributes:Rt,save(e){const{block_id:t,headingTag:a,displayPostDate:l,icon:i,t_date:o,dateFormat:n,time_heading:r,time_desc:s}=e.attributes;let c=o;"custom"!==n&&(c=Object(Qh.format)(n,o),"Invalid date"===Object(Qh.format)(n,c)&&(c=o));let u="",p="";return"undefined"!==e.attributes.dayalign_class&&"undefined"!==e.attributes.content_class&&(u=e.attributes.content_class,p=e.attributes.dayalign_class),React.createElement("article",{className:Be()("uagb-timeline__field","uagb-timeline-child-"+t,u)},React.createElement("div",{className:Be()("uagb-timeline__marker out-view-uagb-timeline__icon")},Ce(i)),React.createElement("div",{className:Be()(p,"uagb-timeline__events-inner-new")},React.createElement("div",{className:"uagb-timeline__events-inner--content"},!0!==l&&o&&React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__inner-date-new"},"custom"!==n&&Object(Qh.format)(n,c)||c),React.createElement(ge.RichText.Content,{tagName:a,value:r,className:"uagb-timeline__heading"}),React.createElement(ge.RichText.Content,{tagName:"p",value:s,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))),React.createElement("div",{className:"uagb-timeline__date-new"},!0!==l&&o&&React.createElement(React.Fragment,null,"custom"!==n&&Object(Qh.format)(n,c)||c)))}}];let b_={};function d_(){return(d_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}b_=Object(j.applyFilters)("uagb/content-timeline-child",ws(b_)),Object(be.registerBlockType)("uagb/content-timeline-child",{...b_,title:Object(r.__)("Content Timeline Child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add and customize content of this timeline.","ultimate-addons-for-gutenberg"),icon:se.content_timeline_child,parent:["uagb/content-timeline"],keywords:[Object(r.__)("Content Timeline","ultimate-addons-for-gutenberg"),Object(r.__)("Timeline","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,supports:{html:!1},attributes:Rt,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"content-timeline-child",isChildren:!0}):React.createElement(u_,e),save:function(e){const{block_id:t,headingTag:a,displayPostDate:l,icon:i,t_date:o,dateFormat:n,time_heading:r,time_desc:s}=e.attributes;let c=o;"custom"!==n&&(c=Object(Qh.format)(n,o),"Invalid date"===Object(Qh.format)(n,c)&&(c=o));let u="",p="";return"undefined"!==e.attributes.dayalign_class&&"undefined"!==e.attributes.content_class&&(u=e.attributes.content_class,p=e.attributes.dayalign_class),React.createElement("article",{className:Be()("uagb-timeline__field","uagb-timeline-child-"+t,u)},React.createElement("div",{className:Be()("uagb-timeline__marker out-view-uagb-timeline__icon")},Ce(i)?Ce(i):React.createElement("svg",{xmlns:"",viewBox:"0 0 256 512"})),React.createElement("div",{className:Be()(p,"uagb-timeline__events-inner-new")},React.createElement("div",{className:"uagb-timeline__events-inner--content"},!0!==l&&o&&React.createElement("div",{className:"uagb-timeline__date-hide uagb-timeline__inner-date-new"},"custom"!==n&&Object(Qh.format)(n,c)||c),React.createElement(ge.RichText.Content,{tagName:a,value:r,className:"uagb-timeline__heading"}),React.createElement(ge.RichText.Content,{tagName:"p",value:s,className:"uagb-timeline-desc-content"}),React.createElement("div",{className:"uagb-timeline__arrow"}))),React.createElement("div",{className:"uagb-timeline__date-new"},!0!==l&&o&&React.createElement(React.Fragment,null,"custom"!==n&&Object(Qh.format)(n,c)||c)))},deprecated:p_}),Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),Object(r.__)("Preset 6","ultimate-addons-for-gutenberg");let g_=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];function m_(e){const{setAttributes:t,attributes:a,deviceType:l}=e,{block_id:i,startNumber:o,endNumber:n,decimalPlaces:s,align:c,alignTablet:u,alignMobile:p,totalNumber:b,numberPrefix:d,numberSuffix:g,animationDuration:m,thousandSeparator:y,layout:f,headingLoadGoogleFonts:h,headingFontFamily:v,headingFontWeight:_,headingFontStyle:T,headingFontSize:C,headingColor:S,headingTransform:w,headingDecoration:k,headingFontSizeType:P,headingFontSizeMobile:x,headingFontSizeTablet:A,headingLineHeight:G,headingLineHeightType:M,headingLineHeightMobile:R,headingLineHeightTablet:U,headingTopMargin:E,headingRightMargin:O,headingLeftMargin:L,headingBottomMargin:H,headingTopMarginTablet:j,headingRightMarginTablet:z,headingLeftMarginTablet:D,headingBottomMarginTablet:N,headingTopMarginMobile:I,headingRightMarginMobile:V,headingLeftMarginMobile:W,headingBottomMarginMobile:q,headingMarginUnit:Z,headingMarginUnitTablet:$,headingMarginUnitMobile:Y,headingMarginLink:K,headingLetterSpacingType:J,headingLetterSpacing:X,headingLetterSpacingTablet:Q,headingLetterSpacingMobile:ee,blockTopMargin:te,blockRightMargin:ae,blockLeftMargin:le,blockBottomMargin:ie,blockTopMarginTablet:oe,blockRightMarginTablet:ne,blockLeftMarginTablet:re,blockBottomMarginTablet:se,blockTopMarginMobile:ce,blockRightMarginMobile:ue,blockLeftMarginMobile:pe,blockBottomMarginMobile:be,blockMarginUnit:de,blockMarginUnitTablet:me,blockMarginUnitMobile:ye,blockMarginLink:fe,blockTopPadding:he,blockRightPadding:ve,blockLeftPadding:_e,blockBottomPadding:Te,blockTopPaddingTablet:Se,blockRightPaddingTablet:we,blockLeftPaddingTablet:ke,blockBottomPaddingTablet:Pe,blockTopPaddingMobile:xe,blockRightPaddingMobile:Ae,blockLeftPaddingMobile:Ge,blockBottomPaddingMobile:Me,blockPaddingUnit:Re,blockPaddingUnitTablet:Be,blockPaddingUnitMobile:Ue,blockPaddingLink:Oe,numberLoadGoogleFonts:He,numberFontFamily:je,numberFontWeight:ze,numberFontStyle:De,numberFontSize:Ne,numberColor:Ie,numberTransform:Ve,numberDecoration:We,numberFontSizeType:qe,numberFontSizeMobile:Ze,numberFontSizeTablet:$e,numberLineHeight:Ye,numberLineHeightType:Ke,numberLineHeightMobile:Je,numberLineHeightTablet:Xe,numberTopMargin:Qe,numberRightMargin:et,numberLeftMargin:tt,numberBottomMargin:at,numberTopMarginTablet:lt,numberRightMarginTablet:it,numberLeftMarginTablet:ot,numberBottomMarginTablet:nt,numberTopMarginMobile:rt,numberRightMarginMobile:st,numberLeftMarginMobile:ct,numberBottomMarginMobile:ut,numberMarginUnit:pt,numberMarginUnitTablet:bt,numberMarginUnitMobile:dt,numberMarginLink:gt,numberLetterSpacingType:mt,numberLetterSpacing:yt,numberLetterSpacingTablet:ft,numberLetterSpacingMobile:ht,prefixRightDistance:vt,prefixRightDistanceTablet:_t,prefixRightDistanceMobile:Tt,suffixLeftDistance:Ct,suffixLeftDistanceTablet:St,suffixLeftDistanceMobile:wt,circleSize:kt,circleStokeSize:Pt,circleForeground:xt,circleBackground:At,barSize:Gt,barForeground:Mt,barBackground:Rt,barFlip:Bt,boxShadowColor:Ut,boxShadowHOffset:Et,boxShadowVOffset:Ot,boxShadowBlur:Lt,boxShadowSpread:Ht,boxShadowPosition:jt,boxShadowColorHover:Ft,boxShadowHOffsetHover:zt,boxShadowVOffsetHover:Dt,boxShadowBlurHover:Nt,boxShadowSpreadHover:It,boxShadowPositionHover:Vt,showIcon:Wt,icon:qt,iconColor:Zt,iconBackgroundColor:$t,iconHoverColor:Yt,iconBackgroundHoverColor:Kt,iconSize:Jt,iconSizeTablet:Xt,iconSizeMobile:Qt,iconSizeType:ea,iconSizeTypeTablet:ta,iconSizeTypeMobile:aa,iconImgPosition:la,iconImage:ia,imageSize:oa,sourceType:na,imageWidthType:ra,imageWidth:sa,imageWidthTablet:ca,imageWidthMobile:ua,imageWidthUnit:pa,imageWidthUnitTablet:ba,imageWidthUnitMobile:da,iconTopPadding:ga,iconRightPadding:ma,iconLeftPadding:ya,iconBottomPadding:fa,iconTopPaddingTablet:ha,iconRightPaddingTablet:va,iconLeftPaddingTablet:_a,iconBottomPaddingTablet:Ta,iconTopPaddingMobile:Ca,iconRightPaddingMobile:Sa,iconLeftPaddingMobile:wa,iconBottomPaddingMobile:ka,iconPaddingUnit:xa,iconPaddingUnitTablet:Aa,iconPaddingUnitMobile:Ga,iconPaddingLink:Ma,iconTopMargin:Ra,iconRightMargin:Ba,iconLeftMargin:Ua,iconBottomMargin:Ea,iconTopMarginTablet:Oa,iconRightMarginTablet:La,iconLeftMarginTablet:Ha,iconBottomMarginTablet:ja,iconTopMarginMobile:Fa,iconRightMarginMobile:za,iconLeftMarginMobile:Da,iconBottomMarginMobile:Ia,iconMarginUnit:Va,iconMarginUnitTablet:Wa,iconMarginUnitMobile:qa,iconMarginLink:Za}=a;Object(B.useEffect)(()=>{"circle"!==f||"top"===la&&"bottom"===la||t({iconImgPosition:"top"})},[f]),Object(B.useEffect)(()=>{const e=parseFloat(o),a=parseFloat(n),l=parseFloat(b);t({startNumber:e}),t({endNumber:a}),t({totalNumber:l})},[o,n,b]);const[$a,Ya]=Object(B.useState)(Pa.endNumber.default),Ka=Ps(o,"startNumber","counter"),Ja=Ps(n,"endNumber","counter");Object(B.useEffect)(()=>{Ya(Ka<Ja?Ja:Ka>Ja?Ka:Ja)},[o,n]),Object(B.useEffect)(()=>{b<n&&o<n&&t({totalNumber:$a})},[$a]);const Xa=[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")},{value:"left-number",label:Object(r.__)("Left of Number","ultimate-addons-for-gutenberg")},{value:"right-number",label:Object(r.__)("Right of Number","ultimate-addons-for-gutenberg")}],el=[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}];ia&&ia.sizes&&(g_=F(ia.sizes));const al=React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:f,label:"layout"},options:[{value:"number",label:Object(r.__)("Number","ultimate-addons-for-gutenberg")},{value:"circle",label:Object(r.__)("Circle","ultimate-addons-for-gutenberg")},{value:"bars",label:Object(r.__)("Bar","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:c,label:"align"},tablet:{value:u,label:"alignTablet"},mobile:{value:p,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),"bars"===f&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Bt,onChange:()=>t({barFlip:!Bt}),label:Object(r.__)("Flip Title and Bar Positions","ultimate-addons-for-gutenberg")})),React.createElement(bc,{label:Object(r.__)("Starting Number","ultimate-addons-for-gutenberg"),value:o,data:{value:o,label:"startNumber"},displayUnit:!1,setAttributes:t,min:"number"!==f&&0,required:"number"!==f,help:"number"!==f&&Object(r.__)("Note: Please use positive values for Circle and Bar layouts.","ultimate-addons-for-gutenberg"),showControlHeader:!1,enableDynamicContent:!0,dynamicContentType:"text",name:"startNumber"}),React.createElement(bc,{label:Object(r.__)("Ending Number","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"endNumber"},displayUnit:!1,setAttributes:t,min:"number"!==f&&0,required:"number"!==f,help:"number"!==f&&Object(r.__)("Note: Please use positive values for Circle and Bar layouts.","ultimate-addons-for-gutenberg"),showControlHeader:!1,enableDynamicContent:!0,dynamicContentType:"text",name:"endNumber"}),"number"!==f&&React.createElement(bc,{label:Object(r.__)("Total Number","ultimate-addons-for-gutenberg"),value:b,data:{value:b,label:"totalNumber"},displayUnit:!1,setAttributes:t,min:$a,required:!0,help:Object(r.__)("Note: Total Number should be more than or equal to the Ending Number (or the Starting number in case you want to animate the Counter in reverse direction).","ultimate-addons-for-gutenberg"),showControlHeader:!1,enableDynamicContent:!0,dynamicContentType:"text",name:"totalNumber"}),React.createElement(Qa,{label:Object(r.__)("Decimal Places","ultimate-addons-for-gutenberg"),setAttributes:t,value:s,data:{value:s,label:"decimalPlaces"},min:0,step:1,max:10,displayUnit:!1}),React.createElement(Fs,{variant:"inline",label:Object(r.__)("Number Prefix","ultimate-addons-for-gutenberg"),value:d,data:{value:d,label:"numberPrefix"},setAttributes:t,onChange:e=>t({numberPrefix:e})}),React.createElement(Fs,{variant:"inline",label:Object(r.__)("Number Suffix","ultimate-addons-for-gutenberg"),value:g,data:{value:g,label:"numberSuffix"},setAttributes:t,onChange:e=>t({numberSuffix:e})}),React.createElement(bc,{label:Object(r.__)("Animation Duration","ultimate-addons-for-gutenberg"),value:m,data:{value:m,label:"animationDuration"},displayUnit:!1,setAttributes:t,min:1,step:100,required:!0,showControlHeader:!1}),React.createElement(Pi,{label:Object(r.__)("Thousand(s)","ultimate-addons-for-gutenberg"),data:{value:y,label:"thousandSeparator"},setAttributes:t,options:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:",",label:Object(r.__)("Comma","ultimate-addons-for-gutenberg")},{value:".",label:Object(r.__)("Dot","ultimate-addons-for-gutenberg")},{value:" ",label:Object(r.__)("Whitespace","ultimate-addons-for-gutenberg")},{value:"'",label:Object(r.__)("Apostrophe","ultimate-addons-for-gutenberg")}]})),ll=React.createElement(Fe,{title:Object(r.__)("Image/Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{checked:Wt,onChange:()=>t({showIcon:!Wt}),label:Object(r.__)("Enable Icon/Image","ultimate-addons-for-gutenberg")}),Wt&&("circle"===f||"number"===f)&&React.createElement(Pi,{label:Object(r.__)("Select Position","ultimate-addons-for-gutenberg"),data:{value:la,label:"iconImgPosition"},setAttributes:t,options:"circle"===f?el:Xa}),Wt&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Select Source","ultimate-addons-for-gutenberg"),data:{value:na,label:"sourceType"},options:[{value:"icon",label:Object(r.__)("Icon","ultimate-addons-for-gutenberg")},{value:"image",label:Object(r.__)("Image","ultimate-addons-for-gutenberg")}]}),!1!==Wt&&"icon"===na&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:qt,onChange:e=>t({icon:e})})),!1!==Wt&&"image"===na&&React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{if(e&&e.url)if(e.type&&"image"===e.type){if(e.sizes){const t=F(e.sizes);g_=t}t({iconImage:e})}else t({iconImage:null});else t({iconImage:null})},backgroundImage:ia,onRemoveImage:()=>{t({iconImage:""})},disableDynamicContent:!0}),ia&&"null"!==ia.url&&""!==ia.url&&React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:oa,label:"imageSize"},setAttributes:t,options:g_}))),sl=React.createElement(Fe,{title:Object(r.__)("Image/Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},"image"===na&&React.createElement(Le.ToggleControl,{checked:ra,onChange:()=>t({imageWidthType:!ra}),label:Object(r.__)("Custom Width","ultimate-addons-for-gutenberg"),help:Object(r.__)("Turn this off to inherit the natural width of Image.","ultimate-addons-for-gutenberg")}),"image"===na&&ra&&React.createElement(tl,{label:Object(r.__)("Image Width","ultimate-addons-for-gutenberg"),setAttributes:t,data:{desktop:{value:sa,label:"imageWidth",unit:{value:pa,label:"imageWidthUnit"}},tablet:{value:ca,label:"imageWidthTablet",unit:{value:ba,label:"imageWidthUnitTablet"}},mobile:{value:ua,label:"imageWidthMobile",unit:{value:da,label:"imageWidthUnitMobile"}}},limitMin:{px:0,"%":0,em:0},limitMax:{px:500,"%":100,em:100},unit:{value:pa,label:"imageWidthUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}]}),"icon"===na&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:t,data:{desktop:{value:Jt,label:"iconSize",unit:{value:ea,label:"iconSizeType"}},tablet:{value:Xt,label:"iconSizeTablet",unit:{value:ta,label:"iconSizeTypeTablet"}},mobile:{value:Qt,label:"iconSizeMobile",unit:{value:aa,label:"iconSizeTypeMobile"}}},limitMin:{px:0,"%":0,em:0},limitMax:{px:500,"%":100,em:100},unit:{value:ea,label:"iconSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}]}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Zt||"",data:{value:Zt,label:"iconColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:$t||"",data:{value:$t,label:"iconBackgroundColor"},setAttributes:t})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Yt||"",data:{value:Yt,label:"iconHoverColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:Kt||"",data:{value:Kt,label:"iconBackgroundHoverColor"},setAttributes:t})),disableBottomSeparator:!1})),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:t,prefix:"iconWrap",attributes:a,deviceType:l,disableBottomSeparator:!1}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ga,label:"iconTopPadding"},valueRight:{value:ma,label:"iconRightPadding"},valueBottom:{value:fa,label:"iconBottomPadding"},valueLeft:{value:ya,label:"iconLeftPadding"},valueTopTablet:{value:ha,label:"iconTopPaddingTablet"},valueRightTablet:{value:va,label:"iconRightPaddingTablet"},valueBottomTablet:{value:Ta,label:"iconBottomPaddingTablet"},valueLeftTablet:{value:_a,label:"iconLeftPaddingTablet"},valueTopMobile:{value:Ca,label:"iconTopPaddingMobile"},valueRightMobile:{value:Sa,label:"iconRightPaddingMobile"},valueBottomMobile:{value:ka,label:"iconBottomPaddingMobile"},valueLeftMobile:{value:wa,label:"iconLeftPaddingMobile"},unit:{value:xa,label:"iconPaddingUnit"},mUnit:{value:Ga,label:"iconPaddingUnitMobile"},tUnit:{value:Aa,label:"iconPaddingUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:Ma,label:"iconPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Ra,label:"iconTopMargin"},valueRight:{value:Ba,label:"iconRightMargin"},valueBottom:{value:Ea,label:"iconBottomMargin"},valueLeft:{value:Ua,label:"iconLeftMargin"},valueTopTablet:{value:Oa,label:"iconTopMarginTablet"},valueRightTablet:{value:La,label:"iconRightMarginTablet"},valueBottomTablet:{value:ja,label:"iconBottomMarginTablet"},valueLeftTablet:{value:Ha,label:"iconLeftMarginTablet"},valueTopMobile:{value:Fa,label:"iconTopMarginMobile"},valueRightMobile:{value:za,label:"iconRightMarginMobile"},valueBottomMobile:{value:Ia,label:"iconBottomMarginMobile"},valueLeftMobile:{value:Da,label:"iconLeftMarginMobile"},unit:{value:Va,label:"iconMarginUnit"},mUnit:{value:qa,label:"iconMarginUnitMobile"},tUnit:{value:Wa,label:"iconMarginUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:Za,label:"iconMarginLink"}})),cl=React.createElement(Fe,{title:Object(r.__)("Headline","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:S||"",data:{value:S,label:"headingColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:t,loadGoogleFonts:{value:h,label:"headingLoadGoogleFonts"},fontFamily:{value:v,label:"headingFontFamily"},fontWeight:{value:_,label:"headingFontWeight"},fontStyle:{value:T,label:"headingFontStyle"},transform:{value:w,label:"headingTransform"},decoration:{value:k,label:"headingDecoration"},fontSizeType:{value:P,label:"headingFontSizeType"},fontSize:{value:C,label:"headingFontSize"},fontSizeMobile:{value:x,label:"headingFontSizeMobile"},fontSizeTablet:{value:A,label:"headingFontSizeTablet"},lineHeightType:{value:M,label:"headingLineHeightType"},lineHeight:{value:G,label:"headingLineHeight"},lineHeightMobile:{value:R,label:"headingLineHeightMobile"},lineHeightTablet:{value:U,label:"headingLineHeightTablet"},letterSpacingType:{value:J,label:"headingLetterSpacingType"},letterSpacing:{value:X,label:"headingLetterSpacing"},letterSpacingTablet:{value:Q,label:"headingLetterSpacingTablet"},letterSpacingMobile:{value:ee,label:"headingLetterSpacingMobile"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:E,label:"headingTopMargin"},valueRight:{value:O,label:"headingRightMargin"},valueBottom:{value:H,label:"headingBottomMargin"},valueLeft:{value:L,label:"headingLeftMargin"},valueTopTablet:{value:j,label:"headingTopMarginTablet"},valueRightTablet:{value:z,label:"headingRightMarginTablet"},valueBottomTablet:{value:N,label:"headingBottomMarginTablet"},valueLeftTablet:{value:D,label:"headingLeftMarginTablet"},valueTopMobile:{value:I,label:"headingTopMarginMobile"},valueRightMobile:{value:V,label:"headingRightMarginMobile"},valueBottomMobile:{value:q,label:"headingBottomMarginMobile"},valueLeftMobile:{value:W,label:"headingLeftMarginMobile"},unit:{value:Z,label:"headingMarginUnit"},mUnit:{value:Y,label:"headingMarginUnitMobile"},tUnit:{value:$,label:"headingMarginUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:K,label:"headingMarginLink"}})),ul=React.createElement(Fe,{title:Object(r.__)("Number","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ie||"",data:{value:Ie,label:"numberColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),setAttributes:t,loadGoogleFonts:{value:He,label:"numberLoadGoogleFonts"},fontFamily:{value:je,label:"numberFontFamily"},fontWeight:{value:ze,label:"numberFontWeight"},fontStyle:{value:De,label:"numberFontStyle"},transform:{value:Ve,label:"numberTransform"},decoration:{value:We,label:"numberDecoration"},fontSizeType:{value:qe,label:"numberFontSizeType"},fontSize:{value:Ne,label:"numberFontSize"},fontSizeMobile:{value:Ze,label:"numberFontSizeMobile"},fontSizeTablet:{value:$e,label:"numberFontSizeTablet"},lineHeightType:{value:Ke,label:"numberLineHeightType"},lineHeight:{value:Ye,label:"numberLineHeight"},lineHeightMobile:{value:Je,label:"numberLineHeightMobile"},lineHeightTablet:{value:Xe,label:"numberLineHeightTablet"},letterSpacingType:{value:mt,label:"numberLetterSpacingType"},letterSpacing:{value:yt,label:"numberLetterSpacing"},letterSpacingTablet:{value:ft,label:"numberLetterSpacingTablet"},letterSpacingMobile:{value:ht,label:"numberLetterSpacingMobile"}}),React.createElement(Pl,{label:"bars"!==f?Object(r.__)("Margin","ultimate-addons-for-gutenberg"):Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Qe,label:"numberTopMargin"},valueRight:{value:et,label:"numberRightMargin"},valueBottom:{value:at,label:"numberBottomMargin"},valueLeft:{value:tt,label:"numberLeftMargin"},valueTopTablet:{value:lt,label:"numberTopMarginTablet"},valueRightTablet:{value:it,label:"numberRightMarginTablet"},valueBottomTablet:{value:nt,label:"numberBottomMarginTablet"},valueLeftTablet:{value:ot,label:"numberLeftMarginTablet"},valueTopMobile:{value:rt,label:"numberTopMarginMobile"},valueRightMobile:{value:st,label:"numberRightMarginMobile"},valueBottomMobile:{value:ut,label:"numberBottomMarginMobile"},valueLeftMobile:{value:ct,label:"numberLeftMarginMobile"},unit:{value:pt,label:"numberMarginUnit"},mUnit:{value:dt,label:"numberMarginUnitMobile"},tUnit:{value:bt,label:"numberMarginUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:gt,label:"numberMarginLink"}}),React.createElement(tl,{label:Object(r.__)("Prefix Right Margin","ultimate-addons-for-gutenberg"),setAttributes:t,data:{desktop:{value:vt,label:"prefixRightDistance"},tablet:{value:_t,label:"prefixRightDistanceTablet"},mobile:{value:Tt,label:"prefixRightDistanceMobile"}},min:0,step:1,max:100,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Suffix Left Margin","ultimate-addons-for-gutenberg"),setAttributes:t,data:{desktop:{value:Ct,label:"suffixLeftDistance"},tablet:{value:St,label:"suffixLeftDistanceTablet"},mobile:{value:wt,label:"suffixLeftDistanceMobile"}},min:0,step:1,max:100,displayUnit:!1})),pl=React.createElement(Fe,{title:Object(r.__)("Circle","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Qa,{label:Object(r.__)("Circle Size","ultimate-addons-for-gutenberg"),setAttributes:t,value:kt,data:{value:kt,label:"circleSize"},min:10,step:10,max:500,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Stroke Size","ultimate-addons-for-gutenberg"),setAttributes:t,value:Pt,data:{value:Pt,label:"circleStokeSize"},min:0,step:1,max:100,displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Progress Color","ultimate-addons-for-gutenberg"),colorValue:xt||"",data:{value:xt,label:"circleForeground"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:At||"",data:{value:At,label:"circleBackground"},setAttributes:t})),bl=React.createElement(Fe,{title:Object(r.__)("Bar","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Qa,{label:Object(r.__)("Bar Size","ultimate-addons-for-gutenberg"),setAttributes:t,value:Gt,data:{value:Gt,label:"barSize"},min:0,step:1,max:100,displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Progress Color","ultimate-addons-for-gutenberg"),colorValue:Mt||"",data:{value:Mt,label:"barForeground"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Rt||"",data:{value:Rt,label:"barBackground"},setAttributes:t})),dl=React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:te,label:"blockTopMargin"},valueRight:{value:ae,label:"blockRightMargin"},valueBottom:{value:ie,label:"blockBottomMargin"},valueLeft:{value:le,label:"blockLeftMargin"},valueTopTablet:{value:oe,label:"blockTopMarginTablet"},valueRightTablet:{value:ne,label:"blockRightMarginTablet"},valueBottomTablet:{value:se,label:"blockBottomMarginTablet"},valueLeftTablet:{value:re,label:"blockLeftMarginTablet"},valueTopMobile:{value:ce,label:"blockTopMarginMobile"},valueRightMobile:{value:ue,label:"blockRightMarginMobile"},valueBottomMobile:{value:be,label:"blockBottomMarginMobile"},valueLeftMobile:{value:pe,label:"blockLeftMarginMobile"},unit:{value:de,label:"blockMarginUnit"},mUnit:{value:ye,label:"blockMarginUnitMobile"},tUnit:{value:me,label:"blockMarginUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:fe,label:"blockMarginLink"}}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:he,label:"blockTopPadding"},valueRight:{value:ve,label:"blockRightPadding"},valueBottom:{value:Te,label:"blockBottomPadding"},valueLeft:{value:_e,label:"blockLeftPadding"},valueTopTablet:{value:Se,label:"blockTopPaddingTablet"},valueRightTablet:{value:we,label:"blockRightPaddingTablet"},valueBottomTablet:{value:Pe,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:ke,label:"blockLeftPaddingTablet"},valueTopMobile:{value:xe,label:"blockTopPaddingMobile"},valueRightMobile:{value:Ae,label:"blockRightPaddingMobile"},valueBottomMobile:{value:Me,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:Ge,label:"blockLeftPaddingMobile"},unit:{value:Re,label:"blockPaddingUnit"},mUnit:{value:Ue,label:"blockPaddingUnitMobile"},tUnit:{value:Be,label:"blockPaddingUnitTablet"},deviceType:l,attributes:a,setAttributes:t,link:{value:Oe,label:"blockPaddingLink"}}));return Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),Object(r.__)("Normal","ultimate-addons-for-gutenberg"),Object(r.__)("Hover","ultimate-addons-for-gutenberg"),React.Fragment,Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),Object(r.__)("Color","ultimate-addons-for-gutenberg"),Object(r.__)("Horizontal","ultimate-addons-for-gutenberg"),Object(r.__)("Vertical","ultimate-addons-for-gutenberg"),Object(r.__)("Blur","ultimate-addons-for-gutenberg"),Object(r.__)("Spread","ultimate-addons-for-gutenberg"),Object(r.__)("Position","ultimate-addons-for-gutenberg"),React.Fragment,Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),Object(r.__)("Color","ultimate-addons-for-gutenberg"),Object(r.__)("Horizontal","ultimate-addons-for-gutenberg"),Object(r.__)("Vertical","ultimate-addons-for-gutenberg"),Object(r.__)("Blur","ultimate-addons-for-gutenberg"),Object(r.__)("Spread","ultimate-addons-for-gutenberg"),Object(r.__)("Position","ultimate-addons-for-gutenberg"),React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{key:"controls"},React.createElement(ge.AlignmentToolbar,{value:c,onChange:e=>t({align:e})})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,al,"bars"!==f&&ll,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,ul,cl,"circle"===f&&pl,"bars"===f&&bl,"bars"!==f&&Wt&&sl,dl),React.createElement(il,d_({},rl,{parentProps:e})))))}var y_=e=>{const{attributes:t,setAttributes:a}=e;if("icon"===t.sourceType)return React.createElement("span",{className:"wp-block-uagb-counter__icon"},Ce(t.icon,a));if("image"===t.sourceType){let e="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(e=t.iconImage.url);let a="";if(""!==e){const l=t.iconImage.sizes,i=t.imageSize;return a=void 0!==l&&void 0!==l[i]?l[i].url:e,React.createElement("span",{className:"wp-block-uagb-counter__image-wrap"},React.createElement("img",{className:"wp-block-uagb-counter__image",src:a,alt:t.iconImage.alt,width:t.imageWidthType&&t.imageWidth?t.imageWidth:t.imgTagWidth,height:t.imgTagHeight,loading:"lazy"}))}}return null};const f_=e=>{const{attributes:t,setAttributes:a,className:l,deviceType:i,name:o}=e,{block_id:n,layout:s,heading:c,numberPrefix:u,numberSuffix:p,startNumber:b,endNumber:d,totalNumber:g,decimalPlaces:m,animationDuration:y,thousandSeparator:f,circleSize:h,circleStokeSize:v,icon:_,showIcon:T,iconImgPosition:C,sourceType:S,iconImage:w,imageSize:k,imageWidthType:P,imageWidth:x}=t;let A="";void 0!==t.iconImage&&null!==t.iconImage&&""!==t.iconImage&&(A=t.iconImage.url);let G="";if(""!==A){const e=t.iconImage.sizes;G=void 0!==e&&void 0!==e[k]?e[k].url:A}Object(B.useEffect)(()=>{P&&x?mf(G,a,{type:"width",value:x}):mf(G,a)},[G,x,P,k]),Object(B.useEffect)(()=>{UAGBCounter.init(".uagb-block-"+n,t)},[s,y,b,d,g,f,m,n,h,v]);const M=Ps(b,"startNumber","counter"),R=Ps(d,"endNumber","counter"),U=o.replace("uagb/",""),E=Ps(h,"circleSize",U),O=T&&("icon"===S&&""!==_||"image"===S&&""!==w.url);let L="";O&&(L=React.createElement(y_,{attributes:t,setAttributes:a}));const H=React.createElement(ge.RichText,{tagName:"div",className:"wp-block-uagb-counter__title",value:c,onChange:e=>a({heading:e}),placeholder:Object(r.__)("Title…","ultimate-addons-for-gutenberg")}),j=React.createElement(React.Fragment,null,O&&"number"===s&&"top"===C&&L,React.createElement("div",{className:"wp-block-uagb-counter__number"},O&&"number"===s&&"left-number"===C&&L,u&&React.createElement("span",{className:"uagb-counter-block-prefix"},u),React.createElement("span",{className:"uagb-counter-block-number","data-duration":y/1e3,"data-to-value":R,"data-from-value":M,"data-delimiter":f}),p&&React.createElement("span",{className:"uagb-counter-block-suffix"},p),O&&"number"===s&&"right-number"===C&&L),"number"===s&&H,O&&"number"===s&&"bottom"===C&&L),F=React.createElement("div",{className:"wp-block-uagb-counter-bars-container"},j),z=React.createElement("div",{className:"wp-block-uagb-counter-circle-container"},React.createElement("div",{className:"wp-block-uagb-counter-circle-container__content"},O&&"top"===C&&L,j,H,O&&"bottom"===C&&L),React.createElement("svg",{preserveAspectRatio:"xMinYMin meet",viewBox:`0 0 ${E} ${E}`,version:"1.1",xmlns:"http://www.w3.org/2000/svg"},React.createElement("circle",{className:"uagb-counter-circle__background"}),React.createElement("circle",{className:"uagb-counter-circle__progress"})));return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(l,"uagb-block-"+n,"uagb-editor-preview-mode-"+i.toLowerCase(),"wp-block-uagb-counter","wp-block-uagb-counter--"+s)},"number"===s&&j,"bars"===s&&F,"circle"===s&&z,"circle"!==s&&"number"!==s&&H))};f_.propTypes={},f_.defaultProps={};var h_=f_,v_=Object(B.memo)(e=>{let{attributes:t}=e;const{numberLoadGoogleFonts:a,numberFontFamily:l,numberFontWeight:i,headingLoadGoogleFonts:o,headingFontFamily:n,headingFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,c,s)});a(165);var T_=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,clientId:a,attributes:l,attributes:{UAGHideDesktop:i,UAGHideTab:o,UAGHideMob:n},name:r,deviceType:s}=e,c=Object(B.useMemo)(()=>function(e,t,a,l){const i=l.toLowerCase(),{block_id:o,align:n,alignTablet:r,alignMobile:s,layout:c,endNumber:u,headingFontFamily:p,headingFontWeight:b,headingFontStyle:d,headingFontSize:g,headingColor:m,headingTransform:y,headingDecoration:f,headingFontSizeType:h,headingFontSizeMobile:v,headingFontSizeTablet:_,headingLineHeight:T,headingLineHeightType:C,headingLineHeightMobile:S,headingLineHeightTablet:w,headingTopMargin:k,headingRightMargin:P,headingLeftMargin:x,headingBottomMargin:A,headingTopMarginTablet:G,headingRightMarginTablet:M,headingLeftMarginTablet:R,headingBottomMarginTablet:B,headingTopMarginMobile:U,headingRightMarginMobile:E,headingLeftMarginMobile:O,headingBottomMarginMobile:L,headingMarginUnit:H,headingMarginUnitTablet:j,headingMarginUnitMobile:F,headingLetterSpacingType:z,headingLetterSpacing:D,headingLetterSpacingTablet:N,headingLetterSpacingMobile:I,numberFontFamily:V,numberFontWeight:W,numberFontStyle:q,numberFontSize:Z,numberColor:$,numberTransform:Y,numberDecoration:K,numberFontSizeType:J,numberFontSizeMobile:X,numberFontSizeTablet:Q,numberLineHeight:ee,numberLineHeightType:te,numberLineHeightMobile:le,numberLineHeightTablet:ie,numberTopMargin:oe,numberRightMargin:ne,numberLeftMargin:re,numberBottomMargin:se,numberTopMarginTablet:ce,numberRightMarginTablet:ue,numberLeftMarginTablet:pe,numberBottomMarginTablet:be,numberTopMarginMobile:de,numberRightMarginMobile:ge,numberLeftMarginMobile:me,numberBottomMarginMobile:ye,numberMarginUnit:fe,numberMarginUnitTablet:he,numberMarginUnitMobile:ve,numberLetterSpacingType:_e,numberLetterSpacing:Te,numberLetterSpacingTablet:Ce,numberLetterSpacingMobile:Se,prefixRightDistance:we,prefixRightDistanceTablet:ke,prefixRightDistanceMobile:Pe,suffixLeftDistance:xe,suffixLeftDistanceTablet:Ae,suffixLeftDistanceMobile:Ge,circleSize:Me,circleStokeSize:Re,circleForeground:Be,circleBackground:Ue,barSize:Ee,barForeground:Oe,barBackground:Le,barFlip:He,blockTopMargin:je,blockRightMargin:Fe,blockLeftMargin:ze,blockBottomMargin:De,blockTopMarginTablet:Ne,blockRightMarginTablet:Ie,blockLeftMarginTablet:Ve,blockBottomMarginTablet:We,blockTopMarginMobile:qe,blockRightMarginMobile:Ze,blockLeftMarginMobile:$e,blockBottomMarginMobile:Ye,blockMarginUnit:Ke,blockMarginUnitTablet:Je,blockMarginUnitMobile:Xe,blockTopPadding:Qe,blockRightPadding:et,blockLeftPadding:tt,blockBottomPadding:at,blockTopPaddingTablet:lt,blockRightPaddingTablet:it,blockLeftPaddingTablet:ot,blockBottomPaddingTablet:nt,blockTopPaddingMobile:rt,blockRightPaddingMobile:st,blockLeftPaddingMobile:ct,blockBottomPaddingMobile:ut,blockPaddingUnit:pt,blockPaddingUnitTablet:bt,blockPaddingUnitMobile:dt,boxShadowColor:gt,boxShadowHOffset:mt,boxShadowVOffset:yt,boxShadowBlur:ft,boxShadowSpread:ht,boxShadowPosition:vt,boxShadowColorHover:_t,boxShadowHOffsetHover:Tt,boxShadowVOffsetHover:Ct,boxShadowBlurHover:St,boxShadowSpreadHover:wt,boxShadowPositionHover:kt,iconImgPosition:Pt,iconColor:xt,iconBackgroundColor:At,iconHoverColor:Gt,iconBackgroundHoverColor:Mt,iconSize:Rt,iconSizeTablet:Bt,iconSizeMobile:Ut,iconSizeType:Et,iconSizeTypeTablet:Ot,iconSizeTypeMobile:Lt,iconWrapBorderHColor:Ht,imageWidthType:jt,imageWidth:Ft,imageWidthTablet:zt,imageWidthMobile:Dt,imageWidthUnit:Nt,imageWidthUnitTablet:It,imageWidthUnitMobile:Vt,iconTopPadding:Wt,iconRightPadding:qt,iconLeftPadding:Zt,iconBottomPadding:$t,iconTopPaddingTablet:Yt,iconRightPaddingTablet:Kt,iconLeftPaddingTablet:Jt,iconBottomPaddingTablet:Xt,iconTopPaddingMobile:Qt,iconRightPaddingMobile:ea,iconLeftPaddingMobile:ta,iconBottomPaddingMobile:aa,iconPaddingUnit:la,iconPaddingUnitTablet:ia,iconPaddingUnitMobile:oa,iconTopMargin:na,iconRightMargin:ra,iconLeftMargin:sa,iconBottomMargin:ca,iconTopMarginTablet:ua,iconRightMarginTablet:pa,iconLeftMarginTablet:ba,iconBottomMarginTablet:da,iconTopMarginMobile:ga,iconRightMarginMobile:ma,iconLeftMarginMobile:ya,iconBottomMarginMobile:fa,iconMarginUnit:ha,iconMarginUnitTablet:va,iconMarginUnitMobile:_a}=e,Ta=a.replace("uagb/",""),Ca=Ps(u,"endNumber","counter"),Sa=Ps(Me,"circleSize",Ta),wa=Ps(Re,"circleStokeSize",Ta),ka=Ps(Ee,"barSize",Ta),Pa=Ps(we,"prefixRightDistance",Ta),xa=isNaN(ke)?we:ke,Aa=isNaN(Pe)?ke:Pe,Ga=Ps(xe,"suffixLeftDistance",Ta),Ma=isNaN(Ae)?xe:Ae,Ra=isNaN(Ge)?Ae:Ge,Ba=Ps(Rt,"iconSize",Ta),Ua=isNaN(Bt)?Rt:Bt,Ea=isNaN(Ut)?Bt:Ut,Oa=Ps(Ft,"imageWidth",Ta),La=isNaN(zt)?Oa:zt,Ha=isNaN(Dt)?La:Dt,ja=rs(e,"iconWrap"),Fa=rs(e,"iconWrap","tablet"),za=rs(e,"iconWrap","mobile"),Da=Sa/2,Na=Da-wa/2,Ia=parseFloat(2*Math.PI*Na).toFixed(2),Va={"padding-top":ns(Wt,la),"padding-right":ns(qt,la),"padding-bottom":ns($t,la),"padding-left":ns(Zt,la),"margin-top":ns(na,ha),"margin-right":ns(ra,ha),"margin-bottom":ns(ca,ha),"margin-left":ns(sa,ha)},Wa={"padding-top":ns(Yt,ia),"padding-right":ns(Kt,ia),"padding-bottom":ns(Xt,ia),"padding-left":ns(Jt,ia),"margin-top":ns(ua,va),"margin-right":ns(pa,va),"margin-bottom":ns(da,va),"margin-left":ns(ba,va)},qa={"padding-top":ns(Qt,oa),"padding-right":ns(ea,oa),"padding-bottom":ns(aa,oa),"padding-left":ns(ta,oa),"margin-top":ns(ga,_a),"margin-right":ns(ma,_a),"margin-bottom":ns(fa,_a),"margin-left":ns(ya,_a)};let Za=vt;"outset"===vt&&(Za="");let $a=kt;"outset"===kt&&($a="");const Ya={".wp-block-uagb-counter":{"text-align":n,"margin-top":ns(je,Ke),"margin-right":ns(Fe,Ke),"margin-bottom":ns(De,Ke),"margin-left":ns(ze,Ke),"padding-top":ns(Qe,pt),"padding-right":ns(et,pt),"padding-bottom":ns(at,pt),"padding-left":ns(tt,pt)},".wp-block-uagb-counter .wp-block-uagb-counter__icon":{"background-color":At,...Va,...ja},".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap":{...Va},".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img":{...ja},".wp-block-uagb-counter:hover .wp-block-uagb-counter__image-wrap img":{"border-color":Ht},".wp-block-uagb-counter:hover .wp-block-uagb-counter__icon":{"background-color":Mt,"border-color":Ht},".wp-block-uagb-counter .wp-block-uagb-counter__icon svg":{width:ns(Ba,Et),height:ns(Ba,Et),fill:xt},".wp-block-uagb-counter:hover .wp-block-uagb-counter__icon svg":{fill:Gt},".wp-block-uagb-counter .wp-block-uagb-counter__title":{"font-family":p,"font-style":d,"text-decoration":f,"text-transform":y,"font-weight":b,"font-size":ns(g,h),"line-height":ns(T,C),"letter-Spacing":ns(D,z),color:m,"margin-top":ns(k,H),"margin-right":ns(P,H),"margin-bottom":ns(A,H),"margin-left":ns(x,H)},".wp-block-uagb-counter .wp-block-uagb-counter__number":{"font-family":V,"font-style":q,"text-decoration":K,"text-transform":Y,"font-weight":W,"font-size":ns(Z,J),"line-height":ns(ee,te),"letter-Spacing":ns(Te,_e),color:$,"margin-top":ns(oe,fe),"margin-right":ns(ne,fe),"margin-bottom":ns(se,fe),"margin-left":ns(re,fe)},".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix":{"margin-right":ns(Pa,"px")},".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix":{"margin-left":ns(Ga,"px")},".wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container":{"max-width":ns(Sa,"px")},".wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle":{"stroke-width":ns(wa,"px"),stroke:Ue,r:ns(Na,"px"),cx:ns(Da,"px"),cy:ns(Da,"px")},".wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress":{stroke:Be,"stroke-dasharray":ns(Ia,"px"),"stroke-dashoffset":ns(Ia,"px")},".wp-block-uagb-counter--bars":{"flex-direction":He?"column-reverse":"column"},".wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container":{background:Le},".wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number":{height:ns(ka,"px"),background:Oe,"padding-top":ns(oe,fe),"padding-right":ns(ne,fe),"padding-bottom":ns(se,fe),"padding-left":ns(re,fe)}},Ka=".editor-styles-wrapper .uagb-block-"+o,Ja={},Xa={};if(Ja[".wp-block-uagb-counter"]={"text-align":r,"margin-top":ns(Ne,Je),"margin-right":ns(Ie,Je),"margin-bottom":ns(We,Je),"margin-left":ns(Ve,Je),"padding-top":ns(lt,bt),"padding-right":ns(it,bt),"padding-bottom":ns(nt,bt),"padding-left":ns(ot,bt)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__icon"]={...Wa,...Fa},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap"]={...Wa},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img"]={...Fa},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__icon svg"]={width:ns(Ua,Ot),height:ns(Ua,Ot)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__title"]={"font-size":ns(_,h),"line-height":ns(w,C),"letter-Spacing":ns(N,z),"margin-top":ns(G,j),"margin-right":ns(M,j),"margin-bottom":ns(B,j),"margin-left":ns(R,j)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__number"]={"font-size":ns(Q,J),"line-height":ns(ie,te),"letter-Spacing":ns(Ce,_e),"margin-top":ns(ce,he),"margin-right":ns(ue,he),"margin-bottom":ns(be,he),"margin-left":ns(pe,he)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__title"]={"font-size":ns(_,h),"line-height":ns(w,C),"letter-Spacing":ns(N,z),"margin-top":ns(G,j),"margin-right":ns(M,j),"margin-bottom":ns(B,j),"margin-left":ns(R,j)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__number"]={"font-size":ns(Q,J),"line-height":ns(ie,te),"letter-Spacing":ns(Ce,_e),"margin-top":ns(ce,he),"margin-right":ns(ue,he),"margin-bottom":ns(be,he),"margin-left":ns(pe,he)},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix"]={"margin-right":ns(xa,"px")},Ja[".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix"]={"margin-left":ns(Ma,"px")},Ja[".wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container"]={"padding-top":ns(ce,he),"padding-right":ns(ue,he),"padding-bottom":ns(be,he),"padding-left":ns(pe,he)},Xa[".wp-block-uagb-counter"]={"text-align":s,"margin-top":ns(qe,Xe),"margin-right":ns(Ze,Xe),"margin-bottom":ns(Ye,Xe),"margin-left":ns($e,Xe),"padding-top":ns(rt,dt),"padding-right":ns(st,dt),"padding-bottom":ns(ut,bt),"padding-left":ns(ct,dt)},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__icon"]={...qa,...za},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap"]={...qa},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img"]={...za},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__icon svg"]={width:ns(Ea,Lt),height:ns(Ea,Lt)},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__title"]={"font-size":ns(v,h),"line-height":ns(S,C),"letter-Spacing":ns(I,z),"margin-top":ns(U,F),"margin-right":ns(E,F),"margin-bottom":ns(L,F),"margin-left":ns(O,F)},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__title"]={"font-size":ns(v,h),"line-height":ns(S,C),"letter-Spacing":ns(I,z),"margin-top":ns(U,F),"margin-right":ns(E,F),"margin-bottom":ns(L,F),"margin-left":ns(O,F)},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__number"]={"font-size":ns(X,J),"line-height":ns(le,te),"letter-spacing":ns(Se,_e),"margin-top":ns(de,ve),"margin-right":ns(ge,ve),"margin-bottom":ns(ye,ve),"margin-left":ns(me,ve)},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix"]={"margin-right":ns(Aa,"px")},Xa[".wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix"]={"margin-left":ns(Ra,"px")},Xa[".wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container"]={"padding-top":ns(de,ve),"padding-right":ns(ge,ve),"padding-bottom":ns(ye,ve),"padding-left":ns(me,ve)},jt&&(Ya[" .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image"]={width:ns(Oa,Nt)},Ja[" .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image"]={width:ns(La,It)},Xa[" .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image"]={width:ns(Ha,Vt)}),"number"!==c||"left-number"!==Pt&&"right-number"!==Pt||(Ya[" .wp-block-uagb-counter__number"]={display:"flex","align-items":"center","justify-content":n},Ja[" .wp-block-uagb-counter__number"]={"justify-content":r},Xa[" .wp-block-uagb-counter__number"]={"justify-content":s}),"bars"===c){const e=".wp-block-uagb-counter .wp-block-uagb-counter__number";Ya[e]["margin-top"]="unset",Ya[e]["margin-bottom"]="unset",Ya[e]["margin-left"]="unset",Ya[e]["margin-right"]="unset",Ja[e]["margin-top"]="unset",Ja[e]["margin-bottom"]="unset",Ja[e]["margin-left"]="unset",Ja[e]["margin-right"]="unset",Xa[e]["margin-top"]="unset",Xa[e]["margin-bottom"]="unset",Xa[e]["margin-left"]="unset",Xa[e]["margin-right"]="unset",0===Ca&&(Ya[e]["padding-left"]="unset",Ya[e]["padding-right"]="unset",Ja[e]["padding-left"]="unset",Ja[e]["padding-right"]="unset",Xa[e]["padding-left"]="unset",Xa[e]["padding-right"]="unset");const t=".wp-block-uagb-counter:hover .wp-block-uagb-counter-bars-container";Ya[".wp-block-uagb-counter .wp-block-uagb-counter-bars-container"]={"box-shadow":ns(mt,"px")+" "+ns(yt,"px")+" "+ns(ft,"px")+" "+ns(ht,"px")+" "+gt+" "+Za},Ya[t]={"box-shadow":""};const a=isNaN(St)?"":St,l=_t||"";if(""!==l||""!==a){const e=""===a?"":ns(a,"px");Ya[t]["box-shadow"]=ns(Tt,"px")+" "+ns(Ct,"px")+" "+e+" "+ns(wt,"px")+" "+l+" "+$a}}let Qa=ae(Ya,Ka);return"tablet"!==i&&"mobile"!==i||(Qa+=ae(Ja,""+Ka,!0,"tablet"),"mobile"===i&&(Qa+=ae(Xa,""+Ka,!0,"mobile"))),Qa}(l,0,r,s),[l,s]);return Object(B.useEffect)(()=>{he(e)},[i,o,n,s]),React.createElement(React.Fragment,null,React.createElement(v_,{attributes:l}),React.createElement(me,{blockStyling:c}),t&&React.createElement(m_,e),React.createElement(h_,e))});let C_={};C_=Object(j.applyFilters)("uagb/counter",ws(C_)),Object(be.registerBlockType)("uagb/counter",{...C_,title:Object(r.__)("Counter","ultimate-addons-for-gutenberg"),description:Object(r.__)("This block allows you to add number counter.","ultimate-addons-for-gutenberg"),icon:se.counter,keywords:[Object(r.__)("counter","ultimate-addons-for-gutenberg"),Object(r.__)("number","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Pa,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"counter"}):React.createElement(T_,e),save:function(e){const{attributes:t}=e,{block_id:a,layout:l,heading:i,numberPrefix:o,numberSuffix:n,startNumber:r,endNumber:s,animationDuration:c,thousandSeparator:u,circleSize:p,icon:b,showIcon:d,iconImgPosition:g,sourceType:m,iconImage:y}=t,f=Ps(r,"startNumber","counter"),h=Ps(s,"endNumber","counter"),v=Ps(p,"circleSize","counter"),_=d&&("icon"===m&&""!==b||"image"===m&&""!==y.url);let T="";_&&(T=React.createElement(y_,{attributes:t}));const C=React.createElement(ge.RichText.Content,{tagName:"div",className:"wp-block-uagb-counter__title",value:i}),S=React.createElement(React.Fragment,null,_&&"number"===l&&"top"===g&&T,React.createElement("div",{className:"wp-block-uagb-counter__number"},_&&"number"===l&&"left-number"===g&&T,o&&React.createElement("span",{className:"uagb-counter-block-prefix"},o),React.createElement("span",{className:"uagb-counter-block-number","data-duration":c/1e3,"data-to-value":h,"data-from-value":f,"data-delimiter":u}),n&&React.createElement("span",{className:"uagb-counter-block-suffix"},n),_&&"number"===l&&"right-number"===g&&T),"number"===l&&C,_&&"number"===l&&"bottom"===g&&T),w=React.createElement("div",{className:"wp-block-uagb-counter-bars-container"},S),k=React.createElement("div",{className:"wp-block-uagb-counter-circle-container"},React.createElement("div",{className:"wp-block-uagb-counter-circle-container__content"},_&&"top"===g&&T,S,C,_&&"bottom"===g&&T),React.createElement("svg",{preserveAspectRatio:"xMinYMin meet",viewBox:`0 0 ${v} ${v}`,version:"1.1",xmlns:"http://www.w3.org/2000/svg"},React.createElement("circle",{className:"uagb-counter-circle__background"}),React.createElement("circle",{className:"uagb-counter-circle__progress"})));return React.createElement("div",{className:Be()(e.className,"uagb-block-"+a,"wp-block-uagb-counter","wp-block-uagb-counter--"+l)},"number"===l&&S,"bars"===l&&w,"circle"===l&&k,"circle"!==l&&"number"!==l&&C)}});const S_=[{defaultAttributes:$t},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"iconAlign",value:"row-reverse"},{label:"questionLeftPaddingDesktop",value:15},{label:"hquestionPaddingDesktop",value:15},{label:"vquestionPaddingDesktop",value:15},{label:"questionBottomPaddingDesktop",value:15},{label:"answerTopPadding",value:0},{label:"answerRightPadding",value:15},{label:"answerBottomPadding",value:15},{label:"answerLeftPadding",value:15},{label:"overallBorderStyle",value:"solid"},{label:"overallBorderTopWidth",value:1},{label:"overallBorderRightWidth",value:1},{label:"overallBorderBottomWidth",value:1},{label:"overallBorderLeftWidth",value:1},{label:"overallBorderTopRadius",value:4},{label:"overallBorderRightRadius",value:4},{label:"overallBorderBottomRadius",value:4},{label:"overallBorderLeftRadius",value:4},{label:"boxBgType",value:"transparent"},{label:"layout",value:"accordion"},{label:"enableSeparator",value:!1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="55.75" y="75.75" width="214.5" height="77.5" rx="5.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 117.466C73 116.104 73.935 115.001 75.0884 115.001H244.111C245.264 115.001 246.199 116.104 246.199 117.466C246.199 118.827 245.264 119.93 244.111 119.93H75.0884C73.935 119.93 73 118.827 73 117.466Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 133.084C73 131.722 73.9298 130.619 75.0768 130.619H201.371C202.518 130.619 203.448 131.722 203.448 133.084C203.448 134.445 202.518 135.549 201.371 135.549H75.0768C73.9298 135.549 73 134.445 73 133.084Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 97.2886C73 95.4724 74.3703 94 76.0607 94H197.098C198.789 94 200.159 95.4724 200.159 97.2886C200.159 99.1048 198.789 100.577 197.098 100.577H76.0607C74.3703 100.577 73 99.1048 73 97.2886Z" fill="#B6B6B6"/> <path d="M241.5 98H253" stroke="#959595" stroke-width="2" fill="none"/> <rect x="55.75" y="166.75" width="214.5" height="29.5" rx="5.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 182.289C73 180.472 74.3703 179 76.0607 179H197.098C198.789 179 200.159 180.472 200.159 182.289C200.159 184.105 198.789 185.577 197.098 185.577H76.0607C74.3703 185.577 73 184.105 73 182.289Z" fill="#B6B6B6"/> <path d="M241.5 181.75H253" stroke="#959595" stroke-width="2" fill="none"/> <path d="M247.25 187.5L247.25 176" stroke="#959595" stroke-width="2" fill="none"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"iconAlign",value:"row-reverse"},{label:"questionLeftPaddingDesktop",value:15},{label:"hquestionPaddingDesktop",value:15},{label:"vquestionPaddingDesktop",value:15},{label:"questionBottomPaddingDesktop",value:15},{label:"answerTopPadding",value:0},{label:"answerRightPadding",value:15},{label:"answerBottomPadding",value:15},{label:"answerLeftPadding",value:15},{label:"overallBorderStyle",value:"none"},{label:"overallBorderTopWidth",value:1},{label:"overallBorderRightWidth",value:1},{label:"overallBorderBottomWidth",value:1},{label:"overallBorderLeftWidth",value:1},{label:"overallBorderTopRadius",value:4},{label:"overallBorderRightRadius",value:4},{label:"overallBorderBottomRadius",value:4},{label:"overallBorderLeftRadius",value:4},{label:"boxBgType",value:"color"},{label:"boxBgHoverType",value:"color"},{label:"boxBgColor",value:"#F5F5F5"},{label:"layout",value:"accordion"},{label:"enableSeparator",value:!1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="55" y="75" width="216" height="79" rx="6" fill="#E6E6E6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 117.466C73 116.104 73.935 115.001 75.0884 115.001H244.111C245.264 115.001 246.199 116.104 246.199 117.466C246.199 118.827 245.264 119.93 244.111 119.93H75.0884C73.935 119.93 73 118.827 73 117.466Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 133.084C73 131.722 73.9298 130.619 75.0768 130.619H201.371C202.518 130.619 203.448 131.722 203.448 133.084C203.448 134.445 202.518 135.549 201.371 135.549H75.0768C73.9298 135.549 73 134.445 73 133.084Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 97.2886C73 95.4724 74.3703 94 76.0607 94H197.098C198.789 94 200.159 95.4724 200.159 97.2886C200.159 99.1048 198.789 100.577 197.098 100.577H76.0607C74.3703 100.577 73 99.1048 73 97.2886Z" fill="#B6B6B6"/> <path d="M241.5 98H253" stroke="#959595" stroke-width="2" fill="none"/> <rect x="55" y="166" width="216" height="31" rx="6" fill="#E6E6E6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 182.289C73 180.472 74.3703 179 76.0607 179H197.098C198.789 179 200.159 180.472 200.159 182.289C200.159 184.105 198.789 185.577 197.098 185.577H76.0607C74.3703 185.577 73 184.105 73 182.289Z" fill="#B6B6B6"/> <path d="M241.5 181.75H253" stroke="#959595" stroke-width="2" fill="none"/> <path d="M247.25 187.5L247.25 176" stroke="#959595" stroke-width="2" fill="none"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"iconAlign",value:"row-reverse"},{label:"questionLeftPaddingDesktop",value:20},{label:"hquestionPaddingDesktop",value:20},{label:"vquestionPaddingDesktop",value:20},{label:"questionBottomPaddingDesktop",value:20},{label:"answerTopPadding",value:20},{label:"answerRightPadding",value:20},{label:"answerBottomPadding",value:20},{label:"answerLeftPadding",value:20},{label:"overallBorderStyle",value:"solid"},{label:"overallBorderTopWidth",value:1},{label:"overallBorderRightWidth",value:1},{label:"overallBorderBottomWidth",value:1},{label:"overallBorderLeftWidth",value:1},{label:"overallBorderTopRadius",value:5},{label:"overallBorderRightRadius",value:5},{label:"overallBorderBottomRadius",value:5},{label:"overallBorderLeftRadius",value:5},{label:"boxBgType",value:"transparent"},{label:"layout",value:"grid"},{label:"enableSeparator",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="43.75" y="84.75" width="110.5" height="103.5" rx="5.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 160.5C56.6348 159.672 57.0922 159 57.6564 159H140.344C140.908 159 141.365 159.672 141.365 160.5C141.365 161.328 140.908 162 140.344 162H57.6564C57.0922 162 56.6348 161.328 56.6348 160.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 142.5C56.6348 141.672 57.0922 141 57.6564 141H140.344C140.908 141 141.365 141.672 141.365 142.5C141.365 143.328 140.908 144 140.344 144H57.6564C57.0922 144 56.6348 143.328 56.6348 142.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 151.5C56.6348 150.672 57.0922 150 57.6564 150H140.344C140.908 150 141.365 150.672 141.365 151.5C141.365 152.328 140.908 153 140.344 153H57.6564C57.0922 153 56.6348 152.328 56.6348 151.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 133.5C56.6348 132.672 57.0922 132 57.6564 132H140.344C140.908 132 141.365 132.672 141.365 133.5C141.365 134.328 140.908 135 140.344 135H57.6564C57.0922 135 56.6348 134.328 56.6348 133.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 169.5C56.6348 168.672 57.0929 168 57.6581 168H119.89C120.455 168 120.913 168.672 120.913 169.5C120.913 170.328 120.455 171 119.89 171H57.6581C57.0929 171 56.6348 170.328 56.6348 169.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M56.6348 103.5C56.6348 102.119 57.275 101 58.0647 101H114.613C115.403 101 116.043 102.119 116.043 103.5C116.043 104.881 115.403 106 114.613 106H58.0647C57.275 106 56.6348 104.881 56.6348 103.5Z" fill="#B6B6B6"/> <path d="M43.9739 119H153.539" stroke="#959595"/> <rect x="172.75" y="84.75" width="110.5" height="103.5" rx="5.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 160.5C185.635 159.672 186.092 159 186.656 159H269.344C269.908 159 270.365 159.672 270.365 160.5C270.365 161.328 269.908 162 269.344 162H186.656C186.092 162 185.635 161.328 185.635 160.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 142.5C185.635 141.672 186.092 141 186.656 141H269.344C269.908 141 270.365 141.672 270.365 142.5C270.365 143.328 269.908 144 269.344 144H186.656C186.092 144 185.635 143.328 185.635 142.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 151.5C185.635 150.672 186.092 150 186.656 150H269.344C269.908 150 270.365 150.672 270.365 151.5C270.365 152.328 269.908 153 269.344 153H186.656C186.092 153 185.635 152.328 185.635 151.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 133.5C185.635 132.672 186.092 132 186.656 132H269.344C269.908 132 270.365 132.672 270.365 133.5C270.365 134.328 269.908 135 269.344 135H186.656C186.092 135 185.635 134.328 185.635 133.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 169.5C185.635 168.672 186.093 168 186.658 168H248.89C249.455 168 249.913 168.672 249.913 169.5C249.913 170.328 249.455 171 248.89 171H186.658C186.093 171 185.635 170.328 185.635 169.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M185.635 103.5C185.635 102.119 186.275 101 187.065 101H243.613C244.403 101 245.043 102.119 245.043 103.5C245.043 104.881 244.403 106 243.613 106H187.065C186.275 106 185.635 104.881 185.635 103.5Z" fill="#B6B6B6"/> <path d="M172.974 119H282.539" stroke="#959595"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"iconAlign",value:"row-reverse"},{label:"questionLeftPaddingDesktop",value:25},{label:"hquestionPaddingDesktop",value:25},{label:"vquestionPaddingDesktop",value:25},{label:"questionBottomPaddingDesktop",value:25},{label:"answerTopPadding",value:25},{label:"answerRightPadding",value:25},{label:"answerBottomPadding",value:25},{label:"answerLeftPadding",value:25},{label:"overallBorderStyle",value:"none"},{label:"overallBorderTopWidth",value:1},{label:"overallBorderRightWidth",value:1},{label:"overallBorderBottomWidth",value:1},{label:"overallBorderLeftWidth",value:1},{label:"overallBorderTopRadius",value:5},{label:"overallBorderRightRadius",value:5},{label:"overallBorderBottomRadius",value:5},{label:"overallBorderLeftRadius",value:5},{label:"boxBgType",value:"color"},{label:"boxBgHoverType",value:"color"},{label:"boxBgColor",value:"#F5F5F5"},{label:"layout",value:"grid"},{label:"enableSeparator",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="41" y="84" width="112" height="105" rx="6" fill="#E6E6E6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 160.5C54.6348 159.672 55.0922 159 55.6564 159H138.344C138.908 159 139.365 159.672 139.365 160.5C139.365 161.328 138.908 162 138.344 162H55.6564C55.0922 162 54.6348 161.328 54.6348 160.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 142.5C54.6348 141.672 55.0922 141 55.6564 141H138.344C138.908 141 139.365 141.672 139.365 142.5C139.365 143.328 138.908 144 138.344 144H55.6564C55.0922 144 54.6348 143.328 54.6348 142.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 151.5C54.6348 150.672 55.0922 150 55.6564 150H138.344C138.908 150 139.365 150.672 139.365 151.5C139.365 152.328 138.908 153 138.344 153H55.6564C55.0922 153 54.6348 152.328 54.6348 151.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 133.5C54.6348 132.672 55.0922 132 55.6564 132H138.344C138.908 132 139.365 132.672 139.365 133.5C139.365 134.328 138.908 135 138.344 135H55.6564C55.0922 135 54.6348 134.328 54.6348 133.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 169.5C54.6348 168.672 55.0929 168 55.6581 168H117.89C118.455 168 118.913 168.672 118.913 169.5C118.913 170.328 118.455 171 117.89 171H55.6581C55.0929 171 54.6348 170.328 54.6348 169.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M54.6348 103.5C54.6348 102.119 55.275 101 56.0647 101H112.613C113.403 101 114.043 102.119 114.043 103.5C114.043 104.881 113.403 106 112.613 106H56.0647C55.275 106 54.6348 104.881 54.6348 103.5Z" fill="#B6B6B6"/> <path d="M41.9739 119H151.539" stroke="#959595" stroke-width="0.5" fill="none"/> <rect x="173" y="84" width="112" height="105" rx="6" fill="#E6E6E6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 160.5C186.635 159.672 187.092 159 187.656 159H270.344C270.908 159 271.365 159.672 271.365 160.5C271.365 161.328 270.908 162 270.344 162H187.656C187.092 162 186.635 161.328 186.635 160.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 142.5C186.635 141.672 187.092 141 187.656 141H270.344C270.908 141 271.365 141.672 271.365 142.5C271.365 143.328 270.908 144 270.344 144H187.656C187.092 144 186.635 143.328 186.635 142.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 151.5C186.635 150.672 187.092 150 187.656 150H270.344C270.908 150 271.365 150.672 271.365 151.5C271.365 152.328 270.908 153 270.344 153H187.656C187.092 153 186.635 152.328 186.635 151.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 133.5C186.635 132.672 187.092 132 187.656 132H270.344C270.908 132 271.365 132.672 271.365 133.5C271.365 134.328 270.908 135 270.344 135H187.656C187.092 135 186.635 134.328 186.635 133.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 169.5C186.635 168.672 187.093 168 187.658 168H249.89C250.455 168 250.913 168.672 250.913 169.5C250.913 170.328 250.455 171 249.89 171H187.658C187.093 171 186.635 170.328 186.635 169.5Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M186.635 103.5C186.635 102.119 187.275 101 188.065 101H244.613C245.403 101 246.043 102.119 246.043 103.5C246.043 104.881 245.403 106 244.613 106H188.065C187.275 106 186.635 104.881 186.635 103.5Z" fill="#B6B6B6"/> <path d="M173.974 119H283.539" stroke="#959595" stroke-width="0.5" fill="none"/> </svg>'}];var w_=Object(j.applyFilters)("uag_faq_presets",S_);function k_(){return(k_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var P_,x_=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l,clientId:i}=e,{layout:o,inactiveOtherItems:s,expandFirstItem:c,enableSchemaSupport:u,rowsGap:p,rowsGapTablet:b,rowsGapMobile:d,rowsGapUnit:g,columnsGap:m,columnsGapTablet:y,columnsGapMobile:f,columnsGapUnit:h,align:v,enableSeparator:_,boxBgType:T,boxBgHoverType:C,boxBgColor:S,questionTextColor:w,questionTextBgColor:k,questionTextActiveColor:P,questionTextActiveBgColor:x,questionPaddingTypeDesktop:A,questionPaddingTypeMobile:G,questionPaddingTypeTablet:M,answerTextColor:R,answerPaddingTypeDesktop:B,answerPaddingTypeMobile:U,answerPaddingTypeTablet:E,iconColor:O,iconActiveColor:L,gapBtwIconQUestion:H,gapBtwIconQUestionTablet:j,gapBtwIconQUestionMobile:F,questionloadGoogleFonts:z,questionFontFamily:D,questionFontWeight:N,questionFontSizeType:I,questionFontSize:V,questionFontSizeMobile:W,questionFontSizeTablet:q,questionLineHeightType:Z,questionLineHeight:$,questionLineHeightMobile:Y,questionLineHeightTablet:K,answerloadGoogleFonts:J,answerFontFamily:X,answerFontWeight:Q,answerFontSizeType:ee,answerFontSize:te,answerFontSizeMobile:ae,answerFontSizeTablet:le,answerLineHeightType:ie,answerLineHeight:oe,answerLineHeightMobile:ne,answerLineHeightTablet:re,icon:se,iconActive:ce,iconAlign:ue,iconSizeType:pe,iconSizeMobile:be,iconSizeTablet:de,iconSize:me,columns:ye,tcolumns:fe,mcolumns:he,enableToggle:ve,equalHeight:_e,questionLeftPaddingTablet:Te,hquestionPaddingTablet:Se,vquestionPaddingTablet:we,questionBottomPaddingTablet:ke,questionLeftPaddingDesktop:Pe,hquestionPaddingDesktop:xe,vquestionPaddingDesktop:Ae,questionBottomPaddingDesktop:Ge,questionLeftPaddingMobile:Me,hquestionPaddingMobile:Re,vquestionPaddingMobile:Be,questionBottomPaddingMobile:Ue,headingTag:Oe,answerSpacingLink:He,questionSpacingLink:je,answerTopPadding:ze,answerRightPadding:De,answerBottomPadding:Ne,answerLeftPadding:Ie,answerTopPaddingTablet:Ve,answerRightPaddingTablet:We,answerBottomPaddingTablet:qe,answerLeftPaddingTablet:Ze,answerTopPaddingMobile:$e,answerRightPaddingMobile:Ye,answerBottomPaddingMobile:Ke,answerLeftPaddingMobile:Je,answerFontStyle:Xe,answerTransform:Qe,answerDecoration:et,questionFontStyle:tt,questionTransform:at,questionDecoration:lt,questionLetterSpacing:it,questionLetterSpacingTablet:ot,questionLetterSpacingMobile:nt,questionLetterSpacingType:rt,answerLetterSpacing:st,answerLetterSpacingTablet:ct,answerLetterSpacingMobile:ut,answerLetterSpacingType:pt,boxBgHoverColor:bt,iconBgColor:dt,iconBgSize:gt,iconBgSizeTablet:mt,iconBgSizeMobile:yt,iconBgSizeType:ft,blockTopPadding:ht,blockRightPadding:vt,blockLeftPadding:_t,blockBottomPadding:Tt,blockTopPaddingTablet:Ct,blockRightPaddingTablet:St,blockLeftPaddingTablet:wt,blockBottomPaddingTablet:kt,blockTopPaddingMobile:Pt,blockRightPaddingMobile:xt,blockLeftPaddingMobile:At,blockBottomPaddingMobile:Gt,blockPaddingUnit:Mt,blockPaddingUnitTablet:Rt,blockPaddingUnitMobile:Bt,blockPaddingLink:Ut,blockTopMargin:Et,blockRightMargin:Ot,blockLeftMargin:Lt,blockBottomMargin:Ht,blockTopMarginTablet:jt,blockRightMarginTablet:Ft,blockLeftMarginTablet:zt,blockBottomMarginTablet:Dt,blockTopMarginMobile:Nt,blockRightMarginMobile:It,blockLeftMarginMobile:Vt,blockBottomMarginMobile:Wt,blockMarginUnit:qt,blockMarginUnitTablet:Zt,blockMarginUnitMobile:$t,blockMarginLink:Yt}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0,className:"uagb__url-panel-body"},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:o,label:"layout"},onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.layout=e}),a({layout:e})},options:[{value:"accordion",label:Object(r.__)("Accordion","ultimate-addons-for-gutenberg")},{value:"grid",label:Object(r.__)("Grid","ultimate-addons-for-gutenberg")}]}),"accordion"===o&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Collapse other items","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>a({inactiveOtherItems:!s})}),!0===s&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Expand First Item","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>a({expandFirstItem:!c})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Toggle","ultimate-addons-for-gutenberg"),checked:ve,onChange:()=>a({enableToggle:!ve})})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Schema Support","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>a({enableSchemaSupport:!u})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Separator","ultimate-addons-for-gutenberg"),checked:_,onChange:()=>a({enableSeparator:!_})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Question Tag","ultimate-addons-for-gutenberg"),data:{value:Oe,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}],onChange:e=>(e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.headingTag=e}),a({headingTag:e})})(e)}),"grid"===o&&React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:ye,label:"columns",min:1,max:6},tablet:{value:fe,label:"tcolumns",min:1,max:4},mobile:{value:he,label:"mcolumns",min:1,max:2}},min:1,max:6,displayUnit:!1,setAttributes:a}),"grid"===o&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:v,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),"accordion"===o&&React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(Ur,{label:Object(r.__)("Inactive Icon","ultimate-addons-for-gutenberg"),value:se,onChange:e=>(e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.icon=e}),a({icon:e})})(e)}),React.createElement(Ur,{label:Object(r.__)("Active Icon","ultimate-addons-for-gutenberg"),value:ce,onChange:e=>(e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.iconActive=e}),a({iconActive:e})})(e)}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Icon Alignment","ultimate-addons-for-gutenberg"),data:{value:ue,label:"iconAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"row",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"row-reverse",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:w_,presetInputType:"radioImage"}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Container","ultimate-addons-for-gutenberg"),initialOpen:!0,className:"uagb__url-panel-body"},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:T,label:"boxBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===T&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:S,data:{value:S,label:"boxBgColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:C,label:"boxBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===C&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:bt,data:{value:bt,label:"boxBgHoverColor"},setAttributes:a}))}),React.createElement(tl,{label:Object(r.__)("Rows Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"rowsGap"},tablet:{value:b,label:"rowsGapTablet"},mobile:{value:d,label:"rowsGapMobile"}},min:0,max:50,unit:{value:g,label:"rowsGapUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a}),"grid"===o&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Columns Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:m,label:"columnsGap"},tablet:{value:y,label:"columnsGapTablet"},mobile:{value:f,label:"columnsGapMobile"}},min:0,max:50,unit:{value:h,label:"columnsGapUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:_e,onChange:()=>a({equalHeight:!_e})})),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement(Hi,{setAttributes:a,prefix:"overall",disabledBorderTitle:!1,attributes:t,deviceType:l,disableBottomSeparator:!0})),"accordion"!==o?"":React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:me,label:"iconSize"},tablet:{value:de,label:"iconSizeTablet"},mobile:{value:be,label:"iconSizeMobile"}},min:0,max:100,unit:{value:pe,label:"iconSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Background Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:gt,label:"iconBgSize"},tablet:{value:mt,label:"iconBgSizeTablet"},mobile:{value:yt,label:"iconBgSizeMobile"}},min:0,max:100,unit:{value:ft,label:"iconBgSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Gap between Icon and Question","ultimate-addons-for-gutenberg"),data:{desktop:{value:H,label:"gapBtwIconQUestion"},tablet:{value:j,label:"gapBtwIconQUestionTablet"},mobile:{value:F,label:"gapBtwIconQUestionMobile"}},min:-100,max:100,displayUnit:!1,setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:O,data:{value:O,label:"iconColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Active Color","ultimate-addons-for-gutenberg"),colorValue:L,data:{value:L,label:"iconActiveColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:dt,data:{value:dt,label:"iconBgColor"},setAttributes:a}),React.createElement(Hi,{setAttributes:a,prefix:"icon",disabledBorderTitle:!1,attributes:t,deviceType:l,disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Question","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:z,label:"questionloadGoogleFonts"},fontFamily:{value:D,label:"questionFontFamily"},fontWeight:{value:N,label:"questionFontWeight"},fontStyle:{value:tt,label:"questionFontStyle"},transform:{value:at,label:"questionTransform"},decoration:{value:lt,label:"questionDecoration"},fontSizeType:{value:I,label:"questionFontSizeType"},fontSize:{value:V,label:"questionFontSize"},fontSizeMobile:{value:W,label:"questionFontSizeMobile"},fontSizeTablet:{value:q,label:"questionFontSizeTablet"},lineHeightType:{value:Z,label:"questionLineHeightType"},lineHeight:{value:$,label:"questionLineHeight"},lineHeightMobile:{value:Y,label:"questionLineHeightMobile"},lineHeightTablet:{value:K,label:"questionLineHeightTablet"},letterSpacing:{value:it,label:"questionLetterSpacing"},letterSpacingTablet:{value:ot,label:"questionLetterSpacingTablet"},letterSpacingMobile:{value:nt,label:"questionLetterSpacingMobile"},letterSpacingType:{value:rt,label:"questionLetterSpacingType"}}),"accordion"===o&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active/Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:w,data:{value:w,label:"questionTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:k,data:{value:k,label:"questionTextBgColor"},setAttributes:a})),active:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:P,data:{value:P,label:"questionTextActiveColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:x,data:{value:x,label:"questionTextActiveBgColor"},setAttributes:a}))}),"grid"===o&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:w,data:{value:w,label:"questionTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:k,data:{value:k,label:"questionTextBgColor"},setAttributes:a})),React.createElement(Pl,k_({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ae,label:"vquestionPaddingDesktop"},valueRight:{value:xe,label:"hquestionPaddingDesktop"},valueBottom:{value:Ge,label:"questionBottomPaddingDesktop"},valueLeft:{value:Pe,label:"questionLeftPaddingDesktop"},valueTopTablet:{value:we,label:"vquestionPaddingTablet"},valueRightTablet:{value:Se,label:"hquestionPaddingTablet"},valueBottomTablet:{value:ke,label:"questionBottomPaddingTablet"},valueLeftTablet:{value:Te,label:"questionLeftPaddingTablet"},valueTopMobile:{value:Be,label:"vquestionPaddingMobile"},valueRightMobile:{value:Re,label:"hquestionPaddingMobile"},valueBottomMobile:{value:Ue,label:"questionBottomPaddingMobile"},valueLeftMobile:{value:Me,label:"questionLeftPaddingMobile"},unit:{value:A,label:"questionPaddingTypeDesktop"},mUnit:{value:G,label:"questionPaddingTypeMobile"},tUnit:{value:M,label:"questionPaddingTypeTablet"},attributes:t,setAttributes:a,link:{value:je,label:"questionSpacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}))),React.createElement(Fe,{title:Object(r.__)("Answer","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:R,data:{value:R,label:"answerTextColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:J,label:"answerloadGoogleFonts"},fontFamily:{value:X,label:"answerFontFamily"},fontWeight:{value:Q,label:"answerFontWeight"},fontStyle:{value:Xe,label:"answerFontStyle"},transform:{value:Qe,label:"answerTransform"},decoration:{value:et,label:"answerDecoration"},fontSizeType:{value:ee,label:"answerFontSizeType"},fontSize:{value:te,label:"answerFontSize"},fontSizeMobile:{value:ae,label:"answerFontSizeMobile"},fontSizeTablet:{value:le,label:"answerFontSizeTablet"},lineHeightType:{value:ie,label:"answerLineHeightType"},lineHeight:{value:oe,label:"answerLineHeight"},lineHeightMobile:{value:ne,label:"answerLineHeightMobile"},lineHeightTablet:{value:re,label:"answerLineHeightTablet"},letterSpacing:{value:st,label:"answerLetterSpacing"},letterSpacingTablet:{value:ct,label:"answerLetterSpacingTablet"},letterSpacingMobile:{value:ut,label:"answerLetterSpacingMobile"},letterSpacingType:{value:pt,label:"answerLetterSpacingType"}}),React.createElement(Pl,k_({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ze,label:"answerTopPadding"},valueRight:{value:De,label:"answerRightPadding"},valueBottom:{value:Ne,label:"answerBottomPadding"},valueLeft:{value:Ie,label:"answerLeftPadding"},valueTopTablet:{value:Ve,label:"answerTopPaddingTablet"},valueRightTablet:{value:We,label:"answerRightPaddingTablet"},valueBottomTablet:{value:qe,label:"answerBottomPaddingTablet"},valueLeftTablet:{value:Ze,label:"answerLeftPaddingTablet"},valueTopMobile:{value:$e,label:"answerTopPaddingMobile"},valueRightMobile:{value:Ye,label:"answerRightPaddingMobile"},valueBottomMobile:{value:Ke,label:"answerBottomPaddingMobile"},valueLeftMobile:{value:Je,label:"answerLeftPaddingMobile"},unit:{value:B,label:"answerPaddingTypeDesktop"},mUnit:{value:U,label:"answerPaddingTypeMobile"},tUnit:{value:E,label:"answerPaddingTypeTablet"},attributes:t,setAttributes:a,link:{value:He,label:"answerSpacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ht,label:"blockTopPadding"},valueRight:{value:vt,label:"blockRightPadding"},valueBottom:{value:Tt,label:"blockBottomPadding"},valueLeft:{value:_t,label:"blockLeftPadding"},valueTopTablet:{value:Ct,label:"blockTopPaddingTablet"},valueRightTablet:{value:St,label:"blockRightPaddingTablet"},valueBottomTablet:{value:kt,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:wt,label:"blockLeftPaddingTablet"},valueTopMobile:{value:Pt,label:"blockTopPaddingMobile"},valueRightMobile:{value:xt,label:"blockRightPaddingMobile"},valueBottomMobile:{value:Gt,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:At,label:"blockLeftPaddingMobile"},unit:{value:Mt,label:"blockPaddingUnit"},mUnit:{value:Bt,label:"blockPaddingUnitMobile"},tUnit:{value:Rt,label:"blockPaddingUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:Ut,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Et,label:"blockTopMargin"},valueRight:{value:Ot,label:"blockRightMargin"},valueBottom:{value:Ht,label:"blockBottomMargin"},valueLeft:{value:Lt,label:"blockLeftMargin"},valueTopTablet:{value:jt,label:"blockTopMarginTablet"},valueRightTablet:{value:Ft,label:"blockRightMarginTablet"},valueBottomTablet:{value:Dt,label:"blockBottomMarginTablet"},valueLeftTablet:{value:zt,label:"blockLeftMarginTablet"},valueTopMobile:{value:Nt,label:"blockTopMarginMobile"},valueRightMobile:{value:It,label:"blockRightMarginMobile"},valueBottomMobile:{value:Wt,label:"blockBottomMarginMobile"},valueLeftMobile:{value:Vt,label:"blockLeftMarginMobile"},unit:{value:qt,label:"blockMarginUnit"},mUnit:{value:$t,label:"blockMarginUnitMobile"},tUnit:{value:Zt,label:"blockMarginUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:Yt,label:"blockMarginLink"}}))),React.createElement(il,k_({},rl,{parentProps:e})))))}),A_=a(113),G_=0,M_={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},R_={};R_.locals=A_.a.locals||{},R_.use=function(){return G_++||(P_=ke()(A_.a,M_)),R_},R_.unuse=function(){G_>0&&!--G_&&(P_(),P_=null)};var B_=R_;const U_=["uagb/faq-child"],E_=[];var O_=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(B_.use(),()=>{B_.unuse()}),[]);const{attributes:t,deviceType:a}=e,{equalHeight:l,block_id:i}=t,o=Object(B.useMemo)(()=>{const e=[];for(let t=0;t<2;t++)e.push(["uagb/faq-child",E_[t]]);return e},[2,E_]),n=l?"uagb-faq-equal-height":"";return React.createElement("div",{className:Be()("uagb-faq__outer-wrap","uagb-editor-preview-mode-"+a.toLowerCase(),"uagb-block-"+i,"uagb-faq-icon-"+t.iconAlign,"uagb-faq-layout-"+t.layout,"uagb-faq-expand-first-"+t.expandFirstItem,"uagb-faq-inactive-other-"+t.inactiveOtherItems,n),"data-faqtoggle":t.enableToggle,role:"tablist"},React.createElement(ge.InnerBlocks,{template:o,templateLock:!1,allowedBlocks:U_,__experimentalMoverDirection:"vertical"}))}),L_=Object(B.memo)(e=>{let{attributes:t}=e;const{questionloadGoogleFonts:a,questionFontFamily:l,questionFontWeight:i,answerloadGoogleFonts:o,answerFontFamily:n,answerFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)}),H_=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{questionBottomPaddingDesktop:i,vquestionPaddingDesktop:o,questionLeftPaddingDesktop:r,hquestionPaddingDesktop:s,questionBottomPaddingTablet:c,vquestionPaddingTablet:u,questionLeftPaddingTablet:p,hquestionPaddingTablet:b,questionBottomPaddingMobile:d,vquestionPaddingMobile:g,questionLeftPaddingMobile:m,hquestionPaddingMobile:y,borderStyle:f,borderWidth:h,borderRadius:v,borderColor:_,borderHoverColor:T,UAGHideDesktop:C,UAGHideTab:S,UAGHideMob:w},clientId:k,name:P,deviceType:x}=e;Object(B.useEffect)(()=>{10===i&&10!==o&&a({questionBottomPaddingDesktop:o}),10===r&&10!==s&&a({questionLeftPaddingDesktop:s}),10===c&&10!==u&&a({questionBottomPaddingTablet:u}),10===p&&10!==b&&a({questionLeftPaddingTablet:b}),10===d&&10!==g&&a({questionBottomPaddingMobile:g}),10===m&&10!==y&&a({questionLeftPaddingMobile:y}),(h||v||_||T||f)&&ue("overall",{label:"borderWidth",value:h},{label:"borderRadius",value:v},{label:"borderColor",value:_},{label:"borderHoverColor",value:T},{label:"borderStyle",value:f},a,l)},[]);const A=["h1","h2","h3","h4","h5","h6","span","p"];Object(B.useEffect)(()=>{Object(n.select)("core/block-editor").getBlocks(k).forEach(e=>{e.attributes.headingTag=A.includes(l.headingTag)?l.headingTag:"span"}),l.vanswerPaddingDesktop&&(""===l.answerTopPadding&&a({answerTopPadding:l.vanswerPaddingDesktop}),""===l.answerBottomPadding&&a({answerBottomPadding:l.vanswerPaddingDesktop})),l.hanswerPaddingDesktop&&(""===l.answerRightPadding&&a({answerRightPadding:l.hanswerPaddingDesktop}),""===l.answerLeftPadding&&a({answerLeftPadding:l.hanswerPaddingDesktop})),l.vanswerPaddingTablet&&(""===l.answerTopPaddingTablet&&a({answerTopPaddingTablet:l.vanswerPaddingTablet}),""===l.answerBottomPaddingTablet&&a({answerBottomPaddingTablet:l.vanswerPaddingTablet})),l.hanswerPaddingTablet&&(""===l.answerRightPaddingTablet&&a({answerRightPaddingTablet:l.hanswerPaddingTablet}),""===l.answerLeftPaddingTablet&&a({answerLeftPaddingTablet:l.hanswerPaddingTablet})),l.vanswerPaddingMobile&&(""===l.answerTopPaddingMobile&&a({answerTopPaddingMobile:l.vanswerPaddingMobile}),""===l.answerBottomPaddingMobile&&a({answerBottomPaddingMobile:l.vanswerPaddingMobile})),l.hanswerPaddingMobile&&(""===l.answerRightPaddingMobile&&a({answerRightPaddingMobile:l.hanswerPaddingMobile}),""===l.answerLeftPaddingMobile&&a({answerLeftPaddingMobile:l.hanswerPaddingMobile}))},[l]);const G=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,layout:r,inactiveOtherItems:s,expandFirstItem:c,rowsGap:u,rowsGapTablet:p,rowsGapMobile:b,rowsGapUnit:d,columnsGapUnit:g,columnsGap:m,columnsGapTablet:y,columnsGapMobile:f,align:h,enableSeparator:v,boxBgType:_,boxBgHoverType:T,boxBgColor:C,boxBgHoverColor:S,overallBorderHColor:w,overallBorderColor:k,overallBorderTopWidth:P,questionTextColor:x,questionTextBgColor:A,questionTextActiveColor:G,questionTextActiveBgColor:M,questionPaddingTypeDesktop:R,questionPaddingTypeMobile:B,questionPaddingTypeTablet:U,vquestionPaddingMobile:E,vquestionPaddingTablet:O,vquestionPaddingDesktop:L,hquestionPaddingMobile:H,hquestionPaddingTablet:j,hquestionPaddingDesktop:F,answerTextColor:z,answerPaddingTypeDesktop:D,answerPaddingTypeMobile:N,answerPaddingTypeTablet:I,answerTopPadding:V,answerBottomPadding:W,answerRightPadding:q,answerLeftPadding:Z,answerTopPaddingTablet:$,answerBottomPaddingTablet:Y,answerRightPaddingTablet:K,answerLeftPaddingTablet:J,answerTopPaddingMobile:X,answerBottomPaddingMobile:Q,answerRightPaddingMobile:ee,answerLeftPaddingMobile:te,iconColor:le,iconActiveColor:ie,gapBtwIconQUestion:oe,gapBtwIconQUestionTablet:ne,gapBtwIconQUestionMobile:re,questionFontFamily:se,questionFontWeight:ce,questionFontSizeType:ue,questionFontSize:pe,questionFontSizeMobile:be,questionFontSizeTablet:de,questionLineHeightType:ge,questionLineHeight:me,questionLineHeightMobile:ye,questionLineHeightTablet:fe,answerFontFamily:he,answerFontWeight:ve,answerFontSizeType:_e,answerFontSize:Te,answerFontSizeMobile:Ce,answerFontSizeTablet:Se,answerLineHeightType:we,answerLineHeight:ke,answerLineHeightMobile:Pe,answerLineHeightTablet:xe,iconAlign:Ae,iconSize:Ge,iconSizeType:Me,iconSizeMobile:Re,iconSizeTablet:Be,columns:Ue,tcolumns:Ee,mcolumns:Oe,questionLeftPaddingTablet:Le,questionBottomPaddingTablet:He,questionLeftPaddingDesktop:je,questionBottomPaddingDesktop:Fe,questionLeftPaddingMobile:ze,questionBottomPaddingMobile:De,answerFontStyle:Ne,answerTransform:Ie,answerDecoration:Ve,questionFontStyle:We,questionTransform:qe,questionDecoration:Ze,questionLetterSpacing:$e,questionLetterSpacingTablet:Ye,questionLetterSpacingMobile:Ke,questionLetterSpacingType:Je,answerLetterSpacing:Xe,answerLetterSpacingTablet:Qe,answerLetterSpacingMobile:et,answerLetterSpacingType:tt,iconBgColor:at,iconBgSize:lt,iconBgSizeTablet:it,iconBgSizeMobile:ot,iconBgSizeType:nt,iconBorderHColor:rt,blockTopPadding:st,blockRightPadding:ct,blockLeftPadding:ut,blockBottomPadding:pt,blockTopPaddingTablet:bt,blockRightPaddingTablet:dt,blockLeftPaddingTablet:gt,blockBottomPaddingTablet:mt,blockTopPaddingMobile:yt,blockRightPaddingMobile:ft,blockLeftPaddingMobile:ht,blockBottomPaddingMobile:vt,blockPaddingUnit:_t,blockPaddingUnitTablet:Tt,blockPaddingUnitMobile:Ct,blockTopMargin:St,blockRightMargin:wt,blockLeftMargin:kt,blockBottomMargin:Pt,blockTopMarginTablet:xt,blockRightMarginTablet:At,blockLeftMarginTablet:Gt,blockBottomMarginTablet:Mt,blockTopMarginMobile:Rt,blockRightMarginMobile:Bt,blockLeftMarginMobile:Ut,blockBottomMarginMobile:Et,blockMarginUnit:Ot,blockMarginUnitTablet:Lt,blockMarginUnitMobile:Ht}=e,jt=rs(e,"overall",""),Ft=rs(e,"overall","tablet"),zt=rs(e,"overall","mobile"),Dt=rs(e,"icon",""),Nt=rs(e,"icon","tablet"),It=rs(e,"icon","mobile");let Vt={},Wt={},qt={},Zt=le,$t=ie;void 0!==le&&""!==le||(Zt=x),void 0!==ie&&""!==ie||($t=G),Vt={" .uagb-icon svg":{width:ns(Ps(Ge,"iconSize",i),Me),height:ns(Ps(Ge,"iconSize",i),Me),"font-size":ns(Ps(Ge,"iconSize",i),Me),fill:Zt}," .uagb-icon-active svg":{width:ns(Ps(Ge,"iconSize",i),Me),height:ns(Ps(Ge,"iconSize",i),Me),"font-size":ns(Ps(Ge,"iconSize",i),Me),fill:$t}," .uagb-faq-child__outer-wrap":{"margin-bottom":ns(Ps(u,"rowsGap",i),d)},".uagb-faq-layout-grid .block-editor-inner-blocks .block-editor-block-list__layout":{"grid-column-gap":ns(Ps(m,"columnsGap",i),g),"grid-row-gap":ns(Ps(u,"rowsGap",i),d)}," .uagb-faq-item":{"background-color":"color"===_?C:"transparent",...jt}," .uagb-faq-item:hover":{"background-color":"color"===T?S:"transparent","border-color":w}," .uagb-faq-item .uagb-question":{color:x}," .uagb-faq-item.uagb-faq-item-active .uagb-question":{color:G}," .uagb-faq-item:hover .uagb-question":{color:G}," .uagb-faq-item.uagb-faq-item-active .uagb-faq-questions-button":{"background-color":M}," .uagb-faq-item:hover .uagb-faq-questions-button":{"background-color":M}," .uagb-faq-questions-button":{"padding-top":ns(L,R),"padding-bottom":ns(Fe,R),"padding-right":ns(F,R),"padding-left":ns(je,R),"background-color":A}," .uagb-faq-content":{"padding-top":ns(V,D),"padding-bottom":ns(W,D),"padding-right":ns(q,D),"padding-left":ns(Z,D)},".uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap":{"margin-right":ns(Ps(oe,"gapBtwIconQUestion",i),"px")},".uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap":{"margin-left":ns(Ps(oe,"gapBtwIconQUestion",i),"px")}," .uagb-faq-item .uagb-faq-icon-wrap":{"background-color":at,padding:ns(lt,nt),...Dt}," .uagb-faq-item .uagb-faq-icon-wrap:hover":{"border-color":rt}," .uagb-faq-item:hover .uagb-icon svg":{fill:$t}," .uagb-faq-item .uagb-faq-questions-button.uagb-faq-questions":{"flex-direction":Ae}," .uagb-faq-questions-button .uagb-question":{"font-size":ns(pe,ue),"line-height":ns(me,ge),"font-family":se,"font-style":We,"text-decoration":Ze,"text-transform":qe,"font-weight":ce,"letter-spacing":ns($e,Je)}," .uagb-faq-item .uagb-faq-content":{"font-size":ns(Te,_e),"line-height":ns(ke,we),"font-family":he,"font-style":Ne,"text-decoration":Ve,"text-transform":Ie,"font-weight":ve,color:z,"letter-spacing":ns(Xe,tt)},".uagb-faq__outer-wrap":{"margin-top":ns(St,Ot),"margin-right":ns(wt,Ot),"margin-bottom":ns(Pt,Ot),"margin-left":ns(kt,Ot),"padding-top":ns(st,_t),"padding-right":ns(ct,_t),"padding-bottom":ns(pt,_t),"padding-left":ns(ut,_t)}},Wt={" .uagb-faq-questions-button":{"padding-top":ns(O,U),"padding-bottom":ns(He,U),"padding-right":ns(j,U),"padding-left":ns(Le,U)}," .uagb-faq-item .uagb-faq-icon-wrap":{padding:ns(it,nt),...Nt}," .uagb-faq-item":{...Ft}," .uagb-faq-content":{"padding-top":ns($,I),"padding-bottom":ns(Y,I),"padding-right":ns(K,I),"padding-left":ns(J,I)}," .uagb-faq-questions-button .uagb-question":{"font-size":ns(de,ue),"line-height":ns(fe,ge),"letter-spacing":ns(Ye,Je)}," .uagb-faq-item .uagb-faq-content":{"font-size":ns(Se,_e),"line-height":ns(xe,we),"letter-spacing":ns(Qe,tt)}," .uagb-icon svg":{width:ns(Be,Me),height:ns(Be,Me),"font-size":ns(Be,Me)},".uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap":{"margin-right":ns(ne,"px")},".uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap":{"margin-left":ns(ne,"px")}," .uagb-icon-active svg":{width:ns(Be,Me),height:ns(Be,Me),"font-size":ns(Be,Me)}," .uagb-faq-child__outer-wrap":{"margin-bottom":ns(p,d)},".uagb-faq-layout-grid .block-editor-inner-blocks .block-editor-block-list__layout":{"grid-column-gap":ns(y,g),"grid-row-gap":ns(p,d)},".uagb-faq__outer-wrap":{"margin-top":ns(xt,Lt),"margin-right":ns(At,Lt),"margin-bottom":ns(Mt,Lt),"margin-left":ns(Gt,Lt),"padding-top":ns(bt,Tt),"padding-right":ns(dt,Tt),"padding-bottom":ns(mt,Tt),"padding-left":ns(gt,Tt)}},qt={" .uagb-faq-item":{...zt}," .uagb-faq-item .uagb-faq-icon-wrap":{padding:ns(ot,nt),...It},".uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap":{"margin-right":ns(re,"px")},".uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap":{"margin-left":ns(re,"px")}," .uagb-faq-questions-button":{"padding-top":ns(E,B),"padding-bottom":ns(De,B),"padding-right":ns(H,B),"padding-left":ns(ze,B)}," .uagb-faq-content":{"padding-top":ns(X,N),"padding-bottom":ns(Q,N),"padding-right":ns(ee,N),"padding-left":ns(te,N)}," .uagb-faq-questions-button .uagb-question":{"font-size":ns(be,ue),"line-height":ns(ye,ge),"letter-spacing":ns(Ke,Je)}," .uagb-faq-item .uagb-faq-content":{"font-size":ns(Ce,_e),"line-height":ns(Pe,we),"letter-spacing":ns(et,tt)}," .uagb-icon svg":{width:ns(Re,Me),height:ns(Re,Me),"font-size":ns(Re,Me)}," .uagb-icon-active svg":{width:ns(Re,Me),height:ns(Re,Me),"font-size":ns(Re,Me)}," .uagb-faq-child__outer-wrap":{"margin-bottom":ns(b,d)},".uagb-faq-layout-grid .block-editor-inner-blocks .block-editor-block-list__layout":{"grid-column-gap":ns(f,g),"grid-row-gap":ns(b,d)},".uagb-faq__outer-wrap":{"margin-top":ns(Rt,Ht),"margin-right":ns(Bt,Ht),"margin-bottom":ns(Et,Ht),"margin-left":ns(Ut,Ht),"padding-top":ns(yt,Ct),"padding-right":ns(ft,Ct),"padding-bottom":ns(vt,Ct),"padding-left":ns(ht,Ct)}},"accordion"===r&&!0===s&&(Vt[" .block-editor-block-list__layout .uagb-faq-child__outer-wrap .uagb-faq-content "]={display:"none"}),"accordion"===r&&!1===s&&(Vt[" .block-editor-inner-blocks .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-faq-questions-button .uagb-icon-active"]={display:"flex"},Vt[" .block-editor-inner-blocks .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-faq-questions-button .uagb-icon"]={display:"none"}),"accordion"===r&&!0===c&&(Vt[" .block-editor-block-list__layout > div:first-child > .uagb-faq-child__outer-wrap .uagb-faq-content "]={display:"block"},Vt[" .block-editor-block-list__layout > div:first-child > .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-faq-questions-button .uagb-icon-active "]={display:"flex"},Vt[" .block-editor-block-list__layout > div:first-child > .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-faq-questions-button .uagb-icon "]={display:"none"}),!0===v&&(Vt[".uagb-faq__outer-wrap .uagb-faq-child__outer-wrap .uagb-faq-content "]={"border-style":"solid","border-top-color":k,"border-top-width":ns(P,"px")},Vt[".uagb-faq__outer-wrap .uagb-faq-child__outer-wrap .uagb-faq-content:hover "]={"border-top-color":w}),"grid"===r&&(Vt[" .block-editor-block-list__layout .uagb-faq-child__outer-wrap "]={"text-align":h},Vt[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "]={"grid-template-columns":"repeat("+Ps(Ue,"columns",i)+", 1fr)"},Wt[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "]={"grid-template-columns":"repeat("+Ps(Ee,"tcolumns",i)+", 1fr)"},qt[".uagb-faq-layout-grid .block-editor-inner-blocks > .block-editor-block-list__layout "]={"grid-template-columns":"repeat("+Ps(Oe,"mcolumns",i)+", 1fr)"});let Yt="";const Kt=".uagb-block-"+n;return Yt=ae(Vt,Kt),"tablet"!==o&&"mobile"!==o||(Yt+=ae(Wt,""+Kt,!0,"tablet"),"mobile"===o&&(Yt+=ae(qt,""+Kt,!0,"mobile"))),Yt}(l,0,P,x),[l,x]);return Object(B.useEffect)(()=>{Bs()},[x]),Object(B.useEffect)(()=>{he(e)},[C,S,w,x]),React.createElement(React.Fragment,null,React.createElement(L_,{attributes:l}),React.createElement(me,{blockStyling:G}),t&&React.createElement(x_,e),React.createElement(O_,e))});a(217);var j_={block_id:{type:"string"},layout:{type:"string",default:"accordion"},inactiveOtherItems:{type:"boolean",default:!0},expandFirstItem:{type:"boolean",default:!0},enableSchemaSupport:{type:"boolean",default:!1},align:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!0},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!0},enableSeparator:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"enable-separator"}},rowsGap:{type:"number",default:10,UAGCopyPaste:{styleType:"row-gap"}},rowsGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},rowsGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},rowsGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-type"}},columnsGap:{type:"number",default:10,UAGCopyPaste:{styleType:"column-gap"}},columnsGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},columnsGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},columnsGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-type"}},boxBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"faq-bg-type"}},boxBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"faq-bg-hover-type"}},boxBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"faq-bg-color"}},boxBgHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"faq-bg-hover-color"}},boxPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"faq-padding-type-mobile"},default:"px"},boxPaddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"faq-padding-type-tablet"}},boxPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"faq-padding-type-desktop"}},vBoxPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-mobile"}},hBoxPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-mobile"}},vBoxPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-tablet"}},hBoxPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-tablet"}},vBoxPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-vertical-padding-desktop"}},hBoxPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"faq-horizontal-padding-desktop"}},borderHoverColor:{type:"string"},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderColor:{type:"string",default:"#D2D2D2"},questionTextColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},questionTextActiveColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},questionTextBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},questionTextActiveBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},questionPaddingTypeDesktop:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-desktop"},default:"px"},questionPaddingTypeTablet:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-tablet"},default:"px"},questionPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"main-title-padding-type-mobile"},default:"px"},vquestionPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-mobile"},default:10},vquestionPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-tablet"},default:10},vquestionPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding-desktop"},default:10},hquestionPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-mobile"},default:10},hquestionPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-tablet"},default:10},hquestionPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding-desktop"},default:10},answerTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},answerPaddingTypeDesktop:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-type-desktop"}},answerPaddingTypeTablet:{type:"string",UAGCopyPaste:{styleType:"desc-padding-type-tablet"},default:"px"},answerPaddingTypeMobile:{type:"string",UAGCopyPaste:{styleType:"desc-padding-type-mobile"},default:"px"},vanswerPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-mobile"},default:10},vanswerPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-tablet"},default:10},vanswerPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding-desktop"},default:10},hanswerPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-mobile"},default:10},hanswerPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-tablet"},default:10},hanswerPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding-desktop"},default:10},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconActiveColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},gapBtwIconQUestion:{type:"number",default:10,UAGCopyPaste:{styleType:"icon-spacing"}},gapBtwIconQUestionTablet:{type:"number",UAGCopyPaste:{styleType:"icon-spacing-tablet"}},gapBtwIconQUestionMobile:{type:"number",UAGCopyPaste:{styleType:"icon-spacing-mobile"}},questionloadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},answerloadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"desc-load-google-fonts"},default:!1},questionFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},questionFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},questionFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},questionTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},questionDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},questionFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},questionFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},questionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},questionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},questionLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},questionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},questionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},questionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},answerFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},answerFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},answerFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"},default:"normal"},answerTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},answerDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},answerFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},answerFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},answerFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},answerFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},answerLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},answerLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},answerLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},answerLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},icon:{type:"string",default:"plus"},iconActive:{type:"string",default:"minus"},iconAlign:{type:"string",default:"row",UAGCopyPaste:{styleType:"icon-align"}},iconSize:{type:"number",default:12,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size-tablet"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size-mobile"}},iconSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-size-type"}},iconBgSize:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size"}},iconBgSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-tablet"}},iconBgSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-bg-size-mobile"}},iconBgSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-bg-size-type"}},columns:{type:"number",default:2,UAGCopyPaste:{styleType:"column-count"}},tcolumns:{type:"number",default:2,UAGCopyPaste:{styleType:"column-count-tablet"}},mcolumns:{type:"number",default:1,UAGCopyPaste:{styleType:"column-count-mobile"}},schema:{type:"string",default:""},enableToggle:{type:"boolean",default:!0},equalHeight:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"equal-height"}},questionLeftPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},questionBottomPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},questionLeftPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-desktop"}},questionBottomPaddingDesktop:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-desktop"}},questionLeftPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},questionBottomPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},headingTag:{type:"html",selector:"span,p,h1,h2,h3,h4,h5,h6",default:"span"},questionSpacingLink:{type:"boolean",default:!1},answerSpacingLink:{type:"boolean",default:!1},answerTopPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding"}},answerRightPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding"}},answerBottomPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding"}},answerLeftPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding"}},answerTopPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},answerRightPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},answerBottomPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},answerLeftPaddingTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},answerTopPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},answerRightPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},answerBottomPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},answerLeftPaddingMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},isPreview:{type:"boolean",default:!1},...ce("overall"),questionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},questionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},questionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},questionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},answerLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},answerLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},answerLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},answerLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},iconBgColor:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"}},...ce("icon")};const F_={block_id:{type:"string"},layout:{type:"string",default:"accordion"},inactiveOtherItems:{type:"boolean",default:!0},expandFirstItem:{type:"boolean",default:!1},enableSchemaSupport:{type:"boolean",default:!1},align:{type:"string",default:"left"},enableSeparator:{type:"boolean",default:!1},rowsGap:{type:"number",default:10},columnsGap:{type:"number",default:10},boxBgColor:{type:"string",default:"#FFFFFF"},boxPaddingTypeMobile:{type:"string",default:"px"},boxPaddingTypeTablet:{type:"string",default:"px"},boxPaddingTypeDesktop:{type:"string",default:"px"},vBoxPaddingMobile:{type:"number",default:10},hBoxPaddingMobile:{type:"number",default:10},vBoxPaddingTablet:{type:"number",default:10},hBoxPaddingTablet:{type:"number",default:10},vBoxPaddingDesktop:{type:"number",default:10},hBoxPaddingDesktop:{type:"number",default:10},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number",default:2},borderColor:{type:"string",default:"#D2D2D2"},questionTextColor:{type:"string",default:"#313131"},questionTextActiveColor:{type:"string",default:"#656565"},questionPaddingTypeDesktop:{type:"string",default:"px"},vquestionPaddingMobile:{type:"number",default:10},vquestionPaddingTablet:{type:"number",default:10},vquestionPaddingDesktop:{type:"number",default:10},hquestionPaddingMobile:{type:"number",default:10},hquestionPaddingTablet:{type:"number",default:10},hquestionPaddingDesktop:{type:"number",default:10},answerTextColor:{type:"string",default:"#313131"},answerPaddingTypeDesktop:{type:"string",default:"px"},vanswerPaddingMobile:{type:"number",default:10},vanswerPaddingTablet:{type:"number",default:10},vanswerPaddingDesktop:{type:"number",default:10},hanswerPaddingMobile:{type:"number",default:10},hanswerPaddingTablet:{type:"number",default:10},hanswerPaddingDesktop:{type:"number",default:10},iconColor:{type:"string"},iconActiveColor:{type:"string"},gapBtwIconQUestion:{type:"number",default:10},questionloadGoogleFonts:{type:"boolean",default:!1},answerloadGoogleFonts:{type:"boolean",default:!1},questionFontFamily:{type:"string",default:"Default"},questionFontWeight:{type:"string"},questionFontSubset:{type:"string"},questionFontSize:{type:"number"},questionFontSizeType:{type:"string",default:"px"},questionFontSizeTablet:{type:"number"},questionFontSizeMobile:{type:"number"},questionLineHeight:{type:"number"},questionLineHeightType:{type:"string",default:"em"},questionLineHeightTablet:{type:"number"},questionLineHeightMobile:{type:"number"},answerFontFamily:{type:"string",default:"Default"},answerFontWeight:{type:"string"},answerFontSubset:{type:"string"},answerFontSize:{type:"number"},answerFontSizeType:{type:"string",default:"px"},answerFontSizeTablet:{type:"number"},answerFontSizeMobile:{type:"number"},answerLineHeight:{type:"number"},answerLineHeightType:{type:"string",default:"em"},answerLineHeightTablet:{type:"number"},answerLineHeightMobile:{type:"number"},icon:{type:"string",default:"fas fa-plus"},iconActive:{type:"string",default:"fas fa-minus"},iconAlign:{type:"string",default:"row"},iconSize:{type:"number",default:12},iconSizeTablet:{type:"number",default:12},iconSizeMobile:{type:"number",default:12},iconSizeType:{type:"string",default:"px"},columns:{type:"number",default:2},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},schema:{type:"string",default:""},enableToggle:{type:"boolean",default:!0},equalHeight:{type:"boolean",default:!0},questionLeftPaddingTablet:{type:"number",default:10},questionBottomPaddingTablet:{type:"number",default:10},questionLeftPaddingDesktop:{type:"number",default:10},questionBottomPaddingDesktop:{type:"number",default:10},questionLeftPaddingMobile:{type:"number",default:10},questionBottomPaddingMobile:{type:"number",default:10},headingTag:{type:"html",selector:"span,p,h1,h2,h3,h4,h5,h6",default:"span"},rowsGapUnit:{type:"string",default:"px"},...ce("overall")};var z_=[{attributes:F_,save(e){const{className:t}=e,{block_id:a,schema:l,enableSchemaSupport:i,equalHeight:o}=e.attributes,n=o?"uagb-faq-equal-height":"";return React.createElement("div",{className:Be()(t,"uagb-faq__outer-wrap","uagb-block-"+a,"uagb-faq-icon-"+e.attributes.iconAlign,"uagb-faq-layout-"+e.attributes.layout,"uagb-faq-expand-first-"+e.attributes.expandFirstItem,"uagb-faq-inactive-other-"+e.attributes.inactiveOtherItems,n),"data-faqtoggle":e.attributes.enableToggle},!0===i?React.createElement("script",{type:"application/ld+json"},l):"",React.createElement("div",{className:"uagb-faq__wrap uagb-buttons-layout-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:F_,save(e){const{className:t}=e,{block_id:a,schema:l,enableSchemaSupport:i,equalHeight:o}=e.attributes,n=o?"uagb-faq-equal-height":"";return React.createElement("div",{className:Be()(t,"uagb-faq__outer-wrap","uagb-block-"+a,"uagb-faq-icon-"+e.attributes.iconAlign,"uagb-faq-layout-"+e.attributes.layout,"uagb-faq-expand-first-"+e.attributes.expandFirstItem,"uagb-faq-inactive-other-"+e.attributes.inactiveOtherItems,n),"data-faqtoggle":e.attributes.enableToggle,role:"tablist"},!0===i?React.createElement("script",{type:"application/ld+json"},l):"",React.createElement("div",{className:"uagb-faq__wrap uagb-buttons-layout-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:F_,save(e){const{className:t}=e,{block_id:a,schema:l,enableSchemaSupport:i,equalHeight:o}=e.attributes,n=o?"uagb-faq-equal-height":"";return React.createElement("div",{className:Be()(t,"uagb-faq__outer-wrap","uagb-block-"+a,"uagb-faq-icon-"+e.attributes.iconAlign,"uagb-faq-layout-"+e.attributes.layout,"uagb-faq-expand-first-"+e.attributes.expandFirstItem,"uagb-faq-inactive-other-"+e.attributes.inactiveOtherItems,n),"data-faqtoggle":e.attributes.enableToggle,role:"tablist"},!0===i?React.createElement("script",{type:"application/ld+json"},l):"",React.createElement("div",{className:"uagb-faq__wrap uagb-buttons-layout-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:j_,save:function(e){const{className:t}=e,{block_id:a,schema:l,enableSchemaSupport:i,equalHeight:o}=e.attributes,n=o?"uagb-faq-equal-height":"";return React.createElement("div",{className:Be()(t,"uagb-faq__outer-wrap","uagb-block-"+a,"uagb-faq-icon-"+e.attributes.iconAlign,"uagb-faq-layout-"+e.attributes.layout,"uagb-faq-expand-first-"+e.attributes.expandFirstItem,"uagb-faq-inactive-other-"+e.attributes.inactiveOtherItems,"uagb-faq__wrap","uagb-buttons-layout-wrap",n),"data-faqtoggle":e.attributes.enableToggle,role:"tablist"},!0===i?React.createElement("script",{type:"application/ld+json"},l):"",React.createElement(ge.InnerBlocks.Content,null))}}];const D_=Object(L.compose)(Object(n.withSelect)(e=>({selected:e("core/block-editor").getSelectedBlock()}))),N_=Object(L.createHigherOrderComponent)(e=>D_(t=>{let{...a}=t;return React.createElement(e,a)}),"withFaq");let I_={};function V_(){return(V_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}I_=Object(j.applyFilters)("uagb/faq",ws(I_)),Object(be.registerBlockType)("uagb/faq",{...I_,title:Object(r.__)("FAQ","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add accordions/FAQ schema to your page.","ultimate-addons-for-gutenberg"),icon:se.faq,keywords:[Object(r.__)("faq","ultimate-addons-for-gutenberg"),Object(r.__)("schema","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg"),Object(r.__)("accordion","ultimate-addons-for-gutenberg")],attributes:$t,category:uagb_blocks_info.category,deprecated:z_,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"faq"}):React.createElement(H_,e),supports:{anchor:!0,html:!1},save:function(){return React.createElement(ge.InnerBlocks.Content,null)}}),Object(j.addFilter)("editor.BlockEdit","uagb/faq",N_);var W_,q_=Object(B.memo)(e=>React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("For the styling options please select the Parent Block.","ultimate-addons-for-gutenberg")))),React.createElement(il,V_({},rl,{parentProps:e})))))),Z_=a(114),$_=0,Y_={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},K_={};K_.locals=Z_.a.locals||{},K_.use=function(){return $_++||(W_=ke()(Z_.a,Y_)),K_},K_.unuse=function(){$_>0&&!--$_&&(W_(),W_=null)};var J_=K_,X_=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(J_.use(),()=>{J_.unuse()}),[]);const{attributes:t,setAttributes:a,state:l,isSelected:i}=e,{question:o,answer:n,icon:s,iconActive:c,layout:u,headingTag:p,block_id:b}=t,d=["h1","h2","h3","h4","h5","h6","span","p"].includes(p)?p:"span";return React.createElement("div",{className:Be()("uagb-faq-child__outer-wrap","uagb-faq-item","uagb-block-"+b,i&&!1!==l.isFocused?"uagb-faq__active":""),role:"tab",tabIndex:"0"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-faq-questions-button uagb-faq-questions"},"accordion"===u&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-icon uagb-faq-icon-wrap"},Ce(s,a)),React.createElement("span",{className:"uagb-icon-active uagb-faq-icon-wrap"},Ce(c,a))),React.createElement(ge.RichText,{tagName:"span"!==d?d:"div",placeholder:Object(r.__)("Question","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({question:e}),className:"uagb-question",multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"]})),React.createElement(ge.RichText,{className:"uagb-faq-content",tagName:"p",placeholder:Object(r.__)("Answer","ultimate-addons-for-gutenberg"),value:n,onChange:e=>a({answer:e}),multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough","core/link"]})))});function Q_(){return(Q_=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}let eT;var tT=Object(L.compose)(vs)(e=>{const{isSelected:t,attributes:a}=e,[l,i]=Object(B.useState)({isFocused:"false"});return Object(B.useEffect)(()=>{eT=t},[]),Object(B.useEffect)(()=>{!t&&eT&&l.isFocused&&i({isFocused:"false"}),t&&!eT&&i({isFocused:!0}),eT=t},[a]),React.createElement(React.Fragment,null,t&&React.createElement(q_,e),React.createElement(X_,Q_({},e,{state:l})))});a(218);var aT=[{attributes:Yt,save(e){const{className:t}=e,{block_id:a,question:l,answer:i,icon:o,iconActive:n,layout:r}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-faq-child__outer-wrap","uagb-block-"+a)},React.createElement("div",{className:"uagb-faq-child__wrapper"},React.createElement("div",{className:"uagb-faq-item"},React.createElement("div",{className:"uagb-faq-questions-button uagb-faq-questions"},"accordion"===r&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-icon uagb-faq-icon-wrap"},Wm(o)),React.createElement("span",{className:"uagb-icon-active uagb-faq-icon-wrap"},Wm(n))),React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-question"})),React.createElement("div",{className:"uagb-faq-content"},React.createElement("span",null,React.createElement(ge.RichText.Content,{tagName:"p",value:i}))))))}},{attributes:Yt,save(e){const{className:t}=e,{block_id:a,question:l,answer:i,icon:o,iconActive:n,layout:r,headingTag:s}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-faq-child__outer-wrap","uagb-block-"+a)},React.createElement("div",{className:"uagb-faq-child__wrapper"},React.createElement("div",{className:"uagb-faq-item",role:"tab",tabIndex:"0"},React.createElement("div",{className:"uagb-faq-questions-button uagb-faq-questions"},"accordion"===r&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-icon uagb-faq-icon-wrap"},Wm(o)),React.createElement("span",{className:"uagb-icon-active uagb-faq-icon-wrap"},Wm(n))),React.createElement(ge.RichText.Content,{tagName:s,value:l,className:"uagb-question"})),React.createElement("div",{className:"uagb-faq-content"},React.createElement("span",null,React.createElement(ge.RichText.Content,{tagName:"p",value:i}))))))}},{attributes:Yt,save:function(e){const{className:t}=e,{block_id:a,question:l,answer:i,icon:o,iconActive:n,layout:r,headingTag:s}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-faq-child__outer-wrap","uagb-faq-item","uagb-block-"+a),role:"tab",tabIndex:"0"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-faq-questions-button uagb-faq-questions"},"accordion"===r&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-icon uagb-faq-icon-wrap"},Ce(o)),React.createElement("span",{className:"uagb-icon-active uagb-faq-icon-wrap"},Ce(n))),React.createElement(ge.RichText.Content,{tagName:s,value:l,className:"uagb-question"})),React.createElement(ge.RichText.Content,{className:"uagb-faq-content",tagName:"p",value:i})))}},{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},question:{type:"html",default:Object(r.__)("What is FAQ?","ultimate-addons-for-gutenberg")},answer:{type:"html",default:Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.","ultimate-addons-for-gutenberg")},icon:{type:"html",default:"plus"},iconActive:{type:"html",default:"minus"},layout:{type:"string",default:"accordion"},headingTag:{type:"html",selector:"span,p,h1,h2,h3,h4,h5,h6",default:"span"}},save:function(e){const{className:t}=e,{block_id:a,question:l,answer:i,icon:o,iconActive:n,layout:r,headingTag:s}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-faq-child__outer-wrap","uagb-faq-item","uagb-block-"+a),role:"tab",tabIndex:"0"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-faq-questions-button uagb-faq-questions"},"accordion"===r&&React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-icon uagb-faq-icon-wrap"},Ce(o)),React.createElement("span",{className:"uagb-icon-active uagb-faq-icon-wrap"},Ce(n))),React.createElement(ge.RichText.Content,{tagName:s,value:l,className:"uagb-question"})),React.createElement("div",{className:"uagb-faq-content"},React.createElement(ge.RichText.Content,{tagName:"p",value:i}))))}}];let lT={};lT=Object(j.applyFilters)("uagb/faq-child",ws(lT)),Object(be.registerBlockType)("uagb/faq-child",{...lT,title:Object(r.__)("FAQ Child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a frequently asked question/accordion to display information.","ultimate-addons-for-gutenberg"),icon:se.faq_child,parent:["uagb/faq"],attributes:Yt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"faq-child",isChildren:!0}):React.createElement(tT,e),supports:{anchor:!0,html:!1},save:()=>null,deprecated:aT});const iT=[{defaultAttributes:oa},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"bgColor",value:"#ffffff"},{label:"fieldBorderTopLeftRadius",value:2},{label:"fieldBorderTopRightRadius",value:2},{label:"fieldBorderBottomLeftRadius",value:2},{label:"fieldBorderBottomRightRadius",value:2},{label:"paddingFieldTop",value:12},{label:"paddingFieldRight",value:12},{label:"paddingFieldBottom",value:12},{label:"paddingFieldLeft",value:12},{label:"formStyle",value:"boxed"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M81 69.2593C81 66.9069 82.7626 65 84.9368 65H240.619C242.793 65 244.556 66.9069 244.556 69.2593C244.556 71.6116 242.793 73.5185 240.619 73.5185H84.9368C82.7626 73.5185 81 71.6116 81 69.2593Z" stroke="#959595" fill="none" stroke-linecap="round"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M81 93.1113C81 90.759 82.7626 88.8521 84.9368 88.8521H240.619C242.793 88.8521 244.556 90.759 244.556 93.1113C244.556 95.4636 242.793 97.3706 240.619 97.3706H84.9368C82.7626 97.3706 81 95.4636 81 93.1113Z" stroke="#959595" fill="none" stroke-linecap="round"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M81 116.963C81 114.611 82.7626 112.704 84.9368 112.704H240.619C242.793 112.704 244.556 114.611 244.556 116.963C244.556 119.315 242.793 121.222 240.619 121.222H84.9368C82.7626 121.222 81 119.315 81 116.963Z" stroke="#959595" fill="none" stroke-linecap="round"/> <path d="M87.1429 137.056H238.413C241.517 137.056 244.056 139.64 244.056 142.854V182.22C244.056 185.434 241.517 188.019 238.413 188.019H87.1429C84.0381 188.019 81.5 185.434 81.5 182.22V142.854C81.5 139.64 84.0381 137.056 87.1429 137.056Z" stroke="#959595" fill="none"/> <path d="M81 204.592C81 202.711 82.5255 201.185 84.4074 201.185H123.407C125.289 201.185 126.815 202.711 126.815 204.592V204.592C126.815 206.474 125.289 208 123.407 208H84.4074C82.5256 208 81 206.474 81 204.592V204.592Z" fill="#B6B6B6"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"bgColor",value:"#ffffff"},{label:"fieldBorderTopLeftRadius",value:3},{label:"fieldBorderTopRightRadius",value:3},{label:"fieldBorderBottomLeftRadius",value:3},{label:"fieldBorderBottomRightRadius",value:3},{label:"paddingFieldTop",value:0},{label:"paddingFieldRight",value:10},{label:"paddingFieldBottom",value:10},{label:"paddingFieldLeft",value:0},{label:"formStyle",value:"underlined"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path d="M87.1429 135.5H238.413C241.517 135.5 244.056 138.084 244.056 141.299V180.664C244.056 183.879 241.517 186.463 238.413 186.463H87.1429C84.0381 186.463 81.5 183.879 81.5 180.664V141.299C81.5 138.084 84.0381 135.5 87.1429 135.5Z" stroke="#959595" fill="none"/> <path d="M81 203.037C81 201.155 82.5255 199.629 84.4074 199.629H123.407C125.289 199.629 126.815 201.155 126.815 203.037V203.037C126.815 204.919 125.289 206.444 123.407 206.444H84.4074C82.5256 206.444 81 204.919 81 203.037V203.037Z" fill="#B6B6B6"/> <path d="M81 66H245" stroke="#D2D2D2" stroke-width="3" fill="none" stroke-linecap="round"/> <path d="M81 89H245" stroke="#D2D2D2" stroke-width="3" fill="none" stroke-linecap="round"/> <path d="M81 112H245" stroke="#D2D2D2" stroke-width="3" fill="none" stroke-linecap="round"/> </svg>'}];var oT=Object(j.applyFilters)("uag_forms_presets",iT);const nT=[{defaultAttributes:oa},{defaultPresetAttributes:[{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderTopWidth"},{label:"btnBorderLeftWidth"},{label:"btnBorderRightWidth"},{label:"btnBorderBottomWidth"},{label:"submitBgType"},{label:"submitBgColorHover"},{label:"submitColor"},{label:"submitColorHover"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderBottomWidth",value:1},{label:"submitBgType",value:"transparent"},{label:"submitBgColorHover",value:"#3a3a3a"},{label:"submitColor",value:"#0170b9"},{label:"submitColorHover",value:"#ffffff"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderBottomWidth",value:1},{label:"submitBgType",value:"transparent"},{label:"submitBgColorHover",value:"#3a3a3a"},{label:"submitColor",value:"#0170b9"},{label:"submitColorHover",value:"#ffffff"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1},{label:"btnBorderBottomWidth",value:1},{label:"submitBgType",value:"transparent"},{label:"submitBgColorHover",value:"#3a3a3a"},{label:"submitColor",value:"#0170b9"},{label:"submitColorHover",value:"#ffffff"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'}];function rT(){return(rT=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var sT=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{formPaddingTop:i,formPaddingRight:o,formPaddingBottom:n,formPaddingLeft:s,formPaddingTopTab:c,formPaddingRightTab:u,formPaddingBottomTab:p,formPaddingLeftTab:b,formPaddingTopMob:d,formPaddingRightMob:g,formPaddingBottomMob:m,formPaddingLeftMob:y,formPaddingUnit:f,formPaddingUnitTab:h,formPaddingUnitMob:v,formPaddingLink:_,formLabel:T,buttonAlign:C,buttonAlignTablet:S,buttonAlignMobile:w,buttonSize:k,confirmationType:P,confirmationMessage:x,failedMessage:A,confirmationUrl:G,afterSubmitToEmail:M,afterSubmitCcEmail:R,afterSubmitBccEmail:B,afterSubmitEmailSubject:U,submitColor:E,submitColorHover:O,submitBgType:L,submitBgHoverType:H,submitBgColor:j,submitBgColorHover:F,submitTextloadGoogleFonts:z,submitTextFontFamily:D,submitTextFontWeight:N,submitTextFontSize:I,submitTextFontSizeType:V,submitTextFontSizeTablet:W,submitTextFontSizeMobile:q,submitTextLineHeightType:Z,submitTextLineHeight:$,submitTextLineHeightTablet:Y,submitTextLineHeightMobile:K,inheritFromTheme:J,submitButtonType:X,labelloadGoogleFonts:Q,labelFontFamily:ee,labelFontWeight:te,labelFontSize:ae,labelFontSizeType:le,labelFontSizeTablet:ie,labelFontSizeMobile:oe,labelLineHeightType:ne,labelLineHeight:re,labelLineHeightTablet:se,labelLineHeightMobile:ce,inputloadGoogleFonts:ue,inputFontFamily:pe,inputFontWeight:be,inputFontSize:de,inputFontSizeType:me,inputFontSizeTablet:ye,inputFontSizeMobile:fe,inputLineHeightType:he,inputLineHeight:ve,inputLineHeightTablet:_e,inputLineHeightMobile:Te,toggleSize:Se,toggleSizeTablet:we,toggleSizeMobile:ke,toggleWidthSize:Pe,toggleWidthSizeTablet:xe,toggleWidthSizeMobile:Ae,toggleColor:Ge,toggleActiveColor:Me,toggleDotColor:Re,toggleDotActiveColor:Be,labelColor:Ue,labelHoverColor:Oe,inputColor:He,bgColor:je,bgHoverColor:ze,bgActiveColor:De,inputplaceholderColor:Ne,inputplaceholderHoverColor:Ie,inputplaceholderActiveColor:Ve,fieldGap:We,fieldGapTablet:qe,fieldGapMobile:Ze,formStyle:$e,overallAlignment:Ye,overallAlignmentTablet:Ke,overallAlignmentMobile:Je,labelAlignment:Xe,labelAlignmentTablet:Qe,labelAlignmentMobile:et,reCaptchaEnable:tt,reCaptchaType:at,successMessageTextColor:lt,successMessageBGColor:it,failedMessageTextColor:ot,failedMessageBGColor:nt,paddingBtnTop:rt,paddingBtnRight:st,paddingBtnBottom:ct,paddingBtnLeft:ut,paddingBtnTopTablet:pt,paddingBtnRightTablet:bt,paddingBtnBottomTablet:dt,paddingBtnLeftTablet:gt,paddingBtnTopMobile:mt,paddingBtnRightMobile:yt,paddingBtnBottomMobile:ft,paddingBtnLeftMobile:ht,paddingBtnUnit:vt,mobilePaddingBtnUnit:_t,tabletPaddingBtnUnit:Tt,paddingspacingLink:Ct,submitTextTransform:St,submitTextDecoration:wt,labelTransform:kt,labelDecoration:Pt,inputTransform:xt,inputDecoration:At,fieldGapType:Gt,paddingFieldTop:Mt,paddingFieldRight:Rt,paddingFieldBottom:Bt,paddingFieldLeft:Ut,paddingFieldTopTablet:Et,paddingFieldRightTablet:Ot,paddingFieldBottomTablet:Lt,paddingFieldLeftTablet:Ht,paddingFieldTopMobile:jt,paddingFieldRightMobile:Ft,paddingFieldBottomMobile:zt,paddingFieldLeftMobile:Dt,paddingFieldUnit:Nt,paddingFieldUnitmobile:It,paddingFieldUnitTablet:Vt,paddingFieldLink:Wt,toggleSizeType:qt,submitTextFontStyle:Zt,labelFontStyle:$t,inputFontStyle:Yt,hidereCaptchaBatch:Kt,labelGap:Jt,labelGapTablet:Xt,labelGapMobile:Qt,labelGapUnit:ea,displayLabels:ta,labelLetterSpacing:aa,labelLetterSpacingTablet:la,labelLetterSpacingMobile:ia,labelLetterSpacingType:oa,inputLetterSpacing:na,inputLetterSpacingTablet:ra,inputLetterSpacingMobile:sa,inputLetterSpacingType:ca,submitTextLetterSpacing:ua,submitTextLetterSpacingTablet:pa,submitTextLetterSpacingMobile:ba,submitTextLetterSpacingType:da,gradientValue:ga,gradientHValue:ma,gradientHColor1:ya,selectHGradient:fa,gradientHColor2:ha,gradientHLocation1:va,gradientHLocationTablet1:_a,gradientHLocationMobile1:Ta,gradientHLocation2:Ca,gradientHLocationTablet2:Sa,gradientHLocationMobile2:wa,gradientHType:ka,gradientHAngle:Pa,gradientHAngleTablet:xa,gradientHAngleMobile:Aa,gradientColor1:Ga,gradientColor2:Ma,gradientLocation1:Ra,gradientLocationTablet1:Ba,gradientLocationMobile1:Ua,gradientLocation2:Ea,gradientLocationTablet2:Oa,gradientLocationMobile2:La,gradientType:Ha,gradientAngle:ja,gradientAngleTablet:Fa,gradientAngleMobile:za,selectGradient:Da}=t,Ia=uagb_blocks_info.current_theme;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0,className:"uagb__url-panel-body"},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Labels","ultimate-addons-for-gutenberg"),checked:ta,onChange:()=>a({displayLabels:!ta})}),React.createElement(Fs,{label:Object(r.__)("Hidden Field Label","ultimate-addons-for-gutenberg"),value:T,data:{value:T,label:"formLabel"},setAttributes:a,onChange:e=>a({formLabel:e})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:$e,label:"formStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"boxed",label:"Boxed"},{value:"underlined",label:"Underlined"}],showIcons:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Label Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:Xe,label:"labelAlignment"},tablet:{value:Qe,label:"labelAlignmentTablet"},mobile:{value:et,label:"labelAlignmentMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Placeholder Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ye,label:"overallAlignment"},tablet:{value:Ke,label:"overallAlignmentTablet"},mobile:{value:Je,label:"overallAlignmentMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Confirmation Type","ultimate-addons-for-gutenberg"),data:{value:P,label:"confirmationType"},className:"uagb-multi-button-alignment-control",options:[{value:"message",label:"Message"},{value:"url",label:"URL Text"}],showIcons:!1}),"message"===P&&React.createElement(React.Fragment,null,React.createElement(Fs,{variant:"textarea",setAttributes:a,label:Object(r.__)("Success Message Text","ultimate-addons-for-gutenberg"),help:Object(r.__)("Enter a message you want to display after successfull form submission","ultimate-addons-for-gutenberg"),value:x,data:{value:x,label:"confirmationMessage"},onChange:e=>a({confirmationMessage:e})}),React.createElement(Fs,{variant:"textarea",setAttributes:a,label:Object(r.__)("Error Message Text","ultimate-addons-for-gutenberg"),help:Object(r.__)("Enter a message you want to display after unsuccessfull form submission","ultimate-addons-for-gutenberg"),value:A,data:{value:A,label:"failedMessage"},onChange:e=>a({failedMessage:e})})),"url"===P&&React.createElement(Fs,{label:Object(r.__)("Success Redirect URL","ultimate-addons-for-gutenberg"),help:Object(r.__)("Enter a URL you want to redirect your page to after form Submission","ultimate-addons-for-gutenberg"),value:G,data:{value:G,label:"confirmationUrl"},setAttributes:a,onChange:e=>a({confirmationUrl:e})})),React.createElement(Fe,{title:Object(r.__)("Submit Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg"),checked:J,onChange:()=>a({inheritFromTheme:!J})}),J&&"Astra"===Ia&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:X,label:"submitButtonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:C,label:"buttonAlign"},tablet:{value:S,label:"buttonAlignTablet"},mobile:{value:w,label:"buttonAlignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),!J&&React.createElement(zr,{setAttributes:a,presets:nT,presetInputType:"radioImage"})),React.createElement(Fe,{title:Object(r.__)("Actions","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement("p",{className:"uagb-form-notice"},Object(r.__)("Note: Enter an e-mail address to receive submissions. Defaults to the site e-mail address.","ultimate-addons-for-gutenberg")),React.createElement(Ui,{tabs:[{name:"to",title:Object(r.__)("To","ultimate-addons-for-gutenberg")},{name:"cc",title:Object(r.__)("CC","ultimate-addons-for-gutenberg")},{name:"bcc",title:Object(r.__)("BCC","ultimate-addons-for-gutenberg")}],to:React.createElement(Fs,{label:Object(r.__)("Email Address","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Email","ultimate-addons-for-gutenberg"),value:M,data:{value:M,label:"afterSubmitToEmail"},setAttributes:a,onChange:e=>a({afterSubmitToEmail:e})}),cc:React.createElement(Fs,{label:Object(r.__)("Email Address","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Email","ultimate-addons-for-gutenberg"),value:R,data:{value:R,label:"afterSubmitCcEmail"},setAttributes:a,onChange:e=>a({afterSubmitCcEmail:e})}),bcc:React.createElement(Fs,{label:Object(r.__)("Email Address","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Email","ultimate-addons-for-gutenberg"),value:B,data:{value:B,label:"afterSubmitBccEmail"},setAttributes:a,onChange:e=>a({afterSubmitBccEmail:e})}),disableBottomSeparator:!1}),React.createElement(Fs,{label:Object(r.__)("Subject","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Subject","ultimate-addons-for-gutenberg"),value:U,data:{value:U,label:"afterSubmitEmailSubject"},setAttributes:a,onChange:e=>a({afterSubmitEmailSubject:e})})),React.createElement(Fe,{title:Object(r.__)("Google reCAPTCHA","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"uagb-form-notice"},Object(r.__)("P.S. Note that If you are using two forms on the same page with the different reCAPTCHA versions (V2 checkbox and V3), it will create conflicts between the versions. Kindly avoid using different versions on same page. ","ultimate-addons-for-gutenberg")),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable reCAPTCHA ","ultimate-addons-for-gutenberg"),checked:tt,onChange:()=>a({reCaptchaEnable:!tt})}),tt&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-form-notice"},Object(r.__)("Please configure the Google reCAPTCHA Site & Secret key from","ultimate-addons-for-gutenberg"),React.createElement("a",{target:"_blank",href:uagb_blocks_info.uagb_home_url+"/wp-admin/admin.php?page=spectra&path=settings&settings=block-settings",rel:"noreferrer"},Object(r.__)("here.","ultimate-addons-for-gutenberg"))),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Select Version","ultimate-addons-for-gutenberg"),data:{value:at,label:"reCaptchaType"},className:"uagb-multi-button-alignment-control",options:[{value:"v2",label:"V2",tooltip:Object(r.__)("V2","ultimate-addons-for-gutenberg")},{value:"v3",label:"V3",tooltip:Object(r.__)("V3","ultimate-addons-for-gutenberg")}],showIcons:!1})),tt&&"v3"===at&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide reCAPTCHA Badge","ultimate-addons-for-gutenberg"),checked:Kt,onChange:()=>a({hidereCaptchaBatch:!Kt})})),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:oT,presetInputType:"radioImage"}))),React.createElement(il,nl,ta&&React.createElement(Fe,{title:Object(r.__)("Label","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ue||"",data:{value:Ue,label:"labelColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Oe||"",data:{value:Oe,label:"labelHoverColor"},setAttributes:a}))}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Q,label:"labelloadGoogleFonts"},fontFamily:{value:ee,label:"labelFontFamily"},fontWeight:{value:te,label:"labelFontWeight"},fontStyle:{value:$t,label:"labelFontStyle"},fontSizeType:{value:le,label:"labelFontSizeType"},fontSize:{value:ae,label:"labelFontSize"},fontSizeMobile:{value:oe,label:"labelFontSizeMobile"},fontSizeTablet:{value:ie,label:"labelFontSizeTablet"},lineHeightType:{value:ne,label:"labelLineHeightType"},lineHeight:{value:re,label:"labelLineHeight"},lineHeightMobile:{value:ce,label:"labelLineHeightMobile"},lineHeightTablet:{value:se,label:"labelLineHeightTablet"},letterSpacing:{value:aa,label:"labelLetterSpacing"},letterSpacingTablet:{value:la,label:"labelLetterSpacingTablet"},letterSpacingMobile:{value:ia,label:"labelLetterSpacingMobile"},letterSpacingType:{value:oa,label:"labelLetterSpacingType"},transform:{value:kt,label:"labelTransform"},decoration:{value:Pt,label:"labelDecoration"}}),React.createElement(tl,{label:Object(r.__)("Row Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:We,label:"fieldGap"},tablet:{value:qe,label:"fieldGapTablet"},mobile:{value:Ze,label:"fieldGapMobile"}},min:0,max:100,unit:{value:Gt,label:"fieldGapType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Label Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:Jt,label:"labelGap"},tablet:{value:Xt,label:"labelGapTablet"},mobile:{value:Qt,label:"labelGapMobile"}},min:0,max:100,unit:{value:ea,label:"labelGapUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:a})),React.createElement(Fe,{title:Object(r.__)("Input","ultimate-addons-for-gutenberg"),initialOpen:!ta},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:He||"",data:{value:He,label:"inputColor"},setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Placeholder Color","ultimate-addons-for-gutenberg"),colorValue:Ne||"",data:{value:Ne,label:"inputplaceholderColor"},setAttributes:a}),"underlined"!==$e&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:je||"",data:{value:je,label:"bgColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Placeholder Color","ultimate-addons-for-gutenberg"),colorValue:Ie||"",data:{value:Ie,label:"inputplaceholderHoverColor"},setAttributes:a}),"underlined"!==$e&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ze||"",data:{value:ze,label:"bgHoverColor"},setAttributes:a})),active:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Placeholder Color","ultimate-addons-for-gutenberg"),colorValue:Ve||"",data:{value:Ve,label:"inputplaceholderActiveColor"},setAttributes:a}),"underlined"!==$e&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:De||"",data:{value:De,label:"bgActiveColor"},setAttributes:a})),disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:a,prefix:"field",disabledBorderTitle:!1,attributes:t,deviceType:l}),React.createElement(Pl,rT({},e,{label:Object(r.__)("Input Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Mt,label:"paddingFieldTop"},valueRight:{value:Rt,label:"paddingFieldRight"},valueBottom:{value:Bt,label:"paddingFieldBottom"},valueLeft:{value:Ut,label:"paddingFieldLeft"},valueTopTablet:{value:Et,label:"paddingFieldTopTablet"},valueRightTablet:{value:Ot,label:"paddingFieldRightTablet"},valueBottomTablet:{value:Lt,label:"paddingFieldBottomTablet"},valueLeftTablet:{value:Ht,label:"paddingFieldLeftTablet"},valueTopMobile:{value:jt,label:"paddingFieldTopMobile"},valueRightMobile:{value:Ft,label:"paddingFieldRightMobile"},valueBottomMobile:{value:zt,label:"paddingFieldBottomMobile"},valueLeftMobile:{value:Dt,label:"paddingFieldLeftMobile"},unit:{value:Nt,label:"paddingFieldUnit"},mUnit:{value:It,label:"paddingFieldUnitmobile"},tUnit:{value:Vt,label:"paddingFieldUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:Wt,label:"paddingFieldLink"}})),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:ue,label:"inputloadGoogleFonts"},fontFamily:{value:pe,label:"inputFontFamily"},fontWeight:{value:be,label:"inputFontWeight"},fontStyle:{value:Yt,label:"inputFontStyle"},fontSizeType:{value:me,label:"inputFontSizeType"},fontSize:{value:de,label:"inputFontSize"},fontSizeMobile:{value:fe,label:"inputFontSizeMobile"},fontSizeTablet:{value:ye,label:"inputFontSizeTablet"},lineHeightType:{value:he,label:"inputLineHeightType"},lineHeight:{value:ve,label:"inputLineHeight"},lineHeightMobile:{value:Te,label:"inputLineHeightMobile"},lineHeightTablet:{value:_e,label:"inputLineHeightTablet"},letterSpacing:{value:na,label:"inputLetterSpacing"},letterSpacingTablet:{value:ra,label:"inputLetterSpacingTablet"},letterSpacingMobile:{value:sa,label:"inputLetterSpacingMobile"},letterSpacingType:{value:ca,label:"inputLetterSpacingType"},transform:{value:xt,label:"inputTransform"},decoration:{value:At,label:"inputDecoration"}})),React.createElement(Fe,{title:Object(r.__)("Checkbox/Toggle/Radio","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Checkbox/Radio Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:Se,label:"toggleSize"},tablet:{value:we,label:"toggleSizeTablet"},mobile:{value:ke,label:"toggleSizeMobile"}},min:0,max:50,unit:{value:qt,label:"toggleSizeType"},setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Toggle Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:Pe,label:"toggleWidthSize"},tablet:{value:xe,label:"toggleWidthSizeTablet"},mobile:{value:Ae,label:"toggleWidthSizeMobile"}},min:0,max:50,displayUnit:!1,setAttributes:a}),React.createElement("p",{className:"uagb-form-notice"},Object(r.__)("Note: It is required to set border style and border width for toggle. Else you will not able to resize the toggle.","ultimate-addons-for-gutenberg")),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ge||"",data:{value:Ge,label:"toggleColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Element Color","ultimate-addons-for-gutenberg"),colorValue:Re||"",data:{value:Re,label:"toggleDotColor"},setAttributes:a})),active:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Me||"",data:{value:Me,label:"toggleActiveColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Element Color","ultimate-addons-for-gutenberg"),colorValue:Be||"",data:{value:Be,label:"toggleDotActiveColor"},setAttributes:a})),disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:a,prefix:"checkBoxToggle",disabledBorderTitle:!1,attributes:t,deviceType:l,borderHoverColorLabel:Object(r.__)("Color","ultimate-addons-for-gutenberg"),hoverTabLabel:Object(r.__)("Active","ultimate-addons-for-gutenberg"),disableBottomSeparator:!0,borderRadiusHelp:Object(r.__)("Border radius will be applied to Radio & Toggle only when the layout for those blocks is set to Square.","ultimate-addons-for-gutenberg")})),!J&&React.createElement(Fe,{title:Object(r.__)("Submit Button","ultimate-addons-for-gutenberg"),initialOpen:!1},!J&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Button Size","ultimate-addons-for-gutenberg"),data:{value:k,label:"buttonSize"},setAttributes:a,options:[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"small",label:Object(r.__)("Small","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"large",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")},{value:"extralarge",label:Object(r.__)("Extra Large","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Full","ultimate-addons-for-gutenberg")}]}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:E||"",data:{value:E,label:"submitColor"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:L,label:"submitBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}]}),"color"===L&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:j||"",data:{value:j,label:"submitBgColor"},setAttributes:a}),"gradient"===L&&React.createElement(Fl,{backgroundGradient:{value:ga,label:"gradientValue"},backgroundGradientColor1:{value:Ga,label:"gradientColor1"},gradientType:{value:Da,label:"selectGradient"},backgroundGradientColor2:{value:Ma,label:"gradientColor2"},backgroundGradientLocation1:{value:Ra,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:Ba,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:Ua,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:Ea,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:Oa,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:La,label:"gradientLocationMobile2"},backgroundGradientType:{value:Ha,label:"gradientType"},backgroundGradientAngle:{value:ja,label:"gradientAngle"},backgroundGradientAngleTablet:{value:Fa,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:za,label:"gradientAngleMobile"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:O||"",data:{value:O,label:"submitColorHover"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:H,label:"submitBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}]}),"color"===H&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:F||"",data:{value:F,label:"submitBgColorHover"},setAttributes:a}),"gradient"===H&&React.createElement(Fl,{backgroundGradient:{value:ma,label:"gradientHValue"},backgroundGradientColor1:{value:ya,label:"gradientHColor1"},gradientType:{value:fa,label:"selectHGradient"},backgroundGradientColor2:{value:ha,label:"gradientHColor2"},backgroundGradientLocation1:{value:va,label:"gradientHLocation1"},backgroundGradientLocationTablet1:{value:_a,label:"gradientHLocationTablet1"},backgroundGradientLocationMobile1:{value:Ta,label:"gradientHLocationMobile1"},backgroundGradientLocation2:{value:Ca,label:"gradientHLocation2"},backgroundGradientLocationTablet2:{value:Sa,label:"gradientHLocationTablet2"},backgroundGradientLocationMobile2:{value:wa,label:"gradientHLocationMobile2"},backgroundGradientType:{value:ka,label:"gradientHType"},backgroundGradientAngle:{value:Pa,label:"gradientHAngle"},backgroundGradientAngleTablet:{value:xa,label:"gradientHAngleTablet"},backgroundGradientAngleMobile:{value:Aa,label:"gradientHAngleMobile"},setAttributes:a}))}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:z,label:"submitTextloadGoogleFonts"},fontFamily:{value:D,label:"submitTextFontFamily"},fontWeight:{value:N,label:"submitTextFontWeight"},fontStyle:{value:Zt,label:"submitTextFontStyle"},fontSizeType:{value:V,label:"submitTextFontSizeType"},fontSize:{value:I,label:"submitTextFontSize"},fontSizeMobile:{value:q,label:"submitTextFontSizeMobile"},fontSizeTablet:{value:W,label:"submitTextFontSizeTablet"},lineHeightType:{value:Z,label:"submitTextLineHeightType"},lineHeight:{value:$,label:"submitTextLineHeight"},lineHeightMobile:{value:K,label:"submitTextLineHeightMobile"},lineHeightTablet:{value:Y,label:"submitTextLineHeightTablet"},letterSpacing:{value:ua,label:"submitTextLetterSpacing"},letterSpacingTablet:{value:pa,label:"submitTextLetterSpacingTablet"},letterSpacingMobile:{value:ba,label:"submitTextLetterSpacingMobile"},letterSpacingType:{value:da,label:"submitTextLetterSpacingType"},transform:{value:St,label:"submitTextTransform"},decoration:{value:wt,label:"submitTextDecoration"}}),React.createElement(Pl,rT({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:rt,label:"paddingBtnTop"},valueRight:{value:st,label:"paddingBtnRight"},valueBottom:{value:ct,label:"paddingBtnBottom"},valueLeft:{value:ut,label:"paddingBtnLeft"},valueTopTablet:{value:pt,label:"paddingBtnTopTablet"},valueRightTablet:{value:bt,label:"paddingBtnRightTablet"},valueBottomTablet:{value:dt,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:gt,label:"paddingBtnLeftTablet"},valueTopMobile:{value:mt,label:"paddingBtnTopMobile"},valueRightMobile:{value:yt,label:"paddingBtnRightMobile"},valueBottomMobile:{value:ft,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:ht,label:"paddingBtnLeftMobile"},unit:{value:vt,label:"paddingBtnUnit"},mUnit:{value:_t,label:"mobilePaddingBtnUnit"},tUnit:{value:Tt,label:"tabletPaddingBtnUnit"},deviceType:l,attributes:t,setAttributes:a,link:{value:Ct,label:"paddingspacingLink"}})),React.createElement(Hi,{setAttributes:a,prefix:"btn",disabledBorderTitle:!1,attributes:t,deviceType:l,disableBottomSeparator:!0}))),React.createElement(Fe,{title:Object(r.__)("Messages","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"success",title:Object(r.__)("Success","ultimate-addons-for-gutenberg")},{name:"error",title:Object(r.__)("Error","ultimate-addons-for-gutenberg")}],success:"message"===P&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:lt||"",data:{value:lt,label:"successMessageTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:it||"",data:{value:it,label:"successMessageBGColor"},setAttributes:a}),React.createElement(Hi,{setAttributes:a,prefix:"successMsg",disabledBorderTitle:!1,attributes:t,deviceType:l,disableBottomSeparator:!0})),error:"message"===P&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:ot||"",data:{value:ot,label:"failedMessageTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:nt||"",data:{value:nt,label:"failedMessageBGColor"},setAttributes:a}),React.createElement(Hi,{setAttributes:a,prefix:"errorMsg",disabledBorderTitle:!1,attributes:t,deviceType:l,disableBottomSeparator:!0})),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,rT({},e,{label:Object(r.__)("Form Padding","ultimate-addons-for-gutenberg"),valueTop:{value:i,label:"formPaddingTop"},valueRight:{value:o,label:"formPaddingRight"},valueBottom:{value:n,label:"formPaddingBottom"},valueLeft:{value:s,label:"formPaddingLeft"},valueTopTablet:{value:c,label:"formPaddingTopTab"},valueRightTablet:{value:u,label:"formPaddingRightTab"},valueBottomTablet:{value:p,label:"formPaddingBottomTab"},valueLeftTablet:{value:b,label:"formPaddingLeftTab"},valueTopMobile:{value:d,label:"formPaddingTopMob"},valueRightMobile:{value:g,label:"formPaddingRightMob"},valueBottomMobile:{value:m,label:"formPaddingBottomMob"},valueLeftMobile:{value:y,label:"formPaddingLeftMob"},unit:{value:f,label:"formPaddingUnit"},tUnit:{value:h,label:"formPaddingUnitTab"},mUnit:{value:v,label:"formPaddingUnitMob"},deviceType:l,attributes:t,setAttributes:a,link:{value:_,label:"formPaddingLink"}})))),React.createElement(il,rT({},rl,{parentProps:e})))))});const cT=["uagb/forms-name","uagb/forms-email","uagb/forms-hidden","uagb/forms-phone","uagb/forms-textarea","uagb/forms-url","uagb/forms-select","uagb/forms-radio","uagb/forms-checkbox","uagb/forms-toggle","uagb/forms-date","uagb/forms-accept"];var uT,pT=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,submitButtonText:o,formLabel:n,buttonSize:s,reCaptchaEnable:c,reCaptchaType:u,submitButtonType:p,inheritFromTheme:b}=t,d=b&&"secondary"===p,g=d?{borderWidth:"revert-layer"}:{},m="uagb-forms-main-submit-button "+(d?"ast-outline-button":"wp-block-button__link"),y=d?"div":"button",f=Object(B.useCallback)(e=>{e.preventDefault()});return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+i,`uagb-forms__${s}-btn`,"uagb-editor-preview-mode-"+l.toLowerCase())},React.createElement("form",{className:"uagb-forms-main-form",name:"uagb-form-"+i},React.createElement(ge.InnerBlocks,{allowedBlocks:cT}),React.createElement("div",{className:"uagb-forms-form-hidden-data"},c&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",name:"uagb_forms_form_label",value:n}),React.createElement("input",{type:"hidden",name:"uagb_forms_form_id",value:"uagb-form-"+i})),c&&"v2"===u&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":""})),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+i}),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap wp-block-button"},React.createElement(y,{onClick:f,className:m,style:g},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Submit","ultimate-addons-for-gutenberg"),value:o.replace(/<(?!br\s*V?)[^>]+>/g,""),onChange:e=>a({submitButtonText:e}),className:"uagb-forms-main-submit-button-text",multiline:!1,allowedFormats:[]}))))))}),bT=a(115),dT=0,gT={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},mT={};mT.locals=bT.a.locals||{},mT.use=function(){return dT++||(uT=ke()(bT.a,gT)),mT},mT.unuse=function(){dT>0&&!--dT&&(uT(),uT=null)};var yT=mT,fT=Object(B.memo)(e=>{let{attributes:t}=e;const{submitTextloadGoogleFonts:a,submitTextFontFamily:l,submitTextFontWeight:i,labelloadGoogleFonts:o,labelFontFamily:n,labelFontWeight:r,inputloadGoogleFonts:s,inputFontFamily:c,inputFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});function hT(){return(hT=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const vT=[{name:"simple-contact-form",label:Object(r.__)("Simple Contact Form","ultimate-addons-for-gutenberg"),icon:se.form1,title:Object(r.__)("Simple Contact Form","ultimate-addons-for-gutenberg"),attributes:{},isDefault:!0,innerBlocks:[["uagb/forms-name",{name:Object(r.__)("First Name","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("John","ultimate-addons-for-gutenberg"),nameRequired:!0,autocomplete:"given-name"}],["uagb/forms-name",{name:Object(r.__)("Last Name","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Doe","ultimate-addons-for-gutenberg"),nameRequired:!0,autocomplete:"family-name"}],["uagb/forms-email",{emailRequired:!0}],["uagb/forms-textarea",{textareaRequired:!0}]],scope:["block"]},{name:"newsletter-form",label:Object(r.__)("Newsletter Form","ultimate-addons-for-gutenberg"),icon:se.form2,title:Object(r.__)("Newsletter Form","ultimate-addons-for-gutenberg"),attributes:{},innerBlocks:[["uagb/forms-name",{nameRequired:!0}],["uagb/forms-email",{emailRequired:!0}]],scope:["block"]},{name:"suggestion-form",label:Object(r.__)("Suggestion Form","ultimate-addons-for-gutenberg"),icon:se.form3,title:Object(r.__)("Suggestion Form","ultimate-addons-for-gutenberg"),attributes:{},innerBlocks:[["uagb/forms-name",{nameRequired:!0}],["uagb/forms-email",{emailRequired:!0}],["uagb/forms-radio",{radioRequired:!0,radioName:"Some question with below listed option?",options:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")},{optiontitle:Object(r.__)("Option Name 2","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 2","ultimate-addons-for-gutenberg")},{optiontitle:Object(r.__)("Option Name 3","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 3","ultimate-addons-for-gutenberg")},{optiontitle:Object(r.__)("Option Name 4","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 4","ultimate-addons-for-gutenberg")}]}],["uagb/forms-name",{name:Object(r.__)("Subject","ultimate-addons-for-gutenberg"),placeholder:Object(r.__)("Enter your subject","ultimate-addons-for-gutenberg"),nameRequired:!0,autocomplete:"off"}],["uagb/forms-textarea",{textareaRequired:!0}]],scope:["block"]}],_T=e=>{const{clientId:t,setAttributes:a,defaultVariation:l}=e,{replaceInnerBlocks:i}=Object(n.useDispatch)("core/block-editor");return React.createElement("div",hT({},Object(ge.useBlockProps)(),{className:"uagb-forms-variations uagb-variation-picker uagb-variation-picker--fill"}),React.createElement(ge.__experimentalBlockVariationPicker,{icon:se.forms,label:Object(r.__)("Forms","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Select a form layout to start with.","ultimate-addons-for-gutenberg"),variations:vT,onSelect:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;e.attributes&&a(e.attributes),e.innerBlocks&&i(t,Object(be.createBlocksFromInnerBlocksTemplate)(e.innerBlocks))}(e)}))};function TT(){return(TT=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const CT=Object(L.createHigherOrderComponent)(e=>t=>{var a;const l=Z([(null==t?void 0:t.className)||"",(null==t||null===(a=t.attributes)||void 0===a?void 0:a.className)||""]);return React.createElement(e,TT({},t,{className:l||null}))},"addAdvancedClasses");Object(j.addFilter)("editor.BlockListBlock","uagb/forms",CT);var ST=Object(L.compose)(Le.withNotices,CT,vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{reCaptchaSiteKeyV2:l,reCaptchaSecretKeyV2:i,reCaptchaSiteKeyV3:o,reCaptchaSecretKeyV3:r,reCaptchaEnable:s,toggleColor:c,bgColor:u,inputborderStyle:p,inputborderWidth:b,inputborderColor:d,inputborderHoverColor:g,inputborderRadius:m,submitborderWidth:y,submitborderRadius:f,submitborderColor:h,submitborderHoverColor:v,submitborderStyle:_,UAGHideDesktop:T,UAGHideTab:C,UAGHideMob:S,variationSelected:w,overallAlignment:k,labelAlignment:P},setAttributes:x,clientId:A,name:G,deviceType:M}=e,{variations:R,hasInnerBlocks:U,defaultVariation:E}=Object(n.useSelect)(e=>{const{getBlockVariations:t,getDefaultBlockVariation:a}=e("core/blocks");return{hasInnerBlocks:e("core/block-editor").getBlocks(A).length>0,defaultVariation:void 0===a?null:a(G),variations:void 0===t?null:t(G)}});Object(B.useLayoutEffect)(()=>(yT.use(),()=>{yT.unuse()}),[]),Object(B.useEffect)(()=>{null===P&&x({labelAlignment:k})},[]),Object(B.useEffect)(()=>{!w&&U&&x({variationSelected:!0})},[U]),Object(B.useEffect)(()=>{u&&void 0===c&&x({toggleColor:u});const e=A;if(window.addEventListener("load",L(e)),s){const e={};""===uagb_blocks_info.recaptcha_site_key_v2&&""===uagb_blocks_info.recaptcha_secret_key_v2&&l&&i&&(e.reCaptchaSiteKeyV2=l,e.reCaptchaSecretKeyV2=i),""===uagb_blocks_info.recaptcha_site_key_v3&&""===uagb_blocks_info.recaptcha_secret_key_v3&&o&&r&&(e.reCaptchaSiteKeyV3=o,e.reCaptchaSecretKeyV3=r);const t={nonce:uagb_blocks_info.uagb_ajax_nonce,value:JSON.stringify(e)};0!==Object.keys(e).length&&$l({url:uagb_blocks_info.ajax_url,action:"uagb_forms_recaptcha",data:t}).then(()=>{})}(b||m||d||g||p)&&(ue("field",{label:"inputborderWidth",value:b},{label:"inputborderRadius",value:m},{label:"inputborderColor",value:d},{label:"inputborderHoverColor",value:g},{label:"inputborderStyle",value:p},x,a),ue("checkBoxToggle",{label:"inputborderWidth",value:b},{label:"inputborderRadius",value:m},{label:"inputborderColor",value:d},{label:"inputborderHoverColor",value:g},{label:"inputborderStyle",value:p},x,a)),(y||f||h||v||_)&&ue("btn",{label:"submitborderWidth",value:y},{label:"submitborderRadius",value:f},{label:"submitborderColor",value:h},{label:"submitborderHoverColor",value:v},{label:"submitborderStyle",value:_},x,a)},[]);const O=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,formPaddingTop:r,formPaddingRight:s,formPaddingBottom:c,formPaddingLeft:u,formPaddingTopTab:p,formPaddingRightTab:b,formPaddingBottomTab:d,formPaddingLeftTab:g,formPaddingTopMob:m,formPaddingRightMob:y,formPaddingBottomMob:f,formPaddingLeftMob:h,formPaddingUnit:v,formPaddingUnitTab:_,formPaddingUnitMob:T,buttonAlign:C,buttonAlignTablet:S,buttonAlignMobile:w,submitColor:k,submitColorHover:P,submitBgType:x,submitBgHoverType:A,submitBgColor:G,submitBgColorHover:M,toggleWidthSize:R,toggleWidthSizeTablet:B,toggleWidthSizeMobile:U,btnBorderHColor:E,submitTextFontFamily:O,submitTextFontWeight:L,submitTextFontSize:H,submitTextFontSizeType:j,submitTextFontSizeTablet:F,submitTextFontSizeMobile:z,submitTextLineHeightType:D,submitTextLineHeight:N,submitTextLineHeightTablet:I,submitTextLineHeightMobile:V,labelFontFamily:W,labelFontWeight:q,labelFontSize:Z,labelFontSizeType:$,labelFontSizeTablet:Y,labelFontSizeMobile:K,labelLineHeightType:J,labelLineHeight:X,labelLineHeightTablet:Q,labelLineHeightMobile:ee,inputFontFamily:te,inputFontWeight:le,inputFontSize:ie,inputFontSizeType:oe,inputFontSizeTablet:ne,inputFontSizeMobile:re,inputLineHeightType:se,inputLineHeight:ce,inputLineHeightTablet:ue,inputLineHeightMobile:pe,toggleColor:be,toggleActiveColor:de,toggleDotColor:ge,toggleDotActiveColor:me,checkBoxToggleBorderStyle:ye,checkBoxToggleBorderBottomWidth:fe,toggleBorderRadius:he,checkBoxToggleBorderColor:ve,checkBoxToggleBorderHColor:_e,labelColor:Te,labelHoverColor:Ce,inputColor:Se,bgColor:we,bgHoverColor:ke,bgActiveColor:Pe,inputplaceholderColor:xe,inputplaceholderHoverColor:Ae,inputplaceholderActiveColor:Ge,fieldBorderHColor:Me,fieldGap:Re,fieldGapTablet:Be,fieldGapMobile:Ue,formStyle:Ee,overallAlignment:Oe,overallAlignmentTablet:Le,overallAlignmentMobile:He,labelAlignment:je,labelAlignmentTablet:Fe,labelAlignmentMobile:ze,toggleSize:De,toggleSizeTablet:Ne,toggleSizeMobile:Ie,paddingBtnTop:Ve,paddingBtnRight:We,paddingBtnBottom:qe,paddingBtnLeft:Ze,paddingBtnTopTablet:$e,paddingBtnRightTablet:Ye,paddingBtnBottomTablet:Ke,paddingBtnLeftTablet:Je,paddingBtnTopMobile:Xe,paddingBtnRightMobile:Qe,paddingBtnBottomMobile:et,paddingBtnLeftMobile:tt,paddingBtnUnit:at,mobilePaddingBtnUnit:lt,tabletPaddingBtnUnit:it,submitTextTransform:ot,submitTextDecoration:nt,labelTransform:rt,labelDecoration:st,inputTransform:ct,inputDecoration:ut,fieldGapType:pt,paddingFieldTop:bt,paddingFieldRight:dt,paddingFieldBottom:gt,paddingFieldLeft:mt,paddingFieldTopTablet:yt,paddingFieldRightTablet:ft,paddingFieldBottomTablet:ht,paddingFieldLeftTablet:vt,paddingFieldTopMobile:_t,paddingFieldRightMobile:Tt,paddingFieldBottomMobile:Ct,paddingFieldLeftMobile:St,paddingFieldUnit:wt,paddingFieldUnitmobile:kt,paddingFieldUnitTablet:Pt,toggleSizeType:xt,submitTextFontStyle:At,labelFontStyle:Gt,inputFontStyle:Mt,labelGap:Rt,labelGapTablet:Bt,labelGapMobile:Ut,labelGapUnit:Et,displayLabels:Ot,labelLetterSpacing:Lt,labelLetterSpacingTablet:Ht,labelLetterSpacingMobile:jt,labelLetterSpacingType:Ft,inputLetterSpacing:zt,inputLetterSpacingTablet:Dt,inputLetterSpacingMobile:Nt,inputLetterSpacingType:It,submitTextLetterSpacing:Vt,submitTextLetterSpacingTablet:Wt,submitTextLetterSpacingMobile:qt,submitTextLetterSpacingType:Zt,gradientHValue:$t,gradientValue:Yt,gradientHColor1:Kt,gradientHColor2:Jt,gradientHLocation1:Xt,gradientHLocationTablet1:Qt,gradientHLocationMobile1:ea,gradientHLocation2:ta,gradientHLocationTablet2:aa,gradientHLocationMobile2:la,gradientHType:ia,gradientHAngle:oa,gradientHAngleTablet:na,gradientHAngleMobile:ra,selectHGradient:sa,gradientColor1:ca,gradientColor2:ua,gradientLocation1:pa,gradientLocationTablet1:ba,gradientLocationMobile1:da,gradientLocation2:ga,gradientLocationTablet2:ma,gradientLocationMobile2:ya,gradientType:fa,gradientAngle:ha,gradientAngleTablet:va,gradientAngleMobile:_a,selectGradient:Ta,inheritFromTheme:Ca}=e;let Sa={},wa={},ka={};const Pa=Ps(Re,"fieldGap",i),xa=Ps(Rt,"labelGap",i),Aa=Ps(De,"toggleSize",i),Ga=isNaN(Ne)?Aa:Ne,Ma=isNaN(Ie)?Ga:Ie,Ra=Ps(Ne,"toggleSizeTablet",i),Ba=Ps(Ie,"toggleSizeMobile",i),Ua=Ps(R,"toggleWidthSize",i),Ea=isNaN(B)?Ua:B,Oa=isNaN(U)?Ea:U,La=rs(e,"field"),Ha=rs(e,"field","tablet"),ja=rs(e,"field","mobile"),Fa=rs(e,"checkBoxToggle"),za=rs(e,"checkBoxToggle","tablet"),Da=rs(e,"checkBoxToggle","mobile");let Na=xs(Fa["border-top-left-radius"],"checkBoxToggleBorderTopLeftRadius",i),Ia=xs(Fa["border-top-right-radius"],"checkBoxToggleBorderTopRightRadius",i),Va=xs(Fa["border-bottom-right-radius"],"checkBoxToggleBorderBottomRightRadius",i),Wa=xs(Fa["border-bottom-left-radius"],"checkBoxToggleBorderBottomLeftRadius",i);Na=isNaN(Na)?Na:Na+"px",Ia=isNaN(Ia)?Ia:Ia+"px",Va=isNaN(Va)?Va:Va+"px",Wa=isNaN(Wa)?Wa:Wa+"px";const qa=""!==za["border-top-left-radius"]&&"px"!==za["border-top-left-radius"]?za["border-top-left-radius"]:Na,Za=""!==za["border-top-right-radius"]&&"px"!==za["border-top-right-radius"]?za["border-top-right-radius"]:Ia,$a=""!==za["border-bottom-right-radius"]&&"px"!==za["border-bottom-right-radius"]?za["border-bottom-right-radius"]:Va,Ya=""!==za["border-bottom-left-radius"]&&"px"!==za["border-bottom-left-radius"]?za["border-bottom-left-radius"]:Wa,Ka=""!==Da["border-top-left-radius"]&&"px"!==Da["border-top-left-radius"]?Da["border-top-left-radius"]:qa,Ja=""!==Da["border-top-right-radius"]&&"px"!==Da["border-top-right-radius"]?Da["border-top-right-radius"]:Za,Xa=""!==Da["border-bottom-right-radius"]&&"px"!==Da["border-bottom-right-radius"]?Da["border-bottom-right-radius"]:$a,Qa=""!==Da["border-bottom-left-radius"]&&"px"!==Da["border-bottom-left-radius"]?Da["border-bottom-left-radius"]:Ya;let el=void 0!==Fa["border-top-width"]?xs(Fa["border-top-width"],"checkBoxToggleBorderTopWidth",i):"",tl=void 0!==Fa["border-left-width"]?xs(Fa["border-left-width"],"checkBoxToggleBorderLeftWidth",i):"",al=void 0!==Fa["border-bottom-width"]?xs(Fa["border-bottom-width"],"checkBoxToggleBorderBottomWidth",i):"",ll=void 0!==Fa["border-right-width"]?xs(Fa["border-right-width"],"checkBoxToggleBorderBottomRight",i):"";el=isNaN(el)?el:el+"px",ll=isNaN(ll)?ll:ll+"px",al=isNaN(al)?al:al+"px",tl=isNaN(tl)?tl:tl+"px";const il="px"!==za["border-top-width"]&&""!==za["border-top-width"]?za["border-top-width"]:el,ol="px"!==za["border-right-width"]&&""!==za["border-right-width"]?za["border-right-width"]:ll,nl="px"!==za["border-bottom-width"]&&""!==za["border-bottom-width"]?za["border-bottom-width"]:al,rl="px"!==za["border-left-width"]&&""!==za["border-left-width"]?za["border-left-width"]:tl,sl="px"!==Da["border-top-width"]&&""!==Da["border-top-width"]?Da["border-top-width"]:il,cl="px"!==Da["border-right-width"]&&""!==Da["border-right-width"]?Da["border-right-width"]:ol,ul="px"!==Da["border-bottom-width"]&&""!==Da["border-bottom-width"]?Da["border-bottom-width"]:nl,pl="px"!==Da["border-left-width"]&&""!==Da["border-left-width"]?Da["border-left-width"]:rl,bl=rs(e,"btn"),dl=rs(e,"btn","tablet"),gl=rs(e,"btn","mobile");if(Sa={".uagb-forms__outer-wrap":{"padding-top":ns(r,v),"padding-right":ns(s,v),"padding-bottom":ns(c,v),"padding-left":ns(u,v)}," .uagb-forms-input":{"text-align":Oe}," .uagb-forms-input-label":{display:Ot?"block":"none","text-align":je}," .uagb-forms-main-form .uagb-forms-field-set":{"margin-bottom":ns(Pa,pt)}," .uagb-forms-main-form .uagb-forms-input-label":{"font-size":ns(Z,$),"line-height":ns(X,J),"font-family":W,"font-style":Gt,"text-transform":rt,"text-decoration":st,"font-weight":q,color:Te,"margin-bottom":ns(xa,Et),"letter-spacing":ns(Lt,Ft)}," .uagb-forms-main-form  .uagb-forms-input::placeholder":{"font-size":ns(ie,oe),"line-height":ns(ce,se),"font-family":te,"font-style":Mt,"text-transform":ct,"text-decoration":ut,"font-weight":le,color:xe,"letter-spacing":ns(zt,It)}," .uagb-forms-main-form input":{"font-size":ns(ie,oe),"line-height":ns(ce,se),"font-family":te,"font-style":Mt,"text-transform":ct,"text-decoration":ut,"font-weight":le,color:xe,"letter-spacing":ns(zt,It)}," .components-input-control__container":{"background-color":we}," .uagb-forms-main-form textarea":{"font-size":ns(ie,oe),"line-height":ns(ce,se),"font-family":te,"font-style":Mt,"text-transform":ct,"text-decoration":ut,"font-weight":le,color:xe,"letter-spacing":ns(zt,It),"text-align":Oe}," .uagb-forms-main-form select":{"font-size":ns(ie,oe),"line-height":ns(ce,se),"font-family":te,"font-style":Mt,"text-transform":ct,"text-decoration":ut,"font-weight":le,color:xe,"letter-spacing":ns(zt,It)}," .uagb-forms-main-form .uagb-forms-input:focus":{outline:" none !important",border:Me,"background-color":Pe+" !important"}," .uagb-forms-main-form .components-select-control__input:focus":{"background-color":Pe+" !important"}," .uagb-forms-main-form .uagb-forms-input:focus::placeholder":{color:Ge+" !important"}," .uagb-forms-main-form .uagb-forms-phone-flex":{height:`calc(${ce?ns(ce,se):"2em"} + ${ns(bt,wt)} + ${ns(gt,wt)})`}," .uagb-switch":{height:`calc(${Fa["border-bottom-width"]} + ${Fa["border-top-width"]} + ${ns(parseInt(20+Ua+(20+Ua)/3),"px")})`,width:`calc(${Fa["border-left-width"]} + ${Fa["border-right-width"]} + ${ns(parseInt(2.5*(20+Ua)+(20+Ua)/3),"px")})`}," .uagb-switch input:checked + .uagb-slider":{"background-color":de,"border-color":_e}," .uagb-switch input:checked + .uagb-slider:before":{"background-color":me}," .uagb-switch input:focus + .uagb-slider":{"box-shadow":"0 0 1px"+de}," .uagb-slider:before":{height:ns(20+Ua,"px"),width:ns(20+Ua,"px"),top:ns(parseInt((20+Ua)/6),"px"),bottom:ns(parseInt((20+Ua)/6),"px"),left:ns(parseInt((20+Ua)/6),"px"),"background-color":ge,"border-radius":`${Na} ${Ia} ${Va} ${Wa}`}," .uagb-slider.round":{"border-radius":ns(20+Ua,"px")}," .uagb-switch input:checked + .uagb-slider:before ":{transform:`translateX(${ns(parseInt(2.5*(20+Ua)-(20+Ua)),"px")})`,"background-color":me}," .uagb-forms-radio-wrap input[type=radio]:checked + label:before":{"background-color":me,"border-color":_e+" !important","box-shadow":"inset 0 0 0 4px "+de,"font-size":"calc("+Aa+xt+" / 1.2 )"}," .uagb-forms-radio-wrap input[type=radio] + label:before":{"background-color":be,width:ns(Aa,xt),height:ns(Aa,xt)}," .uagb-forms-radio-wrap > label":{color:Se}," .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before":{color:me,"background-color":de,"border-color":_e+" !important","font-size":"calc("+Aa+"px / 1.2 )"}," .uagb-forms-checkbox-wrap input[type=checkbox] + label:before":{"background-color":be,"border-radius":ns(he,"px"),width:ns(Aa,"px"),height:ns(Aa,"px")}," .uagb-forms-checkbox-wrap > label":{color:Se}," .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before":{color:me,"background-color":de,"border-color":_e+" !important","font-size":"calc("+Aa+"px / 1.2 )"}," .uagb-forms-accept-wrap input[type=checkbox] + label:before":{"border-radius":ns(he,"px"),"background-color":be,width:ns(Aa,"px"),height:ns(Aa,"px")}," .uagb-forms-accept-wrap > label":{color:Se}," .uagb-forms-field-set:hover .uagb-forms-input-label":{color:Ce}," .uagb-forms-field-set:hover .uagb-forms-input":{"background-color":ke,"border-color":Me}," .uagb-forms-field-set:hover .uagb-forms-input::placeholder":{color:Ae}," .uagb-forms-field-set .uagb-forms-input select":{color:Se}," .uagb-forms-phone-flex:hover .components-base-control__field .components-select-control__input":{"background-color":ke}," .uagb-forms-phone-flex .components-base-control__field .components-select-control__input":{height:"auto"}},Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap"]="full"!==C?{"text-align":C}:{display:"grid"},wa={".uagb-forms__outer-wrap":{"padding-top":ns(p,_),"padding-right":ns(b,_),"padding-bottom":ns(d,_),"padding-left":ns(g,_)}," .uagb-forms-main-form .uagb-forms-field-set":{"margin-bottom":ns(Be,pt)}," .uagb-forms-radio-wrap input[type=radio]:checked + label:before":{"font-size":"calc("+Ga+xt+" / 1.2 )"}," .uagb-forms-radio-wrap input[type=radio] + label:before":{width:ns(Ra,xt),height:ns(Ra,xt)}," .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before":{"font-size":"calc("+Ga+"px / 1.2 )"}," .uagb-forms-checkbox-wrap input[type=checkbox] + label:before":{width:ns(Ra,"px"),height:ns(Ra,"px")}," .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before":{"font-size":"calc("+Ga+"px / 1.2 )"}," .uagb-forms-accept-wrap input[type=checkbox] + label:before":{width:ns(Ra,"px"),height:ns(Ra,"px")}," .uagb-switch":{height:`calc(${il} + ${nl} + ${ns(parseInt(20+Ea+(20+Ea)/3),"px")})`,width:`calc(${rl} + ${ol} + ${ns(parseInt(2.5*(20+Ea)+(20+Ea)/3),"px")})`}," .uagb-switch .uagb-slider:before":{height:ns(20+Ea,"px"),width:ns(20+Ea,"px"),top:ns(parseInt((20+Ea)/6),"px"),bottom:ns(parseInt((20+Ea)/6),"px"),left:ns(parseInt((20+Ea)/6),"px"),"background-color":ge,"border-radius":`${qa} ${Za} ${$a} ${Ya}`}," .uagb-slider.round":{"border-radius":ns(20+Ea,"px")}," .uagb-switch input:checked + .uagb-slider:before ":{transform:`translateX(${ns(parseInt(2.5*(20+Ea)-(20+Ea)),"px")})`}," .uagb-forms-main-form .uagb-forms-input-label":{"font-size":ns(Y,$),"line-height":ns(Q,J),"margin-bottom":ns(Bt,Et),"letter-spacing":ns(Ht,Ft)}," .uagb-forms-main-form  .uagb-forms-input::placeholder":{"font-size":ns(ne,oe),"line-height":ns(ue,se),"letter-spacing":ns(Dt,It)}," .uagb-forms-input":{"text-align":Le}," .uagb-forms-input-label":{display:Ot?"block":"none","text-align":Fe}," .uagb-forms-main-form textarea":{"text-align":Le}},wa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap"]="full"!==S?{"text-align":S}:{display:"grid"},ka={".uagb-forms__outer-wrap":{"padding-top":ns(m,T),"padding-right":ns(y,T),"padding-bottom":ns(f,T),"padding-left":ns(h,T)}," .uagb-forms-radio-wrap input[type=radio]:checked + label:before":{"font-size":"calc("+Ma+xt+" / 1.2 )"}," .uagb-forms-radio-wrap input[type=radio] + label:before":{width:ns(Ba,xt),height:ns(Ba,xt)}," .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before":{"font-size":"calc("+Ma+"px / 1.2 )"}," .uagb-forms-checkbox-wrap input[type=checkbox] + label:before":{width:ns(Ba,"px"),height:ns(Ba,"px")}," .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before":{"font-size":"calc("+Ma+"px / 1.2 )"}," .uagb-forms-accept-wrap input[type=checkbox] + label:before":{width:ns(Ba,"px"),height:ns(Ba,"px")}," .uagb-forms-main-form .uagb-forms-field-set":{"margin-bottom":ns(Ue,pt)}," .uagb-switch":{height:`calc(${sl} + ${ul} + ${ns(parseInt(20+Oa+(20+Oa)/3),"px")})`,width:`calc(${pl} + ${cl} + ${ns(parseInt(2.5*(20+Oa)+(20+Oa)/3),"px")})`}," .uagb-switch .uagb-slider:before":{height:ns(20+Oa,"px"),width:ns(20+Oa,"px"),top:ns(parseInt((20+Oa)/6),"px"),bottom:ns(parseInt((20+Oa)/6),"px"),left:ns(parseInt((20+Oa)/6),"px"),"background-color":ge,"border-radius":`${Ka} ${Ja} ${Xa} ${Qa}`}," .uagb-slider.round":{"border-radius":ns(20+Oa,"px")}," .uagb-switch input:checked + .uagb-slider:before ":{transform:`translateX(${ns(parseInt(2.5*(20+Oa)-(20+Oa)),"px")})`}," .uagb-forms-main-form .uagb-forms-input-label":{"font-size":ns(K,$),"line-height":ns(ee,J),"margin-bottom":ns(Ut,Et),"letter-spacing":ns(jt,Ft)}," .uagb-forms-main-form  .uagb-forms-input::placeholder":{"font-size":ns(re,oe),"line-height":ns(pe,se),"letter-spacing":ns(Nt,It)}," .uagb-forms-input":{"text-align":He}," .uagb-forms-input-label":{display:Ot?"block":"none","text-align":ze}," .uagb-forms-main-form textarea":{"text-align":He}},ka[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap"]="full"!==w?{"text-align":w}:{display:"grid"},"boxed"===Ee?(Sa[" .uagb-forms-main-form  .uagb-forms-input"]={...La,"background-color":we,color:Se,"padding-top":ns(bt,wt),"padding-bottom":ns(gt,wt),"padding-left":ns(mt,wt),"padding-right":ns(dt,wt)},wa[" .uagb-forms-main-form  .uagb-forms-input"]={...Ha,"padding-top":ns(yt,Pt),"padding-bottom":ns(ht,Pt),"padding-left":ns(vt,Pt),"padding-right":ns(ft,Pt)},ka[" .uagb-forms-main-form  .uagb-forms-input"]={...ja,"padding-top":ns(_t,kt),"padding-bottom":ns(Ct,kt),"padding-left":ns(St,kt),"padding-right":ns(Tt,kt)},Sa[" .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before"]=Fa,Sa[" .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before"]=Fa,Sa[" .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before"]=Fa,Sa[" .uagb-slider "]={...Fa,"background-color":be},ka[" .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before"]=Da,ka[" .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before"]=Da,ka[" .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before"]=Da,ka[" .uagb-slider "]=Da,wa[" .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before"]=za,wa[" .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before"]=za,wa[" .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before"]=za,wa[" .uagb-slider "]=za):"underlined"===Ee&&(Sa[".uagb-forms__outer-wrap .uagb-forms-main-form  .uagb-forms-input"]={"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,background:"transparent",...La,color:Se,"padding-top":ns(bt,wt),"padding-bottom":ns(gt,wt),"padding-left":ns(mt,wt),"padding-right":ns(dt,wt)},Sa[" .uagb-forms-main-form .uagb-forms-input:focus"]={"border-top-width":0,"border-right-width":0,"border-left-width":0,"box-shadow":"unset"},wa[".uagb-forms__outer-wrap .uagb-forms-main-form  .uagb-forms-input"]={"padding-top":ns(yt,Pt),"padding-bottom":ns(ht,Pt),"padding-left":ns(vt,Pt),"padding-right":ns(ft,Pt),...Ha},ka[".uagb-forms__outer-wrap .uagb-forms-main-form  .uagb-forms-input"]={"padding-top":ns(_t,kt),"padding-bottom":ns(Ct,kt),"padding-left":ns(St,kt),"padding-right":ns(Tt,kt),...ja},Sa[" .uagb-forms-main-form .uagb-forms-checkbox-wrap input[type=checkbox] + label:before"]={"border-bottom":ns(fe,"px")+" "+ye+" "+ve},Sa[" .uagb-forms-main-form .uagb-forms-accept-wrap input[type=checkbox] + label:before"]={"border-bottom":ns(fe,"px")+" "+ye+" "+ve},Sa[" .uagb-forms-main-form .uagb-forms-radio-wrap input[type=radio] + label:before"]={"border-bottom":ns(fe,"px")+" "+ye+" "+ve},Sa[" .uagb-slider "]={"background-color":be,"border-bottom":ns(fe,"px")+" "+ye+" "+ve}),!Ca){if("color"===x)Sa[" .uagb-forms-main-form  .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link"]={"background-color":G};else if("gradient"===x){const e={backgroundType:"gradient",gradientValue:Yt,gradientColor1:ca,gradientColor2:ua,gradientLocation1:pa,gradientLocation2:ga,gradientType:fa,gradientAngle:ha,selectGradient:Ta},t={backgroundType:"gradient",gradientValue:Yt,gradientColor1:ca,gradientColor2:ua,gradientLocation1:"number"==typeof ba?ba:e.gradientLocation1,gradientLocation2:"number"==typeof ma?ma:e.gradientLocation2,gradientType:fa,gradientAngle:"number"==typeof va?va:e.gradientAngle,selectGradient:Ta},a={backgroundType:"gradient",gradientValue:Yt,gradientColor1:ca,gradientColor2:ua,gradientLocation1:"number"==typeof da?da:t.gradientLocation1,gradientLocation2:"number"==typeof ya?ya:t.gradientLocation2,gradientType:fa,gradientAngle:"number"==typeof _a?_a:t.gradientAngle,selectGradient:Ta},l=ss(e),i=ss(t),o=ss(a);Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link"]=l,wa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link"]=i,ka[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link"]=o}else"transparent"===x&&(Sa[" .uagb-forms-main-form  .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link"]={background:"transparent"});if("color"===A)Sa[" .uagb-forms-main-form  .uagb-forms-main-submit-button-wrap:hover .uagb-forms-main-submit-button.wp-block-button__link"]={background:M};else if("gradient"===A){const e={backgroundType:"gradient",gradientValue:$t,gradientColor1:Kt,gradientColor2:Jt,gradientLocation1:Xt,gradientLocation2:ta,gradientType:ia,gradientAngle:oa,selectGradient:sa},t={backgroundType:"gradient",gradientValue:$t,gradientColor1:Kt,gradientColor2:Jt,gradientLocation1:"number"==typeof Qt?Qt:e.gradientLocation1,gradientLocation2:"number"==typeof aa?aa:e.gradientLocation2,gradientType:ia,gradientAngle:"number"==typeof na?na:e.gradientAngle,selectGradient:sa},a={backgroundType:"gradient",gradientValue:$t,gradientColor1:Kt,gradientColor2:Jt,gradientLocation1:"number"==typeof ea?ea:t.gradientLocation1,gradientLocation2:"number"==typeof la?la:t.gradientLocation2,gradientType:ia,gradientAngle:"number"==typeof ra?ra:t.gradientAngle,selectGradient:sa},l=ss(e),i=ss(t),o=ss(a);Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap:hover .uagb-forms-main-submit-button.wp-block-button__link"]=l,wa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap:hover .uagb-forms-main-submit-button.wp-block-button__link"]=i,ka[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap:hover .uagb-forms-main-submit-button.wp-block-button__link"]=o}else"transparent"===A&&(Sa[" .uagb-forms-main-form  .uagb-forms-main-submit-button-wrap:hover .uagb-forms-main-submit-button.wp-block-button__link"]={background:"transparent"});Sa[".uagb-forms__small-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={padding:"5px 10px"},Sa[".uagb-forms__medium-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={padding:"12px 24px"},Sa[".uagb-forms__large-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={padding:"20px 30px"},Sa[".uagb-forms__extralarge-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={padding:"30px 65px"},Sa[".uagb-forms__full-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={width:"100%",padding:"10px 15px"},Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:not(.has-background)"]={color:k,"font-size":ns(H,j),"line-height":ns(N,D),"font-family":O,"font-style":At,"text-transform":ot,"text-decoration":nt,"font-weight":L,...bl,"padding-top":ns(Ve,at),"padding-bottom":ns(qe,at),"padding-left":ns(Ze,at),"padding-right":ns(We,at)},Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={color:k,"font-size":ns(H,j),"line-height":ns(N,D),"font-family":O,"font-style":At,"text-transform":ot,"text-decoration":nt,"font-weight":L,...bl,"padding-top":ns(Ve,at),"padding-bottom":ns(qe,at),"padding-left":ns(Ze,at),"padding-right":ns(We,at),"letter-spacing":ns(Vt,Zt)},Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:not(.has-background):hover"]={color:P,"border-color":E},Sa[" .uagb-forms-main-form .uagb-forms-main-submit-button:hover"]={color:P,"border-color":E},wa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:not(.has-background)"]=dl,wa[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={"padding-top":ns($e,it),"padding-bottom":ns(Ke,it),"padding-left":ns(Je,it),"padding-right":ns(Ye,it),"font-size":ns(F,j),"line-height":ns(I,D),"letter-spacing":ns(Wt,Zt),...dl},ka[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:not(.has-background)"]=gl,ka[" .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button"]={"padding-top":ns(Xe,lt),"padding-bottom":ns(et,lt),"padding-left":ns(tt,lt),"padding-right":ns(Qe,lt),"font-size":ns(z,j),"line-height":ns(V,D),...gl,"letter-spacing":ns(qt,Zt)}}let ml="";const yl=".editor-styles-wrapper .uagb-block-"+n;return ml=ae(Sa,yl),"tablet"!==o&&"mobile"!==o||(ml+=ae(wa,""+yl,!0,"tablet"),"mobile"===o&&(ml+=ae(ka,""+yl,!0,"mobile"))),ml}(a,0,G,M),[a,M]);Object(B.useEffect)(()=>{Bs();const e=A;window.addEventListener("load",L(e))},[M]),Object(B.useEffect)(()=>{he(e)},[T,C,S,M]);const L=Object(B.useCallback)(e=>{const t=document.querySelector("iframe[name='editor-canvas']");let a,l;var i;if(t?(a=t.contentDocument.getElementById("block-"+e),l=a.getElementsByClassName("uagb-forms__outer-wrap")):(a=document.getElementById("block-"+e),l=null===(i=a)||void 0===i?void 0:i.getElementsByClassName("uagb-forms__outer-wrap")),l&&l[0]){const e=l[0].children[0].children[0].getElementsByClassName("block-editor-block-list__layout")[0].children;for(let t=0;t<e.length;t++){var o,n,r,s,c,u,p,b,d;if(null!==(o=e[t])&&void 0!==o&&o.classList.contains("uag-col-2")&&null!==(n=e[t+1])&&void 0!==n&&n.classList.contains("uag-col-2")){const a=document.createElement("div");a.className="uag-col-2-wrap uag-col-wrap-"+t,e[t+1].after(a);const i=l[0].getElementsByClassName("uag-col-wrap-"+t);i[0].appendChild(e[t]),i[0].appendChild(e[t])}else if(null!==(r=e[t])&&void 0!==r&&r.classList.contains("uag-col-3")&&null!==(s=e[t+1])&&void 0!==s&&s.classList.contains("uag-col-3")&&null!==(c=e[t+2])&&void 0!==c&&c.classList.contains("uag-col-3")){const a=document.createElement("div");a.className="uag-col-3-wrap uag-col-wrap-"+t,e[t+2].after(a);const i=l[0].getElementsByClassName("uag-col-wrap-"+t);i[0].appendChild(e[t]),i[0].appendChild(e[t]),i[0].appendChild(e[t])}else if(null!==(u=e[t])&&void 0!==u&&u.classList.contains("uag-col-4")&&null!==(p=e[t+1])&&void 0!==p&&p.classList.contains("uag-col-4")&&null!==(b=e[t+2])&&void 0!==b&&b.classList.contains("uag-col-4")&&null!==(d=e[t+3])&&void 0!==d&&d.classList.contains("uag-col-4")){const a=document.createElement("div");a.className="uag-col-4-wrap uag-col-wrap-"+t,e[t+3].after(a);const i=l[0].getElementsByClassName("uag-col-wrap-"+t);i[0].appendChild(e[t]),i[0].appendChild(e[t]),i[0].appendChild(e[t]),i[0].appendChild(e[t])}}}});return U?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:O}),React.createElement(fT,{attributes:a}),t&&React.createElement(sT,e),React.createElement(pT,e)):React.createElement(_T,TT({},e,{variations:R,defaultVariation:E}))});a(219);const wT=ce("successMsg"),kT=ce("errorMsg"),PT=ce("field"),xT=ce("checkBoxToggle"),AT=ce("btn");var GT={block_id:{type:"string"},formPaddingTop:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding"}},formPaddingRight:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding"}},formPaddingBottom:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding"}},formPaddingLeft:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding"}},formPaddingTopTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},formPaddingRightTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},formPaddingBottomTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},formPaddingLeftTab:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},formPaddingTopMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},formPaddingRightMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},formPaddingBottomMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},formPaddingLeftMob:{type:"number",default:25,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},formPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},formPaddingUnitTab:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},formPaddingUnitMob:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},formPaddingLink:{type:"boolean",default:!0},submitButtonText:{type:"string",default:Object(r.__)("Submit","ultimate-addons-for-gutenberg")},formLabel:{type:"string",default:Object(r.__)("Spectra Form","ultimate-addons-for-gutenberg")},buttonAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},buttonAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-tablet"}},buttonAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-align-mobile"}},confirmationType:{type:"string",default:"message"},confirmationMessage:{type:"string",default:Object(r.__)("The form has been submitted successfully!","ultimate-addons-for-gutenberg")},failedMessage:{type:"string",default:Object(r.__)("There has been some error while submitting the form. Please verify all form fields again.","ultimate-addons-for-gutenberg")},failedMessageTextColor:{type:"string",UAGCopyPaste:{styleType:"failed-msg-text-color"},default:""},failedMessageBorderColor:{type:"string",default:"red"},failedMessageBGColor:{type:"string",UAGCopyPaste:{styleType:"failed-msg-bg-color"},default:""},failedMessageBorderStyle:{type:"string",default:"solid"},failedMessageBorderWidth:{type:"number",default:3},confirmationUrl:{type:"string"},sendAfterSubmitEmail:{type:"boolean",default:!0},afterSubmitToEmail:{type:"string",default:""},afterSubmitCcEmail:{type:"string",default:""},afterSubmitBccEmail:{type:"string",default:""},afterSubmitEmailSubject:{type:"string",default:Object(r.__)("Form Submission","ultimate-addons-for-gutenberg")},submitColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"},default:""},submitColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-hover-color"},default:""},submitBgType:{type:"string",UAGCopyPaste:{styleType:"btn-bg-type"},default:"color"},submitBgHoverType:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-type"},default:"color"},submitBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"},default:""},submitBgColorHover:{type:"string",UAGCopyPaste:{styleType:"btn-bg-hover-color"},default:""},buttonSize:{type:"string",default:"medium",UAGCopyPaste:{styleType:"btn-size"}},submitborderStyle:{type:"string"},submitborderWidth:{type:"number"},submitborderRadius:{type:"number",default:3},submitborderColor:{type:"string"},submitborderHoverColor:{type:"string"},hPaddingSubmit:{type:"number",UAGCopyPaste:{styleType:"btn-horizontal-padding"}},vPaddingSubmit:{type:"number",UAGCopyPaste:{styleType:"btn-vertical-padding"}},submitTextloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fontst"}},submitTextFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},submitTextFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},submitTextFontSize:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size"}},submitTextFontSizeType:{type:"string",UAGCopyPaste:{styleType:"btn-font-size-type"},default:"px"},submitTextFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size-tablet"}},submitTextFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"btn-font-size-mobile"}},submitTextLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},submitTextLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},submitTextLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},submitTextLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},labelloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"label-load-google-fonts"}},labelFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"label-font-family"}},labelFontWeight:{type:"string",UAGCopyPaste:{styleType:"label-font-weight"}},labelFontSize:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size"}},labelFontSizeType:{type:"string",UAGCopyPaste:{styleType:"label-font-size-type"},default:"px"},labelFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size-tablet"}},labelFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"label-font-size-mobile"}},labelLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"label-line-height-type"}},labelLineHeight:{type:"number",UAGCopyPaste:{styleType:"label-line-height"}},labelLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"label-line-height-tablet"}},labelLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"label-line-height-mobile"}},labelGap:{type:"number",default:10,UAGCopyPaste:{styleType:"label-bottom-margin"}},labelGapTablet:{type:"number",UAGCopyPaste:{styleType:"label-bottom-margin-tablet"}},labelGapMobile:{type:"number",UAGCopyPaste:{styleType:"label-margin-bottom-mobile"}},labelGapUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-margin-unit"}},inputloadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"input-load-google-fonts"}},inputFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"input-font-family"}},inputFontWeight:{type:"string",UAGCopyPaste:{styleType:"input-font-weight"}},inputFontSize:{type:"number",UAGCopyPaste:{styleType:"input-font-size"}},inputFontSizeType:{type:"string",UAGCopyPaste:{styleType:"input-font-size-type"},default:"px"},inputFontSizeTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"input-font-size-tablet"}},inputFontSizeMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"input-font-size-mobile"}},inputLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"input-line-height-type"}},inputLineHeight:{type:"number",UAGCopyPaste:{styleType:"input-line-height"}},toggleSize:{type:"number",UAGCopyPaste:{styleType:"toggle-size"},default:15},toggleSizeTablet:{type:"number",UAGCopyPaste:{styleType:"toggle-size"}},toggleSizeMobile:{type:"number",UAGCopyPaste:{styleType:"toggle-size"}},toggleWidthSize:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"},default:0},toggleWidthSizeTablet:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"}},toggleWidthSizeMobile:{type:"number",UAGCopyPaste:{styleType:"toggle-width-size"}},toggleColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"toggle-color"}},toggleActiveColor:{type:"string",default:"#017cba",UAGCopyPaste:{styleType:"toggle-active-color"}},toggleDotColor:{type:"string",default:"#1e1e1e",UAGCopyPaste:{styleType:"toggle-dot-color"}},toggleDotActiveColor:{type:"string",default:"#ffffff",UAGCopyPaste:{styleType:"toggle-dot-active-color"}},toggleBorderStyle:{type:"string"},toggleBorderWidth:{type:"number"},toggleBorderRadius:{type:"number"},toggleBorderColor:{type:"string"},toggleBorderActiveColor:{type:"string"},inputLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"input-line-height-tablet"}},inputLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"input-line-height-mobile"}},labelColor:{type:"string",UAGCopyPaste:{styleType:"label-color"},default:""},labelHoverColor:{type:"string",UAGCopyPaste:{styleType:"label-hover-color"},default:""},inputColor:{type:"string",UAGCopyPaste:{styleType:"input-color"},default:""},bgColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-color"},default:""},bgHoverColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-hover-color"},default:""},bgActiveColor:{type:"string",UAGCopyPaste:{styleType:"input-bg-active-color"},default:""},inputplaceholderColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-color"},default:"#abb8c3"},inputplaceholderHoverColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-hover-color"},default:"#abb8c3"},inputplaceholderActiveColor:{type:"string",UAGCopyPaste:{styleType:"input-placeholder-active-color"},default:"#abb8c3"},inputactiveColor:{type:"string",UAGCopyPaste:{styleType:"input-active-color"},default:"#000000"},inputborderStyle:{type:"string",default:"solid"},inputborderWidth:{type:"number",default:1},inputborderRadius:{type:"number",default:3},inputborderColor:{type:"string",default:"#BDBDBD"},inputborderHoverColor:{type:"string"},hPaddingField:{type:"number",default:10,UAGCopyPaste:{styleType:"field-h-padding"}},vPaddingField:{type:"number",default:10,UAGCopyPaste:{styleType:"field-v-padding"}},fieldGap:{type:"number",default:20,UAGCopyPaste:{styleType:"field-row-gap"}},fieldGapTablet:{type:"number",UAGCopyPaste:{styleType:"field-row-gap-tablet"}},fieldGapMobile:{type:"number",UAGCopyPaste:{styleType:"field-row-gap-mobile"}},formStyle:{type:"string",default:"boxed",UAGCopyPaste:{styleType:"form-style"}},overallAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},reCaptchaEnable:{type:"boolean",default:!1},reCaptchaType:{type:"string",default:"v2"},reCaptchaSiteKeyV2:{type:"string",default:""},reCaptchaSecretKeyV2:{type:"string",default:""},reCaptchaSiteKeyV3:{type:"string",default:""},reCaptchaSecretKeyV3:{type:"string",default:""},hidereCaptchaBatch:{type:"boolean",default:!1},successMessageTextColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-color"},default:""},successMessageBGColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-bg-color"},default:""},successMessageBorderColor:{type:"string",UAGCopyPaste:{styleType:"success-msg-border-color"},default:"green"},successMessageBorderStyle:{type:"string",UAGCopyPaste:{styleType:"success-msg-border-style"},default:"solid"},successMessageBorderWidth:{type:"number",UAGCopyPaste:{styleType:"success-msg-border-width"},default:3},captchaMessage:{type:"string",default:Object(r.__)("Please fill up the above captcha.","ultimate-addons-for-gutenberg")},successMessageBorderRadius:{type:"number",default:6,UAGCopyPaste:{styleType:"success-msg-border-radius"}},successMessageHoverBorderColor:{type:"string",default:"yellowgreen",UAGCopyPaste:{styleType:"success-msg-hover-border-color"}},failedMessageBorderRadius:{type:"number",default:6,UAGCopyPaste:{styleType:"failed-msg-border-radius"}},failedMessageHoverBorderColor:{type:"string",default:"deeppink",UAGCopyPaste:{styleType:"failed-msg-hover-border-color"}},paddingBtnTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"},default:"px"},paddingspacingLink:{type:"boolean",default:!1},submitTextTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},submitTextDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},labelTransform:{type:"string",UAGCopyPaste:{styleType:"label-transform"}},labelDecoration:{type:"string",UAGCopyPaste:{styleType:"label-decoration"}},inputTransform:{type:"string",UAGCopyPaste:{styleType:"input-transform"}},inputDecoration:{type:"string",UAGCopyPaste:{styleType:"input-decoration"}},fieldGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-row-gap-type"}},paddingFieldTop:{type:"number",default:12,UAGCopyPaste:{styleType:"field-top-padding"}},paddingFieldRight:{type:"number",default:12,UAGCopyPaste:{styleType:"field-right-padding"}},paddingFieldBottom:{type:"number",default:12,UAGCopyPaste:{styleType:"field-bottom-padding"}},paddingFieldLeft:{type:"number",default:12,UAGCopyPaste:{styleType:"field-left-padding"}},paddingFieldTopTablet:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-tablet"}},paddingFieldRightTablet:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-tablet"}},paddingFieldBottomTablet:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-tablet"}},paddingFieldLeftTablet:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-tablet"}},paddingFieldTopMobile:{type:"number",UAGCopyPaste:{styleType:"field-top-padding-mobile"}},paddingFieldRightMobile:{type:"number",UAGCopyPaste:{styleType:"field-right-padding-mobile"}},paddingFieldBottomMobile:{type:"number",UAGCopyPaste:{styleType:"field-bottom-padding-mobile"}},paddingFieldLeftMobile:{type:"number",UAGCopyPaste:{styleType:"field-left-padding-mobile"}},paddingFieldUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit"}},paddingFieldUnitmobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-mobile"}},paddingFieldUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"field-padding-unit-tablet"}},paddingFieldLink:{type:"boolean",default:!1},toggleSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"toggle-size-type"}},submitTextFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},labelFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"label-font-style"}},inputFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"input-font-style"}},displayLabels:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"display-labels"}},inheritFromTheme:{type:"boolean",default:"enabled"===uagb_blocks_info.btn_inherit_from_theme},isPreview:{type:"boolean",default:!1},...wT,...kT,...PT,...xT,...AT,labelLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},labelLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},labelLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},labelLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},inputLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing"}},inputLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-tablet"}},inputLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"input-letter-spacing-mobile"}},inputLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"input-letter-spacing-type"}},submitTextLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing"}},submitTextLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing-tablet"}},submitTextLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"submit-letter-spacing-mobile"}},submitTextLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"submit-letter-spacing-type"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"btn-bg-gradient-value"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"btn-gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-gradient-angle"}},gradientHValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"btn-hbg-gradient-value"}},gradientHColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"btn-h-gradient-color-1"}},gradientHColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"btn-h-gradient-color-2"}},gradientHType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"btn-h-gradient-color-type"}},selectHGradient:{type:"Boolean",default:!1,UAGCopyPaste:{styleType:"btn-h-gradient-type"}},gradientHLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-location-1"}},gradientHLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"btn-h-gradient-location-2"}},gradientHAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"btn-h-gradient-angle"}}};const MT=ce("field"),RT=ce("btn"),BT=ce("checkBoxToggle");var UT=[{attributes:{block_id:{type:"string"},submitButtonText:{type:"string",default:Object(r.__)("Submit","ultimate-addons-for-gutenberg")},formLabel:{type:"string",default:Object(r.__)("UAG Form","ultimate-addons-for-gutenberg")},buttonAlign:{type:"string",default:"left"},confirmationType:{type:"string",default:"message"},confirmationMessage:{type:"string",default:Object(r.__)("The form has been submitted successfully!","ultimate-addons-for-gutenberg")},failedMessage:{type:"string",default:Object(r.__)("There has been some error while submitting the form. Please verify all form fields again.","ultimate-addons-for-gutenberg")},confirmationUrl:{type:"string"},sendAfterSubmitEmail:{type:"boolean",default:!0},afterSubmitToEmail:{type:"string",default:""},afterSubmitCcEmail:{type:"string",default:""},afterSubmitBccEmail:{type:"string",default:""},afterSubmitEmailSubject:{type:"string",default:Object(r.__)("Form Submission","ultimate-addons-for-gutenberg")},submitColor:{type:"string",default:"#ffffff"},submitColorHover:{type:"string",default:"#000000"},submitBgColor:{type:"string",default:"#000000"},submitBgColorHover:{type:"string",default:"#ffffff"},buttonSize:{type:"string",default:"medium"},submitborderStyle:{type:"string"},submitborderWidth:{type:"number"},submitborderRadius:{type:"number",default:3},submitborderColor:{type:"string"},submitborderHoverColor:{type:"string"},hPaddingSubmit:{type:"number"},vPaddingSubmit:{type:"number"},paddingBtnUnit:{type:"string",default:"px"},mobilePaddingBtnUnit:{type:"string",default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px"},paddingFieldUnit:{type:"string",default:"px"},paddingFieldUnitmobile:{type:"string",default:"px"},paddingFieldUnitTablet:{type:"string",default:"px"},submitTextloadGoogleFonts:{type:"boolean",default:!1},submitTextFontFamily:{type:"string",default:"Default"},submitTextFontWeight:{type:"string"},submitTextFontSubset:{type:"string"},submitTextFontSize:{type:"number",default:15},submitTextFontSizeType:{type:"string",default:"px"},submitTextFontSizeTablet:{type:"number",default:15},submitTextFontSizeMobile:{type:"number",default:15},submitTextLineHeightType:{type:"string",default:"em"},submitTextLineHeight:{type:"number"},submitTextLineHeightTablet:{type:"number"},submitTextLineHeightMobile:{type:"number"},labelloadGoogleFonts:{type:"boolean",default:!1},labelFontFamily:{type:"string",default:"Default"},labelFontWeight:{type:"string"},labelFontSubset:{type:"string"},labelFontSize:{type:"number",default:15},labelFontSizeType:{type:"string",default:"px"},labelFontSizeTablet:{type:"number",default:15},labelFontSizeMobile:{type:"number",default:15},labelLineHeightType:{type:"string",default:"em"},labelLineHeight:{type:"number"},labelLineHeightTablet:{type:"number"},labelLineHeightMobile:{type:"number"},inputloadGoogleFonts:{type:"boolean",default:!1},inputFontFamily:{type:"string",default:"Default"},inputFontWeight:{type:"string"},inputFontSubset:{type:"string"},inputFontSize:{type:"number"},inputFontSizeType:{type:"string",default:"px"},inputFontSizeTablet:{type:"number",default:15},inputFontSizeMobile:{type:"number",default:15},inputLineHeightType:{type:"string",default:"em"},inputLineHeight:{type:"number"},toggleSize:{type:"number",default:15},toggleWidthSize:{type:"number",default:0},toggleActiveColor:{type:"string",default:"#000000"},toggleHeightSize:{type:"number",default:0},inputLineHeightTablet:{type:"number"},inputLineHeightMobile:{type:"number"},labelColor:{type:"string",default:"#000000"},inputColor:{type:"string",default:"#000000"},bgColor:{type:"string"},inputplaceholderColor:{type:"string",default:"#abb8c3"},inputactiveColor:{type:"string",default:"#000000"},inputborderStyle:{type:"string",default:"solid"},inputborderWidth:{type:"number",default:1},inputborderRadius:{type:"number",default:3},inputborderColor:{type:"string",default:"#BDBDBD"},inputborderHoverColor:{type:"string"},hPaddingField:{type:"number",default:10},vPaddingField:{type:"number",default:10},fieldGap:{type:"number",default:20},formStyle:{type:"string",default:"boxed"},overallAlignment:{type:"string",default:"left"},reCaptchaEnable:{type:"boolean",default:!1},reCaptchaType:{type:"string",default:"v2"},reCaptchaSiteKeyV2:{type:"string",default:""},reCaptchaSecretKeyV2:{type:"string",default:""},reCaptchaSiteKeyV3:{type:"string",default:""},reCaptchaSecretKeyV3:{type:"string",default:""},hidereCaptchaBatch:{type:"boolean",default:!1},successMessageTextColor:{type:"string",default:"#000000"},successMessageBGColor:{type:"string",default:"#00800030"},successMessageBorderColor:{type:"string",default:"green"},successMessageBorderStyle:{type:"string",default:"solid"},successMessageBorderWidth:{type:"string",default:"2"},failedMessageTextColor:{type:"string",default:"#000000"},failedMessageBorderColor:{type:"string",default:"red"},failedMessageBGColor:{type:"string",default:"#f5f5f5"},captchaMessage:{type:"string",default:Object(r.__)("Please fill up the above captcha.","ultimate-addons-for-gutenberg")},fieldGapType:{type:"string",default:"px"},toggleSizeType:{type:"string",default:"px"},...MT,...RT,...BT},save(e){const{attributes:t}=e,{block_id:a,formLabel:l,submitButtonText:i,confirmationType:o,confirmationMessage:n,failedMessage:r,reCaptchaEnable:s,reCaptchaType:c,reCaptchaSiteKeyV2:u,reCaptchaSecretKeyV2:p,reCaptchaSiteKeyV3:b,reCaptchaSecretKeyV3:d,buttonSize:g}=t;return React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+a,`uagb-forms__${g}-btn`)},React.createElement("form",{className:"uagb-forms-main-form",method:"post",name:"uagb-form-"+a},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-forms-form-hidden-data"},s&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_label",value:l}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_id",value:"uagb-form-"+a})),s&&"v2"===c&&u&&p&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":u}),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+a})),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap"},React.createElement("button",{className:"uagb-forms-main-submit-button"},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:"uagb-forms-main-submit-button-text"})))),"message"===o&&React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-success-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,n)),React.createElement("div",{className:Be()("uagb-forms-failed-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,r))))}},{attributes:GT,save:function(e){const{attributes:t}=e,{block_id:a,formLabel:l,submitButtonText:i,confirmationType:o,confirmationMessage:n,failedMessage:r,reCaptchaEnable:s,reCaptchaType:c,buttonSize:u}=t;return React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+a,`uagb-forms__${u}-btn`)},React.createElement("form",{className:"uagb-forms-main-form",method:"post",autoComplete:"on",name:"uagb-form-"+a},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-forms-form-hidden-data"},s&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_label",value:l}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_id",value:"uagb-form-"+a})),s&&"v2"===c&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":""})),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+a}),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap wp-block-button"},React.createElement("button",{className:"uagb-forms-main-submit-button wp-block-button__link"},React.createElement(ge.RichText.Content,{tagName:"div",value:i.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-forms-main-submit-button-text"})))),"message"===o&&React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-success-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,n)),React.createElement("div",{className:Be()("uagb-forms-failed-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,r))))}},{attributes:GT,save:function(e){const{attributes:t}=e,{block_id:a,formLabel:l,submitButtonText:i,confirmationType:o,confirmationMessage:n,failedMessage:r,reCaptchaEnable:s,reCaptchaType:c,buttonSize:u}=t;if(0!==e.innerBlocks.length)return React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+a,`uagb-forms__${u}-btn`)},React.createElement("form",{className:"uagb-forms-main-form",method:"post",autoComplete:"on",name:"uagb-form-"+a},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-forms-form-hidden-data"},s&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_label",value:l}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_id",value:"uagb-form-"+a})),s&&"v2"===c&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":""})),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+a}),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap wp-block-button"},React.createElement("button",{className:"uagb-forms-main-submit-button wp-block-button__link"},React.createElement(ge.RichText.Content,{tagName:"div",value:i.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-forms-main-submit-button-text"})))),"message"===o&&React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-success-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,n)),React.createElement("div",{className:Be()("uagb-forms-failed-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,r))))}},{attributes:GT,save:function(e){const{attributes:t}=e,{block_id:a,formLabel:l,submitButtonText:i,confirmationType:o,confirmationMessage:n,failedMessage:r,reCaptchaEnable:s,reCaptchaType:c,buttonSize:u}=t;return React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+a,`uagb-forms__${u}-btn`)},React.createElement("form",{className:"uagb-forms-main-form",method:"post",autoComplete:"on",name:"uagb-form-"+a},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-forms-form-hidden-data"},s&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_label",value:l}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_id",value:"uagb-form-"+a})),s&&"v2"===c&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":""})),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+a}),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap wp-block-button"},React.createElement("button",{className:"uagb-forms-main-submit-button wp-block-button__link"},React.createElement(ge.RichText.Content,{tagName:"div",value:i.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-forms-main-submit-button-text"})))),o&&React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-success-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,n)),React.createElement("div",{className:Be()("uagb-forms-failed-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,r))))}}];let ET={};ET=Object(j.applyFilters)("uagb/forms",ws(ET)),Object(be.registerBlockType)("uagb/forms",{...ET,title:Object(r.__)("Form","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add easily customizable forms to gather information.","ultimate-addons-for-gutenberg"),icon:se.forms,keywords:[Object(r.__)("forms","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],attributes:oa,category:uagb_blocks_info.category,variations:vT,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form"}):React.createElement(ST,e),supports:{anchor:!0,html:!1},deprecated:UT,save:function(e){const{attributes:t}=e,{block_id:a,formLabel:l,submitButtonText:i,confirmationType:o,confirmationMessage:n,failedMessage:r,reCaptchaEnable:s,reCaptchaType:c,buttonSize:u,variationSelected:p,inheritFromTheme:b,submitButtonType:d}=t,g=b&&"secondary"===d,m=g?{borderWidth:"revert-layer"}:{},y="uagb-forms-main-submit-button "+(g?"ast-outline-button":"wp-block-button__link");if(p)return React.createElement("div",{className:Be()("uagb-forms__outer-wrap","uagb-block-"+a,`uagb-forms__${u}-btn`)},React.createElement("form",{className:"uagb-forms-main-form",method:"post",autoComplete:"on",name:"uagb-form-"+a},React.createElement(ge.InnerBlocks.Content,null),React.createElement("div",{className:"uagb-forms-form-hidden-data"},s&&React.createElement("input",{type:"hidden",id:"g-recaptcha-response",className:"uagb-forms-recaptcha"}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_label",value:l}),React.createElement("input",{type:"hidden",className:"uagb_forms_form_id",value:"uagb-form-"+a})),s&&"v2"===c&&React.createElement(React.Fragment,null,React.createElement("div",{className:"g-recaptcha uagb-forms-field-set","data-sitekey":""})),React.createElement("div",{className:"uagb-form-reacaptcha-error-"+a}),React.createElement("div",{className:"uagb-forms-main-submit-button-wrap wp-block-button"},React.createElement("button",{className:y,style:m},React.createElement(ge.RichText.Content,{tagName:"div",value:i.replace(/<(?!br\s*V?)[^>]+>/g,""),className:"uagb-forms-main-submit-button-text"})))),o&&React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-success-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,n)),React.createElement("div",{className:Be()("uagb-forms-failed-message-"+a,"uagb-forms-submit-message-hide")},React.createElement("span",null,r))))}});var OT,LT=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{nameRequired:l,placeholder:i,autocomplete:o}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Autocomplete","ultimate-addons-for-gutenberg"),data:{value:o,label:"autocomplete"},setAttributes:a,help:Object(r.__)("Duplicated name fields must be assigned distinct label names to send the data.","ultimate-addons-for-gutenberg")},React.createElement("option",{value:"off"},Object(r.__)("Off","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"name"},Object(r.__)("Full Name","ultimate-addons-for-gutenberg")),React.createElement("optgroup",{label:"Name Breakdown"},React.createElement("option",{value:"honorific-prefix"},Object(r.__)("Prefix","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"given-name"},Object(r.__)("First Name","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"additional-name"},Object(r.__)("Middle Name","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"family-name"},Object(r.__)("Last Name","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"honorific-suffix"},Object(r.__)("Suffix","ultimate-addons-for-gutenberg"))),React.createElement("option",{value:"username"},Object(r.__)("Username","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"nickname"},Object(r.__)("Nickname","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"organization"},Object(r.__)("Company Name","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"organization-title"},Object(r.__)("Job Title","ultimate-addons-for-gutenberg")),React.createElement("optgroup",{label:"Address Lines"},React.createElement("option",{value:"address-line1"},Object(r.__)("Address Line 1","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"address-line2"},Object(r.__)("Address Line 2","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"address-line3"},Object(r.__)("Address Line 3","ultimate-addons-for-gutenberg"))),React.createElement("option",{value:"country-name"},Object(r.__)("Country","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"postal-code"},Object(r.__)("Postal / ZIP Code","ultimate-addons-for-gutenberg"))),React.createElement(Fs,{label:"Placeholder",value:i,data:{value:i,label:"placeholder"},setAttributes:a,onChange:e=>a({placeholder:e}),placeholder:Object(r.__)("Placeholder","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({nameRequired:!l})}))),React.createElement(il,rl)))}),HT=a(116),jT=0,FT={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},zT={};zT.locals=HT.a.locals||{},zT.use=function(){return jT++||(OT=ke()(HT.a,FT)),zT},zT.unuse=function(){jT>0&&!--jT&&(OT(),OT=null)};var DT=zT,NT=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(DT.use(),()=>{DT.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{block_id:l,nameRequired:i,name:o,placeholder:n}=t,s=i?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-name-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Name","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({name:e}),className:`uagb-forms-name-label ${s} uagb-forms-input-label`,multiline:!1,id:l}),React.createElement("input",{type:"text",placeholder:n,required:i,className:"uagb-forms-name-input uagb-forms-input",name:l})))}),IT=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(LT,e),React.createElement(NT,e))),VT=[{attributes:{block_id:{type:"string"},nameRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Name","ultimate-addons-for-gutenberg")},placeholder:{type:"string",default:Object(r.__)("John Doe","ultimate-addons-for-gutenberg")}},save(e){const{block_id:t,nameRequired:a,name:l,placeholder:i}=e.attributes,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-name-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-name-label ${o} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"text",placeholder:i,required:a,className:"uagb-forms-name-input uagb-forms-input",name:t}))}}],WT={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},nameRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Name","ultimate-addons-for-gutenberg")},placeholder:{type:"string",default:Object(r.__)("John Doe","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"name"}},save:e=>{const{attributes:{block_id:t,nameRequired:a,name:l,placeholder:i,autocomplete:o}}=e,n=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-name-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-name-label ${n} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"text",placeholder:i,required:a,className:"uagb-forms-name-input uagb-forms-input",name:t,autoComplete:o}))}};let qT={};qT=Object(j.applyFilters)("uagb/forms-name",ws(qT)),Object(be.registerBlockType)("uagb/forms-name",{...qT,title:Object(r.__)("Name","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a name field in your form.","ultimate-addons-for-gutenberg"),icon:se.name,parent:["uagb/forms"],attributes:ca,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-field",isChildren:!0}):React.createElement(IT,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,nameRequired:l,name:i,placeholder:o,autocomplete:n}=t,r=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-name-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-name-label ${r} uagb-forms-input-label`,id:a}),React.createElement("input",{type:"text",placeholder:o,required:l,className:"uagb-forms-name-input uagb-forms-input",name:a,autoComplete:n}))},deprecated:[WT,VT]});var ZT,$T=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{required:l,placeholder:i,autocomplete:o}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Autocomplete","ultimate-addons-for-gutenberg"),data:{value:o,label:"autocomplete"},setAttributes:a,options:[{label:Object(r.__)("Off","ultimate-addons-for-gutenberg"),value:"off"},{label:Object(r.__)("email","ultimate-addons-for-gutenberg"),value:"email"}]}),React.createElement(Fs,{label:"Placeholder",value:i,data:{value:i,label:"placeholder"},setAttributes:a,onChange:e=>a({placeholder:e}),placeholder:Object(r.__)("Placeholder","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({required:!l})}))),React.createElement(il,rl)))}),YT=a(117),KT=0,JT={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},XT={};XT.locals=YT.a.locals||{},XT.use=function(){return KT++||(ZT=ke()(YT.a,JT)),XT},XT.unuse=function(){KT>0&&!--KT&&(ZT(),ZT=null)};var QT=XT,eC=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(QT.use(),()=>{QT.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{block_id:l,name:i,required:o,placeholder:n}=t,s=o?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-email-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Email","ultimate-addons-for-gutenberg"),value:i,onChange:e=>a({name:e}),className:`uagb-forms-email-label ${s} uagb-forms-input-label`,multiline:!1,id:l}),React.createElement("input",{type:"text",className:"uagb-forms-email-input uagb-forms-input",placeholder:n,required:o,name:l})))}),tC=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement($T,e),React.createElement(eC,e))),aC={attributes:{block_id:{type:"string"},name:{type:"string",default:Object(r.__)("Email","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("example@mail.com","ultimate-addons-for-gutenberg")}},save(e){const{block_id:t,name:a,required:l,placeholder:i}=e.attributes,o=l?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-email-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:a,className:`uagb-forms-email-label ${o} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"email",className:"uagb-forms-email-input uagb-forms-input",placeholder:i,required:l,name:t}))}},lC={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},name:{type:"string",default:Object(r.__)("Email","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("example@mail.com","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"email"}},save:e=>{const{attributes:{block_id:t,name:a,required:l,placeholder:i,autocomplete:o}}=e,n=l?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-email-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:a,className:`uagb-forms-email-label ${n} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"email",className:"uagb-forms-email-input uagb-forms-input",placeholder:i,required:l,name:t,autoComplete:o}))}};let iC={};iC=Object(j.applyFilters)("uagb/forms-email",ws(iC)),Object(be.registerBlockType)("uagb/forms-email",{...iC,title:Object(r.__)("Email","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add an email address field in your form.","ultimate-addons-for-gutenberg"),icon:se.email,parent:["uagb/forms"],attributes:ra,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-field",isChildren:!0}):React.createElement(tC,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,name:l,required:i,placeholder:o,autocomplete:n}=t,r=i?"required":"";return React.createElement("div",{className:Be()("uagb-forms-email-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-email-label ${r} uagb-forms-input-label`,id:a}),React.createElement("input",{type:"email",className:"uagb-forms-email-input uagb-forms-input",placeholder:o,required:i,name:a,autoComplete:n}))},deprecated:[lC,aC]});var oC=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{hidden_field_value:l}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Fs,{label:Object(r.__)("Value","ultimate-addons-for-gutenberg"),value:l,data:{value:l,label:"hidden_field_value"},setAttributes:a,onChange:e=>a({hidden_field_value:e})}))),React.createElement(il,rl))))}),nC=Object(B.memo)(e=>{const{attributes:t,isSelected:a}=e,{block_id:l,hidden_field_name:i,hidden_field_value:o}=t,n=i.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-hidden-wrap","uagb-block-"+l)},a&&React.createElement("input",{type:"text",className:"uagb-forms-hidden-input",onChange:t=>{const{setAttributes:a}=e;a({hidden_field_name:t.target.value})},value:i}),!a&&React.createElement(React.Fragment,null,React.createElement("label",{className:"uagb-forms-hidden-label uagb-form-hidden-"+n,htmlFor:n},i),React.createElement("input",{id:n,type:"hidden",className:"uagb-forms-hidden-input",value:o}))))}),rC=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(oC,e),React.createElement(nC,e))),sC=[{attributes:sa,save(e){const{block_id:t,hidden_field_value:a}=e.attributes;return React.createElement("div",{className:Be()("uagb-forms-hidden-wrap","uagb-block-"+t)},React.createElement("input",{type:"hidden",className:"uagb-forms-hidden-input",value:a}))}}];let cC={};cC=Object(j.applyFilters)("uagb/forms-hidden",ws(cC)),Object(be.registerBlockType)("uagb/forms-hidden",{...cC,title:Object(r.__)("Hidden","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a hidden field in your form to pass data.","ultimate-addons-for-gutenberg"),icon:se.hidden,parent:["uagb/forms"],attributes:sa,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-hidden",isChildren:!0}):React.createElement(rC,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,hidden_field_value:l,hidden_field_name:i}=t;return React.createElement("div",{className:Be()("uagb-forms-hidden-wrap","uagb-block-"+a)},React.createElement("input",{type:"hidden",id:"hidden",className:"uagb-forms-hidden-input",value:l,name:i}))},deprecated:sC});var uC,pC={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},phoneName:{type:"string",default:Object(r.__)("Phone","ultimate-addons-for-gutenberg")},phoneRequired:{type:"boolean",default:!1},pattern:{type:"string",default:Object(r.__)("[0-9]{3}s?[0-9]{3}s?[0-9]{4}","ultimate-addons-for-gutenberg")},selectPhoneCode:{type:"string",default:"+44"},autocomplete:{type:"string",default:"tel-national"}},bC=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{phoneRequired:l,pattern:i,autocomplete:o}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Autocomplete","ultimate-addons-for-gutenberg"),data:{value:o,label:"autocomplete"},setAttributes:a,options:[{label:Object(r.__)("Off","ultimate-addons-for-gutenberg"),value:"off"},{label:Object(r.__)("Phone","ultimate-addons-for-gutenberg"),value:"tel-national"}]}),React.createElement(Pi,{label:Object(r.__)("Pattern","ultimate-addons-for-gutenberg"),data:{value:i,label:"pattern"},setAttributes:a,options:[{label:"None",value:""},{label:"123-45-678",value:Object(r.__)("[0-9]{3}-?[0-9]{2}-?[0-9]{3}","ultimate-addons-for-gutenberg")},{label:"123-456-7890",value:Object(r.__)("[0-9]{3}-?[0-9]{3}-?[0-9]{4}","ultimate-addons-for-gutenberg")},{label:"123 456 7890",value:Object(r.__)("[0-9]{3}s?[0-9]{3}s?[0-9]{4}","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({phoneRequired:!l})}))),React.createElement(il,rl)))}),dC=[React.createElement("option",{key:"","data-countryCode":"GB",value:"+44"},"UK (+44)"),React.createElement("option",{key:"","data-countryCode":"US",value:"+1"},"USA / Canada (+1)"),React.createElement("option",{key:"","data-countryCode":"DZ",value:"+213"},"Algeria (+213)"),React.createElement("option",{key:"","data-countryCode":"AD",value:"+376"},"Andorra (+376)"),React.createElement("option",{key:"","data-countryCode":"AO",value:"+244"},"Angola (+244)"),React.createElement("option",{key:"","data-countryCode":"AI",value:"+1264"},"Anguilla (+1264)"),React.createElement("option",{key:"","data-countryCode":"AG",value:"+1268"},"Antigua & Barbuda (+1268)"),React.createElement("option",{key:"","data-countryCode":"AR",value:"+54"},"Argentina (+54)"),React.createElement("option",{key:"","data-countryCode":"AM",value:"+374"},"Armenia (+374)"),React.createElement("option",{key:"","data-countryCode":"AW",value:"+297"},"Aruba (+297)"),React.createElement("option",{key:"","data-countryCode":"AU",value:"+61"},"Australia (+61)"),React.createElement("option",{key:"","data-countryCode":"AT",value:"+43"},"Austria (+43)"),React.createElement("option",{key:"","data-countryCode":"AZ",value:"+994"},"Azerbaijan (+994)"),React.createElement("option",{key:"","data-countryCode":"BS",value:"+1242"},"Bahamas (+1242)"),React.createElement("option",{key:"","data-countryCode":"BH",value:"+973"},"Bahrain (+973)"),React.createElement("option",{key:"","data-countryCode":"BD",value:"+880"},"Bangladesh (+880)"),React.createElement("option",{key:"","data-countryCode":"BB",value:"+1246"},"Barbados (+1246)"),React.createElement("option",{key:"","data-countryCode":"BY",value:"+375"},"Belarus (+375)"),React.createElement("option",{key:"","data-countryCode":"BE",value:"+32"},"Belgium (+32)"),React.createElement("option",{key:"","data-countryCode":"BZ",value:"+501"},"Belize (+501)"),React.createElement("option",{key:"","data-countryCode":"BJ",value:"+229"},"Benin (+229)"),React.createElement("option",{key:"","data-countryCode":"BM",value:"+1441"},"Bermuda (+1441)"),React.createElement("option",{key:"","data-countryCode":"BT",value:"+975"},"Bhutan (+975)"),React.createElement("option",{key:"","data-countryCode":"BO",value:"+591"},"Bolivia (+591)"),React.createElement("option",{key:"","data-countryCode":"BA",value:"+387"},"Bosnia Herzegovina (+387)"),React.createElement("option",{key:"","data-countryCode":"BW",value:"+267"},"Botswana (+267)"),React.createElement("option",{key:"","data-countryCode":"BR",value:"+55"},"Brazil (+55)"),React.createElement("option",{key:"","data-countryCode":"BN",value:"+673"},"Brunei (+673)"),React.createElement("option",{key:"","data-countryCode":"BG",value:"+359"},"Bulgaria (+359)"),React.createElement("option",{key:"","data-countryCode":"BF",value:"+226"},"Burkina Faso (+226)"),React.createElement("option",{key:"","data-countryCode":"BI",value:"+257"},"Burundi (+257)"),React.createElement("option",{key:"","data-countryCode":"KH",value:"+855"},"Cambodia (+855)"),React.createElement("option",{key:"","data-countryCode":"CM",value:"+237"},"Cameroon (+237)"),React.createElement("option",{key:"","data-countryCode":"CV",value:"+238"},"Cape Verde Islands (+238)"),React.createElement("option",{key:"","data-countryCode":"KY",value:"+1345"},"Cayman Islands (+1345)"),React.createElement("option",{key:"","data-countryCode":"CF",value:"+236"},"Central African Republic (+236)"),React.createElement("option",{key:"","data-countryCode":"CL",value:"+56"},"Chile (+56)"),React.createElement("option",{key:"","data-countryCode":"CN",value:"+86"},"China (+86)"),React.createElement("option",{key:"","data-countryCode":"CO",value:"+57"},"Colombia (+57)"),React.createElement("option",{key:"","data-countryCode":"KM",value:"+269"},"Comoros (+269)"),React.createElement("option",{key:"","data-countryCode":"CG",value:"+242"},"Congo (+242)"),React.createElement("option",{key:"","data-countryCode":"CK",value:"+682"},"Cook Islands (+682)"),React.createElement("option",{key:"","data-countryCode":"CR",value:"+506"},"Costa Rica (+506)"),React.createElement("option",{key:"","data-countryCode":"HR",value:"+385"},"Croatia (+385)"),React.createElement("option",{key:"","data-countryCode":"CU",value:"+53"},"Cuba (+53)"),React.createElement("option",{key:"","data-countryCode":"CY",value:"+90392"},"Cyprus North (+90392)"),React.createElement("option",{key:"","data-countryCode":"CY",value:"+357"},"Cyprus South (+357)"),React.createElement("option",{key:"","data-countryCode":"CZ",value:"+420"},"Czech Republic (+420)"),React.createElement("option",{key:"","data-countryCode":"DK",value:"+45"},"Denmark (+45)"),React.createElement("option",{key:"","data-countryCode":"DJ",value:"+253"},"Djibouti (+253)"),React.createElement("option",{key:"","data-countryCode":"DM",value:"+1809"},"Dominica (+1809)"),React.createElement("option",{key:"","data-countryCode":"DO",value:"+1809"},"Dominican Republic (+1809)"),React.createElement("option",{key:"","data-countryCode":"EC",value:"+593"},"Ecuador (+593)"),React.createElement("option",{key:"","data-countryCode":"EG",value:"+20"},"Egypt (+20)"),React.createElement("option",{key:"","data-countryCode":"SV",value:"+503"},"El Salvador (+503)"),React.createElement("option",{key:"","data-countryCode":"GQ",value:"+240"},"Equatorial Guinea (+240)"),React.createElement("option",{key:"","data-countryCode":"ER",value:"+291"},"Eritrea (+291)"),React.createElement("option",{key:"","data-countryCode":"EE",value:"+372"},"Estonia (+372)"),React.createElement("option",{key:"","data-countryCode":"ET",value:"+251"},"Ethiopia (+251)"),React.createElement("option",{key:"","data-countryCode":"FK",value:"+500"},"Falkland Islands (+500)"),React.createElement("option",{key:"","data-countryCode":"FO",value:"+298"},"Faroe Islands (+298)"),React.createElement("option",{key:"","data-countryCode":"FJ",value:"+679"},"Fiji (+679)"),React.createElement("option",{key:"","data-countryCode":"FI",value:"+358"},"Finland (+358)"),React.createElement("option",{key:"","data-countryCode":"FR",value:"+33"},"France (+33)"),React.createElement("option",{key:"","data-countryCode":"GF",value:"+594"},"French Guiana (+594)"),React.createElement("option",{key:"","data-countryCode":"PF",value:"+689"},"French Polynesia (+689)"),React.createElement("option",{key:"","data-countryCode":"GA",value:"+241"},"Gabon (+241)"),React.createElement("option",{key:"","data-countryCode":"GM",value:"+220"},"Gambia (+220)"),React.createElement("option",{key:"","data-countryCode":"GE",value:"+7880"},"Georgia (+7880)"),React.createElement("option",{key:"","data-countryCode":"DE",value:"+49"},"Germany (+49)"),React.createElement("option",{key:"","data-countryCode":"GH",value:"+233"},"Ghana (+233)"),React.createElement("option",{key:"","data-countryCode":"GI",value:"+350"},"Gibraltar (+350)"),React.createElement("option",{key:"","data-countryCode":"GR",value:"+30"},"Greece (+30)"),React.createElement("option",{key:"","data-countryCode":"GL",value:"+299"},"Greenland (+299)"),React.createElement("option",{key:"","data-countryCode":"GD",value:"+1473"},"Grenada (+1473)"),React.createElement("option",{key:"","data-countryCode":"GP",value:"+590"},"Guadeloupe (+590)"),React.createElement("option",{key:"","data-countryCode":"GU",value:"+671"},"Guam (+671)"),React.createElement("option",{key:"","data-countryCode":"GT",value:"+502"},"Guatemala (+502)"),React.createElement("option",{key:"","data-countryCode":"GN",value:"+224"},"Guinea (+224)"),React.createElement("option",{key:"","data-countryCode":"GW",value:"+245"},"Guinea - Bissau (+245)"),React.createElement("option",{key:"","data-countryCode":"GY",value:"+592"},"Guyana (+592)"),React.createElement("option",{key:"","data-countryCode":"HT",value:"+509"},"Haiti (+509)"),React.createElement("option",{key:"","data-countryCode":"HN",value:"+504"},"Honduras (+504)"),React.createElement("option",{key:"","data-countryCode":"HK",value:"+852"},"Hong Kong (+852)"),React.createElement("option",{key:"","data-countryCode":"HU",value:"+36"},"Hungary (+36)"),React.createElement("option",{key:"","data-countryCode":"IS",value:"+354"},"Iceland (+354)"),React.createElement("option",{key:"","data-countryCode":"IN",value:"+91"},"India (+91)"),React.createElement("option",{key:"","data-countryCode":"ID",value:"+62"},"Indonesia (+62)"),React.createElement("option",{key:"","data-countryCode":"IR",value:"+98"},"Iran (+98)"),React.createElement("option",{key:"","data-countryCode":"IQ",value:"+964"},"Iraq (+964)"),React.createElement("option",{key:"","data-countryCode":"IE",value:"+353"},"Ireland (+353)"),React.createElement("option",{key:"","data-countryCode":"IL",value:"+972"},"Israel (+972)"),React.createElement("option",{key:"","data-countryCode":"IT",value:"+39"},"Italy (+39)"),React.createElement("option",{key:"","data-countryCode":"JM",value:"+1876"},"Jamaica (+1876)"),React.createElement("option",{key:"","data-countryCode":"JP",value:"+81"},"Japan (+81)"),React.createElement("option",{key:"","data-countryCode":"JO",value:"+962"},"Jordan (+962)"),React.createElement("option",{key:"","data-countryCode":"KZ",value:"+7"},"Kazakhstan (+7)"),React.createElement("option",{key:"","data-countryCode":"KE",value:"+254"},"Kenya (+254)"),React.createElement("option",{key:"","data-countryCode":"KI",value:"+686"},"Kiribati (+686)"),React.createElement("option",{key:"","data-countryCode":"KP",value:"+850"},"Korea North (+850)"),React.createElement("option",{key:"","data-countryCode":"KR",value:"+82"},"Korea South (+82)"),React.createElement("option",{key:"","data-countryCode":"KW",value:"+965"},"Kuwait (+965)"),React.createElement("option",{key:"","data-countryCode":"KG",value:"+996"},"Kyrgyzstan (+996)"),React.createElement("option",{key:"","data-countryCode":"LA",value:"+856"},"Laos (+856)"),React.createElement("option",{key:"","data-countryCode":"LV",value:"+371"},"Latvia (+371)"),React.createElement("option",{key:"","data-countryCode":"LB",value:"+961"},"Lebanon (+961)"),React.createElement("option",{key:"","data-countryCode":"LS",value:"+266"},"Lesotho (+266)"),React.createElement("option",{key:"","data-countryCode":"LR",value:"+231"},"Liberia (+231)"),React.createElement("option",{key:"","data-countryCode":"LY",value:"+218"},"Libya (+218)"),React.createElement("option",{key:"","data-countryCode":"LI",value:"+417"},"Liechtenstein (+417)"),React.createElement("option",{key:"","data-countryCode":"LT",value:"+370"},"Lithuania (+370)"),React.createElement("option",{key:"","data-countryCode":"LU",value:"+352"},"Luxembourg (+352)"),React.createElement("option",{key:"","data-countryCode":"MO",value:"+853"},"Macao (+853)"),React.createElement("option",{key:"","data-countryCode":"MK",value:"+389"},"Macedonia (+389)"),React.createElement("option",{key:"","data-countryCode":"MG",value:"+261"},"Madagascar (+261)"),React.createElement("option",{key:"","data-countryCode":"MW",value:"+265"},"Malawi (+265)"),React.createElement("option",{key:"","data-countryCode":"MY",value:"+60"},"Malaysia (+60)"),React.createElement("option",{key:"","data-countryCode":"MV",value:"+960"},"Maldives (+960)"),React.createElement("option",{key:"","data-countryCode":"ML",value:"+223"},"Mali (+223)"),React.createElement("option",{key:"","data-countryCode":"MT",value:"+356"},"Malta (+356)"),React.createElement("option",{key:"","data-countryCode":"MH",value:"+692"},"Marshall Islands (+692)"),React.createElement("option",{key:"","data-countryCode":"MQ",value:"+596"},"Martinique (+596)"),React.createElement("option",{key:"","data-countryCode":"MR",value:"+222"},"Mauritania (+222)"),React.createElement("option",{key:"","data-countryCode":"YT",value:"+269"},"Mayotte (+269)"),React.createElement("option",{key:"","data-countryCode":"MX",value:"+52"},"Mexico (+52)"),React.createElement("option",{key:"","data-countryCode":"FM",value:"+691"},"Micronesia (+691)"),React.createElement("option",{key:"","data-countryCode":"MD",value:"+373"},"Moldova (+373)"),React.createElement("option",{key:"","data-countryCode":"MC",value:"+377"},"Monaco (+377)"),React.createElement("option",{key:"","data-countryCode":"MN",value:"+976"},"Mongolia (+976)"),React.createElement("option",{key:"","data-countryCode":"MS",value:"+1664"},"Montserrat (+1664)"),React.createElement("option",{key:"","data-countryCode":"MA",value:"+212"},"Morocco (+212)"),React.createElement("option",{key:"","data-countryCode":"MZ",value:"+258"},"Mozambique (+258)"),React.createElement("option",{key:"","data-countryCode":"MN",value:"+95"},"Myanmar (+95)"),React.createElement("option",{key:"","data-countryCode":"NA",value:"+264"},"Namibia (+264)"),React.createElement("option",{key:"","data-countryCode":"NR",value:"+674"},"Nauru (+674)"),React.createElement("option",{key:"","data-countryCode":"NP",value:"+977"},"Nepal (+977)"),React.createElement("option",{key:"","data-countryCode":"NL",value:"+31"},"Netherlands (+31)"),React.createElement("option",{key:"","data-countryCode":"NC",value:"+687"},"New Caledonia (+687)"),React.createElement("option",{key:"","data-countryCode":"NZ",value:"+64"},"New Zealand (+64)"),React.createElement("option",{key:"","data-countryCode":"NI",value:"+505"},"Nicaragua (+505)"),React.createElement("option",{key:"","data-countryCode":"NE",value:"+227"},"Niger (+227)"),React.createElement("option",{key:"","data-countryCode":"NG",value:"+234"},"Nigeria (+234)"),React.createElement("option",{key:"","data-countryCode":"NU",value:"+683"},"Niue (+683)"),React.createElement("option",{key:"","data-countryCode":"NF",value:"+672"},"Norfolk Islands (+672)"),React.createElement("option",{key:"","data-countryCode":"NP",value:"+670"},"Northern Marianas (+670)"),React.createElement("option",{key:"","data-countryCode":"NO",value:"+47"},"Norway (+47)"),React.createElement("option",{key:"","data-countryCode":"OM",value:"+968"},"Oman (+968)"),React.createElement("option",{key:"","data-countryCode":"PW",value:"+680"},"Palau (+680)"),React.createElement("option",{key:"","data-countryCode":"PA",value:"+507"},"Panama (+507)"),React.createElement("option",{key:"","data-countryCode":"PG",value:"+675"},"Papua New Guinea (+675)"),React.createElement("option",{key:"","data-countryCode":"PY",value:"+595"},"Paraguay (+595)"),React.createElement("option",{key:"","data-countryCode":"PE",value:"+51"},"Peru (+51)"),React.createElement("option",{key:"","data-countryCode":"PH",value:"+63"},"Philippines (+63)"),React.createElement("option",{key:"","data-countryCode":"PL",value:"+48"},"Poland (+48)"),React.createElement("option",{key:"","data-countryCode":"PT",value:"+351"},"Portugal (+351)"),React.createElement("option",{key:"","data-countryCode":"PR",value:"+1787"},"Puerto Rico (+1787)"),React.createElement("option",{key:"","data-countryCode":"QA",value:"+974"},"Qatar (+974)"),React.createElement("option",{key:"","data-countryCode":"RE",value:"+262"},"Reunion (+262)"),React.createElement("option",{key:"","data-countryCode":"RO",value:"+40"},"Romania (+40)"),React.createElement("option",{key:"","data-countryCode":"RU",value:"+7"},"Russia (+7)"),React.createElement("option",{key:"","data-countryCode":"RW",value:"+250"},"Rwanda (+250)"),React.createElement("option",{key:"","data-countryCode":"SM",value:"+378"},"San Marino (+378)"),React.createElement("option",{key:"","data-countryCode":"ST",value:"+239"},"Sao Tome & Principe (+239)"),React.createElement("option",{key:"","data-countryCode":"SA",value:"+966"},"Saudi Arabia (+966)"),React.createElement("option",{key:"","data-countryCode":"SN",value:"+221"},"Senegal (+221)"),React.createElement("option",{key:"","data-countryCode":"CS",value:"+381"},"Serbia (+381)"),React.createElement("option",{key:"","data-countryCode":"SC",value:"+248"},"Seychelles (+248)"),React.createElement("option",{key:"","data-countryCode":"SL",value:"+232"},"Sierra Leone (+232)"),React.createElement("option",{key:"","data-countryCode":"SG",value:"+65"},"Singapore (+65)"),React.createElement("option",{key:"","data-countryCode":"SK",value:"+421"},"Slovak Republic (+421)"),React.createElement("option",{key:"","data-countryCode":"SI",value:"+386"},"Slovenia (+386)"),React.createElement("option",{key:"","data-countryCode":"SB",value:"+677"},"Solomon Islands (+677)"),React.createElement("option",{key:"","data-countryCode":"SO",value:"+252"},"Somalia (+252)"),React.createElement("option",{key:"","data-countryCode":"ZA",value:"+27"},"South Africa (+27)"),React.createElement("option",{key:"","data-countryCode":"ES",value:"+34"},"Spain (+34)"),React.createElement("option",{key:"","data-countryCode":"LK",value:"+94"},"Sri Lanka (+94)"),React.createElement("option",{key:"","data-countryCode":"SH",value:"+290"},"St. Helena (+290)"),React.createElement("option",{key:"","data-countryCode":"KN",value:"+1869"},"St. Kitts (+1869)"),React.createElement("option",{key:"","data-countryCode":"SC",value:"+1758"},"St. Lucia (+1758)"),React.createElement("option",{key:"","data-countryCode":"SD",value:"+249"},"Sudan (+249)"),React.createElement("option",{key:"","data-countryCode":"SR",value:"+597"},"Suriname (+597)"),React.createElement("option",{key:"","data-countryCode":"SZ",value:"+268"},"Swaziland (+268)"),React.createElement("option",{key:"","data-countryCode":"SE",value:"+46"},"Sweden (+46)"),React.createElement("option",{key:"","data-countryCode":"CH",value:"+41"},"Switzerland (+41)"),React.createElement("option",{key:"","data-countryCode":"SI",value:"+963"},"Syria (+963)"),React.createElement("option",{key:"","data-countryCode":"TW",value:"+886"},"Taiwan (+886)"),React.createElement("option",{key:"","data-countryCode":"TJ",value:"+7"},"Tajikstan (+7)"),React.createElement("option",{key:"","data-countryCode":"TH",value:"+66"},"Thailand (+66)"),React.createElement("option",{key:"","data-countryCode":"TG",value:"+228"},"Togo (+228)"),React.createElement("option",{key:"","data-countryCode":"TO",value:"+676"},"Tonga (+676)"),React.createElement("option",{key:"","data-countryCode":"TT",value:"+1868"},"Trinidad & Tobago (+1868)"),React.createElement("option",{key:"","data-countryCode":"TN",value:"+216"},"Tunisia (+216)"),React.createElement("option",{key:"","data-countryCode":"TR",value:"+90"},"Turkey (+90)"),React.createElement("option",{key:"","data-countryCode":"TM",value:"+7"},"Turkmenistan (+7)"),React.createElement("option",{key:"","data-countryCode":"TM",value:"+993"},"Turkmenistan (+993)"),React.createElement("option",{key:"","data-countryCode":"TC",value:"+1649"},"Turks & Caicos Islands (+1649)"),React.createElement("option",{key:"","data-countryCode":"TV",value:"+688"},"Tuvalu (+688)"),React.createElement("option",{key:"","data-countryCode":"UG",value:"+256"},"Uganda (+256)"),React.createElement("option",{key:"","data-countryCode":"UA",value:"+380"},"Ukraine (+380)"),React.createElement("option",{key:"","data-countryCode":"AE",value:"+971"},"United Arab Emirates (+971)"),React.createElement("option",{key:"","data-countryCode":"UY",value:"+598"},"Uruguay (+598)"),React.createElement("option",{key:"","data-countryCode":"UZ",value:"+7"},"Uzbekistan (+7)"),React.createElement("option",{key:"","data-countryCode":"VU",value:"+678"},"Vanuatu (+678)"),React.createElement("option",{key:"","data-countryCode":"VA",value:"+379"},"Vatican City (+379)"),React.createElement("option",{key:"","data-countryCode":"VE",value:"+58"},"Venezuela (+58)"),React.createElement("option",{key:"","data-countryCode":"VN",value:"+84"},"Vietnam (+84)"),React.createElement("option",{key:"","data-countryCode":"VG",value:"+84"},"Virgin Islands - British (+1284)"),React.createElement("option",{key:"","data-countryCode":"VI",value:"+84"},"Virgin Islands - US (+1340)"),React.createElement("option",{key:"","data-countryCode":"WF",value:"+681"},"Wallis & Futuna (+681)"),React.createElement("option",{key:"","data-countryCode":"YE",value:"+969"},"Yemen (North)(+969)"),React.createElement("option",{key:"","data-countryCode":"YE",value:"+967"},"Yemen (South)(+967)"),React.createElement("option",{key:"","data-countryCode":"ZM",value:"+260"},"Zambia (+260)"),React.createElement("option",{key:"","data-countryCode":"ZW",value:"+263"},"Zimbabwe (+263)")],gC=a(118),mC=0,yC={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},fC={};fC.locals=gC.a.locals||{},fC.use=function(){return mC++||(uC=ke()(gC.a,yC)),fC},fC.unuse=function(){mC>0&&!--mC&&(uC(),uC=null)};var hC=fC,vC=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(hC.use(),()=>{hC.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{block_id:l,phoneRequired:i,phoneName:o,pattern:n,selectPhoneCode:s,autocomplete:c}=t;Object(B.useLayoutEffect)(()=>{"+42"===s&&a({selectPhoneCode:"+420"})},[]);let u="",p="";"[0-9]{3}-?[0-9]{2}-?[0-9]{3}"===n?p=Object(r.__)("123-45-678","ultimate-addons-for-gutenberg"):"[0-9]{3}-?[0-9]{3}-?[0-9]{4}"===n?p=Object(r.__)("123-456-7890","ultimate-addons-for-gutenberg"):"[0-9]{3}s?[0-9]{3}s?[0-9]{4}"===n&&(p=Object(r.__)("123 456 7890","ultimate-addons-for-gutenberg")),u=""!==n?React.createElement("input",{type:"tel",placeholder:p,pattern:n,required:i,className:"uagb-forms-phone-input uagb-forms-input",name:l,autoComplete:c}):React.createElement("input",{type:"tel",required:i,className:"uagb-forms-phone-input uagb-forms-input",name:l,autoComplete:c});const b=[];dC.map((e,t)=>b.push({value:e.props.value,label:e.props.children}));const d=i?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-phone-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Phone Name","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({phoneName:e}),className:`uagb-forms-phone-label ${d} uagb-forms-input-label`,multiline:!1,id:l}),React.createElement("div",{className:"uagb-forms-phone-flex"},React.createElement(Le.SelectControl,{className:"uagb-forms-input uagb-form-phone-country uagb-form-phone-country-editor",options:b,value:s,onChange:e=>a({selectPhoneCode:e})}),u)))}),_C=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(bC,e),React.createElement(vC,e))),TC=[React.createElement("option",{"data-countryCode":"GB",value:"+44"},"UK (+44)"),React.createElement("option",{"data-countryCode":"US",value:"+1"},"USA (+1)"),React.createElement("option",{"data-countryCode":"DZ",value:"+213"},"Algeria (+213)"),React.createElement("option",{"data-countryCode":"AD",value:"+376"},"Andorra (+376)"),React.createElement("option",{"data-countryCode":"AO",value:"+244"},"Angola (+244)"),React.createElement("option",{"data-countryCode":"AI",value:"+1264"},"Anguilla (+1264)"),React.createElement("option",{"data-countryCode":"AG",value:"+1268"},"Antigua & Barbuda (+1268)"),React.createElement("option",{"data-countryCode":"AR",value:"+54"},"Argentina (+54)"),React.createElement("option",{"data-countryCode":"AM",value:"+374"},"Armenia (+374)"),React.createElement("option",{"data-countryCode":"AW",value:"+297"},"Aruba (+297)"),React.createElement("option",{"data-countryCode":"AU",value:"+61"},"Australia (+61)"),React.createElement("option",{"data-countryCode":"AT",value:"+43"},"Austria (+43)"),React.createElement("option",{"data-countryCode":"AZ",value:"+994"},"Azerbaijan (+994)"),React.createElement("option",{"data-countryCode":"BS",value:"+1242"},"Bahamas (+1242)"),React.createElement("option",{"data-countryCode":"BH",value:"+973"},"Bahrain (+973)"),React.createElement("option",{"data-countryCode":"BD",value:"+880"},"Bangladesh (+880)"),React.createElement("option",{"data-countryCode":"BB",value:"+1246"},"Barbados (+1246)"),React.createElement("option",{"data-countryCode":"BY",value:"+375"},"Belarus (+375)"),React.createElement("option",{"data-countryCode":"BE",value:"+32"},"Belgium (+32)"),React.createElement("option",{"data-countryCode":"BZ",value:"+501"},"Belize (+501)"),React.createElement("option",{"data-countryCode":"BJ",value:"+229"},"Benin (+229)"),React.createElement("option",{"data-countryCode":"BM",value:"+1441"},"Bermuda (+1441)"),React.createElement("option",{"data-countryCode":"BT",value:"+975"},"Bhutan (+975)"),React.createElement("option",{"data-countryCode":"BO",value:"+591"},"Bolivia (+591)"),React.createElement("option",{"data-countryCode":"BA",value:"+387"},"Bosnia Herzegovina (+387)"),React.createElement("option",{"data-countryCode":"BW",value:"+267"},"Botswana (+267)"),React.createElement("option",{"data-countryCode":"BR",value:"+55"},"Brazil (+55)"),React.createElement("option",{"data-countryCode":"BN",value:"+673"},"Brunei (+673)"),React.createElement("option",{"data-countryCode":"BG",value:"+359"},"Bulgaria (+359)"),React.createElement("option",{"data-countryCode":"BF",value:"+226"},"Burkina Faso (+226)"),React.createElement("option",{"data-countryCode":"BI",value:"+257"},"Burundi (+257)"),React.createElement("option",{"data-countryCode":"KH",value:"+855"},"Cambodia (+855)"),React.createElement("option",{"data-countryCode":"CM",value:"+237"},"Cameroon (+237)"),React.createElement("option",{"data-countryCode":"CA",value:"+1"},"Canada (+1)"),React.createElement("option",{"data-countryCode":"CV",value:"+238"},"Cape Verde Islands (+238)"),React.createElement("option",{"data-countryCode":"KY",value:"+1345"},"Cayman Islands (+1345)"),React.createElement("option",{"data-countryCode":"CF",value:"+236"},"Central African Republic (+236)"),React.createElement("option",{"data-countryCode":"CL",value:"+56"},"Chile (+56)"),React.createElement("option",{"data-countryCode":"CN",value:"+86"},"China (+86)"),React.createElement("option",{"data-countryCode":"CO",value:"+57"},"Colombia (+57)"),React.createElement("option",{"data-countryCode":"KM",value:"+269"},"Comoros (+269)"),React.createElement("option",{"data-countryCode":"CG",value:"+242"},"Congo (+242)"),React.createElement("option",{"data-countryCode":"CK",value:"+682"},"Cook Islands (+682)"),React.createElement("option",{"data-countryCode":"CR",value:"+506"},"Costa Rica (+506)"),React.createElement("option",{"data-countryCode":"HR",value:"+385"},"Croatia (+385)"),React.createElement("option",{"data-countryCode":"CU",value:"+53"},"Cuba (+53)"),React.createElement("option",{"data-countryCode":"CY",value:"+90392"},"Cyprus North (+90392)"),React.createElement("option",{"data-countryCode":"CY",value:"+357"},"Cyprus South (+357)"),React.createElement("option",{"data-countryCode":"CZ",value:"+42"},"Czech Republic (+42)"),React.createElement("option",{"data-countryCode":"DK",value:"+45"},"Denmark (+45)"),React.createElement("option",{"data-countryCode":"DJ",value:"+253"},"Djibouti (+253)"),React.createElement("option",{"data-countryCode":"DM",value:"+1809"},"Dominica (+1809)"),React.createElement("option",{"data-countryCode":"DO",value:"+1809"},"Dominican Republic (+1809)"),React.createElement("option",{"data-countryCode":"EC",value:"+593"},"Ecuador (+593)"),React.createElement("option",{"data-countryCode":"EG",value:"+20"},"Egypt (+20)"),React.createElement("option",{"data-countryCode":"SV",value:"+503"},"El Salvador (+503)"),React.createElement("option",{"data-countryCode":"GQ",value:"+240"},"Equatorial Guinea (+240)"),React.createElement("option",{"data-countryCode":"ER",value:"+291"},"Eritrea (+291)"),React.createElement("option",{"data-countryCode":"EE",value:"+372"},"Estonia (+372)"),React.createElement("option",{"data-countryCode":"ET",value:"+251"},"Ethiopia (+251)"),React.createElement("option",{"data-countryCode":"FK",value:"+500"},"Falkland Islands (+500)"),React.createElement("option",{"data-countryCode":"FO",value:"+298"},"Faroe Islands (+298)"),React.createElement("option",{"data-countryCode":"FJ",value:"+679"},"Fiji (+679)"),React.createElement("option",{"data-countryCode":"FI",value:"+358"},"Finland (+358)"),React.createElement("option",{"data-countryCode":"FR",value:"+33"},"France (+33)"),React.createElement("option",{"data-countryCode":"GF",value:"+594"},"French Guiana (+594)"),React.createElement("option",{"data-countryCode":"PF",value:"+689"},"French Polynesia (+689)"),React.createElement("option",{"data-countryCode":"GA",value:"+241"},"Gabon (+241)"),React.createElement("option",{"data-countryCode":"GM",value:"+220"},"Gambia (+220)"),React.createElement("option",{"data-countryCode":"GE",value:"+7880"},"Georgia (+7880)"),React.createElement("option",{"data-countryCode":"DE",value:"+49"},"Germany (+49)"),React.createElement("option",{"data-countryCode":"GH",value:"+233"},"Ghana (+233)"),React.createElement("option",{"data-countryCode":"GI",value:"+350"},"Gibraltar (+350)"),React.createElement("option",{"data-countryCode":"GR",value:"+30"},"Greece (+30)"),React.createElement("option",{"data-countryCode":"GL",value:"+299"},"Greenland (+299)"),React.createElement("option",{"data-countryCode":"GD",value:"+1473"},"Grenada (+1473)"),React.createElement("option",{"data-countryCode":"GP",value:"+590"},"Guadeloupe (+590)"),React.createElement("option",{"data-countryCode":"GU",value:"+671"},"Guam (+671)"),React.createElement("option",{"data-countryCode":"GT",value:"+502"},"Guatemala (+502)"),React.createElement("option",{"data-countryCode":"GN",value:"+224"},"Guinea (+224)"),React.createElement("option",{"data-countryCode":"GW",value:"+245"},"Guinea - Bissau (+245)"),React.createElement("option",{"data-countryCode":"GY",value:"+592"},"Guyana (+592)"),React.createElement("option",{"data-countryCode":"HT",value:"+509"},"Haiti (+509)"),React.createElement("option",{"data-countryCode":"HN",value:"+504"},"Honduras (+504)"),React.createElement("option",{"data-countryCode":"HK",value:"+852"},"Hong Kong (+852)"),React.createElement("option",{"data-countryCode":"HU",value:"+36"},"Hungary (+36)"),React.createElement("option",{"data-countryCode":"IS",value:"+354"},"Iceland (+354)"),React.createElement("option",{"data-countryCode":"IN",value:"+91"},"India (+91)"),React.createElement("option",{"data-countryCode":"ID",value:"+62"},"Indonesia (+62)"),React.createElement("option",{"data-countryCode":"IR",value:"+98"},"Iran (+98)"),React.createElement("option",{"data-countryCode":"IQ",value:"+964"},"Iraq (+964)"),React.createElement("option",{"data-countryCode":"IE",value:"+353"},"Ireland (+353)"),React.createElement("option",{"data-countryCode":"IL",value:"+972"},"Israel (+972)"),React.createElement("option",{"data-countryCode":"IT",value:"+39"},"Italy (+39)"),React.createElement("option",{"data-countryCode":"JM",value:"+1876"},"Jamaica (+1876)"),React.createElement("option",{"data-countryCode":"JP",value:"+81"},"Japan (+81)"),React.createElement("option",{"data-countryCode":"JO",value:"+962"},"Jordan (+962)"),React.createElement("option",{"data-countryCode":"KZ",value:"+7"},"Kazakhstan (+7)"),React.createElement("option",{"data-countryCode":"KE",value:"+254"},"Kenya (+254)"),React.createElement("option",{"data-countryCode":"KI",value:"+686"},"Kiribati (+686)"),React.createElement("option",{"data-countryCode":"KP",value:"+850"},"Korea North (+850)"),React.createElement("option",{"data-countryCode":"KR",value:"+82"},"Korea South (+82)"),React.createElement("option",{"data-countryCode":"KW",value:"+965"},"Kuwait (+965)"),React.createElement("option",{"data-countryCode":"KG",value:"+996"},"Kyrgyzstan (+996)"),React.createElement("option",{"data-countryCode":"LA",value:"+856"},"Laos (+856)"),React.createElement("option",{"data-countryCode":"LV",value:"+371"},"Latvia (+371)"),React.createElement("option",{"data-countryCode":"LB",value:"+961"},"Lebanon (+961)"),React.createElement("option",{"data-countryCode":"LS",value:"+266"},"Lesotho (+266)"),React.createElement("option",{"data-countryCode":"LR",value:"+231"},"Liberia (+231)"),React.createElement("option",{"data-countryCode":"LY",value:"+218"},"Libya (+218)"),React.createElement("option",{"data-countryCode":"LI",value:"+417"},"Liechtenstein (+417)"),React.createElement("option",{"data-countryCode":"LT",value:"+370"},"Lithuania (+370)"),React.createElement("option",{"data-countryCode":"LU",value:"+352"},"Luxembourg (+352)"),React.createElement("option",{"data-countryCode":"MO",value:"+853"},"Macao (+853)"),React.createElement("option",{"data-countryCode":"MK",value:"+389"},"Macedonia (+389)"),React.createElement("option",{"data-countryCode":"MG",value:"+261"},"Madagascar (+261)"),React.createElement("option",{"data-countryCode":"MW",value:"+265"},"Malawi (+265)"),React.createElement("option",{"data-countryCode":"MY",value:"+60"},"Malaysia (+60)"),React.createElement("option",{"data-countryCode":"MV",value:"+960"},"Maldives (+960)"),React.createElement("option",{"data-countryCode":"ML",value:"+223"},"Mali (+223)"),React.createElement("option",{"data-countryCode":"MT",value:"+356"},"Malta (+356)"),React.createElement("option",{"data-countryCode":"MH",value:"+692"},"Marshall Islands (+692)"),React.createElement("option",{"data-countryCode":"MQ",value:"+596"},"Martinique (+596)"),React.createElement("option",{"data-countryCode":"MR",value:"+222"},"Mauritania (+222)"),React.createElement("option",{"data-countryCode":"YT",value:"+269"},"Mayotte (+269)"),React.createElement("option",{"data-countryCode":"MX",value:"+52"},"Mexico (+52)"),React.createElement("option",{"data-countryCode":"FM",value:"+691"},"Micronesia (+691)"),React.createElement("option",{"data-countryCode":"MD",value:"+373"},"Moldova (+373)"),React.createElement("option",{"data-countryCode":"MC",value:"+377"},"Monaco (+377)"),React.createElement("option",{"data-countryCode":"MN",value:"+976"},"Mongolia (+976)"),React.createElement("option",{"data-countryCode":"MS",value:"+1664"},"Montserrat (+1664)"),React.createElement("option",{"data-countryCode":"MA",value:"+212"},"Morocco (+212)"),React.createElement("option",{"data-countryCode":"MZ",value:"+258"},"Mozambique (+258)"),React.createElement("option",{"data-countryCode":"MN",value:"+95"},"Myanmar (+95)"),React.createElement("option",{"data-countryCode":"NA",value:"+264"},"Namibia (+264)"),React.createElement("option",{"data-countryCode":"NR",value:"+674"},"Nauru (+674)"),React.createElement("option",{"data-countryCode":"NP",value:"+977"},"Nepal (+977)"),React.createElement("option",{"data-countryCode":"NL",value:"+31"},"Netherlands (+31)"),React.createElement("option",{"data-countryCode":"NC",value:"+687"},"New Caledonia (+687)"),React.createElement("option",{"data-countryCode":"NZ",value:"+64"},"New Zealand (+64)"),React.createElement("option",{"data-countryCode":"NI",value:"+505"},"Nicaragua (+505)"),React.createElement("option",{"data-countryCode":"NE",value:"+227"},"Niger (+227)"),React.createElement("option",{"data-countryCode":"NG",value:"+234"},"Nigeria (+234)"),React.createElement("option",{"data-countryCode":"NU",value:"+683"},"Niue (+683)"),React.createElement("option",{"data-countryCode":"NF",value:"+672"},"Norfolk Islands (+672)"),React.createElement("option",{"data-countryCode":"NP",value:"+670"},"Northern Marianas (+670)"),React.createElement("option",{"data-countryCode":"NO",value:"+47"},"Norway (+47)"),React.createElement("option",{"data-countryCode":"OM",value:"+968"},"Oman (+968)"),React.createElement("option",{"data-countryCode":"PW",value:"+680"},"Palau (+680)"),React.createElement("option",{"data-countryCode":"PA",value:"+507"},"Panama (+507)"),React.createElement("option",{"data-countryCode":"PG",value:"+675"},"Papua New Guinea (+675)"),React.createElement("option",{"data-countryCode":"PY",value:"+595"},"Paraguay (+595)"),React.createElement("option",{"data-countryCode":"PE",value:"+51"},"Peru (+51)"),React.createElement("option",{"data-countryCode":"PH",value:"+63"},"Philippines (+63)"),React.createElement("option",{"data-countryCode":"PL",value:"+48"},"Poland (+48)"),React.createElement("option",{"data-countryCode":"PT",value:"+351"},"Portugal (+351)"),React.createElement("option",{"data-countryCode":"PR",value:"+1787"},"Puerto Rico (+1787)"),React.createElement("option",{"data-countryCode":"QA",value:"+974"},"Qatar (+974)"),React.createElement("option",{"data-countryCode":"RE",value:"+262"},"Reunion (+262)"),React.createElement("option",{"data-countryCode":"RO",value:"+40"},"Romania (+40)"),React.createElement("option",{"data-countryCode":"RU",value:"+7"},"Russia (+7)"),React.createElement("option",{"data-countryCode":"RW",value:"+250"},"Rwanda (+250)"),React.createElement("option",{"data-countryCode":"SM",value:"+378"},"San Marino (+378)"),React.createElement("option",{"data-countryCode":"ST",value:"+239"},"Sao Tome & Principe (+239)"),React.createElement("option",{"data-countryCode":"SA",value:"+966"},"Saudi Arabia (+966)"),React.createElement("option",{"data-countryCode":"SN",value:"+221"},"Senegal (+221)"),React.createElement("option",{"data-countryCode":"CS",value:"+381"},"Serbia (+381)"),React.createElement("option",{"data-countryCode":"SC",value:"+248"},"Seychelles (+248)"),React.createElement("option",{"data-countryCode":"SL",value:"+232"},"Sierra Leone (+232)"),React.createElement("option",{"data-countryCode":"SG",value:"+65"},"Singapore (+65)"),React.createElement("option",{"data-countryCode":"SK",value:"+421"},"Slovak Republic (+421)"),React.createElement("option",{"data-countryCode":"SI",value:"+386"},"Slovenia (+386)"),React.createElement("option",{"data-countryCode":"SB",value:"+677"},"Solomon Islands (+677)"),React.createElement("option",{"data-countryCode":"SO",value:"+252"},"Somalia (+252)"),React.createElement("option",{"data-countryCode":"ZA",value:"+27"},"South Africa (+27)"),React.createElement("option",{"data-countryCode":"ES",value:"+34"},"Spain (+34)"),React.createElement("option",{"data-countryCode":"LK",value:"+94"},"Sri Lanka (+94)"),React.createElement("option",{"data-countryCode":"SH",value:"+290"},"St. Helena (+290)"),React.createElement("option",{"data-countryCode":"KN",value:"+1869"},"St. Kitts (+1869)"),React.createElement("option",{"data-countryCode":"SC",value:"+1758"},"St. Lucia (+1758)"),React.createElement("option",{"data-countryCode":"SD",value:"+249"},"Sudan (+249)"),React.createElement("option",{"data-countryCode":"SR",value:"+597"},"Suriname (+597)"),React.createElement("option",{"data-countryCode":"SZ",value:"+268"},"Swaziland (+268)"),React.createElement("option",{"data-countryCode":"SE",value:"+46"},"Sweden (+46)"),React.createElement("option",{"data-countryCode":"CH",value:"+41"},"Switzerland (+41)"),React.createElement("option",{"data-countryCode":"SI",value:"+963"},"Syria (+963)"),React.createElement("option",{"data-countryCode":"TW",value:"+886"},"Taiwan (+886)"),React.createElement("option",{"data-countryCode":"TJ",value:"+7"},"Tajikstan (+7)"),React.createElement("option",{"data-countryCode":"TH",value:"+66"},"Thailand (+66)"),React.createElement("option",{"data-countryCode":"TG",value:"+228"},"Togo (+228)"),React.createElement("option",{"data-countryCode":"TO",value:"+676"},"Tonga (+676)"),React.createElement("option",{"data-countryCode":"TT",value:"+1868"},"Trinidad & Tobago (+1868)"),React.createElement("option",{"data-countryCode":"TN",value:"+216"},"Tunisia (+216)"),React.createElement("option",{"data-countryCode":"TR",value:"+90"},"Turkey (+90)"),React.createElement("option",{"data-countryCode":"TM",value:"+7"},"Turkmenistan (+7)"),React.createElement("option",{"data-countryCode":"TM",value:"+993"},"Turkmenistan (+993)"),React.createElement("option",{"data-countryCode":"TC",value:"+1649"},"Turks & Caicos Islands (+1649)"),React.createElement("option",{"data-countryCode":"TV",value:"+688"},"Tuvalu (+688)"),React.createElement("option",{"data-countryCode":"UG",value:"+256"},"Uganda (+256)"),React.createElement("option",{"data-countryCode":"UA",value:"+380"},"Ukraine (+380)"),React.createElement("option",{"data-countryCode":"AE",value:"+971"},"United Arab Emirates (+971)"),React.createElement("option",{"data-countryCode":"UY",value:"+598"},"Uruguay (+598)"),React.createElement("option",{"data-countryCode":"UZ",value:"+7"},"Uzbekistan (+7)"),React.createElement("option",{"data-countryCode":"VU",value:"+678"},"Vanuatu (+678)"),React.createElement("option",{"data-countryCode":"VA",value:"+379"},"Vatican City (+379)"),React.createElement("option",{"data-countryCode":"VE",value:"+58"},"Venezuela (+58)"),React.createElement("option",{"data-countryCode":"VN",value:"+84"},"Vietnam (+84)"),React.createElement("option",{"data-countryCode":"VG",value:"+84"},"Virgin Islands - British (+1284)"),React.createElement("option",{"data-countryCode":"VI",value:"+84"},"Virgin Islands - US (+1340)"),React.createElement("option",{"data-countryCode":"WF",value:"+681"},"Wallis & Futuna (+681)"),React.createElement("option",{"data-countryCode":"YE",value:"+969"},"Yemen (North)(+969)"),React.createElement("option",{"data-countryCode":"YE",value:"+967"},"Yemen (South)(+967)"),React.createElement("option",{"data-countryCode":"ZM",value:"+260"},"Zambia (+260)"),React.createElement("option",{"data-countryCode":"ZW",value:"+263"},"Zimbabwe (+263)")],CC=[{attributes:{block_id:{type:"string"},phoneName:{type:"string",default:Object(r.__)("Phone","ultimate-addons-for-gutenberg")},phoneRequired:{type:"boolean",default:!1},pattern:{type:"string",default:Object(r.__)("[0-9]{3}-[0-9]{3}-[0-9]{4}","ultimate-addons-for-gutenberg")},selectPhoneCode:{type:"string",default:"+44"},autocomplete:{type:"string",default:"tel-national"}},save(e){const{block_id:t,phoneRequired:a,phoneName:l,pattern:i}=e.attributes;let o="";"[0-9]{3}-[0-9]{2}-[0-9]{3}"===i?o=Object(r.__)("123-45-678","ultimate-addons-for-gutenberg"):"[0-9]{3}-[0-9]{3}-[0-9]{4}"===i&&(o=Object(r.__)("123-456-6789","ultimate-addons-for-gutenberg"));let n="";n=""!==i?React.createElement("input",{type:"tel",placeholder:o,pattern:i,required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]"}):React.createElement("input",{type:"tel",required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]"});const s=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-phone-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-phone-label ${s} uagb-forms-input-label`,id:t}),React.createElement("select",{className:"uagb-forms-input uagb-form-phone-country",id:"uagb-form-country-"+t,name:l+"[]"},TC.map((e,t)=>React.createElement("option",{value:e.props.value,key:t},e.props.children))),n)}}],SC=[{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},phoneName:{type:"string",default:Object(r.__)("Phone","ultimate-addons-for-gutenberg")},phoneRequired:{type:"boolean",default:!1},pattern:{type:"string",default:Object(r.__)("[0-9]{3}s?[0-9]{3}s?[0-9]{4}","ultimate-addons-for-gutenberg")},selectPhoneCode:{type:"string",default:"+44"},autocomplete:{type:"string",default:"tel-national"}},save(e){const{attributes:{block_id:t,phoneRequired:a,phoneName:l,pattern:i,selectPhoneCode:o,autocomplete:n}}=e;let s="";"[0-9]{3}-?[0-9]{2}-?[0-9]{3}"===i?s=Object(r.__)("123-45-678","ultimate-addons-for-gutenberg"):"[0-9]{3}-?[0-9]{3}-?[0-9]{4}"===i?s=Object(r.__)("123-456-7890","ultimate-addons-for-gutenberg"):"[0-9]{3}s?[0-9]{3}s?[0-9]{4}"===i&&(s=Object(r.__)("123 456 7890","ultimate-addons-for-gutenberg"));let c="";c=""!==i?React.createElement("input",{type:"tel",placeholder:s,pattern:i,required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]",autoComplete:n}):React.createElement("input",{type:"tel",required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]",autoComplete:n});const u=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-phone-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-phone-label ${u} uagb-forms-input-label`,id:t}),React.createElement("div",{className:"uagb-forms-phone-flex"},React.createElement("select",{className:"uagb-forms-input uagb-form-phone-country",id:"uagb-form-country-"+t,name:l+"[]"},dC.map((e,t)=>React.createElement("option",{value:e.props.value,key:t,selected:e.props.value===o},e.props.children))),c))}}],wC=[React.createElement("option",{key:"","data-countryCode":"GB",value:"+44"},"UK (+44)"),React.createElement("option",{key:"","data-countryCode":"US",value:"+1"},"USA / Canada (+1)"),React.createElement("option",{key:"","data-countryCode":"DZ",value:"+213"},"Algeria (+213)"),React.createElement("option",{key:"","data-countryCode":"AD",value:"+376"},"Andorra (+376)"),React.createElement("option",{key:"","data-countryCode":"AO",value:"+244"},"Angola (+244)"),React.createElement("option",{key:"","data-countryCode":"AI",value:"+1264"},"Anguilla (+1264)"),React.createElement("option",{key:"","data-countryCode":"AG",value:"+1268"},"Antigua & Barbuda (+1268)"),React.createElement("option",{key:"","data-countryCode":"AR",value:"+54"},"Argentina (+54)"),React.createElement("option",{key:"","data-countryCode":"AM",value:"+374"},"Armenia (+374)"),React.createElement("option",{key:"","data-countryCode":"AW",value:"+297"},"Aruba (+297)"),React.createElement("option",{key:"","data-countryCode":"AU",value:"+61"},"Australia (+61)"),React.createElement("option",{key:"","data-countryCode":"AT",value:"+43"},"Austria (+43)"),React.createElement("option",{key:"","data-countryCode":"AZ",value:"+994"},"Azerbaijan (+994)"),React.createElement("option",{key:"","data-countryCode":"BS",value:"+1242"},"Bahamas (+1242)"),React.createElement("option",{key:"","data-countryCode":"BH",value:"+973"},"Bahrain (+973)"),React.createElement("option",{key:"","data-countryCode":"BD",value:"+880"},"Bangladesh (+880)"),React.createElement("option",{key:"","data-countryCode":"BB",value:"+1246"},"Barbados (+1246)"),React.createElement("option",{key:"","data-countryCode":"BY",value:"+375"},"Belarus (+375)"),React.createElement("option",{key:"","data-countryCode":"BE",value:"+32"},"Belgium (+32)"),React.createElement("option",{key:"","data-countryCode":"BZ",value:"+501"},"Belize (+501)"),React.createElement("option",{key:"","data-countryCode":"BJ",value:"+229"},"Benin (+229)"),React.createElement("option",{key:"","data-countryCode":"BM",value:"+1441"},"Bermuda (+1441)"),React.createElement("option",{key:"","data-countryCode":"BT",value:"+975"},"Bhutan (+975)"),React.createElement("option",{key:"","data-countryCode":"BO",value:"+591"},"Bolivia (+591)"),React.createElement("option",{key:"","data-countryCode":"BA",value:"+387"},"Bosnia Herzegovina (+387)"),React.createElement("option",{key:"","data-countryCode":"BW",value:"+267"},"Botswana (+267)"),React.createElement("option",{key:"","data-countryCode":"BR",value:"+55"},"Brazil (+55)"),React.createElement("option",{key:"","data-countryCode":"BN",value:"+673"},"Brunei (+673)"),React.createElement("option",{key:"","data-countryCode":"BG",value:"+359"},"Bulgaria (+359)"),React.createElement("option",{key:"","data-countryCode":"BF",value:"+226"},"Burkina Faso (+226)"),React.createElement("option",{key:"","data-countryCode":"BI",value:"+257"},"Burundi (+257)"),React.createElement("option",{key:"","data-countryCode":"KH",value:"+855"},"Cambodia (+855)"),React.createElement("option",{key:"","data-countryCode":"CM",value:"+237"},"Cameroon (+237)"),React.createElement("option",{key:"","data-countryCode":"CV",value:"+238"},"Cape Verde Islands (+238)"),React.createElement("option",{key:"","data-countryCode":"KY",value:"+1345"},"Cayman Islands (+1345)"),React.createElement("option",{key:"","data-countryCode":"CF",value:"+236"},"Central African Republic (+236)"),React.createElement("option",{key:"","data-countryCode":"CL",value:"+56"},"Chile (+56)"),React.createElement("option",{key:"","data-countryCode":"CN",value:"+86"},"China (+86)"),React.createElement("option",{key:"","data-countryCode":"CO",value:"+57"},"Colombia (+57)"),React.createElement("option",{key:"","data-countryCode":"KM",value:"+269"},"Comoros (+269)"),React.createElement("option",{key:"","data-countryCode":"CG",value:"+242"},"Congo (+242)"),React.createElement("option",{key:"","data-countryCode":"CK",value:"+682"},"Cook Islands (+682)"),React.createElement("option",{key:"","data-countryCode":"CR",value:"+506"},"Costa Rica (+506)"),React.createElement("option",{key:"","data-countryCode":"HR",value:"+385"},"Croatia (+385)"),React.createElement("option",{key:"","data-countryCode":"CU",value:"+53"},"Cuba (+53)"),React.createElement("option",{key:"","data-countryCode":"CY",value:"+90392"},"Cyprus North (+90392)"),React.createElement("option",{key:"","data-countryCode":"CY",value:"+357"},"Cyprus South (+357)"),React.createElement("option",{key:"","data-countryCode":"CZ",value:"+42"},"Czech Republic (+42)"),React.createElement("option",{key:"","data-countryCode":"DK",value:"+45"},"Denmark (+45)"),React.createElement("option",{key:"","data-countryCode":"DJ",value:"+253"},"Djibouti (+253)"),React.createElement("option",{key:"","data-countryCode":"DM",value:"+1809"},"Dominica (+1809)"),React.createElement("option",{key:"","data-countryCode":"DO",value:"+1809"},"Dominican Republic (+1809)"),React.createElement("option",{key:"","data-countryCode":"EC",value:"+593"},"Ecuador (+593)"),React.createElement("option",{key:"","data-countryCode":"EG",value:"+20"},"Egypt (+20)"),React.createElement("option",{key:"","data-countryCode":"SV",value:"+503"},"El Salvador (+503)"),React.createElement("option",{key:"","data-countryCode":"GQ",value:"+240"},"Equatorial Guinea (+240)"),React.createElement("option",{key:"","data-countryCode":"ER",value:"+291"},"Eritrea (+291)"),React.createElement("option",{key:"","data-countryCode":"EE",value:"+372"},"Estonia (+372)"),React.createElement("option",{key:"","data-countryCode":"ET",value:"+251"},"Ethiopia (+251)"),React.createElement("option",{key:"","data-countryCode":"FK",value:"+500"},"Falkland Islands (+500)"),React.createElement("option",{key:"","data-countryCode":"FO",value:"+298"},"Faroe Islands (+298)"),React.createElement("option",{key:"","data-countryCode":"FJ",value:"+679"},"Fiji (+679)"),React.createElement("option",{key:"","data-countryCode":"FI",value:"+358"},"Finland (+358)"),React.createElement("option",{key:"","data-countryCode":"FR",value:"+33"},"France (+33)"),React.createElement("option",{key:"","data-countryCode":"GF",value:"+594"},"French Guiana (+594)"),React.createElement("option",{key:"","data-countryCode":"PF",value:"+689"},"French Polynesia (+689)"),React.createElement("option",{key:"","data-countryCode":"GA",value:"+241"},"Gabon (+241)"),React.createElement("option",{key:"","data-countryCode":"GM",value:"+220"},"Gambia (+220)"),React.createElement("option",{key:"","data-countryCode":"GE",value:"+7880"},"Georgia (+7880)"),React.createElement("option",{key:"","data-countryCode":"DE",value:"+49"},"Germany (+49)"),React.createElement("option",{key:"","data-countryCode":"GH",value:"+233"},"Ghana (+233)"),React.createElement("option",{key:"","data-countryCode":"GI",value:"+350"},"Gibraltar (+350)"),React.createElement("option",{key:"","data-countryCode":"GR",value:"+30"},"Greece (+30)"),React.createElement("option",{key:"","data-countryCode":"GL",value:"+299"},"Greenland (+299)"),React.createElement("option",{key:"","data-countryCode":"GD",value:"+1473"},"Grenada (+1473)"),React.createElement("option",{key:"","data-countryCode":"GP",value:"+590"},"Guadeloupe (+590)"),React.createElement("option",{key:"","data-countryCode":"GU",value:"+671"},"Guam (+671)"),React.createElement("option",{key:"","data-countryCode":"GT",value:"+502"},"Guatemala (+502)"),React.createElement("option",{key:"","data-countryCode":"GN",value:"+224"},"Guinea (+224)"),React.createElement("option",{key:"","data-countryCode":"GW",value:"+245"},"Guinea - Bissau (+245)"),React.createElement("option",{key:"","data-countryCode":"GY",value:"+592"},"Guyana (+592)"),React.createElement("option",{key:"","data-countryCode":"HT",value:"+509"},"Haiti (+509)"),React.createElement("option",{key:"","data-countryCode":"HN",value:"+504"},"Honduras (+504)"),React.createElement("option",{key:"","data-countryCode":"HK",value:"+852"},"Hong Kong (+852)"),React.createElement("option",{key:"","data-countryCode":"HU",value:"+36"},"Hungary (+36)"),React.createElement("option",{key:"","data-countryCode":"IS",value:"+354"},"Iceland (+354)"),React.createElement("option",{key:"","data-countryCode":"IN",value:"+91"},"India (+91)"),React.createElement("option",{key:"","data-countryCode":"ID",value:"+62"},"Indonesia (+62)"),React.createElement("option",{key:"","data-countryCode":"IR",value:"+98"},"Iran (+98)"),React.createElement("option",{key:"","data-countryCode":"IQ",value:"+964"},"Iraq (+964)"),React.createElement("option",{key:"","data-countryCode":"IE",value:"+353"},"Ireland (+353)"),React.createElement("option",{key:"","data-countryCode":"IL",value:"+972"},"Israel (+972)"),React.createElement("option",{key:"","data-countryCode":"IT",value:"+39"},"Italy (+39)"),React.createElement("option",{key:"","data-countryCode":"JM",value:"+1876"},"Jamaica (+1876)"),React.createElement("option",{key:"","data-countryCode":"JP",value:"+81"},"Japan (+81)"),React.createElement("option",{key:"","data-countryCode":"JO",value:"+962"},"Jordan (+962)"),React.createElement("option",{key:"","data-countryCode":"KZ",value:"+7"},"Kazakhstan (+7)"),React.createElement("option",{key:"","data-countryCode":"KE",value:"+254"},"Kenya (+254)"),React.createElement("option",{key:"","data-countryCode":"KI",value:"+686"},"Kiribati (+686)"),React.createElement("option",{key:"","data-countryCode":"KP",value:"+850"},"Korea North (+850)"),React.createElement("option",{key:"","data-countryCode":"KR",value:"+82"},"Korea South (+82)"),React.createElement("option",{key:"","data-countryCode":"KW",value:"+965"},"Kuwait (+965)"),React.createElement("option",{key:"","data-countryCode":"KG",value:"+996"},"Kyrgyzstan (+996)"),React.createElement("option",{key:"","data-countryCode":"LA",value:"+856"},"Laos (+856)"),React.createElement("option",{key:"","data-countryCode":"LV",value:"+371"},"Latvia (+371)"),React.createElement("option",{key:"","data-countryCode":"LB",value:"+961"},"Lebanon (+961)"),React.createElement("option",{key:"","data-countryCode":"LS",value:"+266"},"Lesotho (+266)"),React.createElement("option",{key:"","data-countryCode":"LR",value:"+231"},"Liberia (+231)"),React.createElement("option",{key:"","data-countryCode":"LY",value:"+218"},"Libya (+218)"),React.createElement("option",{key:"","data-countryCode":"LI",value:"+417"},"Liechtenstein (+417)"),React.createElement("option",{key:"","data-countryCode":"LT",value:"+370"},"Lithuania (+370)"),React.createElement("option",{key:"","data-countryCode":"LU",value:"+352"},"Luxembourg (+352)"),React.createElement("option",{key:"","data-countryCode":"MO",value:"+853"},"Macao (+853)"),React.createElement("option",{key:"","data-countryCode":"MK",value:"+389"},"Macedonia (+389)"),React.createElement("option",{key:"","data-countryCode":"MG",value:"+261"},"Madagascar (+261)"),React.createElement("option",{key:"","data-countryCode":"MW",value:"+265"},"Malawi (+265)"),React.createElement("option",{key:"","data-countryCode":"MY",value:"+60"},"Malaysia (+60)"),React.createElement("option",{key:"","data-countryCode":"MV",value:"+960"},"Maldives (+960)"),React.createElement("option",{key:"","data-countryCode":"ML",value:"+223"},"Mali (+223)"),React.createElement("option",{key:"","data-countryCode":"MT",value:"+356"},"Malta (+356)"),React.createElement("option",{key:"","data-countryCode":"MH",value:"+692"},"Marshall Islands (+692)"),React.createElement("option",{key:"","data-countryCode":"MQ",value:"+596"},"Martinique (+596)"),React.createElement("option",{key:"","data-countryCode":"MR",value:"+222"},"Mauritania (+222)"),React.createElement("option",{key:"","data-countryCode":"YT",value:"+269"},"Mayotte (+269)"),React.createElement("option",{key:"","data-countryCode":"MX",value:"+52"},"Mexico (+52)"),React.createElement("option",{key:"","data-countryCode":"FM",value:"+691"},"Micronesia (+691)"),React.createElement("option",{key:"","data-countryCode":"MD",value:"+373"},"Moldova (+373)"),React.createElement("option",{key:"","data-countryCode":"MC",value:"+377"},"Monaco (+377)"),React.createElement("option",{key:"","data-countryCode":"MN",value:"+976"},"Mongolia (+976)"),React.createElement("option",{key:"","data-countryCode":"MS",value:"+1664"},"Montserrat (+1664)"),React.createElement("option",{key:"","data-countryCode":"MA",value:"+212"},"Morocco (+212)"),React.createElement("option",{key:"","data-countryCode":"MZ",value:"+258"},"Mozambique (+258)"),React.createElement("option",{key:"","data-countryCode":"MN",value:"+95"},"Myanmar (+95)"),React.createElement("option",{key:"","data-countryCode":"NA",value:"+264"},"Namibia (+264)"),React.createElement("option",{key:"","data-countryCode":"NR",value:"+674"},"Nauru (+674)"),React.createElement("option",{key:"","data-countryCode":"NP",value:"+977"},"Nepal (+977)"),React.createElement("option",{key:"","data-countryCode":"NL",value:"+31"},"Netherlands (+31)"),React.createElement("option",{key:"","data-countryCode":"NC",value:"+687"},"New Caledonia (+687)"),React.createElement("option",{key:"","data-countryCode":"NZ",value:"+64"},"New Zealand (+64)"),React.createElement("option",{key:"","data-countryCode":"NI",value:"+505"},"Nicaragua (+505)"),React.createElement("option",{key:"","data-countryCode":"NE",value:"+227"},"Niger (+227)"),React.createElement("option",{key:"","data-countryCode":"NG",value:"+234"},"Nigeria (+234)"),React.createElement("option",{key:"","data-countryCode":"NU",value:"+683"},"Niue (+683)"),React.createElement("option",{key:"","data-countryCode":"NF",value:"+672"},"Norfolk Islands (+672)"),React.createElement("option",{key:"","data-countryCode":"NP",value:"+670"},"Northern Marianas (+670)"),React.createElement("option",{key:"","data-countryCode":"NO",value:"+47"},"Norway (+47)"),React.createElement("option",{key:"","data-countryCode":"OM",value:"+968"},"Oman (+968)"),React.createElement("option",{key:"","data-countryCode":"PW",value:"+680"},"Palau (+680)"),React.createElement("option",{key:"","data-countryCode":"PA",value:"+507"},"Panama (+507)"),React.createElement("option",{key:"","data-countryCode":"PG",value:"+675"},"Papua New Guinea (+675)"),React.createElement("option",{key:"","data-countryCode":"PY",value:"+595"},"Paraguay (+595)"),React.createElement("option",{key:"","data-countryCode":"PE",value:"+51"},"Peru (+51)"),React.createElement("option",{key:"","data-countryCode":"PH",value:"+63"},"Philippines (+63)"),React.createElement("option",{key:"","data-countryCode":"PL",value:"+48"},"Poland (+48)"),React.createElement("option",{key:"","data-countryCode":"PT",value:"+351"},"Portugal (+351)"),React.createElement("option",{key:"","data-countryCode":"PR",value:"+1787"},"Puerto Rico (+1787)"),React.createElement("option",{key:"","data-countryCode":"QA",value:"+974"},"Qatar (+974)"),React.createElement("option",{key:"","data-countryCode":"RE",value:"+262"},"Reunion (+262)"),React.createElement("option",{key:"","data-countryCode":"RO",value:"+40"},"Romania (+40)"),React.createElement("option",{key:"","data-countryCode":"RU",value:"+7"},"Russia (+7)"),React.createElement("option",{key:"","data-countryCode":"RW",value:"+250"},"Rwanda (+250)"),React.createElement("option",{key:"","data-countryCode":"SM",value:"+378"},"San Marino (+378)"),React.createElement("option",{key:"","data-countryCode":"ST",value:"+239"},"Sao Tome & Principe (+239)"),React.createElement("option",{key:"","data-countryCode":"SA",value:"+966"},"Saudi Arabia (+966)"),React.createElement("option",{key:"","data-countryCode":"SN",value:"+221"},"Senegal (+221)"),React.createElement("option",{key:"","data-countryCode":"CS",value:"+381"},"Serbia (+381)"),React.createElement("option",{key:"","data-countryCode":"SC",value:"+248"},"Seychelles (+248)"),React.createElement("option",{key:"","data-countryCode":"SL",value:"+232"},"Sierra Leone (+232)"),React.createElement("option",{key:"","data-countryCode":"SG",value:"+65"},"Singapore (+65)"),React.createElement("option",{key:"","data-countryCode":"SK",value:"+421"},"Slovak Republic (+421)"),React.createElement("option",{key:"","data-countryCode":"SI",value:"+386"},"Slovenia (+386)"),React.createElement("option",{key:"","data-countryCode":"SB",value:"+677"},"Solomon Islands (+677)"),React.createElement("option",{key:"","data-countryCode":"SO",value:"+252"},"Somalia (+252)"),React.createElement("option",{key:"","data-countryCode":"ZA",value:"+27"},"South Africa (+27)"),React.createElement("option",{key:"","data-countryCode":"ES",value:"+34"},"Spain (+34)"),React.createElement("option",{key:"","data-countryCode":"LK",value:"+94"},"Sri Lanka (+94)"),React.createElement("option",{key:"","data-countryCode":"SH",value:"+290"},"St. Helena (+290)"),React.createElement("option",{key:"","data-countryCode":"KN",value:"+1869"},"St. Kitts (+1869)"),React.createElement("option",{key:"","data-countryCode":"SC",value:"+1758"},"St. Lucia (+1758)"),React.createElement("option",{key:"","data-countryCode":"SD",value:"+249"},"Sudan (+249)"),React.createElement("option",{key:"","data-countryCode":"SR",value:"+597"},"Suriname (+597)"),React.createElement("option",{key:"","data-countryCode":"SZ",value:"+268"},"Swaziland (+268)"),React.createElement("option",{key:"","data-countryCode":"SE",value:"+46"},"Sweden (+46)"),React.createElement("option",{key:"","data-countryCode":"CH",value:"+41"},"Switzerland (+41)"),React.createElement("option",{key:"","data-countryCode":"SI",value:"+963"},"Syria (+963)"),React.createElement("option",{key:"","data-countryCode":"TW",value:"+886"},"Taiwan (+886)"),React.createElement("option",{key:"","data-countryCode":"TJ",value:"+7"},"Tajikstan (+7)"),React.createElement("option",{key:"","data-countryCode":"TH",value:"+66"},"Thailand (+66)"),React.createElement("option",{key:"","data-countryCode":"TG",value:"+228"},"Togo (+228)"),React.createElement("option",{key:"","data-countryCode":"TO",value:"+676"},"Tonga (+676)"),React.createElement("option",{key:"","data-countryCode":"TT",value:"+1868"},"Trinidad & Tobago (+1868)"),React.createElement("option",{key:"","data-countryCode":"TN",value:"+216"},"Tunisia (+216)"),React.createElement("option",{key:"","data-countryCode":"TR",value:"+90"},"Turkey (+90)"),React.createElement("option",{key:"","data-countryCode":"TM",value:"+7"},"Turkmenistan (+7)"),React.createElement("option",{key:"","data-countryCode":"TM",value:"+993"},"Turkmenistan (+993)"),React.createElement("option",{key:"","data-countryCode":"TC",value:"+1649"},"Turks & Caicos Islands (+1649)"),React.createElement("option",{key:"","data-countryCode":"TV",value:"+688"},"Tuvalu (+688)"),React.createElement("option",{key:"","data-countryCode":"UG",value:"+256"},"Uganda (+256)"),React.createElement("option",{key:"","data-countryCode":"UA",value:"+380"},"Ukraine (+380)"),React.createElement("option",{key:"","data-countryCode":"AE",value:"+971"},"United Arab Emirates (+971)"),React.createElement("option",{key:"","data-countryCode":"UY",value:"+598"},"Uruguay (+598)"),React.createElement("option",{key:"","data-countryCode":"UZ",value:"+7"},"Uzbekistan (+7)"),React.createElement("option",{key:"","data-countryCode":"VU",value:"+678"},"Vanuatu (+678)"),React.createElement("option",{key:"","data-countryCode":"VA",value:"+379"},"Vatican City (+379)"),React.createElement("option",{key:"","data-countryCode":"VE",value:"+58"},"Venezuela (+58)"),React.createElement("option",{key:"","data-countryCode":"VN",value:"+84"},"Vietnam (+84)"),React.createElement("option",{key:"","data-countryCode":"VG",value:"+84"},"Virgin Islands - British (+1284)"),React.createElement("option",{key:"","data-countryCode":"VI",value:"+84"},"Virgin Islands - US (+1340)"),React.createElement("option",{key:"","data-countryCode":"WF",value:"+681"},"Wallis & Futuna (+681)"),React.createElement("option",{key:"","data-countryCode":"YE",value:"+969"},"Yemen (North)(+969)"),React.createElement("option",{key:"","data-countryCode":"YE",value:"+967"},"Yemen (South)(+967)"),React.createElement("option",{key:"","data-countryCode":"ZM",value:"+260"},"Zambia (+260)"),React.createElement("option",{key:"","data-countryCode":"ZW",value:"+263"},"Zimbabwe (+263)")],kC={attributes:pC,save(e){const{block_id:t,phoneRequired:a,phoneName:l,pattern:i,selectPhoneCode:o,autocomplete:n}=e.attributes;let s="";"[0-9]{3}-?[0-9]{2}-?[0-9]{3}"===i?s=Object(r.__)("123-45-678","ultimate-addons-for-gutenberg"):"[0-9]{3}-?[0-9]{3}-?[0-9]{4}"===i?s=Object(r.__)("123-456-7890","ultimate-addons-for-gutenberg"):"[0-9]{3}s?[0-9]{3}s?[0-9]{4}"===i&&(s=Object(r.__)("123 456 7890","ultimate-addons-for-gutenberg"));let c="";c=""!==i?React.createElement("input",{type:"tel",placeholder:s,pattern:i,required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]",autoComplete:n}):React.createElement("input",{type:"tel",required:a,className:"uagb-forms-phone-input uagb-forms-input",name:l+"[]",autoComplete:n});const u=a?"required":"";return React.createElement("div",{className:Be()("uagb-forms-phone-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-phone-label ${u} uagb-forms-input-label`,id:t}),React.createElement("div",{className:"uagb-forms-phone-flex"},React.createElement("select",{className:"uagb-forms-input uagb-form-phone-country",id:"uagb-form-country-"+t,name:l+"[]"},wC.map((e,t)=>React.createElement("option",{value:e.props.value,key:t,selected:e.props.value===o},e.props.children))),c))}};let PC={};PC=Object(j.applyFilters)("uagb/forms-phone",ws(PC)),Object(be.registerBlockType)("uagb/forms-phone",{...PC,title:Object(r.__)("Phone","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a phone number field in your form.","ultimate-addons-for-gutenberg"),icon:se.phone,parent:["uagb/forms"],attributes:pC,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-phone",isChildren:!0}):React.createElement(_C,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,phoneRequired:l,phoneName:i,pattern:o,selectPhoneCode:n,autocomplete:s}=t;let c="";"[0-9]{3}-?[0-9]{2}-?[0-9]{3}"===o?c=Object(r.__)("123-45-678","ultimate-addons-for-gutenberg"):"[0-9]{3}-?[0-9]{3}-?[0-9]{4}"===o?c=Object(r.__)("123-456-7890","ultimate-addons-for-gutenberg"):"[0-9]{3}s?[0-9]{3}s?[0-9]{4}"===o&&(c=Object(r.__)("123 456 7890","ultimate-addons-for-gutenberg"));let u="";u=""!==o?React.createElement("input",{type:"tel",placeholder:c,pattern:o,required:l,className:"uagb-forms-phone-input uagb-forms-input",name:i+"[]",autoComplete:s}):React.createElement("input",{type:"tel",required:l,className:"uagb-forms-phone-input uagb-forms-input",name:i+"[]",autoComplete:s});const p=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-phone-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-phone-label ${p} uagb-forms-input-label`,id:a}),React.createElement("div",{className:"uagb-forms-phone-flex"},React.createElement("select",{className:"uagb-forms-input uagb-form-phone-country",id:"uagb-form-country-"+a,name:i+"[]"},dC.map((e,t)=>React.createElement("option",{value:e.props.value,key:t,selected:e.props.value===n},e.props.children))),u))},deprecated:[SC,CC,kC]});var xC=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{textareaRequired:l,rows:i,placeholder:o,autocomplete:n}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Autocomplete","ultimate-addons-for-gutenberg"),data:{value:n,label:"autocomplete"},setAttributes:a,options:[{label:Object(r.__)("Off","ultimate-addons-for-gutenberg"),value:"off"},{label:Object(r.__)("Address","ultimate-addons-for-gutenberg"),value:"street-address"}]}),React.createElement(Fs,{label:Object(r.__)("Placeholder","ultimate-addons-for-gutenberg"),value:o,data:{value:o,label:"placeholder"},setAttributes:a,onChange:e=>a({placeholder:e})}),React.createElement(Qa,{label:Object(r.__)("Number of lines","ultimate-addons-for-gutenberg"),setAttributes:a,value:i,data:{value:i,label:"rows"},min:2,max:10,displayUnit:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({textareaRequired:!l})}))),React.createElement(il,rl))))}),AC=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,name:l}=e,i=l.replace("uagb/",""),{block_id:o,textareaRequired:n,textareaName:s,rows:c,placeholder:u}=t,p=n?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-textarea-wrap","uagb-forms-field-set","uagb-block-"+o)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Textarea Name","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({textareaName:e}),className:`uagb-forms-textarea-label ${p} uagb-forms-input-label`,multiline:!1,id:o}),React.createElement("textarea",{required:n,className:"uagb-forms-textarea-input uagb-forms-input",rows:Ps(c,"rows",i),placeholder:u,name:o})))}),GC=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(xC,e),React.createElement(AC,e))),MC=[{attributes:{block_id:{type:"string"},textareaName:{type:"string",default:Object(r.__)("Message","ultimate-addons-for-gutenberg")},textareaRequired:{type:"boolean",default:!1},rows:{type:"number",default:4},placeholder:{type:"string",default:Object(r.__)("Enter your message","ultimate-addons-for-gutenberg")}},save(e){const{block_id:t,textareaRequired:a,textareaName:l,rows:i,placeholder:o}=e.attributes,n=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-textarea-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-textarea-label ${n} uagb-forms-input-label`,id:t}),React.createElement("textarea",{required:a,className:"uagb-forms-textarea-input uagb-forms-input",rows:i,placeholder:o,name:t}))}}],RC=[{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},textareaName:{type:"string",default:Object(r.__)("Message","ultimate-addons-for-gutenberg")},textareaRequired:{type:"boolean",default:!1},rows:{type:"number",default:4},placeholder:{type:"string",default:Object(r.__)("Enter your message","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"off"}},save(e){const{attributes:{block_id:t,textareaRequired:a,textareaName:l,rows:i,placeholder:o,autocomplete:n}}=e,s=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-textarea-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-textarea-label ${s} uagb-forms-input-label`,id:t}),React.createElement("textarea",{required:a,className:"uagb-forms-textarea-input uagb-forms-input",rows:Ps(i,"rows","forms-textarea"),placeholder:o,name:t,autoComplete:n}))}}];let BC={};BC=Object(j.applyFilters)("uagb/forms-textarea",ws(BC)),Object(be.registerBlockType)("uagb/forms-textarea",{...BC,title:Object(r.__)("Textarea","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a text field in your form.","ultimate-addons-for-gutenberg"),icon:se.textarea,parent:["uagb/forms"],attributes:ba,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-textarea",isChildren:!0}):React.createElement(GC,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,textareaRequired:l,textareaName:i,rows:o,placeholder:n,autocomplete:r}=t,s=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-textarea-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-textarea-label ${s} uagb-forms-input-label`,id:a}),React.createElement("textarea",{required:l,className:"uagb-forms-textarea-input uagb-forms-input",rows:Ps(o,"rows","forms-textarea"),placeholder:n,name:a,autoComplete:r}))},deprecated:[RC,MC]});var UC,EC={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},checkboxName:{type:"string",default:Object(r.__)("Checkbox Title","ultimate-addons-for-gutenberg")},checkboxRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},OC=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{checkboxRequired:l}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({checkboxRequired:!l})}))),React.createElement(il,rl)))}),LC=a(119),HC=0,jC={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},FC={};FC.locals=LC.a.locals||{},FC.use=function(){return HC++||(UC=ke()(LC.a,jC)),FC},FC.unuse=function(){HC>0&&!--HC&&(UC(),UC=null)};var zC=FC,DC=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(zC.use(),()=>{zC.unuse()}),[]);const{attributes:t,setAttributes:a,isSelected:l}=e,{block_id:i,checkboxRequired:o,options:n,checkboxName:s}=t,c=o?"required":"",u=n.map((e,t)=>React.createElement("div",{key:t,className:"uagb-form-checkbox-option"},React.createElement("input",{type:"checkbox",name:"checkbox-"+i,value:e.optiontitle,id:e.optiontitle,required:o}),React.createElement("label",{htmlFor:e.optiontitle}," "),React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optiontitle,onChange:e=>b({optiontitle:e.target.value,optionvalue:e.target.value},t),type:"text",value:e.optiontitle,required:o}),React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optionvalue,onChange:e=>b({optionvalue:e.target.value},t),type:"text",value:e.optionvalue,required:o}),React.createElement(Le.Button,{className:"uagb-form-checkbox-option-delete",icon:"trash",label:"Remove",onClick:()=>d(t)}))),p=()=>n.map(e=>{const t=e.optionvalue.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",id:`checkbox-${t}-${i}`,name:s+"[]",value:t,required:o}),React.createElement("label",{htmlFor:`checkbox-${t}-${i}`},e.optiontitle),React.createElement("br",null))}),b=(e,t)=>{const l=n.map((a,l)=>(t===l&&(a={...a,...e}),a));a({options:l})},d=e=>{const t=n.map((t,a)=>(e===a&&(n.splice(e,1),t={options:n}),t));a({deleteOptions:t})};return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-checkbox-wrap","uagb-forms-field-set","uagb-block-"+i)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Checkbox Title","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({checkboxName:e}),className:`uagb-forms-checkbox-label ${c} uagb-forms-input-label`,multiline:!1,id:i}),l&&React.createElement(React.Fragment,null,u,React.createElement("div",{className:"uagb-forms-checkbox-controls"},React.createElement("div",null,React.createElement(Le.Button,{isSecondary:!0,onClick:()=>{const e={optiontitle:Object(r.__)("Option Name ","ultimate-addons-for-gutenberg")+""+(n.length+1),optionvalue:Object(r.__)("Option Value ","ultimate-addons-for-gutenberg")+""+(n.length+1)},t=[...n,e];a({options:t})}},Object(r.__)(" + Add Option ","ultimate-addons-for-gutenberg"))))),!l&&React.createElement(p,null)))}),NC=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(OC,e),React.createElement(DC,e))),IC={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},checkboxName:{type:"string",default:Object(r.__)("Checkbox Title","ultimate-addons-for-gutenberg")},checkboxRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},save:e=>{const{attributes:{block_id:t,checkboxRequired:a,options:l,checkboxName:i}}=e,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-checkbox-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-checkbox-label ${o} uagb-forms-input-label`,id:t}),l.map((e,l)=>{const o=e.optionvalue,n=o.replace(/\s+/g,"-").toLowerCase();return React.createElement(B.Fragment,{key:l},React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",id:`checkbox-${n}-${t}`,name:i+"[]",value:o,required:a,onInvalid:"this.setCustomValidity('Please check this box if you want to proceed.')"}),React.createElement("label",{htmlFor:`checkbox-${n}-${t}`},e.optiontitle),React.createElement("br",null))}))}},VC={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},checkboxName:{type:"string",default:Object(r.__)("Checkbox Title","ultimate-addons-for-gutenberg")},checkboxRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},save:e=>{const{attributes:{block_id:t,checkboxRequired:a,options:l,checkboxName:i}}=e,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-checkbox-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-checkbox-label ${o} uagb-forms-input-label`,id:t}),l.map((e,l)=>{const o=e.optionvalue,n=o.replace(/\s+/g,"-").toLowerCase();return React.createElement(B.Fragment,{key:l},React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",id:`checkbox-${n}-${t}`,name:i+"[]",value:o,required:a}),React.createElement("label",{htmlFor:`checkbox-${n}-${t}`},e.optiontitle),React.createElement("br",null))}))}};let WC={};WC=Object(j.applyFilters)("uagb/forms-checkbox",ws(WC)),Object(be.registerBlockType)("uagb/forms-checkbox",{...WC,title:Object(r.__)("Checkbox","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add checkboxes to allow multiple choices from options.","ultimate-addons-for-gutenberg"),icon:se.checkbox,parent:["uagb/forms"],attributes:EC,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-checkbox",isChildren:!0}):React.createElement(NC,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,checkboxRequired:l,options:i,checkboxName:o}=t,n=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-checkbox-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:o,className:`uagb-forms-checkbox-label ${n} uagb-forms-input-label`,id:a}),i.map((e,t)=>{const i=e.optionvalue,n=i.replace(/\s+/g,"-").toLowerCase();return React.createElement(B.Fragment,{key:t},React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",id:`checkbox-${n}-${a}`,name:o+"[]",value:i,required:l}),React.createElement("label",{htmlFor:`checkbox-${n}-${a}`},e.optiontitle),React.createElement("br",null))}))},deprecated:[VC,IC]});var qC,ZC={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},radioName:{type:"string",default:Object(r.__)("RadioBox Title","ultimate-addons-for-gutenberg")},radioRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]},layout:{type:"string",default:"round"}},$C=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{radioRequired:l,layout:i}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({radioRequired:!l})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:i,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"",label:"Square"},{value:"round",label:"Round"}],showIcons:!1}))),React.createElement(il,rl)))}),YC=a(120),KC=0,JC={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},XC={};XC.locals=YC.a.locals||{},XC.use=function(){return KC++||(qC=ke()(YC.a,JC)),XC},XC.unuse=function(){KC>0&&!--KC&&(qC(),qC=null)};var QC=XC,eS=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(QC.use(),()=>{QC.unuse()}),[]);const{attributes:t,setAttributes:a,isSelected:l}=e,{block_id:i,radioRequired:o,options:n,radioName:s,layout:c}=t,u=n.map((e,t)=>React.createElement("div",{key:t,className:"uagb-form-radio-option"},React.createElement("input",{type:"radio",name:"radio-"+i,value:e.optiontitle,id:e.optiontitle,className:c}),React.createElement("label",{htmlFor:e.optiontitle}),React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optiontitle,onChange:e=>b({optiontitle:e.target.value,optionvalue:e.target.value},t),type:"text",value:e.optiontitle}),React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optionvalue,onChange:e=>b({optionvalue:e.target.value},t),type:"text",value:e.optionvalue}),React.createElement(Le.Button,{className:"uagb-form-radio-option-delete",icon:"trash",label:"Remove",onClick:()=>d(t)}))),p=()=>n.map(e=>{const t=e.optionvalue,a=t.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("input",{type:"radio",id:a,name:i,value:t,required:o,className:c}),React.createElement("label",{htmlFor:a},e.optiontitle),React.createElement("br",null))}),b=(e,t)=>{const l=n.map((a,l)=>(t===l&&(a={...a,...e}),a));a({options:l})},d=e=>{const t=n.map((t,a)=>(e===a&&(n.splice(e,1),t={options:n}),t));a({deleteOptions:t})},g=o?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-radio-wrap","uagb-forms-field-set","uagb-block-"+i)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Radio Title","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({radioName:e}),className:`uagb-forms-radio-label ${g} uagb-forms-input-label`,multiline:!1,id:i}),l&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-forms-radio-controls"},u,React.createElement("div",null,React.createElement(Le.Button,{isSecondary:!0,onClick:()=>{const e={optiontitle:Object(r.__)("Option Name ","ultimate-addons-for-gutenberg")+""+(n.length+1),optionvalue:Object(r.__)("Option Value ","ultimate-addons-for-gutenberg")+""+(n.length+1)};n[n.length]=e;const t=n.map(e=>e);a({options:t})}},Object(r.__)(" + Add Option ","ultimate-addons-for-gutenberg"))))),!l&&React.createElement(p,null)))}),tS=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement($C,e),React.createElement(eS,e))),aS=[{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},radioName:{type:"string",default:Object(r.__)("RadioBox Title","ultimate-addons-for-gutenberg")},radioRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]},layout:{type:"string",default:"round"}},save(e){const{block_id:t,radioRequired:a,options:l,radioName:i}=e.attributes,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-radio-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-radio-label ${o} uagb-forms-input-label`,id:t}),l.map(e=>{const l=e.optionvalue,i=l.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("input",{type:"radio",id:`radio-${i}-${t}`,name:t,value:l,required:a}),React.createElement("label",{htmlFor:`radio-${i}-${t}`},e.optiontitle),React.createElement("br",null))}))}}],lS={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},radioName:{type:"string",default:Object(r.__)("RadioBox Title","ultimate-addons-for-gutenberg")},radioRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]},layout:{type:"string",default:"round"}},save:e=>{const{attributes:{block_id:t,radioRequired:a,options:l,radioName:i,layout:o}}=e,n=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-radio-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-radio-label ${n} uagb-forms-input-label`,id:t}),l.map(e=>{const l=e.optionvalue,i=l.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("input",{type:"radio",id:`radio-${i}-${t}`,name:t,value:l,required:a,className:o}),React.createElement("label",{htmlFor:`radio-${i}-${t}`},e.optiontitle),React.createElement("br",null))}))}};let iS={};iS=Object(j.applyFilters)("uagb/forms-radio",ws(iS)),Object(be.registerBlockType)("uagb/forms-radio",{...iS,title:Object(r.__)("Radio","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add radio select boxes to allow a single choice from options.","ultimate-addons-for-gutenberg"),icon:se.radio,parent:["uagb/forms"],attributes:ZC,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-radio",isChildren:!0}):React.createElement(tS,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,radioRequired:l,options:i,radioName:o,layout:n}=t,r=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-radio-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:o,className:`uagb-forms-radio-label ${r} uagb-forms-input-label`,id:a}),i.map(e=>{const t=e.optionvalue,i=t.replace(/\s+/g,"-").toLowerCase();return React.createElement(React.Fragment,null,React.createElement("input",{type:"radio",id:`radio-${i}-${a}`,name:a,value:t,required:l,className:n}),React.createElement("label",{htmlFor:`radio-${i}-${a}`},e.optiontitle),React.createElement("br",null))}))},deprecated:[lS,aS]});var oS=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{required:l,placeholder:i,autocomplete:o}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Autocomplete","ultimate-addons-for-gutenberg"),data:{value:o,label:"autocomplete"},setAttributes:a,options:[{label:Object(r.__)("Off","ultimate-addons-for-gutenberg"),value:"off"},{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:"url"}]}),React.createElement(Fs,{label:Object(r.__)("Placeholder","ultimate-addons-for-gutenberg"),value:i,data:{value:i,label:"placeholder"},setAttributes:a,onChange:e=>a({placeholder:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({required:!l})}))),React.createElement(il,rl)))}),nS=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{block_id:l,required:i,name:o,placeholder:n}=t,s=i?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-url-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("URL Name","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({name:e}),className:`uagb-forms-url-label ${s} uagb-forms-input-label`,multiline:!1,id:l}),React.createElement("input",{type:"url",name:l,placeholder:n,required:i,className:"uagb-forms-url-input uagb-forms-input"})))}),rS=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(oS,e),React.createElement(nS,e))),sS=[{attributes:{block_id:{type:"string"},name:{type:"string",default:Object(r.__)("URL","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("https://example.com","ultimate-addons-for-gutenberg")}},save(e){const{block_id:t,required:a,name:l,placeholder:i}=e.attributes,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-url-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-url-label ${o} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"url",name:t,required:a,placeholder:i,className:"uagb-forms-url-input uagb-forms-input"}))}}],cS=[{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},name:{type:"string",default:Object(r.__)("URL","ultimate-addons-for-gutenberg")},required:{type:"boolean",default:!1},placeholder:{type:"string",default:Object(r.__)("https://example.com","ultimate-addons-for-gutenberg")},autocomplete:{type:"string",default:"url"}},save(e){const{attributes:{block_id:t,required:a,name:l,placeholder:i,autocomplete:o}}=e,n=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-url-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-url-label ${n} uagb-forms-input-label`,id:t}),React.createElement("input",{type:"url",name:t,required:a,placeholder:i,className:"uagb-forms-url-input uagb-forms-input",autoComplete:o}))}}];let uS={};uS=Object(j.applyFilters)("uagb/forms-url",ws(uS)),Object(be.registerBlockType)("uagb/forms-url",{...uS,title:Object(r.__)("URL","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a URL input field in your form.","ultimate-addons-for-gutenberg"),icon:se.url,parent:["uagb/forms"],attributes:pa,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-field",isChildren:!0}):React.createElement(rS,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,required:l,name:i,placeholder:o,autocomplete:n}=t,r=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-url-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-url-label ${r} uagb-forms-input-label`,id:a}),React.createElement("input",{type:"url",name:a,required:l,placeholder:o,className:"uagb-forms-url-input uagb-forms-input",autoComplete:n}))},deprecated:[cS,sS]});var pS,bS={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},selectName:{type:"string",default:Object(r.__)("Select Title","ultimate-addons-for-gutenberg")},selectRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},dS=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{selectRequired:l}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({selectRequired:!l})}))),React.createElement(il,rl)))}),gS=a(121),mS=0,yS={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},fS={};fS.locals=gS.a.locals||{},fS.use=function(){return mS++||(pS=ke()(gS.a,yS)),fS},fS.unuse=function(){mS>0&&!--mS&&(pS(),pS=null)};var hS=fS,vS=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(hS.use(),()=>{hS.unuse()}),[]);const{attributes:t,setAttributes:a,isSelected:l}=e,{block_id:i,selectRequired:o,options:n,selectName:s}=t,c=n.map((e,t)=>React.createElement("div",{key:t,className:"uagb-form-select-option"},React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optiontitle,onChange:e=>p({optiontitle:e.target.value,optionvalue:e.target.value},t),type:"text",value:e.optiontitle}),React.createElement("input",{className:"uagb-inner-input-view","aria-label":e.optionvalue,onChange:e=>p({optionvalue:e.target.value},t),type:"text",value:e.optionvalue}),React.createElement(Le.Button,{className:"uagb-form-select-option-delete",icon:"trash",label:"Remove",onClick:()=>b(t)}))),u=()=>{const e=n.map((e,t)=>React.createElement("option",{key:t,value:e.optionvalue},e.optiontitle));return React.createElement("select",{className:"uagb-forms-select-box uagb-forms-input",required:o,name:i,defaultValue:""},React.createElement("option",{value:"",disabled:!0},Object(r.__)("Select your option","ultimate-addons-for-gutenberg")),e)},p=(e,t)=>{const l=n.map((a,l)=>(t===l&&(a={...a,...e}),a));a({options:l})},b=e=>{const t=n.map((t,a)=>(e===a&&(n.splice(e,1),t={options:n}),t));a({deleteCurrentOptions:t})},d=o?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-select-wrap","uagb-forms-field-set","uagb-block-"+i)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Select Title","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({selectName:e}),className:`uagb-forms-select-label ${d} uagb-forms-input-label`,multiline:!1,id:i}),l&&React.createElement(React.Fragment,null,c,React.createElement("div",{className:"uagb-forms-select-controls"},React.createElement("div",null,React.createElement(Le.Button,{isSecondary:!0,onClick:()=>{const e={optiontitle:Object(r.__)("Option Name ","ultimate-addons-for-gutenberg")+""+(n.length+1),optionvalue:Object(r.__)("Option Value ","ultimate-addons-for-gutenberg")+""+(n.length+1)};n[n.length]=e;const t=n.map(e=>e);a({options:t})}},Object(r.__)(" + Add Option ","ultimate-addons-for-gutenberg"))))),!l&&React.createElement(u,null)))}),_S=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(dS,e),React.createElement(vS,e))),TS=[{attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},selectName:{type:"string",default:Object(r.__)("Select Title","ultimate-addons-for-gutenberg")},selectRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},save(e){const{attributes:{block_id:t,selectRequired:a,options:l,selectName:i}}=e,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-select-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-select-label ${o} uagb-forms-input-label`,id:t}),React.createElement("select",{className:"uagb-forms-select-box uagb-forms-input",required:a,name:t},React.createElement("option",{value:"",disabled:!0,selected:!0},"Select your option"),l.map((e,t)=>React.createElement("option",{key:t,value:e.optionvalue},e.optiontitle))))}}],CS={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},selectName:{type:"string",default:Object(r.__)("Select Title","ultimate-addons-for-gutenberg")},selectRequired:{type:"boolean",default:!1},options:{type:"array",default:[{optiontitle:Object(r.__)("Option Name 1","ultimate-addons-for-gutenberg"),optionvalue:Object(r.__)("Option Value 1","ultimate-addons-for-gutenberg")}]}},save:e=>{const{attributes:{block_id:t,selectRequired:a,options:l,selectName:i}}=e,o=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-select-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-select-label ${o} uagb-forms-input-label`,id:t}),React.createElement("select",{className:"uagb-forms-select-box uagb-forms-input",required:a,name:t},React.createElement("option",{value:"",disabled:!0,selected:!0},Object(r.__)("Select your option","ultimate-addons-for-gutenberg")),l.map((e,t)=>React.createElement("option",{key:t,value:e.optionvalue},e.optiontitle))))}};let SS={};SS=Object(j.applyFilters)("uagb/forms-select",ws(SS)),Object(be.registerBlockType)("uagb/forms-select",{...SS,title:Object(r.__)("Select","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a select dropdown to list choices.","ultimate-addons-for-gutenberg"),icon:se.select,parent:["uagb/forms"],attributes:bS,category:uagb_blocks_info.category,supports:{html:!1},edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-field",isChildren:!0}):React.createElement(_S,e),save:function(e){const{attributes:t}=e,{block_id:a,selectRequired:l,options:i,selectName:o}=t,n=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-select-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:o,className:`uagb-forms-select-label ${n} uagb-forms-input-label`,id:a}),React.createElement("select",{className:"uagb-forms-select-box uagb-forms-input",required:l,name:a},React.createElement("option",{value:"",disabled:!0,selected:!0},Object(r.__)("Select your option","ultimate-addons-for-gutenberg")),i.map((e,t)=>React.createElement("option",{key:t,value:e.optionvalue},e.optiontitle))))},deprecated:[CS,TS]});var wS,kS=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{toggleRequired:l,toggleStatus:i,layout:o,trueValue:n,falseValue:s}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Fs,{label:Object(r.__)("True State","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"trueValue"},setAttributes:a,onChange:e=>a({trueValue:e})}),React.createElement(Fs,{label:Object(r.__)("False State","ultimate-addons-for-gutenberg"),value:s,data:{value:s,label:"falseValue"},setAttributes:a,onChange:e=>a({falseValue:e})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:o,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"",label:"Square"},{value:"round",label:"Round"}],showIcons:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({toggleRequired:!l})}),React.createElement(Le.ToggleControl,{label:i?Object(r.__)("ON State","ultimate-addons-for-gutenberg"):Object(r.__)("OFF State","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({toggleStatus:!i})}),React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("Leaving the toggle in On/Off state will set it as a default value on page load for the user.","ultimate-addons-for-gutenberg")))),React.createElement(il,rl)))}),PS=a(122),xS=0,AS={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},GS={};GS.locals=PS.a.locals||{},GS.use=function(){return xS++||(wS=ke()(PS.a,AS)),GS},GS.unuse=function(){xS>0&&!--xS&&(wS(),wS=null)};var MS=GS,RS=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(MS.use(),()=>{MS.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{block_id:l,toggleRequired:i,name:o,toggleStatus:n,layout:s,trueValue:c,falseValue:u}=t,p=i?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-toggle-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Name","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({name:e}),className:`uagb-forms-toggle-label ${p} uagb-forms-input-label`,multiline:!1,id:l}),React.createElement("label",{htmlFor:l,className:"uagb-switch"},React.createElement("input",{type:"hidden",className:"uagb-forms-toggle-input",checked:n,"data-truestate":c,"data-falsestate":u,value:n?c:u,required:i,name:l}),React.createElement("input",{type:"checkbox",className:"uagb-forms-toggle-input",readOnly:!0,checked:n,"data-truestate":c,"data-falsestate":u,value:n?c:u,required:i,name:l}),React.createElement("span",{className:"uagb-slider "+s}))))}),BS=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(kS,e),React.createElement(RS,e))),US={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},toggleRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Name","ultimate-addons-for-gutenberg")},toggleStatus:{type:"boolean",default:!1},layout:{type:"string",default:"round"},trueValue:{type:"string",default:"on"},falseValue:{type:"string",default:"off"}},save:e=>{const{attributes:{block_id:t,toggleRequired:a,name:l,toggleStatus:i,layout:o,trueValue:n,falseValue:s}}=e,c=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-toggle-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-toggle-label ${c} uagb-forms-input-label`,id:t}),React.createElement("label",{className:"uagb-switch",id:"uag-form"},React.createElement("input",{type:"hidden",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t}),React.createElement("input",{type:"checkbox",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t}),React.createElement("span",{className:"uagb-slider "+o})))}},ES={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},toggleRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Name","ultimate-addons-for-gutenberg")},toggleStatus:{type:"boolean",default:!1},layout:{type:"string",default:"round"},trueValue:{type:"string",default:"on"},falseValue:{type:"string",default:"off"}},save:e=>{const{attributes:{block_id:t,toggleRequired:a,name:l,toggleStatus:i,layout:o,trueValue:n,falseValue:s}}=e,c=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-toggle-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-toggle-label ${c} uagb-forms-input-label`,id:t}),React.createElement("label",{className:"uagb-switch",id:"uag-form"},React.createElement("input",{type:"hidden",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t}),React.createElement("input",{type:"checkbox",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t}),React.createElement("span",{className:"uagb-slider "+o})))}},OS={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},toggleRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Toggle","ultimate-addons-for-gutenberg")},toggleStatus:{type:"boolean",default:!1},layout:{type:"string",default:"round"},trueValue:{type:"string",default:"on"},falseValue:{type:"string",default:"off"}},save:e=>{const{attributes:{block_id:t,toggleRequired:a,name:l,toggleStatus:i,layout:o,trueValue:n,falseValue:s}}=e,c=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-toggle-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-toggle-label ${c} uagb-forms-input-label`,id:t}),React.createElement("label",{className:"uagb-switch",id:"uag-form"},React.createElement("input",{type:"hidden",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t,"aria-label":l}),React.createElement("input",{type:"checkbox",className:"uagb-forms-toggle-input",checked:i,"data-truestate":n,"data-falsestate":s,value:i?n:s,required:a,name:t,"aria-label":l}),React.createElement("span",{className:"uagb-slider "+o})))}};let LS={};LS=Object(j.applyFilters)("uagb/forms-toggle",ws(LS)),Object(be.registerBlockType)("uagb/forms-toggle",{...LS,title:Object(r.__)("Toggle","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a toggle button in your form.","ultimate-addons-for-gutenberg"),icon:se.toggle,parent:["uagb/forms"],attributes:ua,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-toggle",isChildren:!0}):React.createElement(BS,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,toggleRequired:l,name:i,toggleStatus:o,layout:n,trueValue:r,falseValue:s}=t,c=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-toggle-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-toggle-label ${c} uagb-forms-input-label`,id:a}),React.createElement("label",{className:"uagb-switch",id:"uag-form"},React.createElement("input",{type:"hidden",className:"uagb-forms-toggle-input",checked:o,"data-truestate":r,"data-falsestate":s,value:o?r:s,required:l,name:a,"aria-label":i}),React.createElement("input",{type:"checkbox",className:"uagb-forms-toggle-input",checked:o,"data-truestate":r,"data-falsestate":s,value:o?r:s,required:l,name:a,"aria-label":i}),React.createElement("span",{className:"uagb-slider "+n})))},deprecated:[OS,ES,US]});var HS={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},dateRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Date","ultimate-addons-for-gutenberg")},additonalVal:{type:"boolean",default:!1},minYear:{type:"string",default:""},minMonth:{type:"string",default:""},minDay:{type:"string",default:""},maxYear:{type:"string",default:""},maxMonth:{type:"string",default:""},maxDay:{type:"string",default:""},autocomplete:{type:"string",default:"bday"}};const jS=[{label:"YYYY",value:""}],FS=[{label:"MM",value:""}],zS=[{label:"DD",value:""}];let DS;for(DS=1930;DS<=2030;DS++)jS.push({label:""+DS,value:""+DS});for(DS=1;DS<=12;DS++){const e=DS<10?"0"+DS:""+DS;FS.push({label:e,value:e})}for(DS=1;DS<=31;DS++){const e=DS<10?"0"+DS:""+DS;zS.push({label:e,value:e})}var NS,IS=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{dateRequired:l,additonalVal:i,minYear:o,minMonth:n,minDay:s,maxYear:c,maxMonth:u,maxDay:p}=t;let b="",d="";o&&n&&s&&(b=o+"-"+n+"-"+s),c&&u&&p&&(d=c+"-"+u+"-"+p);let g="";return Date.parse(b)>Date.parse(d)&&(g=React.createElement("p",{className:"uagb-forms-date-invalidate"},Object(r.__)("Invalid date range selected","ultimate-addons-for-gutenberg"))),React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({dateRequired:!l})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Additional Validation","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({additonalVal:!i}),help:Object(r.__)("Helps to set range of calender","ultimate-addons-for-gutenberg")}),i&&React.createElement(React.Fragment,null,React.createElement(fi,null),React.createElement("p",null,Object(r.__)("From","ultimate-addons-for-gutenberg")," :"),React.createElement(Pi,{label:Object(r.__)("Year","ultimate-addons-for-gutenberg"),data:{value:o,label:"minYear"},setAttributes:a,options:jS}),React.createElement(Pi,{label:Object(r.__)("Month","ultimate-addons-for-gutenberg"),data:{value:n,label:"minMonth"},setAttributes:a,options:FS}),React.createElement(Pi,{label:Object(r.__)("Date","ultimate-addons-for-gutenberg"),data:{value:s,label:"minDay"},setAttributes:a,options:zS}),React.createElement(fi,null),React.createElement("p",null,Object(r.__)("To","ultimate-addons-for-gutenberg")," :"),React.createElement(Pi,{label:Object(r.__)("Year","ultimate-addons-for-gutenberg"),data:{value:c,label:"maxYear"},setAttributes:a,options:jS}),React.createElement(Pi,{label:Object(r.__)("Month","ultimate-addons-for-gutenberg"),data:{value:u,label:"maxMonth"},setAttributes:a,options:FS}),React.createElement(Pi,{label:Object(r.__)("Date","ultimate-addons-for-gutenberg"),data:{value:p,label:"maxDay"},setAttributes:a,options:zS}),g))),React.createElement(il,rl))))}),VS=a(123),WS=0,qS={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ZS={};ZS.locals=VS.a.locals||{},ZS.use=function(){return WS++||(NS=ke()(VS.a,qS)),ZS},ZS.unuse=function(){WS>0&&!--WS&&(NS(),NS=null)};var $S=ZS,YS=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>($S.use(),()=>{$S.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{block_id:l,dateRequired:i,name:o,additonalVal:n,minYear:s,minMonth:c,minDay:u}=t;let p="";s&&c&&u&&(p=s+"-"+c+"-"+u);let b="";b=n?React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:i,min:p,max:"",name:l}):React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:i,name:l});const d=i?"required":"";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-date-wrap","uagb-forms-field-set","uagb-block-"+l)},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Date","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({name:e}),className:`uagb-forms-date-label ${d} uagb-forms-input-label`,multiline:!1,id:l}),b))}),KS=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(IS,e),React.createElement(YS,e))),JS={attributes:{block_id:{type:"string"},dateRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Date","ultimate-addons-for-gutenberg")},additonalVal:{type:"boolean",default:!1},minYear:{type:"string",default:""},minMonth:{type:"string",default:""},minDay:{type:"string",default:""},maxYear:{type:"string",default:""},maxMonth:{type:"string",default:""},maxDay:{type:"string",default:""}},save:e=>{const{attributes:{block_id:t,dateRequired:a,name:l,additonalVal:i,minYear:o,minMonth:n,minDay:s,maxYear:c,maxMonth:u,maxDay:p,autocomplete:b}}=e;let d="",g="";o&&n&&s&&(d=o+"-"+n+"-"+s),c&&u&&p&&(g=c+"-"+u+"-"+p);let m="";m=i?React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:a,min:d,max:g,name:t,autoComplete:b}):React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:a,name:t,autoComplete:b});const y=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-date-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-date-label ${y} uagb-forms-input-label`,id:t}),m)}},XS={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},dateRequired:{type:"boolean",default:!1},name:{type:"string",default:Object(r.__)("Date","ultimate-addons-for-gutenberg")},additonalVal:{type:"boolean",default:!1},minYear:{type:"string",default:""},minMonth:{type:"string",default:""},minDay:{type:"string",default:""},maxYear:{type:"string",default:""},maxMonth:{type:"string",default:""},maxDay:{type:"string",default:""},autocomplete:{type:"string",default:"bday"}},save:e=>{const{attributes:{block_id:t,dateRequired:a,name:l,additonalVal:i,minYear:o,minMonth:n,minDay:s,maxYear:c,maxMonth:u,maxDay:p,autocomplete:b}}=e;let d="",g="";o&&n&&s&&(d=o+"-"+n+"-"+s),c&&u&&p&&(g=c+"-"+u+"-"+p);let m="";m=i?React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:a,min:d,max:g,name:t,autoComplete:b,"aria-label":l}):React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:a,name:t,autoComplete:b,"aria-label":l});const y=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"";return React.createElement("div",{className:Be()("uagb-forms-date-wrap","uagb-forms-field-set","uagb-block-"+t)},React.createElement(ge.RichText.Content,{tagName:"div",value:l,className:`uagb-forms-date-label ${y} uagb-forms-input-label`,id:t}),m)}};let QS={};QS=Object(j.applyFilters)("uagb/forms-date",ws(QS)),Object(be.registerBlockType)("uagb/forms-date",{...QS,title:Object(r.__)("Datepicker","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a calendar based date picker in your form.","ultimate-addons-for-gutenberg"),icon:se.datepicker,parent:["uagb/forms"],attributes:HS,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-field",isChildren:!0}):React.createElement(KS,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,dateRequired:l,name:i,additonalVal:o,minYear:n,minMonth:r,minDay:s,maxYear:c,maxMonth:u,maxDay:p,autocomplete:b}=t;let d="",g="";n&&r&&s&&(d=n+"-"+r+"-"+s),c&&u&&p&&(g=c+"-"+u+"-"+p);let m="";m=o?React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:l,min:d,max:g,name:a,autoComplete:b,"aria-label":i}):React.createElement("input",{type:"date",className:"uagb-forms-date-input uagb-forms-input",required:l,name:a,autoComplete:b,"aria-label":i});const y=l?"required":"";return React.createElement("div",{className:Be()("uagb-forms-date-wrap","uagb-forms-field-set","uagb-block-"+a)},React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:`uagb-forms-date-label ${y} uagb-forms-input-label`,id:a}),m)},deprecated:[XS,JS]});var ew,tw=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{acceptRequired:l,acceptText:i,showLink:o,linkLabel:n,link:s,linkInNewTab:c}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Fs,{variant:"textarea",label:Object(r.__)("Acceptance Text","ultimate-addons-for-gutenberg"),help:Object(r.__)("Label to display as acceptance message.","ultimate-addons-for-gutenberg"),value:i,data:{value:i,label:"acceptText"},setAttributes:a,onChange:e=>a({acceptText:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Required","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({acceptRequired:!l})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Privacy Link","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>a({showLink:!o})}),o&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link Label","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"linkLabel"},setAttributes:a,onChange:e=>a({linkLabel:e})}),React.createElement(Fs,{className:"uagb-forms-editor-privacy-link",label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),value:s,data:{value:s,label:"link"},setAttributes:a,onChange:e=>a({link:e}),help:""===s?Object(r.__)("Enter a valid link.","ultimate-addons-for-gutenberg"):""}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in new tab","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>a({linkInNewTab:!c})})))),React.createElement(il,rl))))}),aw=a(124),lw=0,iw={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ow={};ow.locals=aw.a.locals||{},ow.use=function(){return lw++||(ew=ke()(aw.a,iw)),ow},ow.unuse=function(){lw>0&&!--lw&&(ew(),ew=null)};var nw=ow,rw=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(nw.use(),()=>{nw.unuse()}),[]);const{attributes:t}=e,{block_id:a,acceptRequired:l,acceptText:i,showLink:o,linkLabel:n,link:r,linkInNewTab:s}=t,c=l?"required":"",u=s?"_blank":"_self";return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-forms-accept-wrap","uagb-forms-field-set","uagb-block-"+a)},o&&React.createElement("div",{className:"uagb-forms-accept-privacy-link"},React.createElement("a",{href:r,target:u,rel:"noopener noreferrer"},n)),React.createElement("input",{type:"checkbox",id:"uagb-forms-accept-"+a,className:"uagb-forms-checkbox",name:a,required:l,value:"Agree"}),React.createElement("label",{name:a,htmlFor:"uagb-forms-accept-"+a,className:"uagb-forms-accept-label "+c},i),React.createElement("br",null)))}),sw=Object(L.compose)(vs)(e=>React.createElement(React.Fragment,null,e.isSelected&&React.createElement(tw,e),React.createElement(rw,e))),cw={attributes:{isPreview:{type:"boolean",default:!1},block_id:{type:"string"},acceptRequired:{type:"boolean",default:!1},acceptText:{type:"string",default:Object(r.__)("I have read and agree to the Privacy Policy.","ultimate-addons-for-gutenberg")},showLink:{type:"boolean",default:!1},linkLabel:{type:"string",default:Object(r.__)("Privacy Policy","ultimate-addons-for-gutenberg")},link:{type:"string",default:"#"},linkInNewTab:{type:"boolean",default:!0}},save:e=>{const{attributes:{block_id:t,acceptRequired:a,acceptText:l,showLink:i,linkLabel:o,link:n,linkInNewTab:s}}=e,c=a?Object(r.__)("required","ultimate-addons-for-gutenberg"):"",u=s?Object(r.__)("_blank","ultimate-addons-for-gutenberg"):Object(r.__)("_self","ultimate-addons-for-gutenberg");return React.createElement("div",{className:Be()("uagb-forms-accept-wrap","uagb-forms-field-set","uagb-block-"+t)},i&&React.createElement("div",{className:"uagb-forms-accept-privacy-link"},React.createElement("a",{href:n,target:u,rel:"noopener noreferrer"},o)),React.createElement("input",{type:"checkbox",name:t,required:a,value:"Agree",className:"uagb-forms-checkbox",id:"uagb-forms-accept-"+t}),React.createElement("label",{name:t,htmlFor:"uagb-forms-accept-"+t,className:"uagb-forms-accept-label "+c,id:t},l),React.createElement("br",null))}};let uw={};uw=Object(j.applyFilters)("uagb/forms-accept",ws(uw)),Object(be.registerBlockType)("uagb/forms-accept",{...uw,title:Object(r.__)("Accept","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a consent statement with a checkbox in your form.","ultimate-addons-for-gutenberg"),icon:se.accept,parent:["uagb/forms"],attributes:na,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"form-accept",isChildren:!0}):React.createElement(sw,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,acceptRequired:l,acceptText:i,showLink:o,linkLabel:n,link:r,linkInNewTab:s}=t,c=l?"required":"",u=s?"_blank":"_self";return React.createElement("div",{className:Be()("uagb-forms-accept-wrap","uagb-forms-field-set","uagb-block-"+a)},o&&React.createElement("div",{className:"uagb-forms-accept-privacy-link"},React.createElement("a",{href:r,target:u,rel:"noopener noreferrer"},n)),React.createElement("input",{type:"checkbox",name:a,required:l,value:"Agree",className:"uagb-forms-checkbox",id:"uagb-forms-accept-"+a}),React.createElement("label",{name:a,htmlFor:"uagb-forms-accept-"+a,className:"uagb-forms-accept-label "+c,id:a},i),React.createElement("br",null))},deprecated:[cw]}),a(220);function pw(){return(pw=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var bw,dw=Object(B.memo)(e=>{const{setAttributes:t,attributes:{height:a,heightTablet:l,heightMobile:i,zoom:o,address:n,language:s,enableSatelliteView:c}}=e,u=c?21:22;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("This block uses Spectra's API key to display the map. You don't need to create your own API key or worry about renewing it.","ultimate-addons-for-gutenberg")),React.createElement(Fs,{label:Object(r.__)("Address","ultimate-addons-for-gutenberg"),enableDynamicContent:!0,dynamicContentType:"text",value:n,name:"address",data:{value:n,label:"address"},setAttributes:t,placeholder:Object(r.__)("Type the address","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Satellite View","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>t({enableSatelliteView:!c})}),React.createElement(Qa,{label:Object(r.__)("Zoom","ultimate-addons-for-gutenberg"),value:o,setAttributes:t,data:{value:o,label:"zoom"},min:1,max:u,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:a,label:"height"},tablet:{value:l,label:"heightTablet"},mobile:{value:i,label:"heightMobile"}},min:0,max:1e3,displayUnit:!1,setAttributes:t,responsive:!0}),React.createElement(Pi,{label:Object(r.__)("Language","ultimate-addons-for-gutenberg"),data:{value:s,label:"language"},setAttributes:t,options:[{value:"af",label:Object(r.__)("Afrikaans","ultimate-addons-for-gutenberg")},{value:"sq",label:Object(r.__)("Albanian","ultimate-addons-for-gutenberg")},{value:"am",label:Object(r.__)("Amharic","ultimate-addons-for-gutenberg")},{value:"ar",label:Object(r.__)("Arabic","ultimate-addons-for-gutenberg")},{value:"hy",label:Object(r.__)("Armenian","ultimate-addons-for-gutenberg")},{value:"az",label:Object(r.__)("Azerbaijani","ultimate-addons-for-gutenberg")},{value:"eu",label:Object(r.__)("Basque","ultimate-addons-for-gutenberg")},{value:"be",label:Object(r.__)("Belarusian","ultimate-addons-for-gutenberg")},{value:"bn",label:Object(r.__)("Bengali","ultimate-addons-for-gutenberg")},{value:"bs",label:Object(r.__)("Bosnian","ultimate-addons-for-gutenberg")},{value:"bg",label:Object(r.__)("Bulgarian","ultimate-addons-for-gutenberg")},{value:"my",label:Object(r.__)("Burmese","ultimate-addons-for-gutenberg")},{value:"ca",label:Object(r.__)("Catalan","ultimate-addons-for-gutenberg")},{value:"zh",label:Object(r.__)("Chinese","ultimate-addons-for-gutenberg")},{value:"hr",label:Object(r.__)("Croatian","ultimate-addons-for-gutenberg")},{value:"cs",label:Object(r.__)("Czech","ultimate-addons-for-gutenberg")},{value:"da",label:Object(r.__)("Danish","ultimate-addons-for-gutenberg")},{value:"nl",label:Object(r.__)("Dutch","ultimate-addons-for-gutenberg")},{value:"en",label:Object(r.__)("English","ultimate-addons-for-gutenberg")},{value:"et",label:Object(r.__)("Estonian","ultimate-addons-for-gutenberg")},{value:"fa",label:Object(r.__)("Farsi","ultimate-addons-for-gutenberg")},{value:"fi",label:Object(r.__)("Finnish","ultimate-addons-for-gutenberg")},{value:"fr",label:Object(r.__)("French","ultimate-addons-for-gutenberg")},{value:"gl",label:Object(r.__)("Galician","ultimate-addons-for-gutenberg")},{value:"ka",label:Object(r.__)("Georgian","ultimate-addons-for-gutenberg")},{value:"de",label:Object(r.__)("German","ultimate-addons-for-gutenberg")},{value:"el",label:Object(r.__)("Greek","ultimate-addons-for-gutenberg")},{value:"gu",label:Object(r.__)("Gujarati","ultimate-addons-for-gutenberg")},{value:"iw",label:Object(r.__)("Hebrew","ultimate-addons-for-gutenberg")},{value:"hi",label:Object(r.__)("Hindi","ultimate-addons-for-gutenberg")},{value:"hu",label:Object(r.__)("Hungarian","ultimate-addons-for-gutenberg")},{value:"is",label:Object(r.__)("Icelandic","ultimate-addons-for-gutenberg")},{value:"id",label:Object(r.__)("Indonesian","ultimate-addons-for-gutenberg")},{value:"it",label:Object(r.__)("Italian","ultimate-addons-for-gutenberg")},{value:"ja",label:Object(r.__)("Japanese","ultimate-addons-for-gutenberg")},{value:"kn",label:Object(r.__)("Kannada","ultimate-addons-for-gutenberg")},{value:"kk",label:Object(r.__)("Kazakh","ultimate-addons-for-gutenberg")},{value:"km",label:Object(r.__)("Khmer","ultimate-addons-for-gutenberg")},{value:"ko",label:Object(r.__)("Korean","ultimate-addons-for-gutenberg")},{value:"ky",label:Object(r.__)("Kyrgyz","ultimate-addons-for-gutenberg")},{value:"lo",label:Object(r.__)("Lao","ultimate-addons-for-gutenberg")},{value:"lv",label:Object(r.__)("Latvian","ultimate-addons-for-gutenberg")},{value:"lt",label:Object(r.__)("Lithuanian","ultimate-addons-for-gutenberg")},{value:"mk",label:Object(r.__)("Macedonian","ultimate-addons-for-gutenberg")},{value:"ms",label:Object(r.__)("Malay","ultimate-addons-for-gutenberg")},{value:"ml",label:Object(r.__)("Malayalam","ultimate-addons-for-gutenberg")},{value:"mr",label:Object(r.__)("Marathi","ultimate-addons-for-gutenberg")},{value:"mn",label:Object(r.__)("Mongolian","ultimate-addons-for-gutenberg")},{value:"ne",label:Object(r.__)("Nepali","ultimate-addons-for-gutenberg")},{value:"no",label:Object(r.__)("Norwegian","ultimate-addons-for-gutenberg")},{value:"pl",label:Object(r.__)("Polish","ultimate-addons-for-gutenberg")},{value:"pt",label:Object(r.__)("Portuguese","ultimate-addons-for-gutenberg")},{value:"pa",label:Object(r.__)("Punjabi","ultimate-addons-for-gutenberg")},{value:"ro",label:Object(r.__)("Romanian","ultimate-addons-for-gutenberg")},{value:"ru",label:Object(r.__)("Russian","ultimate-addons-for-gutenberg")},{value:"sr",label:Object(r.__)("Serbian","ultimate-addons-for-gutenberg")},{value:"si",label:Object(r.__)("Sinhalese","ultimate-addons-for-gutenberg")},{value:"sk",label:Object(r.__)("Slovak","ultimate-addons-for-gutenberg")},{value:"sl",label:Object(r.__)("Slovenian","ultimate-addons-for-gutenberg")},{value:"es",label:Object(r.__)("Spanish","ultimate-addons-for-gutenberg")},{value:"sw",label:Object(r.__)("Swahili","ultimate-addons-for-gutenberg")},{value:"sv",label:Object(r.__)("Swedish","ultimate-addons-for-gutenberg")},{value:"ta",label:Object(r.__)("Tamil","ultimate-addons-for-gutenberg")},{value:"te",label:Object(r.__)("Telugu","ultimate-addons-for-gutenberg")},{value:"th",label:Object(r.__)("Thai","ultimate-addons-for-gutenberg")},{value:"tr",label:Object(r.__)("Turkish","ultimate-addons-for-gutenberg")},{value:"uk",label:Object(r.__)("Ukrainian","ultimate-addons-for-gutenberg")},{value:"ur",label:Object(r.__)("Urdu","ultimate-addons-for-gutenberg")},{value:"uz",label:Object(r.__)("Uzbek","ultimate-addons-for-gutenberg")},{value:"vi",label:Object(r.__)("Vietnamese","ultimate-addons-for-gutenberg")},{value:"zu",label:Object(r.__)("Zulu","ultimate-addons-for-gutenberg")}]})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,pw({},rl,{parentProps:e}))))}),gw=a(125),mw=0,yw={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},fw={};fw.locals=gw.a.locals||{},fw.use=function(){return mw++||(bw=ke()(gw.a,yw)),fw},fw.unuse=function(){mw>0&&!--mw&&(bw(),bw=null)};var hw=fw,vw=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(hw.use(),()=>{hw.unuse()}),[]);const{className:t,attributes:{zoom:a,address:l,language:i,height:o,block_id:n,enableSatelliteView:s},deviceType:c,name:u}=e,p=u.replace("uagb/",""),b=i||"en",d=s?"k":"m",g=`https://maps.google.com/maps?q=${encodeURI(l)}&z=${Ps(a,"zoom",p)}&hl=${b}&t=${d}&output=embed&iwloc=near`;return React.createElement("div",{className:Be()(t,"uagb-google-map__wrap","uagb-block-"+n,"uagb-editor-preview-mode-"+c.toLowerCase())},React.createElement("embed",{className:"uagb-google-map__iframe",title:Object(r.__)("Google Map for ","ultimate-addons-for-gutenberg")+l,src:g,width:"640",height:o,loading:"lazy"}))}),_w=Object(L.compose)(vs,fe,(function(e){return t=>{var a,l,i,o,r,s,c,u,p,b,d,g;const{attributes:m,context:y}=t;if(null==m||null===(a=m.dynamicContent)||void 0===a||null===(l=a.address)||void 0===l||!l.enable)return React.createElement(e,t);const[f="",h]=((null==m||null===(i=m.dynamicContent)||void 0===i||null===(o=i.address)||void 0===o?void 0:o.source)||"").split("|"),[v="",_=""]=((null==m||null===(r=m.dynamicContent)||void 0===r||null===(s=r.address)||void 0===s?void 0:s.field)||"").split("|"),T=Object(n.select)("core/editor"),C=null!=T&&T.getCurrentPostType?T.getCurrentPostType():null,S="current_post"===v?C:f,w=`<span data-spectra-dc-field="${null==m||null===(c=m.dynamicContent)||void 0===c||null===(u=c.address)||void 0===u?void 0:u.field}" data-spectra-dc-advanced="${null==m||null===(p=m.dynamicContent)||void 0===p||null===(b=p.address)||void 0===b?void 0:b.advanced}" data-spectra-dc-source="${S}|${null==m||null===(d=m.dynamicContent)||void 0===d||null===(g=d.address)||void 0===g?void 0:g.postId}" class="uag-pro-dynamic-content">${null==m?void 0:m.address}</span>`,k=Object(j.applyFilters)("uag_render_text_loop_data",w,y);return t={...t,attributes:{...m,address:k}},React.createElement(e,t)}}))(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,enableSatelliteView:n,zoom:r},name:s,deviceType:c,setAttributes:u}=e,p=Object(B.useMemo)(()=>function(e,t,a){const l=t.replace("uagb/",""),i=a.toLowerCase(),{block_id:o,height:n,heightTablet:r,heightMobile:s}=e,c=Ps(n,"height",l),u=Ps(r,"heightTablet",l),p=Ps(s,"heightMobile",l);let b={},d={};const g={" .uagb-google-map__iframe":{height:ns(c,"px")}};b={" .uagb-google-map__iframe":{height:ns(u,"px")}},d={" .uagb-google-map__iframe":{height:ns(p,"px")}};const m=".editor-styles-wrapper .uagb-block-"+o;let y=ae(g,m);return"tablet"!==i&&"mobile"!==i||(y+=ae(b,""+m,!0,"tablet"),"mobile"===i&&(y+=ae(d,""+m,!0,"mobile"))),y}(a,s,c),[a,c]);return Object(B.useEffect)(()=>{Bs()},[c]),Object(B.useEffect)(()=>{he(e)},[l,i,o,c]),Object(B.useEffect)(()=>{n&&22===r&&u({zoom:21})},[n]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:p}),t&&React.createElement(dw,e),React.createElement(vw,e))});const Tw={block_id:{type:"string"},address:{type:"string",default:"Brainstorm Force"},height:{type:"number",default:300},zoom:{type:"number",default:12},language:{type:"string",default:"en"}};var Cw=[{attributes:Tw,save(e){const{block_id:t,height:a,zoom:l,address:i}=e.attributes,o=encodeURI(i),n=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${o}&zoom=${l}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap","uagb-block-"+t)},React.createElement("iframe",{className:"uagb-google-map__iframe",title:Object(r.__)("Google Map for "+i),src:n,style:{height:a}}))}},{attributes:Tw,save(e){const{block_id:t,height:a,zoom:l,address:i}=e.attributes,o=encodeURI(i),n=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${o}&zoom=${l}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap"),id:"uagb-google-map-"+t},React.createElement("iframe",{className:"uagb-google-map__iframe",src:n,style:{height:a}}))}},{attributes:Tw,save(e){const{block_id:t,height:a,zoom:l,address:i}=e.attributes,o=encodeURI(i),n=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${o}&zoom=${l}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap","uagb-block-"+t)},React.createElement("iframe",{className:"uagb-google-map__iframe",src:n,style:{height:a}}))}},{attributes:Tw,save(e){const{block_id:t,height:a,zoom:l,address:i,language:o}=e.attributes;let n=encodeURI(i);var s=o||"en";let c=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${n}&zoom=${l}&language=${s}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap","uagb-block-"+t)},React.createElement("iframe",{className:"uagb-google-map__iframe",title:Object(r.__)("Google Map for "+i),src:c,style:{height:a}}))}},{attributes:Tw,save(e){const{block_id:t,zoom:a,address:l,language:i}=e.attributes,o=encodeURI(l),n=i||"en",s=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${o}&zoom=${Ps(a,"zoom","google-map")}&language=${n}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap","uagb-block-"+t)},React.createElement("iframe",{className:"uagb-google-map__iframe",title:Object(r.__)("Google Map for ","ultimate-addons-for-gutenberg")+l,src:s}))}},{attributes:{block_id:{type:"string"},address:{type:"string",default:"Brainstorm Force"},height:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},heightTablet:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},heightMobile:{type:"number",default:300,UAGCopyPaste:{styleType:"map-height"}},zoom:{type:"number",default:12},language:{type:"string",default:"en"},isPreview:{type:"boolean",default:!1}},save:function(e){const{block_id:t,zoom:a,address:l,language:i,height:o}=e.attributes,n=encodeURI(l),s=i||"en",c=`https://www.google.com/maps/embed/v1/place?key=${wp.uagb_google_api_key}&q=${n}&zoom=${Ps(a,"zoom","google-map")}&language=${s}`;return React.createElement("div",{className:Be()(e.className,"uagb-google-map__wrap","uagb-block-"+t)},React.createElement("iframe",{className:"uagb-google-map__iframe",title:Object(r.__)("Google Map for ","ultimate-addons-for-gutenberg")+l,src:c,width:"640",height:o,loading:"lazy"}))}}];wp.uagb_google_api_key="AIzaSyAsd_d46higiozY-zNqtr7zdA81Soswje4";let Sw={};Sw=Object(j.applyFilters)("uagb/google-map",ws(Sw)),Object(be.registerBlockType)("uagb/google-map",{...Sw,title:Object(r.__)("Google Maps","ultimate-addons-for-gutenberg"),description:Object(r.__)("Show a Google Map location on your website.","ultimate-addons-for-gutenberg"),icon:se.google_map,keywords:[Object(r.__)("google","ultimate-addons-for-gutenberg"),Object(r.__)("maps","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:_t,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"google-maps"}):React.createElement(_w,e),save:()=>null,deprecated:Cw});var ww=function(e){const{headingTitle:t,headingDesc:a,mainimage:l,showTotaltime:i,showTools:o,showMaterials:s,timeNeeded:c,showEstcost:u,estCost:p,cost:b,currencyType:d,tools:g,materials:m,clientId:y,minsValue:f,timeInHours:h,timeInDays:v,timeInMonths:_,timeInYears:T}=e,C=[],S=Object(n.select)("core/block-editor").getBlocks(y);let w=!1;S.forEach(e=>{var t,a,l;"uagb/how-to-step"===e.name||""!==e.attributes.ctaLink&&"#"!==e.attributes.ctaLink&&""!==e.attributes.infoBoxTitle&&""!==e.attributes.headingDesc&&""!==(null===(t=e.attributes.iconImage)||void 0===t?void 0:t.url)||(w=!0),"uagb/how-to-step"!==e.name||""!==e.attributes.url&&"#"!==e.attributes.url&&""!==e.attributes.name&&""!==e.attributes.description&&""!==(null===(a=e.attributes)||void 0===a||null===(l=a.image)||void 0===l?void 0:l.url)||(w=!0)}),void 0!==t&&""!==t||C.push("How-To Title"),void 0!==a&&""!==a||C.push("Description"),l&&"null"!==l&&"null"!==l.url&&""!==l.url||C.push("Main Image"),!0!==i||void 0!==c&&""!==c||C.push("Time Needed Label"),!0!==i||void 0!==f&&""!==f||void 0!==h&&""!==h||void 0!==v&&""!==v||void 0!==_&&""!==_||void 0!==T&&""!==T||C.push("Time"),!0!==u||void 0!==p&&""!==p||C.push("Total Cost Label"),!0!==u||void 0!==b&&""!==b||C.push("Cost"),!0!==u||void 0!==d&&""!==d||C.push("Currency Unit"),!0!==o||void 0!==g&&0!==g.length&&""!==g[0].add_required_tools||C.push("Tools"),!0!==s||void 0!==m&&0!==m.length&&""!==m[0].add_required_materials||C.push("Materials"),(void 0===S||2>S.length)&&C.push("Atleast 2 Steps are required"),!0===w&&C.push("The Heading, Description, Image & Link may required for each Step. ");const k=C.map(e=>React.createElement("li",{key:e}," ",e," "));return React.createElement(React.Fragment,null,0!==C.length?React.createElement("div",{className:"how-to-schema-notices"},React.createElement("h6",null," ",Object(r.__)("It seems the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields.","ultimate-addons-for-gutenberg")," "),React.createElement("ul",{className:"how-to-schema-notices-list"},k),React.createElement("p",null,Object(r.__)("P.S. Note that this notice is visible only in the editor. This will not be visible in frontend. Also, once the required fields are added, this notice will go away.","ultimate-addons-for-gutenberg")," ",React.createElement("a",{href:"https://developers.google.com/search/docs/data-types/how-to",target:"_blank",rel:"noreferrer"},Object(r.__)("Read more.","ultimate-addons-for-gutenberg")))):"")};function kw(){return(kw=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}a(40);let Pw=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];var xw,Aw=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,attributes:{overallAlignment:l,showEstcost:i,showTotaltime:o,showMaterials:n,showTools:s,showTotaltimecolor:c,tools_count:u,material_count:p,tools:b,materials:d,mainimage:g,imgSize:m,headingColor:y,subHeadingColor:f,headingTag:h,headFontFamily:v,headFontWeight:_,headFontSizeType:T,headFontSize:C,headFontSizeMobile:S,headFontSizeTablet:w,headLineHeightType:k,headLineHeight:P,headLineHeightMobile:x,headLineHeightTablet:A,subHeadFontFamily:G,subHeadFontWeight:M,subHeadFontSize:R,subHeadFontSizeType:B,subHeadFontSizeMobile:U,subHeadFontSizeTablet:E,subHeadLineHeight:O,subHeadLineHeightType:L,subHeadLineHeightMobile:H,subHeadLineHeightTablet:j,headLoadGoogleFonts:z,subHeadLoadGoogleFonts:D,priceFontSizeType:N,priceFontSize:I,priceFontSizeTablet:V,priceFontSizeMobile:W,priceFontFamily:q,priceFontWeight:Z,priceLineHeightType:$,priceLineHeight:Y,priceLineHeightTablet:K,priceLineHeightMobile:J,priceLoadGoogleFonts:X,timeSpace:Q,costSpace:ee,row_gap:te,rowGapTablet:ae,rowGapMobile:le,step_gap:ie,timeInHours:oe,timeInDays:ne,timeInMonths:re,timeInYears:se,timeInMins:ce,time:ue,priceFontStyle:pe,priceTransform:be,priceDecoration:de,headFontStyle:me,headTransform:ye,headDecoration:fe,subHeadFontStyle:he,subHeadTransform:ve,subHeadDecoration:_e,headLetterSpacing:Te,headLetterSpacingTablet:Se,headLetterSpacingMobile:we,headLetterSpacingType:ke,priceLetterSpacing:Pe,priceLetterSpacingTablet:xe,priceLetterSpacingMobile:Ae,priceLetterSpacingType:Ge,subHeadLetterSpacing:Me,subHeadLetterSpacingTablet:Re,subHeadLetterSpacingMobile:Be,subHeadLetterSpacingType:Ue}}=e;g&&g.sizes&&(Pw=F(g.sizes));const Oe=ce||ue;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Tag","ultimate-addons-for-gutenberg"),data:{value:h,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:l,label:"overallAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Yl,{onSelectImage:e=>{e&&e.url&&e.type&&"image"===e.type?a({mainimage:e}):a({mainimage:null})},backgroundImage:g,onRemoveImage:()=>{a({mainimage:""})},disableLabel:!0}),g&&"null"!==g.url&&""!==g.url&&React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:m,label:"imgSize"},setAttributes:a,options:Pw})),React.createElement(Fe,{title:Object(r.__)("Time","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Total Time","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>a({showTotaltime:!o}),help:Object(r.__)("Note: Time is recommended field for schema. It should be ON","ultimate-addons-for-gutenberg")}),o&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Years","ultimate-addons-for-gutenberg"),setAttributes:a,value:se,data:{value:se,label:"timeInYears"},min:1,max:10,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Months","ultimate-addons-for-gutenberg"),setAttributes:a,value:re,data:{value:re,label:"timeInMonths"},min:1,max:12,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Days","ultimate-addons-for-gutenberg"),setAttributes:a,value:ne,data:{value:ne,label:"timeInDays"},min:1,max:31,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Hours","ultimate-addons-for-gutenberg"),setAttributes:a,value:oe,data:{value:oe,label:"timeInHours"},min:1,max:24,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Minutes","ultimate-addons-for-gutenberg"),setAttributes:a,value:Oe,data:{value:ce,label:"timeInMins"},min:1,max:60,displayUnit:!1}))),React.createElement(Fe,{title:Object(r.__)("Cost","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Estimated Cost","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({showEstcost:!i}),help:Object(r.__)("Note: Cost is recommended field for schema.It should be ON","ultimate-addons-for-gutenberg")}),React.createElement(Le.ExternalLink,{href:"https://en.wikipedia.org/wiki/List_of_circulating_currencies"},Object(r.__)("Click here to find your countrys ISO code.","ultimate-addons-for-gutenberg"))),React.createElement(Fe,{title:Object(r.__)("Tools","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Tools","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>a({showTools:!s}),help:Object(r.__)("Note: This is recommended field for schema.It should be ON","ultimate-addons-for-gutenberg")}),s&&React.createElement(Qa,{label:Object(r.__)("Number of Tools","ultimate-addons-for-gutenberg"),setAttributes:a,value:u,data:{value:u,label:"tools_count"},onChange:e=>{const t=[...b],l=Ps(e,"tools_count","how-to");if(t.length<l){const e=Math.abs(l-t.length);for(let a=0;a<e;a++)t.push({add_required_tools:"- A Computer"+(t.length+1)});a({tools:t})}else{const e=Math.abs(l-t.length),i=t;for(let t=0;t<e;t++)i.pop();a({tools:i})}a({tools_count:l})},min:1,max:50,displayUnit:!1})),React.createElement(Fe,{title:Object(r.__)("Materials","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Materials","ultimate-addons-for-gutenberg"),checked:n,onChange:()=>a({showMaterials:!n}),help:Object(r.__)("Note: This is recommended field for schema.It should be ON","ultimate-addons-for-gutenberg")}),n&&React.createElement(Qa,{label:Object(r.__)("Number of Materials","ultimate-addons-for-gutenberg"),setAttributes:a,value:p,data:{value:p,label:"material_count"},onChange:e=>{const t=[...d],l=Ps(e,"material_count","how-to");if(t.length<l){const e=Math.abs(l-t.length);for(let a=0;a<e;a++)t.push({add_required_materials:"- A WordPress Website"+(t.length+1)});a({materials:t})}else{const e=Math.abs(l-t.length),i=t;for(let t=0;t<e;t++)i.pop();a({materials:i})}a({material_count:l})},min:1,max:50,displayUnit:!1})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:y||"",data:{value:y,label:"headingColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:z,label:"headLoadGoogleFonts"},fontFamily:{value:v,label:"headFontFamily"},fontWeight:{value:_,label:"headFontWeight"},fontStyle:{value:me,label:"headFontStyle"},transform:{value:ye,label:"headTransform"},decoration:{value:fe,label:"headDecoration"},fontSizeType:{value:T,label:"headFontSizeType"},fontSize:{value:C,label:"headFontSize"},fontSizeMobile:{value:S,label:"headFontSizeMobile"},fontSizeTablet:{value:w,label:"headFontSizeTablet"},lineHeightType:{value:k,label:"headLineHeightType"},lineHeight:{value:P,label:"headLineHeight"},lineHeightMobile:{value:x,label:"headLineHeightMobile"},lineHeightTablet:{value:A,label:"headLineHeightTablet"},letterSpacing:{value:Te,label:"headLetterSpacing"},letterSpacingTablet:{value:Se,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:we,label:"headLetterSpacingMobile"},letterSpacingType:{value:ke,label:"headLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Secondary Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"showTotaltimecolor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:X,label:"priceLoadGoogleFonts"},fontFamily:{value:q,label:"priceFontFamily"},fontWeight:{value:Z,label:"priceFontWeight"},fontStyle:{value:pe,label:"priceFontStyle"},transform:{value:be,label:"priceTransform"},decoration:{value:de,label:"priceDecoration"},fontSizeType:{value:N,label:"priceFontSizeType"},fontSize:{value:I,label:"priceFontSize"},fontSizeMobile:{value:W,label:"priceFontSizeMobile"},fontSizeTablet:{value:V,label:"priceFontSizeTablet"},lineHeightType:{value:$,label:"priceLineHeightType"},lineHeight:{value:Y,label:"priceLineHeight"},lineHeightMobile:{value:J,label:"priceLineHeightMobile"},lineHeightTablet:{value:K,label:"priceLineHeightTablet"},letterSpacing:{value:Pe,label:"priceLetterSpacing"},letterSpacingTablet:{value:xe,label:"priceLetterSpacingTablet"},letterSpacingMobile:{value:Ae,label:"priceLetterSpacingMobile"},letterSpacingType:{value:Ge,label:"priceLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:f||"",data:{value:f,label:"subHeadingColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:D,label:"subHeadLoadGoogleFonts"},fontFamily:{value:G,label:"subHeadFontFamily"},fontWeight:{value:M,label:"subHeadFontWeight"},fontStyle:{value:he,label:"subHeadFontStyle"},transform:{value:ve,label:"subHeadTransform"},decoration:{value:_e,label:"subHeadDecoration"},fontSizeType:{value:B,label:"subHeadFontSizeType"},fontSize:{value:R,label:"subHeadFontSize"},fontSizeMobile:{value:U,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:E,label:"subHeadFontSizeTablet"},lineHeightType:{value:L,label:"subHeadLineHeightType"},lineHeight:{value:O,label:"subHeadLineHeight"},lineHeightMobile:{value:H,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:j,label:"subHeadLineHeightTablet"},letterSpacing:{value:Me,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:Re,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:Be,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:Ue,label:"subHeadLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},o&&React.createElement(Qa,{label:Object(r.__)("Time Margin","ultimate-addons-for-gutenberg"),setAttributes:a,value:Q,data:{value:Q,label:"timeSpace"},min:0,max:50,displayUnit:!1}),i&&React.createElement(Qa,{label:Object(r.__)("Cost Margin","ultimate-addons-for-gutenberg"),setAttributes:a,value:ee,data:{value:ee,label:"costSpace"},min:0,max:50,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:te,label:"row_gap"},tablet:{value:ae,label:"rowGapTablet"},mobile:{value:le,label:"rowGapMobile"}},min:0,max:200,displayUnit:!1,setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Gap Between Steps","ultimate-addons-for-gutenberg"),setAttributes:a,value:ie,data:{value:ie,label:"step_gap"},min:0,max:200,displayUnit:!1}))),React.createElement(il,kw({},rl,{parentProps:e})))))}),Gw=a(126),Mw=0,Rw={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Bw={};Bw.locals=Gw.a.locals||{},Bw.use=function(){return Mw++||(xw=ke()(Gw.a,Rw)),Bw},Bw.unuse=function(){Mw>0&&!--Mw&&(xw(),xw=null)};var Uw=Bw,Ew=["uagb/how-to-step"];"yes"===uagb_blocks_info.uagb_old_user_less_than_2&&(Ew=["uagb/info-box","uagb/how-to-step"]);var Ow=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Uw.use(),()=>{Uw.unuse()}),[]);const{className:t,attributes:a,setAttributes:l,insertBlocksAfter:i,mergeBlocks:o,onReplace:n,attributes:{currencyType:s,showEstcost:c,showTotaltime:u,showMaterials:p,showTools:b,toolsTitle:d,materialTitle:g,stepsTitle:m,tools:y,materials:f,timeNeeded:h,estCost:v,mainimage:_,headingTitle:T,headingDesc:C,headingTag:S,time:w,cost:k,timeInMins:P,timeInHours:x,timeInDays:A,timeInMonths:G,timeInYears:M,imgTagHeight:R,imgTagWidth:U,block_id:E},deviceType:O,name:L}=e,H=L.replace("uagb/",""),j=function(e,t){for(var o=arguments.length,r=new Array(o>2?o-2:0),s=2;s<o;s++)r[s-2]=arguments[s];t&&r.push(Object(be.createBlock)("core/paragraph",{content:t})),r.length&&i&&i(r);const{content:c}=a;e?c!==e&&l({content:e}):n([])};let F="",z="",D="";if(void 0!==a.mainimage&&null!==a.mainimage&&""!==a.mainimage&&(F=a.mainimage.url,z=a.mainimage.title),""!==F){const e=a.mainimage.sizes,t=a.imgSize;D=void 0!==e&&void 0!==e[t]?e[t].url:F}const N=_&&null!=_&&_.alt?null==_?void 0:_.alt:"";let I="";Object(B.useEffect)(()=>{mf(D,l)},[D]),_&&_.url&&(I=React.createElement("img",{className:"uagb-howto__source-image",src:D,title:z,width:U,height:R,loading:"lazy",alt:N}));const V=Ps(P,"timeInMins",H)?Ps(P,"timeInMins",H):w,W=[["uagb/how-to-step",{name:"Step 1",description:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")}],["uagb/how-to-step",{name:"Step 2",description:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")}],["uagb/how-to-step",{name:"Step 3",description:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.","ultimate-addons-for-gutenberg")}]],q=Ps(M,"timeInYears",H)>1?Object(r.__)("Years","ultimate-addons-for-gutenberg"):Object(r.__)("Year","ultimate-addons-for-gutenberg"),Z=Ps(G,"timeInMonths",H)>1?Object(r.__)(" Months ","ultimate-addons-for-gutenberg"):Object(r.__)(" Month ","ultimate-addons-for-gutenberg"),$=Ps(A,"timeInDays",H)>1?Object(r.__)(" Days ","ultimate-addons-for-gutenberg"):Object(r.__)(" Day ","ultimate-addons-for-gutenberg"),Y=Ps(x,"timeInHours",H)>1?Object(r.__)("Hours ","ultimate-addons-for-gutenberg"):Object(r.__)(" Hour ","ultimate-addons-for-gutenberg"),K=V>1?Object(r.__)(" Minutes ","ultimate-addons-for-gutenberg"):Object(r.__)(" Minute ","ultimate-addons-for-gutenberg");return React.createElement("div",{className:Be()(t,"uagb-editor-preview-mode-"+O.toLowerCase(),"uagb-block-"+E,"uagb-how-to-main-wrap")},React.createElement(ge.RichText,{tagName:S,placeholder:Object(r.__)("How to configure HowTo Schema in UAG?","ultimate-addons-for-gutenberg"),value:T,className:"uagb-howto-heading-text",multiline:!1,onChange:e=>{l({headingTitle:e})},onMerge:o,onSplit:i?function(e,t){l({content:e});for(var a=arguments.length,o=new Array(a>2?a-2:0),n=2;n<a;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])}),React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("So to get started, you will just need to drag-n-drop the How-to block in the Gutenberg editor. The How-to block can be used on pages which contain a How-to in their title and describe steps to achieve certain requirements.","ultimate-addons-for-gutenberg"),value:C,className:"uagb-howto-desc-text",onChange:e=>l({headingDesc:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),I,React.createElement("span",{className:"uagb-howto__time-wrap"},u&&React.createElement(ge.RichText,{tagName:"h4",placeholder:Object(r.__)("Total Time Needed ( Minutes ):","ultimate-addons-for-gutenberg"),value:h,className:"uagb-howto-timeNeeded-text",onChange:e=>l({timeNeeded:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),u&&React.createElement(React.Fragment,null,Ps(M,"timeInYears",H)&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"}," ",Ps(M,"timeInYears",H)),React.createElement("p",{className:"uagb-howto-timeINmin-text"}," ",q)),Ps(G,"timeInMonths",H)&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(G,"timeInMonths",H)),React.createElement("p",{className:"uagb-howto-timeINmin-text"},Z)),Ps(A,"timeInDays",H)&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(A,"timeInDays",H)),React.createElement("p",{className:"uagb-howto-timeINmin-text"},$)),Ps(x,"timeInHours",H)&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(x,"timeInHours",H)),React.createElement("p",{className:"uagb-howto-timeINmin-text"},Y)),V&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},V),React.createElement("p",{className:"uagb-howto-timeINmin-text"},K)))),React.createElement("span",{className:"uagb-howto__cost-wrap"},c&&React.createElement(ge.RichText,{tagName:"h4",placeholder:Object(r.__)("Total Cost:","ultimate-addons-for-gutenberg"),value:v,className:"uagb-howto-estcost-text",onChange:e=>l({estCost:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),c&&React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("30","ultimate-addons-for-gutenberg"),value:k,className:"uagb-howto-estcost-value",onChange:e=>l({cost:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),c&&React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("USD","ultimate-addons-for-gutenberg"),value:s,className:"uagb-howto-estcost-type",onChange:e=>l({currencyType:e}),onMerge:o,onSplit:j,onRemove:()=>n([])})),b&&React.createElement(ge.RichText,{tagName:"h4",placeholder:Object(r.__)("requirements tools:","ultimate-addons-for-gutenberg"),value:d,className:"uagb-howto-req-tools-text",onChange:e=>l({toolsTitle:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),b&&React.createElement(React.Fragment,null,y.map((e,t)=>React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Requirements Tools:","ultimate-addons-for-gutenberg"),value:e.add_required_tools,onChange:e=>{((e,t)=>{const a=y.map((a,l)=>(t===l&&(a={...a,...e}),a));l({tools:a})})({add_required_tools:e},t)},className:"uagb-tools__label "+t,multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"],key:t}))),p&&React.createElement(ge.RichText,{tagName:"h4",placeholder:Object(r.__)("requirements materials:","ultimate-addons-for-gutenberg"),value:g,className:"uagb-howto-req-materials-text",onChange:e=>l({materialTitle:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),p&&React.createElement(React.Fragment,null,f.map((e,t)=>React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Requirements Materials:","ultimate-addons-for-gutenberg"),value:e.add_required_materials,onChange:e=>{((e,t)=>{const a=f.map((a,l)=>(t===l&&(a={...a,...e}),a));l({materials:a})})({add_required_materials:e},t)},className:"uagb-materials__label "+t,multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"],key:t}))),React.createElement(ge.RichText,{tagName:"h4",placeholder:Object(r.__)("requirements Steps:","ultimate-addons-for-gutenberg"),value:m,className:"uagb-howto-req-steps-text",onChange:e=>l({stepsTitle:e}),onMerge:o,onSplit:j,onRemove:()=>n([])}),React.createElement(ge.InnerBlocks,{template:W,allowedBlocks:Ew}))}),Lw=Object(B.memo)(e=>{let{attributes:t}=e;const{headLoadGoogleFonts:a,headFontFamily:l,headFontWeight:i,subHeadLoadGoogleFonts:o,subHeadFontFamily:n,subHeadFontWeight:r,priceLoadGoogleFonts:s,priceFontFamily:c,priceFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),Hw=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,setAttributes:l,attributes:{currencyType:i,showEstcost:o,showTotaltime:r,tools:s,materials:c,timeNeeded:u,estCost:p,mainimage:b,headingTitle:d,headingDesc:g,cost:m,timeInMins:y,timeInHours:f,timeInDays:h,timeInMonths:v,timeInYears:_,UAGHideDesktop:T,UAGHideTab:C,UAGHideMob:S,schema:w},clientId:k,name:P,deviceType:x}=e,[A,G]=Object(B.useState)(""),{schemaJsonData:M}=Object(n.useSelect)(e=>{let t="";"undefined"!==a.mainimage&&null!==a.mainimage&&""!==a.mainimage&&(t=a.mainimage.url);let l={},i={},o={};const n={"@context":"https://schema.org","@type":"HowTo",name:a.headingTitle,description:a.headingDesc,image:{"@type":"ImageObject",url:t,height:"406",width:"305"},totalTime:"",estimatedCost:[],tool:[],supply:[],step:[]},r=a.timeInYears?a.timeInYears:0,s=a.timeInMonths?a.timeInMonths:0,c=a.timeInDays?a.timeInDays:0,u=a.timeInHours?a.timeInHours:0;a.time=r||s||c||0!==u?"":"30";const p=a.timeInMins?a.timeInMins:a.time;return a.showTotaltime&&(n.totalTime="P"+r+"Y"+s+"M"+c+"DT"+u+"H"+p+"M"),a.showEstcost&&(n.estimatedCost={"@type":"MonetaryAmount",currency:a.currencyType,value:a.cost}),a.showTools&&a.tools.forEach((e,t)=>{l={"@type":"HowToTool",name:e.add_required_tools},n.tool[t]=l}),a.showMaterials&&a.materials.forEach((e,t)=>{i={"@type":"HowToSupply",name:e.add_required_materials},n.supply[t]=i}),e("core/block-editor").getBlocks(k).forEach((e,t)=>{var a,l,i,r,s,c,u,p,b,d;o={"@type":"HowToStep",url:(null===(a=e.attributes)||void 0===a?void 0:a.ctaLink)||(null===(l=e.attributes)||void 0===l?void 0:l.url),name:(null===(i=e.attributes)||void 0===i?void 0:i.infoBoxTitle)||(null===(r=e.attributes)||void 0===r?void 0:r.name),text:(null===(s=e.attributes)||void 0===s?void 0:s.headingDesc)||(null===(c=e.attributes)||void 0===c?void 0:c.description),image:(null===(u=e.attributes)||void 0===u||null===(p=u.iconImage)||void 0===p?void 0:p.url)||(null===(b=e.attributes)||void 0===b||null===(d=b.image)||void 0===d?void 0:d.url)},n.step[t]=o}),{schemaJsonData:n}});Object(B.useEffect)(()=>{w||(l({schema:JSON.stringify(M)}),G(M))},[]),Object(B.useEffect)(()=>{JSON.stringify(M)!==JSON.stringify(A)&&(l(e=>({...e,schema:JSON.stringify(M)})),G(M))},[a,x]);const R=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{overallAlignment:n,headingTag:r,showTotaltimecolor:s,headingColor:c,headSpace:u,subHeadingColor:p,headFontFamily:b,headFontWeight:d,headFontSize:g,headFontSizeType:m,headFontSizeMobile:y,headFontSizeTablet:f,headLineHeight:h,headLineHeightType:v,headLineHeightMobile:_,headLineHeightTablet:T,subHeadFontFamily:C,subHeadFontWeight:S,subHeadFontSize:w,subHeadFontSizeType:k,subHeadFontSizeMobile:P,subHeadFontSizeTablet:x,subHeadLineHeight:A,subHeadLineHeightType:G,subHeadLineHeightMobile:M,subHeadLineHeightTablet:R,priceFontSizeType:B,priceFontSize:U,priceFontSizeTablet:E,priceFontSizeMobile:O,priceFontFamily:L,priceFontWeight:H,priceLineHeightType:j,priceLineHeight:F,priceLineHeightTablet:z,priceLineHeightMobile:D,timeSpace:N,costSpace:I,row_gap:V,rowGapTablet:W,rowGapMobile:q,step_gap:Z,priceFontStyle:$,priceTransform:Y,priceDecoration:K,headFontStyle:J,headTransform:X,headDecoration:Q,subHeadFontStyle:ee,subHeadTransform:te,subHeadDecoration:le,headLetterSpacing:ie,headLetterSpacingTablet:oe,headLetterSpacingMobile:ne,headLetterSpacingType:re,priceLetterSpacing:se,priceLetterSpacingTablet:ce,priceLetterSpacingMobile:ue,priceLetterSpacingType:pe,subHeadLetterSpacing:be,subHeadLetterSpacingTablet:de,subHeadLetterSpacingMobile:ge,subHeadLetterSpacingType:me,block_id:ye}=e;let fe={},he={},ve=""!==Ps(Z,"step_gap",i)?Ps(Z,"step_gap",i):0;ve+=30;const _e={" .block-editor-rich-text__editable.uagb-howto-desc-text":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p,"letter-spacing":ns(be,me)},".uagb-how-to-main-wrap p":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-tools__wrap":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")},".uagb-how-to-main-wrap .uagb-howto__source-wrap":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")},".uagb-how-to-main-wrap .uagb-howto__source-image":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")},".uagb-how-to-main-wrap span.uagb-howto__time-wrap":{"margin-bottom":ns(Ps(V,"row_gap",i),"px"),"justify-content":n},".uagb-how-to-main-wrap span.uagb-howto__cost-wrap":{"margin-bottom":ns(Ps(V,"row_gap",i),"px"),"justify-content":n}," .uagb-how-to-tools .uagb-how-to-tools-child__wrapper:last-child":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child":{"margin-bottom":ns(Ps(V,"row_gap",i),"px")}," h4.uagb-howto-req-steps-text":{"margin-top":ns(Ps(V,"row_gap",i),"px"),"margin-bottom":ns(Ps(V,"row_gap",i),"px")}," h4.uagb-howto-req-materials-text":{"margin-top":ns(Ps(V,"row_gap",i),"px")}," .uagb-infobox__content-wrap":{"margin-bottom":ns(ve,"px")}," .uagb-how-to-step-wrap":{"margin-bottom":ns(ve,"px")}," .block-editor-rich-text__editable.uagb-howto-timeNeeded-text":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j),color:s,"letter-spacing":ns(se,pe)}," .uagb-howto-timeNeeded-value":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p,"margin-left":ns(Ps(N,"timeSpace",i),"px")}," .uagb-howto-timeINmin-text ":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p}," .block-editor-rich-text__editable.uagb-howto-estcost-text":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j),color:s}," .block-editor-rich-text__editable.uagb-howto-estcost-value":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p,"margin-left":ns(Ps(I,"costSpace",i),"px")}," h4.block-editor-rich-text__editable":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j)}," p.block-editor-rich-text__editable":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G)}," .block-editor-rich-text__editable.uagb-howto-estcost-type":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p}," .block-editor-rich-text__editable.uagb-howto-req-tools-text":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j),color:s},"  .block-editor-rich-text__editable.uagb-tools__label":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p}," .block-editor-rich-text__editable.uagb-howto-req-materials-text":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j),color:s}," .block-editor-rich-text__editable.uagb-howto-req-steps-text":{"font-family":L,"font-style":$,"text-decoration":K,"text-transform":Y,"font-weight":H,"font-size":ns(U,B),"line-height":ns(F,j),color:s}," .block-editor-rich-text__editable.uagb-materials__label":{"font-family":C,"font-style":ee,"text-decoration":le,"text-transform":te,"font-weight":S,"font-size":ns(w,k),"line-height":ns(A,G),color:p}};_e[".uagb-how-to-main-wrap"]={"text-align":n,display:"block"},_e[` ${r}.block-editor-rich-text__editable.uagb-howto-heading-text`]={"font-family":b,"font-style":J,"text-decoration":Q,"text-transform":X,"font-weight":d,"font-size":ns(g,m),"line-height":ns(h,v),color:c,"margin-bottom":ns(u,"px"),"letter-spacing":ns(ie,re)},he={" .block-editor-rich-text__editable.uagb-howto-heading-text":{"font-size":ns(y,m),"line-height":ns(_,v),"letter-spacing":ns(ne,re)}," .block-editor-rich-text__editable.uagb-howto-desc-text":{"font-size":ns(P,k),"line-height":ns(M,G),"letter-spacing":ns(ge,me)}," .block-editor-rich-text__editable.uagb-howto-timeNeeded-text":{"font-size":ns(O,B),"line-height":ns(D,j),"letter-spacing":ns(ue,pe)}," .uagb-howto-timeNeeded-value":{"font-size":ns(P,k),"line-height":ns(M,G)}," .uagb-howto-timeINmin-text ":{"font-size":ns(P,k),"line-height":ns(M,G)}," .block-editor-rich-text__editable.uagb-howto-estcost-text":{"font-size":ns(O,B),"line-height":ns(D,j)}," .block-editor-rich-text__editable.uagb-howto-estcost-value":{"font-size":ns(P,k),"line-height":ns(M,G)}," .block-editor-rich-text__editable.uagb-howto-estcost-type":{"font-size":ns(P,k),"line-height":ns(M,G)}," .block-editor-rich-text__editable.uagb-tools__label":{"font-size":ns(O,B),"line-height":ns(D,j)}," .block-editor-rich-text__editable.uagb-howto-req-tools-text":{"font-size":ns(O,B),"line-height":ns(D,j)}," .block-editor-rich-text__editable.uagb-materials__label":{"font-size":ns(O,B),"line-height":ns(D,j)}," .block-editor-rich-text__editable.uagb-howto-req-materials-text":{"font-size":ns(O,B),"line-height":ns(D,j)},".uagb-how-to-main-wrap p":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-tools__wrap":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")},".uagb-how-to-main-wrap .uagb-howto__source-image":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")},".uagb-how-to-main-wrap span.uagb-howto__time-wrap":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")},".uagb-how-to-main-wrap span.uagb-howto__cost-wrap":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")}," .uagb-how-to-tools .uagb-how-to-tools-child__wrapper:last-child":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child":{"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")}," h4.uagb-howto-req-steps-text":{"margin-top":ns(Ps(q,"rowGapMobile",i),"px"),"margin-bottom":ns(Ps(q,"rowGapMobile",i),"px")}," h4.uagb-howto-req-materials-text":{"margin-top":ns(Ps(q,"rowGapMobile",i),"px")}},he[` ${r}.block-editor-rich-text__editable.uagb-howto-heading-text`]={"font-size":ns(y,m),"line-height":ns(_,v),"letter-spacing":ns(ne,re)},fe={" .block-editor-rich-text__editable.uagb-howto-heading-text":{"font-size":ns(f,m),"line-height":ns(T,v),"letter-spacing":ns(oe,re)}," .block-editor-rich-text__editable.uagb-howto-desc-text":{"font-size":ns(x,k),"line-height":ns(R,G),"letter-spacing":ns(de,me)}," .block-editor-rich-text__editable.uagb-howto-timeNeeded-text":{"font-size":ns(E,B),"line-height":ns(z,j),"letter-spacing":ns(ce,pe)}," .uagb-howto-timeNeeded-value":{"font-size":ns(x,k),"line-height":ns(R,G)}," .uagb-howto-timeINmin-text ":{"font-size":ns(x,k),"line-height":ns(R,G)}," .block-editor-rich-text__editable.uagb-howto-estcost-text":{"font-size":ns(E,B),"line-height":ns(z,j)}," .block-editor-rich-text__editable.uagb-howto-estcost-value":{"font-size":ns(x,k),"line-height":ns(R,G)}," .block-editor-rich-text__editable.uagb-howto-estcost-type":{"font-size":ns(x,k),"line-height":ns(R,G)}," .block-editor-rich-text__editable.uagb-tools__label":{"font-size":ns(E,B),"line-height":ns(z,j)}," .block-editor-rich-text__editable.uagb-howto-req-tools-text":{"font-size":ns(E,B),"line-height":ns(z,j)}," .block-editor-rich-text__editable.uagb-materials__label":{"font-size":ns(E,B),"line-height":ns(z,j)}," .block-editor-rich-text__editable.uagb-howto-req-materials-text":{"font-size":ns(E,B),"line-height":ns(z,j)},".uagb-how-to-main-wrap p":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-tools__wrap":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")},".uagb-how-to-main-wrap .uagb-howto__source-image":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")},".uagb-how-to-main-wrap span.uagb-howto__time-wrap":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")},".uagb-how-to-main-wrap span.uagb-howto__cost-wrap":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")}," .uagb-how-to-tools .uagb-how-to-tools-child__wrapper:last-child":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")},".uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child":{"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")}," h4.uagb-howto-req-steps-text":{"margin-top":ns(Ps(W,"rowGapTablet",i),"px"),"margin-bottom":ns(Ps(W,"rowGapTablet",i),"px")}," h4.uagb-howto-req-materials-text":{"margin-top":ns(Ps(W,"rowGapTablet",i),"px")}},fe[` ${r}.block-editor-rich-text__editable.uagb-howto-heading-text`]={"font-size":ns(f,m),"line-height":ns(T,v),"letter-spacing":ns(oe,re)};const Te=".editor-styles-wrapper .uagb-block-"+ye;let Ce=ae(_e,Te);return"tablet"!==o&&"mobile"!==o||(Ce+=ae(fe,""+Te,!0,"tablet"),"mobile"===o&&(Ce+=ae(he,""+Te,!0,"mobile"))),Ce}(a,0,P,x),[a,x]);return Object(B.useEffect)(()=>{Bs()},[x]),Object(B.useEffect)(()=>{he(e)},[T,C,S,x]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:R}),React.createElement(Lw,{attributes:a}),React.createElement(ww,{headingTitle:d,headingDesc:g,mainimage:b,showTotaltime:r,timeNeeded:u,minsValue:y,timeInHours:f,timeInDays:h,timeInMonths:v,timeInYears:_,showEstcost:o,estCost:p,cost:m,currencyType:i,tools:s,materials:c,clientId:k}),t&&React.createElement(Aw,e),React.createElement(Ow,e))}),jw=[{attributes:qt,save(e){const{attributes:t,className:a}=e,{block_id:l,headingTitle:i,headingDesc:o,headingTag:n,timeNeeded:r,time:s,timeIn:c,estCost:u,cost:p,currencyType:b,mainimage:d,toolsTitle:g,stepsTitle:m,materialTitle:y,tools:f,materials:h,schema:v,showTotaltime:_,showEstcost:T,showTools:C,showMaterials:S}=t;let w="",k="";void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(w=t.mainimage.url,k=t.mainimage.title);let P="";if(""!==w){const e=t.mainimage.sizes,a=t.imgSize;P=void 0!==e&&void 0!==e[a]?e[a].url:w}let x="";return d&&d.url&&(x=React.createElement("img",{className:"uagb-howto__source-image",src:P,title:k})),React.createElement("div",{className:Be()(a,"uagb-block-"+l)},React.createElement("script",{type:"application/ld+json"},v),React.createElement("div",{className:"uagb-how-to-main-wrap"},React.createElement("div",{className:"uagb-howto__wrap"},React.createElement(ge.RichText.Content,{value:i,tagName:n,className:"uagb-howto-heading-text"}),React.createElement(ge.RichText.Content,{value:o,tagName:"p",className:"uagb-howto-desc-text"}),d.url&&React.createElement("div",{className:"uagb-howto__source-wrap"},x),_&&React.createElement("span",{className:"uagb-howto__time-wrap"},React.createElement(ge.RichText.Content,{value:r,tagName:"h4",className:"uagb-howto-timeNeeded-text"}),React.createElement(ge.RichText.Content,{value:s,tagName:"p",className:"uagb-howto-timeNeeded-value"}),React.createElement(ge.RichText.Content,{tagName:"p",value:c,className:"uagb-howto-timeINmin-text"})),T&&React.createElement("span",{className:"uagb-howto__cost-wrap"},React.createElement(ge.RichText.Content,{value:u,tagName:"h4",className:"uagb-howto-estcost-text"}),React.createElement(ge.RichText.Content,{value:p,tagName:"p",className:"uagb-howto-estcost-value"}),React.createElement(ge.RichText.Content,{tagName:"p",value:b,className:"uagb-howto-estcost-type"}))),C&&React.createElement("div",{className:"uagb-how-to-tools__wrap"},React.createElement(ge.RichText.Content,{value:g,tagName:"h4",className:"uagb-howto-req-tools-text"})),C&&React.createElement("div",{className:"uagb-tools__wrap"},f.map((e,t)=>React.createElement("div",{className:Be()("uagb-how-to-tools-"+t,"uagb-how-to-tools-child__wrapper"),key:t},React.createElement("div",{className:"uagb-tools"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_tools,className:"uagb-tools__label"}))))),S&&React.createElement("div",{className:"uagb-how-to-materials__wrap"},React.createElement(ge.RichText.Content,{value:y,tagName:"h4",className:"uagb-howto-req-materials-text"})),S&&React.createElement("div",{className:"uagb-how-to-materials"},h.map((e,t)=>React.createElement("div",{className:Be()("uagb-how-to-materials-"+t,"uagb-how-to-materials-child__wrapper")},React.createElement("div",{className:"uagb-materials"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_materials,className:"uagb-materials__label"}))))),React.createElement("div",{className:"uagb-how-to-steps__wrap"},React.createElement(ge.RichText.Content,{value:m,tagName:"h4",className:"uagb-howto-req-steps-text"}),React.createElement("div",{className:"uagb-howto-steps__wrap"},React.createElement(ge.InnerBlocks.Content,null)))))}},{attributes:qt,save(e){const{attributes:t,className:a}=e,{block_id:l,headingTitle:i,headingDesc:o,headingTag:n,timeNeeded:r,time:s,timeIn:c,estCost:u,cost:p,currencyType:b,mainimage:d,toolsTitle:g,stepsTitle:m,materialTitle:y,tools:f,materials:h,schema:v,showTotaltime:_,showEstcost:T,showTools:C,showMaterials:S,timeInMins:w,timeInHours:k,timeInDays:P,timeInMonths:x,timeInYears:A}=t;let G="",M="";void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(G=t.mainimage.url,M=t.mainimage.title);let R="";if(""!==G){const e=t.mainimage.sizes,a=t.imgSize;R=void 0!==e&&void 0!==e[a]?e[a].url:G}let B="";d&&d.url&&(B=React.createElement("img",{className:"uagb-howto__source-image",src:R,title:M}));const U=A>1?" Years ":" Year ",E=x>1?" Months ":" Month ",O=P>1?" Days ":" Day ",L=k>1?"Hours ":" Hour ",H=w||s,j=H>1?" Minutes ":" Minute ";return React.createElement("div",{className:Be()(a,"uagb-block-"+l)},React.createElement("script",{type:"application/ld+json"},v),React.createElement("div",{className:"uagb-how-to-main-wrap"},React.createElement("div",{className:"uagb-howto__wrap"},React.createElement(ge.RichText.Content,{value:i,tagName:n,className:"uagb-howto-heading-text"}),React.createElement(ge.RichText.Content,{value:o,tagName:"p",className:"uagb-howto-desc-text"}),d.url&&React.createElement("div",{className:"uagb-howto__source-wrap"},B),_&&React.createElement("span",{className:"uagb-howto__time-wrap"},React.createElement(ge.RichText.Content,{value:r,tagName:"h4",className:"uagb-howto-timeNeeded-text"}),React.createElement(React.Fragment,null,A&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"}," ",A),React.createElement("p",{className:"uagb-howto-timeINmin-text"}," ",U)),x&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},x),React.createElement("p",{className:"uagb-howto-timeINmin-text"},E)),P&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},P),React.createElement("p",{className:"uagb-howto-timeINmin-text"},O)),k&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},k),React.createElement("p",{className:"uagb-howto-timeINmin-text"},L)),H&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},H),React.createElement("p",{className:"uagb-howto-timeINmin-text"},j)))),T&&React.createElement("span",{className:"uagb-howto__cost-wrap"},React.createElement(ge.RichText.Content,{value:u,tagName:"h4",className:"uagb-howto-estcost-text"}),React.createElement(ge.RichText.Content,{value:p,tagName:"p",className:"uagb-howto-estcost-value"}),React.createElement(ge.RichText.Content,{tagName:"p",value:b,className:"uagb-howto-estcost-type"}))),C&&React.createElement("div",{className:"uagb-how-to-tools__wrap"},React.createElement(ge.RichText.Content,{value:g,tagName:"h4",className:"uagb-howto-req-tools-text"})),C&&React.createElement("div",{className:"uagb-tools__wrap"},f.map((e,t)=>React.createElement("div",{className:Be()("uagb-how-to-tools-"+t,"uagb-how-to-tools-child__wrapper"),key:t},React.createElement("div",{className:"uagb-tools"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_tools,className:"uagb-tools__label"}))))),S&&React.createElement("div",{className:"uagb-how-to-materials__wrap"},React.createElement(ge.RichText.Content,{value:y,tagName:"h4",className:"uagb-howto-req-materials-text"})),S&&React.createElement("div",{className:"uagb-how-to-materials"},h.map((e,t)=>React.createElement("div",{className:Be()("uagb-how-to-materials-"+t,"uagb-how-to-materials-child__wrapper")},React.createElement("div",{className:"uagb-materials"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_materials,className:"uagb-materials__label"}))))),React.createElement("div",{className:"uagb-how-to-steps__wrap"},React.createElement(ge.RichText.Content,{value:m,tagName:"h4",className:"uagb-howto-req-steps-text"}),React.createElement("div",{className:"uagb-howto-steps__wrap"},React.createElement(ge.InnerBlocks.Content,null)))))}},{attributes:qt,save(e){const{attributes:t,className:a}=e,{block_id:l,headingTitle:i,headingDesc:o,headingTag:n,timeNeeded:r,time:s,estCost:c,cost:u,currencyType:p,mainimage:b,toolsTitle:d,stepsTitle:g,materialTitle:m,tools:y,materials:f,schema:h,showTotaltime:v,showEstcost:_,showTools:T,showMaterials:C,timeInMins:S,timeInHours:w,timeInDays:k,timeInMonths:P,timeInYears:x}=t;let A="",G="";void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(A=t.mainimage.url,G=t.mainimage.title);let M="";if(""!==A){const e=t.mainimage.sizes,a=t.imgSize;M=void 0!==e&&void 0!==e[a]?e[a].url:A}let R="";b&&b.url&&(R=React.createElement("img",{className:"uagb-howto__source-image",src:M,title:G,alt:""}));const B=Ps(x,"timeInYears","how-to")>1?" Years ":" Year ",U=Ps(P,"timeInMonths","how-to")>1?" Months ":" Month ",E=Ps(k,"timeInDays","how-to")>1?" Days ":" Day ",O=Ps(w,"timeInHours","how-to")>1?"Hours ":" Hour ",L=Ps(S,"timeInMins","how-to")?Ps(S,"timeInMins","how-to"):s,H=L>1?" Minutes ":" Minute ";return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-how-to-main-wrap")},React.createElement("script",{type:"application/ld+json"},h),React.createElement(ge.RichText.Content,{value:i,tagName:n,className:"uagb-howto-heading-text"}),React.createElement(ge.RichText.Content,{value:o,tagName:"p",className:"uagb-howto-desc-text"}),R,v&&React.createElement("span",{className:"uagb-howto__time-wrap"},React.createElement(ge.RichText.Content,{value:r,tagName:"h4",className:"uagb-howto-timeNeeded-text"}),React.createElement(React.Fragment,null,Ps(x,"timeInYears","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"}," ",Ps(x,"timeInYears","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"}," ",B)),Ps(P,"timeInMonths","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(P,"timeInMonths","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},U)),Ps(k,"timeInDays","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(k,"timeInDays","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},E)),Ps(w,"timeInHours","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(w,"timeInHours","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},O)),L&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},L),React.createElement("p",{className:"uagb-howto-timeINmin-text"},H)))),_&&React.createElement("span",{className:"uagb-howto__cost-wrap"},React.createElement(ge.RichText.Content,{value:c,tagName:"h4",className:"uagb-howto-estcost-text"}),React.createElement(ge.RichText.Content,{value:u,tagName:"p",className:"uagb-howto-estcost-value"}),React.createElement(ge.RichText.Content,{tagName:"p",value:p,className:"uagb-howto-estcost-type"})),T&&React.createElement(ge.RichText.Content,{value:d,tagName:"h4",className:"uagb-howto-req-tools-text"}),T&&React.createElement(React.Fragment,null,y.map((e,t)=>React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_tools,className:"uagb-tools__label "+t,key:t}))),C&&React.createElement(ge.RichText.Content,{value:m,tagName:"h4",className:"uagb-howto-req-materials-text"}),C&&React.createElement(React.Fragment,null,f.map((e,t)=>React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_materials,className:"uagb-materials__label "+t,key:t}))),React.createElement(ge.RichText.Content,{value:g,tagName:"h4",className:"uagb-howto-req-steps-text"}),React.createElement(ge.InnerBlocks.Content,null))}}];let Fw={};Fw=Object(j.applyFilters)("uagb/how-to",ws(Fw)),Object(be.registerBlockType)("uagb/how-to",{...Fw,title:Object(r.__)("How To","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add instructions/steps on processes using how to block.","ultimate-addons-for-gutenberg"),icon:se.how_to,keywords:[Object(r.__)("how to","ultimate-addons-for-gutenberg"),Object(r.__)("schema","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:qt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"how-to"}):React.createElement(Hw,e),save:function(e){const{attributes:t,className:a}=e,{block_id:l,headingTitle:i,headingDesc:o,headingTag:n,timeNeeded:r,time:s,estCost:c,cost:u,currencyType:p,mainimage:b,toolsTitle:d,stepsTitle:g,materialTitle:m,tools:y,materials:f,schema:h,showTotaltime:v,showEstcost:_,showTools:T,showMaterials:C,timeInMins:S,timeInHours:w,timeInDays:k,timeInMonths:P,timeInYears:x,imgTagHeight:A,imgTagWidth:G}=t;let M="",R="";void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(M=t.mainimage.url,R=t.mainimage.title);let B="";if(""!==M){const e=t.mainimage.sizes,a=t.imgSize;B=void 0!==e&&void 0!==e[a]?e[a].url:M}const U=b&&null!=b&&b.alt?null==b?void 0:b.alt:"";let E="";b&&b.url&&(E=React.createElement("img",{className:"uagb-howto__source-image",src:B,title:R,width:G,height:A,loading:"lazy",alt:U}));const O=Ps(x,"timeInYears","how-to")>1?" Years ":" Year ",L=Ps(P,"timeInMonths","how-to")>1?" Months ":" Month ",H=Ps(k,"timeInDays","how-to")>1?" Days ":" Day ",j=Ps(w,"timeInHours","how-to")>1?"Hours ":" Hour ",F=Ps(S,"timeInMins","how-to")?Ps(S,"timeInMins","how-to"):s,z=F>1?" Minutes ":" Minute ";return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-how-to-main-wrap")},React.createElement("script",{type:"application/ld+json"},h),React.createElement(ge.RichText.Content,{value:i,tagName:n,className:"uagb-howto-heading-text"}),React.createElement(ge.RichText.Content,{value:o,tagName:"p",className:"uagb-howto-desc-text"}),E,v&&React.createElement("span",{className:"uagb-howto__time-wrap"},React.createElement(ge.RichText.Content,{value:r,tagName:"h4",className:"uagb-howto-timeNeeded-text"}),React.createElement(React.Fragment,null,Ps(x,"timeInYears","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"}," ",Ps(x,"timeInYears","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"}," ",O)),Ps(P,"timeInMonths","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(P,"timeInMonths","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},L)),Ps(k,"timeInDays","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(k,"timeInDays","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},H)),Ps(w,"timeInHours","how-to")&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},Ps(w,"timeInHours","how-to")),React.createElement("p",{className:"uagb-howto-timeINmin-text"},j)),F&&React.createElement(React.Fragment,null,React.createElement("p",{className:"uagb-howto-timeNeeded-value"},F),React.createElement("p",{className:"uagb-howto-timeINmin-text"},z)))),_&&React.createElement("span",{className:"uagb-howto__cost-wrap"},React.createElement(ge.RichText.Content,{value:c,tagName:"h4",className:"uagb-howto-estcost-text"}),React.createElement(ge.RichText.Content,{value:u,tagName:"p",className:"uagb-howto-estcost-value"}),React.createElement(ge.RichText.Content,{tagName:"p",value:p,className:"uagb-howto-estcost-type"})),T&&React.createElement(ge.RichText.Content,{value:d,tagName:"h4",className:"uagb-howto-req-tools-text"}),T&&React.createElement(React.Fragment,null,y.map((e,t)=>React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_tools,className:"uagb-tools__label "+t,key:t}))),C&&React.createElement(ge.RichText.Content,{value:m,tagName:"h4",className:"uagb-howto-req-materials-text"}),C&&React.createElement(React.Fragment,null,f.map((e,t)=>React.createElement(ge.RichText.Content,{tagName:"div",value:e.add_required_materials,className:"uagb-materials__label "+t,key:t}))),React.createElement(ge.RichText.Content,{value:g,tagName:"h4",className:"uagb-howto-req-steps-text"}),React.createElement(ge.InnerBlocks.Content,null))},deprecated:jw});let zw=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];var Dw,Nw=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{url:l,urlType:i,image:o,imageSize:n,urlText:s,urlFontSize:c,urlFontSizeType:u,urlFontSizeMobile:p,urlFontSizeTablet:b,urlFontFamily:d,urlFontWeight:g,urlLoadGoogleFonts:m,titleFontSize:y,titleFontSizeType:f,titleFontSizeMobile:h,titleFontSizeTablet:v,titleFontFamily:_,titleFontWeight:T,titleLoadGoogleFonts:C,descriptionFontSize:S,descriptionFontSizeType:w,descriptionFontSizeMobile:k,descriptionFontSizeTablet:P,descriptionFontFamily:x,descriptionFontWeight:A,descriptionLoadGoogleFonts:G,urlTarget:M,imgPosition:R,titleColor:B,descriptionColor:U,urlColor:E,urlFontStyle:O,urlTransform:L,urlDecoration:H,titleFontStyle:j,titleTransform:z,titleDecoration:D,descriptionFontStyle:N,descriptionTransform:I,descriptionDecoration:V,titleLetterSpacing:W,titleLetterSpacingTablet:q,titleLetterSpacingMobile:Z,titleLetterSpacingType:$,descriptionLetterSpacing:Y,descriptionLetterSpacingTablet:K,descriptionLetterSpacingMobile:J,descriptionLetterSpacingType:X,titleLineHeight:Q,titleLineHeightTablet:ee,titleLineHeightMobile:te,titleLineHeightType:ae,descriptionLineHeight:le,descriptionLineHeightType:ie,descriptionLineHeightTablet:oe,descriptionLineHeightMobile:ne,urlLineHeight:re,urlLineHeightTablet:se,urlLineHeightMobile:ce,urlLineHeightType:ue,urlLetterSpacing:pe,urlLetterSpacingTablet:be,urlLetterSpacingMobile:de,urlLetterSpacingType:me}=t;return zw.map(e=>(e.label=e.label.replace(/\w/,e=>e.toUpperCase()),e)),React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0,title:Object(r.__)("Image","ultimate-addons-for-gutenberg")},React.createElement(Yl,{onSelectImage:e=>{e&&e.url&&e.type&&"image"===e.type?(e.sizes&&(zw=F(e.sizes)),a({image:e})):a({image:null})},backgroundImage:o,onRemoveImage:()=>{a({image:""})},disableLabel:!0}),o&&"null"!==o.url&&""!==o.url&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:n,label:"imageSize"},setAttributes:a,options:zw}),React.createElement(Pi,{label:Object(r.__)("Select Position","ultimate-addons-for-gutenberg"),data:{value:R,label:"imgPosition"},setAttributes:a,options:[{value:"above-title",label:Object(r.__)("Above Title","ultimate-addons-for-gutenberg")},{value:"left-title",label:Object(r.__)("Left of Title","ultimate-addons-for-gutenberg")},{value:"right-title",label:Object(r.__)("Right of Title","ultimate-addons-for-gutenberg")}]}))),React.createElement(Fe,{title:Object(r.__)("Add Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:i,label:"urlType"},setAttributes:a,options:[{value:"text",label:Object(r.__)("Text","ultimate-addons-for-gutenberg")},{value:"all",label:Object(r.__)("Complete Box","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")}]}),"text"===i&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:s,data:{value:s,label:"urlText"},setAttributes:a,onChange:e=>a({urlText:e})})),"none"!==i&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),value:l,data:{value:l,label:"url"},setAttributes:a,onChange:e=>a({url:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg"),checked:M,onChange:()=>a({urlTarget:!M})}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:C,label:"titleLoadGoogleFonts"},fontFamily:{value:_,label:"titleFontFamily"},fontWeight:{value:T,label:"titleFontWeight"},fontStyle:{value:j,label:"titleFontStyle"},transform:{value:z,label:"titleTransform"},decoration:{value:D,label:"titleDecoration"},fontSizeType:{value:f,label:"titleFontSizeType"},fontSize:{value:y,label:"titleFontSize"},fontSizeMobile:{value:h,label:"titleFontSizeMobile"},fontSizeTablet:{value:v,label:"titleFontSizeTablet"},lineHeightType:{value:ae,label:"titleLineHeightType"},lineHeight:{value:Q,label:"titleLineHeight"},lineHeightMobile:{value:te,label:"titleLineHeightMobile"},lineHeightTablet:{value:ee,label:"titleLineHeightTablet"},letterSpacing:{value:W,label:"titleLetterSpacing"},letterSpacingTablet:{value:q,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Z,label:"titleLetterSpacingMobile"},letterSpacingType:{value:$,label:"titleLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:B||"",data:{value:B,label:"titleColor"},setAttributes:a})),React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:G,label:"descriptionLoadGoogleFonts"},fontFamily:{value:x,label:"descriptionFontFamily"},fontWeight:{value:A,label:"descriptionFontWeight"},fontStyle:{value:N,label:"descriptionFontStyle"},transform:{value:I,label:"descriptionTransform"},decoration:{value:V,label:"descriptionDecoration"},fontSizeType:{value:w,label:"descriptionFontSizeType"},fontSize:{value:S,label:"descriptionFontSize"},fontSizeMobile:{value:k,label:"descriptionFontSizeMobile"},fontSizeTablet:{value:P,label:"descriptionFontSizeTablet"},lineHeightType:{value:ie,label:"descriptionLineHeightType"},lineHeight:{value:le,label:"descriptionLineHeight"},lineHeightMobile:{value:ne,label:"descriptionLineHeightMobile"},lineHeightTablet:{value:oe,label:"descriptionLineHeightTablet"},letterSpacing:{value:Y,label:"descriptionLetterSpacing"},letterSpacingTablet:{value:K,label:"descriptionLetterSpacingTablet"},letterSpacingMobile:{value:J,label:"descriptionLetterSpacingMobile"},letterSpacingType:{value:X,label:"descriptionLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:U||"",data:{value:U,label:"descriptionColor"},setAttributes:a})),"text"===i&&React.createElement(Fe,{title:Object(r.__)("Link","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:m,label:"urlLoadGoogleFonts"},fontFamily:{value:d,label:"urlFontFamily"},fontWeight:{value:g,label:"urlFontWeight"},fontStyle:{value:O,label:"urlFontStyle"},transform:{value:L,label:"urlTransform"},decoration:{value:H,label:"urlDecoration"},fontSizeType:{value:u,label:"urlFontSizeType"},fontSize:{value:c,label:"urlFontSize"},fontSizeMobile:{value:p,label:"urlFontSizeMobile"},fontSizeTablet:{value:b,label:"urlFontSizeTablet"},lineHeightType:{value:ue,label:"urlLineHeightType"},lineHeight:{value:re,label:"urlLineHeight"},lineHeightMobile:{value:ce,label:"urlLineHeightMobile"},lineHeightTablet:{value:se,label:"urlLineHeightTablet"},letterSpacing:{value:pe,label:"urlLetterSpacing"},letterSpacingTablet:{value:be,label:"urlLetterSpacingTablet"},letterSpacingMobile:{value:de,label:"urlLetterSpacingMobile"},letterSpacingType:{value:me,label:"urlLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:E||"",data:{value:E,label:"urlColor"},setAttributes:a}))),React.createElement(il,rl))))}),Iw=a(127),Vw=0,Ww={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},qw={};qw.locals=Iw.a.locals||{},qw.use=function(){return Vw++||(Dw=ke()(Iw.a,Ww)),qw},qw.unuse=function(){Vw>0&&!--Vw&&(Dw(),Dw=null)};var Zw=qw,$w=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Zw.use(),()=>{Zw.unuse()}),[]);const{attributes:t,setAttributes:a,mergeBlocks:l,insertBlocksAfter:i,onReplace:o,deviceType:n}=e,{block_id:s,name:c,description:u,url:p,urlType:b,image:d,imageSize:g,urlText:m,urlTarget:y,imgPosition:f,imgTagHeight:h,imgTagWidth:v}=t;let _="";null!=d&&""!==d&&(_=d.url);let T="";if(""!==_){const e=d.sizes;T=void 0!==e&&void 0!==e[g]?e[g].url:_}let C="_self";y&&(C="_blank"),Object(B.useEffect)(()=>{mf(T,a)},[T]);const S=(null==d?void 0:d.alt)||"",w=React.createElement("img",{className:"uagb-how-to-step-image",src:T,alt:S,width:v,height:h,loading:"lazy"}),k=React.createElement("div",{className:"uagb-step-content-wrap"},React.createElement(ge.RichText,{tagName:"div",className:"uagb-how-to-step-name",placeholder:Object(r.__)("Name","ultimate-addons-for-gutenberg"),value:c,onChange:e=>a({name:e}),multiline:!1}),React.createElement(ge.RichText,{tagName:"p",value:u,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-how-to-step-description",onChange:e=>a({description:e}),onMerge:l,onSplit:i?function(e,t){a({description:e});for(var l=arguments.length,o=new Array(l>2?l-2:0),n=2;n<l;n++)o[n-2]=arguments[n];i([...o,Object(be.createBlock)("core/paragraph",{description:t})])}:void 0,onRemove:()=>o([])}),"text"===b&&React.createElement(React.Fragment,null,""!==p?React.createElement("a",{href:p,target:C,className:"uagb-step-link",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-step-link-text"},m)):React.createElement("span",{className:"uagb-step-link-text"},m)));return React.createElement("div",{className:Be()("uagb-how-to-step-wrap","uagb-editor-preview-mode-"+n.toLowerCase(),"uagb-block-"+s)},("all"===b||"none"===b)&&React.createElement(React.Fragment,null,""!==p&&"all"===b&&React.createElement("a",{className:"uagb-step-link","aria-label":"Step Link",rel:"noopener noreferrer",target:C}),React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+f},T&&w,k)),"text"===b&&React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+f},T&&w,k))}),Yw=Object(B.memo)(e=>{let{attributes:t}=e;const{urlLoadGoogleFonts:a,urlFontFamily:l,urlFontWeight:i,titleLoadGoogleFonts:o,titleFontFamily:n,titleFontWeight:r,descriptionLoadGoogleFonts:s,descriptionFontFamily:c,descriptionFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),Kw=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,clientId:l,deviceType:i}=e,o=Object(B.useMemo)(()=>function(e,t,a){const l=a.toLowerCase(),{urlFontSize:i,urlFontSizeType:o,urlFontSizeMobile:n,urlFontSizeTablet:r,urlFontFamily:s,urlFontWeight:c,titleFontSize:u,titleFontSizeType:p,titleFontSizeMobile:b,titleFontSizeTablet:d,titleFontFamily:g,titleFontWeight:m,descriptionFontSize:y,descriptionFontSizeType:f,descriptionFontSizeMobile:h,descriptionFontSizeTablet:v,descriptionFontFamily:_,descriptionFontWeight:T,titleColor:C,descriptionColor:S,urlColor:w,urlFontStyle:k,urlTransform:P,urlDecoration:x,titleFontStyle:A,titleTransform:G,titleDecoration:M,descriptionFontStyle:R,descriptionTransform:B,descriptionDecoration:U,titleLetterSpacing:E,titleLetterSpacingTablet:O,titleLetterSpacingMobile:L,titleLetterSpacingType:H,descriptionLetterSpacing:j,descriptionLetterSpacingTablet:F,descriptionLetterSpacingMobile:z,descriptionLetterSpacingType:D,titleLineHeight:N,titleLineHeightTablet:I,titleLineHeightMobile:V,titleLineHeightType:W,descriptionLineHeight:q,descriptionLineHeightType:Z,descriptionLineHeightTablet:$,descriptionLineHeightMobile:Y,urlLineHeight:K,urlLineHeightTablet:J,urlLineHeightMobile:X,urlLineHeightType:Q,urlLetterSpacing:ee,urlLetterSpacingTablet:te,urlLetterSpacingMobile:le,urlLetterSpacingType:ie,block_id:oe}=e;let ne={},re={};const se={" .uagb-step-link-text":{color:w,"font-family":s,"font-style":k,"text-transform":P,"text-decoration":x,"font-weight":c,"font-size":ns(i,o),"line-height":ns(K,Q),"letter-spacing":ns(ee,ie)}," .block-editor-rich-text__editable.uagb-how-to-step-name":{color:C,"font-family":g,"font-style":A,"text-transform":G,"text-decoration":M,"font-weight":m,"font-size":ns(u,p),"line-height":ns(N,W),"letter-spacing":ns(E,H)}," .block-editor-rich-text__editable.uagb-how-to-step-description":{color:S,"font-family":_,"font-style":R,"text-transform":B,"text-decoration":U,"font-weight":T,"font-size":ns(y,f),"line-height":ns(q,Z),"letter-spacing":ns(j,D)}};re={" .uagb-step-link-text":{"font-size":ns(n,o),"line-height":ns(X,Q),"letter-spacing":ns(le,ie)}," .block-editor-rich-text__editable.uagb-how-to-step-name":{"font-size":ns(b,p),"line-height":ns(V,W),"letter-spacing":ns(L,H)}," .block-editor-rich-text__editable.uagb-how-to-step-description":{"font-size":ns(h,f),"line-height":ns(Y,Z),"letter-spacing":ns(z,D)}},ne={" .uagb-step-link-text":{"font-size":ns(r,o),"line-height":ns(J,Q),"letter-spacing":ns(te,ie)}," .block-editor-rich-text__editable.uagb-how-to-step-name":{"font-size":ns(d,p),"line-height":ns(I,W),"letter-spacing":ns(O,H)}," .block-editor-rich-text__editable.uagb-how-to-step-description":{"font-size":ns(v,f),"line-height":ns($,Z),"letter-spacing":ns(F,D)}};const ce=".editor-styles-wrapper .uagb-block-"+oe;let ue=ae(se,ce);return"tablet"!==l&&"mobile"!==l||(ue+=ae(ne,""+ce,!0,"tablet"),"mobile"===l&&(ue+=ae(re,""+ce,!0,"mobile"))),ue}(a,0,i),[a,i]);return Object(B.useEffect)(()=>{Bs()},[i]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:o}),React.createElement(Yw,{attributes:a}),t&&React.createElement(Nw,e),React.createElement($w,e))}),Jw=[{attributes:{block_id:{type:"string"},name:{type:"string",default:Object(r.__)("Step","ultimate-addons-for-gutenberg")},description:{type:"string",default:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.")},url:{type:"string",default:"#"},urlType:{type:"string",default:"all"},urlText:{type:"string",default:Object(r.__)("Read More","ultimate-addons-for-gutenberg")},urlTarget:{type:"boolean",default:!1},image:{type:"object",default:{url:"",alt:"Image Placeholder"}},imageSize:{type:"string",default:"thumbnail",UAGCopyPaste:{styleType:"image-size"}},urlFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},urlFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},urlFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},urlFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},urlFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},urlFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},urlFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"prefix-font-style"}},urlTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},urlDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},urlLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",UAGCopyPaste:{styleType:"main-title-font-size-type"},default:"px"},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},descriptionFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descriptionFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descriptionFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descriptionFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descriptionFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descriptionFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descriptionFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descriptionTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descriptionDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descriptionLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},imgPosition:{type:"string",default:"above-title"},titleColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},descriptionColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},urlColor:{type:"string",UAGCopyPaste:{styleType:"prefix-color"}},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLineHeightType:{type:"string",UAGCopyPaste:{styleType:"main-title-line-height-type"},default:"em"},descriptionLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descriptionLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descriptionLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descriptionLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},descriptionLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descriptionLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descriptionLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descriptionLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},urlLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},urlLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},urlLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},urlLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},urlLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},urlLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},urlLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},urlLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}}},save(e){const{attributes:t}=e,{block_id:a,name:l,description:i,url:o,urlType:n,image:r,imageSize:s,urlText:c,urlTarget:u,imgPosition:p}=t;let b="";null!=r&&""!==r&&(b=r.url);let d="";if(""!==b){const e=r.sizes;d=void 0!==e&&void 0!==e[s]?e[s].url:b}let g="_self";u&&(g="_blank");const m=React.createElement("img",{className:"uagb-how-to-step-image",src:d,alt:r.alt}),y=React.createElement("div",{className:"uagb-step-content-wrap"},React.createElement(ge.RichText.Content,{tagName:"div",className:"uagb-how-to-step-name",value:l}),React.createElement(ge.RichText.Content,{tagName:"p",className:"uagb-how-to-step-description",value:i}),"text"===n&&React.createElement("a",{href:o,target:g,className:"uagb-step-link",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-step-link-text"},c)));return React.createElement("div",{className:Be()("uagb-how-to-step-wrap","uagb-block-"+a)},"all"===n&&React.createElement(React.Fragment,null,React.createElement("a",{href:o,target:g,className:"uagb-step-link-all",rel:"noopener noreferrer"}),React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},d&&m,y)),"text"===n&&React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},d&&m,y))}},{attributes:Zt,save(e){const{attributes:t}=e,{block_id:a,name:l,description:i,url:o,urlType:n,image:r,imageSize:s,urlText:c,urlTarget:u,imgPosition:p}=t;let b="";null!=r&&""!==r&&(b=r.url);let d="";if(""!==b){const e=r.sizes;d=void 0!==e&&void 0!==e[s]?e[s].url:b}let g="_self";u&&(g="_blank");const m=React.createElement("img",{className:"uagb-how-to-step-image",src:d,alt:r.alt}),y=React.createElement("div",{className:"uagb-step-content-wrap"},React.createElement(ge.RichText.Content,{tagName:"div",className:"uagb-how-to-step-name",value:l}),React.createElement(ge.RichText.Content,{tagName:"p",className:"uagb-how-to-step-description",value:i}),"text"===n&&React.createElement(React.Fragment,null,""!==o?React.createElement("a",{href:o,target:g,className:"uagb-step-link",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-step-link-text"},c)):React.createElement("span",{className:"uagb-step-link-text"},c)));return React.createElement("div",{className:Be()("uagb-how-to-step-wrap","uagb-block-"+a)},("all"===n||"none"===n)&&React.createElement(React.Fragment,null,""!==o&&"all"===n&&React.createElement("a",{href:o,target:g,className:"uagb-step-link-all",rel:"noopener noreferrer"}),React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},d&&m,y)),"text"===n&&React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},d&&m,y))}}];let Xw={};Xw=Object(j.applyFilters)("uagb/how-to-step",ws(Xw)),Object(be.registerBlockType)("uagb/how-to-step",{...Xw,title:Object(r.__)("Step","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add relevant content for this step.","ultimate-addons-for-gutenberg"),icon:se.how_to_step,parent:["uagb/how-to"],attributes:Zt,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"how-to-step",isChildren:!0}):React.createElement(Kw,e),supports:{anchor:!0,html:!1},save:function(e){const{attributes:t}=e,{block_id:a,name:l,description:i,url:o,urlType:n,image:r,imageSize:s,urlText:c,urlTarget:u,imgPosition:p,imgTagHeight:b,imgTagWidth:d}=t;let g="";null!=r&&""!==r&&(g=r.url);let m="";if(""!==g){const e=r.sizes;m=void 0!==e&&void 0!==e[s]?e[s].url:g}let y="_self";u&&(y="_blank");const f=(null==r?void 0:r.alt)||"",h=React.createElement("img",{className:"uagb-how-to-step-image",src:m,alt:f,width:d,height:b,loading:"lazy"}),v=React.createElement("div",{className:"uagb-step-content-wrap"},React.createElement(ge.RichText.Content,{tagName:"div",className:"uagb-how-to-step-name",value:l}),React.createElement(ge.RichText.Content,{tagName:"p",className:"uagb-how-to-step-description",value:i}),"text"===n&&React.createElement(React.Fragment,null,""!==o?React.createElement("a",{href:o,target:y,className:"uagb-step-link",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-step-link-text"},c)):React.createElement("span",{className:"uagb-step-link-text"},c)));return React.createElement("div",{className:Be()("uagb-how-to-step-wrap","uagb-block-"+a)},("all"===n||"none"===n)&&React.createElement(React.Fragment,null,""!==o&&"all"===n&&React.createElement("a",{href:o,target:y,className:"uagb-step-link-all",rel:"noopener noreferrer"}),React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},m&&h,v)),"text"===n&&React.createElement("div",{className:"uagb-step-image-content-wrap uag-image-position-"+p},m&&h,v))},deprecated:Jw});const Qw=[{defaultAttributes:St},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"size",value:20},{label:"bgSize",value:""},{label:"borderRadius",value:100},{label:"border",value:0},{label:"iconColor",value:"#0170B9"},{label:"iconBgColor",value:""},{label:"gap",value:10},{label:"gapTablet",value:""},{label:"gapMobile",value:""},{label:"gapType",value:"px"},{label:"inner_gap",value:15},{label:"innerGapTablet",value:""},{label:"innerGapMobile",value:""},{label:"innerGapType",value:"px"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118.8 135.771C118.8 133.903 120.222 132.389 121.975 132.389H247.53C249.283 132.389 250.705 133.903 250.705 135.771C250.705 137.639 249.283 139.153 247.53 139.153H121.975C120.222 139.153 118.8 137.639 118.8 135.771Z" fill="#D2D2D2"/> <circle cx="88.361" cy="135.771" r="14.6561" fill="#B6B6B6"/> <path d="M95.6556 136.301C95.9485 136.008 95.9485 135.533 95.6556 135.24L90.8827 130.467C90.5898 130.175 90.1149 130.175 89.822 130.467C89.5291 130.76 89.5291 131.235 89.822 131.528L94.0646 135.771L89.822 140.013C89.5291 140.306 89.5291 140.781 89.822 141.074C90.1149 141.367 90.5898 141.367 90.8827 141.074L95.6556 136.301ZM95.1253 135.021H81.5966V136.521H95.1253V135.021Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118.8 189.885C118.8 188.017 120.222 186.503 121.975 186.503H247.53C249.283 186.503 250.705 188.017 250.705 189.885C250.705 191.753 249.283 193.268 247.53 193.268H121.975C120.222 193.268 118.8 191.753 118.8 189.885Z" fill="#D2D2D2"/> <circle cx="88.361" cy="189.885" r="14.6561" fill="#B6B6B6"/> <path d="M95.6556 190.416C95.9485 190.123 95.9485 189.648 95.6556 189.355L90.8827 184.582C90.5898 184.289 90.1149 184.289 89.822 184.582C89.5291 184.875 89.5291 185.35 89.822 185.643L94.0646 189.885L89.822 194.128C89.5291 194.421 89.5291 194.896 89.822 195.189C90.1149 195.481 90.5898 195.481 90.8827 195.189L95.6556 190.416ZM95.1253 189.135H81.5966V190.635H95.1253V189.135Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118.8 81.6561C118.8 79.7882 120.222 78.2739 121.975 78.2739H247.53C249.283 78.2739 250.705 79.7882 250.705 81.6561C250.705 83.524 249.283 85.0383 247.53 85.0383H121.975C120.222 85.0383 118.8 83.524 118.8 81.6561Z" fill="#D2D2D2"/> <circle cx="88.361" cy="81.6561" r="14.6561" fill="#B6B6B6"/> <path d="M95.6556 82.1863C95.9485 81.8934 95.9485 81.4186 95.6556 81.1257L90.8827 76.3527C90.5898 76.0598 90.1149 76.0598 89.822 76.3527C89.5291 76.6456 89.5291 77.1205 89.822 77.4134L94.0646 81.656L89.822 85.8986C89.5291 86.1915 89.5291 86.6664 89.822 86.9593C90.1149 87.2522 90.5898 87.2522 90.8827 86.9593L95.6556 82.1863ZM95.1253 80.906H81.5966V82.406H95.1253V80.906Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"bgSize",value:10},{label:"size",value:20},{label:"borderRadius",value:100},{label:"border",value:0},{label:"iconColor",value:"#fff"},{label:"iconBgColor",value:"#0170B9"},{label:"gap",value:10},{label:"gapTablet",value:""},{label:"gapMobile",value:""},{label:"gapType",value:"px"},{label:"inner_gap",value:15},{label:"innerGapTablet",value:""},{label:"innerGapMobile",value:""},{label:"innerGapType",value:"px"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 135.771C120.096 133.903 121.517 132.388 123.27 132.388H248.825C250.579 132.388 252 133.903 252 135.771C252 137.639 250.579 139.153 248.825 139.153H123.27C121.517 139.153 120.096 137.639 120.096 135.771Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 189.885C120.096 188.017 121.517 186.503 123.27 186.503H248.825C250.579 186.503 252 188.017 252 189.885C252 191.753 250.579 193.268 248.825 193.268H123.27C121.517 193.268 120.096 191.753 120.096 189.885Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 81.6561C120.096 79.7882 121.517 78.2739 123.27 78.2739H248.825C250.579 78.2739 252 79.7882 252 81.6561C252 83.524 250.579 85.0383 248.825 85.0383H123.27C121.517 85.0383 120.096 83.524 120.096 81.6561Z" fill="#D2D2D2"/> <circle cx="89.6561" cy="81.6561" r="14.6561" fill="#B6B6B6"/> <circle cx="89.6561" cy="81.656" r="11.2739" fill="white"/> <path d="M96.9507 82.1863C97.2436 81.8934 97.2436 81.4186 96.9507 81.1257L92.1777 76.3527C91.8848 76.0598 91.41 76.0598 91.1171 76.3527C90.8242 76.6456 90.8242 77.1205 91.1171 77.4134L95.3597 81.656L91.1171 85.8986C90.8242 86.1915 90.8242 86.6664 91.1171 86.9593C91.41 87.2522 91.8848 87.2522 92.1777 86.9593L96.9507 82.1863ZM96.4204 80.906H82.8917V82.406H96.4204V80.906Z" fill="#B6B6B6"/> <circle cx="89.6561" cy="135.771" r="14.6561" fill="#B6B6B6"/> <circle cx="89.6561" cy="135.771" r="11.2739" fill="white"/> <path d="M96.9507 136.301C97.2436 136.008 97.2436 135.533 96.9507 135.24L92.1777 130.467C91.8848 130.175 91.41 130.175 91.1171 130.467C90.8242 130.76 90.8242 131.235 91.1171 131.528L95.3597 135.771L91.1171 140.013C90.8242 140.306 90.8242 140.781 91.1171 141.074C91.41 141.367 91.8848 141.367 92.1777 141.074L96.9507 136.301ZM96.4204 135.021H82.8917V136.521H96.4204V135.021Z" fill="#B6B6B6"/> <circle cx="89.6561" cy="189.885" r="14.6561" fill="#B6B6B6"/> <circle cx="89.6561" cy="189.885" r="11.2739" fill="white"/> <path d="M96.9507 190.416C97.2436 190.123 97.2436 189.648 96.9507 189.355L92.1777 184.582C91.8848 184.289 91.41 184.289 91.1171 184.582C90.8242 184.875 90.8242 185.35 91.1171 185.643L95.3597 189.885L91.1171 194.128C90.8242 194.421 90.8242 194.896 91.1171 195.189C91.41 195.481 91.8848 195.481 92.1777 195.189L96.9507 190.416ZM96.4204 189.135H82.8917V190.635H96.4204V189.135Z" fill="#B6B6B6"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"bgSize",value:10},{label:"size",value:20},{label:"borderRadius",value:100},{label:"border",value:2},{label:"iconColor",value:"#0170B9"},{label:"iconBorderColor",value:"#0170B9"},{label:"iconBgColor",value:""},{label:"gap",value:10},{label:"gapTablet",value:""},{label:"gapMobile",value:""},{label:"gapType",value:"px"},{label:"inner_gap",value:15},{label:"innerGapTablet",value:""},{label:"innerGapMobile",value:""},{label:"innerGapType",value:"px"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 135.771C120.096 133.903 121.517 132.388 123.27 132.388H248.825C250.579 132.388 252 133.903 252 135.771C252 137.639 250.579 139.153 248.825 139.153H123.27C121.517 139.153 120.096 137.639 120.096 135.771Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 189.885C120.096 188.017 121.517 186.503 123.27 186.503H248.825C250.579 186.503 252 188.017 252 189.885C252 191.753 250.579 193.268 248.825 193.268H123.27C121.517 193.268 120.096 191.753 120.096 189.885Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M120.096 81.6561C120.096 79.7882 121.517 78.2739 123.27 78.2739H248.825C250.579 78.2739 252 79.7882 252 81.6561C252 83.524 250.579 85.0383 248.825 85.0383H123.27C121.517 85.0383 120.096 83.524 120.096 81.6561Z" fill="#D2D2D2"/> <circle cx="89.6561" cy="81.6561" r="14.1561" stroke="#B6B6B6" fill="none"/> <circle cx="89.656" cy="81.656" r="11.2739" fill="#B6B6B6"/> <path d="M96.9507 82.1863C97.2436 81.8934 97.2436 81.4186 96.9507 81.1257L92.1778 76.3527C91.8849 76.0598 91.41 76.0598 91.1171 76.3527C90.8242 76.6456 90.8242 77.1205 91.1171 77.4134L95.3598 81.656L91.1171 85.8986C90.8242 86.1915 90.8242 86.6664 91.1171 86.9593C91.41 87.2522 91.8849 87.2522 92.1778 86.9593L96.9507 82.1863ZM96.4204 80.906H82.8917V82.406H96.4204V80.906Z" fill="white"/> <circle cx="89.6561" cy="135.771" r="14.1561" stroke="#B6B6B6" fill="none"/> <circle cx="89.656" cy="135.771" r="11.2739" fill="#B6B6B6"/> <path d="M96.9507 136.301C97.2436 136.008 97.2436 135.533 96.9507 135.24L92.1778 130.467C91.8849 130.175 91.41 130.175 91.1171 130.467C90.8242 130.76 90.8242 131.235 91.1171 131.528L95.3598 135.771L91.1171 140.013C90.8242 140.306 90.8242 140.781 91.1171 141.074C91.41 141.367 91.8849 141.367 92.1778 141.074L96.9507 136.301ZM96.4204 135.021H82.8917V136.521H96.4204V135.021Z" fill="white"/> <circle cx="89.6561" cy="189.885" r="14.1561" stroke="#B6B6B6" fill="none"/> <circle cx="89.656" cy="189.885" r="11.2739" fill="#B6B6B6"/> <path d="M96.9507 190.416C97.2436 190.123 97.2436 189.648 96.9507 189.355L92.1778 184.582C91.8849 184.289 91.41 184.289 91.1171 184.582C90.8242 184.875 90.8242 185.35 91.1171 185.643L95.3598 189.885L91.1171 194.128C90.8242 194.421 90.8242 194.896 91.1171 195.189C91.41 195.481 91.8849 195.481 92.1778 195.189L96.9507 190.416ZM96.4204 189.135H82.8917V190.635H96.4204V189.135Z" fill="white"/> </svg>'}];var ek=Object(j.applyFilters)("uag_icon_list_presets",Qw);function tk(){return(tk=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var ak,lk=Object(B.memo)(e=>{const{attributes:t,deviceType:a,setAttributes:l,clientId:i}=e,{align:o,alignTablet:s,alignMobile:c,gap:u,gapTablet:p,gapMobile:b,gapType:d,inner_gap:g,innerGapTablet:m,innerGapMobile:y,innerGapType:f,icon_layout:h,iconLayoutTablet:v,iconLayoutMobile:_,iconPosition:T,iconPositionTablet:C,iconPositionMobile:S,iconPlacement:w,size:k,sizeType:P,sizeMobile:x,sizeTablet:A,hideLabel:G,borderRadius:M,borderRadiusTablet:R,borderRadiusMobile:B,borderRadiusType:U,bgSize:E,bgSizeType:O,bgSizeTablet:L,bgSizeMobile:H,border:j,borderTablet:F,borderMobile:z,borderType:D,fontSize:N,fontSizeType:I,fontSizeMobile:V,fontSizeTablet:W,fontFamily:q,fontWeight:Z,lineHeight:$,lineHeightType:Y,lineHeightMobile:K,lineHeightTablet:J,loadGoogleFonts:X,fontStyle:Q,fontTransform:ee,fontDecoration:te,labelLetterSpacing:ae,labelLetterSpacingTablet:le,labelLetterSpacingMobile:ie,labelLetterSpacingType:oe,iconColor:ne,labelColor:re,iconHoverColor:se,labelHoverColor:ce,iconBgColor:ue,iconBgHoverColor:pe,iconBorderColor:be,iconBorderHoverColor:de,blockTopMargin:me,blockRightMargin:ye,blockLeftMargin:fe,blockBottomMargin:he,blockTopMarginTablet:ve,blockRightMarginTablet:_e,blockLeftMarginTablet:Te,blockBottomMarginTablet:Se,blockTopMarginMobile:we,blockRightMarginMobile:ke,blockLeftMarginMobile:Pe,blockBottomMarginMobile:xe,blockMarginUnit:Ae,blockMarginUnitTablet:Ge,blockMarginUnitMobile:Me,blockMarginLink:Re,parentIcon:Be,blockTopPadding:Ue,blockRightPadding:Oe,blockLeftPadding:He,blockBottomPadding:je,blockTopPaddingTablet:ze,blockRightPaddingTablet:De,blockLeftPaddingTablet:Ne,blockBottomPaddingTablet:Ie,blockTopPaddingMobile:Ve,blockRightPaddingMobile:We,blockLeftPaddingMobile:qe,blockBottomPaddingMobile:Ze,blockPaddingUnit:$e,blockPaddingUnitTablet:Ye,blockPaddingUnitMobile:Ke,blockPaddingLink:Je}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:Be,onChange:e=>l({parentIcon:e})})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:l,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{desktop:{value:h,label:"icon_layout"},tablet:{value:v,label:"iconLayoutTablet"},mobile:{value:_,label:"iconLayoutMobile"}},options:[{value:"horizontal",label:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},{value:"vertical",label:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")}],showIcons:!1,responsive:!0}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:o,label:"align"},tablet:{value:s,label:"alignTablet"},mobile:{value:c,label:"alignMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),!G&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Icon Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:T,label:"iconPosition"},tablet:{value:C,label:"iconPositionTablet"},mobile:{value:S,label:"iconPositionMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:"Top"},{value:"middle",label:"Middle"}],showIcons:!1,help:Object(r.__)("Note: This manages the Icon Position with respect to the Label.","ultimate-addons-for-gutenberg"),responsive:!0})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide Labels","ultimate-addons-for-gutenberg"),checked:G,onChange:e=>(e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.hideLabel=e}),l({hideLabel:e})})(e)}),!G&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:l,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:w,label:"iconPlacement"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:"Before"},{value:"after",label:"After"}],showIcons:!1}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:l,presets:ek,presetInputType:"radioImage"}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Icon/Image","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:k,label:"size"},tablet:{value:A,label:"sizeTablet"},mobile:{value:x,label:"sizeMobile"}},min:0,max:200,unit:{value:P,label:"sizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:l}),React.createElement(tl,{label:Object(r.__)("Background Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:E,label:"bgSize"},tablet:{value:L,label:"bgSizeTablet"},mobile:{value:H,label:"bgSizeMobile"}},setAttributes:l,min:0,max:50,unit:{value:O,label:"bgSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],help:Object(r.__)("Note: Background Size option is useful when one adds background color to the icons.","ultimate-addons-for-gutenberg")}),React.createElement(tl,{label:Object(r.__)("Border","ultimate-addons-for-gutenberg"),data:{desktop:{value:j,label:"border"},tablet:{value:F,label:"borderTablet"},mobile:{value:z,label:"borderMobile"}},min:0,max:10,unit:{value:D,label:"borderType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l}),(ue||pe||j||F||z)&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),data:{desktop:{value:M,label:"borderRadius"},tablet:{value:R,label:"borderRadiusTablet"},mobile:{value:B,label:"borderRadiusMobile"}},min:0,max:100,unit:{value:U,label:"borderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l,help:Object(r.__)("Note: Border Radius option is useful when one adds background color or border to the icons.","ultimate-addons-for-gutenberg")})),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:ne||"",data:{value:ne,label:"iconColor"},setAttributes:l}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ue||"",data:{value:ue,label:"iconBgColor"},setAttributes:l}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:be||"",data:{value:be,label:"iconBorderColor"},setAttributes:l})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:se||"",data:{value:se,label:"iconHoverColor"},setAttributes:l}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:pe||"",data:{value:pe,label:"iconBgHoverColor"},setAttributes:l}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:de||"",data:{value:de,label:"iconBorderHoverColor"},setAttributes:l})),disableBottomSeparator:!0})),!G&&React.createElement(Fe,{title:Object(r.__)("Label","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Gap between Icon and Label","ultimate-addons-for-gutenberg"),data:{desktop:{value:g,label:"inner_gap"},tablet:{value:m,label:"innerGapTablet"},mobile:{value:y,label:"innerGapMobile"}},min:-100,max:100,unit:{value:f,label:"innerGapType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:re,data:{value:re,label:"labelColor"},setAttributes:l}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ce,data:{value:ce,label:"labelHoverColor"},setAttributes:l})}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:l,loadGoogleFonts:{value:X,label:"loadGoogleFonts"},fontFamily:{value:q,label:"fontFamily"},fontWeight:{value:Z,label:"fontWeight"},fontStyle:{value:Q,label:"fontStyle"},transform:{value:ee,label:"fontTransform"},decoration:{value:te,label:"fontDecoration"},fontSizeType:{value:I,label:"fontSizeType"},fontSize:{value:N,label:"fontSize"},fontSizeMobile:{value:V,label:"fontSizeMobile"},fontSizeTablet:{value:W,label:"fontSizeTablet"},lineHeightType:{value:Y,label:"lineHeightType"},lineHeight:{value:$,label:"lineHeight"},lineHeightMobile:{value:K,label:"lineHeightMobile"},lineHeightTablet:{value:J,label:"lineHeightTablet"},letterSpacing:{value:ae,label:"labelLetterSpacing"},letterSpacingTablet:{value:le,label:"labelLetterSpacingTablet"},letterSpacingMobile:{value:ie,label:"labelLetterSpacingMobile"},letterSpacingType:{value:oe,label:"labelLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Gap between Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:u,label:"gap"},tablet:{value:p,label:"gapTablet"},mobile:{value:b,label:"gapMobile"}},min:0,max:100,unit:{value:d,label:"gapType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:l,help:Object(r.__)("Note: For better editing experience, the gap between items might look larger than applied. Viewing in frontend will show the actual results.","ultimate-addons-for-gutenberg")}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:me,label:"blockTopMargin"},valueRight:{value:ye,label:"blockRightMargin"},valueBottom:{value:he,label:"blockBottomMargin"},valueLeft:{value:fe,label:"blockLeftMargin"},valueTopTablet:{value:ve,label:"blockTopMarginTablet"},valueRightTablet:{value:_e,label:"blockRightMarginTablet"},valueBottomTablet:{value:Se,label:"blockBottomMarginTablet"},valueLeftTablet:{value:Te,label:"blockLeftMarginTablet"},valueTopMobile:{value:we,label:"blockTopMarginMobile"},valueRightMobile:{value:ke,label:"blockRightMarginMobile"},valueBottomMobile:{value:xe,label:"blockBottomMarginMobile"},valueLeftMobile:{value:Pe,label:"blockLeftMarginMobile"},unit:{value:Ae,label:"blockMarginUnit"},mUnit:{value:Me,label:"blockMarginUnitMobile"},tUnit:{value:Ge,label:"blockMarginUnitTablet"},deviceType:a,attributes:t,setAttributes:l,link:{value:Re,label:"blockMarginLink"}}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ue,label:"blockTopPadding"},valueRight:{value:Oe,label:"blockRightPadding"},valueBottom:{value:je,label:"blockBottomPadding"},valueLeft:{value:He,label:"blockLeftPadding"},valueTopTablet:{value:ze,label:"blockTopPaddingTablet"},valueRightTablet:{value:De,label:"blockRightPaddingTablet"},valueBottomTablet:{value:Ie,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:Ne,label:"blockLeftPaddingTablet"},valueTopMobile:{value:Ve,label:"blockTopPaddingMobile"},valueRightMobile:{value:We,label:"blockRightPaddingMobile"},valueBottomMobile:{value:Ze,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:qe,label:"blockLeftPaddingMobile"},unit:{value:$e,label:"blockPaddingUnit"},mUnit:{value:Ke,label:"blockPaddingUnitMobile"},tUnit:{value:Ye,label:"blockPaddingUnitTablet"},deviceType:a,attributes:t,setAttributes:l,link:{value:Je,label:"blockPaddingLink"}}))),React.createElement(il,tk({},rl,{parentProps:e})))))}),ik=a(128),ok=0,nk={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},rk={};rk.locals=ik.a.locals||{},rk.use=function(){return ok++||(ak=ke()(ik.a,nk)),rk},rk.unuse=function(){ok>0&&!--ok&&(ak(),ak=null)};var sk=rk;const ck=["uagb/icon-list-child"];var uk=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(sk.use(),()=>{sk.unuse()}),[]);const{attributes:t,deviceType:a}=e,{className:l,icon_count:i,block_id:o}=t,n=Object(B.useMemo)(()=>{const e=[];for(let t=0;t<i;t++)e.push(["uagb/icon-list-child",{id:t+1}]);return e},[i]);return React.createElement("div",{className:Be()(l,"uagb-editor-preview-mode-"+a.toLowerCase(),"uagb-block-"+o)},React.createElement("div",{className:"uagb-icon-list__wrap"},React.createElement(ge.InnerBlocks,{template:n,templateLock:!1,allowedBlocks:ck})))}),pk=Object(B.memo)(e=>{let{attributes:t}=e;const{loadGoogleFonts:a,fontFamily:l,fontWeight:i}=t;let o;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};o=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,o)}),bk=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o},clientId:r,name:s,deviceType:c}=e;Object(B.useEffect)(()=>{Bs()},[c]);const u=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{align:n,alignTablet:r,alignMobile:s,gap:c,gapTablet:u,gapMobile:p,gapType:b,inner_gap:d,innerGapTablet:g,innerGapMobile:m,innerGapType:y,icon_layout:f,iconLayoutTablet:h,iconLayoutMobile:v,size:_,sizeType:T,sizeTablet:C,sizeMobile:S,fontSize:w,fontSizeType:k,fontSizeMobile:P,fontSizeTablet:x,fontFamily:A,fontWeight:G,lineHeightType:M,lineHeight:R,lineHeightTablet:B,lineHeightMobile:U,border:E,borderTablet:O,borderMobile:L,borderType:H,bgSize:j,bgSizeType:F,bgSizeTablet:z,bgSizeMobile:D,borderRadius:N,borderRadiusTablet:I,borderRadiusMobile:V,borderRadiusType:W,fontStyle:q,fontTransform:Z,fontDecoration:$,iconPosition:Y,iconPositionTablet:K,iconPositionMobile:J,hideLabel:X,labelLetterSpacing:Q,labelLetterSpacingTablet:ee,labelLetterSpacingMobile:te,labelLetterSpacingType:le,iconColor:ie,labelColor:oe,iconHoverColor:ne,labelHoverColor:re,iconBgColor:se,iconBgHoverColor:ce,iconBorderColor:ue,iconBorderHoverColor:pe,iconPlacement:be,blockTopMargin:de,blockRightMargin:ge,blockLeftMargin:me,blockBottomMargin:ye,blockTopMarginTablet:fe,blockRightMarginTablet:he,blockLeftMarginTablet:ve,blockBottomMarginTablet:_e,blockTopMarginMobile:Te,blockRightMarginMobile:Ce,blockLeftMarginMobile:Se,blockBottomMarginMobile:we,blockMarginUnit:ke,blockMarginUnitTablet:Pe,blockMarginUnitMobile:xe,blockTopPadding:Ae,blockRightPadding:Ge,blockLeftPadding:Me,blockBottomPadding:Re,blockTopPaddingTablet:Be,blockRightPaddingTablet:Ue,blockLeftPaddingTablet:Ee,blockBottomPaddingTablet:Oe,blockTopPaddingMobile:Le,blockRightPaddingMobile:He,blockLeftPaddingMobile:je,blockBottomPaddingMobile:Fe,blockPaddingUnit:ze,blockPaddingUnitTablet:De,blockPaddingUnitMobile:Ne,block_id:Ie}=e,Ve=Ps(c,"gap",i),We=Ps(j,"bgSize",i),qe=Ps(N,"borderRadius",i),Ze=Ps(I,"borderRadiusTablet",i),$e=Ps(V,"borderRadiusMobile",i),Ye=Ps(E,"border",i),Ke=Ps(_,"size",i),Je=Ps(d,"inner_gap",i),Xe=Ps(g,"innerGapTablet",i),Qe=Ps(m,"innerGapMobile",i),et=isNaN(C)?Ke:C,tt=isNaN(S)?et:S,at=isNaN(z)?We:z,lt=isNaN(D)?at:D,it=isNaN(O)?Ye:O,ot=isNaN(L)?it:L,nt=isNaN(u)?Ve:u,rt=isNaN(p)?nt:p;let st={},ct={},ut={},pt="";pt="left"===n?"flex-start":"right"===n?"flex-end":"center";let bt=pt;"left"===r?bt="flex-start":"right"===r?bt="flex-end":"center"===r&&(bt="center");let dt=bt;"left"===s?dt="flex-start":"right"===s?dt="flex-end":"center"===s&&(dt="center");const gt=f,mt=h||gt,yt=v||mt,ft="top"===Y?"flex-start":"center";let ht="",vt="";ht="top"===K?"flex-start":"middle"===K?"center":ft,vt="top"===J?"flex-start":"middle"===J?"center":ht,st={" .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap":{background:se,"border-color":ue,padding:ns(We,F),"border-radius":ns(qe,W),"border-style":0===Ye||void 0===Ye?"none":"solid","border-width":ns(Ye,H),"align-self":ft}," .uagb-icon-list__source-image":{width:ns(Ke,T)}," .uagb-icon-list__wrap .block-editor-inner-blocks":{"text-align":n,"margin-top":ns(de,ke),"margin-right":ns(ge,ke),"margin-bottom":ns(ye,ke),"margin-left":ns(me,ke),"padding-top":ns(Ae,ze),"padding-right":ns(Ge,ze),"padding-bottom":ns(Re,ze),"padding-left":ns(Me,ze)}," .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg":{color:ie,fill:ie}," .wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap svg":{color:ne,fill:ne}," .wp-block-uagb-icon-list-child .uagb-icon-list__label":{color:oe}," .wp-block-uagb-icon-list-child:hover .uagb-icon-list__label":{color:re}," .wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap":{background:ce,"border-color":pe}},ct={" .uagb-icon-list__source-image":{width:ns(et,T)}," .uagb-icon-list__wrap .block-editor-inner-blocks":{"text-align":r,"margin-top":ns(fe,Pe),"margin-right":ns(he,Pe),"margin-bottom":ns(_e,Pe),"margin-left":ns(ve,Pe),"padding-top":ns(Be,De),"padding-right":ns(Ue,De),"padding-bottom":ns(Oe,De),"padding-left":ns(Ee,De)}},ut={" .uagb-icon-list__source-image":{width:ns(tt,T)}," .uagb-icon-list__wrap .block-editor-inner-blocks":{"text-align":s,"margin-top":ns(Te,xe),"margin-right":ns(Ce,xe),"margin-bottom":ns(we,xe),"margin-left":ns(Se,xe),"padding-top":ns(Le,Ne),"padding-right":ns(He,Ne),"padding-bottom":ns(Fe,Ne),"padding-left":ns(je,Ne)}},st[" .uagb-icon-list__source-wrap svg"]={width:ns(Ke,T),height:ns(Ke,T),"font-size":ns(Ke,T)},ct[" .uagb-icon-list__source-wrap svg"]={width:ns(et,T),height:ns(et,T),"font-size":ns(et,T)},ut[" .uagb-icon-list__source-wrap svg"]={width:ns(tt,T),height:ns(tt,T),"font-size":ns(tt,T)},"horizontal"===gt?(st[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"justify-content":pt,"-webkit-box-pack":pt,"-ms-flex-pack":pt,"align-items":"center",display:"inline-flex","flex-direction":"row"},st[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]']={"margin-right":ns(Ve/2,b)},st[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]:not(:first-child)']={"margin-left":ns(Ve/2,b)}):"vertical"===gt&&(st[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"flex-direction":"column"},st[' .wp-block[data-type="uagb/icon-list-child"]']={display:"block","margin-left":0,"margin-right":0,"margin-bottom":ns(Ve,b)}),"horizontal"===mt?(ct[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"justify-content":bt,"-webkit-box-pack":bt,"-ms-flex-pack":bt,"align-items":"center",display:"inline-flex","flex-direction":"row"},ct[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]']={"margin-right":ns(nt/2,b)},ct[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]:not(:first-child)']={"margin-left":ns(nt/2,b)}):"vertical"===mt&&(ct[' .wp-block[data-type="uagb/icon-list-child"]']={"margin-left":"0 !important","margin-right":"0 !important","margin-bottom":ns(nt,b)},ct[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"flex-direction":"column","align-items":"flex-start"}),"horizontal"===yt?(ut[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"justify-content":dt,"-webkit-box-pack":dt,"-ms-flex-pack":dt,"align-items":"center",display:"inline-flex","flex-direction":"row"},ut[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]']={"margin-right":ns(rt/2,b)},ut[' .block-editor-block-list__layout .wp-block[data-type="uagb/icon-list-child"]:not(:first-child)']={"margin-left":ns(rt/2,b)}):"vertical"===yt&&(ut[' .wp-block[data-type="uagb/icon-list-child"]']={display:"block","margin-left":"0 !important","margin-right":"0 !important","margin-bottom":ns(rt,b)},ut[" .uagb-icon-list__wrap .block-editor-block-list__layout"]={"flex-direction":"column","align-items":"flex-start"}),"right"===n&&X?(st[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Je,y)},ut[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Qe,y)},ct[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Xe,y)},st[" .wp-block-uagb-icon-list-child "]={"flex-direction":"row-reverse"}):"before"!==be||X?"after"!==be||X||(st[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Je,y)},ut[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Qe,y)},ct[" .uagb-icon-list__source-wrap"]={"margin-left":ns(Xe,y)},st[" .wp-block-uagb-icon-list-child "]={"flex-direction":"row-reverse"}):(st[" .uagb-icon-list__source-wrap"]={"margin-right":ns(Je,y)},ut[" .uagb-icon-list__source-wrap"]={"margin-right":ns(Qe,y)},ct[" .uagb-icon-list__source-wrap"]={"margin-right":ns(Xe,y)}),st[" .wp-block-uagb-icon-list-child .uagb-icon-list__label"]={"font-size":ns(w,k),"font-family":A,"font-style":q,"text-decoration":$,"text-transform":Z,"font-weight":G,"line-height":ns(R,M),"letter-spacing":ns(Q,le),color:oe},ut[" .wp-block-uagb-icon-list-child .uagb-icon-list__label"]={"font-size":ns(P,k),"line-height":ns(U,M),"letter-spacing":ns(te,le)},ct[" .wp-block-uagb-icon-list-child .uagb-icon-list__label"]={"font-size":ns(x,k),"line-height":ns(B,M),"letter-spacing":ns(ee,le)},ut[" .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap"]={"border-radius":ns($e,W),padding:ns(lt,"px"),"border-style":0===ot||void 0===ot?"none":"solid","border-width":ns(ot,H),"align-self":vt},ct[" .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap"]={"border-radius":ns(Ze,W),padding:ns(at,"px"),"border-style":0===it||void 0===it?"none":"solid","border-width":ns(it,H),"align-self":ht};let _t="";const Tt=".uagb-block-"+Ie;return _t=ae(st,Tt),"tablet"!==o&&"mobile"!==o||(_t+=ae(ct,""+Tt,!0,"tablet"),"mobile"===o&&(_t+=ae(ut,""+Tt,!0,"mobile"))),_t}(a,0,s,c),[a,c]);return Object(B.useEffect)(()=>{he(e)},[l,i,o,c]),Object(B.useEffect)(()=>{var e;null===(e=Object(n.select)("core/block-editor").getBlocksByClientId(r)[0])||void 0===e||e.innerBlocks.forEach((function(e){Object(n.dispatch)("core/block-editor").updateBlockAttributes(e.clientId,{fromParentIcon:a.parentIcon,hideLabel:a.hideLabel,imageSizeChild:a.size})}))},[a.parentIcon,a.hideLabel,a.size]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:u}),React.createElement(pk,{attributes:a}),t&&React.createElement(lk,e),React.createElement(uk,e))}),dk=[{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icons:i,icon_count:o,icon_layout:n,hideLabel:r,disableLink:s}=e.attributes,c=r?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+n,c),id:"uagb-icon-list-"+l},React.createElement("div",{className:"uagb-icon-list__wrap"},i.map((e,t)=>{if(o<=t)return;let a="";"icon"==e.image_icon?e.icon&&(a=React.createElement("span",{className:Be()(e.icon,"uagb-icon-list__source-icon")})):e.image&&(a=React.createElement("img",{className:"uagb-icon-list__source-image",src:e.image.url}));const l=e.target?"_blank":"_self",n=s?"javascript:void(0);":e.link;return React.createElement("a",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t,target:l,rel:"noopener noreferrer",href:n},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"}))))})))}},{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icons:i,icon_count:o,icon_layout:n,hideLabel:r,disableLink:s}=e.attributes,c=r?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+n,c),id:"uagb-icon-list-"+l},React.createElement("div",{className:"uagb-icon-list__wrap"},i.map((e,t)=>{if(o<=t)return;let a="";"icon"==e.image_icon?e.icon&&(a=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(e.icon))):e.image&&(a=React.createElement("img",{className:"uagb-icon-list__source-image",src:e.image.url}));const l=e.target?"_blank":"_self",n=s?"javascript:void(0);":e.link;return React.createElement("a",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t,target:l,rel:"noopener noreferrer",href:n},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"}))))})))}},{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icons:i,icon_count:o,icon_layout:n,hideLabel:r,iconPosition:s}=e.attributes,c=r?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+n,"top"==s?"uagb-icon-list__icon-at-top":"",c),id:"uagb-icon-list-"+l},React.createElement("div",{className:"uagb-icon-list__wrap"},i.map((e,t)=>{if(o<=t)return;let a="";"icon"==e.image_icon?e.icon&&(a=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(e.icon))):e.image&&(a=React.createElement("img",{className:"uagb-icon-list__source-image",src:e.image.url}));const l=e.target?"_blank":"_self",n=e.disableLink?"javascript:void(0);":e.link;return React.createElement("a",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t,target:l,rel:"noopener noreferrer",href:n},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"}))))})))}},{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icons:i,icon_count:o,icon_layout:n,hideLabel:r,iconPosition:s}=e.attributes,c=r?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+n,"top"==s?"uagb-icon-list__icon-at-top":"",c),id:"uagb-icon-list-"+l},React.createElement("div",{className:"uagb-icon-list__wrap"},i.map((e,t)=>{if(o<=t)return;let a="";"icon"==e.image_icon?e.icon&&(a=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(e.icon))):e.image&&(a=React.createElement("img",{className:"uagb-icon-list__source-image",src:e.image.url}));const l=e.target?"_blank":"_self",n=e.disableLink?"/":e.link;return React.createElement("a",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t,target:l,rel:"noopener noreferrer",href:n},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"}))))})))}},{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icons:i,icon_count:o,icon_layout:n,hideLabel:r,iconPosition:s}=e.attributes,c=r?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+n,"top"==s?"uagb-icon-list__icon-at-top":"",c,"uagb-block-"+l)},React.createElement("div",{className:"uagb-icon-list__wrap"},i.map((e,t)=>{if(o<=t)return;let a="";"icon"==e.image_icon&&e.icon&&(a=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(e.icon))),e.image&&(a=React.createElement("img",{className:"uagb-icon-list__source-image",src:e.image.url}));const l=e.target?"_blank":"_self",n=e.disableLink?"/":e.link;return e.disableLink?React.createElement("div",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"})))):React.createElement("a",{className:Be()("uagb-icon-list-repeater-"+t,"uagb-icon-list__wrapper"),key:t,target:l,rel:"noopener noreferrer",href:n},React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},a),!r&&""!=i[t].label&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:i[t].label,className:"uagb-icon-list__label"}))))})))}},{attributes:St,save:e=>{const{attributes:t,className:a}=e,{block_id:l,icon_layout:i,hideLabel:o,iconPosition:n}=t,r=o?"uagb-icon-list__no-label":"";return React.createElement("div",{className:Be()(a,"uagb-icon-list__outer-wrap","uagb-icon-list__layout-"+i,"top"===n?"uagb-icon-list__icon-at-top":"",r,"uagb-block-"+l)},React.createElement("div",{className:"uagb-icon-list__wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];a(221);var gk={from:[{type:"block",blocks:["core/list"],transform:(e,t)=>{var a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,B,U,E,O,L,H,j,F,z,D,V,W,q,Z,$,Y,K,J,X,Q,ee,te,ae,le;const ie=t.map(t=>{var a,l;return Object(be.createBlock)("uagb/icon-list-child",{label:t.attributes.content,label_color:(null==e||null===(a=e.style)||void 0===a||null===(l=a.color)||void 0===l?void 0:l.text)||Nc(null==e?void 0:e.textColor)||""})});return Object(be.createBlock)("uagb/icon-list",{iconColor:(null==e||null===(a=e.style)||void 0===a||null===(l=a.color)||void 0===l?void 0:l.text)||Nc(null==e?void 0:e.textColor)||"",fontWeight:(null==e||null===(i=e.style)||void 0===i||null===(o=i.typography)||void 0===o?void 0:o.fontWeight)||"",fontSize:N((null==e||null===(n=e.style)||void 0===n||null===(r=n.typography)||void 0===r?void 0:r.fontSize)||"16"),fontSizeType:I((null==e||null===(s=e.style)||void 0===s||null===(c=s.typography)||void 0===c?void 0:c.fontSize)||""),labelColor:(null==e||null===(u=e.style)||void 0===u||null===(p=u.color)||void 0===p?void 0:p.text)||Nc(null==e?void 0:e.textColor)||"",labelLetterSpacing:N((null==e||null===(b=e.style)||void 0===b||null===(d=b.typography)||void 0===d?void 0:d.letterSpacing)||"0"),labelLetterSpacingType:I((null==e||null===(g=e.style)||void 0===g||null===(m=g.typography)||void 0===m?void 0:m.letterSpacing)||""),lineHeight:N((null==e||null===(y=e.style)||void 0===y||null===(f=y.typography)||void 0===f?void 0:f.lineHeight)||"0.6"),fontDecoration:(null==e||null===(h=e.style)||void 0===h||null===(v=h.typography)||void 0===v?void 0:v.textDecoration)||"",fontTransform:(null==e||null===(_=e.style)||void 0===_||null===(T=_.typography)||void 0===T?void 0:T.textTransform)||"",blockTopMargin:N((null==e||null===(C=e.style)||void 0===C||null===(S=C.spacing)||void 0===S||null===(w=S.margin)||void 0===w?void 0:w.top)||"16"),blockRightMargin:N((null==e||null===(k=e.style)||void 0===k||null===(P=k.spacing)||void 0===P||null===(x=P.margin)||void 0===x?void 0:x.right)||"0"),blockLeftMargin:N((null==e||null===(A=e.style)||void 0===A||null===(G=A.spacing)||void 0===G||null===(M=G.margin)||void 0===M?void 0:M.left)||"0"),blockBottomMargin:N((null==e||null===(R=e.style)||void 0===R||null===(B=R.spacing)||void 0===B||null===(U=B.margin)||void 0===U?void 0:U.bottom)||"16"),blockMarginUnit:I((null==e||null===(E=e.style)||void 0===E||null===(O=E.spacing)||void 0===O||null===(L=O.margin)||void 0===L?void 0:L.top)||"px"),blockTopPadding:N((null==e||null===(H=e.style)||void 0===H||null===(j=H.spacing)||void 0===j||null===(F=j.padding)||void 0===F?void 0:F.top)||"20"),blockRightPadding:N((null==e||null===(z=e.style)||void 0===z||null===(D=z.spacing)||void 0===D||null===(V=D.padding)||void 0===V?void 0:V.right)||"38"),blockLeftPadding:N((null==e||null===(W=e.style)||void 0===W||null===(q=W.spacing)||void 0===q||null===(Z=q.padding)||void 0===Z?void 0:Z.left)||"38"),blockBottomPadding:N((null==e||null===($=e.style)||void 0===$||null===(Y=$.spacing)||void 0===Y||null===(K=Y.padding)||void 0===K?void 0:K.bottom)||"20"),blockPaddingUnit:I((null==e||null===(J=e.style)||void 0===J||null===(X=J.spacing)||void 0===X||null===(Q=X.padding)||void 0===Q?void 0:Q.top)||"px"),size:N((null==e||null===(ee=e.style)||void 0===ee||null===(te=ee.typography)||void 0===te?void 0:te.fontSize)||"16"),sizeType:I((null==e||null===(ae=e.style)||void 0===ae||null===(le=ae.typography)||void 0===le?void 0:le.fontSize)||"")},ie)}}]};let mk={};mk=Object(j.applyFilters)("uagb/icon-list",ws(mk)),Object(be.registerBlockType)("uagb/icon-list",{...mk,title:Object(r.__)("Icon List","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create a list highlighted with icons/images.","ultimate-addons-for-gutenberg"),icon:se.icon_list,keywords:[Object(r.__)("icon list","ultimate-addons-for-gutenberg"),Object(r.__)("image list","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:St,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"icon-list"}):React.createElement(bk,e),save:function(e){const{attributes:t,className:a}=e,{block_id:l}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l)},React.createElement("div",{className:"uagb-icon-list__wrap"},React.createElement(ge.InnerBlocks.Content,null)))},deprecated:dk,transforms:gk});function yk(){return(yk=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var fk,hk=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{image_icon:i,icon:o,image:n,icon_color:s,label_color:c,icon_hover_color:u,label_hover_color:p,icon_bg_color:b,icon_bg_hover_color:d,icon_border_color:g,icon_border_hover_color:m,link:y,target:f,disableLink:h,childTopMargin:v,childRightMargin:_,childLeftMargin:T,childBottomMargin:C,childTopMarginTablet:S,childRightMarginTablet:w,childLeftMarginTablet:k,childBottomMarginTablet:P,childTopMarginMobile:x,childRightMarginMobile:A,childLeftMarginMobile:G,childBottomMarginMobile:M,childMarginUnit:R,childMarginUnitTablet:B,childMarginUnitMobile:U,childMarginLink:E,childTopPadding:O,childRightPadding:L,childLeftPadding:H,childBottomPadding:j,childTopPaddingTablet:F,childRightPaddingTablet:z,childLeftPaddingTablet:D,childBottomPaddingTablet:N,childTopPaddingMobile:I,childRightPaddingMobile:V,childLeftPaddingMobile:W,childBottomPaddingMobile:q,childPaddingUnit:Z,childPaddingUnitTablet:$,childPaddingUnitMobile:Y,childPaddingLink:K,hideLabel:J}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:i,label:"image_icon"},className:"uagb-multi-button-alignment-control",options:[{value:"icon",label:"Icon"},{value:"image",label:"Image"},{value:"none",label:"None"}],showIcons:!1}),"icon"===i&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({icon:e})})),"image"===i&&React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{e&&e.url&&e.type&&"image"===e.type?a({image:e}):a({image:null})},backgroundImage:n,onRemoveImage:()=>{a({image:""})}})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),checked:h,onChange:()=>a({disableLink:!h})}),h&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:y,data:{value:y,label:"link"},setAttributes:a,onChange:e=>a({link:e}),placeholder:Object(r.__)("Enter URL","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in New Tab","ultimate-addons-for-gutenberg"),checked:f,onChange:()=>a({target:!f})})))),React.createElement(il,nl,!J&&React.createElement(Fe,{title:Object(r.__)("Label","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"label_color"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"label_hover_color"},setAttributes:a}),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,"icon"===i&&""!==o&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"icon_color"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"icon_bg_color"},setAttributes:a})),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"icon_border_color"},setAttributes:a})),hover:React.createElement(React.Fragment,null,"icon"===i&&""!==o&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"icon_hover_color"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"icon_bg_hover_color"},setAttributes:a})),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:m||"",data:{value:m,label:"icon_border_hover_color"},setAttributes:a})),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:v,label:"childTopMargin"},valueRight:{value:_,label:"childRightMargin"},valueBottom:{value:C,label:"childBottomMargin"},valueLeft:{value:T,label:"childLeftMargin"},valueTopTablet:{value:S,label:"childTopMarginTablet"},valueRightTablet:{value:w,label:"childRightMarginTablet"},valueBottomTablet:{value:P,label:"childBottomMarginTablet"},valueLeftTablet:{value:k,label:"childLeftMarginTablet"},valueTopMobile:{value:x,label:"childTopMarginMobile"},valueRightMobile:{value:A,label:"childRightMarginMobile"},valueBottomMobile:{value:M,label:"childBottomMarginMobile"},valueLeftMobile:{value:G,label:"childLeftMarginMobile"},unit:{value:R,label:"childMarginUnit"},mUnit:{value:U,label:"childMarginUnitMobile"},tUnit:{value:B,label:"childMarginUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:E,label:"childMarginLink"}}),React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:O,label:"childTopPadding"},valueRight:{value:L,label:"childRightPadding"},valueBottom:{value:j,label:"childBottomPadding"},valueLeft:{value:H,label:"childLeftPadding"},valueTopTablet:{value:F,label:"childTopPaddingTablet"},valueRightTablet:{value:z,label:"childRightPaddingTablet"},valueBottomTablet:{value:N,label:"childBottomPaddingTablet"},valueLeftTablet:{value:D,label:"childLeftPaddingTablet"},valueTopMobile:{value:I,label:"childTopPaddingMobile"},valueRightMobile:{value:V,label:"childRightPaddingMobile"},valueBottomMobile:{value:q,label:"childBottomPaddingMobile"},valueLeftMobile:{value:W,label:"childLeftPaddingMobile"},unit:{value:Z,label:"childPaddingUnit"},mUnit:{value:Y,label:"childPaddingUnitMobile"},tUnit:{value:$,label:"childPaddingUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:K,label:"childPaddingLink"}}))),React.createElement(il,yk({},rl,{parentProps:e}))))}),vk=a(129),_k=0,Tk={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Ck={};Ck.locals=vk.a.locals||{},Ck.use=function(){return _k++||(fk=ke()(vk.a,Tk)),Ck},Ck.unuse=function(){_k>0&&!--_k&&(fk(),fk=null)};var Sk=Ck,wk=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Sk.use(),()=>{Sk.unuse()}),[]);const{attributes:t,setAttributes:a,className:l,deviceType:i,onReplace:o,mergeBlocks:n}=e,{label:s,image_icon:c,icon:u,image:p,block_id:b,link:d,target:g,disableLink:m,hideLabel:y,fromParentIcon:f,imageSizeChild:h,imgTagHeight:v}=t,_=p&&null!=p&&p.alt?null==p?void 0:p.alt:"";let T="";Object(B.useEffect)(()=>{p&&p.url&&"none"!==c&&mf(null==p?void 0:p.url,a,{type:"width",value:h})},[p,h]),"icon"===c?(u||f)&&(T=Ce(u||f,a)):p&&p.url&&"none"!==c&&(T=React.createElement("img",{className:"uagb-icon-list__source-image",alt:_,src:p.url,width:h,height:v,loading:"lazy"}));const C=g?"_blank":"_self",S=m?d:"/";return React.createElement("div",{className:Be()(l,"uagb-block-"+b,"uagb-editor-preview-mode-"+i.toLowerCase())},m&&React.createElement("a",{target:C,rel:"noopener noreferrer","aria-label":s.replace(/(<([^>]+)>)/gi,""),href:S}," "),T&&React.createElement("span",{className:"uagb-icon-list__source-wrap"},T),!y&&React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Label Name","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({label:e}),className:"uagb-icon-list__label",multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"],onMerge:n,onSplit:e=>e?Object(be.createBlock)("uagb/icon-list-child",{...t,label:e}):Object(be.createBlock)("uagb/icon-list-child"),onReplace:o,onRemove:()=>o([])}))});function kk(){return(kk=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Pk=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,clientId:a,attributes:l,deviceType:i}=e,o=Object(B.useMemo)(()=>function(e,t,a){const l=a.toLowerCase(),{icon_color:i,label_color:o,icon_hover_color:n,label_hover_color:r,icon_bg_color:s,icon_bg_hover_color:c,icon_border_color:u,icon_border_hover_color:p,childTopMargin:b,childRightMargin:d,childLeftMargin:g,childBottomMargin:m,childTopMarginTablet:y,childRightMarginTablet:f,childLeftMarginTablet:h,childBottomMarginTablet:v,childTopMarginMobile:_,childRightMarginMobile:T,childLeftMarginMobile:C,childBottomMarginMobile:S,childMarginUnit:w,childMarginUnitTablet:k,childMarginUnitMobile:P,childTopPadding:x,childRightPadding:A,childLeftPadding:G,childBottomPadding:M,childTopPaddingTablet:R,childRightPaddingTablet:B,childLeftPaddingTablet:U,childBottomPaddingTablet:E,childTopPaddingMobile:O,childRightPaddingMobile:L,childLeftPaddingMobile:H,childBottomPaddingMobile:j,childPaddingUnit:F,childPaddingUnitTablet:z,childPaddingUnitMobile:D,block_id:N}=e,I={".wp-block-uagb-icon-list-child":{"margin-top":ns(b,w),"margin-right":ns(d,w),"margin-bottom":ns(m,w),"margin-left":ns(g,w),"padding-top":ns(x,F),"padding-right":ns(A,F),"padding-bottom":ns(M,F),"padding-left":ns(G,F)},".wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg":{color:i,fill:i},".wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap svg":{color:n,fill:n},".wp-block-uagb-icon-list-child .uagb-icon-list__label":{color:o},".wp-block-uagb-icon-list-child:hover .uagb-icon-list__label":{color:r},".wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap":{background:s,"border-color":u},".wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap":{background:c,"border-color":p}};let V={},W={};V={".wp-block-uagb-icon-list-child":{"margin-top":ns(y,k),"margin-right":ns(f,k),"margin-bottom":ns(v,k),"margin-left":ns(h,k),"padding-top":ns(R,z),"padding-right":ns(B,z),"padding-bottom":ns(E,z),"padding-left":ns(U,z)}},W={".wp-block-uagb-icon-list-child":{"margin-top":ns(_,P),"margin-right":ns(T,P),"margin-bottom":ns(S,P),"margin-left":ns(C,P),"padding-top":ns(O,D),"padding-right":ns(L,D),"padding-bottom":ns(j,D),"padding-left":ns(H,D)}};let q="";const Z=".uagb-block-"+N;return q=ae(I,Z),"tablet"!==l&&"mobile"!==l||(q+=ae(V,""+Z,!0,"tablet"),"mobile"===l&&(q+=ae(W,""+Z,!0,"mobile"))),q}(l,0,i),[l,i]);return Object(B.useEffect)(()=>{Bs()},[i]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:o}),t&&React.createElement(hk,kk({},e,{hideLabel:void 0})),React.createElement(wk,e))});a(222);const xk={block_id:{type:"string"},label:{type:"html",selector:".uagb-icon-list__label",default:"#Label"},image_icon:{type:"string",default:"icon"},hideLabel:{type:"boolean",default:!1},icon:{type:"string",default:"fab fa-arrow-circle-right"},image:{type:"object"},icon_color:{type:"string",default:"#3a3a3a"},label_color:{type:"string"},icon_hover_color:{type:"string"},label_hover_color:{type:"string"},icon_bg_color:{type:"string"},icon_bg_hover_color:{type:"string"},icon_border_color:{type:"string"},icon_border_hover_color:{type:"string"},link:{type:"string",default:"#"},target:{type:"boolean",default:!1},disableLink:{type:"boolean",default:!0},deviceType:{type:"string",default:"Desktop"}};var Ak=[{attributes:xk,save(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p,fromParentIcon:b}=t;let d="";"icon"==i?(o||b)&&(d=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(o||b))):n&&n.url&&"none"!==i&&(d=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url}));const g=c?"_blank":"_self",m=u?"/":s;return React.createElement("div",{className:Be()("uagb-icon-list-repeater","uagb-icon-list__wrapper",a,"uagb-block-"+r)},!u&&React.createElement("a",{target:g,rel:"noopener noreferrer",href:m}),React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},d),!p&&""!=l&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))))}},{attributes:xk,save(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p}=t;let b="";"icon"===i?o&&(b=React.createElement("span",{className:"uagb-icon-list__source-icon"},Wm(o))):n&&n.url&&(b=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url,alt:n.alt}));const d=c?"_blank":"_self",g=u?"/":s;return React.createElement("div",{className:Be()("uagb-icon-list-repeater","uagb-icon-list__wrapper",a,"uagb-block-"+r)},!u&&React.createElement("a",{target:d,"aria-label":l,rel:"noopener noreferrer",href:g}," "),React.createElement("div",{className:"uagb-icon-list__content-wrap"},React.createElement("span",{className:"uagb-icon-list__source-wrap"},b),!p&&""!==l&&React.createElement("div",{className:"uagb-icon-list__label-wrap"},React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))))}},{attributes:xk,save(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p,fromParentIcon:b}=t,d=n&&null!=n&&n.alt?null==n?void 0:n.alt:"";let g="";"icon"===i?(o||b)&&(g=Ce(o||b)):n&&n.url&&"none"!==i&&(g=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url,alt:d}));const m=c?"_blank":"_self",y=u?s:"/";return React.createElement("div",{className:Be()(a,"uagb-block-"+r)},u&&React.createElement("a",{target:m,"aria-label":l,rel:"noopener noreferrer",href:y}," "),g&&React.createElement("span",{className:"uagb-icon-list__source-wrap"},g),!p&&""!==l&&React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))}},{attributes:wt,save(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p,fromParentIcon:b}=t,d=n&&null!=n&&n.alt?null==n?void 0:n.alt:"";let g="";"icon"===i?(o||b)&&(g=Ce(o||b)):n&&n.url&&"none"!==i&&(g=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url,alt:d}));const m=c?"_blank":"_self",y=u?s:"/";return React.createElement("div",{className:Be()(a,"uagb-block-"+r)},u&&React.createElement("a",{target:m,"aria-label":l.replace(/(<([^>]+)>)/gi,""),rel:"noopener noreferrer",href:y}," "),g&&React.createElement("span",{className:"uagb-icon-list__source-wrap"},g),!p&&""!==l&&React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))}},{attributes:{block_id:{type:"string"},label:{type:"html",selector:".uagb-icon-list__label",default:Object(r.__)("List item","ultimate-addons-for-gutenberg")},image_icon:{type:"string",default:"icon"},hideLabel:{type:"boolean",default:!1},disableIcon:{type:"boolean",default:!1},icon:{type:"string",default:""},image:{type:"object"},icon_color:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},label_color:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},icon_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},label_hover_color:{type:"string",UAGCopyPaste:{styleType:"main-title-hover-color"}},icon_bg_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-color"},default:""},icon_bg_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-bg-hover-color"}},icon_border_color:{type:"string",UAGCopyPaste:{styleType:"icon-border-color"},default:""},icon_border_hover_color:{type:"string",UAGCopyPaste:{styleType:"icon-border-hover-color"}},link:{type:"string",default:"#"},target:{type:"boolean",default:!1},disableLink:{type:"boolean",default:!1},fromParentIcon:{type:"string",default:"circle-arrow-right"},childTopMargin:{type:"number",UAGCopyPaste:{styleType:"child-top-margin"}},childRightMargin:{type:"number",UAGCopyPaste:{styleType:"child-right-margin"}},childLeftMargin:{type:"number",UAGCopyPaste:{styleType:"child-left-margin"}},childBottomMargin:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin"}},childTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-top-margin-tablet"}},childRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-right-margin-tablet"}},childLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-left-margin-tablet"}},childBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin-tablet"}},childTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-top-margin-mobile"}},childRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-right-margin-mobile"}},childLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-left-margin-mobile"}},childBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"child-bottom-margin-mobile"}},childMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit"}},childMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit-tablet"}},childMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-margin-unit-mobile"}},childMarginLink:{type:"boolean",default:!1},childTopPadding:{type:"number",UAGCopyPaste:{styleType:"child-top-padding"}},childRightPadding:{type:"number",UAGCopyPaste:{styleType:"child-right-padding"}},childLeftPadding:{type:"number",UAGCopyPaste:{styleType:"child-left-padding"}},childBottomPadding:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding"}},childTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-top-padding-tablet"}},childRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-right-padding-tablet"}},childLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-left-padding-tablet"}},childBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding-tablet"}},childTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-top-padding-mobile"}},childRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-right-padding-mobile"}},childLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-left-padding-mobile"}},childBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"child-bottom-padding-mobile"}},childPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit"}},childPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit-tablet"}},childPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"child-padding-unit-mobile"}},childPaddingLink:{type:"boolean",default:!0}},save:function(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p,fromParentIcon:b}=t,d=n&&null!=n&&n.alt?null==n?void 0:n.alt:"";let g="";"icon"===i?(o||b)&&(g=Ce(o||b)):n&&n.url&&"none"!==i&&(g=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url,alt:d}));const m=c?"_blank":"_self",y=u?s:"/";let f=u;return"yes"===uagb_blocks_info.uagb_old_user_less_than_2&&(f=!u),React.createElement("div",{className:Be()(a,"uagb-block-"+r)},f&&React.createElement("a",{target:m,"aria-label":l.replace(/(<([^>]+)>)/gi,""),rel:"noopener noreferrer",href:y}," "),g&&React.createElement("span",{className:"uagb-icon-list__source-wrap"},g),!p&&""!==l&&React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))}}];let Gk={};function Mk(e,t){let a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"",l=e.split(" ")[t-1];switch(a){case"flex":switch(l){case"top":case"left":l="flex-start";break;case"bottom":case"right":l="flex-end"}}return l}Gk=Object(j.applyFilters)("uagb/icon-list-child",ws(Gk)),Object(be.registerBlockType)("uagb/icon-list-child",{...Gk,title:Object(r.__)("List Item","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add and customize content for this list component.","ultimate-addons-for-gutenberg"),icon:se.icon_list_child,parent:["uagb/icon-list"],attributes:wt,category:uagb_blocks_info.category,supports:{html:!1},edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"icon-list-child",isChildren:!0}):React.createElement(Pk,e),save:function(e){const{attributes:t,className:a}=e,{label:l,image_icon:i,icon:o,image:n,block_id:r,link:s,target:c,disableLink:u,hideLabel:p,fromParentIcon:b,imageSizeChild:d,imgTagHeight:g}=t,m=n&&null!=n&&n.alt?null==n?void 0:n.alt:"";let y="";"icon"===i?(o||b)&&(y=Ce(o||b)):n&&n.url&&"none"!==i&&(y=React.createElement("img",{className:"uagb-icon-list__source-image",src:n.url,width:d,height:g,loading:"lazy",alt:m}));const f=c?"_blank":"_self",h=u?s:"/";return React.createElement("div",{className:Be()(a,"uagb-block-"+r)},u&&React.createElement("a",{target:f,"aria-label":l.replace(/(<([^>]+)>)/gi,""),rel:"noopener noreferrer",href:h}," "),y&&React.createElement("span",{className:"uagb-icon-list__source-wrap"},y),!p&&""!==l&&React.createElement(ge.RichText.Content,{tagName:"span",value:l,className:"uagb-icon-list__label"}))},deprecated:Ak});var Rk=e=>{var t,a;const{slug:l="media",label:i=Object(r.__)("Media","ultimate-addons-for-gutenberg"),disableLabel:o=!1,mediaType:n,onSelectMedia:s,mediaGallery:c,mediaIDs:u,onRemoveMedia:p,allowedTypes:b,createGallery:d,help:g=!1}=e,m=se.gallery_placeholder;let y,f;switch(n){case"images":y=Object(r.__)("Select Images","ultimate-addons-for-gutenberg"),f=Object(r.__)("Replace Images","ultimate-addons-for-gutenberg");break;default:y=Object(r.__)("Select Media","ultimate-addons-for-gutenberg"),f=Object(r.__)("Replace Media","ultimate-addons-for-gutenberg")}d&&(f=Object(r.__)("Edit Gallery","ultimate-addons-for-gutenberg"));const h=e=>React.createElement("div",{className:"spectra-media-control__button spectra-media-control__button--"+e},se[e]);return React.createElement(Le.BaseControl,{className:"spectra-media-control",id:"uagb-option-selector-"+l,label:i,hideLabelFromVision:o},React.createElement("div",{className:"spectra-media-control__wrapper"},(null===(t=c[0])||void 0===t?void 0:t.url)&&React.createElement("div",{className:"spectra-media-control__icon spectra-media-control__icon--stroke"},m),React.createElement(ge.MediaUpload,{title:y,onSelect:s,allowedTypes:b||["image","video","audio"],multiple:!0,value:u,gallery:d,render:e=>{let{open:t}=e;return(e=>{var t;const a=null!==(t=c[0])&&void 0!==t&&t.url?"replace":"add";return React.createElement("button",{className:"spectra-media-control__clickable spectra-media-control__clickable--"+a,onClick:e},"add"===a?h(a):React.createElement("div",{className:"uag-control-label"},f))})(t)}}),p&&(null===(a=c[0])||void 0===a?void 0:a.url)&&React.createElement("button",{className:"spectra-media-control__clickable spectra-media-control__clickable--close",onClick:p},h("close"))),React.createElement(De,{text:g}))};const Bk=[{defaultAttributes:Ra},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:3},{label:"imageBoxShadowVOffset",value:8},{label:"imageBoxShadowBlur",value:12},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:18},{label:"imageBoxShadowBlur",value:40},{label:"imageBoxShadowSpread",value:-10},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:4},{label:"imageBoxShadowBlur",value:12},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:2},{label:"imageBoxShadowBlur",value:5},{label:"imageBoxShadowSpread",value:-1},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:50},{label:"imageBoxShadowBlur",value:50},{label:"imageBoxShadowSpread",value:-30},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffset",value:0},{label:"imageBoxShadowVOffset",value:20},{label:"imageBoxShadowBlur",value:30},{label:"imageBoxShadowSpread",value:0},{label:"imageBoxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],Uk=[{defaultAttributes:Ra},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:3},{label:"imageBoxShadowVOffsetHover",value:8},{label:"imageBoxShadowBlurHover",value:12},{label:"imageBoxShadowSpreadHover",value:15},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:18},{label:"imageBoxShadowBlurHover",value:40},{label:"imageBoxShadowSpreadHover",value:-10},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:4},{label:"imageBoxShadowBlurHover",value:12},{label:"imageBoxShadowSpreadHover",value:0},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:2},{label:"imageBoxShadowBlurHover",value:5},{label:"imageBoxShadowSpreadHover",value:-1},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:50},{label:"imageBoxShadowBlurHover",value:50},{label:"imageBoxShadowSpreadHover",value:-30},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"imageBoxShadowHOffsetHover",value:0},{label:"imageBoxShadowVOffsetHover",value:20},{label:"imageBoxShadowBlurHover",value:30},{label:"imageBoxShadowSpreadHover",value:0},{label:"imageBoxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];function Ek(){return(Ek=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Ok=Object(B.memo)(e=>{const{lightboxPreview:t,setLightboxPreview:a,attributes:l,setAttributes:i,clientId:o,deviceType:s}=e,{block_id:c,readyToRender:u,mediaGallery:p,mediaIDs:b,feedLayout:d,imageDisplayCaption:g,galleryImageSize:m,galleryImageSizeTablet:y,galleryImageSizeMobile:f,imageClickEvent:h,lightboxDisplayCaptions:v,lightboxThumbnails:_,lightboxDisplayCount:T,lightboxCloseIcon:C,lightboxCaptionHeight:S,lightboxCaptionHeightTablet:w,lightboxCaptionHeightMobile:k,lightboxIconSize:P,lightboxIconSizeTablet:x,lightboxIconSizeMobile:A,columnsDesk:G,columnsTab:M,columnsMob:R,gridImageGap:U,gridImageGapTab:E,gridImageGapMob:O,gridImageGapUnit:L,gridImageGapUnitTab:H,gridImageGapUnitMob:F,captionVisibility:z,captionDisplayType:D,imageCaptionAlignment:N,imageCaptionAlignment01:I,imageCaptionAlignment02:V,imageDefaultCaption:W,captionPaddingTop:q,captionPaddingRight:Z,captionPaddingBottom:$,captionPaddingLeft:Y,captionPaddingTopTab:K,captionPaddingRightTab:J,captionPaddingBottomTab:X,captionPaddingLeftTab:Q,captionPaddingTopMob:ee,captionPaddingRightMob:te,captionPaddingBottomMob:ae,captionPaddingLeftMob:le,captionPaddingUnit:ie,captionPaddingUnitTab:oe,captionPaddingUnitMob:ne,captionPaddingUnitLink:re,captionGap:se,captionGapUnit:ce,feedMarginTop:ue,feedMarginRight:pe,feedMarginBottom:be,feedMarginLeft:de,feedMarginTopTab:me,feedMarginRightTab:ye,feedMarginBottomTab:fe,feedMarginLeftTab:he,feedMarginTopMob:ve,feedMarginRightMob:_e,feedMarginBottomMob:Te,feedMarginLeftMob:Se,feedMarginUnit:we,feedMarginUnitTab:ke,feedMarginUnitMob:Pe,feedMarginUnitLink:xe,carouselStartAt:Ae,carouselSquares:Ge,carouselLoop:Me,carouselAutoplay:Re,carouselAutoplaySpeed:Be,carouselPauseOnHover:Ue,carouselTransitionSpeed:Oe,feedPagination:He,paginateUseArrows:je,paginateUseDots:ze,paginateUseLoader:De,paginateLimit:Ne,paginateButtonAlign:Ie,paginateButtonPaddingTop:Ve,paginateButtonPaddingRight:We,paginateButtonPaddingBottom:qe,paginateButtonPaddingLeft:Ze,paginateButtonPaddingTopTab:$e,paginateButtonPaddingRightTab:Ye,paginateButtonPaddingBottomTab:Ke,paginateButtonPaddingLeftTab:Je,paginateButtonPaddingTopMob:Xe,paginateButtonPaddingRightMob:Qe,paginateButtonPaddingBottomMob:et,paginateButtonPaddingLeftMob:tt,paginateButtonPaddingUnit:at,paginateButtonPaddingUnitTab:lt,paginateButtonPaddingUnitMob:it,paginateButtonPaddingUnitLink:ot,imageEnableZoom:nt,imageZoomType:rt,captionBackgroundEnableBlur:st,captionBackgroundBlurAmount:ct,captionBackgroundBlurAmountHover:ut,lightboxEdgeDistance:pt,lightboxEdgeDistanceTablet:bt,lightboxEdgeDistanceMobile:dt,lightboxBackgroundEnableBlur:gt,lightboxBackgroundBlurAmount:mt,lightboxBackgroundColor:yt,lightboxCaptionColor:ft,lightboxCaptionBackgroundColor:ht,lightboxIconColor:vt,captionLoadGoogleFonts:_t,captionFontFamily:Tt,captionFontWeight:Ct,captionFontStyle:St,captionTransform:wt,captionDecoration:kt,captionFontSizeType:Pt,captionFontSize:xt,captionFontSizeMob:At,captionFontSizeTab:Gt,captionLineHeightType:Mt,captionLineHeight:Rt,captionLineHeightMob:Bt,captionLineHeightTab:Ut,loadMoreLoadGoogleFonts:Et,loadMoreFontFamily:Ot,loadMoreFontWeight:Lt,loadMoreFontStyle:Ht,loadMoreTransform:jt,loadMoreDecoration:Ft,loadMoreFontSizeType:zt,loadMoreFontSize:Dt,loadMoreFontSizeMob:Nt,loadMoreFontSizeTab:It,loadMoreLineHeightType:Vt,loadMoreLineHeight:Wt,loadMoreLineHeightMob:qt,loadMoreLineHeightTab:Zt,lightboxLoadGoogleFonts:$t,lightboxFontFamily:Yt,lightboxFontWeight:Kt,lightboxFontStyle:Jt,lightboxTransform:Xt,lightboxDecoration:Qt,lightboxFontSizeType:ea,lightboxFontSize:ta,lightboxFontSizeMob:aa,lightboxFontSizeTab:la,lightboxLineHeightType:ia,lightboxLineHeight:oa,lightboxLineHeightMob:na,lightboxLineHeightTab:ra,captionBackgroundEffect:sa,captionBackgroundEffectHover:ca,captionBackgroundEffectAmount:ua,captionBackgroundEffectAmountHover:pa,captionColor:ba,captionColorHover:da,captionBackgroundColor:ga,captionBackgroundColorHover:ma,overlayColor:ya,overlayColorHover:fa,captionSeparateColors:ha,paginateArrowDistance:va,paginateArrowDistanceUnit:_a,paginateArrowSize:Ta,paginateDotDistance:Ca,paginateDotDistanceUnit:Sa,paginateLoaderSize:wa,paginateButtonTextColor:ka,paginateButtonTextColorHover:Pa,paginateColor:xa,paginateColorHover:Aa,imageBoxShadowColor:Ga,imageBoxShadowHOffset:Ma,imageBoxShadowVOffset:Ra,imageBoxShadowBlur:Ba,imageBoxShadowSpread:Ua,imageBoxShadowPosition:Ea,imageBoxShadowColorHover:Oa,imageBoxShadowHOffsetHover:La,imageBoxShadowVOffsetHover:Ha,imageBoxShadowBlurHover:ja,imageBoxShadowSpreadHover:Fa,imageBoxShadowPositionHover:za,disableLazyLoad:Da}=l,{imageSizes:Ia}=Object(n.useSelect)(e=>{const{getSettings:t}=e(ge.store),{imageSizes:a}=t();return{imageSizes:a}},[o]),Va=Ia.reduce((e,t)=>(e.push({label:t.name,value:t.slug}),e),[]);let Wa,qa,Za,$a;const Ya="masonry"!==d||De?Object(r.__)("Color","ultimate-addons-for-gutenberg"):Object(r.__)("Background Color","ultimate-addons-for-gutenberg");switch(D){case"overlay":Wa=Object(r.__)("Overlay Color","ultimate-addons-for-gutenberg");break;case"bar-inside":case"bar-outside":Wa=Object(r.__)("Bar Color","ultimate-addons-for-gutenberg");break;default:Wa=Object(r.__)("Background Color","ultimate-addons-for-gutenberg")}switch(sa){case"grayscale":qa=Object(r.__)("Grayscale Amount","ultimate-addons-for-gutenberg");break;case"sepia":qa=Object(r.__)("Sepia Amount","ultimate-addons-for-gutenberg");break;default:qa=Object(r.__)("Effect Amount","ultimate-addons-for-gutenberg")}switch(ca){case"grayscale":Za=Object(r.__)("Grayscale Amount","ultimate-addons-for-gutenberg");break;case"sepia":Za=Object(r.__)("Sepia Amount","ultimate-addons-for-gutenberg");break;default:Za=Object(r.__)("Effect Amount","ultimate-addons-for-gutenberg")}switch(d){case"carousel":$a=Object(r.__)("Carousel","ultimate-addons-for-gutenberg");break;case"tiled":$a=Object(r.__)("Tiled","ultimate-addons-for-gutenberg");break;default:$a=Object(r.__)("Pagination","ultimate-addons-for-gutenberg")}Object(B.useEffect)(()=>{i({imageCaptionAlignment:`${I} ${V}`})},[I,V]);Object(B.useEffect)(()=>{"bar-outside"!==D||"tiled"!==d&&"grid"!==d||i({captionDisplayType:"bar-inside"})},[d]),Object(B.useEffect)(()=>{"bar-outside"===D&&(i({captionVisibility:"always"}),"center"===I&&i({imageCaptionAlignment01:"bottom"}))},[D]),Object(B.useEffect)(()=>{"lightbox"!==h&&a(!1)},[h]),Object(j.doAction)("spectra.image-gallery.settings.actions",l,i);const Ka=e=>React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:e?da||"":ba||"",data:{value:e?da:ba,label:e?"captionColorHover":"captionColor"},setAttributes:i}),React.createElement(hl,{label:Wa,colorValue:e?ma||"":ga||"",data:{value:e?ma:ga,label:e?"captionBackgroundColorHover":"captionBackgroundColor"},setAttributes:i})),Ja=e=>React.createElement(React.Fragment,null,st&&React.createElement(Qa,{label:Object(r.__)("Blur Amount","ultimate-addons-for-gutenberg"),setAttributes:i,value:e?ut:ct,data:{value:e?ut:ct,label:e?"captionBackgroundBlurAmountHover":"captionBackgroundBlurAmount"},min:0,max:10,displayUnit:!1}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Effect","ultimate-addons-for-gutenberg"),data:{value:e?ca:sa,label:e?"captionBackgroundEffectHover":"captionBackgroundEffect"},options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"grayscale",label:Object(r.__)("Grayscale","ultimate-addons-for-gutenberg")},{value:"sepia",label:Object(r.__)("Sepia","ultimate-addons-for-gutenberg")}]}),Xa(e?ca:sa,e),!g&&React.createElement(hl,{label:Object(r.__)("Overlay Color","ultimate-addons-for-gutenberg"),colorValue:e?fa||"":ya||"",data:{value:e?fa:ya,label:e?"overlayColorHover":"overlayColor"},setAttributes:i})),Xa=(e,t)=>{switch(e){case"grayscale":case"sepia":return React.createElement(Qa,{label:t?Za:qa,setAttributes:i,value:t?pa:ua,data:{value:t?pa:ua,label:t?"captionBackgroundEffectAmountHover":"captionBackgroundEffectAmount"},min:0,max:100,displayUnit:!1})}},el=e=>React.createElement(React.Fragment,null,React.createElement(hl,{label:Ya,colorValue:e?Aa||"":xa||"",data:{value:e?Aa:xa,label:e?"paginateColorHover":"paginateColor"},setAttributes:i}),"masonry"===d&&!De&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:e?Pa||"":ka||"",data:{value:e?Pa:ka,label:e?"paginateButtonTextColorHover":"paginateButtonTextColor"},setAttributes:i}))),al=()=>React.createElement("p",{style:{padding:"16px"}},Object(r.__)("Upload images to enable settings","ultimate-addons-for-gutenberg")),ll=Boolean(uagb_blocks_info.spectra_pro_status),sl=[{label:Object(r.__)("None","ultimate-addons-for-gutenberg"),value:"none",disabled:!1},{label:Object(r.__)("Lightbox","ultimate-addons-for-gutenberg"),value:"lightbox",disabled:!1},{label:Object(r.__)("Open Image","ultimate-addons-for-gutenberg"),value:"image",disabled:!1},{label:Object(r.__)("Custom URL (Spectra Pro)","ultimate-addons-for-gutenberg"),value:"url",disabled:!ll}];return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,!u&&al(),u&&React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Rk,{slug:"gallery",label:Object(r.__)("Update Gallery","ultimate-addons-for-gutenberg"),disableLabel:!0,mediaType:"images",onSelectMedia:e=>{let t=!0;const a=[];e.forEach(e=>{e&&e.url&&e.type&&"image"===e.type?a.push(e.id):t=!1}),i(t?{mediaGallery:e,mediaIDs:a,readyToRender:!0}:{mediaGallery:p,mediaIDs:b,readyToRender:!!b})},mediaGallery:p,mediaIDs:b,allowedTypes:["image"],createGallery:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Disable Lazy Loading","ultimate-addons-for-gutenberg"),checked:Da,onChange:()=>{i({disableLazyLoad:!Da})}}),React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:d,label:"feedLayout"},setAttributes:i,options:[{label:Object(r.__)("Grid","ultimate-addons-for-gutenberg"),value:"grid"},{label:Object(r.__)("Masonry","ultimate-addons-for-gutenberg"),value:"masonry"},{label:Object(r.__)("Carousel","ultimate-addons-for-gutenberg"),value:"carousel"},{label:Object(r.__)("Tiled","ultimate-addons-for-gutenberg"),value:"tiled"}]}),React.createElement(Ng,{data:{sizeSlug:{label:"galleryImageSize",value:m},sizeSlugTablet:{label:"galleryImageSizeTablet",value:y},sizeSlugMobile:{label:"galleryImageSizeMobile",value:f}},setAttributes:i,imageSizeOptions:Va,isResizable:!1}),React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:G,label:"columnsDesk"},tablet:{value:M,label:"columnsTab"},mobile:{value:R,label:"columnsMob"}},min:1,max:"carousel"===d?Math.min(8,p.length):8,displayUnit:!1,setAttributes:i}),React.createElement(Pi,{label:Object(r.__)("Click Event","ultimate-addons-for-gutenberg"),data:{value:h,label:"imageClickEvent"},setAttributes:i,options:sl})),u&&"tiled"!==d&&React.createElement(Fe,{title:$a,initialOpen:!1},"carousel"===d&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Starting Image","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ae+1,data:{value:Ae,label:"carouselStartAt"},onChange:e=>i({carouselStartAt:e-1}),min:1,max:p.length,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Transition Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:i,value:Oe,data:{value:Oe,label:"carouselTransitionSpeed"},min:0,max:9999,displayUnit:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Crop Images to Squares","ultimate-addons-for-gutenberg"),checked:Ge,onChange:()=>i({carouselSquares:!Ge})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Infinite Carousel","ultimate-addons-for-gutenberg"),checked:Me,onChange:()=>i({carouselLoop:!Me})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Dots","ultimate-addons-for-gutenberg"),checked:ze,onChange:()=>i({paginateUseDots:!ze})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Arrows","ultimate-addons-for-gutenberg"),checked:je,onChange:()=>i({paginateUseArrows:!je})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Autoplay","ultimate-addons-for-gutenberg"),checked:Re,onChange:()=>i({carouselAutoplay:!Re})}),Re&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Autoplay Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:i,value:Be,data:{value:Be,label:"carouselAutoplaySpeed"},min:0,max:5e3,displayUnit:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Pause on Hover","ultimate-addons-for-gutenberg"),checked:Ue,onChange:()=>i({carouselPauseOnHover:!Ue})}))),("grid"===d||"masonry"===d)&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),checked:He,onChange:()=>{switch(d){case"grid":return i({paginateUseArrows:!He,paginateUseDots:!He,feedPagination:!He});case"masonry":return i({paginateUseLoader:!He,feedPagination:!He})}}}),He&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Images Per Page","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ne,data:{value:Ne,label:"paginateLimit"},min:1,max:100,displayUnit:!1}),"masonry"===d&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:i,label:Object(r.__)("Pagination Type","ultimate-addons-for-gutenberg"),data:{value:De,label:"paginateUseLoader"},options:[{value:!0,label:Object(r.__)("Loader","ultimate-addons-for-gutenberg")},{value:!1,label:Object(r.__)("Button","ultimate-addons-for-gutenberg")}]}),!De&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:i,label:Object(r.__)("Button Alignment","ultimate-addons-for-gutenberg"),data:{value:Ie,label:"paginateButtonAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"flex-start",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"flex-end",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})))))),u&&"lightbox"===h&&React.createElement(Fe,{panelId:"lightbox",title:Object(r.__)("Lightbox","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Preview Lightbox (Desktop)","ultimate-addons-for-gutenberg"),checked:"Desktop"===s&&t,disabled:"Desktop"!==s||void 0,onChange:()=>a(!t),help:"Desktop"===s?Object(r.__)("Note: The lightbox preview will automatically close when the page reloads, and it will be displayed in fullscreen mode on the front end. ","ultimate-addons-for-gutenberg"):Object(r.__)("To preview this in the editor, use Desktop mode.","ultimate-addons-for-gutenberg")}),React.createElement(Ur,{label:Object(r.__)("Close Icon","ultimate-addons-for-gutenberg"),value:C,onChange:e=>i({lightboxCloseIcon:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Image Number","ultimate-addons-for-gutenberg"),checked:T,onChange:()=>i({lightboxDisplayCount:!T})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Captions","ultimate-addons-for-gutenberg"),checked:v,onChange:()=>i({lightboxDisplayCaptions:!v})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Thumbnails","ultimate-addons-for-gutenberg"),checked:_,onChange:()=>i({lightboxThumbnails:!_})}),(C||T)&&React.createElement(tl,{label:Object(r.__)("Icon/Number Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:P,label:"lightboxIconSize"},tablet:{value:x,label:"lightboxIconSizeTablet"},mobile:{value:A,label:"lightboxIconSizeMobile"}},min:0,max:100,displayUnit:!1,setAttributes:i}),v&&React.createElement(tl,{label:Object(r.__)("Caption Min Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:S,label:"lightboxCaptionHeight"},tablet:{value:w,label:"lightboxCaptionHeightTablet"},mobile:{value:k,label:"lightboxCaptionHeightMobile"}},min:0,max:300,displayUnit:!1,setAttributes:i})),u&&React.createElement(Fe,{title:Object(r.__)("Caption","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Captions","ultimate-addons-for-gutenberg"),checked:g,onChange:()=>i({imageDisplayCaption:!g})}),g&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:D,label:"captionDisplayType"},setAttributes:i,options:"grid"===d||"tiled"===d?[{label:Object(r.__)("Overlay","ultimate-addons-for-gutenberg"),value:"overlay"},{label:Object(r.__)("Bar Over Image","ultimate-addons-for-gutenberg"),value:"bar-inside"}]:[{label:Object(r.__)("Overlay","ultimate-addons-for-gutenberg"),value:"overlay"},{label:Object(r.__)("Bar Over Image","ultimate-addons-for-gutenberg"),value:"bar-inside"},{label:Object(r.__)("Bar Outside Image","ultimate-addons-for-gutenberg"),value:"bar-outside"}]}),"bar-outside"!==D?React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Visibility","ultimate-addons-for-gutenberg"),data:{value:z,label:"captionVisibility"},setAttributes:i},React.createElement("option",{value:"hover"},"Show on hover"),React.createElement("option",{value:"antiHover"},"Hide on hover"),React.createElement("option",{value:"always"},"Always Visible")),React.createElement($i,{data:{label:"imageCaptionAlignment",value:N},onChange:e=>{var t;i({imageCaptionAlignment01:Mk(t=e,1),imageCaptionAlignment02:Mk(t,2)})}})):React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:i,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:V,label:"imageCaptionAlignment02"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Bar Position","ultimate-addons-for-gutenberg"),data:{value:I,label:"imageCaptionAlignment01"},options:[{value:"top",label:Object(r.__)("Above","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Below","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Qa,{label:Object(r.__)("Gap","ultimate-addons-for-gutenberg"),setAttributes:i,value:se,data:{value:se,label:"captionGap"},min:0,max:100,unit:{value:ce,label:"captionGapUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement(Fs,{label:Object(r.__)("Default","ultimate-addons-for-gutenberg"),data:{value:W,label:"imageDefaultCaption"},setAttributes:i,value:W,variant:"inline"}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Image Gallery Block to the next level with powerful features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("Custom URLs for click events","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"image-gallery"}}))),React.createElement(il,nl,!u&&al(),u&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Hover Zoom","ultimate-addons-for-gutenberg"),checked:nt,onChange:()=>i({imageEnableZoom:!nt})}),nt&&React.createElement(Na,{setAttributes:i,label:Object(r.__)("Zoom Type","ultimate-addons-for-gutenberg"),data:{value:rt,label:"imageZoomType"},options:[{value:"zoom-in",label:Object(r.__)("Zoom In","ultimate-addons-for-gutenberg")},{value:"zoom-out",label:Object(r.__)("Zoom Out","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Blur Overlay","ultimate-addons-for-gutenberg"),checked:st,onChange:()=>i({captionBackgroundEnableBlur:!st})}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:Ja(!1),hover:Ja(!0)}),React.createElement(Hi,{setAttributes:i,prefix:"image",attributes:l,deviceType:s}),React.createElement(tl,{label:Object(r.__)("Gap Between Images","ultimate-addons-for-gutenberg"),data:{desktop:{value:U,label:"gridImageGap",unit:{value:L,label:"gridImageGapUnit"}},tablet:{value:E,label:"gridImageGapTab",unit:{value:H,label:"gridImageGapUnitTab"}},mobile:{value:O,label:"gridImageGapMob",unit:{value:F,label:"gridImageGapUnitMob"}}},min:0,max:100,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:i})),u&&"lightbox"===h&&React.createElement(Fe,{panelId:"lightbox",title:Object(r.__)("Lightbox","ultimate-addons-for-gutenberg"),initialOpen:!1},(v||T)&&React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:i,loadGoogleFonts:{value:$t,label:"lightboxLoadGoogleFonts"},fontFamily:{value:Yt,label:"lightboxFontFamily"},fontWeight:{value:Kt,label:"lightboxFontWeight"},fontStyle:{value:Jt,label:"lightboxFontStyle"},transform:{value:Xt,label:"lightboxTransform"},decoration:{value:Qt,label:"lightboxDecoration"},fontSizeType:{value:ea,label:"lightboxFontSizeType"},fontSize:{value:ta,label:"lightboxFontSize"},fontSizeMobile:{value:aa,label:"lightboxFontSizeMob"},fontSizeTablet:{value:la,label:"lightboxFontSizeTab"},lineHeightType:{value:ia,label:"lightboxLineHeightType"},lineHeight:{value:oa,label:"lightboxLineHeight"},lineHeightMobile:{value:na,label:"lightboxLineHeightMob"},lineHeightTablet:{value:ra,label:"lightboxLineHeightTab"}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Blur Background","ultimate-addons-for-gutenberg"),checked:gt,onChange:()=>i({lightboxBackgroundEnableBlur:!gt})}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:yt||"",data:{value:yt,label:"lightboxBackgroundColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Accent Color","ultimate-addons-for-gutenberg"),colorValue:vt||"",data:{value:vt,label:"lightboxIconColor"},setAttributes:i,hint:Object(r.__)("This color affects the Image Count, Close Button, and Arrows","ultimate-addons-for-gutenberg")}),v&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Caption Color","ultimate-addons-for-gutenberg"),colorValue:ft||"",data:{value:ft,label:"lightboxCaptionColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Caption Background","ultimate-addons-for-gutenberg"),colorValue:ht||"",data:{value:ht,label:"lightboxCaptionBackgroundColor"},setAttributes:i})),gt&&React.createElement(Qa,{label:Object(r.__)("Blur Amount","ultimate-addons-for-gutenberg"),setAttributes:i,value:mt,data:{value:mt,label:"lightboxBackgroundBlurAmount"},min:0,max:10,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Edge Distance","ultimate-addons-for-gutenberg"),data:{desktop:{value:pt,label:"lightboxEdgeDistance"},tablet:{value:bt,label:"lightboxEdgeDistanceTablet"},mobile:{value:dt,label:"lightboxEdgeDistanceMobile"}},min:0,max:100,displayUnit:!1,setAttributes:i})),u&&g&&React.createElement(Fe,{title:Object(r.__)("Caption","ultimate-addons-for-gutenberg"),initialOpen:!1},"always"===z&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Hover Colors","ultimate-addons-for-gutenberg"),checked:ha,onChange:()=>i({captionSeparateColors:!ha})}),"always"===z&&ha?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:Ka(!1),hover:Ka(!0),disableBottomSeparator:"overlay"===D}):React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:ba||"",data:{value:ba,label:"captionColor"},setAttributes:i}),React.createElement(hl,{label:Wa,colorValue:ga||"",data:{value:ga,label:"captionBackgroundColor"},setAttributes:i})),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:i,loadGoogleFonts:{value:_t,label:"captionLoadGoogleFonts"},fontFamily:{value:Tt,label:"captionFontFamily"},fontWeight:{value:Ct,label:"captionFontWeight"},fontStyle:{value:St,label:"captionFontStyle"},transform:{value:wt,label:"captionTransform"},decoration:{value:kt,label:"captionDecoration"},fontSizeType:{value:Pt,label:"captionFontSizeType"},fontSize:{value:xt,label:"captionFontSize"},fontSizeMobile:{value:At,label:"captionFontSizeMob"},fontSizeTablet:{value:Gt,label:"captionFontSizeTab"},lineHeightType:{value:Mt,label:"captionLineHeightType"},lineHeight:{value:Rt,label:"captionLineHeight"},lineHeightMobile:{value:Bt,label:"captionLineHeightMob"},lineHeightTablet:{value:Ut,label:"captionLineHeightTab"}}),React.createElement(Pl,Ek({},e,{label:Object(r.__)("Caption Padding","ultimate-addons-for-gutenberg"),valueTop:{value:q,label:"captionPaddingTop"},valueRight:{value:Z,label:"captionPaddingRight"},valueBottom:{value:$,label:"captionPaddingBottom"},valueLeft:{value:Y,label:"captionPaddingLeft"},valueTopTablet:{value:K,label:"captionPaddingTopTab"},valueRightTablet:{value:J,label:"captionPaddingRightTab"},valueBottomTablet:{value:X,label:"captionPaddingBottomTab"},valueLeftTablet:{value:Q,label:"captionPaddingLeftTab"},valueTopMobile:{value:ee,label:"captionPaddingTopMob"},valueRightMobile:{value:te,label:"captionPaddingRightMob"},valueBottomMobile:{value:ae,label:"captionPaddingBottomMob"},valueLeftMobile:{value:le,label:"captionPaddingLeftMob"},unit:{value:ie,label:"captionPaddingUnit"},tUnit:{value:oe,label:"captionPaddingUnitTab"},mUnit:{value:ne,label:"captionPaddingUnitMob"},attributes:l,setAttributes:i,link:{value:re,label:"captionPaddingUnitLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),"overlay"!==D&&React.createElement(Hi,{setAttributes:i,prefix:"mainTitle",attributes:l,deviceType:s,disableBottomSeparator:!0})),u&&"tiled"!==d&&(He&&"carousel"!==d||"carousel"===d&&(je||ze))&&React.createElement(Fe,{title:"carousel"===d?Object(r.__)("Arrows & Dots","ultimate-addons-for-gutenberg"):Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),initialOpen:!1},"grid"===d&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Top Margin","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ca,data:{value:Ca,label:"paginateDotDistance"},min:0,max:100,unit:{value:Sa,label:"paginateDotDistanceUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:el(!1),hover:el(!0),disableBottomSeparator:!0})),je&&"carousel"===d&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Arrow Position","ultimate-addons-for-gutenberg"),setAttributes:i,value:va,data:{value:va,label:"paginateArrowDistance"},min:-100,max:100,unit:{value:_a,label:"paginateArrowDistanceUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Qa,{label:Object(r.__)("Arrow Size","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ta,data:{value:Ta,label:"paginateArrowSize"},min:0,max:50,displayUnit:!1})),ze&&"carousel"===d&&React.createElement(Qa,{label:Object(r.__)("Dot Position","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ca,data:{value:Ca,label:"paginateDotDistance"},min:0,max:100,displayUnit:!1}),(je||ze)&&"carousel"===d&&React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:el(!1),hover:el(!0),disableBottomSeparator:!je}),je&&"carousel"===d&&React.createElement(Hi,{setAttributes:i,prefix:"arrow",attributes:l,deviceType:s,disableBottomSeparator:!0}),"masonry"===d&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Top Margin","ultimate-addons-for-gutenberg"),setAttributes:i,value:Ca,data:{value:Ca,label:"paginateDotDistance"},min:0,max:100,unit:{value:Sa,label:"paginateDotDistanceUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),De?React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Loader Size","ultimate-addons-for-gutenberg"),setAttributes:i,value:wa,data:{value:wa,label:"paginateLoaderSize"},min:0,max:50,displayUnit:!1}),el(!1)):React.createElement(React.Fragment,null,React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:i,loadGoogleFonts:{value:Et,label:"loadMoreLoadGoogleFonts"},fontFamily:{value:Ot,label:"loadMoreFontFamily"},fontWeight:{value:Lt,label:"loadMoreFontWeight"},fontStyle:{value:Ht,label:"loadMoreFontStyle"},transform:{value:jt,label:"loadMoreTransform"},decoration:{value:Ft,label:"loadMoreDecoration"},fontSizeType:{value:zt,label:"loadMoreFontSizeType"},fontSize:{value:Dt,label:"loadMoreFontSize"},fontSizeMobile:{value:Nt,label:"loadMoreFontSizeMob"},fontSizeTablet:{value:It,label:"loadMoreFontSizeTab"},lineHeightType:{value:Vt,label:"loadMoreLineHeightType"},lineHeight:{value:Wt,label:"loadMoreLineHeight"},lineHeightMobile:{value:qt,label:"loadMoreLineHeightMob"},lineHeightTablet:{value:Zt,label:"loadMoreLineHeightTab"}}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:el(!1),hover:el(!0)}),React.createElement(Hi,{setAttributes:i,prefix:"btn",attributes:l,deviceType:s,disableBottomSeparator:!!De}))),!De&&React.createElement(React.Fragment,null,React.createElement(Pl,Ek({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Ve,label:"paginateButtonPaddingTop"},valueRight:{value:We,label:"paginateButtonPaddingRight"},valueBottom:{value:qe,label:"paginateButtonPaddingBottom"},valueLeft:{value:Ze,label:"paginateButtonPaddingLeft"},valueTopTablet:{value:$e,label:"paginateButtonPaddingTopTab"},valueRightTablet:{value:Ye,label:"paginateButtonPaddingRightTab"},valueBottomTablet:{value:Ke,label:"paginateButtonPaddingBottomTab"},valueLeftTablet:{value:Je,label:"paginateButtonPaddingLeftTab"},valueTopMobile:{value:Xe,label:"paginateButtonPaddingTopMob"},valueRightMobile:{value:Qe,label:"paginateButtonPaddingRightMob"},valueBottomMobile:{value:et,label:"paginateButtonPaddingBottomMob"},valueLeftMobile:{value:tt,label:"paginateButtonPaddingLeftMob"},unit:{value:at,label:"paginateButtonPaddingUnit"},tUnit:{value:lt,label:"paginateButtonPaddingUnitTab"},mUnit:{value:it,label:"paginateButtonPaddingUnitMob"},attributes:l,setAttributes:i,link:{value:ot,label:"paginateButtonPaddingUnitLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})))),u&&React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:i,presets:Bk,presetInputType:"radioImage"}),React.createElement(vl,{blockId:c,setAttributes:i,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Ga,label:"imageBoxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:Ma,label:"imageBoxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Ra,label:"imageBoxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:Ba,label:"imageBoxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:Ua,label:"imageBoxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:Ea,label:"imageBoxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:i,presets:Uk,presetInputType:"radioImage"}),React.createElement(vl,{blockId:c,setAttributes:i,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:Oa,label:"imageBoxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:La,label:"imageBoxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Ha,label:"imageBoxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ja,label:"imageBoxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:Fa,label:"imageBoxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:za,label:"imageBoxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0})),u&&React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,Ek({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ue,label:"feedMarginTop"},valueRight:{value:pe,label:"feedMarginRight"},valueBottom:{value:be,label:"feedMarginBottom"},valueLeft:{value:de,label:"feedMarginLeft"},valueTopTablet:{value:me,label:"feedMarginTopTab"},valueRightTablet:{value:ye,label:"feedMarginRightTab"},valueBottomTablet:{value:fe,label:"feedMarginBottomTab"},valueLeftTablet:{value:he,label:"feedMarginLeftTab"},valueTopMobile:{value:ve,label:"feedMarginTopMob"},valueRightMobile:{value:_e,label:"feedMarginRightMob"},valueBottomMobile:{value:Te,label:"feedMarginBottomMob"},valueLeftMobile:{value:Se,label:"feedMarginLeftMob"},unit:{value:we,label:"feedMarginUnit"},tUnit:{value:ke,label:"feedMarginUnitTab"},mUnit:{value:Pe,label:"feedMarginUnitMob"},attributes:l,setAttributes:i,link:{value:xe,label:"feedMarginUnitLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})))),React.createElement(il,Ek({},rl,{parentProps:e})))))}),Lk=e=>{let{attributes:t,setAttributes:a}=e;const{mediaGallery:l,mediaIDs:i}=t;return"inapplicable"!==a&&React.createElement("div",{className:"spectra-image-gallery-init-wrapper"},React.createElement("div",{className:"spectra-image-gallery-init-wrapper__title"},se.image_gallery,Object(r.__)("Image Gallery","ultimate-addons-for-gutenberg")),React.createElement("p",{className:"spectra-image-gallery-init-wrapper__help-text"},Object(r.__)("Select your images to get started","ultimate-addons-for-gutenberg")),React.createElement(ge.MediaUpload,{title:Object(r.__)("Select Images","ultimate-addons-for-gutenberg"),onSelect:e=>{let t=!0;const l=[];e.forEach(e=>{e&&e.url&&e.type&&"image"===e.type?l.push(e.id):t=!1}),t&&a({mediaGallery:e,mediaIDs:l,readyToRender:!0})},allowedTypes:["image"],multiple:!0,value:i,gallery:!0,render:e=>{var t;let{open:a}=e;return React.createElement(Le.Button,{isSecondary:!0,onClick:a},null!==(t=l[0])&&void 0!==t&&t.url?Object(r.__)("Replace Images","ultimate-addons-for-gutenberg"):Object(r.__)("Select Images","ultimate-addons-for-gutenberg"))}}))},Hk=a(54),jk=a.n(Hk),Fk=a(36),zk=a.n(Fk);function Dk(){return(Dk=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}a(354);var Nk=e=>{let{attributes:t,setAttributes:a,name:l}=e;const i=l.replace("uagb/",""),{tileSize:o,focusList:n,focusListObject:s,mediaGallery:c,feedLayout:u,imageDisplayCaption:p,galleryImageSize:b,galleryImageSizeTablet:d,galleryImageSizeMobile:g,feedMarginTop:m,feedMarginRight:y,feedMarginBottom:f,feedMarginLeft:h,feedMarginTopTab:v,feedMarginRightTab:_,feedMarginBottomTab:T,feedMarginLeftTab:C,feedMarginTopMob:S,feedMarginRightMob:w,feedMarginBottomMob:k,feedMarginLeftMob:P,feedMarginUnit:x,feedMarginUnitTab:A,feedMarginUnitMob:G,gridImageGap:M,gridImageGapTab:R,gridImageGapMob:U,gridImageGapUnit:E,gridImageGapUnitTab:O,gridImageGapUnitMob:L,captionDisplayType:H,imageCaptionAlignment:F,imageDefaultCaption:z,carouselStartAt:D,carouselLoop:N,carouselAutoplay:I,carouselAutoplaySpeed:V,carouselPauseOnHover:W,carouselTransitionSpeed:q,gridPages:$,gridPageNumber:Y,feedPagination:K,paginateUseArrows:J,paginateUseDots:X,paginateUseLoader:Q,paginateLimit:ee,paginateButtonText:te,columnsDesk:ae,columnsTab:ie,columnsMob:oe,disableLazyLoad:ne}=t,re=Ps(D,"carouselStartAt",i),ce=Ps(q,"carouselTransitionSpeed",i),ue=Ps(V,"carouselAutoplaySpeed",i),pe=Ps(ee,"paginateLimit",i),be=Ps(ae,"columnsDesk",i),de=isNaN(ie)?be:ie,me=isNaN(oe)?de:oe,ye=K&&("grid"===u||"masonry"===u),[fe,he]=Object(B.useState)(0),[ve,_e]=Object(B.useState)(!1),[Te,Ce]=Object(B.useState)(!1),Se=Object(B.useRef)(null),we=Object(B.useRef)([]),ke=Object(B.useRef)(null),Pe=le(),[xe,Ae]=Object(B.useState)(Pe);Object(B.useEffect)(()=>{switch(u){case"carousel":(null==c?void 0:c.length)<be&&a({columnsDesk:c.length}),(null==c?void 0:c.length)<de&&a({columnsTab:c.length}),(null==c?void 0:c.length)<me&&a({columnsMob:c.length}),c&&X&&he("Desktop"===Pe?c.length>be?Se.current.children[0].querySelector(".slick-dots").clientHeight:0:"Tablet"===Pe?c.length>de?Se.current.children[0].querySelector(".slick-dots").clientHeight:0:c.length>me?Se.current.children[0].querySelector(".slick-dots").clientHeight:0);break;case"tiled":c.forEach(e=>{void 0!==we.current[e.id]&&null!==we.current[e.id]&&s[e.id]&&!we.current[e.id].classList.contains("spectra-image-gallery__media-wrapper--focus")&&we.current[e.id].classList.add("spectra-image-gallery__media-wrapper--focus")})}},[u,JSON.stringify(c),Pe]),Object(B.useEffect)(()=>{if("tiled"!==u)return;ke.current.style.display="initial";const e=["Tablet","Mobile"];if(xe!==Pe&&e.includes(xe)&&e.includes(Pe)){const e=setTimeout(()=>{a({tileSize:Math.round(null==ke?void 0:ke.current.getBoundingClientRect().width)}),Ce(!1),Ae(Pe)},350);return()=>{clearTimeout(e)}}a({tileSize:Math.round(null==ke?void 0:ke.current.getBoundingClientRect().width)}),Ce(!1)},[Te,Pe,u,ae,ie,oe,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M,R,U,E,O,L]),Object(B.useEffect)(()=>{"tiled"===u&&setTimeout(()=>{const e=we.current;for(const t in e)null===e[t]&&delete e[t];imagesLoaded(e).on("progress",Ee),imagesLoaded(e).off("progress",Ee),imagesLoaded(e).on("always",()=>{Ce(!0)})},250)},[u,JSON.stringify(c)]),Object(B.useEffect)(()=>{ke&&ke.current&&setTimeout(()=>{ke.current.style.display="none"},1e3)},[Te,o,ae,ie,oe,Pe]),Object(B.useEffect)(()=>{if(!ve)return;const e=s;Object.keys(e).forEach(t=>{void 0!==we.current[t]&&null!==we.current[t]&&(e[t]&&!we.current[t].classList.contains("spectra-image-gallery__media-wrapper--focus")?we.current[t].classList.add("spectra-image-gallery__media-wrapper--focus"):e[t]||(we.current[t].classList.remove("spectra-image-gallery__media-wrapper--focus"),delete e[t]))}),a({focusListObject:{...e}}),_e(!1)},[ve]),Object(B.useEffect)(()=>{Array.isArray(n)&&!n.length&&_e(!0)},[n]);const Ge=()=>React.createElement("button",{type:"button","data-role":"none",className:Z(["spectra-image-gallery__control-arrows","spectra-image-gallery__control-arrows--"+u,"carousel"===u&&"slick-next","carousel"===u&&"slick-arrow"]),"aria-label":"Next",tabIndex:"0","data-direction":"Next",disabled:"grid"===u&&Y===$},se.carousel_right),Me=()=>React.createElement("button",{type:"button","data-role":"none",className:Z(["spectra-image-gallery__control-arrows","spectra-image-gallery__control-arrows--"+u,"carousel"===u&&"slick-prev","carousel"===u&&"slick-arrow"]),"aria-label":"Prev",tabIndex:"0","data-direction":"Prev",disabled:"grid"===u&&1===Y},se.carousel_left);let Re=be;switch(Pe){case"Tablet":Re=de;break;case"Mobile":Re=me;break;default:Re=be}const Be={arrows:J,dots:X,initialSlide:re,infinite:N,autoplay:I,autoplaySpeed:ue,pauseOnHover:W,speed:ce,slidesToShow:Re,nextArrow:React.createElement(Ge,null),prevArrow:React.createElement(Me,null),responsive:[{breakpoint:1024,settings:{slidesToShow:de}},{breakpoint:767,settings:{slidesToShow:me}}]},Ue=(e,t)=>{const l=s;l[e]=t,a({focusListObject:{...l}}),_e(!0)},Ee=(e,t)=>{if(t&&t.isLoaded){const e=t.img,a=e.parentElement,l=e.parentElement.parentElement;l.classList.contains("spectra-image-gallery__media-wrapper--focus")||(e.naturalWidth>=2*e.naturalHeight-e.naturalHeight/2?(l.classList.add("spectra-image-gallery__media-wrapper--wide"),a.classList.add("spectra-image-gallery__media--tiled-wide")):e.naturalHeight>=2*e.naturalWidth-e.naturalWidth/2&&(l.classList.add("spectra-image-gallery__media-wrapper--tall"),a.classList.add("spectra-image-gallery__media--tiled-tall")))}},Oe=e=>{switch(Pe){case"Desktop":return e.sizes[b]?e.sizes[b].url:e.url;case"Tablet":return e.sizes[d]?e.sizes[d].url:e.url;case"Mobile":return e.sizes[g]?e.sizes[g].url:e.url;default:return e.url}},Le=()=>(ye&&a({gridPages:Math.ceil(c.length/pe)}),(ye?c.slice((Y-1)*pe,Y*pe):c).map(e=>"masonry"===u?He(e):je(e))),He=e=>React.createElement("div",{className:"spectra-image-gallery__media-wrapper--isotope",key:e.id},je(e)),je=e=>React.createElement("div",{className:"spectra-image-gallery__media-wrapper",key:e.id,ref:t=>we.current[e.id]=t},Fe(e),"tiled"===u&&(e=>{return s[e.id]?(t=e.id,React.createElement("button",{className:"spectra-image-gallery__control-focus",onClick:()=>{Ue(t,!1)}},React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"37 0.083 24 24"},React.createElement("path",{d:"M45.791,10.375c1.1,0,2-0.9,2-2V4h-1.5v4.375c0,0.3-0.2,0.5-0.5,0.5h-4.376v1.5H45.791z"}),React.createElement("path",{d:"M51.041,8.376c0,1.1,0.9,2,2,2h4.375v-1.5h-4.375c-0.299,0-0.5-0.2-0.5-0.5V4h-1.5V8.376z"}),React.createElement("path",{d:"M45.791,13.625c1.1,0,2,0.9,2,2V20h-1.5v-4.375c0-0.3-0.2-0.5-0.5-0.5h-4.376v-1.5H45.791z"}),React.createElement("path",{d:"M51.041,15.625c0-1.1,0.9-2,2-2h4.375v1.5h-4.375c-0.299,0-0.5,0.199-0.5,0.5V20h-1.5V15.625z"})))):(e=>React.createElement("button",{className:"spectra-image-gallery__control-focus",onClick:()=>{Ue(e,!0)}},React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",width:"24px",height:"24px",viewBox:"0 0 24 24"},React.createElement("path",{d:"M6,4C4.9,4,4,4.9,4,6v4.375h1.5V6c0-0.3,0.2-0.5,0.5-0.5h4.376V4H6z"}),React.createElement("path",{d:"M20,6c0-1.1-0.9-2-2-2h-4.375v1.5H18c0.299,0,0.5,0.2,0.5,0.5v4.376H20V6z"}),React.createElement("path",{d:"M6,20c-1.1,0-2-0.9-2-2v-4.375h1.5V18c0,0.3,0.2,0.5,0.5,0.5h4.376V20H6z"}),React.createElement("path",{d:"M20,18c0,1.1-0.9,2-2,2h-4.375v-1.5H18c0.299,0,0.5-0.199,0.5-0.5v-4.375H20V18z"}))))(e.id);var t})(e)),Fe=e=>React.createElement(React.Fragment,null,p&&"bar-outside"===H&&"top"===Mk(F,1)&&React.createElement("div",{className:Z(["spectra-image-gallery__media-thumbnail-caption-wrapper","spectra-image-gallery__media-thumbnail-caption-wrapper--"+H])},ze(e)),React.createElement("div",{className:Z(["spectra-image-gallery__media","spectra-image-gallery__media--"+u])},React.createElement("img",{className:Z(["spectra-image-gallery__media-thumbnail","spectra-image-gallery__media-thumbnail--"+u]),src:Oe(e),alt:e.alt,loading:ne?void 0:"lazy",tabIndex:"0"}),React.createElement("div",{className:"spectra-image-gallery__media-thumbnail-blurrer"}),p?"bar-outside"!==H&&React.createElement("div",{className:Z(["spectra-image-gallery__media-thumbnail-caption-wrapper","spectra-image-gallery__media-thumbnail-caption-wrapper--"+H])},ze(e)):React.createElement("div",{className:Z(["spectra-image-gallery__media-thumbnail-caption-wrapper","spectra-image-gallery__media-thumbnail-caption-wrapper--overlay"])})),p&&"bar-outside"===H&&"top"!==Mk(F,1)&&React.createElement("div",{className:Z(["spectra-image-gallery__media-thumbnail-caption-wrapper","spectra-image-gallery__media-thumbnail-caption-wrapper--"+H])},ze(e))),ze=e=>e.caption?React.createElement(ge.RichText,{tagName:"div",placeholder:z,value:e.caption,onChange:t=>e.caption=t,className:Z(["spectra-image-gallery__media-thumbnail-caption","spectra-image-gallery__media-thumbnail-caption--"+H]),multiline:!1}):e.url?React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("No Caption","ultimate-addons-for-gutenberg"),value:z,onChange:e=>a({imageDefaultCaption:e}),className:Z(["spectra-image-gallery__media-thumbnail-caption","spectra-image-gallery__media-thumbnail-caption--"+H]),multiline:!1}):Object(r.__)("Unable to load image","ultimate-addons-for-gutenberg");return c?React.createElement(React.Fragment,null,(()=>{switch(u){case"grid":const e="grid";return React.createElement(React.Fragment,null,React.createElement("div",{className:Z(["spectra-image-gallery","spectra-image-gallery__layout--"+e,`spectra-image-gallery__layout--${e}-col-${be}`,`spectra-image-gallery__layout--${e}-col-tab-${de}`,`spectra-image-gallery__layout--${e}-col-mob-${me}`])},Le()),K&&React.createElement("div",{className:"spectra-image-gallery__control-wrapper"},React.createElement(Me,null),React.createElement("ul",{className:"spectra-image-gallery__control-dots"},[...Array($)].map((e,t)=>React.createElement("li",{key:t,className:Z(["spectra-image-gallery__control-dot",t===Y-1&&"spectra-image-gallery__control-dot--active"]),"data-go-to":t+1},React.createElement("button",null)))),React.createElement(Ge,null)));case"masonry":return React.createElement(React.Fragment,null,React.createElement(jk.a,{className:Z(["spectra-image-gallery","spectra-image-gallery__layout--"+u,`spectra-image-gallery__layout--${u}-col-${be}`,`spectra-image-gallery__layout--${u}-col-tab-${de}`,`spectra-image-gallery__layout--${u}-col-mob-${me}`]),updateOnEachImageLoad:!0},Le()),K&&(c.length<=pe?null:React.createElement(React.Fragment,null,Q?React.createElement("div",{className:"spectra-image-gallery__control-loader wp-block-button"},React.createElement("div",{className:"wp-block-button__link spectra-image-gallery__control-loader--1"}),React.createElement("div",{className:"wp-block-button__link spectra-image-gallery__control-loader--2"}),React.createElement("div",{className:"wp-block-button__link spectra-image-gallery__control-loader--3"})):React.createElement("div",{className:"spectra-image-gallery__control-wrapper wp-block-button"},React.createElement(ge.RichText,{tagName:"div",placeholder:Object(r.__)("Load More Images","ultimate-addons-for-gutenberg"),value:te,onChange:e=>a({paginateButtonText:e}),className:"spectra-image-gallery__control-button wp-block-button__link",multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"]})))));case"tiled":return React.createElement("div",{className:Z(["spectra-image-gallery","spectra-image-gallery__layout--"+u,`spectra-image-gallery__layout--${u}-col-${be}`,`spectra-image-gallery__layout--${u}-col-tab-${de}`,`spectra-image-gallery__layout--${u}-col-mob-${me}`])},Le(),React.createElement("div",{className:"spectra-image-gallery__media-sizer",ref:ke}));case"carousel":return React.createElement("div",{className:Z(["spectra-image-gallery","spectra-image-gallery__layout--"+u]),ref:Se,style:{marginBottom:fe+"px"}},React.createElement(zk.a,Dk({className:"uagb-slick-carousel"},Be),Le()))}})(),Object(j.applyFilters)("spectra.image-gallery.render.customLinks",null,we,t,a)):React.createElement("div",{className:"spectra-image-gallery-init-wrapper"},se.image_gallery,React.createElement("h3",null,Object(r.__)("Image Gallery","ultimate-addons-for-gutenberg")),React.createElement("p",null,Object(r.__)("No images to display…","ultimate-addons-for-gutenberg")))};function Ik(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function Vk(e={},t={}){Object.keys(t).forEach(a=>{void 0===e[a]?e[a]=t[a]:Ik(t[a])&&Ik(e[a])&&Object.keys(t[a]).length>0&&Vk(e[a],t[a])})}const Wk={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function qk(){const e="undefined"!=typeof document?document:{};return Vk(e,Wk),e}const Zk={document:Wk,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function $k(){const e="undefined"!=typeof window?window:{};return Vk(e,Zk),e}class Yk extends Array{constructor(e){"number"==typeof e?super(e):(super(...e||[]),function(e){const t=e.__proto__;Object.defineProperty(e,"__proto__",{get:()=>t,set(e){t.__proto__=e}})}(this))}}function Kk(e=[]){const t=[];return e.forEach(e=>{Array.isArray(e)?t.push(...Kk(e)):t.push(e)}),t}function Jk(e,t){return Array.prototype.filter.call(e,t)}function Xk(e,t){const a=$k(),l=qk();let i=[];if(!t&&e instanceof Yk)return e;if(!e)return new Yk(i);if("string"==typeof e){const a=e.trim();if(a.indexOf("<")>=0&&a.indexOf(">")>=0){let e="div";0===a.indexOf("<li")&&(e="ul"),0===a.indexOf("<tr")&&(e="tbody"),0!==a.indexOf("<td")&&0!==a.indexOf("<th")||(e="tr"),0===a.indexOf("<tbody")&&(e="table"),0===a.indexOf("<option")&&(e="select");const t=l.createElement(e);t.innerHTML=a;for(let e=0;e<t.childNodes.length;e+=1)i.push(t.childNodes[e])}else i=function(e,t){if("string"!=typeof e)return[e];const a=[],l=t.querySelectorAll(e);for(let e=0;e<l.length;e+=1)a.push(l[e]);return a}(e.trim(),t||l)}else if(e.nodeType||e===a||e===l)i.push(e);else if(Array.isArray(e)){if(e instanceof Yk)return e;i=e}return new Yk(function(e){const t=[];for(let a=0;a<e.length;a+=1)-1===t.indexOf(e[a])&&t.push(e[a]);return t}(i))}Xk.fn=Yk.prototype;const Qk="resize scroll".split(" ");function eP(e){return function(...t){if(void 0===t[0]){for(let t=0;t<this.length;t+=1)Qk.indexOf(e)<0&&(e in this[t]?this[t][e]():Xk(this[t]).trigger(e));return this}return this.on(e,...t)}}eP("click"),eP("blur"),eP("focus"),eP("focusin"),eP("focusout"),eP("keyup"),eP("keydown"),eP("keypress"),eP("submit"),eP("change"),eP("mousedown"),eP("mousemove"),eP("mouseup"),eP("mouseenter"),eP("mouseleave"),eP("mouseout"),eP("mouseover"),eP("touchstart"),eP("touchend"),eP("touchmove"),eP("resize"),eP("scroll");const tP={addClass:function(...e){const t=Kk(e.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.add(...t)}),this},removeClass:function(...e){const t=Kk(e.map(e=>e.split(" ")));return this.forEach(e=>{e.classList.remove(...t)}),this},hasClass:function(...e){const t=Kk(e.map(e=>e.split(" ")));return Jk(this,e=>t.filter(t=>e.classList.contains(t)).length>0).length>0},toggleClass:function(...e){const t=Kk(e.map(e=>e.split(" ")));this.forEach(e=>{t.forEach(t=>{e.classList.toggle(t)})})},attr:function(e,t){if(1===arguments.length&&"string"==typeof e)return this[0]?this[0].getAttribute(e):void 0;for(let a=0;a<this.length;a+=1)if(2===arguments.length)this[a].setAttribute(e,t);else for(const t in e)this[a][t]=e[t],this[a].setAttribute(t,e[t]);return this},removeAttr:function(e){for(let t=0;t<this.length;t+=1)this[t].removeAttribute(e);return this},transform:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transform=e;return this},transition:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transitionDuration="string"!=typeof e?e+"ms":e;return this},on:function(...e){let[t,a,l,i]=e;function o(e){const t=e.target;if(!t)return;const i=e.target.dom7EventData||[];if(i.indexOf(e)<0&&i.unshift(e),Xk(t).is(a))l.apply(t,i);else{const e=Xk(t).parents();for(let t=0;t<e.length;t+=1)Xk(e[t]).is(a)&&l.apply(e[t],i)}}function n(e){const t=e&&e.target&&e.target.dom7EventData||[];t.indexOf(e)<0&&t.unshift(e),l.apply(this,t)}"function"==typeof e[1]&&([t,l,i]=e,a=void 0),i||(i=!1);const r=t.split(" ");let s;for(let e=0;e<this.length;e+=1){const t=this[e];if(a)for(s=0;s<r.length;s+=1){const e=r[s];t.dom7LiveListeners||(t.dom7LiveListeners={}),t.dom7LiveListeners[e]||(t.dom7LiveListeners[e]=[]),t.dom7LiveListeners[e].push({listener:l,proxyListener:o}),t.addEventListener(e,o,i)}else for(s=0;s<r.length;s+=1){const e=r[s];t.dom7Listeners||(t.dom7Listeners={}),t.dom7Listeners[e]||(t.dom7Listeners[e]=[]),t.dom7Listeners[e].push({listener:l,proxyListener:n}),t.addEventListener(e,n,i)}}return this},off:function(...e){let[t,a,l,i]=e;"function"==typeof e[1]&&([t,l,i]=e,a=void 0),i||(i=!1);const o=t.split(" ");for(let e=0;e<o.length;e+=1){const t=o[e];for(let e=0;e<this.length;e+=1){const o=this[e];let n;if(!a&&o.dom7Listeners?n=o.dom7Listeners[t]:a&&o.dom7LiveListeners&&(n=o.dom7LiveListeners[t]),n&&n.length)for(let e=n.length-1;e>=0;e-=1){const a=n[e];l&&a.listener===l||l&&a.listener&&a.listener.dom7proxy&&a.listener.dom7proxy===l?(o.removeEventListener(t,a.proxyListener,i),n.splice(e,1)):l||(o.removeEventListener(t,a.proxyListener,i),n.splice(e,1))}}}return this},trigger:function(...e){const t=$k(),a=e[0].split(" "),l=e[1];for(let i=0;i<a.length;i+=1){const o=a[i];for(let a=0;a<this.length;a+=1){const i=this[a];if(t.CustomEvent){const a=new t.CustomEvent(o,{detail:l,bubbles:!0,cancelable:!0});i.dom7EventData=e.filter((e,t)=>t>0),i.dispatchEvent(a),i.dom7EventData=[],delete i.dom7EventData}}}return this},transitionEnd:function(e){const t=this;return e&&t.on("transitionend",(function a(l){l.target===this&&(e.call(this,l),t.off("transitionend",a))})),this},outerWidth:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetWidth+parseFloat(e.getPropertyValue("margin-right"))+parseFloat(e.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetHeight+parseFloat(e.getPropertyValue("margin-top"))+parseFloat(e.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){const e=$k();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){const e=$k(),t=qk(),a=this[0],l=a.getBoundingClientRect(),i=t.body,o=a.clientTop||i.clientTop||0,n=a.clientLeft||i.clientLeft||0,r=a===e?e.scrollY:a.scrollTop,s=a===e?e.scrollX:a.scrollLeft;return{top:l.top+r-o,left:l.left+s-n}}return null},css:function(e,t){const a=$k();let l;if(1===arguments.length){if("string"!=typeof e){for(l=0;l<this.length;l+=1)for(const t in e)this[l].style[t]=e[t];return this}if(this[0])return a.getComputedStyle(this[0],null).getPropertyValue(e)}if(2===arguments.length&&"string"==typeof e){for(l=0;l<this.length;l+=1)this[l].style[e]=t;return this}return this},each:function(e){return e?(this.forEach((t,a)=>{e.apply(t,[t,a])}),this):this},html:function(e){if(void 0===e)return this[0]?this[0].innerHTML:null;for(let t=0;t<this.length;t+=1)this[t].innerHTML=e;return this},text:function(e){if(void 0===e)return this[0]?this[0].textContent.trim():null;for(let t=0;t<this.length;t+=1)this[t].textContent=e;return this},is:function(e){const t=$k(),a=qk(),l=this[0];let i,o;if(!l||void 0===e)return!1;if("string"==typeof e){if(l.matches)return l.matches(e);if(l.webkitMatchesSelector)return l.webkitMatchesSelector(e);if(l.msMatchesSelector)return l.msMatchesSelector(e);for(i=Xk(e),o=0;o<i.length;o+=1)if(i[o]===l)return!0;return!1}if(e===a)return l===a;if(e===t)return l===t;if(e.nodeType||e instanceof Yk){for(i=e.nodeType?[e]:e,o=0;o<i.length;o+=1)if(i[o]===l)return!0;return!1}return!1},index:function(){let e,t=this[0];if(t){for(e=0;null!==(t=t.previousSibling);)1===t.nodeType&&(e+=1);return e}},eq:function(e){if(void 0===e)return this;const t=this.length;if(e>t-1)return Xk([]);if(e<0){const a=t+e;return Xk(a<0?[]:[this[a]])}return Xk([this[e]])},append:function(...e){let t;const a=qk();for(let l=0;l<e.length;l+=1){t=e[l];for(let e=0;e<this.length;e+=1)if("string"==typeof t){const l=a.createElement("div");for(l.innerHTML=t;l.firstChild;)this[e].appendChild(l.firstChild)}else if(t instanceof Yk)for(let a=0;a<t.length;a+=1)this[e].appendChild(t[a]);else this[e].appendChild(t)}return this},prepend:function(e){const t=qk();let a,l;for(a=0;a<this.length;a+=1)if("string"==typeof e){const i=t.createElement("div");for(i.innerHTML=e,l=i.childNodes.length-1;l>=0;l-=1)this[a].insertBefore(i.childNodes[l],this[a].childNodes[0])}else if(e instanceof Yk)for(l=0;l<e.length;l+=1)this[a].insertBefore(e[l],this[a].childNodes[0]);else this[a].insertBefore(e,this[a].childNodes[0]);return this},next:function(e){return this.length>0?e?this[0].nextElementSibling&&Xk(this[0].nextElementSibling).is(e)?Xk([this[0].nextElementSibling]):Xk([]):this[0].nextElementSibling?Xk([this[0].nextElementSibling]):Xk([]):Xk([])},nextAll:function(e){const t=[];let a=this[0];if(!a)return Xk([]);for(;a.nextElementSibling;){const l=a.nextElementSibling;e?Xk(l).is(e)&&t.push(l):t.push(l),a=l}return Xk(t)},prev:function(e){if(this.length>0){const t=this[0];return e?t.previousElementSibling&&Xk(t.previousElementSibling).is(e)?Xk([t.previousElementSibling]):Xk([]):t.previousElementSibling?Xk([t.previousElementSibling]):Xk([])}return Xk([])},prevAll:function(e){const t=[];let a=this[0];if(!a)return Xk([]);for(;a.previousElementSibling;){const l=a.previousElementSibling;e?Xk(l).is(e)&&t.push(l):t.push(l),a=l}return Xk(t)},parent:function(e){const t=[];for(let a=0;a<this.length;a+=1)null!==this[a].parentNode&&(e?Xk(this[a].parentNode).is(e)&&t.push(this[a].parentNode):t.push(this[a].parentNode));return Xk(t)},parents:function(e){const t=[];for(let a=0;a<this.length;a+=1){let l=this[a].parentNode;for(;l;)e?Xk(l).is(e)&&t.push(l):t.push(l),l=l.parentNode}return Xk(t)},closest:function(e){let t=this;return void 0===e?Xk([]):(t.is(e)||(t=t.parents(e).eq(0)),t)},find:function(e){const t=[];for(let a=0;a<this.length;a+=1){const l=this[a].querySelectorAll(e);for(let e=0;e<l.length;e+=1)t.push(l[e])}return Xk(t)},children:function(e){const t=[];for(let a=0;a<this.length;a+=1){const l=this[a].children;for(let a=0;a<l.length;a+=1)e&&!Xk(l[a]).is(e)||t.push(l[a])}return Xk(t)},filter:function(e){return Xk(Jk(this,e))},remove:function(){for(let e=0;e<this.length;e+=1)this[e].parentNode&&this[e].parentNode.removeChild(this[e]);return this}};Object.keys(tP).forEach(e=>{Object.defineProperty(Xk.fn,e,{value:tP[e],writable:!0})});var aP=Xk;function lP(e,t=0){return setTimeout(e,t)}function iP(){return Date.now()}function oP(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function nP(...e){const t=Object(e[0]),a=["__proto__","constructor","prototype"];for(let i=1;i<e.length;i+=1){const o=e[i];if(null!=o&&(l=o,!("undefined"!=typeof window&&void 0!==window.HTMLElement?l instanceof HTMLElement:l&&(1===l.nodeType||11===l.nodeType)))){const e=Object.keys(Object(o)).filter(e=>a.indexOf(e)<0);for(let a=0,l=e.length;a<l;a+=1){const l=e[a],i=Object.getOwnPropertyDescriptor(o,l);void 0!==i&&i.enumerable&&(oP(t[l])&&oP(o[l])?o[l].__swiper__?t[l]=o[l]:nP(t[l],o[l]):!oP(t[l])&&oP(o[l])?(t[l]={},o[l].__swiper__?t[l]=o[l]:nP(t[l],o[l])):t[l]=o[l])}}}var l;return t}function rP(e,t,a){e.style.setProperty(t,a)}function sP({swiper:e,targetPosition:t,side:a}){const l=$k(),i=-e.translate;let o,n=null;const r=e.params.speed;e.wrapperEl.style.scrollSnapType="none",l.cancelAnimationFrame(e.cssModeFrameID);const s=t>i?"next":"prev",c=(e,t)=>"next"===s&&e>=t||"prev"===s&&e<=t,u=()=>{o=(new Date).getTime(),null===n&&(n=o);const s=Math.max(Math.min((o-n)/r,1),0),p=.5-Math.cos(s*Math.PI)/2;let b=i+p*(t-i);if(c(b,t)&&(b=t),e.wrapperEl.scrollTo({[a]:b}),c(b,t))return e.wrapperEl.style.overflow="hidden",e.wrapperEl.style.scrollSnapType="",setTimeout(()=>{e.wrapperEl.style.overflow="",e.wrapperEl.scrollTo({[a]:b})}),void l.cancelAnimationFrame(e.cssModeFrameID);e.cssModeFrameID=l.requestAnimationFrame(u)};u()}let cP,uP,pP;function bP(){return cP||(cP=function(){const e=$k(),t=qk();return{smoothScroll:t.documentElement&&"scrollBehavior"in t.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&t instanceof e.DocumentTouch),passiveListener:function(){let t=!1;try{const a=Object.defineProperty({},"passive",{get(){t=!0}});e.addEventListener("testPassiveListener",null,a)}catch(e){}return t}(),gestures:"ongesturestart"in e}}()),cP}function dP({swiper:e,runCallbacks:t,direction:a,step:l}){const{activeIndex:i,previousIndex:o}=e;let n=a;if(n||(n=i>o?"next":i<o?"prev":"reset"),e.emit("transition"+l),t&&i!==o){if("reset"===n)return void e.emit("slideResetTransition"+l);e.emit("slideChangeTransition"+l),"next"===n?e.emit("slideNextTransition"+l):e.emit("slidePrevTransition"+l)}}function gP(e){const t=this,a=qk(),l=$k(),i=t.touchEventsData,{params:o,touches:n,enabled:r}=t;if(!r)return;if(t.animating&&o.preventInteractionOnTransition)return;!t.animating&&o.cssMode&&o.loop&&t.loopFix();let s=e;s.originalEvent&&(s=s.originalEvent);let c=aP(s.target);if("wrapper"===o.touchEventsTarget&&!c.closest(t.wrapperEl).length)return;if(i.isTouchEvent="touchstart"===s.type,!i.isTouchEvent&&"which"in s&&3===s.which)return;if(!i.isTouchEvent&&"button"in s&&s.button>0)return;if(i.isTouched&&i.isMoved)return;const u=!!o.noSwipingClass&&""!==o.noSwipingClass,p=e.composedPath?e.composedPath():e.path;u&&s.target&&s.target.shadowRoot&&p&&(c=aP(p[0]));const b=o.noSwipingSelector?o.noSwipingSelector:"."+o.noSwipingClass,d=!(!s.target||!s.target.shadowRoot);if(o.noSwiping&&(d?function(e,t=this){return function t(a){if(!a||a===qk()||a===$k())return null;a.assignedSlot&&(a=a.assignedSlot);const l=a.closest(e);return l||a.getRootNode?l||t(a.getRootNode().host):null}(t)}(b,c[0]):c.closest(b)[0]))return void(t.allowClick=!0);if(o.swipeHandler&&!c.closest(o.swipeHandler)[0])return;n.currentX="touchstart"===s.type?s.targetTouches[0].pageX:s.pageX,n.currentY="touchstart"===s.type?s.targetTouches[0].pageY:s.pageY;const g=n.currentX,m=n.currentY,y=o.edgeSwipeDetection||o.iOSEdgeSwipeDetection,f=o.edgeSwipeThreshold||o.iOSEdgeSwipeThreshold;if(y&&(g<=f||g>=l.innerWidth-f)){if("prevent"!==y)return;e.preventDefault()}if(Object.assign(i,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),n.startX=g,n.startY=m,i.touchStartTime=iP(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,o.threshold>0&&(i.allowThresholdMove=!1),"touchstart"!==s.type){let e=!0;c.is(i.focusableElements)&&(e=!1,"SELECT"===c[0].nodeName&&(i.isTouched=!1)),a.activeElement&&aP(a.activeElement).is(i.focusableElements)&&a.activeElement!==c[0]&&a.activeElement.blur();const l=e&&t.allowTouchMove&&o.touchStartPreventDefault;!o.touchStartForcePreventDefault&&!l||c[0].isContentEditable||s.preventDefault()}t.params.freeMode&&t.params.freeMode.enabled&&t.freeMode&&t.animating&&!o.cssMode&&t.freeMode.onTouchStart(),t.emit("touchStart",s)}function mP(e){const t=qk(),a=this,l=a.touchEventsData,{params:i,touches:o,rtlTranslate:n,enabled:r}=a;if(!r)return;let s=e;if(s.originalEvent&&(s=s.originalEvent),!l.isTouched)return void(l.startMoving&&l.isScrolling&&a.emit("touchMoveOpposite",s));if(l.isTouchEvent&&"touchmove"!==s.type)return;const c="touchmove"===s.type&&s.targetTouches&&(s.targetTouches[0]||s.changedTouches[0]),u="touchmove"===s.type?c.pageX:s.pageX,p="touchmove"===s.type?c.pageY:s.pageY;if(s.preventedByNestedSwiper)return o.startX=u,void(o.startY=p);if(!a.allowTouchMove)return aP(s.target).is(l.focusableElements)||(a.allowClick=!1),void(l.isTouched&&(Object.assign(o,{startX:u,startY:p,currentX:u,currentY:p}),l.touchStartTime=iP()));if(l.isTouchEvent&&i.touchReleaseOnEdges&&!i.loop)if(a.isVertical()){if(p<o.startY&&a.translate<=a.maxTranslate()||p>o.startY&&a.translate>=a.minTranslate())return l.isTouched=!1,void(l.isMoved=!1)}else if(u<o.startX&&a.translate<=a.maxTranslate()||u>o.startX&&a.translate>=a.minTranslate())return;if(l.isTouchEvent&&t.activeElement&&s.target===t.activeElement&&aP(s.target).is(l.focusableElements))return l.isMoved=!0,void(a.allowClick=!1);if(l.allowTouchCallbacks&&a.emit("touchMove",s),s.targetTouches&&s.targetTouches.length>1)return;o.currentX=u,o.currentY=p;const b=o.currentX-o.startX,d=o.currentY-o.startY;if(a.params.threshold&&Math.sqrt(b**2+d**2)<a.params.threshold)return;if(void 0===l.isScrolling){let e;a.isHorizontal()&&o.currentY===o.startY||a.isVertical()&&o.currentX===o.startX?l.isScrolling=!1:b*b+d*d>=25&&(e=180*Math.atan2(Math.abs(d),Math.abs(b))/Math.PI,l.isScrolling=a.isHorizontal()?e>i.touchAngle:90-e>i.touchAngle)}if(l.isScrolling&&a.emit("touchMoveOpposite",s),void 0===l.startMoving&&(o.currentX===o.startX&&o.currentY===o.startY||(l.startMoving=!0)),l.isScrolling)return void(l.isTouched=!1);if(!l.startMoving)return;a.allowClick=!1,!i.cssMode&&s.cancelable&&s.preventDefault(),i.touchMoveStopPropagation&&!i.nested&&s.stopPropagation(),l.isMoved||(i.loop&&!i.cssMode&&a.loopFix(),l.startTranslate=a.getTranslate(),a.setTransition(0),a.animating&&a.$wrapperEl.trigger("webkitTransitionEnd transitionend"),l.allowMomentumBounce=!1,!i.grabCursor||!0!==a.allowSlideNext&&!0!==a.allowSlidePrev||a.setGrabCursor(!0),a.emit("sliderFirstMove",s)),a.emit("sliderMove",s),l.isMoved=!0;let g=a.isHorizontal()?b:d;o.diff=g,g*=i.touchRatio,n&&(g=-g),a.swipeDirection=g>0?"prev":"next",l.currentTranslate=g+l.startTranslate;let m=!0,y=i.resistanceRatio;if(i.touchReleaseOnEdges&&(y=0),g>0&&l.currentTranslate>a.minTranslate()?(m=!1,i.resistance&&(l.currentTranslate=a.minTranslate()-1+(-a.minTranslate()+l.startTranslate+g)**y)):g<0&&l.currentTranslate<a.maxTranslate()&&(m=!1,i.resistance&&(l.currentTranslate=a.maxTranslate()+1-(a.maxTranslate()-l.startTranslate-g)**y)),m&&(s.preventedByNestedSwiper=!0),!a.allowSlideNext&&"next"===a.swipeDirection&&l.currentTranslate<l.startTranslate&&(l.currentTranslate=l.startTranslate),!a.allowSlidePrev&&"prev"===a.swipeDirection&&l.currentTranslate>l.startTranslate&&(l.currentTranslate=l.startTranslate),a.allowSlidePrev||a.allowSlideNext||(l.currentTranslate=l.startTranslate),i.threshold>0){if(!(Math.abs(g)>i.threshold||l.allowThresholdMove))return void(l.currentTranslate=l.startTranslate);if(!l.allowThresholdMove)return l.allowThresholdMove=!0,o.startX=o.currentX,o.startY=o.currentY,l.currentTranslate=l.startTranslate,void(o.diff=a.isHorizontal()?o.currentX-o.startX:o.currentY-o.startY)}i.followFinger&&!i.cssMode&&((i.freeMode&&i.freeMode.enabled&&a.freeMode||i.watchSlidesProgress)&&(a.updateActiveIndex(),a.updateSlidesClasses()),a.params.freeMode&&i.freeMode.enabled&&a.freeMode&&a.freeMode.onTouchMove(),a.updateProgress(l.currentTranslate),a.setTranslate(l.currentTranslate))}function yP(e){const t=this,a=t.touchEventsData,{params:l,touches:i,rtlTranslate:o,slidesGrid:n,enabled:r}=t;if(!r)return;let s=e;if(s.originalEvent&&(s=s.originalEvent),a.allowTouchCallbacks&&t.emit("touchEnd",s),a.allowTouchCallbacks=!1,!a.isTouched)return a.isMoved&&l.grabCursor&&t.setGrabCursor(!1),a.isMoved=!1,void(a.startMoving=!1);l.grabCursor&&a.isMoved&&a.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);const c=iP(),u=c-a.touchStartTime;if(t.allowClick){const e=s.path||s.composedPath&&s.composedPath();t.updateClickedSlide(e&&e[0]||s.target),t.emit("tap click",s),u<300&&c-a.lastClickTime<300&&t.emit("doubleTap doubleClick",s)}if(a.lastClickTime=iP(),lP(()=>{t.destroyed||(t.allowClick=!0)}),!a.isTouched||!a.isMoved||!t.swipeDirection||0===i.diff||a.currentTranslate===a.startTranslate)return a.isTouched=!1,a.isMoved=!1,void(a.startMoving=!1);let p;if(a.isTouched=!1,a.isMoved=!1,a.startMoving=!1,p=l.followFinger?o?t.translate:-t.translate:-a.currentTranslate,l.cssMode)return;if(t.params.freeMode&&l.freeMode.enabled)return void t.freeMode.onTouchEnd({currentPos:p});let b=0,d=t.slidesSizesGrid[0];for(let e=0;e<n.length;e+=e<l.slidesPerGroupSkip?1:l.slidesPerGroup){const t=e<l.slidesPerGroupSkip-1?1:l.slidesPerGroup;void 0!==n[e+t]?p>=n[e]&&p<n[e+t]&&(b=e,d=n[e+t]-n[e]):p>=n[e]&&(b=e,d=n[n.length-1]-n[n.length-2])}let g=null,m=null;l.rewind&&(t.isBeginning?m=t.params.virtual&&t.params.virtual.enabled&&t.virtual?t.virtual.slides.length-1:t.slides.length-1:t.isEnd&&(g=0));const y=(p-n[b])/d,f=b<l.slidesPerGroupSkip-1?1:l.slidesPerGroup;if(u>l.longSwipesMs){if(!l.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(y>=l.longSwipesRatio?t.slideTo(l.rewind&&t.isEnd?g:b+f):t.slideTo(b)),"prev"===t.swipeDirection&&(y>1-l.longSwipesRatio?t.slideTo(b+f):null!==m&&y<0&&Math.abs(y)>l.longSwipesRatio?t.slideTo(m):t.slideTo(b))}else{if(!l.shortSwipes)return void t.slideTo(t.activeIndex);!t.navigation||s.target!==t.navigation.nextEl&&s.target!==t.navigation.prevEl?("next"===t.swipeDirection&&t.slideTo(null!==g?g:b+f),"prev"===t.swipeDirection&&t.slideTo(null!==m?m:b)):s.target===t.navigation.nextEl?t.slideTo(b+f):t.slideTo(b)}}function fP(){const{params:e,el:t}=this;if(t&&0===t.offsetWidth)return;e.breakpoints&&this.setBreakpoint();const{allowSlideNext:a,allowSlidePrev:l,snapGrid:i}=this;this.allowSlideNext=!0,this.allowSlidePrev=!0,this.updateSize(),this.updateSlides(),this.updateSlidesClasses(),("auto"===e.slidesPerView||e.slidesPerView>1)&&this.isEnd&&!this.isBeginning&&!this.params.centeredSlides?this.slideTo(this.slides.length-1,0,!1,!0):this.slideTo(this.activeIndex,0,!1,!0),this.autoplay&&this.autoplay.running&&this.autoplay.paused&&this.autoplay.run(),this.allowSlidePrev=l,this.allowSlideNext=a,this.params.watchOverflow&&i!==this.snapGrid&&this.checkOverflow()}function hP(e){this.enabled&&(this.allowClick||(this.params.preventClicks&&e.preventDefault(),this.params.preventClicksPropagation&&this.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function vP(){const{wrapperEl:e,rtlTranslate:t,enabled:a}=this;if(!a)return;let l;this.previousTranslate=this.translate,this.isHorizontal()?this.translate=-e.scrollLeft:this.translate=-e.scrollTop,0===this.translate&&(this.translate=0),this.updateActiveIndex(),this.updateSlidesClasses();const i=this.maxTranslate()-this.minTranslate();l=0===i?0:(this.translate-this.minTranslate())/i,l!==this.progress&&this.updateProgress(t?-this.translate:this.translate),this.emit("setTranslate",this.translate,!1)}let _P=!1;function TP(){}const CP=(e,t)=>{const a=qk(),{params:l,touchEvents:i,el:o,wrapperEl:n,device:r,support:s}=e,c=!!l.nested,u="on"===t?"addEventListener":"removeEventListener",p=t;if(s.touch){const t=!("touchstart"!==i.start||!s.passiveListener||!l.passiveListeners)&&{passive:!0,capture:!1};o[u](i.start,e.onTouchStart,t),o[u](i.move,e.onTouchMove,s.passiveListener?{passive:!1,capture:c}:c),o[u](i.end,e.onTouchEnd,t),i.cancel&&o[u](i.cancel,e.onTouchEnd,t)}else o[u](i.start,e.onTouchStart,!1),a[u](i.move,e.onTouchMove,c),a[u](i.end,e.onTouchEnd,!1);(l.preventClicks||l.preventClicksPropagation)&&o[u]("click",e.onClick,!0),l.cssMode&&n[u]("scroll",e.onScroll),l.updateOnWindowResize?e[p](r.ios||r.android?"resize orientationchange observerUpdate":"resize observerUpdate",fP,!0):e[p]("observerUpdate",fP,!0)},SP=(e,t)=>e.grid&&t.grid&&t.grid.rows>1;var wP={init:!0,direction:"horizontal",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopedSlidesLimit:!0,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-invisible-blank",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",runCallbacksOnInit:!0,_emitClasses:!1};function kP(e,t){return function(a={}){const l=Object.keys(a)[0],i=a[l];"object"==typeof i&&null!==i?(["navigation","pagination","scrollbar"].indexOf(l)>=0&&!0===e[l]&&(e[l]={auto:!0}),l in e&&"enabled"in i?(!0===e[l]&&(e[l]={enabled:!0}),"object"!=typeof e[l]||"enabled"in e[l]||(e[l].enabled=!0),e[l]||(e[l]={enabled:!1}),nP(t,a)):nP(t,a)):nP(t,a)}}const PP={eventsEmitter:{on(e,t,a){const l=this;if(!l.eventsListeners||l.destroyed)return l;if("function"!=typeof t)return l;const i=a?"unshift":"push";return e.split(" ").forEach(e=>{l.eventsListeners[e]||(l.eventsListeners[e]=[]),l.eventsListeners[e][i](t)}),l},once(e,t,a){const l=this;if(!l.eventsListeners||l.destroyed)return l;if("function"!=typeof t)return l;function i(...a){l.off(e,i),i.__emitterProxy&&delete i.__emitterProxy,t.apply(l,a)}return i.__emitterProxy=t,l.on(e,i,a)},onAny(e,t){if(!this.eventsListeners||this.destroyed)return this;if("function"!=typeof e)return this;const a=t?"unshift":"push";return this.eventsAnyListeners.indexOf(e)<0&&this.eventsAnyListeners[a](e),this},offAny(e){if(!this.eventsListeners||this.destroyed)return this;if(!this.eventsAnyListeners)return this;const t=this.eventsAnyListeners.indexOf(e);return t>=0&&this.eventsAnyListeners.splice(t,1),this},off(e,t){const a=this;return!a.eventsListeners||a.destroyed?a:a.eventsListeners?(e.split(" ").forEach(e=>{void 0===t?a.eventsListeners[e]=[]:a.eventsListeners[e]&&a.eventsListeners[e].forEach((l,i)=>{(l===t||l.__emitterProxy&&l.__emitterProxy===t)&&a.eventsListeners[e].splice(i,1)})}),a):a},emit(...e){const t=this;if(!t.eventsListeners||t.destroyed)return t;if(!t.eventsListeners)return t;let a,l,i;return"string"==typeof e[0]||Array.isArray(e[0])?(a=e[0],l=e.slice(1,e.length),i=t):(a=e[0].events,l=e[0].data,i=e[0].context||t),l.unshift(i),(Array.isArray(a)?a:a.split(" ")).forEach(e=>{t.eventsAnyListeners&&t.eventsAnyListeners.length&&t.eventsAnyListeners.forEach(t=>{t.apply(i,[e,...l])}),t.eventsListeners&&t.eventsListeners[e]&&t.eventsListeners[e].forEach(e=>{e.apply(i,l)})}),t}},update:{updateSize:function(){let e,t;const a=this.$el;e=void 0!==this.params.width&&null!==this.params.width?this.params.width:a[0].clientWidth,t=void 0!==this.params.height&&null!==this.params.height?this.params.height:a[0].clientHeight,0===e&&this.isHorizontal()||0===t&&this.isVertical()||(e=e-parseInt(a.css("padding-left")||0,10)-parseInt(a.css("padding-right")||0,10),t=t-parseInt(a.css("padding-top")||0,10)-parseInt(a.css("padding-bottom")||0,10),Number.isNaN(e)&&(e=0),Number.isNaN(t)&&(t=0),Object.assign(this,{width:e,height:t,size:this.isHorizontal()?e:t}))},updateSlides:function(){const e=this;function t(t){return e.isHorizontal()?t:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[t]}function a(e,a){return parseFloat(e.getPropertyValue(t(a))||0)}const l=e.params,{$wrapperEl:i,size:o,rtlTranslate:n,wrongRTL:r}=e,s=e.virtual&&l.virtual.enabled,c=s?e.virtual.slides.length:e.slides.length,u=i.children("."+e.params.slideClass),p=s?e.virtual.slides.length:u.length;let b=[];const d=[],g=[];let m=l.slidesOffsetBefore;"function"==typeof m&&(m=l.slidesOffsetBefore.call(e));let y=l.slidesOffsetAfter;"function"==typeof y&&(y=l.slidesOffsetAfter.call(e));const f=e.snapGrid.length,h=e.slidesGrid.length;let v=l.spaceBetween,_=-m,T=0,C=0;if(void 0===o)return;"string"==typeof v&&v.indexOf("%")>=0&&(v=parseFloat(v.replace("%",""))/100*o),e.virtualSize=-v,n?u.css({marginLeft:"",marginBottom:"",marginTop:""}):u.css({marginRight:"",marginBottom:"",marginTop:""}),l.centeredSlides&&l.cssMode&&(rP(e.wrapperEl,"--swiper-centered-offset-before",""),rP(e.wrapperEl,"--swiper-centered-offset-after",""));const S=l.grid&&l.grid.rows>1&&e.grid;let w;S&&e.grid.initSlides(p);const k="auto"===l.slidesPerView&&l.breakpoints&&Object.keys(l.breakpoints).filter(e=>void 0!==l.breakpoints[e].slidesPerView).length>0;for(let i=0;i<p;i+=1){w=0;const n=u.eq(i);if(S&&e.grid.updateSlide(i,n,p,t),"none"!==n.css("display")){if("auto"===l.slidesPerView){k&&(u[i].style[t("width")]="");const o=getComputedStyle(n[0]),r=n[0].style.transform,s=n[0].style.webkitTransform;if(r&&(n[0].style.transform="none"),s&&(n[0].style.webkitTransform="none"),l.roundLengths)w=e.isHorizontal()?n.outerWidth(!0):n.outerHeight(!0);else{const e=a(o,"width"),t=a(o,"padding-left"),l=a(o,"padding-right"),i=a(o,"margin-left"),r=a(o,"margin-right"),s=o.getPropertyValue("box-sizing");if(s&&"border-box"===s)w=e+i+r;else{const{clientWidth:a,offsetWidth:o}=n[0];w=e+t+l+i+r+(o-a)}}r&&(n[0].style.transform=r),s&&(n[0].style.webkitTransform=s),l.roundLengths&&(w=Math.floor(w))}else w=(o-(l.slidesPerView-1)*v)/l.slidesPerView,l.roundLengths&&(w=Math.floor(w)),u[i]&&(u[i].style[t("width")]=w+"px");u[i]&&(u[i].swiperSlideSize=w),g.push(w),l.centeredSlides?(_=_+w/2+T/2+v,0===T&&0!==i&&(_=_-o/2-v),0===i&&(_=_-o/2-v),Math.abs(_)<.001&&(_=0),l.roundLengths&&(_=Math.floor(_)),C%l.slidesPerGroup==0&&b.push(_),d.push(_)):(l.roundLengths&&(_=Math.floor(_)),(C-Math.min(e.params.slidesPerGroupSkip,C))%e.params.slidesPerGroup==0&&b.push(_),d.push(_),_=_+w+v),e.virtualSize+=w+v,T=w,C+=1}}if(e.virtualSize=Math.max(e.virtualSize,o)+y,n&&r&&("slide"===l.effect||"coverflow"===l.effect)&&i.css({width:e.virtualSize+l.spaceBetween+"px"}),l.setWrapperSize&&i.css({[t("width")]:e.virtualSize+l.spaceBetween+"px"}),S&&e.grid.updateWrapperSize(w,b,t),!l.centeredSlides){const t=[];for(let a=0;a<b.length;a+=1){let i=b[a];l.roundLengths&&(i=Math.floor(i)),b[a]<=e.virtualSize-o&&t.push(i)}b=t,Math.floor(e.virtualSize-o)-Math.floor(b[b.length-1])>1&&b.push(e.virtualSize-o)}if(0===b.length&&(b=[0]),0!==l.spaceBetween){const a=e.isHorizontal()&&n?"marginLeft":t("marginRight");u.filter((e,t)=>!l.cssMode||t!==u.length-1).css({[a]:v+"px"})}if(l.centeredSlides&&l.centeredSlidesBounds){let e=0;g.forEach(t=>{e+=t+(l.spaceBetween?l.spaceBetween:0)}),e-=l.spaceBetween;const t=e-o;b=b.map(e=>e<0?-m:e>t?t+y:e)}if(l.centerInsufficientSlides){let e=0;if(g.forEach(t=>{e+=t+(l.spaceBetween?l.spaceBetween:0)}),e-=l.spaceBetween,e<o){const t=(o-e)/2;b.forEach((e,a)=>{b[a]=e-t}),d.forEach((e,a)=>{d[a]=e+t})}}if(Object.assign(e,{slides:u,snapGrid:b,slidesGrid:d,slidesSizesGrid:g}),l.centeredSlides&&l.cssMode&&!l.centeredSlidesBounds){rP(e.wrapperEl,"--swiper-centered-offset-before",-b[0]+"px"),rP(e.wrapperEl,"--swiper-centered-offset-after",e.size/2-g[g.length-1]/2+"px");const t=-e.snapGrid[0],a=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map(e=>e+t),e.slidesGrid=e.slidesGrid.map(e=>e+a)}if(p!==c&&e.emit("slidesLengthChange"),b.length!==f&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),d.length!==h&&e.emit("slidesGridLengthChange"),l.watchSlidesProgress&&e.updateSlidesOffset(),!(s||l.cssMode||"slide"!==l.effect&&"fade"!==l.effect)){const t=l.containerModifierClass+"backface-hidden",a=e.$el.hasClass(t);p<=l.maxBackfaceHiddenSlides?a||e.$el.addClass(t):a&&e.$el.removeClass(t)}},updateAutoHeight:function(e){const t=this,a=[],l=t.virtual&&t.params.virtual.enabled;let i,o=0;"number"==typeof e?t.setTransition(e):!0===e&&t.setTransition(t.params.speed);const n=e=>l?t.slides.filter(t=>parseInt(t.getAttribute("data-swiper-slide-index"),10)===e)[0]:t.slides.eq(e)[0];if("auto"!==t.params.slidesPerView&&t.params.slidesPerView>1)if(t.params.centeredSlides)(t.visibleSlides||aP([])).each(e=>{a.push(e)});else for(i=0;i<Math.ceil(t.params.slidesPerView);i+=1){const e=t.activeIndex+i;if(e>t.slides.length&&!l)break;a.push(n(e))}else a.push(n(t.activeIndex));for(i=0;i<a.length;i+=1)if(void 0!==a[i]){const e=a[i].offsetHeight;o=e>o?e:o}(o||0===o)&&t.$wrapperEl.css("height",o+"px")},updateSlidesOffset:function(){const e=this,t=e.slides;for(let a=0;a<t.length;a+=1)t[a].swiperSlideOffset=e.isHorizontal()?t[a].offsetLeft:t[a].offsetTop},updateSlidesProgress:function(e=this&&this.translate||0){const t=this,a=t.params,{slides:l,rtlTranslate:i,snapGrid:o}=t;if(0===l.length)return;void 0===l[0].swiperSlideOffset&&t.updateSlidesOffset();let n=-e;i&&(n=e),l.removeClass(a.slideVisibleClass),t.visibleSlidesIndexes=[],t.visibleSlides=[];for(let e=0;e<l.length;e+=1){const r=l[e];let s=r.swiperSlideOffset;a.cssMode&&a.centeredSlides&&(s-=l[0].swiperSlideOffset);const c=(n+(a.centeredSlides?t.minTranslate():0)-s)/(r.swiperSlideSize+a.spaceBetween),u=(n-o[0]+(a.centeredSlides?t.minTranslate():0)-s)/(r.swiperSlideSize+a.spaceBetween),p=-(n-s),b=p+t.slidesSizesGrid[e];(p>=0&&p<t.size-1||b>1&&b<=t.size||p<=0&&b>=t.size)&&(t.visibleSlides.push(r),t.visibleSlidesIndexes.push(e),l.eq(e).addClass(a.slideVisibleClass)),r.progress=i?-c:c,r.originalProgress=i?-u:u}t.visibleSlides=aP(t.visibleSlides)},updateProgress:function(e){const t=this;if(void 0===e){const a=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*a||0}const a=t.params,l=t.maxTranslate()-t.minTranslate();let{progress:i,isBeginning:o,isEnd:n}=t;const r=o,s=n;0===l?(i=0,o=!0,n=!0):(i=(e-t.minTranslate())/l,o=i<=0,n=i>=1),Object.assign(t,{progress:i,isBeginning:o,isEnd:n}),(a.watchSlidesProgress||a.centeredSlides&&a.autoHeight)&&t.updateSlidesProgress(e),o&&!r&&t.emit("reachBeginning toEdge"),n&&!s&&t.emit("reachEnd toEdge"),(r&&!o||s&&!n)&&t.emit("fromEdge"),t.emit("progress",i)},updateSlidesClasses:function(){const{slides:e,params:t,$wrapperEl:a,activeIndex:l,realIndex:i}=this,o=this.virtual&&t.virtual.enabled;let n;e.removeClass(`${t.slideActiveClass} ${t.slideNextClass} ${t.slidePrevClass} ${t.slideDuplicateActiveClass} ${t.slideDuplicateNextClass} ${t.slideDuplicatePrevClass}`),n=o?this.$wrapperEl.find(`.${t.slideClass}[data-swiper-slide-index="${l}"]`):e.eq(l),n.addClass(t.slideActiveClass),t.loop&&(n.hasClass(t.slideDuplicateClass)?a.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${i}"]`).addClass(t.slideDuplicateActiveClass):a.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${i}"]`).addClass(t.slideDuplicateActiveClass));let r=n.nextAll("."+t.slideClass).eq(0).addClass(t.slideNextClass);t.loop&&0===r.length&&(r=e.eq(0),r.addClass(t.slideNextClass));let s=n.prevAll("."+t.slideClass).eq(0).addClass(t.slidePrevClass);t.loop&&0===s.length&&(s=e.eq(-1),s.addClass(t.slidePrevClass)),t.loop&&(r.hasClass(t.slideDuplicateClass)?a.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${r.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicateNextClass):a.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${r.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicateNextClass),s.hasClass(t.slideDuplicateClass)?a.children(`.${t.slideClass}:not(.${t.slideDuplicateClass})[data-swiper-slide-index="${s.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicatePrevClass):a.children(`.${t.slideClass}.${t.slideDuplicateClass}[data-swiper-slide-index="${s.attr("data-swiper-slide-index")}"]`).addClass(t.slideDuplicatePrevClass)),this.emitSlidesClasses()},updateActiveIndex:function(e){const t=this.rtlTranslate?this.translate:-this.translate,{slidesGrid:a,snapGrid:l,params:i,activeIndex:o,realIndex:n,snapIndex:r}=this;let s,c=e;if(void 0===c){for(let e=0;e<a.length;e+=1)void 0!==a[e+1]?t>=a[e]&&t<a[e+1]-(a[e+1]-a[e])/2?c=e:t>=a[e]&&t<a[e+1]&&(c=e+1):t>=a[e]&&(c=e);i.normalizeSlideIndex&&(c<0||void 0===c)&&(c=0)}if(l.indexOf(t)>=0)s=l.indexOf(t);else{const e=Math.min(i.slidesPerGroupSkip,c);s=e+Math.floor((c-e)/i.slidesPerGroup)}if(s>=l.length&&(s=l.length-1),c===o)return void(s!==r&&(this.snapIndex=s,this.emit("snapIndexChange")));const u=parseInt(this.slides.eq(c).attr("data-swiper-slide-index")||c,10);Object.assign(this,{snapIndex:s,realIndex:u,previousIndex:o,activeIndex:c}),this.emit("activeIndexChange"),this.emit("snapIndexChange"),n!==u&&this.emit("realIndexChange"),(this.initialized||this.params.runCallbacksOnInit)&&this.emit("slideChange")},updateClickedSlide:function(e){const t=this,a=t.params,l=aP(e).closest("."+a.slideClass)[0];let i,o=!1;if(l)for(let e=0;e<t.slides.length;e+=1)if(t.slides[e]===l){o=!0,i=e;break}if(!l||!o)return t.clickedSlide=void 0,void(t.clickedIndex=void 0);t.clickedSlide=l,t.virtual&&t.params.virtual.enabled?t.clickedIndex=parseInt(aP(l).attr("data-swiper-slide-index"),10):t.clickedIndex=i,a.slideToClickedSlide&&void 0!==t.clickedIndex&&t.clickedIndex!==t.activeIndex&&t.slideToClickedSlide()}},translate:{getTranslate:function(e=(this.isHorizontal()?"x":"y")){const{params:t,rtlTranslate:a,translate:l,$wrapperEl:i}=this;if(t.virtualTranslate)return a?-l:l;if(t.cssMode)return l;let o=function(e,t="x"){const a=$k();let l,i,o;const n=function(e){const t=$k();let a;return t.getComputedStyle&&(a=t.getComputedStyle(e,null)),!a&&e.currentStyle&&(a=e.currentStyle),a||(a=e.style),a}(e);return a.WebKitCSSMatrix?(i=n.transform||n.webkitTransform,i.split(",").length>6&&(i=i.split(", ").map(e=>e.replace(",",".")).join(", ")),o=new a.WebKitCSSMatrix("none"===i?"":i)):(o=n.MozTransform||n.OTransform||n.MsTransform||n.msTransform||n.transform||n.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),l=o.toString().split(",")),"x"===t&&(i=a.WebKitCSSMatrix?o.m41:16===l.length?parseFloat(l[12]):parseFloat(l[4])),"y"===t&&(i=a.WebKitCSSMatrix?o.m42:16===l.length?parseFloat(l[13]):parseFloat(l[5])),i||0}(i[0],e);return a&&(o=-o),o||0},setTranslate:function(e,t){const{rtlTranslate:a,params:l,$wrapperEl:i,wrapperEl:o,progress:n}=this;let r,s=0,c=0;this.isHorizontal()?s=a?-e:e:c=e,l.roundLengths&&(s=Math.floor(s),c=Math.floor(c)),l.cssMode?o[this.isHorizontal()?"scrollLeft":"scrollTop"]=this.isHorizontal()?-s:-c:l.virtualTranslate||i.transform(`translate3d(${s}px, ${c}px, 0px)`),this.previousTranslate=this.translate,this.translate=this.isHorizontal()?s:c;const u=this.maxTranslate()-this.minTranslate();r=0===u?0:(e-this.minTranslate())/u,r!==n&&this.updateProgress(e),this.emit("setTranslate",this.translate,t)},minTranslate:function(){return-this.snapGrid[0]},maxTranslate:function(){return-this.snapGrid[this.snapGrid.length-1]},translateTo:function(e=0,t=this.params.speed,a=!0,l=!0,i){const o=this,{params:n,wrapperEl:r}=o;if(o.animating&&n.preventInteractionOnTransition)return!1;const s=o.minTranslate(),c=o.maxTranslate();let u;if(u=l&&e>s?s:l&&e<c?c:e,o.updateProgress(u),n.cssMode){const e=o.isHorizontal();if(0===t)r[e?"scrollLeft":"scrollTop"]=-u;else{if(!o.support.smoothScroll)return sP({swiper:o,targetPosition:-u,side:e?"left":"top"}),!0;r.scrollTo({[e?"left":"top"]:-u,behavior:"smooth"})}return!0}return 0===t?(o.setTransition(0),o.setTranslate(u),a&&(o.emit("beforeTransitionStart",t,i),o.emit("transitionEnd"))):(o.setTransition(t),o.setTranslate(u),a&&(o.emit("beforeTransitionStart",t,i),o.emit("transitionStart")),o.animating||(o.animating=!0,o.onTranslateToWrapperTransitionEnd||(o.onTranslateToWrapperTransitionEnd=function(e){o&&!o.destroyed&&e.target===this&&(o.$wrapperEl[0].removeEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.$wrapperEl[0].removeEventListener("webkitTransitionEnd",o.onTranslateToWrapperTransitionEnd),o.onTranslateToWrapperTransitionEnd=null,delete o.onTranslateToWrapperTransitionEnd,a&&o.emit("transitionEnd"))}),o.$wrapperEl[0].addEventListener("transitionend",o.onTranslateToWrapperTransitionEnd),o.$wrapperEl[0].addEventListener("webkitTransitionEnd",o.onTranslateToWrapperTransitionEnd))),!0}},transition:{setTransition:function(e,t){this.params.cssMode||this.$wrapperEl.transition(e),this.emit("setTransition",e,t)},transitionStart:function(e=!0,t){const{params:a}=this;a.cssMode||(a.autoHeight&&this.updateAutoHeight(),dP({swiper:this,runCallbacks:e,direction:t,step:"Start"}))},transitionEnd:function(e=!0,t){const{params:a}=this;this.animating=!1,a.cssMode||(this.setTransition(0),dP({swiper:this,runCallbacks:e,direction:t,step:"End"}))}},slide:{slideTo:function(e=0,t=this.params.speed,a=!0,l,i){if("number"!=typeof e&&"string"!=typeof e)throw new Error(`The 'index' argument cannot have type other than 'number' or 'string'. [${typeof e}] given.`);if("string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}const o=this;let n=e;n<0&&(n=0);const{params:r,snapGrid:s,slidesGrid:c,previousIndex:u,activeIndex:p,rtlTranslate:b,wrapperEl:d,enabled:g}=o;if(o.animating&&r.preventInteractionOnTransition||!g&&!l&&!i)return!1;const m=Math.min(o.params.slidesPerGroupSkip,n);let y=m+Math.floor((n-m)/o.params.slidesPerGroup);y>=s.length&&(y=s.length-1);const f=-s[y];if(r.normalizeSlideIndex)for(let e=0;e<c.length;e+=1){const t=-Math.floor(100*f),a=Math.floor(100*c[e]),l=Math.floor(100*c[e+1]);void 0!==c[e+1]?t>=a&&t<l-(l-a)/2?n=e:t>=a&&t<l&&(n=e+1):t>=a&&(n=e)}if(o.initialized&&n!==p){if(!o.allowSlideNext&&f<o.translate&&f<o.minTranslate())return!1;if(!o.allowSlidePrev&&f>o.translate&&f>o.maxTranslate()&&(p||0)!==n)return!1}let h;if(n!==(u||0)&&a&&o.emit("beforeSlideChangeStart"),o.updateProgress(f),h=n>p?"next":n<p?"prev":"reset",b&&-f===o.translate||!b&&f===o.translate)return o.updateActiveIndex(n),r.autoHeight&&o.updateAutoHeight(),o.updateSlidesClasses(),"slide"!==r.effect&&o.setTranslate(f),"reset"!==h&&(o.transitionStart(a,h),o.transitionEnd(a,h)),!1;if(r.cssMode){const e=o.isHorizontal(),a=b?f:-f;if(0===t){const t=o.virtual&&o.params.virtual.enabled;t&&(o.wrapperEl.style.scrollSnapType="none",o._immediateVirtual=!0),d[e?"scrollLeft":"scrollTop"]=a,t&&requestAnimationFrame(()=>{o.wrapperEl.style.scrollSnapType="",o._swiperImmediateVirtual=!1})}else{if(!o.support.smoothScroll)return sP({swiper:o,targetPosition:a,side:e?"left":"top"}),!0;d.scrollTo({[e?"left":"top"]:a,behavior:"smooth"})}return!0}return o.setTransition(t),o.setTranslate(f),o.updateActiveIndex(n),o.updateSlidesClasses(),o.emit("beforeTransitionStart",t,l),o.transitionStart(a,h),0===t?o.transitionEnd(a,h):o.animating||(o.animating=!0,o.onSlideToWrapperTransitionEnd||(o.onSlideToWrapperTransitionEnd=function(e){o&&!o.destroyed&&e.target===this&&(o.$wrapperEl[0].removeEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.$wrapperEl[0].removeEventListener("webkitTransitionEnd",o.onSlideToWrapperTransitionEnd),o.onSlideToWrapperTransitionEnd=null,delete o.onSlideToWrapperTransitionEnd,o.transitionEnd(a,h))}),o.$wrapperEl[0].addEventListener("transitionend",o.onSlideToWrapperTransitionEnd),o.$wrapperEl[0].addEventListener("webkitTransitionEnd",o.onSlideToWrapperTransitionEnd)),!0},slideToLoop:function(e=0,t=this.params.speed,a=!0,l){if("string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}let i=e;return this.params.loop&&(i+=this.loopedSlides),this.slideTo(i,t,a,l)},slideNext:function(e=this.params.speed,t=!0,a){const l=this,{animating:i,enabled:o,params:n}=l;if(!o)return l;let r=n.slidesPerGroup;"auto"===n.slidesPerView&&1===n.slidesPerGroup&&n.slidesPerGroupAuto&&(r=Math.max(l.slidesPerViewDynamic("current",!0),1));const s=l.activeIndex<n.slidesPerGroupSkip?1:r;if(n.loop){if(i&&n.loopPreventsSlide)return!1;l.loopFix(),l._clientLeft=l.$wrapperEl[0].clientLeft}return n.rewind&&l.isEnd?l.slideTo(0,e,t,a):l.slideTo(l.activeIndex+s,e,t,a)},slidePrev:function(e=this.params.speed,t=!0,a){const l=this,{params:i,animating:o,snapGrid:n,slidesGrid:r,rtlTranslate:s,enabled:c}=l;if(!c)return l;if(i.loop){if(o&&i.loopPreventsSlide)return!1;l.loopFix(),l._clientLeft=l.$wrapperEl[0].clientLeft}function u(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const p=u(s?l.translate:-l.translate),b=n.map(e=>u(e));let d=n[b.indexOf(p)-1];if(void 0===d&&i.cssMode){let e;n.forEach((t,a)=>{p>=t&&(e=a)}),void 0!==e&&(d=n[e>0?e-1:e])}let g=0;if(void 0!==d&&(g=r.indexOf(d),g<0&&(g=l.activeIndex-1),"auto"===i.slidesPerView&&1===i.slidesPerGroup&&i.slidesPerGroupAuto&&(g=g-l.slidesPerViewDynamic("previous",!0)+1,g=Math.max(g,0))),i.rewind&&l.isBeginning){const i=l.params.virtual&&l.params.virtual.enabled&&l.virtual?l.virtual.slides.length-1:l.slides.length-1;return l.slideTo(i,e,t,a)}return l.slideTo(g,e,t,a)},slideReset:function(e=this.params.speed,t=!0,a){return this.slideTo(this.activeIndex,e,t,a)},slideToClosest:function(e=this.params.speed,t=!0,a,l=.5){const i=this;let o=i.activeIndex;const n=Math.min(i.params.slidesPerGroupSkip,o),r=n+Math.floor((o-n)/i.params.slidesPerGroup),s=i.rtlTranslate?i.translate:-i.translate;if(s>=i.snapGrid[r]){const e=i.snapGrid[r];s-e>(i.snapGrid[r+1]-e)*l&&(o+=i.params.slidesPerGroup)}else{const e=i.snapGrid[r-1];s-e<=(i.snapGrid[r]-e)*l&&(o-=i.params.slidesPerGroup)}return o=Math.max(o,0),o=Math.min(o,i.slidesGrid.length-1),i.slideTo(o,e,t,a)},slideToClickedSlide:function(){const e=this,{params:t,$wrapperEl:a}=e,l="auto"===t.slidesPerView?e.slidesPerViewDynamic():t.slidesPerView;let i,o=e.clickedIndex;if(t.loop){if(e.animating)return;i=parseInt(aP(e.clickedSlide).attr("data-swiper-slide-index"),10),t.centeredSlides?o<e.loopedSlides-l/2||o>e.slides.length-e.loopedSlides+l/2?(e.loopFix(),o=a.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),lP(()=>{e.slideTo(o)})):e.slideTo(o):o>e.slides.length-l?(e.loopFix(),o=a.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),lP(()=>{e.slideTo(o)})):e.slideTo(o)}else e.slideTo(o)}},loop:{loopCreate:function(){const e=this,t=qk(),{params:a,$wrapperEl:l}=e,i=l.children().length>0?aP(l.children()[0].parentNode):l;i.children(`.${a.slideClass}.${a.slideDuplicateClass}`).remove();let o=i.children("."+a.slideClass);if(a.loopFillGroupWithBlank){const e=a.slidesPerGroup-o.length%a.slidesPerGroup;if(e!==a.slidesPerGroup){for(let l=0;l<e;l+=1){const e=aP(t.createElement("div")).addClass(`${a.slideClass} ${a.slideBlankClass}`);i.append(e)}o=i.children("."+a.slideClass)}}"auto"!==a.slidesPerView||a.loopedSlides||(a.loopedSlides=o.length),e.loopedSlides=Math.ceil(parseFloat(a.loopedSlides||a.slidesPerView,10)),e.loopedSlides+=a.loopAdditionalSlides,e.loopedSlides>o.length&&e.params.loopedSlidesLimit&&(e.loopedSlides=o.length);const n=[],r=[];o.each((e,t)=>{aP(e).attr("data-swiper-slide-index",t)});for(let t=0;t<e.loopedSlides;t+=1){const e=t-Math.floor(t/o.length)*o.length;r.push(o.eq(e)[0]),n.unshift(o.eq(o.length-e-1)[0])}for(let e=0;e<r.length;e+=1)i.append(aP(r[e].cloneNode(!0)).addClass(a.slideDuplicateClass));for(let e=n.length-1;e>=0;e-=1)i.prepend(aP(n[e].cloneNode(!0)).addClass(a.slideDuplicateClass))},loopFix:function(){const e=this;e.emit("beforeLoopFix");const{activeIndex:t,slides:a,loopedSlides:l,allowSlidePrev:i,allowSlideNext:o,snapGrid:n,rtlTranslate:r}=e;let s;e.allowSlidePrev=!0,e.allowSlideNext=!0;const c=-n[t]-e.getTranslate();t<l?(s=a.length-3*l+t,s+=l,e.slideTo(s,0,!1,!0)&&0!==c&&e.setTranslate((r?-e.translate:e.translate)-c)):t>=a.length-l&&(s=-a.length+t+l,s+=l,e.slideTo(s,0,!1,!0)&&0!==c&&e.setTranslate((r?-e.translate:e.translate)-c)),e.allowSlidePrev=i,e.allowSlideNext=o,e.emit("loopFix")},loopDestroy:function(){const{$wrapperEl:e,params:t,slides:a}=this;e.children(`.${t.slideClass}.${t.slideDuplicateClass},.${t.slideClass}.${t.slideBlankClass}`).remove(),a.removeAttr("data-swiper-slide-index")}},grabCursor:{setGrabCursor:function(e){if(this.support.touch||!this.params.simulateTouch||this.params.watchOverflow&&this.isLocked||this.params.cssMode)return;const t="container"===this.params.touchEventsTarget?this.el:this.wrapperEl;t.style.cursor="move",t.style.cursor=e?"grabbing":"grab"},unsetGrabCursor:function(){this.support.touch||this.params.watchOverflow&&this.isLocked||this.params.cssMode||(this["container"===this.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="")}},events:{attachEvents:function(){const e=qk(),{params:t,support:a}=this;this.onTouchStart=gP.bind(this),this.onTouchMove=mP.bind(this),this.onTouchEnd=yP.bind(this),t.cssMode&&(this.onScroll=vP.bind(this)),this.onClick=hP.bind(this),a.touch&&!_P&&(e.addEventListener("touchstart",TP),_P=!0),CP(this,"on")},detachEvents:function(){CP(this,"off")}},breakpoints:{setBreakpoint:function(){const e=this,{activeIndex:t,initialized:a,loopedSlides:l=0,params:i,$el:o}=e,n=i.breakpoints;if(!n||n&&0===Object.keys(n).length)return;const r=e.getBreakpoint(n,e.params.breakpointsBase,e.el);if(!r||e.currentBreakpoint===r)return;const s=(r in n?n[r]:void 0)||e.originalParams,c=SP(e,i),u=SP(e,s),p=i.enabled;c&&!u?(o.removeClass(`${i.containerModifierClass}grid ${i.containerModifierClass}grid-column`),e.emitContainerClasses()):!c&&u&&(o.addClass(i.containerModifierClass+"grid"),(s.grid.fill&&"column"===s.grid.fill||!s.grid.fill&&"column"===i.grid.fill)&&o.addClass(i.containerModifierClass+"grid-column"),e.emitContainerClasses()),["navigation","pagination","scrollbar"].forEach(t=>{const a=i[t]&&i[t].enabled,l=s[t]&&s[t].enabled;a&&!l&&e[t].disable(),!a&&l&&e[t].enable()});const b=s.direction&&s.direction!==i.direction,d=i.loop&&(s.slidesPerView!==i.slidesPerView||b);b&&a&&e.changeDirection(),nP(e.params,s);const g=e.params.enabled;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),p&&!g?e.disable():!p&&g&&e.enable(),e.currentBreakpoint=r,e.emit("_beforeBreakpoint",s),d&&a&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(t-l+e.loopedSlides,0,!1)),e.emit("breakpoint",s)},getBreakpoint:function(e,t="window",a){if(!e||"container"===t&&!a)return;let l=!1;const i=$k(),o="window"===t?i.innerHeight:a.clientHeight,n=Object.keys(e).map(e=>{if("string"==typeof e&&0===e.indexOf("@")){const t=parseFloat(e.substr(1));return{value:o*t,point:e}}return{value:e,point:e}});n.sort((e,t)=>parseInt(e.value,10)-parseInt(t.value,10));for(let e=0;e<n.length;e+=1){const{point:o,value:r}=n[e];"window"===t?i.matchMedia(`(min-width: ${r}px)`).matches&&(l=o):r<=a.clientWidth&&(l=o)}return l||"max"}},checkOverflow:{checkOverflow:function(){const e=this,{isLocked:t,params:a}=e,{slidesOffsetBefore:l}=a;if(l){const t=e.slides.length-1,a=e.slidesGrid[t]+e.slidesSizesGrid[t]+2*l;e.isLocked=e.size>a}else e.isLocked=1===e.snapGrid.length;!0===a.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===a.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),t&&t!==e.isLocked&&(e.isEnd=!1),t!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:{addClasses:function(){const{classNames:e,params:t,rtl:a,$el:l,device:i,support:o}=this,n=function(e,t){const a=[];return e.forEach(e=>{"object"==typeof e?Object.keys(e).forEach(l=>{e[l]&&a.push(t+l)}):"string"==typeof e&&a.push(t+e)}),a}(["initialized",t.direction,{"pointer-events":!o.touch},{"free-mode":this.params.freeMode&&t.freeMode.enabled},{autoheight:t.autoHeight},{rtl:a},{grid:t.grid&&t.grid.rows>1},{"grid-column":t.grid&&t.grid.rows>1&&"column"===t.grid.fill},{android:i.android},{ios:i.ios},{"css-mode":t.cssMode},{centered:t.cssMode&&t.centeredSlides},{"watch-progress":t.watchSlidesProgress}],t.containerModifierClass);e.push(...n),l.addClass([...e].join(" ")),this.emitContainerClasses()},removeClasses:function(){const{$el:e,classNames:t}=this;e.removeClass(t.join(" ")),this.emitContainerClasses()}},images:{loadImage:function(e,t,a,l,i,o){const n=$k();let r;function s(){o&&o()}aP(e).parent("picture")[0]||e.complete&&i?s():t?(r=new n.Image,r.onload=s,r.onerror=s,l&&(r.sizes=l),a&&(r.srcset=a),t&&(r.src=t)):s()},preloadImages:function(){const e=this;function t(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(let a=0;a<e.imagesToLoad.length;a+=1){const l=e.imagesToLoad[a];e.loadImage(l,l.currentSrc||l.getAttribute("src"),l.srcset||l.getAttribute("srcset"),l.sizes||l.getAttribute("sizes"),!0,t)}}}},xP={};class AP{constructor(...e){let t,a;if(1===e.length&&e[0].constructor&&"Object"===Object.prototype.toString.call(e[0]).slice(8,-1)?a=e[0]:[t,a]=e,a||(a={}),a=nP({},a),t&&!a.el&&(a.el=t),a.el&&aP(a.el).length>1){const e=[];return aP(a.el).each(t=>{const l=nP({},a,{el:t});e.push(new AP(l))}),e}const l=this;l.__swiper__=!0,l.support=bP(),l.device=function(e={}){return uP||(uP=function({userAgent:e}={}){const t=bP(),a=$k(),l=a.navigator.platform,i=e||a.navigator.userAgent,o={ios:!1,android:!1},n=a.screen.width,r=a.screen.height,s=i.match(/(Android);?[\s\/]+([\d.]+)?/);let c=i.match(/(iPad).*OS\s([\d_]+)/);const u=i.match(/(iPod)(.*OS\s([\d_]+))?/),p=!c&&i.match(/(iPhone\sOS|iOS)\s([\d_]+)/),b="Win32"===l;let d="MacIntel"===l;return!c&&d&&t.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${n}x${r}`)>=0&&(c=i.match(/(Version)\/([\d.]+)/),c||(c=[0,1,"13_0_0"]),d=!1),s&&!b&&(o.os="android",o.android=!0),(c||p||u)&&(o.os="ios",o.ios=!0),o}(e)),uP}({userAgent:a.userAgent}),l.browser=(pP||(pP=function(){const e=$k();return{isSafari:function(){const t=e.navigator.userAgent.toLowerCase();return t.indexOf("safari")>=0&&t.indexOf("chrome")<0&&t.indexOf("android")<0}(),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),pP),l.eventsListeners={},l.eventsAnyListeners=[],l.modules=[...l.__modules__],a.modules&&Array.isArray(a.modules)&&l.modules.push(...a.modules);const i={};l.modules.forEach(e=>{e({swiper:l,extendParams:kP(a,i),on:l.on.bind(l),once:l.once.bind(l),off:l.off.bind(l),emit:l.emit.bind(l)})});const o=nP({},wP,i);return l.params=nP({},o,xP,a),l.originalParams=nP({},l.params),l.passedParams=nP({},a),l.params&&l.params.on&&Object.keys(l.params.on).forEach(e=>{l.on(e,l.params.on[e])}),l.params&&l.params.onAny&&l.onAny(l.params.onAny),l.$=aP,Object.assign(l,{enabled:l.params.enabled,el:t,classNames:[],slides:aP(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===l.params.direction,isVertical:()=>"vertical"===l.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:l.params.allowSlideNext,allowSlidePrev:l.params.allowSlidePrev,touchEvents:function(){const e=["touchstart","touchmove","touchend","touchcancel"],t=["pointerdown","pointermove","pointerup"];return l.touchEventsTouch={start:e[0],move:e[1],end:e[2],cancel:e[3]},l.touchEventsDesktop={start:t[0],move:t[1],end:t[2]},l.support.touch||!l.params.simulateTouch?l.touchEventsTouch:l.touchEventsDesktop}(),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:l.params.focusableElements,lastClickTime:iP(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:l.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),l.emit("_swiper"),l.params.init&&l.init(),l}enable(){this.enabled||(this.enabled=!0,this.params.grabCursor&&this.setGrabCursor(),this.emit("enable"))}disable(){this.enabled&&(this.enabled=!1,this.params.grabCursor&&this.unsetGrabCursor(),this.emit("disable"))}setProgress(e,t){e=Math.min(Math.max(e,0),1);const a=this.minTranslate(),l=(this.maxTranslate()-a)*e+a;this.translateTo(l,void 0===t?0:t),this.updateActiveIndex(),this.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=e.el.className.split(" ").filter(t=>0===t.indexOf("swiper")||0===t.indexOf(e.params.containerModifierClass));e.emit("_containerClasses",t.join(" "))}getSlideClasses(e){const t=this;return t.destroyed?"":e.className.split(" ").filter(e=>0===e.indexOf("swiper-slide")||0===e.indexOf(t.params.slideClass)).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=[];e.slides.each(a=>{const l=e.getSlideClasses(a);t.push({slideEl:a,classNames:l}),e.emit("_slideClass",a,l)}),e.emit("_slideClasses",t)}slidesPerViewDynamic(e="current",t=!1){const{params:a,slides:l,slidesGrid:i,slidesSizesGrid:o,size:n,activeIndex:r}=this;let s=1;if(a.centeredSlides){let e,t=l[r].swiperSlideSize;for(let a=r+1;a<l.length;a+=1)l[a]&&!e&&(t+=l[a].swiperSlideSize,s+=1,t>n&&(e=!0));for(let a=r-1;a>=0;a-=1)l[a]&&!e&&(t+=l[a].swiperSlideSize,s+=1,t>n&&(e=!0))}else if("current"===e)for(let e=r+1;e<l.length;e+=1)(t?i[e]+o[e]-i[r]<n:i[e]-i[r]<n)&&(s+=1);else for(let e=r-1;e>=0;e-=1)i[r]-i[e]<n&&(s+=1);return s}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:t,params:a}=e;function l(){const t=e.rtlTranslate?-1*e.translate:e.translate,a=Math.min(Math.max(t,e.maxTranslate()),e.minTranslate());e.setTranslate(a),e.updateActiveIndex(),e.updateSlidesClasses()}let i;a.breakpoints&&e.setBreakpoint(),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.params.freeMode&&e.params.freeMode.enabled?(l(),e.params.autoHeight&&e.updateAutoHeight()):(i=("auto"===e.params.slidesPerView||e.params.slidesPerView>1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),i||l()),a.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,t=!0){const a=this.params.direction;return e||(e="horizontal"===a?"vertical":"horizontal"),e===a||"horizontal"!==e&&"vertical"!==e||(this.$el.removeClass(`${this.params.containerModifierClass}${a}`).addClass(`${this.params.containerModifierClass}${e}`),this.emitContainerClasses(),this.params.direction=e,this.slides.each(t=>{"vertical"===e?t.style.width="":t.style.height=""}),this.emit("changeDirection"),t&&this.update()),this}changeLanguageDirection(e){this.rtl&&"rtl"===e||!this.rtl&&"ltr"===e||(this.rtl="rtl"===e,this.rtlTranslate="horizontal"===this.params.direction&&this.rtl,this.rtl?(this.$el.addClass(this.params.containerModifierClass+"rtl"),this.el.dir="rtl"):(this.$el.removeClass(this.params.containerModifierClass+"rtl"),this.el.dir="ltr"),this.update())}mount(e){const t=this;if(t.mounted)return!0;const a=aP(e||t.params.el);if(!(e=a[0]))return!1;e.swiper=t;const l=()=>"."+(t.params.wrapperClass||"").trim().split(" ").join(".");let i=(()=>{if(e&&e.shadowRoot&&e.shadowRoot.querySelector){const t=aP(e.shadowRoot.querySelector(l()));return t.children=e=>a.children(e),t}return a.children?a.children(l()):aP(a).children(l())})();if(0===i.length&&t.params.createElements){const e=qk().createElement("div");i=aP(e),e.className=t.params.wrapperClass,a.append(e),a.children("."+t.params.slideClass).each(e=>{i.append(e)})}return Object.assign(t,{$el:a,el:e,$wrapperEl:i,wrapperEl:i[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===a.css("direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===a.css("direction")),wrongRTL:"-webkit-box"===i.css("display")}),!0}init(e){return this.initialized||!1===this.mount(e)||(this.emit("beforeInit"),this.params.breakpoints&&this.setBreakpoint(),this.addClasses(),this.params.loop&&this.loopCreate(),this.updateSize(),this.updateSlides(),this.params.watchOverflow&&this.checkOverflow(),this.params.grabCursor&&this.enabled&&this.setGrabCursor(),this.params.preloadImages&&this.preloadImages(),this.params.loop?this.slideTo(this.params.initialSlide+this.loopedSlides,0,this.params.runCallbacksOnInit,!1,!0):this.slideTo(this.params.initialSlide,0,this.params.runCallbacksOnInit,!1,!0),this.attachEvents(),this.initialized=!0,this.emit("init"),this.emit("afterInit")),this}destroy(e=!0,t=!0){const a=this,{params:l,$el:i,$wrapperEl:o,slides:n}=a;return void 0===a.params||a.destroyed||(a.emit("beforeDestroy"),a.initialized=!1,a.detachEvents(),l.loop&&a.loopDestroy(),t&&(a.removeClasses(),i.removeAttr("style"),o.removeAttr("style"),n&&n.length&&n.removeClass([l.slideVisibleClass,l.slideActiveClass,l.slideNextClass,l.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),a.emit("destroy"),Object.keys(a.eventsListeners).forEach(e=>{a.off(e)}),!1!==e&&(a.$el[0].swiper=null,function(e){const t=e;Object.keys(t).forEach(e=>{try{t[e]=null}catch(e){}try{delete t[e]}catch(e){}})}(a)),a.destroyed=!0),null}static extendDefaults(e){nP(xP,e)}static get extendedDefaults(){return xP}static get defaults(){return wP}static installModule(e){AP.prototype.__modules__||(AP.prototype.__modules__=[]);const t=AP.prototype.__modules__;"function"==typeof e&&t.indexOf(e)<0&&t.push(e)}static use(e){return Array.isArray(e)?(e.forEach(e=>AP.installModule(e)),AP):(AP.installModule(e),AP)}}Object.keys(PP).forEach(e=>{Object.keys(PP[e]).forEach(t=>{AP.prototype[t]=PP[e][t]})}),AP.use([function({swiper:e,on:t,emit:a}){const l=$k();let i=null,o=null;const n=()=>{e&&!e.destroyed&&e.initialized&&(a("beforeResize"),a("resize"))},r=()=>{e&&!e.destroyed&&e.initialized&&a("orientationchange")};t("init",()=>{e.params.resizeObserver&&void 0!==l.ResizeObserver?e&&!e.destroyed&&e.initialized&&(i=new ResizeObserver(t=>{o=l.requestAnimationFrame(()=>{const{width:a,height:l}=e;let i=a,o=l;t.forEach(({contentBoxSize:t,contentRect:a,target:l})=>{l&&l!==e.el||(i=a?a.width:(t[0]||t).inlineSize,o=a?a.height:(t[0]||t).blockSize)}),i===a&&o===l||n()})}),i.observe(e.el)):(l.addEventListener("resize",n),l.addEventListener("orientationchange",r))}),t("destroy",()=>{o&&l.cancelAnimationFrame(o),i&&i.unobserve&&e.el&&(i.unobserve(e.el),i=null),l.removeEventListener("resize",n),l.removeEventListener("orientationchange",r)})},function({swiper:e,extendParams:t,on:a,emit:l}){const i=[],o=$k(),n=(e,t={})=>{const a=new(o.MutationObserver||o.WebkitMutationObserver)(e=>{if(1===e.length)return void l("observerUpdate",e[0]);const t=function(){l("observerUpdate",e[0])};o.requestAnimationFrame?o.requestAnimationFrame(t):o.setTimeout(t,0)});a.observe(e,{attributes:void 0===t.attributes||t.attributes,childList:void 0===t.childList||t.childList,characterData:void 0===t.characterData||t.characterData}),i.push(a)};t({observer:!1,observeParents:!1,observeSlideChildren:!1}),a("init",()=>{if(e.params.observer){if(e.params.observeParents){const t=e.$el.parents();for(let e=0;e<t.length;e+=1)n(t[e])}n(e.$el[0],{childList:e.params.observeSlideChildren}),n(e.$wrapperEl[0],{attributes:!1})}}),a("destroy",()=>{i.forEach(e=>{e.disconnect()}),i.splice(0,i.length)})}]);var GP=AP;function MP(e,t,a,l){const i=qk();return e.params.createElements&&Object.keys(l).forEach(o=>{if(!a[o]&&!0===a.auto){let n=e.$el.children("."+l[o])[0];n||(n=i.createElement("div"),n.className=l[o],e.$el.append(n)),a[o]=n,t[o]=n}}),a}function RP({swiper:e,extendParams:t,on:a,emit:l}){function i(t){let a;return t&&(a=aP(t),e.params.uniqueNavElements&&"string"==typeof t&&a.length>1&&1===e.$el.find(t).length&&(a=e.$el.find(t))),a}function o(t,a){const l=e.params.navigation;t&&t.length>0&&(t[a?"addClass":"removeClass"](l.disabledClass),t[0]&&"BUTTON"===t[0].tagName&&(t[0].disabled=a),e.params.watchOverflow&&e.enabled&&t[e.isLocked?"addClass":"removeClass"](l.lockClass))}function n(){if(e.params.loop)return;const{$nextEl:t,$prevEl:a}=e.navigation;o(a,e.isBeginning&&!e.params.rewind),o(t,e.isEnd&&!e.params.rewind)}function r(t){t.preventDefault(),(!e.isBeginning||e.params.loop||e.params.rewind)&&(e.slidePrev(),l("navigationPrev"))}function s(t){t.preventDefault(),(!e.isEnd||e.params.loop||e.params.rewind)&&(e.slideNext(),l("navigationNext"))}function c(){const t=e.params.navigation;if(e.params.navigation=MP(e,e.originalParams.navigation,e.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!t.nextEl&&!t.prevEl)return;const a=i(t.nextEl),l=i(t.prevEl);a&&a.length>0&&a.on("click",s),l&&l.length>0&&l.on("click",r),Object.assign(e.navigation,{$nextEl:a,nextEl:a&&a[0],$prevEl:l,prevEl:l&&l[0]}),e.enabled||(a&&a.addClass(t.lockClass),l&&l.addClass(t.lockClass))}function u(){const{$nextEl:t,$prevEl:a}=e.navigation;t&&t.length&&(t.off("click",s),t.removeClass(e.params.navigation.disabledClass)),a&&a.length&&(a.off("click",r),a.removeClass(e.params.navigation.disabledClass))}t({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock",navigationDisabledClass:"swiper-navigation-disabled"}}),e.navigation={nextEl:null,$nextEl:null,prevEl:null,$prevEl:null},a("init",()=>{!1===e.params.navigation.enabled?p():(c(),n())}),a("toEdge fromEdge lock unlock",()=>{n()}),a("destroy",()=>{u()}),a("enable disable",()=>{const{$nextEl:t,$prevEl:a}=e.navigation;t&&t[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass),a&&a[e.enabled?"removeClass":"addClass"](e.params.navigation.lockClass)}),a("click",(t,a)=>{const{$nextEl:i,$prevEl:o}=e.navigation,n=a.target;if(e.params.navigation.hideOnClick&&!aP(n).is(o)&&!aP(n).is(i)){if(e.pagination&&e.params.pagination&&e.params.pagination.clickable&&(e.pagination.el===n||e.pagination.el.contains(n)))return;let t;i?t=i.hasClass(e.params.navigation.hiddenClass):o&&(t=o.hasClass(e.params.navigation.hiddenClass)),l(!0===t?"navigationShow":"navigationHide"),i&&i.toggleClass(e.params.navigation.hiddenClass),o&&o.toggleClass(e.params.navigation.hiddenClass)}});const p=()=>{e.$el.addClass(e.params.navigation.navigationDisabledClass),u()};Object.assign(e.navigation,{enable:()=>{e.$el.removeClass(e.params.navigation.navigationDisabledClass),c(),n()},disable:p,update:n,init:c,destroy:u})}function BP(e=""){return"."+e.trim().replace(/([\.:!\/])/g,"\\$1").replace(/ /g,".")}function UP({swiper:e,extendParams:t,on:a,emit:l}){const i="swiper-pagination";let o;t({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:e=>e,formatFractionTotal:e=>e,bulletClass:i+"-bullet",bulletActiveClass:i+"-bullet-active",modifierClass:i+"-",currentClass:i+"-current",totalClass:i+"-total",hiddenClass:i+"-hidden",progressbarFillClass:i+"-progressbar-fill",progressbarOppositeClass:i+"-progressbar-opposite",clickableClass:i+"-clickable",lockClass:i+"-lock",horizontalClass:i+"-horizontal",verticalClass:i+"-vertical",paginationDisabledClass:i+"-disabled"}}),e.pagination={el:null,$el:null,bullets:[]};let n=0;function r(){return!e.params.pagination.el||!e.pagination.el||!e.pagination.$el||0===e.pagination.$el.length}function s(t,a){const{bulletActiveClass:l}=e.params.pagination;t[a]().addClass(`${l}-${a}`)[a]().addClass(`${l}-${a}-${a}`)}function c(){const t=e.rtl,a=e.params.pagination;if(r())return;const i=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,c=e.pagination.$el;let u;const p=e.params.loop?Math.ceil((i-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;if(e.params.loop?(u=Math.ceil((e.activeIndex-e.loopedSlides)/e.params.slidesPerGroup),u>i-1-2*e.loopedSlides&&(u-=i-2*e.loopedSlides),u>p-1&&(u-=p),u<0&&"bullets"!==e.params.paginationType&&(u=p+u)):u=void 0!==e.snapIndex?e.snapIndex:e.activeIndex||0,"bullets"===a.type&&e.pagination.bullets&&e.pagination.bullets.length>0){const l=e.pagination.bullets;let i,r,p;if(a.dynamicBullets&&(o=l.eq(0)[e.isHorizontal()?"outerWidth":"outerHeight"](!0),c.css(e.isHorizontal()?"width":"height",o*(a.dynamicMainBullets+4)+"px"),a.dynamicMainBullets>1&&void 0!==e.previousIndex&&(n+=u-(e.previousIndex-e.loopedSlides||0),n>a.dynamicMainBullets-1?n=a.dynamicMainBullets-1:n<0&&(n=0)),i=Math.max(u-n,0),r=i+(Math.min(l.length,a.dynamicMainBullets)-1),p=(r+i)/2),l.removeClass(["","-next","-next-next","-prev","-prev-prev","-main"].map(e=>`${a.bulletActiveClass}${e}`).join(" ")),c.length>1)l.each(e=>{const t=aP(e),l=t.index();l===u&&t.addClass(a.bulletActiveClass),a.dynamicBullets&&(l>=i&&l<=r&&t.addClass(a.bulletActiveClass+"-main"),l===i&&s(t,"prev"),l===r&&s(t,"next"))});else{const t=l.eq(u),o=t.index();if(t.addClass(a.bulletActiveClass),a.dynamicBullets){const t=l.eq(i),n=l.eq(r);for(let e=i;e<=r;e+=1)l.eq(e).addClass(a.bulletActiveClass+"-main");if(e.params.loop)if(o>=l.length){for(let e=a.dynamicMainBullets;e>=0;e-=1)l.eq(l.length-e).addClass(a.bulletActiveClass+"-main");l.eq(l.length-a.dynamicMainBullets-1).addClass(a.bulletActiveClass+"-prev")}else s(t,"prev"),s(n,"next");else s(t,"prev"),s(n,"next")}}if(a.dynamicBullets){const i=Math.min(l.length,a.dynamicMainBullets+4),n=(o*i-o)/2-p*o,r=t?"right":"left";l.css(e.isHorizontal()?r:"top",n+"px")}}if("fraction"===a.type&&(c.find(BP(a.currentClass)).text(a.formatFractionCurrent(u+1)),c.find(BP(a.totalClass)).text(a.formatFractionTotal(p))),"progressbar"===a.type){let t;t=a.progressbarOpposite?e.isHorizontal()?"vertical":"horizontal":e.isHorizontal()?"horizontal":"vertical";const l=(u+1)/p;let i=1,o=1;"horizontal"===t?i=l:o=l,c.find(BP(a.progressbarFillClass)).transform(`translate3d(0,0,0) scaleX(${i}) scaleY(${o})`).transition(e.params.speed)}"custom"===a.type&&a.renderCustom?(c.html(a.renderCustom(e,u+1,p)),l("paginationRender",c[0])):l("paginationUpdate",c[0]),e.params.watchOverflow&&e.enabled&&c[e.isLocked?"addClass":"removeClass"](a.lockClass)}function u(){const t=e.params.pagination;if(r())return;const a=e.virtual&&e.params.virtual.enabled?e.virtual.slides.length:e.slides.length,i=e.pagination.$el;let o="";if("bullets"===t.type){let l=e.params.loop?Math.ceil((a-2*e.loopedSlides)/e.params.slidesPerGroup):e.snapGrid.length;e.params.freeMode&&e.params.freeMode.enabled&&!e.params.loop&&l>a&&(l=a);for(let a=0;a<l;a+=1)t.renderBullet?o+=t.renderBullet.call(e,a,t.bulletClass):o+=`<${t.bulletElement} class="${t.bulletClass}"></${t.bulletElement}>`;i.html(o),e.pagination.bullets=i.find(BP(t.bulletClass))}"fraction"===t.type&&(o=t.renderFraction?t.renderFraction.call(e,t.currentClass,t.totalClass):`<span class="${t.currentClass}"></span> / <span class="${t.totalClass}"></span>`,i.html(o)),"progressbar"===t.type&&(o=t.renderProgressbar?t.renderProgressbar.call(e,t.progressbarFillClass):`<span class="${t.progressbarFillClass}"></span>`,i.html(o)),"custom"!==t.type&&l("paginationRender",e.pagination.$el[0])}function p(){e.params.pagination=MP(e,e.originalParams.pagination,e.params.pagination,{el:"swiper-pagination"});const t=e.params.pagination;if(!t.el)return;let a=aP(t.el);0!==a.length&&(e.params.uniqueNavElements&&"string"==typeof t.el&&a.length>1&&(a=e.$el.find(t.el),a.length>1&&(a=a.filter(t=>aP(t).parents(".swiper")[0]===e.el))),"bullets"===t.type&&t.clickable&&a.addClass(t.clickableClass),a.addClass(t.modifierClass+t.type),a.addClass(e.isHorizontal()?t.horizontalClass:t.verticalClass),"bullets"===t.type&&t.dynamicBullets&&(a.addClass(`${t.modifierClass}${t.type}-dynamic`),n=0,t.dynamicMainBullets<1&&(t.dynamicMainBullets=1)),"progressbar"===t.type&&t.progressbarOpposite&&a.addClass(t.progressbarOppositeClass),t.clickable&&a.on("click",BP(t.bulletClass),(function(t){t.preventDefault();let a=aP(this).index()*e.params.slidesPerGroup;e.params.loop&&(a+=e.loopedSlides),e.slideTo(a)})),Object.assign(e.pagination,{$el:a,el:a[0]}),e.enabled||a.addClass(t.lockClass))}function b(){const t=e.params.pagination;if(r())return;const a=e.pagination.$el;a.removeClass(t.hiddenClass),a.removeClass(t.modifierClass+t.type),a.removeClass(e.isHorizontal()?t.horizontalClass:t.verticalClass),e.pagination.bullets&&e.pagination.bullets.removeClass&&e.pagination.bullets.removeClass(t.bulletActiveClass),t.clickable&&a.off("click",BP(t.bulletClass))}a("init",()=>{!1===e.params.pagination.enabled?d():(p(),u(),c())}),a("activeIndexChange",()=>{(e.params.loop||void 0===e.snapIndex)&&c()}),a("snapIndexChange",()=>{e.params.loop||c()}),a("slidesLengthChange",()=>{e.params.loop&&(u(),c())}),a("snapGridLengthChange",()=>{e.params.loop||(u(),c())}),a("destroy",()=>{b()}),a("enable disable",()=>{const{$el:t}=e.pagination;t&&t[e.enabled?"removeClass":"addClass"](e.params.pagination.lockClass)}),a("lock unlock",()=>{c()}),a("click",(t,a)=>{const i=a.target,{$el:o}=e.pagination;if(e.params.pagination.el&&e.params.pagination.hideOnClick&&o&&o.length>0&&!aP(i).hasClass(e.params.pagination.bulletClass)){if(e.navigation&&(e.navigation.nextEl&&i===e.navigation.nextEl||e.navigation.prevEl&&i===e.navigation.prevEl))return;const t=o.hasClass(e.params.pagination.hiddenClass);l(!0===t?"paginationShow":"paginationHide"),o.toggleClass(e.params.pagination.hiddenClass)}});const d=()=>{e.$el.addClass(e.params.pagination.paginationDisabledClass),e.pagination.$el&&e.pagination.$el.addClass(e.params.pagination.paginationDisabledClass),b()};Object.assign(e.pagination,{enable:()=>{e.$el.removeClass(e.params.pagination.paginationDisabledClass),e.pagination.$el&&e.pagination.$el.removeClass(e.params.pagination.paginationDisabledClass),p(),u(),c()},disable:d,render:u,update:c,init:p,destroy:b})}function EP({swiper:e,extendParams:t,on:a,emit:l}){t({lazy:{checkInView:!1,enabled:!1,loadPrevNext:!1,loadPrevNextAmount:1,loadOnTransitionStart:!1,scrollingElement:"",elementClass:"swiper-lazy",loadingClass:"swiper-lazy-loading",loadedClass:"swiper-lazy-loaded",preloaderClass:"swiper-lazy-preloader"}}),e.lazy={};let i=!1,o=!1;function n(t,a=!0){const i=e.params.lazy;if(void 0===t)return;if(0===e.slides.length)return;const o=e.virtual&&e.params.virtual.enabled?e.$wrapperEl.children(`.${e.params.slideClass}[data-swiper-slide-index="${t}"]`):e.slides.eq(t),r=o.find(`.${i.elementClass}:not(.${i.loadedClass}):not(.${i.loadingClass})`);!o.hasClass(i.elementClass)||o.hasClass(i.loadedClass)||o.hasClass(i.loadingClass)||r.push(o[0]),0!==r.length&&r.each(t=>{const r=aP(t);r.addClass(i.loadingClass);const s=r.attr("data-background"),c=r.attr("data-src"),u=r.attr("data-srcset"),p=r.attr("data-sizes"),b=r.parent("picture");e.loadImage(r[0],c||s,u,p,!1,()=>{if(null!=e&&e&&(!e||e.params)&&!e.destroyed){if(s?(r.css("background-image",`url("${s}")`),r.removeAttr("data-background")):(u&&(r.attr("srcset",u),r.removeAttr("data-srcset")),p&&(r.attr("sizes",p),r.removeAttr("data-sizes")),b.length&&b.children("source").each(e=>{const t=aP(e);t.attr("data-srcset")&&(t.attr("srcset",t.attr("data-srcset")),t.removeAttr("data-srcset"))}),c&&(r.attr("src",c),r.removeAttr("data-src"))),r.addClass(i.loadedClass).removeClass(i.loadingClass),o.find("."+i.preloaderClass).remove(),e.params.loop&&a){const t=o.attr("data-swiper-slide-index");o.hasClass(e.params.slideDuplicateClass)?n(e.$wrapperEl.children(`[data-swiper-slide-index="${t}"]:not(.${e.params.slideDuplicateClass})`).index(),!1):n(e.$wrapperEl.children(`.${e.params.slideDuplicateClass}[data-swiper-slide-index="${t}"]`).index(),!1)}l("lazyImageReady",o[0],r[0]),e.params.autoHeight&&e.updateAutoHeight()}}),l("lazyImageLoad",o[0],r[0])})}function r(){const{$wrapperEl:t,params:a,slides:l,activeIndex:i}=e,r=e.virtual&&a.virtual.enabled,s=a.lazy;let c=a.slidesPerView;function u(e){if(r){if(t.children(`.${a.slideClass}[data-swiper-slide-index="${e}"]`).length)return!0}else if(l[e])return!0;return!1}function p(e){return r?aP(e).attr("data-swiper-slide-index"):aP(e).index()}if("auto"===c&&(c=0),o||(o=!0),e.params.watchSlidesProgress)t.children("."+a.slideVisibleClass).each(e=>{n(r?aP(e).attr("data-swiper-slide-index"):aP(e).index())});else if(c>1)for(let e=i;e<i+c;e+=1)u(e)&&n(e);else n(i);if(s.loadPrevNext)if(c>1||s.loadPrevNextAmount&&s.loadPrevNextAmount>1){const e=s.loadPrevNextAmount,t=Math.ceil(c),a=Math.min(i+t+Math.max(e,t),l.length),o=Math.max(i-Math.max(t,e),0);for(let e=i+t;e<a;e+=1)u(e)&&n(e);for(let e=o;e<i;e+=1)u(e)&&n(e)}else{const e=t.children("."+a.slideNextClass);e.length>0&&n(p(e));const l=t.children("."+a.slidePrevClass);l.length>0&&n(p(l))}}function s(){const t=$k();if(!e||e.destroyed)return;const a=e.params.lazy.scrollingElement?aP(e.params.lazy.scrollingElement):aP(t),l=a[0]===t,o=l?t.innerWidth:a[0].offsetWidth,n=l?t.innerHeight:a[0].offsetHeight,c=e.$el.offset(),{rtlTranslate:u}=e;let p=!1;u&&(c.left-=e.$el[0].scrollLeft);const b=[[c.left,c.top],[c.left+e.width,c.top],[c.left,c.top+e.height],[c.left+e.width,c.top+e.height]];for(let e=0;e<b.length;e+=1){const t=b[e];if(t[0]>=0&&t[0]<=o&&t[1]>=0&&t[1]<=n){if(0===t[0]&&0===t[1])continue;p=!0}}const d=!("touchstart"!==e.touchEvents.start||!e.support.passiveListener||!e.params.passiveListeners)&&{passive:!0,capture:!1};p?(r(),a.off("scroll",s,d)):i||(i=!0,a.on("scroll",s,d))}a("beforeInit",()=>{e.params.lazy.enabled&&e.params.preloadImages&&(e.params.preloadImages=!1)}),a("init",()=>{e.params.lazy.enabled&&(e.params.lazy.checkInView?s():r())}),a("scroll",()=>{e.params.freeMode&&e.params.freeMode.enabled&&!e.params.freeMode.sticky&&r()}),a("scrollbarDragMove resize _freeModeNoMomentumRelease",()=>{e.params.lazy.enabled&&(e.params.lazy.checkInView?s():r())}),a("transitionStart",()=>{e.params.lazy.enabled&&(e.params.lazy.loadOnTransitionStart||!e.params.lazy.loadOnTransitionStart&&!o)&&(e.params.lazy.checkInView?s():r())}),a("transitionEnd",()=>{e.params.lazy.enabled&&!e.params.lazy.loadOnTransitionStart&&(e.params.lazy.checkInView?s():r())}),a("slideChange",()=>{const{lazy:t,cssMode:a,watchSlidesProgress:l,touchReleaseOnEdges:i,resistanceRatio:o}=e.params;t.enabled&&(a||l&&(i||0===o))&&r()}),a("destroy",()=>{e.$el&&e.$el.find("."+e.params.lazy.loadingClass).removeClass(e.params.lazy.loadingClass)}),Object.assign(e.lazy,{load:r,loadInSlide:n})}function OP({swiper:e,extendParams:t,on:a,emit:l}){let i;function o(){if(!e.size)return e.autoplay.running=!1,void(e.autoplay.paused=!1);const t=e.slides.eq(e.activeIndex);let a=e.params.autoplay.delay;t.attr("data-swiper-autoplay")&&(a=t.attr("data-swiper-autoplay")||e.params.autoplay.delay),clearTimeout(i),i=lP(()=>{let t;e.params.autoplay.reverseDirection?e.params.loop?(e.loopFix(),t=e.slidePrev(e.params.speed,!0,!0),l("autoplay")):e.isBeginning?e.params.autoplay.stopOnLastSlide?r():(t=e.slideTo(e.slides.length-1,e.params.speed,!0,!0),l("autoplay")):(t=e.slidePrev(e.params.speed,!0,!0),l("autoplay")):e.params.loop?(e.loopFix(),t=e.slideNext(e.params.speed,!0,!0),l("autoplay")):e.isEnd?e.params.autoplay.stopOnLastSlide?r():(t=e.slideTo(0,e.params.speed,!0,!0),l("autoplay")):(t=e.slideNext(e.params.speed,!0,!0),l("autoplay")),(e.params.cssMode&&e.autoplay.running||!1===t)&&o()},a)}function n(){return void 0===i&&!e.autoplay.running&&(e.autoplay.running=!0,l("autoplayStart"),o(),!0)}function r(){return!!e.autoplay.running&&void 0!==i&&(i&&(clearTimeout(i),i=void 0),e.autoplay.running=!1,l("autoplayStop"),!0)}function s(t){e.autoplay.running&&(e.autoplay.paused||(i&&clearTimeout(i),e.autoplay.paused=!0,0!==t&&e.params.autoplay.waitForTransition?["transitionend","webkitTransitionEnd"].forEach(t=>{e.$wrapperEl[0].addEventListener(t,u)}):(e.autoplay.paused=!1,o())))}function c(){const t=qk();"hidden"===t.visibilityState&&e.autoplay.running&&s(),"visible"===t.visibilityState&&e.autoplay.paused&&(o(),e.autoplay.paused=!1)}function u(t){e&&!e.destroyed&&e.$wrapperEl&&t.target===e.$wrapperEl[0]&&(["transitionend","webkitTransitionEnd"].forEach(t=>{e.$wrapperEl[0].removeEventListener(t,u)}),e.autoplay.paused=!1,e.autoplay.running?o():r())}function p(){e.params.autoplay.disableOnInteraction?r():(l("autoplayPause"),s()),["transitionend","webkitTransitionEnd"].forEach(t=>{e.$wrapperEl[0].removeEventListener(t,u)})}function b(){e.params.autoplay.disableOnInteraction||(e.autoplay.paused=!1,l("autoplayResume"),o())}e.autoplay={running:!1,paused:!1},t({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}}),a("init",()=>{e.params.autoplay.enabled&&(n(),qk().addEventListener("visibilitychange",c),e.params.autoplay.pauseOnMouseEnter&&(e.$el.on("mouseenter",p),e.$el.on("mouseleave",b)))}),a("beforeTransitionStart",(t,a,l)=>{e.autoplay.running&&(l||!e.params.autoplay.disableOnInteraction?e.autoplay.pause(a):r())}),a("sliderFirstMove",()=>{e.autoplay.running&&(e.params.autoplay.disableOnInteraction?r():s())}),a("touchEnd",()=>{e.params.cssMode&&e.autoplay.paused&&!e.params.autoplay.disableOnInteraction&&o()}),a("destroy",()=>{e.$el.off("mouseenter",p),e.$el.off("mouseleave",b),e.autoplay.running&&r(),qk().removeEventListener("visibilitychange",c)}),Object.assign(e.autoplay,{pause:s,run:o,start:n,stop:r})}function LP({swiper:e,extendParams:t,on:a}){t({thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"swiper-slide-thumb-active",thumbsContainerClass:"swiper-thumbs"}});let l=!1,i=!1;function o(){const t=e.thumbs.swiper;if(!t||t.destroyed)return;const a=t.clickedIndex,l=t.clickedSlide;if(l&&aP(l).hasClass(e.params.thumbs.slideThumbActiveClass))return;if(null==a)return;let i;if(i=t.params.loop?parseInt(aP(t.clickedSlide).attr("data-swiper-slide-index"),10):a,e.params.loop){let t=e.activeIndex;e.slides.eq(t).hasClass(e.params.slideDuplicateClass)&&(e.loopFix(),e._clientLeft=e.$wrapperEl[0].clientLeft,t=e.activeIndex);const a=e.slides.eq(t).prevAll(`[data-swiper-slide-index="${i}"]`).eq(0).index(),l=e.slides.eq(t).nextAll(`[data-swiper-slide-index="${i}"]`).eq(0).index();i=void 0===a?l:void 0===l?a:l-t<t-a?l:a}e.slideTo(i)}function n(){const{thumbs:t}=e.params;if(l)return!1;l=!0;const a=e.constructor;if(t.swiper instanceof a)e.thumbs.swiper=t.swiper,Object.assign(e.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),Object.assign(e.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1});else if(oP(t.swiper)){const l=Object.assign({},t.swiper);Object.assign(l,{watchSlidesProgress:!0,slideToClickedSlide:!1}),e.thumbs.swiper=new a(l),i=!0}return e.thumbs.swiper.$el.addClass(e.params.thumbs.thumbsContainerClass),e.thumbs.swiper.on("tap",o),!0}function r(t){const a=e.thumbs.swiper;if(!a||a.destroyed)return;const l="auto"===a.params.slidesPerView?a.slidesPerViewDynamic():a.params.slidesPerView;let i=1;const o=e.params.thumbs.slideThumbActiveClass;if(e.params.slidesPerView>1&&!e.params.centeredSlides&&(i=e.params.slidesPerView),e.params.thumbs.multipleActiveThumbs||(i=1),i=Math.floor(i),a.slides.removeClass(o),a.params.loop||a.params.virtual&&a.params.virtual.enabled)for(let t=0;t<i;t+=1)a.$wrapperEl.children(`[data-swiper-slide-index="${e.realIndex+t}"]`).addClass(o);else for(let t=0;t<i;t+=1)a.slides.eq(e.realIndex+t).addClass(o);const n=e.params.thumbs.autoScrollOffset,r=n&&!a.params.loop;if(e.realIndex!==a.realIndex||r){let i,o,s=a.activeIndex;if(a.params.loop){a.slides.eq(s).hasClass(a.params.slideDuplicateClass)&&(a.loopFix(),a._clientLeft=a.$wrapperEl[0].clientLeft,s=a.activeIndex);const t=a.slides.eq(s).prevAll(`[data-swiper-slide-index="${e.realIndex}"]`).eq(0).index(),l=a.slides.eq(s).nextAll(`[data-swiper-slide-index="${e.realIndex}"]`).eq(0).index();i=void 0===t?l:void 0===l?t:l-s==s-t?a.params.slidesPerGroup>1?l:s:l-s<s-t?l:t,o=e.activeIndex>e.previousIndex?"next":"prev"}else i=e.realIndex,o=i>e.previousIndex?"next":"prev";r&&(i+="next"===o?n:-1*n),a.visibleSlidesIndexes&&a.visibleSlidesIndexes.indexOf(i)<0&&(a.params.centeredSlides?i=i>s?i-Math.floor(l/2)+1:i+Math.floor(l/2)-1:i>s&&a.params.slidesPerGroup,a.slideTo(i,t?0:void 0))}}e.thumbs={swiper:null},a("beforeInit",()=>{const{thumbs:t}=e.params;t&&t.swiper&&(n(),r(!0))}),a("slideChange update resize observerUpdate",()=>{r()}),a("setTransition",(t,a)=>{const l=e.thumbs.swiper;l&&!l.destroyed&&l.setTransition(a)}),a("beforeDestroy",()=>{const t=e.thumbs.swiper;t&&!t.destroyed&&i&&t.destroy()}),Object.assign(e.thumbs,{init:n,update:r})}function HP(e){const{$wrapperEl:t,params:a}=this;if(a.loop&&this.loopDestroy(),"object"==typeof e&&"length"in e)for(let a=0;a<e.length;a+=1)e[a]&&t.append(e[a]);else t.append(e);a.loop&&this.loopCreate(),a.observer||this.update()}function jP(e){const{params:t,$wrapperEl:a,activeIndex:l}=this;t.loop&&this.loopDestroy();let i=l+1;if("object"==typeof e&&"length"in e){for(let t=0;t<e.length;t+=1)e[t]&&a.prepend(e[t]);i=l+e.length}else a.prepend(e);t.loop&&this.loopCreate(),t.observer||this.update(),this.slideTo(i,0,!1)}function FP(e,t){const a=this,{$wrapperEl:l,params:i,activeIndex:o}=a;let n=o;i.loop&&(n-=a.loopedSlides,a.loopDestroy(),a.slides=l.children("."+i.slideClass));const r=a.slides.length;if(e<=0)return void a.prependSlide(t);if(e>=r)return void a.appendSlide(t);let s=n>e?n+1:n;const c=[];for(let t=r-1;t>=e;t-=1){const e=a.slides.eq(t);e.remove(),c.unshift(e)}if("object"==typeof t&&"length"in t){for(let e=0;e<t.length;e+=1)t[e]&&l.append(t[e]);s=n>e?n+t.length:n}else l.append(t);for(let e=0;e<c.length;e+=1)l.append(c[e]);i.loop&&a.loopCreate(),i.observer||a.update(),i.loop?a.slideTo(s+a.loopedSlides,0,!1):a.slideTo(s,0,!1)}function zP(e){const t=this,{params:a,$wrapperEl:l,activeIndex:i}=t;let o=i;a.loop&&(o-=t.loopedSlides,t.loopDestroy(),t.slides=l.children("."+a.slideClass));let n,r=o;if("object"==typeof e&&"length"in e){for(let a=0;a<e.length;a+=1)n=e[a],t.slides[n]&&t.slides.eq(n).remove(),n<r&&(r-=1);r=Math.max(r,0)}else n=e,t.slides[n]&&t.slides.eq(n).remove(),n<r&&(r-=1),r=Math.max(r,0);a.loop&&t.loopCreate(),a.observer||t.update(),a.loop?t.slideTo(r+t.loopedSlides,0,!1):t.slideTo(r,0,!1)}function DP(){const e=this,t=[];for(let a=0;a<e.slides.length;a+=1)t.push(a);e.removeSlide(t)}function NP({swiper:e}){Object.assign(e,{appendSlide:HP.bind(e),prependSlide:jP.bind(e),addSlide:FP.bind(e),removeSlide:zP.bind(e),removeAllSlides:DP.bind(e)})}var IP,VP=e=>{let{attributes:t,setAttributes:a,setLightboxPreview:l}=e;const{mediaGallery:i,lightboxDisplayCaptions:o,lightboxThumbnails:n,lightboxDisplayCount:r,lightboxCloseIcon:s,imageDefaultCaption:c}=t,u=Object(B.useRef)(),p=Object(B.useRef)(),[b,d]=Object(B.useState)(null),[g,m]=Object(B.useState)(null),[y,f]=Object(B.useState)(0),[h,v]=Object(B.useState)(0);Object(B.useEffect)(()=>{const e=setTimeout(()=>{u.current&&_()},500);return()=>{clearTimeout(e)}},[u]),Object(B.useEffect)(()=>{const e=setTimeout(()=>{p.current&&(T(),b&&(b.destroy(),_()))},500);return()=>{clearTimeout(e)}},[p]),Object(B.useEffect)(()=>{f(i.length),n&&g&&g.update(),b&&b.update()},[i]),Object(B.useEffect)(()=>{b&&(b.destroy(),_())},[g]);const _=()=>{const e={lazy:!0,slidesPerView:1,navigation:{nextEl:".swiper-button-next",prevEl:".swiper-button-prev"},on:{beforeInit(e){d(e)},activeIndexChange(e){v(e.activeIndex),g&&g.slideTo(e.activeIndex)}},thumbs:{swiper:g}};new GP(u.current,{...e,modules:[EP,RP,LP]})},T=()=>{const e={centeredSlides:!0,slidesPerView:7,slideToClickedSlide:!0,watchSlidesProgress:!0,watchSlidesVisibility:!0,on:{beforeInit(e){m(e)}}};new GP(p.current,{...e})};return React.createElement("div",{className:"spectra-image-gallery__control-lightbox"},React.createElement("div",{className:"swiper spectra-image-gallery__control-lightbox--main",ref:u},React.createElement("div",{className:"swiper-wrapper"},i.map(e=>React.createElement("div",{className:"swiper-slide",key:e.id},React.createElement("img",{className:"swiper-lazy","data-src":e.url,alt:e.alt}),React.createElement("div",{className:"swiper-lazy-preloader swiper-lazy-preloader-white"}),o&&React.createElement("div",{className:Object(j.applyFilters)("spectra.image-gallery.render.lightboxCaptionClasses","spectra-image-gallery__control-lightbox--caption",e.id,t)},e.caption?e.caption:c)))),React.createElement("div",{className:"swiper-button-next"}),React.createElement("div",{className:"swiper-button-prev"})),React.createElement("div",{className:"spectra-image-gallery__control-lightbox--thumbnails-wrapper",style:{display:n?void 0:"none"}},React.createElement("div",{className:"swiper spectra-image-gallery__control-lightbox--thumbnails",ref:p},React.createElement("div",{className:"swiper-wrapper"},i.map(e=>{var t,a;return(null==e||null===(t=e.sizes)||void 0===t||null===(a=t.thumbnail)||void 0===a?void 0:a.url)&&React.createElement("div",{className:"swiper-slide",key:e.id},React.createElement("img",{src:e.sizes.thumbnail.url,alt:e.alt}))})))),r&&React.createElement("div",{className:"spectra-image-gallery__control-lightbox--count"},`${h+1} / ${y}`),s&&React.createElement("button",{className:"spectra-image-gallery__control-lightbox--close",onClick:()=>l(!1)},Ce(s,a)))},WP=a(130),qP=0,ZP={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},$P={};$P.locals=WP.a.locals||{},$P.use=function(){return qP++||(IP=ke()(WP.a,ZP)),$P},$P.unuse=function(){qP>0&&!--qP&&(IP(),IP=null)};var YP=$P,KP=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(YP.use(),()=>{YP.unuse()}),[]);const{lightboxPreview:t,setLightboxPreview:a,attributes:l,setAttributes:i,className:o,name:n,deviceType:r}=e,{block_id:s,readyToRender:c}=l;return React.createElement("div",{className:Be()(o,"uagb-editor-preview-mode-"+r.toLowerCase(),"uagb-block-"+s)},c?React.createElement(React.Fragment,null,React.createElement(Nk,{attributes:l,setAttributes:i,name:n}),t&&React.createElement(VP,{attributes:l,setAttributes:i,setLightboxPreview:a})):React.createElement(Lk,{attributes:l,setAttributes:i}))}),JP=Object(B.memo)(e=>{let{attributes:t}=e;const{captionLoadGoogleFonts:a,captionFontFamily:l,captionFontWeight:i,loadMoreLoadGoogleFonts:o,loadMoreFontFamily:n,loadMoreFontWeight:r,lightboxLoadGoogleFonts:s,lightboxFontFamily:c,lightboxFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});function XP(){return(XP=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var QP=Object(L.compose)(vs,fe)(e=>{const{clientId:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,focusList:n},isSelected:r,setAttributes:s,name:c,deviceType:u}=e,{imageClickEvent:p}=a;Object(B.useEffect)(()=>{if(Array.isArray(n)&&n.length){const e={};n.forEach((t,a)=>{!0===t&&(e[a]=!0)}),s({focusList:[],focusListObject:{...e}})}uagb_blocks_info.spectra_pro_status||"url"!==p||s({imageClickEvent:"none"})},[]);const b=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{tileSize:n,feedLayout:r,imageDisplayCaption:s,feedMarginTop:c,feedMarginRight:u,feedMarginBottom:p,feedMarginLeft:b,feedMarginTopTab:d,feedMarginRightTab:g,feedMarginBottomTab:m,feedMarginLeftTab:y,feedMarginTopMob:f,feedMarginRightMob:h,feedMarginBottomMob:v,feedMarginLeftMob:_,feedMarginUnit:T,feedMarginUnitTab:C,feedMarginUnitMob:S,gridImageGap:w,gridImageGapTab:k,gridImageGapMob:P,gridImageGapUnit:x,gridImageGapUnitTab:A,gridImageGapUnitMob:G,lightboxDisplayCaptions:M,lightboxCaptionHeight:R,lightboxCaptionHeightTablet:B,lightboxCaptionHeightMobile:U,lightboxIconSize:E,lightboxIconSizeTablet:O,lightboxIconSizeMobile:L,captionVisibility:H,captionDisplayType:F,imageCaptionAlignment:z,imageCaptionAlignment01:D,captionPaddingTop:N,captionPaddingRight:I,captionPaddingBottom:V,captionPaddingLeft:W,captionPaddingTopTab:q,captionPaddingRightTab:Z,captionPaddingBottomTab:$,captionPaddingLeftTab:Y,captionPaddingTopMob:K,captionPaddingRightMob:J,captionPaddingBottomMob:X,captionPaddingLeftMob:Q,captionPaddingUnit:ee,captionPaddingUnitTab:te,captionPaddingUnitMob:le,captionGap:ie,captionGapUnit:oe,carouselSquares:ne,feedPagination:re,paginateUseLoader:se,paginateButtonAlign:ce,paginateButtonPaddingTop:ue,paginateButtonPaddingRight:pe,paginateButtonPaddingBottom:be,paginateButtonPaddingLeft:de,paginateButtonPaddingTopTab:ge,paginateButtonPaddingRightTab:me,paginateButtonPaddingBottomTab:ye,paginateButtonPaddingLeftTab:fe,paginateButtonPaddingTopMob:he,paginateButtonPaddingRightMob:ve,paginateButtonPaddingBottomMob:_e,paginateButtonPaddingLeftMob:Te,paginateButtonPaddingUnit:Ce,paginateButtonPaddingUnitTab:Se,paginateButtonPaddingUnitMob:we,imageEnableZoom:ke,imageZoomType:Pe,captionBackgroundEnableBlur:xe,captionBackgroundBlurAmount:Ae,captionBackgroundBlurAmountHover:Ge,lightboxEdgeDistance:Me,lightboxEdgeDistanceTablet:Re,lightboxEdgeDistanceMobile:Be,lightboxBackgroundEnableBlur:Ue,lightboxBackgroundBlurAmount:Ee,lightboxBackgroundColor:Oe,lightboxCaptionColor:Le,lightboxCaptionBackgroundColor:He,lightboxIconColor:je,captionFontFamily:Fe,captionFontWeight:ze,captionFontStyle:De,captionTransform:Ne,captionDecoration:Ie,captionFontSizeType:Ve,captionFontSize:We,captionFontSizeTab:qe,captionFontSizeMob:Ze,captionLineHeightType:$e,captionLineHeight:Ye,captionLineHeightTab:Ke,captionLineHeightMob:Je,loadMoreFontFamily:Xe,loadMoreFontWeight:Qe,loadMoreFontStyle:et,loadMoreTransform:tt,loadMoreDecoration:at,loadMoreFontSizeType:lt,loadMoreFontSize:it,loadMoreFontSizeTab:ot,loadMoreFontSizeMob:nt,loadMoreLineHeightType:rt,loadMoreLineHeight:st,loadMoreLineHeightTab:ct,loadMoreLineHeightMob:ut,lightboxFontFamily:pt,lightboxFontWeight:bt,lightboxFontStyle:dt,lightboxTransform:gt,lightboxDecoration:mt,lightboxFontSizeType:yt,lightboxFontSize:ft,lightboxFontSizeTab:ht,lightboxFontSizeMob:vt,lightboxLineHeightType:_t,lightboxLineHeight:Tt,lightboxLineHeightTab:Ct,lightboxLineHeightMob:St,captionBackgroundEffect:wt,captionBackgroundEffectHover:kt,captionBackgroundEffectAmount:Pt,captionBackgroundEffectAmountHover:xt,captionColor:At,captionColorHover:Gt,captionBackgroundColor:Mt,captionBackgroundColorHover:Rt,overlayColor:Bt,overlayColorHover:Ut,captionSeparateColors:Et,paginateArrowDistance:Ot,paginateArrowDistanceUnit:Lt,paginateArrowSize:Ht,paginateDotDistance:jt,paginateDotDistanceUnit:Ft,paginateLoaderSize:zt,paginateButtonTextColor:Dt,paginateButtonTextColorHover:Nt,paginateColor:It,paginateColorHover:Vt,imageBoxShadowColor:Wt,imageBoxShadowHOffset:qt,imageBoxShadowVOffset:Zt,imageBoxShadowBlur:$t,imageBoxShadowSpread:Yt,imageBoxShadowPosition:Kt,imageBoxShadowColorHover:Jt,imageBoxShadowHOffsetHover:Xt,imageBoxShadowVOffsetHover:Qt,imageBoxShadowBlurHover:ea,imageBoxShadowSpreadHover:ta,imageBoxShadowPositionHover:aa,btnBorderHColor:la,arrowBorderHColor:ia,mainTitleBorderColor:oa,mainTitleBorderHColor:na,imageBorderHColor:ra,block_id:sa}=e,ca=It||"#007cba",ua=Ps(Ae,"captionBackgroundBlurAmount",i),pa=Ps(Ge,"captionBackgroundBlurAmountHover",i),ba=Ps(Pt,"captionBackgroundEffectAmount",i),da=Ps(xt,"captionBackgroundEffectAmountHover",i),ga=Ps(ie,"captionGap",i),ma=Ps(Ot,"paginateArrowDistance",i),ya=isNaN(jt)?0:jt,fa=Ps(Ht,"paginateArrowSize",i),ha=Ps(zt,"paginateLoaderSize",i),va=Ps(w,"gridImageGap",i),_a=Ps(R,"lightboxCaptionHeight",i),Ta=isNaN(c)?0:c,Ca=isNaN(u)?0:u,Sa=isNaN(p)?0:p,wa=isNaN(b)?0:b,ka=isNaN(d)?0:d,Pa=isNaN(g)?0:g,xa=isNaN(m)?0:m,Aa=isNaN(y)?0:y,Ga=isNaN(f)?0:f,Ma=isNaN(h)?0:h,Ra=isNaN(v)?0:v,Ba=isNaN(_)?0:_,Ua=isNaN(k)?va:k,Ea=isNaN(P)?Ua:P,Oa="number"==typeof B?B:_a,La="number"==typeof U?U:Oa,Ha=rs(e,"arrow"),ja=rs(e,"arrow","tablet"),Fa=rs(e,"arrow","mobile"),za=rs(e,"btn"),Da=rs(e,"btn","tablet"),Na=rs(e,"btn","mobile"),Ia=rs(e,"image"),Va=rs(e,"image","tablet"),Wa=rs(e,"image","mobile"),qa=rs(e,"mainTitle"),Za=rs(e,"mainTitle","tablet"),$a=rs(e,"mainTitle","mobile"),Ya=`${ns(qt,"px")} ${ns(Zt,"px")} ${ns($t,"px")} ${ns(Yt,"px")}${Wt?" "+Wt:""}${"inset"===Kt?" "+Kt:""}`,Ka=`${ns(Xt,"px")} ${ns(Qt,"px")} ${ns(ea,"px")} ${ns(ta,"px")}${Jt?" "+Jt:""}${"inset"===aa?" "+aa:""}`,Ja=""===Ie&&uagb_blocks_info.is_astra_based_theme?uagb_blocks_info.astra_body_text_decoration:Ie;let Xa={".wp-block-uagb-image-gallery":{padding:us(T,Ta,Ca,"carousel"===r?Sa+5:Sa,wa)}," .spectra-image-gallery__control-arrows svg":{fill:ca}," .spectra-image-gallery__control-arrows:hover svg":{fill:Vt}," .spectra-image-gallery__control-arrows--carousel":{...Ha}," .spectra-image-gallery__control-arrows--carousel svg":{width:fa+"px",height:fa+"px"}," .spectra-image-gallery__control-arrows--carousel:hover":{"border-color":ia}," .spectra-image-gallery__control-arrows--carousel.slick-prev":{left:ns(ma,Lt)}," .spectra-image-gallery__control-arrows--carousel.slick-next":{right:ns(ma,Lt)}," .spectra-image-gallery__layout--carousel ul.slick-dots":{top:ns(ya,"px")}," .spectra-image-gallery__layout--carousel ul.slick-dots li button:before":{color:ca}," .spectra-image-gallery__layout--carousel ul.slick-dots li button:hover:before":{color:Vt}," .spectra-image-gallery__control-dots li button::before":{color:ca}," .spectra-image-gallery__control-dots li button:hover::before":{color:Vt}," .spectra-image-gallery__control-loader":{"margin-top":ns(ya,Ft)}," .spectra-image-gallery__control-loader div":{"background-color":It,width:ns(ha,"px"),height:ns(ha,"px"),"border-radius":"100%",padding:0}," .spectra-image-gallery__control-button":{"margin-top":ns(ya,Ft),padding:us(Ce,ue,pe,be,de),color:Dt,"background-color":It,"font-family":"Default"===Xe?"":Xe,"font-weight":Qe,"font-style":et,"text-decoration":at,"text-transform":tt,"font-size":ns(it,lt),"line-height":ns(st,rt),...za}," .spectra-image-gallery__control-button:hover":{color:Nt,"background-color":Vt,"border-color":la}," .spectra-image-gallery__layout--grid":{"grid-gap":ns(va,x)}," .spectra-image-gallery__layout--masonry":{margin:ns(-Math.abs(va/2),x)}," .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope":{padding:us(x,va/2)}," .spectra-image-gallery__layout--carousel":{"margin-bottom":ns(ya,"px")+" !important"}," .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper":{padding:us(x,0,va/2)}," .spectra-image-gallery__layout--carousel .slick-list":{margin:us(x,0,-va/2)}," .spectra-image-gallery__layout--tiled":{"grid-gap":ns(va,x),"grid-auto-rows":ns(n,"px")}," .spectra-image-gallery__media":{...Ia}," .spectra-image-gallery__media:hover":{"border-color":ra}," .spectra-image-gallery__media-thumbnail-blurrer":{"-webkit-backdrop-filter":`blur( ${ns(ua,"px")} )`,"backdrop-filter":`blur( ${ns(ua,"px")} )`}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer":{"-webkit-backdrop-filter":`blur( ${ns(pa,"px")} )`,"backdrop-filter":`blur( ${ns(pa,"px")} )`}," .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay":{"background-color":s?"hover"===H?"rgba(0,0,0,0)":Mt:Bt}," .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay a":{color:s?"hover"===H?"rgba(0,0,0,0)":Mt:Bt}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay":{"background-color":s?"antiHover"===H?"rgba(0,0,0,0)":"always"===H&&Et?Rt:Mt:Ut}," .spectra-image-gallery__media-thumbnail-caption-wrapper--bar-inside":{"-webkit-align-items":Mk(z,1,"flex"),"align-items":Mk(z,1,"flex"),"-webkit-justify-content":Mk(z,2,"flex"),"justify-content":Mk(z,2,"flex")}," .spectra-image-gallery__media-thumbnail-caption":{color:"hover"===H?"rgba(0,0,0,0)":At,"text-align":Mk(z,2),"font-family":"Default"===Fe?"":Fe,"font-weight":ze,"font-style":De,"text-decoration":Ja,"text-transform":Ne,"font-size":ns(We,Ve),"line-height":ns(Ye,$e),"padding-top":ns(N,ee),"padding-right":ns(I,ee),"padding-bottom":ns(V,ee),"padding-left":ns(W,ee)}," .spectra-image-gallery__media-thumbnail-caption a":{color:"hover"===H?"rgba(0,0,0,0)":At}," .spectra-image-gallery__media-thumbnail-caption--overlay":{"-webkit-align-items":Mk(z,1,"flex"),"align-items":Mk(z,1,"flex"),"-webkit-justify-content":Mk(z,2,"flex"),"justify-content":Mk(z,2,"flex")}," .spectra-image-gallery__media-thumbnail-caption--bar-inside":{"background-color":"hover"===H?"rgba(0,0,0,0)":Mt,...qa,"border-color":"hover"===H?"rgba(0,0,0,0)":oa}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption--bar-inside":{"background-color":"antiHover"===H?"rgba(0,0,0,0)":"always"===H&&Et?Rt:Mt,"border-color":"antiHover"===H?"rgba(0,0,0,0)":"antiHover"!==H?na:oa}," .spectra-image-gallery__media-thumbnail-caption--bar-outside":{"background-color":Mt,...qa}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption--bar-outside":{"background-color":Et?Rt:Mt,"border-color":Et?na:oa}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption":{color:"antiHover"===H?"rgba(0,0,0,0)":"always"===H&&Et?Gt:At}," .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption a":{color:"antiHover"===H?"rgba(0,0,0,0)":"always"===H&&Et?Gt:At}," .spectra-image-gallery__control-lightbox":{"background-color":Oe,"backdrop-filter":Ue?`blur(${Ee}px)`:void 0}," .spectra-image-gallery__control-lightbox--caption":{color:Le,background:`linear-gradient(rgba(0,0,0,0), ${He})`,"min-height":ns(_a,"px"),"font-family":"Default"===pt?"":pt,"font-weight":bt,"font-style":dt,"text-decoration":mt,"text-transform":gt,"font-size":ns(ft,yt),"line-height":ns(Tt,_t)}," .spectra-image-gallery__control-lightbox--thumbnails-wrapper":{"background-color":M?He:"transparent"}," .spectra-image-gallery__control-lightbox--count":{top:ns(Me,"px"),left:ns(Me,"px"),color:je,"font-family":"Default"===pt?"":pt,"font-size":ns(E,"px")?`calc(${ns(E,"px")} * 3 / 4 )`:void 0,"line-height":ns(E,"px")?`calc(${ns(E,"px")} * 3 / 4 )`:void 0}," .spectra-image-gallery__control-lightbox--close":{top:ns(Me,"px"),right:ns(Me,"px")}," .spectra-image-gallery__control-lightbox--close svg":{width:ns(E,"px"),height:ns(E,"px"),fill:je}," .spectra-image-gallery__control-lightbox--main .swiper-button-prev":{left:ns(Me,"px"),color:je}," .spectra-image-gallery__control-lightbox--main .swiper-button-next":{right:ns(Me,"px"),color:je}},Qa={".wp-block-uagb-image-gallery":{padding:us(C,ka,Pa,"carousel"===r?xa+5:xa,Aa)}," .spectra-image-gallery__control-arrows--carousel":{...ja}," .spectra-image-gallery__control-button":{padding:us(Se,ge,me,ye,fe),"font-size":ns(ot,lt),"line-height":ns(ct,rt),...Da}," .spectra-image-gallery__layout--grid":{"grid-gap":ns(Ua,A)}," .spectra-image-gallery__layout--masonry":{margin:ns(-Math.abs(Ua/2),A)}," .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope":{padding:us(A,Ua/2)}," .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper":{padding:us(A,0,Ua/2)}," .spectra-image-gallery__layout--carousel .slick-list":{margin:us(A,0,-Ua/2)}," .spectra-image-gallery__layout--tiled":{"grid-gap":ns(Ua,A)}," .spectra-image-gallery__media":{...Va}," .spectra-image-gallery__media-thumbnail-caption":{"font-size":ns(qe,Ve),"line-height":ns(Ke,$e),"padding-top":ns(q,te),"padding-right":ns(Z,te),"padding-bottom":ns($,te),"padding-left":ns(Y,te)}," .spectra-image-gallery__media-thumbnail-caption--bar-inside":{...Za}," .spectra-image-gallery__media-thumbnail-caption--bar-outside":{...Za}," .spectra-image-gallery__control-lightbox--caption":{"min-height":ns(Oa,"px"),"font-size":ns(ht,yt),"line-height":ns(Ct,_t)}," .spectra-image-gallery__control-lightbox--count":{top:ns(Re,"px"),left:ns(Re,"px"),"font-size":ns(O,"px")?`calc(${ns(O,"px")} * 3 / 4 )`:void 0,"line-height":ns(O,"px")?`calc(${ns(O,"px")} * 3 / 4 )`:void 0}," .spectra-image-gallery__control-lightbox--close":{top:ns(Re,"px"),right:ns(Re,"px")}," .spectra-image-gallery__control-lightbox--close svg":{width:ns(O,"px"),height:ns(O,"px")}," .spectra-image-gallery__control-lightbox--main .swiper-button-prev":{left:ns(Re,"px")}," .spectra-image-gallery__control-lightbox--main .swiper-button-next":{right:ns(Re,"px")}},el={".wp-block-uagb-image-gallery":{padding:us(S,Ga,Ma,"carousel"===r?Ra+5:Ra,Ba)}," .spectra-image-gallery__control-arrows--carousel":{...Fa}," .spectra-image-gallery__control-button":{padding:us(we,he,ve,_e,Te),"font-size":ns(nt,lt),"line-height":ns(ut,rt),...Na}," .spectra-image-gallery__layout--grid":{"grid-gap":ns(Ea,G)}," .spectra-image-gallery__layout--masonry":{margin:ns(-Math.abs(Ea/2),G)}," .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope":{padding:us(G,Ea/2)}," .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper":{padding:us(G,0,Ea/2)}," .spectra-image-gallery__layout--carousel .slick-list":{margin:us(G,0,-Ea/2)}," .spectra-image-gallery__layout--tiled":{"grid-gap":ns(Ea,G)}," .spectra-image-gallery__media":{...Wa}," .spectra-image-gallery__media-thumbnail-caption":{"font-size":ns(Ze,Ve),"line-height":ns(Je,$e),"padding-top":ns(K,le),"padding-right":ns(J,le),"padding-bottom":ns(X,le),"padding-left":ns(Q,le)}," .spectra-image-gallery__media-thumbnail-caption--bar-inside":{...$a}," .spectra-image-gallery__media-thumbnail-caption--bar-outside":{...$a}," .spectra-image-gallery__control-lightbox--caption":{"min-height":ns(La,"px"),"font-size":ns(vt,yt),"line-height":ns(St,_t)}," .spectra-image-gallery__control-lightbox--count":{top:ns(Be,"px"),left:ns(Be,"px"),"font-size":ns(L,"px")?`calc(${ns(L,"px")} * 3 / 4 )`:void 0,"line-height":ns(L,"px")?`calc(${ns(L,"px")} * 3 / 4 )`:void 0}," .spectra-image-gallery__control-lightbox--close":{top:ns(Be,"px"),right:ns(Be,"px")}," .spectra-image-gallery__control-lightbox--close svg":{width:ns(L,"px"),height:ns(L,"px")}," .spectra-image-gallery__control-lightbox--main .swiper-button-prev":{left:ns(Be,"px")}," .spectra-image-gallery__control-lightbox--main .swiper-button-next":{right:ns(Be,"px")}};switch(wt){case"none":Xa[" .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-thumbnail"],"-webkit-filter":"none",filter:"none"};break;case"grayscale":case"sepia":Xa[" .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-thumbnail"],"-webkit-filter":`${wt}( ${ns(ba,"%")} )`,filter:`${wt}( ${ns(ba,"%")} )`}}switch(kt){case"none":Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"]={"-webkit-filter":"none",filter:"none"};break;case"grayscale":case"sepia":Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"]={"-webkit-filter":`${kt}( ${ns(da,"%")} )`,filter:`${kt}( ${ns(da,"%")} )`}}switch(xe||(Xa[" .spectra-image-gallery__media-thumbnail-blurrer"]={...Xa[" .spectra-image-gallery__media-thumbnail-blurrer"],"-webkit-backdrop-filter":"none","backdrop-filter":"none"},Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer"]={"-webkit-backdrop-filter":"none","backdrop-filter":"none"}),s&&"bar-outside"===F&&(Xa[" .spectra-image-gallery__media-thumbnail-caption-wrapper"]="top"===D?{...Xa[" .spectra-image-gallery__media-thumbnail-caption-wrapper"],"margin-bottom":ns(ga,oe)}:{...Xa[" .spectra-image-gallery__media-thumbnail-caption-wrapper"],"margin-top":ns(ga,oe)}),"grid"===r&&re&&(Xa[" .spectra-image-gallery__control-wrapper"]={"margin-top":ns(ya,Ft)}),"carousel"===r&&ne&&(Xa[" .spectra-image-gallery__media--carousel"]={"aspect-ratio":1},Xa[" .spectra-image-gallery__media-thumbnail--carousel"]={height:"100%",width:"100%","-o-object-fit":"cover","object-fit":"cover"}),"masonry"===r&&re&&!se&&(Xa[" .spectra-image-gallery__control-wrapper"]={"-webkit-justify-content":ce,"justify-content":ce,"-webkit-align-items":"center","align-items":"center"}),Pe){case"zoom-in":ke&&(Xa[" .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-thumbnail"],transform:"scale3d(1.005, 1.005, 1.005)"},Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"],transform:"scale3d(1.1, 1.1, 1.1)"});break;case"zoom-out":ke&&(Xa[" .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-thumbnail"],transform:"scale3d(1.1, 1.1, 1.1)"},Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"]={...Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail"],transform:"scale3d(1.005, 1.005, 1.005)"})}"outset"===Kt?(Xa[" .spectra-image-gallery__media"]={...Xa[" .spectra-image-gallery__media"],"box-shadow":Ya},Xa[" .spectra-image-gallery__media-thumbnail-blurrer"]={...Xa[" .spectra-image-gallery__media-thumbnail-blurrer"],"box-shadow":"0 0 transparent"+("inset"===aa?" "+aa:"")}):(Xa[" .spectra-image-gallery__media-thumbnail-blurrer"]={...Xa[" .spectra-image-gallery__media-thumbnail-blurrer"],"box-shadow":Ya},Xa[" .spectra-image-gallery__media"]={...Xa[" .spectra-image-gallery__media"],"box-shadow":"0 0 transparent"+("inset"===aa?" "+aa:"")}),"outset"===aa?(Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media"]={"box-shadow":Ka},Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer"]={...Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer"],"box-shadow":"0 0 transparent"+("inset"===Kt?" "+Kt:"")}):(Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer"]={...Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer"],"box-shadow":Ka},Xa[" .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media"]={"box-shadow":"0 0 transparent"+("inset"===Kt?" "+Kt:"")});const tl=".editor-styles-wrapper .uagb-block-"+sa;Xa=Object(j.applyFilters)("spectra.image-gallery.styling",Xa,e),Qa=Object(j.applyFilters)("spectra.image-gallery.tabletStyling",Qa,e),el=Object(j.applyFilters)("spectra.image-gallery.mobileStyling",el,e),Xa=Object(j.applyFilters)("spectra.image-gallery.styling",Xa,e),Qa=Object(j.applyFilters)("spectra.image-gallery.tabletStyling",Qa,e),el=Object(j.applyFilters)("spectra.image-gallery.mobileStyling",el,e);let al=ae(Xa,tl);return"tablet"!==o&&"mobile"!==o||(al+=ae(Qa,""+tl,!0,"tablet"),"mobile"===o&&(al+=ae(el,""+tl,!0,"mobile"))),al}(a,0,c,u),[a,u]);Object(B.useEffect)(()=>{he(e)},[l,i,o,u]);const[d,g]=Object(B.useState)(!1);return Object(B.useEffect)(()=>{r||g(!1)},[r]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:b}),React.createElement(JP,{attributes:a}),r&&React.createElement(Ok,XP({},e,{lightboxPreview:d,setLightboxPreview:g})),React.createElement(KP,XP({},e,{lightboxPreview:d,setLightboxPreview:g})))});a(355);const ex=(e,t,a)=>{const l=Array.isArray(t)?t:t.split(".");let i=e;for(const e of l){if(!i||"object"!=typeof i||!(e in i))return a;i=i[e]}return i},tx=(e,t)=>{if(e&&t)return e>t?"landscape":"portrait"};var ax={from:[{type:"block",blocks:["core/gallery"],transform:e=>{var t,a,l,i,o,n,r,s,c,u,p,b,d,g,m,y,f,h,v,_,T;const C=Math.max(N((null==e||null===(t=e.style)||void 0===t||null===(a=t.spacing)||void 0===a||null===(l=a.blockGap)||void 0===l?void 0:l.left)||"8"),N((null==e||null===(i=e.style)||void 0===i||null===(o=i.spacing)||void 0===o||null===(n=o.blockGap)||void 0===n?void 0:n.top)||"8"));return Object(be.createBlock)("uagb/image-gallery",{columnsDesk:(null==e?void 0:e.columns)||3,readyToRender:!0,mediaGallery:e.images?e.images.map(e=>((e,t,a,l,i,o)=>{var n,r,s;let c="",u="",p="";const b=(d=e,["id","link"].reduce((e,t)=>(d&&Object.prototype.hasOwnProperty.call(d,t)&&(e[t]=d[t]),e),{}));var d;const g={};if(e.id&&"object"==typeof o&&null!==o)for(const t in o)parseInt(o[t].id)===e.id&&(o[t].customLink&&(b.customLink=o[t].customLink),o[t].linkTarget&&(b.linkTarget=o[t].linkTarget),c=o[t].thumbnailUrl,u=o[t].mediumUrl,p=o[t].largeUrl);if(e.id&&!e.sizes&&!e.media_details||"medium_large"===t&&!c){const t=wp.data.select("core").getMedia(e.id);t&&(e=t)}return b.alt=ex(e,["alt_text"])||ex(e,["alt"])||"",b.caption=(null===(n=e)||void 0===n||null===(r=n.caption)||void 0===r?void 0:r.raw)||"",b.url=e.url||e.source_url,b.mime=e.mime_type,b.type=e.media_type,b.link=(null===(s=e)||void 0===s?void 0:s.link)||"",b.subtype=e.mime_type.split("/")[1],g.thumbnail={height:ex(e,["sizes",t,"height"])||ex(e,["media_details","sizes",t,"height"])||void 0,width:ex(e,["sizes",t,"width"])||ex(e,["media_details","sizes",t,"width"])||void 0,url:ex(e,["sizes",t,"url"])||ex(e,["media_details","sizes",t,"source_url"])||c||e.url||e.source_url,orientation:tx(ex(e,["media_details","sizes",t,"width"]),ex(e,["media_details","sizes",t,"height"]))},g.medium={height:ex(e,["sizes",a,"height"])||ex(e,["media_details","sizes",a,"height"])||void 0,width:ex(e,["sizes",a,"width"])||ex(e,["media_details","sizes",a,"width"])||void 0,url:ex(e,["sizes",a,"url"])||ex(e,["media_details","sizes",a,"source_url"])||u||e.url||e.source_url,orientation:tx(ex(e,["media_details","sizes",a,"width"]),ex(e,["media_details","sizes",a,"height"]))},g.large={height:ex(e,["sizes",l,"height"])||ex(e,["media_details","sizes",l,"height"])||void 0,width:ex(e,["sizes",l,"width"])||ex(e,["media_details","sizes",l,"width"])||void 0,url:ex(e,["sizes",l,"url"])||ex(e,["media_details","sizes",l,"source_url"])||p||e.url||e.source_url,orientation:tx(ex(e,["media_details","sizes",l,"width"]),ex(e,["media_details","sizes",l,"height"]))},g.full={url:ex(e,["sizes",i,"url"])||ex(e,["media_details","sizes",i,"source_url"])||e.url||e.source_url,height:ex(e,["sizes",i,"height"])||ex(e,["media_details","sizes",i,"height"])||void 0,width:ex(e,["sizes",i,"width"])||ex(e,["media_details","sizes",i,"width"])||void 0,orientation:tx(ex(e,["media_details","sizes",i,"width"]),ex(e,["media_details","sizes",i,"height"]))},b.sizes=g,b})(e,"thumbnail","medium","large","full",null)):[],mediaIDs:(null==e?void 0:e.ids)||[],galleryImageSize:(null==e?void 0:e.sizeSlug)||"large",feedLayout:null!=e&&e.masonry?"masonry":"grid",imageClickEvent:"attachment"===(null==e?void 0:e.linkTo)||"media"===(null==e?void 0:e.linkTo)?"image":"none",gridImageGap:null!=e&&e.masonry?(null==e?void 0:e.masonryGutter)||8:C,feedMarginTop:N((null==e||null===(r=e.style)||void 0===r||null===(s=r.spacing)||void 0===s||null===(c=s.padding)||void 0===c?void 0:c.top)||"0"),feedMarginRight:N((null==e||null===(u=e.style)||void 0===u||null===(p=u.spacing)||void 0===p||null===(b=p.padding)||void 0===b?void 0:b.right)||"0"),feedMarginBottom:N((null==e||null===(d=e.style)||void 0===d||null===(g=d.spacing)||void 0===g||null===(m=g.padding)||void 0===m?void 0:m.bottom)||"0"),feedMarginLeft:N((null==e||null===(y=e.style)||void 0===y||null===(f=y.spacing)||void 0===f||null===(h=f.padding)||void 0===h?void 0:h.left)||"0"),feedMarginUnit:I((null==e||null===(v=e.style)||void 0===v||null===(_=v.spacing)||void 0===_||null===(T=_.padding)||void 0===T?void 0:T.top)||"px")})}}]};let lx={};lx=Object(j.applyFilters)("uagb/image-gallery",ws(lx)),Object(be.registerBlockType)("uagb/image-gallery",{...lx,title:Object(r.__)("Image Gallery","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create a highly customizable image gallery","ultimate-addons-for-gutenberg"),icon:se.image_gallery,keywords:[Object(r.__)("image","ultimate-addons-for-gutenberg"),Object(r.__)("gallery","ultimate-addons-for-gutenberg"),Object(r.__)("grid","ultimate-addons-for-gutenberg"),Object(r.__)("masonry","ultimate-addons-for-gutenberg"),Object(r.__)("carousel","ultimate-addons-for-gutenberg"),Object(r.__)("tiled","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg"),Object(r.__)("ultimate","ultimate-addons-for-gutenberg"),Object(r.__)("addon","ultimate-addons-for-gutenberg"),Object(r.__)("spectra","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Ra,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"image-gallery"}):React.createElement(QP,e),save:()=>null,transforms:ax});function ix(){return(ix=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var ox,nx=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{icon:l,iconSize:i,iconSizeTab:o,iconSizeMob:s,iconSizeUnit:c,noticeDismiss:u,cookies:p,close_cookie_days:b,textColor:d,titleColor:g,noticeColor:m,contentBgColor:y,noticeDismissColor:f,noticeAlignment:h,titleFontFamily:v,titleFontWeight:_,titleFontSizeType:T,titleLineHeightType:C,titleFontSize:S,titleFontSizeTablet:w,titleFontSizeMobile:k,titleLineHeight:P,titleLineHeightTablet:x,titleLineHeightMobile:A,descFontFamily:G,descFontWeight:M,descFontSize:R,descFontSizeType:B,descFontSizeTablet:U,descFontSizeMobile:E,descLineHeight:O,descLineHeightType:L,descLineHeightTablet:H,descLineHeightMobile:j,titleLoadGoogleFonts:F,descLoadGoogleFonts:z,titleTopPadding:D,titleRightPadding:N,titleBottomPadding:I,titleLeftPadding:V,titleTopPaddingTablet:W,titleRightPaddingTablet:q,titleBottomPaddingTablet:Z,titleLeftPaddingTablet:$,titleTopPaddingMobile:Y,titleRightPaddingMobile:K,titleBottomPaddingMobile:J,titleLeftPaddingMobile:X,titlePaddingUnit:Q,mobileTitlePaddingUnit:ee,tabletTitlePaddingUnit:te,titlePaddingLink:ae,headingTag:le,layout:ie,highlightWidth:oe,highlightWidthTablet:ne,highlightWidthMobile:re,contentTopPadding:se,contentRightPadding:ce,contentBottomPadding:ue,contentLeftPadding:pe,contentTopPaddingTablet:be,contentRightPaddingTablet:de,contentBottomPaddingTablet:me,contentLeftPaddingTablet:ye,contentTopPaddingMobile:fe,contentRightPaddingMobile:he,contentBottomPaddingMobile:ve,contentLeftPaddingMobile:_e,contentPaddingUnit:Te,mobileContentPaddingUnit:Se,tabletContentPaddingUnit:we,contentPaddingLink:ke,titleTransform:Pe,titleDecoration:xe,descTransform:Ae,descDecoration:Ge,titleFontStyle:Me,descFontStyle:Re,titleLetterSpacing:Be,titleLetterSpacingTablet:Ue,titleLetterSpacingMobile:Oe,titleLetterSpacingType:He,descLetterSpacing:je,descLetterSpacingTablet:ze,descLetterSpacingMobile:De,descLetterSpacingType:Ne}=t,Ie=[{value:"",label:Object(r.__)("Always Show","ultimate-addons-for-gutenberg")},{value:"uagb-dismissable",label:Object(r.__)("Dismissible","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","style","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:ie,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"modern",label:"Modern"},{value:"simple",label:"Border"}],showIcons:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:h,label:"noticeAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),"simple"===ie&&React.createElement(tl,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:oe,label:"highlightWidth"},tablet:{value:ne,label:"highlightWidthTablet"},mobile:{value:re,label:"highlightWidthMobile"}},min:0,max:50,displayUnit:!1,setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Title Tag","ultimate-addons-for-gutenberg"),data:{value:le,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Notice Display","ultimate-addons-for-gutenberg"),data:{value:u,label:"noticeDismiss"},options:Ie}),u&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Button Icon","ultimate-addons-for-gutenberg"),value:l,onChange:e=>a({icon:e})}),React.createElement(tl,{label:Object(r.__)("Button Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:i,label:"iconSize"},tablet:{value:o,label:"iconSizeTab"},mobile:{value:s,label:"iconSizeMob"}},min:0,max:100,unit:{value:c,label:"iconSizeUnit"},setAttributes:a})),u&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Cookies","ultimate-addons-for-gutenberg"),checked:p,onChange:e=>{const t=Object(n.select)("core/editor"),l=null!=t&&t.getCurrentPostId?t.getCurrentPostId().toString():"null",i=(new Date).getTime();a({c_id:l+"-"+i}),a({cookies:e})}}),p&&u&&React.createElement(Qa,{label:Object(r.__)("Show Closed Notice After (Days)","ultimate-addons-for-gutenberg"),value:b,data:{value:b,label:"close_cookie_days"},min:0,max:50,displayUnit:!1,setAttributes:a}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"titleColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:m||"",data:{value:m,label:"noticeColor"},setAttributes:a}),u&&React.createElement(hl,{label:Object(r.__)("Dismiss Icon Color","ultimate-addons-for-gutenberg"),colorValue:f||"",data:{value:f,label:"noticeDismissColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:F,label:"titleLoadGoogleFonts"},fontFamily:{value:v,label:"titleFontFamily"},fontWeight:{value:_,label:"titleFontWeight"},fontStyle:{value:Me,label:"titleFontStyle"},transform:{value:Pe,label:"titleTransform"},decoration:{value:xe,label:"titleDecoration"},fontSizeType:{value:T,label:"titleFontSizeType"},fontSize:{value:S,label:"titleFontSize"},fontSizeMobile:{value:k,label:"titleFontSizeMobile"},fontSizeTablet:{value:w,label:"titleFontSizeTablet"},lineHeightType:{value:C,label:"titleLineHeightType"},lineHeight:{value:P,label:"titleLineHeight"},lineHeightMobile:{value:A,label:"titleLineHeightMobile"},lineHeightTablet:{value:x,label:"titleLineHeightTablet"},letterSpacing:{value:Be,label:"titleLetterSpacing"},letterSpacingTablet:{value:Ue,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Oe,label:"titleLetterSpacingMobile"},letterSpacingType:{value:He,label:"titleLetterSpacingType"}}),React.createElement(Pl,ix({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:D,label:"titleTopPadding"},valueRight:{value:N,label:"titleRightPadding"},valueBottom:{value:I,label:"titleBottomPadding"},valueLeft:{value:V,label:"titleLeftPadding"},valueTopTablet:{value:W,label:"titleTopPaddingTablet"},valueRightTablet:{value:q,label:"titleRightPaddingTablet"},valueBottomTablet:{value:Z,label:"titleBottomPaddingTablet"},valueLeftTablet:{value:$,label:"titleLeftPaddingTablet"},valueTopMobile:{value:Y,label:"titleTopPaddingMobile"},valueRightMobile:{value:K,label:"titleRightPaddingMobile"},valueBottomMobile:{value:J,label:"titleBottomPaddingMobile"},valueLeftMobile:{value:X,label:"titleLeftPaddingMobile"},unit:{value:Q,label:"titlePaddingUnit"},mUnit:{value:ee,label:"mobileTitlePaddingUnit"},tUnit:{value:te,label:"tabletTitlePaddingUnit"},attributes:t,setAttributes:a,link:{value:ae,label:"titlePaddingLink"}}))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"textColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:y||"",data:{value:y,label:"contentBgColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:z,label:"descLoadGoogleFonts"},fontFamily:{value:G,label:"descFontFamily"},fontWeight:{value:M,label:"descFontWeight"},fontStyle:{value:Re,label:"descFontStyle"},transform:{value:Ae,label:"descTransform"},decoration:{value:Ge,label:"descDecoration"},fontSizeType:{value:B,label:"descFontSizeType"},fontSize:{value:R,label:"descFontSize"},fontSizeMobile:{value:E,label:"descFontSizeMobile"},fontSizeTablet:{value:U,label:"descFontSizeTablet"},lineHeightType:{value:L,label:"descLineHeightType"},lineHeight:{value:O,label:"descLineHeight"},lineHeightMobile:{value:j,label:"descLineHeightMobile"},lineHeightTablet:{value:H,label:"descLineHeightTablet"},letterSpacing:{value:je,label:"descLetterSpacing"},letterSpacingTablet:{value:ze,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:De,label:"descLetterSpacingMobile"},letterSpacingType:{value:Ne,label:"descLetterSpacingType"}}),React.createElement(Pl,ix({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:se,label:"contentTopPadding"},valueRight:{value:ce,label:"contentRightPadding"},valueBottom:{value:ue,label:"contentBottomPadding"},valueLeft:{value:pe,label:"contentLeftPadding"},valueTopTablet:{value:be,label:"contentTopPaddingTablet"},valueRightTablet:{value:de,label:"contentRightPaddingTablet"},valueBottomTablet:{value:me,label:"contentBottomPaddingTablet"},valueLeftTablet:{value:ye,label:"contentLeftPaddingTablet"},valueTopMobile:{value:fe,label:"contentTopPaddingMobile"},valueRightMobile:{value:he,label:"contentRightPaddingMobile"},valueBottomMobile:{value:ve,label:"contentBottomPaddingMobile"},valueLeftMobile:{value:_e,label:"contentLeftPaddingMobile"},unit:{value:Te,label:"contentPaddingUnit"},mUnit:{value:Se,label:"mobileContentPaddingUnit"},tUnit:{value:we,label:"tabletContentPaddingUnit"},attributes:t,setAttributes:a,link:{value:ke,label:"contentPaddingLink"}})))),React.createElement(il,ix({},rl,{parentProps:e})))))}),rx=a(131),sx=0,cx={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ux={};ux.locals=rx.a.locals||{},ux.use=function(){return sx++||(ox=ke()(rx.a,cx)),ux},ux.unuse=function(){sx>0&&!--sx&&(ox(),ox=null)};var px=ux,bx=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(px.use(),()=>{px.unuse()}),[]);const{attributes:{block_id:t,icon:a,noticeTitle:l,noticeContent:i,noticeDismiss:o,noticeAlignment:n,headingTag:s},setAttributes:c,className:u,deviceType:p}=e;let b="";o&&(b=Ce(a,c));const d={allowedBlocks:["core/paragraph"],template:[["core/paragraph",{content:i}]],templateLock:!1,renderAppender:!1},g=Object(ge.useInnerBlocksProps)({className:"uagb-notice-text"},d);return React.createElement("div",{className:Be()(u,""+o,"uagb-inline_notice__align-"+n,"uagb-block-"+t,"uagb-editor-preview-mode-"+p.toLowerCase())},React.createElement("button",{className:"uagb-notice-close-button",type:"button","aria-label":"Close"},b),React.createElement(ge.RichText,{tagName:s,placeholder:Object(r.__)("Notice Title","ultimate-addons-for-gutenberg"),keepPlaceholderOnFocus:!0,value:l,className:"uagb-notice-title",onChange:e=>c({noticeTitle:e})}),React.createElement("div",g))}),dx=Object(B.memo)(e=>{let{attributes:t}=e;const{titleLoadGoogleFonts:a,titleFontFamily:l,titleFontWeight:i,descLoadGoogleFonts:o,descFontFamily:n,descFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)}),gx=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,clientId:a,attributes:l,attributes:{UAGHideDesktop:i,UAGHideTab:o,UAGHideMob:n},name:r,deviceType:s}=e;Object(B.useEffect)(()=>{Bs()},[s]);const c=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,textColor:r,titleColor:s,noticeColor:c,contentBgColor:u,noticeDismissColor:p,iconSize:b,iconSizeTab:d,iconSizeMob:g,iconSizeUnit:m,titleFontFamily:y,titleFontWeight:f,titleFontSizeType:h,titleLineHeightType:v,titleFontSize:_,titleFontSizeTablet:T,titleFontSizeMobile:C,titleLineHeight:S,titleLineHeightTablet:w,titleLineHeightMobile:k,descFontFamily:P,descFontWeight:x,descFontSize:A,descFontSizeType:G,descFontSizeTablet:M,descFontSizeMobile:R,descLineHeight:B,descLineHeightType:U,descLineHeightTablet:E,descLineHeightMobile:O,contentTopPadding:L,contentRightPadding:H,contentBottomPadding:j,contentVrPadding:F,contentHrPadding:z,contentLeftPadding:D,contentTopPaddingTablet:N,contentRightPaddingTablet:I,contentBottomPaddingTablet:V,contentLeftPaddingTablet:W,contentTopPaddingMobile:q,contentRightPaddingMobile:Z,contentBottomPaddingMobile:$,contentLeftPaddingMobile:Y,contentPaddingUnit:K,mobileContentPaddingUnit:J,tabletContentPaddingUnit:X,titleVrPadding:Q,titleHrPadding:ee,titleTopPadding:te,titleRightPadding:le,titleBottomPadding:ie,titleLeftPadding:oe,titleTopPaddingTablet:ne,titleRightPaddingTablet:re,titleBottomPaddingTablet:se,titleLeftPaddingTablet:ce,titleTopPaddingMobile:ue,titleRightPaddingMobile:pe,titleBottomPaddingMobile:be,titleLeftPaddingMobile:de,titlePaddingUnit:ge,mobileTitlePaddingUnit:me,tabletTitlePaddingUnit:ye,noticeDismiss:fe,noticeAlignment:he,layout:ve,highlightWidth:_e,highlightWidthMobile:Te,highlightWidthTablet:Ce,titleTransform:Se,titleDecoration:we,descTransform:ke,descDecoration:Pe,titleFontStyle:xe,descFontStyle:Ae,titleLetterSpacing:Ge,titleLetterSpacingTablet:Me,titleLetterSpacingMobile:Re,titleLetterSpacingType:Be,descLetterSpacing:Ue,descLetterSpacingTablet:Ee,descLetterSpacingMobile:Oe,descLetterSpacingType:Le}=e,He=Ps(b,"iconSize",i),je=Ps(d,"iconSizeTab",i),Fe=Ps(g,"iconSizeMob",i),ze=Ps(_e,"highlightWidth",i),De=Ps(Ce,"highlightWidthTablet",i),Ne=Ps(Te,"highlightWidthMobile",i),Ie="number"==typeof te?te:Q,Ve="number"==typeof oe?oe:ee,We="number"==typeof le?le:ee,qe="number"==typeof ie?ie:Q,Ze="number"==typeof ue?ue:Q,$e="number"==typeof de?de:ee,Ye="number"==typeof pe?pe:ee,Ke="number"==typeof be?be:Q,Je="number"==typeof ne?ne:Q,Xe="number"==typeof ce?ce:ee,Qe="number"==typeof re?re:ee,et="number"==typeof se?se:Q;let tt,at,lt,it,ot,nt;!fe||"left"!==he&&"center"!==he?(tt=Ve,at=We,lt=$e,it=Ye,ot=Xe,nt=Qe):(at=We,tt=Ve,lt=$e,it=Ye,ot=Xe,nt=Qe);const rt="number"==typeof Je?Je:Ie,st="number"==typeof Xe?Xe:Ve,ct="number"==typeof Qe?Qe:We,ut="number"==typeof Ce?Ce:ze,pt="number"==typeof Je?ye:ge,bt="number"==typeof Xe?ye:ge,dt="number"==typeof Qe?ye:ge,gt="number"==typeof Ze?Ze:rt,mt="number"==typeof $e?$e:st,yt="number"==typeof Ye?Ye:ct,ft="number"==typeof Te?Te:ut,ht="number"==typeof Ze?me:pt,vt="number"==typeof $e?me:bt,_t="number"==typeof Ye?me:dt,Tt="number"==typeof L?L:F,Ct="number"==typeof D?D:z,St="number"==typeof H?H:z,wt="number"==typeof j?j:F,kt="number"==typeof q?q:F,Pt="number"==typeof Y?Y:z,xt="number"==typeof Z?Z:z,At="number"==typeof $?$:F,Gt="number"==typeof N?N:F,Mt="number"==typeof W?W:z,Rt="number"==typeof I?I:z,Bt="number"==typeof V?V:F;let Ut={},Et={};const Ot={" .rich-text.block-editor-rich-text__editable.uagb-notice-title":{"font-size":ns(_,h),"font-weight":f,"font-family":y,"font-style":xe,"text-decoration":we,"text-transform":Se,"line-height":ns(S,v),color:s,"padding-left":ns(tt,ge),"padding-right":ns(at,ge),"padding-top":ns(Ie,ge),"padding-bottom":ns(qe,ge),"letter-spacing":ns(Ge,Be)}," .uagb-notice-text.block-editor-block-list__layout p":{color:r}," .uagb-notice-text.block-editor-block-list__layout":{color:r,"padding-left":ns(Ct,K),"padding-right":ns(St,K),"padding-top":ns(Tt,K),"padding-bottom":ns(wt,K),"font-size":ns(A,G),"font-weight":x,"font-family":P,"font-style":Ae,"text-decoration":Pe,"text-transform":ke,"line-height":ns(B,U),"letter-spacing":ns(Ue,Le)}," .rich-text.block-editor-rich-text__editable.uagb-notice-text":{color:r,"padding-left":ns(Ct,K),"padding-right":ns(St,K),"padding-top":ns(Tt,K),"padding-bottom":ns(wt,K),"font-size":ns(A,G),"font-weight":x,"font-family":P,"font-style":Ae,"text-decoration":Pe,"text-transform":ke,"line-height":ns(B,U),"letter-spacing":ns(Ue,Le)}," span.uagb-notice-dismiss":{fill:p}," svg":{fill:p},'.uagb-dismissable button[type="button"] svg':{width:ns(He,m),height:ns(He,m),top:ns(Ie,ge)},'.uagb-inline_notice__align-left button[type="button"] svg':{right:ns(We,ge)},'.uagb-inline_notice__align-center button[type="button"] svg':{right:ns(We,ge)}};Et={" .rich-text.block-editor-rich-text__editable.uagb-notice-title":{"font-size":ns(C,h),"line-height":ns(k,v),"padding-left":ns(lt,me),"padding-right":ns(it,me),"padding-top":ns(Ze,me),"padding-bottom":ns(Ke,me),"letter-spacing":ns(Re,Be)}," .uagb-notice-text.block-editor-block-list__layout":{"font-size":ns(R,G),"line-height":ns(O,U),"letter-spacing":ns(Oe,Le),"padding-left":ns(Pt,J),"padding-right":ns(xt,J),"padding-top":ns(kt,J),"padding-bottom":ns(At,J)}," .rich-text.block-editor-rich-text__editable.uagb-notice-text":{"font-size":ns(R,G),"line-height":ns(O,U),"letter-spacing":ns(Oe,Le),"padding-left":ns(Pt,J),"padding-right":ns(xt,J),"padding-top":ns(kt,J),"padding-bottom":ns(At,J)},'.uagb-dismissable button[type="button"] svg':{width:ns(Fe,m),height:ns(Fe,m),top:ns(gt,ht)},'.uagb-inline_notice__align-left button[type="button"] svg':{right:ns(yt,_t)},'.uagb-inline_notice__align-center button[type="button"] svg':{right:ns(yt,_t)}},Ut={" .rich-text.block-editor-rich-text__editable.uagb-notice-title":{"font-size":ns(T,h),"line-height":ns(w,v),"padding-left":ns(ot,ye),"padding-right":ns(nt,ye),"padding-top":ns(Je,ye),"padding-bottom":ns(et,ye),"letter-spacing":ns(Me,Be)}," .uagb-notice-text.block-editor-block-list__layout":{"font-size":ns(M,G),"line-height":ns(E,U),"letter-spacing":ns(Ee,Le),"padding-left":ns(Mt,X),"padding-right":ns(Rt,X),"padding-top":ns(Gt,X),"padding-bottom":ns(Bt,X)}," .rich-text.block-editor-rich-text__editable.uagb-notice-text":{"font-size":ns(M,G),"line-height":ns(E,U),"letter-spacing":ns(Ee,Le),"padding-left":ns(Mt,X),"padding-right":ns(Rt,X),"padding-top":ns(Gt,X),"padding-bottom":ns(Bt,X)},'.uagb-dismissable button[type="button"] svg':{width:ns(je,m),height:ns(je,m),top:ns(rt,pt)},'.uagb-inline_notice__align-left button[type="button"] svg':{right:ns(ct,dt)},'.uagb-inline_notice__align-center button[type="button"] svg':{right:ns(ct,dt)}},"modern"===ve?(Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["background-color"]=c,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["border-top-right-radius"]="3px",Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["border-top-left-radius"]="3px",Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["background-color"]=u,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"].border="2px solid "+c,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["border-bottom-left-radius"]="3px",Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["border-bottom-right-radius"]="3px",Ot[" .uagb-notice-text.block-editor-block-list__layout"]["background-color"]=u,Ot[" .uagb-notice-text.block-editor-block-list__layout"].border="2px solid "+c,Ot[" .uagb-notice-text.block-editor-block-list__layout"]["border-bottom-left-radius"]="3px",Ot[" .uagb-notice-text.block-editor-block-list__layout"]["border-bottom-right-radius"]="3px",Ot['.uagb-inline_notice__align-right button[type="button"] svg']={left:ns(Ve,ge)},Ut['.uagb-inline_notice__align-right button[type="button"] svg']={left:ns(st,bt)},Et['.uagb-inline_notice__align-right button[type="button"] svg']={left:ns(mt,vt)}):"simple"===ve&&(Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["background-color"]=u,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["border-left"]=ns(ze,"px")+" solid "+c,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["background-color"]=u,Ot[" .uagb-notice-text.block-editor-block-list__layout"]["background-color"]=u,Ot[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["border-left"]=ns(ze,"px")+" solid "+c,Ot[" .uagb-notice-text.block-editor-block-list__layout"]["border-left"]=ns(ze,"px")+" solid "+c,Et[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["border-left"]=ns(Ne,"px")+" solid "+c,Et[" .uagb-notice-text.block-editor-block-list__layout"]["border-left"]=ns(Ne,"px")+" solid "+c,Et[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["border-left"]=ns(Ne,"px")+" solid "+c,Ut[" .rich-text.block-editor-rich-text__editable.uagb-notice-text"]["border-left"]=ns(De,"px")+" solid "+c,Ut[" .uagb-notice-text.block-editor-block-list__layout"]["border-left"]=ns(De,"px")+" solid "+c,Ut[" .rich-text.block-editor-rich-text__editable.uagb-notice-title"]["border-left"]=ns(De,"px")+" solid "+c,Ot[".uagb-inline_notice__align-right svg"]={left:`calc(${ns(Ve,ge)} + ${ns(ze,"px")})`},Ut['.uagb-inline_notice__align-right button[type="button"] svg']={left:`calc(${ns(st,bt)} + ${ns(ut,"px")})`},Et['.uagb-inline_notice__align-right button[type="button"] svg']={left:`calc(${ns(mt,vt)} + ${ns(ft,"px")})`});const Lt=`.editor-styles-wrapper #block-${t} .uagb-block-${n}`;let Ht=ae(Ot,Lt);return"tablet"!==o&&"mobile"!==o||(Ht+=ae(Ut,""+Lt,!0,"tablet"),"mobile"===o&&(Ht+=ae(Et,""+Lt,!0,"mobile"))),Ht}(l,a,r,s),[l,s]);return Object(B.useEffect)(()=>{he(e)},[i,o,n,s]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:c}),React.createElement(dx,{attributes:l}),t&&React.createElement(nx,e),React.createElement(bx,e))});a(356);var mx=[{attributes:Kt,save(e){const{attributes:t,className:a}=e,{block_id:l,c_id:i,noticeTitle:o,noticeContent:n,noticeAlignment:r,headingTag:s,icon:c,noticeDismiss:u,cookies:p,close_cookie_days:b}=t;let d="";u&&(d=React.createElement("span",{className:"uagb-notice-dismiss"},Wm(c)));var g="";return!0===p&&(g="uagb-notice__active"),React.createElement("div",{className:Be()(a,"uagb-inline_notice__outer-wrap",""+u,"uagb-inline_notice__align-"+r,"uagb-block-"+l,""+g)},d,React.createElement(ge.RichText.Content,{value:o,tagName:s,className:"uagb-notice-title"}),React.createElement(ge.RichText.Content,{value:n,tagName:"div",className:"uagb-notice-text"}))}},{attributes:{block_id:{type:"string"},c_id:{type:"string",default:null},noticeTitle:{type:"string",source:"html",selector:".uagb-notice-title",default:Object(r.__)("Notice Title","ultimate-addons-for-gutenberg")},headingTag:{type:"string",default:"h4"},noticeContent:{type:"string",default:"",multiline:"p"},noticeDismiss:{type:"string",default:""},cookies:{type:"boolean",default:!1},close_cookie_days:{type:"number",default:1},textColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},titleColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},noticeColor:{type:"string",default:"#FFD54F",UAGCopyPaste:{styleType:"main-title-border-color"}},contentBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},noticeDismissColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},icon:{type:"string",default:"rectangle-xmark"},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"btn-size"}},iconSizeTab:{type:"number",UAGCopyPaste:{styleType:"btn-size-tablet"}},iconSizeMob:{type:"number",UAGCopyPaste:{styleType:"btn-size-mobile"}},iconSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},noticeAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},titleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},titleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},titleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},titleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},titleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},titleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},titleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},titleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},titleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},titleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},titleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},titlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobileTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tabletTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},titlePaddingLink:{type:"boolean",default:!1},layout:{type:"string",default:"modern",UAGCopyPaste:{styleType:"notice-layout"}},highlightWidth:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},contentLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},contentRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},contentTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding"}},contentBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},contentLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-tablet"}},contentBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-mobile"}},contentBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},mobileContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"},default:"px"},contentPaddingLink:{type:"boolean",default:!1},contentVrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-vertical-padding"}},contentHrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-horizontal-padding"}},titleVrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"},default:15},titleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"},default:15},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}},save:function(e){const{attributes:t,className:a}=e,{block_id:l,noticeTitle:i,noticeContent:o,noticeAlignment:n,headingTag:r,icon:s,noticeDismiss:c,cookies:u}=t;let p="";c&&(p=Ce(s));let b="";return!0===u&&(b="uagb-notice__active"),React.createElement("div",{className:Be()(a,""+c,"uagb-inline_notice__align-"+n,"uagb-block-"+l,""+b)},p,React.createElement(ge.RichText.Content,{value:i,tagName:r,className:"uagb-notice-title"}),React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-notice-text"}))}},{attributes:{block_id:{type:"string"},c_id:{type:"string",default:null},noticeTitle:{type:"string",source:"html",selector:".uagb-notice-title",default:Object(r.__)("Notice Title","ultimate-addons-for-gutenberg")},headingTag:{type:"string",default:"h4"},noticeContent:{type:"string",default:"",multiline:"p"},noticeDismiss:{type:"string",default:""},cookies:{type:"boolean",default:!1},close_cookie_days:{type:"number",default:1},textColor:{type:"string",default:"",UAGCopyPaste:{styleType:"desc-color"}},titleColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},noticeColor:{type:"string",default:"#FFD54F",UAGCopyPaste:{styleType:"main-title-border-color"}},contentBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},noticeDismissColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-color"}},icon:{type:"string",default:"rectangle-xmark"},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"btn-size"}},iconSizeTab:{type:"number",UAGCopyPaste:{styleType:"btn-size-tablet"}},iconSizeMob:{type:"number",UAGCopyPaste:{styleType:"btn-size-mobile"}},iconSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-size-unit"}},noticeAlignment:{type:"string",default:"left",UAGCopyPaste:{styleType:"btn-align"}},titleFontFamily:{type:"string",UAGCopyPaste:{styleType:"main-title-font-family"},default:"Default"},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},titleTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},descFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"desc-font-family"}},descFontWeight:{type:"string",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"desc-font-style"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},descFontSize:{type:"number",UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-font-size-type"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descLineHeight:{type:"number",UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightType:{type:"string",UAGCopyPaste:{styleType:"desc-line-height-type"},default:"em"},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",UAGCopyPaste:{styleType:"main-title-load-google-fonts"},default:!1},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},titleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},titleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},titleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},titleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},titleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},titleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},titleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},titleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},titleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},titleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},titleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},titleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},titlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobileTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tabletTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},titlePaddingLink:{type:"boolean",default:!1},layout:{type:"string",default:"modern",UAGCopyPaste:{styleType:"notice-layout"}},highlightWidth:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},highlightWidthMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"main-title-border-width"}},contentLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},contentRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},contentTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding"}},contentBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},contentLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},contentRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},contentTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-tablet"}},contentBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},contentLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},contentRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},contentTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-Top-padding-mobile"}},contentBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},contentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit"},default:"px"},mobileContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletContentPaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"},default:"px"},contentPaddingLink:{type:"boolean",default:!1},contentVrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-vertical-padding"}},contentHrPadding:{type:"number",default:15,UAGCopyPaste:{styleType:"desc-horizontal-padding"}},titleVrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"},default:15},titleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"},default:15},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}},save:function(e){const{attributes:t,className:a}=e,{block_id:l,noticeTitle:i,noticeContent:o,noticeAlignment:n,headingTag:r,icon:s,noticeDismiss:c,cookies:u}=t;let p="";c&&(p=Ce(s));let b="";return!0===u&&(b="uagb-notice__active"),React.createElement("div",{className:Be()(a,""+c,"uagb-inline_notice__align-"+n,"uagb-block-"+l,""+b)},React.createElement("button",{className:"uagb-notice-close-button",type:"button","aria-label":"Close"},p),React.createElement(ge.RichText.Content,{value:i,tagName:r,className:"uagb-notice-title"}),React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-notice-text"}))}}];let yx={};yx=Object(j.applyFilters)("uagb/inline-notice",ws(yx)),Object(be.registerBlockType)("uagb/inline-notice",{...yx,title:Object(r.__)("Inline Notice","ultimate-addons-for-gutenberg"),description:Object(r.__)("Highlight important information using inline notice block.","ultimate-addons-for-gutenberg"),icon:se.inline_notice,keywords:[Object(r.__)("inline notice","ultimate-addons-for-gutenberg"),Object(r.__)("notice","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Kt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"inline-notice"}):React.createElement(gx,e),save:function(e){const{attributes:t,className:a}=e,{block_id:l,noticeTitle:i,noticeAlignment:o,headingTag:n,icon:r,noticeDismiss:s,cookies:c}=t;let u="";s&&(u=Ce(r));let p="";return!0===c&&(p="uagb-notice__active"),React.createElement("div",{className:Be()(a,""+s,"uagb-inline_notice__align-"+o,"uagb-block-"+l,""+p)},React.createElement("button",{className:"uagb-notice-close-button",type:"button","aria-label":"Close"},u),React.createElement(ge.RichText.Content,{value:i,tagName:n,className:"uagb-notice-title"}),React.createElement("div",{className:"uagb-notice-text"},React.createElement(ge.InnerBlocks.Content,null)))},deprecated:mx});function fx(){return(fx=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var hx,vx=Object(B.memo)(e=>{const{loopLottie:t,reverseDirection:a}=e,{setAttributes:l,attributes:{lottieSource:i,align:o,height:n,heightTablet:s,heightMob:c,width:u,widthTablet:p,widthMob:b,backgroundColor:d,loop:g,speed:m,reverse:y,jsonLottie:f,lottieURl:h,playOn:v,backgroundHColor:_}}=e,T=e=>{e&&null!=e&&e.url?l({jsonLottie:e,lottieURl:null==e?void 0:e.url,lottieSource:"library"}):l({jsonLottie:null})},C=React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement("p",{className:"uagb-form-notice"},React.createElement(React.Fragment,null,Object(r.__)("Note: You can see sample Lottie animations ","ultimate-addons-for-gutenberg"),React.createElement(Le.ExternalLink,{href:"https://lottiefiles.com/"},Object(r.__)("here on this","ultimate-addons-for-gutenberg")),Object(r.__)(" website.","ultimate-addons-for-gutenberg"))),React.createElement(Na,{setAttributes:l,label:Object(r.__)("File Source","ultimate-addons-for-gutenberg"),data:{value:i,label:"lottieSource"},options:[{value:"library",label:Object(r.__)("Library","ultimate-addons-for-gutenberg")},{value:"url",label:Object(r.__)("URL","ultimate-addons-for-gutenberg")}]}),"upload"===i&&React.createElement(Yl,{backgroundImage:f,onSelectImage:T,slug:"lottie",label:Object(r.__)("Lottie Animation","ultimate-addons-for-gutenberg"),allow:["application/json"],disableRemove:!0}),"library"===i&&React.createElement(Yl,{backgroundImage:f,onSelectImage:T,slug:"lottie",label:Object(r.__)("Lottie Animation","ultimate-addons-for-gutenberg"),allow:["application/json"],disableRemove:!0}),"url"===i&&React.createElement(Fs,{label:Object(r.__)("Lottie Animation URL","ultimate-addons-for-gutenberg"),value:h,data:{value:h,label:"lottieURl"},setAttributes:l,onChange:e=>l({lottieURl:e})}),React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("Add ALLOW_UNFILTERED_UPLOADS to upload Lottie JSON files. Disable it after upload for better security.","ultimate-addons-for-gutenberg"))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:l,label:Object(r.__)("Play On","ultimate-addons-for-gutenberg"),data:{value:v,label:"playOn"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"hover",label:Object(r.__)("Hover","ultimate-addons-for-gutenberg")},{value:"click",label:Object(r.__)("Click","ultimate-addons-for-gutenberg")},{value:"scroll",label:Object(r.__)("Viewport","ultimate-addons-for-gutenberg")}],help:"scroll"===v||"none"===v?Object(r.__)("This setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg"):""}),React.createElement(Na,{setAttributes:l,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Loop","ultimate-addons-for-gutenberg"),checked:g,onChange:t,help:Object(r.__)("Enabling this will show the animation in the loop. This setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")}),React.createElement(Qa,{label:Object(r.__)("Speed","ultimate-addons-for-gutenberg"),setAttributes:l,value:m,data:{value:m,label:"speed"},min:1,max:50,displayUnit:!1,help:Object(r.__)("This setting will only take effect once you refresh the editor page.","ultimate-addons-for-gutenberg")}),g&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Reverse","ultimate-addons-for-gutenberg"),checked:y,onChange:a,help:Object(r.__)("Direction of animation.","ultimate-addons-for-gutenberg")}))),S=React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:u,label:"width"},tablet:{value:p,label:"widthTablet"},mobile:{value:b,label:"widthMob"}},min:0,max:1e3,displayUnit:!1,setAttributes:l}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:n,label:"height"},tablet:{value:s,label:"heightTablet"},mobile:{value:c,label:"heightMob"}},min:0,max:1e3,displayUnit:!1,setAttributes:l}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"backgroundColor"},setAttributes:l}),hover:React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:_||"",data:{value:_,label:"backgroundHColor"},setAttributes:l}),disableBottomSeparator:!0}));return uagb_blocks_info.uagb_mime_type?React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(Le.ToolbarGroup,null,React.createElement(ge.MediaReplaceFlow,{mediaURL:h,allowedTypes:["application/json"],accept:["application/json"],onSelectURL:e=>{l({lottieURl:e,lottieSource:"url"})},onSelect:T}))),React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","style","advance"]},React.createElement(il,ol,C),React.createElement(il,nl,S),React.createElement(il,fx({},rl,{parentProps:e}))))):React.createElement("div",{className:"uagb-show-notice"},React.createElement("span",null,Object(r.__)("Lottie block requires the file type JSON to be uploaded to media files. Seems like your website has disabled this file type. Please refer","ultimate-addons-for-gutenberg"),React.createElement("a",{href:uagb_blocks_info.docsUrl,target:"__blank"}," ",Object(r.__)("this document","ultimate-addons-for-gutenberg")," "),Object(r.__)("to know more about it.","ultimate-addons-for-gutenberg")))}),Tx=a(191),Cx=a(132),Sx=0,wx={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},kx={};kx.locals=Cx.a.locals||{},kx.use=function(){return Sx++||(hx=ke()(Cx.a,wx)),kx},kx.unuse=function(){Sx>0&&!--Sx&&(hx(),hx=null)};var Px=kx,xx=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Px.use(),()=>{Px.unuse()}),[]);const{className:t,attributes:a,setAttributes:l,deviceType:i,lottieplayer:o,name:n}=e,s=n.replace("uagb/",""),{loop:c,speed:u,reverse:p,lottieURl:b,playOn:d,align:g,jsonLottie:m}=a,y=p&&c?-1:1,f=()=>{o.current.setPlayerDirection(y),o.current.play()},h=()=>{o.current.stop()};return"invalid"===(b&&b.endsWith(".json")?"valid":"invalid")?React.createElement("div",{className:"uagb-lottie_upload_wrap"},React.createElement(ge.MediaPlaceholder,{icon:React.createElement(ge.BlockIcon,{icon:se.lottie}),labels:{title:Object(r.__)("Lottie","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Allows you to add fancy animation i.e Lottie to your website.","ultimate-addons-for-gutenberg")},accept:["application/json"],allowedTypes:["application/json"],value:m,onSelect:e=>{e&&e.url?l({jsonLottie:e,lottieURl:e.url,lottieSource:"library"}):l({jsonLottie:null})},onSelectURL:e=>{l({lottieURl:e,lottieSource:"url"})}})):React.createElement("div",{className:Be()(t,"uagb-block-"+a.block_id,"uagb-lottie__outer-wrap","uagb-lottie__"+g,"uagb-editor-preview-mode-"+i.toLowerCase()),onMouseEnter:"hover"===d?f:h,onMouseLeave:"hover"===d?()=>{o.current.setPlayerDirection(y),o.current.stop()}:h,onClick:"click"===d?f:h},React.createElement(Tx.a,{autoplay:!0,ref:o,src:b,loop:c,speed:Ps(u,"speed",s)}))});function Ax(){return(Ax=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Gx=Object(L.compose)(vs,fe)(e=>{const{setAttributes:t,attributes:a,isSelected:l,clientId:i,deviceType:o}=e,{UAGHideDesktop:n,UAGHideTab:r,UAGHideMob:s,loop:c,reverse:u}=a,p=Object(B.useRef)(),[b,d]=Object(B.useState)({direction:1,loopState:!0}),g=Object(B.useMemo)(()=>function(e,t,a){const{width:l,widthTablet:i,widthMob:o,height:n,heightTablet:r,heightMob:s,backgroundColor:c,backgroundHColor:u,block_id:p}=e,b=a.toLowerCase(),d=isNaN(l)?"auto":l+"px",g=isNaN(n)?"auto":n+"px",m=isNaN(i)?d:i+"px",y=isNaN(o)?m:o+"px",f=isNaN(r)?g:r+"px",h=isNaN(s)?f:s+"px",v={".uagb-lottie__outer-wrap":{width:m,height:f}," .lf-player-container #lottie":{height:f}},_={".uagb-lottie__outer-wrap":{width:y,height:h}," .lf-player-container #lottie":{height:h}},T=".editor-styles-wrapper .uagb-block-"+p;let C=ae({".uagb-lottie__outer-wrap":{width:d,height:g,background:c},".uagb-lottie__outer-wrap:hover":{background:u}," .lf-player-container #lottie":{height:g}},T);return"tablet"!==b&&"mobile"!==b||(C+=ae(v,""+T,!0,"tablet"),"mobile"===b&&(C+=ae(_,""+T,!0,"mobile"))),C}(a,0,o),[a,o]);return Object(B.useEffect)(()=>{he(e)},[n,r,s,o]),Object(B.useEffect)(()=>{Bs()},[o]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:g}),React.createElement(xx,Ax({lottieplayer:p},e)),l&&React.createElement(vx,Ax({},e,{loopLottie:()=>{const{loopState:e}=b;t({loop:!c}),d({loopState:!e})},reverseDirection:()=>{const{direction:e}=b;t({reverse:!u}),d({direction:-1*e})}})))});let Mx={};Mx=Object(j.applyFilters)("uagb/lottie",ws(Mx)),Object(be.registerBlockType)("uagb/lottie",{...Mx,title:Object(r.__)("Lottie Animation","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add customizable lottie animation on your page.","ultimate-addons-for-gutenberg"),icon:se.lottie,keywords:[Object(r.__)("lottie","ultimate-addons-for-gutenberg"),Object(r.__)("animation","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,attributes:ma,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"lottie"}):React.createElement(Gx,e),save:()=>null});const Rx=[{defaultAttributes:Dt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"paddingBtnLeft",value:35},{label:"paddingBtnRight",value:35},{label:"paddingBtnTop",value:10},{label:"paddingBtnBottom",value:10},{label:"backgroundType",value:"color"},{label:"titleColor",value:"#fff"},{label:"prefixColor",value:"#fff"},{label:"iconColor",value:"#fff"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:100},{label:"btnBorderTopRightRadius",value:100},{label:"btnBorderBottomLeftRadius",value:100},{label:"btnBorderBottomRightRadius",value:100},{label:"iconPosition",value:"after"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="56" y="105" width="213" height="63" rx="31.5" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M108 144.5C108 143.119 109.14 142 110.546 142H215.454C216.86 142 218 143.119 218 144.5C218 145.881 216.86 147 215.454 147H110.546C109.14 147 108 145.881 108 144.5Z" fill="#E6E7E9"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M102 130C102 127.791 103.447 126 105.233 126H219.767C221.553 126 223 127.791 223 130C223 132.209 221.553 134 219.767 134H105.233C103.447 134 102 132.209 102 130Z" fill="#E6E7E9"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"paddingBtnLeft",value:33},{label:"paddingBtnRight",value:33},{label:"paddingBtnTop",value:8},{label:"paddingBtnBottom",value:8},{label:"backgroundType",value:"color"},{label:"titleColor",value:"#fff"},{label:"prefixColor",value:"#fff"},{label:"iconColor",value:"#fff"},{label:"iconPosition",value:"after"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="49" y="106" width="213" height="63" rx="6" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M101 145.5C101 144.119 102.14 143 103.546 143H208.454C209.86 143 211 144.119 211 145.5C211 146.881 209.86 148 208.454 148H103.546C102.14 148 101 146.881 101 145.5Z" fill="#E6E7E9"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M95 131C95 128.791 96.4473 127 98.2325 127H212.767C214.553 127 216 128.791 216 131C216 133.209 214.553 135 212.767 135H98.2325C96.4473 135 95 133.209 95 131Z" fill="#E6E7E9"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"backgroundType",value:"transparent"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopWidth",value:2},{label:"btnBorderLeftWidth",value:2},{label:"btnBorderRightWidth",value:2},{label:"btnBorderBottomWidth",value:2},{label:"btnBorderTopLeftRadius",value:100},{label:"btnBorderTopRightRadius",value:100},{label:"btnBorderBottomLeftRadius",value:100},{label:"btnBorderBottomRightRadius",value:100},{label:"paddingBtnLeft",value:33},{label:"paddingBtnRight",value:33},{label:"paddingBtnTop",value:8},{label:"paddingBtnBottom",value:8},{label:"titleColor",value:"#000000"},{label:"prefixColor",value:"#000000"},{label:"iconColor",value:"#000000"},{label:"iconPosition",value:"after"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="57.25" y="106.25" width="210.5" height="60.5" rx="30.25" stroke="#959595" stroke-width="2.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M108 144.5C108 143.119 109.14 142 110.546 142H215.454C216.86 142 218 143.119 218 144.5C218 145.881 216.86 147 215.454 147H110.546C109.14 147 108 145.881 108 144.5Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M102 130C102 127.791 103.447 126 105.233 126H219.767C221.553 126 223 127.791 223 130C223 132.209 221.553 134 219.767 134H105.233C103.447 134 102 132.209 102 130Z" fill="#D2D2D2"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"paddingBtnLeft",value:35},{label:"paddingBtnRight",value:35},{label:"paddingBtnTop",value:10},{label:"paddingBtnBottom",value:10},{label:"backgroundType",value:"gradient"},{label:"gradientType",value:"linear"},{label:"gradientAngle",value:0},{label:"gradientLocation1",value:0},{label:"gradientLocation2",value:100},{label:"titleColor",value:"#fff"},{label:"prefixColor",value:"#fff"},{label:"iconColor",value:"#fff"},{label:"iconPosition",value:"after"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="57" y="105" width="213" height="63" rx="6" fill="url(#paint0_linear_103_225)"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M109 144.5C109 143.119 110.14 142 111.546 142H216.454C217.86 142 219 143.119 219 144.5C219 145.881 217.86 147 216.454 147H111.546C110.14 147 109 145.881 109 144.5Z" fill="#E6E7E9"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M103 130C103 127.791 104.447 126 106.233 126H220.767C222.553 126 224 127.791 224 130C224 132.209 222.553 134 220.767 134H106.233C104.447 134 103 132.209 103 130Z" fill="#E6E7E9"/> <defs> <linearGradient id="paint0_linear_103_225" x1="163.5" y1="105" x2="163.5" y2="168" gradientUnits="userSpaceOnUse"> <stop stop-color="#D2D2D2"/> <stop offset="1" stop-color="#959595"/> </linearGradient> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:100},{label:"btnBorderTopRightRadius",value:100},{label:"btnBorderBottomLeftRadius",value:100},{label:"btnBorderBottomRightRadius",value:100},{label:"paddingBtnLeft",value:35},{label:"paddingBtnRight",value:35},{label:"paddingBtnTop",value:10},{label:"paddingBtnBottom",value:10},{label:"backgroundType",value:"gradient"},{label:"gradientType",value:"linear"},{label:"gradientAngle",value:0},{label:"gradientLocation1",value:0},{label:"gradientLocation2",value:100},{label:"titleColor",value:"#fff"},{label:"prefixColor",value:"#fff"},{label:"iconColor",value:"#fff"},{label:"iconPosition",value:"after"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="57" y="105" width="213" height="63" rx="31.5" fill="url(#paint0_linear_103_232)"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M109 144.5C109 143.119 110.14 142 111.546 142H216.454C217.86 142 219 143.119 219 144.5C219 145.881 217.86 147 216.454 147H111.546C110.14 147 109 145.881 109 144.5Z" fill="#E6E7E9"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M103 130C103 127.791 104.447 126 106.233 126H220.767C222.553 126 224 127.791 224 130C224 132.209 222.553 134 220.767 134H106.233C104.447 134 103 132.209 103 130Z" fill="#E6E7E9"/> <defs> <linearGradient id="paint0_linear_103_232" x1="163.5" y1="105" x2="163.5" y2="168" gradientUnits="userSpaceOnUse"> <stop stop-color="#D2D2D2"/> <stop offset="1" stop-color="#959595"/> </linearGradient> </defs> </svg>'}];var Bx=Object(j.applyFilters)("uag_marketing_button_presets",Rx);function Ux(){return(Ux=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Ex,Ox=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{align:i,textAlign:o,link:n,linkTarget:s,titleSpace:c,titleSpaceTablet:u,titleSpaceMobile:p,titleSpaceUnit:b,showDescription:d,icon:g,iconPosition:m,iconSpace:y,iconSpaceTablet:f,iconSpaceMobile:h,iconFontSize:v,iconFontSizeMobile:_,iconFontSizeTablet:T,titleColor:C,titleHoverColor:S,prefixColor:w,prefixHoverColor:k,iconColor:P,iconHoverColor:x,backgroundType:A,backgroundColor:G,backgroundHoverColor:M,gradientColor1:R,gradientColor2:B,gradientLocation1:U,gradientLocationTablet1:E,gradientLocationMobile1:O,gradientLocation2:L,gradientLocationTablet2:H,gradientLocationMobile2:j,gradientType:F,gradientAngle:z,gradientAngleTablet:D,gradientAngleMobile:N,titleFontFamily:I,titleFontWeight:V,titleFontStyle:W,titleFontSize:q,titleFontSizeType:Z,titleFontSizeTablet:$,titleFontSizeMobile:Y,titleLineHeightType:K,titleLineHeight:J,titleLineHeightTablet:X,titleLineHeightMobile:Q,titleTag:ee,prefixFontFamily:te,prefixFontWeight:ae,prefixFontStyle:le,prefixFontSize:ie,prefixFontSizeType:oe,prefixFontSizeTablet:ne,prefixFontSizeMobile:re,prefixLineHeightType:se,prefixLineHeight:ce,prefixLineHeightTablet:ue,prefixLineHeightMobile:pe,paddingBtnUnit:be,spacingLink:de,mobilePaddingBtnUnit:me,tabletPaddingBtnUnit:ye,paddingBtnTop:fe,paddingBtnBottom:he,paddingBtnLeft:ve,paddingBtnRight:_e,paddingBtnTopTablet:Te,paddingBtnRightTablet:Se,paddingBtnBottomTablet:we,paddingBtnLeftTablet:ke,paddingBtnTopMobile:Pe,paddingBtnRightMobile:xe,paddingBtnBottomMobile:Ae,paddingBtnLeftMobile:Ge,titleLoadGoogleFonts:Me,prefixLoadGoogleFonts:Re,titleTransform:Be,titleDecoration:Ue,prefixTransform:Oe,prefixDecoration:He,titleLetterSpacing:je,titleLetterSpacingTablet:ze,titleLetterSpacingMobile:De,titleLetterSpacingType:Ne,prefixLetterSpacing:Ie,prefixLetterSpacingTablet:Ve,prefixLetterSpacingMobile:We,prefixLetterSpacingType:qe,inheritFromTheme:Ze,buttonType:$e}=t,Ye=uagb_blocks_info.current_theme,Ke=uagb_blocks_info.is_astra_based_theme;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,!Ze&&React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(zr,{setAttributes:a,presets:Bx,presetInputType:"radioImage"})),React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Content & Heading","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{checked:Ze,onChange:()=>a({inheritFromTheme:!Ze}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ze&&("Astra"===Ye||Ke)&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:$e,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:ee,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Alignment","ultimate-addons-for-gutenberg"),data:{value:i,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"textAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Description","ultimate-addons-for-gutenberg"),checked:d,onChange:()=>a({showDescription:!d})}),React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"link"},setAttributes:a,onChange:e=>a({link:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>a({linkTarget:!s})}))),React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:g,onChange:e=>a({icon:e})}),""!==g&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:m,label:"iconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:Object(r.__)("Before Text","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After Text","ultimate-addons-for-gutenberg")}]}),React.createElement(tl,{label:Object(r.__)("Gap Between Icon And Text","ultimate-addons-for-gutenberg"),data:{desktop:{value:y,label:"iconSpace"},tablet:{value:f,label:"iconSpaceTablet"},mobile:{value:h,label:"iconSpaceMobile"}},min:-50,max:50,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:v,label:"iconFontSize"},tablet:{value:T,label:"iconFontSizeTablet"},mobile:{value:_,label:"iconFontSizeMobile"}},min:0,max:500,displayUnit:!1,setAttributes:a})))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!0},d&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"titleSpace"},tablet:{value:u,label:"titleSpaceTablet"},mobile:{value:p,label:"titleSpaceMobile"}},min:0,max:20,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a,unit:{value:b,label:"titleSpaceUnit"}}),!Ze&&React.createElement(React.Fragment,null,React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Me,label:"titleLoadGoogleFonts"},fontFamily:{value:I,label:"titleFontFamily"},fontWeight:{value:V,label:"titleFontWeight"},fontStyle:{value:W,label:"titleFontStyle"},fontSizeType:{value:Z,label:"titleFontSizeType"},fontSize:{value:q,label:"titleFontSize"},fontSizeMobile:{value:Y,label:"titleFontSizeMobile"},fontSizeTablet:{value:$,label:"titleFontSizeTablet"},lineHeightType:{value:K,label:"titleLineHeightType"},lineHeight:{value:J,label:"titleLineHeight"},lineHeightMobile:{value:Q,label:"titleLineHeightMobile"},lineHeightTablet:{value:X,label:"titleLineHeightTablet"},transform:{value:Be,label:"titleTransform"},decoration:{value:Ue,label:"titleDecoration"},letterSpacing:{value:je,label:"titleLetterSpacing"},letterSpacingTablet:{value:ze,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:De,label:"titleLetterSpacingMobile"},letterSpacingType:{value:Ne,label:"titleLetterSpacingType"}}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:C||"",data:{value:C,label:"titleColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:S||"",data:{value:S,label:"titleHoverColor"},setAttributes:a}),disableBottomSeparator:!0}))),!Ze&&d&&React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Re,label:"prefixLoadGoogleFonts"},fontFamily:{value:te,label:"prefixFontFamily"},fontWeight:{value:ae,label:"prefixFontWeight"},fontStyle:{value:le,label:"prefixFontStyle"},fontSizeType:{value:oe,label:"prefixFontSizeType"},fontSize:{value:ie,label:"prefixFontSize"},fontSizeMobile:{value:re,label:"prefixFontSizeMobile"},fontSizeTablet:{value:ne,label:"prefixFontSizeTablet"},lineHeightType:{value:se,label:"prefixLineHeightType"},lineHeight:{value:ce,label:"prefixLineHeight"},lineHeightMobile:{value:pe,label:"prefixLineHeightMobile"},lineHeightTablet:{value:ue,label:"prefixLineHeightTablet"},transform:{value:Oe,label:"prefixTransform"},decoration:{value:He,label:"prefixDecoration"},letterSpacing:{value:Ie,label:"prefixLetterSpacing"},letterSpacingTablet:{value:Ve,label:"prefixLetterSpacingTablet"},letterSpacingMobile:{value:We,label:"prefixLetterSpacingMobile"},letterSpacingType:{value:qe,label:"prefixLetterSpacingType"}}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:w||"",data:{value:w,label:"prefixColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:k||"",data:{value:k,label:"prefixHoverColor"},setAttributes:a}),disableBottomSeparator:!0})),""!==g&&React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:P||"",data:{value:P,label:"iconColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:x||"",data:{value:x,label:"iconHoverColor"},setAttributes:a}),disableBottomSeparator:!0})),!Ze&&React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:A,label:"backgroundType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")},{value:"gradient",label:Object(r.__)("Gradient","ultimate-addons-for-gutenberg")}]}),"color"===A&&React.createElement(React.Fragment,null,React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:G||"",data:{value:G,label:"backgroundColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:M||"",data:{value:M,label:"backgroundHoverColor"},setAttributes:a})),disableBottomSeparator:!0})),"gradient"===A&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color 1","ultimate-addons-for-gutenberg"),colorValue:B||"",data:{value:B,label:"gradientColor2"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Color 2","ultimate-addons-for-gutenberg"),colorValue:R||"",data:{value:R,label:"gradientColor1"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:F,label:"gradientType"},className:"uagb-multi-button-alignment-control",options:[{value:"linear",label:Object(r.__)("Linear","ultimate-addons-for-gutenberg")},{value:"radial",label:Object(r.__)("Radial","ultimate-addons-for-gutenberg")}]}),React.createElement(tl,{label:Object(r.__)("Location 1","ultimate-addons-for-gutenberg"),data:{desktop:{value:U,label:"gradientLocation1"},tablet:{value:E,label:"gradientLocationTablet1"},mobile:{value:O,label:"gradientLocationMobile1"}},min:-100,max:100,setAttributes:a,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Location 2","ultimate-addons-for-gutenberg"),data:{desktop:{value:L,label:"gradientLocation2"},tablet:{value:H,label:"gradientLocationTablet2"},mobile:{value:j,label:"gradientLocationMobile2"}},min:-100,max:100,setAttributes:a,displayUnit:!1}),"linear"===F&&React.createElement(tl,{label:Object(r.__)("Angle","ultimate-addons-for-gutenberg"),data:{desktop:{value:z,label:"gradientAngle"},tablet:{value:D,label:"gradientAngleTablet"},mobile:{value:N,label:"gradientAngleMobile"}},min:0,max:360,setAttributes:a,displayUnit:!1}))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"btn",attributes:t,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,Ux({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:fe,label:"paddingBtnTop"},valueRight:{value:_e,label:"paddingBtnRight"},valueBottom:{value:he,label:"paddingBtnBottom"},valueLeft:{value:ve,label:"paddingBtnLeft"},valueTopTablet:{value:Te,label:"paddingBtnTopTablet"},valueRightTablet:{value:Se,label:"paddingBtnRightTablet"},valueBottomTablet:{value:we,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:ke,label:"paddingBtnLeftTablet"},valueTopMobile:{value:Pe,label:"paddingBtnTopMobile"},valueRightMobile:{value:xe,label:"paddingBtnRightMobile"},valueBottomMobile:{value:Ae,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:Ge,label:"paddingBtnLeftMobile"},unit:{value:be,label:"paddingBtnUnit"},mUnit:{value:me,label:"mobilePaddingBtnUnit"},tUnit:{value:ye,label:"tabletPaddingBtnUnit"},deviceType:l,attributes:t,setAttributes:a,link:{value:de,label:"spacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}))))),React.createElement(il,Ux({},rl,{parentProps:e})))))}),Lx=a(133),Hx=0,jx={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Fx={};Fx.locals=Lx.a.locals||{},Fx.use=function(){return Hx++||(Ex=ke()(Lx.a,jx)),Fx},Fx.unuse=function(){Hx>0&&!--Hx&&(Ex(),Ex=null)};var zx=Fx,Dx=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(zx.use(),()=>{zx.unuse()}),[]);const{attributes:t,setAttributes:a,className:l,mergeBlocks:i,insertBlocksAfter:o,createBlock:n,onReplace:s,deviceType:c}=e,{block_id:u,align:p,textAlign:b,heading:d,prefix:g,icon:m,iconPosition:y,titleTag:f,showDescription:h,inheritFromTheme:v,buttonType:_}=t,T=v&&"secondary"===_,C=T?{borderWidth:"revert-layer"}:{},S="uagb-marketing-btn__link "+(T?"ast-outline-button":"wp-block-button__link"),w=T?"div":"a",k=React.createElement(React.Fragment,null,""!==m&&Ce(m,a)),P=React.createElement(React.Fragment,null,React.createElement(ge.RichText,{placeholder:Object(r.__)("Add Button Title…","ultimate-addons-for-gutenberg"),value:d.replace(/<(?!br\s*V?)[^>]+>/g,""),allowedFormats:[],tagName:f,onChange:e=>a({heading:e}),className:"uagb-marketing-btn__title",onRemove:()=>s([]),multiline:!1,onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),r=2;r<l;r++)i[r-2]=arguments[r];o([...i,n("core/paragraph",{content:t})])}:void 0}));return React.createElement("div",{className:Be()(l,"uagb-marketing-btn__align-"+p,"uagb-marketing-btn__align-text-"+b,"uagb-marketing-btn__icon-"+y,"uagb-editor-preview-mode-"+c.toLowerCase(),"uagb-block-"+u,"wp-block-button")},React.createElement(w,{className:S,style:C},"before"===y&&React.createElement(React.Fragment,null,k,P),"after"===y&&React.createElement(React.Fragment,null,P,k),h&&React.createElement(ge.RichText,{placeholder:Object(r.__)("Add Button Description…","ultimate-addons-for-gutenberg"),value:g,tagName:"p",onChange:e=>a({prefix:e}),className:"uagb-marketing-btn__prefix",onRemove:()=>s([]),multiline:!1,onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),r=2;r<l;r++)i[r-2]=arguments[r];o([...i,n("core/paragraph",{content:t})])}:void 0})))}),Nx=Object(B.memo)(e=>{let{attributes:t}=e;const{titleLoadGoogleFonts:a,titleFontFamily:l,titleFontWeight:i,prefixLoadGoogleFonts:o,prefixFontFamily:n,prefixFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)}),Ix=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{borderStyle:i,borderWidth:o,borderRadius:n,borderColor:r,borderHoverColor:s,UAGHideDesktop:c,UAGHideTab:u,UAGHideMob:p},clientId:b,name:d,deviceType:g}=e;Object(B.useEffect)(()=>{(o||n||r||s||i)&&ue("btn",{label:"borderWidth",value:o},{label:"borderRadius",value:n},{label:"borderColor",value:r},{label:"borderHoverColor",value:s},{label:"borderStyle",value:i},a,l)},[]),Object(B.useEffect)(()=>{Bs()},[g]);const m=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{titleSpace:n,titleSpaceTablet:r,titleSpaceMobile:s,titleSpaceUnit:c,iconPosition:u,iconSpace:p,iconSpaceTablet:b,iconSpaceMobile:d,iconFontSize:g,iconFontSizeType:m,iconFontSizeMobile:y,iconFontSizeTablet:f,titleColor:h,titleHoverColor:v,prefixColor:_,prefixHoverColor:T,iconColor:C,iconHoverColor:S,btnBorderHColor:w,backgroundType:k,backgroundColor:P,backgroundHoverColor:x,gradientColor1:A,gradientColor2:G,gradientLocation1:M,gradientLocationTablet1:R,gradientLocationMobile1:B,gradientLocation2:U,gradientLocationTablet2:E,gradientLocationMobile2:O,gradientType:L,gradientAngle:H,gradientAngleTablet:j,gradientAngleMobile:F,titleFontFamily:z,titleFontWeight:D,titleFontSize:N,titleFontSizeType:I,titleFontSizeTablet:V,titleFontSizeMobile:W,titleLineHeightType:q,titleLineHeight:Z,titleLineHeightTablet:$,titleLineHeightMobile:Y,prefixFontFamily:K,prefixFontWeight:J,prefixFontSize:X,prefixFontSizeType:Q,prefixFontSizeTablet:ee,prefixFontSizeMobile:te,prefixLineHeightType:le,prefixLineHeight:ie,prefixLineHeightTablet:oe,prefixLineHeightMobile:ne,paddingBtnUnit:re,mobilePaddingBtnUnit:se,tabletPaddingBtnUnit:ce,paddingBtnTop:ue,paddingBtnBottom:pe,paddingBtnLeft:be,paddingBtnRight:de,paddingBtnTopTablet:ge,paddingBtnRightTablet:me,paddingBtnBottomTablet:ye,paddingBtnLeftTablet:fe,paddingBtnTopMobile:he,paddingBtnRightMobile:ve,paddingBtnBottomMobile:_e,paddingBtnLeftMobile:Te,titleTransform:Ce,titleDecoration:Se,prefixTransform:we,prefixDecoration:ke,titleFontStyle:Pe,prefixFontStyle:xe,titleLetterSpacing:Ae,titleLetterSpacingTablet:Ge,titleLetterSpacingMobile:Me,titleLetterSpacingType:Re,prefixLetterSpacing:Be,prefixLetterSpacingTablet:Ue,prefixLetterSpacingMobile:Ee,prefixLetterSpacingType:Oe,block_id:Le,inheritFromTheme:He}=e,je=Ps(M,"gradientLocation1",i),Fe=Ps(U,"gradientLocation2",i),ze=Ps(H,"gradientAngle",i),De=Ps(p,"iconSpace",i),Ne=Ps(g,"iconFontSize",i),Ie=Ps(n,"titleSpace",i),Ve="number"==typeof R?R:je,We="number"==typeof E?E:Fe,qe="number"==typeof B?B:Ve,Ze="number"==typeof O?O:We,$e="number"==typeof j?j:ze,Ye="number"==typeof F?F:$e;let Ke={},Je={},Xe={};const Qe=""===C?h:C,et=""===S?v:S,tt=rs(e,"btn"),at=rs(e,"btn","tablet"),lt=rs(e,"btn","mobile");let it;Ke={" .uagb-marketing-btn__prefix":{"margin-top":ns(Ie,c)}," svg":{fill:Qe,width:ns(Ne,m),height:ns(Ne,m)}," .uagb-marketing-btn__link:hover svg":{fill:et}," .uagb-marketing-btn__link:focus svg":{fill:et}},it="1"!==uagb_blocks_info.is_rtl?"after"===u?"margin-left":"margin-right":"after"===u?"margin-right":"margin-left",Ke[" svg"][it]=ns(De,"px"),Je={" .uagb-marketing-btn__prefix":{"margin-top":ns(r,"px")}," svg":{width:ns(f,m),height:ns(f,m)}},Xe={" .uagb-marketing-btn__prefix":{"margin-top":ns(s,"px")}," svg":{width:ns(y,m),height:ns(y,m)}},Je[" svg"][it]=ns(b,"px"),Xe[" svg"][it]=ns(d,"px");let ot="";"Desktop"===l?ot=`linear-gradient(${ze}deg, ${A} ${je}%, ${G} ${Fe}%)`:"Tablet"===l?ot=`linear-gradient(${$e}deg, ${A} ${Ve}%, ${G} ${We}%)`:"Mobile"===l&&(ot=`linear-gradient(${Ye}deg, ${A} ${qe}%, ${G} ${Ze}%)`);let nt="";"Desktop"===l?nt=`radial-gradient( at center center, ${A} ${je}%, ${G} ${Fe}%)`:"Tablet"===l?nt=`radial-gradient( at center center, ${A} ${Ve}%, ${G} ${We}%)`:"Mobile"===l&&(nt=`radial-gradient( at center center, ${A} ${qe}%, ${G} ${Ze}%)`),He||("transparent"===k?Ke[":not(.is-style-outline) .uagb-marketing-btn__link:not(.has-background)"]={"background-color":"transparent"}:"color"===k?(Ke[":not(.is-style-outline) .uagb-marketing-btn__link:not(.has-background)"]={"background-color":P},Ke[":not(.is-style-outline) .uagb-marketing-btn__link:not(.has-background):hover"]={"background-color":x}):"gradient"===k&&(Ke[":not(.is-style-outline) .uagb-marketing-btn__link:not(.has-background)"]={"background-color":"transparent"},Ke[":not(.is-style-outline) .uagb-marketing-btn__link:not(.has-background)"]["background-image"]="linear"===L?ot:nt),Ke={...Ke," .block-editor-rich-text__editable.uagb-marketing-btn__title":{"font-size":ns(N,I),"line-height":ns(Z,q),"font-family":z,"font-weight":D,"font-style":Pe,"text-transform":Ce,"text-decoration":Se,color:h,"letter-spacing":ns(Ae,Re)}," .block-editor-rich-text__editable.uagb-marketing-btn__prefix":{"font-size":ns(X,Q),"line-height":ns(ie,le),"font-family":K,"font-weight":J,color:_,"font-style":xe,"text-transform":we,"text-decoration":ke,"letter-spacing":ns(Be,Oe)}," .uagb-marketing-btn__link:hover .block-editor-rich-text__editable.uagb-marketing-btn__title":{color:v}," .uagb-marketing-btn__link:focus .block-editor-rich-text__editable.uagb-marketing-btn__title":{color:v}," .uagb-marketing-btn__link:hover .block-editor-rich-text__editable.uagb-marketing-btn__prefix":{color:T}," .uagb-marketing-btn__link:focus .block-editor-rich-text__editable.uagb-marketing-btn__prefix":{color:T}," .uagb-marketing-btn__link:not(.has-background)":{"padding-left":ns(be,re),"padding-right":ns(de,re),"padding-top":ns(ue,re),"padding-bottom":ns(pe,re),...tt}," .uagb-marketing-btn__link:hover":{"border-color":w}," .uagb-marketing-btn__link:focus":{"border-color":w}},Je={...Je," .block-editor-rich-text__editable.uagb-marketing-btn__title":{"font-size":ns(V,I),"line-height":ns($,q),"letter-spacing":ns(Ge,Re)}," .block-editor-rich-text__editable.uagb-marketing-btn__prefix":{"font-size":ns(ee,Q),"line-height":ns(oe,le),"letter-spacing":ns(Ue,Oe)}," .uagb-marketing-btn__link:not(.has-background)":{"padding-left":ns(fe,ce),"padding-right":ns(me,ce),"padding-top":ns(ge,ce),"padding-bottom":ns(ye,ce),...at}},Xe={...Xe," .block-editor-rich-text__editable.uagb-marketing-btn__title":{"font-size":ns(W,I),"line-height":ns(Y,q),"letter-spacing":ns(Me,Re)}," .block-editor-rich-text__editable.uagb-marketing-btn__prefix":{"font-size":ns(te,Q),"line-height":ns(ne,le),"letter-spacing":ns(Ee,Oe)}," .uagb-marketing-btn__link:not(.has-background)":{"padding-left":ns(Te,se),"padding-right":ns(ve,se),"padding-top":ns(he,se),"padding-bottom":ns(_e,se),...lt}});const rt=".editor-styles-wrapper .uagb-block-"+Le;let st=ae(Ke,rt);return"tablet"!==o&&"mobile"!==o||(st+=ae(Je,""+rt,!0,"tablet"),"mobile"===o&&(st+=ae(Xe,""+rt,!0,"mobile"))),st}(l,0,d,g),[l,g]);return Object(B.useEffect)(()=>{he(e)},[c,u,p,g]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:m}),React.createElement(Nx,{attributes:l}),t&&React.createElement(Ox,e),React.createElement(Dx,e))});const Vx={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center"},textAlign:{type:"string",default:"center"},link:{type:"string",default:"#"},linkTarget:{type:"boolean",default:!1},titleSpace:{type:"number",default:0},titleSpaceUnit:{type:"string",default:"px"},showDescription:{type:"boolean",default:!0},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#333"},borderHoverColor:{type:"string"},vPadding:{type:"number",default:8},hPadding:{type:"number",default:20},paddingBtnUnit:{type:"string",default:"px"},mobilePaddingBtnUnit:{type:"string",default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px"},vPaddingTablet:{type:"number"},hPaddingTablet:{type:"number"},vPaddingMobile:{type:"number"},hPaddingMobile:{type:"number"},paddingType:{type:"string",default:"px"},backgroundType:{type:"string",default:"color"},backgroundColor:{type:"string",default:"#eeeeee"},backgroundHoverColor:{type:"string"},gradientColor1:{type:"string"},gradientColor2:{type:"string"},gradientType:{type:"string",default:"linear"},gradientLocation1:{type:"number",default:0},gradientLocation2:{type:"number",default:100},gradientAngle:{type:"number",default:0},backgroundOpacity:{type:"number"},backgroundHoverOpacity:{type:"number"},titleColor:{type:"string",default:"#333"},titleHoverColor:{type:"string"},iconColor:{type:"string",default:"#333"},iconHoverColor:{type:"string"},prefixColor:{type:"string",default:"#333"},prefixHoverColor:{type:"string"},heading:{source:"html",selector:"h1,h2,h3,h4,h5,h6,p,span",default:"Subscribe Now"},prefix:{source:"html",selector:".uagb-marketing-btn__prefix",default:"Get access to Premium Features for FREE for a year!"},icon:{type:"string",default:"external-link-alt"},iconPosition:{type:"string",default:"before"},iconSpace:{type:"number",default:10},titleLoadGoogleFonts:{type:"boolean",default:!1},titleFontFamily:{type:"string",default:"Default"},titleFontWeight:{type:"string"},titleFontSubset:{type:"string"},titleFontSize:{type:"number",default:20},titleFontSizeType:{type:"string",default:"px"},titleFontSizeTablet:{type:"number",default:20},titleFontSizeMobile:{type:"number",default:20},titleLineHeightType:{type:"string",default:"em"},titleLineHeight:{type:"number"},titleLineHeightTablet:{type:"number"},titleLineHeightMobile:{type:"number"},titleTag:{type:"string",default:"h6"},prefixLoadGoogleFonts:{type:"boolean",default:!1},prefixFontFamily:{type:"string",default:"Default"},prefixFontWeight:{type:"string"},prefixFontSubset:{type:"string"},prefixFontSize:{type:"number",default:14},prefixFontSizeType:{type:"string",default:"px"},prefixFontSizeTablet:{type:"number",default:14},prefixFontSizeMobile:{type:"number",default:14},prefixLineHeightType:{type:"string",default:"em"},prefixLineHeight:{type:"number"},prefixLineHeightTablet:{type:"number"},prefixLineHeightMobile:{type:"number"},iconFontSize:{type:"number",default:20},iconFontSizeType:{type:"string",default:"px"},iconFontSizeTablet:{type:"number",default:20},iconFontSizeMobile:{type:"number",default:20},...ce("btn")};var Wx=[{attributes:Vx,save(e){const{attributes:t,className:a}=e,{block_id:l,align:i,textAlign:o,iconPosition:n,icon:r,heading:s,prefix:c,link:u,linkTarget:p}=e.attributes,b=p?"_blank":"";return React.createElement("div",{className:Be()(a,"uagb-marketing-btn__outer-wrap","uagb-marketing-btn__align-"+i,"uagb-marketing-btn__align-text-"+o,"uagb-marketing-btn__icon-"+n),id:"uagb-marketing-btn-"+l},React.createElement("div",{className:"uagb-marketing-btn__wrap"},React.createElement("a",{href:u,className:"uagb-marketing-btn__link",target:b},React.createElement("div",{className:"uagb-marketing-btn__title-wrap"},""!=r&&React.createElement("div",{className:"uagb-marketing-btn__icon-wrap"},Wm(r)),React.createElement(ge.RichText.Content,{value:s,tagName:"h6",className:"uagb-marketing-btn__title"})),React.createElement("div",{className:"uagb-marketing-btn__prefix-wrap"},React.createElement(ge.RichText.Content,{value:c,tagName:"p",className:"uagb-marketing-btn__prefix"})))))}},{attributes:Vx,save(e){const{attributes:t,className:a}=e,{block_id:l,align:i,textAlign:o,iconPosition:n,icon:r,heading:s,prefix:c,link:u,linkTarget:p,titleTag:b}=e.attributes;let d=p?"_blank":"";return React.createElement("div",{className:Be()(a,"uagb-marketing-btn__outer-wrap","uagb-marketing-btn__align-"+i,"uagb-marketing-btn__align-text-"+o,"uagb-marketing-btn__icon-"+n,"uagb-block-"+l)},React.createElement("div",{className:"uagb-marketing-btn__wrap"},React.createElement("a",{href:u,className:"uagb-marketing-btn__link",target:d},React.createElement("div",{className:"uagb-marketing-btn__title-wrap"},""!=r&&React.createElement("div",{className:"uagb-marketing-btn__icon-wrap"},Wm(r)),React.createElement(ge.RichText.Content,{value:s,tagName:b,className:"uagb-marketing-btn__title"})),React.createElement("div",{className:"uagb-marketing-btn__prefix-wrap"},React.createElement(ge.RichText.Content,{value:c,tagName:"p",className:"uagb-marketing-btn__prefix"})))))}},{attributes:Vx,save(e){const{attributes:t,className:a}=e,{block_id:l,align:i,textAlign:o,iconPosition:n,icon:r,heading:s,prefix:c,link:u,linkTarget:p,titleTag:b}=e.attributes;let d=p?"_blank":"";return React.createElement("div",{className:Be()(a,"uagb-marketing-btn__outer-wrap","uagb-marketing-btn__align-"+i,"uagb-marketing-btn__align-text-"+o,"uagb-marketing-btn__icon-"+n,"uagb-block-"+l)},React.createElement("div",{className:"uagb-marketing-btn__wrap"},React.createElement("a",{href:u,className:"uagb-marketing-btn__link",target:d},React.createElement("div",{className:"uagb-marketing-btn__title-wrap"},""!=r&&React.createElement("div",{className:"uagb-marketing-btn__icon-wrap"},Wm(r)),React.createElement(ge.RichText.Content,{value:s,tagName:b,className:"uagb-marketing-btn__title"})),React.createElement("div",{className:"uagb-marketing-btn__prefix-wrap"},React.createElement(ge.RichText.Content,{value:c,tagName:"p",className:"uagb-marketing-btn__prefix"})))))}}];a(357);let qx={};qx=Object(j.applyFilters)("uagb/marketing-button",ws(qx)),Object(be.registerBlockType)("uagb/marketing-button",{...qx,title:Object(r.__)("Marketing Button","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a marketing call to action button with a short description.","ultimate-addons-for-gutenberg"),icon:se.marketing_button,keywords:[Object(r.__)("marketing button","ultimate-addons-for-gutenberg"),Object(r.__)("cta","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Dt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"marketing-button"}):React.createElement(Ix,e),save:function(e){const{attributes:t,className:a}=e,{block_id:l,align:i,textAlign:o,iconPosition:n,icon:r,heading:s,prefix:c,link:u,linkTarget:p,titleTag:b,showDescription:d,inheritFromTheme:g,buttonType:m}=t,y=p?"_blank":"",f=g&&"secondary"===m,h=f?{borderWidth:"revert-layer"}:{},v="uagb-marketing-btn__link "+(f?"ast-outline-button":"wp-block-button__link"),_=React.createElement(React.Fragment,null,""!==r&&Ce(r)),T=React.createElement(React.Fragment,null,React.createElement(ge.RichText.Content,{value:s.replace(/<(?!br\s*V?)[^>]+>/g,""),tagName:b,className:"uagb-marketing-btn__title"}));return React.createElement("div",{className:Be()(a,"uagb-marketing-btn__align-"+i,"uagb-marketing-btn__align-text-"+o,"uagb-marketing-btn__icon-"+n,"uagb-block-"+l,"wp-block-button")},React.createElement("a",{href:u,className:v,target:y,rel:"noopener noreferrer",style:h},"before"===n&&React.createElement(React.Fragment,null,_,T),"after"===n&&React.createElement(React.Fragment,null,T,_),d&&React.createElement(ge.RichText.Content,{value:c,tagName:"p",className:"uagb-marketing-btn__prefix"})))},deprecated:Wx});const Zx=[{defaultAttributes:wa},{defaultPresetAttributes:[{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidth"},{label:"btnBorderTopWidth"},{label:"btnBorderLeftWidth"},{label:"btnBorderRightWidth"},{label:"showBtnIcon"},{label:"buttonIconSpace"},{label:"modalTriggerBgType"},{label:"btnBgHoverColor"},{label:"btnLinkColor"},{label:"btnLinkHoverColor"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"modalTriggerBgType",value:"color"},{label:"showBtnIcon",value:!0},{label:"buttonIconSpace",value:12},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M119.2 144H110.775V127.325H118.975C120.458 127.325 121.617 127.733 122.45 128.55C123.3 129.35 123.725 130.358 123.725 131.575C123.725 132.575 123.442 133.425 122.875 134.125C122.325 134.808 121.642 135.233 120.825 135.4C121.725 135.533 122.483 136 123.1 136.8C123.733 137.583 124.05 138.483 124.05 139.5C124.05 140.833 123.617 141.917 122.75 142.75C121.9 143.583 120.717 144 119.2 144ZM118.375 134.225C119.108 134.225 119.683 134.025 120.1 133.625C120.517 133.225 120.725 132.708 120.725 132.075C120.725 131.425 120.517 130.9 120.1 130.5C119.683 130.1 119.108 129.9 118.375 129.9H113.7V134.225H118.375ZM118.5 141.425C119.3 141.425 119.925 141.225 120.375 140.825C120.825 140.408 121.05 139.833 121.05 139.1C121.05 138.45 120.825 137.908 120.375 137.475C119.925 137.025 119.3 136.8 118.5 136.8H113.7V141.425H118.5ZM137.686 144H135.061V142.4C133.928 143.667 132.503 144.3 130.786 144.3C128.203 144.3 126.911 143.025 126.911 140.475V131.925H129.536V139.525C129.536 140.408 129.744 141.042 130.161 141.425C130.578 141.792 131.178 141.975 131.961 141.975C132.594 141.975 133.186 141.825 133.736 141.525C134.286 141.225 134.728 140.85 135.061 140.4V131.925H137.686V144ZM144.721 144.3C143.704 144.3 142.929 144.033 142.396 143.5C141.879 142.967 141.621 142.2 141.621 141.2V134.225H139.621V131.925H141.621V128.625H144.246V131.925H146.696V134.225H144.246V140.55C144.246 140.983 144.346 141.333 144.546 141.6C144.746 141.85 145.029 141.975 145.396 141.975C145.929 141.975 146.321 141.833 146.571 141.55L147.196 143.525C146.646 144.042 145.821 144.3 144.721 144.3ZM152.704 144.3C151.687 144.3 150.912 144.033 150.379 143.5C149.862 142.967 149.604 142.2 149.604 141.2V134.225H147.604V131.925H149.604V128.625H152.229V131.925H154.679V134.225H152.229V140.55C152.229 140.983 152.329 141.333 152.529 141.6C152.729 141.85 153.012 141.975 153.379 141.975C153.912 141.975 154.304 141.833 154.554 141.55L155.179 143.525C154.629 144.042 153.804 144.3 152.704 144.3ZM162.512 144.3C160.646 144.3 159.146 143.692 158.012 142.475C156.879 141.242 156.312 139.733 156.312 137.95C156.312 136.167 156.879 134.667 158.012 133.45C159.146 132.233 160.646 131.625 162.512 131.625C164.396 131.625 165.904 132.233 167.037 133.45C168.171 134.667 168.737 136.167 168.737 137.95C168.737 139.75 168.171 141.258 167.037 142.475C165.904 143.692 164.396 144.3 162.512 144.3ZM162.512 141.975C163.596 141.975 164.446 141.592 165.062 140.825C165.696 140.042 166.012 139.083 166.012 137.95C166.012 136.833 165.696 135.892 165.062 135.125C164.446 134.342 163.596 133.95 162.512 133.95C161.446 133.95 160.596 134.342 159.962 135.125C159.346 135.892 159.037 136.833 159.037 137.95C159.037 139.083 159.346 140.042 159.962 140.825C160.596 141.592 161.446 141.975 162.512 141.975ZM182.168 144H179.543V136.45C179.543 134.783 178.735 133.95 177.118 133.95C176.485 133.95 175.893 134.108 175.343 134.425C174.793 134.742 174.352 135.125 174.018 135.575V144H171.393V131.925H174.018V133.575C174.468 133.042 175.068 132.583 175.818 132.2C176.568 131.817 177.385 131.625 178.268 131.625C179.552 131.625 180.518 131.958 181.168 132.625C181.835 133.292 182.168 134.25 182.168 135.5V144Z" fill="white"/> <path d="M217 138L207 132.226V143.774L217 138ZM189 139H208V137H189V139Z" fill="white"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"transparent"},{label:"modalTriggerBgHoverType",value:"color"},{label:"btnLinkColor",value:"#0170b9"},{label:"btnLinkHoverColor",value:"#000000"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"transparent"},{label:"modalTriggerBgHoverType",value:"color"},{label:"btnLinkColor",value:"#0170b9"},{label:"btnLinkHoverColor",value:"#000000"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-7",label:Object(r.__)("Preset 7","ultimate-addons-for-gutenberg"),attributes:[{label:"showBtnIcon",value:!1},{label:"modalTriggerBgType",value:"transparent"},{label:"modalTriggerBgHoverType",value:"color"},{label:"btnLinkColor",value:"#0170b9"},{label:"btnLinkHoverColor",value:"#000000"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'},{value:"preset-8",label:Object(r.__)("Preset 8","ultimate-addons-for-gutenberg"),attributes:[{label:"modalTriggerBgType",value:"transparent"},{label:"modalTriggerBgHoverType",value:"color"},{label:"btnLinkColor",value:"#0170b9"},{label:"btnLinkHoverColor",value:"#000000"},{label:"showBtnIcon",value:!0},{label:"buttonIconSpace",value:12},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="104" width="207.786" height="64" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M119.2 145H110.775V128.325H118.975C120.458 128.325 121.617 128.733 122.45 129.55C123.3 130.35 123.725 131.358 123.725 132.575C123.725 133.575 123.442 134.425 122.875 135.125C122.325 135.808 121.642 136.233 120.825 136.4C121.725 136.533 122.483 137 123.1 137.8C123.733 138.583 124.05 139.483 124.05 140.5C124.05 141.833 123.617 142.917 122.75 143.75C121.9 144.583 120.717 145 119.2 145ZM118.375 135.225C119.108 135.225 119.683 135.025 120.1 134.625C120.517 134.225 120.725 133.708 120.725 133.075C120.725 132.425 120.517 131.9 120.1 131.5C119.683 131.1 119.108 130.9 118.375 130.9H113.7V135.225H118.375ZM118.5 142.425C119.3 142.425 119.925 142.225 120.375 141.825C120.825 141.408 121.05 140.833 121.05 140.1C121.05 139.45 120.825 138.908 120.375 138.475C119.925 138.025 119.3 137.8 118.5 137.8H113.7V142.425H118.5ZM137.686 145H135.061V143.4C133.928 144.667 132.503 145.3 130.786 145.3C128.203 145.3 126.911 144.025 126.911 141.475V132.925H129.536V140.525C129.536 141.408 129.744 142.042 130.161 142.425C130.578 142.792 131.178 142.975 131.961 142.975C132.594 142.975 133.186 142.825 133.736 142.525C134.286 142.225 134.728 141.85 135.061 141.4V132.925H137.686V145ZM144.721 145.3C143.704 145.3 142.929 145.033 142.396 144.5C141.879 143.967 141.621 143.2 141.621 142.2V135.225H139.621V132.925H141.621V129.625H144.246V132.925H146.696V135.225H144.246V141.55C144.246 141.983 144.346 142.333 144.546 142.6C144.746 142.85 145.029 142.975 145.396 142.975C145.929 142.975 146.321 142.833 146.571 142.55L147.196 144.525C146.646 145.042 145.821 145.3 144.721 145.3ZM152.704 145.3C151.687 145.3 150.912 145.033 150.379 144.5C149.862 143.967 149.604 143.2 149.604 142.2V135.225H147.604V132.925H149.604V129.625H152.229V132.925H154.679V135.225H152.229V141.55C152.229 141.983 152.329 142.333 152.529 142.6C152.729 142.85 153.012 142.975 153.379 142.975C153.912 142.975 154.304 142.833 154.554 142.55L155.179 144.525C154.629 145.042 153.804 145.3 152.704 145.3ZM162.512 145.3C160.646 145.3 159.146 144.692 158.012 143.475C156.879 142.242 156.312 140.733 156.312 138.95C156.312 137.167 156.879 135.667 158.012 134.45C159.146 133.233 160.646 132.625 162.512 132.625C164.396 132.625 165.904 133.233 167.037 134.45C168.171 135.667 168.737 137.167 168.737 138.95C168.737 140.75 168.171 142.258 167.037 143.475C165.904 144.692 164.396 145.3 162.512 145.3ZM162.512 142.975C163.596 142.975 164.446 142.592 165.062 141.825C165.696 141.042 166.012 140.083 166.012 138.95C166.012 137.833 165.696 136.892 165.062 136.125C164.446 135.342 163.596 134.95 162.512 134.95C161.446 134.95 160.596 135.342 159.962 136.125C159.346 136.892 159.037 137.833 159.037 138.95C159.037 140.083 159.346 141.042 159.962 141.825C160.596 142.592 161.446 142.975 162.512 142.975ZM182.168 145H179.543V137.45C179.543 135.783 178.735 134.95 177.118 134.95C176.485 134.95 175.893 135.108 175.343 135.425C174.793 135.742 174.352 136.125 174.018 136.575V145H171.393V132.925H174.018V134.575C174.468 134.042 175.068 133.583 175.818 133.2C176.568 132.817 177.385 132.625 178.268 132.625C179.552 132.625 180.518 132.958 181.168 133.625C181.835 134.292 182.168 135.25 182.168 136.5V145Z" fill="#959595"/> <path d="M217 139L207 133.226V144.774L217 139ZM189 140H208V138H189V140Z" fill="#959595"/> </svg>'}];function $x(){return($x=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}let Yx=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];const Kx=uagb_blocks_info.spectra_pro_status;function Jx(e){const{attributes:t,setAttributes:a,deviceType:l}=e,{modalTrigger:i,iconImage:o,icon:n,imageSize:s,buttonIcon:c,buttonIconPosition:u,buttonIconSpace:p,buttonIconSpaceTablet:b,buttonIconSpaceMobile:d,buttonIconSpaceType:g,modalAlign:m,modalAlignTablet:y,modalAlignMobile:f,modalWidth:h,modalWidthTablet:v,modalWidthMobile:_,modalWidthType:T,modalWidthTypeTablet:C,modalWidthTypeMobile:S,modalHeight:w,modalHeightTablet:k,modalHeightMobile:P,modalHeightType:x,modalHeightTypeTablet:A,modalHeightTypeMobile:G,closeIconSize:M,closeIconPosition:R,overlayColor:B,closeIconColor:U,escPress:E,overlayClick:O,paddingModalTop:L,paddingModalBottom:H,paddingModalLeft:j,paddingModalRight:z,paddingModalTopTablet:D,paddingModalRightTablet:N,paddingModalBottomTablet:I,paddingModalLeftTablet:V,paddingModalTopMobile:W,paddingModalRightMobile:q,paddingModalBottomMobile:Z,paddingModalLeftMobile:$,paddingModalUnit:Y,modalSpacingLink:K,mobilePaddingModalUnit:J,tabletPaddingModalUnit:X,iconColor:Q,iconSize:ee,textColor:te,textFontFamily:ae,textFontWeight:le,textFontStyle:ie,textFontSizeType:oe,textFontSize:ne,textFontSizeMobile:re,textFontSizeTablet:se,textLineHeightType:ce,textLineHeight:ue,textLineHeightMobile:pe,textLineHeightTablet:be,textLetterSpacing:de,textLetterSpacingTablet:me,textLetterSpacingMobile:ye,textLetterSpacingType:fe,textTransform:he,textDecoration:ve,textLoadGoogleFonts:_e,imageWidth:Te,imageWidthMobile:Se,imageWidthTablet:we,imageWidthType:ke,imageWidthUnit:Pe,imageWidthUnitTablet:xe,imageWidthUnitMobile:Ae,iconimgBorderRadius:Ge,iconimgBorderRadiusUnit:Me,paddingBtnTop:Re,paddingBtnBottom:Be,paddingBtnLeft:Ue,paddingBtnRight:Oe,paddingBtnTopTablet:He,paddingBtnRightTablet:je,paddingBtnBottomTablet:ze,paddingBtnLeftTablet:De,paddingBtnTopMobile:Ne,paddingBtnRightMobile:Ie,paddingBtnBottomMobile:Ve,paddingBtnLeftMobile:We,paddingBtnUnit:qe,btnSpacingLink:Ze,mobilePaddingBtnUnit:$e,tabletPaddingBtnUnit:Ye,inheritFromTheme:Ke,buttonType:Je,btnFontFamily:Xe,btnFontWeight:Qe,btnFontStyle:et,btnFontSizeType:tt,btnFontSize:at,btnFontSizeMobile:lt,btnFontSizeTablet:it,btnLineHeightType:ot,btnLineHeight:nt,btnLineHeightMobile:rt,btnLineHeightTablet:st,btnLetterSpacing:ct,btnLetterSpacingTablet:ut,btnLetterSpacingMobile:pt,btnLetterSpacingType:bt,btnTransform:dt,btnDecoration:gt,btnLoadGoogleFonts:mt,btnLinkColor:yt,btnLinkHoverColor:ft,btnBgHoverColor:ht,btnBgColor:vt,closeIcon:_t,showBtnIcon:Tt,modalBoxHeight:Ct,maxHeight:St,maxHeightTablet:wt,maxHeightMobile:kt,maxHeightType:Pt,backgroundType:xt,backgroundImageDesktop:At,backgroundImageTablet:Gt,backgroundImageMobile:Mt,backgroundColor:Rt,backgroundPositionDesktop:Bt,backgroundPositionTablet:Ut,backgroundPositionMobile:Et,backgroundAttachmentDesktop:Ot,backgroundAttachmentTablet:Lt,backgroundAttachmentMobile:Ht,backgroundRepeatDesktop:jt,backgroundRepeatTablet:Ft,backgroundRepeatMobile:zt,backgroundSizeDesktop:Dt,backgroundSizeTablet:Nt,backgroundSizeMobile:It,backgroundImageColor:Vt,gradientValue:Wt,gradientColor1:qt,gradientColor2:Zt,gradientLocation1:$t,gradientLocationTablet1:Yt,gradientLocationMobile1:Kt,gradientLocation2:Jt,gradientLocationTablet2:Xt,gradientLocationMobile2:Qt,gradientType:ea,gradientAngle:ta,gradientAngleTablet:aa,gradientAngleMobile:la,selectGradient:ia,backgroundCustomSizeDesktop:oa,backgroundCustomSizeTablet:na,backgroundCustomSizeMobile:ra,backgroundCustomSizeType:sa,overlayType:ca,customPosition:ua,xPositionDesktop:pa,xPositionTablet:ba,xPositionMobile:da,xPositionType:ga,xPositionTypeTablet:ma,xPositionTypeMobile:ya,yPositionDesktop:fa,yPositionTablet:ha,yPositionMobile:va,yPositionType:_a,yPositionTypeTablet:Ta,yPositionTypeMobile:Ca,modalTriggerBgType:Sa,modalTriggerBgHoverType:wa,openModalAs:ka}=t,Pa=uagb_blocks_info.current_theme,xa=uagb_blocks_info.is_astra_based_theme;o&&o.sizes&&(Yx=F(o.sizes));let Aa=[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Full Width","ultimate-addons-for-gutenberg")}];"button"!==i&&(Aa=[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],"full"===m&&a({modalAlign:"left"}));const Ga=Boolean(uagb_blocks_info.spectra_pro_status),Ma=[{label:Object(r.__)("Button","ultimate-addons-for-gutenberg"),value:"button",disabled:!1},{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:"icon",disabled:!1},{label:Object(r.__)("Image","ultimate-addons-for-gutenberg"),value:"image",disabled:!1},{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:"text",disabled:!1},{label:Object(r.__)("Custom Class (Spectra Pro)","ultimate-addons-for-gutenberg"),value:"custom-class",disabled:!Ga},{label:Object(r.__)("Custom ID (Spectra Pro)","ultimate-addons-for-gutenberg"),value:"custom-id",disabled:!Ga},{label:Object(r.__)("Automatic (Spectra Pro)","ultimate-addons-for-gutenberg"),value:"automatic",disabled:!Ga}],Ra=React.createElement(Fe,{panelId:"trigger",title:Object(r.__)("Trigger","ultimate-addons-for-gutenberg"),initialOpen:!Kx},React.createElement(Pi,{setAttributes:a,label:Object(r.__)("Modal Trigger","ultimate-addons-for-gutenberg"),data:{value:i,label:"modalTrigger"},options:Ma,panelId:"modal-trigger"}),"icon"===i&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:n,onChange:e=>a({icon:e})})),"image"===i&&React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{if(e&&e.url)if(e.type&&"image"===e.type){if(e.sizes){const t=F(e.sizes);Yx=t}a({iconImage:e})}else a({iconImage:null});else a({iconImage:null})},backgroundImage:o,onRemoveImage:()=>{a({iconImage:""})}}),o&&"null"!==o.url&&""!==o.url&&React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:s,label:"imageSize"},setAttributes:a,options:Yx})),"button"===i&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Ke,onChange:()=>a({inheritFromTheme:!Ke}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ke&&("Astra"===Pa||xa)&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Je,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]})),"button"===i&&React.createElement(React.Fragment,null,!Ke&&React.createElement(zr,{setAttributes:a,presets:Zx,presetInputType:"radioImage"}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Icon","ultimate-addons-for-gutenberg"),checked:Tt,onChange:()=>a({showBtnIcon:!Tt})}),Tt&&React.createElement(Ur,{label:Object(r.__)("Button Icon","ultimate-addons-for-gutenberg"),value:c,onChange:e=>a({buttonIcon:e})}),Tt&&""!==c&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:u,label:"buttonIconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"before",label:Object(r.__)("Before Text","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After Text","ultimate-addons-for-gutenberg")}]}))),["button","icon","text","image"].includes(i)&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:m,label:"modalAlign"},tablet:{value:y,label:"modalAlignTablet"},mobile:{value:f,label:"modalAlignMobile"}},options:Aa,showIcons:!0,responsive:!0})),Ba="left-off-canvas"!==ka&&"right-off-canvas"!==ka,Ua=React.createElement(Fe,{title:Object(r.__)("Container","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.Notice,{className:"spectra-sidebar-settings-notice",status:"warning",isDismissible:!1},Object(r.__)("Please click on the modal button to preview the modal container.","ultimate-addons-for-gutenberg")),React.createElement(tl,{label:Object(r.__)("Modal Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:h,label:"modalWidth",unit:{value:T,label:"modalWidthType"},min:"%"===T?10:"0",max:"%"===T?100:1500},tablet:{value:v,label:"modalWidthTablet",unit:{value:C,label:"modalWidthTypeTablet"},min:"%"===C?10:"0",max:"%"===C?100:1500},mobile:{value:_,label:"modalWidthMobile",unit:{value:S,label:"modalWidthTypeMobile"},min:"%"===S?10:"0",max:"%"===S?100:1500}},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),Ba&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Modal Height","ultimate-addons-for-gutenberg"),data:{value:Ct,label:"modalBoxHeight"},options:[{value:"auto",label:Object(r.__)("Auto","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}],showIcons:!1,responsive:!1}),Ba&&"custom"!==Ct&&React.createElement(tl,{label:Object(r.__)("Max Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:St,label:"maxHeight"},tablet:{value:wt,label:"maxHeightTablet"},mobile:{value:kt,label:"maxHeightMobile"}},min:0,max:200,unit:{value:Pt,label:"maxHeightType"},units:[{name:Object(r.__)("VH","ultimate-addons-for-gutenberg"),unitValue:"vh"}],setAttributes:a}),Ba&&"auto"!==Ct&&React.createElement(tl,{label:Object(r.__)("Modal Popup Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:w,label:"modalHeight",unit:{value:x,label:"modalHeightType"},min:"%"===x?10:130,max:"%"===x?100:1500},tablet:{value:k,label:"modalHeightTablet",unit:{value:A,label:"modalHeightTypeTablet"},min:"%"===A?10:130,max:"%"===A?100:1500},mobile:{value:P,label:"modalHeightMobile",unit:{value:G,label:"modalHeightTypeMobile"},min:"%"===G?10:130,max:"%"===G?100:1500}},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a})),Ea=React.createElement(Fe,{panelId:"close-button",title:Object(r.__)("Close Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:_t,onChange:e=>a({closeIcon:e})}),""!==_t&&React.createElement(Pi,{label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:R,label:"closeIconPosition"},setAttributes:a,panelId:"icon-position"},React.createElement("option",{value:"popup-top-left"},Object(r.__)("Top Left","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"popup-top-right"},Object(r.__)("Top Right","ultimate-addons-for-gutenberg"))),React.createElement(Le.ToggleControl,{label:Object(r.__)("Close on ESC Keypress","ultimate-addons-for-gutenberg"),checked:E,onChange:()=>a({escPress:!E})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Close on Overlay Click","ultimate-addons-for-gutenberg"),checked:O,onChange:()=>a({overlayClick:!O})})),Oa=React.createElement(Fe,{panelId:"trigger",title:Object(r.__)("Trigger","ultimate-addons-for-gutenberg"),initialOpen:!0},"icon"===i&&""!==n&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:ee,data:{value:ee,label:"iconSize"},min:0,max:150,displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:Q||"",data:{value:Q,label:"iconColor"},setAttributes:a})),"icon"===i&&""===n&&React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("For the styling options please select the Icon.","ultimate-addons-for-gutenberg")),"text"===i&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:te||"",data:{value:te,label:"textColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:_e,label:"textLoadGoogleFonts"},fontFamily:{value:ae,label:"textFontFamily"},fontWeight:{value:le,label:"textFontWeight"},fontStyle:{value:ie,label:"textFontStyle"},transform:{value:he,label:"textTransform"},decoration:{value:ve,label:"textDecoration"},fontSizeType:{value:oe,label:"textFontSizeType"},fontSize:{value:ne,label:"textFontSize"},fontSizeMobile:{value:re,label:"textFontSizeMobile"},fontSizeTablet:{value:se,label:"textFontSizeTablet"},lineHeightType:{value:ce,label:"textLineHeightType"},lineHeight:{value:ue,label:"textLineHeight"},lineHeightMobile:{value:pe,label:"textLineHeightMobile"},lineHeightTablet:{value:be,label:"textLineHeightTablet"},letterSpacing:{value:de,label:"textLetterSpacing"},letterSpacingTablet:{value:me,label:"textLetterSpacingTablet"},letterSpacingMobile:{value:ye,label:"textLetterSpacingMobile"},letterSpacingType:{value:fe,label:"textLetterSpacingType"}})),"image"===i&&o&&"null"!==o.url&&""!==o.url&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:ke,onChange:()=>a({imageWidthType:!ke}),label:Object(r.__)("Custom Width","ultimate-addons-for-gutenberg"),help:Object(r.__)("Turn this off to inherit the natural width of Image.","ultimate-addons-for-gutenberg")}),ke&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:Te,label:"imageWidth",unit:{value:Pe,label:"imageWidthUnit"}},tablet:{value:we,label:"imageWidthTablet",unit:{value:xe,label:"imageWidthUnitTablet"}},mobile:{value:Se,label:"imageWidthMobile",unit:{value:Ae,label:"imageWidthUnitMobile"}}},min:0,limitMax:{px:500,"%":100,em:100},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),setAttributes:a,value:Ge,data:{value:Ge,label:"iconimgBorderRadius"},min:0,max:100,unit:{value:Me,label:"iconimgBorderRadiusUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}]})),"image"===i&&void 0===o&&React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("For the styling options please select the Image.","ultimate-addons-for-gutenberg")),"button"===i&&React.createElement(React.Fragment,null,Tt&&""!==c&&React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"buttonIconSpace"},tablet:{value:b,label:"buttonIconSpaceTablet"},mobile:{value:d,label:"buttonIconSpaceMobile"}},min:0,max:50,unit:{value:g,label:"buttonIconSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:yt||"",data:{value:yt,label:"btnLinkColor"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Sa,label:"modalTriggerBgType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===Sa&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:vt||"",data:{value:vt,label:"btnBgColor"},setAttributes:a}))),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:ft||"",data:{value:ft,label:"btnLinkHoverColor"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:wa,label:"modalTriggerBgHoverType"},className:"uagb-multi-button-alignment-control",options:[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}]}),"color"===wa&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ht||"",data:{value:ht,label:"btnBgHoverColor"},setAttributes:a})))}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:mt,label:"btnLoadGoogleFonts"},fontFamily:{value:Xe,label:"btnFontFamily"},fontWeight:{value:Qe,label:"btnFontWeight"},fontStyle:{value:et,label:"btnFontStyle"},transform:{value:dt,label:"btnTransform"},decoration:{value:gt,label:"btnDecoration"},fontSizeType:{value:tt,label:"btnFontSizeType"},fontSize:{value:at,label:"btnFontSize"},fontSizeMobile:{value:lt,label:"btnFontSizeMobile"},fontSizeTablet:{value:it,label:"btnFontSizeTablet"},lineHeightType:{value:ot,label:"btnLineHeightType"},lineHeight:{value:nt,label:"btnLineHeight"},lineHeightMobile:{value:rt,label:"btnLineHeightMobile"},lineHeightTablet:{value:st,label:"btnLineHeightTablet"},letterSpacing:{value:ct,label:"btnLetterSpacing"},letterSpacingTablet:{value:ut,label:"btnLetterSpacingTablet"},letterSpacingMobile:{value:pt,label:"btnLetterSpacingMobile"},letterSpacingType:{value:bt,label:"btnLetterSpacingType"}}),React.createElement(Pl,$x({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Re,label:"paddingBtnTop"},valueRight:{value:Oe,label:"paddingBtnRight"},valueBottom:{value:Be,label:"paddingBtnBottom"},valueLeft:{value:Ue,label:"paddingBtnLeft"},valueTopTablet:{value:He,label:"paddingBtnTopTablet"},valueRightTablet:{value:je,label:"paddingBtnRightTablet"},valueBottomTablet:{value:ze,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:De,label:"paddingBtnLeftTablet"},valueTopMobile:{value:Ne,label:"paddingBtnTopMobile"},valueRightMobile:{value:Ie,label:"paddingBtnRightMobile"},valueBottomMobile:{value:Ve,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:We,label:"paddingBtnLeftMobile"},unit:{value:qe,label:"paddingBtnUnit"},mUnit:{value:$e,label:"mobilePaddingBtnUnit"},tUnit:{value:Ye,label:"tabletPaddingBtnUnit"},deviceType:l,attributes:t,setAttributes:a,link:{value:Ze,label:"btnSpacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:a,prefix:"btn",attributes:t,deviceType:l,disableBottomSeparator:!0}))),La=React.createElement(Fe,{title:Object(r.__)("Container","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Overlay Color","ultimate-addons-for-gutenberg"),colorValue:B||"",data:{value:B,label:"overlayColor"},setAttributes:a}),React.createElement(Pl,$x({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:L,label:"paddingModalTop"},valueRight:{value:z,label:"paddingModalRight"},valueBottom:{value:H,label:"paddingModalBottom"},valueLeft:{value:j,label:"paddingModalLeft"},valueTopTablet:{value:D,label:"paddingModalTopTablet"},valueRightTablet:{value:N,label:"paddingModalRightTablet"},valueBottomTablet:{value:I,label:"paddingModalBottomTablet"},valueLeftTablet:{value:V,label:"paddingModalLeftTablet"},valueTopMobile:{value:W,label:"paddingModalTopMobile"},valueRightMobile:{value:q,label:"paddingModalRightMobile"},valueBottomMobile:{value:Z,label:"paddingModalBottomMobile"},valueLeftMobile:{value:$,label:"paddingModalLeftMobile"},unit:{value:Y,label:"paddingModalUnit"},mUnit:{value:J,label:"mobilePaddingModalUnit"},tUnit:{value:X,label:"tabletPaddingModalUnit"},deviceType:l,attributes:t,setAttributes:a,link:{value:K,label:"modalSpacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:a,prefix:"content",attributes:t,deviceType:l,disableBottomSeparator:!0})),Ha=React.createElement(Fe,{panelId:"close-button",title:Object(r.__)("Close Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Qa,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:M,data:{value:M,label:"closeIconSize"},min:0,max:50,displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:U||"",data:{value:U,label:"closeIconColor"},setAttributes:a})),ja=React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(vi,$x({setAttributes:a,backgroundGradient:{value:Wt,label:"gradientValue"},backgroundGradientColor1:{value:qt,label:"gradientColor1"},gradientType:{value:ia,label:"selectGradient"},backgroundGradientColor2:{value:Zt,label:"gradientColor2"},backgroundGradientLocation1:{value:$t,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:Yt,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:Kt,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:Jt,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:Xt,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:Qt,label:"gradientLocationMobile2"},backgroundGradientType:{value:ea,label:"gradientType"},backgroundGradientAngle:{value:ta,label:"gradientAngle"},backgroundGradientAngleTablet:{value:aa,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:la,label:"gradientAngleMobile"},backgroundImageColor:{value:Vt,label:"backgroundImageColor"},backgroundSize:{desktop:{value:Dt,label:"backgroundSizeDesktop"},tablet:{value:Nt,label:"backgroundSizeTablet"},mobile:{value:It,label:"backgroundSizeMobile"}},backgroundCustomSize:{desktop:{value:oa,label:"backgroundCustomSizeDesktop"},tablet:{value:na,label:"backgroundCustomSizeTablet"},mobile:{value:ra,label:"backgroundCustomSizeMobile"}},backgroundCustomSizeType:{value:sa,label:"backgroundCustomSizeType"},backgroundRepeat:{desktop:{value:jt,label:"backgroundRepeatDesktop"},tablet:{value:Ft,label:"backgroundRepeatTablet"},mobile:{value:zt,label:"backgroundRepeatMobile"}},backgroundAttachment:{desktop:{value:Ot,label:"backgroundAttachmentDesktop"},tablet:{value:Lt,label:"backgroundAttachmentTablet"},mobile:{value:Ht,label:"backgroundAttachmentMobile"}},backgroundPosition:{desktop:{value:Bt,label:"backgroundPositionDesktop"},tablet:{value:Ut,label:"backgroundPositionTablet"},mobile:{value:Et,label:"backgroundPositionMobile"}},backgroundImage:{desktop:{value:At,label:"backgroundImageDesktop"},tablet:{value:Gt,label:"backgroundImageTablet"},mobile:{value:Mt,label:"backgroundImageMobile"}},imageResponsive:!0,backgroundColor:{value:Rt,label:"backgroundColor"},backgroundType:{value:xt,label:"backgroundType"},overlayType:{value:ca,label:"overlayType"},gradientOverlay:{value:!0},customPosition:{value:ua,label:"customPosition"},xPositionDesktop:{value:pa,label:"xPositionDesktop"},xPositionTablet:{value:ba,label:"xPositionTablet"},xPositionMobile:{value:da,label:"xPositionMobile"},xPositionType:{value:ga,label:"xPositionType"},xPositionTypeTablet:{value:ma,label:"xPositionTypeTablet"},xPositionTypeMobile:{value:ya,label:"xPositionTypeMobile"},yPositionDesktop:{value:fa,label:"yPositionDesktop"},yPositionTablet:{value:ha,label:"yPositionTablet"},yPositionMobile:{value:va,label:"yPositionMobile"},yPositionType:{value:_a,label:"yPositionType"},yPositionTypeTablet:{value:Ta,label:"yPositionTypeTablet"},yPositionTypeMobile:{value:Ca,label:"yPositionTypeMobile"},backgroundVideoType:{value:!1}},e)));return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,Ra,Ua,Ea,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Modal Block to the next level with powerful features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("Automatic trigger, with custom classes or IDs","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Modal position setting","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Off-canvas modal","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("More option for close button","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"modal"}}))),React.createElement(il,nl,!(Ke&&"button"===i)&&Oa,La,""!==_t&&Ha,ja),React.createElement(il,$x({},rl,{parentProps:e})))))}var Xx,Qx=a(134),eA=0,tA={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},aA={};aA.locals=Qx.a.locals||{},aA.use=function(){return eA++||(Xx=ke()(Qx.a,tA)),aA},aA.unuse=function(){eA>0&&!--eA&&(Xx(),Xx=null)};var lA=aA;const iA=[["uagb/info-box",{icon:"circle-check",iconBottomMargin:15,infoBoxTitle:Object(r.__)("Engage Your Visitors!","ultimate-addons-for-gutenberg"),headFontWeight:500,headSpace:10,headingDesc:Object(r.__)("Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis pulvinar dapibus.","ultimate-addons-for-gutenberg"),subHeadSpace:30,ctaType:"button",btnBorderStyle:"none",showCtaIcon:!1,ctaText:Object(r.__)("Call To Action","ultimate-addons-for-gutenberg"),paddingBtnTop:14,paddingBtnRight:28,paddingBtnBottom:14,paddingBtnLeft:28,btnBorderTopLeftRadius:3,btnBorderTopRightRadius:3,btnBorderBottomLeftRadius:3,btnBorderBottomRightRadius:3}]],oA=["uagb/modal","uagb/how-to-step","uagb/buttons-child","uagb/faq-child","uagb/content-timeline-child","uagb/icon-list-child","uagb/social-share-child","uagb/restaurant-menu-child","uagb/tabs-child","uagb/post-image","uagb/post-taxonomy","uagb/post-title","uagb/post-meta","uagb/post-excerpt","uagb/post-button","uagb/forms-name","uagb/forms-email","uagb/forms-hidden","uagb/forms-phone","uagb/forms-textarea","uagb/forms-url","uagb/forms-select","uagb/forms-radio","uagb/forms-checkbox","uagb/forms-toggle","uagb/forms-date","uagb/forms-accept","uagb/slider-child","uagb/register-email","uagb/register-first-name","uagb/register-last-name","uagb/register-password","uagb/register-reenter-password","uagb/register-terms","uagb/register-username"];var nA=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(lA.use(),()=>{lA.unuse()}),[]);const{attributes:t,setAttributes:a,clientId:l,deviceType:i}=e,{block_id:o,triggerText:s,icon:c,iconImage:u,modalTrigger:p,imageSize:b,buttonText:d,buttonIcon:g,buttonIconPosition:m,appearEffect:y,closeIconPosition:f,escPress:h,overlayClick:v,closeIcon:_,imgTagWidth:T,imgTagHeight:C,showBtnIcon:S,openModalAs:w,modalPosition:k,defaultTemplate:P,inheritFromTheme:x,buttonType:A}=t,{replaceInnerBlocks:G}=Object(n.useDispatch)("core/block-editor"),M=uagb_blocks_info.spectra_pro_status,R=x&&"secondary"===A,U=R?"ast-outline-button":"wp-block-button__link",E=R?{borderWidth:"revert-layer"}:{},O=wp.blocks.getBlockTypes().map(e=>e.name).filter(e=>!oA.includes(e));Object(B.useEffect)(()=>{mf(z,a)},[b]),Object(B.useEffect)(()=>{P||(G(l,Object(be.createBlocksFromInnerBlocksTemplate)(iA)),a({defaultTemplate:!0}))},[]);const L=React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Add Your Text Here","ultimate-addons-for-gutenberg"),value:s,className:"uagb-modal-text uagb-modal-trigger",onChange:e=>a({triggerText:e})}),H=React.createElement("div",{className:"uagb-modal-trigger"},""!==c&&Ce(c,a)),j=null!=u&&u.alt?u.alt:"";let F="",z="";if(null!=u&&u.url){z=u.url;const e=u.sizes,t=b;void 0!==e&&void 0!==e[t]&&(z=e[t].url),F=React.createElement("img",{src:z,alt:j,className:"uagb-modal-trigger",width:T,height:C,loading:"lazy"})}let D="";""!==g&&(D=Ce(g,a));const N=`uagb-modal-button-link ${U} uagb-modal-trigger`,I=React.createElement("div",{className:Be()("uagb-spectra-button-wrapper","wp-block-button")},React.createElement("div",{className:N,target:"_self",rel:"noopener noreferrer",style:E},React.createElement("span",{className:"uagb-modal-content-wrapper"},S&&"before"===m&&D,React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Click Here","ultimate-addons-for-gutenberg"),value:d,className:"uagb-inline-editing",onChange:e=>a({buttonText:e}),allowedFormats:[]}),S&&"after"===m&&D)));return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-block-"+o,"uagb-modal-wrapper"),"data-escpress":h?"enable":"disable","data-overlayclick":v?"enable":"disable"},React.createElement("div",{className:"uagb-spectra-editor-wrap"},"text"===p&&L,"icon"===p&&H,"image"===p&&F,"button"===p&&I),React.createElement("div",{className:Be()(""+y,"uagb-modal-popup","uagb-block-"+o,{["uagb-modal-type-"+w]:M,["uagb-modal-position-"+k]:M&&"popup"===w})},React.createElement("div",{className:"uagb-modal-popup-wrap"},React.createElement("div",{className:"uagb-modal-popup-content"},React.createElement(ge.InnerBlocks,{template:[["core/paragraph",{placeholder:"Type / to choose a block"}]],allowedBlocks:O,renderAppender:ge.InnerBlocks.DefaultBlockAppender})),("popup-top-left"===f||"popup-top-right"===f)&&React.createElement("button",{className:"uagb-modal-popup-close","aria-label":Object(r.__)("Close Modal","ultimate-addons-for-gutenberg")},""!==_&&Ce(_,a))),M&&("window-top-left"===f||"window-top-right"===f)&&React.createElement("button",{className:Be()("uagb-modal-popup-close",f),"aria-label":Object(r.__)("Close Modal","ultimate-addons-for-gutenberg")},""!==_&&Ce(_)))))}),rA=Object(B.memo)(e=>{let{attributes:t}=e;const{textLoadGoogleFonts:a,textFontFamily:l,textFontWeight:i,btnLoadGoogleFonts:o,btnFontFamily:n,btnFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)}),sA=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,block_id:n},clientId:r,setAttributes:s,name:c,deviceType:u}=e,{modalTrigger:p}=a;Object(B.useEffect)(()=>{uagb_blocks_info.spectra_pro_status||"custom-class"!==p&&"custom-id"!==p&&"automatic"!==p||s({modalTrigger:"button"})},[]),Object(B.useEffect)(()=>{const e=Object(j.applyFilters)("spectra.modal.edit.jsdetails",{block_id:n,device_type:u},a),t=new CustomEvent("UAGModalEditor",{detail:e});document.dispatchEvent(t)},[a,u]);const b=Object(B.useMemo)(()=>function(e,t,a,l){const i=l.toLowerCase(),{modalTrigger:o,buttonIconPosition:n,buttonIconSpace:r,buttonIconSpaceTablet:s,buttonIconSpaceMobile:c,buttonIconSpaceType:u,modalAlign:p,modalAlignTablet:b,modalAlignMobile:d,modalWidth:g,modalWidthTablet:m,modalWidthMobile:y,modalWidthType:f,modalWidthTypeTablet:h,modalWidthTypeMobile:v,modalHeight:_,modalHeightTablet:T,modalHeightMobile:C,modalHeightType:S,modalHeightTypeTablet:w,modalHeightTypeMobile:k,contentBorderHColor:P,closeIconSize:x,closeIconPosition:A,overlayColor:G,closeIconColor:M,paddingModalUnit:R,mobilePaddingModalUnit:B,tabletPaddingModalUnit:U,paddingModalTop:E,paddingModalBottom:O,paddingModalLeft:L,paddingModalRight:H,paddingModalTopTablet:F,paddingModalRightTablet:z,paddingModalBottomTablet:D,paddingModalLeftTablet:N,paddingModalTopMobile:I,paddingModalRightMobile:V,paddingModalBottomMobile:W,paddingModalLeftMobile:q,iconColor:Z,iconSize:$,textColor:Y,textFontFamily:K,textFontWeight:J,textFontStyle:X,textFontSizeType:Q,textFontSize:ee,textFontSizeMobile:te,textFontSizeTablet:le,textLineHeightType:ie,textLineHeight:oe,textLineHeightMobile:ne,textLineHeightTablet:re,textLetterSpacing:se,textLetterSpacingTablet:ce,textLetterSpacingMobile:ue,textLetterSpacingType:pe,textTransform:be,textDecoration:de,imageWidth:ge,imageWidthMobile:me,imageWidthTablet:ye,imageWidthType:fe,imageWidthUnit:he,imageWidthUnitTablet:ve,imageWidthUnitMobile:_e,iconimgBorderRadius:Te,iconimgBorderRadiusUnit:Ce,paddingBtnUnit:Se,mobilePaddingBtnUnit:we,tabletPaddingBtnUnit:ke,paddingBtnTop:Pe,paddingBtnBottom:xe,paddingBtnLeft:Ae,paddingBtnRight:Ge,paddingBtnTopTablet:Me,paddingBtnRightTablet:Re,paddingBtnBottomTablet:Be,paddingBtnLeftTablet:Ue,paddingBtnTopMobile:Ee,paddingBtnRightMobile:Oe,paddingBtnBottomMobile:Le,paddingBtnLeftMobile:He,btnFontFamily:je,btnFontWeight:Fe,btnFontStyle:ze,btnFontSizeType:De,btnFontSize:Ne,btnFontSizeMobile:Ie,btnFontSizeTablet:Ve,btnLineHeightType:We,btnLineHeight:qe,btnLineHeightMobile:Ze,btnLineHeightTablet:$e,btnLetterSpacing:Ye,btnLetterSpacingTablet:Ke,btnLetterSpacingMobile:Je,btnLetterSpacingType:Xe,btnTransform:Qe,btnDecoration:et,btnLinkColor:tt,btnLinkHoverColor:at,btnBgHoverColor:lt,btnBgColor:it,btnBorderHColor:ot,modalBoxHeight:nt,maxHeight:rt,maxHeightTablet:st,maxHeightMobile:ct,maxHeightType:ut,backgroundType:pt,backgroundImageDesktop:bt,backgroundImageTablet:dt,backgroundImageMobile:gt,backgroundColor:mt,backgroundPositionDesktop:yt,backgroundPositionTablet:ft,backgroundPositionMobile:ht,backgroundAttachmentDesktop:vt,backgroundAttachmentTablet:_t,backgroundAttachmentMobile:Tt,backgroundRepeatDesktop:Ct,backgroundRepeatTablet:St,backgroundRepeatMobile:wt,backgroundSizeDesktop:kt,backgroundSizeTablet:Pt,backgroundSizeMobile:xt,gradientValue:At,backgroundCustomSizeDesktop:Gt,backgroundCustomSizeTablet:Mt,backgroundCustomSizeMobile:Rt,backgroundCustomSizeType:Bt,backgroundImageColor:Ut,overlayType:Et,customPosition:Ot,xPositionDesktop:Lt,xPositionTablet:Ht,xPositionMobile:jt,xPositionType:Ft,xPositionTypeTablet:zt,xPositionTypeMobile:Dt,yPositionDesktop:Nt,yPositionTablet:It,yPositionMobile:Vt,yPositionType:Wt,yPositionTypeTablet:qt,yPositionTypeMobile:Zt,gradientColor1:$t,gradientColor2:Yt,gradientLocation1:Kt,gradientLocationTablet1:Jt,gradientLocationMobile1:Xt,gradientLocation2:Qt,gradientLocationTablet2:ea,gradientLocationMobile2:ta,gradientType:aa,gradientAngle:la,gradientAngleTablet:ia,gradientAngleMobile:oa,selectGradient:na,modalTriggerBgType:ra,modalTriggerBgHoverType:sa,contentBorderTopLeftRadius:ca,contentBorderTopRightRadius:ua,contentBorderBottomLeftRadius:pa,contentBorderBottomRightRadius:ba,contentBorderRadiusUnit:da,block_id:ga,inheritFromTheme:ma}=e,ya=a.replace("uagb/",""),fa=Ps(r,"buttonIconSpace",ya),ha=isNaN(s)?fa:s,va=isNaN(c)?ha:c,_a=rs(e,"btn"),Ta=rs(e,"btn","tablet"),Ca=rs(e,"btn","mobile"),Sa=rs(e,"content"),wa=rs(e,"content","tablet"),ka=rs(e,"content","mobile"),Pa={backgroundType:pt,backgroundImage:bt,backgroundColor:mt,gradientValue:At,gradientColor1:$t,gradientColor2:Yt,gradientLocation1:Kt,gradientLocation2:Qt,gradientType:aa,gradientAngle:la,selectGradient:na,backgroundRepeat:Ct,backgroundPosition:yt,backgroundSize:kt,backgroundAttachment:vt,backgroundCustomSize:Gt,backgroundCustomSizeType:Bt,backgroundImageColor:Ut,overlayType:Et,customPosition:Ot,xPosition:Lt,xPositionType:Ft,yPosition:Nt,yPositionType:Wt},xa=ss(Pa);let Aa={" .uagb-modal-popup-wrap":{height:ns(_,S),width:ns(g,f),"border-style":"none","border-color":"none","border-top-left-radius":ns(ca,da),"border-top-right-radius":ns(ua,da),"border-bottom-left-radius":ns(pa,da),"border-bottom-right-radius":ns(ba,da)}," .uagb-modal-popup-content:hover":{"border-color":P}," .uagb-modal-popup-close svg":{width:ns(x,"px"),height:ns(x,"px"),"line-height":ns(x,"px"),"font-size":ns(x,"px"),fill:M}," .uagb-modal-popup.active":{background:G}," .uagb-modal-popup-content":{"padding-left":ns(L,R),"padding-right":ns(H,R),"padding-top":ns(E,R),"padding-bottom":ns(O,R),...xa,...Sa}," .uagb-modal-trigger svg":{width:ns($,"px"),height:ns($,"px"),"line-height":ns($,"px"),"font-size":ns($,"px"),fill:Z},".uagb-modal-wrapper img.uagb-modal-trigger":{"border-radius":ns(Te,Ce)}};const Ga={backgroundType:pt,backgroundImage:dt,backgroundColor:mt,gradientValue:At,gradientColor1:$t,gradientColor2:Yt,gradientLocation1:"number"==typeof Jt?Jt:Pa.gradientLocation1,gradientLocation2:"number"==typeof ea?ea:Pa.gradientLocation2,gradientType:aa,gradientAngle:"number"==typeof ia?ia:Pa.gradientAngle,selectGradient:na,backgroundRepeat:St,backgroundPosition:ft,backgroundSize:Pt,backgroundAttachment:_t,backgroundCustomSize:Mt,backgroundCustomSizeType:Bt,backgroundImageColor:Ut,overlayType:Et,customPosition:Ot,xPosition:Ht,xPositionType:zt,yPosition:It,yPositionType:qt},Ma=ss(Ga);let Ra={" .uagb-modal-popup-wrap":{height:ns(T,w),width:ns(m,h)}," .uagb-modal-popup-content":{"padding-left":ns(N,U),"padding-right":ns(z,U),"padding-top":ns(F,U),"padding-bottom":ns(D,U),...Ma,...wa}," .uagb-modal-text.uagb-modal-trigger":{"font-size":ns(le,Q),"line-height":ns(re,ie),"letter-spacing":ns(ce,pe)}};const Ba=ss({backgroundType:pt,backgroundImage:gt,backgroundColor:mt,gradientValue:At,gradientColor1:$t,gradientColor2:Yt,gradientLocation1:"number"==typeof Xt?Xt:Ga.gradientLocation1,gradientLocation2:"number"==typeof ta?ta:Ga.gradientLocation2,gradientType:aa,gradientAngle:"number"==typeof oa?oa:Ga.gradientAngle,selectGradient:na,backgroundRepeat:wt,backgroundPosition:ht,backgroundSize:xt,backgroundAttachment:Tt,backgroundCustomSize:Rt,backgroundCustomSizeType:Bt,backgroundImageColor:Ut,overlayType:Et,customPosition:Ot,xPosition:jt,xPositionType:Dt,yPosition:Vt,yPositionType:Zt});let Ua={" .uagb-modal-popup-wrap":{height:ns(C,k),width:ns(y,v)}," .uagb-modal-popup-content":{"padding-left":ns(q,B),"padding-right":ns(V,B),"padding-top":ns(I,B),"padding-bottom":ns(W,B),...Ba,...ka}," .uagb-modal-text.uagb-modal-trigger":{"font-size":ns(te,Q),"line-height":ns(ne,ie),"letter-spacing":ns(ue,pe)}};function Ea(e){return"left"===e?"flex-start":"right"===e?"flex-end":"center"}ma||(Aa={...Aa," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger":{"padding-left":ns(Ae,Se),"padding-right":ns(Ge,Se),"padding-top":ns(Pe,Se),"padding-bottom":ns(xe,Se),"font-family":je,"font-style":ze,"text-decoration":et,"text-transform":Qe,"font-weight":Fe,"font-size":ns(Ne,De),"line-height":ns(qe,We),"letter-spacing":ns(Ye,Xe),color:tt,"background-color":"color"===ra?it:"transparent",..._a}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg":{"font-size":ns(Ne,De),width:ns(Ne,De),height:ns(Ne,De),"line-height":ns(Ne,De),fill:tt}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:hover":{color:at,"background-color":"color"===sa?lt:"transparent","border-color":ot}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:hover svg":{fill:at}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:focus":{color:at,"background-color":"color"===sa?lt:"transparent","border-color":ot}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:focus svg":{fill:at}," .uagb-modal-text.uagb-modal-trigger":{color:Y,"font-family":K,"font-style":X,"text-decoration":de,"text-transform":be,"font-weight":J,"font-size":ns(ee,Q),"line-height":ns(oe,ie),"letter-spacing":ns(se,pe)}},Ra={...Ra," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger":{"padding-left":ns(Ue,ke),"padding-right":ns(Re,ke),"padding-top":ns(Me,ke),"padding-bottom":ns(Be,ke),"font-size":ns(Ve,De),"line-height":ns($e,We),"letter-spacing":ns(Ke,Xe),...Ta}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg":{"font-size":ns(Ve,De),width:ns(Ve,De),height:ns(Ve,De),"line-height":ns(Ve,De)}},Ua={...Ua," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger":{"padding-left":ns(He,we),"padding-right":ns(Oe,we),"padding-top":ns(Ee,we),"padding-bottom":ns(Le,we),"font-size":ns(Ie,De),"line-height":ns(Ze,We),"letter-spacing":ns(Je,Xe),...Ca}," .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg":{"font-size":ns(Ie,De),width:ns(Ie,De),height:ns(Ie,De),"line-height":ns(Ie,De)}}),"custom"!==nt&&(Aa[" .uagb-modal-popup-wrap"]={height:"auto",width:ns(g,f),"max-height":ns(rt,ut),"border-style":"none","border-color":"none","border-top-left-radius":ns(ca,da),"border-top-right-radius":ns(ua,da),"border-bottom-left-radius":ns(pa,da),"border-bottom-right-radius":ns(ba,da)},Ra[" .uagb-modal-popup-wrap"]={height:"auto",width:ns(m,h),"max-height":ns(st,ut)},Ua[" .uagb-modal-popup-wrap"]={height:"auto",width:ns(y,v),"max-height":ns(ct,ut)}),"popup-top-right"===A&&(Aa[" .uagb-modal-popup.active .uagb-modal-popup-close"]={top:"-"+ns(x,"px"),right:"-"+ns(x,"px")}),"popup-top-left"===A&&(Aa[" .uagb-modal-popup.active .uagb-modal-popup-close"]={top:"-"+ns(x,"px"),left:"-"+ns(x,"px")}),"button"===o&&("after"===n?(Aa[" .uagb-modal-button-link svg"]={"margin-left":ns(fa,u)},Ra[" .uagb-modal-button-link svg"]={"margin-left":ns(ha,u)},Ua[" .uagb-modal-button-link svg"]={"margin-left":ns(va,u)}):(Aa[" .uagb-modal-button-link svg"]={"margin-right":ns(fa,u)},Ra[" .uagb-modal-button-link svg"]={"margin-right":ns(ha,u)},Ua[" .uagb-modal-button-link svg"]={"margin-right":ns(va,u)})),"image"===o&&fe&&(Aa[" img.uagb-modal-trigger"]={width:ns(ge,he)},Ra[" img.uagb-modal-trigger"]={width:ns(ye,ve)},Ua[" img.uagb-modal-trigger"]={width:ns(me,_e)});const Oa=Ea(p),La=Ea(b),Ha=Ea(d);"full"!==p?(Aa[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={"text-align":p},Aa[" .wp-block-button__link"]={width:"unset"},Aa[" .uagb-modal-trigger"]={"justify-content":Oa},"image"===o&&(Aa[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={display:"flex","justify-content":Oa})):Aa[" .uagb-modal-trigger"]={width:"100%","justify-content":"center"},"full"!==b?(Ra[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={"text-align":b},Ra[" .wp-block-button__link"]={width:"unset"},Ra[" .uagb-modal-trigger"]={"justify-content":La},"image"===o&&(Ra[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={display:"flex","justify-content":La})):Ra[" .wp-block-button__link.uagb-modal-trigger"]={width:"100%","justify-content":"center"},"full"!==d?(Ua[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={"text-align":d},Ua[" .wp-block-button__link"]={width:"unset"},Ua[" .uagb-modal-trigger"]={"justify-content":Ha},"image"===o&&(Ua[".uagb-modal-wrapper .uagb-spectra-editor-wrap"]={display:"flex","justify-content":Ha})):Ua[" .wp-block-button__link.uagb-modal-trigger"]={width:"100%","justify-content":"center"};const ja=".editor-styles-wrapper .uagb-block-"+ga;Aa=Object(j.applyFilters)(`spectra.${ya}.styling`,Aa,e),Ra=Object(j.applyFilters)(`spectra.${ya}.tabletStyling`,Ra,e),Ua=Object(j.applyFilters)(`spectra.${ya}.mobileStyling`,Ua,e);let Fa=ae(Aa,ja);return"tablet"!==i&&"mobile"!==i||(Fa+=ae(Ra,""+ja,!0,"tablet"),"mobile"===i&&(Fa+=ae(Ua,""+ja,!0,"mobile"))),Fa}(a,0,c,u),[a,u]);return Object(B.useEffect)(()=>{he(e)},[l,i,o,u]),React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:b}),React.createElement(rA,{attributes:a}),t&&React.createElement(Jx,e),React.createElement(nA,e))});a(358);const cA=ce("btn"),uA=ce("content"),pA={block_id:{type:"string"},isPreview:{type:"boolean",default:!1},defaultTemplate:{type:"boolean",default:!1},modalTrigger:{type:"string",default:"button"},triggerText:{type:"string",default:"Click Here"},icon:{type:"string",default:"up-right-from-square"},closeIcon:{type:"string",default:"xmark"},iconImage:{type:"object",default:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},imageSize:{type:"string",default:"thumbnail"},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:""},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},imageWidthType:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"image-width-type"}},imageWidthUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit"}},imageWidthUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-tablet"}},imageWidthUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-width-unit-mobile"}},iconimgBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"image-border-radius"}},iconimgBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"icon-border-radius-unit"}},buttonText:{type:"html",default:"Click Here"},buttonIcon:{type:"string",default:"arrow-right"},buttonIconPosition:{type:"string",default:"after"},buttonIconSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"btn-icon-space"}},buttonIconSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-icon-space-type"}},modalAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},modalAlignTablet:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},modalAlignMobile:{type:"string",default:"",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},modalWidth:{type:"number",UAGCopyPaste:{styleType:"modal-width"},default:600},modalWidthTablet:{type:"number",UAGCopyPaste:{styleType:"modal-width"},default:600},modalWidthMobile:{type:"number",UAGCopyPaste:{styleType:"modal-width"},default:340},modalWidthType:{type:"string",default:"px",UAGCopyPaste:{styleType:"modal-width-type"}},modalHeight:{type:"number",UAGCopyPaste:{styleType:"modal-height"},default:350},modalHeightTablet:{type:"number",UAGCopyPaste:{styleType:"modal-height"},default:350},modalHeightMobile:{type:"number",UAGCopyPaste:{styleType:"modal-height"},default:300},modalHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"modal-height-type"}},appearEffect:{type:"string",default:"uagb-effect-default"},closeIconSize:{type:"number",default:25},closeIconPosition:{type:"string",default:"popup-top-right"},escPress:{type:"boolean",default:!1},overlayClick:{type:"boolean",default:!1},overlayColor:{type:"string",default:"rgba(0,0,0,0.75)",UAGCopyPaste:{styleType:"overlay-bg-color"}},closeIconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"close-icon-color"}},modalSpacingLink:{type:"boolean",default:!0},paddingModalUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingModalUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingModalUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingModalTop:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding"}},paddingModalBottom:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingModalLeft:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding"}},paddingModalRight:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding"}},paddingModalTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingModalRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingModalBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingModalLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingModalTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingModalRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingModalBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingModalLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},iconSize:{type:"number",default:30,UAGCopyPaste:{styleType:"icon-size"}},iconColor:{type:"string",default:"",UAGCopyPaste:{styleType:"icon-color"}},textColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},textLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},textFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},textFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},textFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},textTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},textDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},textFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},textLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},textFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},textFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},textFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},textLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},textLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},textLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},textLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},textLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},textLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},textLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},btnSpacingLink:{type:"boolean",default:!0},paddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit"},default:"px"},mobilePaddingBtnUnit:{type:"string",UAGCopyPaste:{styleType:"btn-padding-unit-mobile"},default:"px"},tabletPaddingBtnUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-padding-unit-tablet"}},paddingBtnTop:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-top-padding"}},paddingBtnBottom:{type:"number",default:14,UAGCopyPaste:{styleType:"btn-bottom-padding"}},paddingBtnLeft:{type:"number",default:32,UAGCopyPaste:{styleType:"btn-left-padding"}},paddingBtnRight:{type:"number",default:32,UAGCopyPaste:{styleType:"btn-right-padding"}},paddingBtnTopTablet:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-tablet"}},paddingBtnRightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-tablet"}},paddingBtnBottomTablet:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-tablet"}},paddingBtnLeftTablet:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-tablet"}},paddingBtnTopMobile:{type:"number",UAGCopyPaste:{styleType:"btn-top-padding-mobile"}},paddingBtnRightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-right-padding-mobile"}},paddingBtnBottomMobile:{type:"number",UAGCopyPaste:{styleType:"btn-bottom-padding-mobile"}},paddingBtnLeftMobile:{type:"number",UAGCopyPaste:{styleType:"btn-left-padding-mobile"}},btnLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"btn-load-google-fonts"}},btnFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"btn-font-family"}},btnFontWeight:{type:"string",UAGCopyPaste:{styleType:"btn-font-weight"}},btnFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"btn-font-style"}},btnTransform:{type:"string",UAGCopyPaste:{styleType:"btn-transform"}},btnDecoration:{type:"string",UAGCopyPaste:{styleType:"btn-decoration"}},btnFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-font-size-type"}},btnLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"btn-line-height-type"}},btnFontSize:{type:"number",UAGCopyPaste:{styleType:"btn-font-size"}},btnFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-tablet"}},btnFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"btn-font-size-mobile"}},btnLineHeight:{type:"number",UAGCopyPaste:{styleType:"btn-line-height"}},btnLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-tablet"}},btnLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"btn-line-height-mobile"}},btnLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing"}},btnLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing-tablet"}},btnLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"btn-letter-spacing-mobile"}},btnLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"btn-letter-spacing-type"}},btnLinkColor:{type:"string",UAGCopyPaste:{styleType:"btn-color"}},btnLinkHoverColor:{type:"string",default:"",UAGCopyPaste:{styleType:"btn-hover-color"}},btnBgColor:{type:"string",UAGCopyPaste:{styleType:"btn-bg-color"}},btnBgHoverColor:{type:"string",UAGCopyPaste:{styleType:"btn-h-background"}},imgTagHeight:{type:"number",default:0},imgTagWidth:{type:"number",default:0},showBtnIcon:{type:"boolean",default:!1},modalBoxHeight:{type:"string",default:"auto"},maxHeight:{type:"number",default:"90",UAGCopyPaste:{styleType:"container-max-height-desktop"}},maxHeightTablet:{type:"number",UAGCopyPaste:{styleType:"container-max-height-tablet"}},maxHeightMobile:{type:"number",UAGCopyPaste:{styleType:"container-max-height-mobile"}},maxHeightType:{type:"string",default:"vh",UAGCopyPaste:{styleType:"container-max-height-type"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"container-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"container-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"container-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"container-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"container-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"container-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"container-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"container-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"container-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"container-bg-gradient-value"}},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"},...cA,btnBorderTopLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-top-left-radius"}},btnBorderTopRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-top-right-radius"}},btnBorderBottomLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-bottom-left-radius"}},btnBorderBottomRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"btn-border-bottom-right-radius"}},...uA,contentBorderTopLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-top-left-radius"}},contentBorderTopRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-top-right-radius"}},contentBorderBottomLeftRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-bottom-left-radius"}},contentBorderBottomRightRadius:{type:"number",default:3,UAGCopyPaste:{styleType:"content-border-bottom-right-radius"}},gradientColor1:{type:"string",default:"#06558a",UAGCopyPaste:{styleType:"gradient-color-1"}},gradientColor2:{type:"string",default:"#0063A1",UAGCopyPaste:{styleType:"gradient-color-2"}},gradientType:{type:"string",default:"linear",UAGCopyPaste:{styleType:"gradient-color-type"}},selectGradient:{type:"string",default:"basic",UAGCopyPaste:{styleType:"gradient-type"}},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-location-1"}},gradientLocation2:{type:"number",default:100,UAGCopyPaste:{styleType:"gradient-location-2"}},gradientAngle:{type:"number",default:0,UAGCopyPaste:{styleType:"gradient-angle"}},modalTriggerBgType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-background-type"}},modalTriggerBgHoverType:{type:"string",default:"color",UAGCopyPaste:{styleType:"btn-hbackground-type"}}};var bA=[{attributes:pA,save:e=>{const{block_id:t,modalTrigger:a,triggerText:l,icon:i,iconImage:o,imageSize:n,buttonText:r,buttonIcon:s,buttonIconPosition:c,appearEffect:u,closeIconPosition:p,escPress:b,overlayClick:d,closeIcon:g,imgTagWidth:m,imgTagHeight:y,showBtnIcon:f}=e.attributes,h=React.createElement(ge.RichText.Content,{value:l,tagName:"span",className:"uagb-modal-text uagb-modal-trigger"}),v=React.createElement("div",{className:"uagb-modal-trigger"},""!==i&&Ce(i)),_=o&&null!=o&&o.alt?null==o?void 0:o.alt:"";let T="";if(o&&o.url){let e=o.url;const t=o.sizes,a=n;void 0!==t&&void 0!==t[a]&&(e=t[a].url),T=React.createElement("img",{src:e,alt:_,className:"uagb-modal-trigger",width:m,height:y,loading:"lazy"})}let C="";""!==s&&(C=Ce(s));const S=React.createElement("div",{className:Be()("uagb-spectra-button-wrapper","wp-block-button")},React.createElement("a",{className:"uagb-modal-button-link wp-block-button__link uagb-modal-trigger",href:"#",onClick:"return false;",target:"_self",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-modal-content-wrapper"},f&&"before"===c&&C,React.createElement(ge.RichText.Content,{tagName:"span",value:r,className:"uagb-inline-editing"}),f&&"after"===c&&C)));return React.createElement("div",{className:Be()("uagb-block-"+t,"uagb-modal-wrapper"),"data-escpress":b?"enable":"disable","data-overlayclick":d?"enable":"disable"},"text"===a&&h,"icon"===a&&v,"image"===a&&T,"button"===a&&S,React.createElement("div",{className:Be()(""+u,"uagb-modal-popup","uagb-block-"+t)},React.createElement("div",{className:"uagb-modal-popup-wrap"},React.createElement("div",{className:"uagb-modal-popup-content"},React.createElement(ge.InnerBlocks.Content,null)),("popup-top-left"===p||"popup-top-right"===p)&&React.createElement("div",{className:"uagb-modal-popup-close"},""!==g&&Ce(g)))))}},{attributes:pA,save:function(e){const{block_id:t,modalTrigger:a,triggerText:l,icon:i,iconImage:o,imageSize:n,buttonText:r,buttonIcon:s,buttonIconPosition:c,appearEffect:u,closeIconPosition:p,escPress:b,overlayClick:d,closeIcon:g,imgTagWidth:m,imgTagHeight:y,showBtnIcon:f,openModalAs:h,modalPosition:v}=e.attributes,_=React.createElement(ge.RichText.Content,{value:l,tagName:"span",className:"uagb-modal-text uagb-modal-trigger"}),T=uagb_blocks_info.spectra_pro_status,C=React.createElement("div",{className:"uagb-modal-trigger"},""!==i&&Ce(i)),S=o&&null!=o&&o.alt?null==o?void 0:o.alt:"";let w="";if(o&&o.url){let e=o.url;const t=o.sizes,a=n;void 0!==t&&void 0!==t[a]&&(e=t[a].url),w=React.createElement("img",{src:e,alt:S,className:"uagb-modal-trigger",width:m,height:y,loading:"lazy"})}let k="";""!==s&&(k=Ce(s));const P=React.createElement("div",{className:Be()("uagb-spectra-button-wrapper","wp-block-button")},React.createElement("a",{className:"uagb-modal-button-link wp-block-button__link uagb-modal-trigger",href:"#",onClick:"return false;",target:"_self",rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-modal-content-wrapper"},f&&"before"===c&&k,React.createElement(ge.RichText.Content,{tagName:"span",value:r,className:"uagb-inline-editing"}),f&&"after"===c&&k)));return React.createElement("div",{className:Be()("uagb-block-"+t,"uagb-modal-wrapper"),"data-escpress":b?"enable":"disable","data-overlayclick":d?"enable":"disable"},"text"===a&&_,"icon"===a&&C,"image"===a&&w,"button"===a&&P,React.createElement("div",{className:Be()(""+u,"uagb-modal-popup","uagb-block-"+t,{["uagb-modal-type-"+h]:T,["uagb-modal-position-"+v]:T&&"popup"===h})},T&&("window-top-left"===p||"window-top-right"===p)&&React.createElement("div",{className:Be()("uagb-modal-popup-close",p)},""!==g&&Ce(g)),React.createElement("div",{className:"uagb-modal-popup-wrap"},React.createElement("div",{className:"uagb-modal-popup-content"},React.createElement(ge.InnerBlocks.Content,null)),("popup-top-left"===p||"popup-top-right"===p)&&React.createElement("div",{className:"uagb-modal-popup-close"},""!==g&&Ce(g)))))}}];let dA={};dA=Object(j.applyFilters)("uagb/modal",ws(dA)),Object(be.registerBlockType)("uagb/modal",{...dA,title:Object(r.__)("Modal","ultimate-addons-for-gutenberg"),description:Object(r.__)("This block allows you to add modal popup.","ultimate-addons-for-gutenberg"),icon:se.modal,keywords:[Object(r.__)("modal","ultimate-addons-for-gutenberg"),Object(r.__)("popup","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:wa,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"modal"}):React.createElement(sA,e),save:function(e){const{block_id:t,modalTrigger:a,triggerText:l,icon:i,iconImage:o,imageSize:n,buttonText:s,buttonIcon:c,buttonIconPosition:u,appearEffect:p,closeIconPosition:b,escPress:d,overlayClick:g,closeIcon:m,imgTagWidth:y,imgTagHeight:f,showBtnIcon:h,openModalAs:v,modalPosition:_,inheritFromTheme:T,buttonType:C}=e.attributes,S=React.createElement(ge.RichText.Content,{value:l,tagName:"span",className:"uagb-modal-text uagb-modal-trigger"}),w=uagb_blocks_info.spectra_pro_status,k=React.createElement("div",{className:"uagb-modal-trigger"},""!==i&&Ce(i)),P=o&&null!=o&&o.alt?null==o?void 0:o.alt:"";let x="";if(o&&o.url){let e=o.url;const t=o.sizes,a=n;void 0!==t&&void 0!==t[a]&&(e=t[a].url),x=React.createElement("img",{src:e,alt:P,className:"uagb-modal-trigger",width:y,height:f,loading:"lazy"})}let A="";""!==c&&(A=Ce(c));const G=T&&"secondary"===C,M=G?{borderWidth:"revert-layer"}:{},R=`uagb-modal-button-link ${G?"ast-outline-button":"wp-block-button__link"} uagb-modal-trigger`,B=React.createElement("div",{className:Be()("uagb-spectra-button-wrapper","wp-block-button")},React.createElement("a",{className:R,href:"#",onClick:"return false;",target:"_self",rel:"noopener noreferrer",style:M},React.createElement("span",{className:"uagb-modal-content-wrapper"},h&&"before"===u&&A,React.createElement(ge.RichText.Content,{tagName:"span",value:s,className:"uagb-inline-editing"}),h&&"after"===u&&A)));return React.createElement("div",{className:Be()("uagb-block-"+t,"uagb-modal-wrapper"),"data-escpress":d?"enable":"disable","data-overlayclick":g?"enable":"disable"},"text"===a&&S,"icon"===a&&k,"image"===a&&x,"button"===a&&B,React.createElement("div",{className:Be()(""+p,"uagb-modal-popup","uagb-block-"+t,{["uagb-modal-type-"+v]:w,["uagb-modal-position-"+_]:w&&"popup"===v})},React.createElement("div",{className:"uagb-modal-popup-wrap"},React.createElement("div",{className:"uagb-modal-popup-content"},React.createElement(ge.InnerBlocks.Content,null)),("popup-top-left"===b||"popup-top-right"===b)&&React.createElement("button",{className:"uagb-modal-popup-close","aria-label":Object(r.__)("Close Modal","ultimate-addons-for-gutenberg")},""!==m&&Ce(m))),w&&("window-top-left"===b||"window-top-right"===b)&&React.createElement("button",{className:Be()("uagb-modal-popup-close",b),"aria-label":Object(r.__)("Close Modal","ultimate-addons-for-gutenberg")},""!==m&&Ce(m))))},deprecated:bA});var gA=function(e,t,a){const{block_id:l,blockName:i,btnBorderHColor:o,align:n,titleColor:r,titleFontSize:s,titleFontSizeType:c,titleFontSizeMobile:u,titleFontSizeTablet:p,titleFontFamily:b,titleFontWeight:d,titleLineHeightType:g,titleLineHeight:m,titleLineHeightTablet:y,titleLineHeightMobile:f,taxonomyBottomSpace:h,taxonomyBottomSpaceTablet:v,taxonomyBottomSpaceMobile:_,taxonomyBottomSpaceUnit:T,displayPostTaxonomyAboveTitle:C,titleBottomSpace:S,titleBottomSpaceTablet:w,titleBottomSpaceMobile:k,titleTransform:P,titleDecoration:x,titleBottomSpaceUnit:A,titleFontStyle:G,metaFontSize:M,metaFontSizeType:R,metaFontSizeMobile:B,metaFontSizeTablet:U,metaFontFamily:E,metaFontWeight:O,metaLineHeightType:L,metaLineHeight:H,metaLineHeightTablet:j,metaLineHeightMobile:F,metaColor:z,metaBottomSpace:D,metaBottomSpaceTablet:N,metaBottomSpaceMobile:I,metaTransform:V,metaDecoration:W,metaBottomSpaceUnit:q,metaFontStyle:Z,excerptFontSize:$,excerptFontSizeType:Y,excerptFontSizeTablet:K,excerptFontSizeMobile:J,excerptFontFamily:X,excerptFontWeight:Q,excerptFontStyle:ee,excerptLineHeightType:te,excerptLineHeight:le,excerptLineHeightTablet:ie,excerptLineHeightMobile:oe,excerptColor:ne,excerptBottomSpace:re,excerptBottomSpaceTablet:se,excerptBottomSpaceMobile:ce,excerptBottomSpaceUnit:ue,excerptTransform:pe,excerptDecoration:be,ctaColor:de,linkBox:ge,ctaFontSize:me,ctaFontSizeType:ye,ctaFontSizeTablet:fe,ctaFontSizeMobile:he,ctaFontFamily:ve,ctaFontStyle:_e,ctaFontWeight:Te,ctaLineHeightType:Ce,ctaLineHeight:Se,ctaLineHeightTablet:we,ctaLineHeightMobile:ke,ctaBottomSpace:Pe,ctaBottomSpaceTablet:xe,ctaBottomSpaceMobile:Ae,ctaBgType:Ge,ctaBgHType:Me,ctaBgColor:Re,ctaHColor:Be,ctaBgHColor:Ue,ctaTransform:Ee,ctaDecoration:Oe,ctaBottomSpaceUnit:Le,imageBottomSpace:He,imageBottomSpaceTablet:je,imageBottomSpaceMobile:Fe,imageBottomSpaceUnit:ze,overlayOpacity:De,bgOverlayColor:Ne,postPagination:Ie,rowGapUnit:Ve,columnGapUnit:We,rowGap:qe,rowGapTablet:Ze,rowGapMobile:$e,columnGap:Ye,columnGapTablet:Ke,columnGapMobile:Je,bgType:Xe,bgColor:Qe,inheritFromThemeBtn:et,paginationColor:tt,paginationBgColor:at,paginationActiveColor:lt,paginationBgActiveColor:it,paginationLayout:ot,paginationBorderSize:nt,paginationBorderRadius:rt,paginationBorderColor:st,paginationBorderActiveColor:ct,paginationSpacing:ut,paginationSpacingUnit:pt,paginationAlignment:bt,paddingBtnTop:dt,paddingBtnBottom:gt,paddingBtnLeft:mt,paddingBtnRight:yt,paddingBtnTopTablet:ft,paddingBtnRightTablet:ht,paddingBtnBottomTablet:vt,paddingBtnLeftTablet:_t,paddingBtnTopMobile:Tt,paddingBtnRightMobile:Ct,paddingBtnBottomMobile:St,paddingBtnLeftMobile:wt,paddingBtnUnit:kt,mobilePaddingBtnUnit:Pt,tabletPaddingBtnUnit:xt,paddingTop:At,paddingBottom:Gt,paddingLeft:Mt,paddingRight:Rt,paddingTopTablet:Bt,paddingRightTablet:Ut,paddingBottomTablet:Et,paddingLeftTablet:Ot,paddingTopMobile:Lt,paddingRightMobile:Ht,paddingBottomMobile:jt,paddingLeftMobile:Ft,mobilePaddingUnit:zt,tabletPaddingUnit:Dt,contentPaddingUnit:Nt,arrowColor:It,arrowSize:Vt,paginationType:Wt,paginationFontSize:qt,paginationEventType:Zt,paginationAlign:$t,paginationTextColor:Yt,paginationMasonryBgColor:Kt,paginationMasonryBorderHColor:Jt,paginationButtonPaddingType:Xt,paginationTextHoverColor:Qt,paginationBgHoverColor:ea,paginationButtonPaddingTopTablet:ta,paginationButtonPaddingRightTablet:aa,paginationButtonPaddingBottomTablet:la,paginationButtonPaddingLeftTablet:ia,paginationButtonPaddingTopMobile:oa,paginationButtonPaddingRightMobile:na,paginationButtonPaddingBottomMobile:ra,paginationButtonPaddingLeftMobile:sa,paginationButtonPaddingTop:ca,paginationButtonPaddingRight:ua,paginationButtonPaddingBottom:pa,paginationButtonPaddingLeft:ba,mobilepaginationButtonPaddingType:da,tabletpaginationButtonPaddingType:ga,loaderSize:ma,loaderColor:ya,highlightedTextColor:fa,highlightedTextBgColor:ha,imgPosition:va,titleLetterSpacing:_a,titleLetterSpacingTablet:Ta,titleLetterSpacingMobile:Ca,titleLetterSpacingType:Sa,metaLetterSpacing:wa,metaLetterSpacingTablet:ka,metaLetterSpacingMobile:Pa,metaLetterSpacingType:xa,excerptLetterSpacing:Aa,excerptLetterSpacingTablet:Ga,excerptLetterSpacingMobile:Ma,excerptLetterSpacingType:Ra,ctaLetterSpacing:Ba,ctaLetterSpacingTablet:Ua,ctaLetterSpacingMobile:Ea,ctaLetterSpacingType:Oa,useSeparateBoxShadows:La,boxShadowColor:Ha,boxShadowHOffset:ja,boxShadowVOffset:Fa,boxShadowBlur:za,boxShadowSpread:Da,boxShadowPosition:Na,boxShadowColorHover:Ia,boxShadowHOffsetHover:Va,boxShadowVOffsetHover:Wa,boxShadowBlurHover:qa,boxShadowSpreadHover:Za,boxShadowPositionHover:$a,overallBorderHColor:Ya,arrowDistance:Ka,arrowDistanceTablet:Ja,arrowDistanceMobile:Xa,columns:Qa,tcolumns:el,mcolumns:tl,wrapperTopPadding:al,wrapperRightPadding:ll,wrapperLeftPadding:il,wrapperBottomPadding:ol,wrapperTopPaddingTablet:nl,wrapperRightPaddingTablet:rl,wrapperLeftPaddingTablet:sl,wrapperBottomPaddingTablet:cl,wrapperTopPaddingMobile:ul,wrapperRightPaddingMobile:pl,wrapperLeftPaddingMobile:bl,wrapperBottomPaddingMobile:dl,wrapperPaddingUnit:gl,wrapperPaddingUnitTablet:ml,wrapperPaddingUnitMobile:yl,wrapperAlign:fl,wrapperAlignPosition:hl,isLeftToRightLayout:vl,dotsMarginTop:_l,dotsMarginTopTablet:Tl,dotsMarginTopMobile:Cl,dotsMarginTopUnit:Sl}=e,wl=a.toLowerCase(),kl=Ps(De,"overlayOpacity",i),Pl=Ps(Ye,"columnGap",i),xl=Ps(qe,"rowGap",i),Al=Ps(He,"imageBottomSpace",i),Gl=Ps(h,"taxonomyBottomSpace",i),Ml=Ps(S,"titleBottomSpace",i),Rl=Ps(D,"metaBottomSpace",i),Bl=Ps(re,"excerptBottomSpace",i),Ul=Ps(Pe,"ctaBottomSpace",i),El=void 0!==ut?Ps(ut,"paginationSpacing",i):"",Ol=void 0!==rt?Ps(rt,"paginationBorderRadius",i):"",Ll=void 0!==nt?Ps(nt,"paginationBorderSize",i):"",Hl=void 0!==Vt?Ps(Vt,"arrowSize",i):"",jl=void 0!==qt?Ps(qt,"paginationFontSize",i):"",Fl=void 0!==ma?Ps(ma,"loaderSize",i):"",zl=isNaN(Ze)?xl:Ze,Dl=isNaN($e)?zl:$e,Nl=rs(e,"btn"),Il=rs(e,"btn","tablet"),Vl=rs(e,"btn","mobile"),Wl=rs(e,"overall"),ql=rs(e,"overall","tablet"),Zl=rs(e,"overall","mobile"),$l=rs(e,"paginationMasonry"),Yl=rs(e,"paginationMasonry","tablet"),Kl=rs(e,"paginationMasonry","mobile"),Jl=Ps(_l,"dotsMarginTop","post-carousel"),Xl=Ps(Tl,"dotsMarginTopTablet","post-carousel"),Ql=Ps(Cl,"dotsMarginTopMobile","post-carousel");let ei={},ti={};const ai=cs({horizontal:ja,vertical:Fa,blur:za,spread:Da,color:Ha,position:Na}),li=cs({horizontal:Va,vertical:Wa,blur:qa,spread:Za,color:Ia,position:$a,altColor:Ha});let ii={".wp-block-uagb-post-grid":{"grid-template-columns":"repeat("+Qa+" , minmax(0, 1fr))",...vl?{display:"flex","flex-direction":"column"}:{}},".wp-block-uagb-post-grid.uagb-post__items":{"column-gap":ns(Pl,We),"row-gap":ns(xl,Ve)},":not(.wp-block-uagb-post-grid).uagb-post__items":{"margin-right":ns(-xl/2,Ve),"margin-left":ns(-xl/2,Ve)},":not(.wp-block-uagb-post-grid).uagb-post__items article":{"padding-right":ns(xl/2,Ve),"padding-left":ns(xl/2,Ve),"margin-bottom":ns(Pl,We)}," .uagb-post__inner-wrap":{background:Qe,"text-align":n,...vl?{display:"flex","flex-direction":fl,width:"100%"}:{}},".is_carousel .uagb-post__inner-wrap":{background:Xe?Qe:"transparent"},".wp-block-uagb-post-grid .uagb-post__inner-wrap":{"box-shadow":ai,...Wl,"padding-top":ns(At,Nt),"padding-left":ns(Mt,Nt),"padding-bottom":ns(Gt,Nt),"padding-right":ns(Rt,Nt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap > .uagb-post__text:not(.highlighted)":{"margin-left":ns(Mt,Nt),"margin-right":ns(Rt,Nt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text.highlighted":{"margin-left":ns(Mt,Nt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:first-child":{"margin-top":ns(At,Nt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:last-child":{"margin-bottom":ns(Gt,Nt)}," .uagb-post__inner-wrap .uagb-post__cta":{"padding-bottom":ns(Ul,Le)}," .uagb-post__inner-wrap .uagb-post__image":{"padding-bottom":ns(Al,ze),...vl&&"top"===va?{flex:"none",width:"35%"}:{},...vl&&"background"===va?{flex:"none",width:"100%"}:{}}," .uagb-post__inner-wrap .uagb-post__image + .uagb-post__title ":{"margin-top":"0px"}," .uagb-post__inner-wrap .uagb-post__title":{"padding-bottom":ns(Ml,A)}," .uagb-post__inner-wrap .uagb-post-grid-byline":{"padding-bottom":ns(Rl,q)}," .uagb-post__inner-wrap .uagb-post__excerpt":{"padding-bottom":ns(Bl,ue)}," .uagb-post__image:before":{"background-color":Ne,opacity:kl/100}," .uagb-post-pagination-wrap":{"margin-top":ns(El,pt),"justify-content":bt}," .uag-post-grid-wrapper":{"padding-top":ns(al,gl),"padding-right":ns(ll,gl),"padding-bottom":ns(ol,gl),"padding-left":ns(il,gl),width:"100%",display:"flex","flex-direction":"column","justify-content":hl}};"left"===bt?ii[" .uagb-post-pagination-wrap"]["margin-left"]=ns(xl/2,Ve):"right"===bt&&(ii[" .uagb-post-pagination-wrap"]["margin-right"]=ns(xl/2,Ve)),ii[" .uagb-post__title"]={color:r,"font-size":ns(s,c),"font-family":b,"font-weight":d,"line-height":ns(m,g),"text-transform":P,"text-decoration":x,"font-style":G,"letter-spacing":ns(_a,Sa)},ii[" .uagb-post__title a"]={color:r,"font-size":ns(s,c),"font-family":b,"font-weight":d,"line-height":ns(m,g),"letter-spacing":ns(_a,Sa)},ii[" .uagb-post-grid-byline"]={color:z,"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"font-style":Z,"letter-spacing":ns(wa,xa)},ii[" .uagb-post-grid-byline time"]={"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"font-style":Z,"letter-spacing":ns(wa,xa)},ii[" .uagb-post-grid-byline span.uagb-post__comment"]={"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"font-style":Z,"letter-spacing":ns(wa,xa)},ii[" span.uagb-post__taxonomy"]={color:z,"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"font-style":Z,"letter-spacing":ns(wa,xa),"padding-bottom":"aboveTitle"===C&&ns(Gl,T)},ii[" span.uagb-post__taxonomy.highlighted"]={color:fa,"background-color":ha,"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"font-style":Z,"letter-spacing":ns(wa,xa),"margin-bottom":"aboveTitle"===C&&ns(Gl,T)},ii[" .uagb-post-grid-byline .uagb-post__author"]={color:z,"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"letter-spacing":ns(wa,xa)},ii[" .uagb-post-grid-byline .uagb-post__author a"]={color:z,"font-size":ns(M,R),"font-family":E,"font-weight":O,"line-height":ns(H,L),"text-transform":V,"text-decoration":W,"letter-spacing":ns(wa,xa)},ii[" .uagb-post__excerpt"]={color:ne,"font-size":ns($,Y),"font-family":X,"font-weight":Q,"line-height":ns(le,te),"font-style":ee,"text-transform":pe,"text-decoration":be,"letter-spacing":ns(Aa,Ra)},!0===Ie&&("filled"===ot&&(ii[" .uagb-post-pagination-wrap a"]={"background-color":at,color:tt},void 0===it&&void 0===lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"background-color":at,color:tt}),void 0===it&&void 0!==lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"background-color":at,color:lt}),void 0!==it&&void 0===lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"background-color":it,color:tt}),void 0!==it&&void 0!==lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"background-color":it,color:lt})),"border"===ot&&(ii[" .uagb-post-pagination-wrap a"]={"border-style":"solid","border-width":ns(Ll,"px"),"border-color":st,"border-radius":ns(Ol,"px"),color:tt,"background-color":"transparent"},void 0!==ct&&void 0!==lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"border-style":"solid","border-width":ns(Ll,"px"),"border-color":ct,"border-radius":ns(Ol,"px"),color:lt,"background-color":"transparent"}),void 0===ct&&void 0!==lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"border-style":"solid","border-width":ns(Ll,"px"),"border-color":st,"border-radius":ns(Ol,"px"),color:lt,"background-color":"transparent"}),void 0!==ct&&void 0===lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"border-style":"solid","border-width":ns(Ll,"px"),"border-color":ct,"border-radius":ns(Ol,"px"),color:tt,"background-color":"transparent"}),"undefined"==typeof paginationBorderHColor&&void 0===lt&&(ii[" .uagb-post-pagination-wrap .page-numbers.current"]={"border-style":"solid","border-width":ns(Ll,"px"),"border-color":st,"border-radius":ns(Ol,"px"),color:tt,"background-color":"transparent"}))),ge&&(ii[" .uagb-post__inner-wrap"].cursor="pointer"),ii[" .slick-arrow svg"]={fill:It,height:ns(Hl,"px"),width:ns(Hl,"px")},ii[".uagb-post__arrow-outside.uagb-post-grid .slick-prev"]={left:ns(Ka,"px")},ii[".uagb-post__arrow-outside.uagb-post-grid .slick-next"]={right:ns(Ka,"px")},ei={".wp-block-uagb-post-grid":{"grid-template-columns":"repeat("+tl+" , minmax(0, 1fr))",...vl?{display:"grid"}:{}},".uagb-post__arrow-outside.uagb-post-grid .slick-prev":{left:ns(Xa,"px")},".uagb-post__arrow-outside.uagb-post-grid .slick-next":{right:ns(Xa,"px")}," .uagb-post__inner-wrap .uagb-post__title":{"font-size":ns(u,c),"line-height":f+g,"padding-bottom":ns(k,A)},".wp-block-uagb-post-grid .uagb-post__inner-wrap":Zl," .uagb-post__title a":{"font-size":ns(u,c),"line-height":f+g,"letter-spacing":ns(Ca,Sa)}," .uagb-post-grid-byline":{"font-size":ns(B,R),"line-height":F+L,"padding-bottom":ns(I,q),"letter-spacing":ns(Pa,xa)}," .uagb-post-grid-byline time":{"font-size":ns(B,R),"line-height":F+L,"padding-bottom":ns(I,q),"letter-spacing":ns(Pa,xa)}," .uagb-post-grid-byline span.uagb-post__comment":{"font-size":ns(B,R),"line-height":F+L,"padding-bottom":ns(I,q),"letter-spacing":ns(Pa,xa)}," span.uagb-post__taxonomy.default":{"font-size":ns(B,R),"line-height":F+L,"letter-spacing":ns(Pa,xa)}," span.uagb-post__taxonomy":{"padding-bottom":"aboveTitle"===C&&ns(_,T)}," span.uagb-post__taxonomy.highlighted":{"margin-bottom":"aboveTitle"===C&&ns(_,T)}," .uagb-post-grid-byline .uagb-post__author":{"font-size":ns(B,R),"line-height":F+L,"letter-spacing":ns(Pa,xa)}," .uagb-post-grid-byline .uagb-post__author a":{"font-size":ns(B,R),"line-height":F+L,"letter-spacing":ns(Pa,xa)}," .uagb-post__inner-wrap .uagb-post__excerpt":{"font-size":ns(J,Y),"line-height":oe+te,"padding-bottom":ns(ce,ue),"letter-spacing":ns(Ma,Ra)}," .uagb-post__inner-wrap .uagb-post__cta":{"font-size":ns(he,ye),"line-height":ke+Ce,"padding-bottom":ns(Ae,Le),"letter-spacing":ns(Ea,Oa)}," .uagb-post__inner-wrap .uagb-post__cta a":{"font-size":ns(he,ye),"line-height":ke+Ce,"padding-top":ns(Tt,Pt),"padding-bottom":ns(St,Pt),"padding-left":ns(wt,Pt),"padding-right":ns(Ct,Pt),"letter-spacing":ns(Ea,Oa)}," .uagb-post__inner-wrap .uagb-post__image":{"padding-bottom":ns(Fe,ze),...vl&&"top"===va?{width:"unset",display:"flex","align-items":"center"}:{},...vl&&"background"===va?{width:"100%"}:{}},".uagb-post__items":{"margin-right":ns(-Dl/2,Ve),"margin-left":ns(-Dl/2,Ve)},":not(.wp-block-uagb-post-grid).uagb-post__items article":{"padding-right":ns(Dl/2,Ve),"padding-left":ns(Dl/2,Ve),"margin-bottom":ns(Je,We)},".wp-block-uagb-post-grid.uagb-post__items":{"column-gap":ns(Je,We),"row-gap":ns($e,Ve)}," .is-masonry":{height:"initial !important"},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:not(.highlighted)":{"margin-left":ns(Ft,zt),"margin-right":ns(Ht,zt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text.highlighted":{"margin-left":ns(Ft,zt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:first-child":{"margin-top":ns(Lt,zt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:last-child":{"margin-bottom":ns(jt,zt)}," .uagb-post__inner-wrap":{...vl?{"flex-direction":"column"}:{}}," .uag-post-grid-wrapper":{"padding-top":ns(ul,yl),"padding-right":ns(pl,yl),"padding-bottom":ns(dl,yl),"padding-left":ns(bl,yl),width:"unset"}},La&&(ii[".wp-block-uagb-post-grid .uagb-post__inner-wrap:hover"]={"box-shadow":li}),ii[".wp-block-uagb-post-grid article:hover"]={"border-color":Ya},ii[".wp-block-uagb-post-grid article:hover"]={"border-color":Ya},ti={".wp-block-uagb-post-grid":{"grid-template-columns":"repeat("+el+" , minmax(0, 1fr))"},".uagb-post__arrow-outside.uagb-post-grid .slick-prev":{left:ns(Ja,"px")},".uagb-post__arrow-outside.uagb-post-grid .slick-next":{right:ns(Ja,"px")}," .uagb-post__inner-wrap .uagb-post__title":{"font-size":ns(p,c),"line-height":y+g,"padding-bottom":ns(w,A)}," .uagb-post__title a":{"font-size":ns(p,c),"line-height":y+g,"letter-spacing":ns(Ta,Sa)}," .uagb-post-grid-byline":{"font-size":ns(U,R),"line-height":j+L,"padding-bottom":ns(N,q),"letter-spacing":ns(ka,xa)}," .uagb-post-grid-byline time":{"font-size":ns(U,R),"line-height":j+L,"padding-bottom":ns(N,q),"letter-spacing":ns(ka,xa)}," .uagb-post-grid-byline span.uagb-post__comment":{"font-size":ns(U,R),"line-height":j+L,"padding-bottom":ns(N,q),"letter-spacing":ns(ka,xa)}," span.uagb-post__taxonomy.default":{"font-size":ns(U,R),"line-height":j+L,"letter-spacing":ns(ka,xa)}," span.uagb-post__taxonomy":{"padding-bottom":"aboveTitle"===C&&ns(v,T)}," span.uagb-post__taxonomy.highlighted":{"margin-bottom":"aboveTitle"===C&&ns(v,T)}," .uagb-post-grid-byline .uagb-post__author":{"font-size":ns(U,R),"line-height":j+L,"letter-spacing":ns(ka,xa)}," .uagb-post-grid-byline .uagb-post__author a":{"font-size":ns(U,R),"line-height":j+L,"letter-spacing":ns(ka,xa)}," .uagb-post__inner-wrap .uagb-post__excerpt":{"font-size":ns(K,Y),"line-height":ie+te,"padding-bottom":ns(se,ue),"letter-spacing":ns(Ga,Ra)}," .uagb-post__inner-wrap .uagb-post__cta":{"font-size":ns(fe,ye),"line-height":we+Ce,"padding-bottom":ns(xe,Le),"letter-spacing":ns(Ua,Oa)}," .uagb-post__inner-wrap .uagb-post__cta .uagb-text-link":{"font-size":ns(fe,ye),"line-height":we+Ce,"padding-top":ns(ft,xt),"padding-bottom":ns(vt,xt),"padding-left":ns(_t,xt),"padding-right":ns(ht,xt),"letter-spacing":ns(Ua,Oa)}," .uagb-post__inner-wrap .uagb-post__image":{"padding-bottom":ns(je,ze),...vl&&"top"===va?{width:"45%"}:{}},".uagb-post__items":{"margin-right":ns(-zl/2,Ve),"margin-left":ns(-zl/2,Ve)},":not(.wp-block-uagb-post-grid).uagb-post__items article":{"padding-right":ns(zl/2,Ve),"padding-left":ns(zl/2,Ve),"margin-bottom":ns(Ke,We)},".wp-block-uagb-post-grid.uagb-post__items":{"column-gap":ns(Ke,We),"row-gap":ns(Ze,Ve)},".wp-block-uagb-post-grid .uagb-post__inner-wrap":ql," .is-masonry":{height:"initial !important"},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:not(.highlighted)":{"margin-left":ns(Ot,Dt),"margin-right":ns(Ut,Dt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text.highlighted":{"margin-left":ns(Ot,Dt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:first-child":{"margin-top":ns(Bt,Dt)},":not(.wp-block-uagb-post-grid) .uagb-post__inner-wrap .uagb-post__text:last-child":{"margin-bottom":ns(Et,Dt)}," .uag-post-grid-wrapper":{"padding-top":ns(nl,ml),"padding-right":ns(rl,ml),"padding-bottom":ns(cl,ml),"padding-left":ns(sl,ml)}},"infinite"===Wt&&("button"===Zt&&(ii[".uagb-post__items"]={"margin-bottom":"40px"},ii[" .uagb-post__load-more-wrap"]={"text-align":$t},ii[" .uagb-post__load-more-wrap .uagb-post-pagination-button"]={color:Yt,"background-color":Kt,"font-size":ns(jl,"px"),"padding-top":ns(ca,Xt),"padding-bottom":ns(pa,Xt),"padding-right":ns(ua,Xt),"padding-left":ns(ba,Xt),...$l},ii[" .uagb-post__load-more-wrap .uagb-post-pagination-button:hover"]={color:Qt,"background-color":ea,"border-color":Jt},ei[" .uagb-post__load-more-wrap .uagb-post-pagination-button"]={"padding-top":ns(oa,da),"padding-bottom":ns(ra,da),"padding-right":ns(na,da),"padding-left":ns(sa,da)},ti[" .uagb-post__load-more-wrap .uagb-post-pagination-button"]={"padding-top":ns(ta,ga),"padding-bottom":ns(aa,ga),"padding-right":ns(la,ga),"padding-left":ns(ia,ga)}),"scroll"===Zt&&(ii[".uagb-post-grid .uagb-post-inf-loader div"]={width:ns(Fl,"px"),height:ns(Fl,"px"),"background-color":ya})),ti[".uagb-post-grid .uagb-post__inner-wrap"]={"padding-top":ns(Bt,Dt),"padding-bottom":ns(Et,Dt),"padding-left":ns(Ot,Dt),"padding-right":ns(Ut,Dt),...ql},ei[".uagb-post-grid .uagb-post__inner-wrap"]={"padding-top":ns(Lt,zt),"padding-bottom":ns(jt,zt),"padding-left":ns(Ft,zt),"padding-right":ns(Ht,zt),...Zl,...vl?{display:"inline-block"}:{}},ti[" .uagb-post__cta .uagb-text-link"]=Il,ei[" .uagb-post__cta .uagb-text-link"]=Vl,ti[" .uagb-post__load-more-wrap .uagb-post-pagination-button"]=Yl,ei[" .uagb-post__load-more-wrap .uagb-post-pagination-button"]=Kl,"background"!==va||vl||(ii[" .uagb-post__inner-wrap .uagb-post__text:nth-child(2)"]={"margin-top":ns(At,Nt)}),"background"===va||vl||(ii[".wp-block-uagb-post-grid .uagb-post__inner-wrap  > .uagb-post__image:first-child"]={"margin-top":ns(-At,Nt),"margin-left":ns(-Mt,Nt),"margin-right":ns(-Rt,Nt)},ti[".wp-block-uagb-post-grid .uagb-post__inner-wrap  > .uagb-post__image:first-child"]={"margin-top":ns(-Bt,Dt),"margin-left":ns(-Ot,Dt),"margin-right":ns(-Ut,Dt)}),"background"!==va&&(ei[".wp-block-uagb-post-grid .uagb-post__inner-wrap  > .uagb-post__image:first-child"]={"margin-top":ns(-Lt,zt),"margin-left":ns(-Ft,zt),"margin-right":ns(-Ht,zt)}),ti[" .uagb-post__inner-wrap .uagb-post__text .wp-block-button.uagb-post__cta:not(.is-style-outline) .uagb-text-link.wp-block-button__link:not(.has-background) "]=Il,ei[" .uagb-post__inner-wrap .uagb-post__text .wp-block-button.uagb-post__cta:not(.is-style-outline) .uagb-text-link.wp-block-button__link:not(.has-background) "]=Vl,ii[" .slick-dots"]={"margin-top":ns(Jl,Sl)+"!important"},ti[" .slick-dots"]={"margin-top":ns(Xl,Sl)+"!important"},ei[" .slick-dots"]={"margin-top":ns(Ql,Sl)+"!important"},"post-grid"===i&&(ii[".uagb-equal_height_inline-read-more-buttons-in-editor .uagb-post__inner-wrap .uagb-post__text:last-child"]={left:ns(Mt,Nt),right:ns(Rt,Nt)},ti[".uagb-equal_height_inline-read-more-buttons-in-editor .uagb-post__inner-wrap .uagb-post__text:last-child"]={left:ns(Ot,Dt),right:ns(Ut,Dt)},ei[".uagb-equal_height_inline-read-more-buttons-in-editor .uagb-post__inner-wrap .uagb-post__text:last-child"]={left:ns(Ft,zt),right:ns(Ht,zt)}),et||(ii={...ii," .uagb-post__cta .uagb-text-link":{"pointer-events":"visible",color:de,"font-size":ns(me,ye),"font-family":ve,"font-weight":Te,"font-style":_e,"line-height":ns(Se,Ce),background:"color"===Ge?Re:"transparent","padding-top":ns(dt,kt),"padding-bottom":ns(gt,kt),"text-transform":Ee,"text-decoration":Oe,"padding-left":ns(mt,kt),"padding-right":ns(yt,kt),...Nl,"letter-spacing":ns(Ba,Oa)}," .uagb-post__inner-wrap .uagb-post__text .wp-block-button.uagb-post__cta:not(.is-style-outline) .uagb-text-link.wp-block-button__link:not(.has-background) ":{"pointer-events":"visible",color:de,"font-size":ns(me,ye),"font-family":ve,"font-weight":Te,"font-style":_e,"line-height":ns(Se,Ce),background:Re,"padding-top":ns(dt,kt),"padding-bottom":ns(gt,kt),"text-transform":Ee,"text-decoration":Oe,"padding-left":ns(mt,kt),"padding-right":ns(yt,kt),...Nl,"letter-spacing":ns(Ba,Oa)}," .uagb-post__inner-wrap .uagb-post__text .wp-block-button.uagb-post__cta:not(.is-style-outline) .uagb-text-link.wp-block-button__link:not(.has-background):hover":{color:Be,background:"color"===Me?Ue:"transparent","border-color":o}},ti={...ti," .uagb-post__cta .uagb-text-link":Il},ei={...ei," .uagb-post__cta .uagb-text-link":Vl});let oi="";const ni=".editor-styles-wrapper .uagb-block-"+l;return oi=ae(ii,ni),"tablet"!==wl&&"mobile"!==wl||(oi+=ae(ti,ni,!0,"tablet"),"mobile"===wl&&(oi+=ae(ei,ni,!0,"mobile"))),oi},mA=a(21);const yA=[{defaultAttributes:tt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"align",value:"center"},{label:"postsToShow",value:4},{label:"columns",value:2},{label:"autoplay",value:!1},{label:"imageBottomSpace",value:25},{label:"paddingTop",value:20},{label:"paddingBottom",value:30},{label:"paddingLeft",value:20},{label:"paddingRight",value:20},{label:"arrowDots",value:"arrows_dots"},{label:"imgPosition",value:"top"},{label:"linkBox",value:!1},{label:"excerptLength",value:15},{label:"displayPostLink",value:!0},{label:"titleColor",value:""},{label:"metaColor",value:""},{label:"excerptColor",value:""},{label:"bgOverlayColor",value:""},{label:"overlayOpacity",value:""},{label:"rowGap",value:20},{label:"columnGap",value:20},{label:"bgType",value:"color"},{label:"displayPostImage",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M82 159.295C82 157.647 83.6714 156.312 85.7331 156.312H239.528C241.59 156.312 243.261 157.647 243.261 159.295C243.261 160.942 241.59 162.277 239.528 162.277H85.7331C83.6714 162.277 82 160.942 82 159.295Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M105.861 173.214C105.861 171.566 107.523 170.231 109.573 170.231H216.364C218.414 170.231 220.076 171.566 220.076 173.214C220.076 174.861 218.414 176.196 216.364 176.196H109.573C107.523 176.196 105.861 174.861 105.861 173.214Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M96 137.597C96 135.78 97.6008 134.306 99.5754 134.306H226.26C228.235 134.306 229.836 135.78 229.836 137.597C229.836 139.415 228.235 140.888 226.26 140.888H99.5754C97.6008 140.888 96 139.415 96 137.597Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80 89.0935V117.067H152.131H245.381V89.0935V61.1196H152.131H80V89.0935ZM135.837 68.5082C139.711 69.321 142.651 72.9417 142.651 76.8998C142.651 81.5414 138.688 85.5021 134.043 85.5021C130.082 85.5021 126.459 82.5641 125.645 78.693C125.032 75.7729 125.868 72.9926 128 70.8616C130.134 68.7294 132.913 67.8948 135.837 68.5082ZM178.436 80.8801L181.505 83.9461L184.574 87.0121L212.381 112.764H184.574H152.131H119.687V111.221V109.679L128.659 100.714L137.631 91.7487L142.01 96.123L146.389 100.497L159.273 87.6227C166.359 80.5415 172.188 74.7479 172.228 74.7479C172.267 74.7479 175.061 77.5074 178.436 80.8801Z" fill="#B6B6B6"/> <path d="M134 194.575C134 193.4 134.978 192.448 136.184 192.448H189.958C191.164 192.448 192.142 193.4 192.142 194.575V207.872C192.142 209.047 191.164 210 189.958 210H136.184C134.978 210 134 209.047 134 207.872V194.575Z" fill="#B6B6B6"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"align",value:"left"},{label:"postsToShow",value:6},{label:"columns",value:3},{label:"autoplay",value:!0},{label:"imageBottomSpace",value:0},{label:"paddingTop",value:40},{label:"paddingBottom",value:40},{label:"paddingLeft",value:40},{label:"paddingRight",value:40},{label:"arrowDots",value:"dots"},{label:"imgPosition",value:"background"},{label:"linkBox",value:!0},{label:"excerptLength",value:12},{label:"displayPostLink",value:!0},{label:"titleColor",value:"#ffffff"},{label:"metaColor",value:"#ffffff"},{label:"excerptColor",value:"#FFFFFFC2"},{label:"bgOverlayColor",value:"#000000"},{label:"overlayOpacity",value:40},{label:"rowGap",value:20},{label:"columnGap",value:20},{label:"bgType",value:"color"},{label:"displayPostImage",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M43 136.5V228H163.5H284V136.5V45H163.5H43V136.5ZM110.075 69.1673C122.777 71.8259 132.417 83.6688 132.417 96.6154C132.417 111.798 119.421 124.753 104.191 124.753C91.2042 124.753 79.3242 115.143 76.6572 102.481C74.6458 92.9296 77.3872 83.8354 84.379 76.865C91.3751 69.8908 100.488 67.1608 110.075 69.1673ZM249.754 109.635L269.879 129.692V171.808V213.923H163.5H57.1211V208.877V203.832L86.5391 174.509L115.958 145.185L130.316 159.493L144.674 173.801L186.918 131.689C210.153 108.527 229.268 89.5769 229.396 89.5769C229.525 89.5769 238.686 98.603 249.754 109.635Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 123.989C73 122.341 74.6714 121.006 76.7331 121.006H230.528C232.59 121.006 234.261 122.341 234.261 123.989C234.261 125.636 232.59 126.971 230.528 126.971H76.7331C74.6714 126.971 73 125.636 73 123.989Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 137.908C73 136.261 74.662 134.925 76.7123 134.925H183.503C185.553 134.925 187.215 136.261 187.215 137.908C187.215 139.555 185.553 140.891 183.503 140.891H76.7123C74.662 140.891 73 139.555 73 137.908Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M73 102.291C73 100.473 74.6008 99 76.5754 99H203.26C205.235 99 206.836 100.473 206.836 102.291C206.836 104.109 205.235 105.582 203.26 105.582H76.5754C74.6008 105.582 73 104.109 73 102.291Z" fill="#B6B6B6"/> <path d="M73 159.269C73 158.094 73.9777 157.142 75.1837 157.142H128.958C130.164 157.142 131.142 158.094 131.142 159.269V172.566C131.142 173.741 130.164 174.694 128.958 174.694H75.1837C73.9777 174.694 73 173.741 73 172.566V159.269Z" fill="#B6B6B6"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"align",value:"left"},{label:"postsToShow",value:6},{label:"columns",value:3},{label:"autoplay",value:!0},{label:"imageBottomSpace",value:25},{label:"paddingTop",value:30},{label:"paddingBottom",value:30},{label:"paddingLeft",value:30},{label:"paddingRight",value:30},{label:"arrowDots",value:"arrows"},{label:"imgPosition",value:"top"},{label:"linkBox",value:!1},{label:"excerptLength",value:12},{label:"displayPostLink",value:!0},{label:"titleColor",value:""},{label:"metaColor",value:""},{label:"excerptColor",value:""},{label:"bgOverlayColor",value:""},{label:"overlayOpacity",value:60},{label:"rowGap",value:20},{label:"columnGap",value:20},{label:"bgType",value:"color"},{label:"autoplaySpeed",value:""},{label:"arrowSize",value:16},{label:"arrowBorderSize",value:2},{label:"displayPostImage",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80 160.175C80 158.528 81.6714 157.192 83.7331 157.192H237.528C239.59 157.192 241.261 158.528 241.261 160.175C241.261 161.822 239.59 163.158 237.528 163.158H83.7331C81.6714 163.158 80 161.822 80 160.175Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80 174.094C80 172.447 81.662 171.111 83.7123 171.111H190.503C192.553 171.111 194.215 172.447 194.215 174.094C194.215 175.741 192.553 177.077 190.503 177.077H83.7123C81.662 177.077 80 175.741 80 174.094Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80 138.478C80 136.66 81.6008 135.187 83.5754 135.187H210.26C212.235 135.187 213.836 136.66 213.836 138.478C213.836 140.295 212.235 141.769 210.26 141.769H83.5754C81.6008 141.769 80 140.295 80 138.478Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M80 89.9739V117.948H152.131H245.381V89.9739V62H152.131H80V89.9739ZM135.837 69.3885C139.711 70.2014 142.651 73.822 142.651 77.7801C142.651 82.4218 138.688 86.3825 134.043 86.3825C130.082 86.3825 126.459 83.4445 125.645 79.5733C125.032 76.6533 125.868 73.873 128 71.7419C130.134 69.6098 132.913 68.7751 135.837 69.3885ZM178.436 81.7605L181.505 84.8265L184.574 87.8925L212.381 113.644H184.574H152.131H119.687V112.102V110.559L128.659 101.594L137.631 92.6291L142.01 97.0034L146.389 101.378L159.273 88.503C166.359 81.4219 172.188 75.6283 172.228 75.6283C172.267 75.6283 175.061 78.3878 178.436 81.7605Z" fill="#B6B6B6"/> <path d="M80 195.456C80 194.281 80.9777 193.328 82.1837 193.328H135.958C137.164 193.328 138.142 194.281 138.142 195.456V208.753C138.142 209.928 137.164 210.88 135.958 210.88H82.1837C80.9777 210.88 80 209.928 80 208.753V195.456Z" fill="#B6B6B6"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"align",value:"left"},{label:"postsToShow",value:6},{label:"columns",value:3},{label:"autoplay",value:!0},{label:"imageBottomSpace",value:25},{label:"paddingTop",value:35},{label:"paddingBottom",value:35},{label:"paddingLeft",value:35},{label:"paddingRight",value:35},{label:"arrowDots",value:"arrows_dots"},{label:"imgPosition",value:""},{label:"linkBox",value:!1},{label:"excerptLength",value:12},{label:"displayPostLink",value:!0},{label:"titleColor",value:"#000000"},{label:"metaColor",value:"#777777"},{label:"excerptColor",value:"#000000"},{label:"bgOverlayColor",value:""},{label:"overlayOpacity",value:60},{label:"rowGap",value:20},{label:"columnGap",value:20},{label:"bgType",value:"color"},{label:"autoplaySpeed",value:""},{label:"arrowSize",value:16},{label:"arrowBorderSize",value:2},{label:"displayPostImage",value:!1},{label:"titleBottomSpace",value:10},{label:"metaBottomSpace",value:23},{label:"excerptBottomSpace",value:25}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M82 122.989C82 121.341 83.6714 120.006 85.7331 120.006H239.528C241.59 120.006 243.261 121.341 243.261 122.989C243.261 124.636 241.59 125.971 239.528 125.971H85.7331C83.6714 125.971 82 124.636 82 122.989Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M82 136.907C82 135.26 83.662 133.925 85.7123 133.925H192.503C194.553 133.925 196.215 135.26 196.215 136.907C196.215 138.555 194.553 139.89 192.503 139.89H85.7123C83.662 139.89 82 138.555 82 136.907Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M82 101.291C82 99.4735 83.6008 98 85.5754 98H212.26C214.235 98 215.836 99.4735 215.836 101.291C215.836 103.109 214.235 104.582 212.26 104.582H85.5754C83.6008 104.582 82 103.109 82 101.291Z" fill="#B6B6B6"/> <path d="M82 158.269C82 157.094 82.9777 156.142 84.1837 156.142H137.958C139.164 156.142 140.142 157.094 140.142 158.269V171.566C140.142 172.741 139.164 173.694 137.958 173.694H84.1837C82.9777 173.694 82 172.741 82 171.566V158.269Z" fill="#B6B6B6"/> </svg>'}];var fA=Object(j.applyFilters)("uag_post_carousel_presets",yA);const hA=[{defaultAttributes:tt},{defaultPresetAttributes:[{label:"ctaBgHColor"},{label:"ctaColor"},{label:"ctaHColor"},{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidthDesktop"},{label:"btnBorderTopWidthDesktop"},{label:"btnBorderLeftWidthDesktop"},{label:"btnBorderRightWidthDesktop"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'}];var vA=Object(B.memo)(e=>{let{attributes:t}=e;const{titleFontFamily:a,titleFontWeight:l,titleLoadGoogleFonts:i,metaFontFamily:o,metaFontWeight:n,metaLoadGoogleFonts:r,excerptFontFamily:s,excerptFontWeight:c,excerptLoadGoogleFonts:u,ctaFontFamily:p,ctaFontWeight:b,ctaLoadGoogleFonts:d}=t;let g,m,y,f;if(!0===i){const e={google:{families:[a+(l?":"+l:"")]}};g=React.createElement(O,{config:e})}if(!0===r){const e={google:{families:[o+(n?":"+n:"")]}};m=React.createElement(O,{config:e})}if(!0===u){const e={google:{families:[s+(c?":"+c:"")]}};y=React.createElement(O,{config:e})}if(!0===d){const e={google:{families:[p+(b?":"+b:"")]}};f=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,g,m,y,f)}),_A=Object(B.memo)(e=>{const{state:t,inspectorControls:a,togglePreview:l}=e;return React.createElement(React.Fragment,null,a,React.createElement(ge.BlockControls,null,(()=>{const{isEditing:e}=t;return React.createElement(Le.ToolbarGroup,{controls:[{icon:"edit",title:Object(r.__)("Edit","ultimate-addons-for-gutenberg"),onClick:()=>l(),isActive:e}]})})()))});const TA=e=>{const{attributes:t,post:a}=e,l=t.titleTag,i=t.newTab?"_blank":"_self";return void 0===a.title?null:t.displayPostTitle?React.createElement(l,{className:"uagb-post__title uagb-post__text"},React.createElement("a",{href:a.link,target:i,rel:"noopener noreferrer"},Object(mA.decodeEntities)(a.title.rendered.trim()))):null},CA=e=>{const{post:t,attributes:a,categoriesList:l}=e,i=Object(Qh.getSettings)().formats.date,o=l,n=t.categories,r=[];if(void 0!==o&&void 0!==n)for(let e=0;e<o.length;e++)for(let t=0;t<n.length;t++)o[e].id===n[t]&&r.push(o[e].name);return React.createElement("div",{className:" uagb-post__text uagb-post-grid-byline"},a.displayPostAuthor&&void 0!==t.uagb_author_info&&React.createElement("span",{className:"uagb-post__author"},a.hideTaxonomyIcon&&React.createElement("span",{className:"dashicons-admin-users dashicons"}),React.createElement("a",{target:"_blank",href:t.uagb_author_info.author_link,rel:"noopener noreferrer"},t.uagb_author_info.display_name)),a.displayPostDate&&t.date_gmt&&React.createElement("time",{dateTime:Object(Qh.format)("c",t.date_gmt),className:"uagb-post__date"},a.hideTaxonomyIcon&&React.createElement("span",{className:"dashicons-calendar dashicons"}),Object(Qh.dateI18n)(i,t.date_gmt)),a.displayPostComment&&void 0!==t.uagb_comment_info&&React.createElement("span",{className:"uagb-post__comment"},a.hideTaxonomyIcon&&React.createElement("span",{className:"dashicons-admin-comments dashicons"}),t.uagb_comment_info),a.displayPostTaxonomy&&"withMeta"===a.displayPostTaxonomyAboveTitle&&0!==r.length&&React.createElement("span",{className:"uagb-post__taxonomy"},a.hideTaxonomyIcon&&React.createElement("span",{className:"dashicons-tag dashicons"}),React.createElement("div",{dangerouslySetInnerHTML:{__html:r.join(", ")}})))},SA=e=>{const{post:t,attributes:a}=e,l=a.newTab?"_blank":"_self";if(a.displayPostImage&&void 0!==t.uagb_featured_image_src&&a.imgSize&&t.uagb_featured_image_src[a.imgSize]||!0===a.displayPostImage&&"background"===a.imgPosition){const e=t.uagb_featured_image_src[a.imgSize];return React.createElement("div",{className:"uagb-post__image"},t.uagb_featured_image_src&&e&&e[0]&&React.createElement("a",{href:t.link,target:l,rel:"noopener noreferrer",className:Be()("post-grid"===a.blockName?"uagb-image-ratio-"+a.imageRatio:"")},React.createElement("img",{src:e[0],alt:Object(mA.decodeEntities)(t.title.rendered.trim())||Object(r.__)("(Untitled)","ultimate-addons-for-gutenberg")})))}return null},wA=e=>{const{post:t,categoriesList:a,attributes:l}=e,{taxStyle:i,displayPostTaxonomy:o,displayPostTaxonomyAboveTitle:n,hideTaxonomyIcon:r,taxDivider:s}=l,c=a,u=t.categories,p=[];if(void 0!==c&&void 0!==u)for(let e=0;e<c.length;e++)for(let t=0;t<u.length;t++)c[e].id===u[t]&&p.push(c[e].name);return React.createElement(React.Fragment,null,o&&"aboveTitle"===n&&0!==p.length&&React.createElement("div",{className:"uagb-post__text"},"default"===i&&React.createElement("span",{className:"uagb-post__taxonomy default"},r&&"aboveTitle"===n&&React.createElement("span",{className:"dashicons-tag dashicons"}),React.createElement("div",{dangerouslySetInnerHTML:{__html:p.join(s)}})),"highlighted"===i&&c.map(e=>u.map(t=>e.id===t&&React.createElement("span",{className:"uagb-post__taxonomy "+i},r&&"aboveTitle"===n&&React.createElement("span",{className:"dashicons-tag dashicons"}),e.name)))))},kA=e=>{const{post:t,attributes:a}=e;if(null===t.uagb_excerpt)return null;const l=t.uagb_excerpt.split(" ");let i=t.uagb_excerpt;const o=Ps(a.excerptLength,"excerptLength",a.blockName);return o>=l.length?i=t.uagb_excerpt:(i=l.slice(0,o).join(" "),i+=" ..."),a.displayPostExcerpt&&"excerpt"===a.displayPostContentRadio?React.createElement("div",{className:"uagb-post__excerpt uagb-post__text"},React.createElement("div",{dangerouslySetInnerHTML:{__html:i}})):a.displayPostExcerpt&&"full_post"===a.displayPostContentRadio?React.createElement("div",{className:"uagb-post__excerpt uagb-full_post uagb-post__text"},React.createElement("div",{dangerouslySetInnerHTML:{__html:t.content.raw.trim()}})):null},PA=e=>{const{attributes:t,post:a,setAttributes:l}=e,i=t.newTab?"_blank":"_self",o=t.inheritFromThemeBtn&&"secondary"===t.buttonType,n=o?{borderWidth:"revert-layer"}:{},s="uagb-text-link "+(o?"ast-outline-button":"wp-block-button__link");return t.displayPostLink?React.createElement("div",{className:"uagb-post__text"},React.createElement("div",{className:Be()("uagb-post__cta","wp-block-button")},React.createElement(ge.RichText,{value:t.ctaText?t.ctaText:Object(r.__)("Read More","ultimate-addons-for-gutenberg"),onChange:e=>l({ctaText:e}),className:Be()(s),href:a.link,target:i,style:n,rel:"noopener noreferrer"}))):null};function xA(){return(xA=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const AA=Object(B.createContext)({parentName:"",parentClassName:"",isLoading:!1}),GA=e=>{let{parentName:t="",parentClassName:a="",children:l}=e;const i={parentName:t,parentClassName:a};return React.createElement(AA.Provider,{value:i},l)},MA=[["uagb/post-image"],["uagb/post-taxonomy"],["uagb/post-title"],["uagb/post-meta"],["uagb/post-excerpt"],["uagb/post-button"]],RA=(e,t,a,l,i,o,n,r)=>{if(!a)return;const s=LA(e);let c=[];const u=function(a,u){let[p,b={}]=a,d=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(1===d&&"uagb/post-image"===p)return;if(0===d&&"uagb/post-image"!==p)return;"not-installed"===b.children&&b.children.length>0&&(c=RA(e,t,b.children,l,i,o,n,r));const g=s[p];return g?React.createElement(B.Suspense,{key:u,fallback:React.createElement("div",{className:"wc-block-placeholder"})},React.createElement(g,xA({},b,{post:t,attributes:l,categoriesList:i,setAttributes:o}))):null},p=React.createElement(React.Fragment,null,a.map((e,t)=>{let[a,l={}]=e;return u([a,l],t,0)}),React.createElement("div",{className:"uag-post-grid-wrapper"},a.map((e,t)=>{let[a,l={}]=e;return u([a,l],t,1)}))),b=a.map((e,t)=>{let[a,l={}]=e;return u([a,l],t,null)});return r?p:b},BA={};function UA(e){e.context||(e.context="any"),OA(e,"context","string"),OA(e,"blockName","string"),EA(e,"component");const{context:t,blockName:a,component:l}=e;BA[t]||(BA[t]={}),BA[t][a]=l}const EA=(e,t)=>{if(e[t]){if("function"==typeof e[t])return;if(e[t].$$typeof&&e[t].$$typeof===Symbol.for("react.lazy"))return}throw new Error(`Incorrect value for the ${t} argument when registering a block component. Component must be a valid React Element or Lazy callback.`)},OA=(e,t,a)=>{const l=typeof e[t];if(l!==a)throw new Error(`Incorrect value for the ${t} argument when registering a block component. It was a ${l}, but must be a ${a}.`)};UA({blockName:"uagb/post-title",component:TA}),UA({blockName:"uagb/post-image",component:SA}),UA({blockName:"uagb/post-taxonomy",component:wA}),UA({blockName:"uagb/post-meta",component:CA}),UA({blockName:"uagb/post-excerpt",component:kA}),UA({blockName:"uagb/post-button",component:PA});const LA=e=>{return{..."object"==typeof BA[t=e]&&Object.keys(BA[t]).length>0?BA[t]:{},...BA.any};var t},HA=e=>e&&0!==e.length?e.map(e=>[e.name,{...e.attributes,post:void 0,children:e.innerBlocks.length>0?HA(e.innerBlocks):[]}]):[];function jA(){return(jA=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var FA,zA=Object(B.memo)((function(e){const t=e.name.replace("uagb/",""),a=Object(B.useRef)(),{attributes:l,className:i,latestPosts:o,block_id:n,setAttributes:r}=e,s=le(),{columns:c,tcolumns:u,mcolumns:p,imgPosition:b,postsToShow:d,autoplay:g,pauseOnHover:m,autoplaySpeed:y,transitionSpeed:f,infiniteLoop:h,arrowSize:v,arrowBorderSize:_,arrowBorderRadius:T,arrowColor:C,arrowDots:S,equalHeight:w,layoutConfig:k,rowGap:P}=l,x=Ps(d,"postsToShow",t),A=Ps(c,"columns",t),G=Ps(u,"tcolumns",t),M=Ps(p,"mcolumns",t),R=Ps(P,"rowGap",t),U=Ps(y,"autoplaySpeed",t),E=Ps(f,"transitionSpeed",t),O=Ps(v,"arrowSize",t),L=Ps(_,"arrowBorderSize",t),H=!0===l.displayPostImage?"uagb-post__image-enabled":"uagb-post__image-disabled",j=()=>{setTimeout(()=>{if(null!=a&&a.current){var e,t;const l=null==a||null===(e=a.current)||void 0===e?void 0:e.offsetWidth,i=100-R/l*100,o=null==a||null===(t=a.current)||void 0===t?void 0:t.closest(".uagb-post__image-position-background");if(o){const e=null==o?void 0:o.getElementsByClassName("uagb-post__image");for(const t of e)t&&(t.style.width=i+"%",t.style.marginLeft=R/2+"px")}}},100)};Object(B.useEffect)(()=>{j()},[]),Object(B.useEffect)(()=>{j()},[e]),Object(B.useEffect)(()=>{j()},[a]),Object(B.useEffect)(()=>{j()},[b]);const F=o.length>x?o.slice(0,x):o;function z(){return React.createElement("button",{type:"button","data-role":"none",className:"slick-next slick-arrow","aria-label":"Next",tabIndex:"0",style:{borderColor:C,borderRadius:T,borderWidth:L}},se.carousel_right)}function D(){return React.createElement("button",{type:"button","data-role":"none",className:"slick-prev slick-arrow","aria-label":"Previous",tabIndex:"0",style:{borderColor:C,borderRadius:T,borderWidth:L}},se.carousel_left)}const N="dots"===S||"arrows_dots"===S,I="arrows"===S||"arrows_dots"===S,V=w?"uagb-post__carousel_equal-height":"";let W;switch(s){case"Tablet":W=G;break;case"Mobile":W=M;break;default:W=A}const q={slidesToShow:W,slidesToScroll:1,autoplaySpeed:U,autoplay:g,infinite:h,pauseOnHover:m,speed:E,arrows:I,dots:N,rtl:!1,afterChange:()=>{w&&uagb_carousel_height(n)},nextArrow:React.createElement(z,{arrowSize:O}),prevArrow:React.createElement(D,{arrowSize:O})},Z=F.map((t,l)=>React.createElement("article",{ref:a,key:l,className:"uagb-post__inner-wrap"},RA("uagb/post-carousel",t,k,e.attributes,e.categoriesList,r)));return A>=F.length?React.createElement("div",{className:Be()("is-carousel","uagb-post__columns-"+A,"uagb-post__columns-tablet-"+G,"uagb-post__columns-mobile-"+M,"uagb-post__items",i,"uagb-post-grid","uagb-post__arrow-outside","uagb-post__image-position-"+b,""+V,H,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+n),"data-blog-id":n},React.createElement(GA,{parentName:"uagb/post-carousel",parentClassName:"uagb-block-grid"},Z)):React.createElement(zk.a,jA({className:Be()("is-carousel","uagb-post__columns-"+A,"uagb-post__items",i,"uagb-post-grid","uagb-post__arrow-outside","uagb-slick-carousel","uagb-post__image-position-"+b,""+V,H,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+n),"data-blog-id":n,style:"dots"===S?{padding:"0 0 35px 0"}:{}},q),Z)})),DA=a(135),NA=0,IA={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},VA={};VA.locals=DA.a.locals||{},VA.use=function(){return NA++||(FA=ke()(DA.a,IA)),VA},VA.unuse=function(){NA>0&&!--NA&&(FA(),FA=null)};var WA=VA,qA=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(WA.use(),()=>{WA.unuse()}),[]);const{state:t,setState:a,togglePreview:l,categoriesList:i,latestPosts:o,replaceInnerBlocks:n,block:s,clientId:c,attributes:u,deviceType:p,name:b,setAttributes:d,className:g}=e,m=React.createElement(zA,{attributes:u,className:g,latestPosts:o,block_id:u.block_id,categoriesList:i,deviceType:p,name:b,setAttributes:d});return React.createElement(React.Fragment,null,t.isEditing?(()=>{const e={template:u.layoutConfig,templateLock:!1,allowedBlocks:Object.keys(LA("uagb/post-grid"))};return 0!==u.layoutConfig.length&&(e.renderAppender=!1),React.createElement(Le.Placeholder,{label:"Post Carousel Layout"},React.createElement("div",{className:"uagb-post-grid uagb-block-all-post-grid-item-template"},React.createElement(Le.Tip,null,Object(r.__)("Edit the blocks inside the preview below to change the content displayed for each post within the post carousel.","ultimate-addons-for-gutenberg")),React.createElement(GA,{parentName:"uagb/post-grid",parentClassName:"uagb-block-grid"},React.createElement("article",{className:"uagb-post__inner-wrap uagb-post__edit-mode"},React.createElement("div",{className:"uagb-post__text"},React.createElement(ge.InnerBlocks,e)))),React.createElement("div",{className:"uagb-block-all-post__actions"},React.createElement(Le.Button,{className:"uagb-block-all-post__done-button",isPrimary:!0,onClick:()=>{d({layoutConfig:HA(s)}),a({innerBlocks:s}),l()}},Object(r.__)("Done","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__cancel-button",isTertiary:!0,onClick:()=>{const{innerBlocks:e}=t;n(c,e),l()}},Object(r.__)("Cancel","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__reset-button",onClick:()=>{const e=[];MA.map(t=>{let[a,l]=t;return e.push(Object(be.createBlock)(a,l)),!0}),n(c,e),a({innerBlocks:s})}},Object(r.__)("Reset Layout","ultimate-addons-for-gutenberg")))))})():m)});function ZA(){return(ZA=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var $A=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{align:l,displayPostTitle:i,displayPostDate:o,displayPostComment:s,displayPostExcerpt:c,displayPostAuthor:u,displayPostImage:p,displayPostTaxonomy:b,imgSize:d,imgPosition:g,displayPostLink:m,newTab:y,ctaText:f,columns:h,tcolumns:v,mcolumns:_,rowGap:T,rowGapTablet:C,rowGapMobile:S,bgType:k,bgColor:P,titleColor:x,titleTag:A,titleFontSize:G,titleFontSizeType:M,titleFontSizeMobile:R,titleFontSizeTablet:U,titleFontFamily:E,titleFontWeight:O,titleFontStyle:L,titleLineHeightType:H,titleLineHeight:j,titleLineHeightTablet:F,titleLineHeightMobile:z,titleLoadGoogleFonts:D,metaFontSize:N,metaFontSizeType:I,metaFontSizeMobile:V,metaFontSizeTablet:W,metaFontFamily:q,metaFontWeight:Z,metaFontStyle:$,metaLineHeightType:Y,metaLineHeight:K,metaLineHeightTablet:J,metaLineHeightMobile:X,metaLoadGoogleFonts:Q,excerptFontSize:ee,excerptFontSizeType:te,excerptFontSizeTablet:ae,excerptFontSizeMobile:le,excerptFontFamily:ie,excerptFontWeight:oe,excerptFontStyle:ne,excerptLineHeightType:re,excerptLineHeight:se,excerptLineHeightTablet:ce,excerptLineHeightMobile:ue,excerptLoadGoogleFonts:pe,ctaFontSize:be,ctaFontSizeType:de,ctaFontSizeTablet:ye,ctaFontSizeMobile:fe,ctaFontFamily:ve,ctaFontWeight:_e,ctaFontStyle:Te,ctaLineHeightType:Se,ctaLineHeight:we,ctaLineHeightTablet:ke,ctaLineHeightMobile:Pe,ctaLoadGoogleFonts:xe,metaColor:Ae,excerptColor:Ge,ctaColor:Me,ctaBgType:Re,ctaBgHType:Be,ctaBgColor:Ue,ctaHColor:Oe,ctaBgHColor:He,imageBottomSpace:je,imageBottomSpaceTablet:ze,imageBottomSpaceMobile:De,taxonomyBottomSpace:Ne,taxonomyBottomSpaceTablet:Ie,taxonomyBottomSpaceMobile:Ve,titleBottomSpace:We,titleBottomSpaceTablet:qe,titleBottomSpaceMobile:Ze,metaBottomSpace:$e,metaBottomSpaceTablet:Ye,metaBottomSpaceMobile:Ke,excerptBottomSpace:Je,excerptBottomSpaceTablet:Xe,excerptBottomSpaceMobile:Qe,ctaBottomSpace:et,ctaBottomSpaceTablet:tt,ctaBottomSpaceMobile:at,autoplay:lt,autoplaySpeed:it,pauseOnHover:ot,infiniteLoop:nt,transitionSpeed:rt,arrowDots:st,arrowSize:ct,arrowColor:ut,arrowBorderSize:pt,arrowBorderRadius:bt,arrowDistance:dt,arrowDistanceTablet:gt,arrowDistanceMobile:mt,excerptLength:yt,overlayOpacity:ft,bgOverlayColor:ht,linkBox:vt,postDisplaytext:_t,displayPostContentRadio:Tt,titleTransform:Ct,metaTransform:St,excerptTransform:wt,ctaTransform:kt,titleDecoration:Pt,metaDecoration:xt,excerptDecoration:At,ctaDecoration:Gt,paddingBtnTopTablet:Mt,paddingBtnRightTablet:Rt,paddingBtnBottomTablet:Bt,paddingBtnLeftTablet:Ut,paddingBtnTopMobile:Et,paddingBtnRightMobile:Ot,paddingBtnBottomMobile:Lt,paddingBtnLeftMobile:Ht,paddingBtnUnit:jt,mobilePaddingBtnUnit:Ft,tabletPaddingBtnUnit:zt,spacingLink:Dt,spacingLinkPadding:Nt,contentPaddingUnit:It,mobilePaddingUnit:Vt,tabletPaddingUnit:Wt,imageBottomSpaceUnit:qt,titleBottomSpaceUnit:Zt,taxonomyBottomSpaceUnit:$t,metaBottomSpaceUnit:Yt,ctaBottomSpaceUnit:Kt,excerptBottomSpaceUnit:Jt,rowGapUnit:Xt,taxStyle:Qt,taxDivider:ea,displayPostTaxonomyAboveTitle:ta,hideTaxonomyIcon:aa,highlightedTextColor:la,highlightedTextBgColor:ia,titleLetterSpacing:oa,titleLetterSpacingTablet:na,titleLetterSpacingMobile:ra,titleLetterSpacingType:sa,metaLetterSpacing:ca,metaLetterSpacingTablet:ua,metaLetterSpacingMobile:pa,metaLetterSpacingType:ba,excerptLetterSpacing:da,excerptLetterSpacingTablet:ga,excerptLetterSpacingMobile:ma,excerptLetterSpacingType:ya,ctaLetterSpacing:fa,ctaLetterSpacingTablet:ha,ctaLetterSpacingMobile:va,ctaLetterSpacingType:_a,enableOffset:Ta,dotsMarginTop:Ca,dotsMarginTopTablet:Sa,dotsMarginTopMobile:wa,dotsMarginTopUnit:ka,btnVPadding:Pa,btnHPadding:xa,paddingBtnTop:Aa,paddingBtnBottom:Ga,paddingBtnRight:Ma,paddingBtnLeft:Ra,contentPadding:Ba,contentPaddingMobile:Ua,contentPaddingTablet:Ea,paddingTop:Oa,paddingBottom:La,paddingLeft:Ha,paddingRight:ja,paddingTopTablet:Fa,paddingRightTablet:za,paddingBottomTablet:Da,paddingLeftTablet:Ia,paddingTopMobile:Va,paddingRightMobile:Wa,paddingBottomMobile:qa,paddingLeftMobile:Za,columnGap:$a,columnGapTablet:Ya,columnGapMobile:Ka,borderStyle:Ja,borderWidth:Xa,borderRadius:el,borderColor:al,borderHColor:ll,btnBorderTopWidth:sl,btnBorderLeftWidth:cl,btnBorderRightWidth:ul,btnBorderBottomWidth:pl,btnBorderTopLeftRadius:bl,btnBorderTopRightRadius:dl,btnBorderBottomLeftRadius:gl,btnBorderBottomRightRadius:ml,btnBorderColor:yl,btnBorderHColor:fl,btnBorderStyle:vl,blockName:_l,categories:Tl,postsToShow:Cl,postsOffset:Sl,order:wl,orderBy:kl,postType:xl,taxonomyType:Al,excludeCurrentPost:Gl,allTaxonomyStore:Ml,UAGHideDesktop:Rl,UAGHideTab:Bl,UAGHideMob:Ul,equalHeight:El,block_id:Ol,inheritFromThemeBtn:Ll,buttonType:Hl},setAttributes:jl,deviceType:Fl,clientId:zl}=e,[Dl,Nl]=Object(B.useState)({isEditing:!1,innerBlocks:[]}),[Il,Vl]=Object(B.useState)(!1);Object(B.useEffect)(()=>{const{block:t}=e;Nl({innerBlocks:t}),Pa&&(void 0===Aa&&jl({paddingBtnTop:Pa}),void 0===Ga&&jl({paddingBtnBottom:Pa})),xa&&(void 0===Ma&&jl({paddingBtnRight:xa}),void 0===Ra&&jl({paddingBtnLeft:xa})),Ba&&(void 0===Oa&&jl({paddingTop:Ba}),void 0===La&&jl({paddingBottom:Ba}),void 0===ja&&jl({paddingRight:Ba}),void 0===Ha&&jl({paddingLeft:Ba})),Ea&&(void 0===Fa&&jl({paddingTopTablet:Ea}),void 0===Da&&jl({paddingBottomTablet:Ea}),void 0===za&&jl({paddingRightTablet:Ea}),void 0===Ia&&jl({paddingLeftTablet:Ea})),Ua&&(void 0===Va&&jl({paddingTopMobile:Ua}),void 0===qa&&jl({paddingBottomMobile:Ua}),void 0===Wa&&jl({paddingRightMobile:Ua}),void 0===Za&&jl({paddingLeftMobile:Ua})),Xa&&(void 0===sl&&jl({btnBorderTopWidth:Xa}),void 0===cl&&jl({btnBorderLeftWidth:Xa}),void 0===ul&&jl({btnBorderRightWidth:Xa}),void 0===pl&&jl({btnBorderBottomWidth:Xa})),el&&(void 0===bl&&jl({btnBorderTopLeftRadius:el}),void 0===dl&&jl({btnBorderTopRightRadius:el}),void 0===gl&&jl({btnBorderBottomLeftRadius:el}),void 0===ml&&jl({btnBorderBottomRightRadius:el})),al&&void 0===yl&&jl({btnBorderColor:al}),ll&&void 0===fl&&jl({btnBorderHColor:ll}),Ja&&void 0===vl&&jl({btnBorderStyle:Ja}),$a&&20!==$a&&jl({dotsMarginTop:$a}),Ya&&jl({dotsMarginTopTablet:Ya}),Ka&&jl({dotsMarginTopMobile:Ka})},[]),Object(B.useEffect)(()=>{El?uagb_carousel_height(Ol):uagb_carousel_unset_height(Ol)},[a,Fl]);const Wl=uagb_blocks_info.current_theme,ql=uagb_blocks_info.is_astra_based_theme;let Zl=Object(B.useMemo)(()=>gA(a,0,Fl),[a,Fl]);Zl+=".uagb-block-"+Ol+".uagb-post-grid ul.slick-dots li.slick-active button:before, .uagb-block-"+Ol+".uagb-slick-carousel ul.slick-dots li button:before { color: "+a.arrowColor+"; }",Object(B.useEffect)(()=>{Bs()},[Fl]),Object(B.useEffect)(()=>{he(e)},[Rl,Bl,Ul,Fl]);let $l=[];const{latestPosts:Yl,taxonomyList:Kl,block:Jl}=Object(n.useSelect)(e=>{const{getEntityRecords:t}=e("core");Ml||Il||(Vl(!0),w()({path:"/spectra/v1/all_taxonomy"}).then(e=>{jl({allTaxonomyStore:e}),Vl(!1)}));const a=Ml?Ml[xl]:void 0;let l="";void 0!==a&&(void 0!==a.taxonomy[Al]&&(l=!1===a.taxonomy[Al].rest_base||null===a.taxonomy[Al].rest_base?a.taxonomy[Al].name:a.taxonomy[Al].rest_base),""!==Al&&void 0!==a.terms&&void 0!==a.terms[Al]&&($l=a.terms[Al]));const i={order:wl,orderby:kl,per_page:Ps(Cl,"postsToShow",_l),offset:Ps(Sl,"postsOffset",_l)};if(Gl){const t=e("core/editor");i.exclude=null!=t&&t.getCurrentPostId?t.getCurrentPostId():null}const o=[],n=parseInt(Tl);o.push(n);const r=$l.length;for(let e=0;e<r;e++)$l[e].id===n&&0!==$l[e].child.length&&$l[e].child.forEach(e=>{o.push(e)});const{getBlocks:s}=e("core/block-editor");return void 0!==Tl&&""!==Tl&&(i[l]=void 0===Tl||""===Tl?Tl:o),{latestPosts:t("postType",xl,i),categoriesList:$l,taxonomyList:void 0!==a?a.taxonomy:[],block:s(zl)}}),{replaceInnerBlocks:Xl}=Object(n.useDispatch)("core/block-editor"),Ql=Ps(h,"columns",_l),ei=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],ti=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],ai=[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}];Kl&&Object.keys(Kl).map(e=>ei.push({value:Kl[e].name,label:Object(mA.decodeEntities)(Kl[e].label)})),$l&&Object.keys($l).map(e=>ti.push({value:$l[e].id,label:Object(mA.decodeEntities)($l[e].name)}));const li=()=>{Nl({isEditing:!Dl.isEditing}),Dl.isEditing||Object(r.__)("Showing All Post Grid Layout.","ultimate-addons-for-gutenberg")},ii=Array.isArray(Yl)&&Yl.length,oi=React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:l,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Pi,{label:Object(r.__)("Post Type","ultimate-addons-for-gutenberg"),data:{value:xl},onChange:e=>{jl({postType:e}),jl({categories:""}),jl({taxonomyType:"category"})},options:uagb_blocks_info.post_types}),""!==Kl&&React.createElement(Pi,{label:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),data:{value:Al},onChange:e=>{jl({taxonomyType:e}),jl({categories:""})},options:ei}),""!=$l&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Kl[Al].label,data:{value:Tl,label:"categories"},setAttributes:jl,options:ti})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Exclude Current Post","ultimate-addons-for-gutenberg"),checked:Gl,onChange:()=>jl({excludeCurrentPost:!Gl})}),React.createElement(bc,{label:Object(r.__)("Posts Per Page","ultimate-addons-for-gutenberg"),setAttributes:jl,value:Cl,data:{value:Cl,label:"postsToShow"},min:1,max:100,displayUnit:!1,showControlHeader:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Offset Starting Post","ultimate-addons-for-gutenberg"),checked:Ta,onChange:e=>{jl({enableOffset:e})},help:React.createElement(React.Fragment,null,!Ta&&Object(r.__)("Note: The offset will skip the number of posts set, and will use the next post as the starting post.","ultimate-addons-for-gutenberg"))}),Ta&&React.createElement(bc,{label:Object(r.__)("Offset By","ultimate-addons-for-gutenberg"),setAttributes:jl,value:Sl,data:{value:Sl,label:"postsOffset"},min:0,max:100,displayUnit:!1,help:React.createElement(React.Fragment,null,Ta&&Object(r.__)("Note: The offset will skip the number of posts set, and will use the next post as the starting post.","ultimate-addons-for-gutenberg"))}),React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Order By","ultimate-addons-for-gutenberg"),data:{value:kl,label:"orderBy"},options:[{value:"date",label:Object(r.__)("Date","ultimate-addons-for-gutenberg")},{value:"title",label:Object(r.__)("Title","ultimate-addons-for-gutenberg")},{value:"rand",label:Object(r.__)("Random","ultimate-addons-for-gutenberg")},{value:"menu_order",label:Object(r.__)("Menu Order","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Order","ultimate-addons-for-gutenberg"),data:{value:wl,label:"order"},options:[{value:"desc",label:Object(r.__)("Descending","ultimate-addons-for-gutenberg")},{value:"asc",label:Object(r.__)("Ascending","ultimate-addons-for-gutenberg")}]}),React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:h,label:"columns"},tablet:{value:v,label:"tcolumns"},mobile:{value:_,label:"mcolumns"}},min:1,max:8,displayUnit:!1,setAttributes:jl}),Ql>1&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:El,onChange:()=>jl({equalHeight:!El}),help:Object(r.__)("Note: Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")}),React.createElement("h2",null,Object(r.__)("If Posts Not Found","ultimate-addons-for-gutenberg")),React.createElement(Fs,{autoComplete:"off",label:Object(r.__)("Display Message","ultimate-addons-for-gutenberg"),value:_t,data:{value:_t,label:"postDisplaytext"},setAttributes:jl,onChange:e=>jl({postDisplaytext:e})})),React.createElement(Fe,{title:Object(r.__)("Carousel","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Pause On Hover","ultimate-addons-for-gutenberg"),checked:ot,onChange:()=>jl({pauseOnHover:!ot})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Autoplay","ultimate-addons-for-gutenberg"),checked:lt,onChange:()=>jl({autoplay:!lt})}),!0===lt&&React.createElement(Qa,{label:Object(r.__)("Autoplay Speed (ms)","ultimate-addons-for-gutenberg"),value:it,data:{value:it,label:"autoplaySpeed"},setAttributes:jl,displayUnit:!1,min:100,max:5e3}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Infinite Loop","ultimate-addons-for-gutenberg"),checked:nt,onChange:()=>jl({infiniteLoop:!nt})}),React.createElement(Qa,{label:Object(r.__)("Transition Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:jl,displayUnit:!1,value:rt,data:{value:rt,label:"transitionSpeed"},min:100,max:5e3}),React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Arrows & Dots Type","ultimate-addons-for-gutenberg"),data:{value:st,label:"arrowDots"},options:[{value:"arrows",label:Object(r.__)("Arrows","ultimate-addons-for-gutenberg")},{value:"dots",label:Object(r.__)("Dots","ultimate-addons-for-gutenberg")},{value:"arrows_dots",label:Object(r.__)("Both","ultimate-addons-for-gutenberg")}]})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Featured Image","ultimate-addons-for-gutenberg"),checked:p,onChange:()=>jl({displayPostImage:!p})}),!0===p&&React.createElement(Pi,{label:Object(r.__)("Sizes","ultimate-addons-for-gutenberg"),data:{value:d,label:"imgSize"},setAttributes:jl,options:uagb_blocks_info.image_sizes}),!0===p&&React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:g,label:"imgPosition"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"background",label:Object(r.__)("Background","ultimate-addons-for-gutenberg")}]}),!0===p&&"background"===g&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Link Complete Box","ultimate-addons-for-gutenberg"),checked:vt,onChange:()=>jl({linkBox:!vt})})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Title","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>jl({displayPostTitle:!i})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Author","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>jl({displayPostAuthor:!u})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Date","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>jl({displayPostDate:!o})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Comment","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>jl({displayPostComment:!s})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Taxonomy","ultimate-addons-for-gutenberg"),checked:b,onChange:()=>jl({displayPostTaxonomy:!b})}),b&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Taxonomy Position","ultimate-addons-for-gutenberg"),data:{value:ta,label:"displayPostTaxonomyAboveTitle"},options:[{value:"withMeta",label:Object(r.__)("With Meta","ultimate-addons-for-gutenberg")},{value:"aboveTitle",label:Object(r.__)("Above Title","ultimate-addons-for-gutenberg")}]}),"aboveTitle"===ta&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Taxonomy Style","ultimate-addons-for-gutenberg"),data:{value:Qt,label:"taxStyle"},options:[{value:"default",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"highlighted",label:Object(r.__)("Highlighted","ultimate-addons-for-gutenberg")}]}),"default"===Qt&&React.createElement(Fs,{label:Object(r.__)("Taxonomy Divider","ultimate-addons-for-gutenberg"),value:ea,data:{value:ea,label:"taxDivider"},setAttributes:jl,onChange:e=>jl({taxDivider:e})}))),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Meta Icon","ultimate-addons-for-gutenberg"),checked:aa,onChange:()=>jl({hideTaxonomyIcon:!aa})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Excerpt","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>jl({displayPostExcerpt:!c})}),c&&React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Show:","ultimate-addons-for-gutenberg"),data:{value:Tt,label:"displayPostContentRadio"},options:[{label:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg"),value:"excerpt"},{label:Object(r.__)("Full post","ultimate-addons-for-gutenberg"),value:"full_post"}]}),c&&"excerpt"===Tt&&React.createElement(Qa,{label:Object(r.__)("Max number of words in excerpt","ultimate-addons-for-gutenberg"),setAttributes:jl,value:yt,data:{value:yt,label:"excerptLength"},min:1,max:100,displayUnit:!1})),React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Read More Link","ultimate-addons-for-gutenberg"),checked:m,onChange:()=>jl({displayPostLink:!m})}),m&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:Ll,onChange:()=>jl({inheritFromThemeBtn:!Ll}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ll&&("Astra"===Wl||ql)&&React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Hl,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open Links in New Tab","ultimate-addons-for-gutenberg"),checked:y,onChange:()=>jl({newTab:!y})}),React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:f,data:{value:f,label:"ctaText"},setAttributes:jl,onChange:e=>jl({ctaText:e})}),!Ll&&React.createElement(zr,{setAttributes:jl,presets:hA,presetInputType:"radioImage"}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:jl,presets:fA,presetInputType:"radioImage"})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Post Blocks to the next level with the Loop Builder","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("More customizability","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Blocks inside the Post Items","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Include and Exclude option for Taxonomy/Posts/Authors","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Show sticky posts","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Multiple Layouts","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"post-carousel"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),value:k,data:{value:k,label:"bgType"},className:"uagb-multi-button-alignment-control",options:ai}),"color"===k&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:P,data:{value:P,label:"bgColor"},setAttributes:jl}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:T,label:"rowGap"},tablet:{value:C,label:"rowGapTablet"},mobile:{value:S,label:"rowGapMobile"}},min:0,max:50,unit:{value:Xt,label:"rowGapUnit"},setAttributes:jl}),React.createElement(Pl,ZA({},e,{label:Object(r.__)("Content Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Oa,label:"paddingTop"},valueRight:{value:ja,label:"paddingRight"},valueBottom:{value:La,label:"paddingBottom"},valueLeft:{value:Ha,label:"paddingLeft"},valueTopTablet:{value:Fa,label:"paddingTopTablet"},valueRightTablet:{value:za,label:"paddingRightTablet"},valueBottomTablet:{value:Da,label:"paddingBottomTablet"},valueLeftTablet:{value:Ia,label:"paddingLeftTablet"},valueTopMobile:{value:Va,label:"paddingTopMobile"},valueRightMobile:{value:Wa,label:"paddingRightMobile"},valueBottomMobile:{value:qa,label:"paddingBottomMobile"},valueLeftMobile:{value:Za,label:"paddingLeftMobile"},unit:{value:It,label:"contentPaddingUnit"},mUnit:{value:Vt,label:"mobilePaddingUnit"},tUnit:{value:Wt,label:"tabletPaddingUnit"},deviceType:Fl,attributes:a,setAttributes:jl,link:{value:Nt,label:"spacingLinkPadding"}}))),"aboveTitle"===ta&&React.createElement(Fe,{title:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),initialOpen:!1},"aboveTitle"===ta&&"highlighted"===Qt&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Taxonomy Text Color","ultimate-addons-for-gutenberg"),colorValue:la,data:{value:la,label:"highlightedTextColor"},setAttributes:jl}),React.createElement(hl,{label:Object(r.__)("Highlighted Color","ultimate-addons-for-gutenberg"),colorValue:ia,data:{value:ia,label:"highlightedTextBgColor"},setAttributes:jl})),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ne,label:"taxonomyBottomSpace"},tablet:{value:Ie,label:"taxonomyBottomSpaceTablet"},mobile:{value:Ve,label:"taxonomyBottomSpaceMobile"}},min:0,max:50,unit:{value:$t,label:"taxonomyBottomSpaceUnit"},setAttributes:jl})),i&&React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:jl,label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:A,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:x,data:{value:x,label:"titleColor"},setAttributes:jl}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:jl,loadGoogleFonts:{value:D,label:"titleLoadGoogleFonts"},fontFamily:{value:E,label:"titleFontFamily"},fontWeight:{value:O,label:"titleFontWeight"},fontStyle:{value:L,label:"titleFontStyle"},fontSizeType:{value:M,label:"titleFontSizeType"},fontSize:{value:G,label:"titleFontSize"},fontSizeMobile:{value:R,label:"titleFontSizeMobile"},fontSizeTablet:{value:U,label:"titleFontSizeTablet"},lineHeightType:{value:H,label:"titleLineHeightType"},lineHeight:{value:j,label:"titleLineHeight"},lineHeightMobile:{value:z,label:"titleLineHeightMobile"},lineHeightTablet:{value:F,label:"titleLineHeightTablet"},letterSpacing:{value:oa,label:"titleLetterSpacing"},letterSpacingTablet:{value:na,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:ra,label:"titleLetterSpacingMobile"},letterSpacingType:{value:sa,label:"titleLetterSpacingType"},transform:{value:Ct,label:"titleTransform"},decoration:{value:Pt,label:"titleDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:We,label:"titleBottomSpace"},tablet:{value:qe,label:"titleBottomSpaceTablet"},mobile:{value:Ze,label:"titleBottomSpaceMobile"}},min:0,max:50,unit:{value:Zt,label:"titleBottomSpaceUnit"},setAttributes:jl})),(u||o||s||b)&&React.createElement(Fe,{title:Object(r.__)("Meta","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ae,data:{value:Ae,label:"metaColor"},setAttributes:jl}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:jl,loadGoogleFonts:{value:Q,label:"metaLoadGoogleFonts"},fontFamily:{value:q,label:"metaFontFamily"},fontWeight:{value:Z,label:"metaFontWeight"},fontStyle:{value:$,label:"metaFontStyle"},fontSizeType:{value:I,label:"metaFontSizeType"},fontSize:{value:N,label:"metaFontSize"},fontSizeMobile:{value:V,label:"metaFontSizeMobile"},fontSizeTablet:{value:W,label:"metaFontSizeTablet"},lineHeightType:{value:Y,label:"metaLineHeightType"},lineHeight:{value:K,label:"metaLineHeight"},lineHeightMobile:{value:X,label:"metaLineHeightMobile"},lineHeightTablet:{value:J,label:"metaLineHeightTablet"},letterSpacing:{value:ca,label:"metaLetterSpacing"},letterSpacingTablet:{value:ua,label:"metaLetterSpacingTablet"},letterSpacingMobile:{value:pa,label:"metaLetterSpacingMobile"},letterSpacingType:{value:ba,label:"metaLetterSpacingType"},transform:{value:St,label:"metaTransform"},decoration:{value:xt,label:"metaDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:$e,label:"metaBottomSpace"},tablet:{value:Ye,label:"metaBottomSpaceTablet"},mobile:{value:Ke,label:"metaBottomSpaceMobile"}},min:0,max:50,unit:{value:Yt,label:"metaBottomSpaceUnit"},setAttributes:jl})),c&&React.createElement(Fe,{title:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ge,data:{value:Ge,label:"excerptColor"},setAttributes:jl}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:jl,loadGoogleFonts:{value:pe,label:"excerptLoadGoogleFonts"},fontFamily:{value:ie,label:"excerptFontFamily"},fontWeight:{value:oe,label:"excerptFontWeight"},fontStyle:{value:ne,label:"excerptFontStyle"},fontSizeType:{value:te,label:"excerptFontSizeType"},fontSize:{value:ee,label:"excerptFontSize"},fontSizeMobile:{value:le,label:"excerptFontSizeMobile"},fontSizeTablet:{value:ae,label:"excerptFontSizeTablet"},lineHeightType:{value:re,label:"excerptLineHeightType"},lineHeight:{value:se,label:"excerptLineHeight"},lineHeightMobile:{value:ue,label:"excerptLineHeightMobile"},lineHeightTablet:{value:ce,label:"excerptLineHeightTablet"},letterSpacing:{value:da,label:"excerptLetterSpacing"},letterSpacingTablet:{value:ga,label:"excerptLetterSpacingTablet"},letterSpacingMobile:{value:ma,label:"excerptLetterSpacingMobile"},letterSpacingType:{value:ya,label:"excerptLetterSpacingType"},transform:{value:wt,label:"excerptTransform"},decoration:{value:At,label:"excerptDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Je,label:"excerptBottomSpace"},tablet:{value:Xe,label:"excerptBottomSpaceTablet"},mobile:{value:Qe,label:"excerptBottomSpaceMobile"}},min:0,max:50,unit:{value:Jt,label:"excerptBottomSpaceUnit"},setAttributes:jl})),m&&React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},!Ll&&React.createElement(React.Fragment,null,React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Me,data:{value:Me,label:"ctaColor"},setAttributes:jl}),React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Re,label:"ctaBgType"},className:"uagb-multi-button-alignment-control",options:ai}),"color"===Re&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ue,data:{value:Ue,label:"ctaBgColor"},setAttributes:jl})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Oe,data:{value:Oe,label:"ctaHColor"},setAttributes:jl}),React.createElement(Na,{setAttributes:jl,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Be,label:"ctaBgHType"},className:"uagb-multi-button-alignment-control",options:ai}),"color"===Be&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:He,data:{value:He,label:"ctaBgHColor"},setAttributes:jl})),disableBottomSeparator:!1}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:jl,loadGoogleFonts:{value:xe,label:"ctaLoadGoogleFonts"},fontFamily:{value:ve,label:"ctaFontFamily"},fontWeight:{value:_e,label:"ctaFontWeight"},fontStyle:{value:Te,label:"ctaFontStyle"},fontSizeType:{value:de,label:"ctaFontSizeType"},fontSize:{value:be,label:"ctaFontSize"},fontSizeMobile:{value:fe,label:"ctaFontSizeMobile"},fontSizeTablet:{value:ye,label:"ctaFontSizeTablet"},lineHeightType:{value:Se,label:"ctaLineHeightType"},lineHeight:{value:we,label:"ctaLineHeight"},lineHeightMobile:{value:Pe,label:"ctaLineHeightMobile"},lineHeightTablet:{value:ke,label:"ctaLineHeightTablet"},letterSpacing:{value:fa,label:"ctaLetterSpacing"},letterSpacingTablet:{value:ha,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:va,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:_a,label:"ctaLetterSpacingType"},transform:{value:kt,label:"ctaTransform"},decoration:{value:Gt,label:"ctaDecoration"}}),React.createElement(Hi,{setAttributes:jl,prefix:"btn",attributes:a,deviceType:Fl,disabledBorderTitle:!1}),React.createElement(Pl,ZA({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Aa,label:"paddingBtnTop"},valueRight:{value:Ma,label:"paddingBtnRight"},valueBottom:{value:Ga,label:"paddingBtnBottom"},valueLeft:{value:Ra,label:"paddingBtnLeft"},valueTopTablet:{value:Mt,label:"paddingBtnTopTablet"},valueRightTablet:{value:Rt,label:"paddingBtnRightTablet"},valueBottomTablet:{value:Bt,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:Ut,label:"paddingBtnLeftTablet"},valueTopMobile:{value:Et,label:"paddingBtnTopMobile"},valueRightMobile:{value:Ot,label:"paddingBtnRightMobile"},valueBottomMobile:{value:Lt,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:Ht,label:"paddingBtnLeftMobile"},unit:{value:jt,label:"paddingBtnUnit"},mUnit:{value:Ft,label:"mobilePaddingBtnUnit"},tUnit:{value:zt,label:"tabletPaddingBtnUnit"},deviceType:Fl,attributes:a,setAttributes:jl,link:{value:Dt,label:"spacingLink"}}))),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:et,label:"ctaBottomSpace"},tablet:{value:tt,label:"ctaBottomSpaceTablet"},mobile:{value:at,label:"ctaBottomSpaceMobile"}},min:0,max:300,unit:{value:Kt,label:"ctaBottomSpaceUnit"},setAttributes:jl})),p&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},"background"===g&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Overlay Color","ultimate-addons-for-gutenberg"),colorValue:ht,data:{value:ht,label:"bgOverlayColor"},setAttributes:jl}),React.createElement(Qa,{label:Object(r.__)("Overlay Opacity","ultimate-addons-for-gutenberg"),setAttributes:jl,value:ft,data:{value:ft,label:"overlayOpacity"},min:0,max:100,displayUnit:!1})),"top"===g&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:je,label:"imageBottomSpace"},tablet:{value:ze,label:"imageBottomSpaceTablet"},mobile:{value:De,label:"imageBottomSpaceMobile"}},min:0,max:50,unit:{value:qt,label:"imageBottomSpaceUnit"},setAttributes:jl})),React.createElement(Fe,{title:Object(r.__)("Arrow and Dots","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ut,data:{value:ut,label:"arrowColor"},setAttributes:jl}),"dots"!==st&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),value:ct,data:{value:ct,label:"arrowSize"},min:0,max:50,setAttributes:jl,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Border Size","ultimate-addons-for-gutenberg"),value:pt,data:{value:pt,label:"arrowBorderSize"},min:0,max:50,setAttributes:jl,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),setAttributes:jl,displayUnit:!1,value:bt,data:{value:bt,label:"arrowBorderRadius"},min:0,max:50}),React.createElement(tl,{label:Object(r.__)("Arrow Distance from Edges","ultimate-addons-for-gutenberg"),data:{desktop:{value:dt,label:"arrowDistance"},tablet:{value:gt,label:"arrowDistanceTablet"},mobile:{value:mt,label:"arrowDistanceMobile"}},min:-50,max:50,displayUnit:!1,setAttributes:jl}),React.createElement(tl,{label:Object(r.__)("Top Margin for Dots","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ca,label:"dotsMarginTop"},tablet:{value:Sa,label:"dotsMarginTopTablet"},mobile:{value:wa,label:"dotsMarginTopMobile"}},min:1,max:50,unit:{value:ka,label:"dotsMarginTopUnit"},setAttributes:jl})))),React.createElement(il,ZA({},rl,{parentProps:e}))));return ii?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:Zl}),React.createElement(vA,{attributes:a}),t&&React.createElement(_A,ZA({state:Dl,togglePreview:li,inspectorControls:oi},e)),React.createElement(qA,ZA({},e,{state:Dl,setState:Nl,togglePreview:li,latestPosts:Yl,categoriesList:$l,replaceInnerBlocks:Xl,block:Jl}))):React.createElement(React.Fragment,null,oi,React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Post Carousel","ultimate-addons-for-gutenberg")},Array.isArray(Yl)?_t:React.createElement(Le.Spinner,null)))});a(73);let YA={};YA=Object(j.applyFilters)("uagb/post-carousel",ws(YA)),Object(be.registerBlockType)("uagb/post-carousel",{...YA,title:Object(r.__)("Post Carousel","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your posts in a sliding carousel layout.","ultimate-addons-for-gutenberg"),icon:se.post_carousel,category:uagb_blocks_info.category,keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("carousel","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"post-carousel"}):React.createElement($A,e),save:()=>null});const KA=[{defaultAttributes:Qe},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],JA=[{defaultAttributes:Qe},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:15},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowPositionHover",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],XA=[{defaultAttributes:Qe},{defaultPresetAttributes:[{label:"ctaBgHColor"},{label:"ctaColor"},{label:"ctaHColor"},{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidthDesktop"},{label:"btnBorderTopWidthDesktop"},{label:"btnBorderLeftWidthDesktop"},{label:"btnBorderRightWidthDesktop"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'}];function QA(){return(QA=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var eG=Object(B.memo)(e=>{const{categoriesList:t,latestPosts:a,taxonomyList:l}=e,{attributes:i,setAttributes:o,deviceType:n}=e,{block_id:s,displayPostTitle:c,displayPostDate:u,displayPostComment:p,displayPostExcerpt:b,displayPostAuthor:d,displayPostImage:g,displayPostTaxonomy:m,imgSize:y,imgPosition:f,displayPostLink:h,newTab:v,ctaText:_,align:T,columns:C,tcolumns:S,mcolumns:w,order:k,orderBy:P,categories:x,postsToShow:A,rowGap:G,rowGapTablet:M,rowGapMobile:R,columnGap:B,columnGapTablet:U,columnGapMobile:E,bgColor:O,contentPaddingUnit:L,titleColor:H,titleTag:j,titleFontSize:F,titleFontSizeType:z,titleFontSizeMobile:D,titleFontSizeTablet:N,titleFontFamily:I,titleFontWeight:V,titleFontStyle:W,titleLineHeightType:q,titleLineHeight:Z,titleLineHeightTablet:$,titleLineHeightMobile:Y,titleLoadGoogleFonts:K,metaFontSize:J,metaFontSizeType:X,metaFontSizeMobile:Q,metaFontSizeTablet:ee,metaFontFamily:te,metaFontWeight:ae,metaFontStyle:le,metaLineHeightType:ie,metaLineHeight:oe,metaLineHeightTablet:ne,metaLineHeightMobile:re,metaLoadGoogleFonts:se,excerptFontSize:ce,excerptFontSizeType:ue,excerptFontSizeTablet:pe,excerptFontSizeMobile:be,excerptFontFamily:de,excerptFontWeight:me,excerptFontStyle:ye,excerptLineHeightType:fe,excerptLineHeight:he,excerptLineHeightTablet:ve,excerptLineHeightMobile:_e,excerptLoadGoogleFonts:Te,ctaFontSize:Se,ctaFontSizeType:we,ctaFontSizeTablet:ke,ctaFontSizeMobile:Pe,ctaFontFamily:xe,ctaFontWeight:Ae,ctaFontStyle:Ge,ctaLineHeightType:Me,ctaLineHeight:Re,ctaLineHeightTablet:Be,ctaLineHeightMobile:Ue,ctaLoadGoogleFonts:Oe,metaColor:He,excerptColor:je,ctaColor:ze,ctaBgType:De,ctaBgHType:Ne,ctaBgColor:Ie,ctaHColor:Ve,ctaBgHColor:We,imageBottomSpace:qe,imageBottomSpaceTablet:Ze,imageBottomSpaceMobile:$e,taxonomyBottomSpace:Ye,taxonomyBottomSpaceTablet:Ke,taxonomyBottomSpaceMobile:Je,taxonomyBottomSpaceUnit:Xe,titleBottomSpace:Qe,titleBottomSpaceTablet:et,titleBottomSpaceMobile:tt,metaBottomSpace:at,metaBottomSpaceTablet:lt,metaBottomSpaceMobile:it,excerptBottomSpace:ot,excerptBottomSpaceTablet:nt,excerptBottomSpaceMobile:rt,excerptBottomSpaceUnit:st,ctaBottomSpace:ct,ctaBottomSpaceTablet:ut,ctaBottomSpaceMobile:pt,equalHeight:bt,excerptLength:dt,overlayOpacity:gt,bgOverlayColor:mt,linkBox:yt,postType:ft,taxonomyType:ht,postPagination:vt,pageLimit:_t,paginationColor:Tt,paginationBgColor:Ct,paginationActiveColor:St,paginationBgActiveColor:wt,paginationLayout:kt,paginationBorderSize:Pt,paginationBorderRadius:xt,paginationBorderColor:At,paginationBorderActiveColor:Gt,paginationSpacing:Mt,paginationSpacingUnit:Rt,paginationAlignment:Bt,paginationPrevText:Ut,paginationNextText:Et,postDisplaytext:Ot,displayPostContentRadio:Lt,excludeCurrentPost:Ht,rowGapUnit:jt,columnGapUnit:Ft,imageBottomSpaceUnit:zt,titleBottomSpaceUnit:Dt,metaBottomSpaceUnit:Nt,ctaBottomSpaceUnit:It,titleTransform:Vt,metaTransform:Wt,excerptTransform:qt,ctaTransform:Zt,titleDecoration:$t,metaDecoration:Yt,excerptDecoration:Kt,ctaDecoration:Jt,paddingBtnTop:Xt,paddingBtnBottom:Qt,paddingBtnLeft:ea,paddingBtnRight:ta,paddingBtnTopTablet:aa,paddingBtnRightTablet:la,paddingBtnBottomTablet:ia,paddingBtnLeftTablet:oa,paddingBtnTopMobile:na,paddingBtnRightMobile:ra,paddingBtnBottomMobile:sa,paddingBtnLeftMobile:ca,paddingBtnUnit:ua,mobilePaddingBtnUnit:pa,tabletPaddingBtnUnit:ba,spacingLink:da,spacingLinkPadding:ga,paddingTop:ma,paddingBottom:ya,paddingLeft:fa,paddingRight:ha,paddingTopTablet:va,paddingRightTablet:_a,paddingBottomTablet:Ta,paddingLeftTablet:Ca,paddingTopMobile:Sa,paddingRightMobile:wa,paddingBottomMobile:ka,paddingLeftMobile:Pa,mobilePaddingUnit:xa,tabletPaddingUnit:Aa,postsOffset:Ga,taxStyle:Ma,taxDivider:Ra,displayPostTaxonomyAboveTitle:Ba,hideTaxonomyIcon:Ua,highlightedTextColor:Ea,highlightedTextBgColor:Oa,titleLetterSpacing:La,titleLetterSpacingTablet:Ha,titleLetterSpacingMobile:ja,titleLetterSpacingType:Fa,metaLetterSpacing:za,metaLetterSpacingTablet:Da,metaLetterSpacingMobile:Ia,metaLetterSpacingType:Va,excerptLetterSpacing:Wa,excerptLetterSpacingTablet:qa,excerptLetterSpacingMobile:Za,excerptLetterSpacingType:$a,ctaLetterSpacing:Ya,ctaLetterSpacingTablet:Ka,ctaLetterSpacingMobile:Ja,ctaLetterSpacingType:Xa,useSeparateBoxShadows:el,boxShadowColor:al,boxShadowHOffset:ll,boxShadowVOffset:sl,boxShadowBlur:cl,boxShadowSpread:ul,boxShadowPosition:pl,boxShadowColorHover:bl,boxShadowHOffsetHover:dl,boxShadowVOffsetHover:gl,boxShadowBlurHover:ml,boxShadowSpreadHover:yl,boxShadowPositionHover:fl,enableOffset:_l,equalHeightInlineButtons:Tl,imageRatio:Cl,imgEqualHeight:Sl,paginationType:wl,inheritFromThemeBtn:kl,buttonType:xl,wrapperTopPadding:Al,wrapperRightPadding:Gl,wrapperLeftPadding:Ml,wrapperBottomPadding:Rl,wrapperTopPaddingTablet:Bl,wrapperRightPaddingTablet:Ul,wrapperLeftPaddingTablet:El,wrapperBottomPaddingTablet:Ol,wrapperTopPaddingMobile:Ll,wrapperRightPaddingMobile:Hl,wrapperLeftPaddingMobile:jl,wrapperBottomPaddingMobile:Fl,wrapperPaddingUnit:zl,wrapperPaddingUnitTablet:Dl,wrapperPaddingUnitMobile:Nl,wrapperPaddingLink:Il,wrapperAlign:Vl,wrapperAlignPosition:Wl,isLeftToRightLayout:ql}=i,Zl=uagb_blocks_info.current_theme,$l=uagb_blocks_info.is_astra_based_theme,Yl=e=>{o({imgEqualHeight:e}),o(e?{imageRatio:"2-3"}:{imageRatio:"inherit"})},Kl=e=>{o({postType:e}),o({categories:""}),o({taxonomyType:"category"})},Jl=e=>{o({taxonomyType:e}),o({categories:""})},Xl=e=>{o({postPagination:e}),o({paginationMarkup:"empty"})},Ql=e=>{o({enableOffset:e}),o({postPagination:!e})},ei=e=>{o({postsToShow:e}),o({paginationMarkup:"empty"})},ti=e=>{o({postsOffset:e}),o({paginationMarkup:"empty"})},ai=e=>{o({pageLimit:e}),o({paginationMarkup:"empty"})},li=e=>{o({paginationPrevText:e}),o({paginationMarkup:"empty"})},ii=e=>{o({paginationNextText:e}),o({paginationMarkup:"empty"})},oi=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],ni=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],ri=[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}];l&&Object.keys(l).map(e=>oi.push({value:l[e].name,label:Object(mA.decodeEntities)(l[e].label)})),t&&Object.keys(t).map(e=>ni.push({value:t[e].id,label:Object(mA.decodeEntities)(t[e].name)}));const si=()=>React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:o,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:T,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Pi,{label:Object(r.__)("Post Type","ultimate-addons-for-gutenberg"),data:{value:ft},onChange:Kl,options:uagb_blocks_info.post_types}),""!==l&&React.createElement(Pi,{label:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),data:{value:ht},onChange:Jl,options:oi}),""!=t&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:l[ht].label,data:{value:x,label:"categories"},setAttributes:o,options:ni})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Exclude Current Post","ultimate-addons-for-gutenberg"),checked:Ht,onChange:()=>o({excludeCurrentPost:!Ht})}),React.createElement(bc,{label:Object(r.__)("Posts Per Page","ultimate-addons-for-gutenberg"),setAttributes:o,value:A,data:{value:A,label:"postsToShow"},onChange:ei,min:1,max:50,displayUnit:!1,showControlHeader:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Offset Starting Post","ultimate-addons-for-gutenberg"),checked:_l,onChange:Ql,help:React.createElement(React.Fragment,null,!_l&&React.createElement(React.Fragment,null,Object(r.__)("Note: Enabling this will disable the Pagination. Setting the offset parameter overrides/ignores the paged parameter and breaks pagination. ","ultimate-addons-for-gutenberg"),React.createElement(Le.ExternalLink,{href:"https://developer.wordpress.org/reference/classes/wp_query/#pagination-parameters:~:text=Warning%3A%20Setting%20the%20offset%20parameter%20overrides/ignores%20the%20paged%20parameter%20and%20breaks%20pagination.%20The%20%27offset%27%20parameter%20is%20ignored%20when%20%27posts_per_page%27%3D%3E%2D1%20(show%20all%20posts)%20is%20used."},Object(r.__)("Read more","ultimate-addons-for-gutenberg"))))}),_l&&React.createElement(bc,{label:Object(r.__)("Offset By","ultimate-addons-for-gutenberg"),setAttributes:o,value:Ga,data:{value:Ga,label:"postsOffset"},onChange:ti,min:0,max:50,displayUnit:!1,help:React.createElement(React.Fragment,null,_l&&Object(r.__)("Note: The offset will skip the number of posts set, and will use the next post as the starting post.","ultimate-addons-for-gutenberg"))}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Order By","ultimate-addons-for-gutenberg"),data:{value:P,label:"orderBy"},options:[{value:"date",label:Object(r.__)("Date","ultimate-addons-for-gutenberg")},{value:"title",label:Object(r.__)("Title","ultimate-addons-for-gutenberg")},{value:"rand",label:Object(r.__)("Random","ultimate-addons-for-gutenberg")},{value:"menu_order",label:Object(r.__)("Menu Order","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Order","ultimate-addons-for-gutenberg"),data:{value:k,label:"order"},options:[{value:"desc",label:Object(r.__)("Descending","ultimate-addons-for-gutenberg")},{value:"asc",label:Object(r.__)("Ascending","ultimate-addons-for-gutenberg")}]}),!ql&&React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:C,label:"columns"},tablet:{value:S,label:"tcolumns"},mobile:{value:w,label:"mcolumns"}},min:0,max:8,displayUnit:!1,setAttributes:o}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:bt,onChange:()=>o({equalHeight:!bt})}),!_l&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Post Pagination","ultimate-addons-for-gutenberg"),checked:vt,onChange:Xl}),!0===vt&&React.createElement(Qa,{label:Object(r.__)("Page Limit","ultimate-addons-for-gutenberg"),setAttributes:o,value:_t,data:{value:_t,label:"pageLimit"},onChange:ai,min:0,max:100,displayUnit:!1}),React.createElement("h2",null,Object(r.__)("If Posts Not Found","ultimate-addons-for-gutenberg")),React.createElement(Fs,{autoComplete:"off",label:Object(r.__)("Display Message","ultimate-addons-for-gutenberg"),value:Ot,data:{value:Ot,label:"postDisplaytext"},setAttributes:o,onChange:e=>o({postDisplaytext:e})})),(()=>{if(!0===vt)return React.createElement(Fe,{title:Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:o,label:Object(r.__)("Pagination Type","ultimate-addons-for-gutenberg"),data:{value:wl,label:"paginationType"},options:[{value:"ajax",label:Object(r.__)("Ajax","ultimate-addons-for-gutenberg")},{value:"normal",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Pagination Alignment","ultimate-addons-for-gutenberg"),data:{value:Bt,label:"paginationAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Pagination Layout","ultimate-addons-for-gutenberg"),data:{value:kt,label:"paginationLayout"},className:"uagb-multi-button-alignment-control",options:[{value:"border",label:"Border"},{value:"filled",label:"Filled"}],showIcons:!1}),React.createElement(Fs,{label:Object(r.__)("Previous Text","ultimate-addons-for-gutenberg"),value:Ut,data:{value:Ut,label:"paginationPrevText"},setAttributes:o,onChange:li}),React.createElement(Fs,{label:Object(r.__)("Next Text","ultimate-addons-for-gutenberg"),value:Et,data:{value:Et,label:"paginationNextText"},setAttributes:o,onChange:ii}))})(),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Featured Image","ultimate-addons-for-gutenberg"),checked:g,onChange:()=>o({displayPostImage:!g})}),!0===g&&"background"!==f&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:Sl,onChange:Yl}),!Sl&&React.createElement(Pi,{label:Object(r.__)("Image Ratio","ultimate-addons-for-gutenberg"),options:[{label:Object(r.__)("Inherit","ultimate-addons-for-gutenberg"),value:"inherit"},{label:Object(r.__)("1:1","ultimate-addons-for-gutenberg"),value:"1-1"},{label:Object(r.__)("3:2","ultimate-addons-for-gutenberg"),value:"2-3"},{label:Object(r.__)("16:9","ultimate-addons-for-gutenberg"),value:"9-16"},{label:Object(r.__)("2:1","ultimate-addons-for-gutenberg"),value:"1-2"}],data:{value:Cl,label:"imageRatio"},setAttributes:o})),!0===g&&React.createElement(Pi,{label:Object(r.__)("Sizes","ultimate-addons-for-gutenberg"),data:{value:y,label:"imgSize"},setAttributes:o,options:uagb_blocks_info.image_sizes}),!0===g&&React.createElement(Na,{setAttributes:o,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:f,label:"imgPosition"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"background",label:Object(r.__)("Background","ultimate-addons-for-gutenberg")}]}),!0===g&&"background"===f&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Link Complete Box","ultimate-addons-for-gutenberg"),checked:yt,onChange:()=>o({linkBox:!yt})}),g&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Left Right Position","ultimate-addons-for-gutenberg"),checked:ql,onChange:()=>o({isLeftToRightLayout:!ql})}),ql&&"Mobile"!==n&&"background"!==f&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:o,label:Object(r.__)("Image Alignment","ultimate-addons-for-gutenberg"),data:{value:Vl,label:"wrapperAlign"},options:[{value:"row",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"row-reverse",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Content Position","ultimate-addons-for-gutenberg"),data:{value:Wl,label:"wrapperAlignPosition"},options:[{value:"flex-start",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"center",label:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"flex-end",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}]}))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Title","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>o({displayPostTitle:!c})}),c&&React.createElement(Na,{setAttributes:o,label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:j,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Author","ultimate-addons-for-gutenberg"),checked:d,onChange:()=>o({displayPostAuthor:!d})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Date","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>o({displayPostDate:!u})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Comment","ultimate-addons-for-gutenberg"),checked:p,onChange:()=>o({displayPostComment:!p})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Taxonomy","ultimate-addons-for-gutenberg"),checked:m,onChange:()=>o({displayPostTaxonomy:!m})}),m&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:o,label:Object(r.__)("Taxonomy Position","ultimate-addons-for-gutenberg"),data:{value:Ba,label:"displayPostTaxonomyAboveTitle"},options:[{value:"withMeta",label:Object(r.__)("With Meta","ultimate-addons-for-gutenberg")},{value:"aboveTitle",label:Object(r.__)("Above Title","ultimate-addons-for-gutenberg")}]}),"aboveTitle"===Ba&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:o,label:Object(r.__)("Taxonomy Style","ultimate-addons-for-gutenberg"),data:{value:Ma,label:"taxStyle"},options:[{value:"default",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"highlighted",label:Object(r.__)("Highlighted","ultimate-addons-for-gutenberg")}]}),"default"===Ma&&React.createElement(Fs,{label:Object(r.__)("Taxonomy Divider","ultimate-addons-for-gutenberg"),value:Ra,data:{value:Ra,label:"taxDivider"},setAttributes:o,onChange:e=>o({taxDivider:e})}))),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Meta Icon","ultimate-addons-for-gutenberg"),checked:Ua,onChange:()=>o({hideTaxonomyIcon:!Ua})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Excerpt","ultimate-addons-for-gutenberg"),checked:b,onChange:()=>o({displayPostExcerpt:!b})}),b&&React.createElement(Na,{setAttributes:o,label:Object(r.__)("Show:","ultimate-addons-for-gutenberg"),data:{value:Lt,label:"displayPostContentRadio"},options:[{value:"excerpt",label:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg")},{value:"full_post",label:Object(r.__)("Full post","ultimate-addons-for-gutenberg")}]}),b&&"excerpt"===Lt&&React.createElement(Qa,{label:Object(r.__)("Max number of words in excerpt","ultimate-addons-for-gutenberg"),setAttributes:o,value:dt,data:{value:dt,label:"excerptLength"},min:1,max:100,displayUnit:!1})),React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Read More Link","ultimate-addons-for-gutenberg"),checked:h,onChange:()=>o({displayPostLink:!h})}),h&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{checked:kl,onChange:()=>o({inheritFromThemeBtn:!kl}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),kl&&("Astra"===Zl||$l)&&React.createElement(Na,{setAttributes:o,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:xl,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]}),!ql&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Buttons on Equal Height","ultimate-addons-for-gutenberg"),checked:Tl,onChange:()=>o({equalHeightInlineButtons:!Tl})})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open Links in New Tab","ultimate-addons-for-gutenberg"),checked:v,onChange:()=>o({newTab:!v})}),React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:_,data:{value:_,label:"ctaText"},setAttributes:o,onChange:e=>o({ctaText:e})}),!kl&&React.createElement(zr,{setAttributes:o,presets:XA,presetInputType:"radioImage"}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Post Blocks to the next level with the Loop Builder","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("More customizability","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Blocks inside the Post Items","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Include and Exclude option for Taxonomy/Posts/Authors","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Show sticky posts","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Multiple Layouts","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"post-grid"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:O,data:{value:O,label:"bgColor"},setAttributes:o}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:B,label:"columnGap"},tablet:{value:U,label:"columnGapTablet"},mobile:{value:E,label:"columnGapMobile"}},min:0,max:50,unit:{value:Ft,label:"columnGapUnit"},setAttributes:o}),React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:G,label:"rowGap"},tablet:{value:M,label:"rowGapTablet"},mobile:{value:R,label:"rowGapMobile"}},min:0,max:50,unit:{value:jt,label:"rowGapUnit"},setAttributes:o}),React.createElement(Pl,QA({},e,{label:Object(r.__)("Content Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ma,label:"paddingTop"},valueRight:{value:ha,label:"paddingRight"},valueBottom:{value:ya,label:"paddingBottom"},valueLeft:{value:fa,label:"paddingLeft"},valueTopTablet:{value:va,label:"paddingTopTablet"},valueRightTablet:{value:_a,label:"paddingRightTablet"},valueBottomTablet:{value:Ta,label:"paddingBottomTablet"},valueLeftTablet:{value:Ca,label:"paddingLeftTablet"},valueTopMobile:{value:Sa,label:"paddingTopMobile"},valueRightMobile:{value:wa,label:"paddingRightMobile"},valueBottomMobile:{value:ka,label:"paddingBottomMobile"},valueLeftMobile:{value:Pa,label:"paddingLeftMobile"},unit:{value:L,label:"contentPaddingUnit"},mUnit:{value:xa,label:"mobilePaddingUnit"},tUnit:{value:Aa,label:"tabletPaddingUnit"},deviceType:n,attributes:i,setAttributes:o,link:{value:ga,label:"spacingLinkPadding"}})),ql&&React.createElement(React.Fragment,null,React.createElement(Pl,{label:Object(r.__)("Wrapper Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Al,label:"wrapperTopPadding"},valueRight:{value:Gl,label:"wrapperRightPadding"},valueBottom:{value:Rl,label:"wrapperBottomPadding"},valueLeft:{value:Ml,label:"wrapperLeftPadding"},valueTopTablet:{value:Bl,label:"wrapperTopPaddingTablet"},valueRightTablet:{value:Ul,label:"wrapperRightPaddingTablet"},valueBottomTablet:{value:Ol,label:"wrapperBottomPaddingTablet"},valueLeftTablet:{value:El,label:"wrapperLeftPaddingTablet"},valueTopMobile:{value:Ll,label:"wrapperTopPaddingMobile"},valueRightMobile:{value:Hl,label:"wrapperRightPaddingMobile"},valueBottomMobile:{value:Fl,label:"wrapperBottomPaddingMobile"},valueLeftMobile:{value:jl,label:"wrapperLeftPaddingMobile"},unit:{value:zl,label:"wrapperPaddingUnit"},mUnit:{value:Nl,label:"wrapperPaddingUnitMobile"},tUnit:{value:Dl,label:"wrapperPaddingUnitTablet"},deviceType:n,attributes:i,setAttributes:o,link:{value:Il,label:"wrapperPaddingLink"},help:Object(r.__)("Note: This padding setting applies to the inner content wrapper in Left Right Layout.","ultimate-addons-for-gutenberg")}))),"aboveTitle"===Ba&&React.createElement(Fe,{title:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),initialOpen:!1},"aboveTitle"===Ba&&"highlighted"===Ma&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Taxonomy Text Color","ultimate-addons-for-gutenberg"),colorValue:Ea,data:{value:Ea,label:"highlightedTextColor"},setAttributes:o}),React.createElement(hl,{label:Object(r.__)("Highlighted Color","ultimate-addons-for-gutenberg"),colorValue:Oa,data:{value:Oa,label:"highlightedTextBgColor"},setAttributes:o})),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ye,label:"taxonomyBottomSpace"},tablet:{value:Ke,label:"taxonomyBottomSpaceTablet"},mobile:{value:Je,label:"taxonomyBottomSpaceMobile"}},min:0,max:50,unit:{value:Xe,label:"taxonomyBottomSpaceUnit"},setAttributes:o})),c&&React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:H,data:{value:H,label:"titleColor"},setAttributes:o}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:i,setAttributes:o,loadGoogleFonts:{value:K,label:"titleLoadGoogleFonts"},fontFamily:{value:I,label:"titleFontFamily"},fontWeight:{value:V,label:"titleFontWeight"},fontStyle:{value:W,label:"titleFontStyle"},fontSizeType:{value:z,label:"titleFontSizeType"},fontSize:{value:F,label:"titleFontSize"},fontSizeMobile:{value:D,label:"titleFontSizeMobile"},fontSizeTablet:{value:N,label:"titleFontSizeTablet"},lineHeightType:{value:q,label:"titleLineHeightType"},lineHeight:{value:Z,label:"titleLineHeight"},lineHeightMobile:{value:Y,label:"titleLineHeightMobile"},lineHeightTablet:{value:$,label:"titleLineHeightTablet"},letterSpacing:{value:La,label:"titleLetterSpacing"},letterSpacingTablet:{value:Ha,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:ja,label:"titleLetterSpacingMobile"},letterSpacingType:{value:Fa,label:"titleLetterSpacingType"},transform:{value:Vt,label:"titleTransform"},decoration:{value:$t,label:"titleDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Qe,label:"titleBottomSpace"},tablet:{value:et,label:"titleBottomSpaceTablet"},mobile:{value:tt,label:"titleBottomSpaceMobile"}},min:0,max:50,unit:{value:Dt,label:"titleBottomSpaceUnit"},setAttributes:o})),(d||u||p||m)&&React.createElement(Fe,{title:Object(r.__)("Meta","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Meta Color","ultimate-addons-for-gutenberg"),colorValue:He,data:{value:He,label:"metaColor"},setAttributes:o}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:i,setAttributes:o,loadGoogleFonts:{value:se,label:"metaLoadGoogleFonts"},fontFamily:{value:te,label:"metaFontFamily"},fontWeight:{value:ae,label:"metaFontWeight"},fontStyle:{value:le,label:"metaFontStyle"},fontSizeType:{value:X,label:"metaFontSizeType"},fontSize:{value:J,label:"metaFontSize"},fontSizeMobile:{value:Q,label:"metaFontSizeMobile"},fontSizeTablet:{value:ee,label:"metaFontSizeTablet"},lineHeightType:{value:ie,label:"metaLineHeightType"},lineHeight:{value:oe,label:"metaLineHeight"},lineHeightMobile:{value:re,label:"metaLineHeightMobile"},lineHeightTablet:{value:ne,label:"metaLineHeightTablet"},letterSpacing:{value:za,label:"metaLetterSpacing"},letterSpacingTablet:{value:Da,label:"metaLetterSpacingTablet"},letterSpacingMobile:{value:Ia,label:"metaLetterSpacingMobile"},letterSpacingType:{value:Va,label:"metaLetterSpacingType"},transform:{value:Wt,label:"metaTransform"},decoration:{value:Yt,label:"metaDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:at,label:"metaBottomSpace"},tablet:{value:lt,label:"metaBottomSpaceTablet"},mobile:{value:it,label:"metaBottomSpaceMobile"}},min:0,max:50,unit:{value:Nt,label:"metaBottomSpaceUnit"},setAttributes:o})),b&&React.createElement(Fe,{title:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:je,data:{value:je,label:"excerptColor"},setAttributes:o}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:i,setAttributes:o,loadGoogleFonts:{value:Te,label:"excerptLoadGoogleFonts"},fontFamily:{value:de,label:"excerptFontFamily"},fontWeight:{value:me,label:"excerptFontWeight"},fontStyle:{value:ye,label:"excerptFontStyle"},fontSizeType:{value:ue,label:"excerptFontSizeType"},fontSize:{value:ce,label:"excerptFontSize"},fontSizeMobile:{value:be,label:"excerptFontSizeMobile"},fontSizeTablet:{value:pe,label:"excerptFontSizeTablet"},lineHeightType:{value:fe,label:"excerptLineHeightType"},lineHeight:{value:he,label:"excerptLineHeight"},lineHeightMobile:{value:_e,label:"excerptLineHeightMobile"},lineHeightTablet:{value:ve,label:"excerptLineHeightTablet"},letterSpacing:{value:Wa,label:"excerptLetterSpacing"},letterSpacingTablet:{value:qa,label:"excerptLetterSpacingTablet"},letterSpacingMobile:{value:Za,label:"excerptLetterSpacingMobile"},letterSpacingType:{value:$a,label:"excerptLetterSpacingType"},transform:{value:qt,label:"excerptTransform"},decoration:{value:Kt,label:"excerptDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ot,label:"excerptBottomSpace"},tablet:{value:nt,label:"excerptBottomSpaceTablet"},mobile:{value:rt,label:"excerptBottomSpaceMobile"}},min:0,max:50,unit:{value:st,label:"excerptBottomSpaceUnit"},setAttributes:o})),h&&React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},!kl&&React.createElement(React.Fragment,null,React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ze,data:{value:ze,label:"ctaColor"},setAttributes:o}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:De,label:"ctaBgType"},className:"uagb-multi-button-alignment-control",options:ri}),"color"===De&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ie,data:{value:Ie,label:"ctaBgColor"},setAttributes:o})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Ve,data:{value:Ve,label:"ctaHColor"},setAttributes:o}),React.createElement(Na,{setAttributes:o,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:Ne,label:"ctaBgHType"},className:"uagb-multi-button-alignment-control",options:ri}),"color"===Ne&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:We,data:{value:We,label:"ctaBgHColor"},setAttributes:o}))}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:i,setAttributes:o,loadGoogleFonts:{value:Oe,label:"ctaLoadGoogleFonts"},fontFamily:{value:xe,label:"ctaFontFamily"},fontWeight:{value:Ae,label:"ctaFontWeight"},fontStyle:{value:Ge,label:"ctaFontStyle"},fontSizeType:{value:we,label:"ctaFontSizeType"},fontSize:{value:Se,label:"ctaFontSize"},fontSizeMobile:{value:Pe,label:"ctaFontSizeMobile"},fontSizeTablet:{value:ke,label:"ctaFontSizeTablet"},lineHeightType:{value:Me,label:"ctaLineHeightType"},lineHeight:{value:Re,label:"ctaLineHeight"},lineHeightMobile:{value:Ue,label:"ctaLineHeightMobile"},lineHeightTablet:{value:Be,label:"ctaLineHeightTablet"},letterSpacing:{value:Ya,label:"ctaLetterSpacing"},letterSpacingTablet:{value:Ka,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:Ja,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:Xa,label:"ctaLetterSpacingType"},transform:{value:Zt,label:"ctaTransform"},decoration:{value:Jt,label:"ctaDecoration"}}),React.createElement(Hi,{setAttributes:o,prefix:"btn",attributes:i,deviceType:n,disabledBorderTitle:!1}),React.createElement(Pl,QA({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Xt,label:"paddingBtnTop"},valueRight:{value:ta,label:"paddingBtnRight"},valueBottom:{value:Qt,label:"paddingBtnBottom"},valueLeft:{value:ea,label:"paddingBtnLeft"},valueTopTablet:{value:aa,label:"paddingBtnTopTablet"},valueRightTablet:{value:la,label:"paddingBtnRightTablet"},valueBottomTablet:{value:ia,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:oa,label:"paddingBtnLeftTablet"},valueTopMobile:{value:na,label:"paddingBtnTopMobile"},valueRightMobile:{value:ra,label:"paddingBtnRightMobile"},valueBottomMobile:{value:sa,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:ca,label:"paddingBtnLeftMobile"},unit:{value:ua,label:"paddingBtnUnit"},mUnit:{value:pa,label:"mobilePaddingBtnUnit"},tUnit:{value:ba,label:"tabletPaddingBtnUnit"},deviceType:n,attributes:i,setAttributes:o,link:{value:da,label:"spacingLink"}}))),!ql&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ct,label:"ctaBottomSpace"},tablet:{value:ut,label:"ctaBottomSpaceTablet"},mobile:{value:pt,label:"ctaBottomSpaceMobile"}},min:0,max:300,unit:{value:It,label:"ctaBottomSpaceUnit"},setAttributes:o}))),vt&&React.createElement(Fe,{title:Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Tt,data:{value:Tt,label:"paginationColor"},setAttributes:o}),"filled"===kt&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ct,data:{value:Ct,label:"paginationBgColor"},setAttributes:o}),"border"===kt&&React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:At,data:{value:At,label:"paginationBorderColor"},setAttributes:o})),active:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:St,data:{value:St,label:"paginationActiveColor"},setAttributes:o}),"filled"===kt&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:wt,data:{value:wt,label:"paginationBgActiveColor"},setAttributes:o}),"border"===kt&&React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:Gt,data:{value:Gt,label:"paginationBorderActiveColor"},setAttributes:o})),disableBottomSeparator:!1}),"border"===kt&&React.createElement(React.Fragment,null,React.createElement(Qa,{setAttributes:o,label:Object(r.__)("Border Size","ultimate-addons-for-gutenberg"),value:Pt,data:{value:Pt,label:"paginationBorderSize"},min:0,max:10,displayUnit:!1}),React.createElement(Qa,{setAttributes:o,label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),value:xt,data:{value:xt,label:"paginationBorderRadius"},displayUnit:!1,min:0,max:100})),React.createElement(Qa,{label:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),setAttributes:o,value:Mt,data:{value:Mt,label:"paginationSpacing"},help:Object(r.__)("This spacing is between the Post Grid and the Pagination","ultimate-addons-for-gutenberg"),min:0,max:300,unit:{value:Rt,label:"paginationSpacingUnit"}})),!0===g&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},"background"===f&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Overlay Color","ultimate-addons-for-gutenberg"),colorValue:mt,data:{value:mt,label:"bgOverlayColor"},setAttributes:o}),React.createElement(Qa,{label:Object(r.__)("Overlay Opacity","ultimate-addons-for-gutenberg"),setAttributes:o,value:gt,data:{value:gt,label:"overlayOpacity"},min:0,max:100,displayUnit:!1})),"top"===f&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:qe,label:"imageBottomSpace"},tablet:{value:Ze,label:"imageBottomSpaceTablet"},mobile:{value:$e,label:"imageBottomSpaceMobile"}},min:0,max:50,unit:{value:zt,label:"imageBottomSpaceUnit"},setAttributes:o})),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:o,prefix:"overall",attributes:i,deviceType:n,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:el,onChange:()=>o({useSeparateBoxShadows:!el})}),el?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:o,presets:KA,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:o,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:al,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ll,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:sl,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:cl,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ul,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:pl,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:o,presets:JA,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:o,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:bl,label:"boxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:dl,label:"boxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:gl,label:"boxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ml,label:"boxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:yl,label:"boxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:fl,label:"boxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:o,presets:KA,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:o,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:al,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ll,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:sl,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:cl,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ul,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:pl,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))),ql),React.createElement(il,QA({},rl,{parentProps:e.parentProps}))));return Array.isArray(a)&&a.length?React.createElement(React.Fragment,null,(()=>{const{isEditing:t}=e.state;return React.createElement(ge.BlockControls,null,React.createElement(Le.ToolbarGroup,{controls:[{icon:"edit",title:Object(r.__)("Edit","ultimate-addons-for-gutenberg"),onClick:()=>e.togglePreview(),isActive:t}]}))})(),si()):React.createElement(React.Fragment,null,si())}),tG=Object(B.memo)(e=>{const t=e.name.replace("uagb/",""),a=Object(B.useRef)(),{attributes:l,className:i,latestPosts:o,block_id:n,setAttributes:r}=e,s=le(),{columns:c,tcolumns:u,mcolumns:p,imgPosition:b,postsToShow:d,equalHeight:g,paginationMarkup:m,postPagination:y,layoutConfig:f,equalHeightInlineButtons:h,isLeftToRightLayout:v}=l,_=Ps(d,"postsToShow",t),T=Ps(c,"columns",t),C=Ps(u,"tcolumns",t),S=Ps(p,"mcolumns",t),w=g?"uagb-post__equal-height":"",k=o.length>_?o.slice(0,_):o,P=!0===l.displayPostImage?"uagb-post__image-enabled":"uagb-post__image-disabled",x=h?"uagb-equal_height_inline-read-more-buttons-in-editor":"";return React.createElement("div",{className:Be()("is-grid","uagb-post__columns-"+T,"uagb-post__columns-tablet-"+C,"uagb-post__columns-mobile-"+S,"uagb-post__items",""+w,""+P,i,"uagb-post-grid","uagb-post__image-position-"+b,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+n,""+x)},React.createElement(GA,{parentName:"uagb/post-grid",parentClassName:"uagb-block-grid"},k.map((function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=arguments.length>1?arguments[1]:void 0;return React.createElement("article",{ref:a,key:l,className:"uagb-post__inner-wrap"},RA("uagb/post-grid",t,f,e.attributes,e.categoriesList,r,a,v))}))),!0===y&&"empty"!==m&&React.createElement("div",{dangerouslySetInnerHTML:{__html:m},className:"uagb-post-pagination-wrap"}))}),aG=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(WA.use(),()=>{WA.unuse()}),[]);const{categoriesList:t,latestPosts:a,replaceInnerBlocks:l,block:i}=e,{isEditing:o}=e.state,{attributes:n,deviceType:s,name:c,setAttributes:u,clientId:p,className:b}=e;return o?React.createElement(React.Fragment,null,(()=>{const t={template:e.attributes.layoutConfig,templateLock:!1,allowedBlocks:Object.keys(LA("uagb/post-grid"))};return 0!==e.attributes.layoutConfig.length&&(t.renderAppender=!1),React.createElement(Le.Placeholder,{label:"Post Grid Layout"},React.createElement("div",{className:"uagb-post-grid uagb-block-all-post-grid-item-template"},React.createElement(Le.Tip,null,Object(r.__)("Edit the blocks inside the preview below to change the content displayed for each post within the post grid.","ultimate-addons-for-gutenberg")),React.createElement(GA,{parentName:"uagb/post-grid",parentClassName:"uagb-block-grid"},React.createElement("article",{className:"uagb-post__inner-wrap uagb-post__edit-mode"},React.createElement("div",{className:"uagb-post__text"},React.createElement(ge.InnerBlocks,t)))),React.createElement("div",{className:"uagb-block-all-post__actions"},React.createElement(Le.Button,{className:"uagb-block-all-post__done-button",isPrimary:!0,onClick:()=>{u({layoutConfig:HA(i)}),e.setStateValue({innerBlocks:i}),e.togglePreview()}},Object(r.__)("Done","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__cancel-button",isTertiary:!0,onClick:()=>{const{innerBlocks:t}=e.state;l(p,t),e.togglePreview()}},Object(r.__)("Cancel","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__reset-button",onClick:()=>{const t=[];MA.map(e=>{let[a,l]=e;return t.push(Object(be.createBlock)(a,l)),!0}),l(p,t),e.setStateValue({innerBlocks:i})}},Object(r.__)("Reset Layout","ultimate-addons-for-gutenberg")))))})()):React.createElement(React.Fragment,null,React.createElement(tG,{attributes:n,className:b,latestPosts:a,block_id:n.block_id,categoriesList:t,deviceType:s,name:c,setAttributes:u}))});function lG(){return(lG=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var iG=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{borderStyle:l,borderWidth:i,borderRadius:o,borderColor:s,borderHColor:c,btnBorderTopWidth:u,btnBorderLeftWidth:p,btnBorderRightWidth:b,btnBorderBottomWidth:d,btnBorderTopLeftRadius:g,btnBorderTopRightRadius:m,btnBorderBottomLeftRadius:y,btnBorderBottomRightRadius:f,btnBorderColor:h,btnBorderHColor:v,btnBorderStyle:_,blockName:T,categories:C,postsToShow:S,postsOffset:k,order:P,orderBy:x,postType:A,taxonomyType:G,excludeCurrentPost:M,allTaxonomyStore:R,postPagination:U,paginationMarkup:E,UAGHideDesktop:O,UAGHideTab:L,UAGHideMob:H,postDisplaytext:j,isLeftToRightLayout:F,wrapperAlign:z,align:D,displayPostImage:N,wrapperRightPadding:I,wrapperLeftPadding:V,ctaBottomSpace:W},setAttributes:q,clientId:Z,deviceType:$}=e,[Y,K]=Object(B.useState)({isEditing:!1,innerBlocks:[]}),[J,X]=Object(B.useState)(!1);Object(B.useEffect)(()=>{const{block:t}=e;K({innerBlocks:t}),i&&(void 0===u&&q({btnBorderTopWidth:i}),void 0===p&&q({btnBorderLeftWidth:i}),void 0===b&&q({btnBorderRightWidth:i}),void 0===d&&q({btnBorderBottomWidth:i})),o&&(void 0===g&&q({btnBorderTopLeftRadius:o}),void 0===m&&q({btnBorderTopRightRadius:o}),void 0===y&&q({btnBorderBottomLeftRadius:o}),void 0===f&&q({btnBorderBottomRightRadius:o})),s&&void 0===h&&q({btnBorderColor:s}),c&&void 0===v&&q({btnBorderHColor:c}),l&&void 0===_&&q({btnBorderStyle:l})},[]),Object(B.useEffect)(()=>{he(e)},[O,L,H,$]),Object(B.useEffect)(()=>{Bs()},[$]),Object(B.useEffect)(()=>{if(!0===F){const e="row"===z?"left":"right";q({align:"center"!==D?e:D}),q({equalHeightInlineButtons:!1,ctaBottomSpace:0}),void 0===W&&q({ctaBottomSpace:0}),V||0===V||q({wrapperLeftPadding:20}),I||0===V||q({wrapperRightPadding:20}),N||q({isLeftToRightLayout:!1})}},[F,z,N]);const Q=Object(B.useMemo)(()=>gA(a,0,$),[a,$]),ee=()=>{K({isEditing:!Y.isEditing})};let te=[];const{latestPosts:ae,taxonomyList:le,block:ie}=Object(n.useSelect)(t=>{const{getEntityRecords:a}=t("core");R||J||(X(!0),w()({path:"/spectra/v1/all_taxonomy"}).then(e=>{q({allTaxonomyStore:e}),X(!1)}));const l=R?R[A]:void 0;if(!0===U&&"empty"===E){const t={nonce:uagb_blocks_info.uagb_ajax_nonce,attributes:JSON.stringify(e.attributes)};$l({url:uagb_blocks_info.ajax_url,action:"uagb_post_pagination",data:t}).then(e=>{q({paginationMarkup:e.data})})}let i="";void 0!==l&&(void 0!==l.taxonomy[G]&&(i=!1===l.taxonomy[G].rest_base||null===l.taxonomy[G].rest_base?l.taxonomy[G].name:l.taxonomy[G].rest_base),""!==G&&void 0!==l.terms&&void 0!==l.terms[G]&&(te=l.terms[G]));const o={order:P,orderby:x,per_page:Ps(S,"postsToShow",T),offset:Ps(k,"postsOffset",T)};if(M){const e=t("core/editor");o.exclude=null!=e&&e.getCurrentPostId?e.getCurrentPostId():null}const n=[],r=parseInt(C);n.push(r);const s=te.length;for(let e=0;e<s;e++)te[e].id===r&&0!==te[e].child.length&&te[e].child.forEach(e=>{n.push(e)});const{getBlocks:c}=t("core/block-editor");return void 0!==C&&""!==C&&(o[i]=void 0===C||""===C?C:n),{latestPosts:a("postType",A,o),categoriesList:te,taxonomyList:void 0!==l?l.taxonomy:[],block:c(Z)}}),{replaceInnerBlocks:oe}=Object(n.useDispatch)("core/block-editor");return Array.isArray(ae)&&ae.length?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:Q}),React.createElement(vA,{attributes:a}),t&&React.createElement(eG,lG({},e,{state:Y,setStateValue:K,togglePreview:ee,latestPosts:ae,taxonomyList:le,categoriesList:te})),React.createElement(aG,lG({},e,{state:Y,setStateValue:K,togglePreview:ee,latestPosts:ae,categoriesList:te,replaceInnerBlocks:oe,block:ie}))):React.createElement(React.Fragment,null,React.createElement(eG,lG({},e,{state:Y,setStateValue:K,latestPosts:ae,taxonomyList:le,categoriesList:te})),React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Post Grid","ultimate-addons-for-gutenberg")},Array.isArray(ae)?j:React.createElement(Le.Spinner,null)))});let oG={};oG=Object(j.applyFilters)("uagb/post-grid",ws(oG)),Object(be.registerBlockType)("uagb/post-grid",{...oG,title:Object(r.__)("Post Grid","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your posts in a structured grid-based layout.","ultimate-addons-for-gutenberg"),icon:se.post_grid,category:uagb_blocks_info.category,keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("grid","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"post-grid"}):React.createElement(iG,e),save:()=>null}),Object(be.registerBlockType)("uagb/post-title",{title:Object(r.__)("Post Title","ultimate-addons-for-gutenberg"),description:Object(r.__)("Customize your post title.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("title","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostTitle:TA,save:function(){return React.createElement("h3",{className:"uagb-post__text uagb-post__title"},React.createElement("a",{href:"/",target:"_blank",rel:"noopener noreferrer",alt:""}," ",Object(r.__)("WordPress Post Title","ultimate-addons-for-gutenberg")))}}),Object(be.registerBlockType)("uagb/post-image",{title:Object(r.__)("Post Image","ultimate-addons-for-gutenberg"),description:Object(r.__)("Customize your post image.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("image","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostImage:SA,save:function(){return React.createElement("div",{className:"uagb-post__image"},React.createElement("img",{src:uagb_blocks_info.uagb_url+"/admin/assets/preview-images/post-grid.png",alt:""}))}}),Object(be.registerBlockType)("uagb/post-taxonomy",{title:Object(r.__)("Post Taxonomy","ultimate-addons-for-gutenberg"),description:Object(r.__)("Show your post's under categories.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("tags","ultimate-addons-for-gutenberg"),Object(r.__)("taxonomy","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostTaxonomy:wA,save:function(){return React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-post__taxonomy uagb-post__text"},React.createElement("span",{className:"dashicons-tag dashicons"}),Object(r.__)("Category","ultimate-addons-for-gutenberg")))}}),Object(be.registerBlockType)("uagb/post-button",{title:Object(r.__)("Post Button","ultimate-addons-for-gutenberg"),description:Object(r.__)("Customize this post button.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("button","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostButton:PA,save:function(){return React.createElement("div",{className:"uagb-post__cta wp-block-button"},React.createElement("a",{className:"uagb-text-link wp-block-button__link"},"Read More"))}}),Object(be.registerBlockType)("uagb/post-excerpt",{title:Object(r.__)("Post Excerpt","ultimate-addons-for-gutenberg"),description:Object(r.__)("Show your post's excerpt.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("excerpt","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostExcerpt:kA,save:function(){return React.createElement("div",{className:"uagb-post__excerpt uagb-full_post"},Object(r.__)("Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.","ultimate-addons-for-gutenberg"))}}),Object(be.registerBlockType)("uagb/post-meta",{title:Object(r.__)("Post Meta","ultimate-addons-for-gutenberg"),description:Object(r.__)("Show your post meta details.","ultimate-addons-for-gutenberg"),icon:se.post_grid,parent:["uagb/post-grid","uagb/post-masonry","uagb/post-carousel"],keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("meta","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],PostMeta:CA,save:function(){return React.createElement(React.Fragment,null,React.createElement("span",{className:"uagb-post__author"},React.createElement("span",{className:"dashicons-admin-users dashicons"}),Object(r.__)("Author Name","ultimate-addons-for-gutenberg")),React.createElement("time",{className:"uagb-post__date"},React.createElement("span",{className:"dashicons-calendar dashicons"}),Object(r.__)("Post Date","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-post__comment"},React.createElement("span",{className:"dashicons-admin-comments dashicons"}),Object(r.__)("Comments","ultimate-addons-for-gutenberg")),React.createElement("span",{className:"uagb-post__taxonomy"},React.createElement("span",{className:"dashicons-tag dashicons"}),Object(r.__)("Category","ultimate-addons-for-gutenberg")))}});var nG=Object(B.memo)(e=>{let{attributes:t}=e;const{headLoadGoogleFonts:a,headFontFamily:l,headFontWeight:i,subHeadLoadGoogleFonts:o,subHeadFontFamily:n,subHeadFontWeight:r,dateLoadGoogleFonts:s,dateFontFamily:c,dateFontWeight:u,authorLoadGoogleFonts:p,authorFontFamily:b,authorFontWeight:d,ctaLoadGoogleFonts:g,ctaFontFamily:m,ctaFontWeight:y}=t;let f,h,v,_,T;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};f=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};h=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};v=React.createElement(O,{config:e})}if(!0===p){const e={google:{families:[b+(d?":"+d:"")]}};_=React.createElement(O,{config:e})}if(!0===g){const e={google:{families:[m+(y?":"+y:"")]}};T=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,f,h,v,_,T)});function rG(){return(rG=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var sG,cG=Object(B.memo)(e=>{const{categoriesList:t,taxonomyList:a,attributes:l,setAttributes:i,deviceType:o}=e,{headingColor:n,subHeadingColor:s,backgroundColor:c,separatorColor:u,separatorFillColor:p,separatorBg:b,separatorBorder:d,borderFocus:g,headingTag:m,headFontSizeType:y,headFontSize:f,headFontSizeTablet:h,headFontSizeMobile:v,headFontFamily:_,headFontWeight:T,headFontStyle:C,headLineHeightType:S,headLineHeight:w,headLineHeightTablet:k,headLineHeightMobile:P,headLoadGoogleFonts:x,timelinAlignmentTablet:A,timelinAlignmentMobile:G,arrowlinAlignment:M,subHeadFontSizeType:R,subHeadFontSize:B,subHeadFontSizeTablet:U,subHeadFontSizeMobile:E,subHeadFontFamily:O,subHeadFontWeight:L,subHeadFontStyle:H,subHeadLineHeightType:j,subHeadLineHeight:F,subHeadLineHeightTablet:z,subHeadLineHeightMobile:D,subHeadLoadGoogleFonts:N,headSpace:I,headSpaceTablet:V,headSpaceMobile:W,separatorwidth:q,borderwidth:Z,connectorBgsize:$,authorSpace:Y,authorSpaceTablet:K,authorSpaceMobile:J,contentSpace:X,authorColor:Q,authorFontSizeType:ee,authorFontSize:te,authorFontSizeTablet:ae,authorFontSizeMobile:le,authorFontFamily:ie,authorFontWeight:oe,authorFontStyle:ne,authorLineHeightType:re,authorLineHeight:se,authorLineHeightTablet:ce,authorLineHeightMobile:ue,authorLoadGoogleFonts:pe,dateBottomspace:be,dateBottomspaceTablet:de,dateBottomspaceMobile:me,displayPostDate:ye,displayPostExcerpt:fe,displayPostAuthor:he,displayPostImage:ve,displayPostLink:_e,readMoreText:Te,align:Se,alignTablet:we,alignMobile:ke,order:Pe,orderBy:xe,categories:Ae,postsToShow:Ge,imageSize:Me,ctaBackground:Re,icon:Be,iconColor:Ue,dateColor:Oe,ctaColor:He,dateFontSizeType:je,dateFontSize:ze,dateFontSizeTablet:De,dateFontSizeMobile:Ne,dateFontFamily:Ie,dateFontWeight:Ve,dateFontStyle:We,dateLineHeightType:qe,dateLineHeight:Ze,dateLineHeightTablet:$e,dateLineHeightMobile:Ye,dateLoadGoogleFonts:Ke,ctaFontSizeType:Je,ctaFontSize:Xe,ctaFontSizeTablet:Qe,ctaFontSizeMobile:et,ctaFontFamily:tt,ctaFontWeight:at,ctaFontStyle:lt,ctaLineHeightType:it,ctaLineHeight:ot,ctaLineHeightTablet:nt,ctaLineHeightMobile:rt,ctaLoadGoogleFonts:st,iconSize:ct,exerptLength:ut,borderRadius:pt,borderRadiusTablet:bt,borderRadiusMobile:dt,iconFocus:gt,iconBgFocus:mt,linkTarget:yt,postType:ft,taxonomyType:ht,dateFormat:vt,excludeCurrentPost:_t,topPadding:Tt,rightPadding:Ct,bottomPadding:St,leftPadding:wt,topPaddingTablet:kt,rightPaddingTablet:Pt,bottomPaddingTablet:xt,leftPaddingTablet:At,topPaddingMobile:Gt,rightPaddingMobile:Mt,bottomPaddingMobile:Rt,leftPaddingMobile:Bt,paddingUnit:Ut,mobilePaddingUnit:Et,tabletPaddingUnit:Ot,paddingLink:Lt,headTransform:Ht,authorTransform:jt,subHeadTransform:Ft,dateTransform:zt,ctaTransform:Dt,headDecoration:Nt,authorDecoration:It,subHeadDecoration:Vt,dateDecoration:Wt,ctaDecoration:qt,ctaBottomSpacing:Zt,ctaBottomSpacingTablet:$t,ctaBottomSpacingMobile:Yt,headTopSpacing:Kt,headTopSpacingTablet:Jt,headTopSpacingMobile:Xt,headLetterSpacing:Qt,headLetterSpacingTablet:ea,headLetterSpacingMobile:ta,headLetterSpacingType:aa,subHeadLetterSpacing:la,subHeadLetterSpacingTablet:ia,subHeadLetterSpacingMobile:oa,subHeadLetterSpacingType:na,dateLetterSpacing:ra,dateLetterSpacingTablet:sa,dateLetterSpacingMobile:ca,dateLetterSpacingType:ua,ctaLetterSpacing:pa,ctaLetterSpacingTablet:ba,ctaLetterSpacingMobile:da,ctaLetterSpacingType:ga,authorLetterSpacing:ma,authorLetterSpacingTablet:ya,authorLetterSpacingMobile:fa,authorLetterSpacingType:ha,verticalSpace:va,verticalSpaceTablet:_a,verticalSpaceMobile:Ta,verticalSpaceUnit:Ca,verticalSpaceUnitTablet:Sa,verticalSpaceUnitMobile:wa,horizontalSpace:ka,horizontalSpaceTablet:Pa,horizontalSpaceMobile:xa,horizontalSpaceUnit:Aa,horizontalSpaceUnitTablet:Ga,horizontalSpaceUnitMobile:Ma,inheritFromTheme:Ra,buttonType:Ba}=l;let Ua=o;const Ea=uagb_blocks_info.current_theme,Oa=uagb_blocks_info.is_astra_based_theme;"Desktop"===o&&(Ua="");const La=void 0!==l["timelinAlignment"+Ua]?l["timelinAlignment"+Ua]:l.timelinAlignment,Ha=[],ja=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}];a&&Object.keys(a).map(e=>Ha.push({value:a[e].name,label:Object(mA.decodeEntities)(a[e].label)})),t&&Object.keys(t).map(e=>ja.push({value:t[e].id,label:Object(mA.decodeEntities)(t[e].name)}));const Fa=new Date;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Query","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Post Type","ultimate-addons-for-gutenberg"),data:{value:ft},onChange:e=>{i({postType:e}),i({categories:""})},options:uagb_blocks_info.post_types}),""!==a&&React.createElement(Pi,{label:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),data:{value:ht},onChange:e=>{i({taxonomyType:e}),i({categories:""})},options:Ha}),""!=t&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:a[ht].label,data:{value:Ae,label:"categories"},setAttributes:i,options:ja})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Exclude Current Post","ultimate-addons-for-gutenberg"),checked:_t,onChange:()=>i({excludeCurrentPost:!_t})}),React.createElement(Le.QueryControls,{order:Pe,orderBy:xe,numberOfItems:Ge,onNumberOfItemsChange:e=>i({postsToShow:e})}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Order By","ultimate-addons-for-gutenberg"),data:{value:xe,label:"orderBy"},className:"uagb-multi-button-alignment-control",options:[{value:"date",label:Object(r.__)("Date","ultimate-addons-for-gutenberg")},{value:"title",label:Object(r.__)("Title","ultimate-addons-for-gutenberg")},{value:"rand",label:Object(r.__)("Random","ultimate-addons-for-gutenberg")},{value:"menu_order",label:Object(r.__)("Menu Order","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Order","ultimate-addons-for-gutenberg"),data:{value:Pe,label:"order"},className:"uagb-multi-button-alignment-control",options:[{value:"desc",label:Object(r.__)("Descending","ultimate-addons-for-gutenberg")},{value:"asc",label:Object(r.__)("Ascending","ultimate-addons-for-gutenberg")}],showIcons:!1})),React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:i,label:Object(r.__)("Orientation","ultimate-addons-for-gutenberg"),data:{desktop:{value:La,label:"timelinAlignment"},tablet:{value:A,label:"timelinAlignmentTablet"},mobile:{value:G,label:"timelinAlignmentMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:Se,label:"align"},tablet:{value:we,label:"alignTablet"},mobile:{value:ke,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(Na,{setAttributes:i,label:Object(r.__)("Arrow Alignment","ultimate-addons-for-gutenberg"),data:{value:M,label:"arrowlinAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"center",label:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],showIcons:!1})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Featured Image","ultimate-addons-for-gutenberg"),checked:ve,onChange:()=>i({displayPostImage:!ve})}),ve&&React.createElement(Pi,{label:Object(r.__)("Image Size","ultimate-addons-for-gutenberg"),data:{value:Me,label:"imageSize"},setAttributes:e.setAttributes,options:uagb_blocks_info.image_sizes})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:i,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:m,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Post Author","ultimate-addons-for-gutenberg"),checked:he,onChange:()=>i({displayPostAuthor:!he})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Post Date","ultimate-addons-for-gutenberg"),checked:ye,onChange:()=>i({displayPostDate:!ye})}),ye&&React.createElement(Pi,{label:Object(r.__)("Date Format","ultimate-addons-for-gutenberg"),data:{value:vt,label:"dateFormat"},setAttributes:i,options:[{value:"M j, Y",label:Object(Qh.dateI18n)("M j, Y",Fa)},{value:"F j, Y",label:Object(Qh.dateI18n)("F j, Y",Fa)},{value:"m/d/Y",label:Object(Qh.dateI18n)("m/d/Y",Fa)},{value:"m-d-Y",label:Object(Qh.dateI18n)("m-d-Y",Fa)},{value:"m.d.Y",label:Object(Qh.dateI18n)("m.d.Y",Fa)},{value:"d M Y",label:Object(Qh.dateI18n)("d M Y",Fa)},{value:"d F Y",label:Object(Qh.dateI18n)("d F Y",Fa)},{value:"d-m-Y",label:Object(Qh.dateI18n)("d-m-Y",Fa)},{value:"d.m.Y",label:Object(Qh.dateI18n)("d.m.Y",Fa)},{value:"d/m/Y",label:Object(Qh.dateI18n)("d/m/Y",Fa)},{value:"Y-m-d",label:Object(Qh.dateI18n)("Y-m-d",Fa)},{value:"Y.m.d",label:Object(Qh.dateI18n)("Y.m.d",Fa)},{value:"Y/m/d",label:Object(Qh.dateI18n)("Y/m/d",Fa)},{value:"M, Y",label:Object(Qh.dateI18n)("M, Y",Fa)},{value:"M Y",label:Object(Qh.dateI18n)("M Y",Fa)},{value:"F, Y",label:Object(Qh.dateI18n)("F, Y",Fa)},{value:"F Y",label:Object(Qh.dateI18n)("F Y",Fa)}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Post Excerpt","ultimate-addons-for-gutenberg"),checked:fe,onChange:()=>i({displayPostExcerpt:!fe})}),fe&&React.createElement(Qa,{label:Object(r.__)("Excerpt Length","ultimate-addons-for-gutenberg"),setAttributes:i,value:ut,data:{value:ut,label:"exerptLength"},min:1,max:50,displayUnit:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Display Continue Reading Link","ultimate-addons-for-gutenberg"),checked:_e,onChange:()=>i({displayPostLink:!_e})}),_e&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("CTA Text","ultimate-addons-for-gutenberg"),value:Te,data:{value:Te,label:"readMoreText"},setAttributes:i,onChange:e=>i({readMoreText:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open link in New Tab","ultimate-addons-for-gutenberg"),checked:yt,onChange:()=>i({linkTarget:!yt})}),React.createElement(Le.ToggleControl,{checked:Ra,onChange:()=>i({inheritFromTheme:!Ra}),label:Object(r.__)("Inherit From Theme","ultimate-addons-for-gutenberg")}),Ra&&("Astra"===Ea||Oa)&&React.createElement(Na,{setAttributes:i,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:Ba,label:"buttonType"},options:[{value:"primary",label:Object(r.__)("Primary","ultimate-addons-for-gutenberg")},{value:"secondary",label:Object(r.__)("Secondary","ultimate-addons-for-gutenberg")}]})),React.createElement(tl,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),data:{desktop:{value:pt,label:"borderRadius"},tablet:{value:bt,label:"borderRadiusTablet"},mobile:{value:dt,label:"borderRadiusMobile"}},min:0,max:50,displayUnit:!1,setAttributes:i})),React.createElement(Fe,{title:Object(r.__)("Connector","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:Be,onChange:t=>{e.setAttributes({icon:t})}}),Be&&React.createElement(Qa,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),setAttributes:i,value:ct,data:{value:ct,label:"iconSize"},min:0,max:30,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Icon Background Size","ultimate-addons-for-gutenberg"),setAttributes:i,value:$,data:{value:$,label:"connectorBgsize"},min:0,max:90,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),setAttributes:i,value:Z,data:{value:Z,label:"borderwidth"},min:1,max:10,displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Connector Thickness","ultimate-addons-for-gutenberg"),setAttributes:i,value:q,data:{value:q,label:"separatorwidth"},min:1,max:10,displayUnit:!1}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Heading","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:n||"",data:{value:n,label:"headingColor"},setAttributes:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:i,loadGoogleFonts:{value:x,label:"headLoadGoogleFonts"},fontFamily:{value:_,label:"headFontFamily"},fontWeight:{value:T,label:"headFontWeight"},fontStyle:{value:C,label:"headFontStyle"},fontSizeType:{value:y,label:"headFontSizeType"},fontSize:{value:f,label:"headFontSize"},fontSizeMobile:{value:v,label:"headFontSizeMobile"},fontSizeTablet:{value:h,label:"headFontSizeTablet"},lineHeightType:{value:S,label:"headLineHeightType"},lineHeight:{value:w,label:"headLineHeight"},lineHeightMobile:{value:P,label:"headLineHeightMobile"},lineHeightTablet:{value:k,label:"headLineHeightTablet"},letterSpacing:{value:Qt,label:"headLetterSpacing"},letterSpacingTablet:{value:ea,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:ta,label:"headLetterSpacingMobile"},letterSpacingType:{value:aa,label:"headLetterSpacingType"},transform:{value:Ht,label:"headTransform"},decoration:{value:Nt,label:"headDecoration"}}),React.createElement(tl,{label:Object(r.__)("Top Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Kt,label:"headTopSpacing"},tablet:{value:Jt,label:"headTopSpacingTablet"},mobile:{value:Xt,label:"headTopSpacingMobile"}},min:1,max:50,displayUnit:!1,setAttributes:i}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:I,label:"headSpace"},tablet:{value:V,label:"headSpaceTablet"},mobile:{value:W,label:"headSpaceMobile"}},min:0,max:100,displayUnit:!1,setAttributes:i})),he&&React.createElement(Fe,{title:Object(r.__)("Author","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Q||"",data:{value:Q,label:"authorColor"},setAttributes:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:i,loadGoogleFonts:{value:pe,label:"authorLoadGoogleFonts"},fontFamily:{value:ie,label:"authorFontFamily"},fontWeight:{value:oe,label:"authorFontWeight"},fontStyle:{value:ne,label:"authorFontStyle"},fontSizeType:{value:ee,label:"authorFontSizeType"},fontSize:{value:te,label:"authorFontSize"},fontSizeMobile:{value:le,label:"authorFontSizeMobile"},fontSizeTablet:{value:ae,label:"authorFontSizeTablet"},lineHeightType:{value:re,label:"authorLineHeightType"},lineHeight:{value:se,label:"authorLineHeight"},lineHeightMobile:{value:ue,label:"authorLineHeightMobile"},lineHeightTablet:{value:ce,label:"authorLineHeightTablet"},letterSpacing:{value:ma,label:"authorLetterSpacing"},letterSpacingTablet:{value:ya,label:"authorLetterSpacingTablet"},letterSpacingMobile:{value:fa,label:"authorLetterSpacingMobile"},letterSpacingType:{value:ha,label:"authorLetterSpacingType"},transform:{value:jt,label:"authorTransform"},decoration:{value:It,label:"authorDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Y,label:"authorSpace"},tablet:{value:K,label:"authorSpaceTablet"},mobile:{value:J,label:"authorSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:i})),fe&&React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"subHeadingColor"},setAttributes:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:i,loadGoogleFonts:{value:N,label:"subHeadLoadGoogleFonts"},fontFamily:{value:O,label:"subHeadFontFamily"},fontWeight:{value:L,label:"subHeadFontWeight"},fontStyle:{value:H,label:"subHeadFontStyle"},fontSizeType:{value:R,label:"subHeadFontSizeType"},fontSize:{value:B,label:"subHeadFontSize"},fontSizeMobile:{value:E,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:U,label:"subHeadFontSizeTablet"},lineHeightType:{value:j,label:"subHeadLineHeightType"},lineHeight:{value:F,label:"subHeadLineHeight"},lineHeightMobile:{value:D,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:z,label:"subHeadLineHeightTablet"},letterSpacing:{value:la,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:ia,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:oa,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:na,label:"subHeadLetterSpacingType"},transform:{value:Ft,label:"subHeadTransform"},decoration:{value:Vt,label:"subHeadDecoration"}}),_e&&React.createElement(Qa,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),setAttributes:i,value:X,data:{value:X,label:"contentSpace"},min:0,max:50,displayUnit:!1})),ye&&React.createElement(Fe,{title:Object(r.__)("Date","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Oe||"",data:{value:Oe,label:"dateColor"},setAttributes:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:i,loadGoogleFonts:{value:Ke,label:"dateLoadGoogleFonts"},fontFamily:{value:Ie,label:"dateFontFamily"},fontWeight:{value:Ve,label:"dateFontWeight"},fontStyle:{value:We,label:"dateFontStyle"},fontSizeType:{value:je,label:"dateFontSizeType"},fontSize:{value:ze,label:"dateFontSize"},fontSizeMobile:{value:Ne,label:"dateFontSizeMobile"},fontSizeTablet:{value:De,label:"dateFontSizeTablet"},lineHeightType:{value:qe,label:"dateLineHeightType"},lineHeight:{value:Ze,label:"dateLineHeight"},lineHeightMobile:{value:Ye,label:"dateLineHeightMobile"},lineHeightTablet:{value:$e,label:"dateLineHeightTablet"},letterSpacing:{value:ra,label:"dateLetterSpacing"},letterSpacingTablet:{value:sa,label:"dateLetterSpacingTablet"},letterSpacingMobile:{value:ca,label:"dateLetterSpacingMobile"},letterSpacingType:{value:ua,label:"dateLetterSpacingType"},transform:{value:zt,label:"dateTransform"},decoration:{value:Wt,label:"dateDecoration"}}),"center"!==La&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:be,label:"dateBottomspace"},tablet:{value:de,label:"dateBottomspaceTablet"},mobile:{value:me,label:"dateBottomspaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:i})),_e&&React.createElement(Fe,{title:Object(r.__)("CTA","ultimate-addons-for-gutenberg"),initialOpen:!1},!Ra&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:He||"",data:{value:He,label:"ctaColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Re||"",data:{value:Re,label:"ctaBackground"},setAttributes:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:i,loadGoogleFonts:{value:st,label:"ctaLoadGoogleFonts"},fontFamily:{value:tt,label:"ctaFontFamily"},fontWeight:{value:at,label:"ctaFontWeight"},fontStyle:{value:lt,label:"ctaFontStyle"},fontSizeType:{value:Je,label:"ctaFontSizeType"},fontSize:{value:Xe,label:"ctaFontSize"},fontSizeMobile:{value:et,label:"ctaFontSizeMobile"},fontSizeTablet:{value:Qe,label:"ctaFontSizeTablet"},lineHeightType:{value:it,label:"ctaLineHeightType"},lineHeight:{value:ot,label:"ctaLineHeight"},lineHeightMobile:{value:rt,label:"ctaLineHeightMobile"},lineHeightTablet:{value:nt,label:"ctaLineHeightTablet"},letterSpacing:{value:pa,label:"ctaLetterSpacing"},letterSpacingTablet:{value:ba,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:da,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:ga,label:"ctaLetterSpacingType"},transform:{value:Dt,label:"ctaTransform"},decoration:{value:qt,label:"ctaDecoration"}})),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Zt,label:"ctaBottomSpacing"},tablet:{value:$t,label:"ctaBottomSpacingTablet"},mobile:{value:Yt,label:"ctaBottomSpacingMobile"}},min:1,max:50,displayUnit:!1,setAttributes:i})),React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"backgroundColor"},setAttributes:i})),(()=>{const e=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Connector Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"separatorColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:Ue||"",data:{value:Ue,label:"iconColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"separatorBg"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"separatorBorder"},setAttributes:i})),t=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Connector Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"separatorFillColor"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:gt||"",data:{value:gt,label:"iconFocus"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Icon Background Color","ultimate-addons-for-gutenberg"),colorValue:mt||"",data:{value:mt,label:"iconBgFocus"},setAttributes:i}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"borderFocus"},setAttributes:i}));return React.createElement(Fe,{title:Object(r.__)("Connector","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"focus",title:Object(r.__)("Focus","ultimate-addons-for-gutenberg")}],normal:e,focus:t,disableBottomSeparator:!0}))})(),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,rG({},e,{label:Object(r.__)("Post Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Tt,label:"topPadding"},valueRight:{value:Ct,label:"rightPadding"},valueBottom:{value:St,label:"bottomPadding"},valueLeft:{value:wt,label:"leftPadding"},valueTopTablet:{value:kt,label:"topPaddingTablet"},valueRightTablet:{value:Pt,label:"rightPaddingTablet"},valueBottomTablet:{value:xt,label:"bottomPaddingTablet"},valueLeftTablet:{value:At,label:"leftPaddingTablet"},valueTopMobile:{value:Gt,label:"topPaddingMobile"},valueRightMobile:{value:Mt,label:"rightPaddingMobile"},valueBottomMobile:{value:Rt,label:"bottomPaddingMobile"},valueLeftMobile:{value:Bt,label:"leftPaddingMobile"},unit:{value:Ut,label:"paddingUnit"},mUnit:{value:Et,label:"mobilePaddingUnit"},tUnit:{value:Ot,label:"tabletPaddingUnit"},attributes:e,setAttributes:i,link:{value:Lt,label:"paddingLink"}})),React.createElement(tl,{label:Object(r.__)("Gap Between Posts","ultimate-addons-for-gutenberg"),data:{desktop:{value:va,label:"verticalSpace",unit:{value:Ca,label:"verticalSpaceUnit"}},tablet:{value:_a,label:"verticalSpaceTablet",unit:{value:Sa,label:"verticalSpaceUnitTablet"}},mobile:{value:Ta,label:"verticalSpaceMobile",unit:{value:wa,label:"verticalSpaceUnitMobile"}}},min:0,limitMax:{px:100,"%":100,em:100},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:i}),React.createElement(tl,{label:Object(r.__)("Post - Marker Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:ka,label:"horizontalSpace",unit:{value:Aa,label:"horizontalSpaceUnit"}},tablet:{value:Pa,label:"horizontalSpaceTablet",unit:{value:Ga,label:"horizontalSpaceUnitTablet"}},mobile:{value:xa,label:"horizontalSpaceMobile",unit:{value:Ma,label:"horizontalSpaceUnitMobile"}}},min:0,limitMax:{px:50,"%":100,em:50},units:[{name:Object(r.__)("PX","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:i}))),React.createElement(il,rG({},rl,{parentProps:e})))))}),uG=Object(B.memo)(e=>{const t=e.attributes.headingTag,{post:a,attributes:l}=e;let i="_self";return l.linkTarget&&(i="_blank"),React.createElement(t,{className:"uagb-timeline__heading"},React.createElement("a",{href:a.link,target:i,rel:"noopener noreferrer"},Object(mA.decodeEntities)(a.title.rendered.trim())))}),pG=Object(B.memo)(e=>{const{post:t,attributes:a}=e;if(a.displayPostImage&&void 0!==t.uagb_featured_image_src&&a.imageSize&&t.uagb_featured_image_src[a.imageSize]){const e=t.uagb_featured_image_src[a.imageSize];let l="_self";return a.linkTarget&&(l="_blank"),React.createElement("a",{href:t.link,target:l,rel:"noopener noreferrer",style:{textAlign:a.align},className:"uagb-timeline__image"},React.createElement("img",{src:e[0],alt:Object(mA.decodeEntities)(t.title.rendered.trim())||Object(r.__)("(Untitled)","ultimate-addons-for-gutenberg")}))}return null}),bG=Object(B.memo)(e=>{const{post:t,attributes:a}=e,l=Ps(a.contentSpace,"contentSpace","post-timeline"),i=Ps(a.exerptLength,"exerptLength","post-timeline");let o;if(a.displayPostExcerpt&&t.uagb_excerpt){o=t.uagb_excerpt.split(/\s+/).slice(0,i).join(" ");let e="";return a.displayPostLink&&(e=l+"px"),React.createElement("div",{className:"uagb-timeline-desc-content",dangerouslySetInnerHTML:{__html:o},style:{marginBottom:e}})}return null}),dG=Object(B.memo)(e=>{const{post:t,attributes:a,setAttributes:l}=e;let i="_self";a.linkTarget&&(i="_blank");const o=a.inheritFromTheme&&"secondary"===a.buttonType,n=o?{borderWidth:"revert-layer"}:{},r="uagb-timeline__link "+(o?"ast-outline-button":"wp-block-button__link"),s=o?"div":"a";return a.displayPostLink?"not_set"!==l?React.createElement("div",{className:"uagb-timeline__link_parent wp-block-button"},React.createElement(ge.RichText,{value:a.readMoreText.replace(/(<([^>]+)>)/gi,""),onChange:e=>{l({readMoreText:e})},tagName:s,className:r,href:t.link,target:i,rel:"noopener noreferrer",style:n})):React.createElement("div",{className:"uagb-timeline__link_parent wp-block-button"},React.createElement("a",{className:"uagb-timeline__link wp-block-button__link",href:t.link,target:i,rel:"noopener noreferrer"},React.createElement(ge.RichText.Content,{value:a.readMoreText.replace(/(<([^>]+)>)/gi,"")}))):null}),gG=Object(B.memo)(e=>{const{post:t,attributes:a}=e;let l="_self";return a.linkTarget&&(l="_blank"),React.createElement(React.Fragment,null,a.displayPostAuthor&&void 0!==t.uagb_author_info&&React.createElement(React.Fragment,null,React.createElement("span",{className:"dashicons-admin-users dashicons"}),React.createElement("a",{className:"uagb-timeline__author-link",target:l,href:t.uagb_author_info.author_link,rel:"noopener noreferrer"},t.uagb_author_info.display_name)))}),mG=Object(B.memo)(e=>{const{post:t,attributes:a,dateClass:l}=e;return React.createElement(React.Fragment,null,React.createElement("div",{dateTime:Object(Qh.format)("c",t.date_gmt),className:l,style:{color:a.dateColor}},a.displayPostDate&&t.date_gmt&&Object(Qh.dateI18n)(a.dateFormat,t.date_gmt)))}),yG=Object(B.memo)(e=>{const{attributes:t}=e;return React.createElement("div",{className:"uagb-timeline__marker uagb-timeline__out-view-icon uagb-timeline__icon-new"},Ce(t.icon)?Ce(t.icon):React.createElement("svg",{xmlns:"",viewBox:"0 0 256 512"}))}),fG=a(136),hG=0,vG={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},_G={};_G.locals=fG.a.locals||{},_G.use=function(){return hG++||(sG=ke()(fG.a,vG)),_G},_G.unuse=function(){hG>0&&!--hG&&(sG(),sG=null)};var TG=_G,CG=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(TG.use(),()=>{TG.unuse()}),[]);const{latestPosts:t,attributes:a,className:l,setAttributes:i,deviceType:o,name:n}=e,s=n.replace("uagb/",""),{displayPostLink:c,postsToShow:u,block_id:p}=a,b=void 0!==a["timelinAlignment"+o]?a["timelinAlignment"+o]:a.timelinAlignment,d=Ps(u,"postsToShow",s);let g="";return c&&(g="uagb_timeline__cta-enable"),React.createElement("div",{className:Be()(l,"uagb-timeline__outer-wrap","uagb-timeline__content-wrap","uagb-editor-preview-mode-"+o.toLowerCase(),"uagb-block-"+p,g,...Ov(e.attributes,o))},(()=>{if(!Array.isArray(t)||!t.length)return React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Post Timeline","ultimate-addons-for-gutenberg")},Array.isArray(t)?Object(r.__)("No posts found.","ultimate-addons-for-gutenberg"):React.createElement(Le.Spinner,null));const l=t.length>d?t.slice(0,d):t;let n=Lv(e.attributes,0,o),s=Hv(e.attributes,0,o),c=!1;return React.createElement(React.Fragment,null,l.map((t,l)=>("center"===b&&(c=!0,n=Lv(e.attributes,l,o),s=Hv(e.attributes,l,o)),React.createElement("article",{className:Be()("uagb-timeline__field ",n),key:l},React.createElement(yG,{attributes:a}),React.createElement("div",{className:Be()(s,"uagb-timeline__events-inner-new")},React.createElement("div",{className:"uagb-timeline__events-inner--content"},React.createElement(mG,{post:t,attributes:a,dateClass:"uagb-timeline__date-hide uagb-timeline__inner-date-new"}),React.createElement(pG,{post:t,attributes:a}),React.createElement(uG,{post:t,attributes:a}),React.createElement(gG,{post:t,attributes:a}),React.createElement(bG,{post:t,attributes:a}),React.createElement(dG,{post:t,attributes:a,setAttributes:i}),React.createElement("div",{className:"uagb-timeline__arrow"}))),c&&React.createElement(React.Fragment,null,React.createElement(mG,{post:t,attributes:a,dateClass:"uagb-timeline__date-new"}))))))})(),React.createElement("div",{className:"uagb-timeline__line"},React.createElement("div",{className:"uagb-timeline__line__inner"})))});function SG(){return(SG=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var wG=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,name:i,clientId:o,deviceType:r,attributes:{categories:s,postsToShow:c,order:u,orderBy:p,postType:b,taxonomyType:d,excludeCurrentPost:g,allTaxonomyStore:m,timelinAlignment:y,stack:f,timelinAlignmentTablet:h,timelinAlignmentMobile:v,UAGHideDesktop:_,UAGHideTab:T,UAGHideMob:C,dateFontSizeType:S,dateFontSize:k,dateFontSizeTablet:P,dateFontSizeMobile:x,dateFontsizeType:A,dateFontsize:G,dateFontsizeTablet:M,dateFontsizeMobile:R}}=e,[U,E]=Object(B.useState)(!1);Object(B.useEffect)(()=>{y&&("none"===f?(void 0===h&&a({timelinAlignmentTablet:y}),void 0===v&&a({timelinAlignmentMobile:y})):(void 0===h&&"tablet"===f&&(a({timelinAlignmentTablet:"left"}),a({timelinAlignmentMobile:"left"})),void 0===v&&"mobile"===f&&(a({timelinAlignmentMobile:"left"}),a({timelinAlignmentTablet:y}))))},[]),Object(B.useEffect)(()=>{void 0===S&&a({dateFontSizeType:A}),void 0===k&&a({dateFontSize:G}),void 0===P&&a({dateFontSizeTablet:M}),void 0===x&&a({dateFontSizeMobile:R})},[]),Object(B.useEffect)(()=>{he(e)},[_,T,C,r]),Object(B.useEffect)(()=>{const e=new CustomEvent("UAGTimelineEditor",{detail:{}});document.dispatchEvent(e)},[e,r]),Object(B.useEffect)(()=>{Bs()},[r]);let O=[];const{latestPosts:L,taxonomyList:H,block:j}=Object(n.useSelect)(e=>{const t=Ps(c,"postsToShow","post-timeline"),{getEntityRecords:l}=e("core");m||U||(E(!0),w()({path:"/spectra/v1/all_taxonomy"}).then(e=>{a({allTaxonomyStore:e}),E(!1)}));const i=m?m[b]:void 0;let o="";void 0!==i&&(void 0!==i.taxonomy[d]&&(o=!1===i.taxonomy[d].rest_base||null===i.taxonomy[d].rest_base?i.taxonomy[d].name:i.taxonomy[d].rest_base),""!==d&&void 0!==i.terms&&void 0!==i.terms[d]&&(O=i.terms[d]));const n={order:u,orderby:p,per_page:t};if(g){const t=e("core/editor");n.exclude=null!=t&&t.getCurrentPostId?t.getCurrentPostId():null}const r=[],y=parseInt(s);r.push(y);const f=O.length;for(let e=0;e<f;e++)O[e].id===y&&0!==O[e].child.length&&O[e].child.forEach(e=>{r.push(e)});return void 0!==s&&""!==s&&(n[o]=void 0===s||""===s?s:r),{latestPosts:l("postType",b,n),categoriesList:O,taxonomyList:void 0!==i?i.taxonomy:[]}}),F=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,dateBottomspace:r,dateBottomspaceTablet:s,dateBottomspaceMobile:c,backgroundColor:u,separatorColor:p,separatorFillColor:b,separatorBg:d,separatorBorder:g,borderFocus:m,separatorwidth:y,borderwidth:f,connectorBgsize:h,borderRadius:v,borderRadiusTablet:_,borderRadiusMobile:T,iconColor:C,dateFontSizeType:S,dateFontSize:w,dateFontSizeTablet:k,dateFontSizeMobile:P,dateFontFamily:x,dateFontWeight:A,dateLineHeightType:G,dateLineHeight:M,dateLineHeightTablet:R,dateLineHeightMobile:B,dateColor:U,iconSize:E,iconFocus:O,iconBgFocus:L,headFontSizeType:H,headFontSize:j,headFontSizeTablet:F,headFontSizeMobile:z,headFontFamily:D,headFontWeight:N,headLineHeightType:I,headLineHeight:V,headLineHeightTablet:W,headLineHeightMobile:q,align:Z,alignTablet:$,alignMobile:Y,headingColor:K,headSpace:J,headSpaceTablet:X,headSpaceMobile:Q,subHeadFontSizeType:ee,subHeadFontSize:te,subHeadFontSizeTablet:le,subHeadFontSizeMobile:ie,subHeadFontFamily:oe,subHeadFontWeight:ne,subHeadLineHeightType:re,subHeadLineHeight:se,subHeadLineHeightTablet:ce,subHeadLineHeightMobile:ue,subHeadingColor:pe,authorSpace:be,authorSpaceTablet:de,authorSpaceMobile:ge,authorColor:me,authorFontSizeType:ye,authorFontSize:fe,authorFontSizeTablet:he,authorFontSizeMobile:ve,authorFontFamily:_e,authorFontWeight:Te,authorLineHeightType:Ce,authorLineHeight:Se,authorLineHeightTablet:we,authorLineHeightMobile:ke,ctaColor:Pe,ctaFontSizeType:xe,ctaFontSize:Ae,ctaFontSizeTablet:Ge,ctaFontSizeMobile:Me,ctaFontFamily:Re,ctaFontWeight:Be,ctaLineHeightType:Ue,ctaLineHeight:Ee,ctaLineHeightTablet:Oe,ctaLineHeightMobile:Le,ctaBackground:He,topMarginMobile:je,rightMarginMobile:Fe,bottomMarginMobile:ze,leftMarginMobile:De,mobileMarginUnit:Ne,topPadding:Ie,rightPadding:Ve,bottomPadding:We,leftPadding:qe,topPaddingTablet:Ze,rightPaddingTablet:$e,bottomPaddingTablet:Ye,leftPaddingTablet:Ke,topPaddingMobile:Je,rightPaddingMobile:Xe,bottomPaddingMobile:Qe,leftPaddingMobile:et,paddingUnit:tt,mobilePaddingUnit:at,tabletPaddingUnit:lt,headFontStyle:it,authorFontStyle:ot,subHeadFontStyle:nt,dateFontStyle:rt,ctaFontStyle:st,headTransform:ct,authorTransform:ut,subHeadTransform:pt,dateTransform:bt,ctaTransform:dt,headDecoration:gt,authorDecoration:mt,subHeadDecoration:yt,dateDecoration:ft,ctaDecoration:ht,ctaBottomSpacing:vt,ctaBottomSpacingTablet:_t,ctaBottomSpacingMobile:Tt,headTopSpacing:Ct,headTopSpacingTablet:St,headTopSpacingMobile:wt,headLetterSpacing:kt,headLetterSpacingTablet:Pt,headLetterSpacingMobile:xt,headLetterSpacingType:At,subHeadLetterSpacing:Gt,subHeadLetterSpacingTablet:Mt,subHeadLetterSpacingMobile:Rt,subHeadLetterSpacingType:Bt,dateLetterSpacing:Ut,dateLetterSpacingTablet:Et,dateLetterSpacingMobile:Ot,dateLetterSpacingType:Lt,ctaLetterSpacing:Ht,ctaLetterSpacingTablet:jt,ctaLetterSpacingMobile:Ft,ctaLetterSpacingType:zt,authorLetterSpacing:Dt,authorLetterSpacingTablet:Nt,authorLetterSpacingMobile:It,authorLetterSpacingType:Vt,verticalSpace:Wt,verticalSpaceTablet:qt,verticalSpaceMobile:Zt,verticalSpaceUnit:$t,verticalSpaceUnitTablet:Yt,verticalSpaceUnitMobile:Kt,horizontalSpace:Jt,horizontalSpaceTablet:Xt,horizontalSpaceMobile:Qt,horizontalSpaceUnit:ea,horizontalSpaceUnitTablet:ta,horizontalSpaceUnitMobile:aa,inheritFromTheme:la}=e,ia=Ps(E,"iconSize",i),oa=Ps(h,"connectorBgsize",i),na=Ps(f,"borderwidth",i),ra=Ps(y,"separatorwidth",i),sa=Ps(v,"borderRadius",i),ca=Ps(Ct,"headTopSpacing",i),ua=Ps(J,"headSpace",i),pa=Ps(be,"authorSpace",i),ba=Ps(r,"dateBottomspace",i),da=Ps(vt,"ctaBottomSpacing",i);let ga={" .uagb-timeline__heading":{"font-size":ns(j,H),"font-family":D,"font-weight":N,"line-height":ns(V,I),"font-style":it,"text-decoration":gt,"text-transform":ct,"text-align":Z,color:K,"margin-bottom":ns(ua,"px"),"margin-top":ns(ca,"px"),"letter-spacing":ns(kt,At)}," .uagb-timeline__heading a":{"font-size":ns(j,H),"font-family":D,"font-weight":N,"line-height":ns(V,I),"font-style":it,"text-decoration":gt,"text-transform":ct,"text-align":Z,color:K,"margin-bottom":ns(ua,"px"),"letter-spacing":ns(kt,At)}," .uagb-timeline-desc-content":{"font-size":ns(te,ee),"font-family":oe,"font-weight":ne,"line-height":ns(se,re),"font-style":nt,"text-decoration":yt,"text-transform":pt,"text-align":Z,color:pe,"margin-top":ns(pa,"px"),"letter-spacing":ns(Gt,Bt)}," .uagb-timeline__author-link + .uagb-timeline__link_parent":{"margin-top":ns(pa,"px")}," .uagb-timeline__day-new":{"text-align":Z}," .uagb-timeline__date-inner":{"text-align":Z},".uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-left-color":u},".uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-left-color":u},".uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-right-color":u},".uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after":{"border-right-color":u}," .uagb-timeline__line__inner":{"background-color":b}," .uagb-timeline__line":{"background-color":p,width:ns(ra,"px")},".uagb-timeline__right-block .uagb-timeline__line":{right:"calc( "+oa+"px / 2 )"},".uagb-timeline__left-block .uagb-timeline__line":{left:"calc( "+oa+"px / 2 )"},".uagb-timeline__center-block .uagb-timeline__line":{right:"calc( "+oa+"px / 2 )"}," .uagb-timeline__marker":{"background-color":d,"min-height":ns(oa,"px"),"min-width":ns(oa,"px"),"line-height":ns(oa,"px"),border:na+"px solid"+g},".uagb-timeline__center-block .uagb-timeline__marker":{"margin-left":ns(Jt,ea),"margin-right":ns(Jt,ea)},".uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(oa,"px")},".uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(oa,"px")},".uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow":{height:ns(oa,"px")},".uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow":{height:ns(oa,"px")}," .uagb-timeline__field:not(:last-child)":{"margin-bottom":ns(Wt,$t)}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"margin-bottom":ns(ba,"px"),color:U,"font-size":ns(w,S),"font-family":x,"font-weight":A,"line-height":ns(M,G),"font-style":rt,"text-decoration":ft,"text-transform":bt,"text-align":Z,"letter-spacing":ns(Ut,Lt)}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"margin-bottom":ns(ba,"px"),color:U,"font-size":ns(w,S),"font-family":x,"font-weight":A,"line-height":ns(M,G),"font-style":rt,"text-decoration":ft,"text-transform":bt,"text-align":Z,"letter-spacing":ns(Ut,Lt)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(Jt,ea)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-right":ns(Jt,ea)}," .uagb-timeline__date-new":{color:U,"font-size":ns(w,S),"font-family":x,"font-weight":A,"line-height":ns(M,G),"font-style":rt,"text-decoration":ft,"text-transform":bt,"letter-spacing":ns(Ut,Lt)}," .uagb-timeline__events-inner-new":{"background-color":u,"border-radius":ns(sa,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(qe,tt),"padding-right":ns(Ve,tt),"padding-top":ns(Ie,tt),"padding-bottom":ns(We,tt)}," svg":{color:C,"font-size":ns(ia,"px"),width:ns(ia,"px")}," .uagb-timeline__marker.uagb-timeline__in-view-icon":{background:L,"border-color":m}," .uagb-timeline__marker.uagb-timeline__in-view-icon svg":{color:O,fill:O}," .uagb-timeline__icon-new svg":{fill:C}," .dashicons-admin-users":{"font-size":ns(fe,ye),"font-weight":Te,"line-height":ns(Se,Ce),color:me,"font-style":ot,"text-decoration":mt,"text-transform":ut,"letter-spacing":ns(Dt,Vt)}," .uagb-timeline__author-link":{"font-size":ns(fe,ye),"font-family":_e,"font-weight":Te,"line-height":ns(Se,Ce),color:me,"font-style":ot,"text-decoration":mt,"text-transform":ut,"text-align":Z,"letter-spacing":ns(Dt,Vt)}," .uagb-timeline__link_parent":{"text-align":Z}," .uagb-timeline__link":{"text-align":Z,"margin-bottom":ns(da,"px")}},ma={" .uagb-timeline__day-new":{"text-align":$}," .uagb-timeline__date-inner":{"text-align":$}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":$,"font-size":ns(k,S),"line-height":ns(R,G),"margin-bottom":ns(s,"px"),"letter-spacing":ns(Et,Lt)}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"text-align":$,"font-size":ns(k,S),"line-height":ns(R,G),"margin-bottom":ns(s,"px"),"letter-spacing":ns(Et,Lt)}," .uagb-timeline__date-new":{"font-size":ns(k,S),"line-height":ns(R,G),"margin-bottom":ns(s,"px"),"letter-spacing":ns(Et,Lt)}," .uagb-timeline__heading":{"text-align":$,"font-size":ns(F,H),"line-height":ns(W,I),"margin-bottom":ns(X,"px"),"margin-top":ns(St,"px"),"letter-spacing":ns(Pt,At)}," .uagb-timeline__heading a":{"text-align":$,"font-size":ns(F,H),"line-height":ns(W,I),"margin-bottom":ns(X,"px"),"margin-top":ns(St,"px"),"letter-spacing":ns(Pt,At)}," .uagb-timeline-desc-content":{"text-align":$,"font-size":ns(le,ee),"line-height":ns(ce,re),"margin-top":ns(de,"px"),"letter-spacing":ns(Mt,Bt)}," .uagb-timeline__author-link + .uagb-timeline__link_parent":{"margin-top":ns(de,"px")},".uagb-timeline__center-block .uagb-timeline__marker":{"margin-left":ns(Xt,ta),"margin-right":ns(Xt,ta)},".uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(Xt,ta)},".uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-right":ns(Xt,ta)},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-right-color":u},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__heading":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-desc-content":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-inner":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__author-link":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__link_parent":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__link":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__image a":{"text-align":$},".uagb-timeline__center-block.uagb-timeline__responsive-tablet a.uagb-timeline__image":{"text-align":$}," .dashicons-admin-users":{"font-size":ns(he,ye),"line-height":ns(we,Ce),"letter-spacing":ns(Nt,Vt)}," .uagb-timeline__link_parent":{"text-align":$}," .uagb-timeline__author-link":{"text-align":$,"font-size":ns(he,ye),"line-height":ns(we,Ce),"letter-spacing":ns(Nt,Vt)}," .uagb-timeline__link":{"text-align":$,"margin-bottom":ns(_t,"px")}," .uagb-timeline__events-inner-new":{"border-radius":ns(_,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(Ke,lt),"padding-right":ns($e,lt),"padding-top":ns(Ze,lt),"padding-bottom":ns(Ye,lt)}," .uagb-timeline__field:not(:last-child)":{"margin-bottom":ns(qt,Yt)}},ya={" .uagb-timeline__day-new":{"text-align":Y}," .uagb-timeline__date-inner":{"text-align":Y}," .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":Y,"font-size":ns(P,S),"line-height":ns(B,G),"margin-bottom":ns(c,"px"),"letter-spacing":ns(Ot,Lt)}," .uagb-timeline__date-hide.uagb-timeline__inner-date-new":{"text-align":Y,"font-size":ns(P,S),"line-height":ns(B,G),"margin-bottom":ns(c,"px"),"letter-spacing":ns(Ot,Lt)}," .uagb-timeline__date-new":{"font-size":ns(P,S),"line-height":ns(B,G),"margin-bottom":ns(c,"px"),"letter-spacing":ns(Ot,Lt)}," .uagb-timeline__heading":{"text-align":Y,"font-size":ns(z,H),"line-height":ns(q,I),"margin-bottom":ns(Q,"px"),"margin-top":ns(wt,"px"),"letter-spacing":ns(xt,At)}," .uagb-timeline__heading a":{"text-align":Y,"font-size":ns(z,H),"line-height":ns(q,I),"margin-bottom":ns(Q,"px"),"margin-top":ns(wt,"px"),"letter-spacing":ns(xt,At)}," .uagb-timeline-desc-content":{"text-align":Y,"font-size":ns(ie,ee),"line-height":ns(ue,re),"margin-top":ns(ge,"px"),"letter-spacing":ns(Rt,Bt)}," .uagb-timeline__author-link + .uagb-timeline__link_parent":{"margin-top":ns(ge,"px")},".uagb-timeline__center-block .uagb-timeline__marker":{"margin-left":ns(Qt,aa),"margin-right":ns(Qt,aa)},".uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-left":{"margin-left":ns(De,Ne),"margin-right":ns(Fe,Ne),"margin-top":ns(je,Ne),"margin-bottom":ns(ze,Ne)},".uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-right":{"margin-left":ns(De,Ne),"margin-right":ns(Fe,Ne),"margin-top":ns(je,Ne),"margin-bottom":ns(ze,Ne)},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after":{"border-right-color":u},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__heading":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-desc-content":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-inner":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide.uagb-timeline__date-inner":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__author-link":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__link_parent":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__link":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__image a":{"text-align":Y},".uagb-timeline__center-block.uagb-timeline__responsive-mobile a.uagb-timeline__image":{"text-align":Y}," .dashicons-admin-users":{"font-size":ns(ve,ye),"line-height":ns(ke,Ce),"letter-spacing":ns(It,Vt)}," .uagb-timeline__link_parent":{"text-align":Y}," .uagb-timeline__author-link":{"text-align":Y,"font-size":ns(ve,ye),"line-height":ns(ke,Ce),"letter-spacing":ns(It,Vt)}," .uagb-timeline__link":{"text-align":Y,"margin-bottom":ns(Tt,"px")}," .uagb-timeline__events-inner--content":{"padding-left":ns(et,at),"padding-right":ns(Xe,at),"padding-top":ns(Je,at),"padding-bottom":ns(Qe,at)}," .uagb-timeline__events-inner-new":{"border-radius":ns(T,"px")}," .uagb-timeline__field:not(:last-child)":{"margin-bottom":ns(Zt,Kt)}};la||(ga={...ga," .uagb-timeline__link_parent .uagb-timeline__link":{"font-size":ns(Ae,xe),"font-family":Re,"font-weight":Be,"line-height":ns(Ee,Ue),color:Pe,"background-color":He,"font-style":st,"text-decoration":ht,"text-transform":dt,"letter-spacing":ns(Ht,zt)}},ma={...ma," .uagb-timeline__link_parent .uagb-timeline__link":{"font-size":ns(Ge,xe),"line-height":ns(Oe,Ue),"letter-spacing":ns(jt,zt)}},ya={...ya," .uagb-timeline__link_parent .uagb-timeline__link":{"font-size":ns(Me,xe),"line-height":ns(Le,Ue),"letter-spacing":ns(Ft,zt)}});let fa="";const ha=`.editor-styles-wrapper .uagb-block-${n}.uagb-timeline__outer-wrap`;return fa=ae(ga,ha),"tablet"!==o&&"mobile"!==o||(fa+=ae(ma,""+ha,!0,"tablet"),"mobile"===o&&(fa+=ae(ya,""+ha,!0,"mobile"))),fa}(l,0,i,r),[l,r]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:F}),React.createElement(nG,{attributes:l}),t&&React.createElement(cG,SG({},e,{taxonomyList:H,categoriesList:O})),React.createElement(CG,SG({},e,{latestPosts:L})))});let kG={};kG=Object(j.applyFilters)("uagb/post-timeline",ws(kG)),Object(be.registerBlockType)("uagb/post-timeline",{...kG,title:Object(r.__)("Post Timeline","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create an attractive timeline to display your posts.","ultimate-addons-for-gutenberg"),icon:se.post_timeline,keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("timeline","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"post-timeline"}):React.createElement(wG,e),save:()=>null});const PG=[{defaultAttributes:Pt},{defaultChildAttributes:xt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"imgAlign",value:"side"},{label:"imageAlignment",value:"middle"},{label:"imageWidth",value:150},{label:"imageWidthTablet",value:150},{label:"imageWidthMobile",value:150},{label:"imgPaddingRight",value:10},{label:"imgPaddingRightTablet",value:10},{label:"imgPaddingRightMobile",value:10},{label:"columnGap",value:50},{label:"columnGapTablet",value:50},{label:"columnGapMobile",value:50},{label:"contentPaddingTop",value:25},{label:"contentPaddingTopTablet",value:25},{label:"contentPaddingTopMobile",value:25},{label:"contentPaddingBottom",value:35},{label:"contentPaddingBottomTablet",value:35},{label:"contentPaddingBottomTablet",value:35},{label:"headingAlign",value:""},{label:"seperatorStyle",value:"dashed"},{label:"seperatorWidth",value:100},{label:"seperatorWidthTablet",value:100},{label:"seperatorWidthMobile",value:100},{label:"seperatorThickness",value:1},{label:"imgPaddingBottom",value:""},{label:"imgPaddingBottomTablet",value:""},{label:"imgPaddingBottomMobile",value:25},{label:"imagePosition",value:"left"},{label:"stack",value:"mobile"},{label:"showImage",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M47 97V120H77.5H108V97V74H77.5H47V97ZM63.9775 80.0748C67.1925 80.7431 69.6325 83.72 69.6325 86.9744C69.6325 90.7907 66.3432 94.0472 62.4883 94.0472C59.2011 94.0472 56.1941 91.6316 55.519 88.4487C55.0099 86.0479 55.7038 83.7619 57.4735 82.0098C59.2443 80.2567 61.551 79.5705 63.9775 80.0748ZM99.332 90.247L104.426 95.2887V105.875V116.462H77.5H50.5742V115.193V113.925L58.0203 106.554L65.4664 99.1831L69.1007 102.78L72.735 106.376L83.4275 95.7907C89.3084 89.9686 94.1466 85.2051 94.1791 85.2051C94.2116 85.2051 96.5305 87.474 99.332 90.247Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M247 159C247 157.343 248.088 156 249.431 156H275.569C276.912 156 278 157.343 278 159C278 160.657 276.912 162 275.569 162H249.431C248.088 162 247 160.657 247 159Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M47 176V199H77.5H108V176V153H77.5H47V176ZM63.9775 159.075C67.1925 159.743 69.6325 162.72 69.6325 165.974C69.6325 169.791 66.3432 173.047 62.4883 173.047C59.2011 173.047 56.1941 170.632 55.519 167.449C55.0099 165.048 55.7038 162.762 57.4735 161.01C59.2443 159.257 61.551 158.57 63.9775 159.075ZM99.332 169.247L104.426 174.289V184.875V195.462H77.5H50.5742V194.193V192.925L58.0203 185.554L65.4664 178.183L69.1007 181.78L72.735 185.376L83.4275 174.791C89.3084 168.969 94.1466 164.205 94.1791 164.205C94.2116 164.205 96.5305 166.474 99.332 169.247Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M247 79C247 77.3431 248.088 76 249.431 76H275.569C276.912 76 278 77.3431 278 79C278 80.6569 276.912 82 275.569 82H249.431C248.088 82 247 80.6569 247 79Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 96C122 94.3431 123.138 93 124.542 93H207.259C208.663 93 209.801 94.3431 209.801 96C209.801 97.6569 208.663 99 207.259 99H124.542C123.138 99 122 97.6569 122 96Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 111C122 109.343 123.138 108 124.542 108H193.259C194.663 108 195.801 109.343 195.801 111C195.801 112.657 194.663 114 193.259 114H124.542C123.138 114 122 112.657 122 111Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 78.0025C122 75.792 123.668 74 125.725 74H218.04C220.097 74 221.765 75.792 221.765 78.0025C221.765 80.2131 220.097 82.0051 218.04 82.0051H125.725C123.668 82.0051 122 80.2131 122 78.0025Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 175C122 173.343 123.138 172 124.542 172H207.259C208.663 172 209.801 173.343 209.801 175C209.801 176.657 208.663 178 207.259 178H124.542C123.138 178 122 176.657 122 175Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 190C122 188.343 123.138 187 124.542 187H193.259C194.663 187 195.801 188.343 195.801 190C195.801 191.657 194.663 193 193.259 193H124.542C123.138 193 122 191.657 122 190Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M122 157.003C122 154.792 123.668 153 125.725 153H218.04C220.097 153 221.765 154.792 221.765 157.003C221.765 159.213 220.097 161.005 218.04 161.005H125.725C123.668 161.005 122 159.213 122 157.003Z" fill="#B6B6B6"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"imgAlign",value:"top"},{label:"headingAlign",value:"center"},{label:"imageWidth",value:150},{label:"imageWidthTablet",value:140},{label:"imageWidthMobile",value:130},{label:"seperatorStyle",value:"none"},{label:"imgPaddingBottom",value:20},{label:"imgPaddingBottomTablet",value:20},{label:"imgPaddingBottomMobile",value:20},{label:"columnGap",value:40},{label:"columnGapTablet",value:40},{label:"columnGapMobile",value:40},{label:"contentPaddingTop",value:5},{label:"contentPaddingTopTablet",value:5},{label:"contentPaddingTopMobile",value:5},{label:"contentPaddingBottom",value:5},{label:"contentPaddingBottomTablet",value:5},{label:"contentPaddingBottomMobile",value:5},{label:"imageAlignment",value:""},{label:"imgPaddingTop",value:10},{label:"imgPaddingTopTablet",value:""},{label:"imgPaddingTopMobile",value:""},{label:"imgPaddingRight",value:""},{label:"imgPaddingRightTablet",value:""},{label:"imgPaddingRightMobile",value:""},{label:"showImage",value:!0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M140 198C140 196.343 141.608 195 143.591 195H182.202C184.186 195 185.794 196.343 185.794 198C185.794 199.657 184.186 201 182.202 201H143.591C141.608 201 140 199.657 140 198Z" fill="#CCCCCC"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M133 95V118H163.5H194V95V72H163.5H133V95ZM149.978 78.0748C153.193 78.7431 155.633 81.72 155.633 84.9744C155.633 88.7907 152.343 92.0472 148.488 92.0472C145.201 92.0472 142.194 89.6316 141.519 86.4487C141.01 84.0479 141.704 81.7619 143.474 80.0098C145.244 78.2567 147.551 77.5705 149.978 78.0748ZM185.332 88.247L190.426 93.2887V103.875V114.462H163.5H136.574V113.193V111.925L144.02 104.554L151.466 97.1831L155.101 100.78L158.735 104.376L169.427 93.7907C175.308 87.9686 180.147 83.2051 180.179 83.2051C180.212 83.2051 182.53 85.474 185.332 88.247Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 158C58 156.343 59.138 155 60.5418 155H266.259C267.663 155 268.801 156.343 268.801 158C268.801 159.657 267.663 161 266.259 161H60.5418C59.138 161 58 159.657 58 158Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M84.0166 175C84.0166 173.343 85.1483 172 86.5442 172H240.257C241.653 172 242.784 173.343 242.784 175C242.784 176.657 241.653 178 240.257 178H86.5442C85.1483 178 84.0166 176.657 84.0166 175Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86 137.003C86 134.792 87.6678 133 89.7252 133H237.04C239.097 133 240.765 134.792 240.765 137.003C240.765 139.213 239.097 141.005 237.04 141.005H89.7252C87.6678 141.005 86 139.213 86 137.003Z" fill="#B6B6B6"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"imgAlign",value:"top"},{label:"headingAlign",value:"center"},{label:"seperatorStyle",value:"solid"},{label:"seperatorWidth",value:33},{label:"seperatorWidthTablet",value:33},{label:"seperatorWidthMobile",value:33},{label:"seperatorThickness",value:1},{label:"columnGap",value:40},{label:"columnGapTablet",value:40},{label:"columnGapMobile",value:40},{label:"contentPaddingTop",value:10},{label:"contentPaddingTopTablet",value:10},{label:"contentPaddingTopMobile",value:10},{label:"contentPaddingBottom",value:10},{label:"contentPaddingBottomTablet",value:10},{label:"contentPaddingBottomMobile",value:10},{label:"imageAlignment",value:""},{label:"showImage",value:!1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M140 120C140 118.343 141.608 117 143.591 117H182.202C184.186 117 185.794 118.343 185.794 120C185.794 121.657 184.186 123 182.202 123H143.591C141.608 123 140 121.657 140 120Z" fill="#CCCCCC"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M88 82C88 80.3431 89.138 79 90.5418 79H236.259C237.663 79 238.801 80.3431 238.801 82C238.801 83.6569 237.663 85 236.259 85H90.5418C89.138 85 88 83.6569 88 82Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M109 99C109 97.3431 110.132 96 111.528 96H215.24C216.636 96 217.768 97.3431 217.768 99C217.768 100.657 216.636 102 215.24 102H111.528C110.132 102 109 100.657 109 99Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M91 59.0025C91 56.792 92.6678 55 94.7252 55H232.04C234.097 55 235.765 56.792 235.765 59.0025C235.765 61.2131 234.097 63.0051 232.04 63.0051H94.7252C92.6678 63.0051 91 61.2131 91 59.0025Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M140 215C140 213.343 141.608 212 143.591 212H182.202C184.186 212 185.794 213.343 185.794 215C185.794 216.657 184.186 218 182.202 218H143.591C141.608 218 140 216.657 140 215Z" fill="#CCCCCC"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M88 177C88 175.343 89.138 174 90.5418 174H236.259C237.663 174 238.801 175.343 238.801 177C238.801 178.657 237.663 180 236.259 180H90.5418C89.138 180 88 178.657 88 177Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M109 194C109 192.343 110.132 191 111.528 191H215.24C216.636 191 217.768 192.343 217.768 194C217.768 195.657 216.636 197 215.24 197H111.528C110.132 197 109 195.657 109 194Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M91 154.003C91 151.792 92.6678 150 94.7252 150H232.04C234.097 150 235.765 151.792 235.765 154.003C235.765 156.213 234.097 158.005 232.04 158.005H94.7252C92.6678 158.005 91 156.213 91 154.003Z" fill="#B6B6B6"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"imgAlign",value:"side"},{label:"headingAlign",value:"center"},{label:"seperatorStyle",value:"solid"},{label:"seperatorWidth",value:33},{label:"seperatorWidthTablet",value:33},{label:"seperatorWidthMobile",value:33},{label:"seperatorThickness",value:1},{label:"columnGap",value:50},{label:"columnGapTablet",value:50},{label:"columnGapMobile",value:50},{label:"contentPaddingTop",value:10},{label:"contentPaddingTopTablet",value:10},{label:"contentPaddingTopMobile",value:10},{label:"contentPaddingBottom",value:10},{label:"contentPaddingBottomTablet",value:10},{label:"contentPaddingBottomMobile",value:10},{label:"imageAlignment",value:""},{label:"imagePosition",value:"left"},{label:"showImage",value:!1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M210 81C210 79.3431 211.088 78 212.431 78H238.569C239.912 78 241 79.3431 241 81C241 82.6569 239.912 84 238.569 84H212.431C211.088 84 210 82.6569 210 81Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 98C85 96.3431 86.138 95 87.5418 95H170.259C171.663 95 172.801 96.3431 172.801 98C172.801 99.6569 171.663 101 170.259 101H87.5418C86.138 101 85 99.6569 85 98Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 113C85 111.343 86.138 110 87.5418 110H156.259C157.663 110 158.801 111.343 158.801 113C158.801 114.657 157.663 116 156.259 116H87.5418C86.138 116 85 114.657 85 113Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 80.0025C85 77.792 86.6678 76 88.7252 76H181.04C183.097 76 184.765 77.792 184.765 80.0025C184.765 82.2131 183.097 84.0051 181.04 84.0051H88.7252C86.6678 84.0051 85 82.2131 85 80.0025Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M210 161C210 159.343 211.088 158 212.431 158H238.569C239.912 158 241 159.343 241 161C241 162.657 239.912 164 238.569 164H212.431C211.088 164 210 162.657 210 161Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 178C85 176.343 86.138 175 87.5418 175H170.259C171.663 175 172.801 176.343 172.801 178C172.801 179.657 171.663 181 170.259 181H87.5418C86.138 181 85 179.657 85 178Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 193C85 191.343 86.138 190 87.5418 190H156.259C157.663 190 158.801 191.343 158.801 193C158.801 194.657 157.663 196 156.259 196H87.5418C86.138 196 85 194.657 85 193Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M85 160.003C85 157.792 86.6678 156 88.7252 156H181.04C183.097 156 184.765 157.792 184.765 160.003C184.765 162.213 183.097 164.005 181.04 164.005H88.7252C86.6678 164.005 85 162.213 85 160.003Z" fill="#B6B6B6"/> </svg>'}];var xG=Object(j.applyFilters)("uag_price_list_presets",PG);function AG(){return(AG=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var GG,MG=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l,clientId:i}=e,{menu_item_count:o,titleSpace:s,titleSpaceTablet:c,titleSpaceMobile:u,columns:p,tcolumns:b,mcolumns:d,rowGap:g,rowGapTablet:m,rowGapMobile:y,columnGap:f,columnGapTablet:h,columnGapMobile:v,priceColor:_,descColor:T,titleColor:C,seperatorStyle:S,seperatorWidth:w,seperatorWidthTablet:k,seperatorWidthMobile:P,seperatorThickness:x,seperatorColor:A,priceLoadGoogleFonts:G,titleLoadGoogleFonts:M,descLoadGoogleFonts:R,titleFontSizeType:U,titleFontSize:E,titleFontSizeTablet:O,titleFontSizeMobile:L,titleFontFamily:H,titleFontWeight:j,titleFontStyle:F,titleLineHeightType:z,titleLineHeight:D,titleLineHeightTablet:N,titleLineHeightMobile:I,priceFontSizeType:V,priceFontSize:W,priceFontSizeTablet:q,priceFontSizeMobile:Z,priceFontFamily:$,priceFontWeight:Y,priceFontStyle:K,priceLineHeightType:J,priceLineHeight:X,priceLineHeightTablet:Q,priceLineHeightMobile:ee,descFontSizeType:te,descFontSize:ae,descFontSizeTablet:le,descFontSizeMobile:ie,descFontFamily:oe,descFontWeight:ne,descFontStyle:re,descLineHeightType:se,descLineHeight:ce,descLineHeightTablet:ue,descLineHeightMobile:pe,headingTag:be,imagePosition:de,imageAlignment:me,imageSize:ye,imageWidth:fe,imageWidthTablet:he,imageWidthMobile:ve,stack:_e,imageWidthType:Te,seperatorWidthType:Se,rowGapType:we,columnGapType:ke,titleSpaceType:Pe,contentPaddingTop:xe,contentPaddingRight:Ae,contentPaddingBottom:Ge,contentPaddingLeft:Me,contentPaddingTopTablet:Re,contentPaddingRightTablet:Be,contentPaddingBottomTablet:Ue,contentPaddingLeftTablet:Oe,contentPaddingTopMobile:He,contentPaddingRightMobile:je,contentPaddingBottomMobile:ze,contentPaddingLeftMobile:De,contentPaddingUnit:Ne,contentMobilePaddingUnit:Ie,contentTabletPaddingUnit:Ve,contentSpacingLink:We,imgPaddingTop:qe,imgPaddingRight:Ze,imgPaddingBottom:$e,imgPaddingLeft:Ye,imgPaddingTopTablet:Ke,imgPaddingRightTablet:Je,imgPaddingBottomTablet:Xe,imgPaddingLeftTablet:Qe,imgPaddingTopMobile:et,imgPaddingRightMobile:tt,imgPaddingBottomMobile:at,imgPaddingLeftMobile:lt,imgPaddingUnit:it,imgMobilePaddingUnit:ot,imgTabletPaddingUnit:nt,imgSpacingLink:rt,titleTransform:st,titleDecoration:ct,descTransform:ut,descDecoration:pt,priceTransform:bt,priceDecoration:dt,headingAlign:gt,imgAlign:mt,descLetterSpacing:yt,descLetterSpacingTablet:ft,descLetterSpacingMobile:ht,descLetterSpacingType:vt,priceLetterSpacing:_t,priceLetterSpacingTablet:Tt,priceLetterSpacingMobile:Ct,priceLetterSpacingType:St,titleLetterSpacing:wt,titleLetterSpacingTablet:kt,titleLetterSpacingMobile:Pt,titleLetterSpacingType:xt,showImage:At}=a;Object(B.useEffect)(()=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(e=>{e.attributes.imageWidth=fe})},[fe]);const Gt=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"columns"},tablet:{value:b,label:"tcolumns"},mobile:{value:d,label:"mcolumns"}},min:1,max:Math.min(3,o),displayUnit:!1,setAttributes:t,onChange:(Mt=p,Rt=b,Bt=d,void Object(n.select)("core/block-editor").getBlocks(i).forEach(e=>{e.attributes.columns=Mt,e.attributes.tcolumns=Rt,e.attributes.mcolumns=Bt}))}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:be,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}],onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.headingTag=e}),t({headingTag:e})}}))),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Image","ultimate-addons-for-gutenberg"),checked:At,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.showImage=e}),t({showImage:e})}}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:mt,label:"imgAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:"Top"},{value:"side",label:"Side"}],showIcons:!1,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.imgAlign=e}),t({imgAlign:e})}}),"side"===mt&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:de,label:"imagePosition"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.imagePosition=e}),t({imagePosition:e})}}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Stack on","ultimate-addons-for-gutenberg"),data:{value:_e,label:"stack"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:"None"},{value:"tablet",label:"Tablet"},{value:"mobile",label:"Mobile"}],help:Object(r.__)("Note: Choose on what breakpoint the Images will stack.","ultimate-addons-for-gutenberg"),showIcons:!1,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.stack=e}),t({stack:e})}}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:me,label:"imageAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:"Top"},{value:"middle",label:"Middle"}],showIcons:!1,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.imageAlignment=e}),t({imageAlignment:e})}})),"top"===mt&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:gt,label:"headingAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.headingAlign=e}),t({headingAlign:e})}}),At&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{value:ye},onChange:e=>{Object(n.select)("core/block-editor").getBlocks(i).forEach(t=>{t.attributes.imageSize=e}),t({imageSize:e})},options:Gt}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:t,presets:xG,presetInputType:"radioImage"}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:C||"",data:{value:C,label:"titleColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:M,label:"titleLoadGoogleFonts"},fontFamily:{value:H,label:"titleFontFamily"},fontWeight:{value:j,label:"titleFontWeight"},fontStyle:{value:F,label:"titleFontStyle"},fontSizeType:{value:U,label:"titleFontSizeType"},fontSize:{value:E,label:"titleFontSize"},fontSizeMobile:{value:L,label:"titleFontSizeMobile"},fontSizeTablet:{value:O,label:"titleFontSizeTablet"},lineHeightType:{value:z,label:"titleLineHeightType"},lineHeight:{value:D,label:"titleLineHeight"},lineHeightMobile:{value:I,label:"titleLineHeightMobile"},lineHeightTablet:{value:N,label:"titleLineHeightTablet"},letterSpacing:{value:wt,label:"titleLetterSpacing"},letterSpacingTablet:{value:kt,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Pt,label:"titleLetterSpacingMobile"},letterSpacingType:{value:xt,label:"titleLetterSpacingType"},transform:{value:st,label:"titleTransform"},decoration:{value:ct,label:"titleDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:s,label:"titleSpace"},tablet:{value:c,label:"titleSpaceTablet"},mobile:{value:u,label:"titleSpaceMobile"}},min:0,max:50,unit:{value:Pe,label:"titleSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:S,label:"seperatorStyle"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),"none"!==S&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:w,label:"seperatorWidth"},tablet:{value:k,label:"seperatorWidthTablet"},mobile:{value:P,label:"seperatorWidthMobile"}},min:0,max:100,unit:{value:Se,label:"seperatorWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:t,value:x,data:{value:x,label:"seperatorThickness"},min:0,max:20,displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:A||"",data:{value:A,label:"seperatorColor"},setAttributes:t}))),At&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:fe,label:"imageWidth"},tablet:{value:he,label:"imageWidthTablet"},mobile:{value:ve,label:"imageWidthMobile"}},min:0,max:500,unit:{value:Te,label:"imageWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}),React.createElement(Pl,AG({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:qe,label:"imgPaddingTop"},valueRight:{value:Ze,label:"imgPaddingRight"},valueBottom:{value:$e,label:"imgPaddingBottom"},valueLeft:{value:Ye,label:"imgPaddingLeft"},valueTopTablet:{value:Ke,label:"imgPaddingTopTablet"},valueRightTablet:{value:Je,label:"imgPaddingRightTablet"},valueBottomTablet:{value:Xe,label:"imgPaddingBottomTablet"},valueLeftTablet:{value:Qe,label:"imgPaddingLeftTablet"},valueTopMobile:{value:et,label:"imgPaddingTopMobile"},valueRightMobile:{value:tt,label:"imgPaddingRightMobile"},valueBottomMobile:{value:at,label:"imgPaddingBottomMobile"},valueLeftMobile:{value:lt,label:"imgPaddingLeftMobile"},unit:{value:it,label:"imgPaddingUnit"},mUnit:{value:ot,label:"imgMobilePaddingUnit"},tUnit:{value:nt,label:"imgTabletPaddingUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:rt,label:"imgSpacingLink"}}))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:T||"",data:{value:T,label:"descColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:R,label:"descLoadGoogleFonts"},fontFamily:{value:oe,label:"descFontFamily"},fontWeight:{value:ne,label:"descFontWeight"},fontStyle:{value:re,label:"descFontStyle"},fontSizeType:{value:te,label:"descFontSizeType"},fontSize:{value:ae,label:"descFontSize"},fontSizeMobile:{value:ie,label:"descFontSizeMobile"},fontSizeTablet:{value:le,label:"descFontSizeTablet"},lineHeightType:{value:se,label:"descLineHeightType"},lineHeight:{value:ce,label:"descLineHeight"},lineHeightMobile:{value:pe,label:"descLineHeightMobile"},lineHeightTablet:{value:ue,label:"descLineHeightTablet"},letterSpacing:{value:yt,label:"descLetterSpacing"},letterSpacingTablet:{value:ft,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:ht,label:"descLetterSpacingMobile"},letterSpacingType:{value:vt,label:"descLetterSpacingType"},transform:{value:ut,label:"descTransform"},decoration:{value:pt,label:"descDecoration"}})),React.createElement(Fe,{title:Object(r.__)("Price","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:_||"",data:{value:_,label:"priceColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:G,label:"priceLoadGoogleFonts"},fontFamily:{value:$,label:"priceFontFamily"},fontWeight:{value:Y,label:"priceFontWeight"},fontStyle:{value:K,label:"priceFontStyle"},fontSizeType:{value:V,label:"priceFontSizeType"},fontSize:{value:W,label:"priceFontSize"},fontSizeMobile:{value:Z,label:"priceFontSizeMobile"},fontSizeTablet:{value:q,label:"priceFontSizeTablet"},lineHeightType:{value:J,label:"priceLineHeightType"},lineHeight:{value:X,label:"priceLineHeight"},lineHeightMobile:{value:ee,label:"priceLineHeightMobile"},lineHeightTablet:{value:Q,label:"priceLineHeightTablet"},letterSpacing:{value:_t,label:"priceLetterSpacing"},letterSpacingTablet:{value:Tt,label:"priceLetterSpacingTablet"},letterSpacingMobile:{value:Ct,label:"priceLetterSpacingMobile"},letterSpacingType:{value:St,label:"priceLetterSpacingType"},transform:{value:bt,label:"priceTransform"},decoration:{value:dt,label:"priceDecoration"}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:g,label:"rowGap"},tablet:{value:m,label:"rowGapTablet"},mobile:{value:y,label:"rowGapMobile"}},min:0,max:50,unit:{value:we,label:"rowGapType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:f,label:"columnGap"},tablet:{value:h,label:"columnGapTablet"},mobile:{value:v,label:"columnGapMobile"}},min:0,max:50,unit:{value:ke,label:"columnGapType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:t}),React.createElement(Pl,AG({},e,{label:Object(r.__)("Item Padding","ultimate-addons-for-gutenberg"),valueTop:{value:xe,label:"contentPaddingTop"},valueRight:{value:Ae,label:"contentPaddingRight"},valueBottom:{value:Ge,label:"contentPaddingBottom"},valueLeft:{value:Me,label:"contentPaddingLeft"},valueTopTablet:{value:Re,label:"contentPaddingTopTablet"},valueRightTablet:{value:Be,label:"contentPaddingRightTablet"},valueBottomTablet:{value:Ue,label:"contentPaddingBottomTablet"},valueLeftTablet:{value:Oe,label:"contentPaddingLeftTablet"},valueTopMobile:{value:He,label:"contentPaddingTopMobile"},valueRightMobile:{value:je,label:"contentPaddingRightMobile"},valueBottomMobile:{value:ze,label:"contentPaddingBottomMobile"},valueLeftMobile:{value:De,label:"contentPaddingLeftMobile"},unit:{value:Ne,label:"contentPaddingUnit"},mUnit:{value:Ie,label:"contentMobilePaddingUnit"},tUnit:{value:Ve,label:"contentTabletPaddingUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:We,label:"contentSpacingLink"}})))),React.createElement(il,AG({},rl,{parentProps:e})))));var Mt,Rt,Bt}),RG=a(137),BG=0,UG={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},EG={};EG.locals=RG.a.locals||{},EG.use=function(){return BG++||(GG=ke()(RG.a,UG)),EG},EG.unuse=function(){BG>0&&!--BG&&(GG(),GG=null)};var OG=EG;const LG=["uagb/restaurant-menu-child"];var HG=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(OG.use(),()=>{OG.unuse()}),[]);const{className:t,attributes:a,deviceType:l}=e,{menu_item_count:i,columns:o,tcolumns:n,mcolumns:r,block_id:s}=a,c=Object(B.useMemo)(()=>{const e=[];for(let t=0;t<i;t++)e.push(["uagb/restaurant-menu-child",{id:t+1}]);return e},[i]);return React.createElement("div",{className:Be()(t,"uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-block-"+s,"uagb-rm__desk-column-"+o,"uagb-rm__tablet-column-"+n,"uagb-rm__mobile-column-"+r)},React.createElement(ge.InnerBlocks,{template:c,templateLock:!1,allowedBlocks:LG,__experimentalMoverDirection:"horizontal"}))}),jG=Object(B.memo)(e=>{let{attributes:t}=e;const{titleLoadGoogleFonts:a,titleFontFamily:l,titleFontWeight:i,descLoadGoogleFonts:o,descFontFamily:n,descFontWeight:r,priceLoadGoogleFonts:s,priceFontFamily:c,priceFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),FG=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{imgAlign:l,imagePosition:i,imageAlignment:o,UAGHideDesktop:r,UAGHideTab:s,UAGHideMob:c,showImage:u},setAttributes:p,clientId:b,name:d,deviceType:g}=e;Object(B.useEffect)(()=>{i&&("left"===i&&p({imgAlign:"side"}),"right"===i&&p({imgAlign:"side"}),"top"===i&&p({imgAlign:"top"})),Object(n.select)("core/block-editor").getBlocks(b).forEach(e=>{e.attributes.imageAlignment=o})},[]),Object(B.useEffect)(()=>{"side"===l&&"right"!==i&&(p({imagePosition:"left"}),p({headingAlign:"left"})),"top"===l&&p({imagePosition:"top"})},[a,g]),Object(B.useEffect)(()=>{Bs()},[g]),Object(B.useEffect)(()=>{he(e)},[r,s,c,g]),Object(B.useEffect)(()=>{var e;null===(e=Object(n.select)("core/block-editor").getBlocksByClientId(b)[0])||void 0===e||e.innerBlocks.forEach((function(e){Object(n.dispatch)("core/block-editor").updateBlockAttributes(e.clientId,{showImage:u})}))},[u]);const m=Object(B.useMemo)(()=>function(e,t,a,l){const{block_id:i,headingAlign:o,priceColor:n,descColor:r,titleColor:s,titleFontSizeType:c,titleFontSize:u,titleFontSizeTablet:p,titleFontSizeMobile:b,titleFontFamily:d,titleFontWeight:g,titleLineHeightType:m,titleLineHeight:y,titleLineHeightTablet:f,titleLineHeightMobile:h,priceFontSizeType:v,priceFontSize:_,priceFontSizeTablet:T,priceFontSizeMobile:C,priceFontFamily:S,priceFontWeight:w,priceLineHeightType:k,priceLineHeight:P,priceLineHeightTablet:x,priceLineHeightMobile:A,descFontSizeType:G,descFontSize:M,descFontSizeTablet:R,descFontSizeMobile:B,descFontFamily:U,descFontWeight:E,descLineHeightType:O,descLineHeight:L,descLineHeightTablet:H,descLineHeightMobile:j,descSpace:F,titleSpace:z,titleSpaceTablet:D,titleSpaceMobile:N,imageWidth:I,imageWidthTablet:V,imageWidthMobile:W,rowGap:q,rowGapTablet:Z,rowGapMobile:$,columnGap:Y,columnGapTablet:K,columnGapMobile:J,seperatorStyle:X,seperatorWidth:Q,seperatorWidthTablet:ee,seperatorWidthMobile:te,seperatorThickness:le,seperatorColor:ie,imageWidthType:oe,seperatorWidthType:ne,rowGapType:re,columnGapType:se,titleSpaceType:ce,contentPaddingTop:ue,contentPaddingRight:pe,contentPaddingBottom:be,contentPaddingLeft:de,contentPaddingTopTablet:ge,contentPaddingRightTablet:me,contentPaddingBottomTablet:ye,contentPaddingLeftTablet:fe,contentPaddingTopMobile:he,contentPaddingRightMobile:ve,contentPaddingBottomMobile:_e,contentPaddingLeftMobile:Te,contentPaddingUnit:Ce,contentMobilePaddingUnit:Se,contentTabletPaddingUnit:we,imgPaddingTop:ke,imgPaddingRight:Pe,imgPaddingBottom:xe,imgPaddingLeft:Ae,imgPaddingTopTablet:Ge,imgPaddingRightTablet:Me,imgPaddingBottomTablet:Re,imgPaddingLeftTablet:Be,imgPaddingTopMobile:Ue,imgPaddingRightMobile:Ee,imgPaddingBottomMobile:Oe,imgPaddingLeftMobile:Le,imgPaddingUnit:He,imgMobilePaddingUnit:je,imgTabletPaddingUnit:Fe,titleFontStyle:ze,titleTransform:De,titleDecoration:Ne,descFontStyle:Ie,descTransform:Ve,descDecoration:We,priceFontStyle:qe,priceTransform:Ze,priceDecoration:$e,descLetterSpacing:Ye,descLetterSpacingTablet:Ke,descLetterSpacingMobile:Je,descLetterSpacingType:Xe,priceLetterSpacing:Qe,priceLetterSpacingTablet:et,priceLetterSpacingMobile:tt,priceLetterSpacingType:at,titleLetterSpacing:lt,titleLetterSpacingTablet:it,titleLetterSpacingMobile:ot,titleLetterSpacingType:nt,imagePosition:rt,imgAlign:st,imageAlignment:ct,stack:ut}=e,pt=l.toLowerCase(),bt=a.replace("uagb/",""),dt=Ps(le,"seperatorThickness",bt),gt=Ps(q,"rowGap",bt),mt=Ps(Z,"rowGapTablet",bt),yt=Ps($,"rowGapMobile",bt),ft=Ps(Y,"columnGap",bt),ht=isNaN(K)?ft:K,vt=isNaN(J)?ht:J,_t=Ps(I,"imageWidth",bt),Tt=isNaN(V)?_t:V,Ct=isNaN(W)?Tt:W,St=Ps(Q,"seperatorWidth",bt),wt=Ps(ee,"seperatorWidthTablet",bt),kt=Ps(te,"seperatorWidthMobile",bt),Pt=Ps(z,"titleSpace",bt),xt=Ps(D,"titleSpaceTablet",bt),At=Ps(N,"titleSpaceMobile",bt);let Gt={},Mt={};const Rt={" .block-editor-block-list__layout":{"column-gap":ns(ft,se),"row-gap":ns(gt,re)}," [data-type='uagb/restaurant-menu-child'] img":{"padding-left":ns(Ae,He),"padding-right":ns(Pe,He),"padding-top":ns(ke,He),"padding-bottom":ns(xe,He)}," img":{width:ns(_t,oe),"max-width":ns(_t,oe)}," .uagb-rm__content":{"padding-left":ns(de,Ce),"padding-right":ns(pe,Ce),"padding-top":ns(ue,Ce),"padding-bottom":ns(be,Ce)},".wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title":{"font-size":ns(u,c),color:s,"margin-bottom":ns(Pt,ce),"font-family":d,"font-style":ze,"text-transform":De,"text-decoration":Ne,"font-weight":g,"line-height":ns(y,m),"letter-spacing":ns(lt,nt)}," .uagb-rm__price":{"font-size":ns(_,v),"font-family":S,"text-transform":Ze,"text-decoration":$e,"font-style":qe,"font-weight":w,"line-height":ns(P,k),color:n,"letter-spacing":ns(Qe,at)}," .uagb-rm__desc":{"font-size":ns(M,G),"font-family":U,"text-transform":Ve,"text-decoration":We,"font-style":Ie,"font-weight":E,"line-height":ns(L,O),color:r,"margin-bottom":ns(F,"px"),"letter-spacing":ns(Ye,Xe)}};Gt={" img":{width:ns(Tt,oe),"max-width":ns(Tt,oe)}," .block-editor-block-list__layout":{"column-gap":ns(ht,se),"row-gap":ns(mt,re)},".wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title":{"font-size":ns(p,c),"line-height":ns(f,m),"margin-bottom":ns(xt,ce),"letter-spacing":ns(it,nt)}," .uagb-rm__desc":{"font-size":ns(R,G),"line-height":ns(H,O),"letter-spacing":ns(Ke,Xe)}," .uagb-rm__price":{"font-size":ns(T,v),"line-height":ns(x,k),"letter-spacing":ns(et,at)}," [data-type='uagb/restaurant-menu-child'] img":{"padding-left":ns(Be,Fe),"padding-right":ns(Me,Fe),"padding-top":ns(Ge,Fe),"padding-bottom":ns(Re,Fe)}," .uagb-rm__content":{"padding-left":ns(fe,we),"padding-right":ns(me,we),"padding-top":ns(ge,we),"padding-bottom":ns(ye,we)}},Mt={" img":{width:ns(Ct,oe),"max-width":ns(Ct,oe)}," .block-editor-block-list__layout":{"column-gap":ns(vt,se),"row-gap":ns(yt,re)},".wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title":{"font-size":ns(b,c),"line-height":ns(h,m),"margin-bottom":ns(At,ce),"letter-spacing":ns(ot,nt)}," .uagb-rm__desc":{"font-size":ns(B,G),"line-height":ns(j,O),"letter-spacing":ns(Je,Xe)}," .uagb-rm__price":{"font-size":ns(C,v),"line-height":ns(A,k),"letter-spacing":ns(tt,at)}," [data-type='uagb/restaurant-menu-child'] img":{"padding-left":ns(Le,je),"padding-right":ns(Ee,je),"padding-top":ns(Ue,je),"padding-bottom":ns(Oe,je)}," .uagb-rm__content":{"padding-left":ns(Te,Se),"padding-right":ns(ve,Se),"padding-top":ns(he,Se),"padding-bottom":ns(_e,Se)}},"none"!==X&&(Rt[" .uagb-rm__separator"]={"border-top-color":ie,"border-top-style":X,"border-top-width":ns(dt,"px"),width:ns(St,ne)},Gt[" .uagb-rm__separator"]={width:ns(wt,ne)},Mt[" .uagb-rm__separator"]={width:ns(kt,ne)}),"side"===st&&(Rt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={"align-items":"top"===ct?"flex-start":"center"},"tablet"===ut?"left"===rt?(Gt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={display:"block"},Mt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={display:"block"}):(Gt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={display:"flex","flex-direction":"column-reverse","align-items":"flex-end"},Mt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={display:"flex","flex-direction":"column-reverse","align-items":"flex-end"}):"mobile"===ut&&(Mt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]="left"===rt?{display:"block"}:{display:"flex","flex-direction":"column-reverse","align-items":"flex-end"}),"left"===rt?Rt[" .uagb-rm-details"]={"text-align":"left"}:"right"===rt&&(Rt[" .uagb-rm-details"]={"text-align":"right"},Rt[" .uagb-rest_menu__wrap .uagb-rm__content"]={"text-align":"right"},Rt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__separator"]={"margin-left":"auto"})),"top"===st&&(Rt[" .wp-block-uagb-restaurant-menu-child "]={"text-align":o,display:"block"},Rt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__content"]={"text-align":o},"center"===o?(Rt[" .uagb-rm__content "]={display:"block"},Rt[" .uagb-rm__content "]={display:"block"},Rt[" .wp-block-uagb-restaurant-menu-child  .uagb-rm__separator"]={margin:"0 auto"}):"right"===o&&(Rt[" .wp-block-uagb-restaurant-menu-child .uagb-rm__separator"]={"margin-left":"auto"}));let Bt="";const Ut=".editor-styles-wrapper .uagb-block-"+i;return Bt=ae(Rt,Ut),"tablet"!==pt&&"mobile"!==pt||(Bt+=ae(Gt,""+Ut,!0,"tablet"),"mobile"===pt&&(Bt+=ae(Mt,""+Ut,!0,"mobile"))),Bt}(a,0,d,g),[a,g]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:m}),React.createElement(jG,{attributes:a}),t&&React.createElement(MG,e),React.createElement(HG,e))}),zG=e=>{const{attributes:t,setAttributes:a,index_value:l}=e;let i="";if(void 0!==l){const e=t.rest_menu_item_arr[l];e&&void 0!==e&&(i=e.title)}else i=t.title;return"not_set"!==a?React.createElement(ge.RichText,{tagName:t.headingTag,value:i,placeholder:Object(r.__)("Write a Title","ultimate-addons-for-gutenberg"),className:"uagb-rm__title",onChange:e=>{a({title:e})}}):React.createElement(ge.RichText.Content,{tagName:t.headingTag,value:i,className:"uagb-rm__title"})},DG=e=>{const{attributes:t,setAttributes:a,index_value:l}=e;let i="";if(void 0!==l){const e=t.rest_menu_item_arr[l];e&&void 0!==e&&(i=e.price)}else i=t.price;return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:i,className:"uagb-rm__price",placeholder:Object(r.__)("Price","ultimate-addons-for-gutenberg"),onChange:e=>{a({price:e})}}):React.createElement(ge.RichText.Content,{tagName:"span",value:i,className:"uagb-rm__price"})},NG=e=>{const{attributes:t,setAttributes:a,index_value:l}=e;let i="";if(void 0!==l){const e=t.rest_menu_item_arr[l];e&&void 0!==e&&(i=e.description)}else i=t.description;return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:i,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-rm__desc",onChange:e=>{a({description:e})}}):React.createElement(ge.RichText.Content,{tagName:"div",value:i,className:"uagb-rm__desc"})},IG=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"uagb/restaurant-menu";const{columns:a,tcolumns:l,mcolumns:i}=e;let o="",n=0;const r=e.image;void 0!==e.rest_menu_item_arr&&e.rest_menu_item_arr.map(e=>{const t=e.image;t&&void 0!==t&&n++}),null!=r&&""!==r&&n++,n>0&&(o+="uagb-rm__image-position-"+e.imagePosition+" "),o+=" uagb-rm__align-"+e.headingAlign+" ","left"!==e.imagePosition&&"right"!==e.imagePosition||(o+="uagb-rm__image-aligned-"+e.imageAlignment+" ","none"!==e.stack&&(o+="uagb-rm-stacked-"+e.stack+" ","right"===e.imagePosition&&(o+="uagb-rm-reverse-order-"+e.stack+" ")));const s=t.replace("uagb/",""),c=Ps(a,"columns",s),u=Ps(l,"tcolumns",s),p=Ps(i,"mcolumns",s);return o+="uagb-rm__desk-column-"+c+" ",o+="uagb-rm__tablet-column-"+u+" ",o+="uagb-rm__mobile-column-"+p+" ",[o]},VG=e=>{const{attributes:t,index_value:a}=e;let l="",i="";const{imageWidth:o,imgTagHeight:n}=t;if(void 0!==a){const e=t.rest_menu_item_arr[a];void 0!==e&&(i=e.image)}else""!==t.image&&(i=t.image);if(i&&void 0!==i){let e="";e=void 0!==i?i:t.image;let a="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,r=t.imageSize;return a=void 0!==i&&void 0!==i[r]?i[r].url:l,React.createElement("img",{className:"",src:a,alt:e.alt,width:o,height:n,loading:"lazy"})}return null}return null},WG=[{attributes:Pt,save(e){const{block_id:t,className:a,rest_menu_item_arr:l,imagePosition:i}=e.attributes;return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(a,"uagb-rest_menu__outer-wrap"),id:"uagb-rm-"+t},l.map((t,a)=>React.createElement("div",{className:Be()("uagb-rest_menu__wrap",...IG(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-rm__content",key:"tm_content-"+a},("top"==i||"left"==i)&&React.createElement(VG,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-rm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm-details",key:"tm_wraps-"+a},React.createElement("div",{className:"uagb-rm__title-wrap",key:"rm_title__wraps-"+a},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement("div",{className:"uagb-rest-menu-text-wrap",key:"text-wrap-"+a},React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-rm__price-wrap",key:"rm_price__wraps-"+a},React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))))),"right"==i&&React.createElement(VG,{attributes:e.attributes,index_value:a})),React.createElement("div",{className:"uagb-rm__separator-parent"},React.createElement("div",{className:"uagb-rm__separator"}))))))}},{attributes:Pt,save(e){const{block_id:t,className:a,rest_menu_item_arr:l,imagePosition:i}=e.attributes;return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(a,"uagb-rest_menu__outer-wrap","uagb-block-"+t)},l.map((t,a)=>React.createElement("div",{className:Be()("uagb-rest_menu__wrap",...IG(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-rm__content",key:"tm_content-"+a},("top"==i||"left"==i)&&React.createElement(VG,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-rm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm-details",key:"tm_wraps-"+a},React.createElement("div",{className:"uagb-rm__title-wrap",key:"rm_title__wraps-"+a},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement("div",{className:"uagb-rest-menu-text-wrap",key:"text-wrap-"+a},React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-rm__price-wrap",key:"rm_price__wraps-"+a},React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))))),"right"==i&&React.createElement(VG,{attributes:e.attributes,index_value:a})),React.createElement("div",{className:"uagb-rm__separator-parent"},React.createElement("div",{className:"uagb-rm__separator"}))))))}},{attributes:Pt,save(e){const{block_id:t,className:a}=e.attributes;return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(a,"uagb-rest_menu__outer-wrap","uagb-block-"+t)},React.createElement(ge.InnerBlocks.Content,null)))}}];a(359);const qG=Object(L.compose)(Object(n.withSelect)(e=>({selected:e("core/block-editor").getSelectedBlock()}))),ZG=Object(L.createHigherOrderComponent)(e=>qG(t=>{let{...a}=t;return React.createElement(React.Fragment,null,React.createElement(e,a))}),"withPriceList");let $G={};function YG(){return(YG=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}$G=Object(j.applyFilters)("uagb/restaurant-menu",ws($G)),Object(be.registerBlockType)("uagb/restaurant-menu",{...$G,title:Object(r.__)("Price List","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create an attractive price list for your products.","ultimate-addons-for-gutenberg"),icon:se.restaurant_menu,keywords:[Object(r.__)("pricelist","ultimate-addons-for-gutenberg"),Object(r.__)("menu","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:Pt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"price-list"}):React.createElement(FG,e),save:function(e){const{block_id:t,className:a,columns:l,tcolumns:i,mcolumns:o}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-block-"+t,"uagb-rm__desk-column-"+l,"uagb-rm__tablet-column-"+i,"uagb-rm__mobile-column-"+o)},React.createElement(ge.InnerBlocks.Content,null))},deprecated:WG}),Object(j.addFilter)("editor.BlockEdit","uagb/restaurant-menu",ZG);var KG=Object(B.memo)(e=>{const{setAttributes:t,attributes:a}=e,{image:l,showImage:i}=a;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement("p",{className:"uagb-settings-notice"},i?Object(r.__)("For the common styling options please select the Parent Block of this Price List Item.","ultimate-addons-for-gutenberg"):Object(r.__)("For the common styling options and enabling images, please select the Parent Block of this Price List Item.","ultimate-addons-for-gutenberg")),i&&React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{let a=null;a=e&&e.url?e:null,e.type&&"image"===e.type||(a=null),t({image:a})},backgroundImage:l,onRemoveImage:()=>{t({image:null})}}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,YG({},rl,{parentProps:e})))))}),JG=Object(B.memo)(e=>{const{className:t,setAttributes:a,attributes:l,clientId:i}=e,{imagePosition:o,headingAlign:r,imgAlign:s,showImage:c,image:u,imageWidth:p,block_id:b}=l,d=Object(n.select)("core/block-editor").getBlockHierarchyRootClientId(i),g=Object(n.select)("core/block-editor").getBlockAttributes(d),m=g&&g.imagePosition?g.imagePosition:o,y=g&&g.headingAlign?g.headingAlign:r,f=g&&g.imgAlign?g.imgAlign:s;return a({imagePosition:m}),a({headingAlign:y}),a({imgAlign:f}),Object(B.useEffect)(()=>{u&&u.url&&mf(null==u?void 0:u.url,a,{type:"width",value:p})},[u,p]),React.createElement("div",{className:Be()(t,"uagb-rest_menu__wrap","uagb-block-"+b)},"top"===f&&React.createElement(React.Fragment,null,c&&React.createElement(VG,{attributes:l}),React.createElement("div",{className:"uagb-rm__content"},"right"===y&&React.createElement(DG,{attributes:l,setAttributes:a,props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:l,setAttributes:a,props:e}),React.createElement(NG,{attributes:l,setAttributes:a,props:e}),"center"===y&&React.createElement(DG,{attributes:l,setAttributes:a,props:e})),"left"===y&&React.createElement(DG,{attributes:l,setAttributes:a,props:e})),React.createElement("div",{className:"uagb-rm__separator"})),"side"===f&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm__content"},"left"===m&&c&&React.createElement(VG,{attributes:l}),"right"===m&&React.createElement(DG,{attributes:l,setAttributes:a,props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:l,setAttributes:a,props:e}),React.createElement(NG,{attributes:l,setAttributes:a,props:e})),"left"===m&&React.createElement(DG,{attributes:l,setAttributes:a,props:e}),"right"===m&&c&&React.createElement(VG,{attributes:l})),React.createElement("div",{className:"uagb-rm__separator"})))}),XG=Object(L.compose)(vs)(e=>{const{isSelected:t}=e;return React.createElement(React.Fragment,null,t&&React.createElement(KG,e),React.createElement(JG,e))}),QG=e=>{const{attributes:t,index_value:a}=e;let l="",i="";if(void 0!==a){const e=t.rest_menu_item_arr[a];void 0!==e&&(i=e.image)}else""!==t.image&&(i=t.image);if(i&&void 0!==i){let e="";e=void 0!==i?i:t.image;let a="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,o=t.imageSize;return a=void 0!==i&&void 0!==i[o]?i[o].url:l,React.createElement("div",{className:"uagb-rm__image-content"},React.createElement("div",{className:"uagb-rm__image"},React.createElement("img",{className:"",src:a,alt:e.alt})))}return null}return null},eM=e=>{const{attributes:t,index_value:a}=e;let l="",i="";if(void 0!==a){const e=t.rest_menu_item_arr[a];void 0!==e&&(i=e.image)}else""!==t.image&&(i=t.image);if(i&&void 0!==i){let e="";e=void 0!==i?i:t.image;let a="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,o=t.imageSize;return a=void 0!==i&&void 0!==i[o]?i[o].url:l,React.createElement("img",{className:"",src:a,alt:e.alt})}return null}return null},tM=[{attributes:{block_id:{type:"string"},description:{type:"string",default:Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")},title:{type:"string",default:Object(r.__)("Menu Item")},price:{type:"string",default:Object(r.__)("$9")},image:{type:"object",default:null},imagePosition:{type:"string",default:"top"},imageAlignment:{type:"string",default:"top"},imageSize:{type:"string",default:"medium"},headingTag:{type:"string",default:"h4"},columns:{type:"number",default:2},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},headingAlign:{type:"string",default:"left"}},save(e){const{block_id:t,className:a,imagePosition:l}=e.attributes;return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-rest_menu__wrap","uagb-rest_menu_repeater",...IG(e.attributes))},React.createElement("div",{className:Be()(a,"uagb-rest_menu__outer-wrap","uagb-block-"+t)},React.createElement("div",{className:Be()(...IG(e.attributes))},React.createElement("div",{className:"uagb-rm__content"},("top"==l||"left"==l)&&React.createElement(QG,{attributes:e.attributes}),React.createElement("div",{className:"uagb-rm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm-details"},React.createElement("div",{className:"uagb-rm__title-wrap"},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("div",{className:"uagb-rest-menu-text-wrap"},React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e}))),React.createElement("div",{className:"uagb-rm__price-wrap"},React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}))))),"right"==l&&React.createElement(QG,{attributes:e.attributes})),React.createElement("div",{className:"uagb-rm__separator-parent"},React.createElement("div",{className:"uagb-rm__separator"}))))))}},{attributes:{block_id:{type:"string"},description:{type:"string",default:Object(r.__)("Lorem ipsum dolor sit amet, consectetur adipiscing elit.")},title:{type:"string",default:Object(r.__)("Menu Item")},price:{type:"string",default:Object(r.__)("$9")},image:{type:"object",default:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/uag-placeholder.svg"}},imagePosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"image-position"}},imageAlignment:{type:"string",default:"top",UAGCopyPaste:{styleType:"image-align"}},imageSize:{type:"string",default:"medium",UAGCopyPaste:{styleType:"image-size"}},headingTag:{type:"string",default:"h4"},columns:{type:"number",default:2},tcolumns:{type:"number",default:2},mcolumns:{type:"number",default:1},headingAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"main-title-align"}},stack:{type:"string",default:"tablet"},imgAlign:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"side"},showImage:{type:"boolean",default:!0}},save(e){const{imagePosition:t,headingAlign:a,imgAlign:l,showImage:i}=e.attributes;return React.createElement("div",{className:Be()("uagb-rest_menu__wrap")},"top"===l&&React.createElement(React.Fragment,null,i&&React.createElement(eM,{attributes:e.attributes}),React.createElement("div",{className:"uagb-rm__content"},"right"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e}),"center"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e})),"left"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e})),React.createElement("div",{className:"uagb-rm__separator"})),"side"===l&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm__content"},"left"===t&&i&&React.createElement(eM,{attributes:e.attributes}),"right"===t&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e})),"left"===t&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),"right"===t&&i&&React.createElement(eM,{attributes:e.attributes})),React.createElement("div",{className:"uagb-rm__separator"})))}}];let aM={};aM=Object(j.applyFilters)("uagb/restaurant-menu-child",ws(aM)),Object(be.registerBlockType)("uagb/restaurant-menu-child",{...aM,title:Object(r.__)("Price List-Child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add information for this product.","ultimate-addons-for-gutenberg"),icon:se.restaurant_menu_child,keywords:[Object(r.__)("pricelist","ultimate-addons-for-gutenberg"),Object(r.__)("menu","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},parent:["uagb/restaurant-menu"],attributes:xt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"price-list-child",isChildren:!0}):React.createElement(XG,e),save:function(e){const{imagePosition:t,headingAlign:a,imgAlign:l,showImage:i}=e.attributes;return React.createElement("div",{className:Be()("uagb-rest_menu__wrap")},"top"===l&&React.createElement(React.Fragment,null,i&&React.createElement(VG,{attributes:e.attributes}),React.createElement("div",{className:"uagb-rm__content"},"right"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e}),"center"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e})),"left"===a&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e})),React.createElement("div",{className:"uagb-rm__separator"})),"side"===l&&React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-rm__content"},"left"===t&&i&&React.createElement(VG,{attributes:e.attributes}),"right"===t&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement("div",{className:"uagb-rm-details"},React.createElement(zG,{attributes:e.attributes,setAttributes:"not_set",props:e}),React.createElement(NG,{attributes:e.attributes,setAttributes:"not_set",props:e})),"left"===t&&React.createElement(DG,{attributes:e.attributes,setAttributes:"not_set",props:e}),"right"===t&&i&&React.createElement(VG,{attributes:e.attributes})),React.createElement("div",{className:"uagb-rm__separator"})))},deprecated:tM});var lM=e=>{const{enableSchema:t,itemType:a,rTitle:l,enableDescription:i,rContent:o,enableImage:n,mainimage:s,sku:c,brand:u,showAuthor:p,rAuthor:b,offerType:d,offerCurrency:g,offerPrice:m,ctaLink:y,offerExpiry:f,datepublish:h,identifier:v,isbn:_,bookAuthorName:T,directorname:C,datecreated:S,provider:w,appCategory:k,reviewPublisher:P,operatingSystem:x}=e,A=[];let G;switch(a){case"Product":void 0!==c&&""!==c||(G=Object(r.__)("Missing merchant-specific identifier for product ( SKU )","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==u&&""!==u||(G=Object(r.__)("Missing brand of the product","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==d&&""!==d||(G=Object(r.__)("Missing offer Type","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==g&&""!==g||(G=Object(r.__)("Missing offer currency of a product","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==m&&""!==m||(G=Object(r.__)("Missing offer price of a product","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==f&&""!==f||(G=Object(r.__)("Missing offer expiry of a product","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==v&&""!==v||(G=Object(r.__)("Missing global identifiers","ultimate-addons-for-gutenberg"),A.push(G));break;case"Book":void 0!==_&&""!==_||(G=Object(r.__)("Missing ISBN number of a book","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==T&&""!==T||(G=Object(r.__)("Missing author of the book","ultimate-addons-for-gutenberg"),A.push(G));break;case"Movie":void 0!==S&&""!==S||(G=Object(r.__)("Missing released date of the movie","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==C&&""!==C||(G=Object(r.__)("Missing director name of the movie","ultimate-addons-for-gutenberg"),A.push(G));break;case"Course":void 0!==w&&""!==w||(G=Object(r.__)("Missing provider of the course","ultimate-addons-for-gutenberg"),A.push(G));break;case"SoftwareApplication":void 0!==k&&""!==k||(G=Object(r.__)("Missing type of application (Application Category)","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==x&&""!==x||(G=Object(r.__)("Missing operating system(s) required","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==d&&""!==d||(G=Object(r.__)("Missing Offer Type","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==m&&""!==m||(G=Object(r.__)("Missing offer price of the application","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==g&&""!==g||(G=Object(r.__)("Missing offer currency of the application","ultimate-addons-for-gutenberg"),A.push(G))}a&&(void 0!==l&&""!==l||(G=Object(r.__)("Missing title of the review","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==o&&""!==o&&!1!==i||(G=Object(r.__)("Missing review description","ultimate-addons-for-gutenberg"),A.push(G)),s&&"null"!==s&&"null"!==s.url&&""!==s.url&&!1!==n||(G=Object(r.__)("Missing review Image","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==y&&""!==y||(G=Object(r.__)("Missing url field","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==b&&""!==b&&!1!==p||(G=Object(r.__)("Missing review author name","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==P&&""!==P||(G=Object(r.__)("Missing review publisher","ultimate-addons-for-gutenberg"),A.push(G)),void 0!==h&&""!==h||(G=Object(r.__)("Missing date of publish","ultimate-addons-for-gutenberg"),A.push(G)));const M=A.map(e=>React.createElement("li",{key:e}," ",e," "));return!0===t&&0!==A.length?React.createElement("div",{className:"rating-schema-notices"},React.createElement("h6",null," ",Object(r.__)("It seems that the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields.","ultimate-addons-for-gutenberg")," "),React.createElement("ul",{className:"rating-schema-notices-list"},M),React.createElement("p",null,Object(r.__)("P.S. Note that this notice is visible only in the editor. This will not be visible in frontend. Also, once the required fields are added, this notice will go away.","ultimate-addons-for-gutenberg")," ",React.createElement("a",{href:"https://developers.google.com/search/docs/data-types/review-snippet",target:"_blank",rel:"noreferrer"},Object(r.__)("Read more.","ultimate-addons-for-gutenberg")))):""};function iM(){return(iM=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}let oM=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];var nM,rM=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{enableSchema:l,itemType:i,itemSubtype:o,sku:n,identifier:s,identifierType:c,offerType:u,offerCurrency:p,offerStatus:b,offerPrice:d,offerExpiry:g,datepublish:m,ctaLink:y,ctaTarget:f,brand:h,headingTag:v,mainimage:_,imgSize:T,showFeature:C,showAuthor:S,starColor:w,descColor:k,titleColor:P,contentColor:x,headFontFamily:A,headFontWeight:G,headFontSizeType:M,headFontSize:R,headFontSizeMobile:B,headFontSizeTablet:U,headLineHeightType:E,headLineHeight:O,headLineHeightMobile:L,headLineHeightTablet:H,headLoadGoogleFonts:j,subHeadFontFamily:z,subHeadFontWeight:D,subHeadFontSize:N,subHeadFontSizeType:I,subHeadFontSizeMobile:V,subHeadFontSizeTablet:W,subHeadLineHeight:q,subHeadLineHeightType:Z,subHeadLineHeightMobile:$,subHeadLineHeightTablet:Y,subHeadLoadGoogleFonts:K,contentLoadGoogleFonts:J,contentFontFamily:X,contentFontWeight:Q,contentFontSizeType:ee,contentLineHeightType:te,contentFontSize:ae,contentFontSizeTablet:le,contentFontSizeMobile:ie,contentLineHeight:oe,contentLineHeightTablet:ne,contentLineHeightMobile:re,topPadding:se,bottomPadding:ce,rightPadding:ue,leftPadding:pe,paddingTopMobile:be,paddingBottomMobile:de,paddingRightMobile:me,paddingLeftMobile:ye,paddingTopTablet:fe,paddingBottomTablet:he,paddingRightTablet:ve,paddingLeftTablet:_e,spacingLink:Te,paddingUnit:Se,mobilePaddingUnit:we,tabletPaddingUnit:ke,authorColor:Pe,summaryColor:xe,starActiveColor:Ae,starOutlineColor:Ge,enableDescription:Me,enableImage:Re,overallAlignment:Be,isbn:Ue,bookAuthorName:Oe,reviewPublisher:He,provider:je,appCategory:ze,operatingSystem:De,datecreated:Ne,directorname:Ie,headTransform:Ve,headDecoration:We,subHeadTransform:qe,subHeadDecoration:Ze,contentTransform:$e,contentDecoration:Ye,headFontStyle:Ke,subHeadFontStyle:Je,contentFontStyle:Xe,headLetterSpacing:Qe,headLetterSpacingTablet:et,headLetterSpacingMobile:tt,headLetterSpacingType:at,subHeadLetterSpacing:lt,subHeadLetterSpacingTablet:it,subHeadLetterSpacingMobile:ot,subHeadLetterSpacingType:nt,contentLetterSpacing:rt,contentLetterSpacingTablet:st,contentLetterSpacingMobile:ct,contentLetterSpacingType:ut,courseMode:pt,repeatCount:bt,repeatFrequency:dt,categoryOfCourse:gt,courseLocation:mt}=t,yt=e=>{a({itemType:e}),"Movie"===i&&a({enableImage:!0}),"Course"===i&&a({enableDescription:!0}),ht.hasOwnProperty(i)&&ht[i].includes(o)||a({itemSubtype:"None"})};let ft;const ht={Book:[{value:"Audiobook",label:Object(r.__)("Audio book","ultimate-addons-for-gutenberg")}],Product:[{value:"IndividualProduct",label:Object(r.__)("Individual Product","ultimate-addons-for-gutenberg")},{value:"ProductCollection",label:Object(r.__)("Product Collection","ultimate-addons-for-gutenberg")},{value:"ProductGroup",label:Object(r.__)("Product Group","ultimate-addons-for-gutenberg")},{value:"ProductModel",label:Object(r.__)("Product Model","ultimate-addons-for-gutenberg")},{value:"SomeProducts",label:Object(r.__)("Some Products","ultimate-addons-for-gutenberg")},{value:"Vehicle",label:Object(r.__)("Vehicle","ultimate-addons-for-gutenberg")}],SoftwareApplication:[{value:"MobileApplication",label:Object(r.__)("Mobile Application","ultimate-addons-for-gutenberg")},{value:"VideoGame",label:Object(r.__)("Video Game","ultimate-addons-for-gutenberg")},{value:"WebApplication",label:Object(r.__)("Web Application","ultimate-addons-for-gutenberg")}]};switch(i){default:break;case"Book":ft=React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("ISBN","ultimate-addons-for-gutenberg"),value:Ue,data:{value:Ue,label:"isbn"},setAttributes:a,onChange:e=>a({isbn:e}),help:Object(r.__)("Note: This is a mandatory field for the Review schema","ultimate-addons-for-gutenberg")}),React.createElement(Fs,{label:Object(r.__)("Book author name","ultimate-addons-for-gutenberg"),value:Oe,data:{value:Oe,label:"bookAuthorName"},setAttributes:a,onChange:e=>a({bookAuthorName:e}),help:Object(r.__)("Note: This is a mandatory field for the Review schema","ultimate-addons-for-gutenberg")}));break;case"Course":ft=React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Provider","ultimate-addons-for-gutenberg"),value:je,data:{value:je,label:"provider"},setAttributes:a,onChange:e=>a({provider:e}),help:Object(r.__)("Note: This is a mandatory field for the Review schema, It contain information about the organization that created the content for the course.","ultimate-addons-for-gutenberg")}),React.createElement(Pi,{label:Object(r.__)("Mode","ultimate-addons-for-gutenberg"),data:{value:pt,label:"courseMode"},setAttributes:a,options:[{value:"Online",label:Object(r.__)("Online","ultimate-addons-for-gutenberg")},{value:"Onsite",label:Object(r.__)("Onsite","ultimate-addons-for-gutenberg")},{value:"Blended",label:Object(r.__)("Blended","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: This is a mandatory field for the Review schema, It contain information of medium through which the course will be delivered.","ultimate-addons-for-gutenberg")}),("Onsite"===pt||"Blended"===pt)&&React.createElement(Fs,{label:Object(r.__)("Location","ultimate-addons-for-gutenberg"),value:mt,data:{value:mt,label:"courseLocation"},setAttributes:a,onChange:e=>a({courseLocation:e}),help:Object(r.__)("Note: This property is only required for Onsite or Blended courses, It contain name or address (or both) of the physical location where the course will be taught.","ultimate-addons-for-gutenberg")}),React.createElement(Pi,{label:Object(r.__)("Frequency","ultimate-addons-for-gutenberg"),layout:"stack",data:{value:dt,label:"repeatFrequency"},setAttributes:a,options:[{value:"Daily",label:Object(r.__)("Daily","ultimate-addons-for-gutenberg")},{value:"Weekly",label:Object(r.__)("Weekly","ultimate-addons-for-gutenberg")},{value:"Monthly",label:Object(r.__)("Monthly","ultimate-addons-for-gutenberg")},{value:"Yearly",label:Object(r.__)("Yearly","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: This is a mandatory field for the Review schema, It contain information of course happens Daily / Weekly / Monthly or Yearly.","ultimate-addons-for-gutenberg")}),React.createElement(bc,{label:Object(r.__)("Duration","ultimate-addons-for-gutenberg"),value:bt,data:{value:bt,label:"repeatCount"},displayUnit:!1,setAttributes:a,min:1,help:Object(r.__)("Note: This is a mandatory field for the Review schema, It contain the numerical value for how long the course lasts for in Frequency units. For example, if the Frequency is monthly and the Duration is 4, the course lasts for 4 months.","ultimate-addons-for-gutenberg"),showControlHeader:!1,name:"totalNumber"}),React.createElement(Pi,{label:Object(r.__)("Pricing Category","ultimate-addons-for-gutenberg"),layout:"stack",data:{value:gt,label:"categoryOfCourse"},setAttributes:a,options:[{value:"Free",label:Object(r.__)("Free","ultimate-addons-for-gutenberg")},{value:"Partially Free",label:Object(r.__)("Partially Free","ultimate-addons-for-gutenberg")},{value:"Subscription",label:Object(r.__)("Subscription","ultimate-addons-for-gutenberg")},{value:"Paid",label:Object(r.__)("Paid","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Note: This is a mandatory field for the Review schema, It contain information of pricing category of the course.","ultimate-addons-for-gutenberg")}));break;case"SoftwareApplication":ft=React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Application Category","ultimate-addons-for-gutenberg"),value:ze,data:{value:ze,label:"appCategory"},setAttributes:a,onChange:e=>a({appCategory:e})}),React.createElement(Fs,{label:Object(r.__)("Operating System","ultimate-addons-for-gutenberg"),value:De,data:{value:De,label:"operatingSystem"},setAttributes:a,onChange:e=>a({operatingSystem:e})}));break;case"Movie":ft=React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Director Name","ultimate-addons-for-gutenberg"),value:Ie,data:{value:Ie,label:"directorname"},setAttributes:a,onChange:e=>a({directorname:e})}),React.createElement("h2",null,Object(r.__)("Date of create","ultimate-addons-for-gutenberg")),React.createElement(Le.DateTimePicker,{currentDate:Ne,onChange:e=>a({datecreated:e}),is12Hour:!0}))}return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,(_&&_.sizes&&(oM=F(_.sizes)),React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Review Title Tag","ultimate-addons-for-gutenberg"),data:{value:v,label:"headingTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:Be,label:"overallAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Schema Support","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({enableSchema:!l})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Review Description","ultimate-addons-for-gutenberg"),checked:Me,onChange:()=>a({enableDescription:!Me}),help:Object(r.__)("Note: This is a mandatory field for the Review schema.","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Review Author","ultimate-addons-for-gutenberg"),checked:S,onChange:()=>a({showAuthor:!S}),help:Object(r.__)("Note: This is a mandatory field for the Review schema.","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Ratings","ultimate-addons-for-gutenberg"),checked:C,onChange:()=>a({showFeature:!C}),help:Object(r.__)("Note: Add feature/section ratings separately.","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Review Image","ultimate-addons-for-gutenberg"),checked:Re,onChange:()=>a({enableImage:!Re}),help:Object(r.__)("Note: This is a mandatory field for the Review schema.","ultimate-addons-for-gutenberg")}),React.createElement(Fs,{label:Object(r.__)("Link","ultimate-addons-for-gutenberg"),value:y,data:{value:y,label:"ctaLink"},setAttributes:a,onChange:e=>a({ctaLink:e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Open in new window","ultimate-addons-for-gutenberg"),checked:f,onChange:()=>{a({ctaTarget:!f})}}))),!0===Re&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(Yl,{onSelectImage:e=>{e&&e.url&&e.type&&"image"===e.type?a({mainimage:e}):a({mainimage:null})},backgroundImage:_,onRemoveImage:()=>{a({mainimage:""})},disableLabel:!0}),_&&"null"!==_&&"null"!==_.url&&""!==_.url&&React.createElement(Pi,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{value:T,label:"imgSize"},setAttributes:a,options:oM}))),(()=>{if(!0===l)return React.createElement(Fe,{title:Object(r.__)("Schema","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Item Type","ultimate-addons-for-gutenberg"),data:{value:i},onChange:yt,options:[{value:"Book",label:Object(r.__)("Book","ultimate-addons-for-gutenberg")},{value:"Course",label:Object(r.__)("Course","ultimate-addons-for-gutenberg")},{value:"Movie",label:Object(r.__)("Movie","ultimate-addons-for-gutenberg")},{value:"Product",label:Object(r.__)("Product","ultimate-addons-for-gutenberg")},{value:"SoftwareApplication",label:Object(r.__)("Software Application","ultimate-addons-for-gutenberg")}]}),ht.hasOwnProperty(i)&&React.createElement(Pi,{label:Object(r.__)("Item Subtype","ultimate-addons-for-gutenberg"),data:{value:o,label:"itemSubtype"},setAttributes:a,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},...ht[i]]}),ft,React.createElement(Fs,{label:Object(r.__)("Review Publisher","ultimate-addons-for-gutenberg"),value:He,data:{value:He,label:"reviewPublisher"},setAttributes:a,onChange:e=>a({reviewPublisher:e}),help:Object(r.__)("Note: This is a mandatory field for the Review schema","ultimate-addons-for-gutenberg")}),React.createElement("h2",null,Object(r.__)("Date Of Publish","ultimate-addons-for-gutenberg")),React.createElement(Le.DateTimePicker,{className:"uagb-date-picker",currentDate:m,onChange:e=>a({datepublish:e}),is12Hour:!0}),["Product","SoftwareApplication"].includes(i)&&React.createElement(React.Fragment,null,["Product"].includes(i)&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Brand","ultimate-addons-for-gutenberg"),value:h,data:{value:h,label:"brand"},setAttributes:a,onChange:e=>a({brand:e})}),React.createElement(Fs,{label:Object(r.__)("SKU","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"sku"},setAttributes:a,onChange:e=>a({sku:e})}),React.createElement(Fs,{label:Object(r.__)("Identifier","ultimate-addons-for-gutenberg"),value:s,data:{value:s,label:"identifier"},setAttributes:a,onChange:e=>a({identifier:e})}),React.createElement(Pi,{label:Object(r.__)("Identifier Type","ultimate-addons-for-gutenberg"),data:{value:c,label:"identifierType"},setAttributes:a,options:["nsn","mpn","gtin8","gtin12","gtin13","gtin14","gtin"].map(e=>({label:e.toUpperCase(),value:e}))})),["Product","SoftwareApplication"].includes(i)&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Offer Currency","ultimate-addons-for-gutenberg"),value:p,data:{value:p,label:"offerCurrency"},setAttributes:a,onChange:e=>a({offerCurrency:e})})),"Offer"===u&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Offer Price","ultimate-addons-for-gutenberg"),value:d,data:{value:d,label:"offerPrice"},setAttributes:a,onChange:e=>a({offerPrice:e}),help:Object(r.__)("Note: This is a mandatory field for the Review schema","ultimate-addons-for-gutenberg")}),React.createElement(Pi,{label:Object(r.__)("Offer Status","ultimate-addons-for-gutenberg"),data:{value:b,label:"offerStatus"},setAttributes:e.setAttributes,options:[{value:"https://schema.org/Discontinued",label:Object(r.__)("Discontinued","ultimate-addons-for-gutenberg")},{value:"https://schema.org/InStock",label:Object(r.__)("In Stock","ultimate-addons-for-gutenberg")},{value:"https://schema.org/InStoreOnly",label:Object(r.__)("In Store Only","ultimate-addons-for-gutenberg")},{value:"https://schema.org/LimitedAvailability",label:Object(r.__)("Limited Availability","ultimate-addons-for-gutenberg")},{value:"https://schema.org/OnlineOnly",label:Object(r.__)("Online Only","ultimate-addons-for-gutenberg")},{value:"https://schema.org/OutOfStock",label:Object(r.__)("Out Of Stock","ultimate-addons-for-gutenberg")},{value:"https://schema.org/PreOrder",label:Object(r.__)("Pre Order","ultimate-addons-for-gutenberg")},{value:"https://schema.org/PreSale",label:Object(r.__)("Pre Sale","ultimate-addons-for-gutenberg")},{value:"https://schema.org/SoldOut",label:Object(r.__)("Sold Out","ultimate-addons-for-gutenberg")}]}),React.createElement("h2",null,Object(r.__)("Price Valid Until","ultimate-addons-for-gutenberg")),React.createElement(Le.DateTimePicker,{className:"uagb-date-picker",currentDate:g,onChange:e=>a({offerExpiry:e}),is12Hour:!0}))))})(),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:P,data:{value:P,label:"titleColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:a,loadGoogleFonts:{value:j,label:"headLoadGoogleFonts"},fontFamily:{value:A,label:"headFontFamily"},fontWeight:{value:G,label:"headFontWeight"},fontStyle:{value:Ke,label:"headFontStyle"},transform:{value:Ve,label:"headTransform"},decoration:{value:We,label:"headDecoration"},fontSizeType:{value:M,label:"headFontSizeType"},fontSize:{value:R,label:"headFontSize"},fontSizeMobile:{value:B,label:"headFontSizeMobile"},fontSizeTablet:{value:U,label:"headFontSizeTablet"},lineHeightType:{value:E,label:"headLineHeightType"},lineHeight:{value:O,label:"headLineHeight"},lineHeightMobile:{value:L,label:"headLineHeightMobile"},lineHeightTablet:{value:H,label:"headLineHeightTablet"},letterSpacing:{value:Qe,label:"headLetterSpacing"},letterSpacingTablet:{value:et,label:"headLetterSpacingTablet"},letterSpacingMobile:{value:tt,label:"headLetterSpacingMobile"},letterSpacingType:{value:at,label:"headLetterSpacingType"}})),Me&&React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},!0===Me&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:k,data:{value:k,label:"descColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:a,loadGoogleFonts:{value:K,label:"subHeadLoadGoogleFonts"},fontFamily:{value:z,label:"subHeadFontFamily"},fontWeight:{value:D,label:"subHeadFontWeight"},fontStyle:{value:Je,label:"subHeadFontStyle"},transform:{value:qe,label:"subHeadTransform"},decoration:{value:Ze,label:"subHeadDecoration"},fontSizeType:{value:I,label:"subHeadFontSizeType"},fontSize:{value:N,label:"subHeadFontSize"},fontSizeMobile:{value:V,label:"subHeadFontSizeMobile"},fontSizeTablet:{value:W,label:"subHeadFontSizeTablet"},lineHeightType:{value:Z,label:"subHeadLineHeightType"},lineHeight:{value:q,label:"subHeadLineHeight"},lineHeightMobile:{value:$,label:"subHeadLineHeightMobile"},lineHeightTablet:{value:Y,label:"subHeadLineHeightTablet"},letterSpacing:{value:lt,label:"subHeadLetterSpacing"},letterSpacingTablet:{value:it,label:"subHeadLetterSpacingTablet"},letterSpacingMobile:{value:ot,label:"subHeadLetterSpacingMobile"},letterSpacingType:{value:nt,label:"subHeadLetterSpacingType"}}))),!0===S&&React.createElement(Fe,{title:Object(r.__)("Author","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Pe,data:{value:Pe,label:"authorColor"},setAttributes:a}))),!0===C&&React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:x,data:{value:x,label:"contentColor"},setAttributes:a}))),React.createElement(Fe,{title:Object(r.__)("Summary","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:xe,data:{value:xe,label:"summaryColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:e.attributes,setAttributes:a,loadGoogleFonts:{value:J,label:"contentLoadGoogleFonts"},fontFamily:{value:X,label:"contentFontFamily"},fontWeight:{value:Q,label:"contentFontWeight"},fontStyle:{value:Xe,label:"contentFontStyle"},transform:{value:$e,label:"contentTransform"},decoration:{value:Ye,label:"contentDecoration"},fontSizeType:{value:ee,label:"contentFontSizeType"},fontSize:{value:ae,label:"contentFontSize"},fontSizeMobile:{value:ie,label:"contentFontSizeMobile"},fontSizeTablet:{value:le,label:"contentFontSizeTablet"},lineHeightType:{value:te,label:"contentLineHeightType"},lineHeight:{value:oe,label:"contentLineHeight"},lineHeightMobile:{value:re,label:"contentLineHeightMobile"},lineHeightTablet:{value:ne,label:"contentLineHeightTablet"},letterSpacing:{value:rt,label:"contentLetterSpacing"},letterSpacingTablet:{value:st,label:"contentLetterSpacingTablet"},letterSpacingMobile:{value:ct,label:"contentLetterSpacingMobile"},letterSpacingType:{value:ut,label:"contentLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Star","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Active Color","ultimate-addons-for-gutenberg"),colorValue:w,data:{value:w,label:"starColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Inactive Color","ultimate-addons-for-gutenberg"),colorValue:Ae,data:{value:Ae,label:"starActiveColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Outline Color","ultimate-addons-for-gutenberg"),colorValue:Ge,data:{value:Ge,label:"starOutlineColor"},setAttributes:a})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,iM({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:se,label:"topPadding"},valueRight:{value:ue,label:"rightPadding"},valueBottom:{value:ce,label:"bottomPadding"},valueLeft:{value:pe,label:"leftPadding"},valueTopTablet:{value:fe,label:"paddingTopTablet"},valueRightTablet:{value:ve,label:"paddingRightTablet"},valueBottomTablet:{value:he,label:"paddingBottomTablet"},valueLeftTablet:{value:_e,label:"paddingLeftTablet"},valueTopMobile:{value:be,label:"paddingTopMobile"},valueRightMobile:{value:me,label:"paddingRightMobile"},valueBottomMobile:{value:de,label:"paddingBottomMobile"},valueLeftMobile:{value:ye,label:"paddingLeftMobile"},unit:{value:Se,label:"paddingUnit"},mUnit:{value:we,label:"mobilePaddingUnit"},tUnit:{value:ke,label:"tabletPaddingUnit"},attributes:t,setAttributes:a,link:{value:Te,label:"spacingLink"}})))),React.createElement(il,iM({},rl,{parentProps:e})))))}),sM=e=>{const{limit:t,id:a,className:l,inactiveStarColor:i,onClick:o,style:n,starOutlineColor:r,value:s,activeStarColor:c}=e;return React.createElement("div",{className:l,style:Object.assign({display:"flex",flexDirection:"flex-row"},n)},[...Array(t).keys()].map(t=>React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",key:t,height:"20",width:"20",viewBox:"0 0 150 150",onMouseOver:()=>(t=>{e.setStateValue({displayValue:t+(e.value-t==1?.5:1),displayColor:e.selectedStarColor})})(t),onMouseOut:()=>{e.setStateValue({displayValue:e.value,displayColor:e.activeStarColor})},onClick:()=>o||(t=>{const{setValue:a,value:l}=e;a(l===t+1?t+.5:t+1),e.setStateValue({displayValue:l===t+1?t+.5:t+1})})(t)},React.createElement("defs",null,React.createElement("mask",{id:`uagb_review_star_filter-${a}-${t}`},React.createElement("rect",{height:"150",width:150*(s-t>0?s-t<1?s-t:1:0),y:"0",x:"0",fill:"#fff"}))),React.createElement("path",{fill:i,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}),React.createElement("path",{className:"star",id:"star"+t,mask:`url(#uagb_review_star_filter-${a}-${t})`,fill:c,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}))))},cM=e=>{const{ID:t,items:a,summaryTitle:l,summaryDescription:i,starCount:o,setItems:n,setSummaryDescription:s,setSummaryTitle:c,setTitle:u,setDescription:p,setAuthorName:b,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y,ctaTarget:f,ctaLink:h,setActiveStarIndex:v,rTitle:_,rContent:T,rAuthor:C,headingTag:S,image_icon_html:w,showfeature:k,imageEnabled:P,descriptionEnabled:x,showauthor:A}=e,{average:G}=e.state,M=a.map(e=>e.value).reduce((e,t)=>e+t)/a.length;G!==M&&e.setStateValue({average:M});let R="_self";return f&&(R="_blank"),React.createElement("div",{className:"uagb_review_block"},React.createElement("a",{href:h,className:"uagb-rating-link-wrapper",target:R,rel:"noopener noreferrer"},React.createElement(ge.RichText,{tagName:S,placeholder:Object(r.__)("Title of the review","ultimate-addons-for-gutenberg"),keepPlaceholderOnFocus:!0,value:_,className:"uagb-rating-title",onChange:e=>u(e)})),!0===x&&React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("Review Description","ultimate-addons-for-gutenberg"),keepPlaceholderOnFocus:!0,value:T,className:"uagb-rating-desc",onChange:e=>p(e)}),!0===A&&React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("Review Author","ultimate-addons-for-gutenberg"),keepPlaceholderOnFocus:!0,value:C,className:"uagb-rating-author",onChange:e=>b(e)}),!0===P&&React.createElement("div",{className:"uagb-rating__source-wrap"},w),a.map((l,i)=>!0===k&&React.createElement("div",{className:"uagb_review_entry",key:i},React.createElement(ge.RichText,{style:{marginRight:"auto"},placeholder:Object(r.__)("Edit feature","ultimate-addons-for-gutenberg"),value:l.label,onChange:e=>n([...a.slice(0,i),{label:e,value:l.value},...a.slice(i+1)])}),React.createElement("div",{style:{marginLeft:"auto",minWidth:a.length>1?120:100}},React.createElement(sM,{id:`${t}-${i}`,key:i,value:l.value,limit:o,setValue:t=>{const o=[...a.slice(0,i),{label:l.label,value:t},...a.slice(i+1)];n(o),v(i),e.setStateValue({average:o.map(e=>e.value).reduce((e,t)=>e+t)/o.length})},inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y,state:e.starState,setStateValue:e.starSetStateValue}),a.length>1&&React.createElement("div",{className:"dashicons dashicons-trash",onClick:()=>{const t=a.slice(0,i).concat(a.slice(i+1,a.length));n(t),e.setStateValue({average:t.map(e=>e.value).reduce((e,t)=>e+t)/t.length})}})))),!0===k&&React.createElement("div",{title:Object(r.__)("Insert new review entry","ultimate-addons-for-gutenberg"),onClick:()=>{n([...a,{label:"",value:0}]),e.setStateValue({average:G/(a.length+1)})},className:"uagb_review_add_entry dashicons dashicons-plus-alt"}),React.createElement("div",{className:"uagb_review_summary"},React.createElement(ge.RichText,{className:"uagb_review_summary_title",placeholder:Object(r.__)("Title of the summary goes here","ultimate-addons-for-gutenberg"),tagName:"p",onChange:e=>c(e),value:l}),React.createElement("div",{className:"uagb_review_overall_value"},React.createElement(ge.RichText,{placeholder:Object(r.__)("Summary of the review goes here","ultimate-addons-for-gutenberg"),onChange:e=>s(e),value:i}),React.createElement("div",{className:"uagb_review_average"},React.createElement("span",{className:"uagb_review_rating"},Math.round(10*G)/10),React.createElement(sM,{id:t+"-average",className:"uagb_review_average_stars",onHover:()=>null,onClick:()=>null,value:G,limit:o,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y,state:e.starState,setStateValue:e.starSetStateValue})))))},uM=a(138),pM=0,bM={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},dM={};dM.locals=uM.a.locals||{},dM.use=function(){return pM++||(nM=ke()(uM.a,bM)),dM},dM.unuse=function(){pM>0&&!--pM&&(nM(),nM=null)};var gM=dM,mM=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(gM.use(),()=>{gM.unuse()}),[]);const{attributes:{block_id:t,authorName:a,itemName:l,description:i,parts:o,starCount:n,summaryTitle:r,summaryDescription:s,inactiveStarColor:c,activeStarColor:u,ctaLink:p,ctaTarget:b,rTitle:d,rContent:g,rAuthor:m,headingTag:y,mainimage:f,imgSize:h,showFeature:v,showAuthor:_,starOutlineColor:T,enableDescription:C,enableImage:S,imgTagHeight:w,imgTagWidth:k},setAttributes:P,isSelected:x,className:A,deviceType:G}=e,M={average:e.attributes.parts.map(e=>e.value).reduce((e,t)=>e+t)/e.attributes.parts.length},[R,U]=Object(B.useState)(M),E={displayValue:e.value,displayColor:e.activeStarColor},[O,L]=Object(B.useState)(E);let H="",j="",F="";var z,D;void 0!==e.attributes.mainimage&&null!==e.attributes.mainimage&&""!==e.attributes.mainimage&&(H=e.attributes.mainimage.url,j=e.attributes.mainimage.title,F=null!==(z=e.attributes.mainimage)&&void 0!==z&&z.alt?null===(D=e.attributes.mainimage)||void 0===D?void 0:D.alt:"");let N="";if(""!==H){const t=e.attributes.mainimage.sizes,a=e.attributes.imgSize;N=void 0!==t&&void 0!==t[a]?t[a].url:H}Object(B.useEffect)(()=>{mf(N,P)},[N]);let I="";return f&&f.url&&(I=React.createElement("img",{className:"uagb-review__source-image",src:N,title:j,width:k,height:w,loading:"lazy",alt:F})),React.createElement("div",{className:Be()(A,"uagb-ratings__outer-wrap","uagb-block-"+t,"uagb-editor-preview-mode-"+G.toLowerCase())},React.createElement(cM,{rTitle:d,setTitle:e=>P({rTitle:e}),ctaLink:p,ctaTarget:b,rContent:g,setDescription:e=>P({rContent:e}),rAuthor:m,setAuthorName:e=>P({rAuthor:e}),headingTag:y,mainimage:f,imgSize:h,image_icon_html:I,isSelected:x,authorName:a,itemName:l,description:i,descriptionEnabled:C,ID:t,imageEnabled:S,items:o,starCount:n,summaryTitle:r,summaryDescription:s,inactiveStarColor:c,activeStarColor:u,selectedStarColor:u,starOutlineColor:T,setItemName:e=>P({itemName:e}),setImage:e=>P({imgID:e.id,imgURL:e.url,imgAlt:e.alt}),setItems:e=>P({parts:e}),setSummaryTitle:e=>P({summaryTitle:e}),setSummaryDescription:e=>P({summaryDescription:e}),hasFocus:x,setEditable:e=>U({editable:e}),setActiveStarIndex:e=>U({editedStar:e}),showfeature:v,showauthor:_,state:R,setStateValue:U,starState:O,starSetStateValue:L}))}),yM=Object(B.memo)(e=>{let{attributes:t}=e;const{headLoadGoogleFonts:a,headFontFamily:l,headFontWeight:i,subHeadLoadGoogleFonts:o,subHeadFontFamily:n,subHeadFontWeight:r,contentLoadGoogleFonts:s,contentFontFamily:c,contentFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};b=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};d=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};p=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,b,d,p)}),fM=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{parts:l,itemType:i,summaryDescription:o,starCount:n,reviewPublisher:r,datepublish:s,rTitle:c,rContent:u,rAuthor:p,isbn:b,provider:d,sku:g,brand:m,datecreated:y,directorname:f,appCategory:h,operatingSystem:v,aggregateType:_,offerType:T,offerPrice:C,itemSubtype:S,mainimage:w,identifierType:k,identifier:P,ctaLink:x,offerExpiry:A,offerCurrency:G,offerStatus:M,UAGHideDesktop:R,UAGHideTab:U,UAGHideMob:E,contentVrPadding:O,contentHrPadding:L,topPadding:H,bottomPadding:j,rightPadding:F,leftPadding:z,enableSchema:D,items:N,showFeature:I,showAuthor:V,enableDescription:W,enableImage:q,bookAuthorName:Z,courseMode:$,repeatCount:Y,repeatFrequency:K,categoryOfCourse:J,courseLocation:X},setAttributes:Q,deviceType:ee}=e,te=()=>{const e=l.map(e=>e.value).reduce((e,t)=>e+t)/l.length,t=l.length;let a="";a=["Product","SoftwareApplication","Book"].includes(i)&&"None"!==S&&""!==S?S:i;const R={"@context":"https://schema.org/","@type":"Review",reviewBody:o,description:u,itemReviewed:[],reviewRating:{"@type":"Rating",ratingValue:e,worstRating:"0",bestRating:n},author:{"@type":"Person",name:p},publisher:r,datePublished:s,url:x};switch(i){case"Book":R.itemReviewed={"@type":a,name:c,description:u,image:[],author:p,isbn:b};break;case"Course":R.itemReviewed={"@type":i,name:c,description:u,image:[],provider:{"@type":"Organization",name:d},offers:[{"@type":"Offer",category:J}],hasCourseInstance:[{"@type":"CourseInstance",courseMode:$,courseSchedule:{"@type":"Schedule",repeatCount:Y,repeatFrequency:K}}]};break;case"Product":R.itemReviewed={"@type":a,name:c,description:u,image:[],sku:g,brand:{"@type":"Brand",name:m},offers:[]};break;case"Movie":R.itemReviewed={"@type":i,name:c,dateCreated:y,director:{"@type":"Person",name:f}};break;case"SoftwareApplication":R.itemReviewed={"@type":a,name:c,applicationCategory:h,operatingSystem:v,aggregateRating:{"@type":_,ratingValue:e,ratingCount:t},offers:{"@type":T,price:C,url:x,priceCurrency:G}}}w&&(R.itemReviewed.image=w.url),"Course"===i&&(R.itemReviewed.hasCourseInstance[0].location=X,R.provider={"@type":"Organization",name:d}),"Product"===i&&(R.itemReviewed[k]=P,R.itemReviewed.offers={"@type":T,price:C,url:x,priceValidUntil:A,priceCurrency:G,availability:M}),Q({schema:JSON.stringify(R)})};Object(B.useEffect)(()=>{var e;O&&(void 0===H&&Q({topPadding:O}),void 0===j&&Q({bottomPadding:O})),L&&(void 0===F&&Q({rightPadding:L}),void 0===z&&Q({leftPadding:L}));const t=null===(e=document.getElementsByClassName("editor-post-publish-button"))||void 0===e?void 0:e[0];t&&t.addEventListener("click",te)},[]),Object(B.useEffect)(()=>{var e;const t=document.querySelector(".uagb-rating-link-wrapper");null!==t&&t.addEventListener("click",(function(e){e.preventDefault()}));const a=null===(e=document.getElementsByClassName("editor-post-publish-button"))||void 0===e?void 0:e[0];if(a)return a.addEventListener("click",te),()=>{null==a||a.removeEventListener("click",te)}},[a,ee]),Object(B.useEffect)(()=>{Bs()},[ee]),Object(B.useEffect)(()=>{he(e)},[R,U,E,ee]),N&&N!==JSON.stringify(l)&&1===l.length&&""===l[0].label&&0===l[0].value&&Q({parts:JSON.parse(N),items:'[{"label":"","value":0}]'});const le=Object(B.useMemo)(()=>function(e,t){const a=t.toLowerCase(),{block_id:l,starColor:i,descColor:o,titleColor:n,contentColor:r,headFontFamily:s,headFontWeight:c,headFontSizeType:u,headLineHeightType:p,headFontSize:b,headFontSizeTablet:d,headFontSizeMobile:g,headLineHeight:m,headLineHeightTablet:y,headLineHeightMobile:f,subHeadFontFamily:h,subHeadFontWeight:v,subHeadFontSize:_,subHeadFontSizeType:T,subHeadFontSizeMobile:C,subHeadFontSizeTablet:S,subHeadLineHeight:w,subHeadLineHeightType:k,subHeadLineHeightMobile:P,subHeadLineHeightTablet:x,contentFontFamily:A,contentFontWeight:G,contentFontSizeType:M,contentLineHeightType:R,contentFontSize:B,contentFontSizeTablet:U,contentFontSizeMobile:E,contentLineHeight:O,contentLineHeightTablet:L,contentLineHeightMobile:H,topPadding:j,bottomPadding:F,rightPadding:z,leftPadding:D,paddingTopMobile:N,paddingBottomMobile:I,paddingRightMobile:V,paddingLeftMobile:W,paddingTopTablet:q,paddingBottomTablet:Z,paddingRightTablet:$,paddingLeftTablet:Y,paddingUnit:K,mobilePaddingUnit:J,tabletPaddingUnit:X,authorColor:Q,summaryColor:ee,starActiveColor:te,starOutlineColor:le,overallAlignment:ie,headTransform:oe,headDecoration:ne,subHeadTransform:re,subHeadDecoration:se,contentTransform:ce,contentDecoration:ue,headFontStyle:pe,subHeadFontStyle:be,contentFontStyle:de,headLetterSpacing:ge,headLetterSpacingTablet:me,headLetterSpacingMobile:ye,headLetterSpacingType:fe,subHeadLetterSpacing:he,subHeadLetterSpacingTablet:ve,subHeadLetterSpacingMobile:_e,subHeadLetterSpacingType:Te,contentLetterSpacing:Ce,contentLetterSpacingTablet:Se,contentLetterSpacingMobile:we,contentLetterSpacingType:ke}=e;let Pe={},xe={};const Ae={" .uagb-star-inner-container svg":{fill:i}," .uagb-avg-review-star-inner-container svg":{fill:i}," .uagb-rating-title":{"font-size":ns(b,u),"font-weight":c,"font-family":s,"font-style":pe,"text-decoration":ne,"text-transform":oe,"line-height":ns(m,p),"letter-spacing":ns(ge,fe),color:n}," .uagb_review_entry":{"font-size":ns(b,u),"font-weight":c,"font-family":s,"font-style":pe,"text-decoration":ne,"text-transform":oe,"line-height":ns(m,p),"letter-spacing":ns(ge,fe)}," .uagb-rating-desc":{"font-size":ns(_,T),"font-weight":v,"font-family":h,"font-style":be,"text-decoration":se,"text-transform":re,"line-height":ns(w,k),"letter-spacing":ns(he,Te),color:o}," .uagb-rating-author":{"font-size":ns(_,T),"font-weight":v,"font-family":h,"font-style":be,"text-decoration":se,"text-transform":re,"line-height":ns(w,k),"letter-spacing":ns(he,Te),color:Q}," .uagb_review_block":{"padding-left":ns(D,K),"padding-right":ns(z,K),"padding-top":ns(j,K),"padding-bottom":ns(F,K),"text-align":ie}," .uagb_review_summary, p.rich-text.block-editor-rich-text__editable.uagb_review_summary_title":{"font-size":ns(B,M),"font-weight":G,"font-family":A,"font-style":de,"text-decoration":ue,"text-transform":ce,"line-height":ns(O,R),"letter-spacing":ns(Ce,ke),color:ee}," .uagb_review_entry .rich-text":{color:r}," .uagb_review_entry .star, .uagb_review_average_stars .star":{fill:i}," .uagb_review_entry path, .uagb_review_average_stars path":{stroke:le,fill:te}};xe={" .uagb-rating-title, .uagb_review_entry":{"font-size":ns(g,u),"line-height":ns(f,p),"letter-spacing":ns(ye,fe)}," .uagb-rating-desc, .uagb-rating-author":{"font-size":ns(C,T),"line-height":ns(P,k),"letter-spacing":ns(_e,Te)}," .uagb_review_summary, p.rich-text.block-editor-rich-text__editable.uagb_review_summary_title":{"font-size":ns(E,M),"line-height":ns(H,R),"letter-spacing":ns(we,ke)}," .uagb_review_block":{"padding-left":ns(W,J),"padding-right":ns(V,J),"padding-top":ns(N,J),"padding-bottom":ns(I,J)}},Pe={" .uagb-rating-title, .uagb_review_entry":{"font-size":ns(d,u),"line-height":ns(y,p),"letter-spacing":ns(me,fe)}," .uagb-rating-desc, .uagb-rating-author":{"font-size":ns(S,T),"line-height":ns(x,k),"letter-spacing":ns(ve,Te)}," .uagb_review_summary, p.rich-text.block-editor-rich-text__editable.uagb_review_summary_title":{"font-size":ns(U,M),"line-height":ns(L,R),"letter-spacing":ns(Se,ke)}," .uagb_review_block":{"padding-left":ns(Y,X),"padding-right":ns($,X),"padding-top":ns(q,X),"padding-bottom":ns(Z,X)}};const Ge=".editor-styles-wrapper .uagb-block-"+l;let Me=ae(Ae,Ge);return"tablet"!==a&&"mobile"!==a||(Me+=ae(Pe,""+Ge,!0,"tablet"),"mobile"===a&&(Me+=ae(xe,""+Ge,!0,"mobile"))),Me}(a,ee),[a,ee]);return React.createElement(React.Fragment,null,React.createElement(lM,{enableSchema:D,itemType:i,rTitle:c,enableDescription:W,rContent:u,enableImage:q,mainimage:w,sku:g,brand:m,starCount:n,showAuthor:V,rAuthor:p,showfeature:I,aggregateType:_,offerType:T,datepublish:s,offerCurrency:G,offerPrice:C,ctaLink:x,offerExpiry:A,identifier:P,isbn:b,bookAuthorName:Z,directorname:f,datecreated:y,provider:d,appCategory:h,operatingSystem:v,reviewPublisher:r}),React.createElement(me,{blockStyling:le}),React.createElement(yM,{attributes:a}),t&&React.createElement(rM,e),React.createElement(mM,e))}),hM=e=>{const{limit:t,id:a,className:l,inactiveStarColor:i,onClick:o,style:n,starOutlineColor:r,value:s,activeStarColor:c}=e;return React.createElement("div",{className:l,style:Object.assign({display:"flex",flexDirection:"flex-row"},n)},[...Array(t).keys()].map(t=>React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",key:t,height:"20",width:"20",viewBox:"0 0 150 150",onMouseOver:()=>(t=>{e.setStateValue({displayValue:t+(e.value-t==1?.5:1),displayColor:e.selectedStarColor})})(t),onMouseOut:()=>{e.setStateValue({displayValue:e.value,displayColor:e.activeStarColor})},onClick:()=>o||(t=>{const{setValue:a,value:l}=e;a(l===t+1?t+.5:t+1),e.setStateValue({displayValue:l===t+1?t+.5:t+1})})(t)},React.createElement("defs",null,React.createElement("mask",{id:`uagb_review_star_filter-${a}-${t}`},React.createElement("rect",{height:"150",width:150*(s-t>0?s-t<1?s-t:1:0),y:"0",x:"0",fill:"#fff"}))),React.createElement("path",{fill:i,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}),React.createElement("path",{className:"star",id:"star"+t,mask:`url(#uagb_review_star_filter-${a}-${t})`,fill:c,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}))))};a(360);class vM extends B.Component{constructor(e){super(e),this.state={displayValue:this.props.value,displayColor:this.props.activeStarColor},this.mouseHover=this.mouseHover.bind(this),this.mouseLeave=this.mouseLeave.bind(this),this.mouseClick=this.mouseClick.bind(this)}mouseHover(e){this.setState({displayValue:e+(this.props.value-e==1?.5:1),displayColor:this.props.selectedStarColor})}mouseLeave(){this.setState({displayValue:this.props.value,displayColor:this.props.activeStarColor})}mouseClick(e){const{setValue:t,value:a}=this.props;t(a===e+1?e+.5:e+1),this.setState({displayValue:a===e+1?e+.5:e+1})}componentWillReceiveProps(e){const{value:t,activeStarColor:a}=e;this.props.onHover||this.state.displayValue!==t?this.setState({displayValue:t,displayColor:a}):this.setState({displayColor:a})}render(){const{displayValue:e}=this.state,{limit:t,id:a,className:l,inactiveStarColor:i,onHover:o,onClick:n,style:r,starOutlineColor:s}=this.props;return React.createElement("div",{className:l,style:Object.assign({display:"flex",flexDirection:"flex-row"},r)},[...Array(t).keys()].map(t=>React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",key:t,height:"20",width:"20",viewBox:"0 0 150 150",onMouseOver:()=>o||this.mouseHover(t),onMouseOut:()=>this.mouseLeave(),onClick:()=>n||this.mouseClick(t)},React.createElement("defs",null,React.createElement("mask",{id:`uagb_review_star_filter-${a}-${t}`},React.createElement("rect",{height:"150",width:150*(e-t>0?e-t<1?e-t:1:0),y:"0",x:"0",fill:"#fff"}))),React.createElement("path",{fill:i,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:s}),React.createElement("path",{className:"star",id:"star"+t,mask:`url(#uagb_review_star_filter-${a}-${t})`,fill:this.state.displayColor,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:s}))))}}B.Component;var _M=e=>{const{limit:t,id:a,className:l,inactiveStarColor:i,onClick:o,style:n,starOutlineColor:r,value:s,activeStarColor:c}=e;return React.createElement("div",{className:l,style:Object.assign({display:"flex",flexDirection:"flex-row"},n)},[...Array(t).keys()].map(t=>React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",key:t,height:"20",width:"20",viewBox:"0 0 150 150",onMouseOver:()=>(t=>{e.setStateValue({displayValue:t+(e.value-t==1?.5:1),displayColor:e.selectedStarColor})})(t),onMouseOut:()=>{e.setStateValue({displayValue:e.value,displayColor:e.activeStarColor})},onClick:()=>o||(t=>{const{setValue:a,value:l}=e;a(l===t+1?t+.5:t+1),e.setStateValue({displayValue:l===t+1?t+.5:t+1})})(t)},React.createElement("defs",null,React.createElement("mask",{id:`uagb_review_star_filter-${a}-${t}`},React.createElement("rect",{height:"150",width:150*(s-t>0?s-t<1?s-t:1:0),y:"0",x:"0",fill:"#fff"}))),React.createElement("path",{fill:i,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}),React.createElement("path",{className:"star",id:"star"+t,mask:`url(#uagb_review_star_filter-${a}-${t})`,fill:c,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}))))},TM=e=>{const{limit:t,id:a,className:l,inactiveStarColor:i,onClick:o,style:n,starOutlineColor:r,value:s,activeStarColor:c}=e;return React.createElement("div",{className:l,style:Object.assign({display:"flex",flexDirection:"flex-row"},n)},[...Array(t).keys()].map(t=>React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",key:t,height:"20",width:"20",viewBox:"0 0 150 150",onMouseOver:()=>(t=>{e.setStateValue({displayValue:t+(e.value-t==1?.5:1),displayColor:e.selectedStarColor})})(t),onMouseOut:()=>{e.setStateValue({displayValue:e.value,displayColor:e.activeStarColor})},onClick:()=>o||(t=>{const{setValue:a,value:l}=e;a(l===t+1?t+.5:t+1),e.setStateValue({displayValue:l===t+1?t+.5:t+1})})(t)},React.createElement("defs",null,React.createElement("mask",{id:`uagb_review_star_filter-${a}-${t}`},React.createElement("rect",{height:"150",width:150*(s-t>0?s-t<1?s-t:1:0),y:"0",x:"0",fill:"#fff"}))),React.createElement("path",{fill:i,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}),React.createElement("path",{className:"star",id:"star"+t,mask:`url(#uagb_review_star_filter-${a}-${t})`,fill:c,strokeWidth:"2.5",d:"m0.75,56.89914l56.02207,0l17.31126,-56.14914l17.31126,56.14914l56.02206,0l-45.32273,34.70168l17.31215,56.14914l-45.32274,-34.70262l-45.32274,34.70262l17.31215,-56.14914l-45.32274,-34.70168z",stroke:r}))))},CM=[{attributes:{ID:{type:"string",default:""},itemType:{type:"string",default:Object(r.__)("Product")},itemSubtype:{type:"string",default:""},reviewPublisher:{type:"string",default:""},bookAuthorName:{type:"string",default:""},isbn:{type:"string",default:""},provider:{type:"string",default:""},appCategory:{type:"string",default:""},operatingSystem:{type:"string",default:""},datecreated:{type:"string",default:"Dec 19 2020"},directorname:{type:"string",default:""},overallAlignment:{type:"string",default:"left"},schema:{type:"string",default:""},rTitle:{type:"string",default:""},rContent:{type:"string",default:""},rAuthor:{type:"string",default:""},headingTag:{type:"string",default:"h3"},block_id:{type:"string",default:""},mainimage:{type:"object",default:{url:""}},imgSize:{type:"string",default:"thumbnail"},authorName:{type:"string",default:""},itemName:{type:"string",default:""},items:{type:"string",default:'[{"label":"","value":0}]'},description:{type:"string",default:""},descriptionAlign:{type:"string",default:"left"},imgURL:{type:"string",default:""},imgID:{type:"number"},imgAlt:{type:"string",default:""},parts:{type:"array",default:[{label:"",value:0}]},starCount:{type:"number",default:5},summaryTitle:{type:"string",default:Object(r.__)("Summary")},summaryDescription:{type:"string",default:""},callToActionText:{type:"string",default:""},ctaLink:{type:"string",default:"#"},callToActionBackColor:{type:"string",default:"#f63d3d"},callToActionForeColor:{type:"string",default:"#ffffff"},inactiveStarColor:{type:"string",default:"#888888"},activeStarColor:{type:"string",default:"#eeee00"},authorColor:{type:"string",default:""},summaryColor:{type:"string",default:""},titleAlign:{type:"string",default:"left"},authorAlign:{type:"string",default:"left"},enableCTA:{type:"boolean",default:!0},ctaNoFollow:{type:"boolean",default:!0},ctaOpenInNewTab:{type:"boolean",default:!0},enableReviewSchema:{type:"boolean",default:!0},enableImage:{type:"boolean",default:!0},enableDescription:{type:"boolean",default:!0},enableSchema:{type:"boolean",default:!0},starOutlineColor:{type:"string",default:"#000000"},starActiveColor:{type:"string",default:"#000000"},imageSize:{type:"number",default:100},brand:{type:"string",default:""},sku:{type:"string",default:""},identifier:{type:"string",default:""},identifierType:{type:"string",default:"gtin"},ctaTarget:{type:"boolean",default:!1},offerType:{type:"string",default:"Offer"},offerStatus:{type:"string",default:""},offerPrice:{type:"string",default:0},offerCurrency:{type:"string",default:"USD"},offerExpiry:{type:"string",default:"Dec 19 2020"},datepublish:{type:"string",default:"Dec 19 2020"},featuresTitle:{type:"string",default:Object(r.__)("List Of Features:")},featuresAvgText:{type:"string",default:Object(r.__)("Average Ratings")},feature_count:{type:"number",default:1},showFeature:{type:"boolean",default:!1},showAuthor:{type:"boolean",default:!0},starSize:{type:"number",default:20},starColor:{type:"string",default:"#ffff00"},selectedStars:{type:"number",default:0},starAlign:{type:"string",default:"left"},descColor:{type:"string",default:""},titleColor:{type:"string",default:""},pricevalue:{type:"string",default:"US$65"},pricetext:{type:"string",default:"Price"},availabilityvalue:{type:"string",default:Object(r.__)("Instock")},availabilitytext:{type:"string",default:Object(r.__)("Availability")},contentVrPadding:{type:"number",default:15},contentHrPadding:{type:"number",default:50},star_gap:{type:"number",default:100},contentColor:{type:"string",default:""},author:{type:"string",default:""},headFontFamily:{type:"string",default:"Default"},headFontWeight:{type:"string"},headFontSubset:{type:"string"},headFontSizeType:{type:"string",default:"px"},headLineHeightType:{type:"string",default:"em"},headFontSize:{type:"number"},headFontSizeTablet:{type:"number"},headFontSizeMobile:{type:"number"},headLineHeight:{type:"number"},headLineHeightTablet:{type:"number"},headLineHeightMobile:{type:"number"},subHeadFontFamily:{type:"string",default:""},subHeadFontWeight:{type:"string"},subHeadFontSubset:{type:"string"},subHeadFontSize:{type:"number"},subHeadFontSizeType:{type:"string",default:"px"},subHeadFontSizeTablet:{type:"number"},subHeadFontSizeMobile:{type:"number"},subHeadLineHeight:{type:"number"},subHeadLineHeightType:{type:"string",default:"em"},subHeadLineHeightTablet:{type:"number"},subHeadLineHeightMobile:{type:"number"},separatorSpace:{type:"number",default:15},headLoadGoogleFonts:{type:"boolean",default:!1},subHeadLoadGoogleFonts:{type:"boolean",default:!1},contentFontFamily:{type:"string",default:"Default"},contentLoadGoogleFonts:{type:"boolean",default:!1},contentFontWeight:{type:"string"},contentFontSubset:{type:"string"},contentFontSize:{type:"number"},contentFontSizeType:{type:"string",default:"px"},contentFontSizeTablet:{type:"number"},contentFontSizeMobile:{type:"number"},contentLineHeight:{type:"number"},contentLineHeightType:{type:"string",default:"em"},contentLineHeightTablet:{type:"number"},contentLineHeightMobile:{type:"number"},deviceType:{type:"string",default:"Desktop"},paddingUnit:{type:"string",default:"px"}},save:function(e){const{attributes:t,className:a}=e,{enableSchema:l,rTitle:i,rContent:o,mainimage:n,rAuthor:r,headingTag:s,starCount:c,ID:u,parts:p,summaryTitle:b,summaryDescription:d,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f,schema:h,block_id:v,showAuthor:_,showFeature:T,enableDescription:C,enableImage:S,ctaTarget:w,ctaLink:k}=t,P=p.map(e=>e.value).reduce((e,t)=>e+t)/p.length;let x="",A="";void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(x=t.mainimage.url,A=t.mainimage.title);let G="";if(""!==x){let e=t.mainimage.sizes,a=t.imgSize;G=void 0!==e&&void 0!==e[a]?e[a].url:x}let M="";n&&n.url&&(M=React.createElement("img",{className:"uagb-howto__source-image",src:G,title:A}));let R="";return w&&(R="_blank"),React.createElement("div",{className:Be()(a,"uagb-ratings__outer-wrap","uagb-block-"+v.substr(0,8))},l&&React.createElement("script",{type:"application/ld+json"},h),React.createElement("div",{className:"uagb_review_block"},React.createElement("a",{href:k,className:Be()("uagb-rating-link-wrapper"),target:R,rel:"noopener noreferrer"},React.createElement(ge.RichText.Content,{value:i,className:"uagb-rating-title",tagName:s})),!0===C&&React.createElement(ge.RichText.Content,{tagName:"p",value:o,className:"uagb-rating-desc"}),!0===_&&React.createElement(ge.RichText.Content,{tagName:"p",value:r,className:"uagb-rating-author"}),!0===S&&React.createElement("div",{className:"uagb-rating__source-wrap"},M),p.map((e,t)=>!0===T&&React.createElement("div",{className:"uagb_review_entry"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.label}),React.createElement("div",{key:t,style:{marginLeft:"auto",minWidth:p.length>1?120:100}},React.createElement(vM,{id:""+t,key:t,value:e.value,limit:c,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f})))),React.createElement("div",{className:"uagb_review_summary"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_title",tagName:"p",value:b}),React.createElement("div",{className:"uagb_review_overall_value"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_desc",tagName:"p",value:d}),React.createElement("div",{className:"uagb_review_average"},React.createElement("span",{className:"uagb_review_rating"},Math.round(10*P)/10),React.createElement(vM,{id:u+"-average",className:"uagb_review_average_stars",onHover:()=>null,onClick:()=>null,value:P,limit:c,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f}))))))}},{attributes:Xt,save:function(e){const{attributes:t,className:a}=e,{enableSchema:l,rTitle:i,rContent:o,mainimage:n,rAuthor:r,headingTag:s,starCount:c,ID:u,parts:p,summaryTitle:b,summaryDescription:d,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f,schema:h,block_id:v,showAuthor:_,showFeature:T,enableDescription:C,enableImage:S,ctaTarget:w,ctaLink:k}=t,P=p.map(e=>e.value).reduce((e,t)=>e+t)/p.length;let x="",A="",G="";var M,R;void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(x=t.mainimage.url,A=t.mainimage.title,G=null!==(M=e.attributes.mainimage)&&void 0!==M&&M.alt?null===(R=e.attributes.mainimage)||void 0===R?void 0:R.alt:"");let B="";if(""!==x){const e=t.mainimage.sizes,a=t.imgSize;B=void 0!==e&&void 0!==e[a]?e[a].url:x}let U="";n&&n.url&&(U=React.createElement("img",{className:"uagb-howto__source-image",src:B,title:A,alt:G}));let E="";return w&&(E="_blank"),React.createElement("div",{className:Be()(a,"uagb-ratings__outer-wrap","uagb-block-"+v.substr(0,8))},l&&React.createElement("script",{type:"application/ld+json"},h),React.createElement("div",{className:"uagb_review_block"},React.createElement("a",{href:k,className:Be()("uagb-rating-link-wrapper"),target:E,rel:"noopener noreferrer"},React.createElement(ge.RichText.Content,{value:i,className:"uagb-rating-title",tagName:s})),!0===C&&React.createElement(ge.RichText.Content,{tagName:"p",value:o,className:"uagb-rating-desc"}),!0===_&&React.createElement(ge.RichText.Content,{tagName:"p",value:r,className:"uagb-rating-author"}),!0===S&&React.createElement("div",{className:"uagb-rating__source-wrap"},U),p.map((e,t)=>!0===T&&React.createElement("div",{className:"uagb_review_entry"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.label}),React.createElement("div",{key:t,style:{marginLeft:"auto",minWidth:p.length>1?120:100}},React.createElement(_M,{id:""+t,key:t,value:e.value,limit:c,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f})))),React.createElement("div",{className:"uagb_review_summary"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_title",tagName:"p",value:b}),React.createElement("div",{className:"uagb_review_overall_value"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_desc",tagName:"p",value:d}),React.createElement("div",{className:"uagb_review_average"},React.createElement("span",{className:"uagb_review_rating"},Math.round(10*P)/10),React.createElement(_M,{id:u+"-average",className:"uagb_review_average_stars",onHover:()=>null,onClick:()=>null,value:P,limit:c,inactiveStarColor:g,activeStarColor:m,selectedStarColor:y,starOutlineColor:f}))))))}},{attributes:Xt,save(e){const{attributes:t,className:a}=e,{enableSchema:l,rTitle:i,rContent:o,mainimage:n,rAuthor:r,headingTag:s,starCount:c,parts:u,summaryTitle:p,summaryDescription:b,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y,schema:f,block_id:h,showAuthor:v,showFeature:_,enableDescription:T,enableImage:C,ctaTarget:S,ctaLink:w}=t,k=u.map(e=>e.value).reduce((e,t)=>e+t)/u.length;let P="",x="",A="";var G,M;void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(P=t.mainimage.url,x=t.mainimage.title,A=null!==(G=e.attributes.mainimage)&&void 0!==G&&G.alt?null===(M=e.attributes.mainimage)||void 0===M?void 0:M.alt:"");let R="";if(""!==P){const e=t.mainimage.sizes,a=t.imgSize;R=void 0!==e&&void 0!==e[a]?e[a].url:P}let B="";n&&n.url&&(B=React.createElement("img",{className:"uagb-howto__source-image",src:R,title:x,alt:A}));let U="";return S&&(U="_blank"),React.createElement("div",{className:Be()(a,"uagb-ratings__outer-wrap","uagb-block-"+h.substr(0,8))},l&&React.createElement("script",{type:"application/ld+json"},f),React.createElement("div",{className:"uagb_review_block"},React.createElement("a",{href:w,className:Be()("uagb-rating-link-wrapper"),target:U,rel:"noopener noreferrer"},React.createElement(ge.RichText.Content,{value:i,className:"uagb-rating-title",tagName:s})),!0===T&&React.createElement(ge.RichText.Content,{tagName:"p",value:o,className:"uagb-rating-desc"}),!0===v&&React.createElement(ge.RichText.Content,{tagName:"p",value:r,className:"uagb-rating-author"}),!0===C&&React.createElement("div",{className:"uagb-rating__source-wrap"},B),u.map((e,t)=>!0===_&&React.createElement("div",{className:"uagb_review_entry"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.label}),React.createElement("div",{key:t,style:{marginLeft:"auto",minWidth:u.length>1?120:100}},React.createElement(TM,{id:`${h.substr(0,8)}-${t}`,key:t,value:e.value,limit:c,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y})))),React.createElement("div",{className:"uagb_review_summary"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_title",tagName:"p",value:p}),React.createElement("div",{className:"uagb_review_overall_value"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_desc",tagName:"p",value:b}),React.createElement("div",{className:"uagb_review_average"},React.createElement("span",{className:"uagb_review_rating"},Math.round(10*k)/10),React.createElement(TM,{id:h.substr(0,8)+"-average",className:"uagb_review_average_stars",onHover:()=>null,onClick:()=>null,value:k,limit:c,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y}))))))}}];let SM={};SM=Object(j.applyFilters)("uagb/review",ws(SM)),Object(be.registerBlockType)("uagb/review",{...SM,title:Object(r.__)("Review","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add reviews to items with Schema support.","ultimate-addons-for-gutenberg"),icon:se.review,keywords:[Object(r.__)("ratings","ultimate-addons-for-gutenberg"),Object(r.__)("review","ultimate-addons-for-gutenberg"),Object(r.__)("schema","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Xt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"review"}):React.createElement(fM,e),save:function(e){const{attributes:t,className:a}=e,{enableSchema:l,rTitle:i,rContent:o,mainimage:n,rAuthor:r,headingTag:s,starCount:c,parts:u,summaryTitle:p,summaryDescription:b,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y,schema:f,block_id:h,showAuthor:v,showFeature:_,enableDescription:T,enableImage:C,ctaTarget:S,ctaLink:w,imgTagHeight:k,imgTagWidth:P}=t,x=u.map(e=>e.value).reduce((e,t)=>e+t)/u.length;let A="",G="",M="";var R,B;void 0!==t.mainimage&&null!==t.mainimage&&""!==t.mainimage&&(A=t.mainimage.url,G=t.mainimage.title,M=null!==(R=e.attributes.mainimage)&&void 0!==R&&R.alt?null===(B=e.attributes.mainimage)||void 0===B?void 0:B.alt:"");let U="";if(""!==A){const e=t.mainimage.sizes,a=t.imgSize;U=void 0!==e&&void 0!==e[a]?e[a].url:A}let E="";n&&n.url&&(E=React.createElement("img",{className:"uagb-howto__source-image",src:U,title:G,width:P,height:k,loading:"lazy",alt:M}));let O="";return S&&(O="_blank"),React.createElement("div",{className:Be()(a,"uagb-ratings__outer-wrap","uagb-block-"+h)},l&&React.createElement("script",{type:"application/ld+json"},f),React.createElement("div",{className:"uagb_review_block"},React.createElement("a",{href:w,className:Be()("uagb-rating-link-wrapper"),target:O,rel:"noopener noreferrer"},React.createElement(ge.RichText.Content,{value:i,className:"uagb-rating-title",tagName:s})),!0===T&&React.createElement(ge.RichText.Content,{tagName:"p",value:o,className:"uagb-rating-desc"}),!0===v&&React.createElement(ge.RichText.Content,{tagName:"p",value:r,className:"uagb-rating-author"}),!0===C&&React.createElement("div",{className:"uagb-rating__source-wrap"},E),u.map((e,t)=>!0===_&&React.createElement("div",{className:"uagb_review_entry"},React.createElement(ge.RichText.Content,{tagName:"div",value:e.label}),React.createElement("div",{key:t,style:{marginLeft:"auto",minWidth:u.length>1?120:100}},React.createElement(hM,{id:`${h}-${t}`,key:t,value:e.value,limit:c,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y})))),React.createElement("div",{className:"uagb_review_summary"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_title",tagName:"p",value:p}),React.createElement("div",{className:"uagb_review_overall_value"},React.createElement(ge.RichText.Content,{className:"uagb_review_summary_desc",tagName:"p",value:b}),React.createElement("div",{className:"uagb_review_average"},React.createElement("span",{className:"uagb_review_rating"},Math.round(10*x)/10),React.createElement(hM,{id:h+"-average",className:"uagb_review_average_stars",onHover:()=>null,onClick:()=>null,value:x,limit:c,inactiveStarColor:d,activeStarColor:g,selectedStarColor:m,starOutlineColor:y}))))))},deprecated:CM}),a(74);const wM=e=>{let t={};switch(e){case"left":t={"margin-left":0,"margin-right":"auto"};break;case"center":t={"margin-left":"auto","margin-right":"auto"};break;case"right":t={"margin-right":0,"margin-left":"auto"}}return t};var kM=Object(B.memo)(e=>{let{attributes:t}=e;const{elementTextLoadGoogleFonts:a,elementTextFontFamily:l,elementTextFontWeight:i}=t;let o;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};o=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,o)});function PM(){return(PM=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var xM=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{separatorStyle:i,separatorAlign:o,separatorAlignTablet:n,separatorAlignMobile:s,separatorWidth:c,separatorWidthTablet:u,separatorWidthMobile:p,separatorWidthType:b,separatorColor:d,separatorBorderHeight:g,separatorBorderHeightMobile:m,separatorBorderHeightTablet:y,separatorBorderHeightUnit:f,separatorSize:h,separatorSizeMobile:v,separatorSizeTablet:_,separatorSizeType:T,elementType:C,separatorText:S,separatorTextTag:w,separatorIcon:k,elementPosition:P,elementSpacing:x,elementSpacingTablet:A,elementSpacingMobile:G,elementSpacingUnit:M,elementTextLoadGoogleFonts:R,elementTextFontFamily:B,elementTextFontWeight:U,elementTextFontSize:E,elementTextFontSizeType:O,elementTextFontSizeTablet:L,elementTextFontSizeMobile:H,elementTextLineHeightType:j,elementTextLineHeight:F,elementTextLineHeightTablet:z,elementTextLineHeightMobile:D,elementTextFontStyle:N,elementTextLetterSpacing:I,elementTextLetterSpacingTablet:V,elementTextLetterSpacingMobile:W,elementTextLetterSpacingType:q,elementTextDecoration:Z,elementTextTransform:$,elementColor:Y,elementIconWidth:K,elementIconWidthTablet:J,elementIconWidthMobile:X,elementIconWidthType:Q,blockTopPadding:ee,blockRightPadding:te,blockLeftPadding:ae,blockBottomPadding:le,blockTopPaddingTablet:ie,blockRightPaddingTablet:oe,blockLeftPaddingTablet:ne,blockBottomPaddingTablet:re,blockTopPaddingMobile:se,blockRightPaddingMobile:ce,blockLeftPaddingMobile:ue,blockBottomPaddingMobile:pe,blockPaddingUnit:be,blockPaddingUnitTablet:de,blockPaddingUnitMobile:me,blockPaddingLink:ye,blockTopMargin:fe,blockRightMargin:he,blockLeftMargin:ve,blockBottomMargin:_e,blockTopMarginTablet:Te,blockRightMarginTablet:Se,blockLeftMarginTablet:we,blockBottomMarginTablet:ke,blockTopMarginMobile:Pe,blockRightMarginMobile:xe,blockLeftMarginMobile:Ae,blockBottomMarginMobile:Ge,blockMarginUnit:Me,blockMarginUnitTablet:Re,blockMarginUnitMobile:Be,blockMarginLink:Ue}=t;return React.createElement("div",null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:i,label:"separatorStyle"},help:"none"!==i&&"dotted"!==i&&"dashed"!==i&&"double"!==i&&"solid"!==i&&Object(r.__)("Note: Please set Separator Height for proper thickness.","ultimate-addons-for-gutenberg"),setAttributes:a,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"rectangles",label:Object(r.__)("Rectangles","ultimate-addons-for-gutenberg")},{value:"parallelogram",label:Object(r.__)("Parallelogram","ultimate-addons-for-gutenberg")},{value:"slash",label:Object(r.__)("Slash","ultimate-addons-for-gutenberg")},{value:"leaves",label:Object(r.__)("Leaves","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Add Element","ultimate-addons-for-gutenberg"),data:{value:C,label:"elementType"},options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"text",label:Object(r.__)("Text","ultimate-addons-for-gutenberg")},{value:"icon",label:Object(r.__)("Icon","ultimate-addons-for-gutenberg")}],showIcons:!1,responsive:!1}),"text"===C&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),data:{value:S,label:"separatorText"},setAttributes:a,value:S}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:w,label:"separatorTextTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]})),"icon"===C&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:k,onChange:e=>a({separatorIcon:e})}))))),React.createElement(il,nl,React.createElement(Fe,{title:"Separator",initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:o,label:"separatorAlign"},tablet:{value:n,label:"separatorAlignTablet"},mobile:{value:s,label:"separatorAlignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"separatorWidth"},tablet:{value:u,label:"separatorWidthTablet"},mobile:{value:p,label:"separatorWidthMobile"}},min:0,max:"%"===b?100:500,unit:{value:b,label:"separatorWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),"solid"!==i&&"double"!==i&&"dotted"!==i&&"dashed"!==i&&"none"!==i&&React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:h,label:"separatorSize"},tablet:{value:_,label:"separatorSizeTablet"},mobile:{value:v,label:"separatorSizeMobile"}},min:0,max:"%"===T?100:500,unit:{value:T,label:"separatorSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),"none"!==i&&React.createElement(tl,{label:Object(r.__)("Separator Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:g,label:"separatorBorderHeight"},tablet:{value:y,label:"separatorBorderHeightTablet"},mobile:{value:m,label:"separatorBorderHeightMobile"}},min:0,max:"%"===T?100:500,unit:{value:f,label:"separatorBorderHeightUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),"none"!==i&&React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"separatorColor"},setAttributes:a})),"none"!==C&&React.createElement(Fe,{title:"text"===C?Object(r.__)("Text","ultimate-addons-for-gutenberg"):Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),responsive:!0,data:{desktop:{value:P,label:"elementPosition"},tablet:{value:P,label:"elementPosition"},mobile:{value:P,label:"elementPosition"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Y||"",data:{value:Y,label:"elementColor"},setAttributes:a}),"text"===C&&React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:R,label:"elementTextLoadGoogleFonts"},fontFamily:{value:B,label:"elementTextFontFamily"},fontWeight:{value:U,label:"elementTextFontWeight"},fontStyle:{value:N,label:"elementTextFontStyle"},fontSizeType:{value:O,label:"elementTextFontSizeType"},fontSize:{value:E,label:"elementTextFontSize"},fontSizeMobile:{value:H,label:"elementTextFontSizeMobile"},fontSizeTablet:{value:L,label:"elementTextFontSizeTablet"},lineHeightType:{value:j,label:"elementTextLineHeightType"},lineHeight:{value:F,label:"elementTextLineHeight"},lineHeightMobile:{value:D,label:"elementTextLineHeightMobile"},lineHeightTablet:{value:z,label:"elementTextLineHeightTablet"},letterSpacing:{value:I,label:"elementTextLetterSpacing"},letterSpacingTablet:{value:V,label:"elementTextLetterSpacingTablet"},letterSpacingMobile:{value:W,label:"elementTextLetterSpacingMobile"},letterSpacingType:{value:q,label:"elementTextLetterSpacingType"},transform:{value:$,label:"elementTextTransform"},decoration:{value:Z,label:"elementTextDecoration"}}),"icon"===C&&React.createElement(tl,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:K,label:"elementIconWidth"},tablet:{value:J,label:"elementIconWidthTablet"},mobile:{value:X,label:"elementIconWidthMobile"}},min:0,max:100,unit:{value:Q,label:"elementIconWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:x,label:"elementSpacing"},tablet:{value:A,label:"elementSpacingTablet"},mobile:{value:G,label:"elementSpacingMobile"}},min:0,max:500,unit:{value:M,label:"elementSpacingUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ee,label:"blockTopPadding"},valueRight:{value:te,label:"blockRightPadding"},valueBottom:{value:le,label:"blockBottomPadding"},valueLeft:{value:ae,label:"blockLeftPadding"},valueTopTablet:{value:ie,label:"blockTopPaddingTablet"},valueRightTablet:{value:oe,label:"blockRightPaddingTablet"},valueBottomTablet:{value:re,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:ne,label:"blockLeftPaddingTablet"},valueTopMobile:{value:se,label:"blockTopPaddingMobile"},valueRightMobile:{value:ce,label:"blockRightPaddingMobile"},valueBottomMobile:{value:pe,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:ue,label:"blockLeftPaddingMobile"},unit:{value:be,label:"blockPaddingUnit"},mUnit:{value:me,label:"blockPaddingUnitMobile"},tUnit:{value:de,label:"blockPaddingUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:ye,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:fe,label:"blockTopMargin"},valueRight:{value:he,label:"blockRightMargin"},valueBottom:{value:_e,label:"blockBottomMargin"},valueLeft:{value:ve,label:"blockLeftMargin"},valueTopTablet:{value:Te,label:"blockTopMarginTablet"},valueRightTablet:{value:Se,label:"blockRightMarginTablet"},valueBottomTablet:{value:ke,label:"blockBottomMarginTablet"},valueLeftTablet:{value:we,label:"blockLeftMarginTablet"},valueTopMobile:{value:Pe,label:"blockTopMarginMobile"},valueRightMobile:{value:xe,label:"blockRightMarginMobile"},valueBottomMobile:{value:Ge,label:"blockBottomMarginMobile"},valueLeftMobile:{value:Ae,label:"blockLeftMarginMobile"},unit:{value:Me,label:"blockMarginUnit"},mUnit:{value:Be,label:"blockMarginUnitMobile"},tUnit:{value:Re,label:"blockMarginUnitTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:Ue,label:"blockMarginLink"}}))),React.createElement(il,PM({},rl,{parentProps:e})))))}),AM=function(e){const t={rectangles:"url(\"data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.4 0H16L9.6 16H0L6.4 0Z' fill='black'/%3E%3C/svg%3E\")",parallelogram:"url(\"data:image/svg+xml,%3Csvg width='8' height='16' viewBox='0 0 8 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='8' height='16' fill='black'/%3E%3C/svg%3E\")",slash:"url(\"data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.29312 16.9999L17 6.29302M14.2931 16.9999L17 14.293M-0.707031 15.9999L16.0002 -0.707153M8.00017 -0.707153L-0.706882 7.9999' stroke='black'/%3E%3C/svg%3E\")",leaves:"url(\"data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2356_5631)'%3E%3Cpath d='M15 1C10.5 1 9 2.5 9 7C13.5 7 15 5.5 15 1Z' stroke='black'/%3E%3Cpath d='M1 1C5.5 1 7 2.5 7 7C2.5 7 1 5.5 1 1Z' stroke='black'/%3E%3Cpath d='M15 15C10.5 15 9 13.5 9 9C13.5 9 15 10.5 15 15Z' stroke='black'/%3E%3Cpath d='M1 15C5.5 15 7 13.5 7 9C2.5 9 1 10.5 1 15Z' stroke='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2356_5631'%3E%3Crect width='16' height='16' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E\")"};return e in t?t[e]:""},GM=Object(B.memo)(e=>{const{attributes:{block_id:t,elementType:a,separatorText:l,separatorTextTag:i,separatorStyle:o,separatorIcon:n},className:r,deviceType:s}=e,c=AM(o),u=""+i,p="none"!==a?"wp-block-uagb-separator--"+a:"",b=Object(ge.useBlockProps)({className:Z([r,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+t,"wp-block-uagb-separator",p])});return React.createElement("div",b,React.createElement("div",{className:"uagb-separator-spacing-wrapper"},React.createElement("div",{className:"wp-block-uagb-separator__inner",style:{"--my-background-image":""+c}},"none"!==a&&React.createElement("div",{className:"wp-block-uagb-separator-element"},"icon"===a?Ce(n):React.createElement(u,{className:"uagb-html-tag"},l)))))}),MM=Object(L.compose)(fe,vs)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o},name:n,clientId:r,deviceType:s}=e;Object(B.useEffect)(()=>{he(e)},[l,i,o,s]),Object(B.useEffect)(()=>{Bs()},[s]);const c=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,separatorAlign:r,separatorAlignTablet:s,separatorAlignMobile:c,separatorStyle:u,separatorColor:p,separatorWidth:b,separatorWidthTablet:d,separatorWidthMobile:g,separatorWidthType:m,separatorBorderHeight:y,separatorBorderHeightMobile:f,separatorBorderHeightTablet:h,separatorBorderHeightUnit:v,separatorSize:_,separatorSizeTablet:T,separatorSizeMobile:C,separatorSizeType:S,elementType:w,elementPosition:k,elementSpacing:P,elementSpacingTablet:x,elementSpacingMobile:A,elementSpacingUnit:G,elementTextFontFamily:M,elementTextFontWeight:R,elementTextFontSize:B,elementTextFontSizeType:U,elementTextFontSizeTablet:E,elementTextFontSizeMobile:O,elementTextLineHeightType:L,elementTextLineHeight:H,elementTextLineHeightTablet:j,elementTextLineHeightMobile:F,elementTextFontStyle:z,elementTextLetterSpacing:D,elementTextLetterSpacingTablet:N,elementTextLetterSpacingMobile:I,elementTextLetterSpacingType:V,elementTextDecoration:W,elementTextTransform:q,elementColor:Z,elementIconWidth:$,elementIconWidthTablet:Y,elementIconWidthMobile:K,elementIconWidthType:J,blockTopPadding:X,blockRightPadding:Q,blockLeftPadding:ee,blockBottomPadding:te,blockTopPaddingTablet:le,blockRightPaddingTablet:ie,blockLeftPaddingTablet:oe,blockBottomPaddingTablet:ne,blockTopPaddingMobile:re,blockRightPaddingMobile:se,blockLeftPaddingMobile:ce,blockBottomPaddingMobile:ue,blockPaddingUnit:pe,blockPaddingUnitTablet:be,blockPaddingUnitMobile:de,blockTopMargin:ge,blockRightMargin:me,blockLeftMargin:ye,blockBottomMargin:fe,blockTopMarginTablet:he,blockRightMarginTablet:ve,blockLeftMarginTablet:_e,blockBottomMarginTablet:Te,blockTopMarginMobile:Ce,blockRightMarginMobile:Se,blockLeftMarginMobile:we,blockBottomMarginMobile:ke,blockMarginUnit:Pe,blockMarginUnitTablet:xe,blockMarginUnitMobile:Ae}=e,Ge=Ps(b,"separatorWidth",i),Me=Ps(d,"separatorWidthTablet",i),Re=Ps(g,"separatorWidthMobile",i),Be=Ps(y,"separatorBorderHeight",i),Ue=Ps(f,"separatorBorderHeightMobile",i),Ee=Ps(h,"separatorBorderHeightTablet",i),Oe=Ps(_,"separatorSize",i),Le=Ps(T,"separatorSizeTablet",i),He=Ps(C,"separatorSizeMobile",i),je={"border-top-width":ns(Be,v),"-webkit-mask-size":ns(Oe,S)+" 100%",width:ns(Ge,m),"border-top-color":p,"border-top-style":u};let Fe={};const ze={};if("none"===w)Fe={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{"margin-top":"5px","margin-bottom":"5px",...je}};else{const e=wM(r);Fe={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{width:ns(Ge,m),...e},".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before":je,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before":je,".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after":je,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after":je},"left"===k&&(ze[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-right":ns(P,G)},Fe[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before"]={display:"none"},Fe[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before"]={display:"none"}),"right"===k&&(ze[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-left":ns(P,G)},Fe[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after"]={display:"none"},Fe[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after"]={display:"none"}),"center"===k&&(ze[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-right":ns(P,G),"margin-left":ns(P,G)})}const De={".wp-block-uagb-separator":{"text-align":r},...Fe,...ze,".wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag":{"font-family":M,"font-style":z,"text-decoration":W,"text-transform":q,"font-weight":R,"font-size":ns(B,U),"line-height":ns(H,L),"letter-spacing":ns(D,V),color:Z,margin:0},".wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg":{"font-size":ns($,J),width:ns($,J),height:ns($,J),"line-height":ns($,J),color:Z,fill:Z}," .uagb-separator-spacing-wrapper":{"margin-top":ns(ge,Pe),"margin-right":ns(me,Pe),"margin-bottom":ns(fe,Pe),"margin-left":ns(ye,Pe),"padding-top":ns(X,pe||"px"),"padding-right":ns(Q,pe||"px"),"padding-bottom":ns(te,pe||"px"),"padding-left":ns(ee,pe||"px")}},Ne={"border-top-width":ns(Ee,v),"-webkit-mask-size":ns(Le,S)+" 100%",width:ns(Me,m),"border-top-color":p,"border-top-style":u};let Ie={};const Ve={};if("none"===w)Ie={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{"margin-top":"5px","margin-bottom":"5px",...Ne}};else{const e=wM(s);Ie={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{width:ns(Me,m),...e},".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before":Ne,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before":Ne,".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after":Ne,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after":Ne},"left"===k&&(Ve[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-right":ns(x,G)},Ie[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before"]={display:"none"},Ie[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before"]={display:"none"}),"center"===k&&(Ve[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-left":ns(x,G),"margin-right":ns(x,G)}),"right"===k&&(Ve[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-left":ns(x,G)},Ie[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after"]={display:"none"},Ie[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after"]={display:"none"})}const We={".wp-block-uagb-separator":{"text-align":s},...Ie,...Ve,".wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag":{"font-family":M,"font-style":z,"text-decoration":W,"text-transform":q,"font-weight":R,"font-size":ns(E,U),"line-height":ns(j,L),"letter-spacing":ns(N,V),color:Z,margin:0},".wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg":{"font-size":ns(Y,J),width:ns(Y,J),height:ns(Y,J),"line-height":ns(Y,J),color:Z,fill:Z}," .uagb-separator-spacing-wrapper":{"margin-top":ns(he,xe),"margin-right":ns(ve,xe),"margin-bottom":ns(Te,xe),"margin-left":ns(_e,xe),"padding-top":ns(le,be||"px"),"padding-right":ns(ie,be||"px"),"padding-bottom":ns(ne,be||"px"),"padding-left":ns(oe,be||"px")}},qe={"border-top-width":ns(Ue,v),"-webkit-mask-size":ns(He,S)+" 100%",width:ns(Re,m),"border-top-color":p,"border-top-style":u};let Ze={};const $e={};if("none"===w)Ze={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{"margin-top":"5px","margin-bottom":"5px",...qe}};else{const e=wM(c);Ze={".wp-block-uagb-separator .wp-block-uagb-separator__inner":{width:ns(Re,m),...e},".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before":qe,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before":qe,".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after":qe,".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after":qe},"left"===k&&($e[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-right":ns(A,G)},Ze[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before"]={display:"none"},Ze[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before"]={display:"none"}),"center"===k&&($e[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-left":ns(A,G),"margin-right":ns(A,G)}),"right"===k&&($e[".wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element"]={"margin-left":ns(A,G)},Ze[".wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after"]={display:"none"},Ze[".wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after"]={display:"none"})}const Ye={".wp-block-uagb-separator":{"text-align":c},...Ze,...$e,".wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag":{"font-family":M,"font-style":z,"text-decoration":W,"text-transform":q,"font-weight":R,"font-size":ns(O,U),"line-height":ns(F,L),"letter-spacing":ns(I,V),color:Z,margin:0},".wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg":{"font-size":ns(K,J),width:ns(K,J),height:ns(K,J),"line-height":ns(K,J),color:Z,fill:Z}," .uagb-separator-spacing-wrapper":{"margin-top":ns(Ce,Ae),"margin-right":ns(Se,Ae),"margin-bottom":ns(ke,Ae),"margin-left":ns(we,Ae),"padding-top":ns(re,de||"px"),"padding-right":ns(se,de||"px"),"padding-bottom":ns(ue,de||"px"),"padding-left":ns(ce,de||"px")}},Ke=".editor-styles-wrapper .uagb-block-"+n;let Je=ae(De,Ke);return"tablet"!==o&&"mobile"!==o||(Je+=ae(We,""+Ke,!0,"tablet"),"mobile"===o&&(Je+=ae(Ye,""+Ke,!0,"mobile"))),Je}(a,0,n,s),[a,s]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:c}),React.createElement(kM,{attributes:a}),t&&React.createElement(xM,e),React.createElement(GM,e))}),RM={from:[{type:"block",blocks:["core/spacer"],transform:e=>{const t={"xxx-small":"0px","xx-small":"0px","x-small":"4px",small:"8px",medium:"12px",large:"22px","x-large":"30px","xx-large":"48px"},a=e.height?e.height.split("|"):[],l=3===a.length?a[2].trim():null,i=l&&t.hasOwnProperty(l),o=i?N(t[l]):N(e.height||"0")/2,n=V(i?t[l]:e.height||"px");return Object(be.createBlock)("uagb/separator",{separatorStyle:"none",separatorHeight:o,separatorHeightType:n})}},{type:"block",blocks:["core/separator"],transform:e=>{var t,a,l,i;const o=e&&e.className&&e.className.includes("is-style-dots")?"dotted":"solid";return Object(be.createBlock)("uagb/separator",{separatorColor:/^#([0-9A-Fa-f]{3}){1,2}$/.test((null==e||null===(t=e.style)||void 0===t||null===(a=t.color)||void 0===a?void 0:a.background)||"")?null==e||null===(l=e.style)||void 0===l||null===(i=l.color)||void 0===i?void 0:i.background:Nc(null==e?void 0:e.backgroundColor),separatorStyle:o,separatorHeight:0,separatorBorderHeight:1,separatorWidth:null==e||!e.className||e.className.includes("is-style-default")?25:100})}},{type:"block",blocks:["core/nextpage"],transform:e=>{let{}=e;return Object(be.createBlock)("uagb/separator",{})}}]},BM=[{attributes:{block_id:{type:"string"},isPreview:{type:"boolean",default:!1},separatorAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment"}},separatorAlignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment-tablet"}},separatorAlignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"overall-alignment-mobile"}},separatorStyle:{type:"string",default:"solid",UAGCopyPaste:{styleType:"separator-style"}},separatorWidth:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width"}},separatorWidthTablet:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width-tablet"}},separatorWidthMobile:{type:"number",default:100,UAGCopyPaste:{styleType:"separator-width-mobile"}},separatorWidthType:{type:"string",default:"%",UAGCopyPaste:{styleType:"separator-width-type"}},separatorBorderHeight:{type:"number",default:3,UAGCopyPaste:{styleType:"separator-height"}},separatorBorderHeightMobile:{type:"number",default:3,UAGCopyPaste:{styleType:"separator-height-mobile"}},separatorBorderHeightTablet:{type:"number",default:3,UAGCopyPaste:{styleType:"separator-height-tablet"}},separatorBorderHeightUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-thickness-unit"}},separatorSize:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size"}},separatorSizeMobile:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size-Mobile"}},separatorSizeTablet:{type:"number",default:5,UAGCopyPaste:{styleType:"separator-size-Tablet"}},separatorSizeType:{default:"px",UAGCopyPaste:{styleType:"separator-size-type"}},separatorColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"separator-color"}},separatorHeight:{type:"number",default:10,UAGCopyPaste:{styleType:"separator-gap"}},separatorHeightMobile:{type:"number",default:10,UAGCopyPaste:{styleType:"separator-gap-mobile"}},separatorHeightTablet:{type:"number",default:10,UAGCopyPaste:{styleType:"separator-gap-tablet"}},separatorHeightType:{type:"string",default:"px",UAGCopyPaste:{styleType:"separator-gap-unit"}},separatorBottomPadding:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding"}},separatorPaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"separator-top-padding-tablet"}},separatorPaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"separator-right-padding-tablet"}},separatorPaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding-tablet"}},separatorPaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"separator-left-padding-tablet"}},separatorPaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"separator-top-padding-mobile"}},separatorPaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"separator-right-padding-mobile"}},separatorPaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"separator-bottom-padding-mobile"}},separatorPaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"separator-left-padding-mobile"}},separatorPaddingUnit:{type:"number",default:"px",UAGCopyPaste:{styleType:"separator-padding-unit"}},separatorMobilePaddingUnit:{type:"number",UAGCopyPaste:{styleType:"separator-padding-unit-mobile"},default:"px"},separatorTabletPaddingUnit:{type:"number",UAGCopyPaste:{styleType:"separator-padding-unit-tablet"},default:"px"},separatorPaddingLink:{type:"boolean",default:!0,UAGCopyPaste:{styleType:"separator-padding-link"}},elementType:{type:"string",default:"none"},separatorText:{type:"string",default:Object(r.__)("Divider","ultimate-addons-for-gutenberg")},separatorTextTag:{type:"string",default:"h4",UAGCopyPaste:{styleType:"separator-text-tag"}},separatorIcon:{type:"string",default:"circle-check"},elementPosition:{type:"string",default:"center",UAGCopyPaste:{styleType:"element-position"}},elementSpacing:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing"}},elementSpacingTablet:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing-tablet"}},elementSpacingMobile:{type:"number",default:15,UAGCopyPaste:{styleType:"element-spacing-mobile"}},elementSpacingUnit:{type:"string",default:"px"},elementTextLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},elementTextFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},elementTextFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},elementTextFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},elementTextFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-size-type"}},elementTextFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},elementTextFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},elementTextLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},elementTextLineHeight:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height"}},elementTextLineHeightTablet:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},elementTextLineHeightMobile:{type:"number",default:1,UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},elementTextFontStyle:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-font-style"}},elementTextLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing"}},elementTextLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-tablet"}},elementTextLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"label-letter-spacing-mobile"}},elementTextLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"label-letter-spacing-type"}},elementTextDecoration:{type:"string",UAGCopyPaste:{styleType:"main-title-decoration"}},elementTextTransform:{type:"string",UAGCopyPaste:{styleType:"main-title-transform"}},elementColor:{type:"string",UAGCopyPaste:{styleType:"main-title-color"}},elementIconWidth:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width"}},elementIconWidthTablet:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width-tablet"}},elementIconWidthMobile:{type:"number",default:30,UAGCopyPaste:{styleType:"main-icon-width-mobile"}},elementIconWidthType:{type:"string",default:"px"},blockTopPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding"}},blockRightPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding"}},blockLeftPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding"}},blockBottomPadding:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding"}},blockTopPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-tablet"}},blockRightPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-tablet"}},blockLeftPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-tablet"}},blockBottomPaddingTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-tablet"}},blockTopPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-padding-mobile"}},blockRightPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-padding-mobile"}},blockLeftPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-padding-mobile"}},blockBottomPaddingMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-padding-mobile"}},blockPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit"}},blockPaddingUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-tablet"}},blockPaddingUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-padding-unit-mobile"}},blockPaddingLink:{type:"boolean",default:!1},blockTopMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin"}},blockRightMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin"}},blockLeftMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin"}},blockBottomMargin:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin"}},blockTopMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-tablet"}},blockRightMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-tablet"}},blockLeftMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-tablet"}},blockBottomMarginTablet:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-tablet"}},blockTopMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-top-margin-mobile"}},blockRightMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-right-margin-mobile"}},blockLeftMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-left-margin-mobile"}},blockBottomMarginMobile:{type:"number",isGBSStyle:!0,UAGCopyPaste:{styleType:"block-bottom-margin-mobile"}},blockMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit"}},blockMarginUnitTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-tablet"}},blockMarginUnitMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"block-margin-unit-mobile"}},blockMarginLink:{type:"boolean",default:!1}},save:function(e){const{attributes:{block_id:t,elementType:a,separatorText:l,separatorTextTag:i,separatorStyle:o,separatorIcon:n}}=e,r=AM(o),s=""+i,c=ge.useBlockProps.save({className:Z(["uagb-block-"+t,"none"!==a?"wp-block-uagb-separator--"+a:""])});return React.createElement("div",c,React.createElement("div",{className:"wp-block-uagb-separator__inner",style:{"--my-background-image":""+r}},"none"!==a&&React.createElement("div",{className:"wp-block-uagb-separator-element"},"icon"===a?Ce(n):React.createElement(s,{className:"uagb-html-tag"},l))))}}];const UM=Object(j.applyFilters)("uagb/separator",ws({}));Object(be.registerBlockType)("uagb/separator",{...UM,apiVersion:2,title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a modern separator to divide your page content with icon/text.","ultimate-addons-for-gutenberg"),icon:se.separator,category:uagb_blocks_info.category,keywords:[Object(r.__)("divider","ultimate-addons-for-gutenberg"),Object(r.__)("separator","ultimate-addons-for-gutenberg")],attributes:Ba,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"separator"}):React.createElement(MM,e),save:function(e){const{attributes:{block_id:t,elementType:a,separatorText:l,separatorTextTag:i,separatorStyle:o,separatorIcon:n,blockTopPadding:r,blockRightPadding:s,blockLeftPadding:c,blockBottomPadding:u,blockTopPaddingTablet:p,blockRightPaddingTablet:b,blockLeftPaddingTablet:d,blockBottomPaddingTablet:g,blockTopPaddingMobile:m,blockRightPaddingMobile:y,blockLeftPaddingMobile:f,blockBottomPaddingMobile:h,blockTopMargin:v,blockRightMargin:_,blockLeftMargin:T,blockBottomMargin:C,blockTopMarginTablet:S,blockRightMarginTablet:w,blockLeftMarginTablet:k,blockBottomMarginTablet:P,blockTopMarginMobile:x,blockRightMarginMobile:A,blockLeftMarginMobile:G,blockBottomMarginMobile:M}}=e,R=[r,s,c,u,p,b,d,g,m,y,f,h,v,_,T,C,S,w,k,P,x,A,G,M].some(e=>"number"==typeof e),B=AM(o),U=""+i,E=ge.useBlockProps.save({className:Z(["uagb-block-"+t,"none"!==a?"wp-block-uagb-separator--"+a:""])}),O=()=>React.createElement("div",{className:"wp-block-uagb-separator__inner",style:{"--my-background-image":""+B}},"none"!==a&&React.createElement("div",{className:"wp-block-uagb-separator-element"},"icon"===a?Ce(n):React.createElement(U,{className:"uagb-html-tag"},l)));return React.createElement("div",E,R?React.createElement("div",{className:"uagb-separator-spacing-wrapper"},O()):O())},transforms:RM,deprecated:BM});const EM=[{defaultAttributes:ja},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowColor",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowColor",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}],OM=[{defaultAttributes:ja},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:3},{label:"boxShadowVOffsetHover",value:8},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:15},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:18},{label:"boxShadowBlurHover",value:40},{label:"boxShadowSpreadHover",value:-10},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 20%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:4},{label:"boxShadowBlurHover",value:12},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 10%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:2},{label:"boxShadowBlurHover",value:5},{label:"boxShadowSpreadHover",value:-1},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:50},{label:"boxShadowBlurHover",value:50},{label:"boxShadowSpreadHover",value:-30},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffsetHover",value:0},{label:"boxShadowVOffsetHover",value:20},{label:"boxShadowBlurHover",value:30},{label:"boxShadowSpreadHover",value:0},{label:"boxShadowColorHover",value:"rgb(0 0 0 / 15%)"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];function LM(){return(LM=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var HM=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l,insertBlock:i,block:o,swiperInstance:n}=e,{block_id:s,pauseOn:c,infiniteLoop:u,transitionSpeed:p,displayArrows:b,displayDots:d,autoplay:g,autoplaySpeed:m,transitionEffect:y,backgroundType:f,backgroundImageDesktop:h,backgroundImageTablet:v,backgroundImageMobile:_,backgroundColor:T,backgroundPositionDesktop:C,backgroundPositionTablet:S,backgroundPositionMobile:w,backgroundAttachmentDesktop:k,backgroundAttachmentTablet:P,backgroundAttachmentMobile:x,backgroundRepeatDesktop:A,backgroundRepeatTablet:G,backgroundRepeatMobile:M,backgroundSizeDesktop:R,backgroundSizeTablet:U,backgroundSizeMobile:E,backgroundImageColor:O,gradientValue:L,useSeparateBoxShadows:H,gradientColor1:F,gradientColor2:z,gradientLocation1:D,gradientLocationTablet1:N,gradientLocationMobile1:I,gradientLocation2:V,gradientLocationTablet2:W,gradientLocationMobile2:q,gradientType:Z,gradientAngle:$,gradientAngleTablet:Y,gradientAngleMobile:K,selectGradient:J,boxShadowColor:X,boxShadowHOffset:Q,boxShadowVOffset:ee,boxShadowBlur:te,boxShadowSpread:ae,boxShadowPosition:le,boxShadowColorHover:ie,boxShadowHOffsetHover:oe,boxShadowVOffsetHover:ne,boxShadowBlurHover:re,boxShadowSpreadHover:se,boxShadowPositionHover:ce,topPaddingDesktop:ue,bottomPaddingDesktop:pe,leftPaddingDesktop:de,rightPaddingDesktop:me,topPaddingTablet:ye,bottomPaddingTablet:fe,leftPaddingTablet:he,rightPaddingTablet:ve,topPaddingMobile:_e,bottomPaddingMobile:Te,leftPaddingMobile:Ce,rightPaddingMobile:Se,paddingType:we,paddingTypeTablet:ke,paddingTypeMobile:Pe,paddingLink:xe,topMarginDesktop:Ae,bottomMarginDesktop:Ge,leftMarginDesktop:Me,rightMarginDesktop:Re,topMarginTablet:Be,bottomMarginTablet:Ue,leftMarginTablet:Oe,rightMarginTablet:He,topMarginMobile:je,bottomMarginMobile:De,leftMarginMobile:Ne,rightMarginMobile:Ie,marginType:Ve,marginTypeTablet:We,marginTypeMobile:qe,marginLink:Ze,backgroundCustomSizeDesktop:$e,backgroundCustomSizeTablet:Ye,backgroundCustomSizeMobile:Ke,backgroundCustomSizeType:Je,overlayType:Xe,customPosition:Qe,xPositionDesktop:et,xPositionTablet:tt,xPositionMobile:at,xPositionType:lt,xPositionTypeTablet:it,xPositionTypeMobile:ot,yPositionDesktop:nt,yPositionTablet:rt,yPositionMobile:st,yPositionType:ct,yPositionTypeTablet:ut,yPositionTypeMobile:pt,arrowSize:bt,arrowSizeTablet:dt,arrowSizeMobile:gt,arrowPadding:mt,arrowPaddingTablet:yt,arrowPaddingMobile:ft,arrowColor:ht,arrowBgColor:vt,arrowDistance:_t,arrowDistanceTablet:Tt,arrowDistanceMobile:Ct,verticalAlign:St,dotsMarginTop:wt,dotsMarginTopTablet:kt,dotsMarginTopMobile:Pt,minHeight:xt,minHeightTablet:At,minHeightMobile:Gt}=t;Object(B.useEffect)(()=>{"color"===f&&a({backgroundSizeDesktop:"cover",backgroundSizeTablet:"cover",backgroundSizeMobile:"cover"})},[f]);const Mt=[{value:"start",tooltip:Object(r.__)("Top","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-start")})},{value:"center",tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-center")})},{value:"end",tooltip:Object(r.__)("Bottom","ultimate-addons-for-gutenberg"),icon:React.createElement(Le.Icon,{icon:ze("flex-column-end")})}],Rt=Object(j.applyFilters)("spectra.slider.tab_style.NavigationStyle.after","",e);return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(Le.ToolbarGroup,null,React.createElement(Le.ToolbarButton,{icon:"insert",label:Object(r.__)("Add Slide","ultimate-addons-for-gutenberg"),onClick:()=>{i(Object(be.createBlock)("uagb/slider-child"),o.innerBlocks.length,o.clientId),a({slideItem:t.slideItem+1}),n.activeIndex=t.slideItem+1}}))),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,(()=>{const t=Object(j.applyFilters)("spectra.slider.tab_general.displayDots.after","",e),l=Object(j.applyFilters)("spectra.slider.tab_general.autoplay.after","",e),i=Object(j.applyFilters)("spectra.slider.tab_general.transitionSpeed.after","",e);return React.createElement(React.Fragment,null,React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Slider","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Le.ToggleControl,{label:Object(r.__)("Autoplay","ultimate-addons-for-gutenberg"),checked:g,onChange:()=>{a({autoplay:!g})},help:Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")}),!0===g&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Autoplay Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:a,value:m,data:{value:m,label:"autoplaySpeed"},min:0,max:15e3,displayUnit:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Pause On","ultimate-addons-for-gutenberg"),data:{value:c,label:"pauseOn"},options:[{value:"hover",label:Object(r.__)("Hover","ultimate-addons-for-gutenberg")},{value:"click",label:Object(r.__)("Interaction","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")}],help:Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")})),l,React.createElement(Le.ToggleControl,{label:Object(r.__)("Infinite Loop","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>{a({infiniteLoop:!u})},help:Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")}),React.createElement(tl,{label:Object(r.__)("Minimum Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:xt,label:"minHeight"},tablet:{value:At,label:"minHeightTablet"},mobile:{value:Gt,label:"minHeightMobile"}},min:100,max:1e3,displayUnit:!1,setAttributes:a}),React.createElement(Pi,{label:Object(r.__)("Transition Effect","ultimate-addons-for-gutenberg"),data:{value:y,label:"transitionEffect"},onChange:e=>a({transitionEffect:e}),setAttributes:a,help:Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")},React.createElement("option",{value:"slide"},Object(r.__)("Slide","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"fade"},Object(r.__)("Fade","ultimate-addons-for-gutenberg")),React.createElement("option",{value:"flip"},Object(r.__)("Flip","ultimate-addons-for-gutenberg"))),React.createElement(Qa,{label:Object(r.__)("Transition Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:a,value:p,data:{value:p,label:"transitionSpeed"},onChange:e=>a({transitionSpeed:e}),min:100,max:9999,displayUnit:!1}),i),React.createElement(Fe,{title:Object(r.__)("Navigation","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Arrows","ultimate-addons-for-gutenberg"),checked:b,onChange:()=>{a({displayArrows:!b})}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Dots","ultimate-addons-for-gutenberg"),checked:d,onChange:()=>{a({displayDots:!d})}}),t)))})(),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Slider Block to the next level with powerful features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("Slides per view","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Gap between slides","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Custom class-based navigation","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("URL hash-based navigation","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"slider"}}))),React.createElement(il,nl,React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:St,label:"verticalAlign"},options:Mt,showIcons:!0,responsive:!1}))),React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(vi,LM({setAttributes:a,backgroundGradient:{value:L,label:"gradientValue"},backgroundGradientColor1:{value:F,label:"gradientColor1"},gradientType:{value:J,label:"selectGradient"},backgroundGradientColor2:{value:z,label:"gradientColor2"},backgroundGradientLocation1:{value:D,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:N,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:I,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:V,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:W,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:q,label:"gradientLocationMobile2"},backgroundGradientType:{value:Z,label:"gradientType"},backgroundGradientAngle:{value:$,label:"gradientAngle"},backgroundGradientAngleTablet:{value:Y,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:K,label:"gradientAngleMobile"},backgroundImageColor:{value:O,label:"backgroundImageColor"},backgroundSize:{desktop:{value:R,label:"backgroundSizeDesktop"},tablet:{value:U,label:"backgroundSizeTablet"},mobile:{value:E,label:"backgroundSizeMobile"}},backgroundCustomSize:{desktop:{value:$e,label:"backgroundCustomSizeDesktop"},tablet:{value:Ye,label:"backgroundCustomSizeTablet"},mobile:{value:Ke,label:"backgroundCustomSizeMobile"}},backgroundCustomSizeType:{value:Je,label:"backgroundCustomSizeType"},backgroundRepeat:{desktop:{value:A,label:"backgroundRepeatDesktop"},tablet:{value:G,label:"backgroundRepeatTablet"},mobile:{value:M,label:"backgroundRepeatMobile"}},backgroundAttachment:{desktop:{value:k,label:"backgroundAttachmentDesktop"},tablet:{value:P,label:"backgroundAttachmentTablet"},mobile:{value:x,label:"backgroundAttachmentMobile"}},backgroundPosition:{desktop:{value:C,label:"backgroundPositionDesktop"},tablet:{value:S,label:"backgroundPositionTablet"},mobile:{value:w,label:"backgroundPositionMobile"}},backgroundImage:{desktop:{value:h,label:"backgroundImageDesktop"},tablet:{value:v,label:"backgroundImageTablet"},mobile:{value:_,label:"backgroundImageMobile"}},imageResponsive:!0,backgroundColor:{value:T,label:"backgroundColor"},backgroundType:{value:f,label:"backgroundType"},overlayType:{value:Xe,label:"overlayType"},gradientOverlay:{value:!0},customPosition:{value:Qe,label:"customPosition"},xPositionDesktop:{value:et,label:"xPositionDesktop"},xPositionTablet:{value:tt,label:"xPositionTablet"},xPositionMobile:{value:at,label:"xPositionMobile"},xPositionType:{value:lt,label:"xPositionType"},xPositionTypeTablet:{value:it,label:"xPositionTypeTablet"},xPositionTypeMobile:{value:ot,label:"xPositionTypeMobile"},yPositionDesktop:{value:nt,label:"yPositionDesktop"},yPositionTablet:{value:rt,label:"yPositionTablet"},yPositionMobile:{value:st,label:"yPositionMobile"},yPositionType:{value:ct,label:"yPositionType"},yPositionTypeTablet:{value:ut,label:"yPositionTypeTablet"},yPositionTypeMobile:{value:pt,label:"yPositionTypeMobile"},backgroundVideoType:{value:!1}},e))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"slider",attributes:t,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Separate Hover Shadow","ultimate-addons-for-gutenberg"),checked:H,onChange:()=>a({useSeparateBoxShadows:!H})}),H?React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:EM,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:X,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:Q,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ee,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:te,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ae,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:le,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),hover:React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:OM,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:ie,label:"boxShadowColorHover",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:oe,label:"boxShadowHOffsetHover",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ne,label:"boxShadowVOffsetHover",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:re,label:"boxShadowBlurHover",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:se,label:"boxShadowSpreadHover",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ce,label:"boxShadowPositionHover",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),disableBottomSeparator:!0}):React.createElement(React.Fragment,null,React.createElement(zr,{setAttributes:a,presets:EM,presetInputType:"radioImage"}),React.createElement(vl,{blockId:s,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:X,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:Q,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:ee,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:te,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ae,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:le,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,LM({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ue,label:"topPaddingDesktop"},valueRight:{value:me,label:"rightPaddingDesktop"},valueBottom:{value:pe,label:"bottomPaddingDesktop"},valueLeft:{value:de,label:"leftPaddingDesktop"},valueTopTablet:{value:ye,label:"topPaddingTablet"},valueRightTablet:{value:ve,label:"rightPaddingTablet"},valueBottomTablet:{value:fe,label:"bottomPaddingTablet"},valueLeftTablet:{value:he,label:"leftPaddingTablet"},valueTopMobile:{value:_e,label:"topPaddingMobile"},valueRightMobile:{value:Se,label:"rightPaddingMobile"},valueBottomMobile:{value:Te,label:"bottomPaddingMobile"},valueLeftMobile:{value:Ce,label:"leftPaddingMobile"},unit:{value:we,label:"paddingType"},mUnit:{value:Pe,label:"paddingTypeMobile"},tUnit:{value:ke,label:"paddingTypeTablet"},attributes:t,setAttributes:a,link:{value:xe,label:"paddingLink"}})),React.createElement(Pl,LM({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Ae,label:"topMarginDesktop"},valueRight:{value:Re,label:"rightMarginDesktop"},valueBottom:{value:Ge,label:"bottomMarginDesktop"},valueLeft:{value:Me,label:"leftMarginDesktop"},valueTopTablet:{value:Be,label:"topMarginTablet"},valueRightTablet:{value:He,label:"rightMarginTablet"},valueBottomTablet:{value:Ue,label:"bottomMarginTablet"},valueLeftTablet:{value:Oe,label:"leftMarginTablet"},valueTopMobile:{value:je,label:"topMarginMobile"},valueRightMobile:{value:Ie,label:"rightMarginMobile"},valueBottomMobile:{value:De,label:"bottomMarginMobile"},valueLeftMobile:{value:Ne,label:"leftMarginMobile"},unit:{value:Ve,label:"marginType"},mUnit:{value:qe,label:"marginTypeMobile"},tUnit:{value:We,label:"marginTypeTablet"},attributes:t,setAttributes:a,link:{value:Ze,label:"marginLink"}}))),(b||d)&&React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Arrows and Dots","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ht,data:{value:ht,label:"arrowColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:vt,data:{value:vt,label:"arrowBgColor"},setAttributes:a}),b&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:bt,label:"arrowSize"},tablet:{value:dt,label:"arrowSizeTablet"},mobile:{value:gt,label:"arrowSizeMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),data:{desktop:{value:mt,label:"arrowPadding"},tablet:{value:yt,label:"arrowPaddingTablet"},mobile:{value:ft,label:"arrowPaddingMobile"}},min:0,max:80,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Arrow Distance from Edges","ultimate-addons-for-gutenberg"),data:{desktop:{value:_t,label:"arrowDistance"},tablet:{value:Tt,label:"arrowDistanceTablet"},mobile:{value:Ct,label:"arrowDistanceMobile"}},min:-50,max:50,displayUnit:!1,setAttributes:a})),d&&React.createElement(tl,{label:Object(r.__)("Top Margin for Dots","ultimate-addons-for-gutenberg"),data:{desktop:{value:wt,label:"dotsMarginTop"},tablet:{value:kt,label:"dotsMarginTopTablet"},mobile:{value:Pt,label:"dotsMarginTopMobile"}},min:-100,max:100,displayUnit:!1,setAttributes:a}),b&&React.createElement(Hi,{setAttributes:a,prefix:"slider-arrow",attributes:t,deviceType:l,disableBottomSeparator:!0}))),Rt),React.createElement(il,LM({},rl,{parentProps:e})))))});function jM(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function FM(e,t){const a=["__proto__","constructor","prototype"];Object.keys(t).filter(e=>a.indexOf(e)<0).forEach(a=>{void 0===e[a]?e[a]=t[a]:jM(t[a])&&jM(e[a])&&Object.keys(t[a]).length>0?t[a].__swiper__?e[a]=t[a]:FM(e[a],t[a]):e[a]=t[a]})}function zM(e={}){return e.navigation&&void 0===e.navigation.nextEl&&void 0===e.navigation.prevEl}function DM(e={}){return e.pagination&&void 0===e.pagination.el}function NM(e={}){return e.scrollbar&&void 0===e.scrollbar.el}function IM(e=""){const t=e.split(" ").map(e=>e.trim()).filter(e=>!!e),a=[];return t.forEach(e=>{a.indexOf(e)<0&&a.push(e)}),a.join(" ")}const VM=["modules","init","_direction","touchEventsTarget","initialSlide","_speed","cssMode","updateOnWindowResize","resizeObserver","nested","focusableElements","_enabled","_width","_height","preventInteractionOnTransition","userAgent","url","_edgeSwipeDetection","_edgeSwipeThreshold","_freeMode","_autoHeight","setWrapperSize","virtualTranslate","_effect","breakpoints","_spaceBetween","_slidesPerView","maxBackfaceHiddenSlides","_grid","_slidesPerGroup","_slidesPerGroupSkip","_slidesPerGroupAuto","_centeredSlides","_centeredSlidesBounds","_slidesOffsetBefore","_slidesOffsetAfter","normalizeSlideIndex","_centerInsufficientSlides","_watchOverflow","roundLengths","touchRatio","touchAngle","simulateTouch","_shortSwipes","_longSwipes","longSwipesRatio","longSwipesMs","_followFinger","allowTouchMove","_threshold","touchMoveStopPropagation","touchStartPreventDefault","touchStartForcePreventDefault","touchReleaseOnEdges","uniqueNavElements","_resistance","_resistanceRatio","_watchSlidesProgress","_grabCursor","preventClicks","preventClicksPropagation","_slideToClickedSlide","_preloadImages","updateOnImagesReady","_loop","_loopAdditionalSlides","_loopedSlides","_loopedSlidesLimit","_loopFillGroupWithBlank","loopPreventsSlide","_rewind","_allowSlidePrev","_allowSlideNext","_swipeHandler","_noSwiping","noSwipingClass","noSwipingSelector","passiveListeners","containerModifierClass","slideClass","slideBlankClass","slideActiveClass","slideDuplicateActiveClass","slideVisibleClass","slideDuplicateClass","slideNextClass","slideDuplicateNextClass","slidePrevClass","slideDuplicatePrevClass","wrapperClass","runCallbacksOnInit","observer","observeParents","observeSlideChildren","a11y","_autoplay","_controller","coverflowEffect","cubeEffect","fadeEffect","flipEffect","creativeEffect","cardsEffect","hashNavigation","history","keyboard","lazy","mousewheel","_navigation","_pagination","parallax","_scrollbar","_thumbs","virtual","zoom"],WM=(e,t)=>{let a=t.slidesPerView;if(t.breakpoints){const e=GP.prototype.getBreakpoint(t.breakpoints),l=e in t.breakpoints?t.breakpoints[e]:void 0;l&&l.slidesPerView&&(a=l.slidesPerView)}let l=Math.ceil(parseFloat(t.loopedSlides||a,10));return l+=t.loopAdditionalSlides,l>e.length&&t.loopedSlidesLimit&&(l=e.length),l};function qM(e){return e.type&&e.type.displayName&&e.type.displayName.includes("SwiperSlide")}function ZM(e,t){return"undefined"==typeof window?Object(mo.useEffect)(e,t):Object(mo.useLayoutEffect)(e,t)}const $M=Object(mo.createContext)(null),YM=Object(mo.createContext)(null);function KM(){return(KM=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const JM=Object(mo.forwardRef)((function(e,t){let{className:a,tag:l="div",wrapperTag:i="div",children:o,onSwiper:n,...r}=void 0===e?{}:e,s=!1;const[c,u]=Object(mo.useState)("swiper"),[p,b]=Object(mo.useState)(null),[d,g]=Object(mo.useState)(!1),m=Object(mo.useRef)(!1),y=Object(mo.useRef)(null),f=Object(mo.useRef)(null),h=Object(mo.useRef)(null),v=Object(mo.useRef)(null),_=Object(mo.useRef)(null),T=Object(mo.useRef)(null),C=Object(mo.useRef)(null),S=Object(mo.useRef)(null),{params:w,passedParams:k,rest:P,events:x}=function(e={},t=!0){const a={on:{}},l={},i={};FM(a,GP.defaults),FM(a,GP.extendedDefaults),a._emitClasses=!0,a.init=!1;const o={},n=VM.map(e=>e.replace(/_/,"")),r=Object.assign({},e);return Object.keys(r).forEach(r=>{void 0!==e[r]&&(n.indexOf(r)>=0?jM(e[r])?(a[r]={},i[r]={},FM(a[r],e[r]),FM(i[r],e[r])):(a[r]=e[r],i[r]=e[r]):0===r.search(/on[A-Z]/)&&"function"==typeof e[r]?t?l[`${r[2].toLowerCase()}${r.substr(3)}`]=e[r]:a.on[`${r[2].toLowerCase()}${r.substr(3)}`]=e[r]:o[r]=e[r])}),["navigation","pagination","scrollbar"].forEach(e=>{!0===a[e]&&(a[e]={}),!1===a[e]&&delete a[e]}),{params:a,passedParams:i,rest:o,events:l}}(r),{slides:A,slots:G}=function(e){const t=[],a={"container-start":[],"container-end":[],"wrapper-start":[],"wrapper-end":[]};return yo.a.Children.toArray(e).forEach(e=>{if(qM(e))t.push(e);else if(e.props&&e.props.slot&&a[e.props.slot])a[e.props.slot].push(e);else if(e.props&&e.props.children){const l=function e(t){const a=[];return yo.a.Children.toArray(t).forEach(t=>{qM(t)?a.push(t):t.props&&t.props.children&&e(t.props.children).forEach(e=>a.push(e))}),a}(e.props.children);l.length>0?l.forEach(e=>t.push(e)):a["container-end"].push(e)}else a["container-end"].push(e)}),{slides:t,slots:a}}(o),M=()=>{g(!d)};Object.assign(w.on,{_containerClasses(e,t){u(t)}});const R=()=>{if(Object.assign(w.on,x),s=!0,f.current=new GP(w),f.current.loopCreate=()=>{},f.current.loopDestroy=()=>{},w.loop&&(f.current.loopedSlides=WM(A,w)),f.current.virtual&&f.current.params.virtual.enabled){f.current.virtual.slides=A;const e={cache:!1,slides:A,renderExternal:b,renderExternalUpdate:!1};FM(f.current.params.virtual,e),FM(f.current.originalParams.virtual,e)}};return y.current||R(),f.current&&f.current.on("_beforeBreakpoint",M),Object(mo.useEffect)(()=>()=>{f.current&&f.current.off("_beforeBreakpoint",M)}),Object(mo.useEffect)(()=>{!m.current&&f.current&&(f.current.emitSlidesClasses(),m.current=!0)}),ZM(()=>{if(t&&(t.current=y.current),y.current)return f.current.destroyed&&R(),function({el:e,nextEl:t,prevEl:a,paginationEl:l,scrollbarEl:i,swiper:o},n){zM(n)&&t&&a&&(o.params.navigation.nextEl=t,o.originalParams.navigation.nextEl=t,o.params.navigation.prevEl=a,o.originalParams.navigation.prevEl=a),DM(n)&&l&&(o.params.pagination.el=l,o.originalParams.pagination.el=l),NM(n)&&i&&(o.params.scrollbar.el=i,o.originalParams.scrollbar.el=i),o.init(e)}({el:y.current,nextEl:_.current,prevEl:T.current,paginationEl:C.current,scrollbarEl:S.current,swiper:f.current},w),n&&n(f.current),()=>{f.current&&!f.current.destroyed&&f.current.destroy(!0,!1)}},[]),ZM(()=>{!s&&x&&f.current&&Object.keys(x).forEach(e=>{f.current.on(e,x[e])});const e=function(e,t,a,l,i){const o=[];if(!t)return o;const n=e=>{o.indexOf(e)<0&&o.push(e)};if(a&&l){const e=l.map(i),t=a.map(i);e.join("")!==t.join("")&&n("children"),l.length!==a.length&&n("children")}return VM.filter(e=>"_"===e[0]).map(e=>e.replace(/_/,"")).forEach(a=>{if(a in e&&a in t)if(jM(e[a])&&jM(t[a])){const l=Object.keys(e[a]),i=Object.keys(t[a]);l.length!==i.length?n(a):(l.forEach(l=>{e[a][l]!==t[a][l]&&n(a)}),i.forEach(l=>{e[a][l]!==t[a][l]&&n(a)}))}else e[a]!==t[a]&&n(a)}),o}(k,h.current,A,v.current,e=>e.key);return h.current=k,v.current=A,e.length&&f.current&&!f.current.destroyed&&function({swiper:e,slides:t,passedParams:a,changedParams:l,nextEl:i,prevEl:o,scrollbarEl:n,paginationEl:r}){const s=l.filter(e=>"children"!==e&&"direction"!==e),{params:c,pagination:u,navigation:p,scrollbar:b,virtual:d,thumbs:g}=e;let m,y,f,h,v;l.includes("thumbs")&&a.thumbs&&a.thumbs.swiper&&c.thumbs&&!c.thumbs.swiper&&(m=!0),l.includes("controller")&&a.controller&&a.controller.control&&c.controller&&!c.controller.control&&(y=!0),l.includes("pagination")&&a.pagination&&(a.pagination.el||r)&&(c.pagination||!1===c.pagination)&&u&&!u.el&&(f=!0),l.includes("scrollbar")&&a.scrollbar&&(a.scrollbar.el||n)&&(c.scrollbar||!1===c.scrollbar)&&b&&!b.el&&(h=!0),l.includes("navigation")&&a.navigation&&(a.navigation.prevEl||o)&&(a.navigation.nextEl||i)&&(c.navigation||!1===c.navigation)&&p&&!p.prevEl&&!p.nextEl&&(v=!0),s.forEach(t=>{if(jM(c[t])&&jM(a[t]))FM(c[t],a[t]);else{const i=a[t];!0!==i&&!1!==i||"navigation"!==t&&"pagination"!==t&&"scrollbar"!==t?c[t]=a[t]:!1===i&&e[l=t]&&(e[l].destroy(),"navigation"===l?(c[l].prevEl=void 0,c[l].nextEl=void 0,e[l].prevEl=void 0,e[l].nextEl=void 0):(c[l].el=void 0,e[l].el=void 0))}var l}),s.includes("controller")&&!y&&e.controller&&e.controller.control&&c.controller&&c.controller.control&&(e.controller.control=c.controller.control),l.includes("children")&&t&&d&&c.virtual.enabled?(d.slides=t,d.update(!0)):l.includes("children")&&e.lazy&&e.params.lazy.enabled&&e.lazy.load(),m&&g.init()&&g.update(!0),y&&(e.controller.control=c.controller.control),f&&(r&&(c.pagination.el=r),u.init(),u.render(),u.update()),h&&(n&&(c.scrollbar.el=n),b.init(),b.updateSize(),b.setTranslate()),v&&(i&&(c.navigation.nextEl=i),o&&(c.navigation.prevEl=o),p.init(),p.update()),l.includes("allowSlideNext")&&(e.allowSlideNext=a.allowSlideNext),l.includes("allowSlidePrev")&&(e.allowSlidePrev=a.allowSlidePrev),l.includes("direction")&&e.changeDirection(a.direction,!1),e.update()}({swiper:f.current,slides:A,passedParams:k,changedParams:e,nextEl:_.current,prevEl:T.current,scrollbarEl:S.current,paginationEl:C.current}),()=>{x&&f.current&&Object.keys(x).forEach(e=>{f.current.off(e,x[e])})}}),ZM(()=>{var e;!(e=f.current)||e.destroyed||!e.params.virtual||e.params.virtual&&!e.params.virtual.enabled||(e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.lazy&&e.params.lazy.enabled&&e.lazy.load(),e.parallax&&e.params.parallax&&e.params.parallax.enabled&&e.parallax.setTranslate())},[p]),yo.a.createElement(l,KM({ref:y,className:IM(`${c}${a?" "+a:""}`)},P),yo.a.createElement(YM.Provider,{value:f.current},G["container-start"],yo.a.createElement(i,{className:"swiper-wrapper"},G["wrapper-start"],w.virtual?function(e,t,a){if(!a)return null;const l=e.isHorizontal()?{[e.rtlTranslate?"right":"left"]:a.offset+"px"}:{top:a.offset+"px"};return t.filter((e,t)=>t>=a.from&&t<=a.to).map(t=>yo.a.cloneElement(t,{swiper:e,style:l}))}(f.current,A,p):!w.loop||f.current&&f.current.destroyed?A.map(e=>yo.a.cloneElement(e,{swiper:f.current})):function(e,t,a){const l=t.map((t,a)=>yo.a.cloneElement(t,{swiper:e,"data-swiper-slide-index":a}));function i(e,t,l){return yo.a.cloneElement(e,{key:`${e.key}-duplicate-${t}-${l}`,className:`${e.props.className||""} ${a.slideDuplicateClass}`})}if(a.loopFillGroupWithBlank){const e=a.slidesPerGroup-l.length%a.slidesPerGroup;if(e!==a.slidesPerGroup)for(let t=0;t<e;t+=1){const e=yo.a.createElement("div",{className:`${a.slideClass} ${a.slideBlankClass}`});l.push(e)}}"auto"!==a.slidesPerView||a.loopedSlides||(a.loopedSlides=l.length);const o=WM(l,a),n=[],r=[];for(let e=0;e<o;e+=1){const t=e-Math.floor(e/l.length)*l.length;r.push(i(l[t],e,"append")),n.unshift(i(l[l.length-t-1],e,"prepend"))}return e&&(e.loopedSlides=o),[...n,...l,...r]}(f.current,A,w),G["wrapper-end"]),zM(w)&&yo.a.createElement(yo.a.Fragment,null,yo.a.createElement("div",{ref:T,className:"swiper-button-prev"}),yo.a.createElement("div",{ref:_,className:"swiper-button-next"})),NM(w)&&yo.a.createElement("div",{ref:S,className:"swiper-scrollbar"}),DM(w)&&yo.a.createElement("div",{ref:C,className:"swiper-pagination"}),G["container-end"]))}));function XM(){return(XM=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}JM.displayName="Swiper";const QM=Object(mo.forwardRef)((function(e,t){let{tag:a="div",children:l,className:i="",swiper:o,zoom:n,virtualIndex:r,...s}=void 0===e?{}:e;const c=Object(mo.useRef)(null),[u,p]=Object(mo.useState)("swiper-slide");function b(e,t,a){t===c.current&&p(a)}ZM(()=>{if(t&&(t.current=c.current),c.current&&o){if(!o.destroyed)return o.on("_slideClass",b),()=>{o&&o.off("_slideClass",b)};"swiper-slide"!==u&&p("swiper-slide")}}),ZM(()=>{o&&c.current&&!o.destroyed&&p(o.getSlideClasses(c.current))},[o]);const d={isActive:u.indexOf("swiper-slide-active")>=0||u.indexOf("swiper-slide-duplicate-active")>=0,isVisible:u.indexOf("swiper-slide-visible")>=0,isDuplicate:u.indexOf("swiper-slide-duplicate")>=0,isPrev:u.indexOf("swiper-slide-prev")>=0||u.indexOf("swiper-slide-duplicate-prev")>=0,isNext:u.indexOf("swiper-slide-next")>=0||u.indexOf("swiper-slide-duplicate-next")>=0},g=()=>"function"==typeof l?l(d):l;return yo.a.createElement(a,XM({ref:c,className:IM(`${u}${i?" "+i:""}`),"data-swiper-slide-index":r},s),yo.a.createElement($M.Provider,{value:d},n?yo.a.createElement("div",{className:"swiper-zoom-container","data-swiper-zoom":"number"==typeof n?n:void 0},g()):g()))}));function eR(){return(eR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}QM.displayName="SwiperSlide";const tR=["uagb/slider-child"];var aR,lR=Object(B.memo)(e=>{const{attributes:t,clientId:a,block:l,blockParents:i,attributes:{slide_content:o},deviceType:s,setSwiperInstance:c,swiperInstance:u}=e,p=Object(B.useRef)(),b=Object(B.useRef)(),d=Object(B.useRef)(),g=Object(B.useRef)(),{selectBlock:m}=Object(n.useDispatch)(ge.store),y={...t,swiperInstance:u};Object(j.doAction)("spectra.slider.before_render",y);const{isListViewOpen:f,hasChildren:h}=Object(n.useSelect)(e=>{var t;const l=e("core/editor")||e("core/edit-widgets");return{isListViewOpen:!(null==l||!l.isListViewOpened)&&l.isListViewOpened(),hasChildren:0!==(null===(t=e("core/block-editor"))||void 0===t?void 0:t.getBlocks(a).length)}},[]),{isPreview:v,transitionSpeed:_,slideItem:T,block_id:C,displayArrows:S,displayDots:w,extraClasses:k}=t,P=Object(B.useMemo)(()=>[["uagb/slider-child",{},[["uagb/container",{variationSelected:!0},[["uagb/info-box",{showIcon:!1,ctaType:"button",infoBoxTitle:Object(r.__)("Slide 1","ultimate-addons-for-gutenberg"),showCtaIcon:!1,paddingBtnTop:12,paddingBtnRight:24,paddingBtnBottom:12,paddingBtnLeft:24}]]]]],["uagb/slider-child",{},[["uagb/container",{variationSelected:!0},[["uagb/info-box",{showIcon:!1,ctaType:"button",infoBoxTitle:Object(r.__)("Slide 2","ultimate-addons-for-gutenberg"),showCtaIcon:!1,paddingBtnTop:12,paddingBtnRight:24,paddingBtnBottom:12,paddingBtnLeft:24}]]]]],["uagb/slider-child",{},[["uagb/container",{variationSelected:!0},[["uagb/info-box",{showIcon:!1,ctaType:"button",infoBoxTitle:Object(r.__)("Slide 3","ultimate-addons-for-gutenberg"),showCtaIcon:!1,paddingBtnTop:12,paddingBtnRight:24,paddingBtnBottom:12,paddingBtnLeft:24}]]]]]],[T,o]),x=h?"uagb-slider-has-children":"",A=f?"uagb-list-view-enabled":"",G=Object(ge.useBlockProps)({className:`uagb-block-${C} ${x} ${A} uagb-slider-container uagb-slider-editor-wrap uagb-editor-preview-mode-${s.toLowerCase()} ${k}`}),M=Object(ge.useInnerBlocksProps)({className:"swiper-wrapper",slot:"container-start"},{allowedBlocks:tR,template:P,renderAppender:!1,orientation:"horizontal"}),R=e=>{var t,a;null!=e&&null!==(t=e.params)&&void 0!==t&&t.navigation&&(e.params.navigation.prevEl=d.current,e.params.navigation.nextEl=g.current,e.navigation.destroy(),e.navigation.init(),e.navigation.update()),null!=e&&null!==(a=e.params)&&void 0!==a&&a.pagination&&(e.params.pagination.el=b.current,e.params.pagination.clickable=!0,e.pagination.init(),e.pagination.render(),e.pagination.update())},U={slidesPerView:1,autoplay:!1,speed:_,loop:!1,effect:"slide",allowTouchMove:!1,onBeforeInit(e){p.current=e,c(e)},onAfterInit(e){setTimeout(()=>{R(e)})}};return Object(B.useEffect)(()=>{u&&u.update()},[e]),Object(B.useEffect)(()=>{u&&R(u)},[S,w]),Object(B.useEffect)(()=>{if(u&&u.slides){const e=u.slides.length;u.slideTo(e+1,_,!1),setTimeout(()=>{u.slideTo(0,0,!1)},100);const t=["uagb/slider","uagb/slider-child"];let a=!1;for(let e=0;e<i.length;e++)if(t.includes(i[e].name)){a=!0;break}a&&m(l.clientId)}},[f]),v?"":React.createElement("div",eR({},G,{key:C}),React.createElement(JM,eR({ref:p},U,{modules:[RP,UP,OP,NP],navigation:!!S&&{nextEl:"#block-"+a+" .swiper-button-next",prevEl:"#block-"+a+" .swiper-button-prev"},pagination:!!w&&{el:"#block-"+a+" .swiper-pagination",clickable:!0}}),React.createElement("div",M)),w&&React.createElement("div",{className:"swiper-pagination",ref:b}),S&&React.createElement(React.Fragment,null,React.createElement("div",{className:"swiper-button-prev",ref:d}),React.createElement("div",{className:"swiper-button-next",ref:g})))}),iR=(a(190),a(139)),oR=0,nR={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},rR={};rR.locals=iR.a.locals||{},rR.use=function(){return oR++||(aR=ke()(iR.a,nR)),rR},rR.unuse=function(){oR>0&&!--oR&&(aR(),aR=null)};var sR=rR;function cR(){return(cR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const uR=Object(n.withSelect)((e,t)=>{const{insertBlock:a}=Object(n.useDispatch)("core/block-editor"),{getSelectedBlock:l,getBlockParents:i}=e("core/block-editor"),o=l(),r=i(null==o?void 0:o.clientId),s=e("core/block-editor").getBlocksByClientId(r);return{insertBlock:a,block:(e("core/block-editor")||e("core/editor")).getBlock(t.clientId),blockParents:s}});var pR=Object(L.compose)(vs,uR,fe)(e=>{const{isSelected:t,attributes:a,clientId:l,deviceType:i,attributes:{UAGHideDesktop:o,UAGHideTab:n,UAGHideMob:r}}=e,[s,c]=Object(B.useState)(null);e={...e,swiperInstance:s,setSwiperInstance:c},Object(B.useLayoutEffect)(()=>(sR.use(),()=>{sR.unuse()}),[]),Object(B.useEffect)(()=>{he(e)},[o,n,r,i]);const u=Object(B.useMemo)(()=>function(e,t,a){let{backgroundType:l,backgroundImageDesktop:i,backgroundImageTablet:o,backgroundImageMobile:n,backgroundColor:r,backgroundPositionDesktop:s,backgroundPositionTablet:c,backgroundPositionMobile:u,backgroundAttachmentDesktop:p,backgroundAttachmentTablet:b,backgroundAttachmentMobile:d,backgroundRepeatDesktop:g,backgroundRepeatTablet:m,backgroundRepeatMobile:y,backgroundSizeDesktop:f,backgroundSizeTablet:h,backgroundSizeMobile:v,gradientValue:_,sliderBorderHColor:T,useSeparateBoxShadows:C,boxShadowColor:S,boxShadowHOffset:w,boxShadowVOffset:k,boxShadowBlur:P,boxShadowSpread:x,boxShadowPosition:A,boxShadowColorHover:G,boxShadowHOffsetHover:M,boxShadowVOffsetHover:R,boxShadowBlurHover:B,boxShadowSpreadHover:U,boxShadowPositionHover:E,topPaddingDesktop:O,bottomPaddingDesktop:L,leftPaddingDesktop:H,rightPaddingDesktop:F,topPaddingTablet:z,bottomPaddingTablet:D,leftPaddingTablet:N,rightPaddingTablet:I,topPaddingMobile:V,bottomPaddingMobile:W,leftPaddingMobile:q,rightPaddingMobile:Z,paddingType:$,paddingTypeTablet:Y,paddingTypeMobile:K,topMarginDesktop:J,bottomMarginDesktop:X,leftMarginDesktop:Q,rightMarginDesktop:ee,topMarginTablet:te,bottomMarginTablet:le,leftMarginTablet:ie,rightMarginTablet:oe,topMarginMobile:ne,bottomMarginMobile:re,leftMarginMobile:se,rightMarginMobile:ce,marginType:ue,marginTypeTablet:pe,marginTypeMobile:be,backgroundCustomSizeDesktop:de,backgroundCustomSizeTablet:ge,backgroundCustomSizeMobile:me,backgroundCustomSizeType:ye,backgroundImageColor:fe,overlayType:he,customPosition:ve,xPositionDesktop:_e,xPositionTablet:Te,xPositionMobile:Ce,xPositionType:Se,xPositionTypeTablet:we,xPositionTypeMobile:ke,yPositionDesktop:Pe,yPositionTablet:xe,yPositionMobile:Ae,yPositionType:Ge,yPositionTypeTablet:Me,yPositionTypeMobile:Re,arrowColor:Be,arrowSize:Ue,arrowSizeTablet:Ee,arrowSizeMobile:Oe,arrowDistance:Le,arrowDistanceTablet:He,arrowDistanceMobile:je,arrowPadding:Fe,arrowPaddingTablet:ze,arrowPaddingMobile:De,arrowBgColor:Ne,verticalAlign:Ie,dotsMarginTop:Ve,dotsMarginTopTablet:We,dotsMarginTopMobile:qe,minHeight:Ze,minHeightTablet:$e,minHeightMobile:Ye,gradientColor1:Ke,gradientColor2:Je,gradientLocation1:Xe,gradientLocationTablet1:Qe,gradientLocationMobile1:et,gradientLocation2:tt,gradientLocationTablet2:at,gradientLocationMobile2:lt,gradientType:it,gradientAngle:ot,gradientAngleTablet:nt,gradientAngleMobile:rt,selectGradient:st}=e;const ct=a.toLowerCase(),ut=rs(e,"slider"),pt=rs(e,"slider","tablet"),bt=rs(e,"slider","mobile"),dt=rs(e,"slider-arrow"),gt=rs(e,"slider-arrow","tablet"),mt=rs(e,"slider-arrow","mobile");Ee=void 0!==Ee?Ee:Ue,Oe=void 0!==Oe?Oe:Ee,z=void 0!==z?z:O,V=void 0!==V?V:z,D=void 0!==D?D:L,W=void 0!==W?W:D,N=void 0!==N?N:H,q=void 0!==q?q:N,I=void 0!==I?I:F,Z=void 0!==Z?Z:I,te=void 0!==te?te:J,ne=void 0!==ne?ne:te,le=void 0!==le?le:X,re=void 0!==re?re:le,ie=void 0!==ie?ie:Q,se=void 0!==se?se:ie,oe=void 0!==oe?oe:ee,ce=void 0!==ce?ce:oe,ze=void 0!==ze?ze:Fe,De=void 0!==De?De:ze;const yt={backgroundType:l,backgroundImage:i,backgroundColor:r,gradientValue:_,gradientColor1:Ke,gradientColor2:Je,gradientLocation1:Xe,gradientLocation2:tt,gradientType:it,gradientAngle:ot,selectGradient:st,backgroundRepeat:g,backgroundPosition:s,backgroundSize:f,backgroundAttachment:p,backgroundCustomSize:de,backgroundCustomSizeType:ye,backgroundImageColor:fe,overlayType:he,customPosition:ve,xPosition:_e,xPositionType:Se,yPosition:Pe,yPositionType:Ge},ft=ss(yt),ht=cs({horizontal:w,vertical:k,blur:P,spread:x,color:S,position:A}),vt=cs({horizontal:M,vertical:R,blur:B,spread:U,color:G,position:E,altColor:S});let _t={".wp-block":{"padding-top":ns(O,$),"padding-bottom":ns(L,$),"padding-left":ns(H,$),"padding-right":ns(F,$),"margin-top":ns(J,ue)+" !important","margin-bottom":ns(X,ue)+" !important","margin-left":ns(Q,ue),"margin-right":ns(ee,ue),...ft,"box-shadow":ht,...ut},".wp-block:hover":{"border-color":T,"box-shadow":""}," .swiper-button-next:after":{"font-size":ns(Ue,"px")}," .swiper-button-next":{color:Be,right:ns(Le,"px"),width:ns(2*Fe+Ue,"px"),height:ns(2*Fe+Ue,"px"),"line-height":ns(2*Fe+Ue,"px"),"background-color":Ne,...dt}," .swiper-button-prev":{color:Be,left:ns(Le,"px"),width:ns(2*Fe+Ue,"px"),height:ns(2*Fe+Ue,"px"),"line-height":ns(2*Fe+Ue,"px"),"background-color":Ne,...dt}," .swiper-button-next:hover":{"border-color":e["slider-arrowBorderHColor"]}," .swiper-button-prev:hover":{"border-color":e["slider-arrowBorderHColor"]}," .swiper-button-prev:after":{"font-size":ns(Ue,"px")}," .swiper-pagination":{bottom:ns(Ve,"px")}," .swiper-pagination-bullet":{"background-color":Be}," .swiper-wrapper":{"align-items":Ie,"min-height":ns(Ze,"px")}};C&&(_t[".wp-block:hover"]["box-shadow"]=vt);const Tt={backgroundType:l,backgroundImage:o,backgroundColor:r,gradientValue:_,gradientColor1:Ke,gradientColor2:Je,gradientLocation1:"number"==typeof Qe?Qe:yt.gradientLocation1,gradientLocation2:"number"==typeof at?at:yt.gradientLocation2,gradientType:it,gradientAngle:"number"==typeof nt?nt:yt.gradientAngle,selectGradient:st,backgroundRepeat:m,backgroundPosition:c,backgroundSize:h,backgroundAttachment:b,backgroundCustomSize:ge,backgroundCustomSizeType:ye,backgroundImageColor:fe,overlayType:he,customPosition:ve,xPosition:Te,xPositionType:we,yPosition:xe,yPositionType:Me},Ct=ss(Tt);let St={".wp-block":{"padding-top":ns(z,Y),"padding-bottom":ns(D,Y),"padding-left":ns(N,Y),"padding-right":ns(I,Y),"margin-top":ns(te,pe)+" !important","margin-bottom":ns(le,pe)+" !important","margin-left":ns(ie,pe),"margin-right":ns(oe,pe),...Ct,...pt}," .swiper-button-next:after":{"font-size":ns(Ee,"px")}," .swiper-button-prev:after":{"font-size":ns(Ee,"px")}," .swiper-button-prev":{left:ns(He,"px"),width:ns(2*ze+Ee,"px"),height:ns(2*ze+Ee,"px"),"line-height":ns(2*ze+Ee,"px"),...gt}," .swiper-button-next":{right:ns(He,"px"),width:ns(2*ze+Ee,"px"),height:ns(2*ze+Ee,"px"),"line-height":ns(2*ze+Ee,"px"),...gt}," .swiper-pagination":{bottom:ns(We,"px")}," .swiper-wrapper":{"min-height":ns($e,"px")}};const wt=ss({backgroundType:l,backgroundImage:n,backgroundColor:r,gradientValue:_,gradientColor1:Ke,gradientColor2:Je,gradientLocation1:"number"==typeof et?et:Tt.gradientLocation1,gradientLocation2:"number"==typeof lt?lt:Tt.gradientLocation2,gradientType:it,gradientAngle:"number"==typeof rt?rt:Tt.gradientAngle,selectGradient:st,backgroundRepeat:y,backgroundPosition:u,backgroundSize:v,backgroundAttachment:d,backgroundCustomSize:me,backgroundCustomSizeType:ye,backgroundImageColor:fe,overlayType:he,customPosition:ve,xPosition:Ce,xPositionType:ke,yPosition:Ae,yPositionType:Re});let kt={".wp-block":{"padding-top":ns(V,K),"padding-bottom":ns(W,K),"padding-left":ns(q,K),"padding-right":ns(Z,K),"margin-top":ns(ne,be)+" !important","margin-bottom":ns(re,be)+" !important","margin-left":ns(se,be),"margin-right":ns(ce,be),...wt,...bt}," .swiper-button-next:after":{"font-size":ns(Oe,"px")}," .swiper-button-prev:after":{"font-size":ns(Oe,"px")}," .swiper-button-prev":{left:ns(je,"px"),width:ns(2*De+Oe,"px"),height:ns(2*De+Oe,"px"),"line-height":ns(2*De+Oe,"px"),...mt}," .swiper-button-next":{right:ns(je,"px"),width:ns(2*De+Oe,"px"),height:ns(2*De+Oe,"px"),"line-height":ns(2*De+Oe,"px"),...mt}," .swiper-pagination":{bottom:ns(qe,"px")}," .swiper-wrapper":{"min-height":ns(Ye,"px")}};const Pt=".editor-styles-wrapper #block-"+t;_t=Object(j.applyFilters)("spectra.slider.styling",_t,e),St=Object(j.applyFilters)("spectra.slider.tabletStyling",St,e),kt=Object(j.applyFilters)("spectra.slider.mobileStyling",kt,e);let xt=ae(_t,Pt);return"tablet"!==ct&&"mobile"!==ct||(xt+=ae(St,""+Pt,!0,"tablet"),"mobile"===ct&&(xt+=ae(kt,""+Pt,!0,"mobile"))),xt}(a,l,i),[a,i]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:u}),t&&React.createElement(HM,e),React.createElement(lR,e))});const bR=Object(L.createHigherOrderComponent)(e=>t=>{const a=le();if("uagb/slider-child"===t.name){const l={className:"uagb-editor-preview-mode-"+a.toLowerCase(),...t.wrapperProps};return React.createElement(QM,{onClick:e=>(e=>{const t=e.target.closest("div").classList.contains("block-editor-inserter"),a=e.target.closest(".block-editor-block-list__block");if(!t&&a&&a.hasAttribute("data-block")){const e=a.dataset.block;wp.data.select("core/block-editor").isBlockSelected(e)||wp.data.dispatch("core/block-editor").selectBlock(e)}})(e),"aria-hidden":"true"},React.createElement(e,cR({},t,{wrapperProps:l})))}return React.createElement(e,t)},"uagbSlideClass");Object(j.addFilter)("editor.BlockListBlock","uagb/slider-child",bR);let dR={};function gR(){return(gR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}function mR(){return(mR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}dR=Object(j.applyFilters)("uagb/slider",ws(dR)),Object(be.registerBlockType)("uagb/slider",{...dR,apiVersion:2,title:Object(r.__)("Slider","ultimate-addons-for-gutenberg"),description:Object(r.__)("Create beautiful sliders with slider block.","ultimate-addons-for-gutenberg"),icon:se.slider,keywords:[Object(r.__)("slider","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg"),Object(r.__)("flex","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:ja,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"slider"}):React.createElement(pR,e),save:function(e){const{attributes:t}=e,{block_id:a,displayArrows:l,displayDots:i}=t,o=ge.useBlockProps.save();return React.createElement("div",{key:a,className:Be()(o.className,"uagb-block-"+a,"uagb-slider-container")},React.createElement("div",{className:"uagb-slides uagb-swiper"},React.createElement("div",{className:"swiper-wrapper"},React.createElement(ge.InnerBlocks.Content,null))),i&&React.createElement("div",{className:"swiper-pagination"}),l&&React.createElement(React.Fragment,null,React.createElement("div",{className:"swiper-button-prev"}),React.createElement("div",{className:"swiper-button-next"})))}});var yR=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,clientId:l}=e,{backgroundType:i,backgroundImageDesktop:o,backgroundImageTablet:s,backgroundImageMobile:c,backgroundColor:u,backgroundPositionDesktop:p,backgroundPositionTablet:b,backgroundPositionMobile:d,backgroundAttachmentDesktop:g,backgroundAttachmentTablet:m,backgroundAttachmentMobile:y,backgroundRepeatDesktop:f,backgroundRepeatTablet:h,backgroundRepeatMobile:v,backgroundSizeDesktop:_,backgroundSizeTablet:T,backgroundSizeMobile:C,backgroundImageColor:S,gradientValue:w,gradientColor1:k,gradientColor2:P,gradientLocation1:x,gradientLocationTablet1:A,gradientLocationMobile1:G,gradientLocation2:M,gradientLocationTablet2:R,gradientLocationMobile2:U,gradientType:E,gradientAngle:O,gradientAngleTablet:L,gradientAngleMobile:H,selectGradient:j,topPaddingDesktop:F,bottomPaddingDesktop:z,leftPaddingDesktop:D,rightPaddingDesktop:N,topPaddingTablet:I,bottomPaddingTablet:V,leftPaddingTablet:W,rightPaddingTablet:q,topPaddingMobile:Z,bottomPaddingMobile:$,leftPaddingMobile:Y,rightPaddingMobile:K,paddingType:J,paddingTypeTablet:X,paddingTypeMobile:Q,paddingLink:ee,topMarginDesktop:te,bottomMarginDesktop:ae,leftMarginDesktop:le,rightMarginDesktop:ie,topMarginTablet:oe,bottomMarginTablet:ne,leftMarginTablet:re,rightMarginTablet:se,topMarginMobile:ce,bottomMarginMobile:ue,leftMarginMobile:pe,rightMarginMobile:be,marginType:de,marginTypeTablet:me,marginTypeMobile:ye,marginLink:fe,backgroundCustomSizeDesktop:he,backgroundCustomSizeTablet:ve,backgroundCustomSizeMobile:_e,backgroundCustomSizeType:Te,overlayType:Ce,customPosition:Se,xPositionDesktop:we,xPositionTablet:ke,xPositionMobile:Pe,xPositionType:xe,xPositionTypeTablet:Ae,xPositionTypeMobile:Ge,yPositionDesktop:Me,yPositionTablet:Re,yPositionMobile:Be,yPositionType:Ue,yPositionTypeTablet:Oe,yPositionTypeMobile:Le}=t,He=Object(n.select)("core/block-editor").getBlockParents(l).at(-1),je=Object(n.select)("core/block-editor").getBlockAttributes(He),{enableHashNavigation:ze}=je;Object(B.useEffect)(()=>{"color"===i&&a({backgroundSizeDesktop:"cover",backgroundSizeTablet:"cover",backgroundSizeMobile:"cover"})},[i]);const De=uagb_blocks_info.spectra_pro_status,Ne=De&&ze?["general","style","advance"]:["style","advance"],Ie=De&&ze?"general":"style";return React.createElement(ge.InspectorControls,null,React.createElement(Ee,{defaultTab:Ie,tabs:Ne},De&&React.createElement(il,ol),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,mR({setAttributes:a,backgroundGradient:{value:w,label:"gradientValue"},backgroundGradientColor1:{value:k,label:"gradientColor1"},gradientType:{value:j,label:"selectGradient"},backgroundGradientColor2:{value:P,label:"gradientColor2"},backgroundGradientLocation1:{value:x,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:A,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:G,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:M,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:R,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:U,label:"gradientLocationMobile2"},backgroundGradientType:{value:E,label:"gradientType"},backgroundGradientAngle:{value:O,label:"gradientAngle"},backgroundGradientAngleTablet:{value:L,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:H,label:"gradientAngleMobile"},backgroundImageColor:{value:S,label:"backgroundImageColor"},backgroundSize:{desktop:{value:_,label:"backgroundSizeDesktop"},tablet:{value:T,label:"backgroundSizeTablet"},mobile:{value:C,label:"backgroundSizeMobile"}},backgroundCustomSize:{desktop:{value:he,label:"backgroundCustomSizeDesktop"},tablet:{value:ve,label:"backgroundCustomSizeTablet"},mobile:{value:_e,label:"backgroundCustomSizeMobile"}},backgroundCustomSizeType:{value:Te,label:"backgroundCustomSizeType"},backgroundRepeat:{desktop:{value:f,label:"backgroundRepeatDesktop"},tablet:{value:h,label:"backgroundRepeatTablet"},mobile:{value:v,label:"backgroundRepeatMobile"}},backgroundAttachment:{desktop:{value:g,label:"backgroundAttachmentDesktop"},tablet:{value:m,label:"backgroundAttachmentTablet"},mobile:{value:y,label:"backgroundAttachmentMobile"}},backgroundPosition:{desktop:{value:p,label:"backgroundPositionDesktop"},tablet:{value:b,label:"backgroundPositionTablet"},mobile:{value:d,label:"backgroundPositionMobile"}},backgroundImage:{desktop:{value:o,label:"backgroundImageDesktop"},tablet:{value:s,label:"backgroundImageTablet"},mobile:{value:c,label:"backgroundImageMobile"}},imageResponsive:!0,backgroundColor:{value:u,label:"backgroundColor"},backgroundType:{value:i,label:"backgroundType"},overlayType:{value:Ce,label:"overlayType"},gradientOverlay:{value:!0},customPosition:{value:Se,label:"customPosition"},xPositionDesktop:{value:we,label:"xPositionDesktop"},xPositionTablet:{value:ke,label:"xPositionTablet"},xPositionMobile:{value:Pe,label:"xPositionMobile"},xPositionType:{value:xe,label:"xPositionType"},xPositionTypeTablet:{value:Ae,label:"xPositionTypeTablet"},xPositionTypeMobile:{value:Ge,label:"xPositionTypeMobile"},yPositionDesktop:{value:Me,label:"yPositionDesktop"},yPositionTablet:{value:Re,label:"yPositionTablet"},yPositionMobile:{value:Be,label:"yPositionMobile"},yPositionType:{value:Ue,label:"yPositionType"},yPositionTypeTablet:{value:Oe,label:"yPositionTypeTablet"},yPositionTypeMobile:{value:Le,label:"yPositionTypeMobile"},backgroundVideoType:{value:!1}},e))),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,mR({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:F,label:"topPaddingDesktop"},valueRight:{value:N,label:"rightPaddingDesktop"},valueBottom:{value:z,label:"bottomPaddingDesktop"},valueLeft:{value:D,label:"leftPaddingDesktop"},valueTopTablet:{value:I,label:"topPaddingTablet"},valueRightTablet:{value:q,label:"rightPaddingTablet"},valueBottomTablet:{value:V,label:"bottomPaddingTablet"},valueLeftTablet:{value:W,label:"leftPaddingTablet"},valueTopMobile:{value:Z,label:"topPaddingMobile"},valueRightMobile:{value:K,label:"rightPaddingMobile"},valueBottomMobile:{value:$,label:"bottomPaddingMobile"},valueLeftMobile:{value:Y,label:"leftPaddingMobile"},unit:{value:J,label:"paddingType"},mUnit:{value:Q,label:"paddingTypeMobile"},tUnit:{value:X,label:"paddingTypeTablet"},attributes:t,setAttributes:a,link:{value:ee,label:"paddingLink"}})),React.createElement(Pl,mR({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:te,label:"topMarginDesktop"},valueRight:{value:ie,label:"rightMarginDesktop"},valueBottom:{value:ae,label:"bottomMarginDesktop"},valueLeft:{value:le,label:"leftMarginDesktop"},valueTopTablet:{value:oe,label:"topMarginTablet"},valueRightTablet:{value:se,label:"rightMarginTablet"},valueBottomTablet:{value:ne,label:"bottomMarginTablet"},valueLeftTablet:{value:re,label:"leftMarginTablet"},valueTopMobile:{value:ce,label:"topMarginMobile"},valueRightMobile:{value:be,label:"rightMarginMobile"},valueBottomMobile:{value:ue,label:"bottomMarginMobile"},valueLeftMobile:{value:pe,label:"leftMarginMobile"},unit:{value:de,label:"marginType"},mUnit:{value:ye,label:"marginTypeMobile"},tUnit:{value:me,label:"marginTypeTablet"},attributes:t,setAttributes:a,link:{value:fe,label:"marginLink"}})))),React.createElement(il,mR({},rl,{parentProps:e}))))}),fR=Object(B.memo)(e=>{const{slideIndex:t}=e,a=wp.blocks.getBlockTypes().filter((function(e){return!e.parent})),l=[["uagb/container",{variationSelected:!0},[["uagb/info-box",{showIcon:!1,ctaType:"button",infoBoxTitle:Object(r.__)("Slide ","ultimate-addons-for-gutenberg")+parseInt(t+1),showCtaIcon:!1,paddingBtnTop:12,paddingBtnRight:24,paddingBtnBottom:12,paddingBtnLeft:24}]]]],i={allowedBlocks:a.map(e=>e.name).filter(e=>-1===["uagb/slider","uagb/post-carousel","uagb/testimonial"].indexOf(e)),template:l},o=Object(ge.useInnerBlocksProps)({className:"swiper-content",slot:"container-start"},i);return React.createElement("div",o)});const hR=Object(n.withSelect)((e,t)=>{var a;const l=null!==(a=e("core/editor"))&&void 0!==a&&a.getDeviceType?e("core/editor").getDeviceType():null,{getBlocks:i,getBlockIndex:o}=e("core/block-editor"),{getBlockType:r}=e("core/blocks"),{insertBlock:s}=Object(n.useDispatch)("core/block-editor"),c=i(t.clientId),{replaceInnerBlocks:u}=Object(n.useDispatch)("core/block-editor"),p=o(t.clientId);return{innerBlocks:c,insertBlock:s,blockType:r(t.name),replaceInnerBlocks:u,deviceType:l,isParentOfSelectedBlock:e("core/block-editor").hasSelectedInnerBlock(t.clientId,!0),slideIndex:p}});var vR=Object(L.compose)(hR,vs,fe)(e=>{const{isSelected:t,attributes:a,deviceType:l,clientId:i}=e,o=Object(B.useMemo)(()=>function(e,t,a){let{backgroundType:l,backgroundImageDesktop:i,backgroundImageTablet:o,backgroundImageMobile:n,backgroundColor:r,backgroundPositionDesktop:s,backgroundPositionTablet:c,backgroundPositionMobile:u,backgroundAttachmentDesktop:p,backgroundAttachmentTablet:b,backgroundAttachmentMobile:d,backgroundRepeatDesktop:g,backgroundRepeatTablet:m,backgroundRepeatMobile:y,backgroundSizeDesktop:f,backgroundSizeTablet:h,backgroundSizeMobile:v,gradientValue:_,topPaddingDesktop:T,bottomPaddingDesktop:C,leftPaddingDesktop:S,rightPaddingDesktop:w,topPaddingTablet:k,bottomPaddingTablet:P,leftPaddingTablet:x,rightPaddingTablet:A,topPaddingMobile:G,bottomPaddingMobile:M,leftPaddingMobile:R,rightPaddingMobile:B,paddingType:U,paddingTypeTablet:E,paddingTypeMobile:O,topMarginDesktop:L,bottomMarginDesktop:H,leftMarginDesktop:j,rightMarginDesktop:F,topMarginTablet:z,bottomMarginTablet:D,leftMarginTablet:N,rightMarginTablet:I,topMarginMobile:V,bottomMarginMobile:W,leftMarginMobile:q,rightMarginMobile:Z,marginType:$,marginTypeTablet:Y,marginTypeMobile:K,backgroundCustomSizeDesktop:J,backgroundCustomSizeTablet:X,backgroundCustomSizeMobile:Q,backgroundCustomSizeType:ee,backgroundImageColor:te,overlayType:le,customPosition:ie,xPositionDesktop:oe,xPositionTablet:ne,xPositionMobile:re,xPositionType:se,xPositionTypeTablet:ce,xPositionTypeMobile:ue,yPositionDesktop:pe,yPositionTablet:be,yPositionMobile:de,yPositionType:ge,yPositionTypeTablet:me,yPositionTypeMobile:ye,overflow:fe,gradientColor1:he,gradientColor2:ve,gradientLocation1:_e,gradientLocationTablet1:Te,gradientLocationMobile1:Ce,gradientLocation2:Se,gradientLocationTablet2:we,gradientLocationMobile2:ke,gradientType:Pe,gradientAngle:xe,gradientAngleTablet:Ae,gradientAngleMobile:Ge,selectGradient:Me}=e;const Re=a.toLowerCase(),Be=rs(e,"container","tablet"),Ue=rs(e,"container","mobile");k=void 0!==k?k:T,G=void 0!==G?G:k,P=void 0!==P?P:C,M=void 0!==M?M:P,x=void 0!==x?x:S,R=void 0!==R?R:x,A=void 0!==A?A:w,B=void 0!==B?B:A,z=void 0!==z?z:L,V=void 0!==V?V:z,D=void 0!==D?D:H,W=void 0!==W?W:D,N=void 0!==N?N:j,q=void 0!==q?q:N,I=void 0!==I?I:F,Z=void 0!==Z?Z:I;const Ee={},Oe={backgroundType:l,backgroundImage:i,backgroundColor:r,gradientValue:_,gradientColor1:he,gradientColor2:ve,gradientLocation1:_e,gradientLocation2:Se,gradientType:Pe,gradientAngle:xe,selectGradient:Me,backgroundRepeat:g,backgroundPosition:s,backgroundSize:f,backgroundAttachment:p,backgroundCustomSize:J,backgroundCustomSizeType:ee,backgroundImageColor:te,overlayType:le,customPosition:ie,xPosition:oe,xPositionType:se,yPosition:pe,yPositionType:ge},Le=ss(Oe),He={"padding-top":ns(T,U),"padding-bottom":ns(C,U),"padding-left":ns(S,U),"padding-right":ns(w,U),"margin-top":ns(L,$)+" !important","margin-bottom":ns(H,$)+" !important","margin-left":ns(j,$),"margin-right":ns(F,$),...Le,overflow:fe};Ee[" .swiper-content"]=He;const je={backgroundType:l,backgroundImage:o,backgroundColor:r,gradientValue:_,gradientColor1:he,gradientColor2:ve,gradientLocation1:"number"==typeof Te?Te:Oe.gradientLocation1,gradientLocation2:"number"==typeof we?we:Oe.gradientLocation2,gradientType:Pe,gradientAngle:"number"==typeof Ae?Ae:Oe.gradientAngle,selectGradient:Me,backgroundRepeat:m,backgroundPosition:c,backgroundSize:h,backgroundAttachment:b,backgroundCustomSize:X,backgroundCustomSizeType:ee,backgroundImageColor:te,overlayType:le,customPosition:ie,xPosition:ne,xPositionType:ce,yPosition:be,yPositionType:me},Fe=ss(je),ze={" .swiper-content":{"padding-top":ns(k,E),"padding-bottom":ns(P,E),"padding-left":ns(x,E),"padding-right":ns(A,E),"margin-top":ns(z,Y)+" !important","margin-bottom":ns(D,Y)+" !important","margin-left":ns(N,Y),"margin-right":ns(I,Y),...Fe,...Be}},De=ss({backgroundType:l,backgroundImage:n,backgroundColor:r,gradientValue:_,gradientColor1:he,gradientColor2:ve,gradientLocation1:"number"==typeof Ce?Ce:je.gradientLocation1,gradientLocation2:"number"==typeof ke?ke:je.gradientLocation2,gradientType:Pe,gradientAngle:"number"==typeof Ge?Ge:je.gradientAngle,selectGradient:Me,backgroundRepeat:y,backgroundPosition:u,backgroundSize:v,backgroundAttachment:d,backgroundCustomSize:Q,backgroundCustomSizeType:ee,backgroundImageColor:te,overlayType:le,customPosition:ie,xPosition:re,xPositionType:ue,yPosition:de,yPositionType:ye}),Ne={" .swiper-content":{"padding-top":ns(G,O),"padding-bottom":ns(M,O),"padding-left":ns(R,O),"padding-right":ns(B,O),"margin-top":ns(V,K)+" !important","margin-bottom":ns(W,K)+" !important","margin-left":ns(q,K),"margin-right":ns(Z,K),...De,...Ue}},Ie=".editor-styles-wrapper #block-"+t;let Ve=ae(Ee,Ie);return"tablet"!==Re&&"mobile"!==Re||(Ve+=ae(ze,""+Ie,!0,"tablet"),"mobile"===Re&&(Ve+=ae(Ne,""+Ie,!0,"mobile"))),Ve}(a,i,l),[a,l]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:o}),t&&React.createElement(yR,e),React.createElement(fR,e))}),_R=[{attributes:{block_id:{type:"string",default:"0"},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"slider-bg-type"}},backgroundImageDesktop:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-desktop"}},backgroundImageTablet:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-tablet"}},backgroundImageMobile:{type:"object",UAGCopyPaste:{styleType:"slider-bg-image-mobile"}},backgroundPositionDesktop:{type:"object",default:{x:.5,y:.5},UAGCopyPaste:{styleType:"slider-bg-position-desktop"}},backgroundPositionTablet:{type:"object",UAGCopyPaste:{styleType:"slider-bg-position-tablet"}},backgroundPositionMobile:{type:"object",UAGCopyPaste:{styleType:"slider-bg-position-mobile"}},backgroundSizeDesktop:{type:"string",default:"cover",UAGCopyPaste:{styleType:"slider-bg-size-desktop"}},backgroundSizeTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-size-tablet"}},backgroundSizeMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-size-mobile"}},backgroundRepeatDesktop:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"slider-bg-repeat-desktop"}},backgroundRepeatTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-repeat-tablet"}},backgroundRepeatMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-repeat-mobile"}},backgroundAttachmentDesktop:{type:"string",default:"scroll",UAGCopyPaste:{styleType:"slider-bg-attachment-desktop"}},backgroundAttachmentTablet:{type:"string",UAGCopyPaste:{styleType:"slider-bg-attachment-tablet"}},backgroundAttachmentMobile:{type:"string",UAGCopyPaste:{styleType:"slider-bg-attachment-mobile"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"slider-bg-color"}},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"slider-bg-opacity"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"slider-bg-image-color"},default:"#FFFFFF75"},gradientValue:{type:"string",default:"linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"slider-bg-gradient-value"}},topPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-desktop"},default:20},bottomPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-desktop"},default:20},leftPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-desktop"},default:20},rightPaddingDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-desktop"},default:20},topPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-tablet"},default:20},bottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-tablet"},default:20},leftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-tablet"},default:20},rightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-tablet"},default:20},topPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-top-padding-mobile"},default:20},bottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-padding-mobile"},default:20},leftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-left-padding-mobile"},default:20},rightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"slider-right-padding-mobile"},default:20},paddingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type"}},paddingTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type-tablet"}},paddingTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-padding-type-mobile"}},paddingLink:{type:"boolean",default:!0},topMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-desktop"}},bottomMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-desktop"}},leftMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-desktop"}},rightMarginDesktop:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-desktop"}},topMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-tablet"}},bottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-tablet"}},leftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-tablet"}},rightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-tablet"}},topMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-top-margin-mobile"}},bottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-bottom-margin-mobile"}},leftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-left-margin-mobile"}},rightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"slider-right-margin-mobile"}},marginType:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type"}},marginTypeTablet:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type-tablet"}},marginTypeMobile:{type:"string",default:"px",UAGCopyPaste:{styleType:"slider-margin-type-mobile"}},isPreview:{type:"boolean",default:!1},isBlockRootParent:{type:"boolean",default:!1},backgroundCustomSizeDesktop:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-desktop"},default:100},backgroundCustomSizeTablet:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-tablet"}},backgroundCustomSizeMobile:{type:"number",UAGCopyPaste:{styleType:"background-custom-size-mobile"}},backgroundCustomSizeType:{type:"string",default:"%",UAGCopyPaste:{styleType:"background-custom-size-type"}},overlayType:{type:"string",default:"none",UAGCopyPaste:{styleType:"background-overlay-type"}},customPosition:{type:"string",default:"default",UAGCopyPaste:{styleType:"background-image-position-type"}},xPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-desktop"},default:""},xPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-tablet"}},xPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-x-position-mobile"}},xPositionType:{type:"string",default:"px"},xPositionTypeTablet:{type:"string",default:"px"},xPositionTypeMobile:{type:"string",default:"px"},yPositionDesktop:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-desktop"},default:""},yPositionTablet:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-tablet"}},yPositionMobile:{type:"number",UAGCopyPaste:{styleType:"background-image-y-position-mobile"}},yPositionType:{type:"string",default:"px"},yPositionTypeTablet:{type:"string",default:"px"},yPositionTypeMobile:{type:"string",default:"px"}},save:function(e){const{block_id:t}=e.attributes;return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-slider-child-wrap","swiper-slide","uagb-block-"+t),key:t},React.createElement("div",{className:"swiper-content"},React.createElement(ge.InnerBlocks.Content,null))))}}];let TR={};TR=Object(j.applyFilters)("uagb/slider-child",ws(TR)),Object(be.registerBlockType)("uagb/slider-child",{...TR,title:Object(r.__)("Slider Child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add and customize content of this slide.","ultimate-addons-for-gutenberg"),icon:se.slider_child,parent:["uagb/slider"],keywords:[Object(r.__)("slider","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],attributes:Fa,category:uagb_blocks_info.category,supports:{html:!1},edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"slider-child",isChildren:!0}):React.createElement(vR,e),save:function(e){const{block_id:t}=e.attributes,a=ge.useBlockProps.save({className:Be()("uagb-slider-child-wrap","swiper-slide","uagb-block-"+t)});return React.createElement(React.Fragment,null,React.createElement("div",gR({},a,{key:t}),React.createElement("div",{className:"swiper-content"},React.createElement(ge.InnerBlocks.Content,null))))},deprecated:_R}),a(361);var CR={from:[{type:"raw",priority:20,selector:"p",schema:e=>{let{phrasingContentSchema:t,isPaste:a}=e;return{p:{children:t,attributes:a?[]:["style"]}}},transform(e){const t=Object(be.getBlockAttributes)("uagb/social-share",e.outerHTML),{textAlign:a}=e.style||{};return"left"!==a&&"center"!==a&&"right"!==a||(t.align=a),Object(be.createBlock)("uagb/social-share",t)}}]};const SR=[{defaultAttributes:ht},{defaultChildAttributes:vt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"gap",value:15},{label:"gapTablet",value:15},{label:"gapMobile",value:15},{label:"bgSize",value:12},{label:"bgSizeTablet",value:12},{label:"bgSizeMobile",value:12},{label:"size",value:20},{label:"sizeTablet",value:20},{label:"sizeMobile",value:20},{label:"borderRadius",value:0},{label:"borderRadiusTablet",value:0},{label:"borderRadiusMobile",value:0},{label:"border",value:0},{label:"iconColor",value:"#ffffff"},{label:"iconBgColor",value:"#0170B9"}],childAttributes:[{label:"icon_color",value:""},{label:"icon_bg_color",value:""}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="47" y="101" width="70.0293" height="70" fill="#B6B6B6"/> <ellipse cx="81.4675" cy="136.547" rx="9.30076" ry="9.29688" fill="#E6E7E9"/> <rect x="127.485" y="101" width="70.0293" height="70" fill="#B6B6B6"/> <ellipse cx="161.953" cy="136.547" rx="9.30076" ry="9.29688" fill="#E6E7E9"/> <rect x="207.971" y="101" width="70.0293" height="70" fill="#B6B6B6"/> <ellipse cx="242.438" cy="136.547" rx="9.30076" ry="9.29688" fill="#E6E7E9"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"gap",value:15},{label:"gapTablet",value:15},{label:"gapMobile",value:15},{label:"bgSize",value:12},{label:"bgSizeTablet",value:12},{label:"bgSizeMobile",value:12},{label:"size",value:20},{label:"sizeTablet",value:20},{label:"sizeMobile",value:20},{label:"borderRadius",value:5},{label:"borderRadiusTablet",value:5},{label:"borderRadiusMobile",value:5},{label:"border",value:0},{label:"iconColor",value:"#ffffff"},{label:"iconBgColor",value:"#0170B9"}],childAttributes:[{label:"icon_color",value:""},{label:"icon_bg_color",value:""}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="48" y="101" width="69.5243" height="70" rx="8" fill="#B6B6B6"/> <ellipse cx="82.219" cy="136.547" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> <rect x="128.682" y="101" width="69.5243" height="70" rx="8" fill="#B6B6B6"/> <ellipse cx="162.901" cy="136.547" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> <rect x="209.476" y="101" width="69.5243" height="70" rx="8" fill="#B6B6B6"/> <ellipse cx="243.695" cy="136.547" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"gap",value:15},{label:"gapTablet",value:15},{label:"gapMobile",value:15},{label:"bgSize",value:12},{label:"bgSizeTablet",value:12},{label:"bgSizeMobile",value:12},{label:"size",value:20},{label:"sizeTablet",value:20},{label:"sizeMobile",value:20},{label:"borderRadius",value:100},{label:"borderRadiusTablet",value:100},{label:"borderRadiusMobile",value:100},{label:"border",value:0},{label:"iconColor",value:"#ffffff"},{label:"iconBgColor",value:"#0170B9"}],childAttributes:[{label:"icon_color",value:""},{label:"icon_bg_color",value:""}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <ellipse cx="82.7621" cy="136" rx="34.7621" ry="35" fill="#B6B6B6"/> <ellipse cx="82.6512" cy="135.888" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> <ellipse cx="163.5" cy="136" rx="34.7621" ry="35" fill="#B6B6B6"/> <ellipse cx="163.389" cy="135.888" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> <ellipse cx="244.238" cy="136" rx="34.7621" ry="35" fill="#B6B6B6"/> <ellipse cx="244.127" cy="135.888" rx="9.23369" ry="9.29688" fill="#E6E7E9"/> </svg>'}];var wR=Object(j.applyFilters)("uag_social_share_presets",SR);function kR(){return(kR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var PR,xR=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{align:l,alignTablet:i,alignMobile:o,gap:n,gapTablet:s,gapMobile:c,stack:u,social_layout:p,borderRadius:b,borderRadiusTablet:d,borderRadiusMobile:g,size:m,sizeType:y,sizeMobile:f,sizeTablet:h,bgSize:v,iconColor:_,iconHoverColor:T,iconBgColor:C,iconBgHoverColor:S}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:p,label:"social_layout"},className:"uagb-multi-button-alignment-control",options:[{value:"horizontal",label:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},{value:"vertical",label:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")}],showIcons:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:l,label:"align"},tablet:{value:i,label:"alignTablet"},mobile:{value:o,label:"alignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),"horizontal"===p&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Stack On","ultimate-addons-for-gutenberg"),data:{value:u,label:"stack"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"desktop",label:Object(r.__)("Desktop","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],showIcons:!1,help:Object(r.__)("Note: Choose on what breakpoint the Icons will stack.","ultimate-addons-for-gutenberg")}))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:wR,presetInputType:"radioImage"}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:m,label:"size"},tablet:{value:h,label:"sizeTablet"},mobile:{value:f,label:"sizeMobile"}},min:0,max:100,unit:{value:y,label:"sizeType"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Background Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:v,data:{value:v,label:"bgSize"},min:0,max:100,displayUnit:!1,help:Object(r.__)("Note: Background Size option is useful when one adds background color to the icons.","ultimate-addons-for-gutenberg")}),React.createElement(tl,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),data:{desktop:{value:b,label:"borderRadius"},tablet:{value:d,label:"borderRadiusTablet"},mobile:{value:g,label:"borderRadiusMobile"}},min:0,max:100,displayUnit:!1,help:Object(r.__)("Note: Border Radius option is useful when one adds background color to the icons.","ultimate-addons-for-gutenberg"),setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:_||"",data:{value:_,label:"iconColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:C||"",data:{value:C,label:"iconBgColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:T||"",data:{value:T,label:"iconHoverColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:S||"",data:{value:S,label:"iconBgHoverColor"},setAttributes:a})),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Gap between Items","ultimate-addons-for-gutenberg"),data:{desktop:{value:n,label:"gap"},tablet:{value:s,label:"gapTablet"},mobile:{value:c,label:"gapMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a}))),React.createElement(il,kR({},rl,{parentProps:e}))))}),AR=a(140),GR=0,MR={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},RR={};RR.locals=AR.a.locals||{},RR.use=function(){return GR++||(PR=ke()(AR.a,MR)),RR},RR.unuse=function(){GR>0&&!--GR&&(PR(),PR=null)};var BR=RR;const UR=["uagb/social-share-child"];var ER=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(BR.use(),()=>{BR.unuse()}),[]);const{attributes:t,deviceType:a}=e,{className:l,social_layout:i,block_id:o}=t;return React.createElement("div",{className:Be()(l,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+i,"uagb-editor-preview-mode-"+a.toLowerCase(),"uagb-block-"+o)},React.createElement(ge.InnerBlocks,{template:[["uagb/social-share-child",{type:"facebook",image_icon:"icon",icon:"fab fa-facebook",image:"",icon_color:"#3b5998",icon_hover_color:"",icon_bg_color:"",icon_bg_hover_color:""}],["uagb/social-share-child",{type:"twitter",image_icon:"icon",icon:"fab fa-twitter-square",image:"",icon_color:"#55acee",icon_hover_color:"",icon_bg_color:"",icon_bg_hover_color:""}],["uagb/social-share-child",{type:"pinterest",image_icon:"icon",icon:"fab fa-pinterest-square",image:"",icon_color:"#bd081c",icon_hover_color:"",icon_bg_color:"",icon_bg_hover_color:""}],["uagb/social-share-child",{type:"linkedin",image_icon:"icon",icon:"fab fa-linkedin",image:"",icon_color:"#0077b5",icon_hover_color:"",icon_bg_color:"",icon_bg_hover_color:""}]],templateLock:!1,allowedBlocks:UR,__experimentalMoverDirection:i}))}),OR=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,clientId:a,attributes:l,name:i,attributes:{UAGHideDesktop:o,UAGHideTab:r,UAGHideMob:s},deviceType:c}=e;Object(B.useEffect)(()=>{he(e)},[o,r,s,c]),Object(B.useEffect)(()=>{Bs()},[c]),Object(B.useEffect)(()=>{var e;null===(e=Object(n.select)("core/block-editor").getBlocksByClientId(a)[0])||void 0===e||e.innerBlocks.forEach((function(e){Object(n.dispatch)("core/block-editor").updateBlockAttributes(e.clientId,{parentSize:l.size,parentSizeMobile:l.sizeMobile,parentSizeTablet:l.sizeTablet})}))},[l.size,l.sizeMobile,l.sizeTablet]);const u=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{align:n,alignTablet:r,alignMobile:s,gap:c,gapTablet:u,gapMobile:p,social_layout:b,borderRadius:d,borderRadiusTablet:g,borderRadiusMobile:m,size:y,sizeType:f,sizeMobile:h,sizeTablet:v,bgSize:_,stack:T,iconColor:C,iconHoverColor:S,iconBgColor:w,iconBgHoverColor:k,block_id:P}=e,x=Ps(_,"bgSize",i),A=Ps(y,"size",i),G=Ps(c,"gap",i),M=isNaN(u)?G:u,R=isNaN(p)?M:p,B={" span.uagb-ss__link":{color:C}," span.uagb-ss__link svg":{fill:C}," .uagb-ss-repeater:hover span.uagb-ss__link":{color:S}," .uagb-ss-repeater:hover span.uagb-ss__link svg":{fill:S}," .uagb-ss__wrapper":{background:w}," .uagb-ss__wrapper:hover":{background:k}},U={},E={};function O(e){return"left"===e?"flex-start":"right"===e?"flex-end":"center"}B[".uagb-social-share__layout-vertical .uagb-ss__wrapper"]={padding:ns(x,"px"),"margin-left":0,"margin-right":0,"margin-top":ns(G/2,"px"),"margin-bottom":ns(G/2,"px")},U[".uagb-social-share__layout-vertical .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-top":ns(M/2,"px"),"margin-bottom":ns(M/2,"px")},E[".uagb-social-share__layout-vertical .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-top":ns(R/2,"px"),"margin-bottom":ns(R/2,"px")},B[".uagb-social-share__layout-vertical.uagb-social-share__outer-wrap"]={"flex-direction":"column"},B[".uagb-social-share__layout-horizontal .uagb-ss__wrapper"]={padding:ns(x,"px"),"margin-left":ns(G/2,"px"),"margin-right":ns(G/2,"px")},U[".uagb-social-share__layout-horizontal .uagb-ss__wrapper"]={"margin-left":ns(M/2,"px"),"margin-right":ns(M/2,"px")},E[".uagb-social-share__layout-horizontal .uagb-ss__wrapper"]={"margin-left":ns(R/2,"px"),"margin-right":ns(R/2,"px")},B[" .uagb-ss__wrapper.uagb-ss-repeater "]={"border-radius":ns(d,"px")},U[" .uagb-ss__wrapper.uagb-ss-repeater "]={"border-radius":ns(g,"px")},E[" .uagb-ss__wrapper.uagb-ss-repeater "]={"border-radius":ns(m,"px")},B[" .uagb-ss__source-image"]={width:ns(A,f)},B[" .uagb-ss__source-wrap"]={width:ns(A,f)},B[" .uagb-ss__source-wrap svg"]={width:ns(A,f),height:ns(A,f)},B[" .uagb-ss__source-icon"]={width:ns(A,f),height:ns(A,f),"font-size":ns(A,f)};const L=O(n),H=O(r),j=O(s);B[".uagb-social-share__outer-wrap .block-editor-inner-blocks"]={"text-align":n},B[".uagb-social-share__outer-wrap .block-editor-inner-blocks .block-editor-block-list__layout"]={"justify-content":L,"-webkit-box-pack":L,"-ms-flex-pack":L,"-webkit-box-align":L,"-ms-flex-align":L,"align-items":L},U[".uagb-social-share__outer-wrap .block-editor-inner-blocks .block-editor-block-list__layout"]={"justify-content":H,"-webkit-box-pack":H,"-ms-flex-pack":H,"-webkit-box-align":H,"-ms-flex-align":H,"align-items":H},E[".uagb-social-share__outer-wrap .block-editor-inner-blocks .block-editor-block-list__layout"]={"justify-content":j,"-webkit-box-pack":j,"-ms-flex-pack":j,"-webkit-box-align":j,"-ms-flex-align":j,"align-items":j},B[".uagb-social-share__outer-wrap"]={"justify-content":L,"-webkit-box-pack":L,"-ms-flex-pack":L,"-webkit-box-align":L,"-ms-flex-align":L,"align-items":L},U[".uagb-social-share__outer-wrap"]={"justify-content":H,"-webkit-box-pack":H,"-ms-flex-pack":H,"-webkit-box-align":H,"-ms-flex-align":H,"align-items":H},E[".uagb-social-share__outer-wrap"]={"justify-content":j,"-webkit-box-pack":j,"-ms-flex-pack":j,"-webkit-box-align":j,"-ms-flex-align":j,"align-items":j},"horizontal"===b&&("desktop"===T?(B[".uagb-social-share__layout-horizontal .block-editor-inner-blocks > .block-editor-block-list__layout"]={"flex-direction":"column"},B[" .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-bottom":ns(G,"px"),background:w},U[" .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-bottom":ns(u,"px"),background:w},E[" .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-bottom":ns(p,"px"),background:w},B[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":L,"-webkit-box-pack":L,"-ms-flex-pack":L,"-webkit-box-align":L,"-ms-flex-align":L,"align-items":L},U[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":H,"-webkit-box-pack":H,"-ms-flex-pack":H,"-webkit-box-align":H,"-ms-flex-align":H,"align-items":H},E[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":j,"-webkit-box-pack":j,"-ms-flex-pack":j,"-webkit-box-align":j,"-ms-flex-align":j,"align-items":j}):"tablet"===T?(U[" .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-bottom":ns(u,"px"),background:w},U[".uagb-editor-preview-mode-tablet .block-editor-block-list__layout"]={"flex-direction":"column"},E[".uagb-editor-preview-mode-mobile .block-editor-block-list__layout"]={"flex-direction":"column"},U[".uagb-social-share__layout-horizontal .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0},B[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":L,"-webkit-box-pack":L,"-ms-flex-pack":L,"-webkit-box-align":L,"-ms-flex-align":L,"align-items":L},U[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":H,"-webkit-box-pack":H,"-ms-flex-pack":H,"-webkit-box-align":H,"-ms-flex-align":H,"align-items":H},E[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":j,"-webkit-box-pack":j,"-ms-flex-pack":j,"-webkit-box-align":j,"-ms-flex-align":j,"align-items":j}):"mobile"===T&&(E[" .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0,"margin-bottom":ns(p,"px"),background:w},E[".uagb-editor-preview-mode-mobile .block-editor-block-list__layout"]={"flex-direction":"column"},E[".uagb-social-share__layout-horizontal .uagb-ss__wrapper"]={"margin-left":0,"margin-right":0},B[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":L,"-webkit-box-pack":L,"-ms-flex-pack":L,"-webkit-box-align":L,"-ms-flex-align":L,"align-items":L},U[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":H,"-webkit-box-pack":H,"-ms-flex-pack":H,"-webkit-box-align":H,"-ms-flex-align":H,"align-items":H},E[".uagb-social-share__outer-wrap"]={"flex-direction":"column","justify-content":j,"-webkit-box-pack":j,"-ms-flex-pack":j,"-webkit-box-align":j,"-ms-flex-align":j,"align-items":j})),E[" .uagb-ss__source-image"]={width:ns(h,f)},E[" .uagb-ss__source-wrap"]={width:ns(h,f),height:ns(h,f),"line-height":ns(h,f)},E[" .uagb-ss__source-wrap svg"]={width:ns(h,f),height:ns(h,f)},E[" .uagb-ss__source-icon"]={width:ns(h,f),height:ns(h,f),"font-size":ns(h,f),"line-height":ns(h,f)},U[" .uagb-ss__source-image"]={width:ns(v,f)},U[" .uagb-ss__source-wrap"]={width:ns(v,f),height:ns(v,f),"line-height":ns(v,f)},U[" .uagb-ss__source-wrap svg"]={width:ns(v,f),height:ns(v,f)},U[" .uagb-ss__source-icon"]={width:ns(v,f),height:ns(v,f),"font-size":ns(v,f),"line-height":ns(v,f)};let F="";const z=".uagb-block-"+P;return F=ae(B,z),"tablet"!==o&&"mobile"!==o||(F+=ae(U,""+z,!0,"tablet"),"mobile"===o&&(F+=ae(E,""+z,!0,"mobile"))),F}(l,0,i,c),[l,c]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:u}),t&&React.createElement(xR,e),React.createElement(ER,e))}),LR={facebook:"https://www.facebook.com/sharer.php?u=",twitter:"https://twitter.com/share?url=",google:"https://plus.google.com/share?url=",pinterest:"https://pinterest.com/pin/create/link/?url=",linkedin:"https://www.linkedin.com/shareArticle?url=",digg:"https://digg.com/submit?url=",blogger:"https://www.blogger.com/blog_this.pyra?t&amp;u=",reddit:"https://reddit.com/submit?url=",stumbleupon:"https://www.stumbleupon.com/submit?url=",tumblr:"https://www.tumblr.com/widgets/share/tool?canonicalUrl=",myspace:"https://myspace.com/post?u=",email:"mailto:?body="},HR=[{attributes:ht,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,socials:n,social_count:r,social_layout:s,current_url:c}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+s),id:"uagb-social-share-"+l},React.createElement("div",{className:"uagb-social-share__wrap"},n.map((e,t)=>{if(r<=t)return;let a="";null!=c&&(a=LR[e.type]+encodeURI(c));let l="";return"icon"==e.image_icon?e.icon&&(l=React.createElement("span",{className:Be()(e.icon,"uagb-ss__source-icon")})):e.image&&(l=React.createElement("img",{className:"uagb-ss__source-image",src:e.image.url})),React.createElement("div",{className:Be()("uagb-ss-repeater-"+t,"uagb-ss__wrapper"),key:t},React.createElement("a",{className:"uagb-ss__link",href:a,rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-ss__source-wrap"},l)))})))}},{attributes:ht,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,socials:n,social_count:r,social_layout:s,current_url:c}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+s),id:"uagb-social-share-"+l},React.createElement("div",{className:"uagb-social-share__wrap"},n.map((e,t)=>{if(r<=t)return;let a="";null!=c&&(a=LR[e.type]);let l="";return"icon"==e.image_icon?e.icon&&(l=React.createElement("span",{className:"uagb-ss__source-icon"},Wm(e.icon))):e.image&&(l=React.createElement("img",{className:"uagb-ss__source-image",src:e.image.url})),React.createElement("div",{className:Be()("uagb-ss-repeater-"+t,"uagb-ss__wrapper"),key:t},React.createElement("a",{className:"uagb-ss__link","data-href":a,rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-ss__source-wrap"},l)))})))}},{attributes:ht,save:e=>{const{attributes:t,className:a}=e,{block_id:l,align:i,items:o,socials:n,social_count:r,social_layout:s,current_url:c}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+s,"uagb-block-"+l)},React.createElement("div",{className:"uagb-social-share__wrap"},n.map((e,t)=>{if(r<=t)return;let a="";null!=c&&(a=LR[e.type]);let l="";return"icon"==e.image_icon?e.icon&&(l=React.createElement("span",{className:"uagb-ss__source-icon"},Wm(e.icon))):e.image&&(l=React.createElement("img",{className:"uagb-ss__source-image",src:e.image.url})),React.createElement("div",{className:Be()("uagb-ss-repeater-"+t,"uagb-ss__wrapper"),key:t},React.createElement("a",{className:"uagb-ss__link","data-href":a,rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-ss__source-wrap"},l)))})))}},{attributes:ht,save:e=>{const{className:t}=e,{block_id:a,social_layout:l}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+l,"uagb-block-"+a)},React.createElement("div",{className:"uagb-social-share__wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];let jR={};jR=Object(j.applyFilters)("uagb/social-share",ws(jR)),Object(be.registerBlockType)("uagb/social-share",{...jR,title:Object(r.__)("Social Share","ultimate-addons-for-gutenberg"),description:Object(r.__)("Share your content on different social media platforms.","ultimate-addons-for-gutenberg"),icon:se.social_share,keywords:[Object(r.__)("social share","ultimate-addons-for-gutenberg"),Object(r.__)("icon","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:ht,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"social-share"}):React.createElement(OR,e),save:function(e){const{className:t}=e,{block_id:a,social_layout:l}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-social-share__outer-wrap","uagb-social-share__layout-"+l,"uagb-block-"+a)},React.createElement(ge.InnerBlocks.Content,null))},transform:CR,deprecated:HR});function FR(){return(FR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var zR,DR=Object(B.memo)(e=>{const{attributes:t,setAttributes:a}=e,{type:l,image_icon:i,icon:o,image:n,icon_color:s,icon_hover_color:c,icon_bg_color:u,icon_bg_hover_color:p}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:l},onChange:e=>{a({type:e}),a({icon:{facebook:"fab fa-facebook",twitter:"fab fa-twitter-square",google:"fab fa-google-plus-square",pinterest:"fab fa-pinterest-square",linkedin:"fab fa-linkedin",digg:"fab fa-digg",blogger:"fab fa-blogger",reddit:"fab fa-reddit-square",stumbleupon:"fab fa-stumbleupon-circle",tumblr:"fab fa-tumblr-square",myspace:"fas fa-user-friends",email:"fas fa-envelope",pocket:"fab fa-get-pocket",vk:"fab fa-vk",odnoklassniki:"fab fa-odnoklassniki",skype:"fab fa-skype",telegram:"fab fa-telegram",whatsapp:"fab fa-whatsapp",xing:"fab fa-xing",buffer:"fab fa-buffer"}[e]})},options:[{value:"facebook",label:Object(r.__)("Facebook","ultimate-addons-for-gutenberg")},{value:"twitter",label:Object(r.__)("Twitter / X","ultimate-addons-for-gutenberg")},{value:"google",label:Object(r.__)("Google Currents","ultimate-addons-for-gutenberg")},{value:"pinterest",label:Object(r.__)("Pinterest","ultimate-addons-for-gutenberg")},{value:"linkedin",label:Object(r.__)("LinkedIn","ultimate-addons-for-gutenberg")},{value:"digg",label:Object(r.__)("Digg","ultimate-addons-for-gutenberg")},{value:"blogger",label:Object(r.__)("Blogger","ultimate-addons-for-gutenberg")},{value:"reddit",label:Object(r.__)("Reddit","ultimate-addons-for-gutenberg")},{value:"stumbleupon",label:Object(r.__)("StumbleUpon","ultimate-addons-for-gutenberg")},{value:"tumblr",label:Object(r.__)("Tumblr","ultimate-addons-for-gutenberg")},{value:"myspace",label:Object(r.__)("Myspace","ultimate-addons-for-gutenberg")},{value:"email",label:Object(r.__)("Email","ultimate-addons-for-gutenberg")},{value:"pocket",label:Object(r.__)("Pocket","ultimate-addons-for-gutenberg")},{value:"vk",label:Object(r.__)("VK","ultimate-addons-for-gutenberg")},{value:"odnoklassniki",label:Object(r.__)("Odnoklassniki","ultimate-addons-for-gutenberg")},{value:"skype",label:Object(r.__)("Skype","ultimate-addons-for-gutenberg")},{value:"telegram",label:Object(r.__)("Telegram","ultimate-addons-for-gutenberg")},{value:"whatsapp",label:Object(r.__)("WhatsApp","ultimate-addons-for-gutenberg")},{value:"xing",label:Object(r.__)("Xing","ultimate-addons-for-gutenberg")},{value:"buffer",label:Object(r.__)("Buffer","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Image / Icon","ultimate-addons-for-gutenberg"),data:{value:i,label:"image_icon"},className:"uagb-multi-button-alignment-control",options:[{value:"icon",label:Object(r.__)("Icon","ultimate-addons-for-gutenberg")},{value:"image",label:Object(r.__)("Image","ultimate-addons-for-gutenberg")}],showIcons:!1}),"icon"===i&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({icon:e})})),"image"===i&&React.createElement(Yl,{onSelectImage:e=>{e&&e.url&&e.type&&"image"===e.type?a({image:e}):a({image:null})},backgroundImage:n,onRemoveImage:()=>{a({image:""})}}))),React.createElement(il,nl,(()=>{let e="",t="";return"image"===i?(e=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"icon_bg_color"},setAttributes:a})),t=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"icon_bg_hover_color"},setAttributes:a}))):(e=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"icon_color"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"icon_bg_color"},setAttributes:a})),t=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"icon_hover_color"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"icon_bg_hover_color"},setAttributes:a}))),React.createElement(Fe,{title:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:e,hover:t,disableBottomSeparator:!0}))})()),React.createElement(il,FR({},rl,{parentProps:e}))))}),NR=a(141),IR=0,VR={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},WR={};WR.locals=NR.a.locals||{},WR.use=function(){return IR++||(zR=ke()(NR.a,VR)),WR},WR.unuse=function(){IR>0&&!--IR&&(zR(),zR=null)};var qR=WR,ZR=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(qR.use(),()=>{qR.unuse()}),[]);const{attributes:t,setAttributes:a}=e,{className:l,image_icon:i,icon:o,image:n,parentSize:r,imgTagHeight:s,block_id:c}=t,u=n&&null!=n&&n.alt?null==n?void 0:n.alt:"";let p="";return Object(B.useEffect)(()=>{n&&n.url&&"none"!==i&&mf(null==n?void 0:n.url,a,{type:"width",value:r})},[n,r]),"icon"===i?o&&(p=React.createElement("span",{className:"uagb-ss__source-icon"},Ce(o,a))):n&&n.url&&(p=React.createElement("img",{className:"uagb-ss__source-image",src:n.url,alt:u,width:r,height:s,loading:"lazy"})),React.createElement("div",{className:Be()("uagb-ss-repeater","uagb-ss__wrapper",l,"uagb-block-"+c)},React.createElement("span",{className:"uagb-ss__link",href:"/"},React.createElement("span",{className:"uagb-ss__source-wrap"},p)))}),$R=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,clientId:l,deviceType:i}=e;Object(B.useEffect)(()=>{Bs()},[i]);const o=Object(B.useMemo)(()=>function(e){const{icon_color:t,icon_hover_color:a,icon_bg_color:l,icon_bg_hover_color:i,block_id:o}=e;let n="";return n=ae({".uagb-ss-repeater span.uagb-ss__link":{color:t},".uagb-ss-repeater span.uagb-ss__link svg":{fill:t},".uagb-ss-repeater:hover span.uagb-ss__link":{color:a},".uagb-ss-repeater:hover span.uagb-ss__link svg":{fill:a},".uagb-ss-repeater.uagb-ss__wrapper":{background:l},".uagb-ss-repeater.uagb-ss__wrapper:hover":{background:i}},".uagb-block-"+o),n}(a),[a,i]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:o}),t&&React.createElement(DR,e),React.createElement(ZR,e))}),YR={facebook:"https://www.facebook.com/sharer.php?u=",twitter:"https://twitter.com/share?url=",google:"https://plus.google.com/share?url=",linkedin:"https://www.linkedin.com/shareArticle?url=",digg:"https://digg.com/submit?url=",blogger:"https://www.blogger.com/blog_this.pyra?t&amp;u=",reddit:"https://reddit.com/submit?url=",stumbleupon:"https://www.stumbleupon.com/submit?url=",tumblr:"https://www.tumblr.com/widgets/share/tool?canonicalUrl=",myspace:"https://myspace.com/post?u=",email:"mailto:?body=",pinterest:"https://pinterest.com/pin/create/link/?url=",vk:"https://vkontakte.ru/share.php?url=",odnoklassniki:"https://connect.ok.ru/offer?url=",pocket:"https://getpocket.com/edit?url=",whatsapp:"https://api.whatsapp.com/send?text=",xing:"https://www.xing.com/app/user?op=share&url=",telegram:"https://telegram.me/share/url?url=",skype:"https://web.skype.com/share?url=",buffer:"https://buffer.com/add?url="};a(362);var KR={facebook:"https://www.facebook.com/sharer.php?u=",twitter:"https://twitter.com/share?url=",google:"https://plus.google.com/share?url=",linkedin:"https://www.linkedin.com/shareArticle?url=",digg:"http://digg.com/submit?url=",blogger:"https://www.blogger.com/blog_this.pyra?t&amp;u=",reddit:"https://reddit.com/submit?url=",stumbleupon:"https://www.stumbleupon.com/submit?url=",tumblr:"https://www.tumblr.com/widgets/share/tool?canonicalUrl=",myspace:"https://myspace.com/post?u=",email:"mailto:?body=",pinterest:"https://pinterest.com/pin/create/link/?url=",vk:"https://vkontakte.ru/share.php?url=",odnoklassniki:"https://connect.ok.ru/offer?url=",pocket:"https://getpocket.com/edit?url=",whatsapp:"https://api.whatsapp.com/send?text=",xing:"https://www.xing.com/app/user?op=share&url=",telegram:"https://telegram.me/share/url?url=",skype:"https://web.skype.com/share?url=",buffer:"https://buffer.com/add?url="},JR=[{attributes:vt,save:e=>{const{attributes:t,className:a}=e,{current_url:l,type:i,image_icon:o,icon:n,image:r,block_id:s,link:c}=e.attributes;let u="";null!=l&&(u=KR[i]);let p="";return"icon"==o?n&&(p=React.createElement("span",{className:"uagb-ss__source-icon"},Wm(n))):r&&r.url&&(p=React.createElement("img",{className:"uagb-ss__source-image",src:r.url})),React.createElement("div",{className:Be()("uagb-ss-repeater","uagb-ss__wrapper",a,"uagb-block-"+s)},React.createElement("a",{className:"uagb-ss__link","data-href":u,rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-ss__source-wrap"},p)))}},{attributes:vt,save:function(e){const{className:t}=e,{type:a,image_icon:l,icon:i,image:o,block_id:n,parentSize:r,imgTagHeight:s}=e.attributes,c=YR[a],u=o&&null!=o&&o.alt?null==o?void 0:o.alt:"";let p="";return"icon"===l?i&&(p=React.createElement("span",{className:"uagb-ss__source-icon"},Ce(i))):o&&o.url&&(p=React.createElement("img",{className:"uagb-ss__source-image",src:o.url,alt:u,width:r,height:s,loading:"lazy"})),React.createElement("div",{className:Be()("uagb-ss-repeater","uagb-ss__wrapper",t,"uagb-block-"+n)},React.createElement("a",{className:"uagb-ss__link","data-href":c,rel:"noopener noreferrer"},React.createElement("span",{className:"uagb-ss__source-wrap"},p)))}}];let XR={};XR=Object(j.applyFilters)("uagb/social-share-child",ws(XR)),Object(be.registerBlockType)("uagb/social-share-child",{...XR,title:Object(r.__)("Social Share Child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Share your content on this social media platform .","ultimate-addons-for-gutenberg"),icon:se.social_share_child,parent:["uagb/social-share"],keywords:[Object(r.__)("social share","ultimate-addons-for-gutenberg"),Object(r.__)("icon","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],attributes:vt,category:uagb_blocks_info.category,supports:{html:!1},edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"social-share-child",isChildren:!0}):React.createElement($R,e),save:function(e){const{className:t}=e,{type:a,image_icon:l,icon:i,image:o,block_id:n,parentSize:r,imgTagHeight:s}=e.attributes,c=YR[a],u=o&&null!=o&&o.alt?null==o?void 0:o.alt:"";let p="";return"icon"===l?i&&(p=React.createElement("span",{className:"uagb-ss__source-icon"},Ce(i))):o&&o.url&&(p=React.createElement("img",{className:"uagb-ss__source-image",src:o.url,alt:u,width:r,height:s,loading:"lazy"})),React.createElement("div",{className:Be()("uagb-ss-repeater","uagb-ss__wrapper",t,"uagb-block-"+n)},React.createElement("span",{className:"uagb-ss__link","data-href":c,tabIndex:0,role:"button","aria-label":a},React.createElement("span",{className:"uagb-ss__source-wrap"},p)))},deprecated:JR});function QR(){return(QR=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var eB,tB=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,attributes:{rating:l,range:i,layout:o,layoutTablet:n,layoutMobile:s,align:c,alignTablet:u,alignMobile:p,size:b,sizeTablet:d,sizeMobile:g,gap:m,gapMobile:y,gapTablet:f,unmarkedColor:h,color:v,title:_,loadGoogleFonts:T,fontFamily:C,fontWeight:S,fontSizeType:w,fontSize:k,fontSizeMobile:P,fontSizeTablet:x,lineHeightType:A,lineHeight:G,lineHeightMobile:M,lineHeightTablet:R,titleColor:B,titleGap:U,titleGapMobile:E,titleGapTablet:O,fontStyle:L,fontTransform:H,fontDecoration:j,displayTitle:F,letterSpacing:z,letterSpacingTablet:D,letterSpacingMobile:N,letterSpacingType:I,blockTopPadding:V,blockRightPadding:W,blockLeftPadding:q,blockBottomPadding:Z,blockTopPaddingTablet:$,blockRightPaddingTablet:Y,blockLeftPaddingTablet:K,blockBottomPaddingTablet:J,blockTopPaddingMobile:X,blockRightPaddingMobile:Q,blockLeftPaddingMobile:ee,blockBottomPaddingMobile:te,blockPaddingUnit:ae,blockPaddingUnitTablet:le,blockPaddingUnitMobile:ie,blockPaddingLink:oe,blockTopMargin:ne,blockRightMargin:re,blockLeftMargin:se,blockBottomMargin:ce,blockTopMarginTablet:ue,blockRightMarginTablet:pe,blockLeftMarginTablet:be,blockBottomMarginTablet:de,blockTopMarginMobile:me,blockRightMarginMobile:ye,blockLeftMarginMobile:fe,blockBottomMarginMobile:he,blockMarginUnit:ve,blockMarginUnitTablet:_e,blockMarginUnitMobile:Te,blockMarginLink:Se,starPosition:we,starPositionTablet:ke,starPositionMobile:Pe},deviceType:xe}=e;let Ae=[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"full",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Full","ultimate-addons-for-gutenberg")}];("stack"===o||"stack"===n&&"Tablet"===xe||"stack"===s&&"Mobile"===xe)&&(Ae=[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],"full"===c&&a({align:"left"}));const Ge=React.createElement(Fe,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Title","ultimate-addons-for-gutenberg"),checked:F,onChange:()=>a({displayTitle:!F})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Range","ultimate-addons-for-gutenberg"),data:{value:i,label:"range"},options:[{value:"5",label:Object(r.__)("1-5","ultimate-addons-for-gutenberg")},{value:"10",label:Object(r.__)("1-10","ultimate-addons-for-gutenberg")}]}),React.createElement(Qa,{label:Object(r.__)("Rating","ultimate-addons-for-gutenberg"),setAttributes:a,value:l,data:{value:l,label:"rating"},min:0,max:i,step:.1,displayUnit:!1}),F&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{desktop:{value:o,label:"layout"},tablet:{value:n,label:"layoutTablet"},mobile:{value:s,label:"layoutMobile"}},options:[{value:"inline",label:Object(r.__)("Inline","ultimate-addons-for-gutenberg")},{value:"stack",label:Object(r.__)("Stack","ultimate-addons-for-gutenberg")}],responsive:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Star Position","ultimate-addons-for-gutenberg"),data:{desktop:{value:we,label:"starPosition"},tablet:{value:ke,label:"starPositionTablet"},mobile:{value:Pe,label:"starPositionMobile"}},options:[{value:"before",label:Object(r.__)("Before","ultimate-addons-for-gutenberg")},{value:"after",label:Object(r.__)("After","ultimate-addons-for-gutenberg")}],responsive:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:c,label:"align"},tablet:{value:u,label:"alignTablet"},mobile:{value:p,label:"alignMobile"}},options:Ae,showIcons:!0,responsive:!0})),Me=React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:B,data:{value:B,label:"titleColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:T,label:"loadGoogleFonts"},fontFamily:{value:C,label:"fontFamily"},fontWeight:{value:S,label:"fontWeight"},fontStyle:{value:L,label:"fontStyle"},transform:{value:H,label:"fontTransform"},decoration:{value:j,label:"fontDecoration"},fontSizeType:{value:w,label:"fontSizeType"},fontSize:{value:k,label:"fontSize"},fontSizeMobile:{value:P,label:"fontSizeMobile"},fontSizeTablet:{value:x,label:"fontSizeTablet"},lineHeightType:{value:A,label:"lineHeightType"},lineHeight:{value:G,label:"lineHeight"},lineHeightMobile:{value:M,label:"lineHeightMobile"},lineHeightTablet:{value:R,label:"lineHeightTablet"},letterSpacing:{value:z,label:"letterSpacing"},letterSpacingTablet:{value:D,label:"letterSpacingTablet"},letterSpacingMobile:{value:N,label:"letterSpacingMobile"},letterSpacingType:{value:I,label:"letterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Gap Between Title And Stars","ultimate-addons-for-gutenberg"),data:{desktop:{value:U,label:"titleGap"},tablet:{value:O,label:"titleGapTablet"},mobile:{value:E,label:"titleGapMobile"}},min:0,max:50,displayUnit:!1,setAttributes:a})),Re=React.createElement(Fe,{title:Object(r.__)("Star","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:v,data:{value:v,label:"color"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Unmarked Color","ultimate-addons-for-gutenberg"),colorValue:h,data:{value:h,label:"unmarkedColor"},setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:b,label:"size"},tablet:{value:d,label:"sizeTablet"},mobile:{value:g,label:"sizeMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Gap Between Stars","ultimate-addons-for-gutenberg"),data:{desktop:{value:m,label:"gap"},tablet:{value:f,label:"gapTablet"},mobile:{value:y,label:"gapMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a})),Be=React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:V,label:"blockTopPadding"},valueRight:{value:W,label:"blockRightPadding"},valueBottom:{value:Z,label:"blockBottomPadding"},valueLeft:{value:q,label:"blockLeftPadding"},valueTopTablet:{value:$,label:"blockTopPaddingTablet"},valueRightTablet:{value:Y,label:"blockRightPaddingTablet"},valueBottomTablet:{value:J,label:"blockBottomPaddingTablet"},valueLeftTablet:{value:K,label:"blockLeftPaddingTablet"},valueTopMobile:{value:X,label:"blockTopPaddingMobile"},valueRightMobile:{value:Q,label:"blockRightPaddingMobile"},valueBottomMobile:{value:te,label:"blockBottomPaddingMobile"},valueLeftMobile:{value:ee,label:"blockLeftPaddingMobile"},unit:{value:ae,label:"blockPaddingUnit"},mUnit:{value:ie,label:"blockPaddingUnitMobile"},tUnit:{value:le,label:"blockPaddingUnitTablet"},deviceType:xe,attributes:t,setAttributes:a,link:{value:oe,label:"blockPaddingLink"}}),React.createElement(Pl,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:ne,label:"blockTopMargin"},valueRight:{value:re,label:"blockRightMargin"},valueBottom:{value:ce,label:"blockBottomMargin"},valueLeft:{value:se,label:"blockLeftMargin"},valueTopTablet:{value:ue,label:"blockTopMarginTablet"},valueRightTablet:{value:pe,label:"blockRightMarginTablet"},valueBottomTablet:{value:de,label:"blockBottomMarginTablet"},valueLeftTablet:{value:be,label:"blockLeftMarginTablet"},valueTopMobile:{value:me,label:"blockTopMarginMobile"},valueRightMobile:{value:ye,label:"blockRightMarginMobile"},valueBottomMobile:{value:he,label:"blockBottomMarginMobile"},valueLeftMobile:{value:fe,label:"blockLeftMarginMobile"},unit:{value:ve,label:"blockMarginUnit"},mUnit:{value:Te,label:"blockMarginUnitMobile"},tUnit:{value:_e,label:"blockMarginUnitTablet"},deviceType:xe,attributes:t,setAttributes:a,link:{value:Se,label:"blockMarginLink"}}));return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","style","advance"]},React.createElement(il,ol,Ge,"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,Re,F&&""!==_&&Me,Be),React.createElement(il,QR({},rl,{parentProps:e})))))}),aB=a(142),lB=0,iB={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},oB={};oB.locals=aB.a.locals||{},oB.use=function(){return lB++||(eB=ke()(aB.a,iB)),oB},oB.unuse=function(){lB>0&&!--lB&&(eB(),eB=null)};var nB=oB,rB=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(nB.use(),()=>{nB.unuse()}),[]);const{className:t,setAttributes:a,attributes:{rating:l,range:i,title:o,displayTitle:n,block_id:s},deviceType:c}=e,u=parseInt(i),p=[];for(let e=1;e<=u;e++)p.push(React.createElement("span",{key:e,className:"uag-star"},"★"));return React.createElement("div",{className:Be()(t,"uagb-editor-preview-mode-"+c.toLowerCase(),"uagb-block-"+s)},n&&React.createElement(ge.RichText,{tagName:"p",placeholder:Object(r.__)("Write a title","ultimate-addons-for-gutenberg"),value:o,className:"uag-star-rating__title",onChange:e=>a({title:e})}),React.createElement("div",{className:"uag-star-rating",title:`${l}/${i}`},p))}),sB=Object(B.memo)(e=>{let{attributes:t}=e;const{loadGoogleFonts:a,fontFamily:l,fontWeight:i}=t;let o;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};o=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,o)}),cB=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o},clientId:n,name:r,deviceType:s}=e;Object(B.useEffect)(()=>{he(e)},[l,i,o,s]),Object(B.useEffect)(()=>{Bs()},[s]);const c=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{layout:n,layoutTablet:r,layoutMobile:s,rating:c,size:u,sizeMobile:p,sizeTablet:b,align:d,alignTablet:g,alignMobile:m,gap:y,gapTablet:f,gapMobile:h,unmarkedColor:v,color:_,fontFamily:T,fontWeight:C,fontSizeType:S,fontSize:w,fontSizeMobile:k,fontSizeTablet:P,lineHeightType:x,lineHeight:A,lineHeightMobile:G,lineHeightTablet:M,titleColor:R,titleGap:B,titleGapTablet:U,titleGapMobile:E,fontStyle:O,fontTransform:L,fontDecoration:H,letterSpacing:j,letterSpacingTablet:F,letterSpacingMobile:z,letterSpacingType:D,blockTopPadding:N,blockRightPadding:I,blockLeftPadding:V,blockBottomPadding:W,blockTopPaddingTablet:q,blockRightPaddingTablet:Z,blockLeftPaddingTablet:$,blockBottomPaddingTablet:Y,blockTopPaddingMobile:K,blockRightPaddingMobile:J,blockLeftPaddingMobile:X,blockBottomPaddingMobile:Q,blockPaddingUnit:ee,blockPaddingUnitTablet:te,blockPaddingUnitMobile:le,blockTopMargin:ie,blockRightMargin:oe,blockLeftMargin:ne,blockBottomMargin:re,blockTopMarginTablet:se,blockRightMarginTablet:ce,blockLeftMarginTablet:ue,blockBottomMarginTablet:pe,blockTopMarginMobile:be,blockRightMarginMobile:de,blockLeftMarginMobile:ge,blockBottomMarginMobile:me,blockMarginUnit:ye,blockMarginUnitTablet:fe,blockMarginUnitMobile:he,starPosition:ve,starPositionTablet:_e,starPositionMobile:Te,block_id:Ce}=e,Se=Ps(c,"rating",i),we=Ps(B,"titleGap",i),ke=Ps(u,"size",i),Pe=Ps(y,"gap",i);let xe=d;"full"===d&&(xe="left");const Ae=e=>{let t="";switch(e){case"right":t="flex-end";break;case"center":t="center";break;case"full":t="space-between";break;default:t="flex-start"}return t};function Ge(e){switch(Ae(e)){case"flex-end":return"flex-start";case"center":return"center";case"space-between":return"space-between";default:return"flex-end"}}const Me=100*(Se%1).toFixed(1),Re={"margin-top":ns(ie,ye),"margin-right":ns(oe,ye),"margin-bottom":ns(re,ye),"margin-left":ns(ne,ye),"padding-top":ns(N,ee),"padding-right":ns(I,ee),"padding-bottom":ns(W,ee),"padding-left":ns(V,ee)},Be={" .uag-star-rating":{"font-size":ns(ke,"px")}," .uag-star-rating > span":{"margin-right":ns(Pe,"px"),color:v}," p.uag-star-rating__title.block-editor-rich-text__editable":{"font-size":ns(w,S),"font-family":T,"font-style":O,"text-decoration":H,"text-transform":L,"font-weight":C,"line-height":ns(A,x),color:R,"letter-spacing":ns(j,D)},".wp-block-uagb-star-rating ":{"justify-content":Ae(d),"text-align":xe}};let Ue="margin-right";"stack"===n?"before"===ve?(Ue="margin-top",Be[".wp-block-uagb-star-rating"]={"flex-direction":"column-reverse","align-items":Ae(d),...Re}):"after"===ve&&(Ue="margin-bottom",Be[".wp-block-uagb-star-rating"]={"flex-direction":"column","align-items":Ae(d),...Re}):"inline"===n&&("before"===ve?(Ue="margin-left",Be[".wp-block-uagb-star-rating"]={"flex-direction":"row-reverse","justify-content":Ge(d),...Re}):"after"===ve&&(Ue="margin-right",Be[".wp-block-uagb-star-rating"]={"flex-direction":"row","align-items":"center","justify-content":Ae(d),...Re})),Be[" p.uag-star-rating__title.block-editor-rich-text__editable"][Ue]=ns(we,"px"),0!==Me&&(Be[" .uag-star:nth-child("+Math.ceil(Se)+"):before"]={color:_,width:ns(Me,"%"),position:"absolute",content:"'★'",overflow:"hidden"},Be[" .uag-star:nth-child("+Math.ceil(Se)+")"]={position:"relative"}),Be[" .uag-star:nth-child(-n+"+Math.floor(Se)+")"]={color:_};const Ee={"margin-top":ns(se,fe),"margin-right":ns(ce,fe),"margin-bottom":ns(pe,fe),"margin-left":ns(ue,fe),"padding-top":ns(q,te),"padding-right":ns(Z,te),"padding-bottom":ns(Y,te),"padding-left":ns($,te)},Oe={".wp-block-uagb-star-rating ":{"justify-content":Ae(g)}," .uag-star-rating":{"font-size":ns(b,"px")}," .uag-star-rating > span":{"margin-right":ns(f,"px")}," .uag-star-rating__title.block-editor-rich-text__editable":{"font-size":ns(P,S),"line-height":ns(M,x),"letter-spacing":ns(F,D)}};let Le="margin-right";"stack"===r?"before"===_e?(Le="margin-top",Oe[".wp-block-uagb-star-rating "]={"flex-direction":"column-reverse","align-items":Ae(g),...Ee}):"after"===_e&&(Le="margin-bottom",Oe[".wp-block-uagb-star-rating "]={"flex-direction":"column","align-items":Ae(g),...Ee}):"inline"===r&&("before"===_e?(Le="margin-left",Oe[".wp-block-uagb-star-rating "]={"flex-direction":"row-reverse","justify-content":Ge(g),...Ee}):"after"===_e&&(Le="margin-right",Oe[".wp-block-uagb-star-rating "]={"flex-direction":"row","align-items":"center","justify-content":Ae(g),...Ee}),Oe[".wp-block-uagb-star-rating p.block-editor-rich-text__editable.uag-star-rating__title "]={"margin-bottom":0});const He={"margin-top":ns(be,he),"margin-right":ns(de,he),"margin-bottom":ns(me,he),"margin-left":ns(ge,he),"padding-top":ns(K,le),"padding-right":ns(J,le),"padding-bottom":ns(Q,le),"padding-left":ns(X,le)},je={".wp-block-uagb-star-rating ":{"justify-content":Ae(m)}," .uag-star-rating":{"font-size":ns(p,"px")}," .uag-star-rating > span":{"margin-right":ns(h,"px")}," .uag-star-rating__title.block-editor-rich-text__editable":{"font-size":ns(k,S),"line-height":ns(G,x),"letter-spacing":ns(z,D)}};let Fe="margin-right";"stack"===s?"before"===Te?(Fe="margin-top",je[".wp-block-uagb-star-rating "]={"flex-direction":"column-reverse","align-items":Ae(m),...He}):"after"===Te&&(Fe="margin-bottom",je[".wp-block-uagb-star-rating "]={"flex-direction":"column","align-items":Ae(m),...He}):"inline"===s&&("before"===Te?(Fe="margin-left",je[".wp-block-uagb-star-rating "]={"flex-direction":"row-reverse","justify-content":Ge(m),...He}):"after"===Te&&(Fe="margin-right",je[".wp-block-uagb-star-rating "]={"flex-direction":"row","align-items":"center","justify-content":Ae(m),"margin-bottom":0,...He}),je[".wp-block-uagb-star-rating p.block-editor-rich-text__editable.uag-star-rating__title "]={"margin-bottom":0}),Oe[" .uag-star-rating__title.block-editor-rich-text__editable"][Le]=ns(U,"px"),je[" .uag-star-rating__title.block-editor-rich-text__editable"][Fe]=ns(E,"px");const ze=".editor-styles-wrapper .uagb-block-"+Ce;let De=ae(Be,ze);return"tablet"!==o&&"mobile"!==o||(De+=ae(Oe,""+ze,!0,"tablet"),"mobile"===o&&(De+=ae(je,""+ze,!0,"mobile"))),De}(a,0,r,s),[a,s]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:c}),React.createElement(sB,{attributes:a}),t&&React.createElement(tB,e),React.createElement(rB,e))});a(363);var uB=[{attributes:ya,save(e){const{block_id:t,layout:a,title:l,rating:i,range:o}=e.attributes,n=parseInt(o),r=[];for(let e=1;e<=n;e++)r.push(React.createElement("span",{key:e,className:"uag-star"},"★"));return React.createElement("div",{className:Be()(e.className,"uag-star-rating__wrapper","uagb-block-"+t,"uag-star-rating__layout-"+a)},l&&React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uag-star-rating__title"}),React.createElement("div",{className:"uag-star-rating",title:`${i}/${o}`},r))}}];let pB={};pB=Object(j.applyFilters)("uagb/star-rating",ws(pB)),Object(be.registerBlockType)("uagb/star-rating",{...pB,title:Object(r.__)("Star Ratings","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display customizable star ratings on your page.","ultimate-addons-for-gutenberg"),icon:se.star_rating,keywords:[Object(r.__)("rating","ultimate-addons-for-gutenberg"),Object(r.__)("star rating","ultimate-addons-for-gutenberg"),Object(r.__)("review","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:ya,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"star-rating"}):React.createElement(cB,e),save:function(e){const{rating:t,block_id:a,title:l,range:i,displayTitle:o}=e.attributes,n=parseInt(i),r=[];for(let e=1;e<=n;e++)r.push(React.createElement("span",{key:e,className:"uag-star"},"★"));return React.createElement("div",{className:Be()(e.className,"uagb-block-"+a)},o&&l&&React.createElement(ge.RichText.Content,{tagName:"p",value:l,className:"uag-star-rating__title"}),React.createElement("div",{className:"uag-star-rating",title:`${t}/${i}`},r))},deprecated:uB});var bB=Object(B.memo)(e=>{let{attributes:t}=e;const{loadGoogleFonts:a,fontFamily:l,fontWeight:i,headingLoadGoogleFonts:o,headingFontFamily:n,headingFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)});function dB(){return(dB=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var gB,mB=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{align:i,headingAlignment:o,overallAlign:n,disableBullets:s,makeCollapsible:c,initialCollapse:u,icon:p,iconColor:b,bulletColor:d,iconSize:g,smoothScroll:m,smoothScrollOffset:y,smoothScrollOffsetType:f,scrollToTop:h,scrollToTopColor:v,scrollToTopBgColor:_,customWidth:T,widthDesktop:C,widthTablet:S,widthMobile:w,widthTypeMobile:k,widthTypeTablet:P,widthTypeDesktop:x,tColumnsDesktop:A,tColumnsTablet:G,tColumnsMobile:M,backgroundColor:R,linkColor:B,linkHoverColor:U,headingColor:E,paddingTypeMobile:O,paddingTypeTablet:L,paddingTypeDesktop:H,topPadding:j,rightPadding:F,bottomPadding:z,leftPadding:D,topPaddingTablet:N,rightPaddingTablet:I,bottomPaddingTablet:V,leftPaddingTablet:W,topPaddingMobile:q,rightPaddingMobile:Z,bottomPaddingMobile:$,leftPaddingMobile:Y,marginLink:K,paddingLink:J,headingBottom:X,headingBottomTablet:Q,headingBottomMobile:ee,headingBottomType:te,contentPaddingDesktop:ae,contentPaddingTablet:le,contentPaddingMobile:ie,contentPaddingTypeMobile:oe,contentPaddingTypeTablet:ne,contentPaddingTypeDesktop:re,topMargin:se,rightMargin:ce,bottomMargin:ue,leftMargin:pe,topMarginTablet:be,rightMarginTablet:de,bottomMarginTablet:me,leftMarginTablet:ye,topMarginMobile:fe,rightMarginMobile:he,bottomMarginMobile:ve,leftMarginMobile:_e,marginTypeMobile:Te,marginTypeTablet:Se,marginTypeDesktop:we,loadGoogleFonts:ke,fontFamily:Pe,fontWeight:xe,fontSize:Ae,fontSizeType:Ge,fontSizeTablet:Me,fontSizeMobile:Re,lineHeightType:Be,lineHeight:Ue,lineHeightTablet:Oe,lineHeightMobile:He,headingLoadGoogleFonts:je,headingFontFamily:ze,headingFontWeight:De,headingFontSize:Ne,headingFontSizeType:Ie,headingFontSizeTablet:Ve,headingFontSizeMobile:We,headingLineHeightType:qe,headingLineHeight:Ze,headingLineHeightTablet:$e,headingLineHeightMobile:Ye,mappingHeaders:Ke,fontStyle:Je,fontTransform:Xe,fontDecoration:Qe,headingFontStyle:et,headingTransform:tt,headingDecoration:at,headingLetterSpacing:lt,headingLetterSpacingTablet:it,headingLetterSpacingMobile:ot,headingLetterSpacingType:nt,letterSpacing:rt,letterSpacingTablet:st,letterSpacingMobile:ct,letterSpacingType:ut,markerView:pt,separatorStyle:bt,separatorColor:dt,separatorHColor:gt,separatorHeight:mt,separatorHeightType:yt,separatorSpace:ft,separatorSpaceTablet:ht,separatorSpaceMobile:vt,separatorSpaceType:_t,enableCollapsableList:Tt,collapsibleListDepth:Ct,initiallyCollapseList:St}=t,wt="%"===x?100:1e3,kt="%"===P?100:1e3,Pt="%"===k?100:1e3;return React.createElement(React.Fragment,null,!T&&React.createElement(ge.BlockControls,null,React.createElement(ge.AlignmentToolbar,{value:i,onChange:e=>{a({align:e})},controls:["left","center","right"]})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement("h2",null,Object(r.__)("Choose heading tags to generate table","ultimate-addons-for-gutenberg")),Ke.map((e,t)=>React.createElement(Le.PanelRow,{key:t},React.createElement("label",{htmlFor:"ub_toggle_h"+(t+1)},"H"+(t+1)),React.createElement(Le.ToggleControl,{id:"ub_toggle_h"+(t+1),checked:e,onChange:()=>a({mappingHeaders:[...Ke.slice(0,t),!Ke[t],...Ke.slice(t+1)]})})))),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Overall Alignment","ultimate-addons-for-gutenberg"),data:{value:n,label:"overallAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),!c&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Title Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"headingAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("List Alignment","ultimate-addons-for-gutenberg"),data:{value:i,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),!Tt&&React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:A,label:"tColumnsDesktop"},tablet:{value:G,label:"tColumnsTablet"},mobile:{value:M,label:"tColumnsMobile"}},min:1,max:10,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Gap Between Lists","ultimate-addons-for-gutenberg"),data:{desktop:{value:ae,label:"contentPaddingDesktop",unit:{value:re,label:"contentPaddingTypeDesktop"}},tablet:{value:le,label:"contentPaddingTablet",unit:{value:ne,label:"contentPaddingTypeTablet"}},mobile:{value:ie,label:"contentPaddingMobile",unit:{value:oe,label:"contentPaddingTypeMobile"}}},min:0,max:100,limitMin:{px:0,"%":0},limitMax:{px:1500,"%":100},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Custom Width","ultimate-addons-for-gutenberg"),checked:T,onChange:()=>a({customWidth:!T}),help:Object(r.__)("Table's width will be auto if this is kept off.","ultimate-addons-for-gutenberg")}),T&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:C,label:"widthDesktop",unit:{value:x,label:"widthTypeDesktop"},min:0,max:wt},tablet:{value:S,label:"widthTablet",unit:{value:P,label:"widthTypeTablet"},min:0,max:kt},mobile:{value:w,label:"widthMobile",unit:{value:k,label:"widthTypeMobile"},min:0,max:Pt}},min:0,max:100,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Disable Marker","ultimate-addons-for-gutenberg"),checked:s,onChange:()=>a({disableBullets:!s,enableCollapsableList:!1})}),!s&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Marker View","ultimate-addons-for-gutenberg"),data:{value:pt,label:"markerView"},className:"uagb-multi-button-alignment-control",options:[{value:"disc",label:Object(r.__)("Bullets","ultimate-addons-for-gutenberg")},{value:"decimal",label:Object(r.__)("Numbers","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Make Content Collapsible","ultimate-addons-for-gutenberg"),checked:c,onChange:()=>a({makeCollapsible:!c})}),c&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Keep Collapsed Initially","ultimate-addons-for-gutenberg"),checked:u,onChange:()=>a({initialCollapse:!u})}),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:p,onChange:e=>a({icon:e})}),React.createElement(Qa,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:g,data:{value:g,label:"iconSize"},min:0,max:300,displayUnit:!1})),React.createElement(Pi,{label:Object(r.__)("Separator Style","ultimate-addons-for-gutenberg"),data:{value:bt,label:"separatorStyle"},setAttributes:a,help:"double"===bt&&Object(r.__)("Please set the separator thickness to 3px or more to perceive the Double border.","ultimate-addons-for-gutenberg"),options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")}]}),!s&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Make List Collapsible","ultimate-addons-for-gutenberg"),checked:Tt,onChange:()=>{a({enableCollapsableList:!Tt}),a({tColumnsDesktop:1,tColumnsTablet:1,tColumnsMobile:1})},help:Object(r.__)("The collapsable functionality will only work in Front End.","ultimate-addons-for-gutenberg")}),Tt&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Collapsible Level","ultimate-addons-for-gutenberg"),setAttributes:a,value:Ct,data:{value:Ct,label:"collapsibleListDepth"},min:1,max:5,displayUnit:!1,help:Object(r.__)("For example, if the depth is set to 1, only first-level headings that have nestable content will display a collapsible icon. As the depth increases, additional nested levels will become collapsible.","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Initially Collapsed","ultimate-addons-for-gutenberg"),checked:St,onChange:()=>a({initiallyCollapseList:!St}),help:Object(r.__)("The collapsable functionality will only work in Front End.","ultimate-addons-for-gutenberg")}))),React.createElement(Fe,{title:Object(r.__)("Scroll","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Smooth Scroll","ultimate-addons-for-gutenberg"),checked:m,help:Object(r.__)("This will be in action only in Front End.","ultimate-addons-for-gutenberg"),onChange:()=>a({smoothScroll:!m})}),m&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Smooth Scroll Offset","ultimate-addons-for-gutenberg"),setAttributes:a,value:y,data:{value:y,label:"smoothScrollOffset"},min:0,max:1e3,unit:{value:f,label:"smoothScrollOffsetType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Scroll To Top","ultimate-addons-for-gutenberg"),checked:h,help:Object(r.__)("This will add a scroll to top arrow at the bottom of page.","ultimate-addons-for-gutenberg"),onChange:()=>a({scrollToTop:!h})}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Background","ultimate-addons-for-gutenberg"),colorValue:R||"",data:{value:R,label:"backgroundColor"},setAttributes:a}),React.createElement(Pl,dB({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:j,label:"topPadding"},valueRight:{value:F,label:"rightPadding"},valueBottom:{value:z,label:"bottomPadding"},valueLeft:{value:D,label:"leftPadding"},valueTopTablet:{value:N,label:"topPaddingTablet"},valueRightTablet:{value:I,label:"rightPaddingTablet"},valueBottomTablet:{value:V,label:"bottomPaddingTablet"},valueLeftTablet:{value:W,label:"leftPaddingTablet"},valueTopMobile:{value:q,label:"topPaddingMobile"},valueRightMobile:{value:Z,label:"rightPaddingMobile"},valueBottomMobile:{value:$,label:"bottomPaddingMobile"},valueLeftMobile:{value:Y,label:"leftPaddingMobile"},unit:{value:H,label:"paddingTypeDesktop"},mUnit:{value:O,label:"paddingTypeMobile"},tUnit:{value:L,label:"paddingTypeTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:J,label:"paddingLink"}})),React.createElement(Hi,{setAttributes:a,borderStyleLabel:Object(r.__)("Style","ultimate-addons-for-gutenberg"),borderWidthLabel:Object(r.__)("Width","ultimate-addons-for-gutenberg"),borderRadiusLabel:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),prefix:"overall",attributes:t,deviceType:l,disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:E||"",data:{value:E,label:"headingColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:je,label:"headingLoadGoogleFonts"},fontFamily:{value:ze,label:"headingFontFamily"},fontWeight:{value:De,label:"headingFontWeight"},fontStyle:{value:et,label:"headingFontStyle"},transform:{value:tt,label:"headingTransform"},decoration:{value:at,label:"headingDecoration"},fontSizeType:{value:Ie,label:"headingFontSizeType"},fontSize:{value:Ne,label:"headingFontSize"},fontSizeMobile:{value:We,label:"headingFontSizeMobile"},fontSizeTablet:{value:Ve,label:"headingFontSizeTablet"},lineHeightType:{value:qe,label:"headingLineHeightType"},lineHeight:{value:Ze,label:"headingLineHeight"},lineHeightMobile:{value:Ye,label:"headingLineHeightMobile"},lineHeightTablet:{value:$e,label:"headingLineHeightTablet"},letterSpacing:{value:lt,label:"headingLetterSpacing"},letterSpacingTablet:{value:it,label:"headingLetterSpacingTablet"},letterSpacingMobile:{value:ot,label:"headingLetterSpacingMobile"},letterSpacingType:{value:nt,label:"headingLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:X,label:"headingBottom"},tablet:{value:Q,label:"headingBottomTablet"},mobile:{value:ee,label:"headingBottomMobile"}},min:0,max:50,unit:{value:te,label:"headingBottomType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a}),c&&React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"iconColor"},setAttributes:a})),React.createElement(Fe,{title:Object(r.__)("List","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:B||"",data:{value:B,label:"linkColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:U||"",data:{value:U,label:"linkHoverColor"},setAttributes:a}),disableBottomSeparator:!1}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:ke,label:"loadGoogleFonts"},fontFamily:{value:Pe,label:"fontFamily"},fontWeight:{value:xe,label:"fontWeight"},fontStyle:{value:Je,label:"fontStyle"},transform:{value:Xe,label:"fontTransform"},decoration:{value:Qe,label:"fontDecoration"},fontSizeType:{value:Ge,label:"fontSizeType"},fontSize:{value:Ae,label:"fontSize"},fontSizeMobile:{value:Re,label:"fontSizeMobile"},fontSizeTablet:{value:Me,label:"fontSizeTablet"},lineHeightType:{value:Be,label:"lineHeightType"},lineHeight:{value:Ue,label:"lineHeight"},lineHeightMobile:{value:He,label:"lineHeightMobile"},lineHeightTablet:{value:Oe,label:"lineHeightTablet"},letterSpacing:{value:rt,label:"letterSpacing"},letterSpacingTablet:{value:st,label:"letterSpacingTablet"},letterSpacingMobile:{value:ct,label:"letterSpacingMobile"},letterSpacingType:{value:ut,label:"letterSpacingType"}}),React.createElement(Pl,dB({},e,{label:Object(r.__)("Inner Content Spacing","ultimate-addons-for-gutenberg"),valueTop:{value:se,label:"topMargin"},valueRight:{value:ce,label:"rightMargin"},valueBottom:{value:ue,label:"bottomMargin"},valueLeft:{value:pe,label:"leftMargin"},valueTopTablet:{value:be,label:"topMarginTablet"},valueRightTablet:{value:de,label:"rightMarginTablet"},valueBottomTablet:{value:me,label:"bottomMarginTablet"},valueLeftTablet:{value:ye,label:"leftMarginTablet"},valueTopMobile:{value:fe,label:"topMarginMobile"},valueRightMobile:{value:he,label:"rightMarginMobile"},valueBottomMobile:{value:ve,label:"bottomMarginMobile"},valueLeftMobile:{value:_e,label:"leftMarginMobile"},unit:{value:we,label:"marginTypeDesktop"},mUnit:{value:Te,label:"marginTypeMobile"},tUnit:{value:Se,label:"marginTypeTablet"},deviceType:l,attributes:t,setAttributes:a,link:{value:K,label:"marginLink"}})),!s&&React.createElement(hl,{label:Object(r.__)("Marker Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"bulletColor"},setAttributes:a})),h&&React.createElement(Fe,{title:Object(r.__)("Scroll To Top","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:v||"",data:{value:v,label:"scrollToTopColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:_||"",data:{value:_,label:"scrollToTopBgColor"},setAttributes:a}))),"none"!==bt&&(()=>{const e=[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}];return React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Qa,{label:Object(r.__)("Thickness","ultimate-addons-for-gutenberg"),setAttributes:a,value:mt,data:{value:mt,label:"separatorHeight"},min:0,max:20,unit:{value:yt,label:"separatorHeightType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),React.createElement(Ui,{tabs:e,normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:dt||"",data:{value:dt,label:"separatorColor"},setAttributes:a}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:gt||"",data:{value:gt,label:"separatorHColor"},setAttributes:a}),active:"",disableBottomSeparator:!1}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ft,label:"separatorSpace"},tablet:{value:ht,label:"separatorSpaceTablet"},mobile:{value:vt,label:"separatorSpaceMobile"}},min:0,max:200,unit:{value:_t,label:"separatorSpaceType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:a}))})()),React.createElement(il,dB({},rl,{parentProps:e})))))}),yB=function(e){const{mappingHeaders:t,headers:a}=e;return"undefined"!==t&&a&&a.length>0&&a.filter(e=>t[e.tag-1]).length>0?React.createElement("div",{className:"uagb-toc__list-wrap"},(e=>{let t="",a="",l="",i="";const o="</li></ul>";let n=0;const r={1:0,2:0,3:0,4:0,5:0,6:0};return e.forEach((e,s)=>{const c=e.tag,u=e.content;if(0===s&&(l=c),c<l)return;if((""===a||c<a)&&(a=c),""!==t)if(c>t)i+='<ul class="uagb-toc__list">',n++,r[c]=n;else if(c===t&&c!==a)i+='<li class="uagb-toc__list">',r[c]=n;else if(c<t){const e=Math.abs(n-r[c]);c>a?(i+=o.repeat(e),n=Math.abs(n-e)):c===a&&(i+=o.repeat(e),i+="</li>")}const p=document.querySelector("iframe[name='editor-canvas']");i+=p?'<li class="uagb-toc__list"><a href="JavaScript:void(0);">'+u+"</a>":'<li class="uagb-toc__list"><a href="#">'+u+"</a>",t=c}),i+=o.repeat(t),React.createElement("ol",{className:"uagb-toc__list",dangerouslySetInnerHTML:{__html:i}})})((()=>{const e=[];return a.forEach(a=>{t[a.tag-1]&&e.push(a)}),e})())):React.createElement("p",{className:"uagb_table-of-contents-placeholder"},Object(r.__)("Add a header to begin generating the table of contents","ultimate-addons-for-gutenberg"))},fB=function(e){const{mappingHeaders:t,headers:a,collapsibleListDepth:l}=e;return"undefined"!==t&&a&&a.length>0&&a.filter(e=>t[e.tag-1]).length>0?React.createElement("div",{className:"uagb-toc__list-wrap"},(e=>{let t="",a="",i="",o="",n=0;const r={1:0,2:0,3:0,4:0,5:0,6:0},{hasChildren:s,depthMapping:c}=(e=>{const t=new Array(e.length).fill(!1),a=new Array(e.length).fill(0),l=[];return e.forEach((i,o)=>{const n=i.tag;for(;l.length&&l[l.length-1].level>=n;)l.pop();a[o]=l.length+1,l.push({level:n,index:o});for(let a=o+1;a<e.length;a++){if(e[a].tag>n){t[o]=!0;break}if(e[a].tag<=n)break}}),{hasChildren:t,depthMapping:a}})(e);return e.forEach((e,u)=>{const p=e.tag,b=e.content;if(0===u&&(i=p),p<i)return;if((""===a||p<a)&&(a=p),""!==t)if(p>t)o+='<ul class="uagb-toc__list">',n++,r[p]=n;else if(p===t&&p!==a)o+='<li class="uagb-toc__list">',r[p]=n;else if(p<t){const e=Math.abs(n-r[p]);p>a?(o+="</li></ul>".repeat(e),n=Math.abs(n-e)):p===a&&(o+="</li></ul>".repeat(e),o+="</li>")}const d=document.querySelector("iframe[name='editor-canvas']"),g=s[u]&&c[u]<=l?"uagb-toc__list--expandable":"",m=s[u]&&c[u]<=l?'<span class="list-open" role="button" tabindex="0" aria-expanded="true"></span>':"";o+=d?`<li class="uagb-toc__list ${g}">${m}<a href="JavaScript:void(0);">${b.trim()}</a></li>`:`<li class="uagb-toc__list ${g}">${m}<a href="#">${b.trim()}</a></li>`,t=p}),o+="</li></ul>".repeat(n),React.createElement("ol",{className:"uagb-toc__list",dangerouslySetInnerHTML:{__html:o}})})((()=>{const e=[];return a.forEach(a=>{t[a.tag-1]&&e.push(a)}),e})())):React.createElement("p",{className:"uagb_table-of-contents-placeholder"},Object(r.__)("Add a header to begin generating the table of contents","ultimate-addons-for-gutenberg"))},hB=a(143),vB=0,_B={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},TB={};TB.locals=hB.a.locals||{},TB.use=function(){return vB++||(gB=ke()(hB.a,_B)),TB},TB.unuse=function(){vB>0&&!--vB&&(gB(),gB=null)};var CB=TB,SB=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(CB.use(),()=>{CB.unuse()}),[]);const{headers:t}=e,{attributes:a,setAttributes:l,className:i,deviceType:o,name:n}=e,s=n.replace("uagb/",""),{align:c,makeCollapsible:u,initialCollapse:p,icon:b,tColumnsDesktop:d,mappingHeaders:g,headingTitle:m,separatorStyle:y,block_id:f,collapsibleListDepth:h,enableCollapsableList:v,fontSize:_,fontSizeTablet:T,fontSizeMobile:C,markerView:S}=a;Object(B.useEffect)(()=>{if(UAGBTableOfContents){const e=".uagb-block-"+f;UAGBTableOfContents.init(e,a)}},[]);const w=Object(B.useRef)();Object(B.useEffect)(()=>{w.current&&!u&&w.current.classList.contains("uagb-toc__collapse")&&(w.current.classList.remove("uagb-toc__collapse"),UAGBTableOfContents._slideDown(w.current.querySelector(".uagb-toc__list-wrap"),500))},[u]),Object(B.useEffect)(()=>{var e;const t=".uagb-block-"+f,l=UAGBTableOfContents._getDocumentElement().querySelector(t);null!==(e=UAGBTableOfContents)&&void 0!==e&&e._setCollapseIconMargin&&v&&(l.style.transition="opacity 200ms",l.style.opacity="0.25",UAGBTableOfContents._setCollapseIconMargin(t,a)),l.style.opacity=""},[_,T,C,S,t.length,v,o]);let k="";return u&&b&&(k=Ce(b,l)),React.createElement("div",{className:Z([i,"uagb-toc__align-"+c,"uagb-toc__columns-"+Ps(d,"tColumnsDesktop",s),u&&p?"uagb-toc__collapse":"","uagb-editor-preview-mode-"+o.toLowerCase(),"uagb-block-"+f,v&&"uagb-toc__collapse--list"]),ref:w},React.createElement("div",{className:"uagb-toc__wrap"},React.createElement("div",{className:"uagb-toc__title"},React.createElement(ge.RichText,{placeholder:Object(r.__)("Table Of Contents","ultimate-addons-for-gutenberg"),value:m,onChange:e=>l({headingTitle:e}),multiline:!1,onRemove:()=>e.onReplace([])}),k),"none"!==y&&React.createElement("div",{className:"uagb-toc__separator"}),v?React.createElement(fB,{mappingHeaders:g,headers:t,collapsibleListDepth:h}):React.createElement(yB,{mappingHeaders:g,headers:t})))});function wB(){return(wB=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var kB=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,name:i,clientId:o,attributes:{scrollToTop:r,UAGHideDesktop:s,UAGHideTab:c,UAGHideMob:u,borderStyle:p,borderWidth:b,borderRadius:d,borderColor:g,borderHoverColor:m},deviceType:y}=e;Object(B.useEffect)(()=>{if(null===document.querySelector(".uagb-toc__scroll-top")){const e=document.createElement("div");e.classList.add("uagb-toc__scroll-top"),e.innerHTML='<svg xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"><path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/></svg>',document.body.appendChild(e)}e.attributes.heading&&""!==e.attributes.heading&&a({headingTitle:e.attributes.heading}),(b||d||g||m||p)&&ue("overall",{label:"borderWidth",value:b},{label:"borderRadius",value:d},{label:"borderColor",value:g},{label:"borderHoverColor",value:m},{label:"borderStyle",value:p},a,l)},[]),Object(B.useEffect)(()=>{he(e)},[s,c,u,y]),Object(B.useEffect)(()=>{Bs()},[y]);const f=[];Object(n.useSelect)(e=>{let t=0,a=[];const l=document.querySelector("iframe[name='editor-canvas']");let i;var o,n;l?(i=l.contentDocument.getElementsByClassName("is-root-container"),a=null===(o=i[0])||void 0===o?void 0:o.querySelectorAll("h1, h2, h3, h4, h5, h6")):a=null===(n=document.body.getElementsByClassName("is-root-container")[0])||void 0===n?void 0:n.querySelectorAll("h1, h2, h3, h4, h5, h6");const r=document.querySelectorAll(".uagb-toc-hide-heading");return r&&r.forEach((function(e){const t=e.querySelectorAll("h1, h2, h3, h4, h5, h6");t&&t.forEach((function(e){e.classList.add("uagb-toc-hide-heading")}))})),a&&a.forEach((function(e,a){const l=e;let i;i=!!e.className.includes("uagb-toc-hide-heading");const o=(e=>{if(!e)return e;const t=e.toString().toLowerCase().replace(/\…+/g,"").replace(/&(amp;)/g,"").replace(/&(mdash;)/g,"").replace(/\u2013|\u2014/g,"").replace(/[&]nbsp[;]/gi,"-").replace(/\s+/g,"-").replace(/[&\/\\#,^!+()$~%.\[\]'":*?<>{}@‘’”“|]/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"");return decodeURI(encodeURIComponent(t))})(l.textContent),n=l.nodeName.replace(/^H+/,""),r=l.textContent;t=parseInt(n),i||f.push({tag:t,text:r,link:o,content:l.textContent})})),f&&f.forEach((function(e,t){e.level=0;for(let a=t-1;a>=0;a--){const t=f[a];if(t.tag<=e.tag){e.level=t.level,t.tag<e.tag&&e.level++;break}}})),{headers:f}}),scrollElement=document.querySelector(".uagb-toc__scroll-top"),null!==scrollElement&&(r?scrollElement.classList.add("uagb-toc__show-scroll"):scrollElement.classList.remove("uagb-toc__show-scroll"));const h=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,customWidth:r,makeCollapsible:s,widthDesktop:c,widthTablet:u,widthMobile:p,widthTypeTablet:b,widthTypeMobile:d,widthTypeDesktop:g,tColumnsDesktop:m,tColumnsTablet:y,tColumnsMobile:f,iconColor:h,bulletColor:v,iconSize:_,align:T,overallAlign:C,backgroundColor:S,linkColor:w,linkHoverColor:k,scrollToTopColor:P,scrollToTopBgColor:x,headingColor:A,marginTypeDesktop:G,marginTypeMobile:M,topMargin:R,rightMargin:B,bottomMargin:U,leftMargin:E,topMarginTablet:O,rightMarginTablet:L,bottomMarginTablet:H,leftMarginTablet:j,topMarginMobile:F,rightMarginMobile:z,bottomMarginMobile:D,leftMarginMobile:N,marginTypeTablet:I,vPaddingDesktop:V,hPaddingDesktop:W,vPaddingTablet:q,hPaddingTablet:Z,vPaddingMobile:$,hPaddingMobile:Y,topPadding:K,rightPadding:J,bottomPadding:X,leftPadding:Q,topPaddingTablet:ee,rightPaddingTablet:te,bottomPaddingTablet:le,leftPaddingTablet:ie,topPaddingMobile:oe,rightPaddingMobile:ne,bottomPaddingMobile:re,leftPaddingMobile:se,paddingTypeMobile:ce,paddingTypeTablet:ue,paddingTypeDesktop:pe,headingBottom:be,headingBottomTablet:de,headingBottomMobile:ge,headingBottomType:me,contentPaddingDesktop:ye,contentPaddingTablet:fe,contentPaddingMobile:he,contentPaddingTypeDesktop:ve,contentPaddingTypeTablet:_e,contentPaddingTypeMobile:Te,fontFamily:Ce,fontWeight:Se,fontSize:we,fontSizeType:ke,fontSizeTablet:Pe,fontSizeMobile:xe,lineHeightType:Ae,lineHeight:Ge,lineHeightTablet:Me,lineHeightMobile:Re,headingFontFamily:Be,headingFontWeight:Ue,headingFontSize:Ee,headingFontSizeType:Oe,headingFontSizeTablet:Le,headingFontSizeMobile:He,headingLineHeightType:je,headingLineHeight:Fe,headingLineHeightTablet:ze,headingLineHeightMobile:De,disableBullets:Ne,overallBorderHColor:Ie,fontStyle:Ve,fontTransform:We,fontDecoration:qe,headingFontStyle:Ze,headingTransform:$e,headingDecoration:Ye,headingAlignment:Ke,headingLetterSpacing:Je,headingLetterSpacingTablet:Xe,headingLetterSpacingMobile:Qe,headingLetterSpacingType:et,letterSpacing:tt,letterSpacingTablet:at,letterSpacingMobile:lt,letterSpacingType:it,markerView:ot,separatorStyle:nt,separatorHeight:rt,separatorHeightType:st,separatorSpace:ct,separatorSpaceType:ut,separatorColor:pt,separatorHColor:bt,separatorSpaceTablet:dt,separatorSpaceMobile:gt}=e,mt=Ps(m,"tColumnsDesktop",i),yt=Ps(y,"tColumnsTablet",i),ft=Ps(f,"tColumnsMobile",i),ht=Ps(c,"widthDesktop",i);let vt={},_t={},Tt={};const Ct=rs(e,"overall"),St=rs(e,"overall","tablet"),wt=rs(e,"overall","mobile"),kt="number"==typeof K?K:V,Pt="number"==typeof X?X:V,xt="number"==typeof Q?Q:W,At="number"==typeof J?J:W,Gt="number"==typeof ee?ee:q,Mt="number"==typeof le?le:q,Rt="number"==typeof ie?ie:Z,Bt="number"==typeof te?te:Z,Ut="number"==typeof oe?oe:$,Et="number"==typeof re?re:$,Ot="number"==typeof se?se:Y,Lt="number"==typeof ne?ne:Y;if(vt={".wp-block-uagb-table-of-contents":{"text-align":C}," .uagb-toc__list-wrap ul li":{"font-size":ns(we,ke)}," .uagb-toc__list-wrap ol li":{"font-size":ns(we,ke)},".uagb-toc__collapse--list .uagb-toc__list-wrap ol ul":{"font-size":ns(we,ke)}," .uagb-toc__list-wrap li a":{"font-size":ns(we,ke),"line-height":ns(Ge,Ae),"font-family":Ce,"font-style":Ve,"text-decoration":qe,"text-transform":We,"font-weight":Se,color:w,"letter-spacing":ns(tt,it)}," .uagb-toc__title-wrap":{"justify-content":T,"margin-bottom":ns(be,me)}," .uagb-toc__title":{"justify-content":Ke,"margin-bottom":ns(be,me),"font-size":ns(Ee,Oe),"line-height":ns(Fe,je),"font-family":Be,"font-style":Ze,"text-decoration":Ye,"text-transform":$e,"font-weight":Ue,color:A,"letter-spacing":ns(Je,et)}," .uagb-toc__list-wrap ol li a:hover":{color:k}," .uagb-toc__wrap":{...Ct,"padding-left":ns(xt,pe),"padding-right":ns(At,pe),"padding-top":ns(kt,pe),"padding-bottom":ns(Pt,pe),background:S}," .uagb-toc__wrap:hover":{"border-color":Ie}," .uagb-toc__list-wrap ol.uagb-toc__list:first-child":{"margin-left":ns(E,G),"margin-right":ns(B,G),"margin-top":ns(R,G),"margin-bottom":ns(U,G)}," .uagb-toc__list-wrap > ol.uagb-toc__list li":{color:v}," .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child":{"padding-bottom":0}," .uagb-toc__list-wrap ol.uagb-toc__list > li":{"list-style-type":Ne?"none !important":ot+" !important","padding-top":"calc( "+ns(ye,ve)+" / 2 )","padding-bottom":"calc( "+ns(ye,ve)+" / 2 )"}," .uagb-toc__list-wrap ul.uagb-toc__list > li":{"list-style-type":Ne?"none !important":ot+" !important","padding-top":"calc( "+ns(ye,ve)+" / 2 )","padding-bottom":"calc( "+ns(ye,ve)+" / 2 )"}," .uag-toc__collapsible-wrap svg":{width:ns(_,"px"),height:ns(_,"px"),fill:h}," svg":{width:ns(_,"px"),height:ns(_,"px"),fill:h}},vt[" .uagb-toc__list-wrap"]={"column-count":mt,overflow:"hidden","text-align":T},r&&(vt[" .uagb-toc__wrap"].width=ns(ht,g)),r&&s&&(vt[" .uagb-toc__title"]["justify-content"]="space-between"),r&&s&&(vt[" .uagb-toc__title"].cursor="pointer"),Ne&&(vt[".wp-block-uagb-table-of-contents ol.uagb-toc__list>li"]={"list-style-type":"none !important"},vt[" .uagb-toc__list"]={"list-style-type":"none  !important"},vt[" .uagb-toc__list .uagb-toc__list"]={"list-style-type":"none !important"}),_t={" .uagb-toc__list-wrap ul li":{"font-size":ns(Pe,ke)}," .uagb-toc__list-wrap ol li":{"font-size":ns(Pe,ke)},".uagb-toc__collapse--list .uagb-toc__list-wrap ol ul":{"font-size":ns(Pe,ke)}," .uagb-toc__list-wrap ol li a":{"font-size":ns(Pe,ke),"line-height":ns(Me,Ae),"letter-spacing":ns(at,it)}," .uagb-toc__title":{"font-size":ns(Le,Oe),"line-height":ns(ze,je),"margin-bottom":ns(de,me),"letter-spacing":ns(Xe,et)}," .uagb-toc__wrap":{...St,width:ns(u,b),"padding-left":ns(Rt,ue),"padding-right":ns(Bt,ue),"padding-top":ns(Gt,ue),"padding-bottom":ns(Mt,ue)}," .uagb-toc__list-wrap ul.uagb-toc__list:first-child":{"margin-left":ns(j,I),"margin-right":ns(L,I),"margin-top":ns(O,I),"margin-bottom":ns(H,I)}," .uagb-toc__list-wrap":{"column-count":yt,overflow:"hidden","text-align":T}," .uagb-toc__list-wrap > ol.uagb-toc__list > li:first-child":{"padding-top":ns(fe,_e)}," .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child":{"padding-bottom":ns(fe,_e)}," .uagb-toc__list-wrap ol.uagb-toc__list > li":{"padding-top":"calc( "+ns(fe,_e)+" / 2 )","padding-bottom":"calc( "+ns(fe,_e)+" / 2 )"}," .uagb-toc__list-wrap ul.uagb-toc__list > li":{"padding-top":"calc( "+ns(fe,_e)+" / 2 )","padding-bottom":"calc( "+ns(fe,_e)+" / 2 )"}},Tt={" .uagb-toc__list-wrap ul li":{"font-size":ns(xe,ke)}," .uagb-toc__list-wrap ol li":{"font-size":ns(xe,ke)},".uagb-toc__collapse--list .uagb-toc__list-wrap ol ul":{"font-size":ns(xe,ke)}," .uagb-toc__list-wrap ol li a":{"font-size":ns(xe,ke),"line-height":ns(Re,Ae),"letter-spacing":ns(lt,it)}," .uagb-toc__title":{"font-size":ns(He,Oe),"line-height":ns(De,je),"margin-bottom":ns(ge,me),"letter-spacing":ns(Qe,et)}," .uagb-toc__wrap":{...wt,width:ns(p,d),"padding-left":ns(Ot,ce),"padding-right":ns(Lt,ce),"padding-top":ns(Ut,ce),"padding-bottom":ns(Et,ce)}," .uagb-toc__list-wrap ul.uagb-toc__list:first-child":{"margin-left":ns(N,M),"margin-right":ns(z,M),"margin-top":ns(F,M),"margin-bottom":ns(D,M)}," .uagb-toc__list-wrap":{"column-count":ft,overflow:"hidden","text-align":T}," .uagb-toc__list-wrap > ol.uagb-toc__list > li:first-child":{"padding-top":ns(he,Te)}," .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child":{"padding-bottom":ns(he,Te)}," .uagb-toc__list-wrap ol.uagb-toc__list > li":{"padding-top":"calc( "+ns(he,Te)+" / 2 )","padding-bottom":"calc( "+ns(he,Te)+" / 2 )"}," .uagb-toc__list-wrap ul.uagb-toc__list > li":{"padding-top":"calc( "+ns(he,Te)+" / 2 )","padding-bottom":"calc( "+ns(he,Te)+" / 2 )"}},"none"!==nt){const e=ns(xt,pe),t=ns(At,pe),a=ns(Rt,ue),l=ns(Bt,ue),o=ns(Ot,ce),n=ns(Lt,ce);vt[" .uagb-toc__separator"]={"border-top-style":nt,"border-top-width":ns(Ps(rt,"separatorHeight",i),st),width:"calc( 100% + "+e+" + "+t+")","margin-left":"-"+e,"border-color":pt,"margin-bottom":ns(Ps(ct,"separatorSpace",i),ut)},vt[" .uagb-toc__wrap:hover .uagb-toc__separator"]={"border-color":bt},_t[" .uagb-toc__separator"]={width:"calc( 100% + "+a+" + "+l+")","margin-left":"-"+a,"margin-bottom":ns(Ps(dt,"separatorSpaceTablet",i),ut)},Tt[" .uagb-toc__separator"]={width:"calc( 100% + "+o+" + "+n+")","margin-left":"-"+o,"margin-bottom":ns(Ps(gt,"separatorSpaceMobile",i),ut)}}const Ht=".block-editor-block-list__block .uagb-block-"+n;let jt=ae(vt,Ht);return"tablet"!==o&&"mobile"!==o||(jt+=ae(_t,""+Ht,!0,"tablet"),"mobile"===o&&(jt+=ae(Tt,""+Ht,!0,"mobile"))),""!==P&&(jt+=".uagb-toc__scroll-top { color: "+P+"; }"),""!==x&&(jt+=".block-editor-page .uagb-toc__scroll-top.uagb-toc__show-scroll.uagb-toc__show-scroll { background: "+x+"; }"),jt}(l,0,i,y),[l,y]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:h}),React.createElement(bB,{attributes:l}),t&&React.createElement(mB,e),React.createElement(SB,wB({},e,{headers:f})))});class PB extends B.Component{constructor(e){super(e),this.state={headers:e.headers,deregister:null}}componentDidMount(){const e=(t,a)=>(t.map(t=>{const l=t.innerBlocks;l.length>0?l.forEach((function(t){t.innerBlocks.length>0?e(t.innerBlocks,a):a.push(t.attributes)})):("core/heading"===t.name&&a.push(t.attributes),"uagb/advanced-heading"===t.name&&a.push(t.attributes))}),a),t=()=>{const t=e(Object(n.select)("core/block-editor").getBlocks(),[]);void 0!==t&&t.forEach((e,t)=>{const a=void 0===e.content||""===e.content?"headingId":"anchor",l=void 0===e[a]||""===e[a],i=void 0===e.content||""===e.content?"headingTitle":"content",o=void 0===e[i]||""===e[i],n=!l&&0===e[a].indexOf(t+"-");o||!l&&!n||(e[a]=t+"-"+strip_tags(e[i]).toString().toLowerCase().replace(/( |<.+?>|&nbsp;)/g,"-"),e[a]=e[a].replace(/[^\w\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\s-]/g,""))}),this.setState({headers:t})};t();const a=Object(n.subscribe)(()=>{t()});this.setState({deregister:a})}componentWillUnmount(){this.state.deregister()}componentDidUpdate(e,t){JSON.stringify(this.state.headers)!==JSON.stringify(t.headers)&&this.props.blockProp.setAttributes({headerLinks:JSON.stringify(this.state.headers)})}render(){const{mappingHeaders:e,blockProp:t,style:a}=this.props,{headers:l}=this.state,i=e=>{const t=[];return e.forEach(e=>{Array.isArray(e)?t.push(i(e)):void 0===e.content||""===e.content?e.headingTitle&&t.push(React.createElement("li",{key:e.headingId},React.createElement("a",{href:"#"+e.headingId,dangerouslySetInnerHTML:{__html:e.headingTitle.replace(/(<a.+?>|<\/a>)/g,"")}}))):e.content&&t.push(React.createElement("li",{key:"#"+e.anchor},React.createElement("a",{href:"#"+e.anchor,dangerouslySetInnerHTML:{__html:e.content.replace(/(<a.+?>|<\/a>)/g,"")}})))}),React.createElement("ul",{className:"uagb-toc__list"},t)};return void 0!==typeof e&&l.length>0&&l.filter(t=>e[t.level-1]).length>0?React.createElement("div",{style:a,className:"uagb-toc__list-wrap"},i((t=>{const a=[];for(t.filter(t=>e[t.level-1]).forEach(e=>{let t=a.length-1;if(0===a.length||a[t][0].level<e.level)a.push([e]);else if(a[t][0].level===e.level)a[t].push(e);else{for(;a[t][0].level>e.level&&a.length>1;)a[a.length-2].push(a.pop()),t=a.length-1;a[t][0].level===e.level&&a[t].push(e)}});a.length>1&&a[a.length-1][0].level>a[a.length-2][0].level;)a[a.length-2].push(a.pop());return a[0]})(l))):t&&React.createElement("p",{className:"ub_table-of-contents-placeholder"},Object(r.__)("Add a header to begin generating the table of contents"))}}var xB=PB;class AB extends B.Component{render(){const{mappingHeaders:e,headers:t}=this.props,a=e=>{const t=[];return e.forEach(l=>{Array.isArray(l)?t.push(a(l)):t.push(React.createElement("li",{key:e.indexOf(l)},React.createElement("a",{href:"#"+l.link,dangerouslySetInnerHTML:{__html:l.text}})))}),React.createElement("ul",{className:"uagb-toc__list"},t)};return void 0!==typeof e&&t&&t.length>0&&t.filter(t=>e[t.tag-1]).length>0?React.createElement("div",{className:"uagb-toc__list-wrap","data-headers":JSON.stringify(t)},a((()=>{const a=[];return t.forEach(t=>{e[t.tag-1]&&a.push(t)}),(t=>{const a=[];for(t.filter(t=>e[t.tag-1]).forEach(e=>{let t=a.length-1;if(0===a.length||a[t][0].tag<e.tag)a.push([e]);else if(a[t][0].tag===e.tag)a[t].push(e);else{for(;a[t][0].tag>e.tag&&a.length>1;)a[a.length-2].push(a.pop()),t=a.length-1;a[t][0].tag===e.tag&&a[t].push(e)}});a.length>1&&a[a.length-1][0].tag>a[a.length-2][0].tag;)a[a.length-2].push(a.pop());return a[0]})(a)})())):React.createElement("p",{className:"uagb_table-of-contents-placeholder"},Object(r.__)("Add a header to begin generating the table of contents"))}}var GB=AB;class MB extends B.Component{render(){const{mappingHeaders:e,headers:t}=this.props;let a=0,l=0;const i=e=>{const t=[];if("undefined"!==e&&e&&e.length>0)return e.forEach(e=>{Array.isArray(e)?t.push(i(e)):(t.push(React.createElement("li",{key:a},React.createElement("a",{href:"#"+e.link,dangerouslySetInnerHTML:{__html:e.text}}))),a++)}),l++,React.createElement("ul",{key:a+"-"+l,className:"uagb-toc__list"},t)};return"undefined"!=e&&t&&t.length>0&&t.filter(t=>e[t.tag-1]).length>0?React.createElement("div",{className:"uagb-toc__list-wrap"},i((a=>{const l=[];return t.forEach((t,a)=>{e[t.tag-1]&&l.push(t)}),(t=>{const a=[];for(t.filter(t=>e[t.tag-1]).forEach(e=>{let t=a.length-1;if(0===a.length||a[t][0].tag<e.tag)a.push([e]);else if(a[t][0].tag===e.tag)a[t].push(e);else{for(;a[t][0].tag>e.tag&&a.length>1;)a[a.length-2].push(a.pop()),t=a.length-1;a[t][0].tag===e.tag&&a[t].push(e)}});a.length>1&&a[a.length-1][0].tag>a[a.length-2][0].tag;)a[a.length-2].push(a.pop());return a[0]})(l)})())):React.createElement("p",{className:"uagb_table-of-contents-placeholder"},Object(r.__)("Add a header to begin generating the table of contents"))}}var RB=MB,BB=[{attributes:It,save:function(e){const{className:t}=e,{align:a,block_id:l,tColumns:i,heading:o,headerLinks:n,mappingHeaders:r,scrollToTop:s}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-toc__align-"+a,"uagb-toc__columns-"+i),id:"uagb-toc-"+l},React.createElement("div",{className:"uagb-toc__wrap"},React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-toc__title"}),React.createElement(xB,{align:a,numcolumns:i,scrollToTop:s,mappingHeaders:r,headers:n&&JSON.parse(n),blockProp:e})))}},{attributes:It,save:function(e){const{className:t}=e,{align:a,block_id:l,tColumns:i,heading:o,headerLinks:n,mappingHeaders:r,scrollToTop:s,smoothScroll:c,makeCollapsible:u,icon:p,initialCollapse:b,smoothScrollOffset:d,smoothScrollDelay:g}=e.attributes;let m="";return u&&p&&(m=React.createElement("span",{className:"uag-toc__collapsible-wrap"},Wm(p))),React.createElement("div",{className:Be()(t,"uagb-toc__align-"+a,"uagb-toc__columns-"+i,b?"uagb-toc__collapse":""),"data-scroll":c,"data-offset":d,"data-delay":g,id:"uagb-toc-"+l},React.createElement("div",{className:"uagb-toc__wrap"},React.createElement("div",{className:"uagb-toc__title-wrap"},React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-toc__title"}),m),React.createElement(xB,{align:a,numcolumns:i,scrollToTop:s,mappingHeaders:r,headers:n&&JSON.parse(n),blockProp:e})))}},{attributes:It,save:function(e){const{className:t}=e,{align:a,block_id:l,tColumns:i,heading:o,headerLinks:n,mappingHeaders:r,smoothScroll:s,makeCollapsible:c,icon:u,initialCollapse:p,smoothScrollOffset:b,smoothScrollDelay:d}=e.attributes;let g="";return c&&u&&(g=React.createElement("span",{className:"uag-toc__collapsible-wrap"},Wm(u))),React.createElement("div",{className:Be()(t,"uagb-toc__align-"+a,"uagb-toc__columns-"+i,p?"uagb-toc__collapse":"","uagb-block-"+l),"data-scroll":s,"data-offset":b,"data-delay":d},React.createElement("div",{className:"uagb-toc__wrap"},React.createElement("div",{className:"uagb-toc__title-wrap"},React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-toc__title"}),g),React.createElement(GB,{mappingHeaders:r,headers:n&&JSON.parse(n)})))}},{attributes:It,save:function(e){const{className:t}=e,{align:a,block_id:l,tColumns:i,heading:o,headerLinks:n,mappingHeaders:r,smoothScroll:s,makeCollapsible:c,icon:u,initialCollapse:p,smoothScrollOffset:b,smoothScrollDelay:d}=e.attributes;let g="";return c&&u&&(g=React.createElement("span",{className:"uag-toc__collapsible-wrap"},Wm(u))),React.createElement("div",{className:Be()(t,"uagb-toc__align-"+a,"uagb-toc__columns-"+i,p?"uagb-toc__collapse":"","uagb-block-"+l),"data-scroll":s,"data-offset":b,"data-delay":d},React.createElement("div",{className:"uagb-toc__wrap"},React.createElement("div",{className:"uagb-toc__title-wrap"},React.createElement(ge.RichText.Content,{value:o,tagName:"div",className:"uagb-toc__title"}),g),React.createElement(RB,{mappingHeaders:r,headers:n&&JSON.parse(n)})))}}];a(364);let UB={};UB=Object(j.applyFilters)("uagb/table-of-contents",ws(UB)),Object(be.registerBlockType)("uagb/table-of-contents",{...UB,title:Object(r.__)("Table Of Contents","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a table of contents to allow page navigation.","ultimate-addons-for-gutenberg"),icon:se.table_of_contents,keywords:[Object(r.__)("table of contents","ultimate-addons-for-gutenberg"),Object(r.__)("table","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:It,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"table-of-content"}):React.createElement(kB,e),save:()=>null,deprecated:BB}),a(365);const EB=[{defaultAttributes:ga},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"tabsStyleD",value:"hstyle2"},{label:"tabBodyTopPadding",value:15},{label:"tabBodyRightPadding",value:15},{label:"tabBodyBottomPadding",value:15},{label:"tabBodyLeftPadding",value:0},{label:"tabBorderTopLeftRadius",value:0},{label:"tabBorderTopRightRadius",value:0},{label:"tabBorderBottomLeftRadius",value:0},{label:"tabBorderBottomRightRadius",value:0},{label:"tabBorderStyle",value:"none"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 138C58 136.343 59.138 135 60.5418 135H266.259C267.663 135 268.801 136.343 268.801 138C268.801 139.657 267.663 141 266.259 141H60.5418C59.138 141 58 139.657 58 138Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 159C58 157.343 59.1317 156 60.5276 156H214.24C215.636 156 216.768 157.343 216.768 159C216.768 160.657 215.636 162 214.24 162H60.5276C59.1317 162 58 160.657 58 159Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 113C58 111.343 59.0884 110 60.4311 110H86.5689C87.9116 110 89 111.343 89 113C89 114.657 87.9116 116 86.5689 116H60.4311C59.0884 116 58 114.657 58 113Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M99 113C99 111.343 100.088 110 101.431 110H127.569C128.912 110 130 111.343 130 113C130 114.657 128.912 116 127.569 116H101.431C100.088 116 99 114.657 99 113Z" fill="#B6B6B6"/> <path d="M140 112.75H151.5" stroke="#B6B6B6" stroke-width="3" fill="none"/> <path d="M145.75 118.5L145.75 107" stroke="#B6B6B6" stroke-width="3" fill="none"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"tabsStyleD",value:"hstyle3"},{label:"titleAlign",value:"left"},{label:"tabBodyTopPadding",value:""},{label:"tabBodyRightPadding",value:""},{label:"tabBodyBottomPadding",value:""},{label:"tabBodyLeftPadding",value:""},{label:"tabBorderTopLeftRadius",value:0},{label:"tabBorderTopRightRadius",value:0},{label:"tabBorderBottomLeftRadius",value:0},{label:"tabBorderBottomRightRadius",value:0},{label:"tabBorderTopWidth",value:1},{label:"tabBorderRightWidth",value:1},{label:"tabBorderBottomWidth",value:1},{label:"tabBorderLeftWidth",value:1},{label:"tabBorderStyle",value:"solid"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M60 144C60 142.343 61.138 141 62.5418 141H268.259C269.663 141 270.801 142.343 270.801 144C270.801 145.657 269.663 147 268.259 147H62.5418C61.138 147 60 145.657 60 144Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M60 161C60 159.343 61.1317 158 62.5276 158H216.24C217.636 158 218.768 159.343 218.768 161C218.768 162.657 217.636 164 216.24 164H62.5276C61.1317 164 60 162.657 60 161Z" fill="#D2D2D2"/> <path d="M170 112.75H181.5" stroke="#B6B6B6" stroke-width="3" fill="none"/> <path d="M175.75 118.5L175.75 107" stroke="#B6B6B6" stroke-width="3" fill="none"/> <path d="M49.75 122.75H278C279.795 122.75 281.25 124.205 281.25 126V178C281.25 179.795 279.795 181.25 278 181.25H53C51.2051 181.25 49.75 179.795 49.75 178V122.75Z" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M98.05 102.5H52C51.1716 102.5 50.5 103.172 50.5 104V122.18H99.55V104C99.55 103.172 98.8784 102.5 98.05 102.5ZM52 101C50.3431 101 49 102.343 49 104V123.5H101.05V104C101.05 102.343 99.7069 101 98.05 101H52Z" fill="#959595"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M159.05 102.5H113C112.172 102.5 111.5 103.172 111.5 104V122.18H160.55V104C160.55 103.172 159.878 102.5 159.05 102.5ZM113 101C111.343 101 110 102.343 110 104V123.5H162.05V104C162.05 102.343 160.707 101 159.05 101H113Z" fill="#959595"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"tabsStyleD",value:"vstyle6"},{label:"titleAlign",value:"center"},{label:"tabBodyTopPadding",value:""},{label:"tabBodyRightPadding",value:""},{label:"tabBodyBottomPadding",value:""},{label:"tabBodyLeftPadding",value:""},{label:"tabBorderTopLeftRadius",value:4},{label:"tabBorderTopRightRadius",value:4},{label:"tabBorderBottomLeftRadius",value:4},{label:"tabBorderBottomRightRadius",value:4},{label:"tabBorderTopWidth",value:1},{label:"tabBorderRightWidth",value:1},{label:"tabBorderBottomWidth",value:1},{label:"tabBorderLeftWidth",value:1},{label:"tabBorderStyle",value:"solid"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 130C134 128.343 135.138 127 136.542 127H252.259C253.663 127 254.801 128.343 254.801 130C254.801 131.657 253.663 133 252.259 133H136.542C135.138 133 134 131.657 134 130Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 144C134 142.343 135.132 141 136.528 141H210.24C211.636 141 212.768 142.343 212.768 144C212.768 145.657 211.636 147 210.24 147H136.528C135.132 147 134 145.657 134 144Z" fill="#D2D2D2"/> <rect x="115.75" y="90.75" width="157.5" height="91.5" rx="3.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path d="M52.75 92.7492C52.75 91.6338 53.6369 90.75 54.7059 90.75H101.34C102.409 90.75 103.296 91.6338 103.296 92.7492V109.932C103.296 111.047 102.409 111.931 101.34 111.931H54.7059C53.6369 111.931 52.75 111.047 52.75 109.932V92.7492Z" stroke="#959595" stroke-width="1.5" fill="none"/> <path d="M52.75 120.749C52.75 119.634 53.6369 118.75 54.7059 118.75H101.34C102.409 118.75 103.296 119.634 103.296 120.749V137.932C103.296 139.047 102.409 139.931 101.34 139.931H54.7059C53.6369 139.931 52.75 139.047 52.75 137.932V120.749Z" stroke="#959595" stroke-width="1.5" fill="none"/> <path d="M52.75 148.749C52.75 147.634 53.6369 146.75 54.7059 146.75H101.34C102.409 146.75 103.296 147.634 103.296 148.749V165.932C103.296 167.047 102.409 167.931 101.34 167.931H54.7059C53.6369 167.931 52.75 167.047 52.75 165.932V148.749Z" stroke="#959595" stroke-width="1.5" fill="none"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"tabsStyleD",value:"vstyle8"},{label:"titleAlign",value:"center"},{label:"tabBodyTopPadding",value:""},{label:"tabBodyRightPadding",value:""},{label:"tabBodyBottomPadding",value:""},{label:"tabBodyLeftPadding",value:""},{label:"tabBorderTopLeftRadius",value:0},{label:"tabBorderTopRightRadius",value:0},{label:"tabBorderBottomLeftRadius",value:0},{label:"tabBorderBottomRightRadius",value:0},{label:"tabBorderTopWidth",value:1},{label:"tabBorderRightWidth",value:1},{label:"tabBorderBottomWidth",value:1},{label:"tabBorderLeftWidth",value:1},{label:"tabBorderStyle",value:"solid"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 130C134 128.343 135.138 127 136.542 127H252.259C253.663 127 254.801 128.343 254.801 130C254.801 131.657 253.663 133 252.259 133H136.542C135.138 133 134 131.657 134 130Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M134 144C134 142.343 135.132 141 136.528 141H210.24C211.636 141 212.768 142.343 212.768 144C212.768 145.657 211.636 147 210.24 147H136.528C135.132 147 134 145.657 134 144Z" fill="#D2D2D2"/> <rect x="115.75" y="90.75" width="157.5" height="91.5" rx="3.25" stroke="#959595" stroke-width="1.5" fill="none"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M115.55 98.5H68C67.1716 98.5 66.5 99.1716 66.5 100V116.68C66.5 117.508 67.1716 118.18 68 118.18H115.55V98.5ZM68 97C66.3431 97 65 98.3431 65 100V116.68C65 118.337 66.3431 119.68 68 119.68H116.05V97H68Z" fill="#959595"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M115.55 126.5H68C67.1716 126.5 66.5 127.172 66.5 128V144.68C66.5 145.508 67.1716 146.18 68 146.18H115.55V126.5ZM68 125C66.3431 125 65 126.343 65 128V144.68C65 146.337 66.3431 147.68 68 147.68H116.05V125H68Z" fill="#959595"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M115.55 154.5H68C67.1716 154.5 66.5 155.172 66.5 156V172.68C66.5 173.508 67.1716 174.18 68 174.18H115.55V154.5ZM68 153C66.3431 153 65 154.343 65 156V172.68C65 174.337 66.3431 175.68 68 175.68H116.05V153H68Z" fill="#959595"/> </svg>'}];var OB=Object(j.applyFilters)("uag_tabs_presets",EB);function LB(){return(LB=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var HB,jB=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{tabsStyleD:i,tabsStyleM:o,tabsStyleT:n,tabActiveFrontend:s,tabHeaders:c,headerBgColor:u,headerTextColor:p,activeTabBgColor:b,activeTabTextColor:d,bodyBgColor:g,bodyTextColor:m,tabTitleLeftMargin:y,tabTitleRightMargin:f,tabTitleTopMargin:h,tabTitleBottomMargin:v,tabTitleLeftMarginTablet:_,tabTitleRightMarginTablet:T,tabTitleTopMarginTablet:C,tabTitleBottomMarginTablet:S,tabTitleLeftMarginMobile:w,tabTitleRightMarginMobile:k,tabTitleTopMarginMobile:P,tabTitleBottomMarginMobile:x,tabTitleMarginUnit:A,mobiletabTitleMarginUnit:G,tablettabTitleMarginUnit:M,tabTitleMarginLink:R,tabTitleTopPadding:B,tabTitleRightPadding:U,tabTitleBottomPadding:E,tabTitleLeftPadding:O,tabTitleTopPaddingTablet:L,tabTitleRightPaddingTablet:H,tabTitleBottomPaddingTablet:j,tabTitleLeftPaddingTablet:F,tabTitleTopPaddingMobile:z,tabTitleRightPaddingMobile:D,tabTitleBottomPaddingMobile:N,tabTitleLeftPaddingMobile:I,tabTitlePaddingUnit:V,mobiletabTitlePaddingUnit:W,tablettabTitlePaddingUnit:q,tabTitlePaddingLink:Z,tabBodyLeftMargin:$,tabBodyRightMargin:Y,tabBodyTopMargin:K,tabBodyBottomMargin:J,tabBodyLeftMarginTablet:X,tabBodyRightMarginTablet:Q,tabBodyTopMarginTablet:ee,tabBodyBottomMarginTablet:te,tabBodyLeftMarginMobile:ae,tabBodyRightMarginMobile:le,tabBodyTopMarginMobile:ie,tabBodyBottomMarginMobile:oe,tabBodyMarginUnit:ne,mobiletabBodyMarginUnit:re,tablettabBodyMarginUnit:se,tabBodyMarginLink:ce,tabBodyTopPadding:ue,tabBodyRightPadding:pe,tabBodyBottomPadding:be,tabBodyLeftPadding:de,tabBodyTopPaddingTablet:me,tabBodyRightPaddingTablet:ye,tabBodyBottomPaddingTablet:fe,tabBodyLeftPaddingTablet:he,tabBodyTopPaddingMobile:ve,tabBodyRightPaddingMobile:_e,tabBodyBottomPaddingMobile:Te,tabBodyLeftPaddingMobile:Se,tabBodyPaddingUnit:we,mobiletabBodyPaddingUnit:ke,tablettabBodyPaddingUnit:Pe,tabBodyPaddingLink:xe,titleLoadGoogleFonts:Ae,titleFontFamily:Ge,titleFontWeight:Me,titleFontSizeType:Re,titleFontSize:Be,titleFontSizeMobile:Ue,titleFontSizeTablet:Oe,titleLineHeightType:He,titleLineHeight:je,titleLineHeightMobile:ze,titleLineHeightTablet:De,titleLetterSpacing:Ne,titleLetterSpacingTablet:Ie,titleLetterSpacingMobile:Ve,titleLetterSpacingType:We,titleTransform:qe,titleDecoration:Ze,titleAlign:$e,tabAlign:Ye,showIcon:Ke,icon:Je,iconColor:Xe,iconPosition:Qe,iconSpacing:et,iconSpacingTablet:tt,iconSpacingMobile:at,iconSize:lt,iconSizeTablet:it,iconSizeMobile:ot,activeiconColor:nt,titleFontStyle:rt}=t,st=e=>{a({tabActiveFrontend:parseInt(e)})};return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,(()=>{const e={desktop:[{value:"hstyle1",label:Object(r.__)("Horizontal Style 1","ultimate-addons-for-gutenberg")},{value:"hstyle2",label:Object(r.__)("Horizontal Style 2","ultimate-addons-for-gutenberg")},{value:"hstyle3",label:Object(r.__)("Horizontal Style 3","ultimate-addons-for-gutenberg")},{value:"hstyle4",label:Object(r.__)("Horizontal Style 4","ultimate-addons-for-gutenberg")},{value:"hstyle5",label:Object(r.__)("Horizontal Style 5","ultimate-addons-for-gutenberg")},{value:"vstyle6",label:Object(r.__)("Vertical Style 6","ultimate-addons-for-gutenberg")},{value:"vstyle7",label:Object(r.__)("Vertical Style 7","ultimate-addons-for-gutenberg")},{value:"vstyle8",label:Object(r.__)("Vertical Style 8","ultimate-addons-for-gutenberg")},{value:"vstyle9",label:Object(r.__)("Vertical Style 9","ultimate-addons-for-gutenberg")},{value:"vstyle10",label:Object(r.__)("Vertical Style 10","ultimate-addons-for-gutenberg")}],tablet:[{value:"hstyle1",label:Object(r.__)("Horizontal Style 1","ultimate-addons-for-gutenberg")},{value:"hstyle2",label:Object(r.__)("Horizontal Style 2","ultimate-addons-for-gutenberg")},{value:"hstyle3",label:Object(r.__)("Horizontal Style 3","ultimate-addons-for-gutenberg")},{value:"hstyle4",label:Object(r.__)("Horizontal Style 4","ultimate-addons-for-gutenberg")},{value:"hstyle5",label:Object(r.__)("Horizontal Style 5","ultimate-addons-for-gutenberg")},{value:"vstyle6",label:Object(r.__)("Vertical Style 6","ultimate-addons-for-gutenberg")},{value:"vstyle7",label:Object(r.__)("Vertical Style 7","ultimate-addons-for-gutenberg")},{value:"vstyle8",label:Object(r.__)("Vertical Style 8","ultimate-addons-for-gutenberg")},{value:"vstyle9",label:Object(r.__)("Vertical Style 9","ultimate-addons-for-gutenberg")},{value:"vstyle10",label:Object(r.__)("Vertical Style 10","ultimate-addons-for-gutenberg")}],mobile:[{value:"stack1",label:Object(r.__)("Stack Style 1","ultimate-addons-for-gutenberg")},{value:"stack2",label:Object(r.__)("Stack Style 2","ultimate-addons-for-gutenberg")},{value:"stack3",label:Object(r.__)("Stack Style 3","ultimate-addons-for-gutenberg")},{value:"stack4",label:Object(r.__)("Stack Style 4","ultimate-addons-for-gutenberg")}]};return React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(ai,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{desktop:{value:i,label:"tabsStyleD"},tablet:{value:n,label:"tabsStyleT"},mobile:{value:o,label:"tabsStyleM"}},options:e,setAttributes:a}),React.createElement(Pi,{label:Object(r.__)("Initial Open Tab","ultimate-addons-for-gutenberg"),data:{value:s},onChange:st,options:c.map((e,t)=>({value:t,label:e}))}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Tab Alignment","ultimate-addons-for-gutenberg"),data:{value:Ye,label:"tabAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:$e,label:"titleAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Icon","ultimate-addons-for-gutenberg"),checked:Ke,onChange:()=>a({showIcon:!Ke})}),Ke&&React.createElement(React.Fragment,null,React.createElement(Ur,{label:Object(r.__)("Tab Icon","ultimate-addons-for-gutenberg"),value:Je,onChange:e=>a({icon:e})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Icon Position","ultimate-addons-for-gutenberg"),data:{value:Qe,label:"iconPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"left",label:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"right",label:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}]})))})(),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:OB,presetInputType:"radioImage"}))),React.createElement(il,nl,(()=>{const l=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:p,data:{value:p,label:"headerTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:u,data:{value:u,label:"headerBgColor"},setAttributes:a})),i=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:d,data:{value:d,label:"activeTabTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:b,data:{value:b,label:"activeTabBgColor"},setAttributes:a}));return React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:l,active:i}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Ae,label:"titleLoadGoogleFonts"},fontFamily:{value:Ge,label:"titleFontFamily"},fontWeight:{value:Me,label:"titleFontWeight"},fontStyle:{value:rt,label:"titleFontStyle"},fontSizeType:{value:Re,label:"titleFontSizeType"},fontSize:{value:Be,label:"titleFontSize"},fontSizeMobile:{value:Ue,label:"titleFontSizeMobile"},fontSizeTablet:{value:Oe,label:"titleFontSizeTablet"},lineHeightType:{value:He,label:"titleLineHeightType"},lineHeight:{value:je,label:"titleLineHeight"},lineHeightMobile:{value:ze,label:"titleLineHeightMobile"},lineHeightTablet:{value:De,label:"titleLineHeightTablet"},letterSpacing:{value:Ne,label:"titleLetterSpacing"},letterSpacingTablet:{value:Ie,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Ve,label:"titleLetterSpacingMobile"},letterSpacingType:{value:We,label:"titleLetterSpacingType"},transform:{value:qe,label:"titleTransform"},decoration:{value:Ze,label:"titleDecoration"}}),React.createElement(Pl,LB({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:h,label:"tabTitleTopMargin"},valueRight:{value:f,label:"tabTitleRightMargin"},valueBottom:{value:v,label:"tabTitleBottomMargin"},valueLeft:{value:y,label:"tabTitleLeftMargin"},valueTopTablet:{value:C,label:"tabTitleTopMarginTablet"},valueRightTablet:{value:T,label:"tabTitleRightMarginTablet"},valueBottomTablet:{value:S,label:"tabTitleBottomMarginTablet"},valueLeftTablet:{value:_,label:"tabTitleLeftMarginTablet"},valueTopMobile:{value:P,label:"tabTitleTopMarginMobile"},valueRightMobile:{value:k,label:"tabTitleRightMarginMobile"},valueBottomMobile:{value:x,label:"tabTitleBottomMarginMobile"},valueLeftMobile:{value:w,label:"tabTitleLeftMarginMobile"},unit:{value:A,label:"tabTitleMarginUnit"},mUnit:{value:G,label:"mobiletabTitleMarginUnit"},tUnit:{value:M,label:"tablettabTitleMarginUnit"},attributes:t,setAttributes:a,link:{value:R,label:"tabTitleMarginLink"}})),React.createElement(Pl,LB({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:B,label:"tabTitleTopPadding"},valueRight:{value:U,label:"tabTitleRightPadding"},valueBottom:{value:E,label:"tabTitleBottomPadding"},valueLeft:{value:O,label:"tabTitleLeftPadding"},valueTopTablet:{value:L,label:"tabTitleTopPaddingTablet"},valueRightTablet:{value:H,label:"tabTitleRightPaddingTablet"},valueBottomTablet:{value:j,label:"tabTitleBottomPaddingTablet"},valueLeftTablet:{value:F,label:"tabTitleLeftPaddingTablet"},valueTopMobile:{value:z,label:"tabTitleTopPaddingMobile"},valueRightMobile:{value:D,label:"tabTitleRightPaddingMobile"},valueBottomMobile:{value:N,label:"tabTitleBottomPaddingMobile"},valueLeftMobile:{value:I,label:"tabTitleLeftPaddingMobile"},unit:{value:V,label:"tabTitlePaddingUnit"},mUnit:{value:W,label:"mobiletabTitlePaddingUnit"},tUnit:{value:q,label:"tablettabTitlePaddingUnit"},attributes:t,setAttributes:a,link:{value:Z,label:"tabTitlePaddingLink"}})))})(),(()=>{if(!Ke)return"";const e=React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Xe,data:{value:Xe,label:"iconColor"},setAttributes:a}),t=React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:nt,data:{value:nt,label:"activeiconColor"},setAttributes:a});return React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:lt,label:"iconSize"},tablet:{value:it,label:"iconSizeTablet"},mobile:{value:ot,label:"iconSizeMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:e,active:t}),React.createElement(tl,{label:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:et,label:"iconSpacing"},tablet:{value:tt,label:"iconSpacingTablet"},mobile:{value:at,label:"iconSpacingMobile"}},min:0,max:100,displayUnit:!1,setAttributes:a}))})(),React.createElement(Fe,{title:Object(r.__)("Body","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:m,data:{value:m,label:"bodyTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:g,data:{value:g,label:"bodyBgColor"},setAttributes:a}),React.createElement(Pl,LB({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:K,label:"tabBodyTopMargin"},valueRight:{value:Y,label:"tabBodyRightMargin"},valueBottom:{value:J,label:"tabBodyBottomMargin"},valueLeft:{value:$,label:"tabBodyLeftMargin"},valueTopTablet:{value:ee,label:"tabBodyTopMarginTablet"},valueRightTablet:{value:Q,label:"tabBodyRightMarginTablet"},valueBottomTablet:{value:te,label:"tabBodyBottomMarginTablet"},valueLeftTablet:{value:X,label:"tabBodyLeftMarginTablet"},valueTopMobile:{value:ie,label:"tabBodyTopMarginMobile"},valueRightMobile:{value:le,label:"tabBodyRightMarginMobile"},valueBottomMobile:{value:oe,label:"tabBodyBottomMarginMobile"},valueLeftMobile:{value:ae,label:"tabBodyLeftMarginMobile"},unit:{value:ne,label:"tabBodyMarginUnit"},mUnit:{value:re,label:"mobiletabBodyMarginUnit"},tUnit:{value:se,label:"tablettabBodyMarginUnit"},attributes:t,setAttributes:a,link:{value:ce,label:"tabBodyMarginLink"}})),React.createElement(Pl,LB({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ue,label:"tabBodyTopPadding"},valueRight:{value:pe,label:"tabBodyRightPadding"},valueBottom:{value:be,label:"tabBodyBottomPadding"},valueLeft:{value:de,label:"tabBodyLeftPadding"},valueTopTablet:{value:me,label:"tabBodyTopPaddingTablet"},valueRightTablet:{value:ye,label:"tabBodyRightPaddingTablet"},valueBottomTablet:{value:fe,label:"tabBodyBottomPaddingTablet"},valueLeftTablet:{value:he,label:"tabBodyLeftPaddingTablet"},valueTopMobile:{value:ve,label:"tabBodyTopPaddingMobile"},valueRightMobile:{value:_e,label:"tabBodyRightPaddingMobile"},valueBottomMobile:{value:Te,label:"tabBodyBottomPaddingMobile"},valueLeftMobile:{value:Se,label:"tabBodyLeftPaddingMobile"},unit:{value:we,label:"tabBodyPaddingUnit"},mUnit:{value:ke,label:"mobiletabBodyPaddingUnit"},tUnit:{value:Pe,label:"tablettabBodyPaddingUnit"},attributes:t,setAttributes:a,link:{value:xe,label:"tabBodyPaddingLink"}}))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"tab",attributes:t,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0}))),React.createElement(il,LB({},rl,{parentProps:e}))))}),FB=a(144),zB=0,DB={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},NB={};NB.locals=FB.a.locals||{},NB.use=function(){return zB++||(HB=ke()(FB.a,DB)),NB},NB.unuse=function(){zB>0&&!--zB&&(HB(),HB=null)};var IB=NB;const{updateBlockAttributes:VB,insertBlock:WB,removeBlock:qB}=wp.blockEditor?Object(n.dispatch)("core/block-editor"):Object(n.dispatch)("core/editor"),{getBlockOrder:ZB}=wp.blockEditor?Object(n.select)("core/block-editor"):Object(n.select)("core/editor");var $B=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(IB.use(),()=>{IB.unuse()}),[]);const{attributes:t,setAttributes:a,clientId:l,deviceType:i}=e,{tabsStyleD:o,tabsStyleM:s,tabsStyleT:c,tabHeaders:u,tabActive:p,tabAlign:b,showIcon:d,icon:g,iconPosition:m}=t,y=(e,t)=>()=>{e!==t-1&&f(e,e+1)},f=(i,o)=>{const{tabActiveFrontend:r}=t,{getBlock:s}=wp.blockEditor?Object(n.select)("core/block-editor"):Object(n.select)("core/editor"),c=s(l),p=[...u];p.splice(o,1,u[i]),p.splice(i,1,u[o]),a({tabHeaders:p}),r===i+1?a({tabActiveFrontend:o+1}):r===o+1&&a({tabActiveFrontend:i+1}),e.moveTab(c.innerBlocks[i].clientId,o),e.resetTabOrder()};return React.createElement(React.Fragment,null,React.createElement("div",{className:Be()("uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-block-"+l.substr(0,8),"uagb-tabs__wrap",`uagb-tabs__${o}-desktop`,`uagb-tabs__${c}-tablet`,`uagb-tabs__${s}-mobile`)},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b},u.map((n,b)=>{return React.createElement("li",{key:b,className:`uagb-tab ${p===b?"uagb-tabs__active":""} `,id:"uagb-tabs__tab"+b},u.length>0&&React.createElement("div",{className:"uagb-tabs-editor-controls"},0!==b&&React.createElement(Le.Tooltip,{text:Object(r.__)("Move item back","ultimate-addons-for-gutenberg")},React.createElement("span",{role:"button",className:"uagb-tab-item__move-back",onClick:0===b?" ":(h=b,u.length,()=>{h<0||f(h,h-1)}),"aria-disabled":b===u.length,disabled:b===u.length},o.includes("vstyle")&&"Desktop"===i||c.includes("vstyle")&&"Tablet"===i||(s.includes("vstyle")||s.includes("stack"))&&"Mobile"===i?React.createElement(Le.Dashicon,{icon:"arrow-up"}):React.createElement(Le.Dashicon,{icon:"arrow-left"}))),b+1!==u.length&&React.createElement(Le.Tooltip,{text:Object(r.__)("Move item forward","ultimate-addons-for-gutenberg")},React.createElement("span",{role:"button",className:"uagb-tab-item__move-forward",onClick:b===u.length?" ":y(b,u.length),"aria-disabled":b===u.length,disabled:b===u.length},o.includes("vstyle")&&"Desktop"===i||c.includes("vstyle")&&"Tablet"===i||(s.includes("vstyle")||s.includes("stack"))&&"Mobile"===i?React.createElement(Le.Dashicon,{icon:"arrow-down"}):React.createElement(Le.Dashicon,{icon:"arrow-right"}))),React.createElement(Le.Tooltip,{text:Object(r.__)("Remove tab","ultimate-addons-for-gutenberg")},React.createElement("span",{role:"button",tabIndex:b,className:"uagb-tabs__remove",onClick:()=>(i=>{const o=ZB(l);qB(o[i],!1),a({tabHeaders:t.tabHeaders.filter((e,t)=>t!==i)}),(e=>{const t=ZB(l);a(e),t.forEach(t=>VB(t,e))})({tabActive:0}),e.resetTabOrder()})(b)},React.createElement(Le.Dashicon,{icon:"no"})))),React.createElement("a",{role:"button",tabIndex:b,className:`uagb-tabs__icon-position-${m} uagb-tabs-list`,onClick:()=>{e.updateActiveTab(b)},"data-tab":b},d&&g&&("left"===m||"top"===m)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(g,a)),React.createElement(ge.RichText,{tagName:"p",value:n,onChange:e=>((e,t)=>{const i=ZB(l),o=u.map((a,l)=>(t===l&&(a=e),a));a({tabHeaders:o}),VB(i[t],{header:e}),ZB(l).forEach(e=>VB(e,{tabHeaders:u}))})(e,b),onSplit:()=>null,placeholder:Object(r.__)("Title…","ultimate-addons-for-gutenberg"),allowedFormats:["core/bold","core/italic"]}),d&&g&&("right"===m||"bottom"===m)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(g,a))));var h}),React.createElement("li",{className:"uagb-tab uagb-tabs__add-tab",role:"presentation",tabIndex:"0",onClick:()=>(()=>{const i=Object(be.createBlock)("uagb/tabs-child");WB(i,t.tabHeaders.length,l),a({tabHeaders:[...t.tabHeaders,"New Tab"]}),e.resetTabOrder()})()},React.createElement(Le.Tooltip,{text:Object(r.__)("Add tab","ultimate-addons-for-gutenberg")},React.createElement(Le.Dashicon,{icon:"plus"})))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks,{template:[["uagb/tabs-child"],["uagb/tabs-child"],["uagb/tabs-child"]],templateLock:!1,allowedBlocks:["uagb/tabs-child"],renderAppender:!1}))))}),YB=Object(L.compose)(Object(n.withDispatch)((e,t,a)=>{let{clientId:l}=t,{select:i}=a;const{getBlock:o}=i("core/block-editor"),{updateBlockAttributes:n,moveBlockToPosition:r}=e("core/block-editor"),s=o(l);return{resetTabOrder(){for(let e=0;e<s.innerBlocks.length;e++)n(s.innerBlocks[e].clientId,{id:e})},updateActiveTab(e){n(s.clientId,{tabActive:e});for(let t=0;t<s.innerBlocks.length;t++)n(s.innerBlocks[t].clientId,{tabActive:e});this.resetTabOrder()},moveTab(e,t){r(e,l,l,parseInt(t))}}}),vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{tabHeaders:i,borderStyle:o,borderWidth:r,borderRadius:s,borderColor:c,borderHoverColor:u,UAGHideDesktop:p,UAGHideTab:b,UAGHideMob:d},clientId:g,name:m,deviceType:y}=e;Object(B.useEffect)(()=>{(r||s||c||u||o)&&ue("tab",{label:"borderWidth",value:r},{label:"borderRadius",value:s},{label:"borderColor",value:c},{label:"borderHoverColor",value:u},{label:"borderStyle",value:o},a,l)},[]),Object(B.useEffect)(()=>{(()=>{const{updateBlockAttributes:e}=wp.blockEditor?Object(n.dispatch)("core/block-editor"):Object(n.dispatch)("core/editor"),{getBlockOrder:t}=wp.blockEditor?Object(n.select)("core/block-editor"):Object(n.select)("core/editor");t(g).forEach(t=>e(t,{tabHeaders:i}))})(),e.resetTabOrder()},[y,e]),Object(B.useEffect)(()=>{Bs()},[y]),Object(B.useEffect)(()=>{he(e)},[p,b,d,y]);const f=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{headerBgColor:n,titleAlign:r,headerTextColor:s,activeTabBgColor:c,activeTabTextColor:u,bodyBgColor:p,bodyTextColor:b,tabTitleTopMargin:d,tabTitleLeftMargin:g,tabTitleRightMargin:m,tabTitleBottomMargin:y,tabTitleTopPadding:f,tabTitleBottomPadding:h,tabTitleLeftPadding:v,tabTitleRightPadding:_,titleFontFamily:T,titleFontWeight:C,titleFontSize:S,titleFontSizeType:w,titleFontSizeMobile:k,titleFontSizeTablet:P,titleLineHeight:x,titleLineHeightType:A,titleLineHeightMobile:G,titleLineHeightTablet:M,titleTransform:R,titleDecoration:B,tabBorderHColor:U,iconColor:E,iconSize:O,iconSizeTablet:L,iconSizeMobile:H,tabBodyLeftMargin:j,tabBodyRightMargin:F,tabBodyTopMargin:z,tabBodyBottomMargin:D,iconSpacing:N,iconSpacingTablet:I,iconSpacingMobile:V,activeiconColor:W,tabTitlePaddingUnit:q,tabTitleMarginUnit:Z,tabBodyPaddingUnit:$,tabBodyMarginUnit:Y,tabTitleTopPaddingTablet:K,tabTitleBottomPaddingTablet:J,tabTitleLeftPaddingTablet:X,tabTitleRightPaddingTablet:Q,tabTitleTopMarginTablet:ee,tabTitleLeftMarginTablet:te,tabTitleRightMarginTablet:le,tabTitleBottomMarginTablet:ie,tablettabTitlePaddingUnit:oe,tablettabTitleMarginUnit:ne,tabTitleTopPaddingMobile:re,tabTitleBottomPaddingMobile:se,tabTitleLeftPaddingMobile:ce,tabTitleRightPaddingMobile:ue,tabTitleTopMarginMobile:pe,tabTitleLeftMarginMobile:be,tabTitleRightMarginMobile:de,tabTitleBottomMarginMobile:ge,mobiletabTitlePaddingUnit:me,mobiletabTitleMarginUnit:ye,tabBodyTopPadding:fe,tabBodyBottomPadding:he,tabBodyLeftPadding:ve,tabBodyRightPadding:_e,tabBodyTopPaddingTablet:Te,tabBodyBottomPaddingTablet:Ce,tabBodyLeftPaddingTablet:Se,tabBodyRightPaddingTablet:we,tabBodyTopMarginTablet:ke,tabBodyLeftMarginTablet:Pe,tabBodyRightMarginTablet:xe,tabBodyBottomMarginTablet:Ae,tablettabBodyPaddingUnit:Ge,tablettabBodyMarginUnit:Me,tabBodyTopPaddingMobile:Re,tabBodyBottomPaddingMobile:Be,tabBodyLeftPaddingMobile:Ue,tabBodyRightPaddingMobile:Ee,tabBodyTopMarginMobile:Oe,tabBodyLeftMarginMobile:Le,tabBodyRightMarginMobile:He,tabBodyBottomMarginMobile:je,mobiletabBodyPaddingUnit:Fe,mobiletabBodyMarginUnit:ze,titleFontStyle:De,tabAlign:Ne,titleLetterSpacing:Ie,titleLetterSpacingTablet:Ve,titleLetterSpacingMobile:We,titleLetterSpacingType:qe}=e,Ze=Ps(O,"iconSize",i),$e=Ps(N,"iconSpacing",i),Ye=rs(e,"tab",""),Ke=rs(e,"tab","tablet"),Je=rs(e,"tab","mobile");let Xe={},Qe={},et={};Xe={".uagb-tabs__hstyle1-desktop > .uagb-tabs__panel .uagb-tab":Ye,".uagb-tabs__hstyle1-desktop > .uagb-tabs__body-wrap":Ye,".uagb-tabs__hstyle2-desktop > .uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ye},".uagb-tabs__hstyle2-desktop > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle3-desktop .uagb-tab":{"border-bottom-width":"0px","border-bottom":0,outline:0,"border-radius":0,...Ye},".uagb-tabs__hstyle3-desktop > .uagb-tabs__body-wrap":Ye,".uagb-tabs__hstyle4-desktop .uagb-tab":{"border-radius":"30px",...Ye},".uagb-tabs__hstyle4-desktop > .uagb-tabs__body-wrap":Ye,".uagb-tabs__hstyle5-desktop":{...Ye},".uagb-tabs__hstyle5-desktop .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-bottom-width":"0px","border-top":0,"border-left":0,"border-right":0,"border-bottom":0,outline:0,"border-radius":0},".uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ye},".uagb-tabs__vstyle6-desktop .uagb-tab":Ye,".uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap":Ye,".uagb-tabs__vstyle7-desktop .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ye},".uagb-tabs__vstyle7-desktop > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle8-desktop .uagb-tab":{"border-right-width":"0px","border-right":0,outline:0,"border-radius":0,...Ye},".uagb-tabs__vstyle8-desktop > .uagb-tabs__body-wrap":Ye,".uagb-tabs__vstyle9-desktop .uagb-tab":{"border-radius":"30px",...Ye},".uagb-tabs__vstyle9-desktop > .uagb-tabs__body-wrap":Ye,".uagb-tabs__vstyle10-desktop":{...Ye},".uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-bottom-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-bottom":0,outline:0,"border-radius":0,...Ye}," > .uagb-tabs__panel .uagb-tab":{background:n,"text-align":r,"margin-top":ns(d,Z),"margin-left":ns(g,Z),"margin-right":ns(m,Z),"margin-bottom":ns(y,Z)}," > .uagb-tabs__panel .uagb-tab .uagb-tabs-list":{"justify-content":r}," > .uagb-tabs__panel .uagb-tab a":{"padding-top":ns(f,q),"padding-bottom":ns(h,q),"padding-left":ns(v,q),"padding-right":ns(_,q)}," > .uagb-tabs__panel .uagb-tab a > p":{color:s,"font-family":T,"font-weight":C,"font-size":ns(S,w),"line-height":ns(x,A),"letter-spacing":ns(Ie,qe),"text-transform":R,"text-decoration":B,"font-style":De}," > .uagb-tabs__panel .uagb-tab.uagb-tabs__active ":{background:c}," > .uagb-tabs__panel .uagb-tab.uagb-tabs__active p":{color:u}," > .uagb-tabs__panel .uagb-tab.uagb-tabs__active .uagb-tabs__icon svg":{fill:W}," > .uagb-tabs__body-wrap ":{background:p,"padding-top":ns(fe,$),"padding-bottom":ns(he,$),"padding-left":ns(ve,$),"padding-right":ns(_e,$),"margin-top":ns(z,Y),"margin-left":ns(j,Y),"margin-right":ns(F,Y),"margin-bottom":ns(D,Y)}," > .uagb-tabs__body-wrap > .block-editor-inner-blocks p":{color:b}," .uagb-tabs__icon svg":{height:ns(Ze,"px"),width:ns(Ze,"px"),fill:E},".uagb-tabs__wrap > .uagb-tabs__panel .uagb-tab:hover":{"border-color":U},".uagb-tabs__wrap > .uagb-tabs__body-wrap:hover":{"border-color":U}," .uagb-tabs__icon-position-left  .uagb-tabs__icon ":{"margin-right":ns($e,"px")}," .uagb-tabs__icon-position-right  .uagb-tabs__icon ":{"margin-left":ns($e,"px")}," .uagb-tabs__icon-position-top  .uagb-tabs__icon ":{"margin-bottom":ns($e,"px")}," .uagb-tabs__icon-position-bottom  .uagb-tabs__icon ":{"margin-top":ns($e,"px")}},Xe[" .uagb-tabs__panel"]="left"===Ne?{"margin-right":"auto","margin-left":0}:"right"===Ne?{"margin-left":"auto","margin-right":0}:{margin:"auto"},Qe={".uagb-tabs__hstyle1-tablet > .uagb-tabs__panel .uagb-tab":Ke,".uagb-tabs__hstyle1-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__hstyle2-tablet > .uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ke},".uagb-tabs__hstyle2-tablet > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle3-tablet .uagb-tab":{"border-bottom-width":"0px","border-bottom":0,outline:0,"border-radius":0,...Ke},".uagb-tabs__hstyle3-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__hstyle4-tablet .uagb-tab":{"border-radius":"30px",...Ke},".uagb-tabs__hstyle4-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__hstyle5-tablet":{...Ke},".uagb-tabs__hstyle5-tablet .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-bottom-width":"0px","border-top":0,"border-left":0,"border-right":0,"border-bottom":0,outline:0,"border-radius":0},".uagb-tabs__hstyle5-tablet .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ke},".uagb-tabs__vstyle6-tablet > .uagb-tabs__panel .uagb-tab":Ke,".uagb-tabs__vstyle6-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__vstyle7-tablet .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Ke},".uagb-tabs__vstyle7-tablet > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle8-tablet > .uagb-tabs__panel .uagb-tab":{"border-right-width":"0px","border-right":0,outline:0,"border-radius":0,...Ke},".uagb-tabs__vstyle8-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__vstyle9-tablet .uagb-tab":{"border-radius":"30px",...Ke},".uagb-tabs__vstyle9-tablet > .uagb-tabs__body-wrap":Ke,".uagb-tabs__vstyle10-tablet":{...Ke},".uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-bottom-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-bottom":0,outline:0,"border-radius":0,...Ke}," .uagb-tabs__icon svg":{height:ns(L,"px"),width:ns(L,"px")}," > .uagb-tabs__panel .uagb-tab p":{"font-size":ns(P,w),"line-height":ns(M,A),"letter-spacing":ns(Ve,qe)}," > .uagb-tabs__panel .uagb-tab a":{"padding-top":ns(K,oe),"padding-bottom":ns(J,oe),"padding-left":ns(X,oe),"padding-right":ns(Q,oe)}," > .uagb-tabs__panel .uagb-tab":{"margin-top":ns(ee,ne),"margin-left":ns(te,ne),"margin-right":ns(le,ne),"margin-bottom":ns(ie,ne),...Ke}," > .uagb-tabs__body-wrap ":{"padding-top":ns(Te,Ge),"padding-bottom":ns(Ce,Ge),"padding-left":ns(Se,Ge),"padding-right":ns(we,Ge),"margin-top":ns(ke,Me),"margin-left":ns(Pe,Me),"margin-right":ns(xe,Me),"margin-bottom":ns(Ae,Me),...Ke}," .uagb-tabs__icon-position-left  .uagb-tabs__icon ":{"margin-right":ns(I,"px")}," .uagb-tabs__icon-position-right  .uagb-tabs__icon ":{"margin-left":ns(I,"px")}," .uagb-tabs__icon-position-top  .uagb-tabs__icon ":{"margin-bottom":ns(I,"px")}," .uagb-tabs__icon-position-bottom  .uagb-tabs__icon ":{"margin-top":ns(I,"px")}},et={".uagb-tabs__hstyle1-mobile > .uagb-tabs__panel .uagb-tab":Je,".uagb-tabs__hstyle1-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__hstyle2-mobile > .uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Je},".uagb-tabs__hstyle2-mobile > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__hstyle3-mobile .uagb-tab":{"border-bottom-width":"0px","border-bottom":0,outline:0,"border-radius":0,...Je},".uagb-tabs__hstyle3-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__hstyle4-mobile .uagb-tab":{"border-radius":"30px",...Je},".uagb-tabs__hstyle4-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__hstyle5-mobile":{...Je},".uagb-tabs__hstyle5-mobile .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-bottom-width":"0px","border-top":0,"border-left":0,"border-right":0,"border-bottom":0,outline:0,"border-radius":0},".uagb-tabs__hstyle5-mobile .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Je},".uagb-tabs__vstyle6-mobile .uagb-tab":Je,".uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap":Je,".uagb-tabs__vstyle7-mobile .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Je},".uagb-tabs__vstyle7-mobile > .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle8-mobile .uagb-tab":{"border-right-width":"0px","border-right":0,outline:0,"border-radius":0,...Je},".uagb-tabs__vstyle8-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__vstyle9-mobile .uagb-tab":{"border-radius":"30px",...Je},".uagb-tabs__vstyle9-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__vstyle10-mobile":{...Je},".uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap":{"border-width":"0px","border-style":"none"},".uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-bottom-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-bottom":0,outline:0,"border-radius":0,...Je},".uagb-tabs__stack1-mobile > .uagb-tabs__panel .uagb-tab":Je,".uagb-tabs__stack1-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__stack2-mobile .uagb-tab":{"border-bottom-width":"0px","border-bottom":0,outline:0,"border-radius":0,...Je},".uagb-tabs__stack2-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__stack3-mobile .uagb-tab":{"border-radius":"30px",...Je},".uagb-tabs__stack3-mobile > .uagb-tabs__body-wrap":Je,".uagb-tabs__stack4-mobile":Je,".uagb-tabs__stack4-mobile .uagb-tab":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-bottom-width":"0px","border-top":0,"border-left":0,"border-right":0,"border-bottom":0,outline:0,"border-radius":0},".uagb-tabs__stack4-mobile .uagb-tab.uagb-tabs__active":{"border-top-width":"0px","border-right-width":"0px","border-left-width":"0px","border-top":0,"border-left":0,"border-right":0,outline:0,"border-radius":0,...Je}," .uagb-tabs__icon svg":{height:ns(H,"px"),width:ns(H,"px")}," > .uagb-tabs__panel .uagb-tab p":{"font-size":ns(k,w),"line-height":ns(G,A),"letter-spacing":ns(We,qe)}," > .uagb-tabs__panel .uagb-tab":{"margin-top":ns(pe,ye),"margin-left":ns(be,ye),"margin-right":ns(de,ye),"margin-bottom":ns(ge,ye),...Je}," > .uagb-tabs__panel .uagb-tab a":{"padding-top":ns(re,me),"padding-bottom":ns(se,me),"padding-left":ns(ce,me),"padding-right":ns(ue,me)}," > .uagb-tabs__body-wrap ":{"padding-top":ns(Re,Fe),"padding-bottom":ns(Be,Fe),"padding-left":ns(Ue,Fe),"padding-right":ns(Ee,Fe),"margin-top":ns(Oe,ze),"margin-left":ns(Le,ze),"margin-right":ns(He,ze),"margin-bottom":ns(je,ze),...Je}," .uagb-tabs__icon-position-left  .uagb-tabs__icon ":{"margin-right":ns(V,"px")}," .uagb-tabs__icon-position-right  .uagb-tabs__icon ":{"margin-left":ns(V,"px")}," .uagb-tabs__icon-position-top  .uagb-tabs__icon ":{"margin-bottom":ns(V,"px")}," .uagb-tabs__icon-position-bottom  .uagb-tabs__icon ":{"margin-top":ns(V,"px")}};const tt=".editor-styles-wrapper .uagb-block-"+t.substr(0,8);let at=ae(Xe,tt);return"tablet"!==o&&"mobile"!==o||(at+=ae(Qe,""+tt,!0,"tablet"),"mobile"===o&&(at+=ae(et,""+tt,!0,"mobile"))),at}(l,g,m,y),[l,y]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:f}),t&&React.createElement(jB,e),React.createElement($B,e))});const KB=ce("tab");var JB={block_id:{type:"string"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]},tabActive:{type:"number",default:0},tabActiveFrontend:{type:"number",default:0},tabsStyleD:{type:"string",default:"hstyle1",UAGCopyPaste:{styleType:"tabs-style"}},tabsStyleT:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-tablet"}},tabsStyleM:{type:"string",default:"stack1",UAGCopyPaste:{styleType:"tabs-style-mobile"}},headerBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},headerTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},bodyBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},bodyTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#e0e0e0"},borderHoverColor:{type:"string"},activeTabBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-color"}},activeTabTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},tabTitleLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},tabTitleRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},tabTitleTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},tabTitleBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},tabTitleLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},tabTitleRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},tabTitleTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},tabTitleBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},tabTitleLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},tabTitleRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},tabTitleTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},tabTitleBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},tabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-margin"}},mobiletabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},tablettabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},tabTitleMarginLink:{type:"boolean",default:!1},tabBodyLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},tabBodyRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},tabBodyTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},tabBodyBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},tabBodyLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},tabBodyRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},tabBodyTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},tabBodyBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},tabBodyLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},tabBodyRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},tabBodyTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},tabBodyBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},tabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},mobiletabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},tablettabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},tabBodyMarginLink:{type:"boolean",default:!1},tabBodyVertPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},tabBodyHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},tabTitleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},tabTitleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},tabTitleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},tabTitleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},tabTitleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},tabTitleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},tabTitleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},tabTitleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},tabTitleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},tabTitleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},tabTitleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},tabTitleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},tabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobiletabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tablettabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},tabTitlePaddingLink:{type:"boolean",default:!1},tabBodyLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},tabBodyRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},tabBodyTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},tabBodyBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},tabBodyLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},tabBodyRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},tabBodyTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},tabBodyBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},tabBodyLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},tabBodyRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},tabBodyTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},tabBodyBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},tabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobiletabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},tablettabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},tabBodyPaddingLink:{type:"boolean",default:!1},tabTitleVertPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"}},tabTitleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-unit-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleTransform:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},tabAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},titleAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},showIcon:{type:"boolean",default:!1},icon:{type:"string"},iconPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"tab-icon-position"}},iconSpacing:{type:"string",default:10,UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingTablet:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingMobile:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},activeiconColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},isPreview:{type:"boolean",default:!1},...KB,titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}}};const XB=ce("tab");var QB={block_id:{type:"string"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]},tabActive:{type:"number",default:0},tabActiveFrontend:{type:"number",default:0},tabsStyleD:{type:"string",default:"hstyle1",UAGCopyPaste:{styleType:"tabs-style"}},tabsStyleT:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-tablet"}},tabsStyleM:{type:"string",default:"stack1",UAGCopyPaste:{styleType:"tabs-style-mobile"}},headerBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},headerTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},bodyBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},bodyTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#e0e0e0"},borderHoverColor:{type:"string"},activeTabBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-color"}},activeTabTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},tabTitleLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},tabTitleRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},tabTitleTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},tabTitleBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},tabTitleLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},tabTitleRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},tabTitleTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},tabTitleBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},tabTitleLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},tabTitleRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},tabTitleTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},tabTitleBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},tabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-margin"}},mobiletabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},tablettabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},tabTitleMarginLink:{type:"boolean",default:!1},tabBodyLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},tabBodyRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},tabBodyTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},tabBodyBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},tabBodyLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},tabBodyRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},tabBodyTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},tabBodyBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},tabBodyLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},tabBodyRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},tabBodyTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},tabBodyBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},tabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},mobiletabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},tablettabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},tabBodyMarginLink:{type:"boolean",default:!1},tabBodyVertPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},tabBodyHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},tabTitleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},tabTitleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},tabTitleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},tabTitleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},tabTitleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},tabTitleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},tabTitleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},tabTitleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},tabTitleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},tabTitleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},tabTitleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},tabTitleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},tabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobiletabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tablettabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},tabTitlePaddingLink:{type:"boolean",default:!1},tabBodyLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},tabBodyRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},tabBodyTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},tabBodyBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},tabBodyLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},tabBodyRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},tabBodyTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},tabBodyBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},tabBodyLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},tabBodyRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},tabBodyTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},tabBodyBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},tabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobiletabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},tablettabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},tabBodyPaddingLink:{type:"boolean",default:!1},tabTitleVertPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"}},tabTitleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-unit-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleTransform:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},tabAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},titleAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},showIcon:{type:"boolean",default:!1},icon:{type:"string"},iconPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"tab-icon-position"}},iconSpacing:{type:"string",default:10,UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingTablet:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingMobile:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},activeiconColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},isPreview:{type:"boolean",default:!1},...XB,titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}}};const eU=ce("tab");var tU={block_id:{type:"string"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]},tabActive:{type:"number",default:0},tabActiveFrontend:{type:"number",default:0},tabsStyleD:{type:"string",default:"hstyle1",UAGCopyPaste:{styleType:"tabs-style"}},tabsStyleT:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-tablet"}},tabsStyleM:{type:"string",default:"stack1",UAGCopyPaste:{styleType:"tabs-style-mobile"}},headerBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},headerTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},bodyBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},bodyTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#e0e0e0"},borderHoverColor:{type:"string"},activeTabBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-color"}},activeTabTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},tabTitleLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},tabTitleRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},tabTitleTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},tabTitleBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},tabTitleLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},tabTitleRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},tabTitleTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},tabTitleBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},tabTitleLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},tabTitleRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},tabTitleTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},tabTitleBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},tabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-margin"}},mobiletabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},tablettabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},tabTitleMarginLink:{type:"boolean",default:!1},tabBodyLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},tabBodyRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},tabBodyTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},tabBodyBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},tabBodyLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},tabBodyRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},tabBodyTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},tabBodyBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},tabBodyLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},tabBodyRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},tabBodyTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},tabBodyBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},tabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},mobiletabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},tablettabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},tabBodyMarginLink:{type:"boolean",default:!1},tabBodyVertPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},tabBodyHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},tabTitleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},tabTitleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},tabTitleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},tabTitleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},tabTitleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},tabTitleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},tabTitleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},tabTitleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},tabTitleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},tabTitleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},tabTitleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},tabTitleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},tabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobiletabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tablettabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},tabTitlePaddingLink:{type:"boolean",default:!1},tabBodyLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},tabBodyRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},tabBodyTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},tabBodyBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},tabBodyLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},tabBodyRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},tabBodyTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},tabBodyBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},tabBodyLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},tabBodyRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},tabBodyTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},tabBodyBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},tabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobiletabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},tablettabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},tabBodyPaddingLink:{type:"boolean",default:!1},tabTitleVertPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"}},tabTitleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-unit-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleTransform:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},tabAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},titleAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},showIcon:{type:"boolean",default:!1},icon:{type:"string"},iconPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"tab-icon-position"}},iconSpacing:{type:"string",default:10,UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingTablet:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingMobile:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},activeiconColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},isPreview:{type:"boolean",default:!1},...eU,titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}}};const aU=ce("tab"),lU={block_id:{type:"string"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]},tabActive:{type:"number",default:0},tabActiveFrontend:{type:"number",default:0},tabsStyleD:{type:"string",default:"hstyle1",UAGCopyPaste:{styleType:"tabs-style"}},tabsStyleT:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-tablet"}},tabsStyleM:{type:"string",default:"vstyle6",UAGCopyPaste:{styleType:"tabs-style-mobile"}},headerBgColor:{type:"string",UAGCopyPaste:{styleType:"main-title-bg-color"}},headerTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-color"}},bodyBgColor:{type:"string",UAGCopyPaste:{styleType:"desc-bg-color"}},bodyTextColor:{type:"string",UAGCopyPaste:{styleType:"desc-color"}},borderStyle:{type:"string",default:"solid"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string",default:"#e0e0e0"},borderHoverColor:{type:"string"},activeTabBgColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-color"}},activeTabTextColor:{type:"string",default:"",UAGCopyPaste:{styleType:"main-title-hover-bg-color"}},tabTitleLeftMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin"}},tabTitleRightMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin"}},tabTitleTopMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin"}},tabTitleBottomMargin:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin"}},tabTitleLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-tablet"}},tabTitleRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-tablet"}},tabTitleTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-tablet"}},tabTitleBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-tablet"}},tabTitleLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-margin-mobile"}},tabTitleRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-margin-mobile"}},tabTitleTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-margin-mobile"}},tabTitleBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-margin-mobile"}},tabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-unit-margin"}},mobiletabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-mobile"}},tablettabTitleMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-margin-unit-tablet"}},tabTitleMarginLink:{type:"boolean",default:!1},tabBodyLeftMargin:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin"}},tabBodyRightMargin:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin"}},tabBodyTopMargin:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin"}},tabBodyBottomMargin:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"}},tabBodyLeftMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-tablet"}},tabBodyRightMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-tablet"}},tabBodyTopMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-tablet"}},tabBodyBottomMarginTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},tabBodyLeftMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-margin-mobile"}},tabBodyRightMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-margin-mobile"}},tabBodyTopMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-margin-mobile"}},tabBodyBottomMarginMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},tabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit"}},mobiletabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-mobile"}},tablettabBodyMarginUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-margin-unit-tablet"}},tabBodyMarginLink:{type:"boolean",default:!1},tabBodyVertPadding:{type:"number",UAGCopyPaste:{styleType:"desc-vertical-padding"}},tabBodyHrPadding:{type:"number",UAGCopyPaste:{styleType:"desc-horizontal-padding"}},tabTitleLeftPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding"}},tabTitleRightPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding"}},tabTitleTopPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding"}},tabTitleBottomPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding"}},tabTitleLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-tablet"}},tabTitleRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-tablet"}},tabTitleTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-tablet"}},tabTitleBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-tablet"}},tabTitleLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-left-padding-mobile"}},tabTitleRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-right-padding-mobile"}},tabTitleTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-top-padding-mobile"}},tabTitleBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-bottom-padding-mobile"}},tabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit"}},mobiletabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-mobile"}},tablettabTitlePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-padding-unit-tablet"}},tabTitlePaddingLink:{type:"boolean",default:!1},tabBodyLeftPadding:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},tabBodyRightPadding:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},tabBodyTopPadding:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},tabBodyBottomPadding:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},tabBodyLeftPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},tabBodyRightPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-tablet"}},tabBodyTopPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-tablet"}},tabBodyBottomPaddingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-tablet"}},tabBodyLeftPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},tabBodyRightPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},tabBodyTopPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},tabBodyBottomPaddingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},tabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobiletabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"}},tablettabBodyPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},tabBodyPaddingLink:{type:"boolean",default:!1},tabTitleVertPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-vertical-padding"}},tabTitleHrPadding:{type:"number",UAGCopyPaste:{styleType:"main-title-horizontal-padding"}},titleFontSize:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size"}},titleFontSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-font-unit-size"}},titleFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-tablet"}},titleFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-font-size-mobile"}},titleFontFamily:{type:"string",default:"Default",UAGCopyPaste:{styleType:"main-title-font-family"}},titleFontWeight:{type:"string",UAGCopyPaste:{styleType:"main-title-font-weight"}},titleLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"main-title-line-height-type"}},titleLineHeight:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height"}},titleLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-tablet"}},titleLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-line-height-mobile"}},titleLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"main-title-load-google-fonts"}},titleTransform:{type:"string",default:"normal",UAGCopyPaste:{styleType:"main-title-transform"}},titleDecoration:{type:"string",default:"none",UAGCopyPaste:{styleType:"main-title-decoration"}},tabAlign:{type:"string",default:"left",UAGCopyPaste:{styleType:"overall-alignment"}},titleAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},showIcon:{type:"boolean",default:!1},icon:{type:"string"},iconPosition:{type:"string",default:"left",UAGCopyPaste:{styleType:"tab-icon-position"}},iconSpacing:{type:"string",default:10,UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingTablet:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconSpacingMobile:{type:"string",UAGCopyPaste:{styleType:"tab-icon-spacing"}},iconColor:{type:"string",UAGCopyPaste:{styleType:"icon-color"}},iconSize:{type:"number",default:16,UAGCopyPaste:{styleType:"icon-size"}},iconSizeTablet:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},iconSizeMobile:{type:"number",UAGCopyPaste:{styleType:"icon-size"}},activeiconColor:{type:"string",UAGCopyPaste:{styleType:"icon-hover-color"}},titleFontStyle:{type:"string",UAGCopyPaste:{styleType:"main-title-font-style"},default:"normal"},isPreview:{type:"boolean",default:!1},titleLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},titleLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},titleLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},titleLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},...aU};var iU=[{attributes:lU,save(e){const{className:t}=e,{block_id:a,tabHeaders:l,tabActiveFrontend:i,tabsStyleD:o,tabsStyleT:n,tabsStyleM:r,icon:s,showIcon:c,iconPosition:u}=e.attributes;return React.createElement("div",{className:Be()(t,"uagb-block-"+a,"uagb-tabs__wrap",`uagb-tabs__${o}-desktop`,`uagb-tabs__${n}-tablet`,`uagb-tabs__${r}-mobile`),"data-tab-active":i},React.createElement("ul",{className:"uagb-tabs__panel"},l.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab"},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs__icon-position-"+u},c&&("left"===u||"top"===u)&&React.createElement("span",{className:"uagb-tabs__icon"},Wm(s)),React.createElement(ge.RichText.Content,{tagName:"span",value:e}),c&&("right"===u||"bottom"===u)&&React.createElement("span",{className:"uagb-tabs__icon"},Wm(s)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:lU,save(e){const{attributes:t,className:a}=e,{block_id:l,tabHeaders:i,tabActiveFrontend:o,tabsStyleD:n,tabsStyleT:r,tabsStyleM:s,icon:c,showIcon:u,iconPosition:p,tabAlign:b}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-tabs__wrap",`uagb-tabs__${n}-desktop`,`uagb-tabs__${r}-tablet`,`uagb-tabs__${s}-mobile`),"data-tab-active":o},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b},i.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab "+(o===t?"uagb-tabs__active":"")},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs-list uagb-tabs__icon-position-"+p,"data-tab":t},u&&("left"===p||"top"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Wm(c)),React.createElement(ge.RichText.Content,{tagName:"span",value:e}),u&&("right"===p||"bottom"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Wm(c)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:JB,save:function(e){const{attributes:t,className:a}=e,{block_id:l,tabHeaders:i,tabActiveFrontend:o,tabsStyleD:n,tabsStyleT:r,tabsStyleM:s,icon:c,showIcon:u,iconPosition:p,tabAlign:b}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-tabs__wrap",`uagb-tabs__${n}-desktop`,`uagb-tabs__${r}-tablet`,`uagb-tabs__${s}-mobile`),"data-tab-active":o},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b},i.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab "+(o===t?"uagb-tabs__active":"")},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs-list uagb-tabs__icon-position-"+p,"data-tab":t},u&&("left"===p||"top"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)),React.createElement(ge.RichText.Content,{value:e}),u&&("right"===p||"bottom"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:QB,save:function(e){const{attributes:t,className:a}=e,{block_id:l,tabHeaders:i,tabActiveFrontend:o,tabsStyleD:n,tabsStyleT:r,tabsStyleM:s,icon:c,showIcon:u,iconPosition:p,tabAlign:b}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-tabs__wrap",`uagb-tabs__${n}-desktop`,`uagb-tabs__${r}-tablet`,`uagb-tabs__${s}-mobile`),"data-tab-active":o},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b,role:"tablist"},i.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab "+(o===t?"uagb-tabs__active":""),role:"none"},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs-list uagb-tabs__icon-position-"+p,"data-tab":t,role:"tab"},u&&("left"===p||"top"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)),React.createElement(ge.RichText.Content,{value:e}),u&&("right"===p||"bottom"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:tU,save:function(e){const{attributes:t,className:a}=e,{block_id:l,tabHeaders:i,tabActiveFrontend:o,tabsStyleD:n,tabsStyleT:r,tabsStyleM:s,icon:c,showIcon:u,iconPosition:p,tabAlign:b}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-tabs__wrap",`uagb-tabs__${n}-desktop`,`uagb-tabs__${r}-tablet`,`uagb-tabs__${s}-mobile`),"data-tab-active":o},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b,role:"tablist"},i.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab "+(o===t?"uagb-tabs__active":""),role:"none"},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs-list uagb-tabs__icon-position-"+p,"data-tab":t,role:"tab"},u&&("left"===p||"top"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)),React.createElement(ge.RichText.Content,{tagName:"div",value:e}),u&&("right"===p||"bottom"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];let oU={};oU=Object(j.applyFilters)("uagb/tabs",ws(oU)),Object(be.registerBlockType)("uagb/tabs",{...oU,title:Object(r.__)("Tabs","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your content under different tabs.","ultimate-addons-for-gutenberg"),icon:se.tabs,keywords:[Object(r.__)("tabs","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:ga,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"tabs"}):React.createElement(YB,e),save:function(e){const{attributes:t,className:a}=e,{block_id:l,tabHeaders:i,tabActiveFrontend:o,tabsStyleD:n,tabsStyleT:r,tabsStyleM:s,icon:c,showIcon:u,iconPosition:p,tabAlign:b}=t;return React.createElement("div",{className:Be()(a,"uagb-block-"+l,"uagb-tabs__wrap",`uagb-tabs__${n}-desktop`,`uagb-tabs__${r}-tablet`,`uagb-tabs__${s}-mobile`),"data-tab-active":o},React.createElement("ul",{className:"uagb-tabs__panel uagb-tabs__align-"+b,role:"tablist"},i.map((e,t)=>React.createElement("li",{key:t,className:"uagb-tab "+(o===t?"uagb-tabs__active":""),role:"none"},React.createElement("a",{href:"#uagb-tabs__tab"+t,className:"uagb-tabs-list uagb-tabs__icon-position-"+p,"data-tab":t,role:"tab"},u&&c&&("left"===p||"top"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)),React.createElement(ge.RichText.Content,{tagName:"div",value:e}),u&&c&&("right"===p||"bottom"===p)&&React.createElement("span",{className:"uagb-tabs__icon"},Ce(c)))))),React.createElement("div",{className:"uagb-tabs__body-wrap"},React.createElement(ge.InnerBlocks.Content,null)))},deprecated:iU}),a(366);var nU={isPreview:{type:"boolean",default:!1},block_id:{type:"string"},id:{type:"number",default:0},header:{type:"html"},tabActive:{type:"number"},tabHeaders:{type:"array",default:[Object(r.__)("Tab 1","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 2","ultimate-addons-for-gutenberg"),Object(r.__)("Tab 3","ultimate-addons-for-gutenberg")]}},rU=Object(B.memo)(e=>{const{attributes:t}=e,{tabActive:a,id:l}=t;return React.createElement("div",{className:"uagb-tabs__body-container uagb-inner-tab-"+l,style:{display:l===a?"block":"none"},"aria-labelledby":"uagb-tabs__tab"+l},React.createElement(ge.InnerBlocks,{template:[["core/paragraph",{content:"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."}]],templateLock:!1}))}),sU=Object(L.compose)(vs)(e=>{const{attributes:t,setAttributes:a,clientId:l}=e;return Object(B.useEffect)(()=>{const{getBlockRootClientId:e,getBlockAttributes:i}=Object(n.select)("core/block-editor"),o=i(e(l));null!=o&&o.tabActiveFrontend&&o.tabActiveFrontend!==(null==t?void 0:t.tabActive)&&a({tabActive:o.tabActiveFrontend}),null!==o&&!1!==o.needUpdate&&Object.keys(o).forEach(e=>{"metadata"!==e&&(t[e]=o[e])})},[]),React.createElement(rU,e)}),cU=[{attributes:nU,save(e){const{attributes:t,className:a}=e,{id:l,block_id:i}=t;return React.createElement("div",{className:"uagb-tabs__body-container"},React.createElement("div",{className:Be()(a,"uagb-blocks__"+i,"uagb-tabs__body"),"aria-labelledby":"uagb-tabs__tab"+l},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:nU,save(e){const{attributes:t,className:a}=e,{id:l,block_id:i}=t;return React.createElement("div",{className:"uagb-tabs__body-container uagb-tabs__inner-tab uagb-inner-tab-"+l},React.createElement("div",{className:Be()(a,"uagb-blocks__"+i,"uagb-tabs__body"),"aria-labelledby":"uagb-tabs__tab"+l},React.createElement(ge.InnerBlocks.Content,null)))}}];let uU={};uU=Object(j.applyFilters)("uagb/tabs-child",ws(uU)),Object(be.registerBlockType)("uagb/tabs-child",{...uU,title:Object(r.__)("Tabs child","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your content in a tab.","ultimate-addons-for-gutenberg"),parent:["uagb/tabs"],icon:se.tabs_child,keywords:[Object(r.__)("tabs","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:nU,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"tabs-child",isChildren:!0}):React.createElement(sU,e),save:function(e){const{attributes:t}=e,{id:a}=t;return React.createElement("div",{className:"uagb-tabs__body-container uagb-inner-tab-"+a,"aria-labelledby":"uagb-tabs__tab"+a},React.createElement(ge.InnerBlocks.Content,null))},deprecated:cU}),a(367);var pU=Object(B.memo)(e=>{let{attributes:t}=e;const{titleLoadGoogleFonts:a,titleFontFamily:l,titleFontWeight:i,countLoadGoogleFonts:o,countFontFamily:n,countFontWeight:r,listLoadGoogleFonts:s,listFontFamily:c,listFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});const bU=[{defaultAttributes:Jt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:3},{label:"boxShadowVOffset",value:8},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_451)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_451" x="55" y="75" width="218" height="127" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="2"/> <feGaussianBlur stdDeviation="2"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_451"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_451" result="shape"/> </filter> </defs> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:18},{label:"boxShadowBlur",value:40},{label:"boxShadowSpread",value:-10},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_459)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_459" x="48" y="71" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_459"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_459" result="shape"/> </filter> </defs> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:4},{label:"boxShadowBlur",value:12},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_463)"> <path d="M268 190.388C268 193.493 265.493 196 262.4 196H63.5995C60.5034 196 58 193.486 58 190.388V82.615C58 79.5136 60.5067 77 63.5995 77H262.4C265.497 77 267.997 79.5136 267.997 82.615L268 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_463" x="48" y="67" width="230" height="139" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_463"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_463" result="shape"/> </filter> </defs> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:2},{label:"boxShadowBlur",value:5},{label:"boxShadowSpread",value:-1},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_467)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_467" x="53" y="71" width="222" height="131" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset/> <feGaussianBlur stdDeviation="3"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_467"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_467" result="shape"/> </filter> </defs> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:50},{label:"boxShadowBlur",value:50},{label:"boxShadowSpread",value:-30},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_471)"> <ellipse cx="169" cy="174.5" rx="100" ry="16.5" fill="#FAFAFA"/> </g> <path d="M275 189.388C275 192.493 272.493 195 269.4 195H70.5995C67.5034 195 65 192.486 65 189.388V81.615C65 78.5136 67.5067 76 70.5995 76H269.4C272.497 76 274.997 78.5136 274.997 81.615L275 189.388Z" fill="#FBFBFB"/> <defs> <filter id="filter0_d_103_471" x="60" y="154" width="220" height="53" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dx="1" dy="6"/> <feGaussianBlur stdDeviation="5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_471"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_471" result="shape"/> </filter> </defs> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"boxShadowHOffset",value:0},{label:"boxShadowVOffset",value:20},{label:"boxShadowBlur",value:30},{label:"boxShadowSpread",value:0},{label:"boxShadowPosition",value:"outset"}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M28 31.7987C28 29.1485 30.1527 27 32.8081 27H295.192C297.847 27 300 29.1485 300 31.7987V245H28V31.7987Z" fill="white"/> <g filter="url(#filter0_d_103_476)"> <path d="M269 190.388C269 193.493 266.493 196 263.4 196H64.5995C61.5034 196 59 193.486 59 190.388V82.615C59 79.5136 61.5067 77 64.5995 77H263.4C266.497 77 268.997 79.5136 268.997 82.615L269 190.388Z" fill="#FBFBFB"/> </g> <defs> <filter id="filter0_d_103_476" x="52" y="74" width="224" height="133" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> <feFlood flood-opacity="0" result="BackgroundImageFix"/> <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> <feOffset dy="4"/> <feGaussianBlur stdDeviation="3.5"/> <feComposite in2="hardAlpha" operator="out"/> <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0"/> <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_103_476"/> <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_103_476" result="shape"/> </filter> </defs> </svg>'}];var dU=Object(j.applyFilters)("uag_taxonomy_presets",bU);function gU(){return(gU=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var mU,yU=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,taxonomyList:l,termsList:i,deviceType:o}=e,{block_id:n,postType:s,taxonomyType:c,layout:u,columns:p,tcolumns:b,mcolumns:d,bgColor:g,titleColor:m,countColor:y,rowGap:f,rowGapTablet:h,rowGapMobile:v,columnGap:_,columnGapTablet:T,columnGapMobile:C,contentTopPadding:S,contentRightPadding:w,contentBottomPadding:k,contentLeftPadding:P,contentTopPaddingTablet:x,contentRightPaddingTablet:A,contentBottomPaddingTablet:G,contentLeftPaddingTablet:M,contentTopPaddingMobile:R,contentRightPaddingMobile:B,contentBottomPaddingMobile:U,contentLeftPaddingMobile:E,contentPaddingUnit:O,mobileContentPaddingUnit:L,tabletContentPaddingUnit:H,contentPaddingLink:j,titleBottomSpace:F,titleBottomSpaceTablet:z,titleBottomSpaceMobile:D,alignment:N,listStyle:I,listTextColor:V,hoverlistTextColor:W,listBottomMargin:q,listStyleColor:Z,hoverlistStyleColor:$,noTaxDisplaytext:Y,boxShadowColor:K,boxShadowHOffset:J,boxShadowVOffset:X,boxShadowBlur:Q,boxShadowSpread:ee,boxShadowPosition:te,showCount:ae,titleFontSize:le,titleFontSizeType:ie,titleFontSizeMobile:oe,titleFontSizeTablet:ne,titleFontFamily:re,titleFontWeight:se,titleFontStyle:ce,titleLineHeightType:ue,titleLineHeight:pe,titleLineHeightTablet:be,titleLineHeightMobile:de,titleLoadGoogleFonts:me,countFontSize:ye,countFontSizeType:fe,countFontSizeMobile:he,countFontSizeTablet:ve,countFontFamily:_e,countFontWeight:Te,countFontStyle:Se,countLineHeightType:we,countLineHeight:ke,countLineHeightTablet:Pe,countLineHeightMobile:xe,countLoadGoogleFonts:Ae,listFontSize:Ge,listFontSizeType:Me,listFontSizeMobile:Re,listFontSizeTablet:Be,listFontFamily:Ue,listFontWeight:Oe,listFontStyle:He,listLineHeightType:je,listLineHeight:ze,listLineHeightTablet:De,listLineHeightMobile:Ne,listLoadGoogleFonts:Ie,showEmptyTaxonomy:Ve,listDisplayStyle:We,showhierarchy:qe,titleTag:Ze,titleTransform:$e,countTransform:Ye,listTransform:Ke,titleDecoration:Je,countDecoration:Xe,listDecoration:Qe,titleLetterSpacing:et,titleLetterSpacingTablet:tt,titleLetterSpacingMobile:at,titleLetterSpacingType:lt,countLetterSpacing:it,countLetterSpacingTablet:ot,countLetterSpacingMobile:nt,countLetterSpacingType:rt,listLetterSpacing:st,listLetterSpacingTablet:ct,listLetterSpacingMobile:ut,listLetterSpacingType:pt,seperatorStyle:bt,seperatorWidth:dt,seperatorThickness:gt,seperatorColor:mt,seperatorHoverColor:yt}=t,ft=Ve?l:i,ht=[{value:"",label:Object(r.__)("Select Taxonomy","ultimate-addons-for-gutenberg")}];""!==ft&&void 0!==ft&&Object.keys(ft).map(e=>ht.push({value:l[e].name,label:l[e].label}));const vt=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:V||"",data:{value:V,label:"listTextColor"},setAttributes:a}),React.createElement("br",null),"none"!==I&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Bullet/Numbers Color","ultimate-addons-for-gutenberg"),colorValue:Z||"",data:{value:Z,label:"listStyleColor"},setAttributes:a}))),_t=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:W||"",data:{value:W,label:"hoverlistTextColor"},setAttributes:a}),React.createElement("br",null),"none"!==I&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Bullet/Numbers Color","ultimate-addons-for-gutenberg"),colorValue:$||"",data:{value:$,label:"hoverlistStyleColor"},setAttributes:a}))),Tt=React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Query","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Pi,{label:Object(r.__)("Post Type","ultimate-addons-for-gutenberg"),data:{value:s},onChange:e=>{const t={nonce:uagb_blocks_info.uagb_ajax_nonce};$l({url:uagb_blocks_info.ajax_url,action:"uagb_get_taxonomy",data:t}).then(t=>{a({listInJson:t}),a({postType:e}),a({categories:""}),a({taxonomyType:""})})},options:uagb_blocks_info.post_types}),""!==l&&React.createElement(Pi,{label:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),data:{value:c},onChange:e=>{a({taxonomyType:e}),a({categories:""})},options:ht}),""===l&&React.createElement(Fs,{autoComplete:"off",label:Object(r.__)("Display Message","ultimate-addons-for-gutenberg"),value:Y,data:{value:Y,label:"noTaxDisplaytext"},setAttributes:a,onChange:e=>a({noTaxDisplaytext:e}),help:Object(r.__)("If taxonomy Not Found","ultimate-addons-for-gutenberg")}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Empty Taxonomy","ultimate-addons-for-gutenberg"),checked:Ve,onChange:()=>a({showEmptyTaxonomy:!Ve})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Posts Count","ultimate-addons-for-gutenberg"),checked:ae,onChange:()=>a({showCount:!ae})}),"list"===u&&"list"===We&&"post_tag"!==c&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Hierarchy","ultimate-addons-for-gutenberg"),checked:qe,onChange:()=>a({showhierarchy:!qe})})),(()=>{let e=Ze;return""===Ze&&(e="h4","list"===u&&(e="div")),React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Heading Tag","ultimate-addons-for-gutenberg"),data:{value:e,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"div",label:Object(r.__)("Div","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:u,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"grid",label:"Grid"},{value:"list",label:"List"}],showIcons:!1}),"grid"===u&&React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"columns",min:1,max:4},tablet:{value:b,label:"tcolumns",min:1,max:3},mobile:{value:d,label:"mcolumns",min:1,max:2}},min:1,max:4,displayUnit:!1,setAttributes:a}),"list"===u&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Display Style","ultimate-addons-for-gutenberg"),data:{value:We,label:"listDisplayStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"list",label:"List"},{value:"dropdown",label:"Dropdown"}],showIcons:!1})),"grid"===u&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:N,label:"alignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),"list"===u&&"dropdown"!==We&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("List Style","ultimate-addons-for-gutenberg"),data:{value:I,label:"listStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"disc",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-list-ul")}),tooltip:Object(r.__)("Bullet","ultimate-addons-for-gutenberg")},{value:"decimal",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-list-ol")}),tooltip:Object(r.__)("Numbers","ultimate-addons-for-gutenberg")},{value:"none",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-bars")}),tooltip:Object(r.__)("None","ultimate-addons-for-gutenberg")}],showIcons:!0})))})()),React.createElement(il,nl,"grid"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:me,label:"titleLoadGoogleFonts"},fontFamily:{value:re,label:"titleFontFamily"},fontWeight:{value:se,label:"titleFontWeight"},fontStyle:{value:ce,label:"titleFontStyle"},fontSizeType:{value:ie,label:"titleFontSizeType"},fontSize:{value:le,label:"titleFontSize"},fontSizeMobile:{value:oe,label:"titleFontSizeMobile"},fontSizeTablet:{value:ne,label:"titleFontSizeTablet"},lineHeightType:{value:ue,label:"titleLineHeightType"},lineHeight:{value:pe,label:"titleLineHeight"},lineHeightMobile:{value:de,label:"titleLineHeightMobile"},lineHeightTablet:{value:be,label:"titleLineHeightTablet"},transform:{value:$e,label:"titleTransform"},decoration:{value:Je,label:"titleDecoration"},letterSpacing:{value:et,label:"titleLetterSpacing"},letterSpacingTablet:{value:tt,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:at,label:"titleLetterSpacingMobile"},letterSpacingType:{value:lt,label:"titleLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:m||"",data:{value:m,label:"titleColor"},setAttributes:a}),ae&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:F,label:"titleBottomSpace"},tablet:{value:z,label:"titleBottomSpaceTablet"},mobile:{value:D,label:"titleBottomSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:a})),"grid"===u&&"dropdown"!==We&&ae&&React.createElement(Fe,{title:Object(r.__)("Count","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:y||"",data:{value:y,label:"countColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Ae,label:"countLoadGoogleFonts"},fontFamily:{value:_e,label:"countFontFamily"},fontWeight:{value:Te,label:"countFontWeight"},fontStyle:{value:Se,label:"countFontStyle"},fontSizeType:{value:fe,label:"countFontSizeType"},fontSize:{value:ye,label:"countFontSize"},fontSizeMobile:{value:he,label:"countFontSizeMobile"},fontSizeTablet:{value:ve,label:"countFontSizeTablet"},lineHeightType:{value:we,label:"countLineHeightType"},lineHeight:{value:ke,label:"countLineHeight"},lineHeightMobile:{value:xe,label:"countLineHeightMobile"},lineHeightTablet:{value:Pe,label:"countLineHeightTablet"},transform:{value:Ye,label:"countTransform"},decoration:{value:Xe,label:"countDecoration"},letterSpacing:{value:it,label:"countLetterSpacing"},letterSpacingTablet:{value:ot,label:"countLetterSpacingTablet"},letterSpacingMobile:{value:nt,label:"countLetterSpacingMobile"},letterSpacingType:{value:rt,label:"countLetterSpacingType"}})),"grid"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"bgColor"},setAttributes:a})),"grid"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"overall",attributes:t,deviceType:o,disableBottomSeparator:!0,disabledBorderTitle:!0})),"grid"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:a,presets:dU,presetInputType:"radioImage"}),React.createElement(vl,{blockId:n,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:K,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:J,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:X,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:Q,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:ee,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:te,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),"list"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("List","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:Ie,label:"listLoadGoogleFonts"},fontFamily:{value:Ue,label:"listFontFamily"},fontWeight:{value:Oe,label:"listFontWeight"},fontStyle:{value:He,label:"listFontStyle"},fontSizeType:{value:Me,label:"listFontSizeType"},fontSize:{value:Ge,label:"listFontSize"},fontSizeMobile:{value:Re,label:"listFontSizeMobile"},fontSizeTablet:{value:Be,label:"listFontSizeTablet"},lineHeightType:{value:je,label:"listLineHeightType"},lineHeight:{value:ze,label:"listLineHeight"},lineHeightMobile:{value:Ne,label:"listLineHeightMobile"},lineHeightTablet:{value:De,label:"listLineHeightTablet"},transform:{value:Ke,label:"listTransform"},decoration:{value:Qe,label:"listDecoration"},letterSpacing:{value:st,label:"listLetterSpacing"},letterSpacingTablet:{value:ct,label:"listLetterSpacingTablet"},letterSpacingMobile:{value:ut,label:"listLetterSpacingMobile"},letterSpacingType:{value:pt,label:"listLetterSpacingType"}}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:vt,hover:_t,disableBottomSeparator:!0})),"list"===u&&"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Separator","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pi,{label:Object(r.__)("Separator Style","ultimate-addons-for-gutenberg"),data:{value:bt,label:"seperatorStyle"},setAttributes:a,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),"none"!==bt&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Separator Width (%)","ultimate-addons-for-gutenberg"),value:dt,min:0,max:100,setAttributes:a,data:{value:dt,label:"seperatorWidth"},displayUnit:!1}),React.createElement(Qa,{label:Object(r.__)("Separator Thickness","ultimate-addons-for-gutenberg"),value:gt,min:0,max:20,setAttributes:a,data:{value:gt,label:"seperatorThickness"},displayUnit:!1}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:mt||"",data:{value:mt,label:"seperatorColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Hover Color","ultimate-addons-for-gutenberg"),colorValue:yt||"",data:{value:yt,label:"seperatorHoverColor"},setAttributes:a}))),"dropdown"!==We&&React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},"grid"===u&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:f,label:"rowGap"},tablet:{value:h,label:"rowGapTablet"},mobile:{value:v,label:"rowGapMobile"}},min:1,max:50,displayUnit:!1,setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:_,label:"columnGap"},tablet:{value:T,label:"columnGapTablet"},mobile:{value:C,label:"columnGapMobile"}},min:1,max:50,displayUnit:!1,setAttributes:a}),React.createElement(Pl,gU({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:S,label:"contentTopPadding"},valueRight:{value:w,label:"contentRightPadding"},valueBottom:{value:k,label:"contentBottomPadding"},valueLeft:{value:P,label:"contentLeftPadding"},valueTopTablet:{value:x,label:"contentTopPaddingTablet"},valueRightTablet:{value:A,label:"contentRightPaddingTablet"},valueBottomTablet:{value:G,label:"contentBottomPaddingTablet"},valueLeftTablet:{value:M,label:"contentLeftPaddingTablet"},valueTopMobile:{value:R,label:"contentTopPaddingMobile"},valueRightMobile:{value:B,label:"contentRightPaddingMobile"},valueBottomMobile:{value:U,label:"contentBottomPaddingMobile"},valueLeftMobile:{value:E,label:"contentLeftPaddingMobile"},unit:{value:O,label:"contentPaddingUnit"},mUnit:{value:L,label:"mobileContentPaddingUnit"},tUnit:{value:H,label:"tabletContentPaddingUnit"},deviceType:o,attributes:t,setAttributes:a,link:{value:j,label:"contentPaddingLink"}}))),"list"===u&&React.createElement(Qa,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),setAttributes:a,value:q,data:{value:q,label:"listBottomMargin"},min:0,max:100,displayUnit:!1})),"list"===u&&"dropdown"===We&&React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("There is no style available for the currently selected layout.","ultimate-addons-for-gutenberg"))),React.createElement(il,gU({},rl,{parentProps:e}))));return React.createElement(React.Fragment,null,Tt)}),fU=a(145),hU=0,vU={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},_U={};_U.locals=fU.a.locals||{},_U.use=function(){return hU++||(mU=ke()(fU.a,vU)),_U},_U.unuse=function(){hU>0&&!--hU&&(mU(),mU=null)};var TU=_U,CU=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(TU.use(),()=>{TU.unuse()}),[]);const{categoriesList:t,attributes:a,deviceType:l}=e,{layout:i,seperatorStyle:o,noTaxDisplaytext:n,showCount:s,listDisplayStyle:c,titleTag:u,block_id:p,showEmptyTaxonomy:b,taxonomyType:d}=a,g="post_tag"!==d&&a.showhierarchy;let m;"grid"===i?m=u||"h4":"list"===i&&(m=u||"div");const y={per_page:-1,hide_empty:!b,context:"view"},{records:f}=Object(de.useEntityRecords)("taxonomy",d,y),h=e=>null!=f&&f.length?null===e?f:f.filter(t=>{let{parent:a}=t;return a===e}):[],v=e=>e?Object(mA.decodeEntities)(e).trim():Object(r.__)("(Untitled)","ultimate-addons-for-gutenberg"),_=e=>{const t=h(e.id),{id:a,link:l,count:i,name:n}=e;return 0===e.parent&&!g||"post_tag"===d?React.createElement("li",{key:a,className:"uagb-tax-list"},React.createElement(m,{class:"uagb-tax-link-wrap"},React.createElement("a",{className:"uagb-tax-link",href:l,target:"_blank",rel:"noreferrer noopener"},v(n)),s&&` (${i})`),"none"!==o&&React.createElement("div",{className:"uagb-tax-separator"})):g?React.createElement("li",{key:a,className:"uagb-tax-list"},React.createElement(m,{class:"uagb-tax-link-wrap"},React.createElement("a",{className:"uagb-tax-link",href:l,target:"_blank",rel:"noreferrer noopener"},v(n)),s&&` (${i})`),"none"!==o&&React.createElement("div",{className:"uagb-tax-separator"}),g&&!!t.length&&React.createElement("ul",{className:"uagb-taxonomy-list-children"},t.map(e=>_(e)))):void 0};return t.length?React.createElement("div",{className:Z(["uagb-taxonomy__outer-wrap","uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-layout-"+i,"uagb-block-"+p])},"grid"===i&&t.map((e,t)=>React.createElement("div",{className:"uagb-taxomony-box",key:t},React.createElement("a",{className:"uagb-tax-link",href:e.link},React.createElement(m,{className:"uagb-tax-title",dangerouslySetInnerHTML:{__html:e.name}}),s&&React.createElement(React.Fragment,null,e.count," ",1!==e.count?e.plural_name:e.singular_name)))),"list"===i&&"list"===c&&React.createElement("ul",{className:"uagb-list-wrap"},h(g?0:null).map(e=>_(e))),"list"===i&&"dropdown"===c&&React.createElement("select",{className:"uagb-list-dropdown-wrap"},t.map((e,t)=>React.createElement("option",{key:t,value:e.link},Object(mA.decodeEntities)(e.name),s&&` (${e.count})`)))):React.createElement("div",{className:Z(["uagb-taxonomy__outer-wrap","uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-layout-"+i,"uagb-block-"+p])},React.createElement("div",{className:"uagb-tax-not-available"},n))});function SU(){return(SU=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var wU=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{postType:l,taxonomyType:i,showEmptyTaxonomy:o,listInJson:r=null,borderStyle:s,borderThickness:c,borderRadius:u,borderColor:p,borderHoverColor:b,overallBorderTopWidth:d,overallBorderLeftWidth:g,overallBorderRightWidth:m,overallBorderBottomWidth:y,overallBorderTopLeftRadius:f,overallBorderTopRightRadius:h,overallBorderBottomLeftRadius:v,overallBorderBottomRightRadius:_,overallBorderColor:T,overallBorderHColor:C,overallBorderStyle:S,UAGHideDesktop:w,UAGHideTab:k,UAGHideMob:P},setAttributes:x,name:A,deviceType:G}=e;let M=[];const{taxonomyList:R,termsList:U}=Object(n.useSelect)(e=>{const t=null!==r?r.data:"",a=""!==t?t[l]:"undefined",n=o?"with_empty_taxonomy":"without_empty_taxonomy";return void 0!==a&&void 0!==a[n]&&void 0!==a[n][i]&&(M=a[n][i]),{categoriesList:M,taxonomyList:void 0!==a?a.taxonomy:[],termsList:void 0!==a?a.terms:[]}});Object(B.useEffect)(()=>{if(!r){const e={nonce:uagb_blocks_info.uagb_ajax_nonce};$l({url:uagb_blocks_info.ajax_url,action:"uagb_get_taxonomy",data:e}).then(e=>{x({listInJson:e})})}c&&(void 0===d&&x({overallBorderTopWidth:c}),void 0===g&&x({overallBorderLeftWidth:c}),void 0===m&&x({overallBorderRightWidth:c}),void 0===y&&x({overallBorderBottomWidth:c})),u&&(void 0===f&&x({overallBorderTopLeftRadius:u}),void 0===h&&x({overallBorderTopRightRadius:u}),void 0===v&&x({overallBorderBottomLeftRadius:u}),void 0===_&&x({overallBorderBottomRightRadius:u})),p&&void 0===T&&x({overallBorderColor:p}),b&&void 0===C&&x({overallBorderHColor:b}),s&&void 0===S&&x({overallBorderStyle:s})},[]),Object(B.useEffect)(()=>{he(e)},[w,k,P,G]),Object(B.useEffect)(()=>{Bs()},[G]);const E=Object(B.useMemo)(()=>function(e,t,a){const l=t.replace("uagb/",""),i=a.toLowerCase(),{block_id:o,columns:n,tcolumns:r,mcolumns:s,bgColor:c,titleColor:u,countColor:p,rowGap:b,rowGapTablet:d,rowGapMobile:g,columnGap:m,columnGapTablet:y,columnGapMobile:f,contentTopPadding:h,contentRightPadding:v,contentBottomPadding:_,contentLeftPadding:T,contentTopPaddingTablet:C,contentRightPaddingTablet:S,contentBottomPaddingTablet:w,contentLeftPaddingTablet:k,contentTopPaddingMobile:P,contentRightPaddingMobile:x,contentBottomPaddingMobile:A,contentLeftPaddingMobile:G,contentPaddingUnit:M,mobileContentPaddingUnit:R,tabletContentPaddingUnit:B,titleBottomSpace:U,titleBottomSpaceTablet:E,titleBottomSpaceMobile:O,alignment:L,listStyle:H,seperatorHoverColor:j,listTextColor:F,hoverlistTextColor:z,listBottomMargin:D,listStyleColor:N,hoverlistStyleColor:I,boxShadowColor:V,boxShadowHOffset:W,boxShadowVOffset:q,boxShadowBlur:Z,boxShadowSpread:$,boxShadowPosition:Y,titleFontSize:K,titleFontSizeType:J,titleFontSizeMobile:X,titleFontSizeTablet:Q,titleFontFamily:ee,titleFontWeight:te,titleLineHeightType:le,titleLineHeight:ie,titleLineHeightTablet:oe,titleLineHeightMobile:ne,countFontSize:re,countFontSizeType:se,countFontSizeMobile:ce,countFontSizeTablet:ue,countFontFamily:pe,countFontWeight:be,countLineHeightType:de,countLineHeight:ge,countLineHeightTablet:me,countLineHeightMobile:ye,listFontSize:fe,listFontSizeType:he,listFontSizeMobile:ve,listFontSizeTablet:_e,listFontFamily:Te,listFontWeight:Ce,listLineHeightType:Se,listLineHeight:we,listLineHeightTablet:ke,listLineHeightMobile:Pe,overallBorderHColor:xe,titleFontStyle:Ae,countFontStyle:Ge,listFontStyle:Me,titleTransform:Re,countTransform:Be,listTransform:Ue,titleDecoration:Ee,countDecoration:Oe,listDecoration:Le,titleLetterSpacing:He,titleLetterSpacingTablet:je,titleLetterSpacingMobile:Fe,titleLetterSpacingType:ze,countLetterSpacing:De,countLetterSpacingTablet:Ne,countLetterSpacingMobile:Ie,countLetterSpacingType:Ve,listLetterSpacing:We,listLetterSpacingTablet:qe,listLetterSpacingMobile:Ze,listLetterSpacingType:$e,seperatorStyle:Ye,seperatorWidth:Ke,seperatorThickness:Je,seperatorColor:Xe}=e,Qe=Ps(D,"listBottomMargin",l),et=Ps(n,"columns",l),tt=Ps(r,"tcolumns",l),at=Ps(s,"mcolumns",l),lt=Ps(U,"titleBottomSpace",l),it=Ps(b,"rowGap",l),ot=Ps(m,"columnGap",l),nt=rs(e,"overall",""),rt=rs(e,"overall","tablet"),st=rs(e,"overall","mobile");let ct={},ut={},pt={},bt=Y;"outset"===Y&&(bt=""),ct={".uagb-taxonomy__outer-wrap.uagb-layout-grid":{display:"grid","grid-template-columns":"repeat("+et+", 1fr)","grid-column-gap":ns(ot,"px"),"grid-row-gap":ns(it,"px")},".uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(h,M),"padding-bottom":ns(_,M),"padding-left":ns(T,M),"padding-right":ns(v,M),"background-color":c,"text-align":L,"box-shadow":ns(W,"px")+" "+ns(q,"px")+" "+ns(Z,"px")+" "+ns($,"px")+" "+V+" "+bt},".uagb-layout-grid .uagb-tax-link":{color:p,"font-size":ns(re,se),"font-family":pe,"font-weight":be,"line-height":ns(ge,de),"font-style":Ge,"text-decoration":Oe,"text-transform":Be,"letter-spacing":ns(De,Ve),"pointer-events":"none"},".uagb-layout-grid .uagb-tax-title":{color:u,"margin-top":"0","margin-bottom":ns(lt,"px"),"font-size":ns(K,J),"font-family":ee,"font-weight":te,"line-height":ns(ie,le),"font-style":Ae,"text-decoration":Ee,"text-transform":Re,"letter-spacing":ns(He,ze)},".uagb-layout-list .uagb-tax-list":{"list-style":H,color:N,"font-size":ns(fe,he),"font-family":Te,"font-weight":Ce,"line-height":ns(we,Se),"font-style":Me,"text-decoration":Le,"text-transform":Ue,"letter-spacing":ns(We,$e)},".uagb-layout-list .uagb-tax-list:hover":{color:I},".uagb-layout-list .uagb-tax-link-wrap:hover":{color:I},".uagb-layout-list .uagb-tax-list a.uagb-tax-link":{color:F},".uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover":{color:z},".uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap":{"margin-bottom":ns(Qe,"px")}," .uagb-taxonomy-wrap.uagb-layout-grid":{display:"grid","grid-template-columns":"repeat("+et+", 1fr)","grid-column-gap":ns(ot,"px"),"grid-row-gap":ns(it,"px")}," .uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(h,M),"padding-bottom":ns(_,M),"padding-left":ns(T,M),"padding-right":ns(v,M),"background-color":c,"text-align":L,"box-shadow":ns(W,"px")+" "+ns(q,"px")+" "+ns(Z,"px")+" "+ns($,"px")+" "+V+" "+bt}," .uagb-layout-grid .uagb-tax-title":{color:u,"margin-top":"0","margin-bottom":ns(lt,"px"),"font-size":ns(K,J),"font-family":ee,"font-weight":te,"line-height":ns(ie,le),"font-style":Ae,"text-decoration":Ee,"text-transform":Re}," .uagb-layout-grid .uagb-tax-link":{color:p,"font-size":ns(re,se),"font-family":pe,"font-weight":be,"line-height":ns(ge,de),"font-style":Ge,"text-decoration":Oe,"text-transform":Be}," .uagb-layout-list .uagb-tax-list":{"list-style":H,color:N,"font-size":ns(fe,he),"font-family":Te,"font-weight":Ce,"line-height":ns(we,Se),"font-style":Me,"text-decoration":Le,"text-transform":Ue}," .uagb-layout-list .uagb-tax-list:hover":{color:I}," .uagb-layout-list .uagb-tax-list a.uagb-tax-link":{color:F}," .uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover":{color:z}," .uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap":{"margin-bottom":ns(Qe,"px")}},"none"!==Ye&&(ct[" .uagb-layout-list .uagb-tax-separator"]={"border-top-color":Xe,"border-top-style":Ye,"border-top-width":ns(Je,"px"),width:ns(Ke,"%")},ct[" .uagb-layout-list .uagb-tax-separator:hover"]={"border-top-color":j},ct[".uagb-layout-list .uagb-tax-separator"]={"border-top-color":Xe,"border-top-style":Ye,"border-top-width":ns(Je,"px"),width:ns(Ke,"%")},ct[".uagb-layout-list .uagb-tax-separator:hover"]={"border-top-color":j}),ct[" .uagb-layout-list .uagb-tax-separator:hover"]={"border-top-color":j},ct[".uagb-layout-list .uagb-tax-separator:hover"]={"border-top-color":j},ct[" .uagb-taxomony-box"]=nt,ct[" .uagb-taxomony-box:hover"]={"border-color":xe},pt={".uagb-taxonomy__outer-wrap.uagb-layout-grid":{"grid-template-columns":"repeat("+at+", 1fr)","grid-column-gap":ns(f,"px"),"grid-row-gap":ns(g,"px")},".uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(P,R),"padding-bottom":ns(A,R),"padding-left":ns(G,R),"padding-right":ns(x,R),...st},".uagb-layout-grid .uagb-tax-title":{"font-size":ns(X,J),"line-height":ns(ne,le),"margin-bottom":ns(O,"px"),"letter-spacing":ns(Fe,ze)},".uagb-layout-grid .uagb-tax-link":{"font-size":ns(ce,se),"line-height":ns(ye,de),"letter-spacing":ns(Ie,Ve)},".uagb-layout-list .uagb-tax-list":{"font-size":ns(ve,he),"line-height":ns(Pe,Se),"letter-spacing":ns(Ze,$e)}," .uagb-taxonomy-wrap.uagb-layout-grid":{"grid-template-columns":"repeat("+at+", 1fr)"}," .uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(P,R),"padding-bottom":ns(A,R),"padding-left":ns(G,R),"padding-right":ns(x,R)}," .uagb-layout-grid .uagb-tax-title":{"font-size":ns(X,J),"line-height":ns(ne,le)}," .uagb-layout-grid .uagb-tax-link":{"font-size":ns(ce,se),"line-height":ns(ye,de)}," .uagb-layout-list .uagb-tax-list":{"font-size":ns(ve,he),"line-height":ns(Pe,Se)}},ut={".uagb-taxonomy__outer-wrap.uagb-layout-grid":{"grid-template-columns":"repeat("+tt+", 1fr)","grid-column-gap":ns(y,"px"),"grid-row-gap":ns(d,"px")},".uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(C,B),"padding-bottom":ns(w,B),"padding-left":ns(k,B),"padding-right":ns(S,B),...rt},".uagb-layout-grid .uagb-tax-title":{"font-size":ns(Q,J),"line-height":ns(oe,le),"margin-bottom":ns(E,"px"),"letter-spacing":ns(je,ze)},".uagb-layout-grid .uagb-tax-link":{"font-size":ns(ue,se),"line-height":ns(me,de),"letter-spacing":ns(Ne,Ve)},".uagb-layout-list .uagb-tax-list":{"font-size":ns(_e,he),"line-height":ns(ke,Se),"letter-spacing":ns(qe,$e)}," .uagb-taxonomy-wrap.uagb-layout-grid":{"grid-template-columns":"repeat("+tt+", 1fr)"}," .uagb-layout-grid .uagb-taxomony-box":{"padding-top":ns(C,B),"padding-bottom":ns(w,B),"padding-left":ns(k,B),"padding-right":ns(S,B)}," .uagb-layout-grid .uagb-tax-title":{"font-size":ns(Q,J),"line-height":ns(oe,le)}," .uagb-layout-grid .uagb-tax-link":{"font-size":ns(ue,se),"line-height":ns(me,de)}," .uagb-layout-list .uagb-tax-list":{"font-size":ns(_e,he),"line-height":ns(ke,Se)}};let dt="";const gt=".uagb-block-"+o;return dt=ae(ct,gt),"tablet"!==i&&"mobile"!==i||(dt+=ae(ut,""+gt,!0,"tablet"),"mobile"===i&&(dt+=ae(pt,""+gt,!0,"mobile"))),dt}(a,A,G),[a,G]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:E}),React.createElement(pU,{attributes:a}),t&&React.createElement(yU,SU({},e,{taxonomyList:R,termsList:U})),React.createElement(CU,SU({},e,{categoriesList:M})))});let kU={};kU=Object(j.applyFilters)("uagb/taxonomy-list",ws(kU)),Object(be.registerBlockType)("uagb/taxonomy-list",{...kU,title:Object(r.__)("Taxonomy List","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your content categorized as per post type.","ultimate-addons-for-gutenberg"),icon:se.taxonomy_list,keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("taxonomy","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"taxonomy-list"}):React.createElement(wU,e),save:()=>null});var PU=Object(B.memo)(e=>{let{attributes:t}=e;const{titleLoadGoogleFonts:a,titleFontFamily:l,titleFontWeight:i,prefixLoadGoogleFonts:o,prefixFontFamily:n,prefixFontWeight:r,descLoadGoogleFonts:s,descFontFamily:c,descFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)});let xU="";yt.image&&(xU=yt.image.url);const AU=[{defaultAttributes:yt},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"image",value:{url:xU||uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},{label:"titleSpace",value:10},{label:"prefixSpace",value:11},{label:"descSpace",value:10},{label:"align",value:"center"},{label:"imgPosition",value:"above"},{label:"imgAlign",value:""},{label:"socialEnable",value:!0},{label:"imgStyle",value:"circle"},{label:"imageLeftMargin",value:20},{label:"imageRightMargin",value:20},{label:"imgWidth",value:100},{label:"imgWidthMobile",value:100},{label:"imgWidthTablet",value:100}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 168C58 166.343 59.138 165 60.5418 165H266.259C267.663 165 268.801 166.343 268.801 168C268.801 169.657 267.663 171 266.259 171H60.5418C59.138 171 58 169.657 58 168Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M84 189C84 187.343 85.1317 186 86.5276 186H240.24C241.636 186 242.768 187.343 242.768 189C242.768 190.657 241.636 192 240.24 192H86.5276C85.1317 192 84 190.657 84 189Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86 125.003C86 122.792 87.6678 121 89.7252 121H237.04C239.097 121 240.765 122.792 240.765 125.003C240.765 127.213 239.097 129.005 237.04 129.005H89.7252C87.6678 129.005 86 127.213 86 125.003Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M113 147C113 145.343 114.088 144 115.431 144H211.569C212.912 144 214 145.343 214 147C214 148.657 212.912 150 211.569 150H115.431C114.088 150 113 148.657 113 147Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M161.236 56.0245C161.048 56.0467 160.475 56.1101 159.964 56.1655C156.734 56.5158 153.158 57.727 150.272 59.4481C146.6 61.6383 143.615 64.6221 141.424 68.2931C139.716 71.154 138.582 74.4786 138.119 77.98C137.96 79.1788 137.96 82.8471 138.119 84.0459C138.582 87.5474 139.716 90.872 141.424 93.7329C143.615 97.4039 146.6 100.388 150.272 102.578C153.135 104.285 156.461 105.419 159.964 105.881C161.163 106.04 164.833 106.04 166.032 105.881C172.127 105.076 177.293 102.401 181.509 97.8652C183.842 95.3561 185.667 92.2352 186.787 88.84C187.67 86.1636 188 84.0325 188 81.013C188 78.7792 187.906 77.7923 187.505 75.8276C186.129 69.0915 181.799 63.0716 175.723 59.4481C172.89 57.7585 169.512 56.6008 166.13 56.1603C165.272 56.0486 161.843 55.9534 161.236 56.0245ZM165.2 67.0181C167.615 67.6483 169.781 69.4215 170.882 71.6696C171.564 73.0622 171.74 73.8566 171.74 75.5341C171.74 76.688 171.701 77.0988 171.527 77.7355C170.858 80.1867 169.112 82.313 166.864 83.4142C165.976 83.8492 164.685 84.2416 164.141 84.2416C163.559 84.2416 163.967 84.3436 165.117 84.4859C170.303 85.1276 174.852 87.9503 177.723 92.3078C178.483 93.4621 179.477 95.5224 179.396 95.7772C179.362 95.884 178.888 96.3954 178.343 96.9135C175.018 100.073 171.021 102.077 166.522 102.839C165.415 103.026 164.842 103.063 162.998 103.063C161.154 103.063 160.581 103.026 159.474 102.839C154.975 102.077 150.978 100.073 147.653 96.9135C147.108 96.3954 146.634 95.884 146.6 95.7772C146.519 95.5224 147.513 93.4621 148.273 92.3078C151.144 87.9503 155.693 85.1276 160.879 84.4859C162.029 84.3436 162.437 84.2416 161.855 84.2416C161.311 84.2416 160.02 83.8492 159.132 83.4142C156.884 82.313 155.138 80.1867 154.469 77.7355C154.295 77.0988 154.255 76.688 154.255 75.5341C154.255 73.8563 154.432 73.0618 155.114 71.6696C156.325 69.1968 158.697 67.3905 161.406 66.877C162.429 66.6832 164.164 66.7477 165.2 67.0181Z" fill="#B6B6B6"/> <circle cx="133" cy="212" r="5" fill="#B6B6B6"/> <circle cx="148" cy="212" r="5" fill="#B6B6B6"/> <circle cx="163" cy="212" r="5" fill="#B6B6B6"/> <circle cx="178" cy="212" r="5" fill="#B6B6B6"/> <circle cx="193" cy="212" r="5" fill="#B6B6B6"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"image",value:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},{label:"titleSpace",value:5},{label:"prefixSpace",value:13},{label:"descSpace",value:20},{label:"align",value:"center"},{label:"imgPosition",value:"above"},{label:"imgAlign",value:""},{label:"socialEnable",value:!1},{label:"imgStyle",value:"circle"},{label:"imageLeftMargin",value:20},{label:"imageRightMargin",value:20},{label:"imgWidth",value:100},{label:"imgWidthMobile",value:100},{label:"imgWidthTablet",value:100}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M58 180C58 178.343 59.138 177 60.5418 177H266.259C267.663 177 268.801 178.343 268.801 180C268.801 181.657 267.663 183 266.259 183H60.5418C59.138 183 58 181.657 58 180Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M84 199.009C84 197.352 85.1317 196.009 86.5276 196.009H240.24C241.636 196.009 242.768 197.352 242.768 199.009C242.768 200.666 241.636 202.009 240.24 202.009H86.5276C85.1317 202.009 84 200.666 84 199.009Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M86 141.003C86 138.792 87.6678 137 89.7252 137H237.04C239.097 137 240.765 138.792 240.765 141.003C240.765 143.213 239.097 145.005 237.04 145.005H89.7252C87.6678 145.005 86 143.213 86 141.003Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M113 159C113 157.343 114.088 156 115.431 156H211.569C212.912 156 214 157.343 214 159C214 160.657 212.912 162 211.569 162H115.431C114.088 162 113 160.657 113 159Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M161.236 70.0245C161.048 70.0467 160.475 70.1101 159.964 70.1655C156.734 70.5158 153.158 71.727 150.272 73.4481C146.6 75.6383 143.615 78.6221 141.424 82.2931C139.716 85.154 138.582 88.4786 138.119 91.98C137.96 93.1788 137.96 96.8471 138.119 98.0459C138.582 101.547 139.716 104.872 141.424 107.733C143.615 111.404 146.6 114.388 150.272 116.578C153.135 118.285 156.461 119.419 159.964 119.881C161.163 120.04 164.833 120.04 166.032 119.881C172.127 119.076 177.293 116.401 181.509 111.865C183.842 109.356 185.667 106.235 186.787 102.84C187.67 100.164 188 98.0325 188 95.013C188 92.7792 187.906 91.7923 187.505 89.8276C186.129 83.0915 181.799 77.0716 175.723 73.4481C172.89 71.7585 169.512 70.6008 166.13 70.1603C165.272 70.0486 161.843 69.9534 161.236 70.0245ZM165.2 81.0181C167.615 81.6483 169.781 83.4215 170.882 85.6696C171.564 87.0622 171.74 87.8566 171.74 89.5341C171.74 90.688 171.701 91.0988 171.527 91.7355C170.858 94.1867 169.112 96.313 166.864 97.4142C165.976 97.8492 164.685 98.2416 164.141 98.2416C163.559 98.2416 163.967 98.3436 165.117 98.4859C170.303 99.1276 174.852 101.95 177.723 106.308C178.483 107.462 179.477 109.522 179.396 109.777C179.362 109.884 178.888 110.395 178.343 110.913C175.018 114.073 171.021 116.077 166.522 116.839C165.415 117.026 164.842 117.063 162.998 117.063C161.154 117.063 160.581 117.026 159.474 116.839C154.975 116.077 150.978 114.073 147.653 110.913C147.108 110.395 146.634 109.884 146.6 109.777C146.519 109.522 147.513 107.462 148.273 106.308C151.144 101.95 155.693 99.1276 160.879 98.4859C162.029 98.3436 162.437 98.2416 161.855 98.2416C161.311 98.2416 160.02 97.8492 159.132 97.4142C156.884 96.313 155.138 94.1867 154.469 91.7355C154.295 91.0988 154.255 90.688 154.255 89.5341C154.255 87.8563 154.432 87.0618 155.114 85.6696C156.325 83.1968 158.697 81.3905 161.406 80.877C162.429 80.6832 164.164 80.7477 165.2 81.0181Z" fill="#B6B6B6"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"image",value:{url:uagb_blocks_info.uagb_url+"/admin/assets/images/placeholder.png"}},{label:"titleSpace",value:5},{label:"prefixSpace",value:13},{label:"descSpace",value:20},{label:"align",value:"left"},{label:"imgPosition",value:"left"},{label:"imgAlign",value:"middle"},{label:"socialEnable",value:!0},{label:"imgStyle",value:"circle"},{label:"imageLeftMargin",value:20},{label:"imageRightMargin",value:20},{label:"imgWidth",value:100},{label:"imgWidthMobile",value:100},{label:"imgWidthTablet",value:100}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M76.2361 98.0245C76.0477 98.0467 75.4751 98.1101 74.9637 98.1655C71.7343 98.5158 68.1582 99.727 65.2725 101.448C61.5998 103.638 58.6148 106.622 56.4236 110.293C54.7159 113.154 53.5816 116.479 53.1189 119.98C52.9604 121.179 52.9604 124.847 53.1189 126.046C53.5816 129.547 54.7159 132.872 56.4236 135.733C58.6148 139.404 61.5998 142.388 65.2725 144.578C68.1346 146.285 71.4607 147.419 74.9637 147.881C76.163 148.04 79.8329 148.04 81.0322 147.881C87.127 147.076 92.2932 144.401 96.5095 139.865C98.8421 137.356 100.667 134.235 101.787 130.84C102.67 128.164 103 126.033 103 123.013C103 120.779 102.906 119.792 102.505 117.828C101.129 111.091 96.7993 105.072 90.7234 101.448C87.8905 99.7585 84.5123 98.6008 81.1301 98.1603C80.2717 98.0486 76.843 97.9534 76.2361 98.0245ZM80.2003 109.018C82.6151 109.648 84.7812 111.421 85.8821 113.67C86.564 115.062 86.7405 115.857 86.7405 117.534C86.7405 118.688 86.7007 119.099 86.5269 119.735C85.8579 122.187 84.1121 124.313 81.8642 125.414C80.9763 125.849 79.6846 126.242 79.1405 126.242C78.5592 126.242 78.9667 126.344 80.1172 126.486C85.3027 127.128 89.8517 129.95 92.7225 134.308C93.483 135.462 94.4766 137.522 94.3958 137.777C94.3618 137.884 93.8881 138.395 93.3429 138.913C90.0182 142.073 86.0209 144.077 81.5216 144.839C80.4153 145.026 79.8418 145.063 77.998 145.063C76.1541 145.063 75.5806 145.026 74.4743 144.839C69.975 144.077 65.9777 142.073 62.653 138.913C62.1078 138.395 61.6341 137.884 61.6001 137.777C61.5193 137.522 62.5129 135.462 63.2734 134.308C66.1442 129.95 70.6932 127.128 75.8788 126.486C77.0292 126.344 77.4367 126.242 76.8554 126.242C76.3113 126.242 75.0196 125.849 74.1317 125.414C71.8838 124.313 70.138 122.187 69.469 119.735C69.2953 119.099 69.2554 118.688 69.2554 117.534C69.2554 115.856 69.4319 115.062 70.114 113.67C71.3255 111.197 73.697 109.39 76.4058 108.877C77.4286 108.683 79.1639 108.748 80.2003 109.018Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118 136C118 134.343 118.853 133 119.905 133H274.095C275.147 133 276 134.343 276 136C276 137.657 275.147 139 274.095 139H119.905C118.853 139 118 137.657 118 136Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118 154C118 152.343 118.848 151 119.895 151H235.105C236.152 151 237 152.343 237 154C237 155.657 236.152 157 235.105 157H119.895C118.848 157 118 155.657 118 154Z" fill="#D2D2D2"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118 93C118 90.7909 119.229 89 120.744 89H229.256C230.771 89 232 90.7909 232 93C232 95.2091 230.771 97 229.256 97H120.744C119.229 97 118 95.2091 118 93Z" fill="#B6B6B6"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M118 112C118 110.343 118.797 109 119.781 109H190.219C191.203 109 192 110.343 192 112C192 113.657 191.203 115 190.219 115H119.781C118.797 115 118 113.657 118 112Z" fill="#B6B6B6"/> <circle cx="123" cy="176" r="5" fill="#B6B6B6"/> <circle cx="138" cy="176" r="5" fill="#B6B6B6"/> <circle cx="153" cy="176" r="5" fill="#B6B6B6"/> <circle cx="168" cy="176" r="5" fill="#B6B6B6"/> <circle cx="183" cy="176" r="5" fill="#B6B6B6"/> </svg>'}];var GU=Object(j.applyFilters)("uag_team_presets",AU);function MU(){return(MU=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}let RU=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}];var BU,UU=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l}=e,{align:i,tag:o,titleColor:n,prefixColor:s,descColor:c,titleFontFamily:u,titleFontWeight:p,titleFontSizeType:b,titleFontSize:d,titleFontSizeMobile:g,titleFontSizeTablet:m,titleLineHeightType:y,titleLineHeight:f,titleLineHeightMobile:h,titleLineHeightTablet:v,prefixFontFamily:_,prefixFontWeight:T,prefixFontSizeType:C,prefixFontSize:S,prefixFontSizeMobile:w,prefixFontSizeTablet:k,prefixLineHeightType:P,prefixLineHeight:x,prefixLineHeightMobile:A,prefixLineHeightTablet:G,descFontFamily:M,descFontWeight:R,descFontSizeType:B,descFontSize:U,descFontSizeMobile:E,descFontSizeTablet:O,descLineHeightType:L,descLineHeight:H,descLineHeightMobile:j,descLineHeightTablet:z,socialFontSize:D,socialFontSizeType:N,socialFontSizeMobile:I,socialFontSizeTablet:V,titleLoadGoogleFonts:W,prefixLoadGoogleFonts:q,descLoadGoogleFonts:Z,image:$,imgStyle:Y,imgAlign:K,imgSize:J,imgWidth:X,imgWidthTablet:Q,imgWidthMobile:ee,imgPosition:te,titleSpace:ae,titleSpaceTablet:le,titleSpaceMobile:ie,descSpace:oe,descSpaceTablet:ne,descSpaceMobile:re,prefixSpace:se,prefixSpaceTablet:ce,prefixSpaceMobile:ue,twitterIcon:pe,fbIcon:be,linkedinIcon:de,pinIcon:me,twitterLink:ye,fbLink:fe,linkedinLink:he,pinLink:ve,socialColor:_e,socialHoverColor:Te,socialSpace:Se,socialSpaceTablet:we,socialSpaceMobile:ke,socialTarget:Pe,socialEnable:xe,stack:Ae,imageLeftMargin:Ge,imageRightMargin:Me,imageTopMargin:Re,imageBottomMargin:Be,imageMarginTopTablet:Ue,imageMarginRightTablet:Oe,imageMarginBottomTablet:He,imageMarginLeftTablet:je,imageMarginTopMobile:ze,imageMarginRightMobile:De,imageMarginBottomMobile:Ne,imageMarginLeftMobile:Ie,imageMarginUnit:Ve,tabletImageMarginUnit:We,mobileImageMarginUnit:qe,spacingLink:Ze,titleTransform:$e,titleDecoration:Ye,descTransform:Ke,descDecoration:Je,prefixTransform:Xe,prefixDecoration:Qe,titleFontStyle:et,descFontStyle:tt,prefixFontStyle:at,titleLetterSpacing:lt,titleLetterSpacingTablet:it,titleLetterSpacingMobile:ot,titleLetterSpacingType:nt,prefixLetterSpacing:rt,prefixLetterSpacingTablet:st,prefixLetterSpacingMobile:ct,prefixLetterSpacingType:ut,descLetterSpacing:pt,descLetterSpacingTablet:bt,descLetterSpacingMobile:dt,descLetterSpacingType:gt}=a;return $&&$.sizes&&(RU=F($.sizes)),React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Title Tag","ultimate-addons-for-gutenberg"),data:{value:o,label:"tag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"div",label:Object(r.__)("Div","ultimate-addons-for-gutenberg")}]}),"above"===te&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:i,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Yl,{onSelectImage:e=>{if(e&&e.url)if(e.type&&"image"===e.type){if(e.sizes){const t=F(e.sizes);RU=t}t({image:e})}else t({image:null});else t({image:null})},backgroundImage:$,onRemoveImage:()=>{t({image:""})}}),$&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Image Position","ultimate-addons-for-gutenberg"),data:{value:te,label:"imgPosition"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"above",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),"above"!==te&&$&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Stack On","ultimate-addons-for-gutenberg"),data:{value:Ae,label:"stack"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}]}),$&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Image Style","ultimate-addons-for-gutenberg"),data:{value:Y,label:"imgStyle"},className:"uagb-multi-button-alignment-control",options:[{value:"normal",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"circle",label:Object(r.__)("Circle","ultimate-addons-for-gutenberg")},{value:"square",label:Object(r.__)("Square","ultimate-addons-for-gutenberg")}]}),te&&"above"!==te&&$&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:K,label:"imgAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"middle",label:Object(r.__)("Middle","ultimate-addons-for-gutenberg")}]}),$&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{value:J,label:"imgSize"},setAttributes:t,options:RU}),React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:X,label:"imgWidth"},tablet:{value:Q,label:"imgWidthTablet"},mobile:{value:ee,label:"imgWidthMobile"}},min:0,max:500,displayUnit:!1,setAttributes:t}))),React.createElement(Fe,{title:Object(r.__)("Social Links","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Social Links","ultimate-addons-for-gutenberg"),checked:xe,onChange:()=>t({socialEnable:!xe})}),xe&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Open Links in New Window","ultimate-addons-for-gutenberg"),checked:Pe,onChange:()=>t({socialTarget:!Pe})}),React.createElement("p",{className:"components-base-control__label"},Object(r.__)("Item 1","ultimate-addons-for-gutenberg")),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:pe,onChange:e=>t({twitterIcon:e})}),pe&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:ye,data:{value:ye,label:"twitterLink"},setAttributes:t,onChange:e=>t({twitterLink:e}),placeholder:Object(r.__)("Enter Item 1 URL","ultimate-addons-for-gutenberg")})),React.createElement("p",{className:"components-base-control__label"},Object(r.__)("Item 2","ultimate-addons-for-gutenberg")),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:be,onChange:e=>t({fbIcon:e})}),be&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:fe,data:{value:fe,label:"fbLink"},setAttributes:t,onChange:e=>t({fbLink:e}),placeholder:Object(r.__)("Enter Item 2 URL","ultimate-addons-for-gutenberg")})),React.createElement("p",{className:"components-base-control__label"},Object(r.__)("Item 3","ultimate-addons-for-gutenberg")),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:de,onChange:e=>t({linkedinIcon:e})}),de&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:he,data:{value:he,label:"linkedinLink"},setAttributes:t,onChange:e=>t({linkedinLink:e}),placeholder:Object(r.__)("Enter Item 3 URL","ultimate-addons-for-gutenberg")})),React.createElement("p",{className:"components-base-control__label"},Object(r.__)("Item 4","ultimate-addons-for-gutenberg")),React.createElement(Ur,{label:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),value:me,onChange:e=>t({pinIcon:e})}),me&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("URL","ultimate-addons-for-gutenberg"),value:ve,data:{value:ve,label:"pinLink"},setAttributes:t,onChange:e=>t({pinLink:e}),placeholder:Object(r.__)("Enter Item 4 URL","ultimate-addons-for-gutenberg")})))),React.createElement(Fe,{title:Object(r.__)("Presets","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(zr,{setAttributes:t,presets:GU,presetInputType:"radioImage"})),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{title:Object(r.__)("Dynamic Content","ultimate-addons-for-gutenberg")},React.createElement(Qr,{control:{title:Object(r.__)("Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience.","ultimate-addons-for-gutenberg"),renderAs:"list",campaign:"dynamic-content"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:n||"",data:{value:n,label:"titleColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:W,label:"titleLoadGoogleFonts"},fontFamily:{value:u,label:"titleFontFamily"},fontWeight:{value:p,label:"titleFontWeight"},fontStyle:{value:et,label:"titleFontStyle"},transform:{value:$e,label:"titleTransform"},decoration:{value:Ye,label:"titleDecoration"},fontSizeType:{value:b,label:"titleFontSizeType"},fontSize:{value:d,label:"titleFontSize"},fontSizeMobile:{value:g,label:"titleFontSizeMobile"},fontSizeTablet:{value:m,label:"titleFontSizeTablet"},lineHeightType:{value:y,label:"titleLineHeightType"},lineHeight:{value:f,label:"titleLineHeight"},lineHeightMobile:{value:h,label:"titleLineHeightMobile"},lineHeightTablet:{value:v,label:"titleLineHeightTablet"},letterSpacing:{value:lt,label:"titleLetterSpacing"},letterSpacingTablet:{value:it,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:ot,label:"titleLetterSpacingMobile"},letterSpacingType:{value:nt,label:"titleLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:ae,label:"titleSpace"},tablet:{value:le,label:"titleSpaceTablet"},mobile:{value:ie,label:"titleSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Designation","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:s||"",data:{value:s,label:"prefixColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:q,label:"prefixLoadGoogleFonts"},fontFamily:{value:_,label:"prefixFontFamily"},fontWeight:{value:T,label:"prefixFontWeight"},fontStyle:{value:at,label:"prefixFontStyle"},transform:{value:Xe,label:"prefixTransform"},decoration:{value:Qe,label:"prefixDecoration"},fontSizeType:{value:C,label:"prefixFontSizeType"},fontSize:{value:S,label:"prefixFontSize"},fontSizeMobile:{value:w,label:"prefixFontSizeMobile"},fontSizeTablet:{value:k,label:"prefixFontSizeTablet"},lineHeightType:{value:P,label:"prefixLineHeightType"},lineHeight:{value:x,label:"prefixLineHeight"},lineHeightMobile:{value:A,label:"prefixLineHeightMobile"},lineHeightTablet:{value:G,label:"prefixLineHeightTablet"},letterSpacing:{value:rt,label:"prefixLetterSpacing"},letterSpacingTablet:{value:st,label:"prefixLetterSpacingTablet"},letterSpacingMobile:{value:ct,label:"prefixLetterSpacingMobile"},letterSpacingType:{value:ut,label:"prefixLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:se,label:"prefixSpace"},tablet:{value:ce,label:"prefixSpaceTablet"},mobile:{value:ue,label:"prefixSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Description","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"descColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Z,label:"descLoadGoogleFonts"},fontFamily:{value:M,label:"descFontFamily"},fontWeight:{value:R,label:"descFontWeight"},fontStyle:{value:tt,label:"descFontStyle"},transform:{value:Ke,label:"descTransform"},decoration:{value:Je,label:"descDecoration"},fontSizeType:{value:B,label:"descFontSizeType"},fontSize:{value:U,label:"descFontSize"},fontSizeMobile:{value:E,label:"descFontSizeMobile"},fontSizeTablet:{value:O,label:"descFontSizeTablet"},lineHeightType:{value:L,label:"descLineHeightType"},lineHeight:{value:H,label:"descLineHeight"},lineHeightMobile:{value:j,label:"descLineHeightMobile"},lineHeightTablet:{value:z,label:"descLineHeightTablet"},letterSpacing:{value:pt,label:"descLetterSpacing"},letterSpacingTablet:{value:bt,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:dt,label:"descLetterSpacingMobile"},letterSpacingType:{value:gt,label:"descLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:oe,label:"descSpace"},tablet:{value:ne,label:"descSpaceTablet"},mobile:{value:re,label:"descSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t})),React.createElement(React.Fragment,null,xe&&React.createElement(Fe,{title:Object(r.__)("Social Icons","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:D,label:"socialFontSize"},tablet:{value:V,label:"socialFontSizeTablet"},mobile:{value:I,label:"socialFontSizeMobile"}},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("EM","ultimate-addons-for-gutenberg"),unitValue:"em"}],unit:{value:N,label:"socialFontSizeType"},min:0,limitMax:{px:100,em:100},displayUnit:!0,setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Icon Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Se,label:"socialSpace"},tablet:{value:we,label:"socialSpaceTablet"},mobile:{value:ke,label:"socialSpaceMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:_e||"",data:{value:_e,label:"socialColor"},setAttributes:t}),hover:React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Te||"",data:{value:Te,label:"socialHoverColor"},setAttributes:t}),disableBottomSeparator:!0}))),$&&React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,MU({},e,{label:Object(r.__)("Image Margin","ultimate-addons-for-gutenberg"),valueTop:{value:Re,label:"imageTopMargin"},valueRight:{value:Me,label:"imageRightMargin"},valueBottom:{value:Be,label:"imageBottomMargin"},valueLeft:{value:Ge,label:"imageLeftMargin"},valueTopTablet:{value:Ue,label:"imageMarginTopTablet"},valueRightTablet:{value:Oe,label:"imageMarginRightTablet"},valueBottomTablet:{value:He,label:"imageMarginBottomTablet"},valueLeftTablet:{value:je,label:"imageMarginLeftTablet"},valueTopMobile:{value:ze,label:"imageMarginTopMobile"},valueRightMobile:{value:De,label:"imageMarginRightMobile"},valueBottomMobile:{value:Ne,label:"imageMarginBottomMobile"},valueLeftMobile:{value:Ie,label:"imageMarginLeftMobile"},unit:{value:Ve,label:"imageMarginUnit"},mUnit:{value:qe,label:"mobileImageMarginUnit"},tUnit:{value:We,label:"tabletImageMarginUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Ze,label:"spacingLink"}})))),React.createElement(il,MU({},rl,{parentProps:e})))))}),EU=a(146),OU=0,LU={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},HU={};HU.locals=EU.a.locals||{},HU.use=function(){return OU++||(BU=ke()(EU.a,LU)),HU},HU.unuse=function(){OU>0&&!--OU&&(BU(),BU=null)};var jU=HU,FU=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(jU.use(),()=>{jU.unuse()}),[]);const{className:t,setAttributes:a,attributes:l,mergeBlocks:i,insertBlocksAfter:o,onReplace:n,deviceType:s}=e,{align:c,tag:u,title:p,prefix:b,description_text:d,image:g,imgStyle:m,imgSize:y,imgPosition:f,twitterIcon:h,fbIcon:v,linkedinIcon:_,pinIcon:T,socialTarget:C,socialEnable:S,stack:w,imgWidth:k,block_id:P}=l,x=React.createElement(React.Fragment,null,React.createElement(ge.RichText,{tagName:u,value:p,className:"uagb-team__title",onChange:e=>a({title:e}),multiline:!1,placeholder:Object(r.__)("Write a Title","ultimate-addons-for-gutenberg"),onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])}),React.createElement(ge.RichText,{tagName:"div",value:b,className:"uagb-team__prefix",onChange:e=>a({prefix:e}),onMerge:i,placeholder:Object(r.__)("Write a Designation","ultimate-addons-for-gutenberg"),onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])})),A=(e,t)=>{const l=t?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:"#","aria-label":e,target:l,title:"",rel:"noopener noreferrer"},Ce(e,a)))},G=React.createElement("ul",{className:"uagb-team__social-list"},""!==h&&A(h,C),""!==v&&A(v,C),""!==_&&A(_,C),""!==T&&A(T,C)),M=React.createElement(ge.RichText,{tagName:"p",value:d,placeholder:Object(r.__)("Write a Description","ultimate-addons-for-gutenberg"),className:"uagb-team__desc",onChange:e=>a({description_text:e}),onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])});let R="",U="";g&&(R=g.sizes,U=g.sizes&&R[y]?R[y].url:g.url);let E="";return""!==U&&(E=React.createElement("img",{className:"uagb-team__image-crop-"+m,src:U,alt:g.alt?g.alt:"",height:k,width:k,loading:"lazy"})),React.createElement("div",{className:Be()(t,"uagb-team__image-position-"+f,"uagb-team__align-"+c,"uagb-team__stack-"+w,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+P)},"left"===f&&E,React.createElement("div",{className:"uagb-team__content"},"above"===f&&E,x,M,S&&G),"right"===f&&E)}),zU=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o},clientId:n,name:r,deviceType:s}=e;Object(B.useEffect)(()=>{he(e)},[l,i,o,s]),Object(B.useEffect)(()=>{Bs()},[s]);const c=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,tag:r,align:s,titleColor:c,prefixColor:u,descColor:p,titleFontFamily:b,titleFontWeight:d,titleFontSizeType:g,titleFontSize:m,titleFontSizeMobile:y,titleFontSizeTablet:f,titleLineHeightType:h,titleLineHeight:v,titleLineHeightTablet:_,titleLineHeightMobile:T,prefixFontFamily:C,prefixFontWeight:S,prefixFontSizeType:w,prefixFontSize:k,prefixFontSizeMobile:P,prefixFontSizeTablet:x,prefixLineHeightType:A,prefixLineHeight:G,prefixLineHeightTablet:M,prefixLineHeightMobile:R,descFontFamily:B,descFontWeight:U,descFontSizeType:E,descFontSize:O,descFontSizeMobile:L,descFontSizeTablet:H,descLineHeightType:j,descLineHeight:F,descLineHeightTablet:z,descLineHeightMobile:D,socialFontSize:N,socialFontSizeType:I,socialFontSizeMobile:V,socialFontSizeTablet:W,socialSpaceTablet:q,socialSpaceMobile:Z,imgAlign:$,imgWidth:Y,imgWidthTablet:K,imgWidthMobile:J,imgPosition:X,titleSpace:Q,titleSpaceTablet:ee,titleSpaceMobile:te,descSpace:le,descSpaceTablet:ie,descSpaceMobile:oe,prefixSpace:ne,prefixSpaceTablet:re,prefixSpaceMobile:se,socialColor:ce,socialHoverColor:ue,socialSpace:pe,imageLeftMargin:be,imageRightMargin:de,imageTopMargin:ge,imageBottomMargin:me,imageMarginTopTablet:ye,imageMarginRightTablet:fe,imageMarginBottomTablet:he,imageMarginLeftTablet:ve,imageMarginTopMobile:_e,imageMarginRightMobile:Te,imageMarginBottomMobile:Ce,imageMarginLeftMobile:Se,imageMarginUnit:we,tabletImageMarginUnit:ke,mobileImageMarginUnit:Pe,titleTransform:xe,titleDecoration:Ae,descTransform:Ge,descDecoration:Me,prefixTransform:Re,prefixDecoration:Be,titleFontStyle:Ue,descFontStyle:Ee,prefixFontStyle:Oe,titleLetterSpacing:Le,titleLetterSpacingTablet:He,titleLetterSpacingMobile:je,titleLetterSpacingType:Fe,prefixLetterSpacing:ze,prefixLetterSpacingTablet:De,prefixLetterSpacingMobile:Ne,prefixLetterSpacingType:Ie,descLetterSpacing:Ve,descLetterSpacingTablet:We,descLetterSpacingMobile:qe,descLetterSpacingType:Ze}=e,$e=Ps(Y,"imgWidth",i),Ye=Ps(Q,"titleSpace",i),Ke=Ps(ne,"prefixSpace",i),Je=Ps(le,"descSpace",i),Xe=Ps(N,"socialFontSize",i),Qe=Ps(pe,"socialSpace",i),et=isNaN(q)?Qe:q,tt=isNaN(Z)?et:Z;let at={},lt={};const it={" p.uagb-team__desc.block-editor-rich-text__editable":{"font-size":ns(O,E),"line-height":ns(F,j),"font-family":B,"font-style":Ee,"text-decoration":Me,"text-transform":Ge,"font-weight":U,color:p,"margin-bottom":ns(Je,"px"),"margin-top":ns(Ke,"px"),"letter-spacing":ns(Ve,Ze)}," .rich-text.block-editor-rich-text__editable.uagb-team__prefix":{"font-family":C,"font-style":Oe,"text-decoration":Be,"text-transform":Re,"font-weight":S,"font-size":ns(k,w),"line-height":ns(G,A),color:u,"letter-spacing":ns(ze,Ie)}," .uagb-team__social-icon a":{color:ce,"font-size":ns(Xe,I),width:ns(Xe,I),height:ns(Xe,I),"line-height":ns(Xe,I)}," .uagb-team__social-icon svg":{fill:ce,width:ns(Xe,I),height:ns(Xe,I)}," .uagb-team__social-icon:hover a":{color:ue}," .uagb-team__social-icon:hover svg":{fill:ue},".uagb-team__image-position-left .uagb-team__social-icon":{"margin-right":ns(Qe,"px"),"margin-left":"0"},".uagb-team__image-position-right .uagb-team__social-icon":{"margin-left":ns(Qe,"px"),"margin-right":"0"},".uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon":{"margin-right":ns(Qe/2,"px"),"margin-left":ns(Qe/2,"px")},".uagb-team__image-position-above.uagb-team__align-left .uagb-team__social-icon":{"margin-right":ns(Qe,"px"),"margin-left":"0"},".uagb-team__image-position-above.uagb-team__align-right .uagb-team__social-icon":{"margin-left":ns(Qe,"px"),"margin-right":"0"}," .uagb-team__image-wrap":{"margin-top":ns(ge,we),"margin-bottom":ns(me,we),"margin-left":ns(be,we),"margin-right":ns(de,we),width:ns($e,"px")}," img":{"margin-top":ns(ge,we),"margin-bottom":ns(me,we),"margin-left":ns(be,we),"margin-right":ns(de,we),width:ns($e,"px"),height:ns($e,"px")}};"above"===X&&("center"===s?(it[" img"]["margin-left"]="auto",it[" img"]["margin-right"]="auto",it[" .uagb-team__social-list"]={"justify-content":"center"}):"left"===s?(it[" img"]["margin-right"]="auto",it[" .uagb-team__social-list"]={"justify-content":"flex-start"}):"right"===s&&(it[" .uagb-team__social-list"]={"justify-content":"flex-end"},it[" img"]["margin-left"]="auto")),"above"!==X&&("middle"===$?(it[" img"]["align-self"]="center",it[" .uagb-team__content"]={"align-self":"center"}):it[" img"]["align-self"]="flex-start"),it[" "+r+".rich-text.block-editor-rich-text__editable.uagb-team__title"]={"font-family":b,"font-style":Ue,"text-decoration":Ae,"text-transform":xe,"font-weight":d,"font-size":ns(m,g),"line-height":ns(v,h),color:c,"margin-bottom":ns(Ye,"px"),"letter-spacing":ns(Le,Fe)},lt={" img":{width:ns(J,"px"),height:ns(J,"px")}," p.uagb-team__desc.block-editor-rich-text__editable":{"font-size":ns(L,E),"margin-top":ns(se,"px"),"margin-bottom":ns(oe,"px"),"letter-spacing":ns(qe,Ze),"line-height":ns(D,j)}," .rich-text.block-editor-rich-text__editable.uagb-team__prefix":{"font-size":ns(P,w),"letter-spacing":ns(Ne,Ie),"line-height":ns(R,A)}," .uagb-team__social-icon a":{"font-size":ns(V,I),width:ns(V,I),height:ns(V,I),"line-height":ns(V,I)}," .uagb-team__social-icon svg":{width:ns(V,I),height:ns(V,I)}," .uagb-team__image-wrap":{"margin-top":ns(_e,Pe),"margin-bottom":ns(Ce,Pe),"margin-left":ns(Se,Pe),"margin-right":ns(Te,Pe)},".uagb-team__image-position-left .uagb-team__social-icon":{"margin-right":ns(Z,"px"),"margin-left":"0"},".uagb-team__image-position-right .uagb-team__social-icon":{"margin-left":ns(Z,"px"),"margin-right":"0"},".uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon":{"margin-right":ns(tt/2,"px"),"margin-left":ns(tt/2,"px")}},lt[" "+r+".rich-text.block-editor-rich-text__editable.uagb-team__title"]={"margin-bottom":ns(te,"px"),"letter-spacing":ns(je,Fe),"line-height":ns(T,h)},at={" img":{width:ns(K,"px"),height:ns(K,"px")}," p.uagb-team__desc.block-editor-rich-text__editable":{"font-size":ns(H,E),"margin-top":ns(re,"px"),"margin-bottom":ns(ie,"px"),"letter-spacing":ns(We,Ze),"line-height":ns(z,j)}," .rich-text.block-editor-rich-text__editable.uagb-team__prefix":{"font-size":ns(x,w),"letter-spacing":ns(De,Ie),"line-height":ns(M,A)}," .uagb-team__social-icon a":{"font-size":ns(W,I),width:ns(W,I),height:ns(W,I),"line-height":ns(W,I)}," .uagb-team__social-icon svg":{width:ns(W,I),height:ns(W,I)}," .uagb-team__image-wrap":{"margin-top":ns(ye,ke),"margin-bottom":ns(he,ke),"margin-left":ns(ve,ke),"margin-right":ns(fe,ke)},".uagb-team__image-position-left .uagb-team__social-icon":{"margin-right":ns(q,"px"),"margin-left":"0"},".uagb-team__image-position-right .uagb-team__social-icon":{"margin-left":ns(q,"px"),"margin-right":"0"},".uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon":{"margin-right":ns(et/2,"px"),"margin-left":ns(et/2,"px")}},at[" "+r+".rich-text.block-editor-rich-text__editable.uagb-team__title"]={"margin-bottom":ns(ee,"px"),"letter-spacing":ns(He,Fe),"line-height":ns(_,h)},lt[" "+r+".uagb-team__title"]={"font-size":ns(y,g)},at[" "+r+".uagb-team__title"]={"font-size":ns(f,g)};let ot="";const nt=`#block-${t} .uagb-block-${n}`;return ot=ae(it,nt),"tablet"!==o&&"mobile"!==o||(ot+=ae(at,""+nt,!0,"tablet"),"mobile"===o&&(ot+=ae(lt,""+nt,!0,"mobile"))),ot}(a,n,r,s),[a,s]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:c}),React.createElement(PU,{attributes:a}),t&&React.createElement(UU,e),React.createElement(FU,e))});function DU(e,t,a){const l=a?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:t,"aria-label":e,target:l,title:"",rel:"noopener noreferrer"},Ce(e)))}const NU={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center"},tag:{type:"string",default:"h3"},title:{selector:"h1,h2,h3,h4,h5,h6",default:"John Doe"},prefix:{selector:"div.uagb-team__prefix",default:"Designation"},description_text:{selector:"p",default:"Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."},titleColor:{type:"string"},prefixColor:{type:"string",default:"#888888"},descColor:{type:"string"},socialColor:{type:"string",default:"#333"},socialHoverColor:{type:"string"},titleFontFamily:{type:"string",default:"Default"},titleFontWeight:{type:"string"},titleFontSubset:{type:"string"},titleFontSizeType:{type:"string",default:"px"},titleLineHeightType:{type:"string",default:"em"},titleFontSize:{type:"number"},titleFontSizeTablet:{type:"number"},titleFontSizeMobile:{type:"number"},titleLineHeight:{type:"number"},titleLineHeightTablet:{type:"number"},titleLineHeightMobile:{type:"number"},prefixFontFamily:{type:"string",default:"Default"},prefixFontWeight:{type:"string"},prefixFontSubset:{type:"string"},prefixFontSizeType:{type:"string",default:"px"},prefixLineHeightType:{type:"string",default:"em"},prefixFontSize:{type:"number",default:15},prefixFontSizeTablet:{type:"number"},prefixFontSizeMobile:{type:"number"},prefixLineHeight:{type:"number"},prefixLineHeightTablet:{type:"number"},prefixLineHeightMobile:{type:"number"},descFontFamily:{type:"string",default:"Default"},descFontWeight:{type:"string"},descFontSubset:{type:"string"},descFontSizeType:{type:"string",default:"px"},descLineHeightType:{type:"string",default:"em"},descFontSize:{type:"number"},descFontSizeTablet:{type:"number"},descFontSizeMobile:{type:"number"},descLineHeight:{type:"number"},descLineHeightTablet:{type:"number"},descLineHeightMobile:{type:"number"},socialFontSize:{type:"number",default:20},socialFontSizeType:{type:"string",default:"px"},socialFontSizeMobile:{type:"number"},socialFontSizeTablet:{type:"number"},image:{type:"object"},imgStyle:{type:"string",default:"normal"},imgPosition:{type:"string",default:"above"},imgAlign:{type:"string",default:"top"},imgSize:{type:"string",default:"thumbnail"},imgWidth:{type:"number",default:120},titleSpace:{type:"number"},prefixSpace:{type:"number"},descSpace:{type:"number",default:10},imgLeftMargin:{type:"number",default:20},imgRightMargin:{type:"number",default:20},imgTopMargin:{type:"number",default:15},imgBottomMargin:{type:"number",default:15},socialEnable:{type:"boolean",default:!0},socialSpace:{type:"number",default:20},socialTarget:{type:"boolean",default:!1},twitterIcon:{type:"string",default:"fab fa-twitter"},fbIcon:{type:"string",default:"fab fa-facebook"},linkedinIcon:{type:"string",default:"fab fa-linkedin"},pinIcon:{type:"string",default:"fab fa-pinterest"},twitterLink:{type:"string",default:"#"},fbLink:{type:"string",default:"#"},linkedinLink:{type:"string",default:"#"},pinLink:{type:"string",default:"#"},stack:{type:"string",default:"tablet"},titleLoadGoogleFonts:{type:"boolean",default:!1},prefixLoadGoogleFonts:{type:"boolean",default:!1},descLoadGoogleFonts:{type:"boolean",default:!1},imageMarginUnit:{type:"string",default:"px"}};function IU(e,t,a){const l=a?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:t,target:l,title:"",rel:"noopener noreferrer"},Wm(e)))}function VU(e,t,a){const l=a?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:t,"aria-label":e,target:l,title:"",rel:"noopener noreferrer"},Ce(e)))}function WU(e,t,a){const l=a?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:t,target:l,title:"",rel:"noopener noreferrer"},React.createElement("span",{className:e})))}function qU(e,t,a){const l=a?"_blank":"_self";return React.createElement("li",{className:"uagb-team__social-icon"},React.createElement("a",{href:t,"aria-label":e,target:l,title:"",rel:"noopener noreferrer"},Wm(e)))}var ZU=[{attributes:NU,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!=S&&(w=React.createElement("div",{className:Be()("uagb-team__image-wrap","uagb-team__image-crop-"+c)},React.createElement("img",{className:"",src:S,alt:r.alt?r.alt:""}))),React.createElement("div",{className:Be()(e.className,"uagb-team","uagb-team__outer-wrap","uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T),id:"uagb-team-"+t},React.createElement("div",{className:"uagb-team__wrap"},"left"==u&&w,React.createElement("div",{className:"uagb-team__content"},"above"==u&&w,React.createElement("div",{className:"uagb-team__title-wrap"},React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"})),React.createElement("div",{className:"uagb-team__desc-wrap"},React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"})),_&&React.createElement("div",{className:"uagb-team__social-icon-wrap"},React.createElement("ul",{className:"uagb-team__social-list"},""!=p&&WU(p,m,v),""!=b&&WU(b,y,v),""!=d&&WU(d,f,v),""!=g&&WU(g,h,v)))),"right"==u&&w))}},{attributes:NU,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!=S&&(w=React.createElement("div",{className:Be()("uagb-team__image-wrap","uagb-team__image-crop-"+c)},React.createElement("img",{className:"",src:S,alt:r.alt?r.alt:""}))),React.createElement("div",{className:Be()(e.className,"uagb-team","uagb-team__outer-wrap","uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T),id:"uagb-team-"+t},React.createElement("div",{className:"uagb-team__wrap"},"left"==u&&w,React.createElement("div",{className:"uagb-team__content"},"above"==u&&w,React.createElement("div",{className:"uagb-team__title-wrap"},React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"})),React.createElement("div",{className:"uagb-team__desc-wrap"},React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"})),_&&React.createElement("div",{className:"uagb-team__social-icon-wrap"},React.createElement("ul",{className:"uagb-team__social-list"},""!=p&&IU(p,m,v),""!=b&&IU(b,y,v),""!=d&&IU(d,f,v),""!=g&&IU(g,h,v)))),"right"==u&&w))}},{attributes:NU,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!=S&&(w=React.createElement("div",{className:Be()("uagb-team__image-wrap","uagb-team__image-crop-"+c)},React.createElement("img",{className:"",src:S,alt:r.alt?r.alt:""}))),React.createElement("div",{className:Be()(e.className,"uagb-team","uagb-team__outer-wrap","uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T,"uagb-block-"+t)},React.createElement("div",{className:"uagb-team__wrap"},"left"==u&&w,React.createElement("div",{className:"uagb-team__content"},"above"==u&&w,React.createElement("div",{className:"uagb-team__title-wrap"},React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"})),React.createElement("div",{className:"uagb-team__desc-wrap"},React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"})),_&&React.createElement("div",{className:"uagb-team__social-icon-wrap"},React.createElement("ul",{className:"uagb-team__social-list"},""!=p&&IU(p,m,v),""!=b&&IU(b,y,v),""!=d&&IU(d,f,v),""!=g&&IU(g,h,v)))),"right"==u&&w))}},{attributes:NU,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!=S&&(w=React.createElement("div",{className:Be()("uagb-team__image-wrap","uagb-team__image-crop-"+c)},React.createElement("img",{className:"",src:S,alt:r.alt?r.alt:""}))),React.createElement("div",{className:Be()(e.className,"uagb-team","uagb-team__outer-wrap","uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T,"uagb-block-"+t)},React.createElement("div",{className:"uagb-team__wrap"},"left"==u&&w,React.createElement("div",{className:"uagb-team__content"},"above"==u&&w,React.createElement("div",{className:"uagb-team__title-wrap"},React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"})),React.createElement("div",{className:"uagb-team__desc-wrap"},React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"})),_&&React.createElement("div",{className:"uagb-team__social-icon-wrap"},React.createElement("ul",{className:"uagb-team__social-list"},""!=p&&qU(p,m,v),""!=b&&qU(b,y,v),""!=d&&qU(d,f,v),""!=g&&qU(g,h,v)))),"right"==u&&w))}},{attributes:NU,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!==S&&(w=React.createElement("img",{className:"uagb-team__image-crop-"+c,src:S,alt:r.alt?r.alt:""})),React.createElement("div",{className:Be()(e.className,"uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T,"uagb-block-"+t)},"left"===u&&w,React.createElement("div",{className:"uagb-team__content"},"above"===u&&w,React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"}),React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"}),_&&React.createElement("ul",{className:"uagb-team__social-list"},""!==p&&IU(p,m,v),""!==b&&IU(b,y,v),""!==d&&IU(d,f,v),""!==g&&IU(g,h,v))),"right"===u&&w)}},{attributes:yt,save(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T}=e.attributes;let C="",S="";r&&(C=r.sizes,S=r.sizes&&C[s]?C[s].url:r.url);let w="";return""!==S&&(w=React.createElement("img",{className:"uagb-team__image-crop-"+c,src:S,alt:r.alt?r.alt:""})),React.createElement("div",{className:Be()(e.className,"uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T,"uagb-block-"+t)},"left"===u&&w,React.createElement("div",{className:"uagb-team__content"},"above"===u&&w,React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"}),React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"}),_&&React.createElement("ul",{className:"uagb-team__social-list"},""!==p&&VU(p,m,v),""!==b&&VU(b,y,v),""!==d&&VU(d,f,v),""!==g&&VU(g,h,v))),"right"===u&&w)}}];a(368);let $U={};$U=Object(j.applyFilters)("uagb/team",ws($U)),Object(be.registerBlockType)("uagb/team",{...$U,title:Object(r.__)("Team","ultimate-addons-for-gutenberg"),description:Object(r.__)("Showcase your team by displaying info and social media profiles.","ultimate-addons-for-gutenberg"),icon:se.team,keywords:[Object(r.__)("team","ultimate-addons-for-gutenberg"),Object(r.__)("members","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:yt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"team"}):React.createElement(zU,e),save:function(e){const{block_id:t,align:a,tag:l,title:i,prefix:o,description_text:n,image:r,imgSize:s,imgStyle:c,imgPosition:u,twitterIcon:p,fbIcon:b,linkedinIcon:d,pinIcon:g,twitterLink:m,fbLink:y,linkedinLink:f,pinLink:h,socialTarget:v,socialEnable:_,stack:T,imgWidth:C}=e.attributes;let S="",w="";r&&(S=r.sizes,w=r.sizes&&S[s]?S[s].url:r.url);let k="";return""!==w&&(k=React.createElement("img",{className:"uagb-team__image-crop-"+c,src:w,alt:r.alt?r.alt:"",height:C,width:C,loading:"lazy"})),React.createElement("div",{className:Be()(e.className,"uagb-team__image-position-"+u,"uagb-team__align-"+a,"uagb-team__stack-"+T,"uagb-block-"+t)},"left"===u&&k,React.createElement("div",{className:"uagb-team__content"},"above"===u&&k,React.createElement(ge.RichText.Content,{tagName:l,value:i,className:"uagb-team__title"}),React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-team__prefix"}),React.createElement(ge.RichText.Content,{tagName:"p",value:n,className:"uagb-team__desc"}),_&&React.createElement("ul",{className:"uagb-team__social-list"},""!==p&&DU(p,m,v),""!==b&&DU(b,y,v),""!==d&&DU(d,f,v),""!==g&&DU(g,h,v))),"right"===u&&k)},deprecated:ZU});function YU(){return(YU=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var KU,JU=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l,name:i}=e,o=i.replace("uagb/",""),{test_item_count:n,headingAlign:s,headingAlignTablet:c,headingAlignMobile:u,companyColor:p,descColor:b,authorColor:d,nameFontSizeType:g,nameFontSize:m,nameFontSizeTablet:y,nameFontSizeMobile:f,nameFontFamily:h,nameFontWeight:v,nameFontStyle:_,nameLineHeightType:T,nameLineHeight:C,nameLineHeightTablet:S,nameLineHeightMobile:w,nameLoadGoogleFonts:k,companyFontSizeType:P,companyFontSize:x,companyFontSizeTablet:A,companyFontSizeMobile:G,companyFontFamily:M,companyFontWeight:R,companyFontStyle:B,companyLineHeightType:U,companyLineHeight:E,companyLineHeightTablet:O,companyLineHeightMobile:L,companyLoadGoogleFonts:H,descFontSizeType:j,descFontSize:F,descFontSizeTablet:z,descFontSizeMobile:D,descFontFamily:N,descFontWeight:I,descFontStyle:V,descLineHeightType:W,descLineHeight:q,descLineHeightTablet:Z,descLineHeightMobile:$,descLoadGoogleFonts:Y,descSpace:K,descSpaceTablet:J,descSpaceMobile:X,iconimgStyle:Q,imagePosition:ee,imageAlignment:te,nameSpace:ae,nameSpaceTablet:le,nameSpaceMobile:ie,imageSize:oe,imageWidth:ne,imageWidthTablet:re,imageWidthMobile:se,columns:ce,tcolumns:ue,mcolumns:pe,pauseOnHover:be,infiniteLoop:de,transitionSpeed:me,arrowDots:ye,arrowSize:fe,arrowBorderSize:he,arrowBorderSizeUnit:ve,arrowBorderRadius:_e,arrowBorderRadiusUnit:Te,autoplay:Se,autoplaySpeed:we,arrowColor:ke,rowGap:Pe,rowGapTablet:xe,rowGapMobile:Ae,columnGap:Ge,columnGapTablet:Me,columnGapMobile:Re,backgroundType:Be,backgroundColor:Ue,backgroundImage:Oe,backgroundPosition:He,backgroundSize:je,backgroundRepeat:ze,backgroundImageColor:De,stack:Ne,imageWidthType:Ie,arrowSizeType:Ve,rowGapType:We,columnGapType:qe,descSpaceType:Ze,nameSpaceType:$e,overlayType:Ye,backgroundAttachment:Ke,gradientValue:Je,gradientColor1:Xe,gradientColor2:Qe,gradientLocation1:et,gradientLocationTablet1:tt,gradientLocationMobile1:at,gradientLocation2:lt,gradientLocationTablet2:it,gradientLocationMobile2:ot,gradientType:nt,gradientAngle:rt,gradientAngleTablet:st,gradientAngleMobile:ct,selectGradient:ut,descTransform:pt,descDecoration:bt,nameTransform:dt,nameDecoration:gt,companyTransform:mt,companyDecoration:yt,paddingUnit:ft,mobilePaddingUnit:ht,tabletPaddingUnit:vt,paddingTop:_t,paddingBottom:Tt,paddingLeft:Ct,paddingRight:St,paddingTopTablet:wt,paddingRightTablet:kt,paddingBottomTablet:Pt,paddingLeftTablet:xt,paddingTopMobile:At,paddingRightMobile:Gt,paddingBottomMobile:Mt,paddingLeftMobile:Rt,imgspacingLink:Bt,spacingLink:Ut,imgpaddingTop:Et,imgpaddingRight:Ot,imgpaddingBottom:Lt,imgpaddingLeft:Ht,imgpaddingTopTablet:jt,imgpaddingRightTablet:Ft,imgpaddingBottomTablet:zt,imgpaddingLeftTablet:Dt,imgpaddingTopMobile:Nt,imgpaddingRightMobile:It,imgpaddingBottomMobile:Vt,imgpaddingLeftMobile:Wt,imgpaddingUnit:qt,imgmobilePaddingUnit:Zt,imgtabletPaddingUnit:$t,equalHeight:Yt,vAlignContent:Kt,nameLetterSpacing:Jt,nameLetterSpacingTablet:Xt,nameLetterSpacingMobile:Qt,nameLetterSpacingType:ea,descLetterSpacing:ta,descLetterSpacingTablet:aa,descLetterSpacingMobile:la,descLetterSpacingType:ia,companyLetterSpacing:oa,companyLetterSpacingTablet:na,companyLetterSpacingMobile:ra,companyLetterSpacingType:sa}=a,ca=Ps(n,"test_item_count",o),ua=(pa=a.test_block,JSON.parse(JSON.stringify(pa)));var pa;const ba=[{value:"thumbnail",label:Object(r.__)("Thumbnail","ultimate-addons-for-gutenberg")},{value:"medium",label:Object(r.__)("Medium","ultimate-addons-for-gutenberg")},{value:"full",label:Object(r.__)("Large","ultimate-addons-for-gutenberg")}],da=e=>{let a=null;ua[e]&&void 0!==ua[e]&&(a=ua[e].image);const l=e+1,i=Object(r.__)("Image","ultimate-addons-for-gutenberg");return React.createElement(Yl,{onSelectImage:a=>((e,a)=>{let l=null;l=e&&e.url?e:null,e.type&&"image"===e.type||(l=null);const i=ua.map((e,t)=>(a===t&&(e.image=l),e));t({test_block:i})})(a,e),backgroundImage:a,onRemoveImage:()=>(e=>{const a=ua.map((t,a)=>(e===a&&(t.image=null),t));t({test_block:a})})(e),slug:"image-"+l,label:`${i} ${l}`})};let ga=0;return ua.map((e,t)=>{const a=ua[t];if(a&&void 0!==a){const e=a.image;null!=e&&""!==e&&ga++}}),React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Qa,{label:Object(r.__)("Number of Testimonials","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"test_item_count"},onChange:e=>{const a=[...ua],l=Ps(e,"test_item_count","testimonial");if(a.length<l){const e=Math.abs(l-a.length);for(let t=0;t<e;t++)a.push({description:"I have been working with these guys since years now! With lots of hard work and timely communication they made sure they delivered the best to me. Highly recommended!",name:"John Doe",company:"Company Name",image:""});t({test_block:a})}else{const e=Math.abs(l-a.length),i=a;for(let t=0;t<e;t++)i.pop();t({test_block:i})}t({test_item_count:l})},min:1,max:50,setAttributes:t,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:ce,label:"columns"},tablet:{value:ue,label:"tcolumns"},mobile:{value:pe,label:"mcolumns"}},min:1,max:ca,displayUnit:!1,setAttributes:t}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:s,label:"headingAlign"},tablet:{value:c,label:"headingAlignTablet"},mobile:{value:u,label:"headingAlignMobile"}},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}),ce>1&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Equal Height","ultimate-addons-for-gutenberg"),checked:Yt,onChange:()=>t({equalHeight:!Yt}),help:Object(r.__)("Note: Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")}),ce>1&&Yt&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:Kt,label:"vAlignContent"},className:"uagb-multi-button-alignment-control",options:[{value:"flex-start",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"center",label:Object(r.__)("Middle","ultimate-addons-for-gutenberg")},{value:"end",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],showIcons:!1})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},(()=>{const e=[];for(let t=0;t<ca;t++)e.push(da(t));return e})(),ga>0&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:ee,label:"imagePosition"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")},{value:"left",label:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"right",label:Object(r.__)("Right","ultimate-addons-for-gutenberg")}]}),("left"===ee||"right"===ee)&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:t,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:te,label:"imageAlignment"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"middle",label:Object(r.__)("Middle","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Stack On","ultimate-addons-for-gutenberg"),data:{value:Ne,label:"stack"},options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}]})),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:Q,label:"iconimgStyle"},options:[{value:"normal",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"circle",label:Object(r.__)("Circle","ultimate-addons-for-gutenberg")},{value:"square",label:Object(r.__)("Square","ultimate-addons-for-gutenberg")}]}),React.createElement(Pi,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{value:oe,label:"imageSize"},setAttributes:t,options:ba}),React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:ne,label:"imageWidth"},tablet:{value:re,label:"imageWidthTablet"},mobile:{value:se,label:"imageWidthMobile"}},min:1,max:500,unit:{value:Ie,label:"imageWidthType"},setAttributes:t}))),React.createElement(Fe,{title:Object(r.__)("Carousel","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Pause On Hover","ultimate-addons-for-gutenberg"),checked:be,onChange:()=>{t({pauseOnHover:!be})}}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Autoplay","ultimate-addons-for-gutenberg"),checked:Se,onChange:()=>{t({autoplay:!Se})}}),!0===Se&&React.createElement(Qa,{label:Object(r.__)("Autoplay Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:t,value:we,data:{value:we,label:"autoplaySpeed"},min:100,max:15e3,displayUnit:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Infinite Loop","ultimate-addons-for-gutenberg"),checked:de,onChange:()=>{t({infiniteLoop:!de})}}),React.createElement(Qa,{label:Object(r.__)("Transition Speed (ms)","ultimate-addons-for-gutenberg"),setAttributes:t,value:me,data:{value:me,label:"transitionSpeed"},min:100,max:5e3,displayUnit:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Show Arrows & Dots","ultimate-addons-for-gutenberg"),data:{value:ye,label:"arrowDots"},options:[{value:"arrows",label:Object(r.__)("Arrows","ultimate-addons-for-gutenberg")},{value:"dots",label:Object(r.__)("Dots","ultimate-addons-for-gutenberg")},{value:"arrows_dots",label:Object(r.__)("Both","ultimate-addons-for-gutenberg")}]}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Name","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"authorColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:k,label:"nameLoadGoogleFonts"},fontFamily:{value:h,label:"nameFontFamily"},fontWeight:{value:v,label:"nameFontWeight"},fontStyle:{value:_,label:"nameFontStyle"},fontSizeType:{value:g,label:"nameFontSizeType"},fontSize:{value:m,label:"nameFontSize"},fontSizeMobile:{value:f,label:"nameFontSizeMobile"},fontSizeTablet:{value:y,label:"nameFontSizeTablet"},lineHeightType:{value:T,label:"nameLineHeightType"},lineHeight:{value:C,label:"nameLineHeight"},lineHeightMobile:{value:w,label:"nameLineHeightMobile"},lineHeightTablet:{value:S,label:"nameLineHeightTablet"},transform:{value:dt,label:"nameTransform"},decoration:{value:gt,label:"nameDecoration"},letterSpacing:{value:Jt,label:"nameLetterSpacing"},letterSpacingTablet:{value:Xt,label:"nameLetterSpacingTablet"},letterSpacingMobile:{value:Qt,label:"nameLetterSpacingMobile"},letterSpacingType:{value:ea,label:"nameLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:ae,label:"nameSpace"},tablet:{value:le,label:"nameSpaceTablet"},mobile:{value:ie,label:"nameSpaceMobile"}},min:1,max:50,unit:{value:$e,label:"nameSpaceType"},setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"descColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Y,label:"descLoadGoogleFonts"},fontFamily:{value:N,label:"descFontFamily"},fontWeight:{value:I,label:"descFontWeight"},fontStyle:{value:V,label:"descFontStyle"},fontSizeType:{value:j,label:"descFontSizeType"},fontSize:{value:F,label:"descFontSize"},fontSizeMobile:{value:D,label:"descFontSizeMobile"},fontSizeTablet:{value:z,label:"descFontSizeTablet"},lineHeightType:{value:W,label:"descLineHeightType"},lineHeight:{value:q,label:"descLineHeight"},lineHeightMobile:{value:$,label:"descLineHeightMobile"},lineHeightTablet:{value:Z,label:"descLineHeightTablet"},transform:{value:pt,label:"descTransform"},decoration:{value:bt,label:"descDecoration"},letterSpacing:{value:ta,label:"descLetterSpacing"},letterSpacingTablet:{value:aa,label:"descLetterSpacingTablet"},letterSpacingMobile:{value:la,label:"descLetterSpacingMobile"},letterSpacingType:{value:ia,label:"descLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Bottom Margin","ultimate-addons-for-gutenberg"),data:{desktop:{value:K,label:"descSpace"},tablet:{value:J,label:"descSpaceTablet"},mobile:{value:X,label:"descSpaceMobile"}},min:1,max:50,unit:{value:Ze,label:"descSpaceType"},setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Company","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:p||"",data:{value:p,label:"companyColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:H,label:"companyLoadGoogleFonts"},fontFamily:{value:M,label:"companyFontFamily"},fontWeight:{value:R,label:"companyFontWeight"},fontStyle:{value:B,label:"companyFontStyle"},fontSizeType:{value:P,label:"companyFontSizeType"},fontSize:{value:x,label:"companyFontSize"},fontSizeMobile:{value:G,label:"companyFontSizeMobile"},fontSizeTablet:{value:A,label:"companyFontSizeTablet"},lineHeightType:{value:U,label:"companyLineHeightType"},lineHeight:{value:E,label:"companyLineHeight"},lineHeightMobile:{value:L,label:"companyLineHeightMobile"},lineHeightTablet:{value:O,label:"companyLineHeightTablet"},transform:{value:mt,label:"companyTransform"},decoration:{value:yt,label:"companyDecoration"},letterSpacing:{value:oa,label:"companyLetterSpacing"},letterSpacingTablet:{value:na,label:"companyLetterSpacingTablet"},letterSpacingMobile:{value:ra,label:"companyLetterSpacingMobile"},letterSpacingType:{value:sa,label:"companyLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,YU({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Et,label:"imgpaddingTop"},valueRight:{value:Ot,label:"imgpaddingRight"},valueBottom:{value:Lt,label:"imgpaddingBottom"},valueLeft:{value:Ht,label:"imgpaddingLeft"},valueTopTablet:{value:jt,label:"imgpaddingTopTablet"},valueRightTablet:{value:Ft,label:"imgpaddingRightTablet"},valueBottomTablet:{value:zt,label:"imgpaddingBottomTablet"},valueLeftTablet:{value:Dt,label:"imgpaddingLeftTablet"},valueTopMobile:{value:Nt,label:"imgpaddingTopMobile"},valueRightMobile:{value:It,label:"imgpaddingRightMobile"},valueBottomMobile:{value:Vt,label:"imgpaddingBottomMobile"},valueLeftMobile:{value:Wt,label:"imgpaddingLeftMobile"},unit:{value:qt,label:"imgpaddingUnit"},mUnit:{value:Zt,label:"imgmobilePaddingUnit"},tUnit:{value:$t,label:"imgtabletPaddingUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Bt,label:"imgspacingLink"}}))),React.createElement(Fe,{title:Object(r.__)("Arrow & Dots","ultimate-addons-for-gutenberg"),initialOpen:!1},"dots"!==ye&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Arrow Size","ultimate-addons-for-gutenberg"),setAttributes:t,value:fe,data:{value:fe,label:"arrowSize"},min:0,max:50,unit:{value:Ve,label:"arrowSizeType"}}),React.createElement(Qa,{label:Object(r.__)("Arrow Border Size","ultimate-addons-for-gutenberg"),setAttributes:t,value:he,data:{value:he,label:"arrowBorderSize"},min:0,max:50,unit:{value:ve,label:"arrowBorderSizeUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),React.createElement(Qa,{label:Object(r.__)("Arrow Border Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:_e,data:{value:_e,label:"arrowBorderRadius"},min:0,max:50,unit:{value:Te,label:"arrowBorderRadiusUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]})),React.createElement(tl,{label:Object(r.__)("Top Margin for Dots","ultimate-addons-for-gutenberg"),data:{desktop:{value:Pe,label:"rowGap"},tablet:{value:xe,label:"rowGapTablet"},mobile:{value:Ae,label:"rowGapMobile"}},min:1,max:50,unit:{value:We,label:"rowGapType"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ke||"",data:{value:ke,label:"arrowColor"},setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(vi,YU({setAttributes:t,backgroundGradient:{value:Je,label:"gradientValue"},backgroundGradientColor1:{value:Xe,label:"gradientColor1"},gradientType:{value:ut,label:"selectGradient"},backgroundGradientColor2:{value:Qe,label:"gradientColor2"},backgroundGradientLocation1:{value:et,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:tt,label:"gradientLocationTablet1"},backgroundGradientLocationMobile1:{value:at,label:"gradientLocationMobile1"},backgroundGradientLocation2:{value:lt,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:it,label:"gradientLocationTablet2"},backgroundGradientLocationMobile2:{value:ot,label:"gradientLocationMobile2"},backgroundGradientType:{value:nt,label:"gradientType"},backgroundGradientAngle:{value:rt,label:"gradientAngle"},backgroundGradientAngleTablet:{value:st,label:"gradientAngleTablet"},backgroundGradientAngleMobile:{value:ct,label:"gradientAngleMobile"},backgroundImageColor:{value:De,label:"backgroundImageColor"},overlayType:{value:Ye,label:"overlayType"},gradientOverlay:{value:!0},backgroundSize:{value:je,label:"backgroundSize"},backgroundRepeat:{value:ze,label:"backgroundRepeat"},backgroundAttachment:{value:Ke,label:"backgroundAttachment"},backgroundPosition:{value:He,label:"backgroundPosition"},backgroundImage:{value:Oe,label:"backgroundImage"},backgroundColor:{value:Ue,label:"backgroundColor"},backgroundType:{value:Be,label:"backgroundType"},backgroundVideoType:{value:!1}},e))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:t,borderStyleLabel:Object(r.__)("Style","ultimate-addons-for-gutenberg"),borderWidthLabel:Object(r.__)("Width","ultimate-addons-for-gutenberg"),borderRadiusLabel:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),prefix:"overall",attributes:a,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ge,label:"columnGap"},tablet:{value:Me,label:"columnGapTablet"},mobile:{value:Re,label:"columnGapMobile"}},min:1,max:50,unit:{value:qe,label:"columnGapType"},setAttributes:t}),React.createElement(Pl,YU({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:_t,label:"paddingTop"},valueRight:{value:St,label:"paddingRight"},valueBottom:{value:Tt,label:"paddingBottom"},valueLeft:{value:Ct,label:"paddingLeft"},valueTopTablet:{value:wt,label:"paddingTopTablet"},valueRightTablet:{value:kt,label:"paddingRightTablet"},valueBottomTablet:{value:Pt,label:"paddingBottomTablet"},valueLeftTablet:{value:xt,label:"paddingLeftTablet"},valueTopMobile:{value:At,label:"paddingTopMobile"},valueRightMobile:{value:Gt,label:"paddingRightMobile"},valueBottomMobile:{value:Mt,label:"paddingBottomMobile"},valueLeftMobile:{value:Rt,label:"paddingLeftMobile"},unit:{value:ft,label:"paddingUnit"},mUnit:{value:ht,label:"mobilePaddingUnit"},tUnit:{value:vt,label:"tabletPaddingUnit"},deviceType:l,attributes:a,setAttributes:t,link:{value:Ut,label:"spacingLink"}})))),React.createElement(il,YU({},rl,{parentProps:e})))))}),XU=function(e){let t="";return t+=" uagb-tm__imgicon-style-"+e.iconimgStyle+" ",t+="uagb-tm__image-position-"+e.imagePosition+" ","left"!==e.imagePosition&&"right"!==e.imagePosition||(t+="uagb-tm__image-aligned-"+e.imageAlignment+" ","none"!==e.stack&&(t+="uagb-tm-stacked-"+e.stack+" ","right"===e.imagePosition&&(t+="uagb-tm-reverse-order-"+e.stack+" "))),t+="uagb-tm__bg-type-"+e.backgroundType+" ",[t]},QU=e=>{const{attributes:t,index_value:a}=e;let l="";const i=t.test_block[a];if(i&&void 0!==i){const e=i.image,{imageWidth:o,imgTagHeight:n}=t;let r="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,s=t.imageSize;return r=void 0!==i&&void 0!==i[s]?i[s].url:l,React.createElement("div",{className:"uagb-tm__image-content",key:"tm_img-wrap-"+a},React.createElement("div",{className:"uagb-tm__image",key:"tm_img-"+a},React.createElement("img",{className:"uagb-tm-img-src",src:r,alt:e.alt,width:o,height:n,loading:"lazy"})))}return null}return null},eE=e=>{const{attributes:t,setAttributes:a,index_value:l,mergeBlocks:i,insertBlocksAfter:o,onReplace:n}=e,s=t.test_block[l];let c="";s&&void 0!==s&&(c=s.name);const u=[...t.test_block];return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:c,placeholder:Object(r.__)("Author Name","ultimate-addons-for-gutenberg"),className:"uagb-tm__author-name",onChange:e=>{const t={description:u[l].description,name:e,company:u[l].company,image:u[l].image};u[l]=t,a({test_block:u})},onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])}):React.createElement(ge.RichText.Content,{tagName:"span",value:c,className:"uagb-tm__author-name"})},tE=e=>{const{attributes:t,setAttributes:a,index_value:l,mergeBlocks:i,insertBlocksAfter:o,onReplace:n}=e,s=t.test_block[l];let c="";s&&void 0!==s&&(c=s.company);const u=[...t.test_block];return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:c,className:"uagb-tm__company",onChange:e=>{const t={description:u[l].description,name:u[l].name,company:e,image:u[l].image};u[l]=t,a({test_block:u})},multiline:!1,placeholder:Object(r.__)("Company Name","ultimate-addons-for-gutenberg"),onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])}):React.createElement(ge.RichText.Content,{tagName:"span",value:c,className:"uagb-tm__company"})},aE=e=>{const{attributes:t,setAttributes:a,index_value:l,mergeBlocks:i,insertBlocksAfter:o,onReplace:n}=e,s=t.test_block[l];let c="";s&&void 0!==s&&(c=s.description);const u=[...t.test_block];return"not_set"!==a?React.createElement(ge.RichText,{tagName:"div",value:c,placeholder:Object(r.__)("Write Description","ultimate-addons-for-gutenberg"),className:"uagb-tm__desc",onChange:e=>{const t={description:e,name:u[l].name,company:u[l].company,image:u[l].image};u[l]=t,a({test_block:u})},onMerge:i,onSplit:o?function(e,t){a({content:e});for(var l=arguments.length,i=new Array(l>2?l-2:0),n=2;n<l;n++)i[n-2]=arguments[n];o([...i,Object(be.createBlock)("core/paragraph",{content:t})])}:void 0,onRemove:()=>n([])}):React.createElement(ge.RichText.Content,{tagName:"div",value:c,className:"uagb-tm__desc"})},lE=a(147),iE=0,oE={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},nE={};nE.locals=lE.a.locals||{},nE.use=function(){return iE++||(KU=ke()(lE.a,oE)),nE},nE.unuse=function(){iE>0&&!--iE&&(KU(),KU=null)};var rE=nE;function sE(){return(sE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var cE=Object(B.memo)(e=>{var t,a,l;Object(B.useLayoutEffect)(()=>(rE.use(),()=>{rE.unuse()}),[]);const{className:i,setAttributes:o,attributes:n,deviceType:r,name:s}=e,c=s.replace("uagb/",""),{block_id:u,test_block:p,imagePosition:b,columns:d,tcolumns:g,mcolumns:m,test_item_count:y,pauseOnHover:f,infiniteLoop:h,transitionSpeed:v,arrowDots:_,arrowSize:T,arrowBorderSize:C,arrowBorderRadius:S,autoplay:w,autoplaySpeed:k,arrowColor:P,equalHeight:x,imageWidth:A}=n,G=Object(B.useRef)(),M=e=>{let{onClick:t}=e;return React.createElement("button",{type:"button","data-role":"none",className:"slick-next slick-arrow","aria-label":"Next",tabIndex:"0",style:{borderColor:P,borderRadius:S,borderWidth:Ps(C,"arrowBorderSize",c)},onClick:t},se.carousel_right)},R=e=>{let{onClick:t}=e;return React.createElement("button",{type:"button","data-role":"none",className:"slick-prev slick-arrow","aria-label":"Previous",tabIndex:"0",style:{borderColor:P,borderRadius:S,borderWidth:Ps(C,"arrowBorderSize",c)},onClick:t},se.carousel_left)},U="dots"===_||"arrows_dots"===_,E="arrows"===_||"arrows_dots"===_,O=x?"uagb-post__carousel_equal-height":"",L={accessibility:!1,slidesToShow:Ps("Desktop"===r?d:"Tablet"===r?g:m,"columns",c),slidesToScroll:1,autoplaySpeed:Ps(k,"autoplaySpeed",c),autoplay:w,infinite:h,pauseOnHover:f,speed:Ps(v,"transitionSpeed",c),arrows:E,dots:U,rtl:!1,afterChange:()=>{x&&uagb_carousel_height(u)},draggable:!1,nextArrow:React.createElement(M,{arrowSize:T,onClick:G.slickNext}),prevArrow:React.createElement(R,{arrowSize:T,onClick:G.slickPrev})},H=y===d?"uagb-post__carousel_notset":"",j=y===g?"uagb-post__carousel_notset-tablet":"",F=y===m?"uagb-post__carousel_notset-mobile":"",z=(null===(t=n.test_block[0])||void 0===t?void 0:t.image)||(null===(a=n.test_block[1])||void 0===a?void 0:a.image)||(null===(l=n.test_block[2])||void 0===l?void 0:l.image);let D="",N="";if(z){const e=z;if(null!=e&&""!==e&&(N=e.url),""!==N){const t=e.sizes,a=n.imageSize;D=void 0!==t&&void 0!==t[a]?t[a].url:N}}return Object(B.useEffect)(()=>{mf(D,o,{type:"width",value:A})},[A,D]),React.createElement("div",{className:Be()(i,"uagb-slick-carousel uagb-tm__arrow-outside","uagb-editor-preview-mode-"+r.toLowerCase(),"uagb-block-"+u,""+O,H,j,F)},React.createElement(zk.a,sE({className:Be()("is-carousel","uagb-tm__columns-"+Ps(d,"columns",c),"uagb-tm__items")},L,{ref:G}),p.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(n)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"===b||"left"===b)&&React.createElement(QU,{attributes:n,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement(aE,{attributes:n,setAttributes:o,props:e,index_value:a})),React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"===b&&React.createElement(QU,{attributes:n,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:n,setAttributes:o,props:e,index_value:a}),React.createElement(tE,{attributes:n,setAttributes:o,props:e,index_value:a}))))),"right"===b&&React.createElement(QU,{attributes:n,index_value:a}))))))}),uE=function(e,t){if(!e)return"";void 0!==t&&""!==t||(t=100),t=void 0!==t?t/100:1,e=(e=e.replace("#","")).replace(/^#?([a-f\d])([a-f\d])([a-f\d])$/i,(function(e,t,a,l){return t+t+a+a+l+l}));const a=/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(e),l=a?{r:parseInt(a[1],16),g:parseInt(a[2],16),b:parseInt(a[3],16)}:null;return l?"rgba("+l.r+","+l.g+","+l.b+","+t+")":""},pE=Object(B.memo)(e=>{let{attributes:t}=e;const{nameLoadGoogleFonts:a,nameFontFamily:l,nameFontWeight:i,companyLoadGoogleFonts:o,companyFontFamily:n,companyFontWeight:r,descLoadGoogleFonts:s,descFontFamily:c,descFontWeight:u}=t;let p,b,d;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};p=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};b=React.createElement(O,{config:e})}if(!0===s){const e={google:{families:[c+(u?":"+u:"")]}};d=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,p,b,d)}),bE=Object(L.compose)(vs,fe)(e=>{const{setAttributes:t,attributes:a,attributes:{backgroundOpacity:l,backgroundImageColor:i,backgroundType:o,overlayType:n,gradientColor1:r,gradientColor2:s,gradientLocation1:c,gradientLocation2:u,gradientType:p,gradientAngle:b,gradientPosition:d,borderStyle:g,borderWidth:m,borderRadius:y,borderColor:f,borderHoverColor:h,equalHeight:v,UAGHideDesktop:_,UAGHideTab:T,UAGHideMob:C,block_id:S},isSelected:w,clientId:k,name:P,deviceType:x}=e;Object(B.useEffect)(()=>{if(101!==l&&"image"===o&&"gradient"===n){const e=uE(pl(r),l),a=uE(pl(s),l);let i;i="linear"===p?`linear-gradient(${b}deg, ${e} ${c}%, ${a} ${u}%)`:`radial-gradient( at ${d}, ${e} ${c}%, ${a} ${u}%)`,t({gradientValue:i})}if("image"===o&&101!==l){const e=uE(pl(i),l);t({backgroundImageColor:e}),t({backgroundOpacity:101})}(m||y||f||h||g)&&ue("overall",{label:"borderWidth",value:m},{label:"borderRadius",value:y},{label:"borderColor",value:f},{label:"borderHoverColor",value:h},{label:"borderStyle",value:g},t,a)},[]),Object(B.useEffect)(()=>{v?uagb_carousel_height(S):uagb_carousel_unset_height(S)},[a,x]),Object(B.useEffect)(()=>{he(e)},[_,T,C,x]),Object(B.useEffect)(()=>{Bs()},[x]);const A=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,headingAlign:r,headingAlignTablet:s,headingAlignMobile:c,companyColor:u,descColor:p,authorColor:b,nameFontSizeType:d,nameFontSize:g,nameFontSizeTablet:m,nameFontSizeMobile:y,nameFontFamily:f,nameFontWeight:h,nameLineHeightType:v,nameLineHeight:_,nameLineHeightTablet:T,nameLineHeightMobile:C,companyFontSizeType:S,companyFontSize:w,companyFontSizeTablet:k,companyFontSizeMobile:P,companyFontFamily:x,companyFontWeight:A,companyLineHeightType:G,companyLineHeight:M,companyLineHeightTablet:R,companyLineHeightMobile:B,descFontSizeType:U,descFontSize:E,descFontSizeTablet:O,descFontSizeMobile:L,descFontFamily:H,descFontWeight:j,descLineHeightType:F,descLineHeight:z,descLineHeightTablet:D,descLineHeightMobile:N,descSpace:I,descSpaceTablet:V,descSpaceMobile:W,nameSpace:q,nameSpaceTablet:Z,nameSpaceMobile:$,imageWidth:Y,imageWidthTablet:K,imageWidthMobile:J,rowGap:X,rowGapTablet:Q,rowGapMobile:ee,columnGap:te,columnGapTablet:le,columnGapMobile:ie,backgroundType:oe,backgroundColor:ne,backgroundImage:re,backgroundPosition:se,backgroundSize:ce,backgroundRepeat:ue,backgroundImageColor:pe,arrowColor:be,test_item_count:de,columns:ge,arrowDots:me,arrowSize:ye,imageWidthType:fe,arrowSizeType:he,rowGapType:ve,columnGapType:_e,descSpaceType:Te,nameSpaceType:Ce,gradientValue:Se,descTransform:we,descDecoration:ke,nameTransform:Pe,nameDecoration:xe,companyTransform:Ae,companyDecoration:Ge,paddingUnit:Me,mobilePaddingUnit:Re,tabletPaddingUnit:Be,paddingTop:Ue,paddingBottom:Ee,paddingLeft:Oe,paddingRight:Le,paddingTopTablet:He,paddingRightTablet:je,paddingBottomTablet:Fe,paddingLeftTablet:ze,paddingTopMobile:De,paddingRightMobile:Ne,paddingBottomMobile:Ie,paddingLeftMobile:Ve,imgpaddingTop:We,imgpaddingRight:qe,imgpaddingBottom:Ze,imgpaddingLeft:$e,imgpaddingTopTablet:Ye,imgpaddingRightTablet:Ke,imgpaddingBottomTablet:Je,imgpaddingLeftTablet:Xe,imgpaddingTopMobile:Qe,imgpaddingRightMobile:et,imgpaddingBottomMobile:tt,imgpaddingLeftMobile:at,imgpaddingUnit:lt,imgmobilePaddingUnit:it,imgtabletPaddingUnit:ot,nameFontStyle:nt,companyFontStyle:rt,descFontStyle:st,overallBorderHColor:ct,nameLetterSpacing:ut,nameLetterSpacingTablet:pt,nameLetterSpacingMobile:bt,nameLetterSpacingType:dt,descLetterSpacing:gt,descLetterSpacingTablet:mt,descLetterSpacingMobile:yt,descLetterSpacingType:ft,companyLetterSpacing:ht,companyLetterSpacingTablet:vt,companyLetterSpacingMobile:_t,companyLetterSpacingType:Tt,overlayType:Ct,gradientColor1:St,gradientColor2:wt,gradientLocation1:kt,gradientLocationTablet1:Pt,gradientLocationMobile1:xt,gradientLocation2:At,gradientLocationTablet2:Gt,gradientLocationMobile2:Mt,gradientAngle:Rt,gradientAngleTablet:Bt,gradientAngleMobile:Ut,selectGradient:Et,gradientType:Ot}=e,Lt=Ps(ye,"arrowSize",i),Ht=Ps(de,"test_item_count",i),jt=Ps(X,"rowGap",i),Ft=Ps(q,"nameSpace",i),zt=Ps(I,"descSpace",i),Dt=Ps(te,"columnGap",i),Nt=Ps(ge,"columns",i),It=Ps(Y,"imageWidth",i),Vt=isNaN(le)?Dt:le,Wt=isNaN(ie)?Vt:ie,qt=rs(e,"overall"),Zt=rs(e,"overall","tablet"),$t=rs(e,"overall","mobile"),Yt="number"==typeof Pt?Pt:kt,Kt="number"==typeof xt?xt:Yt,Jt="number"==typeof Gt?Gt:At,Xt="number"==typeof Mt?Mt:Jt,Qt="number"==typeof Bt?Bt:Rt,ea="number"==typeof Ut?Ut:Qt;let ta="center";"left"===r?ta="flex-start":"right"===r&&(ta="flex-end");const aa=se.replace("-"," "),la={" .uagb-testimonial__wrap":{"margin-bottom":ns(jt,ve),"padding-left":ns(Dt/2,_e),"padding-right":ns(Dt/2,_e)}," .uagb-testimonial__wrap .uagb-tm__image-content":{"padding-top":ns(We,lt),"padding-right":ns(qe,lt),"padding-bottom":ns(Ze,lt),"padding-left":ns($e,lt)}," .uagb-tm__image-position-top .uagb-tm__image-content":{"justify-content":ta}," .uagb-tm__image img":{width:ns(It,fe),"max-width":ns(It,fe)}," .uagb-tm__content":{"text-align":r,"padding-top":ns(Ue,Me),"padding-bottom":ns(Ee,Me),"padding-left":ns(Oe,Me),"padding-right":ns(Le,Me)}," .uagb-tm__author-name":{"font-size":ns(g,d),"font-family":f,"font-weight":h,"font-style":nt,"text-decoration":xe,"text-transform":Pe,"line-height":ns(_,v),color:b,"margin-bottom":ns(Ft,Ce),"letter-spacing":ns(ut,dt)}," .uagb-tm__company":{"font-size":ns(w,S),"font-family":x,"font-weight":A,"font-style":rt,"text-decoration":Ge,"text-transform":Ae,"line-height":ns(M,G),color:u,"letter-spacing":ns(ht,Tt)}," .uagb-tm__desc":{"font-size":ns(E,U),"font-family":H,"font-style":st,"text-decoration":ke,"text-transform":we,"font-weight":j,"line-height":ns(z,F),color:p,"margin-bottom":ns(zt,Te),"letter-spacing":ns(gt,ft)}," ul.slick-dots li button:before":{color:be}," ul.slick-dots li.slick-active button:before":{color:be}," .slick-arrow svg":{fill:be,height:ns(Lt,he),width:ns(Lt,he)}," .uagb-testimonial__wrap .uagb-tm__content":qt," .uagb-testimonial__wrap .uagb-tm__content:hover":{"border-color":ct}};Ht===Nt&&(la[".uagb-slick-carousel"]={padding:"0"}),"dots"===me&&(la[" .uagb-slick-carousel.uagb-tm__arrow-outside"]={padding:"0 0 35px 0"}),1!==Ht&&Ht!==Nt||(la[" .uagb-slick-carousel.uagb-tm__arrow-outside"]={padding:"0"});const ia={" .uagb-tm__image img":{width:ns(J,fe),"max-width":ns(J,fe)}," .uagb-testimonial__wrap":{"padding-left":ns(Wt/2,_e),"padding-right":ns(Wt/2,_e),"margin-bottom":ns(ee,ve)}," .block-editor-rich-text__editable.uagb-tm__author-name":{"margin-bottom":ns($,Ce),"letter-spacing":ns(bt,dt)}," .uagb-tm__desc":{"margin-bottom":ns(W,Te),"font-size":ns(L,U),"line-height":ns(N,F),"letter-spacing":ns(yt,ft)}," .uagb-testimonial__wrap .uagb-tm__content":$t," .uagb-testimonial__wrap .uagb-tm__image-content":{"text-align":c,"padding-top":ns(Qe,it),"padding-right":ns(et,it),"padding-bottom":ns(tt,it),"padding-left":ns(at,it)}," .uagb-tm__company":{"font-size":ns(P,S),"line-height":ns(B,G),"letter-spacing":ns(_t,Tt)}," .uagb-tm__author-name":{"font-size":ns(y,d),"line-height":ns(C,v)}," .uagb-tm__content":{"text-align":c,"padding-top":ns(De,Re),"padding-bottom":ns(Ie,Re),"padding-left":ns(Ve,Re),"padding-right":ns(Ne,Re)}},oa={" .uagb-tm__image img":{width:ns(K,fe),"max-width":ns(K,fe)}," .block-editor-rich-text__editable.uagb-tm__author-name":{"margin-bottom":ns(Z,Ce),"letter-spacing":ns(pt,dt)}," .uagb-testimonial__wrap":{"padding-left":ns(Vt/2,_e),"padding-right":ns(Vt/2,_e),"margin-bottom":ns(Q,ve)}," .uagb-testimonial__wrap .uagb-tm__content":Zt," .uagb-testimonial__wrap .uagb-tm__image-content":{"text-align":s,"padding-top":ns(Ye,ot),"padding-right":ns(Ke,ot),"padding-bottom":ns(Je,ot),"padding-left":ns(Xe,ot)}," .uagb-tm__content":{"text-align":s,"padding-top":ns(He,Be),"padding-bottom":ns(Fe,Be),"padding-left":ns(ze,Be),"padding-right":ns(je,Be)}," .uagb-tm__desc":{"margin-bottom":ns(V,Te),"font-size":ns(O,U),"line-height":ns(D,F),"letter-spacing":ns(mt,ft)}," .uagb-tm__company":{"font-size":ns(k,S),"line-height":ns(R,G),"letter-spacing":ns(vt,Tt)}," .uagb-tm__author-name":{"font-size":ns(m,d),"line-height":ns(T,v)}};let na;switch(Et){case"basic":na=Se;break;case"advanced":switch(Ot){case"linear":"Desktop"===l?na=`linear-gradient(${Rt}deg, ${St} ${kt}%, ${wt} ${At}%)`:"Tablet"===l?na=`linear-gradient(${Qt}deg, ${St} ${Yt}%, ${wt} ${Jt}%)`:"Mobile"===l&&(na=`linear-gradient(${ea}deg, ${St} ${Kt}%, ${wt} ${Xt}%)`);break;case"radial":"Desktop"===l?na=`radial-gradient( at center center, ${St} ${kt}%, ${wt} ${At}%)`:"Tablet"===l?na=`radial-gradient( at center center,  ${St} ${Yt}%, ${wt} ${Jt}%)`:"Mobile"===l&&(na=`radial-gradient( at center center,  ${St} ${Kt}%, ${wt} ${Xt}%)`);break;default:na=""}break;default:na=""}"gradient"===oe&&(la[" .uagb-tm__content"]["background-image"]=na),"image"===oe?"color"===Ct?la[" .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay"]={"background-color":pe}:"gradient"===Ct&&(la[" .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay"]={"background-image":na}):la[" .uagb-testimonial__wrap.uagb-tm__bg-type-color .uagb-tm__content"]={"background-color":ne},la[" .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__content"]={"background-image":re?`url(${re.url})`:null,"background-position":aa,"background-repeat":ue,"background-size":ce};let ra="";const sa=".uagb-block-"+n;return ra=ae(la,sa),"tablet"!==o&&"mobile"!==o||(ra+=ae(oa,""+sa,!0,"tablet"),"mobile"===o&&(ra+=ae(ia,""+sa,!0,"mobile"))),ra}(a,0,P,x),[a,x]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:A}),React.createElement(pE,{attributes:a}),w&&React.createElement(JU,e),React.createElement(cE,e))}),dE=e=>{const{attributes:t,index_value:a}=e;let l="";const i=t.test_block[a];if(i&&void 0!==i){const e=i.image;let o="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,n=t.imageSize;return o=void 0!==i&&void 0!==i[n]?i[n].url:l,React.createElement("div",{className:"uagb-tm__image-content",key:"tm_img-wrap-"+a},React.createElement("div",{className:"uagb-tm__image",key:"tm_img-"+a},React.createElement("img",{className:"",src:o,alt:e.alt})))}return null}return null},gE=e=>{const{attributes:t,index_value:a}=e;let l="";const i=t.test_block[a];if(i&&void 0!==i){const e=i.image;let o="";if(null!=e&&""!==e&&(l=e.url),""!==l){const i=e.sizes,n=t.imageSize;return o=void 0!==i&&void 0!==i[n]?i[n].url:l,React.createElement("div",{className:"uagb-tm__image-content",key:"tm_img-wrap-"+a},React.createElement("div",{className:"uagb-tm__image",key:"tm_img-"+a},React.createElement("img",{className:"uagb-tm-img-src",src:o,alt:e.alt})))}return null}return null};const mE=[];for(var yE=1;yE<=3;yE++){var fE="Company"+yE;mE.push({description:"I have been working with these guys since years now! With lots of hard work and timely communication they made sure they delivered the best to me. Highly recommended!",name:"John Doe ",company:fE,image:""})}const hE=ce("overall"),vE={test_item_count:{type:"number",default:3},classMigrate:{type:"boolean",default:!1},test_block:{type:"array",default:mE},headingAlign:{type:"string",default:"center"},descColor:{type:"string",default:"#333"},companyColor:{type:"string",default:"#888888"},authorColor:{type:"string",default:"#333"},iconimgStyle:{type:"string",default:"circle"},imagePosition:{type:"string",default:"bottom"},imageAlignment:{type:"string",default:"top"},nameFontSizeType:{type:"string",default:"px"},nameFontSize:{type:"number"},nameFontSizeTablet:{type:"number"},nameFontSizeMobile:{type:"number"},nameFontFamily:{type:"string",default:"Default"},nameFontWeight:{type:"string"},nameFontSubset:{type:"string"},nameLineHeightType:{type:"string",default:"em"},nameLineHeight:{type:"number"},nameLineHeightTablet:{type:"number"},nameLineHeightMobile:{type:"number"},nameLoadGoogleFonts:{type:"boolean",default:!1},companyFontSizeType:{type:"string",default:"px"},companyFontSize:{type:"number"},companyFontSizeTablet:{type:"number"},companyFontSizeMobile:{type:"number"},companyFontFamily:{type:"string",default:"Default"},companyFontWeight:{type:"string"},companyFontSubset:{type:"string"},companyLineHeightType:{type:"string",default:"em"},companyLineHeight:{type:"number"},companyLineHeightTablet:{type:"number"},companyLineHeightMobile:{type:"number"},companyLoadGoogleFonts:{type:"boolean",default:!1},descFontSizeType:{type:"string",default:"px"},descFontSize:{type:"number"},descFontSizeTablet:{type:"number"},descFontSizeMobile:{type:"number"},descFontFamily:{type:"string",default:"Default"},descFontWeight:{type:"string"},descFontSubset:{type:"string"},descLineHeightType:{type:"string",default:"em"},descLineHeight:{type:"number"},descLineHeightTablet:{type:"number"},descLineHeightMobile:{type:"number"},descLoadGoogleFonts:{type:"boolean",default:!1},nameSpace:{type:"number",default:5},descSpace:{type:"number",default:15},block_id:{type:"string",default:"not_set"},authorSpace:{type:"number",default:5},imgVrPadding:{type:"number",default:10},imgHrPadding:{type:"number",default:10},imgTopPadding:{type:"number",default:10},imgBottomPadding:{type:"number",default:10},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",default:"thumbnail"},imageWidth:{type:"number",default:60},columns:{type:"number",default:1},tcolumns:{type:"number",default:1},mcolumns:{type:"number",default:1},pauseOnHover:{type:"boolean",default:!0},infiniteLoop:{type:"boolean",default:!0},transitionSpeed:{type:"number",default:500},autoplay:{type:"boolean",default:!0},autoplaySpeed:{type:"number",default:2e3},arrowDots:{type:"string",default:"arrows_dots"},arrowSize:{type:"number",default:20},arrowBorderSize:{type:"number",default:1},arrowBorderRadius:{type:"number",default:0},arrowColor:{type:"string",default:"#aaaaaa"},rowGap:{type:"number",default:10},columnGap:{type:"number",default:10},contentPadding:{type:"number",default:5},backgroundType:{type:"string"},backgroundImage:{type:"object"},backgroundPosition:{type:"string",default:"center-center"},backgroundSize:{type:"string",default:"cover"},backgroundRepeat:{type:"string",default:"no-repeat"},backgroundColor:{type:"string"},backgroundImageColor:{type:"string"},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:"1"},borderRadius:{type:"number"},borderColor:{type:"string"},backgroundOpacity:{type:"number",default:50},arrowColor:{type:"string",default:"#333"},stack:{type:"string",default:"tablet"},nameSpaceType:{type:"string",default:"px"},descSpaceType:{type:"string",default:"px"},imgpaddingUnit:{type:"string",default:"px"},arrowBorderSizeUnit:{type:"string",default:"px"},arrowBorderRadiusUnit:{type:"string",default:"px"},arrowSizeType:{type:"string",default:"px"},rowGapType:{type:"string",default:"px"},columnGapType:{type:"string",default:"px"},paddingUnit:{type:"string",default:"px"},...hE},_E=[];for(let e=1;e<=3;e++){const e="I have been working with these guys for years now! With lots of hard work and timely communication, they made sure they delivered the best to me. Highly recommended!",t="John Doe ",a="Company Name";_E.push({description:e,name:t,company:a,image:""})}var TE=[{attributes:vE,save(e){const{block_id:t,className:a,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,test_block:b,imagePosition:d,arrowColor:g}=e.attributes,m=[];return m.push({block_id:t,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,arrowColor:g}),React.createElement(React.Fragment,null,React.createElement("div",{className:Be()(a,"uagb-testomonial__outer-wrap uagb-slick-carousel uagb-tm__arrow-outside"),id:"uagb-testimonial-"+t,"data-slider":JSON.stringify(m)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+l,"uagb-tm__items")},b.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"==d||"left"==d)&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testinomial-text-wrap",key:"text-wrap-"+a},React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-tm__meta"},React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})))))),"right"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a})))))))}},{attributes:vE,save(e){const{block_id:t,className:a,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,test_block:b,imagePosition:d,arrowColor:g}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-testomonial__outer-wrap uagb-slick-carousel uagb-tm__arrow-outside"),id:"uagb-testimonial-"+t},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+l,"uagb-tm__items")},b.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"==d||"left"==d)&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testinomial-text-wrap",key:"text-wrap-"+a},React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-tm__meta"},React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})))))),"right"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}))))))}},{attributes:vE,save(e){const{block_id:t,className:a,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,test_block:b,imagePosition:d,arrowColor:g}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-testomonial__outer-wrap uagb-slick-carousel uagb-tm__arrow-outside","uagb-block-"+t)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+l,"uagb-tm__items")},b.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"==d||"left"==d)&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testinomial-text-wrap",key:"text-wrap-"+a},React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-tm__meta"},React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})))))),"right"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}))))))}},{attributes:vE,save(e){const{block_id:t,className:a,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,test_block:b,imagePosition:d,arrowColor:g}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-testomonial__outer-wrap uagb-slick-carousel uagb-tm__arrow-outside","uagb-block-"+t)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+l,"uagb-tm__items")},b.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"==d||"left"==d)&&React.createElement(gE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testinomial-text-wrap",key:"text-wrap-"+a},React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-tm__meta"},React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"==d&&React.createElement(gE,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})))))),"right"==d&&React.createElement(gE,{attributes:e.attributes,index_value:a}))))))}},{attributes:vE,save(e){const{block_id:t,className:a,columns:l,autoplaySpeed:i,autoplay:o,infiniteLoop:n,pauseOnHover:r,transitionSpeed:s,tcolumns:c,arrowSize:u,mcolumns:p,test_block:b,imagePosition:d,arrowColor:g}=e.attributes;return React.createElement("div",{className:Be()(a,"uagb-testomonial__outer-wrap uagb-slick-carousel uagb-tm__arrow-outside","uagb-block-"+t)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+l,"uagb-tm__items")},b.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"==d||"left"==d)&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(B.Fragment,null,React.createElement("div",{className:"uagb-testinomial-text-wrap",key:"text-wrap-"+a},React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))),React.createElement("div",{className:"uagb-tm__meta"},React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}),React.createElement(B.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})))))),"right"==d&&React.createElement(dE,{attributes:e.attributes,index_value:a}))))))}},{attributes:{test_item_count:{type:"number",default:3},classMigrate:{type:"boolean",default:!1},test_block:{type:"array",default:_E},headingAlign:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align"}},headingAlignTablet:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align-tablet"}},headingAlignMobile:{type:"string",default:"center",UAGCopyPaste:{styleType:"main-title-align-mobile"}},descColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"desc-color"}},companyColor:{type:"string",default:"#888888",UAGCopyPaste:{styleType:"prefix-color"}},authorColor:{type:"string",UAGCopyPaste:{styleType:"author-color"},default:"#333"},iconimgStyle:{type:"string",UAGCopyPaste:{styleType:"image-style"},default:"circle"},imagePosition:{type:"string",UAGCopyPaste:{styleType:"image-position"},default:"bottom"},imageAlignment:{type:"string",UAGCopyPaste:{styleType:"image-align"},default:"top"},nameFontSizeType:{type:"string",UAGCopyPaste:{styleType:"author-font-size-type"},default:"px"},nameFontSize:{type:"number",default:20,UAGCopyPaste:{styleType:"author-font-size"}},nameFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"author-font-size-tablet"}},nameFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"author-font-size-mobile"}},nameFontFamily:{type:"string",UAGCopyPaste:{styleType:"author-font-family"},default:"Default"},nameFontWeight:{type:"string",default:"500",UAGCopyPaste:{styleType:"author-font-weight"}},nameFontStyle:{type:"string",UAGCopyPaste:{styleType:"author-font-style"}},nameLineHeightType:{type:"string",UAGCopyPaste:{styleType:"author-line-height-type"},default:"em"},nameLineHeight:{type:"number",default:2,UAGCopyPaste:{styleType:"author-line-height"}},nameLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"author-line-height-tablet"}},nameLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"author-line-height-mobile"}},nameLoadGoogleFonts:{type:"boolean",default:!1},companyFontSizeType:{type:"string",UAGCopyPaste:{styleType:"prefix-font-size-type"},default:"px"},companyFontSize:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size"}},companyFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-tablet"}},companyFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-font-size-mobile"}},companyFontFamily:{type:"string",UAGCopyPaste:{styleType:"prefix-font-family"},default:"Default"},companyFontWeight:{type:"string",UAGCopyPaste:{styleType:"prefix-font-weight"}},companyFontStyle:{type:"string",UAGCopyPaste:{styleType:"prefix-font-style"}},companyLineHeightType:{type:"string",UAGCopyPaste:{styleType:"prefix-line-height-type"},default:"em"},companyLineHeight:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height"}},companyLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-tablet"}},companyLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"prefix-line-height-mobile"}},companyLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"prefix-load-google-fonts"}},descFontSizeType:{type:"string",UAGCopyPaste:{styleType:"desc-font-size-type"},default:"px"},descFontSize:{type:"number",default:18,UAGCopyPaste:{styleType:"desc-font-size"}},descFontSizeTablet:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-tablet"}},descFontSizeMobile:{type:"number",UAGCopyPaste:{styleType:"desc-font-size-mobile"}},descFontFamily:{type:"string",UAGCopyPaste:{styleType:"desc-font-family"},default:"Default"},descFontWeight:{type:"string",default:"400",UAGCopyPaste:{styleType:"desc-font-weight"}},descFontStyle:{type:"string",UAGCopyPaste:{styleType:"desc-font-style"}},descLineHeightType:{type:"string",default:"em",UAGCopyPaste:{styleType:"desc-line-height-type"}},descLineHeight:{type:"number",default:1.6,UAGCopyPaste:{styleType:"desc-line-height"}},descLineHeightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-tablet"}},descLineHeightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-line-height-mobile"}},descLoadGoogleFonts:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"desc-load-google-fonts"}},nameSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"author-bottom-margin"}},nameSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin-mobile"}},nameSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"author-bottom-margin-tablet"}},descSpace:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin"},default:20},descSpaceTablet:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-tablet"}},descSpaceMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-margin-mobile"}},block_id:{type:"string",default:"not_set"},authorSpace:{type:"number",default:5,UAGCopyPaste:{styleType:"author-bottom-margin"}},imgVrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"image-vertical-padding"}},imgHrPadding:{type:"number",default:10,UAGCopyPaste:{styleType:"image-horizontal-padding"}},imgTopPadding:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"},default:10},imgBottomPadding:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"},default:10},iconImage:{type:"object",default:{url:"",alt:"InfoBox placeholder img"}},imageSize:{type:"string",UAGCopyPaste:{styleType:"image-size"},default:"thumbnail"},imageWidth:{type:"number",UAGCopyPaste:{styleType:"image-width"},default:60},imageWidthMobile:{type:"number",UAGCopyPaste:{styleType:"image-width-mobile"}},imageWidthTablet:{type:"number",UAGCopyPaste:{styleType:"image-width-tablet"}},columns:{type:"number",default:1},tcolumns:{type:"number",default:1},mcolumns:{type:"number",default:1},pauseOnHover:{type:"boolean",default:!0},infiniteLoop:{type:"boolean",default:!0},transitionSpeed:{type:"number",default:500},autoplay:{type:"boolean",default:!0},autoplaySpeed:{type:"number",default:2e3},arrowDots:{type:"string",default:"arrows_dots"},arrowSize:{type:"number",default:20,UAGCopyPaste:{styleType:"arrow-size"}},arrowBorderSize:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-size"}},arrowBorderSizeUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-unit"}},arrowBorderRadius:{type:"number",default:0,UAGCopyPaste:{styleType:"arrow-border-radius"}},arrowBorderRadiusUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-unit"}},arrowColor:{type:"string",default:"#333",UAGCopyPaste:{styleType:"arrow-color"}},rowGap:{type:"number",default:10,UAGCopyPaste:{styleType:"row-gap"}},rowGapMobile:{type:"number",UAGCopyPaste:{styleType:"row-gap-mobile"}},rowGapTablet:{type:"number",UAGCopyPaste:{styleType:"row-gap-tablet"}},columnGap:{type:"number",default:10,UAGCopyPaste:{styleType:"column-gap"}},columnGapMobile:{type:"number",UAGCopyPaste:{styleType:"column-gap-mobile"}},columnGapTablet:{type:"number",UAGCopyPaste:{styleType:"column-gap-tablet"}},contentPadding:{type:"number",default:5,UAGCopyPaste:{styleType:"content-padding"}},backgroundType:{type:"string",default:"none",UAGCopyPaste:{styleType:"column-bg-type"}},backgroundImage:{type:"object",UAGCopyPaste:{styleType:"column-bg-image"}},backgroundPosition:{type:"string",UAGCopyPaste:{styleType:"column-bg-position"},default:"center-center"},backgroundSize:{type:"string",default:"cover",UAGCopyPaste:{styleType:"column-bg-size"}},backgroundRepeat:{type:"string",default:"no-repeat",UAGCopyPaste:{styleType:"column-bg-repeat"}},backgroundColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-color"}},backgroundImageColor:{type:"string",UAGCopyPaste:{styleType:"column-bg-image-color"}},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number"},borderRadius:{type:"number"},borderColor:{type:"string"},backgroundOpacity:{type:"number",UAGCopyPaste:{styleType:"column-bg-opacity"}},stack:{type:"string",default:"tablet"},imageWidthType:{type:"string",UAGCopyPaste:{styleType:"image-width-type"},default:"px"},arrowSizeType:{type:"string",default:"px",UAGCopyPaste:{styleType:"arrow-size-type"}},rowGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"row-gap-unit"}},columnGapType:{type:"string",default:"px",UAGCopyPaste:{styleType:"column-gap-unit"}},descSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-bottom-margin-unit"}},nameSpaceType:{type:"string",default:"px",UAGCopyPaste:{styleType:"author-bottom-margin-type"}},borderHoverColor:{type:"string"},overlayType:{type:"string",UAGCopyPaste:{styleType:"column-overlay-type"},default:"color"},backgroundAttachment:{type:"string",UAGCopyPaste:{styleType:"column-bg-attachment"}},gradientValue:{type:"string",default:"linear-gradient(90deg, rgb(6, 147, 227, 0.5) 0%, rgb(155, 81, 224, 0.5) 100%)",UAGCopyPaste:{styleType:"column-gradient-value"}},descTransform:{type:"string",UAGCopyPaste:{styleType:"desc-transform"}},descDecoration:{type:"string",UAGCopyPaste:{styleType:"desc-decoration"}},nameTransform:{type:"string",UAGCopyPaste:{styleType:"author-transform"}},nameDecoration:{type:"string",UAGCopyPaste:{styleType:"author-decoration"}},companyTransform:{type:"string",UAGCopyPaste:{styleType:"prefix-transform"}},companyDecoration:{type:"string",UAGCopyPaste:{styleType:"prefix-decoration"}},paddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit"}},mobilePaddingUnit:{type:"string",UAGCopyPaste:{styleType:"desc-padding-unit-mobile"},default:"px"},tabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-padding-unit-tablet"}},paddingTop:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding"}},paddingBottom:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding"}},paddingLeft:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding"}},paddingRight:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding"}},paddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-tablet"}},paddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"desc-top-padding-mobile"}},paddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"desc-right-padding-mobile"}},paddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"desc-bottom-padding-mobile"}},paddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"desc-left-padding-mobile"}},imgspacingLink:{type:"boolean"},spacingLink:{type:"boolean"},imgpaddingTop:{type:"number",UAGCopyPaste:{styleType:"image-top-padding"}},imgpaddingRight:{type:"number",UAGCopyPaste:{styleType:"image-right-padding"}},imgpaddingBottom:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding"}},imgpaddingLeft:{type:"number",UAGCopyPaste:{styleType:"image-left-padding"}},imgpaddingTopTablet:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-tablet"}},imgpaddingRightTablet:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-tablet"}},imgpaddingBottomTablet:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-tablet"}},imgpaddingLeftTablet:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-tablet"}},imgpaddingTopMobile:{type:"number",UAGCopyPaste:{styleType:"image-top-padding-mobile"}},imgpaddingRightMobile:{type:"number",UAGCopyPaste:{styleType:"image-right-padding-mobile"}},imgpaddingBottomMobile:{type:"number",UAGCopyPaste:{styleType:"image-bottom-padding-mobile"}},imgpaddingLeftMobile:{type:"number",UAGCopyPaste:{styleType:"image-left-padding-mobile"}},imgpaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit"}},imgmobilePaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-mobile"}},imgtabletPaddingUnit:{type:"string",default:"px",UAGCopyPaste:{styleType:"image-padding-unit-tablet"}},gradientColor1:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-1"}},gradientColor2:{type:"string",UAGCopyPaste:{styleType:"column-gradient-color-2"}},gradientType:{type:"string",UAGCopyPaste:{styleType:"column-gradient-type"},default:"linear"},gradientLocation1:{type:"number",default:0,UAGCopyPaste:{styleType:"column-gradient-location-1"}},gradientLocation2:{type:"number",UAGCopyPaste:{styleType:"column-gradient-location-2"},default:100},gradientAngle:{type:"number",UAGCopyPaste:{styleType:"column-gradient-angle"},default:0},gradientPosition:{type:"string",UAGCopyPaste:{styleType:"column-gradient-position"},default:"center center"},isPreview:{type:"boolean",default:!1},equalHeight:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"post-equal-height"}},...hE,nameLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing"}},nameLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-tablet"}},nameLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"main-title-letter-spacing-mobile"}},nameLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"main-title-letter-spacing-type"}},descLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},descLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},descLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},descLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}},companyLetterSpacing:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing"}},companyLetterSpacingTablet:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-tablet"}},companyLetterSpacingMobile:{type:"number",UAGCopyPaste:{styleType:"desc-letter-spacing-mobile"}},companyLetterSpacingType:{type:"string",default:"px",UAGCopyPaste:{styleType:"desc-letter-spacing-type"}}},save(e){const{block_id:t,className:a,columns:l,tcolumns:i,mcolumns:o,test_block:n,imagePosition:r,equalHeight:s,test_item_count:c}=e.attributes,u=s?"uagb-post__carousel_equal-height":"",p=c===l?"uagb-post__carousel_notset":"",b=c===i?"uagb-post__carousel_notset-tablet":"",d=c===o?"uagb-post__carousel_notset-mobile":"";return React.createElement("div",{className:Be()(a,"uagb-slick-carousel uagb-tm__arrow-outside","uagb-block-"+t,""+u,p,b,d)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+Ps(l,"columns","testimonial"),"uagb-tm__items")},n.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"===r||"left"===r)&&React.createElement(gE,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})),React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"===r&&React.createElement(gE,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))))),"right"===r&&React.createElement(gE,{attributes:e.attributes,index_value:a}))))))}}];a(369);let CE={};CE=Object(j.applyFilters)("uagb/testimonial",ws(CE)),Object(be.registerBlockType)("uagb/testimonial",{...CE,title:Object(r.__)("Testimonials","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display customer testimonials in customizable layouts.","ultimate-addons-for-gutenberg"),icon:se.testimonial,keywords:[Object(r.__)("testimonial","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:mt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"testimonial"}):React.createElement(bE,e),save:function(e){const{block_id:t,className:a,columns:l,tcolumns:i,mcolumns:o,test_block:n,imagePosition:r,equalHeight:s,test_item_count:c}=e.attributes,u=s?"uagb-post__carousel_equal-height":"",p=c===l?"uagb-post__carousel_notset":"",b=c===i?"uagb-post__carousel_notset-tablet":"",d=c===o?"uagb-post__carousel_notset-mobile":"";return React.createElement("div",{className:Be()(a,"uagb-slick-carousel uagb-tm__arrow-outside","uagb-block-"+t,""+u,p,b,d)},React.createElement("div",{className:Be()("is-carousel","uagb-tm__columns-"+Ps(l,"columns","testimonial"),"uagb-tm__items")},n.map((t,a)=>React.createElement("div",{className:Be()("uagb-testimonial__wrap",...XU(e.attributes)),key:"wrap-"+a},React.createElement("div",{className:"uagb-tm__content",key:"tm_content-"+a},React.createElement("div",{className:"uagb-tm__overlay"}),("top"===r||"left"===r)&&React.createElement(QU,{attributes:e.attributes,index_value:a}),React.createElement("div",{className:"uagb-tm__text-wrap"},React.createElement(React.Fragment,null,React.createElement(aE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a})),React.createElement("div",{className:"uagb-tm__meta-inner"},"bottom"===r&&React.createElement(QU,{attributes:e.attributes,index_value:a}),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-testimonial-details",key:"tm_wraps-"+a},React.createElement(eE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}),React.createElement(tE,{attributes:e.attributes,setAttributes:"not_set",props:e,index_value:a}))))),"right"===r&&React.createElement(QU,{attributes:e.attributes,index_value:a}))))))},deprecated:TE});var SE={UAGAnimationType:{type:"string",default:"",UAGCopyPaste:{styleType:"block-animation-type"}},UAGAnimationTime:{type:"number",default:400,UAGCopyPaste:{styleType:"block-animation-time"}},UAGAnimationDelay:{type:"number",default:0,UAGCopyPaste:{styleType:"block-animation-delay"}},UAGAnimationEasing:{type:"string",default:"ease",UAGCopyPaste:{styleType:"block-animation-easing"}},UAGAnimationRepeat:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"block-animation-repeat"}}},wE={UAGPosition:{type:"string",default:"",UAGCopyPaste:{styleType:"block-position-type"}},UAGStickyLocation:{type:"string",default:"top",UAGCopyPaste:{styleType:"block-position-sticky-location"}},UAGStickyRestricted:{type:"boolean",default:!1,UAGCopyPaste:{styleType:"block-position-sticky-restricted"}},UAGStickyOffset:{type:"number",default:0,UAGCopyPaste:{styleType:"block-position-sticky-offset"}}},kE={isGridCssInParent:{type:"boolean",default:!1},gridSettingType:{type:"string"},gridColumnStart:{type:"number"},gridColumnEnd:{type:"number"},gridColumnStartTablet:{type:"number"},gridColumnEndTablet:{type:"number"},gridColumnStartMobile:{type:"number"},gridColumnEndMobile:{type:"number"},gridRowStart:{type:"number"},gridRowEnd:{type:"number"},gridRowStartTablet:{type:"number"},gridRowEndTablet:{type:"number"},gridRowStartMobile:{type:"number"},gridRowEndMobile:{type:"number"},gridAlignItems:{type:"string"},gridAlignItemsTablet:{type:"string"},gridAlignItemsMobile:{type:"string"},gridJustifyItems:{type:"string"},gridJustifyItemsTablet:{type:"string"},gridJustifyItemsMobile:{type:"string"},gridColumnSpan:{type:"number"},gridRowSpan:{type:"number"},gridColumnSpanTablet:{type:"number"},gridRowSpanTablet:{type:"number"},gridColumnSpanMobile:{type:"number"},gridRowSpanMobile:{type:"number"}};const{enableMasonryGallery:PE}=uagb_blocks_info;Object(j.addFilter)("blocks.registerBlockType","uagb/advanced-control-block",(function(e){return uagb_blocks_info.uagb_exclude_blocks_from_extension.includes(e.name)||e.attributes&&(e.attributes=Object.assign(e.attributes,{UAGUserRole:{type:"string"},UAGBrowser:{type:"string"},UAGSystem:{type:"string"},UAGHideDesktop:{type:"boolean",default:!1},UAGHideMob:{type:"boolean",default:!1},UAGHideTab:{type:"boolean",default:!1},UAGLoggedIn:{type:"boolean",default:!1},UAGLoggedOut:{type:"boolean",default:!1},UAGDisplayConditions:{type:"string"},UAGDay:{type:"array",default:[]},zIndex:{type:"number"},zIndexTablet:{type:"number"},zIndexMobile:{type:"number"},UAGResponsiveConditions:{type:"boolean",default:!1},...SE,...wE})),"uagb/container"===e.name&&null!=e&&e.attributes&&(e.attributes={...e.attributes,...kE}),e})),("enabled"===PE||!0===PE)&&Object(j.addFilter)("blocks.registerBlockType","uagb/masonry-gallery",(function(e){return["core/gallery"].includes(e.name)&&e.attributes&&(e.attributes=Object.assign(e.attributes,{masonry:{type:"boolean",default:!1},masonryGutter:{type:"number"},block_id:{type:"string"}})),e})),Object(j.addFilter)("blocks.registerBlockType","uagb/block-label",(function(e){return e.name.includes("uagb/")&&(e.attributes={...e.attributes,metadata:{type:"object",default:{name:""}}},null!=e&&e.__experimentalLabel||(e.__experimentalLabel=(e,t)=>{let{context:a}=t;const{metadata:l}=e;if("list-view"===a&&l.name)return l.name})),e}));var xE,AE=a(148),GE=0,ME={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},RE={};RE.locals=AE.a.locals||{},RE.use=function(){return GE++||(xE=ke()(AE.a,ME)),RE},RE.unuse=function(){GE>0&&!--GE&&(xE(),xE=null)};var BE=RE;const{enableMasonryGallery:UE}=uagb_blocks_info,EE=Object(L.createHigherOrderComponent)(e=>t=>{const{attributes:a,setAttributes:l,isSelected:i}=t,o=t.name;Object(B.useLayoutEffect)(()=>(BE.use(),()=>{BE.unuse()}),[]),(()=>{const e=a.columns?a.columns:3,l={".wp-block-gallery ul.blocks-gallery-grid":{"column-gap":ns(a.masonryGutter,"px"),"column-count":e},".wp-block-gallery ul.blocks-gallery-grid li.blocks-gallery-item":{"margin-bottom":ns(a.masonryGutter,"px")},".wp-block-gallery.blocks-gallery-grid.has-nested-images.uag-masonry.blocks-gallery-grid":{"column-gap":ns(a.masonryGutter,"px"),"column-count":e},".wp-block-gallery.blocks-gallery-grid.has-nested-images.uag-masonry.blocks-gallery-grid figure.wp-block-image:not(#individual-image)":{"margin-bottom":ns(a.masonryGutter,"px")}},i=ae(l,"#block-"+t.clientId),o=(()=>{var e,t,a;let l=document;const i=document.querySelectorAll('iframe[name="editor-canvas"]');if(null==i||!i[0])return document;const o=(null===(e=i[0])||void 0===e||null===(t=e.contentWindow)||void 0===t?void 0:t.document)||(null===(a=i[0])||void 0===a?void 0:a.contentDocument);if(!o)return document;l=o;const n=l.getElementById("uagb-editor-styles"),r=document.getElementById("uagb-editor-styles");if(!n&&r){var s;const e=r.cloneNode(!0);null===(s=l.head)||void 0===s||s.appendChild(e)}return l})();if(a.masonry){const e=o.getElementById("uag-gallery-masonry-style-"+t.clientId.substr(0,8));if(null!=e)e.innerHTML=i;else{var n;const e=o.createElement("style");e.setAttribute("id","uag-gallery-masonry-style-"+t.clientId.substr(0,8)),e.innerHTML=i,null===(n=o.head)||void 0===n||n.appendChild(e)}}})();const s=void 0!==a.ids?a.ids.length:Object(n.select)("core/block-editor").getBlocks(t.clientId).length;return React.createElement(React.Fragment,null,React.createElement(e,t),i&&["core/gallery"].includes(o)&&0!==s.length&&React.createElement(ge.InspectorControls,null,React.createElement(Fe,{title:Object(r.__)("Masonry Gallery","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Enable Masonry Layout","ultimate-addons-for-gutenberg"),checked:a.masonry,onChange:e=>(e=>{if(e)l({className:"uag-masonry"});else{let e=a.className;e=e.replace("uag-masonry",""),l({className:e})}l({masonry:!a.masonry}),l({block_id:t.clientId.substr(0,8)})})(e)}),a.masonry&&React.createElement(Qa,{label:Object(r.__)("Gap","ultimate-addons-for-gutenberg"),data:{value:a.masonryGutter,label:"masonryGutter"},min:0,max:100,setAttributes:l,value:a.masonryGutter,units:[{name:Object(r.__)("Gap","ultimate-addons-for-gutenberg"),unitValue:"px"}]}))))},"MasonryGallery");"enabled"!==UE&&!0!==UE||(Object(j.addFilter)("editor.BlockEdit","uagb/masonry-gallery",EE,999),Object(j.addFilter)("blocks.getSaveContent.extraProps","uagb/apply-extra-class",(function(e,t,a){return"core/gallery"===t.name&&a.masonry&&(e.className=e.className+" uagb-block-"+a.block_id),e})));const OE=[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{label:Object(r.__)("Fade","ultimate-addons-for-gutenberg"),options:[{value:"fade",label:Object(r.__)("Fade","ultimate-addons-for-gutenberg")},{value:"fade-down",label:Object(r.__)("Fade Down","ultimate-addons-for-gutenberg")},{value:"fade-up",label:Object(r.__)("Fade Up","ultimate-addons-for-gutenberg")},{value:"fade-left",label:Object(r.__)("Fade Left","ultimate-addons-for-gutenberg")},{value:"fade-right",label:Object(r.__)("Fade Right","ultimate-addons-for-gutenberg")}]},{label:Object(r.__)("Flip","ultimate-addons-for-gutenberg"),options:[{value:"flip-down",label:Object(r.__)("Flip Down","ultimate-addons-for-gutenberg")},{value:"flip-up",label:Object(r.__)("Flip Up","ultimate-addons-for-gutenberg")},{value:"flip-left",label:Object(r.__)("Flip Left","ultimate-addons-for-gutenberg")},{value:"flip-right",label:Object(r.__)("Flip Right","ultimate-addons-for-gutenberg")}]},{label:Object(r.__)("Slide","ultimate-addons-for-gutenberg"),options:[{value:"slide-down",label:Object(r.__)("Slide Down","ultimate-addons-for-gutenberg")},{value:"slide-up",label:Object(r.__)("Slide Up","ultimate-addons-for-gutenberg")},{value:"slide-left",label:Object(r.__)("Slide Left","ultimate-addons-for-gutenberg")},{value:"slide-right",label:Object(r.__)("Slide Right","ultimate-addons-for-gutenberg")}]},{label:Object(r.__)("Zoom-In","ultimate-addons-for-gutenberg"),options:[{value:"zoom-in",label:Object(r.__)("Zoom-In","ultimate-addons-for-gutenberg")},{value:"zoom-in-down",label:Object(r.__)("Zoom-In Down","ultimate-addons-for-gutenberg")},{value:"zoom-in-up",label:Object(r.__)("Zoom-In Up","ultimate-addons-for-gutenberg")},{value:"zoom-in-left",label:Object(r.__)("Zoom-In Left","ultimate-addons-for-gutenberg")},{value:"zoom-in-right",label:Object(r.__)("Zoom-In Right","ultimate-addons-for-gutenberg")}]},{label:Object(r.__)("Zoom-Out","ultimate-addons-for-gutenberg"),options:[{value:"zoom-out",label:Object(r.__)("Zoom-Out","ultimate-addons-for-gutenberg")},{value:"zoom-out-down",label:Object(r.__)("Zoom-Out Down","ultimate-addons-for-gutenberg")},{value:"zoom-out-up",label:Object(r.__)("Zoom-Out Up","ultimate-addons-for-gutenberg")},{value:"zoom-out-left",label:Object(r.__)("Zoom-Out Left","ultimate-addons-for-gutenberg")},{value:"zoom-out-right",label:Object(r.__)("Zoom-Out Right","ultimate-addons-for-gutenberg")}]}],LE={none:{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},fade:{value:"fade",label:Object(r.__)("Fade","ultimate-addons-for-gutenberg")},"fade-down":{value:"fade-down",label:Object(r.__)("Fade Down","ultimate-addons-for-gutenberg")},"fade-up":{value:"fade-up",label:Object(r.__)("Fade Up","ultimate-addons-for-gutenberg")},"fade-left":{value:"fade-left",label:Object(r.__)("Fade Left","ultimate-addons-for-gutenberg")},"fade-right":{value:"fade-right",label:Object(r.__)("Fade Right","ultimate-addons-for-gutenberg")},"flip-down":{value:"flip-down",label:Object(r.__)("Flip Down","ultimate-addons-for-gutenberg")},"flip-up":{value:"flip-up",label:Object(r.__)("Flip Up","ultimate-addons-for-gutenberg")},"flip-left":{value:"flip-left",label:Object(r.__)("Flip Left","ultimate-addons-for-gutenberg")},"flip-right":{value:"flip-right",label:Object(r.__)("Flip Right","ultimate-addons-for-gutenberg")},"slide-down":{value:"slide-down",label:Object(r.__)("Slide Down","ultimate-addons-for-gutenberg")},"slide-up":{value:"slide-up",label:Object(r.__)("Slide Up","ultimate-addons-for-gutenberg")},"slide-left":{value:"slide-left",label:Object(r.__)("Slide Left","ultimate-addons-for-gutenberg")},"slide-right":{value:"slide-right",label:Object(r.__)("Slide Right","ultimate-addons-for-gutenberg")},"zoom-in":{value:"zoom-in",label:Object(r.__)("Zoom-In","ultimate-addons-for-gutenberg")},"zoom-in-down":{value:"zoom-in-down",label:Object(r.__)("Zoom-In Down","ultimate-addons-for-gutenberg")},"zoom-in-up":{value:"zoom-in-up",label:Object(r.__)("Zoom-In Up","ultimate-addons-for-gutenberg")},"zoom-in-left":{value:"zoom-in-left",label:Object(r.__)("Zoom-In Left","ultimate-addons-for-gutenberg")},"zoom-in-right":{value:"zoom-in-right",label:Object(r.__)("Zoom-In Right","ultimate-addons-for-gutenberg")},"zoom-out":{value:"zoom-out",label:Object(r.__)("Zoom-Out","ultimate-addons-for-gutenberg")},"zoom-out-down":{value:"zoom-out-down",label:Object(r.__)("Zoom-Out Down","ultimate-addons-for-gutenberg")},"zoom-out-up":{value:"zoom-out-up",label:Object(r.__)("Zoom-Out Up","ultimate-addons-for-gutenberg")},"zoom-out-left":{value:"zoom-out-left",label:Object(r.__)("Zoom-Out Left","ultimate-addons-for-gutenberg")},"zoom-out-right":{value:"zoom-out-right",label:Object(r.__)("Zoom-Out Right","ultimate-addons-for-gutenberg")}};var HE=e=>{const{attributes:{UAGStickyLocation:t,UAGStickyRestricted:a,UAGStickyOffset:l,isBlockRootParent:i},setAttributes:o}=e;return React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:o,label:Object(r.__)("Stick at","ultimate-addons-for-gutenberg"),data:{value:t,label:"UAGStickyLocation"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"bottom",label:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}]}),React.createElement(Qa,{label:Object(r.__)("Offset","ultimate-addons-for-gutenberg"),setAttributes:o,value:l,data:{value:l,label:"UAGStickyOffset"},min:0,max:500,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),"top"===t&&!i&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Keep Inside Parent","ultimate-addons-for-gutenberg"),checked:a,onChange:()=>o({UAGStickyRestricted:!a})}))},jE=e=>{const{attributes:{UAGPosition:t},setAttributes:a}=e;return React.createElement(Fe,{title:Object(r.__)("Sticky","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"block-editor-block-inspector__advanced uagb-extention-tab"},React.createElement(Le.ToggleControl,{label:Object(r.__)("Sticky Container","ultimate-addons-for-gutenberg"),checked:"sticky"===t,onChange:()=>a({UAGPosition:"sticky"===t?"":"sticky"}),help:Object(r.__)("Changes affect the frontend only","ultimate-addons-for-gutenberg")}),"sticky"===t&&React.createElement(HE,e))};function FE(){return(FE=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const{enableConditions:zE,enableResponsiveConditions:DE,enableAnimationsExtension:NE}=uagb_blocks_info,IE=Object(L.createHigherOrderComponent)(e=>t=>{const{attributes:a}=t,{UAGAnimationType:l,UAGAnimationTime:i,UAGAnimationDelay:o,UAGAnimationEasing:n,UAGAnimationRepeat:r,layout:s}=a,c={...t.wrapperProps};return""!==l&&(c["data-aos-duration"]=i,c["data-aos-delay"]=o,c["data-aos-easing"]=n,r||(c["data-aos-once"]="true")),["grid","flex"].includes(s)&&(c.className=Be()(c.className,"uagb-layout-"+s)),React.createElement(e,FE({},t,{wrapperProps:c}))},"withAOSWrapperProps");Object(j.addFilter)("uag_advance_tab_content","uagb/advanced-display-condition",(function(e,t){if(!t)return e;const{isSelected:a,name:l}=t,i=["uagb/cf7-styler","uagb/wp-search","uagb/gf-styler","uagb/columns","uagb/section","uagb/popup-builder"],o=["uagb/tabs","uagb/tabs-child","uagb/countdown","uagb/modal","uagb/popup-builder"],s=Object(n.select)("core/block-editor").getBlockParents(t.clientId);let c=!0;if(s.length)for(let e=0;e<s.length;e++){const t=Object(n.select)("core/block-editor").getBlock(s[e]);if(o.includes(t.name)){c=!1;break}}return React.createElement(React.Fragment,null,a&&"uagb/container"===l&&React.createElement(jE,t),a&&"enabled"===NE&&!i.includes(l)&&!["uagb/content-timeline-child","uagb/slider-child","uagb/content-timeline-child","uagb/popup-builder","uagb/sure-forms","uagb/sure-cart-product","uagb/sure-cart-checkout"].includes(l)&&c&&React.createElement(Fe,{title:Object(r.__)("Animations","ultimate-addons-for-gutenberg"),initialOpen:!1===l,className:"block-editor-block-inspector__advanced uagb-extention-tab"},(e=>{var t;const{clientId:a,name:l,attributes:{UAGAnimationType:i,UAGAnimationTime:o,UAGAnimationDelay:n,UAGAnimationEasing:s},setAttributes:c}=e,u=Object(j.applyFilters)("spectra.animations-extension.easing-pro-options","",l),p=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i;const t=document.querySelector('iframe[name="editor-canvas"]'),l=(null==t?void 0:t.contentDocument)||(null==t?void 0:t.contentWindow.document),r=t?l.getElementById("block-"+a):document.getElementById("block-"+a),c=parseInt(localStorage.getItem("aosWaitTimeoutCode-"+a)),p=parseInt(localStorage.getItem("aosRemoveClassesTimeoutCode-"+a));c&&(r.removeAttribute("data-aos"),r.classList.remove("aos-animate")),r.style.transitionDuration="0s",r.setAttribute("data-aos",e),r.style.transitionTimingFunction=u?u[s]:"cubic-bezier(.250, .100, .250, 1)",clearTimeout(c),clearTimeout(p);const b=setTimeout(()=>{r.style.transitionDuration=o/1e3+"s",r.classList.add("aos-animate")},0),d=setTimeout(()=>{r.removeAttribute("data-aos"),r.classList.remove("aos-animate"),r.style.transitionDuration="",r.style.transitionTimingFunction=""},n+o);localStorage.setItem("aosWaitTimeoutCode-"+a,b),localStorage.setItem("aosRemoveClassesTimeoutCode-"+a,d)};e={...e,playAnimation:p};const b=Object(j.applyFilters)("spectra.animations-extension.pro-options",e),d=!(b.$$typeof!==Symbol.for("react.element")||null==b||null===(t=b.props)||void 0===t||!t.children)||null;return React.createElement(React.Fragment,null,React.createElement(Qd,{placeholder:Object(r.__)("Animation Type","ultimate-addons-for-gutenberg"),onChange:e=>{c({UAGAnimationType:e.value}),p(e.value)},options:OE,value:""!==i?LE[i]:LE.none,defaultValue:""!==i?LE[i]:LE.none,isSearchable:!0,className:"uagb-animation-type-searchable-select",classNamePrefix:"uagb-animation-type-select"}),d&&b,!uagb_blocks_info.spectra_pro_status&&React.createElement("br",null),i&&!d&&React.createElement(Le.Button,{className:"uagb-animation__play-button",onClick:()=>p(),variant:"tertiary"},Object(r.__)("Preview","ultimate-addons-for-gutenberg")))})(t),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Qr,{control:{title:Object(r.__)("Take Animations to the next level with powerful design features","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("Set delays and durations","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Change animation pacing","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Repeat on scroll","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Animate all nested blocks inside containers with delays","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"advanced-animations"}})),a&&!["uagb/buttons-child","uagb/faq-child","uagb/icon-list-child","uagb/social-share-child","uagb/restaurant-menu-child","uagb/slider-child","uagb/sure-forms","uagb/sure-cart-product","uagb/sure-cart-checkout"].includes(l)&&React.createElement(React.Fragment,null,"enabled"===zE&&!["uagb/popup-builder"].includes(l)&&React.createElement(Fe,{title:Object(r.__)("Display Conditions","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"block-editor-block-inspector__advanced uagb-extention-tab"},(e=>{const{attributes:t,setAttributes:a}=e,{UAGLoggedIn:l,UAGLoggedOut:i,UAGDisplayConditions:o,UAGSystem:n,UAGBrowser:s,UAGUserRole:c,UAGDay:u}=t,p=e=>{const{value:t,checked:l}=e.target;a({UAGDay:l?[...u,t]:Y(u,t)})},b=[{value:"monday",label:Object(r.__)("Monday","ultimate-addons-for-gutenberg")},{value:"tuesday",label:Object(r.__)("Tuesday","ultimate-addons-for-gutenberg")},{value:"wednesday",label:Object(r.__)("Wednesday","ultimate-addons-for-gutenberg")},{value:"thursday",label:Object(r.__)("Thursday","ultimate-addons-for-gutenberg")},{value:"friday",label:Object(r.__)("Friday","ultimate-addons-for-gutenberg")},{value:"saturday",label:Object(r.__)("Saturday","ultimate-addons-for-gutenberg")},{value:"sunday",label:Object(r.__)("Sunday","ultimate-addons-for-gutenberg")}];return React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Display Conditions","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({UAGDisplayConditions:e}),options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"userstate",label:Object(r.__)("User State","ultimate-addons-for-gutenberg")},{value:"userRole",label:Object(r.__)("User Role","ultimate-addons-for-gutenberg")},{value:"browser",label:Object(r.__)("Browser","ultimate-addons-for-gutenberg")},{value:"os",label:Object(r.__)("Operating System","ultimate-addons-for-gutenberg")},{value:"day",label:Object(r.__)("Day","ultimate-addons-for-gutenberg")}]}),"userstate"===o&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide From Logged In Users","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({UAGLoggedIn:!t.UAGLoggedIn})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide From Logged Out Users","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({UAGLoggedOut:!t.UAGLoggedOut})})),"os"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide on Operating System","ultimate-addons-for-gutenberg"),value:n,onChange:e=>a({UAGSystem:e}),options:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"iphone",label:Object(r.__)("iOS","ultimate-addons-for-gutenberg")},{value:"android",label:Object(r.__)("Android","ultimate-addons-for-gutenberg")},{value:"windows",label:Object(r.__)("Windows","ultimate-addons-for-gutenberg")},{value:"open_bsd",label:Object(r.__)("OpenBSD","ultimate-addons-for-gutenberg")},{value:"sun_os",label:Object(r.__)("SunOS","ultimate-addons-for-gutenberg")},{value:"linux",label:Object(r.__)("Linux","ultimate-addons-for-gutenberg")},{value:"mac_os",label:Object(r.__)("Mac OS","ultimate-addons-for-gutenberg")}]})),"browser"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide on Browser","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({UAGBrowser:e}),options:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"firefox",label:Object(r.__)("Mozilla Firefox","ultimate-addons-for-gutenberg")},{value:"chrome",label:Object(r.__)("Google Chrome","ultimate-addons-for-gutenberg")},{value:"opera_mini",label:Object(r.__)("Opera Mini","ultimate-addons-for-gutenberg")},{value:"opera",label:Object(r.__)("Opera","ultimate-addons-for-gutenberg")},{value:"safari",label:Object(r.__)("Safari","ultimate-addons-for-gutenberg")},{value:"edge",label:Object(r.__)("Microsoft Edge","ultimate-addons-for-gutenberg")}]})),"userRole"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide for User Role","ultimate-addons-for-gutenberg"),value:c,onChange:e=>a({UAGUserRole:e}),options:uagb_blocks_info.user_role})),"day"===o&&React.createElement(React.Fragment,null,React.createElement("p",null,Object(r.__)("Select days you want to disable.","ultimate-addons-for-gutenberg")),b.map((e,t)=>React.createElement("label",{key:t,className:"form-check-label",htmlFor:"flexCheckDefault"},React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",name:e.value,value:e.value,sunday:!0,onChange:p,checked:!(null==u||!u.includes(e.value))}),e.label))))})(t),React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg"))),"enabled"===DE&&React.createElement(Fe,{title:Object(r.__)("Responsive Conditions","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"block-editor-block-inspector__advanced uagb-extention-tab"},(e=>{const{attributes:t,setAttributes:a}=e,{UAGHideDesktop:l,UAGHideMob:i,UAGHideTab:o,UAGResponsiveConditions:n,UAGDisplayConditions:s}=t;return Object(B.useEffect)(()=>{"responsiveVisibility"===s||n||a({UAGHideDesktop:!1,UAGHideTab:!1,UAGHideMob:!1})},[]),React.createElement(React.Fragment,null,React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Desktop","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({UAGHideDesktop:!t.UAGHideDesktop,UAGResponsiveConditions:!0})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Tablet","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>a({UAGHideTab:!t.UAGHideTab,UAGResponsiveConditions:!0})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Mobile","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({UAGHideMob:!t.UAGHideMob,UAGResponsiveConditions:!0})})))})(t),React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg"))),!i.includes(l)&&React.createElement(Fe,{title:Object(r.__)("Z-Index","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"block-editor-block-inspector__advanced uagb-extention-tab"},(e=>{const{attributes:t,setAttributes:a}=e,{zIndex:l,zIndexTablet:i,zIndexMobile:o}=t;return React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Z-Index","ultimate-addons-for-gutenberg"),data:{desktop:{value:l,label:"zIndex"},tablet:{value:i,label:"zIndexTablet"},mobile:{value:o,label:"zIndexMobile"}},min:-100,max:1e3,displayUnit:!1,setAttributes:a}),React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Above setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")))})(t))))})),Object(j.addFilter)("editor.BlockListBlock","uagb/with-aos-wrapper-props",IE),Object(j.addFilter)("blocks.getSaveContent.extraProps","uagb/apply-extra-class",(function(e,t,a){const{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,zIndex:n,zIndexTablet:r,zIndexMobile:s,UAGDisplayConditions:c,UAGResponsiveConditions:u,layout:p}=a,b=Object(j.applyFilters)("uag_reponsive_conditions_compatible_blocks",["uagb/"]);let d=!1;for(const e of b)if(t.name.includes(e)){d=!0;break}return("responsiveVisibility"===c||u&&d)&&(l&&(e.className=Be()(e.className,"uag-hide-desktop")),i&&(e.className=Be()(e.className,"uag-hide-tab")),o&&(e.className=Be()(e.className,"uag-hide-mob"))),(n||r||s)&&(e.className=Be()(e.className,"uag-blocks-common-selector"),e.style={"--z-index-desktop":n+";","--z-index-tablet":r+";","--z-index-mobile":s+";"}),"uagb/container"!==(null==t?void 0:t.name)||"grid"!==p&&"flex"!==p||(e.className=Be()(e.className,"uagb-layout-"+p)),e}));var VE=a(55),WE={copy:React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",height:"18px",viewBox:"0 0 24 24",width:"18px",fill:"#000000"},React.createElement("path",{d:"M0 0h24v24H0V0z",fill:"none"}),React.createElement("path",{d:"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm3 4H8c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"})),paste:React.createElement("svg",{xmlns:"https://www.w3.org/2000/svg",height:"18px",viewBox:"0 0 24 24",width:"18px",fill:"#000000"},React.createElement("path",{d:"M0 0h24v24H0V0z",fill:"none"}),React.createElement("path",{d:"M19 2h-4.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H5c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z"}))};const qE=()=>{const{registerShortcut:e}=Object(n.useDispatch)(VE.store),t=Object(j.applyFilters)("uagb.blocksAttributes",za),[a,l]=Object(B.useState)(!1),[i,o]=Object(B.useState)(!1),{hasMultiSelection:s}=Object(n.select)("core/block-editor"),c=te();Object(B.useLayoutEffect)(()=>(BE.use(),()=>{BE.unuse()}),[]),Object(B.useEffect)(()=>{const t=te("spectraCopyPasteStyles");if(t||c.setItem("spectraCopyPasteStyles",JSON.stringify({})),t){for(const e in t)Math.abs(Date.now()-t[e].stylesSavedTimeStamp)/36e5>=8&&delete t[e];c.setItem("spectraCopyPasteStyles",JSON.stringify(t))}e({name:"uagb/copy",category:"block",description:Object(r.__)("Copy the selected block(s).","ultimate-addons-for-gutenberg"),keyCombination:{modifier:"primaryShift",character:"y"}}),e({name:"uagb/paste",category:"block",description:Object(r.__)("Paste the selected block(s).","ultimate-addons-for-gutenberg"),keyCombination:{modifier:"primaryShift",character:"u"}})},[]);const u=()=>{l(!1);const{getSelectedBlock:e,hasMultiSelection:t,getMultiSelectedBlocks:a}=Object(n.select)("core/block-editor");if(t())return void a().map(e=>(e&&b(e),e));const i=e();i&&b(i)},p=()=>{l(!1);const{getSelectedBlock:e,hasMultiSelection:t,getMultiSelectedBlocks:a}=Object(n.select)("core/block-editor");if(t())return void a().map(e=>(e&&d(e),e));const i=e();i&&d(i)},b=e=>{const a=te("spectraCopyPasteStyles");c.setItem("spectraCopyPasteStyles",JSON.stringify({}));const{attributes:l,name:i,innerBlocks:o}=e;a&&c.setItem("spectraCopyPasteStyles",JSON.stringify({}));let n={};const r={};if(i.includes("uagb/")){const e=i.replace("uagb/","");let s=t[e];a[e+"-styles"]={},a["global-style"]={},s&&a&&("enabled"===uagb_blocks_info.enableAnimationsExtension&&(s={...s,...SE,...wE}),Object.keys(s).map(e=>{if(s[e].UAGCopyPaste){const t=s[e].UAGCopyPaste.styleType;void 0!==l[e]&&null!==l[e]&&(n[t]=l[e],r[e]=l[e])}return e})),o&&(r.innerblocks=o),n.stylesSavedTimeStamp=Date.now(),a[e+"-styles"]=r,a["global-style"]=n,c.setItem("spectraCopyPasteStyles",JSON.stringify(a))}if(i.includes("core/")){const e=i.replace("core/","");n=l,n.stylesSavedTimeStamp=Date.now(),a[`core-${e}-styles`]=n,c.setItem("spectraCopyPasteStyles",JSON.stringify(a))}},d=e=>{const{name:a,clientId:l,innerBlocks:i}=e;let o,n;const r={},s=te("spectraCopyPasteStyles");if(a.includes("uagb/")){o=s["global-style"];const e=a.replace("uagb/",""),c=t[e];if(n=s[e+"-styles"],c&&n){if(g(l,n),i){const e={};i.map((a,l)=>{const i=a.name.replace("uagb/",""),o=t[i];return n.innerblocks[l].name==="uagb/"+i&&Object.keys(o).map(t=>(o[t].UAGCopyPaste&&(e[t]=n.innerblocks[l].attributes[t]),e)),g(a.clientId,e),a})}}else c&&o&&(Object.keys(c).map(e=>{if(c[e].UAGCopyPaste){const t=c[e].UAGCopyPaste.styleType;Object.keys(o).map(a=>(a===t&&(r[e]=o[t]),r))}return r}),g(l,r))}if(a.includes("core/")){const e=a.replace("core/",""),t=["content","values","value","citation","body","caption","foot","head","url","alt","id","linkDestination"];n=s[`core-${e}-styles`],t.map(e=>(n[e]&&delete n[e],e)),g(l,n)}},g=(e,t)=>{Object(n.dispatch)("core/block-editor").updateBlockAttributes(e,t)};Object(VE.useShortcut)("uagb/copy",e=>{u(),e.preventDefault()}),Object(VE.useShortcut)("uagb/paste",e=>{p(),e.preventDefault()});let m=Object(r.__)("Style","ultimate-addons-for-gutenberg");return s()&&(m=Object(r.__)("Styles","ultimate-addons-for-gutenberg")),React.createElement(ge.BlockControls,{group:"block"},React.createElement(Le.ToolbarGroup,{className:"uag-copy-paste-styles"},React.createElement(Le.ToolbarButton,{icon:"admin-appearance",label:Object(r.__)("Spectra Copy/Paste","ultimate-addons-for-gutenberg"),onClick:()=>{(()=>{const e=te("spectraCopyPasteStyles");l(!a),0!==Object.keys(e).length?o(!1):o(!0)})()}})),a&&React.createElement(Le.Popover,{position:"bottom center",className:"uag-copy-paste-styles-popover",focusOnMount:"container",onFocusOutside:()=>{l(!1)}},React.createElement(Le.MenuItem,{onClick:u},WE.copy,Object(r.__)("Copy ","ultimate-addons-for-gutenberg")+m),React.createElement(Le.MenuItem,{icon:"paste",onClick:p,disabled:i},WE.paste,Object(r.__)("Paste ","ultimate-addons-for-gutenberg")+m)))},ZE=Object(L.createHigherOrderComponent)(e=>t=>{const{getSelectedBlock:a,getMultiSelectedBlocks:l}=Object(n.select)("core/block-editor"),i=["core/missing","uagb/faq-child","uagb/restaurant-menu-child","uagb/google-map","uagb/content-timeline-child","uagb/tabs-child"],o=a(),r=l();let s=!1,c=!1;if(o){const e=o.name;!e.includes("uagb/")&&!e.includes("core/")||"core/missing"===e||i.includes(e)||(s=!0)}r&&0!==r.length&&r.map(e=>{const t=e.name;return!t.includes("uagb/")&&!t.includes("core/")||"core/missing"===t||i.includes(t)||(c=!0),e});const{isSelected:u}=t;return u?React.createElement(React.Fragment,null,React.createElement(e,t),(s||c)&&React.createElement(qE,null)):React.createElement(e,t)},"displayUAGCopyPasteSettingConditionally");"enabled"===uagb_blocks_info.copy_paste&&Object(j.addFilter)("editor.BlockEdit","uag-copy-paste",ZE);const{enableConditionsForCoreBlocks:$E,enableResponsiveConditionsForCoreBlocks:YE}=uagb_blocks_info,KE=Object(L.createHigherOrderComponent)(e=>t=>{const{InspectorAdvancedControls:a}=wp.blockEditor,l=t.name,i=l.includes("core/");return React.createElement(React.Fragment,null,React.createElement(e,t),i&&!["uagb/*","wpforms/form-selector","formidable/simple-form","formidable/calculator","llms/lesson-navigation","llms/pricing-table","llms/course-syllabus","llms/instructors","core/archives","core/calendar","core/latest-comments","core/tag-cloud","core/rss","real-media-library/gallery","core/legacy-widget","core/navigation","core/search","core/file","uagb/sure-forms","uagb/sure-cart-product","uagb/sure-cart-checkout"].includes(l)&&React.createElement(a,null,React.createElement("p",{className:"components-base-control__help"},Object(r.__)("Below setting will only take effect once you are on the live page, and not while you're editing.","ultimate-addons-for-gutenberg")),React.createElement(Le.ExternalLink,{href:"https://wpspectra.com/docs/display-conditions-blocks/"},Object(r.__)("Filter to disable responsive/display condition. ","ultimate-addons-for-gutenberg")),"1"===YE&&(e=>{const{attributes:t,setAttributes:a}=e,{UAGHideDesktop:l,UAGHideMob:i,UAGHideTab:o,UAGResponsiveConditions:n,UAGDisplayConditions:s}=t;return Object(B.useEffect)(()=>{"responsiveVisibility"===s||n||a({UAGHideDesktop:!1,UAGHideTab:!1,UAGHideMob:!1})},[]),React.createElement(React.Fragment,null,React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("p",{className:"components-base-control__label"},Object(r.__)("Responsive Conditions","ultimate-addons-for-gutenberg")),React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Desktop","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({UAGHideDesktop:!t.UAGHideDesktop,UAGResponsiveConditions:!0})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Tablet","ultimate-addons-for-gutenberg"),checked:o,onChange:()=>a({UAGHideTab:!t.UAGHideTab,UAGResponsiveConditions:!0})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide on Mobile","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({UAGHideMob:!t.UAGHideMob,UAGResponsiveConditions:!0})})))})(t),React.createElement("hr",{className:"uagb-editor__separator"}),(e=>{const{attributes:t,setAttributes:a}=e,{UAGLoggedIn:l,UAGLoggedOut:i,UAGDisplayConditions:o,UAGSystem:n,UAGBrowser:s,UAGUserRole:c,UAGDay:u}=t,p=[{value:"monday",label:Object(r.__)("Monday","ultimate-addons-for-gutenberg")},{value:"tuesday",label:Object(r.__)("Tuesday","ultimate-addons-for-gutenberg")},{value:"wednesday",label:Object(r.__)("Wednesday","ultimate-addons-for-gutenberg")},{value:"thursday",label:Object(r.__)("Thursday","ultimate-addons-for-gutenberg")},{value:"friday",label:Object(r.__)("Friday","ultimate-addons-for-gutenberg")},{value:"saturday",label:Object(r.__)("Saturday","ultimate-addons-for-gutenberg")},{value:"sunday",label:Object(r.__)("Sunday","ultimate-addons-for-gutenberg")}],b=e=>{const{value:t,checked:l}=e.target;a({UAGDay:l?[...u,t]:Y(u,t)})};return React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Display Conditions","ultimate-addons-for-gutenberg"),value:o,onChange:e=>a({UAGDisplayConditions:e}),options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"userstate",label:Object(r.__)("User State","ultimate-addons-for-gutenberg")},{value:"userRole",label:Object(r.__)("User Role","ultimate-addons-for-gutenberg")},{value:"browser",label:Object(r.__)("Browser","ultimate-addons-for-gutenberg")},{value:"os",label:Object(r.__)("Operating System","ultimate-addons-for-gutenberg")},{value:"day",label:Object(r.__)("Day","ultimate-addons-for-gutenberg")}]}),"userstate"===o&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide From Logged In Users","ultimate-addons-for-gutenberg"),checked:l,onChange:()=>a({UAGLoggedIn:!t.UAGLoggedIn})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Hide From Logged Out Users","ultimate-addons-for-gutenberg"),checked:i,onChange:()=>a({UAGLoggedOut:!t.UAGLoggedOut})})),"os"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide on Operating System","ultimate-addons-for-gutenberg"),value:n,onChange:e=>a({UAGSystem:e}),options:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"iphone",label:Object(r.__)("iOS","ultimate-addons-for-gutenberg")},{value:"android",label:Object(r.__)("Android","ultimate-addons-for-gutenberg")},{value:"windows",label:Object(r.__)("Windows","ultimate-addons-for-gutenberg")},{value:"open_bsd",label:Object(r.__)("OpenBSD","ultimate-addons-for-gutenberg")},{value:"sun_os",label:Object(r.__)("SunOS","ultimate-addons-for-gutenberg")},{value:"linux",label:Object(r.__)("Linux","ultimate-addons-for-gutenberg")},{value:"mac_os",label:Object(r.__)("Mac OS","ultimate-addons-for-gutenberg")}]})),"browser"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide on Browser","ultimate-addons-for-gutenberg"),value:s,onChange:e=>a({UAGBrowser:e}),options:[{value:"",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"firefox",label:Object(r.__)("Mozilla Firefox","ultimate-addons-for-gutenberg")},{value:"chrome",label:Object(r.__)("Google Chrome","ultimate-addons-for-gutenberg")},{value:"opera_mini",label:Object(r.__)("Opera Mini","ultimate-addons-for-gutenberg")},{value:"opera",label:Object(r.__)("Opera","ultimate-addons-for-gutenberg")},{value:"safari",label:Object(r.__)("Safari","ultimate-addons-for-gutenberg")},{value:"edge",label:Object(r.__)("Microsoft Edge","ultimate-addons-for-gutenberg")}]})),"userRole"===o&&React.createElement(React.Fragment,null,React.createElement(Le.SelectControl,{label:Object(r.__)("Hide for User Role","ultimate-addons-for-gutenberg"),value:c,onChange:e=>a({UAGUserRole:e}),options:uagb_blocks_info.user_role})),"day"===o&&React.createElement(React.Fragment,null,React.createElement("p",null,"Select days you want to disable."),p.map((e,t)=>React.createElement("label",{key:t,className:"form-check-label",htmlFor:"flexCheckDefault"},React.createElement("input",{type:"checkbox",className:"uagb-forms-checkbox",name:e.value,value:e.value,sunday:!0,onChange:b,checked:!(null==u||!u.includes(e.value))}),e.label))))})(t)))},"AdvancedControlsBlock");"1"===$E&&(Object(j.addFilter)("editor.BlockEdit","uagb/advanced-control-block",KE),Object(j.addFilter)("blocks.getSaveContent.extraProps","uagb/apply-extra-class-core",(function(e,t,a){const{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,UAGDisplayConditions:n,UAGResponsiveConditions:r}=a,s=t.name.includes("core/");return("responsiveVisibility"===n||r&&s)&&(l&&(e.className=Be()(e.className,"uag-hide-desktop")),i&&(e.className=Be()(e.className,"uag-hide-tab")),o&&(e.className=Be()(e.className,"uag-hide-mob"))),e})));const JE="uagb-remove-group-parent-tabs",XE=e=>{const{name:t}=e,a=()=>!!document.getElementById(JE);return Object(B.useEffect)(()=>{t&&(t.includes("uagb/")?a()||(()=>{const e=document.createElement("style");e.setAttribute("id",JE),e.textContent='.components-panel .block-editor-block-inspector :not(.uag-control-tabs) > div[role="tablist"].components-tab-panel__tabs{display:none;}',document.head.appendChild(e)})():a()&&document.getElementById(JE).remove())},[t]),null},QE=Object(L.createHigherOrderComponent)(e=>t=>{const{isSelected:a}=t;return a?React.createElement(React.Fragment,null,React.createElement(e,t),React.createElement(XE,t)):React.createElement(e,t)},"addUagbSelectedCss");Object(j.addFilter)("editor.BlockEdit","add-uagb-block-selected-css",QE);var eO,tO=a(149),aO=0,lO={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},iO={};iO.locals=tO.a.locals||{},iO.use=function(){return aO++||(eO=ke()(tO.a,lO)),iO},iO.unuse=function(){aO>0&&!--aO&&(eO(),eO=null)};var oO=iO,nO=Object(L.compose)(Object(n.withSelect)(e=>({getDefaultAllowedQuickSidebarBlocks:e(k).getDefaultAllowedQuickSidebarBlocks()})),Object(n.withDispatch)(e=>({updateDefaultAllowedQuickSidebarBlocks:t=>e("spectra").updateDefaultAllowedQuickSidebarBlocks(t)})))(e=>{const{updateDefaultAllowedQuickSidebarBlocks:t,getDefaultAllowedQuickSidebarBlocks:a}=e,{block:l,id:i,create:o,blockInsertionPoint:s,getSelectedBlockClientId:c,getSelectedBlockAllowedBlocks:u,getBlockRootClientId:p}=e,[b,d]=Object(B.useState)(!1),g=Object(B.useRef)(!1),{createNotice:m}=Object(n.useDispatch)("core/notices"),[y,f]=Object(B.useState)(0),h="quick-action-sidebar/remove-notices-flow/removed-notice/"+y,v=()=>d(!0),_=()=>d(!1),T=React.createElement(Le.Popover,{placement:"right",key:i,className:"spectra-ee-quick-access__sidebar--blocks--block--icon--name"},React.createElement("div",{className:"block-title"},React.createElement("div",{onClick:()=>{var e;(e=>{t(e);const a={security:uagb_blocks_info.uagb_ajax_nonce,defaultAllowedQuickSidebarBlocks:JSON.stringify(e)};$l({url:uagb_blocks_info.ajax_url,action:"uag_global_update_allowed_block",data:a})})(((e,t)=>e.filter(e=>e!==t))(a,(e=l).name)),f(e=>e+1),m("success",Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s Removed from Quick Action Bar.","ultimate-addons-for-gutenberg"),e.title),{type:"snackbar",id:h,isDismissible:!0}),setTimeout(()=>{Object(n.dispatch)("core/notices").removeNotice(h)},1e3)},className:"spectra-ee-quick-access__sidebar--blocks--block--name"},React.createElement("svg",{className:"block-title-svg",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",focusable:"false"},React.createElement("path",{d:"M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"}))),l.title)),C=l.name.split("/"),S=C[0],w=C[1];return React.createElement("div",{id:`draggable-box__${S}--${w}`},React.createElement(Le.Draggable,{elementId:`draggable-box__${S}--${w}`,__experimentalTransferDataType:"wp-blocks",transferData:{type:"inserter",blocks:[o(l.name)]}},e=>{var t;let{onDraggableStart:a,onDraggableEnd:r}=e;return React.createElement("div",{className:"spectra-ee-quick-access__sidebar--blocks--block",key:i,onClick:e=>{((e,t)=>{var a,l;let i=p||"",r=s;u&&u.includes(t)&&(r=Object(n.select)("core/block-editor").getSelectedBlock().innerBlocks.length,i=c),null!=e&&null!==(a=e.target)&&void 0!==a&&null!==(l=a.classList)&&void 0!==l&&l.contains("block-title-svg")?g.current=!1:Object(n.dispatch)("core/block-editor").insertBlocks(o(t.name),r,i)})(e,l)},draggable:!0,onDragStart:e=>{g.current=!0,a&&a(e)},onDragEnd:e=>{g.current=!1,r&&r(e)},onMouseOver:v,onMouseOut:_,onFocus:v,onBlur:_},React.createElement("div",{className:`spectra-ee-quick-access__sidebar-icon__${S} spectra-ee-quick-access__sidebar-icon__${S}--${w} spectra-ee-quick-access__sidebar--blocks--block--icon`},React.createElement(Le.Icon,{icon:null!==(t=l.icon)&&void 0!==t&&t.src?l.icon.src:l.icon})),b&&T)}))});const rO="undefined"!=typeof window&&void 0!==window.document&&void 0!==window.document.createElement;function sO(e){const t=Object.prototype.toString.call(e);return"[object Window]"===t||"[object global]"===t}function cO(e){return"nodeType"in e}function uO(e){var t,a;return e?sO(e)?e:cO(e)&&null!=(t=null==(a=e.ownerDocument)?void 0:a.defaultView)?t:window:window}function pO(e){const{Document:t}=uO(e);return e instanceof t}function bO(e){return!sO(e)&&e instanceof uO(e).HTMLElement}function dO(e){return e instanceof uO(e).SVGElement}function gO(e){return e?sO(e)?e.document:cO(e)?pO(e)?e:bO(e)||dO(e)?e.ownerDocument:document:document:document}const mO=rO?mo.useLayoutEffect:mo.useEffect;function yO(e){const t=Object(mo.useRef)(e);return mO(()=>{t.current=e}),Object(mo.useCallback)((function(){for(var e=arguments.length,a=new Array(e),l=0;l<e;l++)a[l]=arguments[l];return null==t.current?void 0:t.current(...a)}),[])}function fO(e,t){void 0===t&&(t=[e]);const a=Object(mo.useRef)(e);return mO(()=>{a.current!==e&&(a.current=e)},t),a}function hO(e,t){const a=Object(mo.useRef)();return Object(mo.useMemo)(()=>{const t=e(a.current);return a.current=t,t},[...t])}function vO(e){const t=yO(e),a=Object(mo.useRef)(null),l=Object(mo.useCallback)(e=>{e!==a.current&&(null==t||t(e,a.current)),a.current=e},[]);return[a,l]}function _O(e){const t=Object(mo.useRef)();return Object(mo.useEffect)(()=>{t.current=e},[e]),t.current}let TO={};function CO(e,t){return Object(mo.useMemo)(()=>{if(t)return t;const a=null==TO[e]?0:TO[e]+1;return TO[e]=a,e+"-"+a},[e,t])}function SO(e){return function(t){for(var a=arguments.length,l=new Array(a>1?a-1:0),i=1;i<a;i++)l[i-1]=arguments[i];return l.reduce((t,a)=>{const l=Object.entries(a);for(const[a,i]of l){const l=t[a];null!=l&&(t[a]=l+e*i)}return t},{...t})}}const wO=SO(1),kO=SO(-1);function PO(e){if(!e)return!1;const{KeyboardEvent:t}=uO(e.target);return t&&e instanceof t}function xO(e){if(function(e){if(!e)return!1;const{TouchEvent:t}=uO(e.target);return t&&e instanceof t}(e)){if(e.touches&&e.touches.length){const{clientX:t,clientY:a}=e.touches[0];return{x:t,y:a}}if(e.changedTouches&&e.changedTouches.length){const{clientX:t,clientY:a}=e.changedTouches[0];return{x:t,y:a}}}return function(e){return"clientX"in e&&"clientY"in e}(e)?{x:e.clientX,y:e.clientY}:null}const AO=Object.freeze({Translate:{toString(e){if(!e)return;const{x:t,y:a}=e;return"translate3d("+(t?Math.round(t):0)+"px, "+(a?Math.round(a):0)+"px, 0)"}},Scale:{toString(e){if(!e)return;const{scaleX:t,scaleY:a}=e;return"scaleX("+t+") scaleY("+a+")"}},Transform:{toString(e){if(e)return[AO.Translate.toString(e),AO.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:a,easing:l}=e;return t+" "+a+"ms "+l}}}),GO="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function MO(e){return e.matches(GO)?e:e.querySelector(GO)}const RO={display:"none"};function BO(e){let{id:t,value:a}=e;return yo.a.createElement("div",{id:t,style:RO},a)}function UO(e){let{id:t,announcement:a,ariaLiveType:l="assertive"}=e;return yo.a.createElement("div",{id:t,style:{position:"fixed",width:1,height:1,margin:-1,border:0,padding:0,overflow:"hidden",clip:"rect(0 0 0 0)",clipPath:"inset(100%)",whiteSpace:"nowrap"},role:"status","aria-live":l,"aria-atomic":!0},a)}const EO=Object(mo.createContext)(null),OO={draggable:"\n    To pick up a draggable item, press the space bar.\n    While dragging, use the arrow keys to move the item.\n    Press space again to drop the item in its new position, or press escape to cancel.\n  "},LO={onDragStart(e){let{active:t}=e;return"Picked up draggable item "+t.id+"."},onDragOver(e){let{active:t,over:a}=e;return a?"Draggable item "+t.id+" was moved over droppable area "+a.id+".":"Draggable item "+t.id+" is no longer over a droppable area."},onDragEnd(e){let{active:t,over:a}=e;return a?"Draggable item "+t.id+" was dropped over droppable area "+a.id:"Draggable item "+t.id+" was dropped."},onDragCancel(e){let{active:t}=e;return"Dragging was cancelled. Draggable item "+t.id+" was dropped."}};function HO(e){let{announcements:t=LO,container:a,hiddenTextDescribedById:l,screenReaderInstructions:i=OO}=e;const{announce:o,announcement:n}=function(){const[e,t]=Object(mo.useState)("");return{announce:Object(mo.useCallback)(e=>{null!=e&&t(e)},[]),announcement:e}}(),r=CO("DndLiveRegion"),[s,c]=Object(mo.useState)(!1);if(Object(mo.useEffect)(()=>{c(!0)},[]),function(e){const t=Object(mo.useContext)(EO);Object(mo.useEffect)(()=>{if(!t)throw new Error("useDndMonitor must be used within a children of <DndContext>");return t(e)},[e,t])}(Object(mo.useMemo)(()=>({onDragStart(e){let{active:a}=e;o(t.onDragStart({active:a}))},onDragMove(e){let{active:a,over:l}=e;t.onDragMove&&o(t.onDragMove({active:a,over:l}))},onDragOver(e){let{active:a,over:l}=e;o(t.onDragOver({active:a,over:l}))},onDragEnd(e){let{active:a,over:l}=e;o(t.onDragEnd({active:a,over:l}))},onDragCancel(e){let{active:a,over:l}=e;o(t.onDragCancel({active:a,over:l}))}}),[o,t])),!s)return null;const u=yo.a.createElement(yo.a.Fragment,null,yo.a.createElement(BO,{id:l,value:i.draggable}),yo.a.createElement(UO,{id:r,announcement:n}));return a?Object(sn.createPortal)(u,a):u}var jO;function FO(){}!function(e){e.DragStart="dragStart",e.DragMove="dragMove",e.DragEnd="dragEnd",e.DragCancel="dragCancel",e.DragOver="dragOver",e.RegisterDroppable="registerDroppable",e.SetDroppableDisabled="setDroppableDisabled",e.UnregisterDroppable="unregisterDroppable"}(jO||(jO={}));const zO=Object.freeze({x:0,y:0});function DO(e,t){let{data:{value:a}}=e,{data:{value:l}}=t;return l-a}function NO(e,t){const a=Math.max(t.top,e.top),l=Math.max(t.left,e.left),i=Math.min(t.left+t.width,e.left+e.width),o=Math.min(t.top+t.height,e.top+e.height),n=i-l,r=o-a;if(l<i&&a<o){const a=t.width*t.height,l=e.width*e.height,i=n*r;return Number((i/(a+l-i)).toFixed(4))}return 0}const IO=e=>{let{collisionRect:t,droppableRects:a,droppableContainers:l}=e;const i=[];for(const e of l){const{id:l}=e,o=a.get(l);if(o){const a=NO(o,t);a>0&&i.push({id:l,data:{droppableContainer:e,value:a}})}}return i.sort(DO)};function VO(e,t){return e&&t?{x:e.left-t.left,y:e.top-t.top}:zO}function WO(e){return function(t){for(var a=arguments.length,l=new Array(a>1?a-1:0),i=1;i<a;i++)l[i-1]=arguments[i];return l.reduce((t,a)=>({...t,top:t.top+e*a.y,bottom:t.bottom+e*a.y,left:t.left+e*a.x,right:t.right+e*a.x}),{...t})}}const qO=WO(1);const ZO={ignoreTransform:!1};function $O(e,t){void 0===t&&(t=ZO);let a=e.getBoundingClientRect();if(t.ignoreTransform){const{transform:t,transformOrigin:l}=uO(e).getComputedStyle(e);t&&(a=function(e,t,a){const l=function(e){if(e.startsWith("matrix3d(")){const t=e.slice(9,-1).split(/, /);return{x:+t[12],y:+t[13],scaleX:+t[0],scaleY:+t[5]}}if(e.startsWith("matrix(")){const t=e.slice(7,-1).split(/, /);return{x:+t[4],y:+t[5],scaleX:+t[0],scaleY:+t[3]}}return null}(t);if(!l)return e;const{scaleX:i,scaleY:o,x:n,y:r}=l,s=e.left-n-(1-i)*parseFloat(a),c=e.top-r-(1-o)*parseFloat(a.slice(a.indexOf(" ")+1)),u=i?e.width/i:e.width,p=o?e.height/o:e.height;return{width:u,height:p,top:c,right:s+u,bottom:c+p,left:s}}(a,t,l))}const{top:l,left:i,width:o,height:n,bottom:r,right:s}=a;return{top:l,left:i,width:o,height:n,bottom:r,right:s}}function YO(e){return $O(e,{ignoreTransform:!0})}function KO(e,t){const a=[];return e?function l(i){if(null!=t&&a.length>=t)return a;if(!i)return a;if(pO(i)&&null!=i.scrollingElement&&!a.includes(i.scrollingElement))return a.push(i.scrollingElement),a;if(!bO(i)||dO(i))return a;if(a.includes(i))return a;const o=uO(e).getComputedStyle(i);return i!==e&&function(e,t){void 0===t&&(t=uO(e).getComputedStyle(e));const a=/(auto|scroll|overlay)/;return["overflow","overflowX","overflowY"].some(e=>{const l=t[e];return"string"==typeof l&&a.test(l)})}(i,o)&&a.push(i),function(e,t){return void 0===t&&(t=uO(e).getComputedStyle(e)),"fixed"===t.position}(i,o)?a:l(i.parentNode)}(e):a}function JO(e){const[t]=KO(e,1);return null!=t?t:null}function XO(e){return rO&&e?sO(e)?e:cO(e)?pO(e)||e===gO(e).scrollingElement?window:bO(e)?e:null:null:null}function QO(e){return sO(e)?e.scrollX:e.scrollLeft}function eL(e){return sO(e)?e.scrollY:e.scrollTop}function tL(e){return{x:QO(e),y:eL(e)}}var aL;function lL(e){return!(!rO||!e)&&e===document.scrollingElement}function iL(e){const t={x:0,y:0},a=lL(e)?{height:window.innerHeight,width:window.innerWidth}:{height:e.clientHeight,width:e.clientWidth},l={x:e.scrollWidth-a.width,y:e.scrollHeight-a.height};return{isTop:e.scrollTop<=t.y,isLeft:e.scrollLeft<=t.x,isBottom:e.scrollTop>=l.y,isRight:e.scrollLeft>=l.x,maxScroll:l,minScroll:t}}!function(e){e[e.Forward=1]="Forward",e[e.Backward=-1]="Backward"}(aL||(aL={}));const oL={x:.2,y:.2};function nL(e,t,a,l,i){let{top:o,left:n,right:r,bottom:s}=a;void 0===l&&(l=10),void 0===i&&(i=oL);const{isTop:c,isBottom:u,isLeft:p,isRight:b}=iL(e),d={x:0,y:0},g={x:0,y:0},m=t.height*i.y,y=t.width*i.x;return!c&&o<=t.top+m?(d.y=aL.Backward,g.y=l*Math.abs((t.top+m-o)/m)):!u&&s>=t.bottom-m&&(d.y=aL.Forward,g.y=l*Math.abs((t.bottom-m-s)/m)),!b&&r>=t.right-y?(d.x=aL.Forward,g.x=l*Math.abs((t.right-y-r)/y)):!p&&n<=t.left+y&&(d.x=aL.Backward,g.x=l*Math.abs((t.left+y-n)/y)),{direction:d,speed:g}}function rL(e){if(e===document.scrollingElement){const{innerWidth:e,innerHeight:t}=window;return{top:0,left:0,right:e,bottom:t,width:e,height:t}}const{top:t,left:a,right:l,bottom:i}=e.getBoundingClientRect();return{top:t,left:a,right:l,bottom:i,width:e.clientWidth,height:e.clientHeight}}function sL(e){return e.reduce((e,t)=>wO(e,tL(t)),zO)}const cL=[["x",["left","right"],function(e){return e.reduce((e,t)=>e+QO(t),0)}],["y",["top","bottom"],function(e){return e.reduce((e,t)=>e+eL(t),0)}]];class uL{constructor(e,t){this.rect=void 0,this.width=void 0,this.height=void 0,this.top=void 0,this.bottom=void 0,this.right=void 0,this.left=void 0;const a=KO(t),l=sL(a);this.rect={...e},this.width=e.width,this.height=e.height;for(const[e,t,i]of cL)for(const o of t)Object.defineProperty(this,o,{get:()=>{const t=i(a),n=l[e]-t;return this.rect[o]+n},enumerable:!0});Object.defineProperty(this,"rect",{enumerable:!1})}}class pL{constructor(e){this.target=void 0,this.listeners=[],this.removeAll=()=>{this.listeners.forEach(e=>{var t;return null==(t=this.target)?void 0:t.removeEventListener(...e)})},this.target=e}add(e,t,a){var l;null==(l=this.target)||l.addEventListener(e,t,a),this.listeners.push([e,t,a])}}function bL(e,t){const a=Math.abs(e.x),l=Math.abs(e.y);return"number"==typeof t?Math.sqrt(a**2+l**2)>t:"x"in t&&"y"in t?a>t.x&&l>t.y:"x"in t?a>t.x:"y"in t&&l>t.y}var dL,gL;function mL(e){e.preventDefault()}function yL(e){e.stopPropagation()}!function(e){e.Click="click",e.DragStart="dragstart",e.Keydown="keydown",e.ContextMenu="contextmenu",e.Resize="resize",e.SelectionChange="selectionchange",e.VisibilityChange="visibilitychange"}(dL||(dL={})),function(e){e.Space="Space",e.Down="ArrowDown",e.Right="ArrowRight",e.Left="ArrowLeft",e.Up="ArrowUp",e.Esc="Escape",e.Enter="Enter"}(gL||(gL={}));const fL={start:[gL.Space,gL.Enter],cancel:[gL.Esc],end:[gL.Space,gL.Enter]},hL=(e,t)=>{let{currentCoordinates:a}=t;switch(e.code){case gL.Right:return{...a,x:a.x+25};case gL.Left:return{...a,x:a.x-25};case gL.Down:return{...a,y:a.y+25};case gL.Up:return{...a,y:a.y-25}}};class vL{constructor(e){this.props=void 0,this.autoScrollEnabled=!1,this.referenceCoordinates=void 0,this.listeners=void 0,this.windowListeners=void 0,this.props=e;const{event:{target:t}}=e;this.props=e,this.listeners=new pL(gO(t)),this.windowListeners=new pL(uO(t)),this.handleKeyDown=this.handleKeyDown.bind(this),this.handleCancel=this.handleCancel.bind(this),this.attach()}attach(){this.handleStart(),this.windowListeners.add(dL.Resize,this.handleCancel),this.windowListeners.add(dL.VisibilityChange,this.handleCancel),setTimeout(()=>this.listeners.add(dL.Keydown,this.handleKeyDown))}handleStart(){const{activeNode:e,onStart:t}=this.props,a=e.node.current;a&&function(e,t){if(void 0===t&&(t=$O),!e)return;const{top:a,left:l,bottom:i,right:o}=t(e);JO(e)&&(i<=0||o<=0||a>=window.innerHeight||l>=window.innerWidth)&&e.scrollIntoView({block:"center",inline:"center"})}(a),t(zO)}handleKeyDown(e){if(PO(e)){const{active:t,context:a,options:l}=this.props,{keyboardCodes:i=fL,coordinateGetter:o=hL,scrollBehavior:n="smooth"}=l,{code:r}=e;if(i.end.includes(r))return void this.handleEnd(e);if(i.cancel.includes(r))return void this.handleCancel(e);const{collisionRect:s}=a.current,c=s?{x:s.left,y:s.top}:zO;this.referenceCoordinates||(this.referenceCoordinates=c);const u=o(e,{active:t,context:a.current,currentCoordinates:c});if(u){const t=kO(u,c),l={x:0,y:0},{scrollableAncestors:i}=a.current;for(const a of i){const i=e.code,{isTop:o,isRight:r,isLeft:s,isBottom:c,maxScroll:p,minScroll:b}=iL(a),d=rL(a),g={x:Math.min(i===gL.Right?d.right-d.width/2:d.right,Math.max(i===gL.Right?d.left:d.left+d.width/2,u.x)),y:Math.min(i===gL.Down?d.bottom-d.height/2:d.bottom,Math.max(i===gL.Down?d.top:d.top+d.height/2,u.y))},m=i===gL.Right&&!r||i===gL.Left&&!s,y=i===gL.Down&&!c||i===gL.Up&&!o;if(m&&g.x!==u.x){const e=a.scrollLeft+t.x,o=i===gL.Right&&e<=p.x||i===gL.Left&&e>=b.x;if(o&&!t.y)return void a.scrollTo({left:e,behavior:n});l.x=o?a.scrollLeft-e:i===gL.Right?a.scrollLeft-p.x:a.scrollLeft-b.x,l.x&&a.scrollBy({left:-l.x,behavior:n});break}if(y&&g.y!==u.y){const e=a.scrollTop+t.y,o=i===gL.Down&&e<=p.y||i===gL.Up&&e>=b.y;if(o&&!t.x)return void a.scrollTo({top:e,behavior:n});l.y=o?a.scrollTop-e:i===gL.Down?a.scrollTop-p.y:a.scrollTop-b.y,l.y&&a.scrollBy({top:-l.y,behavior:n});break}}this.handleMove(e,wO(kO(u,this.referenceCoordinates),l))}}}handleMove(e,t){const{onMove:a}=this.props;e.preventDefault(),a(t)}handleEnd(e){const{onEnd:t}=this.props;e.preventDefault(),this.detach(),t()}handleCancel(e){const{onCancel:t}=this.props;e.preventDefault(),this.detach(),t()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll()}}function _L(e){return Boolean(e&&"distance"in e)}function TL(e){return Boolean(e&&"delay"in e)}vL.activators=[{eventName:"onKeyDown",handler:(e,t,a)=>{let{keyboardCodes:l=fL,onActivation:i}=t,{active:o}=a;const{code:n}=e.nativeEvent;if(l.start.includes(n)){const t=o.activatorNode.current;return!(t&&e.target!==t||(e.preventDefault(),null==i||i({event:e.nativeEvent}),0))}return!1}}];class CL{constructor(e,t,a){var l;void 0===a&&(a=function(e){const{EventTarget:t}=uO(e);return e instanceof t?e:gO(e)}(e.event.target)),this.props=void 0,this.events=void 0,this.autoScrollEnabled=!0,this.document=void 0,this.activated=!1,this.initialCoordinates=void 0,this.timeoutId=null,this.listeners=void 0,this.documentListeners=void 0,this.windowListeners=void 0,this.props=e,this.events=t;const{event:i}=e,{target:o}=i;this.props=e,this.events=t,this.document=gO(o),this.documentListeners=new pL(this.document),this.listeners=new pL(a),this.windowListeners=new pL(uO(o)),this.initialCoordinates=null!=(l=xO(i))?l:zO,this.handleStart=this.handleStart.bind(this),this.handleMove=this.handleMove.bind(this),this.handleEnd=this.handleEnd.bind(this),this.handleCancel=this.handleCancel.bind(this),this.handleKeydown=this.handleKeydown.bind(this),this.removeTextSelection=this.removeTextSelection.bind(this),this.attach()}attach(){const{events:e,props:{options:{activationConstraint:t,bypassActivationConstraint:a}}}=this;if(this.listeners.add(e.move.name,this.handleMove,{passive:!1}),this.listeners.add(e.end.name,this.handleEnd),this.windowListeners.add(dL.Resize,this.handleCancel),this.windowListeners.add(dL.DragStart,mL),this.windowListeners.add(dL.VisibilityChange,this.handleCancel),this.windowListeners.add(dL.ContextMenu,mL),this.documentListeners.add(dL.Keydown,this.handleKeydown),t){if(null!=a&&a({event:this.props.event,activeNode:this.props.activeNode,options:this.props.options}))return this.handleStart();if(TL(t))return void(this.timeoutId=setTimeout(this.handleStart,t.delay));if(_L(t))return}this.handleStart()}detach(){this.listeners.removeAll(),this.windowListeners.removeAll(),setTimeout(this.documentListeners.removeAll,50),null!==this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null)}handleStart(){const{initialCoordinates:e}=this,{onStart:t}=this.props;e&&(this.activated=!0,this.documentListeners.add(dL.Click,yL,{capture:!0}),this.removeTextSelection(),this.documentListeners.add(dL.SelectionChange,this.removeTextSelection),t(e))}handleMove(e){var t;const{activated:a,initialCoordinates:l,props:i}=this,{onMove:o,options:{activationConstraint:n}}=i;if(!l)return;const r=null!=(t=xO(e))?t:zO,s=kO(l,r);if(!a&&n){if(_L(n)){if(null!=n.tolerance&&bL(s,n.tolerance))return this.handleCancel();if(bL(s,n.distance))return this.handleStart()}return TL(n)&&bL(s,n.tolerance)?this.handleCancel():void 0}e.cancelable&&e.preventDefault(),o(r)}handleEnd(){const{onEnd:e}=this.props;this.detach(),e()}handleCancel(){const{onCancel:e}=this.props;this.detach(),e()}handleKeydown(e){e.code===gL.Esc&&this.handleCancel()}removeTextSelection(){var e;null==(e=this.document.getSelection())||e.removeAllRanges()}}const SL={move:{name:"pointermove"},end:{name:"pointerup"}};class wL extends CL{constructor(e){const{event:t}=e,a=gO(t.target);super(e,SL,a)}}wL.activators=[{eventName:"onPointerDown",handler:(e,t)=>{let{nativeEvent:a}=e,{onActivation:l}=t;return!(!a.isPrimary||0!==a.button||(null==l||l({event:a}),0))}}];const kL={move:{name:"mousemove"},end:{name:"mouseup"}};var PL;!function(e){e[e.RightClick=2]="RightClick"}(PL||(PL={})),class extends CL{constructor(e){super(e,kL,gO(e.event.target))}}.activators=[{eventName:"onMouseDown",handler:(e,t)=>{let{nativeEvent:a}=e,{onActivation:l}=t;return a.button!==PL.RightClick&&(null==l||l({event:a}),!0)}}];const xL={move:{name:"touchmove"},end:{name:"touchend"}};var AL,GL;(class extends CL{constructor(e){super(e,xL)}static setup(){return window.addEventListener(xL.move.name,e,{capture:!1,passive:!1}),function(){window.removeEventListener(xL.move.name,e)};function e(){}}}).activators=[{eventName:"onTouchStart",handler:(e,t)=>{let{nativeEvent:a}=e,{onActivation:l}=t;const{touches:i}=a;return!(i.length>1||(null==l||l({event:a}),0))}}],function(e){e[e.Pointer=0]="Pointer",e[e.DraggableRect=1]="DraggableRect"}(AL||(AL={})),function(e){e[e.TreeOrder=0]="TreeOrder",e[e.ReversedTreeOrder=1]="ReversedTreeOrder"}(GL||(GL={}));const ML={x:{[aL.Backward]:!1,[aL.Forward]:!1},y:{[aL.Backward]:!1,[aL.Forward]:!1}};var RL,BL;!function(e){e[e.Always=0]="Always",e[e.BeforeDragging=1]="BeforeDragging",e[e.WhileDragging=2]="WhileDragging"}(RL||(RL={})),function(e){e.Optimized="optimized"}(BL||(BL={}));const UL=new Map;function EL(e,t){return hO(a=>e?a||("function"==typeof t?t(e):e):null,[t,e])}function OL(e){let{callback:t,disabled:a}=e;const l=yO(t),i=Object(mo.useMemo)(()=>{if(a||"undefined"==typeof window||void 0===window.ResizeObserver)return;const{ResizeObserver:e}=window;return new e(l)},[a]);return Object(mo.useEffect)(()=>()=>null==i?void 0:i.disconnect(),[i]),i}function LL(e){return new uL($O(e),e)}function HL(e,t,a){void 0===t&&(t=LL);const[l,i]=Object(mo.useReducer)((function(l){if(!e)return null;var i;if(!1===e.isConnected)return null!=(i=null!=l?l:a)?i:null;const o=t(e);return JSON.stringify(l)===JSON.stringify(o)?l:o}),null),o=function(e){let{callback:t,disabled:a}=e;const l=yO(t),i=Object(mo.useMemo)(()=>{if(a||"undefined"==typeof window||void 0===window.MutationObserver)return;const{MutationObserver:e}=window;return new e(l)},[l,a]);return Object(mo.useEffect)(()=>()=>null==i?void 0:i.disconnect(),[i]),i}({callback(t){if(e)for(const a of t){const{type:t,target:l}=a;if("childList"===t&&l instanceof HTMLElement&&l.contains(e)){i();break}}}}),n=OL({callback:i});return mO(()=>{i(),e?(null==n||n.observe(e),null==o||o.observe(document.body,{childList:!0,subtree:!0})):(null==n||n.disconnect(),null==o||o.disconnect())},[e]),l}const jL=[];function FL(e,t){void 0===t&&(t=[]);const a=Object(mo.useRef)(null);return Object(mo.useEffect)(()=>{a.current=null},t),Object(mo.useEffect)(()=>{const t=e!==zO;t&&!a.current&&(a.current=e),!t&&a.current&&(a.current=null)},[e]),a.current?kO(e,a.current):zO}function zL(e){return Object(mo.useMemo)(()=>e?function(e){const t=e.innerWidth,a=e.innerHeight;return{top:0,left:0,right:t,bottom:a,width:t,height:a}}(e):null,[e])}const DL=[];const NL=[{sensor:wL,options:{}},{sensor:vL,options:{}}],IL={current:{}},VL={draggable:{measure:YO},droppable:{measure:YO,strategy:RL.WhileDragging,frequency:BL.Optimized},dragOverlay:{measure:$O}};class WL extends Map{get(e){var t;return null!=e&&null!=(t=super.get(e))?t:void 0}toArray(){return Array.from(this.values())}getEnabled(){return this.toArray().filter(e=>{let{disabled:t}=e;return!t})}getNodeFor(e){var t,a;return null!=(t=null==(a=this.get(e))?void 0:a.node.current)?t:void 0}}const qL={activatorEvent:null,active:null,activeNode:null,activeNodeRect:null,collisions:null,containerNodeRect:null,draggableNodes:new Map,droppableRects:new Map,droppableContainers:new WL,over:null,dragOverlay:{nodeRef:{current:null},rect:null,setRef:FO},scrollableAncestors:[],scrollableAncestorRects:[],measuringConfiguration:VL,measureDroppableContainers:FO,windowRect:null,measuringScheduled:!1},ZL={activatorEvent:null,activators:[],active:null,activeNodeRect:null,ariaDescribedById:{draggable:""},dispatch:FO,draggableNodes:new Map,over:null,measureDroppableContainers:FO},$L=Object(mo.createContext)(ZL),YL=Object(mo.createContext)(qL);function KL(){return{draggable:{active:null,initialCoordinates:{x:0,y:0},nodes:new Map,translate:{x:0,y:0}},droppable:{containers:new WL}}}function JL(e,t){switch(t.type){case jO.DragStart:return{...e,draggable:{...e.draggable,initialCoordinates:t.initialCoordinates,active:t.active}};case jO.DragMove:return e.draggable.active?{...e,draggable:{...e.draggable,translate:{x:t.coordinates.x-e.draggable.initialCoordinates.x,y:t.coordinates.y-e.draggable.initialCoordinates.y}}}:e;case jO.DragEnd:case jO.DragCancel:return{...e,draggable:{...e.draggable,active:null,initialCoordinates:{x:0,y:0},translate:{x:0,y:0}}};case jO.RegisterDroppable:{const{element:a}=t,{id:l}=a,i=new WL(e.droppable.containers);return i.set(l,a),{...e,droppable:{...e.droppable,containers:i}}}case jO.SetDroppableDisabled:{const{id:a,key:l,disabled:i}=t,o=e.droppable.containers.get(a);if(!o||l!==o.key)return e;const n=new WL(e.droppable.containers);return n.set(a,{...o,disabled:i}),{...e,droppable:{...e.droppable,containers:n}}}case jO.UnregisterDroppable:{const{id:a,key:l}=t,i=e.droppable.containers.get(a);if(!i||l!==i.key)return e;const o=new WL(e.droppable.containers);return o.delete(a),{...e,droppable:{...e.droppable,containers:o}}}default:return e}}function XL(e){let{disabled:t}=e;const{active:a,activatorEvent:l,draggableNodes:i}=Object(mo.useContext)($L),o=_O(l),n=_O(null==a?void 0:a.id);return Object(mo.useEffect)(()=>{if(!t&&!l&&o&&null!=n){if(!PO(o))return;if(document.activeElement===o.target)return;const e=i.get(n);if(!e)return;const{activatorNode:t,node:a}=e;if(!t.current&&!a.current)return;requestAnimationFrame(()=>{for(const e of[t.current,a.current]){if(!e)continue;const t=MO(e);if(t){t.focus();break}}})}},[l,t,i,n,o]),null}const QL=Object(mo.createContext)({...zO,scaleX:1,scaleY:1});var eH;!function(e){e[e.Uninitialized=0]="Uninitialized",e[e.Initializing=1]="Initializing",e[e.Initialized=2]="Initialized"}(eH||(eH={}));const tH=Object(mo.memo)((function(e){var t,a,l,i;let{id:o,accessibility:n,autoScroll:r=!0,children:s,sensors:c=NL,collisionDetection:u=IO,measuring:p,modifiers:b,...d}=e;const g=Object(mo.useReducer)(JL,void 0,KL),[m,y]=g,[f,h]=function(){const[e]=Object(mo.useState)(()=>new Set),t=Object(mo.useCallback)(t=>(e.add(t),()=>e.delete(t)),[e]);return[Object(mo.useCallback)(t=>{let{type:a,event:l}=t;e.forEach(e=>{var t;return null==(t=e[a])?void 0:t.call(e,l)})},[e]),t]}(),[v,_]=Object(mo.useState)(eH.Uninitialized),T=v===eH.Initialized,{draggable:{active:C,nodes:S,translate:w},droppable:{containers:k}}=m,P=C?S.get(C):null,x=Object(mo.useRef)({initial:null,translated:null}),A=Object(mo.useMemo)(()=>{var e;return null!=C?{id:C,data:null!=(e=null==P?void 0:P.data)?e:IL,rect:x}:null},[C,P]),G=Object(mo.useRef)(null),[M,R]=Object(mo.useState)(null),[B,U]=Object(mo.useState)(null),E=fO(d,Object.values(d)),O=CO("DndDescribedBy",o),L=Object(mo.useMemo)(()=>k.getEnabled(),[k]),H=function(e){return Object(mo.useMemo)(()=>({draggable:{...VL.draggable,...null==e?void 0:e.draggable},droppable:{...VL.droppable,...null==e?void 0:e.droppable},dragOverlay:{...VL.dragOverlay,...null==e?void 0:e.dragOverlay}}),[null==e?void 0:e.draggable,null==e?void 0:e.droppable,null==e?void 0:e.dragOverlay])}(p),{droppableRects:j,measureDroppableContainers:F,measuringScheduled:z}=function(e,t){let{dragging:a,dependencies:l,config:i}=t;const[o,n]=Object(mo.useState)(null),{frequency:r,measure:s,strategy:c}=i,u=Object(mo.useRef)(e),p=function(){switch(c){case RL.Always:return!1;case RL.BeforeDragging:return a;default:return!a}}(),b=fO(p),d=Object(mo.useCallback)((function(e){void 0===e&&(e=[]),b.current||n(t=>null===t?e:t.concat(e.filter(e=>!t.includes(e))))}),[b]),g=Object(mo.useRef)(null),m=hO(t=>{if(p&&!a)return UL;if(!t||t===UL||u.current!==e||null!=o){const t=new Map;for(let a of e){if(!a)continue;if(o&&o.length>0&&!o.includes(a.id)&&a.rect.current){t.set(a.id,a.rect.current);continue}const e=a.node.current,l=e?new uL(s(e),e):null;a.rect.current=l,l&&t.set(a.id,l)}return t}return t},[e,o,a,p,s]);return Object(mo.useEffect)(()=>{u.current=e},[e]),Object(mo.useEffect)(()=>{p||d()},[a,p]),Object(mo.useEffect)(()=>{o&&o.length>0&&n(null)},[JSON.stringify(o)]),Object(mo.useEffect)(()=>{p||"number"!=typeof r||null!==g.current||(g.current=setTimeout(()=>{d(),g.current=null},r))},[r,p,d,...l]),{droppableRects:m,measureDroppableContainers:d,measuringScheduled:null!=o}}(L,{dragging:T,dependencies:[w.x,w.y],config:H.droppable}),D=function(e,t){const a=null!==t?e.get(t):void 0,l=a?a.node.current:null;return hO(e=>{var a;return null===t?null:null!=(a=null!=l?l:e)?a:null},[l,t])}(S,C),N=Object(mo.useMemo)(()=>B?xO(B):null,[B]),I=function(){const e=!1===(null==M?void 0:M.autoScrollEnabled),t="object"==typeof r?!1===r.enabled:!1===r,a=T&&!e&&!t;return"object"==typeof r?{...r,enabled:a}:{enabled:a}}(),V=function(e,t){return EL(e,t)}(D,H.draggable.measure);!function(e){let{activeNode:t,measure:a,initialRect:l,config:i=!0}=e;const o=Object(mo.useRef)(!1),{x:n,y:r}="boolean"==typeof i?{x:i,y:i}:i;mO(()=>{if(!n&&!r||!t)return void(o.current=!1);if(o.current||!l)return;const e=null==t?void 0:t.node.current;if(!e||!1===e.isConnected)return;const i=VO(a(e),l);if(n||(i.x=0),r||(i.y=0),o.current=!0,Math.abs(i.x)>0||Math.abs(i.y)>0){const t=JO(e);t&&t.scrollBy({top:i.y,left:i.x})}},[t,n,r,l,a])}({activeNode:C?S.get(C):null,config:I.layoutShiftCompensation,initialRect:V,measure:H.draggable.measure});const W=HL(D,H.draggable.measure,V),q=HL(D?D.parentElement:null),Z=Object(mo.useRef)({activatorEvent:null,active:null,activeNode:D,collisionRect:null,collisions:null,droppableRects:j,draggableNodes:S,draggingNode:null,draggingNodeRect:null,droppableContainers:k,over:null,scrollableAncestors:[],scrollAdjustedTranslate:null}),$=k.getNodeFor(null==(t=Z.current.over)?void 0:t.id),Y=function(e){let{measure:t}=e;const[a,l]=Object(mo.useState)(null),i=OL({callback:Object(mo.useCallback)(e=>{for(const{target:a}of e)if(bO(a)){l(e=>{const l=t(a);return e?{...e,width:l.width,height:l.height}:l});break}},[t])}),o=Object(mo.useCallback)(e=>{const a=function(e){if(!e)return null;if(e.children.length>1)return e;const t=e.children[0];return bO(t)?t:e}(e);null==i||i.disconnect(),a&&(null==i||i.observe(a)),l(a?t(a):null)},[t,i]),[n,r]=vO(o);return Object(mo.useMemo)(()=>({nodeRef:n,rect:a,setRef:r}),[a,n,r])}({measure:H.dragOverlay.measure}),K=null!=(a=Y.nodeRef.current)?a:D,J=T?null!=(l=Y.rect)?l:W:null,X=Boolean(Y.nodeRef.current&&Y.rect),Q=VO(ee=X?null:W,EL(ee));var ee;const te=zL(K?uO(K):null),ae=function(e){const t=Object(mo.useRef)(e),a=hO(a=>e?a&&a!==jL&&e&&t.current&&e.parentNode===t.current.parentNode?a:KO(e):jL,[e]);return Object(mo.useEffect)(()=>{t.current=e},[e]),a}(T?null!=$?$:D:null),le=function(e,t){void 0===t&&(t=$O);const[a]=e,l=zL(a?uO(a):null),[i,o]=Object(mo.useReducer)((function(){return e.length?e.map(e=>lL(e)?l:new uL(t(e),e)):DL}),DL),n=OL({callback:o});return e.length>0&&i===DL&&o(),mO(()=>{e.length?e.forEach(e=>null==n?void 0:n.observe(e)):(null==n||n.disconnect(),o())},[e]),i}(ae),ie=function(e,t){let{transform:a,...l}=t;return null!=e&&e.length?e.reduce((e,t)=>t({transform:e,...l}),a):a}(b,{transform:{x:w.x-Q.x,y:w.y-Q.y,scaleX:1,scaleY:1},activatorEvent:B,active:A,activeNodeRect:W,containerNodeRect:q,draggingNodeRect:J,over:Z.current.over,overlayNodeRect:Y.rect,scrollableAncestors:ae,scrollableAncestorRects:le,windowRect:te}),oe=N?wO(N,w):null,ne=function(e){const[t,a]=Object(mo.useState)(null),l=Object(mo.useRef)(e),i=Object(mo.useCallback)(e=>{const t=XO(e.target);t&&a(e=>e?(e.set(t,tL(t)),new Map(e)):null)},[]);return Object(mo.useEffect)(()=>{const t=l.current;if(e!==t){o(t);const n=e.map(e=>{const t=XO(e);return t?(t.addEventListener("scroll",i,{passive:!0}),[t,tL(t)]):null}).filter(e=>null!=e);a(n.length?new Map(n):null),l.current=e}return()=>{o(e),o(t)};function o(e){e.forEach(e=>{const t=XO(e);null==t||t.removeEventListener("scroll",i)})}},[i,e]),Object(mo.useMemo)(()=>e.length?t?Array.from(t.values()).reduce((e,t)=>wO(e,t),zO):sL(e):zO,[e,t])}(ae),re=FL(ne),se=FL(ne,[W]),ce=wO(ie,re),ue=J?qO(J,ie):null,pe=A&&ue?u({active:A,collisionRect:ue,droppableRects:j,droppableContainers:L,pointerCoordinates:oe}):null,be=function(e,t){if(!e||0===e.length)return null;const[a]=e;return t?a[t]:a}(pe,"id"),[de,ge]=Object(mo.useState)(null),me=function(e,t,a){return{...e,scaleX:t&&a?t.width/a.width:1,scaleY:t&&a?t.height/a.height:1}}(X?ie:wO(ie,se),null!=(i=null==de?void 0:de.rect)?i:null,W),ye=Object(mo.useCallback)((e,t)=>{let{sensor:a,options:l}=t;if(null==G.current)return;const i=S.get(G.current);if(!i)return;const o=e.nativeEvent,n=new a({active:G.current,activeNode:i,event:o,options:l,context:Z,onStart(e){const t=G.current;if(null==t)return;const a=S.get(t);if(!a)return;const{onDragStart:l}=E.current,i={active:{id:t,data:a.data,rect:x}};Object(sn.unstable_batchedUpdates)(()=>{null==l||l(i),_(eH.Initializing),y({type:jO.DragStart,initialCoordinates:e,active:t}),f({type:"onDragStart",event:i})})},onMove(e){y({type:jO.DragMove,coordinates:e})},onEnd:r(jO.DragEnd),onCancel:r(jO.DragCancel)});function r(e){return async function(){const{active:t,collisions:a,over:l,scrollAdjustedTranslate:i}=Z.current;let n=null;if(t&&i){const{cancelDrop:r}=E.current;n={activatorEvent:o,active:t,collisions:a,delta:i,over:l},e===jO.DragEnd&&"function"==typeof r&&await Promise.resolve(r(n))&&(e=jO.DragCancel)}G.current=null,Object(sn.unstable_batchedUpdates)(()=>{y({type:e}),_(eH.Uninitialized),ge(null),R(null),U(null);const t=e===jO.DragEnd?"onDragEnd":"onDragCancel";if(n){const e=E.current[t];null==e||e(n),f({type:t,event:n})}})}}Object(sn.unstable_batchedUpdates)(()=>{R(n),U(e.nativeEvent)})},[S]),fe=function(e,t){return Object(mo.useMemo)(()=>e.reduce((e,a)=>{const{sensor:l}=a;return[...e,...l.activators.map(e=>({eventName:e.eventName,handler:t(e.handler,a)}))]},[]),[e,t])}(c,Object(mo.useCallback)((e,t)=>(a,l)=>{const i=a.nativeEvent,o=S.get(l);if(null!==G.current||!o||i.dndKit||i.defaultPrevented)return;const n={active:o};!0===e(a,t.options,n)&&(i.dndKit={capturedBy:t.sensor},G.current=l,ye(a,t))},[S,ye]));!function(e){Object(mo.useEffect)(()=>{if(!rO)return;const t=e.map(e=>{let{sensor:t}=e;return null==t.setup?void 0:t.setup()});return()=>{for(const e of t)null==e||e()}},e.map(e=>{let{sensor:t}=e;return t}))}(c),mO(()=>{W&&v===eH.Initializing&&_(eH.Initialized)},[W,v]),Object(mo.useEffect)(()=>{const{onDragMove:e}=E.current,{active:t,activatorEvent:a,collisions:l,over:i}=Z.current;if(!t||!a)return;const o={active:t,activatorEvent:a,collisions:l,delta:{x:ce.x,y:ce.y},over:i};Object(sn.unstable_batchedUpdates)(()=>{null==e||e(o),f({type:"onDragMove",event:o})})},[ce.x,ce.y]),Object(mo.useEffect)(()=>{const{active:e,activatorEvent:t,collisions:a,droppableContainers:l,scrollAdjustedTranslate:i}=Z.current;if(!e||null==G.current||!t||!i)return;const{onDragOver:o}=E.current,n=l.get(be),r=n&&n.rect.current?{id:n.id,rect:n.rect.current,data:n.data,disabled:n.disabled}:null,s={active:e,activatorEvent:t,collisions:a,delta:{x:i.x,y:i.y},over:r};Object(sn.unstable_batchedUpdates)(()=>{ge(r),null==o||o(s),f({type:"onDragOver",event:s})})},[be]),mO(()=>{Z.current={activatorEvent:B,active:A,activeNode:D,collisionRect:ue,collisions:pe,droppableRects:j,draggableNodes:S,draggingNode:K,draggingNodeRect:J,droppableContainers:k,over:de,scrollableAncestors:ae,scrollAdjustedTranslate:ce},x.current={initial:J,translated:ue}},[A,D,pe,ue,S,K,J,j,k,de,ae,ce]),function(e){let{acceleration:t,activator:a=AL.Pointer,canScroll:l,draggingRect:i,enabled:o,interval:n=5,order:r=GL.TreeOrder,pointerCoordinates:s,scrollableAncestors:c,scrollableAncestorRects:u,delta:p,threshold:b}=e;const d=function(e){let{delta:t,disabled:a}=e;const l=_O(t);return hO(e=>{if(a||!l||!e)return ML;const i=Math.sign(t.x-l.x),o=Math.sign(t.y-l.y);return{x:{[aL.Backward]:e.x[aL.Backward]||-1===i,[aL.Forward]:e.x[aL.Forward]||1===i},y:{[aL.Backward]:e.y[aL.Backward]||-1===o,[aL.Forward]:e.y[aL.Forward]||1===o}}},[a,t,l])}({delta:p,disabled:!o}),[g,m]=function(){const e=Object(mo.useRef)(null);return[Object(mo.useCallback)((t,a)=>{e.current=setInterval(t,a)},[]),Object(mo.useCallback)(()=>{null!==e.current&&(clearInterval(e.current),e.current=null)},[])]}(),y=Object(mo.useRef)({x:0,y:0}),f=Object(mo.useRef)({x:0,y:0}),h=Object(mo.useMemo)(()=>{switch(a){case AL.Pointer:return s?{top:s.y,bottom:s.y,left:s.x,right:s.x}:null;case AL.DraggableRect:return i}},[a,i,s]),v=Object(mo.useRef)(null),_=Object(mo.useCallback)(()=>{const e=v.current;if(!e)return;const t=y.current.x*f.current.x,a=y.current.y*f.current.y;e.scrollBy(t,a)},[]),T=Object(mo.useMemo)(()=>r===GL.TreeOrder?[...c].reverse():c,[r,c]);Object(mo.useEffect)(()=>{if(o&&c.length&&h){for(const e of T){if(!1===(null==l?void 0:l(e)))continue;const a=c.indexOf(e),i=u[a];if(!i)continue;const{direction:o,speed:r}=nL(e,i,h,t,b);for(const e of["x","y"])d[e][o[e]]||(r[e]=0,o[e]=0);if(r.x>0||r.y>0)return m(),v.current=e,g(_,n),y.current=r,void(f.current=o)}y.current={x:0,y:0},f.current={x:0,y:0},m()}else m()},[t,_,l,m,o,n,JSON.stringify(h),JSON.stringify(d),g,c,T,u,JSON.stringify(b)])}({...I,delta:w,draggingRect:ue,pointerCoordinates:oe,scrollableAncestors:ae,scrollableAncestorRects:le});const he=Object(mo.useMemo)(()=>({active:A,activeNode:D,activeNodeRect:W,activatorEvent:B,collisions:pe,containerNodeRect:q,dragOverlay:Y,draggableNodes:S,droppableContainers:k,droppableRects:j,over:de,measureDroppableContainers:F,scrollableAncestors:ae,scrollableAncestorRects:le,measuringConfiguration:H,measuringScheduled:z,windowRect:te}),[A,D,W,B,pe,q,Y,S,k,j,de,F,ae,le,H,z,te]),ve=Object(mo.useMemo)(()=>({activatorEvent:B,activators:fe,active:A,activeNodeRect:W,ariaDescribedById:{draggable:O},dispatch:y,draggableNodes:S,over:de,measureDroppableContainers:F}),[B,fe,A,W,y,O,S,de,F]);return yo.a.createElement(EO.Provider,{value:h},yo.a.createElement($L.Provider,{value:ve},yo.a.createElement(YL.Provider,{value:he},yo.a.createElement(QL.Provider,{value:me},s)),yo.a.createElement(XL,{disabled:!1===(null==n?void 0:n.restoreFocus)})),yo.a.createElement(HO,{...n,hiddenTextDescribedById:O}))})),aH=Object(mo.createContext)(null),lH="button";const iH={timeout:25};function oH(e,t,a){const l=e.slice();return l.splice(a<0?l.length+a:a,0,l.splice(t,1)[0]),l}function nH(e,t){return e.reduce((e,a,l)=>{const i=t.get(a);return i&&(e[l]=i),e},Array(e.length))}function rH(e){return null!==e&&e>=0}const sH=e=>{let{rects:t,activeIndex:a,overIndex:l,index:i}=e;const o=oH(t,l,a),n=t[i],r=o[i];return r&&n?{x:r.left-n.left,y:r.top-n.top,scaleX:r.width/n.width,scaleY:r.height/n.height}:null},cH={scaleX:1,scaleY:1},uH=e=>{var t;let{activeIndex:a,activeNodeRect:l,index:i,rects:o,overIndex:n}=e;const r=null!=(t=o[a])?t:l;if(!r)return null;if(i===a){const e=o[n];return e?{x:0,y:a<n?e.top+e.height-(r.top+r.height):e.top-r.top,...cH}:null}const s=function(e,t,a){const l=e[t],i=e[t-1],o=e[t+1];return l?a<t?i?l.top-(i.top+i.height):o?o.top-(l.top+l.height):0:o?o.top-(l.top+l.height):i?l.top-(i.top+i.height):0:0}(o,i,a);return i>a&&i<=n?{x:0,y:-r.height-s,...cH}:i<a&&i>=n?{x:0,y:r.height+s,...cH}:{x:0,y:0,...cH}},pH=yo.a.createContext({activeIndex:-1,containerId:"Sortable",disableTransforms:!1,items:[],overIndex:-1,useDragOverlay:!1,sortedRects:[],strategy:sH,disabled:{draggable:!1,droppable:!1}});function bH(e){let{children:t,id:a,items:l,strategy:i=sH,disabled:o=!1}=e;const{active:n,dragOverlay:r,droppableRects:s,over:c,measureDroppableContainers:u}=Object(mo.useContext)(YL),p=CO("Sortable",a),b=Boolean(null!==r.rect),d=Object(mo.useMemo)(()=>l.map(e=>"object"==typeof e&&"id"in e?e.id:e),[l]),g=null!=n,m=n?d.indexOf(n.id):-1,y=c?d.indexOf(c.id):-1,f=Object(mo.useRef)(d),h=!function(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let a=0;a<e.length;a++)if(e[a]!==t[a])return!1;return!0}(d,f.current),v=-1!==y&&-1===m||h,_=function(e){return"boolean"==typeof e?{draggable:e,droppable:e}:e}(o);mO(()=>{h&&g&&u(d)},[h,d,g,u]),Object(mo.useEffect)(()=>{f.current=d},[d]);const T=Object(mo.useMemo)(()=>({activeIndex:m,containerId:p,disabled:_,disableTransforms:v,items:d,overIndex:y,useDragOverlay:b,sortedRects:nH(d,s),strategy:i}),[m,p,_.draggable,_.droppable,v,d,y,s,b,i]);return yo.a.createElement(pH.Provider,{value:T},t)}const dH=e=>{let{id:t,items:a,activeIndex:l,overIndex:i}=e;return oH(a,l,i).indexOf(t)},gH=e=>{let{containerId:t,isSorting:a,wasDragging:l,index:i,items:o,newIndex:n,previousItems:r,previousContainerId:s,transition:c}=e;return!(!c||!l||r!==o&&i===n||!a&&(n===i||t!==s))},mH={duration:200,easing:"ease"},yH=AO.Transition.toString({property:"transform",duration:0,easing:"linear"}),fH={roleDescription:"sortable"};function hH(e){let{animateLayoutChanges:t=gH,attributes:a,disabled:l,data:i,getNewIndex:o=dH,id:n,strategy:r,resizeObserverConfig:s,transition:c=mH}=e;const{items:u,containerId:p,activeIndex:b,disabled:d,disableTransforms:g,sortedRects:m,overIndex:y,useDragOverlay:f,strategy:h}=Object(mo.useContext)(pH),v=function(e,t){var a,l;return"boolean"==typeof e?{draggable:e,droppable:!1}:{draggable:null!=(a=null==e?void 0:e.draggable)?a:t.draggable,droppable:null!=(l=null==e?void 0:e.droppable)?l:t.droppable}}(l,d),_=u.indexOf(n),T=Object(mo.useMemo)(()=>({sortable:{containerId:p,index:_,items:u},...i}),[p,i,_,u]),C=Object(mo.useMemo)(()=>u.slice(u.indexOf(n)),[u,n]),{rect:S,node:w,isOver:k,setNodeRef:P}=function(e){let{data:t,disabled:a=!1,id:l,resizeObserverConfig:i}=e;const o=CO("Droppable"),{active:n,dispatch:r,over:s,measureDroppableContainers:c}=Object(mo.useContext)($L),u=Object(mo.useRef)({disabled:a}),p=Object(mo.useRef)(!1),b=Object(mo.useRef)(null),d=Object(mo.useRef)(null),{disabled:g,updateMeasurementsFor:m,timeout:y}={...iH,...i},f=fO(null!=m?m:l),h=OL({callback:Object(mo.useCallback)(()=>{p.current?(null!=d.current&&clearTimeout(d.current),d.current=setTimeout(()=>{c(Array.isArray(f.current)?f.current:[f.current]),d.current=null},y)):p.current=!0},[y]),disabled:g||!n}),v=Object(mo.useCallback)((e,t)=>{h&&(t&&(h.unobserve(t),p.current=!1),e&&h.observe(e))},[h]),[_,T]=vO(v),C=fO(t);return Object(mo.useEffect)(()=>{h&&_.current&&(h.disconnect(),p.current=!1,h.observe(_.current))},[_,h]),mO(()=>(r({type:jO.RegisterDroppable,element:{id:l,key:o,disabled:a,node:_,rect:b,data:C}}),()=>r({type:jO.UnregisterDroppable,key:o,id:l})),[l]),Object(mo.useEffect)(()=>{a!==u.current.disabled&&(r({type:jO.SetDroppableDisabled,id:l,key:o,disabled:a}),u.current.disabled=a)},[l,o,a,r]),{active:n,rect:b,isOver:(null==s?void 0:s.id)===l,node:_,over:s,setNodeRef:T}}({id:n,data:T,disabled:v.droppable,resizeObserverConfig:{updateMeasurementsFor:C,...s}}),{active:x,activatorEvent:A,activeNodeRect:G,attributes:M,setNodeRef:R,listeners:B,isDragging:U,over:E,setActivatorNodeRef:O,transform:L}=function(e){let{id:t,data:a,disabled:l=!1,attributes:i}=e;const o=CO("Droppable"),{activators:n,activatorEvent:r,active:s,activeNodeRect:c,ariaDescribedById:u,draggableNodes:p,over:b}=Object(mo.useContext)($L),{role:d=lH,roleDescription:g="draggable",tabIndex:m=0}=null!=i?i:{},y=(null==s?void 0:s.id)===t,f=Object(mo.useContext)(y?QL:aH),[h,v]=vO(),[_,T]=vO(),C=function(e,t){return Object(mo.useMemo)(()=>e.reduce((e,a)=>{let{eventName:l,handler:i}=a;return e[l]=e=>{i(e,t)},e},{}),[e,t])}(n,t),S=fO(a);return mO(()=>(p.set(t,{id:t,key:o,node:h,activatorNode:_,data:S}),()=>{const e=p.get(t);e&&e.key===o&&p.delete(t)}),[p,t]),{active:s,activatorEvent:r,activeNodeRect:c,attributes:Object(mo.useMemo)(()=>({role:d,tabIndex:m,"aria-disabled":l,"aria-pressed":!(!y||d!==lH)||void 0,"aria-roledescription":g,"aria-describedby":u.draggable}),[l,d,m,y,g,u.draggable]),isDragging:y,listeners:l?void 0:C,node:h,over:b,setNodeRef:v,setActivatorNodeRef:T,transform:f}}({id:n,data:T,attributes:{...fH,...a},disabled:v.draggable}),H=function(){for(var e=arguments.length,t=new Array(e),a=0;a<e;a++)t[a]=arguments[a];return Object(mo.useMemo)(()=>e=>{t.forEach(t=>t(e))},t)}(P,R),j=Boolean(x),F=j&&!g&&rH(b)&&rH(y),z=!f&&U,D=z&&F?L:null,N=F?null!=D?D:(null!=r?r:h)({rects:m,activeNodeRect:G,activeIndex:b,overIndex:y,index:_}):null,I=rH(b)&&rH(y)?o({id:n,items:u,activeIndex:b,overIndex:y}):_,V=null==x?void 0:x.id,W=Object(mo.useRef)({activeId:V,items:u,newIndex:I,containerId:p}),q=u!==W.current.items,Z=t({active:x,containerId:p,isDragging:U,isSorting:j,id:n,index:_,items:u,newIndex:W.current.newIndex,previousItems:W.current.items,previousContainerId:W.current.containerId,transition:c,wasDragging:null!=W.current.activeId}),$=function(e){let{disabled:t,index:a,node:l,rect:i}=e;const[o,n]=Object(mo.useState)(null),r=Object(mo.useRef)(a);return mO(()=>{if(!t&&a!==r.current&&l.current){const e=i.current;if(e){const t=$O(l.current,{ignoreTransform:!0}),a={x:e.left-t.left,y:e.top-t.top,scaleX:e.width/t.width,scaleY:e.height/t.height};(a.x||a.y)&&n(a)}}a!==r.current&&(r.current=a)},[t,a,l,i]),Object(mo.useEffect)(()=>{o&&n(null)},[o]),o}({disabled:!Z,index:_,node:w,rect:S});return Object(mo.useEffect)(()=>{j&&W.current.newIndex!==I&&(W.current.newIndex=I),p!==W.current.containerId&&(W.current.containerId=p),u!==W.current.items&&(W.current.items=u)},[j,I,p,u]),Object(mo.useEffect)(()=>{if(V===W.current.activeId)return;if(V&&!W.current.activeId)return void(W.current.activeId=V);const e=setTimeout(()=>{W.current.activeId=V},50);return()=>clearTimeout(e)},[V]),{active:x,activeIndex:b,attributes:M,data:T,rect:S,index:_,newIndex:I,items:u,isOver:k,isSorting:j,isDragging:U,listeners:B,node:w,overIndex:y,over:E,setNodeRef:H,setActivatorNodeRef:O,setDroppableNodeRef:P,setDraggableNodeRef:R,transform:null!=$?$:N,transition:$||q&&W.current.newIndex===_?yH:z&&!PO(A)||!c?void 0:j||Z?AO.Transition.toString({...c,property:"transform"}):void 0}}gL.Down,gL.Right,gL.Up,gL.Left;const vH=e=>{let{containerNodeRect:t,draggingNodeRect:a,transform:l}=e;return a&&t?function(e,t,a){const l={...e};return t.top+e.y<=a.top?l.y=a.top-t.top:t.bottom+e.y>=a.top+a.height&&(l.y=a.top+a.height-t.bottom),t.left+e.x<=a.left?l.x=a.left-t.left:t.right+e.x>=a.left+a.width&&(l.x=a.left+a.width-t.right),l}(l,a,t):l},_H=e=>{let{transform:t}=e;return{...t,x:0}};function TH(){return(TH=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}const CH=e=>{var t,a,l;let{id:i,item:o}=e;const{attributes:n,listeners:r,setNodeRef:s,transform:c,transition:u}=hH({id:i}),p={transform:AO.Transform.toString(c),transition:u};return React.createElement("div",TH({ref:s,style:p},n,r,{className:"spectra-ee-quick-access__sidebar--blocks--block"}),React.createElement("div",{className:`spectra-ee-quick-access__sidebar-icon__${null==o||null===(t=o.name)||void 0===t?void 0:t.split("/")[0]} spectra-ee-quick-access__sidebar-icon__${null==o||null===(a=o.name)||void 0===a?void 0:a.split("/")[0]}--${null==o||null===(l=o.name)||void 0===l?void 0:l.split("/")[1]} spectra-ee-quick-access__sidebar--blocks--block--icon`},React.createElement(Le.Icon,{icon:o.icon.src?o.icon.src:o.icon})))};var SH=Object(L.compose)(Object(n.withDispatch)(e=>({updateDefaultAllowedQuickSidebarBlocks:t=>e("spectra").updateDefaultAllowedQuickSidebarBlocks(t)})))(e=>{let{initialItems:t,updateDefaultAllowedQuickSidebarBlocks:a}=e;const[l,i]=Object(mo.useState)(t);return React.createElement(tH,{onDragStart:()=>{const e=document.querySelector(".interface-interface-skeleton__content");e&&e.classList.add("spectra-ee-quick-access__sidebar--prevent-editor-interactions")},onDragEnd:e=>{let{active:t,over:o}=e;const n=document.querySelector(".interface-interface-skeleton__content");if(n&&n.classList.remove("spectra-ee-quick-access__sidebar--prevent-editor-interactions"),t.id!==o.id){const e=l.findIndex(e=>e.id===t.id),n=l.findIndex(e=>e.id===o.id),r=oH(l,e,n);(e=>{a(e);const t={security:uagb_blocks_info.uagb_ajax_nonce,defaultAllowedQuickSidebarBlocks:JSON.stringify(e)};$l({url:uagb_blocks_info.ajax_url,action:"uag_global_update_allowed_block",data:t})})(r.map(e=>e.name)),i(r)}},modifiers:[_H,vH]},React.createElement(bH,{items:l.map(e=>e.id),strategy:uH},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--blocks-sortable"},l.map((e,t)=>React.createElement(CH,{key:e.id,id:e.id,item:e,isLast:t===l.length-1})))))}),wH=e=>{const{enableRearrange:t}=e,a=Object(n.useSelect)(e=>e("spectra").getDefaultAllowedQuickSidebarBlocks()),l=Object(be.getBlockTypes)(),{blockInsertionPoint:i,getSelectedBlockClientId:o,getSelectedBlockAllowedBlocks:r,getBlockRootClientId:s}=Object(n.useSelect)(e=>{const t=e("core/block-editor"),{index:a}=t.getBlockInsertionPoint(),l=t.getSelectedBlockClientId();return{blockInsertionPoint:a,getSelectedBlockClientId:l,getSelectedBlockAllowedBlocks:t.getAllowedBlocks(l)||[],getBlockRootClientId:t.getBlockRootClientId(l)}}),c=l.filter(e=>null==a?void 0:a.includes(e.name)),u=e=>Object(be.createBlock)(e);c.forEach((e,t)=>{e.id=""+(t+1)});const p=a.filter(e=>null!=e).map(e=>c.find(t=>{let{name:a}=t;return a===e})).filter(e=>void 0!==e);return React.createElement(React.Fragment,null,!t&&(null==p?void 0:p.map((e,t)=>React.createElement(nO,{key:t,id:t,block:e,create:u,blockInsertionPoint:i,getSelectedBlockClientId:o,getSelectedBlockAllowedBlocks:r,getBlockRootClientId:s}))),t&&React.createElement(SH,{initialItems:p}))},kH=e=>{let{closePopover:t,updateDefaultAllowedQuickSidebarBlocks:a,getDefaultAllowedQuickSidebarBlocks:l}=e;const[i,o]=Object(B.useState)(""),{createNotice:s}=Object(n.useDispatch)("core/notices"),[c,u]=Object(B.useState)(0),p="quick-action-sidebar/add-notices-flow/added-notice/"+c,b=Object(be.getBlockTypes)(),d=()=>t(!1),g=b.filter(e=>{var t;return null===(t=e.title.toLowerCase())||void 0===t?void 0:t.includes(i.toLowerCase())}),m=[],y=[];return g.forEach(e=>{null!=l&&l.includes(e.name)?m.push(e):y.push(e)}),React.createElement(Le.Popover,{onClose:d,placement:"right-start",className:"spectra-quick-action-block-popover"},React.createElement(Le.SearchControl,{value:i,onChange:e=>o(e),label:"Search Blocks",className:"spectra-quick-action-block-popover-search"}),React.createElement("div",{className:"spectra-block-container"},y.some(e=>!e.parent&&e.title.toLowerCase().includes(i.toLowerCase()))&&React.createElement("div",{className:"block-editor-inserter__panel-header spectra-quick-action-block-popover-header__add-to-quick-action-bar"},React.createElement("h2",{className:"block-editor-inserter__panel-title"},Object(r.__)("Add to Quick Action Bar","ultimate-addons-for-gutenberg"))),y.map((e,t)=>{var i;return!["uagb/sure-forms","uagb/sure-cart-product","uagb/sure-cart-checkout"].includes(e.name)&&(e=>{if(!e.parent&&!e.ancestor&&"uagb/popup-builder"!==e.name)return e})(e)&&React.createElement("div",{key:t,className:"spectra-block-wrap",onClick:()=>{return t=e,(e=>{a(e);const t={security:uagb_blocks_info.uagb_ajax_nonce,defaultAllowedQuickSidebarBlocks:JSON.stringify(e)};$l({url:uagb_blocks_info.ajax_url,action:"uag_global_update_allowed_block",data:t})})([...l,t.name]),u(e=>e+1),s("success",Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s Added to Quick Action Bar.","ultimate-addons-for-gutenberg"),t.title),{type:"snackbar",id:p,isDismissible:!0}),setTimeout(()=>{Object(n.dispatch)("core/notices").removeNotice(p)},1e3),void d();var t},style:{cursor:"pointer"}},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--blocks--block--icon"},React.createElement(Le.Icon,{icon:null!==(i=e.icon)&&void 0!==i&&i.src?e.icon.src:e.icon})),React.createElement("div",{className:"block-title"},e.title))}),m.some(e=>!e.parent&&e.title.toLowerCase().includes(i.toLowerCase()))&&React.createElement("div",{className:"block-editor-inserter__panel-header spectra-quick-action-block-popover-header__already-present-in-quick-action-bar"},React.createElement("h2",{className:"block-editor-inserter__panel-title"},Object(r.__)("Already Present in Quick Action Bar","ultimate-addons-for-gutenberg"))),m.map((e,t)=>{var a;return!e.parent&&React.createElement("div",{key:t,className:"spectra-block-wrap"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--blocks--block--icon"},React.createElement(Le.Icon,{icon:null!==(a=e.icon)&&void 0!==a&&a.src?e.icon.src:e.icon})),React.createElement("div",{className:"block-title"},e.title))}),!y.some(e=>!e.parent&&e.title.toLowerCase().includes(i.toLowerCase()))&&!m.some(e=>!e.parent&&e.title.toLowerCase().includes(i.toLowerCase()))&&React.createElement("div",{className:"block-editor-inserter__no-results"},React.createElement("p",null,Object(r.__)("No results found.","ultimate-addons-for-gutenberg")))))},PH=Object(L.compose)(Object(n.withSelect)(e=>{var t,a;const l=e(k).getEnableQuickActionSidebar(),i=e(k).getDefaultAllowedQuickSidebarBlocks(),o=null===(t=e("core/edit-post"))||void 0===t?void 0:t.isFeatureActive("fullscreenMode"),n=e("core/block-editor");return{getEnableQuickActionSidebar:l,getDefaultAllowedQuickSidebarBlocks:i,getFullscreenMode:o,getDistractionFreeMode:null==n||null===(a=n.getSettings())||void 0===a?void 0:a.isDistractionFree}}),Object(n.withDispatch)(e=>({updateDefaultAllowedQuickSidebarBlocks:t=>e("spectra").updateDefaultAllowedQuickSidebarBlocks(t),updateEnableQuickActionSidebar:t=>e("spectra").updateEnableQuickActionSidebar(t)})))(e=>{const{getEnableQuickActionSidebar:t,updateDefaultAllowedQuickSidebarBlocks:a,getDefaultAllowedQuickSidebarBlocks:l,getFullscreenMode:i,getDistractionFreeMode:o}=e,[n,s]=Object(B.useState)(!1),[c,u]=Object(B.useState)(!1),[p,b]=Object(B.useState)(null),[d,g]=Object(B.useState)(0),m=e=>b(e),y=()=>b(!1);if(Object(B.useEffect)(()=>{const e=e=>{e.target.closest(".spectra-ee-quick-access__sidebar")||(u(!1),g(0))},t=new URL(window.location.href);return"/wp-admin/site-editor.php"===t.pathname?document.querySelectorAll("iframe").forEach((function(t){if(!uagb_blocks_info.exclude_crops_iframes.includes(t.name))try{t.contentWindow.addEventListener("click",e)}catch(e){}})):document.body.addEventListener("click",e),()=>{"/wp-admin/site-editor.php"===t.pathname?document.querySelectorAll("iframe").forEach((function(t){const a=t.contentWindow;if(!uagb_blocks_info.exclude_crops_iframes.includes(a.name))try{a.removeEventListener("click",e)}catch(e){}})):document.body.removeEventListener("click",e)}},[]),Object(B.useLayoutEffect)(()=>(oO.use(),()=>oO.unuse()),[]),"disabled"===t||"site-editor"!==uagb_blocks_info.is_site_editor&&!i||o)return null;const f=()=>{s(!0),u(!1)},h=()=>{s(!1),u(!1)},v=()=>{u(!0)};return React.createElement(React.Fragment,null,React.createElement("div",{className:"spectra-ee-quick-access"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--blocks"},React.createElement(wH,{enableRearrange:c})),React.createElement("div",{className:"spectra-ee-quick-access__sidebar--tabs-container"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--tabs"},["add","sort"].map((e,t)=>React.createElement("div",{key:t,className:"tab "+(d===t?"active":""),onClick:()=>(e=>{g(e)})(t)},"add"===e&&React.createElement("div",{className:"spectra-ee-quick-access__sidebar--actions"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--actions--plus"},React.createElement("div",{className:"spectra-quick-action-sidebar-wrap"},React.createElement("div",{id:"plus-icon",onClick:f,onMouseOver:()=>m("add"),onMouseOut:y,onFocus:()=>m("add"),onBlur:y},React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",fill:"#fff",focusable:"false"},React.createElement("path",{d:"M18 11.2h-5.2V6h-1.6v5.2H6v1.6h5.2V18h1.6v-5.2H18z"}))),n&&React.createElement(kH,{closePopover:h,updateDefaultAllowedQuickSidebarBlocks:a,getDefaultAllowedQuickSidebarBlocks:l}),"add"===p&&React.createElement(Le.Popover,{placement:"right",className:"spectra-ee-quick-access__sidebar--blocks--block--icon--name"},React.createElement("div",{className:"block-title"},Object(r.__)("Add blocks to Quick Action Bar","ultimate-addons-for-gutenberg")))))),"sort"===e&&React.createElement("div",{className:"spectra-ee-quick-access__sidebar--actions"},React.createElement("div",{className:"spectra-ee-quick-access__sidebar--actions--plus rearrange"},React.createElement("div",{className:"spectra-quick-action-sidebar-wrap"},React.createElement("div",{id:"rearrange-icon",onClick:v,onMouseOver:()=>m("sort"),onMouseOut:y,onFocus:()=>m("sort"),onBlur:y},React.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",width:"24",height:"24","aria-hidden":"true",fill:"#fff",focusable:"false"},React.createElement("path",{d:"m19 7-3-3-8.5 8.5-1 4 4-1L19 7Zm-7 11.5H5V20h7v-1.5Z"})),"sort"===p&&React.createElement(Le.Popover,{placement:"right",className:"spectra-ee-quick-access__sidebar--blocks--block--icon--name"},React.createElement("div",{className:"block-title"},Object(r.__)("Re-arrange block inside Quick Action Bar","ultimate-addons-for-gutenberg"))))))))))))))});const xH=()=>{const e=Object(n.useSelect)(e=>{var t;return null===(t=e("core/editor"))||void 0===t?void 0:t.getCurrentPostId()},[]);return Object(B.useEffect)(()=>{(()=>{var e;const t=new CustomEvent("UAGBQABEditor",{detail:{toggleStatus:"enabled"}});null===(e=document)||void 0===e||e.dispatchEvent(t)})()},[e]),null};ee()(()=>{const e=new URL(window.location.href);if("/wp-admin/site-editor.php"!==e.pathname){const e=document.createElement("div");document.body.appendChild(e),Object(sn.createRoot)(e).render(React.createElement(xH,null))}"disabled"!==uagb_blocks_info.enableQuickActionSidebar&&("/wp-admin/site-editor.php"===e.pathname?(AH(window.location.href),window.navigation.addEventListener("navigate",e=>{AH(e.destination.url)})):GH())});const AH=e=>{const t=new URL(e);if("/wp-admin/site-editor.php"===t.pathname)if("edit"===t.searchParams.get("canvas"))MH();else{const e=document.querySelector(".spectra-ee-quick-access");e&&e.parentElement.remove()}},GH=()=>{const e=setInterval(()=>{const t=document.querySelector(".interface-interface-skeleton__body");if(!t)return;if(document.querySelector(".spectra-ee-quick-access__sidebar--blocks--block"))return void clearInterval(e);clearInterval(e);let a=t.querySelector(".spectra-ee-quick-access-container");a||(a=t.insertBefore(document.createElement("div"),t.firstChild).appendChild(document.createElement("div")),a.classList.add("spectra-ee-quick-access-container")),Object(sn.createRoot)(a).render(React.createElement(PH,null))},100)},MH=()=>{const e=setInterval(()=>{const t=document.querySelector(".edit-site-editor__interface-skeleton")||document.querySelector(".editor-editor-interface.edit-site-editor__editor-interface");t&&(t.classList.contains("is-loading")||(clearInterval(e),GH()))},100)};document.addEventListener("UAGBQABEditor",(function(e){var t;"enabled"===(null==e||null===(t=e.detail)||void 0===t?void 0:t.toggleStatus)&&GH()}));var RH,BH={logo:React.createElement("svg",{className:"spectra-page-settings-button",xmlns:"http://www.w3.org/2000/svg",width:"24",height:"24",viewBox:"0 0 70 70",fill:"none"}," ",React.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M35 70C54.33 70 70 54.33 70 35C70 15.67 54.33 0 35 0C15.67 0 0 15.67 0 35C0 54.33 15.67 70 35 70ZM24.4471 23.5112C18.9722 26.7403 20.2852 35.3759 26.5032 37.0351L36.8875 39.806C37.7533 40.037 37.91 41.224 37.135 41.6811L27.0972 47.5799L26.036 58L45.5529 46.4888C51.0278 43.2597 49.7148 34.6241 43.4968 32.9649L33.1125 30.1941C32.2467 29.963 32.09 28.776 32.865 28.3189L42.9028 22.4202L43.964 12L24.4471 23.5112Z"})," ")},UH=a(150),EH=0,OH={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},LH={};LH.locals=UH.a.locals||{},LH.use=function(){return EH++||(RH=ke()(UH.a,OH)),LH},LH.unuse=function(){EH>0&&!--EH&&(RH(),RH=null)};var HH=LH;const jH=e=>{if("string"!=typeof e)return;const t=e.replace(/\\/g,"").split("}").map(e=>e.trim()?`.block-editor-block-list__layout ${e}}`:"").join(" "),a=document.getElementById("uagb-blocks-editor-custom-css");if(a)a.textContent=t;else{const e=document.createElement("style");e.setAttribute("id","uagb-blocks-editor-custom-css"),e.textContent=t,document.head.appendChild(e)}};var FH=()=>{var e;const t=Object(B.useRef)(null),[a,l]=Object(B.useState)(null===(e=Object(n.select)("core/editor").getEditedPostAttribute("meta"))||void 0===e?void 0:e._uag_custom_page_level_css);return Object(B.useLayoutEffect)(()=>(HH.use(),()=>{HH.unuse()}),[]),Object(B.useEffect)(()=>{jH(a)},[a]),Object(B.useEffect)(()=>()=>{const e=document.querySelector(".spectra-custom-css-panel"),t=null==e?void 0:e.querySelectorAll(".CodeMirror-wrap");t&&(null==t||t.forEach(e=>{null==e||e.remove()}))},[]),Object(B.useEffect)(()=>{var e,a;const i=document.querySelector(".spectra-custom-css-panel"),o=null==i?void 0:i.querySelectorAll(".CodeMirror-wrap");o&&(null==o||o.forEach(e=>{null==e||e.remove()}));const r=null===(e=wp)||void 0===e||null===(a=e.codeEditor)||void 0===a?void 0:a.initialize(null==t?void 0:t.current,{...wp.codeEditor.defaultSettings.codemirror,scrollbarStyle:null}),s=document.querySelector(".spectra-css-editor .CodeMirror-code");s&&(null==s||s.addEventListener("keyup",(function(){var e,t;null==r||null===(e=r.codemirror)||void 0===e||e.save();const a=null==r||null===(t=r.codemirror)||void 0===t?void 0:t.getValue();l(a),Object(n.dispatch)("core/editor").editPost({meta:{_uag_custom_page_level_css:a}})})))},[t]),React.createElement(React.Fragment,null,React.createElement("p",{className:"spectra-custom-css-notice"},Object(r.__)("Add your own CSS code here to customize the page as per your expectations.","ultimate-addons-for-gutenberg")),React.createElement("hr",null),React.createElement("p",{className:"spectra-custom-css-example spectra-custom-css-notice"},uagb_blocks_info.spectra_custom_css_example),React.createElement("div",{id:"spectra-css-editor",className:"spectra-css-editor"},React.createElement("textarea",{value:a,ref:t})))};a(370);const zH=()=>{let e=uagb_blocks_info.uagb_url;return e+="/assets/images/upsell/supportBanner.svg",React.createElement("img",{src:e,alt:"Upsell Cover",className:"max-w-full h-auto"})},DH=()=>{const e={title:Object(r.__)("VIP Priority Support","ultimate-addons-for-gutenberg"),Image:zH,header:Object(r.__)("Enjoy Uninterrupted Productivity and Complete Peace of Mind","ultimate-addons-for-gutenberg"),description:Object(r.__)("Get the red carpet treatment! Exclusive support service designed for faster assistance and benefits.","ultimate-addons-for-gutenberg"),features:[Object(r.__)("Unmatched Speed","ultimate-addons-for-gutenberg"),Object(r.__)("Priority Treatment","ultimate-addons-for-gutenberg"),Object(r.__)("Expert Support","ultimate-addons-for-gutenberg"),Object(r.__)("24/7 Peace of Mind","ultimate-addons-for-gutenberg")]},[t,a]=Object(mo.useState)(!1),[l,i]=Object(mo.useState)(window.innerWidth<=768),o=e=>{e||a(!1)};return Object(mo.useEffect)(()=>{if(t){const t=document.querySelector(".components-modal__content");t&&(document.querySelector(".components-modal__frame").style.margin="0 !important",t.style.marginTop="0 !important",t.style.padding="0 !important",t.innerHTML="",t.classList.remove("components-modal__content"),wp.element.render(React.createElement(NH,{setIsModalOpen:o,modalData:e}),t))}},[t]),Object(mo.useEffect)(()=>{const e=()=>{i(window.innerWidth<=768)};return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)},[]),React.createElement("div",{style:{padding:"12px",backgroundColor:"#fff",position:"fixed",zIndex:"9999999",bottom:l?"0":"38px",width:l?"100%":"280px"}},React.createElement("div",{className:"spectra-support-container",style:{padding:"8px",border:"0.5px solid #D6CDFF",borderRadius:"5px",backgroundColor:"#F3F0FF",display:"flex",justifyContent:"center",alignItems:"center",gap:"8px",zIndex:"1000005"}},React.createElement("div",{className:"spectra-support-icon",style:{height:"100%"}},React.createElement("svg",{width:"20",height:"20",viewBox:"0 0 20 20",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2.5 9.1665H5C5.44203 9.1665 5.86595 9.3421 6.17851 9.65466C6.49107 9.96722 6.66667 10.3911 6.66667 10.8332V13.3332C6.66667 13.7752 6.49107 14.1991 6.17851 14.5117C5.86595 14.8242 5.44203 14.9998 5 14.9998H4.16667C3.72464 14.9998 3.30072 14.8242 2.98816 14.5117C2.67559 14.1991 2.5 13.7752 2.5 13.3332V9.1665ZM2.5 9.1665C2.5 8.18159 2.69399 7.20632 3.0709 6.29638C3.44781 5.38644 4.00026 4.55964 4.6967 3.8632C5.39314 3.16676 6.21993 2.61432 7.12987 2.23741C8.03982 1.8605 9.01509 1.6665 10 1.6665C10.9849 1.6665 11.9602 1.8605 12.8701 2.23741C13.7801 2.61432 14.6069 3.16676 15.3033 3.8632C15.9997 4.55964 16.5522 5.38644 16.9291 6.29638C17.306 7.20632 17.5 8.18159 17.5 9.1665M17.5 9.1665V13.3332C17.5 13.7752 17.3244 14.1991 17.0118 14.5117C16.6993 14.8242 16.2754 14.9998 15.8333 14.9998H15C14.558 14.9998 14.134 14.8242 13.8215 14.5117C13.5089 14.1991 13.3333 13.7752 13.3333 13.3332V10.8332C13.3333 10.3911 13.5089 9.96722 13.8215 9.65466C14.134 9.3421 14.558 9.1665 15 9.1665H17.5Z",stroke:"#6005FF",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M17.5 13.3335V15.0002C17.5 15.8842 17.1488 16.7321 16.5237 17.3572C15.8986 17.9823 15.0507 18.3335 14.1667 18.3335H10",stroke:"#6005FF",strokeWidth:"1.5",strokeLinecap:"round",strokeLinejoin:"round"}))),React.createElement("div",{className:"spectra-support-text",style:{fontSize:"13px",fontFamily:"Figtree",fontWeight:400,color:"#111827"}},Object(r.__)("Experience peace of mind with premium support. ","ultimate-addons-for-gutenberg"),React.createElement("div",{style:{display:"inline",color:"#0369A1",textDecoration:"underline",cursor:"pointer"},onClick:()=>{a(!0)}},Object(r.__)(" Learn more","ultimate-addons-for-gutenberg")))),t&&React.createElement(Le.Modal,{title:"This is my modal",onRequestClose:o}))},NH=e=>{var t,a,l;let{modalData:i,setIsModalOpen:o}=e;const{title:n,header:s,description:c,features:u}=i,[p,b]=Object(mo.useState)(window.innerWidth<=768),[d,g]=Object(mo.useState)(!0),[m,y]=Object(mo.useState)(""),[f,h]=Object(mo.useState)("");return Object(mo.useEffect)(()=>{const e=()=>{b(window.innerWidth<=768)};return window.addEventListener("resize",e),()=>window.removeEventListener("resize",e)},[]),Object(mo.useEffect)(()=>{(async()=>{try{const e=await fetch("https://store.brainstormforce.com/wp-json/pse/v1/pricing",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({})}),t=await e.json(),a=Object.entries(t.data).reduce((e,t)=>{let[a,l]=t;return l.product.includes("VIP")&&(e[a]=l),e},{});y(a),Object.keys(a).length>0&&h(Object.keys(a)[0]),g(!1)}catch(e){y("")}})()},[]),React.createElement("div",{className:"bg-white rounded-lg p-5 upsell-modal-component "+(p?"":"w-[500px]"),onClick:e=>{e.stopPropagation()},style:{width:p?"auto":"500px"}},React.createElement("div",{className:"flex w-full justify-between items-center"},React.createElement("div",{className:"text-brand-primary-600 flex space-x-1"},React.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M2 7.3335H4C4.35362 7.3335 4.69276 7.47397 4.94281 7.72402C5.19286 7.97407 5.33333 8.31321 5.33333 8.66683V10.6668C5.33333 11.0205 5.19286 11.3596 4.94281 11.6096C4.69276 11.8597 4.35362 12.0002 4 12.0002H3.33333C2.97971 12.0002 2.64057 11.8597 2.39052 11.6096C2.14048 11.3596 2 11.0205 2 10.6668V7.3335ZM2 7.3335C2 6.54557 2.15519 5.76535 2.45672 5.0374C2.75825 4.30944 3.20021 3.64801 3.75736 3.09086C4.31451 2.5337 4.97595 2.09175 5.7039 1.79022C6.43185 1.48869 7.21207 1.3335 8 1.3335C8.78793 1.3335 9.56815 1.48869 10.2961 1.79022C11.0241 2.09175 11.6855 2.5337 12.2426 3.09086C12.7998 3.64801 13.2417 4.30944 13.5433 5.0374C13.8448 5.76535 14 6.54557 14 7.3335M14 7.3335V10.6668C14 11.0205 13.8595 11.3596 13.6095 11.6096C13.3594 11.8597 13.0203 12.0002 12.6667 12.0002H12C11.6464 12.0002 11.3072 11.8597 11.0572 11.6096C10.8071 11.3596 10.6667 11.0205 10.6667 10.6668V8.66683C10.6667 8.31321 10.8071 7.97407 11.0572 7.72402C11.3072 7.47397 11.6464 7.3335 12 7.3335H14Z",stroke:"#6005FF",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M14 10.6665V11.9998C14 12.7071 13.719 13.3854 13.219 13.8855C12.7189 14.3856 12.0406 14.6665 11.3333 14.6665H8",stroke:"#6005FF",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("div",{className:"font-semibold text-xs"},n)),React.createElement("div",{onClick:()=>o(!1),className:"p-1 cursor-pointer"},React.createElement("svg",{width:"16",height:"16",viewBox:"0 0 16 16",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M12 4L4 12",stroke:"#111827",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"}),React.createElement("path",{d:"M4 4L12 12",stroke:"#111827",strokeWidth:"1.25",strokeLinecap:"round",strokeLinejoin:"round"})))),d?React.createElement(React.Fragment,null,React.createElement("div",{className:"w-48 h-6 rounded-md mb-6 mt-6",style:{background:"#e5e7eb"}}),React.createElement("div",{className:"w-60 h-6 rounded-md mb-6",style:{background:"#e5e7eb"}}),React.createElement("div",{className:"w-48 h-6 rounded-md mb-6",style:{background:"#e5e7eb"}})):React.createElement(React.Fragment,null,React.createElement("div",{className:"w-full flex justify-center items-center mt-4"},React.createElement(i.Image,null)),React.createElement("div",{className:"mt-4"},React.createElement("h5",{className:"text-lg font-medium m-0"},s),React.createElement("p",{className:"text-sm text-text-secondary mt-1 m-0"},c)),React.createElement("div",{className:"grid grid-cols-2 w-full gap-1 mt-4"},u.map((e,t)=>React.createElement("div",{key:t,className:"text-brand-primary-600 flex gap-1.5 items-center "+(t%2!=0&&"mr-3")},React.createElement("svg",{width:"14",height:"14",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M11.6668 3.5L5.25016 9.91667L2.3335 7",stroke:"#6005FF",strokeLinecap:"round",strokeLinejoin:"round"})),React.createElement("p",{className:"text-field-label m-0"},e)))),React.createElement("hr",{className:"w-full border-b-0 border-x-0 border-t border-solid border-t-border-subtle mt-4"}),React.createElement("div",{className:"flex justify-between items-center mt-4 gap-3"},React.createElement("div",{className:"bg-background-secondary rounded-lg flex-1 py-[10px] flex justify-center items-center",style:{fontSize:"14px",fontWeight:"600",padding:"10px 0",backgroundColor:"#F9FAFB",borderRadius:"8px",display:"flex",flex:1,justifyContent:"center",alignItems:"center"}},"$",((null===(t=m[f])||void 0===t||null===(a=t.price)||void 0===a||null===(l=a.US)||void 0===l?void 0:l.discounted)/12).toFixed(2),React.createElement("span",{className:"text-text-tertiary"},Object(r.__)("/month (billed annually)","ultimate-addons-for-gutenberg"))),React.createElement("div",{className:"flex items-center justify-between"},React.createElement("a",{href:m[f].checkout_url+"&utm_medium=spectra-editor&utm_campaign=upsell-popup-buy-now",target:"_blank",rel:"noreferrer",className:"no-underline text-text-on-color cursor-pointer"},React.createElement("button",{className:"",tag:"button",type:"button",style:{padding:"10px 14px",color:"white",fontSize:"14px",fontWeight:"600",backgroundColor:"#6005FF",borderRadius:"8px",outline:"none !important",boxShadow:"unset !important",cursor:"pointer",border:"none"}},Object(r.__)("Buy Now","ultimate-addons-for-gutenberg")))))))};var IH=Object(L.compose)(Object(n.withSelect)(e=>{const t=e("core/editor").getEditedPostAttribute("meta"),a=e("core/editor").getCurrentPostAttribute("meta");return{meta:{...a,...t},oldMeta:a}}),Object(n.withDispatch)(e=>({setMetaFieldValue:(t,a)=>e("core/editor").editPost({meta:{[a]:t}})})))(e=>{var t,a,l,i,o;const s="site-editor"!==uagb_blocks_info.is_site_editor?null===(t=window)||void 0===t||null===(a=t.wp)||void 0===a?void 0:a.editPost:null===(l=window)||void 0===l||null===(i=l.wp)||void 0===i?void 0:i.editSite;if(!s||null==s||!s.PluginSidebar||null==s||!s.PluginSidebarMoreMenuItem)return null;const c=s.PluginSidebar,u=s.PluginSidebarMoreMenuItem;if("function"!=typeof u||"function"!=typeof c)return null;const p=null===(o=Object(n.select)("core/editor").getEditedPostAttribute("meta"))||void 0===o?void 0:o._uag_custom_page_level_css;jH(p);const b=Object(j.applyFilters)("spectra.page-sidebar.before","",e);return React.createElement(React.Fragment,null,React.createElement(u,{target:"spectra-page-settings-panel",icon:BH.logo},Object(r.__)("Spectra Page Settings","ultimate-addons-for-gutenberg")),React.createElement(c,{isPinnable:!0,icon:BH.logo,name:"spectra-page-settings-panel",title:Object(r.__)("Spectra Block Settings","ultimate-addons-for-gutenberg"),className:"spectra-sidebar"},b,"site-editor"!==uagb_blocks_info.is_site_editor&&"yes"===uagb_blocks_info.enable_on_page_css_button&&React.createElement(React.Fragment,null,React.createElement(Le.PanelBody,{title:Object(r.__)("Custom CSS","ultimate-addons-for-gutenberg"),initialOpen:!0,className:"spectra-custom-css-panel"},React.createElement(FH,null))),React.createElement(DH,null)))});Object(n.select)("core/editor")&&Object(o.registerPlugin)("spectra-page-level-settings",{render:IH});var VH=function(e){const{leftPadding:t,rightPadding:a,topPadding:l,bottomPadding:i,topMarginDesktop:o,bottomMarginDesktop:n,backgroundPosition:r,backgroundSize:s,backgroundAttachment:c,backgroundImage:u,backgroundRepeat:p,backgroundType:b,desktopMarginType:d,desktopPaddingType:g}=e,m=rs(e,"columns"),y={"padding-top":ns(l,g),"padding-bottom":ns(i,g),"padding-left":ns(t,g),"padding-right":ns(a,g),"margin-top":ns(o,d),"margin-bottom":ns(n,d),...m},f=r.replace("-"," ");return"image"===b&&(y["background-image"]=u?`url(${u.url})`:null,y["background-position"]=f,y["background-attachment"]=c,y["background-repeat"]=p,y["background-size"]=s),y};function WH(){return(WH=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var qH=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,stack:o,align:n,vAlign:s,contentWidth:c,width:u,widthType:p,tag:b,columnGap:d,topMarginDesktop:g,rightMarginDesktop:m,leftMarginDesktop:y,bottomMarginDesktop:f,topMarginMobile:h,rightMarginMobile:v,leftMarginMobile:_,bottomMarginMobile:T,topMarginTablet:C,rightMarginTablet:S,leftMarginTablet:w,bottomMarginTablet:k,topPadding:P,bottomPadding:x,leftPadding:A,rightPadding:G,topPaddingTablet:M,bottomPaddingTablet:R,leftPaddingTablet:B,rightPaddingTablet:U,topPaddingMobile:E,bottomPaddingMobile:O,leftPaddingMobile:L,rightPaddingMobile:H,backgroundType:j,backgroundImage:F,backgroundVideo:z,backgroundColor:D,backgroundPosition:N,backgroundAttachment:I,backgroundRepeat:V,backgroundSize:W,backgroundVideoColor:q,backgroundVideoOpacity:Z,backgroundImageColor:$,gradientValue:Y,gradientColor1:K,gradientColor2:J,gradientLocation1:X,gradientLocation2:Q,gradientType:ee,gradientAngle:te,selectGradient:ae,overlayType:le,columns:ie,bottomType:oe,bottomColor:ne,bottomHeight:re,bottomHeightTablet:se,bottomHeightMobile:ce,bottomWidth:ue,topType:pe,topColor:be,topHeight:de,topHeightTablet:me,topHeightMobile:ye,topWidth:fe,bottomFlip:he,topFlip:ve,reverseTablet:_e,reverseMobile:Te,topContentAboveShape:Ce,bottomContentAboveShape:Se,mobileMarginType:we,tabletMarginType:ke,desktopMarginType:Pe,mobilePaddingType:xe,tabletPaddingType:Ae,desktopPaddingType:Ge,paddingLink:Me,marginLink:Re,boxShadowColor:Be,boxShadowHOffset:Ue,boxShadowVOffset:Oe,boxShadowBlur:He,boxShadowSpread:je,boxShadowPosition:ze}=t;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg")},React.createElement(Qa,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),setAttributes:a,value:ie,data:{value:ie,label:"columns"},min:0,max:6,displayUnit:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Content Width","ultimate-addons-for-gutenberg"),data:{value:n,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"",label:"None"},{value:"wide",label:"Wide"},{value:"full",label:"Full Width"}],showIcons:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Vertical Alignment","ultimate-addons-for-gutenberg"),data:{value:s,label:"vAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"top",label:"Top"},{value:"center",label:"Middle"},{value:"bottom",label:"Bottom"}],showIcons:!1}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Stack On","ultimate-addons-for-gutenberg"),data:{value:o,label:"stack"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tablet",label:Object(r.__)("Tablet & Mobile","ultimate-addons-for-gutenberg")},{value:"mobile",label:Object(r.__)("Mobile","ultimate-addons-for-gutenberg")}],showIcons:!1,help:Object(r.__)("Note: Choose on what breakpoint the columns will stack.","ultimate-addons-for-gutenberg")}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Container Width","ultimate-addons-for-gutenberg"),data:{value:c,label:"contentWidth"},className:"uagb-multi-button-alignment-control",options:[{value:"theme",label:Object(r.__)("Theme Container Width","ultimate-addons-for-gutenberg")},{value:"custom",label:Object(r.__)("Custom","ultimate-addons-for-gutenberg")}],showIcons:!1}),"custom"===c&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Inner Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:u,data:{value:u,label:"width"},min:0,max:"%"===p?100:2e3,unit:{value:p,label:"widthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Gap","ultimate-addons-for-gutenberg"),data:{value:d,label:"columnGap"},className:"uagb-multi-button-alignment-control",options:[{value:"10",label:Object(r.__)("Default","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Default (10px)","ultimate-addons-for-gutenberg")},{value:"0",label:Object(r.__)("None","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("No Gap (0px)","ultimate-addons-for-gutenberg")},{value:"5",label:Object(r.__)("S","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Narrow (5px)","ultimate-addons-for-gutenberg")},{value:"15",label:Object(r.__)("M","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Extended (15px)","ultimate-addons-for-gutenberg")},{value:"20",label:Object(r.__)("L","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Wide (20px)","ultimate-addons-for-gutenberg")},{value:"30",label:Object(r.__)("XL","ultimate-addons-for-gutenberg"),tooltip:Object(r.__)("Wider (30px)","ultimate-addons-for-gutenberg")}],showIcons:!1,help:Object(r.__)("Note: The individual Column Gap can be managed from Column Settings.","ultimate-addons-for-gutenberg")}),React.createElement(Pi,{label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:b,label:"tag"},setAttributes:a,options:[{value:"div",label:Object(r.__)("div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("header","ultimate-addons-for-gutenberg")},{value:"footer",label:Object(r.__)("footer","ultimate-addons-for-gutenberg")},{value:"main",label:Object(r.__)("main","ultimate-addons-for-gutenberg")},{value:"article",label:Object(r.__)("article","ultimate-addons-for-gutenberg")},{value:"section",label:Object(r.__)("section","ultimate-addons-for-gutenberg")},{value:"aside",label:Object(r.__)("aside","ultimate-addons-for-gutenberg")},{value:"nav",label:Object(r.__)("nav","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Reverse Columns (Tablet & Mobile)","ultimate-addons-for-gutenberg"),checked:_e,onChange:()=>a({reverseTablet:!_e})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Reverse Columns (Mobile)","ultimate-addons-for-gutenberg"),checked:Te,onChange:()=>a({reverseMobile:!Te})}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,WH({setAttributes:a,backgroundGradient:{value:Y,label:"gradientValue"},backgroundGradientColor1:{value:K,label:"gradientColor1"},gradientType:{value:ae,label:"selectGradient"},backgroundGradientColor2:{value:J,label:"gradientColor2"},backgroundGradientLocation1:{value:X,label:"gradientLocation1"},backgroundGradientLocation2:{value:Q,label:"gradientLocation2"},backgroundGradientType:{value:ee,label:"gradientType"},backgroundGradientAngle:{value:te,label:"gradientAngle"},backgroundImageColor:{value:$,label:"backgroundImageColor"},overlayType:{value:le,label:"overlayType"},gradientOverlay:{value:!0},backgroundSize:{value:W,label:"backgroundSize"},backgroundRepeat:{value:V,label:"backgroundRepeat"},backgroundAttachment:{value:I,label:"backgroundAttachment"},backgroundPosition:{value:N,label:"backgroundPosition"},backgroundImage:{value:F,label:"backgroundImage"},backgroundColor:{value:D,label:"backgroundColor"},backgroundType:{value:j,label:"backgroundType"},backgroundVideoType:{value:!0},backgroundVideo:{value:z,label:"backgroundVideo"},backgroundVideoColor:{value:q,label:"backgroundVideoColor"},backgroundVideoOpacity:{value:Z,label:"backgroundVideoOpacity"},onOpacityChange:e=>a({backgroundVideoOpacity:e})},e))),(()=>{const e=[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"tilt",label:Object(r.__)("Tilt","ultimate-addons-for-gutenberg")},{value:"mountains",label:Object(r.__)("Mountains","ultimate-addons-for-gutenberg")},{value:"wave_brush",label:Object(r.__)("Wave Brush","ultimate-addons-for-gutenberg")},{value:"waves",label:Object(r.__)("Waves","ultimate-addons-for-gutenberg")},{value:"wave_pattern",label:Object(r.__)("Waves Pattern","ultimate-addons-for-gutenberg")},{value:"triangle",label:Object(r.__)("Triangle","ultimate-addons-for-gutenberg")},{value:"drops",label:Object(r.__)("Drops","ultimate-addons-for-gutenberg")},{value:"clouds",label:Object(r.__)("Clouds","ultimate-addons-for-gutenberg")},{value:"zigzag",label:Object(r.__)("ZigZag","ultimate-addons-for-gutenberg")},{value:"pyramids",label:Object(r.__)("Pyramids","ultimate-addons-for-gutenberg")},{value:"triangle_asymmetrical",label:Object(r.__)("Triangle Asymmetrical","ultimate-addons-for-gutenberg")},{value:"tilt_opacity",label:Object(r.__)("Tilt Opacity","ultimate-addons-for-gutenberg")},{value:"fan_opacity",label:Object(r.__)("Fan Opacity","ultimate-addons-for-gutenberg")},{value:"curve",label:Object(r.__)("Curve","ultimate-addons-for-gutenberg")},{value:"curve_asymmetrical",label:Object(r.__)("Curve Asymmetrical","ultimate-addons-for-gutenberg")},{value:"curve_reverse",label:Object(r.__)("Curve Reverse","ultimate-addons-for-gutenberg")},{value:"curve_asym_reverse",label:Object(r.__)("Curve Asymmetrical Reverse","ultimate-addons-for-gutenberg")},{value:"arrow",label:Object(r.__)("Arrow","ultimate-addons-for-gutenberg")},{value:"arrow_split",label:Object(r.__)("Arrow Split","ultimate-addons-for-gutenberg")},{value:"book",label:Object(r.__)("Book","ultimate-addons-for-gutenberg")}],t=React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:pe,label:"topType"},setAttributes:a,options:e}),"none"!==pe&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:be,data:{value:be,label:"topColor"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:fe,data:{value:fe,label:"topWidth"},min:100,max:2e3,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:de,label:"topHeight"},tablet:{value:me,label:"topHeightTablet"},mobile:{value:ye,label:"topHeightMobile"}},min:0,max:500,displayUnit:!1,setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Flip","ultimate-addons-for-gutenberg"),checked:ve,onChange:()=>a({topFlip:!ve})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Bring To Front","ultimate-addons-for-gutenberg"),checked:Ce,onChange:()=>a({topContentAboveShape:!Ce})}))),l=React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Type","ultimate-addons-for-gutenberg"),data:{value:oe,label:"bottomType"},setAttributes:a,options:e}),"none"!==oe&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ne,data:{value:ne,label:"bottomColor"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:ue,data:{value:ue,label:"bottomWidth"},min:100,max:2e3,displayUnit:!1}),React.createElement(tl,{label:Object(r.__)("Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:re,label:"bottomHeight"},tablet:{value:se,label:"bottomHeightTablet"},mobile:{value:ce,label:"bottomHeightMobile"}},min:0,max:500,displayUnit:!1,setAttributes:a}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Flip","ultimate-addons-for-gutenberg"),checked:he,onChange:()=>a({bottomFlip:!he})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Bring To Front","ultimate-addons-for-gutenberg"),checked:Se,onChange:()=>a({bottomContentAboveShape:!Se})})));return React.createElement(Fe,{title:Object(r.__)("Shape Dividers","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"top",title:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{name:"bottom",title:Object(r.__)("Bottom","ultimate-addons-for-gutenberg")}],top:t,bottom:l,disableBottomSeparator:!0}))})(),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"columns",attributes:t,deviceType:l,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(vl,{blockId:i,setAttributes:a,boxShadowColor:{value:Be,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:Ue,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:Oe,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:He,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:je,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ze,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,WH({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:P,label:"topPadding"},valueRight:{value:G,label:"rightPadding"},valueBottom:{value:x,label:"bottomPadding"},valueLeft:{value:A,label:"leftPadding"},valueTopTablet:{value:M,label:"topPaddingTablet"},valueRightTablet:{value:U,label:"rightPaddingTablet"},valueBottomTablet:{value:R,label:"bottomPaddingTablet"},valueLeftTablet:{value:B,label:"leftPaddingTablet"},valueTopMobile:{value:E,label:"topPaddingMobile"},valueRightMobile:{value:H,label:"rightPaddingMobile"},valueBottomMobile:{value:O,label:"bottomPaddingMobile"},valueLeftMobile:{value:L,label:"leftPaddingMobile"},unit:{value:Ge,label:"desktopPaddingType"},mUnit:{value:xe,label:"mobilePaddingType"},tUnit:{value:Ae,label:"tabletPaddingType"},attributes:t,setAttributes:a,link:{value:Me,label:"paddingLink"}})),React.createElement(Pl,WH({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:g,label:"topMarginDesktop"},valueRight:{value:m,label:"rightMarginDesktop"},valueBottom:{value:f,label:"bottomMarginDesktop"},valueLeft:{value:y,label:"leftMarginDesktop"},valueTopTablet:{value:C,label:"topMarginTablet"},valueRightTablet:{value:S,label:"rightMarginTablet"},valueBottomTablet:{value:k,label:"bottomMarginTablet"},valueLeftTablet:{value:w,label:"leftMarginTablet"},valueTopMobile:{value:h,label:"topMarginMobile"},valueRightMobile:{value:v,label:"rightMarginMobile"},valueBottomMobile:{value:T,label:"bottomMarginMobile"},valueLeftMobile:{value:_,label:"leftMarginMobile"},unit:{value:Pe,label:"desktopMarginType"},mUnit:{value:we,label:"mobileMarginType"},tUnit:{value:ke,label:"tabletMarginType"},attributes:t,setAttributes:a,link:{value:Re,label:"marginLink"}})))),React.createElement(il,WH({},rl,{parentProps:e}))))}),ZH={triangle:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M500,98.9L0,6.1V0h1000v6.1L500,98.9z"})),wave_brush:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7\ts-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7\tc-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z M260.8,11.3\tc-0.7-1-2-0.4-4.3-0.4c-2.3,0-6.1-1.2-5.8-1.1c0.3,0.1,3.1,1.5,6,1.9C259.7,12.2,261.4,12.3,260.8,11.3z M242.4,8.6\tc0,0-2.4-0.2-5.6-0.9c-3.2-0.8-10.3-2.8-15.1-3.5c-8.2-1.1-15.8,0-15.1,0.1c0.8,0.1,9.6-0.6,17.6,1.1c3.3,0.7,9.3,2.2,12.4,2.7\tC239.9,8.7,242.4,8.6,242.4,8.6z M185.2,8.5c1.7-0.7-13.3,4.7-18.5,6.1c-2.1,0.6-6.2,1.6-10,2c-3.9,0.4-8.9,0.4-8.8,0.5\tc0,0.2,5.8,0.8,11.2,0c5.4-0.8,5.2-1.1,7.6-1.6C170.5,14.7,183.5,9.2,185.2,8.5z M199.1,6.9c0.2,0-0.8-0.4-4.8,1.1\tc-4,1.5-6.7,3.5-6.9,3.7c-0.2,0.1,3.5-1.8,6.6-3C197,7.5,199,6.9,199.1,6.9z M283,6c-0.1,0.1-1.9,1.1-4.8,2.5s-6.9,2.8-6.7,2.7\tc0.2,0,3.5-0.6,7.4-2.5C282.8,6.8,283.1,5.9,283,6z M31.3,11.6c0.1-0.2-1.9-0.2-4.5-1.2s-5.4-1.6-7.8-2C15,7.6,7.3,8.5,7.7,8.6\tC8,8.7,15.9,8.3,20.2,9.3c2.2,0.5,2.4,0.5,5.7,1.6S31.2,11.9,31.3,11.6z M73,9.2c0.4-0.1,3.5-1.6,8.4-2.6c4.9-1.1,8.9-0.5,8.9-0.8\tc0-0.3-1-0.9-6.2-0.3S72.6,9.3,73,9.2z M71.6,6.7C71.8,6.8,75,5.4,77.3,5c2.3-0.3,1.9-0.5,1.9-0.6c0-0.1-1.1-0.2-2.7,0.2\tC74.8,5.1,71.4,6.6,71.6,6.7z M93.6,4.4c0.1,0.2,3.5,0.8,5.6,1.8c2.1,1,1.8,0.6,1.9,0.5c0.1-0.1-0.8-0.8-2.4-1.3\tC97.1,4.8,93.5,4.2,93.6,4.4z M65.4,11.1c-0.1,0.3,0.3,0.5,1.9-0.2s2.6-1.3,2.2-1.2s-0.9,0.4-2.5,0.8C65.3,10.9,65.5,10.8,65.4,11.1\tz M34.5,12.4c-0.2,0,2.1,0.8,3.3,0.9c1.2,0.1,2,0.1,2-0.2c0-0.3-0.1-0.5-1.6-0.4C36.6,12.8,34.7,12.4,34.5,12.4z M152.2,21.1\tc-0.1,0.1-2.4-0.3-7.5-0.3c-5,0-13.6-2.4-17.2-3.5c-3.6-1.1,10,3.9,16.5,4.1C150.5,21.6,152.3,21,152.2,21.1z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M269.6,18c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC267.7,18.8,269.7,18,269.6,18z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M227.4,9.8c-0.2-0.1-4.5-1-9.5-1.2c-5-0.2-12.7,0.6-12.3,0.5c0.3-0.1,5.9-1.8,13.3-1.2\tS227.6,9.9,227.4,9.8z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M204.5,13.4c-0.1-0.1,2-1,3.2-1.1c1.2-0.1,2,0,2,0.3c0,0.3-0.1,0.5-1.6,0.4\tC206.4,12.9,204.6,13.5,204.5,13.4z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M201,10.6c0-0.1-4.4,1.2-6.3,2.2c-1.9,0.9-6.2,3.1-6.1,3.1c0.1,0.1,4.2-1.6,6.3-2.6\tS201,10.7,201,10.6z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M154.5,26.7c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC152.6,27.5,154.6,26.8,154.5,26.7z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M41.9,19.3c0,0,1.2-0.3,2.9-0.1c1.7,0.2,5.8,0.9,8.2,0.7c4.2-0.4,7.4-2.7,7-2.6\tc-0.4,0-4.3,2.2-8.6,1.9c-1.8-0.1-5.1-0.5-6.7-0.4S41.9,19.3,41.9,19.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M75.5,12.6c0.2,0.1,2-0.8,4.3-1.1c2.3-0.2,2.1-0.3,2.1-0.5c0-0.1-1.8-0.4-3.4,0\tC76.9,11.5,75.3,12.5,75.5,12.6z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M15.6,13.2c0-0.1,4.3,0,6.7,0.5c2.4,0.5,5,1.9,5,2c0,0.1-2.7-0.8-5.1-1.4\tC19.9,13.7,15.7,13.3,15.6,13.2z"})),tilt:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,6V0h1000v100L0,6z"})),mountains:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.66",d:"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z"})),waves:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7  c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4  c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z"})),wave_pattern:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1047.1 3.7",preserveAspectRatio:"xMidYMin slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M1047.1,0C557,0,8.9,0,0,0v1.6c0,0,0.6-1.5,2.7-0.3C3.9,2,6.1,4.1,8.3,3.5c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3C13.8,2,16,4.1,18.2,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C23.6,2,25.9,4.1,28,3.5c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C63,2,65.3,4.1,67.4,3.5\tC68.3,3.3,69,1.6,69,1.6s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tC82.7,2,85,4.1,87.1,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C92.6,2,94.8,4.1,97,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.6-0.4V0z M2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2z M2.7,1.4c0.1,0,0.1,0.1,0.1,0.1C2.8,1.4,2.8,1.4,2.7,1.4z"})),drops:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0v1.4c.6.7 1.1 1.4 1.4 2 2 3.8 2.2 6.6 1.8 10.8-.3 3.3-2.4 9.4 0 12.3 1.7 2 3.7 1.4 4.6-.9 1.4-3.8-.7-8.2-.6-12 .1-3.7 3.2-5.5 6.9-4.9 4 .6 4.8 4 4.9 7.4.1 1.8-1.1 7 0 8.5.6.8 1.6 1.2 2.4.5 1.4-1.1.1-5.4.1-6.9.1-3.7.3-8.6 4.1-10.5 5-2.5 6.2 1.6 5.4 5.6-.4 1.7-1 9.2 2.9 6.3 1.5-1.1.7-3.5.5-4.9-.4-2.4-.4-4.3 1-6.5.9-1.4 2.4-3.1 4.2-3 2.4.1 2.7 2.2 4 3.7 1.5 1.8 1.8 2.2 3 .1 1.1-1.9 1.2-2.8 3.6-3.3 1.3-.3 4.8-1.4 5.9-.5 1.5 1.1.6 2.8.4 4.3-.2 1.1-.6 4 1.8 3.4 1.7-.4-.3-4.1.6-5.6 1.3-2.2 5.8-1.4 7 .5 1.3 2.1.5 5.8.1 8.1s-1.2 5-.6 7.4c1.3 5.1 4.4.9 4.3-2.4-.1-4.4-2-8.8-.5-13 .9-2.4 4.6-6.6 7.7-4.5 2.7 1.8.5 7.8.2 10.3-.2 1.7-.8 4.6.2 6.2.9 1.4 2 1.5 2.6-.3.5-1.5-.9-4.5-1-6.1-.2-1.7-.4-3.7.2-5.4 1.8-5.6 3.5 2.4 6.3.6 1.4-.9 4.3-9.4 6.1-3.1.6 2.2-1.3 7.8.7 8.9 4.2 2.3 1.5-7.1 2.2-8 3.1-4 4.7 3.8 6.1 4.1 3.1.7 2.8-7.9 8.1-4.5 1.7 1.1 2.9 3.3 3.2 5.2.4 2.2-1 4.5-.6 6.6 1 4.3 4.4 1.5 4.4-1.7 0-2.7-3-8.3 1.4-9.1 4.4-.9 7.3 3.5 7.8 6.9.3 2-1.5 10.9 1.3 11.3 4.1.6-3.2-15.7 4.8-15.8 4.7-.1 2.8 4.1 3.9 6.6 1 2.4 2.1 1 2.3-.8.3-1.9-.9-3.2 1.3-4.3 5.9-2.9 5.9 5.4 5.5 8.5-.3 2-1.7 8.4 2 8.1 6.9-.5-2.8-16.9 4.8-18.7 4.7-1.2 6.1 3.6 6.3 7.1.1 1.7-1.2 8.1.6 9.1 3.5 2 1.9-7 2-8.4.2-4 1.2-9.6 6.4-9.8 4.7-.2 3.2 4.6 2.7 7.5-.4 2.2 1.3 8.6 3.8 4.4 1.1-1.9-.3-4.1-.3-6 0-1.7.4-3.2 1.3-4.6 1-1.6 2.9-3.5 5.1-2.9 2.5.6 2.3 4.1 4.1 4.9 1.9.8 1.6-.9 2.3-2.1 1.2-2.1 2.1-2.1 4.4-2.4 1.4-.2 3.6-1.5 4.9-.5 2.3 1.7-.7 4.4.1 6.5.6 1.5 2.1 1.7 2.8.3.7-1.4-1.1-3.4-.3-4.8 1.4-2.5 6.2-1.2 7.2 1 2.3 4.8-3.3 12-.2 16.3 3 4.1 3.9-2.8 3.8-4.8-.4-4.3-2.1-8.9 0-13.1 1.3-2.5 5.9-5.7 7.9-2.4 2 3.2-1.3 9.8-.8 13.4.5 4.4 3.5 3.3 2.7-.8-.4-1.9-2.4-10 .6-11.1 3.7-1.4 2.8 7.2 6.5.4 2.2-4.1 4.9-3.1 5.2 1.2.1 1.5-.6 3.1-.4 4.6.2 1.9 1.8 3.7 3.3 1.3 1-1.6-2.6-10.4 2.9-7.3 2.6 1.5 1.6 6.5 4.8 2.7 1.3-1.5 1.7-3.6 4-3.7 2.2-.1 4 2.3 4.8 4.1 1.3 2.9-1.5 8.4.9 10.3 4.2 3.3 3-5.5 2.7-6.9-.6-3.9 1-7.2 5.5-5 4.1 2.1 4.3 7.7 4.1 11.6 0 .8-.6 9.5 2.5 5.2 1.2-1.7-.1-7.7.1-9.6.3-2.9 1.2-5.5 4.3-6.2 4.5-1 7.7 1.5 7.4 5.8-.2 3.5-1.8 7.7-.5 11.1 1 2.7 3.6 2.8 5 .2 1.6-3.1 0-8.3-.4-11.6-.4-4.2-.2-7 1.8-10.8 0 0-.1.1-.1.2-.2.4-.3.7-.4.8v.1c-.1.2-.1.2 0 0v-.1l.4-.8c0-.1.1-.1.1-.2.2-.4.5-.8.8-1.2V0H0zM282.7 3.4z"})),clouds:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0v6.7c1.9-.8 4.7-1.4 8.5-1 9.5 1.1 11.1 6 11.1 6s2.1-.7 4.3-.2c2.1.5 2.8 2.6 2.8 2.6s.2-.5 1.4-.7c1.2-.2 1.7.2 1.7.2s0-2.1 1.9-2.8c1.9-.7 3.6.7 3.6.7s.7-2.9 3.1-4.1 4.7 0 4.7 0 1.2-.5 2.4 0 1.7 1.4 1.7 1.4h1.4c.7 0 1.2.7 1.2.7s.8-1.8 4-2.2c3.5-.4 5.3 2.4 6.2 4.4.4-.4 1-.7 1.8-.9 2.8-.7 4 .7 4 .7s1.7-5 11.1-6c9.5-1.1 12.3 3.9 12.3 3.9s1.2-4.8 5.7-5.7c4.5-.9 6.8 1.8 6.8 1.8s.6-.6 1.5-.9c.9-.2 1.9-.2 1.9-.2s5.2-6.4 12.6-3.3c7.3 3.1 4.7 9 4.7 9s1.9-.9 4 0 2.8 2.4 2.8 2.4 1.9-1.2 4.5-1.2 4.3 1.2 4.3 1.2.2-1 1.4-1.7 2.1-.7 2.1-.7-.5-3.1 2.1-5.5 5.7-1.4 5.7-1.4 1.5-2.3 4.2-1.1c2.7 1.2 1.7 5.2 1.7 5.2s.3-.1 1.3.5c.5.4.8.8.9 1.1.5-1.4 2.4-5.8 8.4-4 7.1 2.1 3.5 8.9 3.5 8.9s.8-.4 2 0 1.1 1.1 1.1 1.1 1.1-1.1 2.3-1.1 2.1.5 2.1.5 1.9-3.6 6.2-1.2 1.9 6.4 1.9 6.4 2.6-2.4 7.4 0c3.4 1.7 3.9 4.9 3.9 4.9s3.3-6.9 10.4-7.9 11.5 2.6 11.5 2.6.8 0 1.2.2c.4.2.9.9.9.9s4.4-3.1 8.3.2c1.9 1.7 1.5 5 1.5 5s.3-1.1 1.6-1.4c1.3-.3 2.3.2 2.3.2s-.1-1.2.5-1.9 1.9-.9 1.9-.9-4.7-9.3 4.4-13.4c5.6-2.5 9.2.9 9.2.9s5-6.2 15.9-6.2 16.1 8.1 16.1 8.1.7-.2 1.6-.4V0H0z"})),zigzag:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1800 5.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M5.4.4l5.4 5.3L16.5.4l5.4 5.3L27.5.4 33 5.7 38.6.4l5.5 5.4h.1L49.9.4l5.4 5.3L60.9.4l5.5 5.3L72 .4l5.5 5.3L83.1.4l5.4 5.3L94.1.4l5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3L161 .4l5.4 5.3L172 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3L261 .4l5.4 5.3L272 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3L361 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3L461 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1L550 .4l5.4 5.3L561 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L650 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L750 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2L850 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4V0H-.2v5.8z"})),pyramids:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9"})),triangle_asymmetrical:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M738,99l262-93V0H0v5.6L738,99z"})),tilt_opacity:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 2600 131.1",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0L2600 0 2600 69.1 0 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.5",d:"M0 0L2600 0 2600 69.1 0 69.1z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.25",d:"M2600 0L0 0 0 130.1 2600 69.1z"})),fan_opacity:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 283.5 19.6",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 18.8 141.8 4.1 283.5 18.8 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 12.6 141.8 4 283.5 12.6 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 6.4 141.8 4 283.5 6.4 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0L0 1.2 141.8 4 283.5 1.2 283.5 0z"})),curve:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M1000,4.3V0H0v4.3C0.9,23.1,126.7,99.2,500,100S1000,22.7,1000,4.3z"})),curve_asymmetrical:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,0c0,0,0,6,0,6.7c0,18,240.2,93.6,615.2,92.6C989.8,98.5,1000,25,1000,6.7c0-0.7,0-6.7,0-6.7H0z"})),arrow:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 700 10",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M350,10L340,0h20L350,10z"})),arrow_split:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 20",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,0v3c0,0,393.8,0,483.4,0c9.2,0,16.6,7.4,16.6,16.6c0-9.1,7.4-16.6,16.6-16.6C606.2,3,1000,3,1000,3V0H0z"})),book:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M194,99c186.7,0.7,305-78.3,306-97.2c1,18.9,119.3,97.9,306,97.2c114.3-0.3,194,0.3,194,0.3s0-91.7,0-100c0,0,0,0,0-0 L0,0v99.3C0,99.3,79.7,98.7,194,99z"})),curve_reverse:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M937,129.8V-0.1H0v129.9C0,62.6,209.6,8.2,468.4,8.2S936.9,62.6,937,129.8z"})),curve_asym_reverse:Object(B.createElement)("svg",{xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M937.5,124.3V0H0v124.3C0,100.8,227.4,2.9,578.9,4.1C926.9,0.3,937.5,100.4,937.5,124.3z"}))};const $H=["uagb/column"];var YH,KH=Object(B.memo)(e=>{const{attributes:t,isSelected:a,className:l,deviceType:i}=e,{stack:o,align:n,vAlign:r,tag:s,columnGap:c,backgroundType:u,backgroundVideo:p,columns:b,bottomType:d,topType:g,bottomFlip:m,topFlip:y,reverseTablet:f,reverseMobile:h,topContentAboveShape:v,bottomContentAboveShape:_,contentWidth:T,block_id:C}=t,S=Object(B.useMemo)(()=>{const e=[];for(let t=0;t<b;t++)e.push(["uagb/column",{id:t+1}]);return e},[b]),w="none"!==g&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-top",{"uagb-columns__shape-flip":!0===y},{"uagb-columns__shape-above-content":!0===v})},ZH[g]),k="none"!==d&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-bottom",{"uagb-columns__shape-flip":!0===m},{"uagb-columns__shape-above-content":!0===_}),"data-negative":"false"},ZH[d]),P=f?"uagb-columns__reverse-tablet":"",x=h?"uagb-columns__reverse-mobile":"",A=""+s,G=a?"active":"not-active",M=void 0!==u?"uagb-columns__background-"+u:"",R=void 0!==r?"uagb-columns__valign-"+r:"",U=void 0!==n?"align"+n:"";return React.createElement(A,{className:Be()(l,"uagb-columns__wrap",""+M,"uagb-columns__edit-"+G,"uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-columns__stack-"+o,""+R,"uagb-columns__gap-"+c,""+U,P,x,"uagb-block-"+C,"uagb-columns__max_width-"+T)},React.createElement("div",{className:"uagb-columns__overlay"}),w,"video"===u&&React.createElement("div",{className:"uagb-columns__video-wrap"},p&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:p.url,type:"video/mp4"}))),React.createElement("div",{className:Be()("uagb-columns__inner-wrap","uagb-columns__columns-"+b)},React.createElement(ge.InnerBlocks,{template:S,templateLock:"all",allowedBlocks:$H})),k)}),JH=a(151),XH=0,QH={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},ej={};ej.locals=JH.a.locals||{},ej.use=function(){return XH++||(YH=ke()(JH.a,QH)),ej},ej.unuse=function(){XH>0&&!--XH&&(YH(),YH=null)};var tj=ej,aj=Object(L.compose)(vs,Le.withNotices,fe)(e=>{const{attributes:t,attributes:{topMargin:a,bottomMargin:l,topMarginDesktop:i,bottomMarginDesktop:o,backgroundOpacity:s,align:c,vAlign:u,backgroundImageColor:p,backgroundType:b,gradientOverlayColor1:d,gradientOverlayColor2:g,overlayType:m,gradientOverlayAngle:y,gradientOverlayLocation1:f,gradientOverlayPosition:h,gradientOverlayLocation2:v,gradientOverlayType:_,backgroundVideoOpacity:T,backgroundVideoColor:C,borderStyle:S,borderWidth:w,borderRadius:k,borderColor:P,borderHoverColor:x,UAGHideDesktop:A,UAGHideTab:G,UAGHideMob:M},setAttributes:R,isSelected:U,clientId:E,deviceType:O,name:L}=e,{innerBlocks:H,blockType:j,variations:F,hasInnerBlocks:z,defaultVariation:D}=Object(n.useSelect)(e=>{const{getBlocks:t}=e("core/block-editor"),{getBlockType:a,getBlockVariations:l,getDefaultBlockVariation:i}=e("core/blocks");return{innerBlocks:t(E),hasInnerBlocks:e("core/block-editor").getBlocks(E).length>0,blockType:a(L),defaultVariation:void 0===i?null:i(L),variations:void 0===l?null:l(L)}}),{replaceInnerBlocks:N}=Object(n.useDispatch)("core/block-editor");Object(B.useLayoutEffect)(()=>(tj.use(),()=>{tj.unuse()}),[]),Object(B.useEffect)(()=>{if("middle"===u&&R({vAlign:"center"}),void 0===c&&R({align:""}),void 0===u&&R({vAlign:""}),101!==s&&"image"===b&&"gradient"===m){const e=uE(pl(d),s),t=uE(pl(g),s);let a;a="linear"===_?`linear-gradient(${y}deg, ${e} ${f}%, ${t} ${v}%)`:`radial-gradient( at ${h}, ${e} ${f}%, ${t} ${v}%)`,R({gradientValue:a})}if(a&&(i||R({topMarginDesktop:a})),l&&(o||R({bottomMarginDesktop:l})),"image"===b&&101!==s){const e=uE(pl(p),s);R(t=>({...t,backgroundImageColor:e,backgroundOpacity:101}))}if("video"===b&&101!==T){const e=uE(pl(C),T);R({backgroundVideoColor:e})}(w||k||P||x||S)&&ue("columns",{label:"borderWidth",value:w},{label:"borderRadius",value:k},{label:"borderColor",value:P},{label:"borderHoverColor",value:x},{label:"borderStyle",value:S},R,t)},[]),Object(B.useEffect)(()=>{Bs()},[O]);const I=Object(B.useMemo)(()=>function(e,t,a){const l=a.toLowerCase(),{block_id:i,backgroundType:o,backgroundVideoColor:n,backgroundImageColor:r,backgroundOpacity:s,backgroundColor:c,backgroundVideoOpacity:u,contentWidth:p,width:b,widthType:d,columnGap:g,topColor:m,topHeight:y,topHeightTablet:f,topHeightMobile:h,topWidth:v,bottomColor:_,bottomHeight:T,bottomHeightTablet:C,bottomHeightMobile:S,bottomWidth:w,topPaddingTablet:k,bottomPaddingTablet:P,leftPaddingTablet:x,rightPaddingTablet:A,topPaddingMobile:G,bottomPaddingMobile:M,leftPaddingMobile:R,rightPaddingMobile:B,topMarginMobile:U,bottomMarginMobile:E,topMarginTablet:O,bottomMarginTablet:L,topDividerOpacity:H,bottomDividerOpacity:j,mobileMarginType:F,tabletMarginType:z,mobilePaddingType:D,tabletPaddingType:N,boxShadowColor:I,boxShadowHOffset:V,boxShadowVOffset:W,boxShadowBlur:q,boxShadowSpread:Z,boxShadowPosition:$,gradientValue:Y,selectGradient:K,gradientType:J,columnsBorderHColor:X,overlayType:Q,gradientColor1:ee,gradientColor2:te,gradientLocation1:le,gradientLocation2:ie,gradientAngle:oe}=e;let ne="100%";"custom"===p&&""!==b&&(ne=ns(b,d));let re=$;"outset"===$&&(re="");let se={},ce={},ue=.5;void 0!==u&&(ue=1<u?(100-u)/100:1-u);const pe=rs(e,"columns"),be=rs(e,"columns","tablet"),de=rs(e,"columns","mobile"),ge={".uagb-columns__wrap":VH(e)," .uagb-columns__video-wrap":{opacity:ue}," > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout":{"max-width":ne},' > .uagb-columns__inner-wrap > .block-editor-inner-blocks > .block-editor-block-list__layout > [data-type="uagb/column"]':{padding:ns(g,"px")}," .uagb-columns__shape-top svg":{width:"calc( "+v+"% + 1.3px )",height:ns(y,"px")}," .uagb-columns__shape-top .uagb-columns__shape-fill":{fill:uE(pl(m),void 0!==H?H:100)}," .uagb-columns__shape-bottom svg":{width:"calc( "+w+"% + 1.3px )",height:ns(T,"px")}," .uagb-columns__shape-bottom .uagb-columns__shape-fill":{fill:uE(pl(_),void 0!==j?j:100)},".wp-block-uagb-columns":{"box-shadow":ns(V,"px")+" "+ns(W,"px")+" "+ns(q,"px")+" "+ns(Z,"px")+" "+I+" "+re},".uagb-columns__wrap:hover":{"border-color":X}," > .uagb-columns__overlay":{}};if("video"===o)"color"===Q?ge[" > .uagb-columns__overlay"]={"background-color":n}:ge[" > .uagb-columns__overlay"]["background-image"]=Y;else if("image"===o)"color"===Q?ge[" > .uagb-columns__overlay"]={opacity:void 0!==s&&0!==s?s/100:"","background-color":r}:ge[" > .uagb-columns__overlay"]["background-image"]=Y;else if("color"===o)ge[" > .uagb-columns__overlay"]={opacity:void 0!==s&&0!==s?s/100:"","background-color":c};else if("gradient"===o){let e;switch(K){case"basic":e=Y;break;case"advanced":switch(J){case"linear":e=`linear-gradient(${oe}deg, ${ee} ${le}%, ${te} ${ie}%)`;break;case"radial":e=`radial-gradient( at center center, ${ee} ${le}%, ${te} ${ie}%)`;break;default:e=""}break;default:e=""}ge[" > .uagb-columns__overlay"]["background-image"]=e,ge[" > .uagb-columns__overlay"].opacity=s&&0!==s?s/100:""}ge[" > .uagb-columns__overlay"]["border-radius"]=`${pe["border-top-left-radius"]} ${pe["border-top-right-radius"]} ${pe["border-bottom-right-radius"]} ${pe["border-bottom-left-radius"]}`,se={".uagb-columns__wrap":{"padding-top":ns(k,N),"padding-bottom":ns(P,N),"padding-left":ns(x,N),"padding-right":ns(A,N),"margin-top":ns(O,z),"margin-bottom":ns(L,z),...be}," .uagb-columns__shape-top svg":{height:ns(f,"px")}," .uagb-columns__shape-bottom svg":{height:ns(C,"px")}},ce={".uagb-columns__wrap":{"padding-top":ns(G,D),"padding-bottom":ns(M,D),"padding-left":ns(R,D),"padding-right":ns(B,D),"margin-top":ns(U,F),"margin-bottom":ns(E,F),...de}," .uagb-columns__shape-top svg":{height:ns(h,"px")}," .uagb-columns__shape-bottom svg":{height:ns(S,"px")}};let me="";const ye=".editor-styles-wrapper .uagb-block-"+i;return me=ae(ge,ye),"tablet"!==l&&"mobile"!==l||(me+=ae(se,""+ye,!0,"tablet"),"mobile"===l&&(me+=ae(ce,""+ye,!0,"mobile"))),me}(t,0,O),[t,O]);Object(B.useEffect)(()=>{he(e)},[A,G,M,O]);const V=e=>e.map(e=>{let[t,a,l=[]]=e;return Object(be.createBlock)(t,a,V(l))});return z?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:I}),U&&React.createElement(qH,e),React.createElement(KH,e)):React.createElement("div",{className:"uagb-columns-variation-picker"},React.createElement(ge.__experimentalBlockVariationPicker,{icon:"",label:Object(r.__)("Advanced Columns","ultimate-addons-for-gutenberg"),instructions:Object(r.__)("Select a variation to start with.","ultimate-addons-for-gutenberg"),variations:F,onSelect:e=>function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:D;e.attributes&&R(e.attributes),e.innerBlocks&&N(E,V(e.innerBlocks))}(e)}))}),lj={triangle:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M500,98.9L0,6.1V0h1000v6.1L500,98.9z"})),wave_brush:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M283.5,9.7c0,0-7.3,4.3-14,4.6c-6.8,0.3-12.6,0-20.9-1.5c-11.3-2-33.1-10.1-44.7-5.7\ts-12.1,4.6-18,7.4c-6.6,3.2-20,9.6-36.6,9.3C131.6,23.5,99.5,7.2,86.3,8c-1.4,0.1-6.6,0.8-10.5,2c-3.8,1.2-9.4,3.8-17,4.7\tc-3.2,0.4-8.3,1.1-14.2,0.9c-1.5-0.1-6.3-0.4-12-1.6c-5.7-1.2-11-3.1-15.8-3.7C6.5,9.2,0,10.8,0,10.8V0h283.5V9.7z M260.8,11.3\tc-0.7-1-2-0.4-4.3-0.4c-2.3,0-6.1-1.2-5.8-1.1c0.3,0.1,3.1,1.5,6,1.9C259.7,12.2,261.4,12.3,260.8,11.3z M242.4,8.6\tc0,0-2.4-0.2-5.6-0.9c-3.2-0.8-10.3-2.8-15.1-3.5c-8.2-1.1-15.8,0-15.1,0.1c0.8,0.1,9.6-0.6,17.6,1.1c3.3,0.7,9.3,2.2,12.4,2.7\tC239.9,8.7,242.4,8.6,242.4,8.6z M185.2,8.5c1.7-0.7-13.3,4.7-18.5,6.1c-2.1,0.6-6.2,1.6-10,2c-3.9,0.4-8.9,0.4-8.8,0.5\tc0,0.2,5.8,0.8,11.2,0c5.4-0.8,5.2-1.1,7.6-1.6C170.5,14.7,183.5,9.2,185.2,8.5z M199.1,6.9c0.2,0-0.8-0.4-4.8,1.1\tc-4,1.5-6.7,3.5-6.9,3.7c-0.2,0.1,3.5-1.8,6.6-3C197,7.5,199,6.9,199.1,6.9z M283,6c-0.1,0.1-1.9,1.1-4.8,2.5s-6.9,2.8-6.7,2.7\tc0.2,0,3.5-0.6,7.4-2.5C282.8,6.8,283.1,5.9,283,6z M31.3,11.6c0.1-0.2-1.9-0.2-4.5-1.2s-5.4-1.6-7.8-2C15,7.6,7.3,8.5,7.7,8.6\tC8,8.7,15.9,8.3,20.2,9.3c2.2,0.5,2.4,0.5,5.7,1.6S31.2,11.9,31.3,11.6z M73,9.2c0.4-0.1,3.5-1.6,8.4-2.6c4.9-1.1,8.9-0.5,8.9-0.8\tc0-0.3-1-0.9-6.2-0.3S72.6,9.3,73,9.2z M71.6,6.7C71.8,6.8,75,5.4,77.3,5c2.3-0.3,1.9-0.5,1.9-0.6c0-0.1-1.1-0.2-2.7,0.2\tC74.8,5.1,71.4,6.6,71.6,6.7z M93.6,4.4c0.1,0.2,3.5,0.8,5.6,1.8c2.1,1,1.8,0.6,1.9,0.5c0.1-0.1-0.8-0.8-2.4-1.3\tC97.1,4.8,93.5,4.2,93.6,4.4z M65.4,11.1c-0.1,0.3,0.3,0.5,1.9-0.2s2.6-1.3,2.2-1.2s-0.9,0.4-2.5,0.8C65.3,10.9,65.5,10.8,65.4,11.1\tz M34.5,12.4c-0.2,0,2.1,0.8,3.3,0.9c1.2,0.1,2,0.1,2-0.2c0-0.3-0.1-0.5-1.6-0.4C36.6,12.8,34.7,12.4,34.5,12.4z M152.2,21.1\tc-0.1,0.1-2.4-0.3-7.5-0.3c-5,0-13.6-2.4-17.2-3.5c-3.6-1.1,10,3.9,16.5,4.1C150.5,21.6,152.3,21,152.2,21.1z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M269.6,18c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC267.7,18.8,269.7,18,269.6,18z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M227.4,9.8c-0.2-0.1-4.5-1-9.5-1.2c-5-0.2-12.7,0.6-12.3,0.5c0.3-0.1,5.9-1.8,13.3-1.2\tS227.6,9.9,227.4,9.8z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M204.5,13.4c-0.1-0.1,2-1,3.2-1.1c1.2-0.1,2,0,2,0.3c0,0.3-0.1,0.5-1.6,0.4\tC206.4,12.9,204.6,13.5,204.5,13.4z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M201,10.6c0-0.1-4.4,1.2-6.3,2.2c-1.9,0.9-6.2,3.1-6.1,3.1c0.1,0.1,4.2-1.6,6.3-2.6\tS201,10.7,201,10.6z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M154.5,26.7c-0.1-0.1-4.6,0.3-7.2,0c-7.3-0.7-17-3.2-16.6-2.9c0.4,0.3,13.7,3.1,17,3.3\tC152.6,27.5,154.6,26.8,154.5,26.7z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M41.9,19.3c0,0,1.2-0.3,2.9-0.1c1.7,0.2,5.8,0.9,8.2,0.7c4.2-0.4,7.4-2.7,7-2.6\tc-0.4,0-4.3,2.2-8.6,1.9c-1.8-0.1-5.1-0.5-6.7-0.4S41.9,19.3,41.9,19.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M75.5,12.6c0.2,0.1,2-0.8,4.3-1.1c2.3-0.2,2.1-0.3,2.1-0.5c0-0.1-1.8-0.4-3.4,0\tC76.9,11.5,75.3,12.5,75.5,12.6z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M15.6,13.2c0-0.1,4.3,0,6.7,0.5c2.4,0.5,5,1.9,5,2c0,0.1-2.7-0.8-5.1-1.4\tC19.9,13.7,15.7,13.3,15.6,13.2z"})),tilt:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,6V0h1000v100L0,6z"})),mountains:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M473,67.3c-203.9,88.3-263.1-34-320.3,0C66,119.1,0,59.7,0,59.7V0h1000v59.7 c0,0-62.1,26.1-94.9,29.3c-32.8,3.3-62.8-12.3-75.8-22.1C806,49.6,745.3,8.7,694.9,4.7S492.4,59,473,67.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.66",d:"M734,67.3c-45.5,0-77.2-23.2-129.1-39.1c-28.6-8.7-150.3-10.1-254,39.1 s-91.7-34.4-149.2,0C115.7,118.3,0,39.8,0,39.8V0h1000v36.5c0,0-28.2-18.5-92.1-18.5C810.2,18.1,775.7,67.3,734,67.3z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M766.1,28.9c-200-57.5-266,65.5-395.1,19.5C242,1.8,242,5.4,184.8,20.6C128,35.8,132.3,44.9,89.9,52.5C28.6,63.7,0,0,0,0 h1000c0,0-9.9,40.9-83.6,48.1S829.6,47,766.1,28.9z"})),waves:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M421.9,6.5c22.6-2.5,51.5,0.4,75.5,5.3c23.6,4.9,70.9,23.5,100.5,35.7c75.8,32.2,133.7,44.5,192.6,49.7  c23.6,2.1,48.7,3.5,103.4-2.5c54.7-6,106.2-25.6,106.2-25.6V0H0v30.3c0,0,72,32.6,158.4,30.5c39.2-0.7,92.8-6.7,134-22.4  c21.2-8.1,52.2-18.2,79.7-24.2C399.3,7.9,411.6,7.5,421.9,6.5z"})),wave_pattern:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1047.1 3.7",preserveAspectRatio:"xMidYMin slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M1047.1,0C557,0,8.9,0,0,0v1.6c0,0,0.6-1.5,2.7-0.3C3.9,2,6.1,4.1,8.3,3.5c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3C13.8,2,16,4.1,18.2,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C23.6,2,25.9,4.1,28,3.5c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C63,2,65.3,4.1,67.4,3.5\tC68.3,3.3,69,1.6,69,1.6s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tC82.7,2,85,4.1,87.1,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3C92.6,2,94.8,4.1,97,3.5c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\ts0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9\tc0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9c0,0,0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2\tc0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3c1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.7-0.3\tc1.2,0.7,3.5,2.8,5.6,2.2c0.9-0.2,1.5-1.9,1.5-1.9s0.6-1.5,2.6-0.4V0z M2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2C2.5,1.2,2.5,1.2,2.5,1.2z M2.7,1.4c0.1,0,0.1,0.1,0.1,0.1C2.8,1.4,2.8,1.4,2.7,1.4z"})),drops:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0v1.4c.6.7 1.1 1.4 1.4 2 2 3.8 2.2 6.6 1.8 10.8-.3 3.3-2.4 9.4 0 12.3 1.7 2 3.7 1.4 4.6-.9 1.4-3.8-.7-8.2-.6-12 .1-3.7 3.2-5.5 6.9-4.9 4 .6 4.8 4 4.9 7.4.1 1.8-1.1 7 0 8.5.6.8 1.6 1.2 2.4.5 1.4-1.1.1-5.4.1-6.9.1-3.7.3-8.6 4.1-10.5 5-2.5 6.2 1.6 5.4 5.6-.4 1.7-1 9.2 2.9 6.3 1.5-1.1.7-3.5.5-4.9-.4-2.4-.4-4.3 1-6.5.9-1.4 2.4-3.1 4.2-3 2.4.1 2.7 2.2 4 3.7 1.5 1.8 1.8 2.2 3 .1 1.1-1.9 1.2-2.8 3.6-3.3 1.3-.3 4.8-1.4 5.9-.5 1.5 1.1.6 2.8.4 4.3-.2 1.1-.6 4 1.8 3.4 1.7-.4-.3-4.1.6-5.6 1.3-2.2 5.8-1.4 7 .5 1.3 2.1.5 5.8.1 8.1s-1.2 5-.6 7.4c1.3 5.1 4.4.9 4.3-2.4-.1-4.4-2-8.8-.5-13 .9-2.4 4.6-6.6 7.7-4.5 2.7 1.8.5 7.8.2 10.3-.2 1.7-.8 4.6.2 6.2.9 1.4 2 1.5 2.6-.3.5-1.5-.9-4.5-1-6.1-.2-1.7-.4-3.7.2-5.4 1.8-5.6 3.5 2.4 6.3.6 1.4-.9 4.3-9.4 6.1-3.1.6 2.2-1.3 7.8.7 8.9 4.2 2.3 1.5-7.1 2.2-8 3.1-4 4.7 3.8 6.1 4.1 3.1.7 2.8-7.9 8.1-4.5 1.7 1.1 2.9 3.3 3.2 5.2.4 2.2-1 4.5-.6 6.6 1 4.3 4.4 1.5 4.4-1.7 0-2.7-3-8.3 1.4-9.1 4.4-.9 7.3 3.5 7.8 6.9.3 2-1.5 10.9 1.3 11.3 4.1.6-3.2-15.7 4.8-15.8 4.7-.1 2.8 4.1 3.9 6.6 1 2.4 2.1 1 2.3-.8.3-1.9-.9-3.2 1.3-4.3 5.9-2.9 5.9 5.4 5.5 8.5-.3 2-1.7 8.4 2 8.1 6.9-.5-2.8-16.9 4.8-18.7 4.7-1.2 6.1 3.6 6.3 7.1.1 1.7-1.2 8.1.6 9.1 3.5 2 1.9-7 2-8.4.2-4 1.2-9.6 6.4-9.8 4.7-.2 3.2 4.6 2.7 7.5-.4 2.2 1.3 8.6 3.8 4.4 1.1-1.9-.3-4.1-.3-6 0-1.7.4-3.2 1.3-4.6 1-1.6 2.9-3.5 5.1-2.9 2.5.6 2.3 4.1 4.1 4.9 1.9.8 1.6-.9 2.3-2.1 1.2-2.1 2.1-2.1 4.4-2.4 1.4-.2 3.6-1.5 4.9-.5 2.3 1.7-.7 4.4.1 6.5.6 1.5 2.1 1.7 2.8.3.7-1.4-1.1-3.4-.3-4.8 1.4-2.5 6.2-1.2 7.2 1 2.3 4.8-3.3 12-.2 16.3 3 4.1 3.9-2.8 3.8-4.8-.4-4.3-2.1-8.9 0-13.1 1.3-2.5 5.9-5.7 7.9-2.4 2 3.2-1.3 9.8-.8 13.4.5 4.4 3.5 3.3 2.7-.8-.4-1.9-2.4-10 .6-11.1 3.7-1.4 2.8 7.2 6.5.4 2.2-4.1 4.9-3.1 5.2 1.2.1 1.5-.6 3.1-.4 4.6.2 1.9 1.8 3.7 3.3 1.3 1-1.6-2.6-10.4 2.9-7.3 2.6 1.5 1.6 6.5 4.8 2.7 1.3-1.5 1.7-3.6 4-3.7 2.2-.1 4 2.3 4.8 4.1 1.3 2.9-1.5 8.4.9 10.3 4.2 3.3 3-5.5 2.7-6.9-.6-3.9 1-7.2 5.5-5 4.1 2.1 4.3 7.7 4.1 11.6 0 .8-.6 9.5 2.5 5.2 1.2-1.7-.1-7.7.1-9.6.3-2.9 1.2-5.5 4.3-6.2 4.5-1 7.7 1.5 7.4 5.8-.2 3.5-1.8 7.7-.5 11.1 1 2.7 3.6 2.8 5 .2 1.6-3.1 0-8.3-.4-11.6-.4-4.2-.2-7 1.8-10.8 0 0-.1.1-.1.2-.2.4-.3.7-.4.8v.1c-.1.2-.1.2 0 0v-.1l.4-.8c0-.1.1-.1.1-.2.2-.4.5-.8.8-1.2V0H0zM282.7 3.4z"})),clouds:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 283.5 27.8",preserveAspectRatio:"xMidYMax slice"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0v6.7c1.9-.8 4.7-1.4 8.5-1 9.5 1.1 11.1 6 11.1 6s2.1-.7 4.3-.2c2.1.5 2.8 2.6 2.8 2.6s.2-.5 1.4-.7c1.2-.2 1.7.2 1.7.2s0-2.1 1.9-2.8c1.9-.7 3.6.7 3.6.7s.7-2.9 3.1-4.1 4.7 0 4.7 0 1.2-.5 2.4 0 1.7 1.4 1.7 1.4h1.4c.7 0 1.2.7 1.2.7s.8-1.8 4-2.2c3.5-.4 5.3 2.4 6.2 4.4.4-.4 1-.7 1.8-.9 2.8-.7 4 .7 4 .7s1.7-5 11.1-6c9.5-1.1 12.3 3.9 12.3 3.9s1.2-4.8 5.7-5.7c4.5-.9 6.8 1.8 6.8 1.8s.6-.6 1.5-.9c.9-.2 1.9-.2 1.9-.2s5.2-6.4 12.6-3.3c7.3 3.1 4.7 9 4.7 9s1.9-.9 4 0 2.8 2.4 2.8 2.4 1.9-1.2 4.5-1.2 4.3 1.2 4.3 1.2.2-1 1.4-1.7 2.1-.7 2.1-.7-.5-3.1 2.1-5.5 5.7-1.4 5.7-1.4 1.5-2.3 4.2-1.1c2.7 1.2 1.7 5.2 1.7 5.2s.3-.1 1.3.5c.5.4.8.8.9 1.1.5-1.4 2.4-5.8 8.4-4 7.1 2.1 3.5 8.9 3.5 8.9s.8-.4 2 0 1.1 1.1 1.1 1.1 1.1-1.1 2.3-1.1 2.1.5 2.1.5 1.9-3.6 6.2-1.2 1.9 6.4 1.9 6.4 2.6-2.4 7.4 0c3.4 1.7 3.9 4.9 3.9 4.9s3.3-6.9 10.4-7.9 11.5 2.6 11.5 2.6.8 0 1.2.2c.4.2.9.9.9.9s4.4-3.1 8.3.2c1.9 1.7 1.5 5 1.5 5s.3-1.1 1.6-1.4c1.3-.3 2.3.2 2.3.2s-.1-1.2.5-1.9 1.9-.9 1.9-.9-4.7-9.3 4.4-13.4c5.6-2.5 9.2.9 9.2.9s5-6.2 15.9-6.2 16.1 8.1 16.1 8.1.7-.2 1.6-.4V0H0z"})),zigzag:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1800 5.8",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M5.4.4l5.4 5.3L16.5.4l5.4 5.3L27.5.4 33 5.7 38.6.4l5.5 5.4h.1L49.9.4l5.4 5.3L60.9.4l5.5 5.3L72 .4l5.5 5.3L83.1.4l5.4 5.3L94.1.4l5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3L161 .4l5.4 5.3L172 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3L261 .4l5.4 5.3L272 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3L361 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3L461 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1L550 .4l5.4 5.3L561 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L650 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2L750 .4l5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2L850 .4l5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.4h.2l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.7-5.4 5.4 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.5 5.4h.1l5.6-5.4 5.5 5.3 5.6-5.3 5.5 5.3 5.6-5.3 5.4 5.3 5.7-5.3 5.4 5.3 5.6-5.3 5.5 5.4V0H-.2v5.8z"})),pyramids:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M761.9,44.1L643.1,27.2L333.8,98L0,3.8V0l1000,0v3.9"})),triangle_asymmetrical:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M738,99l262-93V0H0v5.6L738,99z"})),tilt_opacity:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 2600 131.1",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0L2600 0 2600 69.1 0 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.5",d:"M0 0L2600 0 2600 69.1 0 69.1z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.25",d:"M2600 0L0 0 0 130.1 2600 69.1z"})),fan_opacity:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 283.5 19.6",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 18.8 141.8 4.1 283.5 18.8 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 12.6 141.8 4 283.5 12.6 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",opacity:"0.33",d:"M0 0L0 6.4 141.8 4 283.5 6.4 283.5 0z"}),Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0 0L0 1.2 141.8 4 283.5 1.2 283.5 0z"})),curve:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M1000,4.3V0H0v4.3C0.9,23.1,126.7,99.2,500,100S1000,22.7,1000,4.3z"})),curve_asymmetrical:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,0c0,0,0,6,0,6.7c0,18,240.2,93.6,615.2,92.6C989.8,98.5,1000,25,1000,6.7c0-0.7,0-6.7,0-6.7H0z"})),arrow:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 700 10",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M350,10L340,0h20L350,10z"})),arrow_split:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 20",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M0,0v3c0,0,393.8,0,483.4,0c9.2,0,16.6,7.4,16.6,16.6c0-9.1,7.4-16.6,16.6-16.6C606.2,3,1000,3,1000,3V0H0z"})),book:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1000 100",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M194,99c186.7,0.7,305-78.3,306-97.2c1,18.9,119.3,97.9,306,97.2c114.3-0.3,194,0.3,194,0.3s0-91.7,0-100c0,0,0,0,0-0 L0,0v99.3C0,99.3,79.7,98.7,194,99z"})),curve_reverse:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M937,129.8V-0.1H0v129.9C0,62.6,209.6,8.2,468.4,8.2S936.9,62.6,937,129.8z"})),curve_asym_reverse:Object(B.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 937.5 120",preserveAspectRatio:"none"},Object(B.createElement)("path",{className:"uagb-columns__shape-fill",d:"M937.5,124.3V0H0v124.3C0,100.8,227.4,2.9,578.9,4.1C926.9,0.3,937.5,100.4,937.5,124.3z"}))};const ij={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},columns:{type:"number",default:2},align:{type:"string"},vAlign:{type:"string"},stack:{type:"string",default:"mobile"},columnGap:{type:"string",default:"10"},topPadding:{type:"number",default:20},bottomPadding:{type:"number",default:20},leftPadding:{type:"number",default:20},rightPadding:{type:"number",default:20},topPaddingTablet:{type:"number"},bottomPaddingTablet:{type:"number"},leftPaddingTablet:{type:"number"},rightPaddingTablet:{type:"number"},topPaddingMobile:{type:"number"},bottomPaddingMobile:{type:"number"},leftPaddingMobile:{type:"number"},rightPaddingMobile:{type:"number"},topMargin:{type:"number",default:0},bottomMargin:{type:"number",default:0},topMarginMobile:{type:"number"},bottomMarginMobile:{type:"number"},topMarginTablet:{type:"number"},bottomMarginTablet:{type:"number"},contentWidth:{type:"string",default:"theme"},width:{type:"number",default:900},widthType:{type:"string",default:"px"},tag:{type:"string",default:"section"},backgroundType:{type:"string"},backgroundImage:{type:"object"},backgroundPosition:{type:"string",default:"center-center"},backgroundSize:{type:"string",default:"cover"},backgroundRepeat:{type:"string",default:"no-repeat"},backgroundAttachment:{type:"string",default:"scroll"},backgroundVideo:{type:"object"},backgroundColor:{type:"string"},gradientColor1:{type:"string"},gradientColor2:{type:"string"},gradientType:{type:"string",default:"linear"},gradientLocation1:{type:"number",default:0},gradientLocation2:{type:"number",default:100},gradientAngle:{type:"number",default:0},gradientPosition:{type:"string",default:"center center"},backgroundOpacity:{type:"number"},backgroundVideoOpacity:{type:"number",default:50},backgroundVideoColor:{type:"string"},backgroundImageColor:{type:"string"},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string"},bottomType:{type:"string",default:"none"},bottomColor:{type:"string"},bottomHeight:{type:"number"},bottomHeightTablet:{type:"number"},bottomHeightMobile:{type:"number"},bottomWidth:{type:"number"},topType:{type:"string",default:"none"},topColor:{type:"string"},topHeight:{type:"number"},topHeightTablet:{type:"number"},topHeightMobile:{type:"number"},topWidth:{type:"number"},topFlip:{type:"boolean",default:!1},bottomFlip:{type:"boolean",default:!1},reverseTablet:{type:"boolean",default:!1},reverseMobile:{type:"boolean",default:!1},topDividerOpacity:{type:"number",default:100},bottomDividerOpacity:{type:"number",default:100},topContentAboveShape:{type:"boolean",default:!1},bottomContentAboveShape:{type:"boolean",default:!1},mobileMarginType:{type:"string",default:"px"},tabletMarginType:{type:"string",default:"px"},desktopMarginType:{type:"string",default:"px"},mobilePaddingType:{type:"string",default:"px"},tabletPaddingType:{type:"string",default:"px"},desktopPaddingType:{type:"string",default:"px"},boxShadowColor:{type:"string"},boxShadowHOffset:{type:"number",default:0},boxShadowVOffset:{type:"number",default:0},boxShadowBlur:{type:"number"},boxShadowSpread:{type:"number"},boxShadowPosition:{type:"string",default:"outset"},gradientValue:{type:"string",default:""},...ce("columns")};var oj=[{attributes:ij,save(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,contentWidth:r,align:s,columns:c,stack:u,vAlign:p,columnGap:b,topType:d,bottomType:g,bottomFlip:m,topFlip:y,reverseTablet:f,reverseMobile:h,topContentAboveShape:v,bottomContentAboveShape:_}=e.attributes,T=""+i,C="none"!=d&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-top",{"uagb-columns__shape-flip":!0===y},{"uagb-columns__shape-above-content":!0===v})},lj[d]),S="none"!=g&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-bottom",{"uagb-columns__shape-flip":!0===m},{"uagb-columns__shape-above-content":!0===_}),"data-negative":"false"},lj[g]),w=f?"uagb-columns__reverse-tablet":"",k=h?"uagb-columns__reverse-mobile":"";return React.createElement(T,{className:Be()(a,"uagb-columns__wrap","uagb-columns__background-"+o,"uagb-columns__stack-"+u,"uagb-columns__valign-"+p,"uagb-columns__gap-"+b,"align"+s,w,k),id:"uagb-columns-"+l},React.createElement("div",{className:"uagb-columns__overlay"}),C,"video"==o&&React.createElement("div",{className:"uagb-columns__video-wrap"},n&&React.createElement("video",{src:n.url,autoPlay:!0,loop:!0,muted:!0})),React.createElement("div",{className:Be()("uagb-columns__inner-wrap","uagb-columns__columns-"+c)},React.createElement(ge.InnerBlocks.Content,null)),S)}},{attributes:ij,save(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,contentWidth:r,align:s,columns:c,stack:u,vAlign:p,columnGap:b,topType:d,bottomType:g,bottomFlip:m,topFlip:y,reverseTablet:f,reverseMobile:h,topContentAboveShape:v,bottomContentAboveShape:_}=e.attributes,T=""+i,C="none"!=d&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-top",{"uagb-columns__shape-flip":!0===y},{"uagb-columns__shape-above-content":!0===v})},lj[d]),S="none"!=g&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-bottom",{"uagb-columns__shape-flip":!0===m},{"uagb-columns__shape-above-content":!0===_}),"data-negative":"false"},lj[g]),w=f?"uagb-columns__reverse-tablet":"",k=h?"uagb-columns__reverse-mobile":"";return React.createElement(T,{className:Be()(a,"uagb-columns__wrap","uagb-columns__background-"+o,"uagb-columns__stack-"+u,"uagb-columns__valign-"+p,"uagb-columns__gap-"+b,"align"+s,w,k),id:"uagb-columns-"+l},React.createElement("div",{className:"uagb-columns__overlay"}),C,"video"==o&&React.createElement("div",{className:"uagb-columns__video-wrap"},n&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:n.url,type:"video/mp4"}))),React.createElement("div",{className:Be()("uagb-columns__inner-wrap","uagb-columns__columns-"+c)},React.createElement(ge.InnerBlocks.Content,null)),S)}},{attributes:ij,save(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,align:r,columns:s,stack:c,vAlign:u,columnGap:p,topType:b,bottomType:d,bottomFlip:g,topFlip:m,reverseTablet:y,reverseMobile:f,topContentAboveShape:h,bottomContentAboveShape:v}=t,_=""+i,T="none"!=b&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-top",{"uagb-columns__shape-flip":!0===m},{"uagb-columns__shape-above-content":!0===h})},lj[b]),C="none"!=d&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-bottom",{"uagb-columns__shape-flip":!0===g},{"uagb-columns__shape-above-content":!0===v}),"data-negative":"false"},lj[d]),S=y?"uagb-columns__reverse-tablet":"",w=f?"uagb-columns__reverse-mobile":"";return React.createElement(_,{className:Be()(a,"uagb-columns__wrap","uagb-columns__background-"+o,"uagb-columns__stack-"+c,"uagb-columns__valign-"+u,"uagb-columns__gap-"+p,"align"+r,S,w,"uagb-block-"+l)},React.createElement("div",{className:"uagb-columns__overlay"}),T,"video"==o&&React.createElement("div",{className:"uagb-columns__video-wrap"},n&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:n.url,type:"video/mp4"}))),React.createElement("div",{className:Be()("uagb-columns__inner-wrap","uagb-columns__columns-"+s)},React.createElement(ge.InnerBlocks.Content,null)),C)}}];const nj={};nj.colOne=React.createElement("svg",{id:"Layer_4",width:"100",height:"50","data-name":"Layer 4",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M385,133.37v54.54H285V133.37Z",transform:"translate(-285 -133.37)"})),nj.layout5050=React.createElement("svg",{id:"Layer_2",width:"100",height:"50","data-name":"Layer 2",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M461,133.37v54.54H412V133.37Zm51,0v54.54H463V133.37Z",transform:"translate(-412 -133.37)"})),nj.layout3366=React.createElement("svg",{id:"Layer_3",width:"100",height:"50","data-name":"Layer 3",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M571.67,133.37v54.54H539V133.37Zm67.33,0v54.54H573.67V133.37Z",transform:"translate(-539 -133.37)"})),nj.layout6633=React.createElement("svg",{id:"Layer_5",width:"100",height:"50","data-name":"Layer 5",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M731.07,133.37v54.54H665.73V133.37Zm34.66,0v54.54H733.07V133.37Z",transform:"translate(-665.73 -133.37)"})),nj.layout333333=React.createElement("svg",{id:"Layer_7",width:"100",height:"50","data-name":"Layer 7",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M444,207.83v54.54H412V207.83Zm34,0v54.54H446V207.83Zm34,0v54.54H480V207.83Z",transform:"translate(-412 -207.83)"})),nj.layout252550=React.createElement("svg",{width:"100",height:"50",xmlns:"https://www.w3.org/1999/xlink",viewBox:"0 0 100 50"},React.createElement("path",{d:"M24,0V50H0V0Z M50,0V50H26V0Z M100,0V50H52V0Z"})),nj.layout502525=React.createElement("svg",{id:"Layer_6",width:"100",height:"50","data-name":"Layer 6",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M333,207.83v54.54H285V207.83Zm26,0v54.54H335V207.83Zm26,0v54.54H361V207.83Z",transform:"translate(-285 -207.83)"})),nj.layout255025=React.createElement("svg",{id:"Layer_8",width:"100",height:"50","data-name":"Layer 8",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M563,207.83v54.54H539V207.83Zm50,0v54.54H565V207.83Zm26,0v54.54H615V207.83Z",transform:"translate(-539 -207.83)"})),nj.layout25252525=React.createElement("svg",{id:"Layer_8",width:"100",height:"50","data-name":"Layer 8",xmlns:"https://www.w3.org/2000/svg",viewBox:"0 0 100 54.54"},React.createElement("path",{d:"M689.23,207.64v54.55h-23.5V207.64Zm25.5,0v54.55h-23.5V207.64Zm25.5,0v54.55h-23.5V207.64Zm25.5,0v54.55h-23.5V207.64Z",transform:"translate(-665.73 -207.64)"})),nj.layout2525252525=React.createElement("svg",{width:"100",height:"50",xmlns:"https://www.w3.org/1999/xlink",viewBox:"0 0 100 50"},React.createElement("path",{d:"M18.4,0V50H0V0Z M38.8,0V50H20.4V0Z M59.2,0V50H40.8V0Z M79.6,0V50H61.2V0Z M100,0V50H81.6V0Z"}));var rj=nj,sj=[{name:"one-column",label:Object(r.__)("One column","ultimate-addons-for-gutenberg"),icon:rj.colOne,attributes:{columns:1,layout:"100"},innerBlocks:[["uagb/column",{colWidth:100}]],scope:["block"]},{name:"two-column-split",label:Object(r.__)("Two columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout5050,attributes:{columns:2,layout:"50-50"},isDefault:!0,innerBlocks:[["uagb/column",{colWidth:50}],["uagb/column",{colWidth:50}]],scope:["block"]},{name:"two-columns-one-third-two-thirds",label:Object(r.__)("Two columns; one-third, two-thirds split","ultimate-addons-for-gutenberg"),icon:rj.layout3366,attributes:{columns:2},innerBlocks:[["uagb/column",{colWidth:33.33}],["uagb/column",{colWidth:66.66}]],scope:["block"]},{name:"two-columns-two-thirds-one-third",label:Object(r.__)("Two columns; two-thirds, one-third split","ultimate-addons-for-gutenberg"),icon:rj.layout6633,attributes:{columns:2},innerBlocks:[["uagb/column",{colWidth:66.66}],["uagb/column",{colWidth:33.33}]],scope:["block"]},{name:"three-columns-equal",label:Object(r.__)("Three columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout333333,attributes:{columns:3},innerBlocks:[["uagb/column",{colWidth:33.33}],["uagb/column",{colWidth:33.33}],["uagb/column",{colWidth:33.33}]],scope:["block"]},{name:"three-column-first-half",label:Object(r.__)("Three columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout252550,attributes:{columns:3,layout:"25-25-50"},innerBlocks:[["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:50}]],scope:["block"]},{name:"three-column",label:Object(r.__)("Three columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout502525,attributes:{columns:3,layout:"50-25-25"},innerBlocks:[["uagb/column",{colWidth:50}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}]],scope:["block"]},{name:"three-columns-wider-center",label:Object(r.__)("Three columns; wide center column","ultimate-addons-for-gutenberg"),icon:rj.layout255025,attributes:{columns:3},innerBlocks:[["uagb/column",{colWidth:25}],["uagb/column",{colWidth:50}],["uagb/column",{colWidth:25}]],scope:["block"]},{name:"four-column",label:Object(r.__)("Four columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout25252525,attributes:{columns:4,layout:"25-25-25-25"},innerBlocks:[["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}]],scope:["block"]},{name:"five-column",label:Object(r.__)("Five columns; equal split","ultimate-addons-for-gutenberg"),icon:rj.layout2525252525,attributes:{columns:5,layout:"25-25-25-25-25"},innerBlocks:[["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}],["uagb/column",{colWidth:25}]],scope:["block"]}];a(371);let cj={};cj=Object(j.applyFilters)("uagb/columns",ws(cj)),"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/columns",{...cj,title:Object(r.__)("Advanced Columns","ultimate-addons-for-gutenberg"),description:Object(r.__)("Insert a number of columns within a single row.","ultimate-addons-for-gutenberg"),icon:re("columns"),keywords:[Object(r.__)("columns","ultimate-addons-for-gutenberg"),Object(r.__)("rows","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],attributes:Ht,category:uagb_blocks_info.category,variations:sj,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"advanced-columns"}):React.createElement(aj,e),getEditWrapperProps:e=>({"data-align":e.align,"data-valign":e.vAlign}),supports:{editorsKitBlockNavigator:!0,anchor:!0,html:!1},save:function(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,align:r,columns:s,stack:c,vAlign:u,columnGap:p,topType:b,bottomType:d,bottomFlip:g,topFlip:m,reverseTablet:y,reverseMobile:f,topContentAboveShape:h,bottomContentAboveShape:v,contentWidth:_}=t,T=""+i,C="none"!==b&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-top",{"uagb-columns__shape-flip":!0===m},{"uagb-columns__shape-above-content":!0===h})},ZH[b]),S="none"!==d&&React.createElement("div",{className:Be()("uagb-columns__shape","uagb-columns__shape-bottom",{"uagb-columns__shape-flip":!0===g},{"uagb-columns__shape-above-content":!0===v}),"data-negative":"false"},ZH[d]),w=y?"uagb-columns__reverse-tablet":"",k=f?"uagb-columns__reverse-mobile":"",P=void 0!==o?"uagb-columns__background-"+o:"",x=void 0!==u?"uagb-columns__valign-"+u:"",A=void 0!==r?"align"+r:"";return React.createElement(T,{className:Be()(a,"uagb-columns__wrap",""+P,"uagb-columns__stack-"+c,""+x,"uagb-columns__gap-"+p,""+A,w,k,"uagb-block-"+l,"uagb-columns__columns-"+s,"uagb-columns__max_width-"+_)},React.createElement("div",{className:"uagb-columns__overlay"}),C,"video"===o&&React.createElement("div",{className:"uagb-columns__video-wrap"},n&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:n.url,type:"video/mp4"}))),React.createElement("div",{className:Be()("uagb-columns__inner-wrap","uagb-columns__columns-"+s)},React.createElement(ge.InnerBlocks.Content,null)),S)},deprecated:oj}),a(372);var uj=function(e){const{align:t,contentWidth:a,leftPadding:l,rightPadding:i,topPadding:o,bottomPadding:n,leftMargin:r,rightMargin:s,topMargin:c,bottomMargin:u,width:p,backgroundPosition:b,backgroundSize:d,backgroundAttachment:g,backgroundImage:m,backgroundRepeat:y,backgroundType:f,desktopMarginType:h,desktopPaddingType:v}=e,_={"padding-top":ns(o,v),"padding-bottom":ns(n,v),"padding-left":ns(l,v),"padding-right":ns(i,v),"margin-top":ns(c,h),"margin-bottom":ns(u,h)};if("boxed"===a)switch(t){case"right":_["margin-left"]="auto",_["margin-right"]=ns(s,h);break;case"left":_["margin-right"]="auto",_["margin-left"]=ns(r,h);break;case"center":_["margin-right"]="auto",_["margin-left"]="auto"}"full_width"===a&&(_["margin-left"]=ns(r,h),_["margin-right"]=ns(s,h));const T=b.replace("-"," ");let C="100%";return"boxed"===a&&""!==p&&(C=p+"px"),_["max-width"]=C,"image"===f&&(_["background-image"]=m?`url(${m.url})`:null,_["background-position"]=T,_["background-attachment"]=g,_["background-repeat"]=y,_["background-size"]=d),_};function pj(){return(pj=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var bj,dj=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,align:o,contentWidth:n,width:s,innerWidth:c,innerWidthType:u,tag:p,themeWidth:b,leftPadding:d,rightPadding:g,topPadding:m,bottomPadding:y,leftMargin:f,rightMargin:h,topMargin:v,bottomMargin:_,topPaddingTablet:T,bottomPaddingTablet:C,leftPaddingTablet:S,rightPaddingTablet:w,topMarginTablet:k,bottomMarginTablet:P,leftMarginTablet:x,rightMarginTablet:A,topPaddingMobile:G,bottomPaddingMobile:M,leftPaddingMobile:R,rightPaddingMobile:B,topMarginMobile:U,bottomMarginMobile:E,leftMarginMobile:O,rightMarginMobile:L,backgroundType:H,backgroundImage:j,backgroundVideo:F,backgroundColor:z,backgroundPosition:D,backgroundAttachment:N,backgroundRepeat:I,backgroundSize:V,backgroundVideoColor:W,backgroundVideoOpacity:q,backgroundImageColor:Z,overlayType:$,mobileMarginType:Y,tabletMarginType:K,desktopMarginType:J,mobilePaddingType:X,tabletPaddingType:Q,desktopPaddingType:ee,boxShadowColor:te,boxShadowHOffset:ae,boxShadowVOffset:le,boxShadowBlur:ie,boxShadowSpread:oe,boxShadowPosition:ne,spacingLink:re,marginspacingLink:se,gradientValue:ce,gradientColor1:ue,gradientColor2:pe,gradientLocation1:be,gradientLocation2:de,gradientType:me,gradientAngle:ye,selectGradient:fe}=t;let he=["left","center","right"];return"full_width"===n&&(he=["wide","full"]),React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,null,React.createElement(ge.AlignmentToolbar,{value:o,onChange:e=>{a({align:e})},controls:he})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Content Width","ultimate-addons-for-gutenberg"),data:{value:n,label:"contentWidth"},className:"uagb-multi-button-alignment-control",options:[{value:"boxed",label:"Boxed"},{value:"full_width",label:"Full Width"}],showIcons:!1}),"boxed"===n&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:s,data:{value:s,label:"width"},min:0,max:2e3,displayUnit:!1})),"boxed"!==n&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Inherit Inner Width from Theme","ultimate-addons-for-gutenberg"),checked:b,onChange:()=>a({themeWidth:!b})}),"boxed"!==n&&!b&&React.createElement(Qa,{label:Object(r.__)("Inner Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:c,data:{value:c,label:"innerWidth"},min:0,max:2e3,unit:{value:u,label:"innerWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Pi,{label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:p,label:"tag"},setAttributes:a,options:[{value:"div",label:Object(r.__)("div","ultimate-addons-for-gutenberg")},{value:"header",label:Object(r.__)("header","ultimate-addons-for-gutenberg")},{value:"footer",label:Object(r.__)("footer","ultimate-addons-for-gutenberg")},{value:"main",label:Object(r.__)("main","ultimate-addons-for-gutenberg")},{value:"article",label:Object(r.__)("article","ultimate-addons-for-gutenberg")},{value:"section",label:Object(r.__)("section","ultimate-addons-for-gutenberg")},{value:"aside",label:Object(r.__)("aside","ultimate-addons-for-gutenberg")},{value:"nav",label:Object(r.__)("nav","ultimate-addons-for-gutenberg")}]}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,pj({setAttributes:a,backgroundGradient:{value:ce,label:"gradientValue"},backgroundGradientColor1:{value:ue,label:"gradientColor1"},gradientType:{value:fe,label:"selectGradient"},backgroundGradientColor2:{value:pe,label:"gradientColor2"},backgroundGradientLocation1:{value:be,label:"gradientLocation1"},backgroundGradientLocationTablet1:{value:be,label:"gradientLocation1"},backgroundGradientLocationMobile1:{value:be,label:"gradientLocation1"},backgroundGradientLocation2:{value:de,label:"gradientLocation2"},backgroundGradientLocationTablet2:{value:de,label:"gradientLocation2"},backgroundGradientLocationMobile2:{value:de,label:"gradientLocation2"},backgroundGradientType:{value:me,label:"gradientType"},backgroundGradientAngle:{value:ye,label:"gradientAngle"},backgroundGradientAngleTablet:{value:ye,label:"gradientAngle"},backgroundGradientAngleMobile:{value:ye,label:"gradientAngle"},backgroundImageColor:{value:Z,label:"backgroundImageColor"},overlayType:{value:$,label:"overlayType"},gradientOverlay:{value:!0},backgroundSize:{value:V,label:"backgroundSize"},backgroundRepeat:{value:I,label:"backgroundRepeat"},backgroundAttachment:{value:N,label:"backgroundAttachment"},backgroundPosition:{value:D,label:"backgroundPosition"},backgroundImage:{value:j,label:"backgroundImage"},backgroundColor:{value:z,label:"backgroundColor"},backgroundType:{value:H,label:"backgroundType"},backgroundVideoType:{value:!0},backgroundVideo:{value:F,label:"backgroundVideo"},backgroundVideoColor:{value:W,label:"backgroundVideoColor"},backgroundVideoOpacity:{value:q,label:"backgroundVideoOpacity"},onOpacityChange:e=>a({backgroundVideoOpacity:e})},e))),React.createElement(React.Fragment,null,React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:a,prefix:"overall",attributes:t,deviceType:l,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:"Box Shadow",initialOpen:!1},React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:te,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:ae,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:le,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:ie,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:oe,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:ne,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")}}))),React.createElement(Fe,{title:"Spacing",initialOpen:!1},React.createElement(Pl,pj({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:v,label:"topMargin"},valueRight:{value:h,label:"rightMargin"},valueBottom:{value:_,label:"bottomMargin"},valueLeft:{value:f,label:"leftMargin"},valueTopTablet:{value:k,label:"topMarginTablet"},valueRightTablet:{value:A,label:"rightMarginTablet"},valueBottomTablet:{value:P,label:"bottomMarginTablet"},valueLeftTablet:{value:x,label:"leftMarginTablet"},valueTopMobile:{value:U,label:"topMarginMobile"},valueRightMobile:{value:L,label:"rightMarginMobile"},valueBottomMobile:{value:E,label:"bottomMarginMobile"},valueLeftMobile:{value:O,label:"leftMarginMobile"},unit:{value:J,label:"desktopMarginType"},mUnit:{value:Y,label:"mobileMarginType"},tUnit:{value:K,label:"tabletMarginType"},deviceType:l,attributes:t,setAttributes:a,link:{value:se,label:"marginspacingLink"}})),React.createElement(Pl,pj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:m,label:"topPadding"},valueRight:{value:g,label:"rightPadding"},valueBottom:{value:y,label:"bottomPadding"},valueLeft:{value:d,label:"leftPadding"},valueTopTablet:{value:T,label:"topPaddingTablet"},valueRightTablet:{value:w,label:"rightPaddingTablet"},valueBottomTablet:{value:C,label:"bottomPaddingTablet"},valueLeftTablet:{value:S,label:"leftPaddingTablet"},valueTopMobile:{value:G,label:"topPaddingMobile"},valueRightMobile:{value:B,label:"rightPaddingMobile"},valueBottomMobile:{value:M,label:"bottomPaddingMobile"},valueLeftMobile:{value:R,label:"leftPaddingMobile"},unit:{value:ee,label:"desktopPaddingType"},mUnit:{value:X,label:"mobilePaddingType"},tUnit:{value:Q,label:"tabletPaddingType"},deviceType:l,attributes:t,setAttributes:a,link:{value:re,label:"spacingLink"}})))),React.createElement(il,pj({},rl,{parentProps:e})))))}),gj=a(152),mj=0,yj={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},fj={};fj.locals=gj.a.locals||{},fj.use=function(){return mj++||(bj=ke()(gj.a,yj)),fj},fj.unuse=function(){mj>0&&!--mj&&(bj(),bj=null)};var hj=fj,vj=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(hj.use(),()=>{hj.unuse()}),[]);const{attributes:t,isSelected:a,className:l,deviceType:i}=e,{align:o,contentWidth:n,tag:r,backgroundType:s,backgroundVideo:c,block_id:u}=t,p=""+r,b=a?"active":"not-active";let d="";return"full_width"===n&&("wide"!==o&&"full"!==o||(d="align"+o)),React.createElement(p,{className:Be()(l,"uagb-section__wrap","uagb-section__background-"+s,"uagb-section__edit-"+b,d,"uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-block-"+u)},React.createElement("div",{className:"uagb-section__overlay"}),"video"===s&&React.createElement("div",{className:"uagb-section__video-wrap"},c&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:c.url,type:"video/mp4"}))),React.createElement("div",{className:"uagb-section__inner-wrap"},React.createElement(ge.InnerBlocks,{templateLock:!1})))}),_j=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{borderStyle:l,borderWidth:i,borderRadius:o,borderColor:n,borderHoverColor:r,UAGHideDesktop:s,UAGHideTab:c,UAGHideMob:u,backgroundOpacity:p,backgroundImageColor:b,gradientOverlayColor1:d,gradientOverlayColor2:g,backgroundType:m,overlayType:y,gradientOverlayAngle:f,gradientOverlayLocation1:h,gradientOverlayPosition:v,gradientOverlayLocation2:_,gradientOverlayType:T,backgroundVideoOpacity:C,backgroundVideoColor:S},setAttributes:w,clientId:k,deviceType:P}=e;Object(B.useEffect)(()=>{(i||o||n||r||l)&&ue("overall",{label:"borderWidth",value:i},{label:"borderRadius",value:o},{label:"borderColor",value:n},{label:"borderHoverColor",value:r},{label:"borderStyle",value:l},w,a)},[]),Object(B.useEffect)(()=>{he(e)},[s,c,u,P]),Object(B.useEffect)(()=>{Bs()},[P]),Object(B.useEffect)(()=>{if(101!==p&&"image"===m&&"gradient"===y){const e=uE(pl(d),p),t=uE(pl(g),p);let a;a="linear"===T?`linear-gradient(${f}deg, ${e} ${h}%, ${t} ${_}%)`:`radial-gradient( at ${v}, ${e} ${h}%, ${t} ${_}%)`,w({gradientValue:a})}if("image"===m&&101!==p){const e=uE(pl(b),p);w({backgroundImageColor:e}),w({backgroundOpacity:101})}if("video"===m&&101!==C){const e=uE(pl(S),C);w({backgroundVideoColor:e})}},[]);const x=Object(B.useMemo)(()=>function(e,t,a){const{block_id:l,backgroundType:i,backgroundVideoColor:o,backgroundImageColor:n,backgroundColor:r,innerWidth:s,innerWidthType:c,contentWidth:u,topPaddingTablet:p,bottomPaddingTablet:b,leftPaddingTablet:d,rightPaddingTablet:g,topMarginTablet:m,bottomMarginTablet:y,leftMarginTablet:f,rightMarginTablet:h,topPaddingMobile:v,bottomPaddingMobile:_,leftPaddingMobile:T,rightPaddingMobile:C,topMarginMobile:S,bottomMarginMobile:w,leftMarginMobile:k,rightMarginMobile:P,align:x,overlayType:A,mobileMarginType:G,tabletMarginType:M,mobilePaddingType:R,tabletPaddingType:B,boxShadowColor:U,boxShadowHOffset:E,boxShadowVOffset:O,boxShadowBlur:L,boxShadowSpread:H,boxShadowPosition:j,gradientValue:F,selectGradient:z,overallBorderHColor:D,backgroundVideoOpacity:N,backgroundOpacity:I,gradientColor1:V,gradientColor2:W,gradientLocation1:q,gradientLocation2:Z,gradientType:$,gradientAngle:Y}=e;let K="100%";const J=a.toLowerCase();void 0!==u&&"boxed"!==u&&void 0!==s&&(K=ns(s,c));let X={},Q={},ee=j;"outset"===j&&(ee="");let te=.5;void 0!==N&&(te=1<N?(100-N)/100:1-N);const le=rs(e,"overall"),ie=rs(e,"overall","tablet"),oe=rs(e,"overall","mobile"),ne={".uagb-section__wrap":uj(e)," .uagb-section__video-wrap":{opacity:te}," .uagb-section__inner-wrap":{"max-width":K},".wp-block-uagb-section":{"box-shadow":ns(E,"px")+" "+ns(O,"px")+" "+ns(L,"px")+" "+ns(H,"px")+" "+U+" "+ee}," > .uagb-section__overlay:hover":{"border-color":D}};let re={};if("video"===i)"color"===A?re={"background-color":o}:re["background-image"]=F;else if("image"===i)"color"===A?re={"background-color":n,opacity:I&&0!==I?I/100:""}:re["background-image"]=F;else if("color"===i)re={"background-color":r,opacity:I&&0!==I?I/100:""};else if("gradient"===i){let e;switch(z){case"basic":e=F;break;case"advanced":switch($){case"linear":e=`linear-gradient(${Y}deg, ${V} ${q}%, ${W} ${Z}%)`;break;case"radial":e=`radial-gradient( at center center, ${V} ${q}%, ${W} ${Z}%)`;break;default:e=""}break;default:e=""}re.opacity=I&&0!==I?I/100:"",re["background-image"]=e}ne[" > .uagb-section__overlay"]={...le,...re},X={".uagb-section__wrap":{"padding-top":ns(p,B),"padding-bottom":ns(b,B),"padding-left":ns(d,B),"padding-right":ns(g,B)}," > .uagb-section__overlay":ie},Q={".uagb-section__wrap":{"padding-top":ns(v,R),"padding-bottom":ns(_,R),"padding-left":ns(T,R),"padding-right":ns(C,R)}," > .uagb-section__overlay":oe},X[".uagb-section__wrap"]["margin-top"]=ns(m,M),X[".uagb-section__wrap"]["margin-bottom"]=ns(y,M),Q[".uagb-section__wrap"]["margin-top"]=ns(S,G),Q[".uagb-section__wrap"]["margin-bottom"]=ns(w,G),"right"===x&&"boxed"===u?(Q[".uagb-section__wrap"]["margin-right"]=ns(P,G),X[".uagb-section__wrap"]["margin-right"]=ns(h,M)):"left"===x&&"boxed"===u&&(Q[".uagb-section__wrap"]["margin-left"]=ns(k,G),X[".uagb-section__wrap"]["margin-left"]=ns(f,M)),"full_width"===u&&(X[".uagb-section__wrap"]["margin-left"]=ns(f,M),X[".uagb-section__wrap"]["margin-right"]=ns(h,M),Q[".uagb-section__wrap"]["margin-left"]=ns(k,G),Q[".uagb-section__wrap"]["margin-right"]=ns(P,G));let se="";const ce=".uagb-block-"+l;return se=ae(ne,ce),"tablet"!==J&&"mobile"!==J||(se+=ae(X,""+ce,!0,"tablet"),"mobile"===J&&(se+=ae(Q,""+ce,!0,"mobile"))),se}(a,0,P),[a,P]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:x}),t&&React.createElement(dj,e),React.createElement(vj,e))});const Tj={classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center"},block_id:{type:"string"},mobilePaddingType:{type:"string",default:"px"},tabletPaddingType:{type:"string",default:"px"},desktopPaddingType:{type:"string",default:"px"},topPadding:{type:"number",default:20},bottomPadding:{type:"number",default:20},leftPadding:{type:"number",default:20},rightPadding:{type:"number",default:20},mobileMarginType:{type:"string",default:"px"},tabletMarginType:{type:"string",default:"px"},desktopMarginType:{type:"string",default:"px"},topMargin:{type:"number",default:0},bottomMargin:{type:"number",default:0},leftMargin:{type:"number",default:0},rightMargin:{type:"number",default:0},topPaddingTablet:{type:"number",default:""},bottomPaddingTablet:{type:"number",default:""},leftPaddingTablet:{type:"number",default:""},rightPaddingTablet:{type:"number",default:""},topMarginTablet:{type:"number",default:""},bottomMarginTablet:{type:"number",default:""},leftMarginTablet:{type:"number",default:""},rightMarginTablet:{type:"number",default:""},topPaddingMobile:{type:"number",default:""},bottomPaddingMobile:{type:"number",default:""},leftPaddingMobile:{type:"number",default:""},rightPaddingMobile:{type:"number",default:""},topMarginMobile:{type:"number",default:""},bottomMarginMobile:{type:"number",default:""},leftMarginMobile:{type:"number",default:""},rightMarginMobile:{type:"number",default:""},contentWidth:{type:"string",default:"boxed"},width:{type:"number",default:900},innerWidth:{type:"number",default:1140},innerWidthType:{type:"string",default:"px"},themeWidth:{type:"boolean",default:!1},tag:{type:"string",default:"section"},backgroundType:{type:"string"},backgroundImage:{type:"object"},backgroundPosition:{type:"string",default:"center-center"},backgroundSize:{type:"string",default:"cover"},backgroundRepeat:{type:"string",default:"no-repeat"},backgroundAttachment:{type:"string",default:"scroll"},backgroundVideo:{type:"object"},backgroundColor:{type:"string"},gradientColor1:{type:"string"},gradientColor2:{type:"string"},gradientType:{type:"string",default:"linear"},gradientLocation1:{type:"number",default:0},gradientLocation2:{type:"number",default:100},gradientAngle:{type:"number",default:0},gradientPosition:{type:"string",default:"center center"},backgroundOpacity:{type:"number"},backgroundVideoOpacity:{type:"number",default:50},backgroundVideoColor:{type:"string"},backgroundImageColor:{type:"string"},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string"},overlayType:{type:"string",default:"color"},gradientOverlayColor1:{type:"string"},gradientOverlayColor2:{type:"string"},gradientOverlayType:{type:"string",default:"linear"},gradientOverlayLocation1:{type:"number",default:0},gradientOverlayLocation2:{type:"number",default:100},gradientOverlayAngle:{type:"number",default:0},gradientOverlayPosition:{type:"string",default:"center center"},boxShadowColor:{type:"string"},boxShadowHOffset:{type:"number",default:0},boxShadowVOffset:{type:"number",default:0},boxShadowBlur:{type:"number"},boxShadowSpread:{type:"number"},boxShadowPosition:{type:"string",default:"outset"},gradientValue:{type:"string",default:""},...ce("overall")};var Cj=[{attributes:Tj,save(e){const{className:t}=e,{block_id:a,tag:l,backgroundType:i,backgroundVideo:o,contentWidth:n,align:r}=e.attributes;let s="";"full_width"==n&&("wide"!=r&&"full"!=r||(s="align"+r));const c=""+l;return React.createElement(c,{className:Be()(t,"uagb-section__wrap","uagb-section__background-"+i,s),id:"uagb-section-"+a},React.createElement("div",{className:"uagb-section__overlay"}),"video"==i&&React.createElement("div",{className:"uagb-section__video-wrap"},o&&React.createElement("video",{src:o.url,autoPlay:!0,loop:!0,muted:!0})),React.createElement("div",{className:"uagb-section__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:Tj,save(e){const{className:t}=e,{block_id:a,tag:l,backgroundType:i,backgroundVideo:o,contentWidth:n,align:r}=e.attributes;let s="";"full_width"==n&&("wide"!=r&&"full"!=r||(s="align"+r));const c=""+l;return React.createElement(c,{className:Be()(t,"uagb-section__wrap","uagb-section__background-"+i,s),id:"uagb-section-"+a},React.createElement("div",{className:"uagb-section__overlay"}),"video"==i&&React.createElement("div",{className:"uagb-section__video-wrap"},o&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:o.url,type:"video/mp4"}))),React.createElement("div",{className:"uagb-section__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:Tj,save(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,contentWidth:r,align:s}=e.attributes;let c="";"full_width"==r&&("wide"!=s&&"full"!=s||(c="align"+s));const u=""+i;return React.createElement(u,{className:Be()(a,"uagb-section__wrap","uagb-section__background-"+o,c,"uagb-block-"+l)},React.createElement("div",{className:"uagb-section__overlay"}),"video"==o&&React.createElement("div",{className:"uagb-section__video-wrap"},n&&React.createElement("video",{autoplay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:n.url,type:"video/mp4"}))),React.createElement("div",{className:"uagb-section__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];let Sj={};Sj=Object(j.applyFilters)("uagb/section",ws(Sj)),"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/section",{...Sj,title:Object(r.__)("Advanced Row","ultimate-addons-for-gutenberg"),description:Object(r.__)("Outer wrap section that allows you to add other blocks within it.","ultimate-addons-for-gutenberg"),icon:re("section"),keywords:[Object(r.__)("advanced row","ultimate-addons-for-gutenberg"),Object(r.__)("wrapper","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0,html:!1},attributes:ot,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"advanced-row"}):React.createElement(_j,e),getEditWrapperProps(e){const{align:t,contentWidth:a}=e;if(("left"===t||"right"===t||"wide"===t||"full"===t)&&"full_width"===a)return{"data-align":t}},save:function(e){const{attributes:t,className:a}=e,{block_id:l,tag:i,backgroundType:o,backgroundVideo:n,contentWidth:r,align:s}=t;let c="";"full_width"===r&&("wide"!==s&&"full"!==s||(c="align"+s));const u=""+i;return React.createElement(u,{className:Be()(a,"uagb-section__wrap","uagb-section__background-"+o,c,"uagb-block-"+l)},React.createElement("div",{className:"uagb-section__overlay"}),"video"===o&&React.createElement("div",{className:"uagb-section__video-wrap"},n&&React.createElement("video",{autoPlay:!0,loop:!0,muted:!0,playsinline:!0},React.createElement("source",{src:n.url,type:"video/mp4"}))),React.createElement("div",{className:"uagb-section__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))},deprecated:Cj});var wj=function(e){const{backgroundColor:t,backgroundType:a,backgroundImageColor:l,overlayType:i,gradientValue:o,backgroundOpacity:n}=e,r={},s=rs(e,"column");switch(a){case"image":"color"===i?(r.opacity=void 0!==n&&101!==n&&0!==n?n/100:"",r["background-color"]=l):r["background-image"]=o;break;case"gradient":r["background-image"]=o,r.opacity=void 0!==n&&101!==n&&0!==n?n/100:"";break;case"color":r["background-color"]=t,r.opacity=void 0!==n&&101!==n&&0!==n?n/100:""}return r["border-radius"]=`${s["border-top-left-radius"]} ${s["border-top-right-radius"]} ${s["border-bottom-right-radius"]} ${s["border-bottom-left-radius"]}`,r};function kj(){return(kj=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Pj,xj=Object(B.memo)(e=>{const{attributes:{topPadding:t,bottomPadding:a,leftPadding:l,rightPadding:i,topPaddingTablet:o,bottomPaddingTablet:n,leftPaddingTablet:s,rightPaddingTablet:c,topPaddingMobile:u,bottomPaddingMobile:p,leftPaddingMobile:b,rightPaddingMobile:d,topMargin:g,bottomMargin:m,leftMargin:y,rightMargin:f,topMarginTablet:h,bottomMarginTablet:v,leftMarginTablet:_,rightMarginTablet:T,topMarginMobile:C,bottomMarginMobile:S,leftMarginMobile:w,rightMarginMobile:k,backgroundType:P,backgroundImage:x,backgroundColor:A,backgroundPosition:G,backgroundAttachment:M,backgroundRepeat:R,backgroundSize:B,backgroundImageColor:U,gradientValue:E,gradientColor1:O,gradientColor2:L,gradientLocation1:H,gradientLocation2:j,gradientType:F,gradientAngle:z,selectGradient:D,overlayType:N,mobilePaddingType:I,tabletPaddingType:V,desktopPaddingType:W,colWidthMobile:q,colWidthTablet:Z,colWidth:$,paddingLink:Y,marginLink:K,mobileMarginType:J,tabletMarginType:X,desktopMarginType:Q},deviceType:ee,setAttributes:te}=e;return React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg")},React.createElement(tl,{label:Object(r.__)("Content Width (%)","ultimate-addons-for-gutenberg"),data:{desktop:{value:$,label:"colWidth"},tablet:{value:Z,label:"colWidthTablet"},mobile:{value:q,label:"colWidthMobile"}},min:0,max:100,displayUnit:!1,setAttributes:te}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Background","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(vi,kj({setAttributes:te,backgroundGradient:{value:E,label:"gradientValue"},backgroundGradientColor1:{value:O,label:"gradientColor1"},gradientType:{value:D,label:"selectGradient"},backgroundGradientColor2:{value:L,label:"gradientColor2"},backgroundGradientLocation1:{value:H,label:"gradientLocation1"},backgroundGradientLocation2:{value:j,label:"gradientLocation2"},backgroundGradientType:{value:F,label:"gradientType"},backgroundGradientAngle:{value:z,label:"gradientAngle"},backgroundImageColor:{value:U,label:"backgroundImageColor"},overlayType:{value:N,label:"overlayType"},gradientOverlay:{value:!0},backgroundSize:{value:B,label:"backgroundSize"},backgroundRepeat:{value:R,label:"backgroundRepeat"},backgroundAttachment:{value:M,label:"backgroundAttachment"},backgroundPosition:{value:G,label:"backgroundPosition"},backgroundImage:{value:x,label:"backgroundImage"},backgroundColor:{value:A,label:"backgroundColor"},backgroundType:{value:P,label:"backgroundType"},backgroundVideoType:{value:!1}},e))),React.createElement(Fe,{title:Object(r.__)("Border","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Hi,{setAttributes:te,prefix:"column",attributes:e.attributes,deviceType:ee,disableBottomSeparator:!0,disabledBorderTitle:!0})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Pl,kj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:t,label:"topPadding"},valueRight:{value:i,label:"rightPadding"},valueBottom:{value:a,label:"bottomPadding"},valueLeft:{value:l,label:"leftPadding"},valueTopTablet:{value:o,label:"topPaddingTablet"},valueRightTablet:{value:c,label:"rightPaddingTablet"},valueBottomTablet:{value:n,label:"bottomPaddingTablet"},valueLeftTablet:{value:s,label:"leftPaddingTablet"},valueTopMobile:{value:u,label:"topPaddingMobile"},valueRightMobile:{value:d,label:"rightPaddingMobile"},valueBottomMobile:{value:p,label:"bottomPaddingMobile"},valueLeftMobile:{value:b,label:"leftPaddingMobile"},unit:{value:W,label:"desktopPaddingType"},mUnit:{value:I,label:"mobilePaddingType"},tUnit:{value:V,label:"tabletPaddingType"},attributes:e.attributes,setAttributes:te,link:{value:Y,label:"paddingLink"}})),React.createElement(Pl,kj({},e,{label:Object(r.__)("Margin","ultimate-addons-for-gutenberg"),valueTop:{value:g,label:"topMargin"},valueRight:{value:f,label:"rightMargin"},valueBottom:{value:m,label:"bottomMargin"},valueLeft:{value:y,label:"leftMargin"},valueTopTablet:{value:h,label:"topMarginTablet"},valueRightTablet:{value:T,label:"rightMarginTablet"},valueBottomTablet:{value:v,label:"bottomMarginTablet"},valueLeftTablet:{value:_,label:"leftMarginTablet"},valueTopMobile:{value:C,label:"topMarginMobile"},valueRightMobile:{value:k,label:"rightMarginMobile"},valueBottomMobile:{value:S,label:"bottomMarginMobile"},valueLeftMobile:{value:w,label:"leftMarginMobile"},unit:{value:Q,label:"desktopMarginType"},mUnit:{value:J,label:"mobileMarginType"},tUnit:{value:X,label:"tabletMarginType"},attributes:e.attributes,setAttributes:te,link:{value:K,label:"marginLink"}})))),React.createElement(il,kj({},rl,{parentProps:e}))))}),Aj=a(153),Gj=0,Mj={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Rj={};Rj.locals=Aj.a.locals||{},Rj.use=function(){return Gj++||(Pj=ke()(Aj.a,Mj)),Rj},Rj.unuse=function(){Gj>0&&!--Gj&&(Pj(),Pj=null)};var Bj=Rj,Uj=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(Bj.use(),()=>{Bj.unuse()}),[]);const{attributes:{align:t,backgroundType:a,alignMobile:l,alignTablet:i,block_id:o},isSelected:n,className:r,deviceType:s}=e,c=n?"active":"not-active",u="center"===t?"":"uagb-column__align-"+t,p=""===l?"":"uagb-column__align-mobile-"+l,b=""===i?"":"uagb-column__align-tablet-"+i;return React.createElement("div",{className:Be()(r,"uagb-column__wrap","uagb-column__background-"+a,"uagb-column__edit-"+c,u,p,b,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+o)},React.createElement("div",{className:"uagb-column__overlay"}),React.createElement(ge.InnerBlocks,{templateLock:!1}))}),Ej=Object(L.compose)(vs,fe)(e=>{const{setAttributes:t,attributes:a,attributes:{backgroundOpacity:l,backgroundImageColor:i,gradientOverlayColor1:o,gradientOverlayColor2:n,backgroundType:r,overlayType:s,gradientOverlayAngle:c,gradientOverlayLocation1:u,gradientOverlayPosition:p,gradientOverlayLocation2:b,gradientOverlayType:d,borderStyle:g,borderWidth:m,borderRadius:y,borderColor:f,borderHoverColor:h},isSelected:v,clientId:_,deviceType:T}=e;Object(B.useEffect)(()=>{if(101!==l&&"image"===r&&"gradient"===s){const e=uE(pl(o),l),a=uE(pl(n),l);let i;i="linear"===d?`linear-gradient(${c}deg, ${e} ${u}%, ${a} ${b}%)`:`radial-gradient( at ${p}, ${e} ${u}%, ${a} ${b}%)`,t({gradientValue:i})}if("image"===r&&101!==l){const e=uE(pl(i),l);t({backgroundImageColor:e}),t({backgroundOpacity:101})}(m||y||f||h||g)&&ue("column",{label:"borderWidth",value:m},{label:"borderRadius",value:y},{label:"borderColor",value:f},{label:"borderHoverColor",value:h},{label:"borderStyle",value:g},t,a)},[]),Object(B.useEffect)(()=>{Bs()},[T]);const C=Object(B.useMemo)(()=>function(e,t,a){const l=a.toLowerCase(),{colWidth:i,colWidthTablet:o,colWidthMobile:n,topPadding:r,bottomPadding:s,leftPadding:c,rightPadding:u,topMargin:p,bottomMargin:b,leftMargin:d,rightMargin:g,topPaddingTablet:m,bottomPaddingTablet:y,leftPaddingTablet:f,rightPaddingTablet:h,topMarginTablet:v,bottomMarginTablet:_,leftMarginTablet:T,rightMarginTablet:C,topPaddingMobile:S,bottomPaddingMobile:w,leftPaddingMobile:k,rightPaddingMobile:P,topMarginMobile:x,bottomMarginMobile:A,leftMarginMobile:G,rightMarginMobile:M,backgroundType:R,backgroundImage:B,backgroundPosition:U,backgroundAttachment:E,backgroundRepeat:O,backgroundSize:L,mobileMarginType:H,tabletMarginType:j,desktopMarginType:F,mobilePaddingType:z,tabletPaddingType:D,desktopPaddingType:N,columnBorderHColor:I}=e,V=rs(e,"column"),W=rs(e,"column","tablet"),q=rs(e,"column","mobile"),Z=U.replace("-"," ");let $={},Y={};const K={"padding-top":ns(r,N),"padding-bottom":ns(s,N),"padding-left":ns(c,N),"padding-right":ns(u,N),"margin-top":ns(p,F),"margin-bottom":ns(b,F),"margin-left":ns(d,F),"margin-right":ns(g,F),...V};"image"===R&&(K["background-image"]=B?`url(${B.url})`:null,K["background-position"]=Z,K["background-attachment"]=E,K["background-repeat"]=O,K["background-size"]=L);const J={":before":wj(e),":after":wj(e),"":K};J[".block-editor-block-list__block:hover"]={"border-color":I},$={"":{"padding-top":ns(m,D),"padding-bottom":ns(y,D),"padding-left":ns(f,D),"padding-right":ns(h,D),"margin-top":ns(v,j),"margin-bottom":ns(_,j),"margin-left":ns(T,j),"margin-right":ns(C,j),...W}},Y={"":{"padding-top":ns(S,z),"padding-bottom":ns(w,z),"padding-left":ns(k,z),"padding-right":ns(P,z),"margin-top":ns(x,H),"margin-bottom":ns(A,H),"margin-left":ns(G,H),"margin-right":ns(M,H),...q}},""!==i&&0!==i&&(J[".block-editor-block-list__block"]={width:i+"%"}),""!==o&&0!==o&&($[".block-editor-block-list__block"]={width:o+"%"}),""!==n&&0!==n&&(Y[".block-editor-block-list__block"]={width:n+"%"});let X="";const Q="#block-"+t;return X=ae(J,Q),"tablet"!==l&&"mobile"!==l||(X+=ae($,""+Q,!0,"tablet"),"mobile"===l&&(X+=ae(Y,""+Q,!0,"mobile"))),X}(a,_,T),[a,T]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:C}),v&&React.createElement(xj,e),React.createElement(Uj,e))});const Oj={block_id:{type:"string"},classMigrate:{type:"boolean",default:!1},align:{type:"string",default:"center"},alignTablet:{type:"string",default:""},alignMobile:{type:"string",default:""},topPadding:{type:"number",default:""},bottomPadding:{type:"number",default:""},leftPadding:{type:"number",default:""},rightPadding:{type:"number",default:""},topMargin:{type:"number",default:""},bottomMargin:{type:"number",default:""},leftMargin:{type:"number",default:""},rightMargin:{type:"number",default:""},topPaddingTablet:{type:"number",default:""},bottomPaddingTablet:{type:"number",default:""},leftPaddingTablet:{type:"number",default:""},rightPaddingTablet:{type:"number",default:""},topMarginTablet:{type:"number",default:""},bottomMarginTablet:{type:"number",default:""},leftMarginTablet:{type:"number",default:""},rightMarginTablet:{type:"number",default:""},topPaddingMobile:{type:"number",default:""},bottomPaddingMobile:{type:"number",default:""},leftPaddingMobile:{type:"number",default:""},rightPaddingMobile:{type:"number",default:""},topMarginMobile:{type:"number",default:""},bottomMarginMobile:{type:"number",default:""},leftMarginMobile:{type:"number",default:""},rightMarginMobile:{type:"number",default:""},colWidth:{type:"number",default:""},colWidthTablet:{type:"number",default:""},colWidthMobile:{type:"number",default:""},backgroundType:{type:"string"},backgroundImage:{type:"object"},backgroundPosition:{type:"string",default:"center-center"},backgroundSize:{type:"string",default:"cover"},backgroundRepeat:{type:"string",default:"no-repeat"},backgroundAttachment:{type:"string",default:"scroll"},backgroundColor:{type:"string"},gradientColor1:{type:"string"},gradientColor2:{type:"string"},gradientType:{type:"string",default:"linear"},gradientLocation1:{type:"number",default:0},gradientLocation2:{type:"number",default:100},gradientAngle:{type:"number",default:0},backgroundOpacity:{type:"number"},backgroundImageColor:{type:"string"},borderStyle:{type:"string",default:"none"},borderWidth:{type:"number",default:1},borderRadius:{type:"number"},borderColor:{type:"string"},overlayType:{type:"string",default:"color"},gradientOverlayColor1:{type:"string"},gradientOverlayColor2:{type:"string"},gradientOverlayType:{type:"string",default:"linear"},gradientOverlayLocation1:{type:"number",default:0},gradientOverlayLocation2:{type:"number",default:100},gradientOverlayAngle:{type:"number",default:0},mobileMarginType:{type:"string",default:"px"},tabletMarginType:{type:"string",default:"px"},desktopMarginType:{type:"string",default:"px"},mobilePaddingType:{type:"string",default:"px"},tabletPaddingType:{type:"string",default:"px"},desktopPaddingType:{type:"string",default:"px"},gradientValue:{type:"string",default:""},...ce("column")};var Lj=[{attributes:Oj,save(e){let{attributes:t,className:a}=e;const{block_id:l,backgroundType:i,align:o,alignMobile:n,alignTablet:r}=t,s="center"==o?"":"uagb-column__align-"+o,c=""==n?"":"uagb-column__align-mobile-"+n,u=""==r?"":"uagb-column__align-tablet-"+r;return React.createElement("div",{className:Be()(a,"uagb-column__wrap","uagb-column__background-"+i,s,c,u),id:"uagb-column-"+l},React.createElement("div",{className:"uagb-column__overlay"}),React.createElement("div",{className:"uagb-column__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}},{attributes:Oj,save(e){let{attributes:t,className:a}=e;const{block_id:l,backgroundType:i,align:o,alignMobile:n,alignTablet:r}=t,s="center"==o?"":"uagb-column__align-"+o,c=""==n?"":"uagb-column__align-mobile-"+n,u=""==r?"":"uagb-column__align-tablet-"+r;return React.createElement("div",{className:Be()(a,"uagb-column__wrap","uagb-column__background-"+i,s,c,u,"uagb-block-"+l)},React.createElement("div",{className:"uagb-column__overlay"}),React.createElement("div",{className:"uagb-column__inner-wrap"},React.createElement(ge.InnerBlocks.Content,null)))}}];a(373);let Hj={};Hj=Object(j.applyFilters)("uagb/column",ws(Hj)),Object(be.registerBlockType)("uagb/column",{...Hj,title:Object(r.__)("Column","ultimate-addons-for-gutenberg"),description:Object(r.__)("Immediate child of Advanced Columns","ultimate-addons-for-gutenberg"),icon:re("column"),parent:["uagb/columns"],supports:{inserter:!1,editorsKitBlockNavigator:!0,html:!1},attributes:Lt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"advanced-columns-child",isChildren:!0}):React.createElement(Ej,e),save:function(e){let{attributes:t,className:a}=e;const{block_id:l,backgroundType:i,align:o,alignMobile:n,alignTablet:r}=t,s="center"===o?"":"uagb-column__align-"+o,c=""===n?"":"uagb-column__align-mobile-"+n,u=""===r?"":"uagb-column__align-tablet-"+r;return React.createElement("div",{className:Be()(a,"uagb-column__wrap","uagb-column__background-"+i,s,c,u,"uagb-block-"+l)},React.createElement("div",{className:"uagb-column__overlay"}),React.createElement(ge.InnerBlocks.Content,null))},deprecated:Lj});var jj=Object(B.memo)(e=>{let{attributes:t}=e;const{labelFontFamily:a,labelFontWeight:l,labelLoadGoogleFonts:i,inputFontFamily:o,inputFontWeight:n,inputLoadGoogleFonts:r,buttonFontFamily:s,buttonFontWeight:c,buttonLoadGoogleFonts:u,radioCheckFontFamily:p,radioCheckFontWeight:b,radioCheckLoadGoogleFonts:d,validationMsgFontFamily:g,validationMsgFontWeight:m,validationMsgLoadGoogleFonts:y,msgFontFamily:f,msgFontWeight:h,msgLoadGoogleFonts:v}=t;let _,T,C,S,w,k;if(!0===i){const e={google:{families:[a+(l?":"+l:"")]}};C=React.createElement(O,{config:e})}if(!0===r){const e={google:{families:[o+(n?":"+n:"")]}};_=React.createElement(O,{config:e})}if(!0===u){const e={google:{families:[s+(c?":"+c:"")]}};T=React.createElement(O,{config:e})}if(!0===d){const e={google:{families:[p+(b?":"+b:"")]}};S=React.createElement(O,{config:e})}if(!0===y){const e={google:{families:[g+(m?":"+m:"")]}};w=React.createElement(O,{config:e})}if(!0===v){const e={google:{families:[f+(h?":"+h:"")]}};k=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,_,T,C,S,w,k)});function Fj(){return(Fj=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var zj,Dj=Object(B.memo)(e=>{const{setAttributes:t,attributes:a,deviceType:l}=e,{formId:i,align:o,fieldStyle:n,fieldBgColor:s,fieldLabelColor:c,fieldInputColor:u,buttonAlignment:p,buttonAlignmentTablet:b,buttonAlignmentMobile:d,buttonTextColor:g,buttonBgColor:m,buttonTextHoverColor:y,buttonBgHoverColor:f,fieldSpacing:h,fieldSpacingTablet:v,fieldSpacingMobile:_,fieldLabelSpacing:T,fieldLabelSpacingTablet:C,fieldLabelSpacingMobile:S,labelFontSize:w,labelFontSizeType:k,labelFontSizeTablet:P,labelFontSizeMobile:x,labelFontFamily:A,labelFontWeight:G,labelLineHeightType:M,labelLineHeight:R,labelLineHeightTablet:B,labelLineHeightMobile:U,labelLoadGoogleFonts:E,inputFontSize:O,inputFontSizeType:L,inputFontSizeTablet:H,inputFontSizeMobile:j,inputFontFamily:F,inputFontWeight:z,inputLineHeightType:D,inputLineHeight:N,inputLineHeightTablet:I,inputLineHeightMobile:V,inputLoadGoogleFonts:W,buttonFontSize:q,buttonFontSizeType:Z,buttonFontSizeTablet:$,buttonFontSizeMobile:Y,buttonFontFamily:K,buttonFontWeight:J,buttonLineHeightType:X,buttonLineHeight:Q,buttonLineHeightTablet:ee,buttonLineHeightMobile:te,buttonLoadGoogleFonts:ae,enableOveride:le,radioCheckSize:ie,radioCheckSizeTablet:oe,radioCheckSizeMobile:ne,radioCheckBgColor:re,radioCheckSelectColor:se,radioCheckLableColor:ce,radioCheckBorderColor:ue,radioCheckBorderWidth:pe,radioCheckBorderWidthTablet:be,radioCheckBorderWidthMobile:de,radioCheckBorderWidthUnit:me,radioCheckBorderRadius:ye,radioCheckFontSize:fe,radioCheckFontSizeType:he,radioCheckFontSizeTablet:ve,radioCheckFontSizeMobile:_e,radioCheckFontFamily:Te,radioCheckFontWeight:Se,radioCheckLineHeightType:we,radioCheckLineHeight:ke,radioCheckLineHeightTablet:Pe,radioCheckLineHeightMobile:xe,radioCheckLoadGoogleFonts:Ae,validationMsgPosition:Ge,validationMsgColor:Me,validationMsgBgColor:Re,enableHighlightBorder:Be,highlightBorderColor:Ue,validationMsgFontSize:Oe,validationMsgFontSizeType:He,validationMsgFontSizeTablet:je,validationMsgFontSizeMobile:ze,validationMsgFontFamily:De,validationMsgFontWeight:Ne,validationMsgLineHeightType:Ie,validationMsgLineHeight:Ve,validationMsgLineHeightTablet:We,validationMsgLineHeightMobile:qe,validationMsgLoadGoogleFonts:Ze,successMsgColor:$e,successMsgBgColor:Ye,successMsgBorderColor:Ke,errorMsgColor:Je,errorMsgBgColor:Xe,errorMsgBorderColor:Qe,msgBorderSize:et,msgBorderSizeUnit:tt,msgBorderRadius:at,msgFontSize:lt,msgFontSizeType:it,msgFontSizeTablet:ot,msgFontSizeMobile:nt,msgFontFamily:rt,msgFontWeight:st,msgLineHeightType:ct,msgLineHeight:ut,msgLineHeightTablet:pt,msgLineHeightMobile:bt,msgLoadGoogleFonts:dt,radioCheckBorderRadiusType:gt,msgBorderRadiusType:mt,messageTopPaddingDesktop:yt,messageRightPaddingDesktop:ft,messageBottomPaddingDesktop:ht,messageLeftPaddingDesktop:vt,messageTopPaddingTablet:_t,messageRightPaddingTablet:Tt,messageBottomPaddingTablet:Ct,messageLeftPaddingTablet:St,messageTopPaddingMobile:wt,messageRightPaddingMobile:kt,messageBottomPaddingMobile:Pt,messageLeftPaddingMobile:xt,messagePaddingTypeDesktop:At,messagePaddingTypeTablet:Gt,messagePaddingTypeMobile:Mt,messageSpacingLink:Rt,buttonTopPaddingDesktop:Bt,buttonRightPaddingDesktop:Ut,buttonBottomPaddingDesktop:Et,buttonLeftPaddingDesktop:Ot,buttonTopPaddingTablet:Lt,buttonRightPaddingTablet:Ht,buttonBottomPaddingTablet:jt,buttonLeftPaddingTablet:Ft,buttonTopPaddingMobile:zt,buttonRightPaddingMobile:Dt,buttonBottomPaddingMobile:Nt,buttonLeftPaddingMobile:It,buttonPaddingTypeDesktop:Vt,buttonPaddingTypeTablet:Wt,buttonPaddingTypeMobile:qt,buttonSpacingLink:Zt,fieldTopPaddingDesktop:$t,fieldRightPaddingDesktop:Yt,fieldBottomPaddingDesktop:Kt,fieldLeftPaddingDesktop:Jt,fieldTopPaddingTablet:Xt,fieldRightPaddingTablet:Qt,fieldBottomPaddingTablet:ea,fieldLeftPaddingTablet:ta,fieldTopPaddingMobile:aa,fieldRightPaddingMobile:la,fieldBottomPaddingMobile:ia,fieldLeftPaddingMobile:oa,fieldPaddingTypeDesktop:na,fieldPaddingTypeMobile:ra,fieldPaddingTypeTablet:sa,fieldSpacingLink:ca,labelFontStyle:ua,labelTransform:pa,labelDecoration:ba,inputFontStyle:da,inputTransform:ga,inputDecoration:ma,buttonFontStyle:ya,buttonTransform:fa,buttonDecoration:ha,radioCheckFontStyle:va,radioCheckTransform:_a,radioCheckDecoration:Ta,validationMsgFontStyle:Ca,validationMsgTransform:Sa,validationMsgDecoration:wa,msgFontStyle:ka,msgTransform:Pa,msgDecoration:xa,labelLetterSpacing:Aa,labelLetterSpacingTablet:Ga,labelLetterSpacingMobile:Ma,labelLetterSpacingType:Ra,inputLetterSpacing:Ba,inputLetterSpacingTablet:Ua,inputLetterSpacingMobile:Ea,inputLetterSpacingType:Oa,radioCheckLetterSpacing:La,radioCheckLetterSpacingTablet:Ha,radioCheckLetterSpacingMobile:ja,radioCheckLetterSpacingType:Fa,buttonLetterSpacing:za,buttonLetterSpacingTablet:Da,buttonLetterSpacingMobile:Ia,buttonLetterSpacingType:Va,validationMsgLetterSpacing:Wa,validationMsgLetterSpacingTablet:qa,validationMsgLetterSpacingMobile:Za,validationMsgLetterSpacingType:$a,msgLetterSpacing:Ya,msgLetterSpacingTablet:Ka,msgLetterSpacingMobile:Ja,msgLetterSpacingType:Xa,inputBorderBottomWidth:el,inputBorderBottomWidthTablet:al,inputBorderBottomWidthMobile:ll}=a,sl=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:g,data:{value:g,label:"buttonTextColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:m,data:{value:m,label:"buttonBgColor"},setAttributes:t})),cl=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:y,data:{value:y,label:"buttonTextHoverColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:f,data:{value:f,label:"buttonBgHoverColor"},setAttributes:t})),ul=React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg")},React.createElement(Pi,{label:Object(r.__)("Select Form","ultimate-addons-for-gutenberg"),data:{value:i},onChange:e=>{if(!e)return t({isHtml:!1}),void t({formId:null});t({isHtml:!1}),t({formId:e})},options:uagb_blocks_info.cf7_forms}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:o,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),pl=React.createElement(Fe,{title:Object(r.__)("Field","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:n,label:"fieldStyle"},options:[{value:"box",label:Object(r.__)("Box","ultimate-addons-for-gutenberg")},{value:"underline",label:Object(r.__)("Underline","ultimate-addons-for-gutenberg")}]})),bl=React.createElement(Fe,{title:Object(r.__)("Radio & Checkbox","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Override Current Style","ultimate-addons-for-gutenberg"),checked:le,onChange:()=>t({enableOveride:!le})})),dl=React.createElement(Fe,{title:Object(r.__)("Success/Error Message","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("Note: This styling can be only seen at frontend","ultimate-addons-for-gutenberg")),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Validation Message Position","ultimate-addons-for-gutenberg"),data:{value:Ge,label:"validationMsgPosition"},options:[{value:"default",label:Object(r.__)("Default","ultimate-addons-for-gutenberg")},{value:"bottom_right",label:Object(r.__)("Bottom Right Side of Field","ultimate-addons-for-gutenberg")}]}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Highlight Borders","ultimate-addons-for-gutenberg"),checked:Be,onChange:()=>t({enableHighlightBorder:!Be})})),gl=React.createElement(Fe,{title:Object(r.__)("Submit Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Button Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:p,label:"buttonAlignment"},tablet:{value:b,label:"buttonAlignmentTablet"},mobile:{value:d,label:"buttonAlignmentMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"justify",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Justified","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0})),ml=React.createElement(Fe,{title:Object(r.__)("Label & Input","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Label Color","ultimate-addons-for-gutenberg"),colorValue:c,data:{value:c,label:"fieldLabelColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Label Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:E,label:"labelLoadGoogleFonts"},fontFamily:{value:A,label:"labelFontFamily"},fontWeight:{value:G,label:"labelFontWeight"},fontStyle:{value:ua,label:"labelFontStyle"},transform:{value:pa,label:"labelTransform"},decoration:{value:ba,label:"labelDecoration"},fontSizeType:{value:k,label:"labelFontSizeType"},fontSize:{value:w,label:"labelFontSize"},fontSizeMobile:{value:x,label:"labelFontSizeMobile"},fontSizeTablet:{value:P,label:"labelFontSizeTablet"},lineHeightType:{value:M,label:"labelLineHeightType"},lineHeight:{value:R,label:"labelLineHeight"},lineHeightMobile:{value:U,label:"labelLineHeightMobile"},lineHeightTablet:{value:B,label:"labelLineHeightTablet"},letterSpacing:{value:Aa,label:"labelLetterSpacing"},letterSpacingTablet:{value:Ga,label:"labelLetterSpacingTablet"},letterSpacingMobile:{value:Ma,label:"labelLetterSpacingMobile"},letterSpacingType:{value:Ra,label:"labelLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Input Color","ultimate-addons-for-gutenberg"),colorValue:u,data:{value:u,label:"fieldInputColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Input Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:W,label:"inputLoadGoogleFonts"},fontFamily:{value:F,label:"inputFontFamily"},fontWeight:{value:z,label:"inputFontWeight"},fontStyle:{value:da,label:"inputFontStyle"},transform:{value:ga,label:"inputTransform"},decoration:{value:ma,label:"inputDecoration"},fontSizeType:{value:L,label:"inputFontSizeType"},fontSize:{value:O,label:"inputFontSize"},fontSizeMobile:{value:j,label:"inputFontSizeMobile"},fontSizeTablet:{value:H,label:"inputFontSizeTablet"},lineHeightType:{value:D,label:"inputLineHeightType"},lineHeight:{value:N,label:"inputLineHeight"},lineHeightMobile:{value:V,label:"inputLineHeightMobile"},lineHeightTablet:{value:I,label:"inputLineHeightTablet"},letterSpacing:{value:Ba,label:"inputLetterSpacing"},letterSpacingTablet:{value:Ua,label:"inputLetterSpacingTablet"},letterSpacingMobile:{value:Ea,label:"inputLetterSpacingMobile"},letterSpacingType:{value:Oa,label:"inputLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:s,data:{value:s,label:"fieldBgColor"},setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Label & Input Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:T,label:"fieldLabelSpacing"},tablet:{value:C,label:"fieldLabelSpacingTablet"},mobile:{value:S,label:"fieldLabelSpacingMobile"}},min:0,max:30,displayUnit:!1,setAttributes:t})),yl=React.createElement(Fe,{title:Object(r.__)("Field","ultimate-addons-for-gutenberg"),initialOpen:!0},"underline"===n&&React.createElement(tl,{label:Object(r.__)("Border Bottom","ultimate-addons-for-gutenberg"),data:{desktop:{value:el,label:"inputBorderBottomWidth"},tablet:{value:al,label:"inputBorderBottomWidthTablet"},mobile:{value:ll,label:"inputBorderBottomWidthMobile"}},min:0,max:20,displayUnit:!1,setAttributes:t}),React.createElement(Hi,{disabledBorderTitle:!1,setAttributes:t,borderHoverColorLabel:Object(r.__)("Active Color","ultimate-addons-for-gutenberg"),prefix:"input",attributes:a,deviceType:l,showWidth:"box"===n}),React.createElement(tl,{label:Object(r.__)("Fields Space","ultimate-addons-for-gutenberg"),data:{desktop:{value:h,label:"fieldSpacing"},tablet:{value:v,label:"fieldSpacingTablet"},mobile:{value:_,label:"fieldSpacingMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement(Pl,Fj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:$t,label:"fieldTopPaddingDesktop"},valueRight:{value:Yt,label:"fieldRightPaddingDesktop"},valueBottom:{value:Kt,label:"fieldBottomPaddingDesktop"},valueLeft:{value:Jt,label:"fieldLeftPaddingDesktop"},valueTopTablet:{value:Xt,label:"fieldTopPaddingTablet"},valueRightTablet:{value:Qt,label:"fieldRightPaddingTablet"},valueBottomTablet:{value:ea,label:"fieldBottomPaddingTablet"},valueLeftTablet:{value:ta,label:"fieldLeftPaddingTablet"},valueTopMobile:{value:aa,label:"fieldTopPaddingMobile"},valueRightMobile:{value:la,label:"fieldRightPaddingMobile"},valueBottomMobile:{value:ia,label:"fieldBottomPaddingMobile"},valueLeftMobile:{value:oa,label:"fieldLeftPaddingMobile"},unit:{value:na,label:"fieldPaddingTypeDesktop"},mUnit:{value:ra,label:"fieldPaddingTypeMobile"},tUnit:{value:sa,label:"fieldPaddingTypeTablet"},attributes:a,setAttributes:t,link:{value:ca,label:"fieldSpacingLink"}}))),fl=React.createElement(Fe,{title:Object(r.__)("Radio & Checkbox","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:ie,label:"radioCheckSize"},tablet:{value:oe,label:"radioCheckSizeTablet"},mobile:{value:ne,label:"radioCheckSizeMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Label Color","ultimate-addons-for-gutenberg"),colorValue:ce,data:{value:ce,label:"radioCheckLableColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Label Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Ae,label:"radioCheckLoadGoogleFonts"},fontFamily:{value:Te,label:"radioCheckFontFamily"},fontWeight:{value:Se,label:"radioCheckFontWeight"},fontStyle:{value:va,label:"radioCheckFontStyle"},transform:{value:_a,label:"radioCheckTransform"},decoration:{value:Ta,label:"radioCheckDecoration"},fontSizeType:{value:he,label:"radioCheckFontSizeType"},fontSize:{value:fe,label:"radioCheckFontSize"},fontSizeMobile:{value:_e,label:"radioCheckFontSizeMobile"},fontSizeTablet:{value:ve,label:"radioCheckFontSizeTablet"},lineHeightType:{value:we,label:"radioCheckLineHeightType"},lineHeight:{value:ke,label:"radioCheckLineHeight"},lineHeightMobile:{value:xe,label:"radioCheckLineHeightMobile"},lineHeightTablet:{value:Pe,label:"radioCheckLineHeightTablet"},letterSpacing:{value:La,label:"radioCheckLetterSpacing"},letterSpacingTablet:{value:Ha,label:"radioCheckLetterSpacingTablet"},letterSpacingMobile:{value:ja,label:"radioCheckLetterSpacingMobile"},letterSpacingType:{value:Fa,label:"radioCheckLetterSpacingType"}}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:re,data:{value:re,label:"radioCheckBgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Selected Color","ultimate-addons-for-gutenberg"),colorValue:se,data:{value:se,label:"radioCheckSelectColor"},setAttributes:t}),React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:pe,label:"radioCheckBorderWidth"},tablet:{value:be,label:"radioCheckBorderWidthTablet"},mobile:{value:de,label:"radioCheckBorderWidthMobile"}},min:0,max:50,unit:{value:me,label:"radioCheckBorderWidthUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ue,data:{value:ue,label:"radioCheckBorderColor"},setAttributes:t})),React.createElement(Qa,{label:Object(r.__)("Checkbox Rounded Corners","ultimate-addons-for-gutenberg"),setAttributes:t,value:ye,data:{value:ye,label:"radioCheckBorderRadius"},min:0,max:100,unit:{value:gt,label:"radioCheckBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),vl=React.createElement(Fe,{title:Object(r.__)("Submit Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:sl,hover:cl,disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:t,prefix:"btn",attributes:a,deviceType:l,disabledBorderTitle:!1}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:ae,label:"buttonLoadGoogleFonts"},fontFamily:{value:K,label:"buttonFontFamily"},fontWeight:{value:J,label:"buttonFontWeight"},fontStyle:{value:ya,label:"buttonFontStyle"},transform:{value:fa,label:"buttonTransform"},decoration:{value:ha,label:"buttonDecoration"},fontSizeType:{value:Z,label:"buttonFontSizeType"},fontSize:{value:q,label:"buttonFontSize"},fontSizeMobile:{value:Y,label:"buttonFontSizeMobile"},fontSizeTablet:{value:$,label:"buttonFontSizeTablet"},lineHeightType:{value:X,label:"buttonLineHeightType"},lineHeight:{value:Q,label:"buttonLineHeight"},lineHeightMobile:{value:te,label:"buttonLineHeightMobile"},lineHeightTablet:{value:ee,label:"buttonLineHeightTablet"},letterSpacing:{value:za,label:"buttonLetterSpacing"},letterSpacingTablet:{value:Da,label:"buttonLetterSpacingTablet"},letterSpacingMobile:{value:Ia,label:"buttonLetterSpacingMobile"},letterSpacingType:{value:Va,label:"buttonLetterSpacingType"}}),React.createElement(Pl,Fj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Bt,label:"buttonTopPaddingDesktop"},valueRight:{value:Ut,label:"buttonRightPaddingDesktop"},valueBottom:{value:Et,label:"buttonBottomPaddingDesktop"},valueLeft:{value:Ot,label:"buttonLeftPaddingDesktop"},valueTopTablet:{value:Lt,label:"buttonTopPaddingTablet"},valueRightTablet:{value:Ht,label:"buttonRightPaddingTablet"},valueBottomTablet:{value:jt,label:"buttonBottomPaddingTablet"},valueLeftTablet:{value:Ft,label:"buttonLeftPaddingTablet"},valueTopMobile:{value:zt,label:"buttonTopPaddingMobile"},valueRightMobile:{value:Dt,label:"buttonRightPaddingMobile"},valueBottomMobile:{value:Nt,label:"buttonBottomPaddingMobile"},valueLeftMobile:{value:It,label:"buttonLeftPaddingMobile"},unit:{value:Vt,label:"buttonPaddingTypeDesktop"},mUnit:{value:qt,label:"buttonPaddingTypeMobile"},tUnit:{value:Wt,label:"buttonPaddingTypeTablet"},attributes:a,setAttributes:t,link:{value:Zt,label:"buttonSpacingLink"}}))),_l=React.createElement(Fe,{title:Object(r.__)("Success/Error Message","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("Note: This styling can be only seen at frontend","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Validation Message Color","ultimate-addons-for-gutenberg"),colorValue:Me,data:{value:Me,label:"validationMsgColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Validation Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Ze,label:"validationMsgLoadGoogleFonts"},fontFamily:{value:De,label:"validationMsgFontFamily"},fontWeight:{value:Ne,label:"validationMsgFontWeight"},fontStyle:{value:Ca,label:"validationMsgFontStyle"},transform:{value:Sa,label:"validationMsgTransform"},decoration:{value:wa,label:"validationMsgDecoration"},fontSizeType:{value:He,label:"validationMsgFontSizeType"},fontSize:{value:Oe,label:"validationMsgFontSize"},fontSizeMobile:{value:ze,label:"validationMsgFontSizeMobile"},fontSizeTablet:{value:je,label:"validationMsgFontSizeTablet"},lineHeightType:{value:Ie,label:"validationMsgLineHeightType"},lineHeight:{value:Ve,label:"validationMsgLineHeight"},lineHeightMobile:{value:qe,label:"validationMsgLineHeightMobile"},lineHeightTablet:{value:We,label:"validationMsgLineHeightTablet"},letterSpacing:{value:Wa,label:"validationMsgLetterSpacing"},letterSpacingTablet:{value:qa,label:"validationMsgLetterSpacingTablet"},letterSpacingMobile:{value:Za,label:"validationMsgLetterSpacingMobile"},letterSpacingType:{value:$a,label:"validationMsgLetterSpacingType"}}),"bottom_right"===Ge&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Message Background Color","ultimate-addons-for-gutenberg"),colorValue:Re,data:{value:Re,label:"validationMsgBgColor"},setAttributes:t})),Be&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Highlight Border Color","ultimate-addons-for-gutenberg"),colorValue:Ue,data:{value:Ue,label:"highlightBorderColor"},setAttributes:t})),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("h2",null,Object(r.__)("Success/Error Message","ultimate-addons-for-gutenberg")),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:dt,label:"msgLoadGoogleFonts"},fontFamily:{value:rt,label:"msgFontFamily"},fontWeight:{value:st,label:"msgFontWeight"},fontStyle:{value:ka,label:"msgFontStyle"},transform:{value:Pa,label:"msgTransform"},decoration:{value:xa,label:"msgDecoration"},fontSizeType:{value:it,label:"msgFontSizeType"},fontSize:{value:lt,label:"msgFontSize"},fontSizeMobile:{value:nt,label:"msgFontSizeMobile"},fontSizeTablet:{value:ot,label:"msgFontSizeTablet"},lineHeightType:{value:ct,label:"msgLineHeightType"},lineHeight:{value:ut,label:"msgLineHeight"},lineHeightMobile:{value:bt,label:"msgLineHeightMobile"},lineHeightTablet:{value:pt,label:"msgLineHeightTablet"},letterSpacing:{value:Ya,label:"msgLetterSpacing"},letterSpacingTablet:{value:Ka,label:"msgLetterSpacingTablet"},letterSpacingMobile:{value:Ja,label:"msgLetterSpacingMobile"},letterSpacingType:{value:Xa,label:"msgLetterSpacingType"}}),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("h2",null,Object(r.__)("Success Message","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:$e,data:{value:$e,label:"successMsgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ye,data:{value:Ye,label:"successMsgBgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:Ke,data:{value:Ke,label:"successMsgBorderColor"},setAttributes:t}),React.createElement("hr",{className:"uagb-editor__separator"}),React.createElement("h2",null,Object(r.__)("Error Message","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:Je,data:{value:Je,label:"errorMsgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Xe,data:{value:Xe,label:"errorMsgBgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:Qe,data:{value:Qe,label:"errorMsgBorderColor"},setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),setAttributes:t,value:et,data:{value:et,label:"msgBorderSize"},min:0,max:50,unit:{value:tt,label:"msgBorderSizeUnit"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),React.createElement(Qa,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:at,data:{value:at,label:"msgBorderRadius"},min:0,max:100,unit:{value:mt,label:"msgBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Pl,Fj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:yt,label:"messageTopPaddingDesktop"},valueRight:{value:ft,label:"messageRightPaddingDesktop"},valueBottom:{value:ht,label:"messageBottomPaddingDesktop"},valueLeft:{value:vt,label:"messageLeftPaddingDesktop"},valueTopTablet:{value:_t,label:"messageTopPaddingTablet"},valueRightTablet:{value:Tt,label:"messageRightPaddingTablet"},valueBottomTablet:{value:Ct,label:"messageBottomPaddingTablet"},valueLeftTablet:{value:St,label:"messageLeftPaddingTablet"},valueTopMobile:{value:wt,label:"messageTopPaddingMobile"},valueRightMobile:{value:kt,label:"messageRightPaddingMobile"},valueBottomMobile:{value:Pt,label:"messageBottomPaddingMobile"},valueLeftMobile:{value:xt,label:"messageLeftPaddingMobile"},unit:{value:At,label:"messagePaddingTypeDesktop"},mUnit:{value:Mt,label:"messagePaddingTypeMobile"},tUnit:{value:Gt,label:"messagePaddingTypeTablet"},attributes:a,setAttributes:t,link:{value:Rt,label:"messageSpacingLink"}})));return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{key:"controls"},React.createElement(ge.AlignmentToolbar,{value:o,onChange:e=>t({align:e})})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,ul,pl,bl,gl,dl),React.createElement(il,nl,yl,ml,le&&fl,vl,_l),React.createElement(il,Fj({},rl,{parentProps:e})))))}),Nj=a(154),Ij=0,Vj={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},Wj={};Wj.locals=Nj.a.locals||{},Wj.use=function(){return Ij++||(zj=ke()(Nj.a,Vj)),Wj},Wj.unuse=function(){Ij>0&&!--Ij&&(zj(),zj=null)};var qj=Wj,Zj=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(qj.use(),()=>{qj.unuse()}),[]);const{className:t,attributes:a,deviceType:l}=e,{block_id:i,formId:o,align:n,isHtml:s,formJson:c,fieldStyle:u,buttonAlignment:p,buttonAlignmentTablet:b,buttonAlignmentMobile:d,enableOveride:g,validationMsgPosition:m,enableHighlightBorder:y}=a;let f="";return c&&c.data.html&&(f=c.data.html),0===parseInt(o)?React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Select a Contact Form 7","ultimate-addons-for-gutenberg")},React.createElement(Le.SelectControl,{value:o,onChange:t=>{const{setAttributes:a}=e;if(!t)return a({isHtml:!1}),void a({formId:null});a({isHtml:!1}),a({formId:t})},options:uagb_blocks_info.cf7_forms})):React.createElement("div",{className:Be()(t,"uagb-cf7-styler__outer-wrap","uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-block-"+i)},React.createElement("div",{className:Be()("uagb-cf7-styler__align-"+n,"uagb-cf7-styler__field-style-"+u,"uagb-cf7-styler__btn-align-"+p,"uagb-cf7-styler__btn-align-tablet-"+b,"uagb-cf7-styler__btn-align-mobile-"+d,"uagb-cf7-styler__highlight-style-"+m,g?"uagb-cf7-styler__check-style-enabled":"",y?"uagb-cf7-styler__highlight-border":"")},s&&React.createElement("div",{dangerouslySetInnerHTML:{__html:f}}),!1===s&&React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Loading","ultimate-addons-for-gutenberg")},React.createElement(Le.Spinner,null))))}),$j=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,clientId:l,attributes:i,attributes:{formId:o,isHtml:r,msgVrPadding:s,msgHrPadding:c,messageTopPaddingDesktop:u,messageBottomPaddingDesktop:p,messageRightPaddingDesktop:b,messageLeftPaddingDesktop:d,buttonVrPadding:g,buttonHrPadding:m,buttonTopPaddingDesktop:y,buttonBottomPaddingDesktop:f,buttonRightPaddingDesktop:h,buttonLeftPaddingDesktop:v,fieldVrPadding:_,fieldHrPadding:T,fieldTopPaddingDesktop:C,fieldBottomPaddingDesktop:S,fieldRightPaddingDesktop:w,fieldLeftPaddingDesktop:k,fieldBorderStyle:P,fieldBorderWidth:x,fieldBorderColor:A,fieldBorderHColor:G,fieldBorderRadius:M,inputBorderTopWidth:R,inputBorderLeftWidth:U,inputBorderRightWidth:E,inputBorderBottomWidth:O,inputBorderTopLeftRadius:L,inputBorderTopRightRadius:H,inputBorderBottomLeftRadius:j,inputBorderBottomRightRadius:F,inputBorderColor:z,inputBorderHColor:D,inputBorderStyle:N,buttonBorderWidth:I,buttonBorderRadius:V,buttonBorderColor:W,buttonBorderHColor:q,buttonBorderStyle:Z,btnBorderTopWidth:$,btnBorderLeftWidth:Y,btnBorderRightWidth:K,btnBorderBottomWidth:J,btnBorderTopLeftRadius:X,btnBorderTopRightRadius:Q,btnBorderBottomLeftRadius:ee,btnBorderBottomRightRadius:te,btnBorderColor:le,btnBorderHColor:ie,btnBorderStyle:oe,UAGHideDesktop:ne,UAGHideTab:re,UAGHideMob:se},deviceType:ce}=e;Object(n.useSelect)(e=>{let t="";if(o&&-1!==o&&0!==o&&!r){const e={nonce:uagb_blocks_info.uagb_ajax_nonce,formId:o};$l({url:uagb_blocks_info.ajax_url,action:"uagb_cf7_shortcode",data:e}).then(e=>{a({isHtml:!0}),a({formJson:e}),t=e})}return{formHTML:t}}),Object(B.useEffect)(()=>{s&&(u||a({messageTopPaddingDesktop:s}),p||a({messageBottomPaddingDesktop:s})),c&&(b||a({messageRightPaddingDesktop:c}),d||a({messageLeftPaddingDesktop:c})),g&&(void 0===y&&a({buttonTopPaddingDesktop:g}),void 0===f&&a({buttonBottomPaddingDesktop:g})),m&&(void 0===h&&a({buttonRightPaddingDesktop:m}),void 0===v&&a({buttonLeftPaddingDesktop:m})),_&&(void 0===C&&a({fieldTopPaddingDesktop:_}),void 0===S&&a({fieldBottomPaddingDesktop:_})),T&&(void 0===w&&a({fieldRightPaddingDesktop:T}),void 0===k&&a({fieldLeftPaddingDesktop:T})),x&&(void 0===R&&a({inputBorderTopWidth:x}),void 0===U&&a({inputBorderLeftWidth:x}),void 0===E&&a({inputBorderRightWidth:x}),void 0===O&&a({inputBorderBottomWidth:x})),M&&(void 0===L&&a({inputBorderTopLeftRadius:M}),void 0===H&&a({inputBorderTopRightRadius:M}),void 0===j&&a({inputBorderBottomLeftRadius:M}),void 0===F&&a({inputBorderBottomRightRadius:M})),A&&void 0===z&&a({inputBorderColor:A}),G&&void 0===D&&a({inputBorderHColor:G}),P&&void 0===N&&a({inputBorderStyle:P}),I&&(void 0===$&&a({btnBorderTopWidth:I}),void 0===Y&&a({btnBorderLeftWidth:I}),void 0===K&&a({btnBorderRightWidth:I}),void 0===J&&a({btnBorderBottomWidth:I})),V&&(void 0===X&&a({btnBorderTopLeftRadius:V}),void 0===Q&&a({btnBorderTopRightRadius:V}),void 0===ee&&a({btnBorderBottomLeftRadius:V}),void 0===te&&a({btnBorderBottomRightRadius:V})),W&&void 0===le&&a({btnBorderColor:W}),q&&void 0===ie&&a({btnBorderHColor:q}),Z&&void 0===oe&&a({btnBorderStyle:Z})},[]),Object(B.useEffect)(()=>{const e=document.querySelector(".wpcf7-submit");null!==e&&e.addEventListener("click",(function(e){e.preventDefault()}))},[e]),Object(B.useEffect)(()=>{Bs()},[ce]),Object(B.useEffect)(()=>{he(e)},[ne,re,se,ce]);const ue=Object(B.useMemo)(()=>function(e,t,a){const l=a.toLowerCase(),{block_id:i,align:o,fieldBgColor:n,fieldLabelColor:r,fieldInputColor:s,inputBorderHColor:c,buttonTextColor:u,buttonBgColor:p,buttonTextHoverColor:b,buttonBgHoverColor:d,btnBorderHColor:g,fieldSpacing:m,fieldSpacingTablet:y,fieldSpacingMobile:f,fieldLabelSpacing:h,fieldLabelSpacingTablet:v,fieldLabelSpacingMobile:_,labelFontSize:T,labelFontSizeType:C,labelFontSizeTablet:S,labelFontSizeMobile:w,labelFontFamily:k,labelFontWeight:P,labelLineHeightType:x,labelLineHeight:A,labelLineHeightTablet:G,labelLineHeightMobile:M,inputFontSize:R,inputFontSizeType:B,inputFontSizeTablet:U,inputFontSizeMobile:E,inputFontFamily:O,inputFontWeight:L,inputLineHeightType:H,inputLineHeight:j,inputLineHeightTablet:F,inputLineHeightMobile:z,buttonFontSize:D,buttonFontSizeType:N,buttonFontSizeTablet:I,buttonFontSizeMobile:V,buttonFontFamily:W,buttonFontWeight:q,buttonLineHeightType:Z,buttonLineHeight:$,buttonLineHeightTablet:Y,buttonLineHeightMobile:K,radioCheckSize:J,radioCheckSizeTablet:X,radioCheckSizeMobile:Q,radioCheckBgColor:ee,radioCheckSelectColor:te,radioCheckLableColor:le,radioCheckBorderColor:ie,radioCheckBorderWidth:oe,radioCheckBorderWidthTablet:ne,radioCheckBorderWidthMobile:re,radioCheckBorderWidthUnit:se,radioCheckBorderRadius:ce,radioCheckFontSize:ue,radioCheckFontSizeType:pe,radioCheckFontSizeTablet:be,radioCheckFontSizeMobile:de,radioCheckFontFamily:ge,radioCheckFontWeight:me,radioCheckLineHeightType:ye,radioCheckLineHeight:fe,radioCheckLineHeightTablet:he,radioCheckLineHeightMobile:ve,validationMsgFontSizeType:_e,validationMsgFontSizeTablet:Te,validationMsgFontSizeMobile:Ce,validationMsgLineHeightType:Se,validationMsgLineHeightTablet:we,validationMsgLineHeightMobile:ke,radioCheckBorderRadiusType:Pe,buttonTopPaddingDesktop:xe,buttonRightPaddingDesktop:Ae,buttonBottomPaddingDesktop:Ge,buttonLeftPaddingDesktop:Me,buttonTopPaddingTablet:Re,buttonRightPaddingTablet:Be,buttonBottomPaddingTablet:Ue,buttonLeftPaddingTablet:Ee,buttonTopPaddingMobile:Oe,buttonRightPaddingMobile:Le,buttonBottomPaddingMobile:He,buttonLeftPaddingMobile:je,buttonPaddingTypeDesktop:Fe,buttonPaddingTypeTablet:ze,buttonPaddingTypeMobile:De,fieldTopPaddingDesktop:Ne,fieldRightPaddingDesktop:Ie,fieldBottomPaddingDesktop:Ve,fieldLeftPaddingDesktop:We,fieldTopPaddingTablet:qe,fieldRightPaddingTablet:Ze,fieldBottomPaddingTablet:$e,fieldLeftPaddingTablet:Ye,fieldTopPaddingMobile:Ke,fieldRightPaddingMobile:Je,fieldBottomPaddingMobile:Xe,fieldLeftPaddingMobile:Qe,fieldPaddingTypeDesktop:et,fieldPaddingTypeTablet:tt,fieldPaddingTypeMobile:at,labelFontStyle:lt,labelTransform:it,labelDecoration:ot,inputFontStyle:nt,inputTransform:rt,inputDecoration:st,buttonFontStyle:ct,buttonTransform:ut,buttonDecoration:pt,radioCheckFontStyle:bt,radioCheckTransform:dt,radioCheckDecoration:gt,labelLetterSpacing:mt,labelLetterSpacingTablet:yt,labelLetterSpacingMobile:ft,labelLetterSpacingType:ht,inputLetterSpacing:vt,inputLetterSpacingTablet:_t,inputLetterSpacingMobile:Tt,inputLetterSpacingType:Ct,radioCheckLetterSpacing:St,radioCheckLetterSpacingTablet:wt,radioCheckLetterSpacingMobile:kt,radioCheckLetterSpacingType:Pt,buttonLetterSpacing:xt,buttonLetterSpacingTablet:At,buttonLetterSpacingMobile:Gt,buttonLetterSpacingType:Mt,validationMsgLetterSpacingTablet:Rt,validationMsgLetterSpacingMobile:Bt,validationMsgLetterSpacingType:Ut,inputBorderBottomWidth:Et}=e,Ot=rs(e,"input"),Lt=rs(e,"input","tablet"),Ht=rs(e,"input","mobile"),jt=rs(e,"btn"),Ft=rs(e,"btn","tablet"),zt=rs(e,"btn","mobile");Ot["border-color"]=""===Ot["border-color"]?"#EEEEEE":Ot["border-color"],Lt["border-color"]=""===Lt["border-color"]?"#EEEEEE":Lt["border-color"],Ht["border-color"]=""===Ht["border-color"]?"#EEEEEE":Ht["border-color"];const Dt={" .wpcf7 .wpcf7-form":{"text-align":o}," .wpcf7 form.wpcf7-form:not(input)":{color:r}," .wpcf7 input:not([type=submit])":{"background-color":n,color:s,"padding-left":ns(We,et),"padding-right":ns(Ie,et),"padding-top":ns(Ne,et),"padding-bottom":ns(Ve,et),"margin-top":ns(h,"px"),"margin-bottom":ns(m,"px"),"font-size":ns(R,B),"font-family":O,"font-style":nt,"text-decoration":st,"text-transform":rt,"font-weight":L,"line-height":ns(j,H),"text-align":o,"letter-spacing":ns(vt,Ct),...Ot}," .wpcf7 select":{"background-color":n,color:r,"margin-top":ns(h,"px"),"margin-bottom":ns(m,"px"),"font-size":ns(R,B),"font-family":O,"font-weight":L,"line-height":ns(j,H),"text-align":o,"letter-spacing":ns(vt,Ct),...Ot}," .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple='multiple'])":{"padding-left":ns(We,et),"padding-right":ns(Ie,et),"padding-top":ns(Ne,et),"padding-bottom":ns(Ve,et)}," .wpcf7 select.wpcf7-select[multiple='multiple'] option":{"padding-left":ns(We,et),"padding-right":ns(Ie,et),"padding-top":ns(Ne,et),"padding-bottom":ns(Ve,et)}," .wpcf7 textarea":{"background-color":n,color:s,...Ot,"padding-left":ns(We,et),"padding-right":ns(Ie,et),"padding-top":ns(Ne,et),"padding-bottom":ns(Ve,et),"margin-top":ns(h,"px"),"margin-bottom":ns(m,"px"),"font-size":ns(R,B),"font-family":O,"font-weight":L,"line-height":ns(j,H),"text-align":o,"letter-spacing":ns(vt,Ct)}," .wpcf7 input::placeholder":{color:s,"text-align":o}," .wpcf7 textarea::placeholder":{color:s,"text-align":o}," .wpcf7 form label":{"font-size":ns(T,C),"font-family":k,"font-style":lt,"text-decoration":ot,"text-transform":it,"font-weight":P,"line-height":ns(A,x),"letter-spacing":ns(mt,ht)}," .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(T,C),"font-family":k,"font-style":lt,"text-decoration":ot,"text-transform":it,"font-weight":P,"line-height":ns(A,x),"letter-spacing":ns(mt,ht)}," .wpcf7 form input:not([type=submit]):focus":{"border-color":c}," .wpcf7 form select:focus":{"border-color":c}," .wpcf7 textarea:focus":{"border-color":c}," .wpcf7 input.wpcf7-form-control.wpcf7-submit":{color:u,"background-color":p,"font-size":ns(D,N),"font-family":W,"font-style":ct,"text-decoration":pt,"text-transform":ut,"font-weight":q,"line-height":ns($,Z),...jt,"padding-left":ns(Me,Fe),"padding-right":ns(Ae,Fe),"padding-top":ns(xe,Fe),"padding-bottom":ns(Ge,Fe),"letter-spacing":ns(xt,Mt)}," .wpcf7 input.wpcf7-form-control.wpcf7-submit:hover":{color:b,"background-color":d,"border-color":g}," .wpcf7 .wpcf7-checkbox input[type='checkbox']:checked + span:before":{"background-color":n,color:s,"font-size":"calc( "+Ne+"px / 1.2 )","border-color":c}," .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":{"background-color":n,color:s,display:"inline-flex",height:ns(Ne,"px"),width:ns(Ne,"px"),"font-size":"calc( "+Ne+"px / 1.2 )"}," .wpcf7 .wpcf7-acceptance input[type='checkbox']:checked + span:before":{"background-color":n,color:s,"border-color":c}," .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":{"background-color":n,color:s,height:ns(Ne,"px"),width:ns(Ne,"px"),"font-size":"calc( "+Ne+"px / 1.2 )",...Ot}," .wpcf7 .wpcf7-radio input[type='radio'] + span:before":{"background-color":n,color:s,display:"inline-flex","border-radius":"100%",height:"calc( "+Ne+"px / 1.2 )",width:"calc( "+Ne+"px / 1.2 )"}," .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .uagb-cf7-styler__field-style-underline select":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .uagb-cf7-styler__field-style-underline textarea":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .uagb-cf7-styler__field-style-underline .wpcf7-checkbox input[type='checkbox'] + span:before":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .uagb-cf7-styler__field-style-underline .wpcf7 input[type='radio'] + span:before":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .uagb-cf7-styler__field-style-underline .wpcf7-acceptance input[type='checkbox'] + span:before":{"border-style":"none","border-bottom-style":Ot["border-style"],"border-bottom-width":ns(Et,"px")}," .wpcf7-radio input[type='radio']:checked + span:before":{"background-color":s,"border-color":c,display:"inline-flex"}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":{"background-color":ee,color:te,"justify-content":"center",height:ns(J,"px"),width:ns(J,"px"),"font-size":"calc( "+J+"px / 1.2 )","border-color":ie,"border-width":ns(oe,se),"border-radius":ns(ce,Pe)}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type='checkbox']:checked + span:before":{"border-color":c}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":{"background-color":ee,display:"inline-flex",color:te,"justify-content":"center",height:ns(J,"px"),width:ns(J,"px"),"font-size":"calc( "+J+"px / 1.2 )","border-color":ie,"border-width":ns(oe,se),"border-radius":ns(ce,Pe)}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type='checkbox']:checked + span:before":{"border-color":c}," .uagb-cf7-styler__check-style-enabled .wpcf7 input[type='radio'] + span:before":{"background-color":ee,color:te,height:ns(J,"px"),width:ns(J,"px"),"font-size":"calc( "+J+"px / 1.2 )","border-color":ie,"border-width":ns(oe,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7-radio input[type='radio']:checked + span:before":{"background-color":te,"border-color":c}," .uagb-cf7-styler__check-style-enabled .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(ue,pe),"font-family":ge,"font-style":bt,"text-decoration":gt,"text-transform":dt,"font-weight":me,"line-height":ns(fe,ye),color:le,"letter-spacing":ns(St,Pt)}},Nt={"padding-left":ns(Ye,tt),"padding-right":ns(Ze,tt),"padding-top":ns(qe,tt),"padding-bottom":ns($e,tt)},It={" .wpcf7 input:not([type=submit])":{...Lt,...Nt}," .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":{...Lt,...Nt}," .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":{...Lt,...Nt}," .wpcf7 .wpcf7-radio input[type='radio'] + span:before":{...Lt,...Nt}," .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])":{...Lt}," .uagb-cf7-styler__field-style-underline select":{...Lt}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":{height:ns(X,"px"),width:ns(X,"px"),"font-size":"calc( "+X+"px / 1.2 )","border-width":ns(ne,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":{height:ns(X,"px"),width:ns(X,"px"),"font-size":"calc( "+X+"px / 1.2 )","border-width":ns(ne,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 input[type='radio'] + span:before":{height:ns(X,"px"),width:ns(X,"px"),"font-size":"calc( "+X+"px / 1.2 )","border-width":ns(ne,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 input:not([type=submit])":{"font-size":ns(U,B),"line-height":ns(F,H),"margin-top":ns(v,"px"),"margin-bottom":ns(y,"px"),"letter-spacing":ns(_t,Ct)}," .wpcf7 select":{"font-size":ns(S,C),"line-height":ns(G,x),"letter-spacing":ns(yt,ht),...Lt}," .wpcf7 textarea":{"font-size":ns(U,B),"line-height":ns(F,H),"margin-top":ns(v,"px"),"margin-bottom":ns(y,"px"),"letter-spacing":ns(_t,Ct),...Lt,...Nt}," .wpcf7 form label":{"font-size":ns(S,C),"line-height":ns(G,x),"letter-spacing":ns(yt,ht)}," .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(S,C),"line-height":ns(G,x),"letter-spacing":ns(yt,ht)}," .wpcf7 input.wpcf7-form-control.wpcf7-submit":{"font-size":ns(I,N),"line-height":ns(Y,Z),"letter-spacing":ns(At,Mt),"padding-left":ns(Ee,ze),"padding-right":ns(Be,ze),"padding-top":ns(Re,ze),"padding-bottom":ns(Ue,ze),...Ft}," .uagb-cf7-styler__check-style-enabled .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(be,pe),"line-height":ns(he,ye),"letter-spacing":ns(wt,Pt)}," span.wpcf7-not-valid-tip":{"font-size":ns(Te,_e),"line-height":ns(we,Se),"letter-spacing":ns(Rt,Ut)},' .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple="multiple"])':Nt,' .wpcf7 select.wpcf7-select[multiple="multiple"] option':Nt},Vt={"padding-left":ns(Qe,at),"padding-right":ns(Je,at),"padding-top":ns(Ke,at),"padding-bottom":ns(Xe,at)},Wt={" .wpcf7 input:not([type=submit])":{...Ht,...Vt}," .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":Ht," .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":Ht," .wpcf7 .wpcf7-radio input[type='radio'] + span:before":Ht," .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])":Ht," .uagb-cf7-styler__field-style-underline select":Ht," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type='checkbox'] + span:before":{height:ns(Q,"px"),width:ns(Q,"px"),"font-size":"calc( "+Q+"px / 1.2 )","border-width":ns(re,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type='checkbox'] + span:before":{height:ns(Q,"px"),width:ns(Q,"px"),"font-size":"calc( "+Q+"px / 1.2 )","border-width":ns(re,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 input[type='radio'] + span:before":{height:ns(Q,"px"),width:ns(Q,"px"),"font-size":"calc( "+Q+"px / 1.2 )","border-width":ns(re,se)}," .uagb-cf7-styler__check-style-enabled .wpcf7 input:not([type=submit])":{"font-size":ns(E,B),"line-height":ns(z,H),"margin-top":ns(_,"px"),"margin-bottom":ns(f,"px"),"letter-spacing":ns(_t,Ct)}," .wpcf7 select":{"font-size":ns(w,C),"line-height":ns(M,x),"letter-spacing":ns(ft,ht),...Ht}," .wpcf7 textarea":{"font-size":ns(U,B),"line-height":ns(F,H),"margin-top":ns(_,"px"),"margin-bottom":ns(f,"px"),"letter-spacing":ns(Tt,Ct),...Ht,...Vt}," .wpcf7 form label":{"font-size":ns(E,B),"line-height":ns(z,H),"letter-spacing":ns(Tt,Ct)}," .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(w,C),"line-height":ns(M,x),"letter-spacing":ns(ft,ht)}," .wpcf7 input.wpcf7-form-control.wpcf7-submit":{"font-size":ns(V,N),"line-height":ns(K,Z),"letter-spacing":ns(Gt,Mt),"padding-left":ns(je,De),"padding-right":ns(Le,De),"padding-top":ns(Oe,De),"padding-bottom":ns(He,De),...zt}," .uagb-cf7-styler__check-style-enabled .wpcf7 form .wpcf7-list-item-label":{"font-size":ns(de,pe),"line-height":ns(ve,ye),"letter-spacing":ns(kt,Pt)}," span.wpcf7-not-valid-tip":{"font-size":ns(Ce,_e),"line-height":ns(ke,Se),"letter-spacing":ns(Bt,Ut)},' .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple="multiple"])':Vt,' .wpcf7 select.wpcf7-select[multiple="multiple"] option':Vt},qt=".editor-styles-wrapper .uagb-block-"+i;let Zt=ae(Dt,""+qt);return"tablet"!==l&&"mobile"!==l||(Zt+=ae(It,""+qt,!0,"tablet"),"mobile"===l&&(Zt+=ae(Wt,""+qt,!0,"mobile"))),Zt}(i,0,ce),[i,ce]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:ue}),React.createElement(jj,{attributes:i}),t&&React.createElement(Dj,e),React.createElement(Zj,e))});a(374);let Yj={};Yj=Object(j.applyFilters)("cf7-styler",ws(Yj)),uagb_blocks_info.cf7_is_active&&"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/cf7-styler",{...Yj,title:Object(r.__)("Contact Form 7 Designer","ultimate-addons-for-gutenberg"),description:Object(r.__)("Highly customize and style your Contact Form 7 forms .","ultimate-addons-for-gutenberg"),icon:re("cf7_styler"),keywords:[Object(r.__)("CF7 styler","ultimate-addons-for-gutenberg"),Object(r.__)("contact form styler","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"contact-form-7-styler"}):React.createElement($j,e),save:()=>null});function Kj(){return(Kj=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var Jj,Xj=Object(B.memo)(e=>{const{setAttributes:t,attributes:a}=e,{formId:l,align:i,enableAjax:o,enableTabSupport:n,formTabIndex:s,titleDescStyle:c,titleDescAlignment:u,fieldStyle:p,fieldBgColor:b,fieldLabelColor:d,fieldInputColor:g,fieldBorderStyle:m,fieldBorderWidth:y,fieldBorderWidthTablet:f,fieldBorderWidthMobile:h,fieldBorderWidthType:v,fieldBorderRadius:_,fieldBorderColor:T,fieldBorderFocusColor:C,textAreaHeight:S,textAreaHeightTablet:w,textAreaHeightMobile:k,buttonAlignment:P,buttonAlignmentTablet:x,buttonAlignmentMobile:A,buttonTextColor:G,buttonBgColor:M,buttonTextHoverColor:R,buttonBgHoverColor:B,buttonBorderStyle:U,buttonBorderWidth:E,buttonBorderWidthTablet:O,buttonBorderWidthMobile:L,buttonBorderWidthType:H,buttonBorderRadius:j,buttonBorderColor:F,buttonBorderHoverColor:z,fieldSpacing:D,fieldSpacingTablet:N,fieldSpacingMobile:I,fieldLabelSpacing:V,fieldLabelSpacingTablet:W,fieldLabelSpacingMobile:q,enableLabel:Z,labelFontSize:$,labelFontSizeType:Y,labelFontSizeTablet:K,labelFontSizeMobile:J,labelFontFamily:X,labelFontWeight:Q,labelLineHeightType:ee,labelLineHeight:te,labelLineHeightTablet:ae,labelLineHeightMobile:le,labelLoadGoogleFonts:ie,inputFontSize:oe,inputFontSizeType:ne,inputFontSizeTablet:re,inputFontSizeMobile:se,inputFontFamily:ce,inputFontWeight:ue,inputLineHeightType:pe,inputLineHeight:be,inputLineHeightTablet:de,inputLineHeightMobile:me,inputLoadGoogleFonts:ye,buttonFontSize:fe,buttonFontSizeType:he,buttonFontSizeTablet:ve,buttonFontSizeMobile:_e,buttonFontFamily:Te,buttonFontWeight:Se,buttonLineHeightType:we,buttonLineHeight:ke,buttonLineHeightTablet:Pe,buttonLineHeightMobile:xe,buttonLoadGoogleFonts:Ae,enableOveride:Ge,radioCheckSize:Me,radioCheckSizeTablet:Re,radioCheckSizeMobile:Be,radioCheckBgColor:Ue,radioCheckSelectColor:Oe,radioCheckLableColor:He,radioCheckBorderColor:je,radioCheckBorderWidth:ze,radioCheckBorderWidthTablet:De,radioCheckBorderWidthMobile:Ne,radioCheckBorderWidthType:Ie,radioCheckBorderRadius:Ve,radioCheckFontSize:We,radioCheckFontSizeType:qe,radioCheckFontSizeTablet:Ze,radioCheckFontSizeMobile:$e,radioCheckFontFamily:Ye,radioCheckFontWeight:Ke,radioCheckLineHeightType:Je,radioCheckLineHeight:Xe,radioCheckLineHeightTablet:Qe,radioCheckLineHeightMobile:et,radioCheckLoadGoogleFonts:tt,validationMsgColor:at,validationMsgBgColor:lt,advancedValidationSettings:it,highlightBorderColor:ot,validationMsgFontSize:nt,validationMsgFontSizeType:rt,validationMsgFontSizeTablet:st,validationMsgFontSizeMobile:ct,validationMsgFontFamily:ut,validationMsgFontWeight:pt,validationMsgLineHeightType:bt,validationMsgLineHeight:dt,validationMsgLineHeightTablet:gt,validationMsgLineHeightMobile:mt,validationMsgLoadGoogleFonts:yt,successMsgColor:ft,errorMsgColor:ht,errorMsgBgColor:vt,errorMsgBorderColor:_t,msgBorderSize:Tt,msgBorderSizeType:Ct,msgBorderRadius:St,msgFontSize:wt,msgFontSizeType:kt,msgFontSizeTablet:Pt,msgFontSizeMobile:xt,msgFontFamily:At,msgFontWeight:Gt,msgLineHeightType:Mt,msgLineHeight:Rt,msgLineHeightTablet:Bt,msgLineHeightMobile:Ut,msgLoadGoogleFonts:Et,radioCheckBorderRadiusType:Ot,msgBorderRadiusType:Lt,fieldBorderRadiusType:Ht,buttonBorderRadiusType:jt,successMsgLoadGoogleFonts:Ft,successMsgFontFamily:zt,successMsgFontWeight:Dt,successMsgFontSizeType:Nt,successMsgFontSize:It,successMsgFontSizeMobile:Vt,successMsgFontSizeTablet:Wt,successMsgLineHeightType:qt,successMsgLineHeight:Zt,successMsgLineHeightMobile:$t,successMsgLineHeightTablet:Yt,fieldtopPadding:Kt,fieldrightPadding:Jt,fieldbottomPadding:Xt,fieldleftPadding:Qt,fieldtopMobilePadding:ea,fieldrightMobilePadding:ta,fieldbottomMobilePadding:aa,fieldleftMobilePadding:la,fieldtopTabletPadding:ia,fieldrightTabletPadding:oa,fieldbottomTabletPadding:na,fieldleftTabletPadding:ra,fieldpaddingUnit:sa,fieldmobilePaddingUnit:ca,fieldtabletPaddingUnit:ua,fieldpaddingLink:pa,buttontopPadding:ba,buttonrightPadding:da,buttonbottomPadding:ga,buttonleftPadding:ma,buttontopMobilePadding:ya,buttonrightMobilePadding:fa,buttonbottomMobilePadding:ha,buttonleftMobilePadding:va,buttontopTabletPadding:_a,buttonrightTabletPadding:Ta,buttonbottomTabletPadding:Ca,buttonleftTabletPadding:Sa,buttonpaddingUnit:wa,buttonmobilePaddingUnit:ka,buttontabletPaddingUnit:Pa,buttonpaddingLink:xa,msgtopPadding:Aa,msgrightPadding:Ga,msgbottomPadding:Ma,msgleftPadding:Ra,msgtopMobilePadding:Ba,msgrightMobilePadding:Ua,msgbottomMobilePadding:Ea,msgleftMobilePadding:Oa,msgtopTabletPadding:La,msgrightTabletPadding:Ha,msgbottomTabletPadding:ja,msgleftTabletPadding:Fa,msgpaddingUnit:za,msgmobilePaddingUnit:Da,msgtabletPaddingUnit:Ia,msgpaddingLink:Va,labelFontStyle:Wa,labelTransform:qa,labelDecoration:Za,inputFontStyle:$a,inputTransform:Ya,inputDecoration:Ka,buttonFontStyle:Ja,buttonTransform:Xa,buttonDecoration:el,radioCheckFontStyle:al,radioCheckTransform:ll,radioCheckDecoration:sl,validationMsgFontStyle:cl,validationMsgTransform:ul,validationMsgDecoration:pl,msgFontStyle:bl,msgTransform:dl,msgDecoration:gl,successMsgDecoration:ml,successMsgFontStyle:yl,successMsgTransform:fl,labelLetterSpacing:vl,labelLetterSpacingTablet:_l,labelLetterSpacingMobile:Tl,labelLetterSpacingType:Cl,inputLetterSpacing:Sl,inputLetterSpacingTablet:wl,inputLetterSpacingMobile:kl,inputLetterSpacingType:xl,radioCheckLetterSpacing:Al,radioCheckLetterSpacingTablet:Gl,radioCheckLetterSpacingMobile:Ml,radioCheckLetterSpacingType:Rl,buttonLetterSpacing:Bl,buttonLetterSpacingTablet:Ul,buttonLetterSpacingMobile:El,buttonLetterSpacingType:Ol,validationMsgLetterSpacing:Ll,validationMsgLetterSpacingTablet:Hl,validationMsgLetterSpacingMobile:jl,validationMsgLetterSpacingType:Fl,msgLetterSpacing:zl,msgLetterSpacingTablet:Dl,msgLetterSpacingMobile:Nl,msgLetterSpacingType:Il,successMsgLetterSpacing:Vl,successMsgLetterSpacingTablet:Wl,successMsgLetterSpacingMobile:ql,successMsgLetterSpacingType:Zl}=a;return React.createElement(React.Fragment,null,React.createElement(ge.BlockControls,{key:"controls"},React.createElement(ge.AlignmentToolbar,{value:i,onChange:e=>t({align:e})})),React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg")},React.createElement(Pi,{label:Object(r.__)("Select Form","ultimate-addons-for-gutenberg"),data:{value:l},onChange:e=>{if(!e)return t({isHtml:!1}),void t({formId:null});t({isHtml:!1}),t({formId:e})},options:uagb_blocks_info.gf_forms}),React.createElement(Le.ToggleControl,{label:"Enable AJAX Form Submission",checked:o,onChange:()=>t({enableAjax:!o})}),React.createElement(Le.ToggleControl,{label:"Using Multiple Gravity Forms",checked:n,onChange:()=>t({enableTabSupport:!n})}),n&&React.createElement(Qa,{label:Object(r.__)("Tab Index","ultimate-addons-for-gutenberg"),setAttributes:t,value:s,data:{value:s,label:"formTabIndex"},min:0,max:500,displayUnit:!1}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Form Title & Description","ultimate-addons-for-gutenberg"),data:{value:c,label:"titleDescStyle"},options:[{value:"yes",label:Object(r.__)("Show","ultimate-addons-for-gutenberg")},{value:"none",label:Object(r.__)("Hide","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Field & Input Label Alignment","ultimate-addons-for-gutenberg"),data:{value:i,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),"none"!==c&&React.createElement(Na,{setAttributes:t,label:Object(r.__)("Title & Description Alignment","ultimate-addons-for-gutenberg"),data:{value:u,label:"titleDescAlignment"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Na,{setAttributes:t,label:Object(r.__)("Submit Button Alignment","ultimate-addons-for-gutenberg"),data:{desktop:{value:P,label:"buttonAlignment"},tablet:{value:x,label:"buttonAlignmentTablet"},mobile:{value:A,label:"buttonAlignmentMobile"}},options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")},{value:"justify",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-justify")}),tooltip:Object(r.__)("Justified","ultimate-addons-for-gutenberg")}],showIcons:!0,responsive:!0}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Field Style & Border","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:t,label:Object(r.__)("Field Style","ultimate-addons-for-gutenberg"),data:{value:p,label:"fieldStyle"},options:[{value:"box",label:Object(r.__)("Box","ultimate-addons-for-gutenberg")},{value:"underline",label:Object(r.__)("Underline","ultimate-addons-for-gutenberg")}]}),React.createElement(Pl,Kj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Kt,label:"fieldtopPadding"},valueRight:{value:Jt,label:"fieldrightPadding"},valueBottom:{value:Xt,label:"fieldbottomPadding"},valueLeft:{value:Qt,label:"fieldleftPadding"},valueTopTablet:{value:ia,label:"fieldtopTabletPadding"},valueRightTablet:{value:oa,label:"fieldrightTabletPadding"},valueBottomTablet:{value:na,label:"fieldbottomTabletPadding"},valueLeftTablet:{value:ra,label:"fieldleftTabletPadding"},valueTopMobile:{value:ea,label:"fieldtopMobilePadding"},valueRightMobile:{value:ta,label:"fieldrightMobilePadding"},valueBottomMobile:{value:aa,label:"fieldbottomMobilePadding"},valueLeftMobile:{value:la,label:"fieldleftMobilePadding"},unit:{value:sa,label:"fieldpaddingUnit"},mUnit:{value:ca,label:"fieldmobilePaddingUnit"},tUnit:{value:ua,label:"fieldtabletPaddingUnit"},attributes:a,setAttributes:t,link:{value:pa,label:"fieldpaddingLink"}})),"box"===p&&React.createElement(Pi,{label:Object(r.__)("Border Style","ultimate-addons-for-gutenberg"),data:{value:m,label:"fieldBorderStyle"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),("none"!==m||"underline"===p)&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:y,label:"fieldBorderWidth"},tablet:{value:f,label:"fieldBorderWidthTablet"},mobile:{value:h,label:"fieldBorderWidthMobile"}},min:0,max:50,unit:{value:v,label:"fieldBorderWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:_,data:{value:_,label:"fieldBorderRadius"},min:0,max:50,unit:{value:Ht,label:"fieldBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"active",title:Object(r.__)("Active","ultimate-addons-for-gutenberg")}],normal:("none"!==m||"underline"===p)&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:T||"",data:{value:T,label:"fieldBorderColor"},setAttributes:t})),active:("none"!==m||"underline"===p)&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:C||"",data:{value:C,label:"fieldBorderFocusColor"},setAttributes:t})),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Label","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:"Hide Label",checked:Z,onChange:()=>t({enableLabel:!Z})}),!Z&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:d||"",data:{value:d,label:"fieldLabelColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:ie,label:"labelLoadGoogleFonts"},fontFamily:{value:X,label:"labelFontFamily"},fontWeight:{value:Q,label:"labelFontWeight"},fontStyle:{value:Wa,label:"labelFontStyle"},transform:{value:qa,label:"labelTransform"},decoration:{value:Za,label:"labelDecoration"},fontSizeType:{value:Y,label:"labelFontSizeType"},fontSize:{value:$,label:"labelFontSize"},fontSizeMobile:{value:J,label:"labelFontSizeMobile"},fontSizeTablet:{value:K,label:"labelFontSizeTablet"},lineHeightType:{value:ee,label:"labelLineHeightType"},lineHeight:{value:te,label:"labelLineHeight"},lineHeightMobile:{value:le,label:"labelLineHeightMobile"},lineHeightTablet:{value:ae,label:"labelLineHeightTablet"},letterSpacing:{value:vl,label:"labelLetterSpacing"},letterSpacingTablet:{value:_l,label:"labelLetterSpacingTablet"},letterSpacingMobile:{value:Tl,label:"labelLetterSpacingMobile"},letterSpacingType:{value:Cl,label:"labelLetterSpacingType"}}))),React.createElement(Fe,{title:Object(r.__)("Input","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:g||"",data:{value:g,label:"fieldInputColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:b||"",data:{value:b,label:"fieldBgColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:ye,label:"inputLoadGoogleFonts"},fontFamily:{value:ce,label:"inputFontFamily"},fontWeight:{value:ue,label:"inputFontWeight"},fontStyle:{value:$a,label:"inputFontStyle"},transform:{value:Ya,label:"inputTransform"},decoration:{value:Ka,label:"inputDecoration"},fontSizeType:{value:ne,label:"inputFontSizeType"},fontSize:{value:oe,label:"inputFontSize"},fontSizeMobile:{value:se,label:"inputFontSizeMobile"},fontSizeTablet:{value:re,label:"inputFontSizeTablet"},lineHeightType:{value:pe,label:"inputLineHeightType"},lineHeight:{value:be,label:"inputLineHeight"},lineHeightMobile:{value:me,label:"inputLineHeightMobile"},lineHeightTablet:{value:de,label:"inputLineHeightTablet"},letterSpacing:{value:Sl,label:"inputLetterSpacing"},letterSpacingTablet:{value:wl,label:"inputLetterSpacingTablet"},letterSpacingMobile:{value:kl,label:"inputLetterSpacingMobile"},letterSpacingType:{value:xl,label:"inputLetterSpacingType"}}),React.createElement(tl,{label:Object(r.__)("Text Area Height","ultimate-addons-for-gutenberg"),data:{desktop:{value:S,label:"textAreaHeight"},tablet:{value:w,label:"textAreaHeightTablet"},mobile:{value:k,label:"textAreaHeightMobile"}},min:0,max:200,displayUnit:!1,setAttributes:t})),React.createElement(Fe,{title:Object(r.__)("Radio & Checkbox","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Override Current Style","ultimate-addons-for-gutenberg"),checked:Ge,onChange:()=>t({enableOveride:!Ge})}),Ge&&React.createElement(React.Fragment,null,React.createElement(tl,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),data:{desktop:{value:Me,label:"radioCheckSize"},tablet:{value:Re,label:"radioCheckSizeTablet"},mobile:{value:Be,label:"radioCheckSizeMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}),React.createElement("h2",null,Object(r.__)("Radio & Checkbox Label","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Label Color","ultimate-addons-for-gutenberg"),colorValue:He,data:{value:He,label:"radioCheckLableColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Ue,data:{value:Ue,label:"radioCheckBgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Selected Color","ultimate-addons-for-gutenberg"),colorValue:Oe,data:{value:Oe,label:"radioCheckSelectColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:tt,label:"radioCheckLoadGoogleFonts"},fontFamily:{value:Ye,label:"radioCheckFontFamily"},fontWeight:{value:Ke,label:"radioCheckFontWeight"},fontStyle:{value:al,label:"radioCheckFontStyle"},transform:{value:ll,label:"radioCheckTransform"},decoration:{value:sl,label:"radioCheckDecoration"},fontSizeType:{value:qe,label:"radioCheckFontSizeType"},fontSize:{value:We,label:"radioCheckFontSize"},fontSizeMobile:{value:$e,label:"radioCheckFontSizeMobile"},fontSizeTablet:{value:Ze,label:"radioCheckFontSizeTablet"},lineHeightType:{value:Je,label:"radioCheckLineHeightType"},lineHeight:{value:Xe,label:"radioCheckLineHeight"},lineHeightMobile:{value:et,label:"radioCheckLineHeightMobile"},lineHeightTablet:{value:Qe,label:"radioCheckLineHeightTablet"},letterSpacing:{value:Al,label:"radioCheckLetterSpacing"},letterSpacingTablet:{value:Gl,label:"radioCheckLetterSpacingTablet"},letterSpacingMobile:{value:Ml,label:"radioCheckLetterSpacingMobile"},letterSpacingType:{value:Rl,label:"radioCheckLetterSpacingType"}}),"none"!==m&&React.createElement(React.Fragment,null,React.createElement("h2",null,Object(r.__)("Radio & Checkbox Border","ultimate-addons-for-gutenberg")),React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:ze,label:"radioCheckBorderWidth"},tablet:{value:De,label:"radioCheckBorderWidthTablet"},mobile:{value:Ne,label:"radioCheckBorderWidthMobile"}},min:0,max:50,unit:{value:Ie,label:"radioCheckBorderWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:je||"",data:{value:je,label:"radioCheckBorderColor"},setAttributes:t})),React.createElement(Qa,{label:Object(r.__)("Checkbox Rounded Corners","ultimate-addons-for-gutenberg"),setAttributes:t,value:Ve,data:{value:Ve,label:"radioCheckBorderRadius"},min:0,max:50,unit:{value:Ot,label:"radioCheckBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}))),React.createElement(Fe,{title:Object(r.__)("Submit Button","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(React.Fragment,null,React.createElement(Pi,{label:Object(r.__)("Style","ultimate-addons-for-gutenberg"),data:{value:U,label:"buttonBorderStyle"},setAttributes:t,options:[{value:"none",label:Object(r.__)("None","ultimate-addons-for-gutenberg")},{value:"solid",label:Object(r.__)("Solid","ultimate-addons-for-gutenberg")},{value:"dotted",label:Object(r.__)("Dotted","ultimate-addons-for-gutenberg")},{value:"dashed",label:Object(r.__)("Dashed","ultimate-addons-for-gutenberg")},{value:"double",label:Object(r.__)("Double","ultimate-addons-for-gutenberg")},{value:"groove",label:Object(r.__)("Groove","ultimate-addons-for-gutenberg")},{value:"inset",label:Object(r.__)("Inset","ultimate-addons-for-gutenberg")},{value:"outset",label:Object(r.__)("Outset","ultimate-addons-for-gutenberg")},{value:"ridge",label:Object(r.__)("Ridge","ultimate-addons-for-gutenberg")}]}),"none"!==U&&React.createElement(tl,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),data:{desktop:{value:E,label:"buttonBorderWidth"},tablet:{value:O,label:"buttonBorderWidthTablet"},mobile:{value:L,label:"buttonBorderWidthMobile"}},min:0,max:50,unit:{value:H,label:"buttonBorderWidthType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}],setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:j,data:{value:j,label:"buttonBorderRadius"},min:0,max:50,unit:{value:jt,label:"buttonBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Ae,label:"buttonLoadGoogleFonts"},fontFamily:{value:Te,label:"buttonFontFamily"},fontWeight:{value:Se,label:"buttonFontWeight"},fontStyle:{value:Ja,label:"buttonFontStyle"},transform:{value:Xa,label:"buttonTransform"},decoration:{value:el,label:"buttonDecoration"},fontSizeType:{value:he,label:"buttonFontSizeType"},fontSize:{value:fe,label:"buttonFontSize"},fontSizeMobile:{value:_e,label:"buttonFontSizeMobile"},fontSizeTablet:{value:ve,label:"buttonFontSizeTablet"},lineHeightType:{value:we,label:"buttonLineHeightType"},lineHeight:{value:ke,label:"buttonLineHeight"},lineHeightMobile:{value:xe,label:"buttonLineHeightMobile"},lineHeightTablet:{value:Pe,label:"buttonLineHeightTablet"},letterSpacing:{value:Bl,label:"buttonLetterSpacing"},letterSpacingTablet:{value:Ul,label:"buttonLetterSpacingTablet"},letterSpacingMobile:{value:El,label:"buttonLetterSpacingMobile"},letterSpacingType:{value:Ol,label:"buttonLetterSpacingType"}}),React.createElement(Pl,Kj({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:ba,label:"buttontopPadding"},valueRight:{value:da,label:"buttonrightPadding"},valueBottom:{value:ga,label:"buttonbottomPadding"},valueLeft:{value:ma,label:"buttonleftPadding"},valueTopTablet:{value:_a,label:"buttontopTabletPadding"},valueRightTablet:{value:Ta,label:"buttonrightTabletPadding"},valueBottomTablet:{value:Ca,label:"buttonbottomTabletPadding"},valueLeftTablet:{value:Sa,label:"buttonleftTabletPadding"},valueTopMobile:{value:ya,label:"buttontopMobilePadding"},valueRightMobile:{value:fa,label:"buttonrightMobilePadding"},valueBottomMobile:{value:ha,label:"buttonbottomMobilePadding"},valueLeftMobile:{value:va,label:"buttonleftMobilePadding"},unit:{value:wa,label:"buttonpaddingUnit"},mUnit:{value:ka,label:"buttonmobilePaddingUnit"},tUnit:{value:Pa,label:"buttontabletPaddingUnit"},attributes:a,setAttributes:t,link:{value:xa,label:"buttonpaddingLink"}})),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:G||"",data:{value:G,label:"buttonTextColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:M,data:{value:M,label:"buttonBgColor"},setAttributes:t}),"none"!==U&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:F||"",data:{value:F,label:"buttonBorderColor"},setAttributes:t}))),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:R||"",data:{value:R,label:"buttonTextHoverColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:B,data:{value:B,label:"buttonBgHoverColor"},setAttributes:t}),"none"!==U&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:z||"",data:{value:z,label:"buttonBorderHoverColor"},setAttributes:t}))),disableBottomSeparator:!0})),React.createElement(Fe,{title:Object(r.__)("Success/Error Message","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement("p",{className:"uagb-settings-notice"},Object(r.__)("Note: This styling can be only seen on frontend","ultimate-addons-for-gutenberg")),React.createElement("h2",null,Object(r.__)("Field Validation","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Message Color","ultimate-addons-for-gutenberg"),colorValue:at||"",data:{value:at,label:"validationMsgColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:yt,label:"validationMsgLoadGoogleFonts"},fontFamily:{value:ut,label:"validationMsgFontFamily"},fontWeight:{value:pt,label:"validationMsgFontWeight"},fontStyle:{value:cl,label:"validationMsgFontStyle"},transform:{value:ul,label:"validationMsgTransform"},decoration:{value:pl,label:"validationMsgDecoration"},fontSizeType:{value:rt,label:"validationMsgFontSizeType"},fontSize:{value:nt,label:"validationMsgFontSize"},fontSizeMobile:{value:ct,label:"validationMsgFontSizeMobile"},fontSizeTablet:{value:st,label:"validationMsgFontSizeTablet"},lineHeightType:{value:bt,label:"validationMsgLineHeightType"},lineHeight:{value:dt,label:"validationMsgLineHeight"},lineHeightMobile:{value:mt,label:"validationMsgLineHeightMobile"},lineHeightTablet:{value:gt,label:"validationMsgLineHeightTablet"},letterSpacing:{value:Ll,label:"validationMsgLetterSpacing"},letterSpacingTablet:{value:Hl,label:"validationMsgLetterSpacingTablet"},letterSpacingMobile:{value:jl,label:"validationMsgLetterSpacingMobile"},letterSpacingType:{value:Fl,label:"validationMsgLetterSpacingType"}}),React.createElement(Pl,Kj({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Aa,label:"msgtopPadding"},valueRight:{value:Ga,label:"msgrightPadding"},valueBottom:{value:Ma,label:"msgbottomPadding"},valueLeft:{value:Ra,label:"msgleftPadding"},valueTopTablet:{value:La,label:"msgtopTabletPadding"},valueRightTablet:{value:Ha,label:"msgrightTabletPadding"},valueBottomTablet:{value:ja,label:"msgbottomTabletPadding"},valueLeftTablet:{value:Fa,label:"msgleftTabletPadding"},valueTopMobile:{value:Ba,label:"msgtopMobilePadding"},valueRightMobile:{value:Ua,label:"msgrightMobilePadding"},valueBottomMobile:{value:Ea,label:"msgbottomMobilePadding"},valueLeftMobile:{value:Oa,label:"msgleftMobilePadding"},unit:{value:za,label:"msgpaddingUnit"},mUnit:{value:Da,label:"msgmobilePaddingUnit"},tUnit:{value:Ia,label:"msgtabletPaddingUnit"},attributes:a,setAttributes:t,link:{value:Va,label:"msgpaddingLink"}})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Advanced Settings","ultimate-addons-for-gutenberg"),checked:it,onChange:()=>t({advancedValidationSettings:!it})}),it&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Field Background Color","ultimate-addons-for-gutenberg"),colorValue:lt||"",data:{value:lt,label:"validationMsgBgColor"},setAttributes:t})),it&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Highlight Border Color","ultimate-addons-for-gutenberg"),colorValue:ot||"",data:{value:ot,label:"highlightBorderColor"},setAttributes:t})),React.createElement("h2",null,Object(r.__)("Error Message Validation","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ht||"",data:{value:ht,label:"errorMsgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:vt||"",data:{value:vt,label:"errorMsgBgColor"},setAttributes:t}),React.createElement(hl,{label:Object(r.__)("Border Color","ultimate-addons-for-gutenberg"),colorValue:_t||"",data:{value:_t,label:"errorMsgBorderColor"},setAttributes:t}),React.createElement(Qa,{label:Object(r.__)("Border Width","ultimate-addons-for-gutenberg"),setAttributes:t,value:Tt,data:{value:Tt,label:"msgBorderSize"},min:0,max:50,unit:{value:Ct,label:"msgBorderSizeType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"}]}),React.createElement(Qa,{label:Object(r.__)("Border Radius","ultimate-addons-for-gutenberg"),setAttributes:t,value:St,data:{value:St,label:"msgBorderRadius"},min:0,max:50,unit:{value:Lt,label:"msgBorderRadiusType"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Et,label:"msgLoadGoogleFonts"},fontFamily:{value:At,label:"msgFontFamily"},fontWeight:{value:Gt,label:"msgFontWeight"},fontStyle:{value:bl,label:"msgFontStyle"},transform:{value:dl,label:"msgTransform"},decoration:{value:gl,label:"msgDecoration"},fontSizeType:{value:kt,label:"msgFontSizeType"},fontSize:{value:wt,label:"msgFontSize"},fontSizeMobile:{value:xt,label:"msgFontSizeMobile"},fontSizeTablet:{value:Pt,label:"msgFontSizeTablet"},lineHeightType:{value:Mt,label:"msgLineHeightType"},lineHeight:{value:Rt,label:"msgLineHeight"},lineHeightMobile:{value:Ut,label:"msgLineHeightMobile"},lineHeightTablet:{value:Bt,label:"msgLineHeightTablet"},letterSpacing:{value:zl,label:"msgLetterSpacing"},letterSpacingTablet:{value:Dl,label:"msgLetterSpacingTablet"},letterSpacingMobile:{value:Nl,label:"msgLetterSpacingMobile"},letterSpacingType:{value:Il,label:"msgLetterSpacingType"}}),React.createElement("h2",null,Object(r.__)("Success Message Validation","ultimate-addons-for-gutenberg")),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ft||"",data:{value:ft,label:"successMsgColor"},setAttributes:t}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:a,setAttributes:t,loadGoogleFonts:{value:Ft,label:"successMsgLoadGoogleFonts"},fontFamily:{value:zt,label:"successMsgFontFamily"},fontWeight:{value:Dt,label:"successMsgFontWeight"},fontStyle:{value:yl,label:"successMsgFontStyle"},transform:{value:fl,label:"successMsgTransform"},decoration:{value:ml,label:"successMsgDecoration"},fontSizeType:{value:Nt,label:"successMsgFontSizeType"},fontSize:{value:It,label:"successMsgFontSize"},fontSizeMobile:{value:Vt,label:"successMsgFontSizeMobile"},fontSizeTablet:{value:Wt,label:"successMsgFontSizeTablet"},lineHeightType:{value:qt,label:"successMsgLineHeightType"},lineHeight:{value:Zt,label:"successMsgLineHeight"},lineHeightMobile:{value:$t,label:"successMsgLineHeightMobile"},lineHeightTablet:{value:Yt,label:"successMsgLineHeightTablet"},letterSpacing:{value:Vl,label:"successMsgLetterSpacing"},letterSpacingTablet:{value:Wl,label:"successMsgLetterSpacingTablet"},letterSpacingMobile:{value:ql,label:"successMsgLetterSpacingMobile"},letterSpacingType:{value:Zl,label:"successMsgLetterSpacingType"}})),React.createElement(Fe,{title:Object(r.__)("Spacing","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(tl,{label:Object(r.__)("Label & Input Space","ultimate-addons-for-gutenberg"),data:{desktop:{value:V,label:"fieldLabelSpacing"},tablet:{value:W,label:"fieldLabelSpacingTablet"},mobile:{value:q,label:"fieldLabelSpacingMobile"}},min:0,max:30,displayUnit:!1,setAttributes:t}),React.createElement(tl,{label:Object(r.__)("Fields Space","ultimate-addons-for-gutenberg"),data:{desktop:{value:D,label:"fieldSpacing"},tablet:{value:N,label:"fieldSpacingTablet"},mobile:{value:I,label:"fieldSpacingMobile"}},min:0,max:50,displayUnit:!1,setAttributes:t}))),React.createElement(il,Kj({},rl,{parentProps:e})))))}),Qj=a(155),eF=0,tF={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},aF={};aF.locals=Qj.a.locals||{},aF.use=function(){return eF++||(Jj=ke()(Qj.a,tF)),aF},aF.unuse=function(){eF>0&&!--eF&&(Jj(),Jj=null)};var lF=aF,iF=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(lF.use(),()=>{lF.unuse()}),[]);const{className:t,attributes:a,setAttributes:l,deviceType:i}=e,{formId:o,align:n,isHtml:s,formJson:c,titleDescStyle:u,fieldStyle:p,buttonAlignment:b,buttonAlignmentTablet:d,buttonAlignmentMobile:g,enableLabel:m,enableOveride:y,advancedValidationSettings:f,block_id:h}=a;let v="";return c&&c.data.html&&(v=c.data.html),0===parseInt(o)?React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Select a Gravity Form","ultimate-addons-for-gutenberg")},React.createElement(Le.SelectControl,{value:o,onChange:e=>{if(!e)return l({isHtml:!1}),void l({formId:null});l({isHtml:!1}),l({formId:e})},options:uagb_blocks_info.gf_forms})):React.createElement("div",{className:Be()(t,"uagb-gf-styler__outer-wrap","uagb-editor-preview-mode-"+i.toLowerCase(),"uagb-block-"+h)},React.createElement("div",{className:Be()("uagb-gf-styler__align-"+n,"uagb-gf-styler__field-style-"+p,"uagb-gf-styler__btn-align-"+b,"uagb-gf-styler__btn-align-tablet-"+d,"uagb-gf-styler__btn-align-mobile-"+g,"uagb-gf-styler__gform-heading-"+u,y?"uagb-gf-styler__check-style-enabled":"",m?"uagb-gf-styler__hide-label":"",f?"uagb-gf-styler__error-yes":"")},s&&React.createElement("div",{dangerouslySetInnerHTML:{__html:v}}),!1===s&&React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Loading","ultimate-addons-for-gutenberg")},React.createElement(Le.Spinner,null))))}),oF=Object(B.memo)(e=>{let{attributes:t}=e;const{labelFontFamily:a,labelFontWeight:l,labelLoadGoogleFonts:i,inputFontFamily:o,inputFontWeight:n,inputLoadGoogleFonts:r,buttonFontFamily:s,buttonFontWeight:c,buttonLoadGoogleFonts:u,radioCheckFontFamily:p,radioCheckFontWeight:b,radioCheckLoadGoogleFonts:d,validationMsgFontFamily:g,validationMsgFontWeight:m,validationMsgLoadGoogleFonts:y,msgFontFamily:f,msgFontWeight:h,msgLoadGoogleFonts:v}=t;let _,T,C,S,w,k;if(!0===i){const e={google:{families:[a+(l?":"+l:"")]}};C=React.createElement(O,{config:e})}if(!0===r){const e={google:{families:[o+(n?":"+n:"")]}};_=React.createElement(O,{config:e})}if(!0===u){const e={google:{families:[s+(c?":"+c:"")]}};T=React.createElement(O,{config:e})}if(!0===d){const e={google:{families:[p+(b?":"+b:"")]}};S=React.createElement(O,{config:e})}if(!0===y){const e={google:{families:[g+(m?":"+m:"")]}};w=React.createElement(O,{config:e})}if(!0===v){const e={google:{families:[f+(h?":"+h:"")]}};k=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,_,T,C,S,w,k)}),nF=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{formId:i,isHtml:o,msgVrPadding:s,msgHrPadding:c,buttonVrPadding:u,buttonHrPadding:p,fieldVrPadding:b,fieldHrPadding:d,buttontopPadding:g,buttonrightPadding:m,buttonbottomPadding:y,buttonleftPadding:f,fieldtopPadding:h,fieldrightPadding:v,fieldbottomPadding:_,fieldleftPadding:T,msgtopPadding:C,msgrightPadding:S,msgbottomPadding:w,msgleftPadding:k,UAGHideDesktop:P,UAGHideTab:x,UAGHideMob:A},clientId:G,name:M,deviceType:R}=e;Object(n.useSelect)(e=>{let t="";if(i&&-1!==i&&0!==i&&!o){const e={nonce:uagb_blocks_info.uagb_ajax_nonce,formId:i};$l({url:uagb_blocks_info.ajax_url,action:"uagb_gf_shortcode",data:e}).then(e=>{a({isHtml:!0}),a({formJson:e}),t=e})}return{formHTML:t}}),Object(B.useEffect)(()=>{u&&(void 0===g&&a({buttontopPadding:u}),void 0===y&&a({buttonbottomPadding:u})),p&&(void 0===m&&a({buttonrightPadding:p}),void 0===f&&a({buttonleftPadding:p})),s&&(C||a({msgtopPadding:s}),w||a({msgbottomPadding:s})),c&&(S||a({msgrightPadding:c}),k||a({msgleftPadding:c})),b&&(void 0===h&&a({fieldtopPadding:b}),void 0===_&&a({fieldbottomPadding:b})),d&&(void 0===v&&a({fieldrightPadding:d}),void 0===T&&a({fieldleftPadding:d}))},[]),Object(B.useEffect)(()=>{he(e)},[P,x,A,R]),Object(B.useEffect)(()=>{const e=document.querySelector(".wpgf-submit");null!==e&&e.addEventListener("click",(function(e){e.preventDefault()}))},[l]);const U=Object(B.useMemo)(()=>function(e,t,a,l){const i=a.replace("uagb/",""),o=l.toLowerCase(),{block_id:n,align:r,titleDescAlignment:s,fieldBgColor:c,fieldLabelColor:u,fieldInputColor:p,fieldBorderStyle:b,fieldBorderWidth:d,fieldBorderWidthTablet:g,fieldBorderWidthMobile:m,fieldBorderWidthType:y,fieldBorderRadius:f,fieldBorderColor:h,fieldBorderFocusColor:v,buttonTextColor:_,buttonBgColor:T,buttonTextHoverColor:C,buttonBgHoverColor:S,buttonBorderStyle:w,buttonBorderWidth:k,buttonBorderWidthMobile:P,buttonBorderWidthTablet:x,buttonBorderWidthType:A,buttonBorderRadius:G,buttonBorderColor:M,buttonBorderHoverColor:R,fieldSpacing:B,fieldSpacingTablet:U,fieldSpacingMobile:E,fieldLabelSpacing:O,fieldLabelSpacingTablet:L,fieldLabelSpacingMobile:H,labelFontSize:j,labelFontSizeType:F,labelFontSizeTablet:z,labelFontSizeMobile:D,labelFontFamily:N,labelFontWeight:I,labelLineHeightType:V,labelLineHeight:W,labelLineHeightTablet:q,labelLineHeightMobile:Z,textAreaHeight:$,textAreaHeightTablet:Y,textAreaHeightMobile:K,inputFontSize:J,inputFontSizeType:X,inputFontSizeTablet:Q,inputFontSizeMobile:ee,inputFontFamily:te,inputFontWeight:le,inputLineHeightType:ie,inputLineHeight:oe,inputLineHeightTablet:ne,inputLineHeightMobile:re,buttonFontSize:se,buttonFontSizeType:ce,buttonFontSizeTablet:ue,buttonFontSizeMobile:pe,buttonFontFamily:be,buttonFontWeight:de,buttonLineHeightType:ge,buttonLineHeight:me,buttonLineHeightTablet:ye,buttonLineHeightMobile:fe,highlightBorderColor:he,radioCheckSize:ve,radioCheckSizeTablet:_e,radioCheckSizeMobile:Te,radioCheckBgColor:Ce,radioCheckSelectColor:Se,radioCheckLableColor:we,radioCheckBorderColor:ke,radioCheckBorderWidth:Pe,radioCheckBorderWidthTablet:xe,radioCheckBorderWidthMobile:Ae,radioCheckBorderWidthType:Ge,radioCheckBorderRadius:Me,radioCheckFontSize:Re,radioCheckFontSizeType:Be,radioCheckFontSizeTablet:Ue,radioCheckFontSizeMobile:Ee,radioCheckFontFamily:Oe,radioCheckFontWeight:Le,radioCheckLineHeightType:He,radioCheckLineHeight:je,radioCheckLineHeightTablet:Fe,radioCheckLineHeightMobile:ze,validationMsgColor:De,validationMsgBgColor:Ne,validationMsgFontFamily:Ie,validationMsgFontWeight:Ve,validationMsgFontSize:We,validationMsgFontSizeType:qe,validationMsgFontSizeTablet:Ze,validationMsgFontSizeMobile:$e,validationMsgLineHeightType:Ye,validationMsgLineHeight:Ke,validationMsgLineHeightTablet:Je,validationMsgLineHeightMobile:Xe,msgFontFamily:Qe,msgFontWeight:et,msgFontSize:tt,msgFontSizeType:at,msgFontSizeTablet:lt,msgFontSizeMobile:it,msgLineHeightType:ot,msgLineHeight:nt,msgLineHeightTablet:rt,msgLineHeightMobile:st,successMsgFontFamily:ct,successMsgFontWeight:ut,successMsgFontSize:pt,successMsgFontSizeType:bt,successMsgFontSizeTablet:dt,successMsgFontSizeMobile:gt,successMsgLineHeightType:mt,successMsgLineHeight:yt,successMsgLineHeightTablet:ft,successMsgLineHeightMobile:ht,radioCheckBorderRadiusType:vt,fieldBorderRadiusType:_t,buttonBorderRadiusType:Tt,errorMsgColor:Ct,errorMsgBgColor:St,errorMsgBorderColor:wt,msgBorderSize:kt,msgBorderSizeType:Pt,msgBorderRadius:xt,msgBorderRadiusType:At,successMsgColor:Gt,fieldtopPadding:Mt,fieldrightPadding:Rt,fieldbottomPadding:Bt,fieldleftPadding:Ut,fieldtopMobilePadding:Et,fieldrightMobilePadding:Ot,fieldbottomMobilePadding:Lt,fieldleftMobilePadding:Ht,fieldtopTabletPadding:jt,fieldrightTabletPadding:Ft,fieldbottomTabletPadding:zt,fieldleftTabletPadding:Dt,fieldpaddingUnit:Nt,fieldmobilePaddingUnit:It,fieldtabletPaddingUnit:Vt,buttontopPadding:Wt,buttonrightPadding:qt,buttonbottomPadding:Zt,buttonleftPadding:$t,buttontopMobilePadding:Yt,buttonrightMobilePadding:Kt,buttonbottomMobilePadding:Jt,buttonleftMobilePadding:Xt,buttontopTabletPadding:Qt,buttonrightTabletPadding:ea,buttonbottomTabletPadding:ta,buttonleftTabletPadding:aa,buttonpaddingUnit:la,buttonmobilePaddingUnit:ia,buttontabletPaddingUnit:oa,msgtopPadding:na,msgrightPadding:ra,msgbottomPadding:sa,msgleftPadding:ca,msgtopMobilePadding:ua,msgrightMobilePadding:pa,msgbottomMobilePadding:ba,msgleftMobilePadding:da,msgtopTabletPadding:ga,msgrightTabletPadding:ma,msgbottomTabletPadding:ya,msgleftTabletPadding:fa,msgpaddingUnit:ha,msgmobilePaddingUnit:va,msgtabletPaddingUnit:_a,labelFontStyle:Ta,labelTransform:Ca,labelDecoration:Sa,inputFontStyle:wa,inputTransform:ka,inputDecoration:Pa,buttonFontStyle:xa,buttonTransform:Aa,buttonDecoration:Ga,radioCheckFontStyle:Ma,radioCheckTransform:Ra,radioCheckDecoration:Ba,validationMsgFontStyle:Ua,validationMsgTransform:Ea,validationMsgDecoration:Oa,msgFontStyle:La,msgTransform:Ha,msgDecoration:ja,successMsgDecoration:Fa,successMsgFontStyle:za,successMsgTransform:Da,labelLetterSpacing:Na,labelLetterSpacingTablet:Ia,labelLetterSpacingMobile:Va,labelLetterSpacingType:Wa,inputLetterSpacing:qa,inputLetterSpacingTablet:Za,inputLetterSpacingMobile:$a,inputLetterSpacingType:Ya,radioCheckLetterSpacing:Ka,radioCheckLetterSpacingTablet:Ja,radioCheckLetterSpacingMobile:Xa,radioCheckLetterSpacingType:Qa,buttonLetterSpacing:el,buttonLetterSpacingTablet:tl,buttonLetterSpacingMobile:al,buttonLetterSpacingType:ll,validationMsgLetterSpacing:il,validationMsgLetterSpacingTablet:ol,validationMsgLetterSpacingMobile:nl,validationMsgLetterSpacingType:rl,msgLetterSpacing:sl,msgLetterSpacingTablet:cl,msgLetterSpacingMobile:ul,msgLetterSpacingType:pl,successMsgLetterSpacing:bl,successMsgLetterSpacingTablet:dl,successMsgLetterSpacingMobile:gl,successMsgLetterSpacingType:ml}=e,yl={" .gform_wrapper form":{"text-align":r}," .wp-block-uagb-gf-styler form:not(input)":{color:u}," .gform_heading":{"text-align":s}," input:not([type=submit])":{"background-color":c,color:p,"border-style":b,"border-color":h,"border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(f,_t),"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt),"margin-top":ns(Ps(O,"fieldLabelSpacing",i),"px"),"margin-bottom":ns(Ps(B,"fieldSpacing",i),"px"),"font-size":ns(J,X),"font-family":te,"font-style":wa,"text-decoration":Pa,"text-transform":ka,"font-weight":le,"line-height":ns(oe,ie),"text-align":r,"letter-spacing":ns(qa,Ya)}," select":{"background-color":c,"border-style":b,"border-color":h,"border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t),"margin-top":ns(Ps(O,"fieldLabelSpacing",i),"px"),"margin-bottom":ns(Ps(B,"fieldSpacing",i),"px"),color:p,"font-size":ns(J,X),"font-family":te,"font-style":wa,"text-decoration":Pa,"text-transform":ka,"font-weight":le,"line-height":ns(oe,ie),"text-align":r,"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt),"letter-spacing":ns(qa,Ya)}," .chosen-container-single span":{"background-color":c,"border-style":b,"border-color":h,"border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t),"margin-top":ns(Ps(O,"fieldLabelSpacing",i),"px"),"margin-bottom":ns(Ps(B,"fieldSpacing",i),"px"),color:p,"font-size":ns(J,X),"font-family":te,"font-style":wa,"text-decoration":Pa,"text-transform":ka,"font-weight":le,"line-height":ns(oe,ie),"text-align":r,"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt),"letter-spacing":ns(qa,Ya)}," .chosen-container-single.chosen-container-active .chosen-single span":{"margin-bottom":0}," select.wpgf-form-control.wpgf-select:not([multiple='multiple'])":{"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt)}," select.wpgf-select[multiple='multiple'] option":{"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt)}," .gform_wrapper .gfield textarea":{"background-color":c,color:p}," .gform_wrapper.gravity-theme .gfield textarea":{"border-color":h,"border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t),"border-style":b,"padding-left":ns(Ut,Nt),"padding-right":ns(Rt,Nt),"padding-top":ns(Mt,Nt),"padding-bottom":ns(Bt,Nt),"margin-top":ns(Ps(O,"fieldLabelSpacing",i),"px"),"margin-bottom":ns(Ps(B,"fieldSpacing",i),"px"),"font-size":ns(J,X),"font-family":te,"font-style":wa,"text-decoration":Pa,"text-transform":ka,"font-weight":le,"line-height":ns(oe,ie),"text-align":r,height:"auto"===Ps($,"textAreaHeight",i)?Ps($,"textAreaHeight",i):Ps($,"textAreaHeight",i)+"px","letter-spacing":ns(qa,Ya)}," textarea::placeholder":{color:p,"text-align":r}," input::placeholder":{color:p,"text-align":r}," form .gfield_label":{color:u,"font-size":ns(j,F),"font-family":N,"font-style":Ta,"text-decoration":Sa,"text-transform":Ca,"font-weight":I,"line-height":ns(W,V),"letter-spacing":ns(Na,Wa)}," form .gfield_radio label.gfield_label":{color:u,"font-size":ns(j,F),"font-family":N,"font-style":Ta,"text-decoration":Sa,"text-transform":Ca,"font-weight":I,"line-height":ns(W,V),"letter-spacing":ns(Na,Wa)}," form .gfield_checkbox label.gfield_label":{color:u,"font-size":ns(j,F),"font-family":N,"font-style":Ta,"text-decoration":Sa,"text-transform":Ca,"font-weight":I,"line-height":ns(W,V),"letter-spacing":ns(Na,Wa)}," .wpgf .gfield_checkbox input[type='checkbox'] + label, .wpgf .gfield_checkbox input[type='checkbox'] + label":{"margin-top":ns(Ps(O,"fieldLabelSpacing",i),"px")}," form input:not([type=submit]):focus":{"border-color":v}," form select:focus":{"border-color":v}," textarea:focus":{"border-color":v}," input.gform_button":{color:_,"background-color":T,"font-size":ns(se,ce)+" !important","font-family":be,"font-style":xa,"text-decoration":Ga,"text-transform":Aa,"font-weight":de,"line-height":ns(me,ge),"border-color":M,"border-style":w,"border-width":ns(Ps(k,"buttonBorderWidth",i),A),"border-radius":ns(Ps(G,"buttonBorderRadius",i),Tt),"padding-left":ns($t,la),"padding-right":ns(qt,la),"padding-top":ns(Wt,la),"padding-bottom":ns(Zt,la),"letter-spacing":ns(el,ll)},":hover input.gform_button":{color:C,"background-color":S,"border-color":R},":hover input.gform_next_button":{color:C,"background-color":S,"border-color":R}," .uagb-gf-styler__field-style-underline input:not([type=submit])":{"border-style":"none","border-bottom-color":h,"border-bottom-style":"solid","border-bottom-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t)}," .uagb-gf-styler__field-style-underline textarea":{"border-style":"none","border-bottom-color":h,"border-bottom-style":"solid","border-bottom-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(f,_t)}," .uagb-gf-styler__field-style-underline select":{"border-style":"none","border-bottom-color":h,"border-bottom-style":"solid","border-bottom-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t)}," .uagb-gf-styler__check-style-enabled input[type='radio'] + label:before":{"border-style":"solid"}," .uagb-gf-styler__field-style-box .gfield_checkbox input[type='checkbox']:checked + label:before":{"border-style":"solid","border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(f,_t),"font-size":"calc( "+Ps(ve,"radioCheckSize",i)+"px / 1.2 )"}," .uagb-gf-styler__field-style-box input[type='checkbox']:checked + label:before":{"border-style":"solid","border-width":ns(Ps(d,"fieldBorderWidth",i),y),"border-radius":ns(Ps(f,"fieldBorderRadius",i),_t),"font-size":"calc( "+Ps(ve,"radioCheckSize",i)+"px / 1.2)"}," .gfield_radio input[type='radio']:checked + label:before":{"background-color":p}," .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before":{"background-color":Ce,color:Se,height:ns(Ps(ve,"radioCheckSize",i),"px"),width:ns(Ps(ve,"radioCheckSize",i),"px"),"font-size":"calc( "+Ps(ve,"radioCheckSize",i)+"px / 1.2 )","border-color":ke,"border-style":"solid","border-width":ns(Ps(Pe,"radioCheckBorderWidth",i),Ge),"border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt)}," .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox']:checked + label:before":{"border-color":v}," .uagb-gf-styler__check-style-enabled input[type='checkbox'] + label:before":{"background-color":Ce,color:Se,height:ns(Ps(ve,"radioCheckSize",i),"px"),width:ns(Ps(ve,"radioCheckSize",i),"px"),"font-size":"calc( "+Ps(ve,"radioCheckSize",i)+"px / 1.2 )","border-color":ke,"border-width":ns(Ps(Pe,"radioCheckBorderWidth",i),Ge),"border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt),"border-style":"solid"}," .uagb-gf-styler__check-style-enabled .gfield_radio input[type='radio'] + label:before":{"background-color":Ce,color:Se,height:ns(Ps(ve,"radioCheckSize",i),"px"),width:ns(Ps(ve,"radioCheckSize",i),"px"),"font-size":"calc( "+Ps(ve,"radioCheckSize",i)+"px / 1.2 )","border-color":ke,"border-width":ns(Ps(Pe,"radioCheckBorderWidth",i),Ge),"border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt)}," .uagb-gf-styler__check-style-enabled .gfield_radio input[type='radio']:checked + label:before":{"background-color":Se,"border-color":v}," .uagb-gf-styler__check-style-enabled form .gfield_radio label":{"font-size":ns(Re,Be),"font-family":Oe,"font-style":Ma,"text-decoration":Ba,"text-transform":Ra,"font-weight":Le,"line-height":ns(je,He),color:we,"letter-spacing":ns(Ka,Qa)}," .uagb-gf-styler__check-style-enabled form .gfield_checkbox label":{"font-size":ns(Re,Be),"font-family":Oe,"font-style":Ma,"text-decoration":Ba,"text-transform":Ra,"font-weight":Le,"line-height":ns(je,He),color:we,"letter-spacing":ns(Ka,Qa)}," .gform_wrapper .gfield_description.validation_message":{color:De}," .gform_wrapper .validation_message":{"font-size":ns(We,qe),"font-family":Ie,"font-style":Ua,"text-decoration":Oa,"text-transform":Ea,"font-weight":Ve,"line-height":ns(Ke,Ye),"letter-spacing":ns(il,rl)}," .uagb-gf-styler__error-yes .gform_wrapper .gfield.gfield_error":{"background-color":Ne}," .uagb-gf-styler__error-yes .gform_wrapper li.gfield_error input:not([type='submit']):not([type='button']):not([type='image'])":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container select":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container .chosen-single":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container textarea":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper li.gfield.gfield_error":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning":{"border-color":he}," .uagb-gf-styler__error-yes li.gfield_error .gfield_checkbox input[type='checkbox'] + label:before":{"border-color":he}," .uagb-gf-styler__error-yes li.gfield_error .ginput_container_consent input[type='checkbox'] + label:before":{"border-color":he}," .uagb-gf-styler__error-yes li.gfield_error .gfield_radio input[type='radio'] + label:before":{"border-color":he}," .uagb-gf-styler__error-yes .gform_wrapper li.gfield_error input[type='text']":{"border-color":Ps(d,"fieldBorderWidth",i)+y+" ".fieldBorderStyle+" "+h+"!important"}," .uael-gf-style-underline.uagb-gf-styler__error-yes .gform_wrapper li.gfield_error input[type='text']":{"border-width":Ps(d,"fieldBorderWidth",i)+y+"!important","border-style":"solid!important","border-color":h+"!important"}," .gform_wrapper div.validation_error":{color:Ct,"background-color":St,"border-color":wt,"border-style":"solid","border-width":ns(Ps(kt,"msgBorderSize",i),Pt),"border-radius":ns(Ps(xt,"msgBorderRadius",i),At),"padding-left":ns(ca,ha),"padding-right":ns(ra,ha),"padding-top":ns(na,ha),"padding-bottom":ns(sa,ha),"font-size":tt.msgFontSizeType,"font-family":Qe,"font-style":La,"text-decoration":ja,"text-transform":Ha,"font-weight":et,"line-height":ns(nt,ot),"letter-spacing":ns(sl,pl)}," .gform_confirmation_message":{color:Gt,"font-size":ns(pt,bt),"font-family":ct,"font-style":za,"text-decoration":Fa,"text-transform":Da,"font-weight":ut,"line-height":ns(yt,mt),"letter-spacing":ns(bl,ml)}},fl={" .uagb-gf-styler__field-style-box .gfield_checkbox input[type='checkbox']:checked + label:before":{"border-width":ns(Ps(g,"fieldBorderWidthTablet",i),y),"font-size":"calc( "+Ps(_e,"radioCheckSizeTablet",i)+"px / 1.2 )"}," .uagb-gf-styler__field-style-box input[type='checkbox']:checked + label:before":{"border-width":ns(Ps(g,"fieldBorderWidthTablet",i),y),"font-size":"calc( "+Ps(_e,"radioCheckSizeTablet",i)+"px / 1.2)"}," .uagb-gf-styler__check-style-enabled input[type='checkbox'] + label:before":{height:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),width:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),"font-size":"calc( "+Ps(_e,"radioCheckSizeTablet",i)+"px / 1.2 )","border-width":ns(Ps(xe,"radioCheckBorderWidthTablet",i),Ge)}," .uagb-gf-styler__check-style-enabled .gfield_radio input[type='radio'] + label:before":{"background-color":Ce,color:Se,"border-color":ke,"border-style":"solid","border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt),height:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),width:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),"font-size":"calc( "+Ps(_e,"radioCheckSizeTablet",i)+"px / 1.2 )","border-width":ns(Ps(xe,"radioCheckBorderWidthTablet",i),Ge)}," .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before":{"background-color":Ce,color:Se,"border-color":ke,"border-style":"solid","border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt),height:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),width:ns(Ps(_e,"radioCheckSizeTablet",i),"px"),"font-size":"calc( "+Ps(_e,"radioCheckSizeTablet",i)+"px / 1.2 )","border-width":ns(Ps(xe,"radioCheckBorderWidthTablet",i),Ge)}," input:not([type=submit])":{"font-size":ns(Q,X),"line-height":ns(ne,ie),"padding-left":ns(Dt,Vt),"padding-right":ns(Ft,Vt),"padding-top":ns(jt,Vt),"padding-bottom":ns(zt,Vt),"border-width":ns(Ps(g,"fieldBorderWidthTablet",i),y),"margin-top":ns(Ps(L,"fieldLabelSpacingTablet",i),"px"),"margin-bottom":ns(Ps(U,"fieldSpacingTablet",i),"px"),"letter-spacing":ns(Za,Ya)}," select":{"font-size":ns(z,F),"line-height":ns(q,V),"margin-top":ns(Ps(L,"fieldLabelSpacingTablet",i),"px"),"margin-bottom":ns(Ps(U,"fieldSpacingTablet",i),"px"),"letter-spacing":ns(Ia,Wa)}," .gform_wrapper.gravity-theme .gfield textarea":{"font-size":ns(Q,X),"line-height":ns(ne,ie),"padding-left":ns(Dt,Vt),"padding-right":ns(Ft,Vt),"padding-top":ns(jt,Vt),"padding-bottom":ns(zt,Vt),"margin-top":ns(Ps(L,"fieldLabelSpacingTablet",i),"px"),"margin-bottom":ns(Ps(U,"fieldSpacingTablet",i),"px"),"letter-spacing":ns(Za,Ya),height:"auto"===Ps(Y,"textAreaHeightTablet",i)?Ps(Y,"textAreaHeightTablet",i):Ps(Y,"textAreaHeightTablet",i)+"px","border-width":ns(Ps(g,"fieldBorderWidthTablet",i),y)}," form label":{"font-size":ns(z,F),"line-height":ns(q,V),"letter-spacing":ns(Ia,Wa)}," form .gfield_radio label":{"font-size":ns(z,F),"line-height":ns(q,V),"letter-spacing":ns(Ia,Wa)}," form .gfield_checkbox label":{"font-size":ns(z,F),"line-height":ns(q,V),"letter-spacing":ns(Ia,Wa)}," input.gform_button":{"font-size":ns(ue,ce),"line-height":ns(ye,ge),"padding-left":ns(aa,oa),"padding-right":ns(ea,oa),"padding-top":ns(Qt,oa),"padding-bottom":ns(ta,oa),"border-width":ns(Ps(x,"buttonBorderWidthTablet",i),A),color:_,"background-color":T,"border-color":M,"border-style":w,"letter-spacing":ns(tl,ll)}," .uagb-gf-styler__check-style-enabled form .gfield_radio label":{"font-size":ns(Ue,Be),"line-height":ns(Fe,He),"letter-spacing":ns(Ja,Qa)}," .uagb-gf-styler__check-style-enabled form .gfield_checkbox label":{"font-size":ns(Ue,Be),"line-height":ns(Fe,He),"letter-spacing":ns(Ja,Qa)}," span.wpgf-not-valid-tip":{"font-size":ns(Ze,qe),"line-height":ns(Je,Ye)}," .gform_wrapper .validation_message":{"font-size":ns(Ze,qe),"line-height":ns(Je,Ye),"letter-spacing":ns(ol,rl)}," .gform_wrapper div.validation_error":{"font-size":ns(lt,at),"line-height":ns(rt,ot),"padding-left":ns(fa,_a),"padding-right":ns(ma,_a),"padding-top":ns(ga,_a),"padding-bottom":ns(ya,_a),"letter-spacing":ns(cl,pl)}," .gform_confirmation_message":{"font-size":ns(dt,bt),"line-height":ns(ft,mt),"letter-spacing":ns(dl,ml)}},hl={" .uagb-gf-styler__field-style-box .gfield_checkbox input[type='checkbox']:checked + label:before":{"border-width":ns(Ps(m,"fieldBorderWidthMobile",i),y),"font-size":"calc( "+Ps(Te,"radioCheckSizeMobile",i)+"px / 1.2 )"}," .uagb-gf-styler__field-style-box input[type='checkbox']:checked + label:before":{"border-width":ns(Ps(m,"fieldBorderWidthMobile",i),y),"font-size":"calc( "+Ps(Te,"radioCheckSizeMobile",i)+"px / 1.2)"}," .uagb-gf-styler__check-style-enabled input[type='checkbox'] + label:before":{height:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),width:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),"font-size":"calc( "+Ps(Te,"radioCheckSizeMobile",i)+"px / 1.2 )","border-width":ns(Ps(Ae,"radioCheckBorderWidthMobile",i),Ge)}," .uagb-gf-styler__check-style-enabled .gfield_radio input[type='radio'] + label:before":{"background-color":Ce,color:Se,"border-color":ke,"border-style":"solid","border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt),height:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),width:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),"font-size":"calc( "+Ps(Te,"radioCheckSizeMobile",i)+"px / 1.2 )","border-width":ns(Ps(Ae,"radioCheckBorderWidthMobile",i),Ge)}," .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type='checkbox'] + label:before":{"background-color":Ce,color:Se,"border-color":ke,"border-style":"solid","border-radius":ns(Ps(Me,"radioCheckBorderRadius",i),vt),height:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),width:ns(Ps(Te,"radioCheckSizeMobile",i),"px"),"font-size":"calc( "+Ps(Te,"radioCheckSizeMobile",i)+"px / 1.2 )","border-width":ns(Ps(Ae,"radioCheckBorderWidthMobile",i),Ge)}," input:not([type=submit])":{"font-size":ns(ee,X),"line-height":ns(re,ie),"padding-left":ns(Ht,It),"padding-right":ns(Ot,It),"padding-top":ns(Et,It),"padding-bottom":ns(Lt,It),"border-width":ns(Ps(m,"fieldBorderWidthMobile",i),y),"margin-top":ns(Ps(H,"fieldLabelSpacingMobile",i),"px"),"margin-bottom":ns(Ps(E,"fieldSpacingMobile",i),"px"),"letter-spacing":ns($a,Ya)}," select":{"font-size":ns(D,F),"line-height":ns(Z,V),"margin-top":ns(Ps(H,"fieldLabelSpacingMobile",i),"px"),"margin-bottom":ns(Ps(E,"fieldSpacingMobile",i),"px"),"letter-spacing":ns(Va,Wa)}," .gform_wrapper.gravity-theme .gfield textarea":{"font-size":ns(ee,X),"line-height":ns(re,ie),"margin-top":ns(Ps(H,"fieldLabelSpacingMobile",i),"px"),"margin-bottom":ns(Ps(E,"fieldSpacingMobile",i),"px"),"letter-spacing":ns($a,Ya),height:"auto"===Ps(K,"textAreaHeightMobile",i)?Ps(K,"textAreaHeightMobile",i):Ps(K,"textAreaHeightMobile",i)+"px"}," form label":{"font-size":ns(ee,X),"line-height":ns(re,ie),"padding-left":ns(Ht,It),"padding-right":ns(Ot,It),"padding-top":ns(Et,It),"padding-bottom":ns(Lt,It),"letter-spacing":ns($a,Ya)}," form .gfield_radio label":{"font-size":ns(D,F),"line-height":ns(Z,V),"letter-spacing":ns(Va,Wa)}," form .gfield_checkbox label":{"font-size":ns(D,F),"line-height":ns(Z,V),"letter-spacing":ns(Va,Wa)}," input.gform_button":{"font-size":ns(pe,ce),"line-height":ns(fe,ge),"padding-left":ns(Xt,ia),"padding-right":ns(Kt,ia),"padding-top":ns(Yt,ia),"padding-bottom":ns(Jt,ia),"border-width":ns(Ps(P,"buttonBorderWidthMobile",i),A),color:_,"background-color":T,"border-color":M,"border-style":w,"letter-spacing":ns(al,ll)}," .uagb-gf-styler__check-style-enabled form .gfield_radio label":{"font-size":ns(Ee,Be),"line-height":ns(ze,He),"letter-spacing":ns(Xa,Qa)}," .uagb-gf-styler__check-style-enabled form .gfield_checkbox label":{"font-size":ns(Ee,Be),"line-height":ns(ze,He),"letter-spacing":ns(Xa,Qa)}," span.wpgf-not-valid-tip":{"font-size":ns($e,qe),"line-height":ns(Xe,Ye),"letter-spacing":ns(nl,rl)}," .gform_wrapper .validation_message":{"font-size":ns($e,qe),"line-height":ns(Xe,Ye),"letter-spacing":ns(nl,rl)}," .gform_wrapper div.validation_error":{"font-size":ns(it,at),"line-height":ns(st,ot),"padding-left":ns(da,va),"padding-right":ns(pa,va),"padding-top":ns(ua,va),"padding-bottom":ns(ba,va),"letter-spacing":ns(ul,pl)}," .gform_confirmation_message":{"font-size":ns(gt,bt),"line-height":ns(ht,mt),"letter-spacing":ns(gl,ml)}},vl=".editor-styles-wrapper .wp-block-uagb-gf-styler.uagb-block-"+n;let _l=ae(yl,""+vl);return"tablet"!==o&&"mobile"!==o||(_l+=ae(fl,""+vl,!0,"tablet"),"mobile"===o&&(_l+=ae(hl,""+vl,!0,"mobile"))),_l}(l,0,M,R),[l,R]);Object(B.useEffect)(()=>{Bs()},[R]);return 0===i?React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Select a Gravity Form","ultimate-addons-for-gutenberg")},React.createElement(Le.SelectControl,{value:i,onChange:e=>{if(!e)return a({isHtml:!1}),void a({formId:null});a({isHtml:!1}),a({formId:e})},options:uagb_blocks_info.gf_forms})):React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:U}),React.createElement(oF,{attributes:l}),t&&React.createElement(Xj,e),React.createElement(iF,e))});a(375);let rF={};rF=Object(j.applyFilters)("uagb/gf-styler",ws(rF)),uagb_blocks_info.gf_is_active&&"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/gf-styler",{...rF,title:Object(r.__)("Gravity Form Designer","ultimate-addons-for-gutenberg"),description:Object(r.__)("Highly customize and style your forms created by Gravity Forms.","ultimate-addons-for-gutenberg"),icon:re("gf_styler"),keywords:[Object(r.__)("GF styler","ultimate-addons-for-gutenberg"),Object(r.__)("gravity form styler","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"gravity-form-styler"}):React.createElement(nF,e),save:()=>null});const sF=[{defaultAttributes:it},{defaultPresetAttributes:[{label:"ctaBgHColor"},{label:"ctaColor"},{label:"ctaHColor"},{label:"btnBorderStyle"},{label:"btnBorderTopLeftRadius"},{label:"btnBorderTopRightRadius"},{label:"btnBorderBottomLeftRadius"},{label:"btnBorderBottomRightRadius"},{label:"btnBorderBottomWidthDesktop"},{label:"btnBorderTopWidthDesktop"},{label:"btnBorderLeftWidthDesktop"},{label:"btnBorderRightWidthDesktop"}]},{value:"preset-1",label:Object(r.__)("Preset 1","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" fill="#B6B6B6"/> <path d="M134.2 146H125.775V129.325H133.975C135.458 129.325 136.617 129.733 137.45 130.55C138.3 131.35 138.725 132.358 138.725 133.575C138.725 134.575 138.442 135.425 137.875 136.125C137.325 136.808 136.642 137.233 135.825 137.4C136.725 137.533 137.483 138 138.1 138.8C138.733 139.583 139.05 140.483 139.05 141.5C139.05 142.833 138.617 143.917 137.75 144.75C136.9 145.583 135.717 146 134.2 146ZM133.375 136.225C134.108 136.225 134.683 136.025 135.1 135.625C135.517 135.225 135.725 134.708 135.725 134.075C135.725 133.425 135.517 132.9 135.1 132.5C134.683 132.1 134.108 131.9 133.375 131.9H128.7V136.225H133.375ZM133.5 143.425C134.3 143.425 134.925 143.225 135.375 142.825C135.825 142.408 136.05 141.833 136.05 141.1C136.05 140.45 135.825 139.908 135.375 139.475C134.925 139.025 134.3 138.8 133.5 138.8H128.7V143.425H133.5ZM152.686 146H150.061V144.4C148.928 145.667 147.503 146.3 145.786 146.3C143.203 146.3 141.911 145.025 141.911 142.475V133.925H144.536V141.525C144.536 142.408 144.744 143.042 145.161 143.425C145.578 143.792 146.178 143.975 146.961 143.975C147.594 143.975 148.186 143.825 148.736 143.525C149.286 143.225 149.728 142.85 150.061 142.4V133.925H152.686V146ZM159.721 146.3C158.704 146.3 157.929 146.033 157.396 145.5C156.879 144.967 156.621 144.2 156.621 143.2V136.225H154.621V133.925H156.621V130.625H159.246V133.925H161.696V136.225H159.246V142.55C159.246 142.983 159.346 143.333 159.546 143.6C159.746 143.85 160.029 143.975 160.396 143.975C160.929 143.975 161.321 143.833 161.571 143.55L162.196 145.525C161.646 146.042 160.821 146.3 159.721 146.3ZM167.704 146.3C166.687 146.3 165.912 146.033 165.379 145.5C164.862 144.967 164.604 144.2 164.604 143.2V136.225H162.604V133.925H164.604V130.625H167.229V133.925H169.679V136.225H167.229V142.55C167.229 142.983 167.329 143.333 167.529 143.6C167.729 143.85 168.012 143.975 168.379 143.975C168.912 143.975 169.304 143.833 169.554 143.55L170.179 145.525C169.629 146.042 168.804 146.3 167.704 146.3ZM177.512 146.3C175.646 146.3 174.146 145.692 173.012 144.475C171.879 143.242 171.312 141.733 171.312 139.95C171.312 138.167 171.879 136.667 173.012 135.45C174.146 134.233 175.646 133.625 177.512 133.625C179.396 133.625 180.904 134.233 182.037 135.45C183.171 136.667 183.737 138.167 183.737 139.95C183.737 141.75 183.171 143.258 182.037 144.475C180.904 145.692 179.396 146.3 177.512 146.3ZM177.512 143.975C178.596 143.975 179.446 143.592 180.062 142.825C180.696 142.042 181.012 141.083 181.012 139.95C181.012 138.833 180.696 137.892 180.062 137.125C179.446 136.342 178.596 135.95 177.512 135.95C176.446 135.95 175.596 136.342 174.962 137.125C174.346 137.892 174.037 138.833 174.037 139.95C174.037 141.083 174.346 142.042 174.962 142.825C175.596 143.592 176.446 143.975 177.512 143.975ZM197.168 146H194.543V138.45C194.543 136.783 193.735 135.95 192.118 135.95C191.485 135.95 190.893 136.108 190.343 136.425C189.793 136.742 189.352 137.125 189.018 137.575V146H186.393V133.925H189.018V135.575C189.468 135.042 190.068 134.583 190.818 134.2C191.568 133.817 192.385 133.625 193.268 133.625C194.552 133.625 195.518 133.958 196.168 134.625C196.835 135.292 197.168 136.25 197.168 137.5V146Z" fill="white"/> </svg>'},{value:"preset-2",label:Object(r.__)("Preset 2","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="6" fill="#B6B6B6"/> <path d="M134.2 145H125.775V128.325H133.975C135.458 128.325 136.617 128.733 137.45 129.55C138.3 130.35 138.725 131.358 138.725 132.575C138.725 133.575 138.442 134.425 137.875 135.125C137.325 135.808 136.642 136.233 135.825 136.4C136.725 136.533 137.483 137 138.1 137.8C138.733 138.583 139.05 139.483 139.05 140.5C139.05 141.833 138.617 142.917 137.75 143.75C136.9 144.583 135.717 145 134.2 145ZM133.375 135.225C134.108 135.225 134.683 135.025 135.1 134.625C135.517 134.225 135.725 133.708 135.725 133.075C135.725 132.425 135.517 131.9 135.1 131.5C134.683 131.1 134.108 130.9 133.375 130.9H128.7V135.225H133.375ZM133.5 142.425C134.3 142.425 134.925 142.225 135.375 141.825C135.825 141.408 136.05 140.833 136.05 140.1C136.05 139.45 135.825 138.908 135.375 138.475C134.925 138.025 134.3 137.8 133.5 137.8H128.7V142.425H133.5ZM152.686 145H150.061V143.4C148.928 144.667 147.503 145.3 145.786 145.3C143.203 145.3 141.911 144.025 141.911 141.475V132.925H144.536V140.525C144.536 141.408 144.744 142.042 145.161 142.425C145.578 142.792 146.178 142.975 146.961 142.975C147.594 142.975 148.186 142.825 148.736 142.525C149.286 142.225 149.728 141.85 150.061 141.4V132.925H152.686V145ZM159.721 145.3C158.704 145.3 157.929 145.033 157.396 144.5C156.879 143.967 156.621 143.2 156.621 142.2V135.225H154.621V132.925H156.621V129.625H159.246V132.925H161.696V135.225H159.246V141.55C159.246 141.983 159.346 142.333 159.546 142.6C159.746 142.85 160.029 142.975 160.396 142.975C160.929 142.975 161.321 142.833 161.571 142.55L162.196 144.525C161.646 145.042 160.821 145.3 159.721 145.3ZM167.704 145.3C166.687 145.3 165.912 145.033 165.379 144.5C164.862 143.967 164.604 143.2 164.604 142.2V135.225H162.604V132.925H164.604V129.625H167.229V132.925H169.679V135.225H167.229V141.55C167.229 141.983 167.329 142.333 167.529 142.6C167.729 142.85 168.012 142.975 168.379 142.975C168.912 142.975 169.304 142.833 169.554 142.55L170.179 144.525C169.629 145.042 168.804 145.3 167.704 145.3ZM177.512 145.3C175.646 145.3 174.146 144.692 173.012 143.475C171.879 142.242 171.312 140.733 171.312 138.95C171.312 137.167 171.879 135.667 173.012 134.45C174.146 133.233 175.646 132.625 177.512 132.625C179.396 132.625 180.904 133.233 182.037 134.45C183.171 135.667 183.737 137.167 183.737 138.95C183.737 140.75 183.171 142.258 182.037 143.475C180.904 144.692 179.396 145.3 177.512 145.3ZM177.512 142.975C178.596 142.975 179.446 142.592 180.062 141.825C180.696 141.042 181.012 140.083 181.012 138.95C181.012 137.833 180.696 136.892 180.062 136.125C179.446 135.342 178.596 134.95 177.512 134.95C176.446 134.95 175.596 135.342 174.962 136.125C174.346 136.892 174.037 137.833 174.037 138.95C174.037 140.083 174.346 141.042 174.962 141.825C175.596 142.592 176.446 142.975 177.512 142.975ZM197.168 145H194.543V137.45C194.543 135.783 193.735 134.95 192.118 134.95C191.485 134.95 190.893 135.108 190.343 135.425C189.793 135.742 189.352 136.125 189.018 136.575V145H186.393V132.925H189.018V134.575C189.468 134.042 190.068 133.583 190.818 133.2C191.568 132.817 192.385 132.625 193.268 132.625C194.552 132.625 195.518 132.958 196.168 133.625C196.835 134.292 197.168 135.25 197.168 136.5V145Z" fill="white"/> </svg>'},{value:"preset-3",label:Object(r.__)("Preset 3","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"color"},{label:"btnBorderStyle",value:"none"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="58" y="101" width="209.786" height="70" rx="35" fill="#B6B6B6"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="white"/> </svg>'},{value:"preset-4",label:Object(r.__)("Preset 4","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:0},{label:"btnBorderTopRightRadius",value:0},{label:"btnBorderBottomLeftRadius",value:0},{label:"btnBorderBottomRightRadius",value:0},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-5",label:Object(r.__)("Preset 5","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:5},{label:"btnBorderTopRightRadius",value:5},{label:"btnBorderBottomLeftRadius",value:5},{label:"btnBorderBottomRightRadius",value:5},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="5" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 144H125.775V127.325H133.975C135.458 127.325 136.617 127.733 137.45 128.55C138.3 129.35 138.725 130.358 138.725 131.575C138.725 132.575 138.442 133.425 137.875 134.125C137.325 134.808 136.642 135.233 135.825 135.4C136.725 135.533 137.483 136 138.1 136.8C138.733 137.583 139.05 138.483 139.05 139.5C139.05 140.833 138.617 141.917 137.75 142.75C136.9 143.583 135.717 144 134.2 144ZM133.375 134.225C134.108 134.225 134.683 134.025 135.1 133.625C135.517 133.225 135.725 132.708 135.725 132.075C135.725 131.425 135.517 130.9 135.1 130.5C134.683 130.1 134.108 129.9 133.375 129.9H128.7V134.225H133.375ZM133.5 141.425C134.3 141.425 134.925 141.225 135.375 140.825C135.825 140.408 136.05 139.833 136.05 139.1C136.05 138.45 135.825 137.908 135.375 137.475C134.925 137.025 134.3 136.8 133.5 136.8H128.7V141.425H133.5ZM152.686 144H150.061V142.4C148.928 143.667 147.503 144.3 145.786 144.3C143.203 144.3 141.911 143.025 141.911 140.475V131.925H144.536V139.525C144.536 140.408 144.744 141.042 145.161 141.425C145.578 141.792 146.178 141.975 146.961 141.975C147.594 141.975 148.186 141.825 148.736 141.525C149.286 141.225 149.728 140.85 150.061 140.4V131.925H152.686V144ZM159.721 144.3C158.704 144.3 157.929 144.033 157.396 143.5C156.879 142.967 156.621 142.2 156.621 141.2V134.225H154.621V131.925H156.621V128.625H159.246V131.925H161.696V134.225H159.246V140.55C159.246 140.983 159.346 141.333 159.546 141.6C159.746 141.85 160.029 141.975 160.396 141.975C160.929 141.975 161.321 141.833 161.571 141.55L162.196 143.525C161.646 144.042 160.821 144.3 159.721 144.3ZM167.704 144.3C166.687 144.3 165.912 144.033 165.379 143.5C164.862 142.967 164.604 142.2 164.604 141.2V134.225H162.604V131.925H164.604V128.625H167.229V131.925H169.679V134.225H167.229V140.55C167.229 140.983 167.329 141.333 167.529 141.6C167.729 141.85 168.012 141.975 168.379 141.975C168.912 141.975 169.304 141.833 169.554 141.55L170.179 143.525C169.629 144.042 168.804 144.3 167.704 144.3ZM177.512 144.3C175.646 144.3 174.146 143.692 173.012 142.475C171.879 141.242 171.312 139.733 171.312 137.95C171.312 136.167 171.879 134.667 173.012 133.45C174.146 132.233 175.646 131.625 177.512 131.625C179.396 131.625 180.904 132.233 182.037 133.45C183.171 134.667 183.737 136.167 183.737 137.95C183.737 139.75 183.171 141.258 182.037 142.475C180.904 143.692 179.396 144.3 177.512 144.3ZM177.512 141.975C178.596 141.975 179.446 141.592 180.062 140.825C180.696 140.042 181.012 139.083 181.012 137.95C181.012 136.833 180.696 135.892 180.062 135.125C179.446 134.342 178.596 133.95 177.512 133.95C176.446 133.95 175.596 134.342 174.962 135.125C174.346 135.892 174.037 136.833 174.037 137.95C174.037 139.083 174.346 140.042 174.962 140.825C175.596 141.592 176.446 141.975 177.512 141.975ZM197.168 144H194.543V136.45C194.543 134.783 193.735 133.95 192.118 133.95C191.485 133.95 190.893 134.108 190.343 134.425C189.793 134.742 189.352 135.125 189.018 135.575V144H186.393V131.925H189.018V133.575C189.468 133.042 190.068 132.583 190.818 132.2C191.568 131.817 192.385 131.625 193.268 131.625C194.552 131.625 195.518 131.958 196.168 132.625C196.835 133.292 197.168 134.25 197.168 135.5V144Z" fill="#959595"/> </svg>'},{value:"preset-6",label:Object(r.__)("Preset 6","ultimate-addons-for-gutenberg"),attributes:[{label:"ctaBgType",value:"transparent"},{label:"ctaBgHColor",value:"#3a3a3a"},{label:"ctaColor",value:"#0170b9"},{label:"ctaHColor",value:"#ffffff"},{label:"btnBorderStyle",value:"solid"},{label:"btnBorderTopLeftRadius",value:30},{label:"btnBorderTopRightRadius",value:30},{label:"btnBorderBottomLeftRadius",value:30},{label:"btnBorderBottomRightRadius",value:30},{label:"btnBorderBottomWidth",value:1},{label:"btnBorderTopWidth",value:1},{label:"btnBorderLeftWidth",value:1},{label:"btnBorderRightWidth",value:1}],icon:'<svg xmlns="http://www.w3.org/2000/svg" width="325" height="245" viewBox="0 0 325 245" fill="none"> <path d="M27 31.7987C27 29.1485 29.1527 27 31.8081 27H294.192C296.847 27 299 29.1485 299 31.7987V245H27V31.7987Z" fill="white"/> <rect x="59" y="102" width="207.786" height="68" rx="34" stroke="#959595" stroke-width="2" fill="none"/> <path d="M134.2 143H125.775V126.325H133.975C135.458 126.325 136.617 126.733 137.45 127.55C138.3 128.35 138.725 129.358 138.725 130.575C138.725 131.575 138.442 132.425 137.875 133.125C137.325 133.808 136.642 134.233 135.825 134.4C136.725 134.533 137.483 135 138.1 135.8C138.733 136.583 139.05 137.483 139.05 138.5C139.05 139.833 138.617 140.917 137.75 141.75C136.9 142.583 135.717 143 134.2 143ZM133.375 133.225C134.108 133.225 134.683 133.025 135.1 132.625C135.517 132.225 135.725 131.708 135.725 131.075C135.725 130.425 135.517 129.9 135.1 129.5C134.683 129.1 134.108 128.9 133.375 128.9H128.7V133.225H133.375ZM133.5 140.425C134.3 140.425 134.925 140.225 135.375 139.825C135.825 139.408 136.05 138.833 136.05 138.1C136.05 137.45 135.825 136.908 135.375 136.475C134.925 136.025 134.3 135.8 133.5 135.8H128.7V140.425H133.5ZM152.686 143H150.061V141.4C148.928 142.667 147.503 143.3 145.786 143.3C143.203 143.3 141.911 142.025 141.911 139.475V130.925H144.536V138.525C144.536 139.408 144.744 140.042 145.161 140.425C145.578 140.792 146.178 140.975 146.961 140.975C147.594 140.975 148.186 140.825 148.736 140.525C149.286 140.225 149.728 139.85 150.061 139.4V130.925H152.686V143ZM159.721 143.3C158.704 143.3 157.929 143.033 157.396 142.5C156.879 141.967 156.621 141.2 156.621 140.2V133.225H154.621V130.925H156.621V127.625H159.246V130.925H161.696V133.225H159.246V139.55C159.246 139.983 159.346 140.333 159.546 140.6C159.746 140.85 160.029 140.975 160.396 140.975C160.929 140.975 161.321 140.833 161.571 140.55L162.196 142.525C161.646 143.042 160.821 143.3 159.721 143.3ZM167.704 143.3C166.687 143.3 165.912 143.033 165.379 142.5C164.862 141.967 164.604 141.2 164.604 140.2V133.225H162.604V130.925H164.604V127.625H167.229V130.925H169.679V133.225H167.229V139.55C167.229 139.983 167.329 140.333 167.529 140.6C167.729 140.85 168.012 140.975 168.379 140.975C168.912 140.975 169.304 140.833 169.554 140.55L170.179 142.525C169.629 143.042 168.804 143.3 167.704 143.3ZM177.512 143.3C175.646 143.3 174.146 142.692 173.012 141.475C171.879 140.242 171.312 138.733 171.312 136.95C171.312 135.167 171.879 133.667 173.012 132.45C174.146 131.233 175.646 130.625 177.512 130.625C179.396 130.625 180.904 131.233 182.037 132.45C183.171 133.667 183.737 135.167 183.737 136.95C183.737 138.75 183.171 140.258 182.037 141.475C180.904 142.692 179.396 143.3 177.512 143.3ZM177.512 140.975C178.596 140.975 179.446 140.592 180.062 139.825C180.696 139.042 181.012 138.083 181.012 136.95C181.012 135.833 180.696 134.892 180.062 134.125C179.446 133.342 178.596 132.95 177.512 132.95C176.446 132.95 175.596 133.342 174.962 134.125C174.346 134.892 174.037 135.833 174.037 136.95C174.037 138.083 174.346 139.042 174.962 139.825C175.596 140.592 176.446 140.975 177.512 140.975ZM197.168 143H194.543V135.45C194.543 133.783 193.735 132.95 192.118 132.95C191.485 132.95 190.893 133.108 190.343 133.425C189.793 133.742 189.352 134.125 189.018 134.575V143H186.393V130.925H189.018V132.575C189.468 132.042 190.068 131.583 190.818 131.2C191.568 130.817 192.385 130.625 193.268 130.625C194.552 130.625 195.518 130.958 196.168 131.625C196.835 132.292 197.168 133.25 197.168 134.5V143Z" fill="#959595"/> </svg>'}];var cF=Object(B.memo)(e=>{const{state:t,togglePreview:a,inspectorControls:l,categoriesList:i,taxonomyList:o}=e,n=[],s=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}];return""!==o&&Object.keys(o).map(e=>n.push({value:o[e].name,label:Object(mA.decodeEntities)(o[e].label)})),""!==i&&Object.keys(i).map(e=>s.push({value:i[e].id,label:Object(mA.decodeEntities)(i[e].name)})),React.createElement(React.Fragment,null,l,React.createElement(ge.BlockControls,null,(()=>{const{isEditing:e}=t;return React.createElement(Le.ToolbarGroup,{controls:[{icon:"edit",title:Object(r.__)("Edit","ultimate-addons-for-gutenberg"),onClick:()=>a(),isActive:e}]})})()))}),uF=function(e){const t=e.name.replace("uagb/",""),a=Object(B.useRef)(),{attributes:l,className:i,latestPosts:o,block_id:n,setAttributes:r}=e,s=le(),{columns:c,tcolumns:u,mcolumns:p,imgPosition:b,postsToShow:d,paginationEventType:g,buttonText:m,paginationType:y,layoutConfig:f,rowGap:h}=l,v=Ps(d,"postsToShow",t),_=Ps(c,"columns",t),T=Ps(u,"tcolumns",t),C=Ps(p,"mcolumns",t),S=Ps(h,"rowGap",t),w=!0===l.displayPostImage?"uagb-post__image-enabled":"uagb-post__image-disabled",k=()=>{setTimeout(()=>{if(null!=a&&a.current){var e,t;const l=null==a||null===(e=a.current)||void 0===e?void 0:e.offsetWidth,i=100-S/l*100,o=null==a||null===(t=a.current)||void 0===t?void 0:t.parentNode;if(o&&o.classList.contains("uagb-post__image-position-background")){const e=null==o?void 0:o.getElementsByClassName("uagb-post__image");for(const t of e)t&&(t.style.width=i+"%",t.style.marginLeft=S/2+"px")}}},100)};Object(B.useEffect)(()=>{k()},[]),Object(B.useEffect)(()=>{k()},[e]),Object(B.useEffect)(()=>{k()},[a]),Object(B.useEffect)(()=>{k()},[b]);const P=o.length>v?o.slice(0,v):o;return React.createElement("div",{className:Be()(i,"uagb-post-grid","uagb-post__arrow-outside","uagb-post__image-position-"+b,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+n),"data-blog-id":n},React.createElement(jk.a,{className:Be()("is-masonry","uagb-post__columns-"+_,"uagb-post__columns-tablet-"+T,"uagb-post__columns-mobile-"+C,"uagb-post__items",i,w,"uagb-post-grid","uagb-post__arrow-outside","uagb-post__image-position-"+b,"uagb-editor-preview-mode-"+s.toLowerCase(),"uagb-block-"+n),"data-blog-id":n},React.createElement(GA,{parentName:"uagb/post-masonry",parentClassName:"uagb-block-grid"},P.map((t,l)=>React.createElement("article",{ref:a,key:l,className:"uagb-post__inner-wrap"},RA("uagb/post-masonry",t,f,e.attributes,e.categoriesList,r))))),(()=>{if("infinite"===y){if("scroll"===g)return React.createElement("div",{className:"uagb-post-inf-loader"},React.createElement("div",{className:"uagb-post-loader-1"}),React.createElement("div",{className:"uagb-post-loader-2"}),React.createElement("div",{className:"uagb-post-loader-3"}));if("button"===g)return React.createElement("div",{className:"uagb-post__load-more-wrap"},React.createElement("span",{className:"uagb-post-pagination-button"},React.createElement("a",{className:"uagb-post__load-more"},m)))}})())},pF=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(WA.use(),()=>{WA.unuse()}),[]);const{state:t,setState:a,togglePreview:l,categoriesList:i,latestPosts:o,replaceInnerBlocks:n,block:s}=e,{attributes:c,deviceType:u,name:p,setAttributes:b,clientId:d,className:g}=e,m=React.createElement(uF,{attributes:c,className:g,latestPosts:o,block_id:c.block_id,categoriesList:i,deviceType:u,name:p,setAttributes:b});return React.createElement(React.Fragment,null,t.isEditing?(()=>{const i={template:e.attributes.layoutConfig,templateLock:!1,allowedBlocks:Object.keys(LA("uagb/post-masonry"))};return 0!==e.attributes.layoutConfig.length&&(i.renderAppender=!1),React.createElement(Le.Placeholder,{label:"Post Masonry Layout"},React.createElement("div",{className:"uagb-post-grid uagb-block-all-post-grid-item-template"},React.createElement(Le.Tip,null,Object(r.__)("Edit the blocks inside the preview below to change the content displayed for each post within the post grid.","ultimate-addons-for-gutenberg")),React.createElement(GA,{parentName:"uagb/post-masonry",parentClassName:"uagb-block-grid"},React.createElement("article",{className:"uagb-post__inner-wrap uagb-post__edit-mode"},React.createElement("div",{className:"uagb-post__text"},React.createElement(ge.InnerBlocks,i)))),React.createElement("div",{className:"uagb-block-all-post__actions"},React.createElement(Le.Button,{className:"uagb-block-all-post__done-button",isPrimary:!0,onClick:()=>{b({layoutConfig:HA(s)}),a({innerBlocks:s}),l()}},Object(r.__)("Done","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__cancel-button",isTertiary:!0,onClick:()=>{const{innerBlocks:e}=t;n(d,e),l()}},Object(r.__)("Cancel","ultimate-addons-for-gutenberg")),React.createElement(Le.Button,{className:"uagb-block-all-post__reset-button",onClick:()=>{const e=[];MA.map(t=>{let[a,l]=t;return e.push(Object(be.createBlock)(a,l)),!0}),n(d,e),a({innerBlocks:s})}},Object(r.__)("Reset Layout","ultimate-addons-for-gutenberg")))))})():m)});function bF(){return(bF=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var dF=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,setAttributes:a,attributes:l,attributes:{btnVPadding:i,btnHPadding:o,contentPadding:s,contentPaddingMobile:c,contentPaddingTablet:u,vpaginationButtonPaddingMobile:p,vpaginationButtonPaddingTablet:b,vpaginationButtonPaddingDesktop:d,hpaginationButtonPaddingMobile:g,hpaginationButtonPaddingTablet:m,hpaginationButtonPaddingDesktop:y,borderStyle:f,borderWidth:h,borderRadius:v,borderColor:_,borderHColor:T,btnBorderTopWidth:C,btnBorderLeftWidth:S,btnBorderRightWidth:k,btnBorderBottomWidth:P,btnBorderTopLeftRadius:x,btnBorderTopRightRadius:A,btnBorderBottomLeftRadius:G,btnBorderBottomRightRadius:M,btnBorderColor:R,btnBorderHColor:U,btnBorderStyle:E,blockName:O,allTaxonomyStore:L,align:H,displayPostTitle:j,displayPostDate:F,displayPostComment:z,displayPostExcerpt:D,displayPostAuthor:N,displayPostImage:I,displayPostTaxonomy:V,imgSize:W,imgPosition:q,displayPostLink:Z,newTab:$,ctaText:Y,columns:K,tcolumns:J,mcolumns:X,order:Q,orderBy:ee,categories:te,postsToShow:ae,rowGap:le,rowGapTablet:ie,rowGapMobile:oe,columnGap:ne,columnGapTablet:re,columnGapMobile:se,bgColor:ce,titleColor:ue,titleTag:pe,titleFontSize:be,titleFontSizeType:de,titleFontSizeMobile:ye,titleFontSizeTablet:fe,titleFontFamily:ve,titleFontWeight:_e,titleFontStyle:Te,titleLineHeightType:Se,titleLineHeight:we,titleLineHeightTablet:ke,titleLineHeightMobile:Pe,titleLoadGoogleFonts:xe,metaFontSize:Ae,metaFontSizeType:Ge,metaFontSizeMobile:Me,metaFontSizeTablet:Re,metaFontFamily:Be,metaFontWeight:Ue,metaFontStyle:Oe,metaLineHeightType:He,metaLineHeight:je,metaLineHeightTablet:ze,metaLineHeightMobile:De,metaLoadGoogleFonts:Ne,excerptFontSize:Ie,excerptFontSizeType:Ve,excerptFontSizeTablet:We,excerptFontSizeMobile:qe,excerptFontFamily:Ze,excerptFontWeight:$e,excerptFontStyle:Ye,excerptLineHeightType:Ke,excerptLineHeight:Je,excerptLineHeightTablet:Xe,excerptLineHeightMobile:Qe,excerptLoadGoogleFonts:et,ctaFontSize:tt,ctaFontSizeType:at,ctaFontSizeTablet:lt,ctaFontSizeMobile:it,ctaFontFamily:ot,ctaFontWeight:nt,ctaFontStyle:rt,ctaLineHeightType:st,ctaLineHeight:ct,ctaLineHeightTablet:ut,ctaLineHeightMobile:pt,ctaLoadGoogleFonts:bt,metaColor:dt,excerptColor:gt,ctaColor:mt,ctaBgType:yt,ctaBgHType:ft,ctaBgColor:ht,ctaHColor:vt,ctaBgHColor:_t,imageBottomSpace:Tt,imageBottomSpaceTablet:Ct,imageBottomSpaceMobile:St,taxonomyBottomSpace:wt,taxonomyBottomSpaceTablet:kt,taxonomyBottomSpaceMobile:Pt,titleBottomSpace:xt,titleBottomSpaceTablet:At,titleBottomSpaceMobile:Gt,metaBottomSpace:Mt,metaBottomSpaceTablet:Rt,metaBottomSpaceMobile:Bt,excerptBottomSpace:Ut,excerptBottomSpaceTablet:Et,excerptBottomSpaceMobile:Ot,ctaBottomSpace:Lt,ctaBottomSpaceTablet:Ht,ctaBottomSpaceMobile:jt,excerptLength:Ft,overlayOpacity:zt,bgOverlayColor:Dt,linkBox:Nt,postType:It,taxonomyType:Vt,postDisplaytext:Wt,paginationType:qt,paginationEventType:Zt,buttonText:$t,paginationAlign:Yt,paginationTextColor:Kt,paginationTextHoverColor:Jt,paginationMasonryBgColor:Xt,paginationBgHoverColor:Qt,paginationFontSize:ea,loaderColor:ta,loaderSize:aa,paginationButtonPaddingTop:la,paginationButtonPaddingRight:ia,paginationButtonPaddingBottom:oa,paginationButtonPaddingLeft:na,paginationButtonPaddingTopTablet:ra,paginationButtonPaddingRightTablet:sa,paginationButtonPaddingBottomTablet:ca,paginationButtonPaddingLeftTablet:ua,paginationButtonPaddingTopMobile:pa,paginationButtonPaddingRightMobile:ba,paginationButtonPaddingBottomMobile:da,paginationButtonPaddingLeftMobile:ga,mobilepaginationButtonPaddingType:ma,tabletpaginationButtonPaddingType:ya,paginationButtonPaddingType:fa,displayPostContentRadio:ha,excludeCurrentPost:va,rowGapUnit:_a,columnGapUnit:Ta,imageBottomSpaceUnit:Ca,taxonomyBottomSpaceUnit:Sa,titleBottomSpaceUnit:wa,metaBottomSpaceUnit:ka,ctaBottomSpaceUnit:Pa,titleTransform:xa,metaTransform:Aa,excerptTransform:Ga,ctaTransform:Ma,titleDecoration:Ra,metaDecoration:Ba,excerptDecoration:Ua,ctaDecoration:Ea,paddingBtnTop:Oa,paddingBtnBottom:La,paddingBtnLeft:Ha,paddingBtnRight:ja,paddingBtnTopTablet:Fa,paddingBtnRightTablet:za,paddingBtnBottomTablet:Da,paddingBtnLeftTablet:Ia,paddingBtnTopMobile:Va,paddingBtnRightMobile:Wa,paddingBtnBottomMobile:qa,paddingBtnLeftMobile:Za,paddingBtnUnit:$a,mobilePaddingBtnUnit:Ya,tabletPaddingBtnUnit:Ka,spacingLink:Ja,spacingLinkPadding:Xa,paddingTop:el,paddingBottom:al,paddingLeft:ll,paddingRight:sl,paddingTopTablet:cl,paddingRightTablet:ul,paddingBottomTablet:pl,paddingLeftTablet:bl,paddingTopMobile:dl,paddingRightMobile:gl,paddingBottomMobile:ml,paddingLeftMobile:yl,mobilePaddingUnit:fl,tabletPaddingUnit:vl,excerptBottomSpaceUnit:_l,contentPaddingUnit:Tl,postsOffset:Cl,taxStyle:Sl,taxDivider:wl,displayPostTaxonomyAboveTitle:kl,hideTaxonomyIcon:xl,highlightedTextColor:Al,highlightedTextBgColor:Gl,titleLetterSpacing:Ml,titleLetterSpacingTablet:Rl,titleLetterSpacingMobile:Bl,titleLetterSpacingType:Ul,metaLetterSpacing:El,metaLetterSpacingTablet:Ol,metaLetterSpacingMobile:Ll,metaLetterSpacingType:Hl,excerptLetterSpacing:jl,excerptLetterSpacingTablet:Fl,excerptLetterSpacingMobile:zl,excerptLetterSpacingType:Dl,ctaLetterSpacing:Nl,ctaLetterSpacingTablet:Il,ctaLetterSpacingMobile:Vl,ctaLetterSpacingType:Wl,enableOffset:ql,UAGHideDesktop:Zl,UAGHideTab:$l,UAGHideMob:Yl},deviceType:Kl,clientId:Jl}=e,[Xl,Ql]=Object(B.useState)({isEditing:!1,innerBlocks:[]}),[ei,ti]=Object(B.useState)(!1);Object(B.useEffect)(()=>{d&&(la||a(e=>({...e,paginationButtonPaddingTop:d})),oa||a(e=>({...e,paginationButtonPaddingBottom:d}))),y&&(ia||a(e=>({...e,paginationButtonPaddingRight:y})),na||a(e=>({...e,paginationButtonPaddingLeft:y}))),b&&(ra||a(e=>({...e,paginationButtonPaddingTopTablet:b})),ca||a(e=>({...e,paginationButtonPaddingBottomTablet:b}))),m&&(sa||a(e=>({...e,paginationButtonPaddingRightTablet:m})),ua||a(e=>({...e,paginationButtonPaddingLeftTablet:m}))),p&&(pa||a(e=>({...e,paginationButtonPaddingTopMobile:p})),da||a(e=>({...e,paginationButtonPaddingBottomMobile:p}))),g&&(ba||a(e=>({...e,paginationButtonPaddingRightMobile:g})),ga||a(e=>({...e,paginationButtonPaddingLeftMobile:g}))),i&&(void 0===Oa&&a(e=>({...e,paddingBtnTop:i})),void 0===La&&a(e=>({...e,paddingBtnBottom:i}))),o&&(void 0===ja&&a(e=>({...e,paddingBtnRight:o})),void 0===Ha&&a(e=>({...e,paddingBtnLeft:o}))),s&&(void 0===el&&a(e=>({...e,paddingTop:s})),void 0===al&&a(e=>({...e,paddingBottom:s})),void 0===sl&&a(e=>({...e,paddingRight:s})),void 0===ll&&a(e=>({...e,paddingLeft:s}))),u&&(void 0===cl&&a(e=>({...e,paddingTopTablet:u})),void 0===pl&&a(e=>({...e,paddingBottomTablet:u})),void 0===ul&&a(e=>({...e,paddingRightTablet:u})),void 0===bl&&a(e=>({...e,paddingLeftTablet:u}))),c&&(void 0===dl&&a(e=>({...e,paddingTopMobile:c})),void 0===ml&&a(e=>({...e,paddingBottomMobile:c})),void 0===gl&&a(e=>({...e,paddingRightMobile:c})),void 0===yl&&a(e=>({...e,paddingLeftMobile:c})))},[]),Object(B.useEffect)(()=>{h&&(void 0===C&&a({btnBorderTopWidth:h}),void 0===S&&a({btnBorderLeftWidth:h}),void 0===k&&a({btnBorderRightWidth:h}),void 0===P&&a({btnBorderBottomWidth:h})),v&&(void 0===x&&a({btnBorderTopLeftRadius:v}),void 0===A&&a({btnBorderTopRightRadius:v}),void 0===G&&a({btnBorderBottomLeftRadius:v}),void 0===M&&a({btnBorderBottomRightRadius:v})),_&&void 0===R&&a({btnBorderColor:_}),T&&void 0===U&&a({btnBorderHColor:T}),f&&void 0===E&&a({btnBorderStyle:f})},[l]),Object(B.useEffect)(()=>{Bs()},[Kl]),Object(B.useEffect)(()=>{he(e)},[Zl,$l,Yl,Kl]);const ai=Object(B.useMemo)(()=>gA(l,0,Kl),[l,Kl]),li=()=>{Ql({isEditing:!Xl.isEditing}),Xl.isEditing||Object(r.__)("Showing All Post Masonry Layout.","ultimate-addons-for-gutenberg")};let ii=[];const{latestPosts:oi,taxonomyList:ni,block:ri}=Object(n.useSelect)(e=>{const{getEntityRecords:t}=e("core");L||ei||(ti(!0),w()({path:"/spectra/v1/all_taxonomy"}).then(e=>{a({allTaxonomyStore:e}),ti(!1)}));const l=L?L[It]:void 0;let i="";void 0!==l&&(void 0!==l.taxonomy[Vt]&&(i=!1===l.taxonomy[Vt].rest_base||null===l.taxonomy[Vt].rest_base?l.taxonomy[Vt].name:l.taxonomy[Vt].rest_base),""!==Vt&&void 0!==l.terms&&void 0!==l.terms[Vt]&&(ii=l.terms[Vt]));const o={order:Q,orderby:ee,per_page:Ps(ae,"postsToShow",O),offset:Ps(Cl,"postsOffset",O)};if(va){const t=e("core/editor");o.exclude=null!=t&&t.getCurrentPostId?t.getCurrentPostId():null}const n=[],r=parseInt(te);n.push(r);const s=ii.length;for(let e=0;e<s;e++)ii[e].id===r&&0!==ii[e].child.length&&ii[e].child.forEach(e=>{n.push(e)});const{getBlocks:c}=e("core/block-editor");return void 0!==te&&""!==te&&(o[i]=void 0===te||""===te?te:n),{latestPosts:t("postType",It,o),categoriesList:ii,taxonomyList:void 0!==l?l.taxonomy:[],block:c(Jl)}}),{replaceInnerBlocks:si}=Object(n.useDispatch)("core/block-editor"),ci=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],ui=[{value:"",label:Object(r.__)("All","ultimate-addons-for-gutenberg")}],pi=[{value:"transparent",label:Object(r.__)("Transparent","ultimate-addons-for-gutenberg")},{value:"color",label:Object(r.__)("Color","ultimate-addons-for-gutenberg")}];ni&&Object.keys(ni).map(e=>ci.push({value:ni[e].name,label:Object(mA.decodeEntities)(ni[e].label)})),ii&&Object.keys(ii).map(e=>ui.push({value:ii[e].id,label:Object(mA.decodeEntities)(ii[e].name)}));const bi=Array.isArray(oi)&&oi.length,di=React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{title:Object(r.__)("General","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Text Alignment","ultimate-addons-for-gutenberg"),data:{value:H,label:"align"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0}),React.createElement(Pi,{label:Object(r.__)("Post Type","ultimate-addons-for-gutenberg"),data:{value:It},onChange:e=>{a({postType:e}),a({categories:""}),a({taxonomyType:"category"})},options:uagb_blocks_info.post_types}),""!==ni&&React.createElement(Pi,{label:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),data:{value:Vt},onChange:e=>{a({taxonomyType:e}),a({categories:""})},options:ci}),""!=ii&&React.createElement(React.Fragment,null,React.createElement(Pi,{label:ni[Vt].label,data:{value:te,label:"categories"},setAttributes:a,options:ui})),React.createElement(Le.ToggleControl,{label:Object(r.__)("Exclude Current Post","ultimate-addons-for-gutenberg"),checked:va,onChange:()=>a({excludeCurrentPost:!va})}),React.createElement(bc,{label:Object(r.__)("Posts Per Page","ultimate-addons-for-gutenberg"),setAttributes:a,value:ae,data:{value:ae,label:"postsToShow"},min:1,max:100,displayUnit:!1,showControlHeader:!1}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Offset Starting Post","ultimate-addons-for-gutenberg"),checked:ql,onChange:e=>{a({enableOffset:e}),a({paginationType:"none"})},help:React.createElement(React.Fragment,null,!ql&&React.createElement(React.Fragment,null,Object(r.__)("Note: Enabling this will disable the Pagination. Setting the offset parameter overrides/ignores the paged parameter and breaks pagination. ","ultimate-addons-for-gutenberg"),React.createElement(Le.ExternalLink,{href:"https://developer.wordpress.org/reference/classes/wp_query/#pagination-parameters:~:text=Warning%3A%20Setting%20the%20offset%20parameter%20overrides/ignores%20the%20paged%20parameter%20and%20breaks%20pagination.%20The%20%27offset%27%20parameter%20is%20ignored%20when%20%27posts_per_page%27%3D%3E%2D1%20(show%20all%20posts)%20is%20used."},Object(r.__)("Read more","ultimate-addons-for-gutenberg"))))}),ql&&React.createElement(bc,{label:Object(r.__)("Offset By","ultimate-addons-for-gutenberg"),setAttributes:a,value:Cl,data:{value:Cl,label:"postsOffset"},onChange:e=>{a({postsOffset:e})},min:0,max:100,displayUnit:!1,help:React.createElement(React.Fragment,null,ql&&Object(r.__)("Note: The offset will skip the number of posts set, and will use the next post as the starting post.","ultimate-addons-for-gutenberg"))}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Order By","ultimate-addons-for-gutenberg"),data:{value:ee,label:"orderBy"},options:[{value:"date",label:Object(r.__)("Date","ultimate-addons-for-gutenberg")},{value:"title",label:Object(r.__)("Title","ultimate-addons-for-gutenberg")},{value:"rand",label:Object(r.__)("Random","ultimate-addons-for-gutenberg")},{value:"menu_order",label:Object(r.__)("Menu Order","ultimate-addons-for-gutenberg")}]}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Order","ultimate-addons-for-gutenberg"),data:{value:Q,label:"order"},options:[{value:"desc",label:Object(r.__)("Descending","ultimate-addons-for-gutenberg")},{value:"asc",label:Object(r.__)("Ascending","ultimate-addons-for-gutenberg")}]}),React.createElement(tl,{label:Object(r.__)("Columns","ultimate-addons-for-gutenberg"),data:{desktop:{value:K,label:"columns"},tablet:{value:J,label:"tcolumns"},mobile:{value:X,label:"mcolumns"}},min:0,max:8,displayUnit:!1,setAttributes:a}),!ql&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),data:{value:qt,label:"paginationType"},className:"uagb-multi-button-alignment-control",options:[{value:"none",label:"None"},{value:"infinite",label:"Infinite"}],showIcons:!1}),"infinite"===qt&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Infinite Load Event","ultimate-addons-for-gutenberg"),data:{value:Zt,label:"paginationEventType"},className:"uagb-multi-button-alignment-control",options:[{value:"button",label:"Button"},{value:"scroll",label:"Scroll"}],showIcons:!1}),"infinite"===qt&&"button"===Zt&&React.createElement(React.Fragment,null,React.createElement(Fs,{autoComplete:"off",label:Object(r.__)("Button Text","ultimate-addons-for-gutenberg"),value:$t,data:{value:$t,label:"buttonText"},setAttributes:a,onChange:e=>a({buttonText:e})}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Pagination Button Alignment","ultimate-addons-for-gutenberg"),data:{value:Yt,label:"paginationAlign"},className:"uagb-multi-button-alignment-control",options:[{value:"left",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-left")}),tooltip:Object(r.__)("Left","ultimate-addons-for-gutenberg")},{value:"center",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-center")}),tooltip:Object(r.__)("Center","ultimate-addons-for-gutenberg")},{value:"right",icon:React.createElement(Le.Icon,{icon:Ce("fa fa-align-right")}),tooltip:Object(r.__)("Right","ultimate-addons-for-gutenberg")}],showIcons:!0})),React.createElement("h2",null,Object(r.__)("If Posts Not Found","ultimate-addons-for-gutenberg")),React.createElement(Fs,{autoComplete:"off",label:Object(r.__)("Display Message","ultimate-addons-for-gutenberg"),value:Wt,data:{value:Wt,label:"postDisplaytext"},setAttributes:a,onChange:e=>a({postDisplaytext:e})})),React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Featured Image","ultimate-addons-for-gutenberg"),checked:I,onChange:()=>a({displayPostImage:!I})}),!0===I&&React.createElement(Pi,{label:Object(r.__)("Sizes","ultimate-addons-for-gutenberg"),data:{value:W,label:"imgSize"},setAttributes:a,options:uagb_blocks_info.image_sizes}),!0===I&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Position","ultimate-addons-for-gutenberg"),data:{value:q,label:"imgPosition"},options:[{value:"top",label:Object(r.__)("Top","ultimate-addons-for-gutenberg")},{value:"background",label:Object(r.__)("Background","ultimate-addons-for-gutenberg")}]}),!0===I&&"background"===q&&React.createElement(Le.ToggleControl,{label:Object(r.__)("Link Complete Box","ultimate-addons-for-gutenberg"),checked:Nt,onChange:()=>a({linkBox:!Nt})})),React.createElement(Fe,{title:Object(r.__)("Content","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Title","ultimate-addons-for-gutenberg"),checked:j,onChange:()=>a({displayPostTitle:!j})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Author","ultimate-addons-for-gutenberg"),checked:N,onChange:()=>a({displayPostAuthor:!N})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Date","ultimate-addons-for-gutenberg"),checked:F,onChange:()=>a({displayPostDate:!F})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Comment","ultimate-addons-for-gutenberg"),checked:z,onChange:()=>a({displayPostComment:!z})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Taxonomy","ultimate-addons-for-gutenberg"),checked:V,onChange:()=>a({displayPostTaxonomy:!V})}),V&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Taxonomy Position","ultimate-addons-for-gutenberg"),data:{value:kl,label:"displayPostTaxonomyAboveTitle"},options:[{value:"withMeta",label:Object(r.__)("With Meta","ultimate-addons-for-gutenberg")},{value:"aboveTitle",label:Object(r.__)("Above Title","ultimate-addons-for-gutenberg")}]}),"aboveTitle"===kl&&React.createElement(React.Fragment,null,React.createElement(Na,{setAttributes:a,label:Object(r.__)("Taxonomy Style","ultimate-addons-for-gutenberg"),data:{value:Sl,label:"taxStyle"},options:[{value:"default",label:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{value:"highlighted",label:Object(r.__)("Highlighted","ultimate-addons-for-gutenberg")}]}),"default"===Sl&&React.createElement(Fs,{label:Object(r.__)("Taxonomy Divider","ultimate-addons-for-gutenberg"),value:wl,data:{value:wl,label:"taxDivider"},setAttributes:a,onChange:e=>a({taxDivider:e})}))),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Meta Icon","ultimate-addons-for-gutenberg"),checked:xl,onChange:()=>a({hideTaxonomyIcon:!xl})}),React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Excerpt","ultimate-addons-for-gutenberg"),checked:D,onChange:()=>a({displayPostExcerpt:!D})}),D&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Show:","ultimate-addons-for-gutenberg"),data:{value:ha,label:"displayPostContentRadio"},options:[{label:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg"),value:"excerpt"},{label:Object(r.__)("Full post","ultimate-addons-for-gutenberg"),value:"full_post"}]}),D&&"excerpt"===ha&&React.createElement(Qa,{label:Object(r.__)("Max number of words in excerpt","ultimate-addons-for-gutenberg"),setAttributes:a,value:Ft,data:{value:Ft,label:"excerptLength"},min:1,max:100,displayUnit:!1})),React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Le.ToggleControl,{label:Object(r.__)("Show Read More Link","ultimate-addons-for-gutenberg"),checked:Z,onChange:()=>a({displayPostLink:!Z})}),Z&&React.createElement(React.Fragment,null,React.createElement(Le.ToggleControl,{label:Object(r.__)("Open Links in New Tab","ultimate-addons-for-gutenberg"),checked:$,onChange:()=>a({newTab:!$})}),React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:Y,data:{value:Y,label:"ctaText"},setAttributes:a,onChange:e=>a({ctaText:e})}),React.createElement(zr,{setAttributes:a,presets:sF,presetInputType:"radioImage"}))),"not-installed"===uagb_blocks_info.spectra_pro_status&&React.createElement(Fe,{className:"block-editor-block-inspector__upgrade_pro uagb-upgrade_pro-tab"},React.createElement(Qr,{control:{title:Object(r.__)("Take Post Blocks to the next level with the Loop Builder","ultimate-addons-for-gutenberg"),choices:[{title:Object(r.__)("More customizability","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Blocks inside the Post Items","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Include and Exclude option for Taxonomy/Posts/Authors","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Show sticky posts","ultimate-addons-for-gutenberg"),description:""},{title:Object(r.__)("Multiple Layouts","ultimate-addons-for-gutenberg"),description:""}],renderAs:"list",campaign:"post-masonry"}}))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),initialOpen:!0},React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ce,data:{value:ce,label:"bgColor"},setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Column Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:le,label:"rowGap"},tablet:{value:ie,label:"rowGapTablet"},mobile:{value:oe,label:"rowGapMobile"}},min:0,max:50,unit:{value:_a,label:"rowGapUnit"},setAttributes:a}),React.createElement(tl,{label:Object(r.__)("Row Gap","ultimate-addons-for-gutenberg"),data:{desktop:{value:ne,label:"columnGap"},tablet:{value:re,label:"columnGapTablet"},mobile:{value:se,label:"columnGapMobile"}},min:0,max:50,unit:{value:Ta,label:"columnGapUnit"},setAttributes:a}),React.createElement(Pl,bF({},e,{label:Object(r.__)("Content Padding","ultimate-addons-for-gutenberg"),valueTop:{value:el,label:"paddingTop"},valueRight:{value:sl,label:"paddingRight"},valueBottom:{value:al,label:"paddingBottom"},valueLeft:{value:ll,label:"paddingLeft"},valueTopTablet:{value:cl,label:"paddingTopTablet"},valueRightTablet:{value:ul,label:"paddingRightTablet"},valueBottomTablet:{value:pl,label:"paddingBottomTablet"},valueLeftTablet:{value:bl,label:"paddingLeftTablet"},valueTopMobile:{value:dl,label:"paddingTopMobile"},valueRightMobile:{value:gl,label:"paddingRightMobile"},valueBottomMobile:{value:ml,label:"paddingBottomMobile"},valueLeftMobile:{value:yl,label:"paddingLeftMobile"},unit:{value:Tl,label:"contentPaddingUnit"},mUnit:{value:fl,label:"mobilePaddingUnit"},tUnit:{value:vl,label:"tabletPaddingUnit"},deviceType:Kl,attributes:l,setAttributes:a,link:{value:Xa,label:"spacingLinkPadding"}}))),"aboveTitle"===kl&&React.createElement(Fe,{title:Object(r.__)("Taxonomy","ultimate-addons-for-gutenberg"),initialOpen:!1},"aboveTitle"===kl&&"highlighted"===Sl&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Taxonomy Text Color","ultimate-addons-for-gutenberg"),colorValue:Al,data:{value:Al,label:"highlightedTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Highlighted Color","ultimate-addons-for-gutenberg"),colorValue:Gl,data:{value:Gl,label:"highlightedTextBgColor"},setAttributes:a})),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:wt,label:"taxonomyBottomSpace"},tablet:{value:kt,label:"taxonomyBottomSpaceTablet"},mobile:{value:Pt,label:"taxonomyBottomSpaceMobile"}},min:0,max:50,unit:{value:Sa,label:"taxonomyBottomSpaceUnit"},setAttributes:a})),j&&React.createElement(Fe,{title:Object(r.__)("Title","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Na,{setAttributes:a,label:Object(r.__)("HTML Tag","ultimate-addons-for-gutenberg"),data:{value:pe,label:"titleTag"},options:[{value:"h1",label:Object(r.__)("H1","ultimate-addons-for-gutenberg")},{value:"h2",label:Object(r.__)("H2","ultimate-addons-for-gutenberg")},{value:"h3",label:Object(r.__)("H3","ultimate-addons-for-gutenberg")},{value:"h4",label:Object(r.__)("H4","ultimate-addons-for-gutenberg")},{value:"h5",label:Object(r.__)("H5","ultimate-addons-for-gutenberg")},{value:"h6",label:Object(r.__)("H6","ultimate-addons-for-gutenberg")},{value:"span",label:Object(r.__)("Span","ultimate-addons-for-gutenberg")},{value:"p",label:Object(r.__)("P","ultimate-addons-for-gutenberg")}]}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:ue,data:{value:ue,label:"titleColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:a,loadGoogleFonts:{value:xe,label:"titleLoadGoogleFonts"},fontFamily:{value:ve,label:"titleFontFamily"},fontWeight:{value:_e,label:"titleFontWeight"},fontStyle:{value:Te,label:"titleFontStyle"},fontSizeType:{value:de,label:"titleFontSizeType"},fontSize:{value:be,label:"titleFontSize"},fontSizeMobile:{value:ye,label:"titleFontSizeMobile"},fontSizeTablet:{value:fe,label:"titleFontSizeTablet"},lineHeightType:{value:Se,label:"titleLineHeightType"},lineHeight:{value:we,label:"titleLineHeight"},lineHeightMobile:{value:Pe,label:"titleLineHeightMobile"},lineHeightTablet:{value:ke,label:"titleLineHeightTablet"},letterSpacing:{value:Ml,label:"titleLetterSpacing"},letterSpacingTablet:{value:Rl,label:"titleLetterSpacingTablet"},letterSpacingMobile:{value:Bl,label:"titleLetterSpacingMobile"},letterSpacingType:{value:Ul,label:"titleLetterSpacingType"},transform:{value:xa,label:"titleTransform"},decoration:{value:Ra,label:"titleDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:xt,label:"titleBottomSpace"},tablet:{value:At,label:"titleBottomSpaceTablet"},mobile:{value:Gt,label:"titleBottomSpaceMobile"}},min:0,max:50,unit:{value:wa,label:"titleBottomSpaceUnit"},setAttributes:a})),(N||F||z||V)&&React.createElement(Fe,{title:Object(r.__)("Meta","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:dt,data:{value:dt,label:"metaColor"},setAttributes:a}),"aboveTitle"===kl&&"highlighted"===Sl&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Taxonomy Text Color","ultimate-addons-for-gutenberg"),colorValue:Al,data:{value:Al,label:"highlightedTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Highlighted Color","ultimate-addons-for-gutenberg"),colorValue:Gl,data:{value:Gl,label:"highlightedTextBgColor"},setAttributes:a})),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:a,loadGoogleFonts:{value:Ne,label:"metaLoadGoogleFonts"},fontFamily:{value:Be,label:"metaFontFamily"},fontWeight:{value:Ue,label:"metaFontWeight"},fontStyle:{value:Oe,label:"metaFontStyle"},fontSizeType:{value:Ge,label:"metaFontSizeType"},fontSize:{value:Ae,label:"metaFontSize"},fontSizeMobile:{value:Me,label:"metaFontSizeMobile"},fontSizeTablet:{value:Re,label:"metaFontSizeTablet"},lineHeightType:{value:He,label:"metaLineHeightType"},lineHeight:{value:je,label:"metaLineHeight"},lineHeightMobile:{value:De,label:"metaLineHeightMobile"},lineHeightTablet:{value:ze,label:"metaLineHeightTablet"},letterSpacing:{value:El,label:"metaLetterSpacing"},letterSpacingTablet:{value:Ol,label:"metaLetterSpacingTablet"},letterSpacingMobile:{value:Ll,label:"metaLetterSpacingMobile"},letterSpacingType:{value:Hl,label:"metaLetterSpacingType"},transform:{value:Aa,label:"metaTransform"},decoration:{value:Ba,label:"metaDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Mt,label:"metaBottomSpace"},tablet:{value:Rt,label:"metaBottomSpaceTablet"},mobile:{value:Bt,label:"metaBottomSpaceMobile"}},min:0,max:50,unit:{value:ka,label:"metaBottomSpaceUnit"},setAttributes:a})),D&&React.createElement(Fe,{title:Object(r.__)("Excerpt","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:gt,data:{value:gt,label:"excerptColor"},setAttributes:a}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:a,loadGoogleFonts:{value:et,label:"excerptLoadGoogleFonts"},fontFamily:{value:Ze,label:"excerptFontFamily"},fontWeight:{value:$e,label:"excerptFontWeight"},fontStyle:{value:Ye,label:"excerptFontStyle"},fontSizeType:{value:Ve,label:"excerptFontSizeType"},fontSize:{value:Ie,label:"excerptFontSize"},fontSizeMobile:{value:qe,label:"excerptFontSizeMobile"},fontSizeTablet:{value:We,label:"excerptFontSizeTablet"},lineHeightType:{value:Ke,label:"excerptLineHeightType"},lineHeight:{value:Je,label:"excerptLineHeight"},lineHeightMobile:{value:Qe,label:"excerptLineHeightMobile"},lineHeightTablet:{value:Xe,label:"excerptLineHeightTablet"},letterSpacing:{value:jl,label:"excerptLetterSpacing"},letterSpacingTablet:{value:Fl,label:"excerptLetterSpacingTablet"},letterSpacingMobile:{value:zl,label:"excerptLetterSpacingMobile"},letterSpacingType:{value:Dl,label:"excerptLetterSpacingType"},transform:{value:Ga,label:"excerptTransform"},decoration:{value:Ua,label:"excerptDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Ut,label:"excerptBottomSpace"},tablet:{value:Et,label:"excerptBottomSpaceTablet"},mobile:{value:Ot,label:"excerptBottomSpaceMobile"}},min:0,max:50,unit:{value:_l,label:"excerptBottomSpaceUnit"},setAttributes:a})),Z&&React.createElement(Fe,{title:Object(r.__)("Read More Link","ultimate-addons-for-gutenberg"),initialOpen:!1},React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:mt,data:{value:mt,label:"ctaColor"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:yt,label:"ctaBgType"},className:"uagb-multi-button-alignment-control",options:pi}),"color"===yt&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:ht,data:{value:ht,label:"ctaBgColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:vt,data:{value:vt,label:"ctaHColor"},setAttributes:a}),React.createElement(Na,{setAttributes:a,label:Object(r.__)("Background Type","ultimate-addons-for-gutenberg"),data:{value:ft,label:"ctaBgHType"},className:"uagb-multi-button-alignment-control",options:pi}),"color"===ft&&React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:_t,data:{value:_t,label:"ctaBgHColor"},setAttributes:a})),disableBottomSeparator:!1}),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:l,setAttributes:a,loadGoogleFonts:{value:bt,label:"ctaLoadGoogleFonts"},fontFamily:{value:ot,label:"ctaFontFamily"},fontWeight:{value:nt,label:"ctaFontWeight"},fontStyle:{value:rt,label:"ctaFontStyle"},fontSizeType:{value:at,label:"ctaFontSizeType"},fontSize:{value:tt,label:"ctaFontSize"},fontSizeMobile:{value:it,label:"ctaFontSizeMobile"},fontSizeTablet:{value:lt,label:"ctaFontSizeTablet"},lineHeightType:{value:st,label:"ctaLineHeightType"},lineHeight:{value:ct,label:"ctaLineHeight"},lineHeightMobile:{value:pt,label:"ctaLineHeightMobile"},lineHeightTablet:{value:ut,label:"ctaLineHeightTablet"},letterSpacing:{value:Nl,label:"ctaLetterSpacing"},letterSpacingTablet:{value:Il,label:"ctaLetterSpacingTablet"},letterSpacingMobile:{value:Vl,label:"ctaLetterSpacingMobile"},letterSpacingType:{value:Wl,label:"ctaLetterSpacingType"},transform:{value:Ma,label:"ctaTransform"},decoration:{value:Ea,label:"ctaDecoration"}}),React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Lt,label:"ctaBottomSpace"},tablet:{value:Ht,label:"ctaBottomSpaceTablet"},mobile:{value:jt,label:"ctaBottomSpaceMobile"}},min:0,max:300,unit:{value:Pa,label:"ctaBottomSpaceUnit"},setAttributes:a}),React.createElement(Hi,{setAttributes:a,prefix:"btn",attributes:l,deviceType:Kl}),React.createElement(Pl,bF({},e,{label:Object(r.__)("Button Padding","ultimate-addons-for-gutenberg"),valueTop:{value:Oa,label:"paddingBtnTop"},valueRight:{value:ja,label:"paddingBtnRight"},valueBottom:{value:La,label:"paddingBtnBottom"},valueLeft:{value:Ha,label:"paddingBtnLeft"},valueTopTablet:{value:Fa,label:"paddingBtnTopTablet"},valueRightTablet:{value:za,label:"paddingBtnRightTablet"},valueBottomTablet:{value:Da,label:"paddingBtnBottomTablet"},valueLeftTablet:{value:Ia,label:"paddingBtnLeftTablet"},valueTopMobile:{value:Va,label:"paddingBtnTopMobile"},valueRightMobile:{value:Wa,label:"paddingBtnRightMobile"},valueBottomMobile:{value:qa,label:"paddingBtnBottomMobile"},valueLeftMobile:{value:Za,label:"paddingBtnLeftMobile"},unit:{value:$a,label:"paddingBtnUnit"},mUnit:{value:Ya,label:"mobilePaddingBtnUnit"},tUnit:{value:Ka,label:"tabletPaddingBtnUnit"},deviceType:Kl,attributes:l,setAttributes:a,link:{value:Ja,label:"spacingLink"}}))),"infinite"===qt?React.createElement(Fe,{title:Object(r.__)("Pagination","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},"button"===Zt&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Font Size","ultimate-addons-for-gutenberg"),value:ea,data:{value:ea,label:"paginationFontSize"},setAttributes:a,min:0,max:100,displayUnit:!1}),React.createElement(Pl,bF({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:la,label:"paginationButtonPaddingTop"},valueRight:{value:ia,label:"paginationButtonPaddingRight"},valueBottom:{value:oa,label:"paginationButtonPaddingBottom"},valueLeft:{value:na,label:"paginationButtonPaddingLeft"},valueTopTablet:{value:ra,label:"paginationButtonPaddingTopTablet"},valueRightTablet:{value:sa,label:"paginationButtonPaddingRightTablet"},valueBottomTablet:{value:ca,label:"paginationButtonPaddingBottomTablet"},valueLeftTablet:{value:ua,label:"paginationButtonPaddingLeftTablet"},valueTopMobile:{value:pa,label:"paginationButtonPaddingTopMobile"},valueRightMobile:{value:ba,label:"paginationButtonPaddingRightMobile"},valueBottomMobile:{value:da,label:"paginationButtonPaddingBottomMobile"},valueLeftMobile:{value:ga,label:"paginationButtonPaddingLeftMobile"},unit:{value:fa,label:"paginationButtonPaddingType"},mUnit:{value:ma,label:"mobilepaginationButtonPaddingType"},tUnit:{value:ya,label:"tabletpaginationButtonPaddingType"},deviceType:Kl,attributes:l,setAttributes:a,link:{value:Ja,label:"spacingLink"}})),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Kt,data:{value:Kt,label:"paginationTextColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Xt,data:{value:Xt,label:"paginationMasonryBgColor"},setAttributes:a})),hover:React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:Jt,data:{value:Jt,label:"paginationTextHoverColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:Qt,data:{value:Qt,label:"paginationBgHoverColor"},setAttributes:a})),disableBottomSeparator:!1}),React.createElement(Hi,{setAttributes:a,prefix:"paginationMasonry",attributes:l,deviceType:Kl,disableBottomSeparator:!0,disabledBorderTitle:!1})),"scroll"===Zt&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Loader Color","ultimate-addons-for-gutenberg"),colorValue:ta,data:{value:ta,label:"loaderColor"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Loader Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:aa,data:{value:aa,label:"loaderSize"},min:1,max:50,displayUnit:!1}))):"",!0===I&&React.createElement(Fe,{title:Object(r.__)("Image","ultimate-addons-for-gutenberg"),initialOpen:!1},"background"===q&&React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Overlay Color","ultimate-addons-for-gutenberg"),colorValue:Dt,data:{value:Dt,label:"bgOverlayColor"},setAttributes:a}),React.createElement(Qa,{label:Object(r.__)("Overlay Opacity","ultimate-addons-for-gutenberg"),setAttributes:a,value:zt,data:{value:zt,label:"overlayOpacity"},min:0,max:100,displayUnit:!1})),"top"===q&&React.createElement(tl,{label:Object(r.__)("Bottom Spacing","ultimate-addons-for-gutenberg"),data:{desktop:{value:Tt,label:"imageBottomSpace"},tablet:{value:Ct,label:"imageBottomSpaceTablet"},mobile:{value:St,label:"imageBottomSpaceMobile"}},min:0,max:50,unit:{value:Ca,label:"imageBottomSpaceUnit"},setAttributes:a}))),React.createElement(il,bF({},rl,{parentProps:e}))));return bi?React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:ai}),React.createElement(vA,{attributes:l}),t&&React.createElement(cF,bF({},e,{state:Xl,inspectorControls:di,togglePreview:li,taxonomyList:ni,categoriesList:ii})),React.createElement(pF,bF({},e,{state:Xl,setState:Ql,togglePreview:li,latestPosts:oi,categoriesList:ii,replaceInnerBlocks:si,block:ri}))):React.createElement(React.Fragment,null,di,React.createElement(Le.Placeholder,{icon:"admin-post",label:Object(r.__)("Post Masonry","ultimate-addons-for-gutenberg")},Array.isArray(oi)?Wt:React.createElement(Le.Spinner,null)))});let gF={};gF=Object(j.applyFilters)("uagb/post-masonry",ws(gF)),"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/post-masonry",{...gF,title:Object(r.__)("Post Masonry","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display your posts in a masonary layout.","ultimate-addons-for-gutenberg"),icon:re("post_masonry"),keywords:[Object(r.__)("post","ultimate-addons-for-gutenberg"),Object(r.__)("masonry","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"post-masonry"}):React.createElement(dF,e),save:()=>null}),a(376);function mF(){return(mF=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var yF,fF=Object(B.memo)(e=>{const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,layout:o,placeholder:n,inputSize:s,textColor:c,inputBgColor:u,boxShadowColor:p,boxShadowHOffset:b,boxShadowVOffset:d,boxShadowBlur:g,boxShadowSpread:m,boxShadowPosition:y,buttonBgColor:f,buttonBgHoverColor:h,buttonIconColor:v,buttonIconHoverColor:_,buttonWidth:T,buttonWidthType:C,buttonIconSize:S,buttonIconSizeType:w,iconColor:k,iconSize:P,inputloadGoogleFonts:x,inputFontFamily:A,inputFontWeight:G,inputFontSize:M,inputFontSizeType:R,inputFontSizeTablet:B,inputFontSizeMobile:U,inputLineHeight:E,inputLineHeightType:O,inputLineHeightTablet:L,inputLineHeightMobile:H,inputPaddingTypeDesktop:j,buttonType:F,buttonText:z,buttonloadGoogleFonts:D,buttonFontFamily:N,buttonFontWeight:I,buttonFontSize:V,buttonFontSizeType:W,buttonFontSizeTablet:q,buttonFontSizeMobile:Z,buttonLineHeight:$,buttonLineHeightType:Y,buttonLineHeightTablet:K,buttonTransform:J,buttonDecoration:X,buttonLineHeightMobile:Q,buttonTextColor:ee,buttonTextHoverColor:te,inputSizeType:ae,paddingInputTop:le,paddingInputRight:ie,paddingInputBottom:oe,paddingInputLeft:ne,paddingInputTopTablet:re,paddingInputRightTablet:se,paddingInputBottomTablet:ce,paddingInputLeftTablet:ue,paddingInputTopMobile:pe,paddingInputRightMobile:be,paddingInputBottomMobile:de,paddingInputLeftMobile:me,mobilePaddingInputUnit:ye,tabletPaddingInputUnit:fe,spacingLink:he,iconSizeType:ve,inputTransform:_e,inputDecoration:Te,inputFontStyle:Ce,buttonFontStyle:Se}=t;return React.createElement(React.Fragment,null,React.createElement(ge.InspectorControls,null,React.createElement(Ee,null,React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement(Na,{setAttributes:a,label:Object(r.__)("Layout","ultimate-addons-for-gutenberg"),data:{value:o,label:"layout"},className:"uagb-multi-button-alignment-control",options:[{value:"input-button",label:"Classic"},{value:"input",label:"Minimal"}],showIcons:!1}),React.createElement(Fs,{label:Object(r.__)("Placeholder","ultimate-addons-for-gutenberg"),value:n,data:{value:n,label:"placeholder"},setAttributes:a,onChange:e=>a({placeholder:e})}),React.createElement(Qa,{label:Object(r.__)("Input Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:s,data:{value:s,label:"inputSize"},min:0,max:200,units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}],unit:{value:ae,label:"inputSizeType"}}),"input-button"===o&&React.createElement(Na,{setAttributes:a,label:Object(r.__)("Button Type","ultimate-addons-for-gutenberg"),data:{value:F,label:"buttonType"},className:"uagb-multi-button-alignment-control",options:[{value:"icon",label:"Icon"},{value:"text",label:"Text"}],showIcons:!1}),"input-button"===o&&"text"===F&&React.createElement(React.Fragment,null,React.createElement(Fs,{label:Object(r.__)("Text","ultimate-addons-for-gutenberg"),value:z,data:{value:z,label:"buttonText"},setAttributes:a,onChange:e=>{a({buttonText:e})}})))),React.createElement(il,nl,React.createElement(Fe,{title:Object(r.__)("Input Box","ultimate-addons-for-gutenberg"),initialOpen:!0,className:"uagb__url-panel-body"},React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:c||"",data:{value:c,label:"textColor"},setAttributes:a}),React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:u||"",data:{value:u,label:"inputBgColor"},setAttributes:a}),React.createElement(Hi,{setAttributes:a,borderStyleLabel:Object(r.__)("Style","ultimate-addons-for-gutenberg"),borderWidthLabel:Object(r.__)("Width","ultimate-addons-for-gutenberg"),borderRadiusLabel:Object(r.__)("Radius","ultimate-addons-for-gutenberg"),prefix:"input",attributes:t,deviceType:l}),React.createElement(Pl,mF({},e,{label:Object(r.__)("Padding","ultimate-addons-for-gutenberg"),valueTop:{value:le,label:"paddingInputTop"},valueRight:{value:ie,label:"paddingInputRight"},valueBottom:{value:oe,label:"paddingInputBottom"},valueLeft:{value:ne,label:"paddingInputLeft"},valueTopTablet:{value:re,label:"paddingInputTopTablet"},valueRightTablet:{value:se,label:"paddingInputRightTablet"},valueBottomTablet:{value:ce,label:"paddingInputBottomTablet"},valueLeftTablet:{value:ue,label:"paddingInputLeftTablet"},valueTopMobile:{value:pe,label:"paddingInputTopMobile"},valueRightMobile:{value:be,label:"paddingInputRightMobile"},valueBottomMobile:{value:de,label:"paddingInputBottomMobile"},valueLeftMobile:{value:me,label:"paddingInputLeftMobile"},unit:{value:j,label:"inputPaddingTypeDesktop"},mUnit:{value:ye,label:"mobilePaddingInputUnit"},tUnit:{value:fe,label:"tabletPaddingInputUnit"},deviceType:l,attributes:t,setAttributes:a,link:{value:he,label:"spacingLink"},units:[{name:Object(r.__)("Pixel","ultimate-addons-for-gutenberg"),unitValue:"px"},{name:Object(r.__)("Em","ultimate-addons-for-gutenberg"),unitValue:"em"},{name:Object(r.__)("%","ultimate-addons-for-gutenberg"),unitValue:"%"}]})),React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:x,label:"inputloadGoogleFonts"},fontFamily:{value:A,label:"inputFontFamily"},fontWeight:{value:G,label:"inputFontWeight"},fontStyle:{value:Ce,label:"inputFontStyle"},fontSizeType:{value:R,label:"inputFontSizeType"},fontSize:{value:M,label:"inputFontSize"},fontSizeMobile:{value:U,label:"inputFontSizeMobile"},fontSizeTablet:{value:B,label:"inputFontSizeTablet"},lineHeightType:{value:O,label:"inputLineHeightType"},lineHeight:{value:E,label:"inputLineHeight"},lineHeightMobile:{value:H,label:"inputLineHeightMobile"},lineHeightTablet:{value:L,label:"inputLineHeightTablet"},transform:{value:_e,label:"inputTransform"},decoration:{value:Te,label:"inputDecoration"}}),React.createElement(vl,{blockId:i,setAttributes:a,label:Object(r.__)("Box Shadow","ultimate-addons-for-gutenberg"),boxShadowColor:{value:p,label:"boxShadowColor",title:Object(r.__)("Color","ultimate-addons-for-gutenberg")},boxShadowHOffset:{value:b,label:"boxShadowHOffset",title:Object(r.__)("Horizontal","ultimate-addons-for-gutenberg")},boxShadowVOffset:{value:d,label:"boxShadowVOffset",title:Object(r.__)("Vertical","ultimate-addons-for-gutenberg")},boxShadowBlur:{value:g,label:"boxShadowBlur",title:Object(r.__)("Blur","ultimate-addons-for-gutenberg")},boxShadowSpread:{value:m,label:"boxShadowSpread",title:Object(r.__)("Spread","ultimate-addons-for-gutenberg")},boxShadowPosition:{value:y,label:"boxShadowPosition",title:Object(r.__)("Position","ultimate-addons-for-gutenberg")},popup:!0})),"input"===o?React.createElement(Fe,{title:Object(r.__)("Icon","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:P,data:{value:P,label:"iconSize"},min:0,max:100,unit:{value:ve,label:"iconSizeType"}}),React.createElement(hl,{label:Object(r.__)("Color","ultimate-addons-for-gutenberg"),colorValue:k||"",data:{value:k,label:"iconColor"},setAttributes:a}))):"",(()=>{const e=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:f||"",data:{value:f,label:"buttonBgColor"},setAttributes:a}),"text"===F&&React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:ee||"",data:{value:ee,label:"buttonTextColor"},setAttributes:a}),"icon"===F&&React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:v||"",data:{value:v,label:"buttonIconColor"},setAttributes:a})),l=React.createElement(React.Fragment,null,React.createElement(hl,{label:Object(r.__)("Background Color","ultimate-addons-for-gutenberg"),colorValue:h||"",data:{value:h,label:"buttonBgHoverColor"},setAttributes:a}),"text"===F&&React.createElement(hl,{label:Object(r.__)("Text Color","ultimate-addons-for-gutenberg"),colorValue:te||"",data:{value:te,label:"buttonTextHoverColor"},setAttributes:a}),"icon"===F&&React.createElement(hl,{label:Object(r.__)("Icon Color","ultimate-addons-for-gutenberg"),colorValue:_||"",data:{value:_,label:"buttonIconHoverColor"},setAttributes:a}));return"input-button"===o?React.createElement(Fe,{title:Object(r.__)("Button","ultimate-addons-for-gutenberg"),initialOpen:!1,className:"uagb__url-panel-body"},React.createElement(Qa,{label:Object(r.__)("Width","ultimate-addons-for-gutenberg"),setAttributes:a,value:T,data:{value:T,label:"buttonWidth"},min:0,max:500,unit:{value:C,label:"buttonWidthType"}}),"text"===F&&React.createElement(React.Fragment,null,React.createElement(bg,{label:Object(r.__)("Typography","ultimate-addons-for-gutenberg"),attributes:t,setAttributes:a,loadGoogleFonts:{value:D,label:"buttonloadGoogleFonts"},fontFamily:{value:N,label:"buttonFontFamily"},fontWeight:{value:I,label:"buttonFontWeight"},fontStyle:{value:Se,label:"buttonFontStyle"},fontSizeType:{value:W,label:"buttonFontSizeType"},fontSize:{value:V,label:"buttonFontSize"},fontSizeMobile:{value:Z,label:"buttonFontSizeMobile"},fontSizeTablet:{value:q,label:"buttonFontSizeTablet"},lineHeightType:{value:Y,label:"buttonLineHeightType"},lineHeight:{value:$,label:"buttonLineHeight"},lineHeightMobile:{value:Q,label:"buttonLineHeightMobile"},lineHeightTablet:{value:K,label:"buttonLineHeightTablet"},transform:{value:J,label:"buttonTransform"},decoration:{value:X,label:"buttonDecoration"}})),"icon"===F&&React.createElement(React.Fragment,null,React.createElement(Qa,{label:Object(r.__)("Icon Size","ultimate-addons-for-gutenberg"),setAttributes:a,value:S,data:{value:S,label:"buttonIconSize"},min:0,max:100,unit:{value:w,label:"buttonIconSizeType"}})),React.createElement(Ui,{tabs:[{name:"normal",title:Object(r.__)("Normal","ultimate-addons-for-gutenberg")},{name:"hover",title:Object(r.__)("Hover","ultimate-addons-for-gutenberg")}],normal:e,hover:l,disableBottomSeparator:!0})):""})()),React.createElement(il,mF({},rl,{parentProps:e})))))}),hF=a(156),vF=0,_F={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},TF={};TF.locals=hF.a.locals||{},TF.use=function(){return vF++||(yF=ke()(hF.a,_F)),TF},TF.unuse=function(){vF>0&&!--vF&&(yF(),yF=null)};var CF=TF,SF=Object(B.memo)(e=>{Object(B.useLayoutEffect)(()=>(CF.use(),()=>{CF.unuse()}),[]);const{attributes:t,setAttributes:a,deviceType:l}=e,{block_id:i,layout:o,placeholder:n,buttonType:s,buttonText:c}=t;return React.createElement("div",{className:Be()("uagb-wp-search__outer-wrap","uagb-editor-preview-mode-"+l.toLowerCase(),"uagb-block-"+i,"uagb-layout-"+o)},"input-button"===o?React.createElement("form",{className:"uagb-search-wrapper",onSubmit:e=>e.preventDefault(),role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container wp-block-button",role:"tablist"},React.createElement("input",{placeholder:n,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}),React.createElement("button",{className:"uagb-search-submit wp-block-button__link",type:"submit"},"icon"===s&&React.createElement("span",{className:"uagb-wp-search-button-icon-wrap"},Ce("fas fa-search")),"text"===s&&React.createElement(ge.RichText,{tagName:"span",placeholder:Object(r.__)("Search","ultimate-addons-for-gutenberg"),value:c,onChange:e=>a({buttonText:e}),className:"uagb-wp-search-button-text",multiline:!1,allowedFormats:["core/bold","core/italic","core/strikethrough"]})))):"","input"===o?React.createElement("form",{className:"uagb-search-wrapper",onSubmit:e=>e.preventDefault(),role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container",role:"tablist"},React.createElement("span",{className:"uagb-wp-search-icon-wrap"},Ce("fas fa-search")),React.createElement("input",{placeholder:n,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}))):"")}),wF=Object(B.memo)(e=>{let{attributes:t}=e;const{inputloadGoogleFonts:a,inputFontFamily:l,inputFontWeight:i,buttonloadGoogleFonts:o,buttonFontFamily:n,buttonFontWeight:r}=t;let s,c;if(!0===a){const e={google:{families:[l+(i?":"+i:"")]}};s=React.createElement(O,{config:e})}if(!0===o){const e={google:{families:[n+(r?":"+r:"")]}};c=React.createElement(O,{config:e})}return React.createElement(React.Fragment,null,s,c)}),kF=Object(L.compose)(vs,fe)(e=>{const{isSelected:t,attributes:a,attributes:{UAGHideDesktop:l,UAGHideTab:i,UAGHideMob:o,borderStyle:n,borderWidth:r,borderColor:s,borderHColor:c,borderRadius:u},setAttributes:p,name:b,deviceType:d}=e,[g,m]=Object(B.useState)({isFocused:"false"});Object(B.useEffect)(()=>{(r||u||s||c||n)&&ue("input",{label:"borderWidth",value:r},{label:"borderRadius",value:u},{label:"borderColor",value:s},{label:"borderHColor",value:c},{label:"borderStyle",value:n},p,a)},[]),Object(B.useEffect)(()=>{!t&&g.isFocused&&m({isFocused:"false"}),t&&m({isFocused:!0})},[e]),Object(B.useEffect)(()=>{he(e)},[l,i,o,d]),Object(B.useEffect)(()=>{Bs()},[d]);const y=Object(B.useMemo)(()=>function(e,t,a){const l=t.replace("uagb/",""),i=a.toLowerCase(),{block_id:o,layout:n,inputSize:r,textColor:s,inputBgColor:c,boxShadowColor:u,boxShadowHOffset:p,boxShadowVOffset:b,boxShadowBlur:d,boxShadowSpread:g,boxShadowPosition:m,inputBorderHColor:y,buttonBgColor:f,buttonBgHoverColor:h,buttonIconColor:v,buttonIconHoverColor:_,buttonWidth:T,buttonIconSize:C,iconColor:S,iconSize:w,inputFontFamily:k,inputFontWeight:P,inputFontSize:x,inputFontSizeType:A,inputFontSizeTablet:G,inputFontSizeMobile:M,inputLineHeight:R,inputLineHeightType:B,inputLineHeightTablet:U,inputLineHeightMobile:E,inputPaddingTypeDesktop:O,buttonFontFamily:L,buttonFontWeight:H,buttonFontSize:j,buttonFontSizeType:F,buttonFontSizeTablet:z,buttonFontSizeMobile:D,buttonLineHeight:N,buttonLineHeightType:I,buttonLineHeightTablet:V,buttonLineHeightMobile:W,buttonTextColor:q,buttonTextHoverColor:Z,inputSizeType:$,paddingInputTop:Y,paddingInputRight:K,paddingInputBottom:J,paddingInputLeft:X,paddingInputTopTablet:Q,paddingInputBottomTablet:ee,paddingInputRightTablet:te,paddingInputLeftTablet:le,paddingInputTopMobile:ie,paddingInputRightMobile:oe,paddingInputBottomMobile:ne,paddingInputLeftMobile:re,mobilePaddingInputUnit:se,tabletPaddingInputUnit:ce,iconSizeType:ue,inputTransform:pe,inputDecoration:be,buttonTransform:de,buttonDecoration:ge,buttonIconSizeType:me,buttonWidthType:ye,inputFontStyle:fe,buttonFontStyle:he}=e,ve=Ps(r,"inputSize",l),_e=Ps(T,"buttonWidth",l),Te=Ps(C,"buttonIconSize",l),Ce=Ps(w,"iconSize",l);let Se=m;"outset"===m&&(Se="");let we={},ke={},Pe={};const xe=ns(Ce,ue),Ae=ns(Te,me),Ge=rs(e,"input"),Me=rs(e,"input","tablet"),Re=rs(e,"input","mobile"),Be={color:s,"background-color":c,"font-size":ns(x,A),"line-height":ns(R,B),"font-family":k,"font-style":fe,"font-weight":P,"text-decoration":be,"text-transform":pe,border:0,"border-radius":"0px",margin:0,outline:"unset","padding-top":ns(Y,O),"padding-bottom":ns(J,O),"padding-right":ns(K,O),"padding-left":ns(X,O),transition:"all .5s"},Ue={...Ge,outline:"unset","box-shadow":ns(p,"px")+" "+ns(b,"px")+" "+ns(d,"px")+" "+ns(g,"px")+" "+u+" "+Se};let Ee=s;void 0!==S&&""!==S&&(Ee=S),Ue.width=ns(ve,$),we={" .uagb-search-form__container .uagb-search-submit":{width:ns(_e,ye),padding:0,border:0}," .uagb-search-form__container .uagb-search-form__input::placeholder":{color:s,opacity:.6}," .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-icon-wrap svg":{width:Ae,height:Ae,"font-size":Ae,fill:v}," .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-text":{"font-size":ns(j,F),"line-height":ns(N,I),"font-family":L,"font-style":he,"font-weight":H,"text-decoration":ge,"text-transform":de,color:q}," .uagb-search-form__container .uagb-search-submit:hover .uagb-wp-search-button-text":{color:Z}," .uagb-search-form__container .uagb-search-submit:hover .uagb-wp-search-button-icon-wrap svg":{fill:_},".uagb-layout-input .uagb-wp-search-icon-wrap svg":{width:xe,height:xe,"font-size":xe,fill:Ee}},"input-button"!==n&&"input"!==n||(we[" .uagb-search-form__container .uagb-search-form__input"]=Be,we[" .uagb-search-wrapper .uagb-search-form__container"]=Ue,we[" .uagb-search-wrapper .uagb-search-form__container:hover"]={"border-color":y},"inset"===m&&(we[" .uagb-search-wrapper .uagb-search-form__input"]={"box-shadow":ns(p,"px")+" "+ns(b,"px")+" "+ns(d,"px")+" "+ns(g,"px")+" "+u+" "+Se}),we[" .uagb-search-form__container .uagb-wp-search-icon-wrap"]={"background-color":c,"padding-top":ns(Y,O),"padding-bottom":ns(J,O),"padding-left":ns(X,O)}),we[".uagb-layout-input-button .uagb-search-form__container .uagb-search-submit"]={"background-color":f},we[".uagb-layout-input-button .uagb-search-form__container .uagb-search-submit:hover"]={"background-color":h},Pe={" .uagb-search-wrapper .uagb-search-form__container":Re," .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input":{"font-size":ns(M,A),"line-height":ns(E,B),"padding-top":ns(ie,se),"padding-bottom":ns(ne,se),"padding-right":ns(oe,se),"padding-left":ns(re,se)}," .uagb-search-form__container .uagb-wp-search-icon-wrap":{"padding-top":ns(ie,se),"padding-bottom":ns(ne,se),"padding-left":ns(re,se)}," .uagb-search-wrapper .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-text":{"font-size":ns(D,F),"line-height":ns(W,I)}},ke={" .uagb-search-wrapper .uagb-search-form__container":Me," .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input":{"font-size":ns(G,A),"line-height":ns(U,B),"padding-top":ns(Q,ce),"padding-bottom":ns(ee,ce),"padding-right":ns(te,ce),"padding-left":ns(le,ce)}," .uagb-search-form__container .uagb-wp-search-icon-wrap":{"padding-top":ns(Q,ce),"padding-bottom":ns(ee,ce),"padding-left":ns(le,ce)}," .uagb-search-wrapper .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-text":{"font-size":ns(z,F),"line-height":ns(V,I)}};let Oe="";const Le=".uagb-block-"+o;return Oe=ae(we,Le),"tablet"!==i&&"mobile"!==i||(Oe+=ae(ke,""+Le,!0,"tablet"),"mobile"===i&&(Oe+=ae(Pe,""+Le,!0,"mobile"))),Oe}(a,b,d),[a,d]);return React.createElement(React.Fragment,null,React.createElement(me,{blockStyling:y}),React.createElement(wF,{attributes:a}),t&&React.createElement(fF,e),React.createElement(SF,e))});const{RichText:PF}=wp.blockEditor;var xF=[{attributes:Qt,save:function(e){const{block_id:t,layout:a,placeholder:l,buttonType:i,buttonText:o}=e.attributes;return React.createElement("div",{className:Be()("uagb-wp-search__outer-wrap","uagb-block-"+t,"uagb-layout-"+a)},"input-button"===a?React.createElement("form",{className:"uagb-search-wrapper",role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container",role:"tablist"},React.createElement("input",{placeholder:l,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}),React.createElement("button",{className:"uagb-search-submit",type:"submit"},"icon"===i&&React.createElement("span",{className:"uagb-wp-search-button-icon-wrap"},Wm("fas fa-search")),"text"===i&&React.createElement(PF.Content,{tagName:"span",value:o,className:"uagb-wp-search-button-text"})))):"","input"===a?React.createElement("form",{className:"uagb-search-wrapper",role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container",role:"tablist"},React.createElement("span",{className:"uagb-wp-search-icon-wrap"},Wm("fas fa-search")),React.createElement("input",{placeholder:l,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}))):"")}}];let AF={};function GF(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var l=Object.getOwnPropertySymbols(e);t&&(l=l.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),a.push.apply(a,l)}return a}AF=Object(j.applyFilters)("uagb/wp-search",ws(AF)),"yes"===uagb_blocks_info.enable_legacy_blocks&&Object(be.registerBlockType)("uagb/wp-search",{...AF,title:Object(r.__)("Search","ultimate-addons-for-gutenberg"),description:Object(r.__)("Add a search widget to let users search posts from your website.","ultimate-addons-for-gutenberg"),icon:re("wp_search"),keywords:[Object(r.__)("search","ultimate-addons-for-gutenberg"),Object(r.__)("wp","ultimate-addons-for-gutenberg"),Object(r.__)("uag","ultimate-addons-for-gutenberg")],supports:{anchor:!0},attributes:Qt,category:uagb_blocks_info.category,edit:e=>e.attributes.isPreview?React.createElement(Ss,{image:"wp-search"}):React.createElement(kF,e),save:function(e){const{block_id:t,layout:a,placeholder:l,buttonType:i,buttonText:o}=e.attributes;return React.createElement("div",{className:Be()("uagb-wp-search__outer-wrap","uagb-block-"+t,"uagb-layout-"+a)},"input-button"===a?React.createElement("form",{className:"uagb-search-wrapper",role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container",role:"tablist"},React.createElement("input",{placeholder:l,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}),React.createElement("button",{className:"uagb-search-submit",type:"submit"},"icon"===i&&React.createElement("span",{className:"uagb-wp-search-button-icon-wrap"},Ce("fas fa-search")),"text"===i&&React.createElement(ge.RichText.Content,{tagName:"span",value:o,className:"uagb-wp-search-button-text"})))):"","input"===a?React.createElement("form",{className:"uagb-search-wrapper",role:"search",action:uagb_blocks_info.uagb_home_url,method:"get"},React.createElement("div",{className:"uagb-search-form__container",role:"tablist"},React.createElement("span",{className:"uagb-wp-search-icon-wrap"},Ce("fas fa-search")),React.createElement("input",{placeholder:l,className:"uagb-search-form__input",type:"search",name:"s",title:"Search"}))):"")},deprecated:xF});var MF,RF=function(e){var t=e.icon,a=e.size,l=void 0===a?24:a,i=tu(e,["icon","size"]);return Object(B.cloneElement)(t,function(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{};t%2?GF(Object(a),!0).forEach((function(t){Yc(e,t,a[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):GF(Object(a)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(a,t))}))}return e}({width:l,height:l},i))},BF=Object(B.createElement)(em.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(B.createElement)(em.Path,{fillRule:"evenodd",d:"M19.75 11H21V8.667L19.875 4H4.125L3 8.667V11h1.25v8.75h15.5V11zm-1.5 0H5.75v7.25H10V13h4v5.25h4.25V11zm-5.5-5.5h2.067l.486 3.24.028.76H12.75v-4zm-3.567 0h2.067v4H8.669l.028-.76.486-3.24zm7.615 3.1l-.464-3.1h2.36l.806 3.345V9.5h-2.668l-.034-.9zM7.666 5.5h-2.36L4.5 8.845V9.5h2.668l.034-.9.464-3.1z",clipRule:"evenodd"})),UF=a(157),EF=0,OF={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},LF={};LF.locals=UF.a.locals||{},LF.use=function(){return EF++||(MF=ke()(UF.a,OF)),LF},LF.unuse=function(){EF>0&&!--EF&&(MF(),MF=null)};var HF=LF;function jF(){return(jF=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var FF=Object(L.compose)(vs,fe)(e=>{const{clientId:t,isSelected:a,deviceType:l}=e;Object(B.useEffect)(()=>{if(a){let e=null;Object(n.select)("core/edit-site")?e="core/edit-site":Object(n.select)("core/edit-post")&&(e="core/edit-post"),e&&Object(n.dispatch)(e).openGeneralSidebar("edit-post/block")}},[t,a]);const i="not-installed"===uagb_blocks_info.status_of_surecart,o=async e=>{const{status_of_surecart:t}=uagb_blocks_info,a=e.target;"not-installed"===t?await JF(a,"uagb_surecart",{error:"Installation Failed",blockTextStart:"Installing SureCart.",blockTextSuccess:"Activating SureCart."},c):"inactive"===t&&await JF(a,"uagb_surecart",{error:"Activation Failed",blockTextStart:"Activating SureCart.",blockTextSuccess:"SureCart Activated."},c)},[s,c]=Object(B.useState)(()=>i?React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("install and activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureCart to use this block.","ultimate-addons-for-gutenberg")):React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureCart to use this block.","ultimate-addons-for-gutenberg")));let u=uagb_blocks_info.uagb_url;return u+="/assets/images/block-previews/frame-checkout-form.png",Object(B.useLayoutEffect)(()=>(HF.use(),()=>{HF.unuse()}),[]),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-sure-cart-checkout-container",style:{backgroundImage:`url(${u})`,backgroundSize:"Mobile"===l?"contain":"auto"}}),a&&React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement("p",{className:"uagb-form-notice"},s))),React.createElement(il,jF({},rl,{parentProps:e})))))});const zF="active"===uagb_blocks_info.status_of_surecart;let DF={};DF=Object(j.applyFilters)("uagb/sure-cart-checkout",ws(DF)),Object(be.registerBlockType)("uagb/sure-cart-checkout",{...DF,title:Object(r.__)("SureCart - Checkout","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display a checkout form.","ultimate-addons-for-gutenberg"),icon:React.createElement(RF,{icon:BF,color:"#0063a1"}),keywords:[Object(r.__)("cart","ultimate-addons-for-gutenberg"),Object(r.__)("surecart","ultimate-addons-for-gutenberg"),Object(r.__)("form","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.premium_category,supports:{inserter:!zF},attributes:{isPreview:{type:"boolean",default:!1}},edit:e=>{const{select:t,dispatch:a}=wp.data,l=e=>{e.forEach(e=>{"uagb/sure-cart-checkout"===e.name&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("surecart/checkout-form",{})),e.innerBlocks&&e.innerBlocks.length>0&&l(e.innerBlocks)})};if(!zF)return e.attributes.isPreview?React.createElement(Ss,{image:"checkout-form"}):React.createElement(FF,e);wp.blocks.unregisterBlockType("uagb/sure-cart-checkout"),(()=>{const i=t("core/block-editor").getBlocks();setTimeout(()=>{l(i)},1e3);const o=t("core/edit-widgets").getWidgets();for(const t of Object.entries(o))t[1].rendered_form.includes("uagb/sure-cart-checkout")&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("surecart/checkout-form",{}))})()},save:()=>null});var NF=Object(B.createElement)(em.SVG,{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24"},Object(B.createElement)(em.Path,{d:"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7.8 16.5H5c-.3 0-.5-.2-.5-.5v-6.2h6.8v6.7zm0-8.3H4.5V5c0-.3.2-.5.5-.5h6.2v6.7zm8.3 7.8c0 .3-.2.5-.5.5h-6.2v-6.8h6.8V19zm0-7.8h-6.8V4.5H19c.3 0 .5.2.5.5v6.2z",fillRule:"evenodd",clipRule:"evenodd"}));function IF(){return(IF=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}var VF=Object(L.compose)(vs,fe)(e=>{const{clientId:t,isSelected:a,deviceType:l}=e;Object(B.useEffect)(()=>{if(a){let e=null;Object(n.select)("core/edit-site")?e="core/edit-site":Object(n.select)("core/edit-post")&&(e="core/edit-post"),e&&Object(n.dispatch)(e).openGeneralSidebar("edit-post/block")}},[t,a]);const i="not-installed"===uagb_blocks_info.status_of_surecart,o=async e=>{const{status_of_surecart:t}=uagb_blocks_info,a=e.target;"not-installed"===t?await JF(a,"uagb_surecart",{error:"Installation Failed",blockTextStart:"Installing SureCart.",blockTextSuccess:"Activating SureCart."},c):"inactive"===t&&await JF(a,"uagb_surecart",{error:"Activation Failed",blockTextStart:"Activating SureCart.",blockTextSuccess:"SureCart Activated."},c)},[s,c]=Object(B.useState)(()=>i?React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("install and activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureCart to use this block.","ultimate-addons-for-gutenberg")):React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureCart to use this block.","ultimate-addons-for-gutenberg")));let u=uagb_blocks_info.uagb_url;return u+="/assets/images/block-previews/frame-product-list.png",Object(B.useLayoutEffect)(()=>(HF.use(),()=>{HF.unuse()}),[]),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-sure-cart-product-container",style:{backgroundImage:`url(${u})`,backgroundSize:"Mobile"===l?"contain":"auto"}}),a&&React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement("p",{className:"uagb-form-notice"},s))),React.createElement(il,IF({},rl,{parentProps:e})))))});const WF="active"===uagb_blocks_info.status_of_surecart;let qF={};function ZF(){return(ZF=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var a=arguments[t];for(var l in a)Object.prototype.hasOwnProperty.call(a,l)&&(e[l]=a[l])}return e}).apply(this,arguments)}qF=Object(j.applyFilters)("uagb/sure-cart-product",ws(qF)),Object(be.registerBlockType)("uagb/sure-cart-product",{...qF,title:Object(r.__)("SureCart - Product List","ultimate-addons-for-gutenberg"),description:Object(r.__)("Display a list of products.","ultimate-addons-for-gutenberg"),icon:React.createElement(RF,{icon:NF,color:"#0063a1"}),keywords:[Object(r.__)("cart","ultimate-addons-for-gutenberg"),Object(r.__)("surecart","ultimate-addons-for-gutenberg"),Object(r.__)("form","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.premium_category,supports:{inserter:!WF},attributes:{isPreview:{type:"boolean",default:!1}},edit:e=>{const{select:t,dispatch:a}=wp.data,l=e=>{e.forEach(e=>{"uagb/sure-cart-product"===e.name&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("surecart/product-list",{})),e.innerBlocks&&e.innerBlocks.length>0&&l(e.innerBlocks)})};if(!WF)return e.attributes.isPreview?React.createElement(Ss,{image:"product-list"}):React.createElement(VF,e);wp.blocks.unregisterBlockType("uagb/sure-cart-product"),(()=>{const i=t("core/block-editor").getBlocks();setTimeout(()=>{l(i)},1e3);const o=t("core/edit-widgets").getWidgets();for(const t of Object.entries(o))t[1].rendered_form.includes("uagb/sure-cart-product")&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("surecart/product-list",{}))})()},save:()=>null});var $F=Object(L.compose)(vs,fe)(e=>{const{clientId:t,isSelected:a,deviceType:l}=e;Object(B.useEffect)(()=>{if(a){let e=null;Object(n.select)("core/edit-site")?e="core/edit-site":Object(n.select)("core/edit-post")&&(e="core/edit-post"),e&&Object(n.dispatch)(e).openGeneralSidebar("edit-post/block")}},[t,a]);const i="not-installed"===uagb_blocks_info.status_of_sureforms,o=async e=>{const{status_of_sureforms:t}=uagb_blocks_info,a=e.target;"not-installed"===t?await JF(a,"uagb_sureforms",{error:"Installation Failed",blockTextStart:"Installing SureForms.",blockTextSuccess:"Activating SureForms."},c):"inactive"===t&&await JF(a,"uagb_sureforms",{error:"Activation Failed",blockTextStart:"Activating SureForms.",blockTextSuccess:"SureForms Activated."},c)},[s,c]=Object(B.useState)(()=>i?React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("install and activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureForms to use this block.","ultimate-addons-for-gutenberg")):React.createElement("span",null,Object(r.__)("Please ","ultimate-addons-for-gutenberg"),React.createElement("button",{type:"button",className:"link-button components-button is-link",onClick:o},Object(r.__)("activate","ultimate-addons-for-gutenberg")),Object(r.__)(" SureForms to use this block.","ultimate-addons-for-gutenberg")));let u=uagb_blocks_info.uagb_url;return u+="/assets/images/block-previews/frame-sure-forms.png",Object(B.useLayoutEffect)(()=>(HF.use(),()=>{HF.unuse()}),[]),React.createElement(React.Fragment,null,React.createElement("div",{className:"uagb-sure-forms-checkout-container",style:{backgroundImage:`url(${u})`,backgroundSize:"Mobile"===l?"contain":"auto"}}),a&&React.createElement(ge.InspectorControls,null,React.createElement(Ee,{tabs:["general","advance"]},React.createElement(il,ol,React.createElement(Fe,{initialOpen:!0},React.createElement("p",{className:"uagb-form-notice"},s))),React.createElement(il,ZF({},rl,{parentProps:e})))))});const YF="active"===uagb_blocks_info.status_of_sureforms;let KF={};KF=Object(j.applyFilters)("uagb/sure-forms",ws(KF)),Object(be.registerBlockType)("uagb/sure-forms",{...KF,title:Object(r.__)("SureForms - Create Forms","ultimate-addons-for-gutenberg"),description:Object(r.__)("Collect and Manage data effortlessly with customizable forms.","ultimate-addons-for-gutenberg"),icon:se.sure_forms,keywords:[Object(r.__)("form","ultimate-addons-for-gutenberg"),Object(r.__)("sureforms","ultimate-addons-for-gutenberg"),Object(r.__)("form","ultimate-addons-for-gutenberg")],category:uagb_blocks_info.premium_category,supports:{inserter:!YF},attributes:{isPreview:{type:"boolean",default:!1}},edit:e=>{const{select:t,dispatch:a}=wp.data,l=e=>{e.forEach(e=>{"uagb/sure-forms"===e.name&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("srfm/form",{})),e.innerBlocks&&e.innerBlocks.length>0&&l(e.innerBlocks)})};if(!YF)return e.attributes.isPreview?React.createElement(Ss,{image:"sure-form"}):React.createElement($F,e);wp.blocks.unregisterBlockType("uagb/sure-forms"),(()=>{const i=t("core/block-editor").getBlocks();setTimeout(()=>{l(i)},1e3);const o=t("core/edit-widgets").getWidgets();for(const t of Object.entries(o))t[1].rendered_form.includes("uagb/sure-forms")&&a("core/block-editor").replaceBlock(e.clientId,wp.blocks.createBlock("srfm/form",{}))})()},save:()=>null});const JF=async(e,t,a,l)=>{const{ajax_url:i,uagb_ajax_nonce:o}=uagb_blocks_info,n=t=>{l&&l(t),e.innerText=Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s ","ultimate-addons-for-gutenberg"),t)},s=(e,t)=>{window.wp.data.dispatch("core/notices").createNotice(e,t,{isDismissible:!0})};if(n(a.blockTextStart),(await(async e=>{const t={security:o};try{const a=await $l({url:i,action:e,data:t});return"object"==typeof a?a:a.json()}catch(e){return{success:!1}}})(t)).success){var c;const e=null===(c=wp.data.select("core/editor"))||void 0===c?void 0:c.getCurrentPostId();if(e){let t;try{t=Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s The page will be saved and refreshed.","ultimate-addons-for-gutenberg"),a.blockTextSuccess),s("success",t),await wp.data.dispatch("core/editor").savePost(e),n(a.blockTextSuccess),window.location.reload()}catch(e){t=Object(r.sprintf)(
/* translators: %s: error message */
Object(r.__)("Error saving the page: %s","ultimate-addons-for-gutenberg"),e),s("error",t)}}if(wp.data.select("core/edit-widgets")){let e;try{e=Object(r.sprintf)(
/* translators: abbreviation for units */
Object(r.__)("%s The page will be saved and refreshed.","ultimate-addons-for-gutenberg"),a.blockTextSuccess),s("success",e),await wp.data.dispatch("core/edit-widgets").saveEditedWidgetAreas(),n(a.blockTextSuccess),window.location.reload()}catch(t){e=Object(r.sprintf)(
/* translators: %s: error message */
Object(r.__)("Error saving the page: %s","ultimate-addons-for-gutenberg"),t),s("error",e)}}}else n(a.error)};var XF,QF=a(158),ez=0,tz={injectType:"lazySingletonStyleTag",attributes:{id:"uagb-editor-styles"},insert:"head",singleton:!0},az={};az.locals=QF.a.locals||{},az.use=function(){return ez++||(XF=ke()(QF.a,tz)),az},az.unuse=function(){ez>0&&!--ez&&(XF(),XF=null)};var lz=az,iz=()=>{Object(B.useLayoutEffect)(()=>(lz.use(),()=>{lz.unuse()}),[]);const e=le(),t={desktop:React.createElement("svg",{width:"8",height:"7",viewBox:"0 0 8 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M7.33333 0H0.666667C0.298611 0 0 0.293945 0 0.65625V5.03125C0 5.39355 0.298611 5.6875 0.666667 5.6875H3.33333L3.11111 6.34375H2.11111C1.92639 6.34375 1.77778 6.49004 1.77778 6.67188C1.77778 6.85371 1.92639 7 2.11111 7H5.88889C6.07361 7 6.22222 6.85371 6.22222 6.67188C6.22222 6.49004 6.07361 6.34375 5.88889 6.34375H4.88889L4.66667 5.6875H7.33333C7.70139 5.6875 8 5.39355 8 5.03125V0.65625C8 0.293945 7.70139 0 7.33333 0ZM7.11111 4.8125H0.888889V0.875H7.11111V4.8125Z"})),tablet:React.createElement("svg",{width:"6",height:"7",viewBox:"0 0 6 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M5 0H1C0.446667 0 0 0.390833 0 0.875V6.125C0 6.60917 0.446667 7 1 7H5C5.55333 7 6 6.60917 6 6.125V0.875C6 0.390833 5.55333 0 5 0ZM3.66667 6.41667H2.33333V6.125H3.66667V6.41667ZM5.41667 5.54167H0.583333V0.875H5.41667V5.54167Z"})),mobile:React.createElement("svg",{width:"4",height:"7",viewBox:"0 0 4 7",xmlns:"http://www.w3.org/2000/svg"},React.createElement("path",{d:"M3.33333 0H0.666667C0.297778 0 0 0.390833 0 0.875V6.125C0 6.60917 0.297778 7 0.666667 7H3.33333C3.70222 7 4 6.60917 4 6.125V0.875C4 0.390833 3.70222 0 3.33333 0ZM2.44444 6.41667H1.55556V6.125H2.44444V6.41667ZM3.61111 5.54167H0.388889V0.875H3.61111V5.54167Z"}))},a=[{name:Object(r.__)("Desktop","ultimate-addons-for-gutenberg"),staticName:"Desktop",title:t.desktop,itemClass:"uagb-desktop-tab uagb-responsive-tabs"},{name:Object(r.__)("Tablet","ultimate-addons-for-gutenberg"),staticName:"Tablet",title:t.tablet,itemClass:"uagb-tablet-tab uagb-responsive-tabs"},{name:Object(r.__)("Mobile","ultimate-addons-for-gutenberg"),staticName:"Mobile",key:"mobile",title:t.mobile,itemClass:"uagb-mobile-tab uagb-responsive-tabs"}];return e?React.createElement(React.Fragment,null,React.createElement(Le.ButtonGroup,{className:"uagb-range-control-responsive components-tab-panel__tabs","aria-label":Object(r.__)("Device","ultimate-addons-for-gutenberg")},a.map(t=>{let{name:a,staticName:l,key:i,title:o,itemClass:n}=t;return React.createElement(Le.Tooltip,{text:Object(r.sprintf)(
/* translators: abbreviation for units */
"%s",a),key:i},React.createElement(Le.Button,{key:i,className:`components-button components-tab-panel__tabs-item ${n}${l===e?" active-tab":""}`,"aria-pressed":e===l,onClick:()=>ie(l)},o))}))):null};function oz(){uagb_blocks_info.wp_version>"6.2.2"||wp.data.subscribe((function(){setTimeout((function(){!function(){if(!document.querySelector(".edit-post-header__settings"))return null;if(document.querySelector(".spectra-responsive-icons__wrap"))return null;const e=document.createElement("div");e.classList.add("spectra-responsive-icons__wrap"),document.querySelector(".edit-post-header__settings").insertBefore(e,document.querySelector(".edit-post-header__settings").firstChild),wp.element.render(React.createElement(iz,null),document.querySelector(".spectra-responsive-icons__wrap"))}()}),500)}))}document.addEventListener("load",oz),document.addEventListener("DOMContentLoaded",oz);var nz=e=>{const{name:t,isValid:a,validationIssues:l}=e;return!(!t||!t.match(/^uagb\//)||a||!l.length)};let rz=!1;const sz=e=>e.map(e=>{const t=e;if("core/block"===e.name){const{attributes:{ref:a}}=e,l=Object(n.select)("core").getEntityRecords("postType","wp_block");let i=null;if(l&&(null==l||l.forEach(e=>{var t;a===(null==e?void 0:e.id)&&(i=null==e||null===(t=e.content)||void 0===t?void 0:t.raw)})),null===i)return t;const o=Object(be.parse)(i)||[],[r,s]=(e=>{const t=[...e];let a=!1;const l=e=>{e.forEach(e=>{if(nz(e)){a=!0;const t=cz(e);for(const a in t)e[a]=t[a]}e.innerBlocks.length&&l(e.innerBlocks)})};return l(t),[t,a]})(o);if(s)return rz=!0,{blocks:r,isReusable:!0,ref:a}}if(t.innerBlocks&&t.innerBlocks.length){const e=sz(t.innerBlocks);e.some(e=>e.recovered)&&(t.innerBlocks=e,t.replacedClientId=t.clientId,t.recovered=!0)}if(nz(t)){rz=!0;const e=cz(t);return e.replacedClientId=t.clientId,e.recovered=!0,e}return t}),cz=e=>{let{name:t,attributes:a,innerBlocks:l}=e;return Object(be.createBlock)(t,a,l)};var uz,pz,bz;Object(o.registerPlugin)("spectra-global-blocks-fonts",{render:H});const dz=te();if(dz&&(dz.removeItem("uagSettingState"),dz.removeItem("isSpectraFontAwesomeAPILoading")),uagb_blocks_info.is_block_theme||(()=>{const e=function(){var e;let t={},a={},l={};const i=!(null===(e=uagb_blocks_info)||void 0===e||!e.blocks_editor_spacing)&&uagb_blocks_info.blocks_editor_spacing+"px";if(!i)return"";const o={"margin-block-start":i,"margin-top":i};t={".edit-post-visual-editor .editor-styles-wrapper .edit-post-visual-editor__post-title-wrapper > * + *:not(p), .edit-post-visual-editor .editor-styles-wrapper .block-editor-block-list__layout.is-root-container > * + *:not(p)":o,"body.block-editor-iframe__body.editor-styles-wrapper .is-root-container.wp-site-blocks > * + *, body.block-editor-iframe__body.editor-styles-wrapper .is-layout-flow > * + *, body.block-editor-iframe__body.editor-styles-wrapper .is-layout-constrained > * + *":o},a={".editor-styles-wrapper > .block-editor-block-list__layout.is-root-container > .wp-block + .wp-block:not(p)":o},l={".editor-styles-wrapper > .block-editor-block-list__layout.is-root-container > .wp-block + .wp-block:not(p)":o};let n="";return n=ae(t,""),n+=ae(a," ",!0,"tablet"),n+=ae(l," ",!0,"mobile"),n}(),t=document.createElement("style");t.setAttribute("id","uagb-blocks-editor-spacing-style"),t.textContent=e,document.head.appendChild(t)})(),a.p=uagb_blocks_info.uagb_url+"dist/",uagb_blocks_info.uagb_svg_icons={},null!==(uz=uagb_blocks_info)&&void 0!==uz&&uz.number_of_icon_chunks)for(let e=0;e<uagb_blocks_info.number_of_icon_chunks;e++)uagb_blocks_info.uagb_svg_icons={...uagb_blocks_info.uagb_svg_icons,...window["uagb_svg_icons_"+e]};uagb_blocks_info.font_awesome_5_polyfill={ad:"rectangle-ad","rectangle-ad":"rectangle-ad",adjust:"circle-half-stroke","circle-half-stroke":"circle-half-stroke","air-freshener":"spray-can-sparkles","spray-can-sparkles":"spray-can-sparkles","alien-monster":"alien-8bit","alien-8bit":"alien-8bit",allergies:"hand-dots","hand-dots":"hand-dots",ambulance:"truck-medical","truck-medical":"truck-medical","american-sign-language-interpreting":"hands-asl-interpreting","hands-asl-interpreting":"hands-asl-interpreting",analytics:"chart-mixed","chart-mixed":"chart-mixed","angle-double-down":"angles-down","angles-down":"angles-down","angle-double-left":"angles-left","angles-left":"angles-left","angle-double-right":"angles-right","angles-right":"angles-right","angle-double-up":"angles-up","angles-up":"angles-up",angry:"face-angry","face-angry":"face-angry","apple-alt":"apple-whole","apple-whole":"apple-whole","apple-crate":"crate-apple","crate-apple":"crate-apple",archive:"box-archive","box-archive":"box-archive","arrow-alt-circle-down":"circle-down","circle-down":"circle-down","arrow-alt-circle-left":"circle-left","circle-left":"circle-left","arrow-alt-circle-right":"circle-right","circle-right":"circle-right","arrow-alt-circle-up":"circle-up","circle-up":"circle-up","arrow-alt-down":"down",down:"down","arrow-alt-from-bottom":"up-from-line","up-from-line":"up-from-line","arrow-alt-from-left":"right-from-line","right-from-line":"right-from-line","arrow-alt-from-right":"left-from-line","left-from-line":"left-from-line","arrow-alt-from-top":"down-from-line","down-from-line":"down-from-line","arrow-alt-left":"left",left:"left","arrow-alt-right":"right",right:"right","arrow-alt-square-down":"square-down","square-down":"square-down","arrow-alt-square-left":"square-left","square-left":"square-left","arrow-alt-square-right":"square-right","square-right":"square-right","arrow-alt-square-up":"square-up","square-up":"square-up","arrow-alt-to-bottom":"down-to-line","down-to-line":"down-to-line","arrow-alt-to-left":"left-to-line","left-to-line":"left-to-line","arrow-alt-to-right":"right-to-line","right-to-line":"right-to-line","arrow-alt-to-top":"up-to-line","up-to-line":"up-to-line","arrow-alt-up":"up",up:"up","arrow-circle-down":"circle-arrow-down","circle-arrow-down":"circle-arrow-down","arrow-circle-left":"circle-arrow-left","circle-arrow-left":"circle-arrow-left","arrow-circle-right":"circle-arrow-right","circle-arrow-right":"circle-arrow-right","arrow-circle-up":"circle-arrow-up","circle-arrow-up":"circle-arrow-up","arrow-from-bottom":"arrow-up-from-line","arrow-up-from-line":"arrow-up-from-line","arrow-from-left":"arrow-right-from-line","arrow-right-from-line":"arrow-right-from-line","arrow-from-right":"arrow-left-from-line","arrow-left-from-line":"arrow-left-from-line","arrow-from-top":"arrow-down-from-line","arrow-down-from-line":"arrow-down-from-line","arrow-square-down":"square-arrow-down","square-arrow-down":"square-arrow-down","arrow-square-left":"square-arrow-left","square-arrow-left":"square-arrow-left","arrow-square-right":"square-arrow-right","square-arrow-right":"square-arrow-right","arrow-square-up":"square-arrow-up","square-arrow-up":"square-arrow-up","arrow-to-bottom":"arrow-down-to-line","arrow-down-to-line":"arrow-down-to-line","arrow-to-left":"arrow-left-to-line","arrow-left-to-line":"arrow-left-to-line","arrow-to-right":"arrow-right-to-line","arrow-right-to-line":"arrow-right-to-line","arrow-to-top":"arrow-up-to-line","arrow-up-to-line":"arrow-up-to-line",arrows:"arrows-up-down-left-right","arrows-up-down-left-right":"arrows-up-down-left-right","arrows-alt":"up-down-left-right","up-down-left-right":"up-down-left-right","arrows-alt-h":"left-right","left-right":"left-right","arrows-alt-v":"up-down","up-down":"up-down","arrows-h":"arrows-left-right","arrows-left-right":"arrows-left-right","arrows-v":"arrows-up-down","arrows-up-down":"arrows-up-down","assistive-listening-systems":"ear-listen","ear-listen":"ear-listen",atlas:"book-atlas","book-atlas":"book-atlas","atom-alt":"atom-simple","atom-simple":"atom-simple",backspace:"delete-left","delete-left":"delete-left","balance-scale":"scale-balanced","scale-balanced":"scale-balanced","balance-scale-left":"scale-unbalanced","scale-unbalanced":"scale-unbalanced","balance-scale-right":"scale-unbalanced-flip","scale-unbalanced-flip":"scale-unbalanced-flip","band-aid":"bandage",bandage:"bandage","barcode-alt":"rectangle-barcode","rectangle-barcode":"rectangle-barcode","baseball-ball":"baseball",baseball:"baseball","basketball-ball":"basketball",basketball:"basketball","bed-alt":"bed-front","bed-front":"bed-front",beer:"beer-mug-empty","beer-mug-empty":"beer-mug-empty",betamax:"cassette-betamax","cassette-betamax":"cassette-betamax",bible:"book-bible","book-bible":"book-bible",biking:"person-biking","person-biking":"person-biking","biking-mountain":"person-biking-mountain","person-biking-mountain":"person-biking-mountain","birthday-cake":"cake-candles","cake-candles":"cake-candles",blind:"person-walking-with-cane","person-walking-with-cane":"person-walking-with-cane","book-alt":"book-blank","book-blank":"book-blank","book-dead":"book-skull","book-skull":"book-skull","book-reader":"book-open-reader","book-open-reader":"book-open-reader","book-spells":"book-sparkles","book-sparkles":"book-sparkles","border-style":"border-top-left","border-top-left":"border-top-left","border-style-alt":"border-bottom-right","border-bottom-right":"border-bottom-right","box-alt":"box-taped","box-taped":"box-taped","box-fragile":"square-fragile","square-fragile":"square-fragile","box-full":"box-open-full","box-open-full":"box-open-full","box-up":"square-this-way-up","square-this-way-up":"square-this-way-up","box-usd":"box-dollar","box-dollar":"box-dollar",boxes:"boxes-stacked","boxes-stacked":"boxes-stacked","boxes-alt":"boxes-stacked",brackets:"brackets-square","brackets-square":"brackets-square","broadcast-tower":"tower-broadcast","tower-broadcast":"tower-broadcast",burn:"fire-flame-simple","fire-flame-simple":"fire-flame-simple","bus-alt":"bus-simple","bus-simple":"bus-simple","calculator-alt":"calculator-simple","calculator-simple":"calculator-simple","calendar-alt":"calendar-days","calendar-days":"calendar-days","calendar-edit":"calendar-pen","calendar-pen":"calendar-pen","calendar-times":"calendar-xmark","calendar-xmark":"calendar-xmark","camera-alt":"camera",camera:"camera","camera-home":"camera-security","camera-security":"camera-security","car-alt":"car-rear","car-rear":"car-rear","car-crash":"car-burst","car-burst":"car-burst","car-mechanic":"car-wrench","car-wrench":"car-wrench","caravan-alt":"caravan-simple","caravan-simple":"caravan-simple","caret-circle-down":"circle-caret-down","circle-caret-down":"circle-caret-down","caret-circle-left":"circle-caret-left","circle-caret-left":"circle-caret-left","caret-circle-right":"circle-caret-right","circle-caret-right":"circle-caret-right","caret-circle-up":"circle-caret-up","circle-caret-up":"circle-caret-up","caret-square-down":"square-caret-down","square-caret-down":"square-caret-down","caret-square-left":"square-caret-left","square-caret-left":"square-caret-left","caret-square-right":"square-caret-right","square-caret-right":"square-caret-right","caret-square-up":"square-caret-up","square-caret-up":"square-caret-up",cctv:"camera-cctv","camera-cctv":"camera-cctv","chalkboard-teacher":"chalkboard-user","chalkboard-user":"chalkboard-user","chart-pie-alt":"chart-pie-simple","chart-pie-simple":"chart-pie-simple","check-circle":"circle-check","circle-check":"circle-check","check-square":"square-check","square-check":"square-check",cheeseburger:"burger-cheese","burger-cheese":"burger-cheese","chess-bishop-alt":"chess-bishop-piece","chess-bishop-piece":"chess-bishop-piece","chess-clock-alt":"chess-clock-flip","chess-clock-flip":"chess-clock-flip","chess-king-alt":"chess-king-piece","chess-king-piece":"chess-king-piece","chess-knight-alt":"chess-knight-piece","chess-knight-piece":"chess-knight-piece","chess-pawn-alt":"chess-pawn-piece","chess-pawn-piece":"chess-pawn-piece","chess-queen-alt":"chess-queen-piece","chess-queen-piece":"chess-queen-piece","chess-rook-alt":"chess-rook-piece","chess-rook-piece":"chess-rook-piece","chevron-circle-down":"circle-chevron-down","circle-chevron-down":"circle-chevron-down","chevron-circle-left":"circle-chevron-left","circle-chevron-left":"circle-chevron-left","chevron-circle-right":"circle-chevron-right","circle-chevron-right":"circle-chevron-right","chevron-circle-up":"circle-chevron-up","circle-chevron-up":"circle-chevron-up","chevron-double-down":"chevrons-down","chevrons-down":"chevrons-down","chevron-double-left":"chevrons-left","chevrons-left":"chevrons-left","chevron-double-right":"chevrons-right","chevrons-right":"chevrons-right","chevron-double-up":"chevrons-up","chevrons-up":"chevrons-up","chevron-square-down":"square-chevron-down","square-chevron-down":"square-chevron-down","chevron-square-left":"square-chevron-left","square-chevron-left":"square-chevron-left","chevron-square-right":"square-chevron-right","square-chevron-right":"square-chevron-right","chevron-square-up":"square-chevron-up","square-chevron-up":"square-chevron-up","clinic-medical":"house-chimney-medical","house-chimney-medical":"house-chimney-medical","cloud-download":"cloud-arrow-down","cloud-arrow-down":"cloud-arrow-down","cloud-download-alt":"cloud-arrow-down","cloud-upload":"cloud-arrow-up","cloud-arrow-up":"cloud-arrow-up","cloud-upload-alt":"cloud-arrow-up",cocktail:"martini-glass-citrus","martini-glass-citrus":"martini-glass-citrus",coffee:"mug-saucer","mug-saucer":"mug-saucer","coffee-togo":"cup-togo","cup-togo":"cup-togo",cog:"gear",gear:"gear",cogs:"gears",gears:"gears",columns:"table-columns","table-columns":"table-columns","comment-alt":"message",message:"message","comment-alt-check":"message-check","message-check":"message-check","comment-alt-dollar":"message-dollar","message-dollar":"message-dollar","comment-alt-dots":"message-dots","message-dots":"message-dots","comment-alt-edit":"message-pen","message-pen":"message-pen","comment-alt-exclamation":"message-exclamation","message-exclamation":"message-exclamation","comment-alt-lines":"message-lines","message-lines":"message-lines","comment-alt-medical":"message-medical","message-medical":"message-medical","comment-alt-minus":"message-minus","message-minus":"message-minus","comment-alt-music":"message-music","message-music":"message-music","comment-alt-plus":"message-plus","message-plus":"message-plus","comment-alt-slash":"message-slash","message-slash":"message-slash","comment-alt-smile":"message-smile","message-smile":"message-smile","comment-alt-times":"message-xmark","message-xmark":"message-xmark","comment-edit":"comment-pen","comment-pen":"comment-pen","comment-times":"comment-xmark","comment-xmark":"comment-xmark","comments-alt":"messages",messages:"messages","comments-alt-dollar":"messages-dollar","messages-dollar":"messages-dollar","compress-alt":"down-left-and-up-right-to-center","down-left-and-up-right-to-center":"down-left-and-up-right-to-center","compress-arrows-alt":"minimize",minimize:"minimize","concierge-bell":"bell-concierge","bell-concierge":"bell-concierge",construction:"triangle-person-digging","triangle-person-digging":"triangle-person-digging","conveyor-belt-alt":"conveyor-belt-boxes","conveyor-belt-boxes":"conveyor-belt-boxes","cowbell-more":"cowbell-circle-plus","cowbell-circle-plus":"cowbell-circle-plus",cricket:"cricket-bat-ball","cricket-bat-ball":"cricket-bat-ball","crop-alt":"crop-simple","crop-simple":"crop-simple",curling:"curling-stone","curling-stone":"curling-stone",cut:"scissors",scissors:"scissors",deaf:"ear-deaf","ear-deaf":"ear-deaf",debug:"ban-bug","ban-bug":"ban-bug","desktop-alt":"desktop",desktop:"desktop",dewpoint:"droplet-degree","droplet-degree":"droplet-degree",diagnoses:"person-dots-from-line","person-dots-from-line":"person-dots-from-line",digging:"person-digging","person-digging":"person-digging","digital-tachograph":"tachograph-digital","tachograph-digital":"tachograph-digital",directions:"diamond-turn-right","diamond-turn-right":"diamond-turn-right",dizzy:"face-dizzy","face-dizzy":"face-dizzy","dolly-flatbed":"cart-flatbed","cart-flatbed":"cart-flatbed","dolly-flatbed-alt":"cart-flatbed-boxes","cart-flatbed-boxes":"cart-flatbed-boxes","dolly-flatbed-empty":"cart-flatbed-empty","cart-flatbed-empty":"cart-flatbed-empty",donate:"circle-dollar-to-slot","circle-dollar-to-slot":"circle-dollar-to-slot","dot-circle":"circle-dot","circle-dot":"circle-dot","drafting-compass":"compass-drafting","compass-drafting":"compass-drafting","drone-alt":"drone-front","drone-front":"drone-front","dryer-alt":"dryer-heat","dryer-heat":"dryer-heat","eclipse-alt":"moon-over-sun","moon-over-sun":"moon-over-sun",edit:"pen-to-square","pen-to-square":"pen-to-square","ellipsis-h":"ellipsis",ellipsis:"ellipsis","ellipsis-h-alt":"ellipsis-stroke","ellipsis-stroke":"ellipsis-stroke","ellipsis-v":"ellipsis-vertical","ellipsis-vertical":"ellipsis-vertical","ellipsis-v-alt":"ellipsis-stroke-vertical","ellipsis-stroke-vertical":"ellipsis-stroke-vertical","envelope-square":"square-envelope","square-envelope":"square-envelope",exchange:"arrow-right-arrow-left","arrow-right-arrow-left":"arrow-right-arrow-left","exchange-alt":"right-left","right-left":"right-left","exclamation-circle":"circle-exclamation","circle-exclamation":"circle-exclamation","exclamation-square":"square-exclamation","square-exclamation":"square-exclamation","exclamation-triangle":"triangle-exclamation","triangle-exclamation":"triangle-exclamation","expand-alt":"up-right-and-down-left-from-center","up-right-and-down-left-from-center":"up-right-and-down-left-from-center","expand-arrows":"arrows-maximize","arrows-maximize":"arrows-maximize","expand-arrows-alt":"maximize",maximize:"maximize","external-link":"arrow-up-right-from-square","arrow-up-right-from-square":"arrow-up-right-from-square","external-link-alt":"up-right-from-square","up-right-from-square":"up-right-from-square","external-link-square":"square-arrow-up-right","square-arrow-up-right":"square-arrow-up-right","external-link-square-alt":"square-up-right","square-up-right":"square-up-right","fast-backward":"backward-fast","backward-fast":"backward-fast","fast-forward":"forward-fast","forward-fast":"forward-fast","feather-alt":"feather-pointed","feather-pointed":"feather-pointed",female:"person-dress","person-dress":"person-dress","field-hockey":"field-hockey-stick-ball","field-hockey-stick-ball":"field-hockey-stick-ball","fighter-jet":"jet-fighter","jet-fighter":"jet-fighter","file-alt":"file-lines","file-lines":"file-lines","file-archive":"file-zipper","file-zipper":"file-zipper","file-chart-line":"file-chart-column","file-chart-column":"file-chart-column","file-download":"file-arrow-down","file-arrow-down":"file-arrow-down","file-edit":"file-pen","file-pen":"file-pen","file-medical-alt":"file-waveform","file-waveform":"file-waveform","file-search":"file-magnifying-glass","file-magnifying-glass":"file-magnifying-glass","file-times":"file-xmark","file-xmark":"file-xmark","file-upload":"file-arrow-up","file-arrow-up":"file-arrow-up","film-alt":"film-simple","film-simple":"film-simple","fire-alt":"fire-flame-curved","fire-flame-curved":"fire-flame-curved","first-aid":"kit-medical","kit-medical":"kit-medical","fist-raised":"hand-fist","hand-fist":"hand-fist","flag-alt":"flag-swallowtail","flag-swallowtail":"flag-swallowtail",flame:"fire-flame","fire-flame":"fire-flame","flask-poison":"flask-round-poison","flask-round-poison":"flask-round-poison","flask-potion":"flask-round-potion","flask-round-potion":"flask-round-potion",flushed:"face-flushed","face-flushed":"face-flushed",fog:"cloud-fog","cloud-fog":"cloud-fog","folder-download":"folder-arrow-down","folder-arrow-down":"folder-arrow-down","folder-times":"folder-xmark","folder-xmark":"folder-xmark","folder-upload":"folder-arrow-up","folder-arrow-up":"folder-arrow-up","font-awesome-alt":"square-font-awesome-stroke","square-font-awesome-stroke":"square-font-awesome-stroke","font-awesome-flag":"font-awesome","font-awesome":"font-awesome","font-awesome-logo-full":"font-awesome","football-ball":"football",football:"football",fragile:"wine-glass-crack","wine-glass-crack":"wine-glass-crack","frosty-head":"snowman-head","snowman-head":"snowman-head",frown:"face-frown","face-frown":"face-frown","frown-open":"face-frown-open","face-frown-open":"face-frown-open","funnel-dollar":"filter-circle-dollar","filter-circle-dollar":"filter-circle-dollar","game-board-alt":"game-board-simple","game-board-simple":"game-board-simple","gamepad-alt":"gamepad-modern","gamepad-modern":"gamepad-modern","glass-champagne":"champagne-glass","champagne-glass":"champagne-glass","glass-cheers":"champagne-glasses","champagne-glasses":"champagne-glasses","glass-martini":"martini-glass-empty","martini-glass-empty":"martini-glass-empty","glass-martini-alt":"martini-glass","martini-glass":"martini-glass","glass-whiskey":"whiskey-glass","whiskey-glass":"whiskey-glass","glass-whiskey-rocks":"whiskey-glass-ice","whiskey-glass-ice":"whiskey-glass-ice","glasses-alt":"glasses-round","glasses-round":"glasses-round","globe-africa":"earth-africa","earth-africa":"earth-africa","globe-americas":"earth-americas","earth-americas":"earth-americas","globe-asia":"earth-asia","earth-asia":"earth-asia","globe-europe":"earth-europa","earth-europa":"earth-europa","golf-ball":"golf-ball-tee","golf-ball-tee":"golf-ball-tee",grimace:"face-grimace","face-grimace":"face-grimace",grin:"face-grin","face-grin":"face-grin","grin-alt":"face-grin-wide","face-grin-wide":"face-grin-wide","grin-beam":"face-grin-beam","face-grin-beam":"face-grin-beam","grin-beam-sweat":"face-grin-beam-sweat","face-grin-beam-sweat":"face-grin-beam-sweat","grin-hearts":"face-grin-hearts","face-grin-hearts":"face-grin-hearts","grin-squint":"face-grin-squint","face-grin-squint":"face-grin-squint","grin-squint-tears":"face-grin-squint-tears","face-grin-squint-tears":"face-grin-squint-tears","grin-stars":"face-grin-stars","face-grin-stars":"face-grin-stars","grin-tears":"face-grin-tears","face-grin-tears":"face-grin-tears","grin-tongue":"face-grin-tongue","face-grin-tongue":"face-grin-tongue","grin-tongue-squint":"face-grin-tongue-squint","face-grin-tongue-squint":"face-grin-tongue-squint","grin-tongue-wink":"face-grin-tongue-wink","face-grin-tongue-wink":"face-grin-tongue-wink","grin-wink":"face-grin-wink","face-grin-wink":"face-grin-wink","grip-horizontal":"grip",grip:"grip","h-square":"square-h","square-h":"square-h",hamburger:"burger",burger:"burger","hand-holding-usd":"hand-holding-dollar","hand-holding-dollar":"hand-holding-dollar","hand-holding-water":"hand-holding-droplet","hand-holding-droplet":"hand-holding-droplet","hand-paper":"hand",hand:"hand","hand-receiving":"hands-holding-diamond","hands-holding-diamond":"hands-holding-diamond","hand-rock":"hand-back-fist","hand-back-fist":"hand-back-fist","hands-heart":"hands-holding-heart","hands-holding-heart":"hands-holding-heart","hands-helping":"handshake-angle","handshake-angle":"handshake-angle","hands-usd":"hands-holding-dollar","hands-holding-dollar":"hands-holding-dollar","hands-wash":"hands-bubbles","hands-bubbles":"hands-bubbles","handshake-alt":"handshake-simple","handshake-simple":"handshake-simple","handshake-alt-slash":"handshake-simple-slash","handshake-simple-slash":"handshake-simple-slash","hard-hat":"helmet-safety","helmet-safety":"helmet-safety",hdd:"hard-drive","hard-drive":"hard-drive","head-vr":"head-side-goggles","head-side-goggles":"head-side-goggles","headphones-alt":"headphones-simple","headphones-simple":"headphones-simple","heart-broken":"heart-crack","heart-crack":"heart-crack","heart-circle":"circle-heart","circle-heart":"circle-heart","heart-rate":"wave-pulse","wave-pulse":"wave-pulse","heart-square":"square-heart","square-heart":"square-heart",heartbeat:"heart-pulse","heart-pulse":"heart-pulse",hiking:"person-hiking","person-hiking":"person-hiking",history:"clock-rotate-left","clock-rotate-left":"clock-rotate-left",home:"house",house:"house","home-alt":"house","home-heart":"house-heart","house-heart":"house-heart","home-lg":"house-chimney","house-chimney":"house-chimney","home-lg-alt":"house","hospital-alt":"hospital",hospital:"hospital","hospital-symbol":"circle-h","circle-h":"circle-h","hot-tub":"hot-tub-person","hot-tub-person":"hot-tub-person","hourglass-half":"hourglass",hourglass:"hourglass","house-damage":"house-chimney-crack","house-chimney-crack":"house-chimney-crack","house-leave":"house-person-leave","house-person-leave":"house-person-leave","house-return":"house-person-return","house-person-return":"house-person-return",hryvnia:"hryvnia-sign","hryvnia-sign":"hryvnia-sign",humidity:"droplet-percent","droplet-percent":"droplet-percent","icons-alt":"symbols",symbols:"symbols","id-card-alt":"id-card-clip","id-card-clip":"id-card-clip","industry-alt":"industry-windows","industry-windows":"industry-windows","info-circle":"circle-info","circle-info":"circle-info","info-square":"square-info","square-info":"square-info",innosoft:"42-group","42-group":"42-group",inventory:"shelves",shelves:"shelves","journal-whills":"book-journal-whills","book-journal-whills":"book-journal-whills",kiss:"face-kiss","face-kiss":"face-kiss","kiss-beam":"face-kiss-beam","face-kiss-beam":"face-kiss-beam","kiss-wink-heart":"face-kiss-wink-heart","face-kiss-wink-heart":"face-kiss-wink-heart","landmark-alt":"landmark-dome","landmark-dome":"landmark-dome","laptop-house":"house-laptop","house-laptop":"house-laptop",laugh:"face-laugh","face-laugh":"face-laugh","laugh-beam":"face-laugh-beam","face-laugh-beam":"face-laugh-beam","laugh-squint":"face-laugh-squint","face-laugh-squint":"face-laugh-squint","laugh-wink":"face-laugh-wink","face-laugh-wink":"face-laugh-wink","level-down":"arrow-turn-down","arrow-turn-down":"arrow-turn-down","level-down-alt":"turn-down","turn-down":"turn-down","level-up":"arrow-turn-up","arrow-turn-up":"arrow-turn-up","level-up-alt":"turn-up","turn-up":"turn-up","list-alt":"rectangle-list","rectangle-list":"rectangle-list",location:"location-crosshairs","location-crosshairs":"location-crosshairs","location-circle":"circle-location-arrow","circle-location-arrow":"circle-location-arrow","location-slash":"location-crosshairs-slash","location-crosshairs-slash":"location-crosshairs-slash","lock-alt":"lock-keyhole","lock-keyhole":"lock-keyhole","lock-open-alt":"lock-keyhole-open","lock-keyhole-open":"lock-keyhole-open","long-arrow-alt-down":"down-long","down-long":"down-long","long-arrow-alt-left":"left-long","left-long":"left-long","long-arrow-alt-right":"right-long","right-long":"right-long","long-arrow-alt-up":"up-long","up-long":"up-long","long-arrow-down":"arrow-down-long","arrow-down-long":"arrow-down-long","long-arrow-left":"arrow-left-long","arrow-left-long":"arrow-left-long","long-arrow-right":"arrow-right-long","arrow-right-long":"arrow-right-long","long-arrow-up":"arrow-up-long","arrow-up-long":"arrow-up-long","low-vision":"eye-low-vision","eye-low-vision":"eye-low-vision",luchador:"luchador-mask","luchador-mask":"luchador-mask","luggage-cart":"cart-flatbed-suitcase","cart-flatbed-suitcase":"cart-flatbed-suitcase",magic:"wand-magic","wand-magic":"wand-magic","mail-bulk":"envelopes-bulk","envelopes-bulk":"envelopes-bulk",male:"person",person:"person","map-marked":"map-location","map-location":"map-location","map-marked-alt":"map-location-dot","map-location-dot":"map-location-dot","map-marker":"location-pin","location-pin":"location-pin","map-marker-alt":"location-dot","location-dot":"location-dot","map-marker-alt-slash":"location-dot-slash","location-dot-slash":"location-dot-slash","map-marker-check":"location-check","location-check":"location-check","map-marker-edit":"location-pen","location-pen":"location-pen","map-marker-exclamation":"location-exclamation","location-exclamation":"location-exclamation","map-marker-minus":"location-minus","location-minus":"location-minus","map-marker-plus":"location-plus","location-plus":"location-plus","map-marker-question":"location-question","location-question":"location-question","map-marker-slash":"location-pin-slash","location-pin-slash":"location-pin-slash","map-marker-smile":"location-smile","location-smile":"location-smile","map-marker-times":"location-xmark","location-xmark":"location-xmark","map-signs":"signs-post","signs-post":"signs-post","mars-stroke-h":"mars-stroke-right","mars-stroke-right":"mars-stroke-right","mars-stroke-v":"mars-stroke-up","mars-stroke-up":"mars-stroke-up","medium-m":"medium",medium:"medium",medkit:"suitcase-medical","suitcase-medical":"suitcase-medical",meh:"face-meh","face-meh":"face-meh","meh-blank":"face-meh-blank","face-meh-blank":"face-meh-blank","meh-rolling-eyes":"face-rolling-eyes","face-rolling-eyes":"face-rolling-eyes","microphone-alt":"microphone-lines","microphone-lines":"microphone-lines","microphone-alt-slash":"microphone-lines-slash","microphone-lines-slash":"microphone-lines-slash","mind-share":"brain-arrow-curved-right","brain-arrow-curved-right":"brain-arrow-curved-right","minus-circle":"circle-minus","circle-minus":"circle-minus","minus-hexagon":"hexagon-minus","hexagon-minus":"hexagon-minus","minus-octagon":"octagon-minus","octagon-minus":"octagon-minus","minus-square":"square-minus","square-minus":"square-minus","mobile-alt":"mobile-screen-button","mobile-screen-button":"mobile-screen-button","mobile-android":"mobile",mobile:"mobile","mobile-android-alt":"mobile-screen","mobile-screen":"mobile-screen","money-bill-alt":"money-bill-1","money-bill-1":"money-bill-1","money-bill-wave-alt":"money-bill-1-wave","money-bill-1-wave":"money-bill-1-wave","money-check-alt":"money-check-dollar","money-check-dollar":"money-check-dollar","money-check-edit":"money-check-pen","money-check-pen":"money-check-pen","money-check-edit-alt":"money-check-dollar-pen","money-check-dollar-pen":"money-check-dollar-pen","monitor-heart-rate":"monitor-waveform","monitor-waveform":"monitor-waveform",mouse:"computer-mouse","computer-mouse":"computer-mouse","mouse-alt":"computer-mouse-scrollwheel","computer-mouse-scrollwheel":"computer-mouse-scrollwheel","mouse-pointer":"arrow-pointer","arrow-pointer":"arrow-pointer","music-alt":"music-note","music-note":"music-note","music-alt-slash":"music-note-slash","music-note-slash":"music-note-slash","oil-temp":"oil-temperature","oil-temperature":"oil-temperature","page-break":"file-dashed-line","file-dashed-line":"file-dashed-line","paint-brush-alt":"paint-brush-fine","paint-brush-fine":"paint-brush-fine","pallet-alt":"pallet-boxes","pallet-boxes":"pallet-boxes","paragraph-rtl":"paragraph-left","paragraph-left":"paragraph-left",parking:"square-parking","square-parking":"square-parking","parking-circle":"circle-parking","circle-parking":"circle-parking","parking-circle-slash":"ban-parking","ban-parking":"ban-parking","parking-slash":"square-parking-slash","square-parking-slash":"square-parking-slash",pastafarianism:"spaghetti-monster-flying","spaghetti-monster-flying":"spaghetti-monster-flying","pause-circle":"circle-pause","circle-pause":"circle-pause","paw-alt":"paw-simple","paw-simple":"paw-simple","pen-alt":"pen-clip","pen-clip":"pen-clip","pen-square":"square-pen","square-pen":"square-pen","pencil-alt":"pencil",pencil:"pencil","pencil-paintbrush":"pen-paintbrush","pen-paintbrush":"pen-paintbrush","pencil-ruler":"pen-ruler","pen-ruler":"pen-ruler",pennant:"flag-pennant","flag-pennant":"flag-pennant","people-arrows":"people-arrows-left-right","people-arrows-left-right":"people-arrows-left-right","people-carry":"people-carry-box","people-carry-box":"people-carry-box",percentage:"percent",percent:"percent","person-carry":"person-carry-box","person-carry-box":"person-carry-box","phone-alt":"phone-flip","phone-flip":"phone-flip","phone-laptop":"laptop-mobile","laptop-mobile":"laptop-mobile","phone-square":"square-phone","square-phone":"square-phone","phone-square-alt":"square-phone-flip","square-phone-flip":"square-phone-flip","photo-video":"photo-film","photo-film":"photo-film","plane-alt":"plane-engines","plane-engines":"plane-engines","play-circle":"circle-play","circle-play":"circle-play","plus-circle":"circle-plus","circle-plus":"circle-plus","plus-hexagon":"hexagon-plus","hexagon-plus":"hexagon-plus","plus-octagon":"octagon-plus","octagon-plus":"octagon-plus","plus-square":"square-plus","square-plus":"square-plus",poll:"square-poll-vertical","square-poll-vertical":"square-poll-vertical","poll-h":"square-poll-horizontal","square-poll-horizontal":"square-poll-horizontal","portal-enter":"person-to-portal","person-to-portal":"person-to-portal","portal-exit":"person-from-portal","person-from-portal":"person-from-portal",portrait:"image-portrait","image-portrait":"image-portrait","pound-sign":"sterling-sign","sterling-sign":"sterling-sign",pray:"person-praying","person-praying":"person-praying","praying-hands":"hands-praying","hands-praying":"hands-praying","prescription-bottle-alt":"prescription-bottle-medical","prescription-bottle-medical":"prescription-bottle-medical",presentation:"presentation-screen","presentation-screen":"presentation-screen","print-search":"print-magnifying-glass","print-magnifying-glass":"print-magnifying-glass",procedures:"bed-pulse","bed-pulse":"bed-pulse","project-diagram":"diagram-project","diagram-project":"diagram-project","question-circle":"circle-question","circle-question":"circle-question","question-square":"square-question","square-question":"square-question",quran:"book-quran","book-quran":"book-quran","rabbit-fast":"rabbit-running","rabbit-running":"rabbit-running","radiation-alt":"circle-radiation","circle-radiation":"circle-radiation","radio-alt":"radio-tuner","radio-tuner":"radio-tuner",random:"shuffle",shuffle:"shuffle","rectangle-landscape":"rectangle",rectangle:"rectangle","rectangle-portrait":"rectangle-vertical","rectangle-vertical":"rectangle-vertical",redo:"arrow-rotate-right","arrow-rotate-right":"arrow-rotate-right","redo-alt":"rotate-right","rotate-right":"rotate-right","remove-format":"text-slash","text-slash":"text-slash","repeat-1-alt":"arrows-repeat-1","arrows-repeat-1":"arrows-repeat-1","repeat-alt":"arrows-repeat","arrows-repeat":"arrows-repeat","retweet-alt":"arrows-retweet","arrows-retweet":"arrows-retweet","rss-square":"square-rss","square-rss":"square-rss",running:"person-running","person-running":"person-running","sad-cry":"face-sad-cry","face-sad-cry":"face-sad-cry","sad-tear":"face-sad-tear","face-sad-tear":"face-sad-tear",save:"floppy-disk","floppy-disk":"floppy-disk","sax-hot":"saxophone-fire","saxophone-fire":"saxophone-fire","scalpel-path":"scalpel-line-dashed","scalpel-line-dashed":"scalpel-line-dashed","scanner-image":"scanner",scanner:"scanner",search:"magnifying-glass","magnifying-glass":"magnifying-glass","search-dollar":"magnifying-glass-dollar","magnifying-glass-dollar":"magnifying-glass-dollar","search-location":"magnifying-glass-location","magnifying-glass-location":"magnifying-glass-location","search-minus":"magnifying-glass-minus","magnifying-glass-minus":"magnifying-glass-minus","search-plus":"magnifying-glass-plus","magnifying-glass-plus":"magnifying-glass-plus","sensor-alert":"sensor-triangle-exclamation","sensor-triangle-exclamation":"sensor-triangle-exclamation","sensor-smoke":"sensor-cloud","sensor-cloud":"sensor-cloud","share-alt":"share-nodes","share-nodes":"share-nodes","share-alt-square":"square-share-nodes","square-share-nodes":"square-share-nodes","share-square":"share-from-square","share-from-square":"share-from-square","shield-alt":"shield-blank","shield-blank":"shield-blank","shipping-fast":"truck-fast","truck-fast":"truck-fast","shipping-timed":"truck-clock","truck-clock":"truck-clock","shopping-bag":"bag-shopping","bag-shopping":"bag-shopping","shopping-basket":"basket-shopping","basket-shopping":"basket-shopping","shopping-cart":"cart-shopping","cart-shopping":"cart-shopping","shuttle-van":"van-shuttle","van-shuttle":"van-shuttle",sign:"sign-hanging","sign-hanging":"sign-hanging","sign-in":"arrow-right-to-bracket","arrow-right-to-bracket":"arrow-right-to-bracket","sign-in-alt":"right-to-bracket","right-to-bracket":"right-to-bracket","sign-language":"hands",hands:"hands","sign-out":"arrow-right-from-bracket","arrow-right-from-bracket":"arrow-right-from-bracket","sign-out-alt":"right-from-bracket","right-from-bracket":"right-from-bracket","signal-1":"signal-weak","signal-weak":"signal-weak","signal-2":"signal-fair","signal-fair":"signal-fair","signal-3":"signal-good","signal-good":"signal-good","signal-4":"signal-strong","signal-strong":"signal-strong","signal-alt":"signal-bars","signal-bars":"signal-bars","signal-alt-1":"signal-bars-weak","signal-bars-weak":"signal-bars-weak","signal-alt-2":"signal-bars-fair","signal-bars-fair":"signal-bars-fair","signal-alt-3":"signal-bars-good","signal-bars-good":"signal-bars-good","signal-alt-slash":"signal-bars-slash","signal-bars-slash":"signal-bars-slash",skating:"person-skating","person-skating":"person-skating","ski-jump":"person-ski-jumping","person-ski-jumping":"person-ski-jumping","ski-lift":"person-ski-lift","person-ski-lift":"person-ski-lift",skiing:"person-skiing","person-skiing":"person-skiing","skiing-nordic":"person-skiing-nordic","person-skiing-nordic":"person-skiing-nordic","slack-hash":"slack",slack:"slack",sledding:"person-sledding","person-sledding":"person-sledding","sliders-h":"sliders",sliders:"sliders","sliders-h-square":"square-sliders","square-sliders":"square-sliders","sliders-v":"sliders-up","sliders-up":"sliders-up","sliders-v-square":"square-sliders-vertical","square-sliders-vertical":"square-sliders-vertical",smile:"face-smile","face-smile":"face-smile","smile-beam":"face-smile-beam","face-smile-beam":"face-smile-beam","smile-plus":"face-smile-plus","face-smile-plus":"face-smile-plus","smile-wink":"face-smile-wink","face-smile-wink":"face-smile-wink","smoking-ban":"ban-smoking","ban-smoking":"ban-smoking",sms:"comment-sms","comment-sms":"comment-sms","snapchat-ghost":"snapchat",snapchat:"snapchat",snowboarding:"person-snowboarding","person-snowboarding":"person-snowboarding",snowmobile:"person-snowmobiling","person-snowmobiling":"person-snowmobiling","sort-alpha-down":"arrow-down-a-z","arrow-down-a-z":"arrow-down-a-z","sort-alpha-down-alt":"arrow-down-z-a","arrow-down-z-a":"arrow-down-z-a","sort-alpha-up":"arrow-up-a-z","arrow-up-a-z":"arrow-up-a-z","sort-alpha-up-alt":"arrow-up-z-a","arrow-up-z-a":"arrow-up-z-a","sort-alt":"arrow-down-arrow-up","arrow-down-arrow-up":"arrow-down-arrow-up","sort-amount-down":"arrow-down-wide-short","arrow-down-wide-short":"arrow-down-wide-short","sort-amount-down-alt":"arrow-down-short-wide","arrow-down-short-wide":"arrow-down-short-wide","sort-amount-up":"arrow-up-wide-short","arrow-up-wide-short":"arrow-up-wide-short","sort-amount-up-alt":"arrow-up-short-wide","arrow-up-short-wide":"arrow-up-short-wide","sort-circle":"circle-sort","circle-sort":"circle-sort","sort-circle-down":"circle-sort-down","circle-sort-down":"circle-sort-down","sort-circle-up":"circle-sort-up","circle-sort-up":"circle-sort-up","sort-numeric-down":"arrow-down-1-9","arrow-down-1-9":"arrow-down-1-9","sort-numeric-down-alt":"arrow-down-9-1","arrow-down-9-1":"arrow-down-9-1","sort-numeric-up":"arrow-up-1-9","arrow-up-1-9":"arrow-up-1-9","sort-numeric-up-alt":"arrow-up-9-1","arrow-up-9-1":"arrow-up-9-1","sort-shapes-down":"arrow-down-triangle-square","arrow-down-triangle-square":"arrow-down-triangle-square","sort-shapes-down-alt":"arrow-down-square-triangle","arrow-down-square-triangle":"arrow-down-square-triangle","sort-shapes-up":"arrow-up-triangle-square","arrow-up-triangle-square":"arrow-up-triangle-square","sort-shapes-up-alt":"arrow-up-square-triangle","arrow-up-square-triangle":"arrow-up-square-triangle","sort-size-down":"arrow-down-big-small","arrow-down-big-small":"arrow-down-big-small","sort-size-down-alt":"arrow-down-small-big","arrow-down-small-big":"arrow-down-small-big","sort-size-up":"arrow-up-big-small","arrow-up-big-small":"arrow-up-big-small","sort-size-up-alt":"arrow-up-small-big","arrow-up-small-big":"arrow-up-small-big",soup:"bowl-hot","bowl-hot":"bowl-hot","space-shuttle":"shuttle-space","shuttle-space":"shuttle-space","space-station-moon-alt":"space-station-moon-construction","space-station-moon-construction":"space-station-moon-construction","square-root-alt":"square-root-variable","square-root-variable":"square-root-variable","star-half-alt":"star-half-stroke","star-half-stroke":"star-half-stroke","starfighter-alt":"starfighter-twin-ion-engine","starfighter-twin-ion-engine":"starfighter-twin-ion-engine","step-backward":"backward-step","backward-step":"backward-step","step-forward":"forward-step","forward-step":"forward-step","sticky-note":"note-sticky","note-sticky":"note-sticky","stop-circle":"circle-stop","circle-stop":"circle-stop","store-alt":"shop",shop:"shop","store-alt-slash":"shop-slash","shop-slash":"shop-slash",stream:"bars-staggered","bars-staggered":"bars-staggered",subway:"train-subway","train-subway":"train-subway",surprise:"face-surprise","face-surprise":"face-surprise",swimmer:"person-swimming","person-swimming":"person-swimming","swimming-pool":"water-ladder","water-ladder":"water-ladder",sync:"arrows-rotate","arrows-rotate":"arrows-rotate","sync-alt":"rotate",rotate:"rotate","table-tennis":"table-tennis-paddle-ball","table-tennis-paddle-ball":"table-tennis-paddle-ball","tablet-alt":"tablet-screen-button","tablet-screen-button":"tablet-screen-button","tablet-android":"tablet",tablet:"tablet","tablet-android-alt":"tablet-screen","tablet-screen":"tablet-screen",tachometer:"gauge-simple","gauge-simple":"gauge-simple","tachometer-alt":"gauge",gauge:"gauge","tachometer-alt-average":"gauge-med","gauge-med":"gauge-med","tachometer-alt-fast":"gauge","tachometer-alt-fastest":"gauge-max","gauge-max":"gauge-max","tachometer-alt-slow":"gauge-low","gauge-low":"gauge-low","tachometer-alt-slowest":"gauge-min","gauge-min":"gauge-min","tachometer-average":"gauge-simple-med","gauge-simple-med":"gauge-simple-med","tachometer-fast":"gauge-simple","tachometer-fastest":"gauge-simple-max","gauge-simple-max":"gauge-simple-max","tachometer-slow":"gauge-simple-low","gauge-simple-low":"gauge-simple-low","tachometer-slowest":"gauge-simple-min","gauge-simple-min":"gauge-simple-min",tanakh:"book-tanakh","book-tanakh":"book-tanakh",tasks:"list-check","list-check":"list-check","tasks-alt":"bars-progress","bars-progress":"bars-progress","telegram-plane":"telegram",telegram:"telegram","temperature-down":"temperature-arrow-down","temperature-arrow-down":"temperature-arrow-down","temperature-frigid":"temperature-snow","temperature-snow":"temperature-snow","temperature-hot":"temperature-sun","temperature-sun":"temperature-sun","temperature-up":"temperature-arrow-up","temperature-arrow-up":"temperature-arrow-up",tenge:"tenge-sign","tenge-sign":"tenge-sign",th:"table-cells","table-cells":"table-cells","th-large":"table-cells-large","table-cells-large":"table-cells-large","th-list":"table-list","table-list":"table-list","theater-masks":"masks-theater","masks-theater":"masks-theater","thermometer-empty":"temperature-empty","temperature-empty":"temperature-empty","thermometer-full":"temperature-full","temperature-full":"temperature-full","thermometer-half":"temperature-half","temperature-half":"temperature-half","thermometer-quarter":"temperature-quarter","temperature-quarter":"temperature-quarter","thermometer-three-quarters":"temperature-three-quarters","temperature-three-quarters":"temperature-three-quarters",thunderstorm:"cloud-bolt","cloud-bolt":"cloud-bolt","thunderstorm-moon":"cloud-bolt-moon","cloud-bolt-moon":"cloud-bolt-moon","thunderstorm-sun":"cloud-bolt-sun","cloud-bolt-sun":"cloud-bolt-sun","ticket-alt":"ticket-simple","ticket-simple":"ticket-simple",times:"xmark",xmark:"xmark","times-circle":"circle-xmark","circle-xmark":"circle-xmark","times-hexagon":"hexagon-xmark","hexagon-xmark":"hexagon-xmark","times-octagon":"octagon-xmark","octagon-xmark":"octagon-xmark","times-square":"square-xmark","square-xmark":"square-xmark",tint:"droplet",droplet:"droplet","tint-slash":"droplet-slash","droplet-slash":"droplet-slash",tired:"face-tired","face-tired":"face-tired","toilet-paper-alt":"toilet-paper-blank","toilet-paper-blank":"toilet-paper-blank","tombstone-alt":"tombstone-blank","tombstone-blank":"tombstone-blank",tools:"screwdriver-wrench","screwdriver-wrench":"screwdriver-wrench",torah:"scroll-torah","scroll-torah":"scroll-torah",tram:"train-tram","train-tram":"train-tram","transgender-alt":"transgender",transgender:"transgender","trash-alt":"trash-can","trash-can":"trash-can","trash-restore":"trash-arrow-up","trash-arrow-up":"trash-arrow-up","trash-restore-alt":"trash-can-arrow-up","trash-can-arrow-up":"trash-can-arrow-up","trash-undo-alt":"trash-can-undo","trash-can-undo":"trash-can-undo","tree-alt":"tree-deciduous","tree-deciduous":"tree-deciduous","triangle-music":"triangle-instrument","triangle-instrument":"triangle-instrument","trophy-alt":"trophy-star","trophy-star":"trophy-star","truck-couch":"truck-ramp-couch","truck-ramp-couch":"truck-ramp-couch","truck-loading":"truck-ramp-box","truck-ramp-box":"truck-ramp-box",tshirt:"shirt",shirt:"shirt","tv-alt":"tv",tv:"tv",undo:"arrow-rotate-left","arrow-rotate-left":"arrow-rotate-left","undo-alt":"rotate-left","rotate-left":"rotate-left",university:"building-columns","building-columns":"building-columns",unlink:"link-slash","link-slash":"link-slash","unlock-alt":"unlock-keyhole","unlock-keyhole":"unlock-keyhole","usd-circle":"circle-dollar","circle-dollar":"circle-dollar","usd-square":"square-dollar","square-dollar":"square-dollar","user-alt":"user-large","user-large":"user-large","user-alt-slash":"user-large-slash","user-large-slash":"user-large-slash","user-chart":"chart-user","chart-user":"chart-user","user-circle":"circle-user","circle-user":"circle-user","user-cog":"user-gear","user-gear":"user-gear","user-edit":"user-pen","user-pen":"user-pen","user-friends":"user-group","user-group":"user-group","user-hard-hat":"user-helmet-safety","user-helmet-safety":"user-helmet-safety","user-md":"user-doctor","user-doctor":"user-doctor","user-md-chat":"user-doctor-message","user-doctor-message":"user-doctor-message","user-times":"user-xmark","user-xmark":"user-xmark","users-class":"screen-users","screen-users":"screen-users","users-cog":"users-gear","users-gear":"users-gear","users-crown":"user-group-crown","user-group-crown":"user-group-crown","utensil-fork":"fork",fork:"fork","utensil-knife":"knife",knife:"knife","utensil-spoon":"spoon",spoon:"spoon","utensils-alt":"fork-knife","fork-knife":"fork-knife",vhs:"cassette-vhs","cassette-vhs":"cassette-vhs","volleyball-ball":"volleyball",volleyball:"volleyball","volume-down":"volume-low","volume-low":"volume-low","volume-mute":"volume-xmark","volume-xmark":"volume-xmark","volume-up":"volume-high","volume-high":"volume-high","vote-nay":"xmark-to-slot","xmark-to-slot":"xmark-to-slot","vote-yea":"check-to-slot","check-to-slot":"check-to-slot",walking:"person-walking","person-walking":"person-walking","warehouse-alt":"warehouse-full","warehouse-full":"warehouse-full",washer:"washing-machine","washing-machine":"washing-machine","water-lower":"water-arrow-down","water-arrow-down":"water-arrow-down","water-rise":"water-arrow-up","water-arrow-up":"water-arrow-up","waveform-path":"waveform-lines","waveform-lines":"waveform-lines",webcam:"camera-web","camera-web":"camera-web","webcam-slash":"camera-web-slash","camera-web-slash":"camera-web-slash",weight:"weight-scale","weight-scale":"weight-scale","wifi-1":"wifi-weak","wifi-weak":"wifi-weak","wifi-2":"wifi-fair","wifi-fair":"wifi-fair","window-alt":"window-flip","window-flip":"window-flip","window-close":"rectangle-xmark","rectangle-xmark":"rectangle-xmark","wine-glass-alt":"wine-glass-empty","wine-glass-empty":"wine-glass-empty"},dz.setItem("uagSvgConfirmation",JSON.stringify((null===(pz=uagb_blocks_info)||void 0===pz?void 0:pz.svg_confirmation)||!1)),null!==(bz=uagb_blocks_info.uagb_svg_icons)&&void 0!==bz&&bz.uagb_category_list&&(wp.uagb_icon_category_list=[...uagb_blocks_info.uagb_svg_icons.uagb_category_list],delete uagb_blocks_info.uagb_svg_icons.uagb_category_list),wp.UAGBSvgIcons=Object.keys(uagb_blocks_info.uagb_svg_icons),Object(be.updateCategory)("uagb",{icon:se.logo});const gz=()=>{window._wpLoadBlockEditor&&window._wpLoadBlockEditor.then(()=>{(()=>{const e=document.createElement("style");e.setAttribute("id","uagb-recovery-styles"),e.innerHTML='.has-warning[data-type^="uagb/"] { opacity: 0 !important; }',document.body.appendChild(e)})(),setTimeout(()=>{const e=Object(n.subscribe)(()=>{null!==Object(n.select)("core").getEntityRecords("postType","wp_block")&&(e(),sz(Object(n.select)("core/block-editor").getBlocks()).forEach(e=>{e.isReusable&&e.ref&&Object(n.dispatch)("core").editEntityRecord("postType","wp_block",e.ref,{content:Object(be.serialize)(e.blocks)}).then(),e.recovered&&e.replacedClientId&&Object(n.dispatch)("core/block-editor").replaceBlock(e.replacedClientId,e)}),rz&&console.log("%cSpectra Auto Recovery Enabled: All Spectra Blocks on this page have been recovered!","border-radius: 6px; width: 100%; margin: 16px 0; padding: 16px; background-color: #007CBA; color: #fff; font-weight: bold; text-shadow: 2px 2px 2px #0063A1;"),(()=>{const e=document.querySelector("#uagb-recovery-styles");e&&document.body.removeChild(e)})())})},0)})};"disabled"!==uagb_blocks_info.auto_block_recovery&&ee()(gz),K()&&window.wp.customize.bind("ready",()=>{window.wp.customize.previewedDevice.bind(e=>{if(!e)return;if(!["mobile","tablet","desktop"].includes(e))return;const t=e.charAt(0).toUpperCase()+e.slice(1);ie(t,!1)})})}]);PK�][3:��n�n�3ultimate-addons-for-gutenberg/dist/style-blocks.cssnu�[���.uagb-popup-builder{display:none;opacity:0;position:fixed;top:0;left:0;width:100vw;height:100vh;max-width:100vw;max-height:100vh;z-index:999999999;overflow:hidden;transition-property:opacity;transition-duration:250ms}.uagb-popup-builder__banner--pusher{position:relative}.uagb-popup-builder__wrapper{position:relative;box-sizing:border-box}.uagb-popup-builder__wrapper--banner{width:100%}.uagb-popup-builder__container{display:flex;box-sizing:border-box;width:100%;height:100%;flex-direction:column;overflow-x:hidden;overflow-y:auto;transition-property:box-shadow,border-color;transition-duration:250ms}.uagb-popup-builder__container .uagb-is-root-container{width:100%}.uagb-popup-builder__close{position:absolute;top:0;z-index:999999999}.uagb-popup-builder button.uagb-popup-builder__close{border:none;background:transparent;background-color:transparent;padding:0}.uagb-popup-builder button.uagb-popup-builder__close svg{transition-property:fill;transition-duration:250ms}.uagb-popup-builder__body--overflow-hidden{overflow:hidden}
.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{transform-origin:center;transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}
.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all .3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow .2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:.2;background:rgba(0,0,0,.5);transition:opacity .35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform .35s,opacity .35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform .4s,opacity .4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform .45s,opacity .45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform .35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform .35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:inline-flex;width:100%}.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}@media(max-width: 976px){.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}@media(max-width: 767px){.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}
.uagb-buttons__outer-wrap .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center;transition:box-shadow .2s ease}.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
.uagb-ifb-content>svg *{transition:all .2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir=rtl] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir=rtl] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir=rtl] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir=rtl] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir=rtl] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir=rtl] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}
.uagb-cta__outer-wrap .uagb-cta__content,.uagb-cta__outer-wrap a.uagb-cta__block-link span,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper,.uagb-cta__outer-wrap .uagb-cta-typeof-button,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta-with-svg{display:inline-block}.uagb-cta__outer-wrap{display:flex;justify-content:space-between}.wp-block-uagb-call-to-action .uagb-cta__buttons{display:inline-flex}.wp-block-uagb-call-to-action .wp-block-button__link,.wp-block-uagb-call-to-action .ast-outline-button{fill:currentColor;justify-content:center}.uagb-cta__button-link-wrapper,.uagb-cta-second__button{display:inline-flex;align-items:center;word-break:keep-all;width:100%}.uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__content-right .uagb-cta__button-wrapper{float:right}.uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}a.uagb-cta__block-link,.entry .entry-content a.uagb-cta__block-link,a.uagb-cta__block-link-wrap,.entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}a.uagb-cta__block-link:hover,.entry .entry-content a.uagb-cta__block-link:hover,a.uagb-cta__block-link-wrap:hover,.entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__block-link-icon,.uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__block{position:relative}.uagb-cta-typeof-button{line-height:1;text-align:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__block,.uagb-cta__content,.uagb-cta__left-right-wrap{z-index:1}.uagb-cta__block-link{cursor:pointer}.uagb-cta__content-right .uagb-cta__block-link{float:right;padding:10px 14px}a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__content p:empty{display:none}.uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta-with-svg{height:14px;width:14px;line-height:14px;vertical-align:middle}.uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__button-link-wrapper svg{width:20px;height:20px}.uagb-cta__align-button-after{margin-left:5px}.uagb-cta__align-button-before{margin-right:5px}.uagb-cta__block-link i{font-style:normal}a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.wp-block-uagb-call-to-action{position:relative}.wp-block-uagb-call-to-action a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet,.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile,.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}.uagb-cta__desc p:last-child{margin-bottom:0}
.wp-block-uagb-icon svg{width:30px}.uagb-icon-wrapper .uagb-svg-wrapper{transition:box-shadow .2s ease}
.wp-block-uagb-countdown{display:flex;justify-content:center;text-align:center}.wp-block-uagb-countdown .wp-block-uagb-countdown__box{transition:box-shadow .2s ease}.wp-block-uagb-countdown__box{position:relative;display:flex;flex-direction:column;width:155px;height:155px;aspect-ratio:1;justify-content:center}@media(max-width: 976px){.wp-block-uagb-countdown__box{width:100px;height:100px}}@media(max-width: 767px){.wp-block-uagb-countdown__box{width:65px;height:65px}}.wp-block-uagb-countdown__time{font-size:52px}@media(max-width: 976px){.wp-block-uagb-countdown__time{font-size:32px}}.wp-block-uagb-countdown__label{font-size:14px}@media(max-width: 976px){.wp-block-uagb-countdown__label{font-size:12px}}.wp-block-uagb-countdown .wp-block-uagb-countdown-innerblocks{text-align:initial}html:not([dir=rtl]) .wp-block-uagb-countdown__box:not(:last-child){margin-right:38px}html:not([dir=rtl]) .wp-block-uagb-countdown__box:not(:last-child) .wp-block-uagb-countdown__time::after{position:absolute;right:0}html:not([dir=rtl]) .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds .wp-block-uagb-countdown__time-seconds::after{display:none}html:not([dir=rtl]) .wp-block-uagb-countdown>.wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds:not(:last-child){margin-right:unset}.wp-block-uagb-countdown-innerblocks{display:none}html[dir=rtl] .wp-block-uagb-countdown__box:not(:first-child){margin-right:38px}html[dir=rtl] .wp-block-uagb-countdown__box:not(:first-child) .wp-block-uagb-countdown__time::before{position:absolute;right:0}body[class*=astra] .wp-block-uagb-countdown{line-height:normal}
.wp-block-uagb-blockquote{padding:0;margin:0 auto;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{display:block;font-style:normal}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{display:inline-flex;float:unset}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap .uagb-blockquote__icon{padding:0;margin-right:0;margin-bottom:0}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid .5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:.2s;-o-transition:.2s}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation blockquote.uagb-blockquote{vertical-align:baseline;padding:0;margin:0;background:transparent;border:0 none;outline:0;font-size:100%;font-style:normal;quotes:none}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon{position:relative;display:inline-block;z-index:1;padding:10px;margin-right:10px;border-radius:100%;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{display:inherit;width:inherit;height:inherit}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2.uagb-blockquote__align-right .uagb-blockquote__icon{display:inline-block;float:right}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_1 .uagb-blockquote__icon{display:inline-flex;float:unset}.wp-block-uagb-blockquote blockquote.uagb-blockquote{padding:0;margin:0}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:flex;justify-content:flex-start;-js-display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{position:relative;display:flex;align-self:center;width:max-content;padding:0;background-color:transparent;color:#1da1f2;line-height:1;transition:.2s;-webkit-transition:.2s;-o-transition:.2s;-webkit-align-self:flex-end;-ms-flex-item-align:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{align-self:center;vertical-align:middle;width:15px;height:15px;fill:#fff}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid .5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:.2s;-o-transition:.2s}.wp-block-uagb-blockquote.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{right:-0.8em;left:auto;transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;align-self:center;margin:0 auto;text-align:center;-ms-flex-item-align:center}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row;align-self:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap img{width:50px;height:50px;border-radius:100%;-o-object-fit:cover;object-fit:cover}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column;width:100%;align-items:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right;align-items:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse;justify-content:flex-end}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}}
.uagb-timeline__outer-wrap{position:relative}.uagb-timeline__outer-wrap .uagb-timeline__field{position:relative;display:flex;align-items:flex-start;margin-bottom:inherit;color:inherit;font-size:inherit}.uagb-timeline__outer-wrap .uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__outer-wrap .uagb-timeline__field a{margin-bottom:inherit;text-decoration:none}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image img{display:inline-block;box-sizing:content-box;height:auto;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__author-link{text-transform:capitalize}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__link{display:inline-block}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image a{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__outer-wrap .uagb-timeline__line{position:absolute;transform:translateX(-50%);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);width:3px;background-color:#eee}.uagb-timeline__outer-wrap .uagb-timeline__line .uagb-timeline__line__inner{width:100%;background-color:#0693e3}.uagb-timeline__outer-wrap svg{display:inline-block;vertical-align:middle;font-size:16px;font-style:normal;line-height:16px}.uagb-timeline__outer-wrap .uagb-timeline__field:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__marker{position:relative;display:flex;z-index:1;justify-content:center;align-items:center;min-width:3em;min-height:3em;background-color:#eee;border-radius:999px;line-height:48px;transition:all .2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__year{position:relative;display:flex}.uagb-timeline__outer-wrap .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__field{align-items:center}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__field{align-items:flex-end}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__outer-wrap .uagb-timeline__date .uagb-timeline__inner-date-new{margin:0;white-space:nowrap}.uagb-timeline__outer-wrap .in-view i.uagb-timeline__in-view-icon{transition:background .25s ease-out .25s,width .25s ease-in-out,height .25s ease-in-out,color .25s ease-in-out,font-size .25s ease-out}.uagb-timeline__outer-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap p:empty{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__line{position:absolute;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}.uagb-content{word-break:break-word}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0}.uagb-timeline__center-block{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;top:50%;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:13px solid #eee;transform:translateY(-50%);content:"";-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:1}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__center-block .uagb-timeline__field.uagb-timeline__right{flex-direction:row-reverse}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{display:block;position:relative;flex-grow:1;flex-basis:50%;max-width:100%}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{position:absolute;top:0;right:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;left:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__line{right:auto;left:50%}.uagb-timeline__right-block .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center;margin-left:10px}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;right:0;width:10px;height:40px}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1;margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0}.uagb-timeline__left-block{text-align:left}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__left-block .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__left-block .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:14px}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__left-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;width:10px;height:40px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-right:13px solid #eee;border-bottom:12px solid transparent;content:""}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow::after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__day-left .uagb-timeline__arrow::after{position:absolute;left:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow::after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__icon{position:relative;z-index:1;vertical-align:middle;width:100px;height:100px;border-radius:50%;text-align:center;line-height:100px;-webkit-border-radius:50%}.uagb-timeline__left{text-align:left}.uagb-timeline__right{text-align:right}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__arrow{height:3em}.uagb-timeline__right-block .uagb-timeline__line{right:1.5em}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:auto;left:16px}.rtl .uagb-timeline__left-block .uagb-timeline__field{flex-direction:row-reverse}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__right-block .uagb-timeline__line{right:auto;left:1.5em}.rtl .uagb-timeline__right-block .uagb-timeline__field{flex-direction:row}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee;right:-17px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:17.5px;left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media(max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-ms-flex-negative:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-ms-flex-positive:1;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content .uagb-timeline__heading{margin-top:unset}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content p.uagb-timeline-desc-content{margin-bottom:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field{display:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field .uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%)}.wp-block-uagb-post-timeline .uagb-timeline__link_parent .uagb-timeline__link.wp-block-button__link{width:auto}
.uagb-timeline__events-inner-new{background-color:#eee;border-radius:2px}.wp-block-uagb-content-timeline svg{fill:#333;color:#333;font-size:15px;width:15px}.uagb-timeline__field{margin-bottom:15px}
.wp-block-uagb-counter .wp-block-uagb-counter__icon,.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap{display:inline-block;line-height:0}.wp-block-uagb-counter--number .wp-block-uagb-counter__number{font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--number .wp-block-uagb-counter__icon{margin-bottom:10px}.wp-block-uagb-counter--bars{display:flex;flex-direction:column}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{width:100%;background-color:#eaeaea}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{width:0%;min-height:5px;text-align:right;line-height:1;white-space:nowrap;overflow:hidden;background:#007cba;display:flex;justify-content:flex-end;align-items:center}.rtl .wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{flex-direction:row-reverse;justify-content:flex-start}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number>:last-child{margin-right:5px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__title{margin-top:15px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__number{color:#fff;padding-top:5px;padding-bottom:5px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{position:relative;display:inline-block;width:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container .wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg{pointer-events:none}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg{transform:rotate(-90deg);width:100%;height:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg circle{stroke:#eaeaea;stroke-width:1em;fill:transparent}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg .uagb-counter-circle__progress{stroke:#007cba}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container__content{position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;flex-direction:column;z-index:1}.wp-block-uagb-counter--circle .wp-block-uagb-counter__number{margin-top:5px;font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--circle .wp-block-uagb-counter__title{margin-top:5px}.wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter__title{margin-top:10px;margin-bottom:17px;font-size:16px}body[class*=astra] .wp-block-uagb-counter__title,body[class*=astra] .wp-block-uagb-counter__number{line-height:normal}
.wp-block-uagb-faq{width:100%}.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.wp-block-uagb-faq .uagb-faq-content{margin-bottom:0}.wp-block-uagb-faq .uagb-faq-content p{margin:auto}.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-item{height:100%}body[class*=astra] .uagb-faq-questions{line-height:normal}.uagb-faq-item{overflow:hidden}
.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0;margin-bottom:0}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:flex;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
.uagb-forms__outer-wrap .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-input::placeholder,.uagb-forms__outer-wrap .uagb-forms-input-label,.uagb-forms__outer-wrap .uagb-forms-main-submit-button,.uagb-forms__outer-wrap .uagb-forms-success-message,.uagb-forms__outer-wrap .uagb-forms-failed-message{transition-property:color,background-color,border-color;transition-duration:.15s}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-main-form input[type=text]{min-height:0 !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input::-webkit-input-placeholder,.uagb-forms__outer-wrap .uagb-forms-main-form input[type=text]::-webkit-input-placeholder{overflow:unset}.uagb-forms__outer-wrap .uagb-forms-main-form input:not([type=checkbox]):not([type=radio]):not([type=file]),.uagb-forms__outer-wrap .uagb-forms-main-form textarea,.uagb-forms__outer-wrap .uagb-forms-main-form select{width:100%;box-sizing:border-box}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-checkbox-wrap .uagb-form-checkbox-option input.uagb-inner-input-view{width:33%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-forms-phone-input{width:75% !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%;justify-content:space-between}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .required::after{color:red;content:" *"}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-form-hidden-data{display:none}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link{width:auto}.uagb-forms__outer-wrap .uagb-forms-submit-message-hide{display:none}.uagb-forms__outer-wrap .uagb-forms-success-message{padding:20px 20px}.uagb-forms__outer-wrap .uagb-forms-failed-message{padding:20px 20px}.uagb-forms__outer-wrap span.components-spinner{float:none}.uagb-forms__outer-wrap .uagb-forms-input.uagb-form-phone-country{background-color:#fff}.uagb-forms__outer-wrap .uag-col-2-wrap{display:grid;grid-template-columns:1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-3-wrap{display:grid;grid-template-columns:1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-4-wrap{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uagb-switch{position:relative;display:inline-block;width:50px;height:25px}.uagb-forms__outer-wrap .uagb-switch input{width:0;height:0;opacity:0}.uagb-forms__outer-wrap .uagb-slider{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#fff;cursor:pointer;transition:.4s;-webkit-transition:.4s}.uagb-forms__outer-wrap .uagb-switch .uagb-slider::before{position:absolute;width:20px;height:20px;background-color:#000;transition:.4s;content:"";-webkit-transition:.4s}.uagb-forms__outer-wrap .uagb-switch input:checked+.uagb-slider::before{background-color:#fff}.uagb-forms__outer-wrap .uagb-slider.round::before{border-radius:50% !important}.uagb-forms-select-box,.uagb-form-phone-country,.uagb-forms-phone-wrap .uagb-forms-phone-input{height:auto;-webkit-appearance:none;appearance:none}.uagb-forms-radio-wrap input[type=radio]:checked+label::before{line-height:1.2;content:" "}.uagb-forms-radio-wrap input[type=radio]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:""}.uagb-forms-radio-wrap input[type=radio].round+label::before{border-radius:100% !important}select::after,select::before{padding:10px}.uagb-forms-radio-wrap input[type=radio],.uagb-forms-checkbox-wrap input[type=checkbox],.uagb-forms-accept-wrap input[type=checkbox]{opacity:0}.uagb-forms-checkbox-wrap input[type=checkbox]:checked+label::before,.uagb-forms-accept-wrap input[type=checkbox]:checked+label::before{line-height:1.2;content:"✔"}.uagb-forms-checkbox-wrap input[type=checkbox]+label::before,.uagb-forms-accept-wrap input[type=checkbox]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:" "}@media only screen and (max-width: 767px){.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%}}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-20 .uagb-forms-main-form{column-gap:20px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-15 .uagb-forms-main-form{column-gap:15px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-10 .uagb-forms-main-form{column-gap:10px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-5 .uagb-forms-main-form{column-gap:5px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-flex-start .uagb-forms-main-form{align-items:flex-start}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-center .uagb-forms-main-form{align-items:center}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form{display:flex;flex-wrap:wrap;margin:0 -5px;position:relative;text-align:left}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-80{width:80%}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}@media(max-width: 767px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
.uagb-howto__cost-wrap{display:flex;align-items:center}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:flex;align-items:center}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}.uagb-step-link-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;box-shadow:none;text-decoration:none;color:inherit}.uagb-how-to-step-wrap{position:relative;margin-top:25px}.uagb-step-image-content-wrap.uag-image-position-left-title{display:flex}.uagb-step-image-content-wrap.uag-image-position-left-title .uagb-how-to-step-image{margin-right:20px}.uagb-step-image-content-wrap.uag-image-position-right-title{display:flex;flex-direction:row-reverse}.uagb-step-image-content-wrap.uag-image-position-right-title .uagb-how-to-step-image{margin-left:20px}.uagb-step-image-content-wrap.uag-image-position-above-title{display:block}.uagb-step-image-content-wrap.uag-image-position-above-title .uagb-how-to-step-image{margin-bottom:20px}.uagb-step-image-content-wrap .uagb-step-link{text-decoration:none !important}.uagb-step-image-content-wrap .uagb-step-link:hover{text-decoration:none !important}.uagb-howto-req-steps-text,.uagb-howto-req-tools-text,.uagb-howto-req-materials-text{margin-block-start:1.33em;margin-block-end:1.33em}.uagb-how-to-main-wrap{width:100%}.uagb-how-to-main-wrap .uagb-howto__source-image{height:auto;max-width:100%}
.uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.wp-block-uagb-icon-list-child{padding:0;transition:all .2s;display:inline-flex;color:#3a3a3a;align-items:center;text-decoration:none;box-shadow:none}.wp-block-uagb-icon-list-child span.uagb-icon-list__source-wrap{display:block;align-items:center}.uagb-icon-list__source-wrap svg{display:block}.uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}.wp-block-uagb-icon-list-child .uagb-icon-list__label{word-break:break-word}
.wp-block-uagb-image-gallery{display:-ms-flex;display:-moz-flex;display:flex;justify-content:center;flex-direction:column}.spectra-image-gallery *{box-sizing:border-box}.spectra-image-gallery__layout--grid{display:-moz-grid;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--grid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--isogrid-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--isogrid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--masonry-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--carousel{width:100%}.spectra-image-gallery__layout--carousel .slick-initialized{visibility:visible}.spectra-image-gallery__layout--carousel .slick-track{display:flex;align-items:center}.spectra-image-gallery__layout--carousel .slick-dots{padding:0;position:relative !important}.spectra-image-gallery__layout--carousel .slick-dots li button{padding:0}.spectra-image-gallery__layout--carousel .uagb-slick-carousel{padding:0}.spectra-image-gallery__layout--tiled{position:relative;display:grid;grid-auto-flow:dense;min-height:0;min-width:0}.spectra-image-gallery__layout--tiled-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__media{position:relative;overflow:hidden;transition:box-shadow .25s}.spectra-image-gallery__media--flagged{cursor:not-allowed}.spectra-image-gallery__media--clickable{cursor:pointer}.spectra-image-gallery__media--grid{aspect-ratio:1}.spectra-image-gallery__media--masonry{width:100%}.spectra-image-gallery__media--carousel{width:100%}.spectra-image-gallery__media--tiled{aspect-ratio:1;display:flex;align-items:center;justify-content:center}.spectra-image-gallery__media--tiled-wide,.spectra-image-gallery__media--tiled-tall{aspect-ratio:unset;width:100%;height:100%}.spectra-image-gallery__media--tiled picture{width:100%;height:100%}.spectra-image-gallery__media-sizer{aspect-ratio:1}.spectra-image-gallery__media-wrapper{position:relative}.spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__control-focus{opacity:.25}.spectra-image-gallery__media-thumbnail{vertical-align:middle;transition:filter .5s,transform .5s}.spectra-image-gallery__media-thumbnail--grid{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail--masonry{width:100%}.spectra-image-gallery__media-thumbnail--carousel{width:100%}.spectra-image-gallery__media-thumbnail--tiled{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail-blurrer{position:absolute;top:0;left:0;width:100% !important;height:100% !important;transition:box-shadow .25s,-webkit-backdrop-filter .5s;transition:box-shadow .25s,backdrop-filter .5s;transition:box-shadow .25s,backdrop-filter .5s,-webkit-backdrop-filter .5s}.spectra-image-gallery__media-thumbnail-caption{transition-property:color,background-color,border-color;transition-duration:.25s}.spectra-image-gallery__media-thumbnail-caption--overlay{display:-ms-flex;display:-moz-flex;display:flex;width:100%;height:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption--bar-inside{width:100%;overflow:hidden;padding:1em;max-height:90%}.spectra-image-gallery__media-thumbnail-caption--bar-outside{width:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption-wrapper{transition:background-color .25s}.spectra-image-gallery__media-thumbnail-caption-wrapper--overlay{position:absolute;top:0;left:0;width:100%;height:100%}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-inside{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;overflow:hidden}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-outside{position:relative;width:100%;overflow:hidden}.spectra-image-gallery__control-wrapper{display:-ms-flex;display:-moz-flex;display:flex;width:100%;justify-content:center}.spectra-image-gallery__control-arrows{display:-ms-flex;display:-moz-flex;display:flex;align-items:center;background-color:transparent;padding:0;cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-arrows:disabled{opacity:.25;cursor:initial}.spectra-image-gallery__control-arrows:focus{background-color:transparent}.spectra-image-gallery__control-arrows--grid{border:none}.spectra-image-gallery__control-arrows svg{transition-duration:.25s}.spectra-image-gallery__control-dots{display:-ms-flex;display:-moz-flex;display:flex;align-items:center;padding:0 !important;margin:0 !important}.spectra-image-gallery__control-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0;padding:0;cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-dots li:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__control-dots li button{font-size:0;line-height:0;display:block;box-sizing:border-box;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent;transition-duration:.25s}.spectra-image-gallery__control-dots li button::before{font-family:none;font-size:30px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transition-duration:.25s}.spectra-image-gallery__control-dots li.spectra-image-gallery__control-dot--active button::before{opacity:.75}.spectra-image-gallery__control-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.spectra-image-gallery__control-loader div{border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--1{animation-delay:-0.32s}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--2{animation-delay:-0.16s}.spectra-image-gallery__control-button{cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-button.disabled{opacity:.25;pointer-events:none}.spectra-image-gallery__control-focus{cursor:pointer;position:absolute;box-sizing:content-box !important;top:0;right:0;width:1.5em;height:1.5em;padding:.5em;background-color:transparent;border:none;opacity:0;transition-property:opacity;transition-duration:.25s}.spectra-image-gallery__control-focus:hover{opacity:1 !important}.spectra-image-gallery__control-focus svg{fill:#fff;filter:drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5))}.spectra-image-gallery__control-lightbox{position:fixed;top:0;left:0;width:100vw !important;max-width:100vw !important;height:100vh !important;max-height:100vh !important;display:flex;flex-direction:column;opacity:0;transition-property:opacity;z-index:999999999 !important;outline:none;margin-block-start:0;transition-duration:.25s}.spectra-image-gallery__control-lightbox--main{width:100%;flex:1}.spectra-image-gallery__control-lightbox--main .swiper-slide{height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.spectra-image-gallery__control-lightbox--main .swiper-slide img{display:block;max-height:70%;max-width:80%}.spectra-image-gallery__control-lightbox--caption{position:absolute;bottom:0;left:0;width:100%;display:flex;align-items:center;justify-content:center;text-align:center}.spectra-image-gallery__control-lightbox--editor-link{transition-property:color;transition-duration:.25s}.spectra-image-gallery__control-lightbox--thumbnails{width:75%}.spectra-image-gallery__control-lightbox--thumbnails-wrapper{width:100%}.spectra-image-gallery__control-lightbox--thumbnails .swiper-wrapper{height:150px}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide{cursor:pointer;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:.5;transform:scale(75%);transition-property:opacity,transform;transition-duration:.25s}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide-active{opacity:1;transform:scale(100%)}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide img{border-radius:3px}.spectra-image-gallery__control-lightbox--count{position:absolute;z-index:999}.spectra-image-gallery__control-lightbox--close{position:absolute;cursor:pointer;padding:0;background-color:transparent;border:none;outline:0;line-height:0;z-index:999;transition:transform 500ms}.spectra-image-gallery__control-lightbox--close:hover,.spectra-image-gallery__control-lightbox--close:focus,.spectra-image-gallery__control-lightbox--close:focus-visible{background-color:transparent;transform:scale(1.25)}.spectra-image-gallery__iso-ref-wrapper{-ms-overflow-style:none;scrollbar-width:none}.spectra-image-gallery__iso-ref-wrapper::-webkit-scrollbar{display:none}@media(max-width: 976px){.spectra-image-gallery__layout--grid-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}@media(max-width: 767px){.spectra-image-gallery__layout--grid-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}.entry-content .wp-block-uagb-image-gallery .uagb-image-gallery__link{text-decoration:none}body .wp-block-post-content>.wp-block-uagb-image-gallery+.spectra-image-gallery__control-lightbox{margin-block-start:0}@keyframes sk-bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{width:100%;position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;width:-webkit-fill-available;width:fill-available;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{margin-top:-3px;margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:last-child{margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:first-child{margin-top:0 !important}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable>svg{position:absolute;cursor:pointer;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable button[type=button]{position:absolute;cursor:pointer;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right{text-align:right}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right svg{left:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right button[type=button]{left:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center{text-align:center}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center button[type=button]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left{text-align:left}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left button[type=button]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}
.wp-block-uagb-marketing-button{display:flex}.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin-bottom:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1;display:inline-block;position:relative;transition:all .2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__link.wp-block-button__link{width:auto}.wp-block-uagb-marketing-button svg{fill:currentColor;width:20px;height:20px;z-index:1;vertical-align:middle}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button svg{display:inline;vertical-align:middle}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link{justify-content:center;text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__link{justify-content:flex-start;text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__link{justify-content:flex-end;text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after svg{order:2}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__wrap{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:self-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap{order:2}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none;display:inline-block}
body.hide-scroll{overflow:hidden}body .uagb-modal-popup-wrap .wp-block{max-width:none !important;margin:0 !important}.uagb-modal-popup{visibility:hidden;position:fixed}.uagb-modal-popup.active{top:0;bottom:0;justify-content:center;align-items:center;background:rgba(0,0,0,.7);left:0;right:0;display:flex;visibility:visible}.uagb-modal-popup.active .uagb-modal-popup-close{opacity:1;display:flex;align-items:center;position:absolute;text-align:center;cursor:pointer;fill:#fff}.uagb-modal-popup.active .uagb-modal-popup-close svg{transition-property:filter,transform;transition-duration:250ms}.uagb-modal-popup.active .uagb-modal-popup-close:focus svg{transform:scale(1.2)}.uagb-modal-popup .uagb-modal-popup-close{display:none;border:none;background:transparent;padding:0}.uagb-modal-popup .uagb-modal-popup-content{padding:35px 35px;overflow-x:hidden;overflow-y:overlay;height:100%}.uagb-modal-popup .uagb-modal-popup-wrap{display:flex;flex-direction:column;justify-content:flex-start;width:700px;height:450px;max-width:100%;box-sizing:border-box;background:#fff;color:#333;position:relative}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar{width:5px}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar-thumb{box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:100px}.wp-block-uagb-modal{width:100%}.entry .entry-content a.uagb-modal-button-link{text-decoration:inherit;align-items:center}.entry .entry-content a.uagb-modal-button-link:hover{color:inherit}.uagb-modal-trigger:not(img){display:flex}.uagb-modal-trigger:not(img) svg{font-size:30px;width:30px;height:30px;line-height:30px;cursor:pointer}img.uagb-modal-trigger{cursor:pointer;height:auto;max-width:100%}div.uagb-spectra-button-wrapper{line-height:1}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger{display:inline-flex;align-items:center;cursor:pointer}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg{fill:currentColor;font-style:normal;vertical-align:top;width:15px;height:15px;font-size:15px}.block-editor-block-popover.components-popover{z-index:99999999}.uagb-effect-default .uagb-modal-popup-wrap{opacity:0}.uagb-effect-default.active .uagb-modal-popup-wrap{opacity:1;transition:all .3s}
.uagb-post-grid{margin:0 auto;position:relative}.uagb-post-grid:not(.is-grid) .uagb-post__inner-wrap{background-clip:content-box !important}.uagb-post-grid .uagb-post__inner-wrap{transition:box-shadow .2s ease;overflow:hidden}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.default{margin:5px 5px 5px 0}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted{background:#444;color:#fff;border-radius:2px;flex-direction:row;align-items:flex-end;padding:6px 8px;line-height:1;margin-right:5px;margin-bottom:20px}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted a{color:#fff}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy a{text-decoration:none;color:inherit}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__image .uagb-post__image-equal-height{display:block;height:0;padding-bottom:66.67%;overflow:hidden}.uagb-post-grid .uagb-post__load-more-wrap{width:100%;position:absolute;bottom:-30px}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid.is-grid article{float:left;display:inline-block}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:nth-last-child(2){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:last-child{position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(3){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(2){position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__inner-wrap,.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a{display:block;height:0;overflow:hidden;position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-2-3{padding-bottom:66%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-9-16{padding-bottom:56.25%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-2{padding-bottom:50%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-1{padding-bottom:67%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit{padding-bottom:0;height:auto}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit img{position:unset !important}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a[class^=uagb-image-ratio-]>img{position:absolute;height:100%}.uagb-post-grid.uagb-post__items.is-masonry{display:flex;flex-wrap:wrap}.uagb-post-grid.uagb-post__items.is-carousel{display:flex;flex-wrap:wrap;width:100%;visibility:hidden}.uagb-post-grid.is-grid .uagb-post__inner-wrap{height:max-content}.uagb-post-grid.is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:auto}.uagb-post-grid.is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px;vertical-align:bottom}.uagb-post-grid.uagb-post__columns-8:not(.is-grid) article{width:12.5%}.uagb-post-grid.uagb-post__columns-7:not(.is-grid) article{width:14.28%}.uagb-post-grid.uagb-post__columns-6:not(.is-grid) article{width:16.66%}.uagb-post-grid.uagb-post__columns-5:not(.is-grid) article{width:20%}.uagb-post-grid.uagb-post__columns-4:not(.is-grid) article{width:25%}.uagb-post-grid.uagb-post__columns-3:not(.is-grid) article{width:33.33%}.uagb-post-grid.uagb-post__columns-2:not(.is-grid) article{width:50%}.uagb-post-grid.uagb-post__columns-1:not(.is-grid) article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*=columns].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%;height:auto;max-width:100%}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:0;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline,.uagb-post-grid .uagb-post__taxonomy{text-transform:capitalize;font-size:14px;font-weight:500;line-height:23px;text-decoration:none}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit;text-decoration:none}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date,.uagb-post-grid .uagb-post__comment{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child)::after,.uagb-post-grid .uagb-post__date:not(:last-child)::after,.uagb-post-grid .uagb-post__comment:not(:last-child)::after{content:"·";vertical-align:middle;align-self:center;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{word-break:break-word}.uagb-post-grid .uagb-post__inner-wrap p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block;background:none}.uagb-post-grid .uagb-post__cta .ast-outline-button{display:inline-flex}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.is-grid.uagb-post__items{display:grid}.wp-block-uagb-post-grid .uagb-post-pagination-wrap{grid-column:1/-1}.uagb-post__image-position-background .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background.uagb-post__image-enabled .uagb-post__text{color:#fff}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted,.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.default{position:relative;z-index:999}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,.5)}.uagb-slick-carousel .is-carousel{padding:0}.uagb-slick-carousel ul.slick-dots{transform:unset;position:relative;padding:unset}.uagb-slick-carousel .slick-prev:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel .slick-next:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel ul.slick-dots li button:not(:hover):not(:active):not(.has-background){background-color:unset}.uagb-post-grid[data-equal-height=yes] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;right:auto}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:auto;right:-45px}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir=rtl] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir=rtl] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid.is-grid article,.uagb-post-grid.is-masonry article,.uagb-post-grid.is-carousel article{box-sizing:border-box}@media(max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-8 article{width:12.5%}}@media(max-width: 767px){:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap{display:flex;width:100%;flex-wrap:wrap}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:flex;margin-right:4px;margin-bottom:5px}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{animation-delay:-0.16s}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-next{right:0}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:0}@keyframes sk-bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
.wp-block-uagb-restaurant-menu,.uagb-rest_menu__wrap{position:relative}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-1,.uagb-rest_menu__wrap.uagb-rm__desk-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-2,.uagb-rest_menu__wrap.uagb-rm__desk-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-3,.uagb-rest_menu__wrap.uagb-rm__desk-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-4,.uagb-rest_menu__wrap.uagb-rm__desk-column-4{grid-template-columns:auto auto auto auto}.wp-block-uagb-restaurant-menu .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__price{min-width:-moz-fit-content;min-width:fit-content}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap{position:relative;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;transition:all .2s}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price{text-align:left !important}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content{position:relative;display:table;width:100%;padding:15px;border-radius:inherit;text-align:left;word-break:break-word;overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details{display:table;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title{display:block;margin-bottom:5px;margin-block-start:0;word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price{word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator{display:-moz-flexbox;display:flex;margin-right:0;margin-bottom:10px;margin-left:0;line-height:0;-js-display:flex;width:100%;border-top-color:#b2b4b5;border-top-style:inherit;border-top-width:1px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content img{display:inline-block;box-sizing:content-box}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-1,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-1{padding-right:10px;padding-left:10px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center{display:flex;flex-direction:column}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator{align-self:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price{text-align:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price{display:table-cell;text-align:left}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__desc,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__desc{margin-bottom:15px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{width:20%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price{display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image{overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__image-content,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price{display:table-cell;text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__text-wrap,.uagb-rest_menu__wrap .uagb-rm__text-wrap{position:relative;display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price{display:block;width:100%;text-align:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details{flex-direction:unset}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center img{text-align:left}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left img{margin-right:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content{align-self:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content{align-self:flex-start}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle .uagb-rm__content img{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top .uagb-rm__content img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details{display:flex;flex-direction:row-reverse}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center img{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right img{margin-left:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details{display:inline-table}.wp-block-uagb-restaurant-menu{display:grid}@media(max-width: 976px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-4{grid-template-columns:auto auto auto auto}}@media(max-width: 767px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-4{grid-template-columns:auto auto auto auto}}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-moz-flexbox;display:flex}
.uagb_review_block{padding:25px 40px 35px 40px;margin:30px auto}.uagb_review_block a.uagb-rating-link-wrapper{color:inherit;text-decoration:none}.uagb_review_block .uagb-rating__source-wrap{padding-top:10px;padding-bottom:10px}.uagb_review_block .uagb_review_entry{display:flex;padding:10px 0 10px 0;border-bottom:1px solid #e9e9e9}.uagb_review_block .uagb_review_summary_title{margin:23px 0 13px 0;font-size:24px;font-weight:600}.uagb_review_block .uagb_review_summary .uagb_review_overall_value{flex-basis:75%}.uagb_review_block .uagb_review_average{display:inline-flex}.uagb_review_block .uagb_review_rating{text-align:right;font-size:40px}.uagb_review_block .uagb_review_average_stars{display:flex;grid-area:auto;justify-self:self-end;height:50px;line-height:60px;margin-left:10px;margin-top:25px}
.wp-block-uagb-separator{text-align:center;box-sizing:border-box;line-height:0}.wp-block-uagb-separator__inner{display:inline-block}.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner{border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner{display:flex;justify-content:center;align-items:center;margin:0 auto}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg{font-size:30px;color:#333;fill:#333;width:30px;height:30px;line-height:30px;max-width:none}.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag{word-break:initial;margin:0}
.uagb-swiper{position:relative;overflow:hidden}.uagb-slider-container{position:relative;width:100%;min-width:0;transition:box-shadow .2s ease}.uagb-slider-container .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.uagb-slider-container .swiper-button-next.swiper-button-disabled,.uagb-slider-container .swiper-button-prev.swiper-button-disabled{pointer-events:all}.uagb-slider-container .swiper-pagination.swiper-pagination-bullets{max-width:100%}.uagb-slider-container .swiper-button-prev,.uagb-slider-container .swiper-button-next{border-style:none;background:#efefef}
.uagb-social-share__outer-wrap,.uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__layout-vertical.uagb-social-share__outer-wrap,.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-top:0 !important}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-bottom:0 !important}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all .2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}@media(max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-left:0 !important}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-right:0 !important}
.wp-block-uagb-social-share .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{align-self:flex-start;margin-top:5px}
.wp-block-uagb-star-rating{display:flex}.wp-block-uagb-star-rating .uag-star-rating__title{margin:0}.wp-block-uagb-star-rating .uag-star-rating{display:flex;align-items:center}.wp-block-uagb-star-rating .uag-star{color:#ccd6df;display:inline-block;line-height:.75em}
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block;max-width:-webkit-fill-available;max-width:fill-available}.wp-block-uagb-table-of-contents li.uagb-toc__list{padding-top:10px}.wp-block-uagb-table-of-contents ul.uagb-toc__list,.wp-block-uagb-table-of-contents ol.uagb-toc__list{list-style-position:inside;padding-left:0;margin-bottom:0;margin-left:2.2em}.wp-block-uagb-table-of-contents ul.uagb-toc__list li,.wp-block-uagb-table-of-contents ol.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__title{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents svg{width:20px;height:20px;display:inline-block;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{display:flex;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:2px}ol.uagb-toc__list li.uagb-toc__list ul,ol.uagb-toc__list ul.uagb-toc__list ul{list-style-type:circle}ol.uagb-toc__list>ul,ol.uagb-toc__list>li{list-style-type:disc}.uagb-toc__scroll-top{position:fixed;right:50px;bottom:50px;display:none;padding:10px;background:#ccd0d4;cursor:pointer;font-size:1rem;line-height:1.8571428571}.uagb-toc__scroll-top svg{width:1.6em;height:.6em;margin-left:0;transform:translate(0, -20%) rotate(180deg);fill:currentColor}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}body[class*=astra] .uagb-toc__list{line-height:normal}.uagb-toc__list{margin-top:0}.wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable{list-style-type:none !important}ul.uagb-toc__list--child-of-closed-list{padding-top:0 !important}ul.uagb-toc__list--hidden-child{display:none !important}.list-open::before,.list-collapsed::before{content:"▼"/"";transition:transform .3s ease;transform:scale(0.7) translateX(-50%);display:inline-block}.list-collapsed::before{transform:scale(0.7) rotate(-90deg) translate(-84%, 6%)}span.list-open,span.list-collapsed{cursor:pointer;outline:none !important}.uagb-toc__list.transition{transition:max-height 300ms ease-in-out,padding-top 300ms ease-in-out}.uagb-toc__loader{border:2px solid #f3f3f3;border-top:2px solid #0073aa;border-radius:50%;width:20px;height:20px;animation:spin 1.1s linear infinite;display:block;position:absolute;margin-top:5px}.uagb-toc__list-hidden{opacity:0}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}[dir=rtl] .list-open::before{transform:scale(0.7) translateX(50%)}[dir=rtl] .list-collapsed::before{transform:scale(0.7) rotate(90deg) translate(84%, 6%)}[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:0;padding-right:2px;margin-left:0;margin-right:2.2em}
.uagb-tabs__wrap{display:flex}.uagb-tabs__wrap ul.uagb-tabs__panel{margin:0;list-style-type:none;display:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-center{justify-content:center}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-left{justify-content:flex-start}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right{justify-content:flex-end}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right .uagb-tab:last-child{margin-right:0}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a{position:relative;padding:6px 12px;display:inline-flex;color:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel p{margin:0}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon{vertical-align:text-top}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left{display:block;align-items:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap .uagb-tabs__body-wrap{position:relative;max-width:100%;padding:10px}.editor-styles-wrapper .uagb-editor-preview-mode-tablet.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab,.editor-styles-wrapper .uagb-editor-preview-mode-mobile.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab{display:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;align-items:center;flex-direction:row;max-width:100%;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{justify-content:space-between;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{padding:0;display:flex;flex-direction:column;flex-grow:1;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel{min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}@media(max-width: 1023px){.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel{margin-bottom:0;min-width:25%;max-width:25%;justify-content:normal}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel{margin-bottom:0}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap{border-style:none}}@media(max-width: 767px){.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile{flex-direction:column;border-style:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:row;flex-grow:1;max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tabs__body-wrap{flex-direction:row;max-width:100%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile{flex-direction:row;border-style:none}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__stack1-mobile,.uagb-tabs__wrap.uagb-tabs__stack2-mobile,.uagb-tabs__wrap.uagb-tabs__stack3-mobile,.uagb-tabs__wrap.uagb-tabs__stack4-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile{margin:auto}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;text-align:center}}.uagb-tabs__wrap .uagb-tabs__body-container.uagb-tabs-body__active{display:block}
.uagb-tabs__wrap .uagb-tabs__body-container{padding:10px 15px;display:none}
.uagb-tax-not-available{padding:10px;border:1px solid;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}.uagb-tax-link h1,.uagb-tax-link h2,.uagb-tax-link h3,.uagb-tax-link h4,.uagb-tax-link h5,.uagb-tax-link h6{margin-top:unset}
.wp-block-uagb-team{display:flex}.wp-block-uagb-team .uagb-team__content{width:100%}.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.wp-block-uagb-team .uagb-team__title,.wp-block-uagb-team span.uagb-team__title{display:block;margin-block-start:0;margin-block-end:0}.wp-block-uagb-team .uagb-team__image-wrap img{display:inline;width:inherit;height:auto !important;max-width:100%;box-sizing:content-box;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-circle img{border-radius:100%}.wp-block-uagb-team img.uagb-team__image-crop-circle{border-radius:100%}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-square img{border-radius:0}.wp-block-uagb-team img.uagb-team__image-crop-square{border-radius:0}.wp-block-uagb-team .uagb-team__social-icon-wrap ul{display:flex;list-style:none}.wp-block-uagb-team .uagb-team__social-icon a{display:block;width:20px;height:20px;color:#333;font-size:20px}.wp-block-uagb-team .uagb-team__social-icon{margin-right:20px;margin-left:0}.wp-block-uagb-team .uagb-team__social-list{padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above ul.uagb-team__social-list{display:flex;list-style:none}.wp-block-uagb-team.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-start}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-left li{margin-right:5px}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-end}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-right li{margin-left:5px}.wp-block-uagb-team .uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team .uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.wp-block-uagb-team img{display:inline;max-width:100%;width:inherit;box-sizing:content-box;border-radius:inherit}@media only screen and (max-width: 976px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-tablet{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__image-wrap,.wp-block-uagb-team.uagb-team__stack-tablet img{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-mobile{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__image-wrap{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:left}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:left}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:left}
.wp-block-uagb-testimonial.uagb-slick-carousel ul.slick-dots{margin-bottom:20px}.uagb-testimonial__wrap{box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all .2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image-content img{height:auto !important}.uagb-tm__image,.uagb-testimonial__wrap,.uagb-tm__content,.uagb-tm__text-wrap{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;border-radius:inherit;display:grid}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline;width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__author-name{font-size:30px;line-height:16px}.uagb-tm__company{font-size:15px;font-style:normal;line-height:16px;color:#888}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir=rtl] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir=rtl] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir=rtl] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{right:auto;left:-45px}[dir=rtl] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:auto;right:-45px}@media(min-width: 1025px){.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .uagb-testimonial__wrap{margin-bottom:0}}@media(max-width: 976px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:-10px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-10px}[dir=rtl] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir=rtl] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media(max-width: 768px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}.entry-content .wp-block-uagb-testimonial .is-carousel ul.slick-dots{padding:unset}
.spectra-support-container{position:absolute;bottom:0;right:0;padding:8px;border:.5px solid #d6cdff;border-radius:5px;background-color:#f3f0ff;display:flex;justify-content:center;align-items:center;gap:8px;z-index:1000000}.spectra-support-container .spectra-support-icon{height:100%}.spectra-support-container .spectra-support-text{font-size:13px;font-weight:400;font-family:Figtree,sans-serif;color:#111827}
[class*=uagb-columns__columns-],.uagb-columns__inner-wrap{position:relative;margin-left:auto;margin-right:auto;z-index:2;display:flex;flex-wrap:nowrap;width:100%}.uagb-columns__wrap{position:relative;margin-left:auto;margin-right:auto}.uagb-columns__wrap .uagb-columns__overlay,.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{overflow:hidden;z-index:0;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative=false].uagb-columns__shape-bottom,.uagb-columns__wrap .uagb-columns__shape[data-negative=true].uagb-columns__shape-top{transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;transform-origin:center;transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{display:flex;flex-direction:column;justify-content:center}.uagb-columns__valign-top .uagb-column__wrap{align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{display:flex;flex-direction:column;justify-content:flex-end}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:0}.uagb-columns__gap-default>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:10px}.uagb-columns__gap-narrow>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:5px}.uagb-columns__gap-extended>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:15px}.uagb-columns__gap-wide>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:20px}.uagb-columns__gap-wider>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:30px}@media(max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet{display:block}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-tablet.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media(max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile{display:block}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-mobile.uagb-columns__reverse-mobile .uagb-columns__inner-wrap,.uagb-columns__stack-mobile.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__stack-tablet.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media(max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{position:relative;z-index:2;margin-right:auto;margin-left:auto}.uagb-section__wrap .uagb-section__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.uagb-section__wrap .uagb-section__video-wrap{position:absolute;top:0;left:0;z-index:0;width:100%;height:100%;transition:opacity 1s;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{display:inline-block;vertical-align:baseline;width:100%;height:100%;max-width:100%;margin:0;background-size:cover;border:none;object-fit:cover;line-height:1;-o-object-fit:cover}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
.uagb-column__wrap,.uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;width:100%;z-index:2}.uagb-column__wrap{position:relative;overflow:visible}.uagb-column__wrap>*{z-index:1;width:100%;position:relative}.uagb-column__wrap .aligncenter{display:block;text-align:center}.uagb-column__wrap .aligncenter figcaption{display:block;text-align:center}.uagb-column__wrap .alignright{display:block;text-align:right}.uagb-column__wrap .alignright figcaption{display:block;text-align:right}.uagb-column__wrap .wp-block-image{width:100%}.uagb-column__wrap.uagb-column__align-left{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__video-wrap,.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute;border-radius:inherit}.uagb-column__wrap .uagb-column__video-wrap{overflow:hidden;z-index:0;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media(max-width: 976px){.uagb-column__align-tablet-left{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right{margin-left:auto;margin-right:0}}@media(max-width: 767px){.uagb-column__align-mobile-left{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right{margin-left:auto;margin-right:0}}@media(max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
.wp-block-uagb-cf7-styler input[type=text],.wp-block-uagb-cf7-styler input[type=password],.wp-block-uagb-cf7-styler input[type=date],.wp-block-uagb-cf7-styler input[type=datetime],.wp-block-uagb-cf7-styler input[type=datetime-local],.wp-block-uagb-cf7-styler input[type=email],.wp-block-uagb-cf7-styler input[type=month],.wp-block-uagb-cf7-styler input[type=number],.wp-block-uagb-cf7-styler input[type=search],.wp-block-uagb-cf7-styler input[type=tel],.wp-block-uagb-cf7-styler input[type=time],.wp-block-uagb-cf7-styler input[type=url],.wp-block-uagb-cf7-styler input[type=week]{min-height:30px;line-height:30px}.wp-block-uagb-cf7-styler textarea{resize:vertical}.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 ::after,.wp-block-uagb-cf7-styler .wpcf7 ::before{box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{display:inline-block;vertical-align:middle;width:15px;height:15px;margin-right:10px;border-color:#eaeaea;border-style:solid;border-width:1px 1px 1px 1px;text-align:center;content:""}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span::before{line-height:1.2;content:"✔"}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span::before{font-size:-webkit-calc(12px / 1.2);font-size:10px}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type=radio]:checked+span::before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type=radio]:checked+span::before{box-shadow:inset 0 0 0 4px #fafafa;background-color:#545454}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:flex;width:auto;padding:10px 25px;background:transparent;border-color:#333;border-width:1px;line-height:16px;-js-display:flex}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple=multiple]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:block;padding:.1em .5em;margin-top:5px;border-radius:2px;font-size:.9em;-webkit-border-radius:2px;width:-moz-fit-content;width:fit-content;margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .wpcf7 input[type=number]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}.wp-block-uagb-cf7-styler .wpcf7-spinner{margin-top:25px}@media(min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p{-js-display:flex;display:flex;flex-wrap:wrap;width:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span{flex:1;flex-grow:1}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-1{padding-right:15px;padding-left:0}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-3{padding-right:0;padding-left:15px}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}@media(min-width: 780px){.uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}@media(max-width: 780px){.uagb-cf7-styler__btn-align-tablet-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-tablet-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-tablet-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}}@media(min-width: 641px)and (max-width: 780px){.uagb-cf7-styler__btn-align-tablet-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}@media(max-width: 641px){.uagb-cf7-styler__btn-align-mobile-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-mobile-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;height:auto;padding:0;box-shadow:none;background:#fff;border:1px solid #aaa;border-radius:0;color:#444;text-decoration:none;white-space:nowrap;overflow:hidden;-webkit-border-radius:0;-webkit-box-shadow:none}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom::after{position:absolute;top:45%;right:.5em;z-index:5;font-family:FontAwesome,serif !important;font-size:.7em;line-height:1;transform:translateY(-45%);content:"";pointer-events:none;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%)}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]:checked+label::before{box-shadow:inset 0 0 0 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]:checked+label::before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.wp-block-uagb-gf-styler .gform_wrapper .gform_fields,.wp-block-uagb-gf-styler .gform_wrapper .gform_footer{pointer-events:auto}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=checkbox]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=radio]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=radio]+label::before{box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{padding:10px 20px;border-radius:2px;font-size:13px;-webkit-border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:8px 10px;font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{padding:6px 10px;font-size:13px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:10px;height:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(10px / 1.2);font-size:8.3333333333px}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{padding:12px 24px;border-radius:3px;font-size:15px;-webkit-border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:12px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{padding:10px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:12px;height:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(12px / 1.2);font-size:10px}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{padding:15px 30px;border-radius:4px;font-size:16px;-webkit-border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:15px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{padding:13px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:15px;height:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(15px / 1.2);font-size:12.5px}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{padding:20px 40px;border-radius:5px;font-size:18px;-webkit-border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:20px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{padding:18px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:20px;height:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(20px / 1.2);font-size:16.6666666667px}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{padding:25px 50px;border-radius:6px;font-size:20px;-webkit-border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:25px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{padding:23px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:25px;height:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]:checked+label::before{font-size:-webkit-calc(25px / 1.2);font-size:20.8333333333px}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){width:100%;padding:0 0 0 0;margin-right:0;margin-left:0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before{border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:flex;width:auto;-js-display:flex}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type=radio],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type=radio]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;content:""}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]:checked+label::before{line-height:1.2;content:"✔"}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;width:100%;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type=text],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type=text]{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{width:100%;margin-bottom:0}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_checkbox .gfield_checkbox .gchoice,.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_radio .gfield_radio .gchoice{margin-bottom:5px;line-height:0}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_select select{background:#fafafa url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:0}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:0;margin-left:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:0}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:0;margin-left:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media(min-width: 780px){.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media(max-width: 780px){.uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}}@media(min-width: 641px)and (max-width: 780px){.uagb-gf-styler__btn-align-tablet-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100% !important}}@media(max-width: 641px){.uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}.uagb-gf-styler__btn-align-mobile-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100% !important}}
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{width:100%;min-height:20px}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{border:none;border-radius:0;color:#fff}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden;max-width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input::-webkit-input-placeholder{overflow:unset}
PK�][3:��n�n�3ultimate-addons-for-gutenberg/dist/blocks.style.cssnu�[���.uagb-popup-builder{display:none;opacity:0;position:fixed;top:0;left:0;width:100vw;height:100vh;max-width:100vw;max-height:100vh;z-index:999999999;overflow:hidden;transition-property:opacity;transition-duration:250ms}.uagb-popup-builder__banner--pusher{position:relative}.uagb-popup-builder__wrapper{position:relative;box-sizing:border-box}.uagb-popup-builder__wrapper--banner{width:100%}.uagb-popup-builder__container{display:flex;box-sizing:border-box;width:100%;height:100%;flex-direction:column;overflow-x:hidden;overflow-y:auto;transition-property:box-shadow,border-color;transition-duration:250ms}.uagb-popup-builder__container .uagb-is-root-container{width:100%}.uagb-popup-builder__close{position:absolute;top:0;z-index:999999999}.uagb-popup-builder button.uagb-popup-builder__close{border:none;background:transparent;background-color:transparent;padding:0}.uagb-popup-builder button.uagb-popup-builder__close svg{transition-property:fill;transition-duration:250ms}.uagb-popup-builder__body--overflow-hidden{overflow:hidden}
.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{transform-origin:center;transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}
.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all .3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow .2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:.2;background:rgba(0,0,0,.5);transition:opacity .35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform .35s,opacity .35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform .4s,opacity .4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform .45s,opacity .45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform .35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform .35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}
.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:inline-flex;width:100%}.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}@media(max-width: 976px){.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}@media(max-width: 767px){.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}
.uagb-buttons__outer-wrap .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center;transition:box-shadow .2s ease}.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
.uagb-ifb-content>svg *{transition:all .2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir=rtl] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir=rtl] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir=rtl] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir=rtl] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir=rtl] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir=rtl] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}
.uagb-cta__outer-wrap .uagb-cta__content,.uagb-cta__outer-wrap a.uagb-cta__block-link span,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper,.uagb-cta__outer-wrap .uagb-cta-typeof-button,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta-with-svg{display:inline-block}.uagb-cta__outer-wrap{display:flex;justify-content:space-between}.wp-block-uagb-call-to-action .uagb-cta__buttons{display:inline-flex}.wp-block-uagb-call-to-action .wp-block-button__link,.wp-block-uagb-call-to-action .ast-outline-button{fill:currentColor;justify-content:center}.uagb-cta__button-link-wrapper,.uagb-cta-second__button{display:inline-flex;align-items:center;word-break:keep-all;width:100%}.uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__content-right .uagb-cta__button-wrapper{float:right}.uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}a.uagb-cta__block-link,.entry .entry-content a.uagb-cta__block-link,a.uagb-cta__block-link-wrap,.entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}a.uagb-cta__block-link:hover,.entry .entry-content a.uagb-cta__block-link:hover,a.uagb-cta__block-link-wrap:hover,.entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__block-link-icon,.uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__block{position:relative}.uagb-cta-typeof-button{line-height:1;text-align:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__block,.uagb-cta__content,.uagb-cta__left-right-wrap{z-index:1}.uagb-cta__block-link{cursor:pointer}.uagb-cta__content-right .uagb-cta__block-link{float:right;padding:10px 14px}a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__content p:empty{display:none}.uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta-with-svg{height:14px;width:14px;line-height:14px;vertical-align:middle}.uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__button-link-wrapper svg{width:20px;height:20px}.uagb-cta__align-button-after{margin-left:5px}.uagb-cta__align-button-before{margin-right:5px}.uagb-cta__block-link i{font-style:normal}a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.wp-block-uagb-call-to-action{position:relative}.wp-block-uagb-call-to-action a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet,.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile,.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}.uagb-cta__desc p:last-child{margin-bottom:0}
.wp-block-uagb-icon svg{width:30px}.uagb-icon-wrapper .uagb-svg-wrapper{transition:box-shadow .2s ease}
.wp-block-uagb-countdown{display:flex;justify-content:center;text-align:center}.wp-block-uagb-countdown .wp-block-uagb-countdown__box{transition:box-shadow .2s ease}.wp-block-uagb-countdown__box{position:relative;display:flex;flex-direction:column;width:155px;height:155px;aspect-ratio:1;justify-content:center}@media(max-width: 976px){.wp-block-uagb-countdown__box{width:100px;height:100px}}@media(max-width: 767px){.wp-block-uagb-countdown__box{width:65px;height:65px}}.wp-block-uagb-countdown__time{font-size:52px}@media(max-width: 976px){.wp-block-uagb-countdown__time{font-size:32px}}.wp-block-uagb-countdown__label{font-size:14px}@media(max-width: 976px){.wp-block-uagb-countdown__label{font-size:12px}}.wp-block-uagb-countdown .wp-block-uagb-countdown-innerblocks{text-align:initial}html:not([dir=rtl]) .wp-block-uagb-countdown__box:not(:last-child){margin-right:38px}html:not([dir=rtl]) .wp-block-uagb-countdown__box:not(:last-child) .wp-block-uagb-countdown__time::after{position:absolute;right:0}html:not([dir=rtl]) .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds .wp-block-uagb-countdown__time-seconds::after{display:none}html:not([dir=rtl]) .wp-block-uagb-countdown>.wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds:not(:last-child){margin-right:unset}.wp-block-uagb-countdown-innerblocks{display:none}html[dir=rtl] .wp-block-uagb-countdown__box:not(:first-child){margin-right:38px}html[dir=rtl] .wp-block-uagb-countdown__box:not(:first-child) .wp-block-uagb-countdown__time::before{position:absolute;right:0}body[class*=astra] .wp-block-uagb-countdown{line-height:normal}
.wp-block-uagb-blockquote{padding:0;margin:0 auto;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{display:block;font-style:normal}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{display:inline-flex;float:unset}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap .uagb-blockquote__icon{padding:0;margin-right:0;margin-bottom:0}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid .5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:.2s;-o-transition:.2s}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation blockquote.uagb-blockquote{vertical-align:baseline;padding:0;margin:0;background:transparent;border:0 none;outline:0;font-size:100%;font-style:normal;quotes:none}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon{position:relative;display:inline-block;z-index:1;padding:10px;margin-right:10px;border-radius:100%;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{display:inherit;width:inherit;height:inherit}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2.uagb-blockquote__align-right .uagb-blockquote__icon{display:inline-block;float:right}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_1 .uagb-blockquote__icon{display:inline-flex;float:unset}.wp-block-uagb-blockquote blockquote.uagb-blockquote{padding:0;margin:0}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:flex;justify-content:flex-start;-js-display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote footer{display:flex;justify-content:space-between;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify}.wp-block-uagb-blockquote .uagb-blockquote a{box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{position:relative;display:flex;align-self:center;width:max-content;padding:0;background-color:transparent;color:#1da1f2;line-height:1;transition:.2s;-webkit-transition:.2s;-o-transition:.2s;-webkit-align-self:flex-end;-ms-flex-item-align:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{align-self:center;vertical-align:middle;width:15px;height:15px;fill:#fff}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid .5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:.2s;-o-transition:.2s}.wp-block-uagb-blockquote.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{right:-0.8em;left:auto;transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;align-self:center;margin:0 auto;text-align:center;-ms-flex-item-align:center}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:flex;flex-direction:row;align-self:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap img{width:50px;height:50px;border-radius:100%;-o-object-fit:cover;object-fit:cover}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column;width:100%;align-items:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right;align-items:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{flex-direction:row-reverse;justify-content:flex-end}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap{align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{align-self:flex-start}}
.uagb-timeline__outer-wrap{position:relative}.uagb-timeline__outer-wrap .uagb-timeline__field{position:relative;display:flex;align-items:flex-start;margin-bottom:inherit;color:inherit;font-size:inherit}.uagb-timeline__outer-wrap .uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__outer-wrap .uagb-timeline__field a{margin-bottom:inherit;text-decoration:none}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image img{display:inline-block;box-sizing:content-box;height:auto;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__author-link{text-transform:capitalize}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__link{display:inline-block}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image a{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__outer-wrap .uagb-timeline__line{position:absolute;transform:translateX(-50%);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);width:3px;background-color:#eee}.uagb-timeline__outer-wrap .uagb-timeline__line .uagb-timeline__line__inner{width:100%;background-color:#0693e3}.uagb-timeline__outer-wrap svg{display:inline-block;vertical-align:middle;font-size:16px;font-style:normal;line-height:16px}.uagb-timeline__outer-wrap .uagb-timeline__field:hover .uagb-timeline__marker{transition:all .2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__marker{position:relative;display:flex;z-index:1;justify-content:center;align-items:center;min-width:3em;min-height:3em;background-color:#eee;border-radius:999px;line-height:48px;transition:all .2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__year{position:relative;display:flex}.uagb-timeline__outer-wrap .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__field{align-items:center}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__field{align-items:flex-end}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__outer-wrap .uagb-timeline__date .uagb-timeline__inner-date-new{margin:0;white-space:nowrap}.uagb-timeline__outer-wrap .in-view i.uagb-timeline__in-view-icon{transition:background .25s ease-out .25s,width .25s ease-in-out,height .25s ease-in-out,color .25s ease-in-out,font-size .25s ease-out}.uagb-timeline__outer-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap p:empty{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__line{position:absolute;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}.uagb-content{word-break:break-word}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0}.uagb-timeline__center-block{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;top:50%;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:13px solid #eee;transform:translateY(-50%);content:"";-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:1}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__center-block .uagb-timeline__field.uagb-timeline__right{flex-direction:row-reverse}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{display:block;position:relative;flex-grow:1;flex-basis:50%;max-width:100%}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{position:absolute;top:0;right:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;left:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__line{right:auto;left:50%}.uagb-timeline__right-block .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center;margin-left:10px}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;right:0;width:10px;height:40px}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1;margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0}.uagb-timeline__left-block{text-align:left}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__left-block .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__left-block .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:14px}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__left-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;width:10px;height:40px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-right:13px solid #eee;border-bottom:12px solid transparent;content:""}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background .2s ease-in-out}.uagb-timeline__arrow::after{transition:border-color .2s ease-in-out}.uagb-timeline__date-new{transition:color .2s ease-in-out}.uagb-timeline__day-left .uagb-timeline__arrow::after{position:absolute;left:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow::after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__icon{position:relative;z-index:1;vertical-align:middle;width:100px;height:100px;border-radius:50%;text-align:center;line-height:100px;-webkit-border-radius:50%}.uagb-timeline__left{text-align:left}.uagb-timeline__right{text-align:right}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__arrow{height:3em}.uagb-timeline__right-block .uagb-timeline__line{right:1.5em}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:auto;left:16px}.rtl .uagb-timeline__left-block .uagb-timeline__field{flex-direction:row-reverse}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__right-block .uagb-timeline__line{right:auto;left:1.5em}.rtl .uagb-timeline__right-block .uagb-timeline__field{flex-direction:row}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee;right:-17px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:17.5px;left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media(max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-ms-flex-negative:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-ms-flex-positive:1;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content .uagb-timeline__heading{margin-top:unset}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content p.uagb-timeline-desc-content{margin-bottom:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field{display:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field .uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%)}.wp-block-uagb-post-timeline .uagb-timeline__link_parent .uagb-timeline__link.wp-block-button__link{width:auto}
.uagb-timeline__events-inner-new{background-color:#eee;border-radius:2px}.wp-block-uagb-content-timeline svg{fill:#333;color:#333;font-size:15px;width:15px}.uagb-timeline__field{margin-bottom:15px}
.wp-block-uagb-counter .wp-block-uagb-counter__icon,.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap{display:inline-block;line-height:0}.wp-block-uagb-counter--number .wp-block-uagb-counter__number{font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--number .wp-block-uagb-counter__icon{margin-bottom:10px}.wp-block-uagb-counter--bars{display:flex;flex-direction:column}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{width:100%;background-color:#eaeaea}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{width:0%;min-height:5px;text-align:right;line-height:1;white-space:nowrap;overflow:hidden;background:#007cba;display:flex;justify-content:flex-end;align-items:center}.rtl .wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{flex-direction:row-reverse;justify-content:flex-start}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number>:last-child{margin-right:5px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__title{margin-top:15px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__number{color:#fff;padding-top:5px;padding-bottom:5px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{position:relative;display:inline-block;width:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container .wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg{pointer-events:none}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg{transform:rotate(-90deg);width:100%;height:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg circle{stroke:#eaeaea;stroke-width:1em;fill:transparent}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg .uagb-counter-circle__progress{stroke:#007cba}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container__content{position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;flex-direction:column;z-index:1}.wp-block-uagb-counter--circle .wp-block-uagb-counter__number{margin-top:5px;font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--circle .wp-block-uagb-counter__title{margin-top:5px}.wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter__title{margin-top:10px;margin-bottom:17px;font-size:16px}body[class*=astra] .wp-block-uagb-counter__title,body[class*=astra] .wp-block-uagb-counter__number{line-height:normal}
.wp-block-uagb-faq{width:100%}.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.wp-block-uagb-faq .uagb-faq-content{margin-bottom:0}.wp-block-uagb-faq .uagb-faq-content p{margin:auto}.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-item{height:100%}body[class*=astra] .uagb-faq-questions{line-height:normal}.uagb-faq-item{overflow:hidden}
.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0;margin-bottom:0}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:flex;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
.uagb-forms__outer-wrap .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-input::placeholder,.uagb-forms__outer-wrap .uagb-forms-input-label,.uagb-forms__outer-wrap .uagb-forms-main-submit-button,.uagb-forms__outer-wrap .uagb-forms-success-message,.uagb-forms__outer-wrap .uagb-forms-failed-message{transition-property:color,background-color,border-color;transition-duration:.15s}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-main-form input[type=text]{min-height:0 !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input::-webkit-input-placeholder,.uagb-forms__outer-wrap .uagb-forms-main-form input[type=text]::-webkit-input-placeholder{overflow:unset}.uagb-forms__outer-wrap .uagb-forms-main-form input:not([type=checkbox]):not([type=radio]):not([type=file]),.uagb-forms__outer-wrap .uagb-forms-main-form textarea,.uagb-forms__outer-wrap .uagb-forms-main-form select{width:100%;box-sizing:border-box}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-checkbox-wrap .uagb-form-checkbox-option input.uagb-inner-input-view{width:33%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-forms-phone-input{width:75% !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%;justify-content:space-between}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .required::after{color:red;content:" *"}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-form-hidden-data{display:none}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link{width:auto}.uagb-forms__outer-wrap .uagb-forms-submit-message-hide{display:none}.uagb-forms__outer-wrap .uagb-forms-success-message{padding:20px 20px}.uagb-forms__outer-wrap .uagb-forms-failed-message{padding:20px 20px}.uagb-forms__outer-wrap span.components-spinner{float:none}.uagb-forms__outer-wrap .uagb-forms-input.uagb-form-phone-country{background-color:#fff}.uagb-forms__outer-wrap .uag-col-2-wrap{display:grid;grid-template-columns:1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-3-wrap{display:grid;grid-template-columns:1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-4-wrap{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uagb-switch{position:relative;display:inline-block;width:50px;height:25px}.uagb-forms__outer-wrap .uagb-switch input{width:0;height:0;opacity:0}.uagb-forms__outer-wrap .uagb-slider{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#fff;cursor:pointer;transition:.4s;-webkit-transition:.4s}.uagb-forms__outer-wrap .uagb-switch .uagb-slider::before{position:absolute;width:20px;height:20px;background-color:#000;transition:.4s;content:"";-webkit-transition:.4s}.uagb-forms__outer-wrap .uagb-switch input:checked+.uagb-slider::before{background-color:#fff}.uagb-forms__outer-wrap .uagb-slider.round::before{border-radius:50% !important}.uagb-forms-select-box,.uagb-form-phone-country,.uagb-forms-phone-wrap .uagb-forms-phone-input{height:auto;-webkit-appearance:none;appearance:none}.uagb-forms-radio-wrap input[type=radio]:checked+label::before{line-height:1.2;content:" "}.uagb-forms-radio-wrap input[type=radio]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:""}.uagb-forms-radio-wrap input[type=radio].round+label::before{border-radius:100% !important}select::after,select::before{padding:10px}.uagb-forms-radio-wrap input[type=radio],.uagb-forms-checkbox-wrap input[type=checkbox],.uagb-forms-accept-wrap input[type=checkbox]{opacity:0}.uagb-forms-checkbox-wrap input[type=checkbox]:checked+label::before,.uagb-forms-accept-wrap input[type=checkbox]:checked+label::before{line-height:1.2;content:"✔"}.uagb-forms-checkbox-wrap input[type=checkbox]+label::before,.uagb-forms-accept-wrap input[type=checkbox]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:" "}@media only screen and (max-width: 767px){.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%}}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-20 .uagb-forms-main-form{column-gap:20px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-15 .uagb-forms-main-form{column-gap:15px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-10 .uagb-forms-main-form{column-gap:10px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-5 .uagb-forms-main-form{column-gap:5px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-flex-start .uagb-forms-main-form{align-items:flex-start}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-center .uagb-forms-main-form{align-items:center}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form{display:flex;flex-wrap:wrap;margin:0 -5px;position:relative;text-align:left}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-80{width:80%}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}@media(max-width: 767px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}
.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
.uagb-howto__cost-wrap{display:flex;align-items:center}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:flex;align-items:center}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}.uagb-step-link-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;box-shadow:none;text-decoration:none;color:inherit}.uagb-how-to-step-wrap{position:relative;margin-top:25px}.uagb-step-image-content-wrap.uag-image-position-left-title{display:flex}.uagb-step-image-content-wrap.uag-image-position-left-title .uagb-how-to-step-image{margin-right:20px}.uagb-step-image-content-wrap.uag-image-position-right-title{display:flex;flex-direction:row-reverse}.uagb-step-image-content-wrap.uag-image-position-right-title .uagb-how-to-step-image{margin-left:20px}.uagb-step-image-content-wrap.uag-image-position-above-title{display:block}.uagb-step-image-content-wrap.uag-image-position-above-title .uagb-how-to-step-image{margin-bottom:20px}.uagb-step-image-content-wrap .uagb-step-link{text-decoration:none !important}.uagb-step-image-content-wrap .uagb-step-link:hover{text-decoration:none !important}.uagb-howto-req-steps-text,.uagb-howto-req-tools-text,.uagb-howto-req-materials-text{margin-block-start:1.33em;margin-block-end:1.33em}.uagb-how-to-main-wrap{width:100%}.uagb-how-to-main-wrap .uagb-howto__source-image{height:auto;max-width:100%}
.uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.wp-block-uagb-icon-list-child{padding:0;transition:all .2s;display:inline-flex;color:#3a3a3a;align-items:center;text-decoration:none;box-shadow:none}.wp-block-uagb-icon-list-child span.uagb-icon-list__source-wrap{display:block;align-items:center}.uagb-icon-list__source-wrap svg{display:block}.uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}
.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}.wp-block-uagb-icon-list-child .uagb-icon-list__label{word-break:break-word}
.wp-block-uagb-image-gallery{display:-ms-flex;display:-moz-flex;display:flex;justify-content:center;flex-direction:column}.spectra-image-gallery *{box-sizing:border-box}.spectra-image-gallery__layout--grid{display:-moz-grid;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--grid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--isogrid-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--isogrid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--masonry-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--carousel{width:100%}.spectra-image-gallery__layout--carousel .slick-initialized{visibility:visible}.spectra-image-gallery__layout--carousel .slick-track{display:flex;align-items:center}.spectra-image-gallery__layout--carousel .slick-dots{padding:0;position:relative !important}.spectra-image-gallery__layout--carousel .slick-dots li button{padding:0}.spectra-image-gallery__layout--carousel .uagb-slick-carousel{padding:0}.spectra-image-gallery__layout--tiled{position:relative;display:grid;grid-auto-flow:dense;min-height:0;min-width:0}.spectra-image-gallery__layout--tiled-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__media{position:relative;overflow:hidden;transition:box-shadow .25s}.spectra-image-gallery__media--flagged{cursor:not-allowed}.spectra-image-gallery__media--clickable{cursor:pointer}.spectra-image-gallery__media--grid{aspect-ratio:1}.spectra-image-gallery__media--masonry{width:100%}.spectra-image-gallery__media--carousel{width:100%}.spectra-image-gallery__media--tiled{aspect-ratio:1;display:flex;align-items:center;justify-content:center}.spectra-image-gallery__media--tiled-wide,.spectra-image-gallery__media--tiled-tall{aspect-ratio:unset;width:100%;height:100%}.spectra-image-gallery__media--tiled picture{width:100%;height:100%}.spectra-image-gallery__media-sizer{aspect-ratio:1}.spectra-image-gallery__media-wrapper{position:relative}.spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__control-focus{opacity:.25}.spectra-image-gallery__media-thumbnail{vertical-align:middle;transition:filter .5s,transform .5s}.spectra-image-gallery__media-thumbnail--grid{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail--masonry{width:100%}.spectra-image-gallery__media-thumbnail--carousel{width:100%}.spectra-image-gallery__media-thumbnail--tiled{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail-blurrer{position:absolute;top:0;left:0;width:100% !important;height:100% !important;transition:box-shadow .25s,-webkit-backdrop-filter .5s;transition:box-shadow .25s,backdrop-filter .5s;transition:box-shadow .25s,backdrop-filter .5s,-webkit-backdrop-filter .5s}.spectra-image-gallery__media-thumbnail-caption{transition-property:color,background-color,border-color;transition-duration:.25s}.spectra-image-gallery__media-thumbnail-caption--overlay{display:-ms-flex;display:-moz-flex;display:flex;width:100%;height:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption--bar-inside{width:100%;overflow:hidden;padding:1em;max-height:90%}.spectra-image-gallery__media-thumbnail-caption--bar-outside{width:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption-wrapper{transition:background-color .25s}.spectra-image-gallery__media-thumbnail-caption-wrapper--overlay{position:absolute;top:0;left:0;width:100%;height:100%}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-inside{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;overflow:hidden}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-outside{position:relative;width:100%;overflow:hidden}.spectra-image-gallery__control-wrapper{display:-ms-flex;display:-moz-flex;display:flex;width:100%;justify-content:center}.spectra-image-gallery__control-arrows{display:-ms-flex;display:-moz-flex;display:flex;align-items:center;background-color:transparent;padding:0;cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-arrows:disabled{opacity:.25;cursor:initial}.spectra-image-gallery__control-arrows:focus{background-color:transparent}.spectra-image-gallery__control-arrows--grid{border:none}.spectra-image-gallery__control-arrows svg{transition-duration:.25s}.spectra-image-gallery__control-dots{display:-ms-flex;display:-moz-flex;display:flex;align-items:center;padding:0 !important;margin:0 !important}.spectra-image-gallery__control-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0;padding:0;cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-dots li:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__control-dots li button{font-size:0;line-height:0;display:block;box-sizing:border-box;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent;transition-duration:.25s}.spectra-image-gallery__control-dots li button::before{font-family:none;font-size:30px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transition-duration:.25s}.spectra-image-gallery__control-dots li.spectra-image-gallery__control-dot--active button::before{opacity:.75}.spectra-image-gallery__control-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.spectra-image-gallery__control-loader div{border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--1{animation-delay:-0.32s}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--2{animation-delay:-0.16s}.spectra-image-gallery__control-button{cursor:pointer;transition-duration:.25s}.spectra-image-gallery__control-button.disabled{opacity:.25;pointer-events:none}.spectra-image-gallery__control-focus{cursor:pointer;position:absolute;box-sizing:content-box !important;top:0;right:0;width:1.5em;height:1.5em;padding:.5em;background-color:transparent;border:none;opacity:0;transition-property:opacity;transition-duration:.25s}.spectra-image-gallery__control-focus:hover{opacity:1 !important}.spectra-image-gallery__control-focus svg{fill:#fff;filter:drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.5))}.spectra-image-gallery__control-lightbox{position:fixed;top:0;left:0;width:100vw !important;max-width:100vw !important;height:100vh !important;max-height:100vh !important;display:flex;flex-direction:column;opacity:0;transition-property:opacity;z-index:999999999 !important;outline:none;margin-block-start:0;transition-duration:.25s}.spectra-image-gallery__control-lightbox--main{width:100%;flex:1}.spectra-image-gallery__control-lightbox--main .swiper-slide{height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.spectra-image-gallery__control-lightbox--main .swiper-slide img{display:block;max-height:70%;max-width:80%}.spectra-image-gallery__control-lightbox--caption{position:absolute;bottom:0;left:0;width:100%;display:flex;align-items:center;justify-content:center;text-align:center}.spectra-image-gallery__control-lightbox--editor-link{transition-property:color;transition-duration:.25s}.spectra-image-gallery__control-lightbox--thumbnails{width:75%}.spectra-image-gallery__control-lightbox--thumbnails-wrapper{width:100%}.spectra-image-gallery__control-lightbox--thumbnails .swiper-wrapper{height:150px}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide{cursor:pointer;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:.5;transform:scale(75%);transition-property:opacity,transform;transition-duration:.25s}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide-active{opacity:1;transform:scale(100%)}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide img{border-radius:3px}.spectra-image-gallery__control-lightbox--count{position:absolute;z-index:999}.spectra-image-gallery__control-lightbox--close{position:absolute;cursor:pointer;padding:0;background-color:transparent;border:none;outline:0;line-height:0;z-index:999;transition:transform 500ms}.spectra-image-gallery__control-lightbox--close:hover,.spectra-image-gallery__control-lightbox--close:focus,.spectra-image-gallery__control-lightbox--close:focus-visible{background-color:transparent;transform:scale(1.25)}.spectra-image-gallery__iso-ref-wrapper{-ms-overflow-style:none;scrollbar-width:none}.spectra-image-gallery__iso-ref-wrapper::-webkit-scrollbar{display:none}@media(max-width: 976px){.spectra-image-gallery__layout--grid-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}@media(max-width: 767px){.spectra-image-gallery__layout--grid-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}.entry-content .wp-block-uagb-image-gallery .uagb-image-gallery__link{text-decoration:none}body .wp-block-post-content>.wp-block-uagb-image-gallery+.spectra-image-gallery__control-lightbox{margin-block-start:0}@keyframes sk-bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{width:100%;position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;width:-webkit-fill-available;width:fill-available;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{margin-top:-3px;margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:last-child{margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:first-child{margin-top:0 !important}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable>svg{position:absolute;cursor:pointer;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable button[type=button]{position:absolute;cursor:pointer;opacity:.8;padding:0;background:none;transition:.3s ease}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right{text-align:right}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right svg{left:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right button[type=button]{left:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center{text-align:center}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center button[type=button]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left{text-align:left}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left button[type=button]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}
.wp-block-uagb-marketing-button{display:flex}.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin-bottom:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1;display:inline-block;position:relative;transition:all .2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__link.wp-block-button__link{width:auto}.wp-block-uagb-marketing-button svg{fill:currentColor;width:20px;height:20px;z-index:1;vertical-align:middle}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button svg{display:inline;vertical-align:middle}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link{justify-content:center;text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__link{justify-content:flex-start;text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__link{justify-content:flex-end;text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after svg{order:2}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__wrap{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:center}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:flex;align-items:self-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap{order:2}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none;display:inline-block}
body.hide-scroll{overflow:hidden}body .uagb-modal-popup-wrap .wp-block{max-width:none !important;margin:0 !important}.uagb-modal-popup{visibility:hidden;position:fixed}.uagb-modal-popup.active{top:0;bottom:0;justify-content:center;align-items:center;background:rgba(0,0,0,.7);left:0;right:0;display:flex;visibility:visible}.uagb-modal-popup.active .uagb-modal-popup-close{opacity:1;display:flex;align-items:center;position:absolute;text-align:center;cursor:pointer;fill:#fff}.uagb-modal-popup.active .uagb-modal-popup-close svg{transition-property:filter,transform;transition-duration:250ms}.uagb-modal-popup.active .uagb-modal-popup-close:focus svg{transform:scale(1.2)}.uagb-modal-popup .uagb-modal-popup-close{display:none;border:none;background:transparent;padding:0}.uagb-modal-popup .uagb-modal-popup-content{padding:35px 35px;overflow-x:hidden;overflow-y:overlay;height:100%}.uagb-modal-popup .uagb-modal-popup-wrap{display:flex;flex-direction:column;justify-content:flex-start;width:700px;height:450px;max-width:100%;box-sizing:border-box;background:#fff;color:#333;position:relative}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar{width:5px}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar-thumb{box-shadow:inset 0 0 6px rgba(0,0,0,.3);border-radius:100px}.wp-block-uagb-modal{width:100%}.entry .entry-content a.uagb-modal-button-link{text-decoration:inherit;align-items:center}.entry .entry-content a.uagb-modal-button-link:hover{color:inherit}.uagb-modal-trigger:not(img){display:flex}.uagb-modal-trigger:not(img) svg{font-size:30px;width:30px;height:30px;line-height:30px;cursor:pointer}img.uagb-modal-trigger{cursor:pointer;height:auto;max-width:100%}div.uagb-spectra-button-wrapper{line-height:1}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger{display:inline-flex;align-items:center;cursor:pointer}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg{fill:currentColor;font-style:normal;vertical-align:top;width:15px;height:15px;font-size:15px}.block-editor-block-popover.components-popover{z-index:99999999}.uagb-effect-default .uagb-modal-popup-wrap{opacity:0}.uagb-effect-default.active .uagb-modal-popup-wrap{opacity:1;transition:all .3s}
.uagb-post-grid{margin:0 auto;position:relative}.uagb-post-grid:not(.is-grid) .uagb-post__inner-wrap{background-clip:content-box !important}.uagb-post-grid .uagb-post__inner-wrap{transition:box-shadow .2s ease;overflow:hidden}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.default{margin:5px 5px 5px 0}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted{background:#444;color:#fff;border-radius:2px;flex-direction:row;align-items:flex-end;padding:6px 8px;line-height:1;margin-right:5px;margin-bottom:20px}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted a{color:#fff}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy a{text-decoration:none;color:inherit}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__image .uagb-post__image-equal-height{display:block;height:0;padding-bottom:66.67%;overflow:hidden}.uagb-post-grid .uagb-post__load-more-wrap{width:100%;position:absolute;bottom:-30px}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid.is-grid article{float:left;display:inline-block}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:nth-last-child(2){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:last-child{position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(3){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(2){position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__inner-wrap,.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a{display:block;height:0;overflow:hidden;position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-2-3{padding-bottom:66%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-9-16{padding-bottom:56.25%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-2{padding-bottom:50%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-1{padding-bottom:67%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit{padding-bottom:0;height:auto}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit img{position:unset !important}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a[class^=uagb-image-ratio-]>img{position:absolute;height:100%}.uagb-post-grid.uagb-post__items.is-masonry{display:flex;flex-wrap:wrap}.uagb-post-grid.uagb-post__items.is-carousel{display:flex;flex-wrap:wrap;width:100%;visibility:hidden}.uagb-post-grid.is-grid .uagb-post__inner-wrap{height:max-content}.uagb-post-grid.is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:auto}.uagb-post-grid.is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px;vertical-align:bottom}.uagb-post-grid.uagb-post__columns-8:not(.is-grid) article{width:12.5%}.uagb-post-grid.uagb-post__columns-7:not(.is-grid) article{width:14.28%}.uagb-post-grid.uagb-post__columns-6:not(.is-grid) article{width:16.66%}.uagb-post-grid.uagb-post__columns-5:not(.is-grid) article{width:20%}.uagb-post-grid.uagb-post__columns-4:not(.is-grid) article{width:25%}.uagb-post-grid.uagb-post__columns-3:not(.is-grid) article{width:33.33%}.uagb-post-grid.uagb-post__columns-2:not(.is-grid) article{width:50%}.uagb-post-grid.uagb-post__columns-1:not(.is-grid) article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*=columns].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%;height:auto;max-width:100%}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:0;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline,.uagb-post-grid .uagb-post__taxonomy{text-transform:capitalize;font-size:14px;font-weight:500;line-height:23px;text-decoration:none}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit;text-decoration:none}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date,.uagb-post-grid .uagb-post__comment{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child)::after,.uagb-post-grid .uagb-post__date:not(:last-child)::after,.uagb-post-grid .uagb-post__comment:not(:last-child)::after{content:"·";vertical-align:middle;align-self:center;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{word-break:break-word}.uagb-post-grid .uagb-post__inner-wrap p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block;background:none}.uagb-post-grid .uagb-post__cta .ast-outline-button{display:inline-flex}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.is-grid.uagb-post__items{display:grid}.wp-block-uagb-post-grid .uagb-post-pagination-wrap{grid-column:1/-1}.uagb-post__image-position-background .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background.uagb-post__image-enabled .uagb-post__text{color:#fff}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted,.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.default{position:relative;z-index:999}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,.5)}.uagb-slick-carousel .is-carousel{padding:0}.uagb-slick-carousel ul.slick-dots{transform:unset;position:relative;padding:unset}.uagb-slick-carousel .slick-prev:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel .slick-next:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel ul.slick-dots li button:not(:hover):not(:active):not(.has-background){background-color:unset}.uagb-post-grid[data-equal-height=yes] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;right:auto}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:auto;right:-45px}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir=rtl] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir=rtl] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid.is-grid article,.uagb-post-grid.is-masonry article,.uagb-post-grid.is-carousel article{box-sizing:border-box}@media(max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir=rtl] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-8 article{width:12.5%}}@media(max-width: 767px){:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap{display:flex;width:100%;flex-wrap:wrap}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:flex;margin-right:4px;margin-bottom:5px}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{animation-delay:-0.16s}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-next{right:0}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:0}@keyframes sk-bouncedelay{0%,80%,100%{transform:scale(0)}40%{transform:scale(1)}}
.wp-block-uagb-restaurant-menu,.uagb-rest_menu__wrap{position:relative}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-1,.uagb-rest_menu__wrap.uagb-rm__desk-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-2,.uagb-rest_menu__wrap.uagb-rm__desk-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-3,.uagb-rest_menu__wrap.uagb-rm__desk-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-4,.uagb-rest_menu__wrap.uagb-rm__desk-column-4{grid-template-columns:auto auto auto auto}.wp-block-uagb-restaurant-menu .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__price{min-width:-moz-fit-content;min-width:fit-content}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap{position:relative;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;transition:all .2s}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price{text-align:left !important}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content{position:relative;display:table;width:100%;padding:15px;border-radius:inherit;text-align:left;word-break:break-word;overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details{display:table;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title{display:block;margin-bottom:5px;margin-block-start:0;word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price{word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator{display:-moz-flexbox;display:flex;margin-right:0;margin-bottom:10px;margin-left:0;line-height:0;-js-display:flex;width:100%;border-top-color:#b2b4b5;border-top-style:inherit;border-top-width:1px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content img{display:inline-block;box-sizing:content-box}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-1,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-1{padding-right:10px;padding-left:10px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center{display:flex;flex-direction:column}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator{align-self:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price{text-align:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price{display:table-cell;text-align:left}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__desc,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__desc{margin-bottom:15px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{width:20%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price{display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image{overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__image-content,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__image-content{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price{display:table-cell;text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__text-wrap,.uagb-rest_menu__wrap .uagb-rm__text-wrap{position:relative;display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price{display:block;width:100%;text-align:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details{flex-direction:unset}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center img{text-align:left}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left img{margin-right:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content{align-self:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content{align-self:flex-start}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle .uagb-rm__content img{align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top .uagb-rm__content img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details{display:flex;flex-direction:row-reverse}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center img{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right img{margin-left:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details{display:inline-table}.wp-block-uagb-restaurant-menu{display:grid}@media(max-width: 976px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-4{grid-template-columns:auto auto auto auto}}@media(max-width: 767px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-4{grid-template-columns:auto auto auto auto}}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-moz-flexbox;display:flex}
.uagb_review_block{padding:25px 40px 35px 40px;margin:30px auto}.uagb_review_block a.uagb-rating-link-wrapper{color:inherit;text-decoration:none}.uagb_review_block .uagb-rating__source-wrap{padding-top:10px;padding-bottom:10px}.uagb_review_block .uagb_review_entry{display:flex;padding:10px 0 10px 0;border-bottom:1px solid #e9e9e9}.uagb_review_block .uagb_review_summary_title{margin:23px 0 13px 0;font-size:24px;font-weight:600}.uagb_review_block .uagb_review_summary .uagb_review_overall_value{flex-basis:75%}.uagb_review_block .uagb_review_average{display:inline-flex}.uagb_review_block .uagb_review_rating{text-align:right;font-size:40px}.uagb_review_block .uagb_review_average_stars{display:flex;grid-area:auto;justify-self:self-end;height:50px;line-height:60px;margin-left:10px;margin-top:25px}
.wp-block-uagb-separator{text-align:center;box-sizing:border-box;line-height:0}.wp-block-uagb-separator__inner{display:inline-block}.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner{border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner{display:flex;justify-content:center;align-items:center;margin:0 auto}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg{font-size:30px;color:#333;fill:#333;width:30px;height:30px;line-height:30px;max-width:none}.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag{word-break:initial;margin:0}
.uagb-swiper{position:relative;overflow:hidden}.uagb-slider-container{position:relative;width:100%;min-width:0;transition:box-shadow .2s ease}.uagb-slider-container .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.uagb-slider-container .swiper-button-next.swiper-button-disabled,.uagb-slider-container .swiper-button-prev.swiper-button-disabled{pointer-events:all}.uagb-slider-container .swiper-pagination.swiper-pagination-bullets{max-width:100%}.uagb-slider-container .swiper-button-prev,.uagb-slider-container .swiper-button-next{border-style:none;background:#efefef}
.uagb-social-share__outer-wrap,.uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__layout-vertical.uagb-social-share__outer-wrap,.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-top:0 !important}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-bottom:0 !important}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all .2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}@media(max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-left:0 !important}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-right:0 !important}
.wp-block-uagb-social-share .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{align-self:flex-start;margin-top:5px}
.wp-block-uagb-star-rating{display:flex}.wp-block-uagb-star-rating .uag-star-rating__title{margin:0}.wp-block-uagb-star-rating .uag-star-rating{display:flex;align-items:center}.wp-block-uagb-star-rating .uag-star{color:#ccd6df;display:inline-block;line-height:.75em}
.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block;max-width:-webkit-fill-available;max-width:fill-available}.wp-block-uagb-table-of-contents li.uagb-toc__list{padding-top:10px}.wp-block-uagb-table-of-contents ul.uagb-toc__list,.wp-block-uagb-table-of-contents ol.uagb-toc__list{list-style-position:inside;padding-left:0;margin-bottom:0;margin-left:2.2em}.wp-block-uagb-table-of-contents ul.uagb-toc__list li,.wp-block-uagb-table-of-contents ol.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__title{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents svg{width:20px;height:20px;display:inline-block;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{display:flex;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:2px}ol.uagb-toc__list li.uagb-toc__list ul,ol.uagb-toc__list ul.uagb-toc__list ul{list-style-type:circle}ol.uagb-toc__list>ul,ol.uagb-toc__list>li{list-style-type:disc}.uagb-toc__scroll-top{position:fixed;right:50px;bottom:50px;display:none;padding:10px;background:#ccd0d4;cursor:pointer;font-size:1rem;line-height:1.8571428571}.uagb-toc__scroll-top svg{width:1.6em;height:.6em;margin-left:0;transform:translate(0, -20%) rotate(180deg);fill:currentColor}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}body[class*=astra] .uagb-toc__list{line-height:normal}.uagb-toc__list{margin-top:0}.wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable{list-style-type:none !important}ul.uagb-toc__list--child-of-closed-list{padding-top:0 !important}ul.uagb-toc__list--hidden-child{display:none !important}.list-open::before,.list-collapsed::before{content:"▼"/"";transition:transform .3s ease;transform:scale(0.7) translateX(-50%);display:inline-block}.list-collapsed::before{transform:scale(0.7) rotate(-90deg) translate(-84%, 6%)}span.list-open,span.list-collapsed{cursor:pointer;outline:none !important}.uagb-toc__list.transition{transition:max-height 300ms ease-in-out,padding-top 300ms ease-in-out}.uagb-toc__loader{border:2px solid #f3f3f3;border-top:2px solid #0073aa;border-radius:50%;width:20px;height:20px;animation:spin 1.1s linear infinite;display:block;position:absolute;margin-top:5px}.uagb-toc__list-hidden{opacity:0}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}[dir=rtl] .list-open::before{transform:scale(0.7) translateX(50%)}[dir=rtl] .list-collapsed::before{transform:scale(0.7) rotate(90deg) translate(84%, 6%)}[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:0;padding-right:2px;margin-left:0;margin-right:2.2em}
.uagb-tabs__wrap{display:flex}.uagb-tabs__wrap ul.uagb-tabs__panel{margin:0;list-style-type:none;display:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-center{justify-content:center}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-left{justify-content:flex-start}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right{justify-content:flex-end}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right .uagb-tab:last-child{margin-right:0}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a{position:relative;padding:6px 12px;display:inline-flex;color:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel p{margin:0}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon{vertical-align:text-top}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left{display:block;align-items:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap .uagb-tabs__body-wrap{position:relative;max-width:100%;padding:10px}.editor-styles-wrapper .uagb-editor-preview-mode-tablet.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab,.editor-styles-wrapper .uagb-editor-preview-mode-mobile.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab{display:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;align-items:center;flex-direction:row;max-width:100%;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{justify-content:space-between;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{padding:0;display:flex;flex-direction:column;flex-grow:1;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel{min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}@media(max-width: 1023px){.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel{margin-bottom:0;min-width:25%;max-width:25%;justify-content:normal}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel{margin-bottom:0}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap{border-style:none}}@media(max-width: 767px){.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile{flex-direction:column;border-style:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:row;flex-grow:1;max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tabs__body-wrap{flex-direction:row;max-width:100%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile{flex-direction:row;border-style:none}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__stack1-mobile,.uagb-tabs__wrap.uagb-tabs__stack2-mobile,.uagb-tabs__wrap.uagb-tabs__stack3-mobile,.uagb-tabs__wrap.uagb-tabs__stack4-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile{margin:auto}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;text-align:center}}.uagb-tabs__wrap .uagb-tabs__body-container.uagb-tabs-body__active{display:block}
.uagb-tabs__wrap .uagb-tabs__body-container{padding:10px 15px;display:none}
.uagb-tax-not-available{padding:10px;border:1px solid;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}.uagb-tax-link h1,.uagb-tax-link h2,.uagb-tax-link h3,.uagb-tax-link h4,.uagb-tax-link h5,.uagb-tax-link h6{margin-top:unset}
.wp-block-uagb-team{display:flex}.wp-block-uagb-team .uagb-team__content{width:100%}.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.wp-block-uagb-team .uagb-team__title,.wp-block-uagb-team span.uagb-team__title{display:block;margin-block-start:0;margin-block-end:0}.wp-block-uagb-team .uagb-team__image-wrap img{display:inline;width:inherit;height:auto !important;max-width:100%;box-sizing:content-box;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-circle img{border-radius:100%}.wp-block-uagb-team img.uagb-team__image-crop-circle{border-radius:100%}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-square img{border-radius:0}.wp-block-uagb-team img.uagb-team__image-crop-square{border-radius:0}.wp-block-uagb-team .uagb-team__social-icon-wrap ul{display:flex;list-style:none}.wp-block-uagb-team .uagb-team__social-icon a{display:block;width:20px;height:20px;color:#333;font-size:20px}.wp-block-uagb-team .uagb-team__social-icon{margin-right:20px;margin-left:0}.wp-block-uagb-team .uagb-team__social-list{padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above ul.uagb-team__social-list{display:flex;list-style:none}.wp-block-uagb-team.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-start}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-left li{margin-right:5px}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-end}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-right li{margin-left:5px}.wp-block-uagb-team .uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team .uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:flex}.wp-block-uagb-team img{display:inline;max-width:100%;width:inherit;box-sizing:content-box;border-radius:inherit}@media only screen and (max-width: 976px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-tablet{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__image-wrap,.wp-block-uagb-team.uagb-team__stack-tablet img{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-mobile{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__image-wrap{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:left}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:left}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:right}html[dir=rtl] .wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:left}
.wp-block-uagb-testimonial.uagb-slick-carousel ul.slick-dots{margin-bottom:20px}.uagb-testimonial__wrap{box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all .2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image-content img{height:auto !important}.uagb-tm__image,.uagb-testimonial__wrap,.uagb-tm__content,.uagb-tm__text-wrap{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;border-radius:inherit;display:grid}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline;width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__author-name{font-size:30px;line-height:16px}.uagb-tm__company{font-size:15px;font-style:normal;line-height:16px;color:#888}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir=rtl] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir=rtl] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir=rtl] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{right:auto;left:-45px}[dir=rtl] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:auto;right:-45px}@media(min-width: 1025px){.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .uagb-testimonial__wrap{margin-bottom:0}}@media(max-width: 976px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:-10px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-10px}[dir=rtl] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir=rtl] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media(max-width: 768px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}.entry-content .wp-block-uagb-testimonial .is-carousel ul.slick-dots{padding:unset}
.spectra-support-container{position:absolute;bottom:0;right:0;padding:8px;border:.5px solid #d6cdff;border-radius:5px;background-color:#f3f0ff;display:flex;justify-content:center;align-items:center;gap:8px;z-index:1000000}.spectra-support-container .spectra-support-icon{height:100%}.spectra-support-container .spectra-support-text{font-size:13px;font-weight:400;font-family:Figtree,sans-serif;color:#111827}
[class*=uagb-columns__columns-],.uagb-columns__inner-wrap{position:relative;margin-left:auto;margin-right:auto;z-index:2;display:flex;flex-wrap:nowrap;width:100%}.uagb-columns__wrap{position:relative;margin-left:auto;margin-right:auto}.uagb-columns__wrap .uagb-columns__overlay,.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{overflow:hidden;z-index:0;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative=false].uagb-columns__shape-bottom,.uagb-columns__wrap .uagb-columns__shape[data-negative=true].uagb-columns__shape-top{transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;transform-origin:center;transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{display:flex;flex-direction:column;justify-content:center}.uagb-columns__valign-top .uagb-column__wrap{align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{display:flex;flex-direction:column;justify-content:flex-end}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:0}.uagb-columns__gap-default>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:10px}.uagb-columns__gap-narrow>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:5px}.uagb-columns__gap-extended>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:15px}.uagb-columns__gap-wide>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:20px}.uagb-columns__gap-wider>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:30px}@media(max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet{display:block}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-tablet.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media(max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile{display:block}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-mobile.uagb-columns__reverse-mobile .uagb-columns__inner-wrap,.uagb-columns__stack-mobile.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__stack-tablet.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media(max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{position:relative;z-index:2;margin-right:auto;margin-left:auto}.uagb-section__wrap .uagb-section__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.uagb-section__wrap .uagb-section__video-wrap{position:absolute;top:0;left:0;z-index:0;width:100%;height:100%;transition:opacity 1s;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{display:inline-block;vertical-align:baseline;width:100%;height:100%;max-width:100%;margin:0;background-size:cover;border:none;object-fit:cover;line-height:1;-o-object-fit:cover}@media(min-width: 768px)and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
.uagb-column__wrap,.uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;width:100%;z-index:2}.uagb-column__wrap{position:relative;overflow:visible}.uagb-column__wrap>*{z-index:1;width:100%;position:relative}.uagb-column__wrap .aligncenter{display:block;text-align:center}.uagb-column__wrap .aligncenter figcaption{display:block;text-align:center}.uagb-column__wrap .alignright{display:block;text-align:right}.uagb-column__wrap .alignright figcaption{display:block;text-align:right}.uagb-column__wrap .wp-block-image{width:100%}.uagb-column__wrap.uagb-column__align-left{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__video-wrap,.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute;border-radius:inherit}.uagb-column__wrap .uagb-column__video-wrap{overflow:hidden;z-index:0;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media(max-width: 976px){.uagb-column__align-tablet-left{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right{margin-left:auto;margin-right:0}}@media(max-width: 767px){.uagb-column__align-mobile-left{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right{margin-left:auto;margin-right:0}}@media(max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
.wp-block-uagb-cf7-styler input[type=text],.wp-block-uagb-cf7-styler input[type=password],.wp-block-uagb-cf7-styler input[type=date],.wp-block-uagb-cf7-styler input[type=datetime],.wp-block-uagb-cf7-styler input[type=datetime-local],.wp-block-uagb-cf7-styler input[type=email],.wp-block-uagb-cf7-styler input[type=month],.wp-block-uagb-cf7-styler input[type=number],.wp-block-uagb-cf7-styler input[type=search],.wp-block-uagb-cf7-styler input[type=tel],.wp-block-uagb-cf7-styler input[type=time],.wp-block-uagb-cf7-styler input[type=url],.wp-block-uagb-cf7-styler input[type=week]{min-height:30px;line-height:30px}.wp-block-uagb-cf7-styler textarea{resize:vertical}.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 ::after,.wp-block-uagb-cf7-styler .wpcf7 ::before{box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{display:inline-block;vertical-align:middle;width:15px;height:15px;margin-right:10px;border-color:#eaeaea;border-style:solid;border-width:1px 1px 1px 1px;text-align:center;content:""}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span::before{line-height:1.2;content:"✔"}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type=checkbox]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{box-sizing:content-box}.wp-block-uagb-cf7-styler input[type=checkbox]:checked+span::before{font-size:-webkit-calc(12px / 1.2);font-size:10px}.wp-block-uagb-cf7-styler .wpcf7-radio input[type=radio]+span::before{border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type=radio]:checked+span::before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type=radio]:checked+span::before{box-shadow:inset 0 0 0 4px #fafafa;background-color:#545454}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:flex;width:auto;padding:10px 25px;background:transparent;border-color:#333;border-width:1px;line-height:16px;-js-display:flex}.wp-block-uagb-cf7-styler .wpcf7 input[type=checkbox],.wp-block-uagb-cf7-styler .wpcf7 input[type=radio]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple=multiple]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:block;padding:.1em .5em;margin-top:5px;border-radius:2px;font-size:.9em;-webkit-border-radius:2px;width:-moz-fit-content;width:fit-content;margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .wpcf7 input[type=number]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}.wp-block-uagb-cf7-styler .wpcf7-spinner{margin-top:25px}@media(min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p{-js-display:flex;display:flex;flex-wrap:wrap;width:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span{flex:1;flex-grow:1}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-1{padding-right:15px;padding-left:0}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-3{padding-right:0;padding-left:15px}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}@media(min-width: 780px){.uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}@media(max-width: 780px){.uagb-cf7-styler__btn-align-tablet-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-tablet-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-tablet-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}}@media(min-width: 641px)and (max-width: 780px){.uagb-cf7-styler__btn-align-tablet-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}@media(max-width: 641px){.uagb-cf7-styler__btn-align-mobile-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-mobile-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-justify input.wpcf7-form-control.wpcf7-submit{justify-content:center;width:100% !important}}
.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;height:auto;padding:0;box-shadow:none;background:#fff;border:1px solid #aaa;border-radius:0;color:#444;text-decoration:none;white-space:nowrap;overflow:hidden;-webkit-border-radius:0;-webkit-box-shadow:none}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=submit]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom::after{position:absolute;top:45%;right:.5em;z-index:5;font-family:FontAwesome,serif !important;font-size:.7em;line-height:1;transform:translateY(-45%);content:"";pointer-events:none;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%)}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]:checked+label::before{box-shadow:inset 0 0 0 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]:checked+label::before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.wp-block-uagb-gf-styler .gform_wrapper .gform_fields,.wp-block-uagb-gf-styler .gform_wrapper .gform_footer{pointer-events:auto}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=checkbox]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=radio]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type=radio]+label::before{box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type=button]{padding:10px 20px;border-radius:2px;font-size:13px;-webkit-border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:8px 10px;font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{padding:6px 10px;font-size:13px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:10px;height:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(10px / 1.2);font-size:8.3333333333px}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type=button]{padding:12px 24px;border-radius:3px;font-size:15px;-webkit-border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:12px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{padding:10px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:12px;height:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(12px / 1.2);font-size:10px}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type=button]{padding:15px 30px;border-radius:4px;font-size:16px;-webkit-border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:15px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{padding:13px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:15px;height:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(15px / 1.2);font-size:12.5px}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type=button]{padding:20px 40px;border-radius:5px;font-size:18px;-webkit-border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:20px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{padding:18px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:20px;height:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{font-size:-webkit-calc(20px / 1.2);font-size:16.6666666667px}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=submit],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type=button]{padding:25px 50px;border-radius:6px;font-size:20px;-webkit-border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:25px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{padding:23px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]+label::before{width:25px;height:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type=checkbox]:checked+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type=checkbox]:checked+label::before{font-size:-webkit-calc(25px / 1.2);font-size:20.8333333333px}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){width:100%;padding:0 0 0 0;margin-right:0;margin-left:0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type=radio]+label::before{border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{display:flex;width:auto;-js-display:flex}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type=radio],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type=radio]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;content:""}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type=checkbox]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type=checkbox]:checked+label::before{line-height:1.2;content:"✔"}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type=submit]{display:block;width:100%;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type=text],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type=text]{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type=button]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{width:100%;margin-bottom:0}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_checkbox .gfield_checkbox .gchoice,.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_radio .gfield_radio .gchoice{margin-bottom:5px;line-height:0}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_select select{background:#fafafa url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:0}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:0;margin-left:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:auto;margin-left:0}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type=submit]{width:auto;margin-right:0;margin-left:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type=submit],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=button],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media(min-width: 780px){.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100%}}@media(max-width: 780px){.uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}}@media(min-width: 641px)and (max-width: 780px){.uagb-gf-styler__btn-align-tablet-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100% !important}}@media(max-width: 641px){.uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=submit]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=button],html[dir=rtl] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type=submit]{margin-right:0;margin-left:auto}.uagb-gf-styler__btn-align-mobile-justify .gform_wrapper .gform_footer input[type=submit],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type=button],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type=submit]{justify-content:center;width:100% !important}}
.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{width:100%;min-height:20px}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{border:none;border-radius:0;color:#fff}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden;max-width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input::-webkit-input-placeholder{overflow:unset}
PK�][�s����8ultimate-addons-for-gutenberg/dist/blocks-placeholder.jsnu�[���/**
 * This is a dummy file that contains blocks settings placeholder.
 * WordPress plugin directory detects registered blocks from this file and shows them on plugin page
 * It doesn't do anything in the actual code.
 *
 * It is auto-generated.
 */

registerBlockType( 'uagb/advanced-heading', { title: __( 'Heading', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/blockquote', { title: __( 'Blockquote', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/buttons', { title: __( 'Buttons', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/call-to-action', { title: __( 'Call To Action', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/container', { title: __( 'Container', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/countdown', { title: __( 'Countdown', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/counter', { title: __( 'Counter', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/faq', { title: __( 'FAQ', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/forms', { title: __( 'Form', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/google-map', { title: __( 'Google Maps', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/how-to', { title: __( 'How To', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/icon-list', { title: __( 'Icon List', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/icon', { title: __( 'Icon', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/image-gallery', { title: __( 'Image Gallery', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/image', { title: __( 'Image', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/info-box', { title: __( 'Info Box', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/inline-notice', { title: __( 'Inline Notice', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/lottie', { title: __( 'Lottie Animation', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/marketing-button', { title: __( 'Marketing Button', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/modal', { title: __( 'Modal', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/popup-builder', { title: __( 'Popup Builder', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/post-carousel', { title: __( 'Post Carousel', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/post-grid', { title: __( 'Post Grid', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/restaurant-menu', { title: __( 'Price List', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/sure-cart-checkout', { title: __( 'SureCart - Checkout', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/sure-cart-product', { title: __( 'SureCart - Product List', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/sure-forms', { title: __( 'SureForms - Create Forms', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/review', { title: __( 'Review', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/separator', { title: __( 'Separator', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/slider', { title: __( 'Slider', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/social-share', { title: __( 'Social Share', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/star-rating', { title: __( 'Star Ratings', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/table-of-contents', { title: __( 'Table Of Contents', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/tabs', { title: __( 'Tabs', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/taxonomy-list', { title: __( 'Taxonomy List', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/team', { title: __( 'Team', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/testimonial', { title: __( 'Testimonials', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/content-timeline', { title: __( 'Content Timeline', 'ultimate-addons-for-gutenberg' ) } );
registerBlockType( 'uagb/post-timeline', { title: __( 'Post Timeline', 'ultimate-addons-for-gutenberg' ) } );PK�][�ǯ$SS4ultimate-addons-for-gutenberg/dist/common-editor.cssnu�[���.block-editor-block-inspector .uagb-inspector-tab .components-notice.is-warning{margin-top:20px;margin-bottom:20px}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>div:not(.components-panel__row):not(.uagb-select-control)>.components-base-control{margin-bottom:25px}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.components-base-control{margin-bottom:25px}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.components-base-control .components-base-control,.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.components-base-control .components-base-control__field{padding-top:0;margin-bottom:0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.components-base-control:last-child{margin-bottom:0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.spectra-components-control .components-base-control{margin-bottom:25px}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.spectra-components-control .components-base-control .components-base-control,.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.spectra-components-control .components-base-control .components-base-control__field{padding-top:0;margin-bottom:0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body>.spectra-components-control:last-child .components-base-control{margin-bottom:0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body .spectra-panel__body-sub-heading{font-size:13px;font-weight:500;line-height:16px;color:#50575e}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body .components-datetime .components-datetime__buttons{margin:10px 0 10px 0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body .components-datetime .components-datetime__buttons .components-button:focus:not(:disabled){box-shadow:unset}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body .components-base-control__help{margin-top:10px}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body .components-base-control__help .components-toggle-control__help{margin:0}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body:last-child:not(.block-editor-block-inspector__upgrade_pro){border-bottom:1px solid #e0e0e0}.edit-site-block-editor__block-list.is-outline-mode .block-editor-block-list__block:not(.remove-outline).is-hovered::after,.edit-site-block-editor__block-list.is-outline-mode .block-editor-block-list__block:hover::after,.edit-site-block-editor__block-list.is-outline-mode .block-editor-block-list__block:not([contenteditable]):focus::after,.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:not(.remove-outline).is-hovered::after,.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:hover::after,.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus::after{outline:1.5px solid #007cba;border-radius:2px;top:0;bottom:0;left:0;right:0;outline-offset:-1.5px}.edit-site-block-editor__block-list.is-outline-mode .block-editor-block-list__block:not([contenteditable]):focus,.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:not([contenteditable]):focus{z-index:1}.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:hover::after,.ast-highlight-wpblock-onhover .edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block:not(.editor-post-title__input):hover,.edit-post-visual-editor .editor-styles-wrapper>.block-editor-block-list__layout .block-editor-block-list__block.is-selected:not([contenteditable]):focus::after,.block-editor-block-list__layout .block-editor-block-list__block.is-selected,.block-editor-block-list__layout .block-editor-block-list__block.is-highlighted::after{outline:1.5px solid #007cba;border-radius:2px;box-shadow:none;outline-offset:-1.5px}.uag-control-label,.uagb-inspector-tab .components-base-control__label,.uagb-inspector-tab .components-panel__body label,.uagb-extention-tab label{color:#50575e;font-size:13px !important;line-height:1.4em !important;margin-bottom:10px;text-transform:none !important;font-weight:400 !important}.uagb-inspector-tab label.components-toggle-control__label{margin-bottom:0}.uagb-inspector-tab label.components-toggle-control__label:hover{cursor:pointer}.interface-interface-skeleton__sidebar::-webkit-scrollbar{width:5px}.interface-interface-skeleton__sidebar::-webkit-scrollbar-thumb{box-shadow:inset 0 0 6px rgba(0,0,0,0.3);border-radius:100px}.uagb-inspector-tab .components-panel__body-title .components-button,[data-uagb-tab] .components-panel__body-title .components-button{font-size:13px}.uagb-inspector-tab .components-select-control{height:auto}.uagb-size-type-field-tabs .components-tab-panel__tabs{display:block;border-bottom:0;text-align:right;padding-right:28px;margin-right:45px;margin-bottom:-20px;z-index:unset}.uagb-size-type-field-tabs .components-tab-panel__tabs button span.dashicon.dashicons{font-size:15px}.uagb-size-type-field-tabs .components-tab-panel__tabs button.active-tab svg,.uagb-size-type-field-tabs .components-tab-panel__tabs button.active-tab svg:focus{color:#007cba}.uagb-size-type-field-tabs .components-tab-panel__tabs button svg,.uagb-size-type-field-tabs .uag-responsive-label-wrap svg{width:auto;height:10px}.uagb-size-type-field-tabs .components-tab-panel__tabs button{border:0;border-bottom:0;padding:4px;margin-bottom:0;outline:0;font-size:8px;background:transparent;color:#999;display:inline-block;height:16px;width:22px;margin-right:3px}.uagb-size-type-field-tabs .components-tab-panel__tabs button.active-tab,.uagb-size-type-field-tabs .components-tab-panel__tabs button.active-tab:focus{box-shadow:none;color:#007cba;border-radius:100%;padding:0;margin:0;line-height:0}.uagb-control__actions .uagb-size-type-field-tabs{margin:0}.uagb-inspect-tabs .components-tab-panel__tabs button{padding:10px;background:transparent;color:#333;outline:none;border-top:none;border-left:none;border-right:none;border-bottom:3px solid #eee;cursor:pointer;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}hr.uagb-editor__separator{border-bottom:1px solid #e2e4e7;margin-top:0}.uagb-inspect-tabs>.components-tab-panel__tabs button.active-tab,.uagb-inspect-tabs>.components-tab-panel__tabs button:focus{border-bottom:3px solid #333;outline:none;font-weight:500}.uagb-inspect-tab-title{margin-top:20px}.uagb-inspect-tabs-col-2>.components-tab-panel__tabs button,.uagb-inspect-tabs.uagb-inspect-tabs-col-2>.components-tab-panel__tabs button{width:50%}.components-button-group .components-button.is-primary,.components-button-group .components-button:focus,.components-toolbar .components-button,.components-toolbar .components-button::before{z-index:unset}.uagb-inspect-tabs .components-tab-panel__tabs{margin-bottom:15px}.uagb-inspect-tabs-col-3>.components-tab-panel__tabs button{width:33.33%}.uagb-settings-notice{color:#478a3b;background-color:#e5fce3;padding:15px;border-left:5px solid #c3f9c5;font-size:12px;line-height:1.5;text-align:left}.uagb-note,.components-base-control__help{color:#a4afb7;font-size:12px;font-style:italic}.components-range-control.uagb-margin-control .components-base-control__label{width:30px}.uagb-icons-list .uagb-widget-icon{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;justify-content:center;align-items:center;float:left;padding:1em;margin:0;border:1px solid #f1f1f1;cursor:pointer;text-align:center;font-size:16px;line-height:16px;-webkit-box-align:center;-webkit-align-items:center;-moz-box-align:center;-ms-flex-align:center;-webkit-box-pack:center;-webkit-justify-content:center;-moz-box-pack:center;-ms-flex-pack:center}.uagb-icons-list{display:inline-block;max-height:200px;padding:0;margin:1em 0 0 0;overflow:auto}.uagb-widget-icon svg{width:20px;height:20px}.uagb-icon-picker-wrap{position:relative;vertical-align:middle;width:100%;margin:8px 0}.uagb-icon-picker-wrap .search-icon{width:100%;background-color:#fff;border:1px solid #e0e0e0}.components-button-group.uagb-size-type-field{display:flex;justify-content:flex-end;margin:0;text-align:right;margin-bottom:-18px}.edit-post-sidebar h2.uagb-size-type-field-title{font-size:14px;margin-bottom:0;color:#555d66;margin-top:30px}.uagb-size-type-field button.components-button.uagb-size-btn{background:transparent;color:#777;border:0;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;height:18px;line-height:18px;padding:0 3px}.uagb-size-type-field button.components-button.uagb-size-btn:first-child{padding-left:0}.uagb-size-type-field button.components-button.uagb-size-btn:last-child{padding-right:0}.uagb-size-type-field button.components-button.uagb-size-btn.is-primary,.uagb-size-type-field button.components-button.uagb-size-btn.is-primary:focus:not(:disabled):not([aria-disabled="true"]){box-shadow:none;background:transparent;border:none;outline:none;color:#1d2327;text-decoration:underline;-webkit-box-shadow:none}.components-button-group .components-button.is-button{position:relative;z-index:1}.uagb-size-type-field button.components-button.uagb-size-btn:hover,.uagb-size-type-field button.components-button.uagb-size-btn:hover:focus:not(:disabled):not([aria-disabled="true"]){color:#1d2327;background:transparent;-webkit-box-shadow:none;box-shadow:none;border:none;outline:none}.uagb-size-type-field__common-tabs .components-tab-panel__tabs{display:block;margin-bottom:-34px}.uag-box-shadow-option-actions{margin-top:1.5em;margin-bottom:2em}.uagb__url-panel-body .block-editor-url-input input{width:100%}.uagb-setting-label .component-color-indicator{vertical-align:middle;background-color:transparent}[class^="fipicon-"]{speak:none;font-style:normal;font-weight:400;font-variant:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:flex}i.fipicon-angle-down::before{font-family:dashicons, serif;content:"\f140"}i.fipicon-angle-up::before{font-family:dashicons, serif;content:"\f142"}i.fipicon-angle-right::before{font-family:dashicons, serif;content:"\f345"}i.fipicon-angle-left::before{font-family:dashicons, serif;content:"\f341"}label.wp-block-uagb-blockquote__via-label svg{fill:#6c7781;vertical-align:middle}.slick-arrow svg{vertical-align:middle}.uagb-inspector-tab .components-select-control .components-input-control__container .components-select-control__input{text-transform:capitalize;line-height:30px}.components-panel__body.uagb-repeater-panel{max-width:100%;margin:0 auto;margin-bottom:1em;border:1px solid #e2e4e7;background:#fff;margin-top:1em}.edit-post-settings-sidebar__panel-block .components-panel__body.uagb-repeater-panel:last-child{margin-bottom:1em}.uagb-inline-margin .uagb-margin-control label.components-base-control__label{display:inline-block}.uagb-inline-margin .components-button-group.uagb-size-type-field{display:inline-block;float:right}.uagb-forms-button-group{margin-bottom:15px}.uag-typography-range-options+.components-base-control .components-base-control__field .css-unzpkb-Flex-Root{position:inherit}.uag-typography-range-options+.components-button-group.uagb-size-type-field{margin-bottom:-33px}button.components-button.uagb-reset.is-secondary.is-small:not(:disabled){color:#007cba}.uagb-reset .dashicons-image-rotate{width:10px;height:10px;font-size:10px}button.components-button.uagb-reset.is-secondary.is-small{box-shadow:unset;background:0 0;color:#ccc}button.components-button.uagb-reset.is-secondary.is-small.is-pressed,button.components-button.uagb-reset.is-secondary.is-small:focus:not(:disabled){border:0}.uagb-border-width{margin-bottom:-15px}.uagb-border-wrap{display:flex;margin-bottom:5px}.uagb-border-radius{margin-bottom:-20px}label.uagb-border-label{margin-right:130px}button.components-button.uagb-review-select-btn.is-secondary{margin-bottom:10px}.components-panel__body .uagb-control__label{margin-bottom:0}.uagb-components-base-control{margin-bottom:18px}.uag-typography-range-options .components-base-control .components-flex.components-select-control{position:unset}.uag-typography-option-actions .uagb-typography-control-btn.components-button:focus:not(:disabled){box-shadow:unset;outline:none;color:#0063a1}.uagb-inspector-tab .components-panel__body.is-opened>.components-panel__body-title{margin-bottom:16px}.uagb-inspector-tab>.components-base-control,.uagb-inspector-tab>h2{padding:0 10px;margin:-10px;margin-bottom:16px}.uagb-inspector-tab .components-panel__body>.components-panel__body-title .components-button.components-panel__body-toggle:focus{box-shadow:none;border:none}.uag-responsive-common-button{box-shadow:none;color:#50575e;border-radius:100%;border:0;border-bottom:0;outline:0;font-size:10px;display:inline-block;height:16px;width:22px;cursor:pointer;font-weight:500;padding:4px;margin:0;line-height:0;margin-left:10px}.uag-responsive-common-button svg{color:#50575e}.components-panel__body.is-opened .uagb-range-control-responsive{display:flex;align-items:center;padding:0;margin:0;margin-left:10px;margin-right:10px}.components-panel__body .components-base-control .uagb-control__header .uagb-range-control-responsive .uagb-responsive-tabs{margin:0;padding:4px;line-height:0;box-shadow:none;border:none}.components-panel__body .components-base-control .uagb-control__header .uagb-range-control-responsive .uagb-responsive-tabs:hover{color:#1e1e1e;background-color:#fff}.components-panel__body .components-base-control .uagb-control__header .uagb-range-control-responsive .uagb-responsive-tabs.is-pressed{background-color:#fff}.uagb-inspector-tab .components-base-control .components-range-control__wrapper{direction:initial;margin-left:5px}.components-range-control__slider{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-inspector-tab span[CLASS*="-ThumbWrapper"]{left:0%;height:17px;width:17px;margin-left:0;margin-top:6px}.edit-post-layout .interface-interface-skeleton__sidebar{margin-bottom:10px;overflow-x:hidden}.edit-post-layout .interface-interface-skeleton__sidebar .components-panel[data-uagb-tab="advance"] .block-editor-block-inspector__advanced.uagb-extention-tab{border:none;border-bottom:1px solid #e0e0e0}.edit-post-layout .interface-interface-skeleton__sidebar .components-panel[data-uagb-tab="advance"] .block-editor-block-inspector__advanced:not(.uagb-extention-tab) .components-button:focus:not(:disabled){border:none}.edit-post-layout .interface-interface-skeleton__sidebar .components-panel[data-uagb-tab="advance"] .components-base-control .components-base-control__label{color:#50575e;font-size:13px;line-height:1.4em;margin-bottom:10px;text-transform:none;font-weight:400}.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents svg.uagb-editor-icons path,.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents svg.uagb-editor-icons rect,.block-editor-list-view-leaf.is-selected .block-editor-list-view-block-contents svg.uagb-editor-icons circle{stroke:#fff}.block-editor-block-list__block-selection-button .block-editor-block-icon.has-colors svg.uagb-editor-icons,.is-selected .block-editor-block-icon.has-colors svg.uagb-editor-icons{stroke:#fff}.block-editor-block-list__block-selection-button .block-editor-block-icon.has-colors svg.uagb-editor-icons path,.block-editor-block-list__block-selection-button .block-editor-block-icon.has-colors svg.uagb-editor-icons rect,.block-editor-block-list__block-selection-button .block-editor-block-icon.has-colors svg.uagb-editor-icons circle,.is-selected .block-editor-block-icon.has-colors svg.uagb-editor-icons path,.is-selected .block-editor-block-icon.has-colors svg.uagb-editor-icons rect,.is-selected .block-editor-block-icon.has-colors svg.uagb-editor-icons circle{stroke:#fff}.block-editor-block-parent-selector .block-editor-block-icon svg.uagb-editor-icons path,.block-editor-block-parent-selector .block-editor-block-icon svg.uagb-editor-icons rect,.block-editor-block-parent-selector .block-editor-block-icon svg.uagb-editor-icons circle{stroke:#1d2327}[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons{stroke:#000}[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons path,[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons rect,[data-toolbar-item="true"] .block-editor-block-icon.has-colors svg.uagb-editor-icons circle{stroke:#000}.block-editor-block-toolbar .block-editor-block-parent-selector .components-button{height:48px}.block-editor-block-toolbar .block-editor-block-parent-selector .components-button.has-icon{min-width:48px}.block-editor-block-icon.has-colors svg.uagb-editor-icons{stroke:#0063a1}.block-editor-block-icon.has-colors svg.uagb-editor-icons path,.block-editor-block-icon.has-colors svg.uagb-editor-icons rect,.block-editor-block-icon.has-colors svg.uagb-editor-icons circle{stroke:#0063a1}.editor-editor-interface .interface-navigable-region.interface-interface-skeleton__footer{z-index:1000000}.block-editor .interface-interface-skeleton__footer,.edit-site .interface-interface-skeleton__footer{padding:5px;border-top:1px solid #e9e9e9}.block-editor .interface-interface-skeleton__footer .block-editor-block-breadcrumb li,.edit-site .interface-interface-skeleton__footer .block-editor-block-breadcrumb li{color:#0063a1;font-weight:600;font-size:14px}.block-editor .interface-interface-skeleton__footer .block-editor-block-breadcrumb li button,.edit-site .interface-interface-skeleton__footer .block-editor-block-breadcrumb li button{color:#0063a1;font-weight:600}.block-editor .interface-interface-skeleton__footer .block-editor-block-breadcrumb li svg,.edit-site .interface-interface-skeleton__footer .block-editor-block-breadcrumb li svg{width:25px;height:25px}.block-editor .interface-interface-skeleton__footer .block-editor-block-breadcrumb li .block-editor-block-breadcrumb__button::before,.edit-site .interface-interface-skeleton__footer .block-editor-block-breadcrumb li .block-editor-block-breadcrumb__button::before{box-shadow:none}.block-editor .interface-interface-skeleton__footer .block-editor-block-breadcrumb li .block-editor-block-breadcrumb__button:active:not(:disabled),.edit-site .interface-interface-skeleton__footer .block-editor-block-breadcrumb li .block-editor-block-breadcrumb__button:active:not(:disabled){background:transparent}.uagb-gradient-picker .components-flex.components-custom-gradient-picker__ui-line{align-items:baseline}.uagb-gradient-picker .components-angle-picker-control{margin-bottom:0}.uagb-gradient-picker label{text-transform:capitalize;font-weight:400}.uagb-inspector-tab .components-toggle-control .components-base-control__field .components-flex{display:flex;flex-direction:row-reverse;justify-content:space-between;align-items:center}.is-pressed .spectra-page-settings-button path{fill:#fff}.spectra-page-settings-button:hover path{fill:#007cba}.spectra-sidebar-settings-notice{margin:0}.spectra-sidebar-settings-notice.is-error{background-color:#f5d9d9}.spectra-multi-select__control{box-shadow:none !important;border-color:#e6e7e9 !important;border-radius:3px !important}.spectra-multi-select__control .spectra-multi-select__input input{box-shadow:none !important}.spectra-multi-select__control .spectra-multi-select__multi-value__label{font-size:13px !important}.spectra-multi-select__control .spectra-multi-select__menu .spectra-multi-select__option{font-size:13px !important}.editor-styles-wrapper .block-editor-block-list__block.wp-block[data-type*="uagb"] ::selection{color:#fff;background:#2f86dd}.block-editor-block-inspector .uagb-inspector-tab .components-panel__body.uag-advance-panel-body-animations>.components-base-control:last-child{margin-bottom:9px}.components-popover.uagb-dynamic-content-wrap{z-index:99999999}.block-editor-block-popover__dynamic-content .uagb-inspector-tab::-webkit-input-placeholder,.components-panel .uagb-dynamic-content-wrap .uagb-inspector-tab::-webkit-input-placeholder,.components-panel .uagb-inspector-tab .uagb-inspector-tab::-webkit-input-placeholder,.components-panel .uagb-inspector-tab::-webkit-input-placeholder,#customize-theme-controls .uagb-inspector-tab::-webkit-input-placeholder{color:#aaa}.block-editor-block-popover__dynamic-content .uagb-inspector-tab:-ms-input-placeholder,.components-panel .uagb-dynamic-content-wrap .uagb-inspector-tab:-ms-input-placeholder,.components-panel .uagb-inspector-tab .uagb-inspector-tab:-ms-input-placeholder,.components-panel .uagb-inspector-tab:-ms-input-placeholder,#customize-theme-controls .uagb-inspector-tab:-ms-input-placeholder{color:#aaa}.block-editor-block-popover__dynamic-content .uagb-inspector-tab::placeholder,.components-panel .uagb-dynamic-content-wrap .uagb-inspector-tab::placeholder,.components-panel .uagb-inspector-tab .uagb-inspector-tab::placeholder,.components-panel .uagb-inspector-tab::placeholder,#customize-theme-controls .uagb-inspector-tab::placeholder{color:#aaa}.block-editor-block-popover__dynamic-content .uagb-inspector-tab:focus,.components-panel .uagb-dynamic-content-wrap .uagb-inspector-tab:focus,.components-panel .uagb-inspector-tab .uagb-inspector-tab:focus,.components-panel .uagb-inspector-tab:focus,#customize-theme-controls .uagb-inspector-tab:focus{border-color:#959595;box-shadow:unset}.block-editor-block-popover__dynamic-content .block-editor-link-control,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control,.components-panel .uagb-inspector-tab .block-editor-link-control,.components-panel .block-editor-link-control,#customize-theme-controls .block-editor-link-control{min-width:auto}.block-editor-block-popover__dynamic-content .block-editor-link-control a,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control a,.components-panel .uagb-inspector-tab .block-editor-link-control a,.components-panel .block-editor-link-control a,#customize-theme-controls .block-editor-link-control a{color:#007cba}.block-editor-block-popover__dynamic-content .block-editor-link-control a:hover,.block-editor-block-popover__dynamic-content .block-editor-link-control a:active,.block-editor-block-popover__dynamic-content .block-editor-link-control a:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control a:hover,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control a:active,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control a:focus,.components-panel .uagb-inspector-tab .block-editor-link-control a:hover,.components-panel .uagb-inspector-tab .block-editor-link-control a:active,.components-panel .uagb-inspector-tab .block-editor-link-control a:focus,.components-panel .block-editor-link-control a:hover,.components-panel .block-editor-link-control a:active,.components-panel .block-editor-link-control a:focus,#customize-theme-controls .block-editor-link-control a:hover,#customize-theme-controls .block-editor-link-control a:active,#customize-theme-controls .block-editor-link-control a:focus{color:#0063a1}.block-editor-block-popover__dynamic-content .block-editor-link-control__tools,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__tools,.components-panel .uagb-inspector-tab .block-editor-link-control__tools,.components-panel .block-editor-link-control__tools,#customize-theme-controls .block-editor-link-control__tools{padding:25px 0 0;border:0}.block-editor-block-popover__dynamic-content .block-editor-link-control__tools .block-editor-link-control__settings .components-form-toggle:not(.is-checked) .components-form-toggle__thumb,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__tools .block-editor-link-control__settings .components-form-toggle:not(.is-checked) .components-form-toggle__thumb,.components-panel .uagb-inspector-tab .block-editor-link-control__tools .block-editor-link-control__settings .components-form-toggle:not(.is-checked) .components-form-toggle__thumb,.components-panel .block-editor-link-control__tools .block-editor-link-control__settings .components-form-toggle:not(.is-checked) .components-form-toggle__thumb,#customize-theme-controls .block-editor-link-control__tools .block-editor-link-control__settings .components-form-toggle:not(.is-checked) .components-form-toggle__thumb{background-color:#1e1e1e;border-color:#1e1e1e}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-input,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-input,.components-panel .uagb-inspector-tab .block-editor-link-control__search-input,.components-panel .block-editor-link-control__search-input,#customize-theme-controls .block-editor-link-control__search-input{margin:0}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-actions,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-actions,.components-panel .uagb-inspector-tab .block-editor-link-control__search-actions,.components-panel .block-editor-link-control__search-actions,#customize-theme-controls .block-editor-link-control__search-actions{right:0}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .uagb-inspector-tab .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .block-editor-link-control__search-actions .block-editor-link-control__search-submit,#customize-theme-controls .block-editor-link-control__search-actions .block-editor-link-control__search-submit{max-height:24px;padding:0}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .uagb-inspector-tab .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,#customize-theme-controls .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg{width:16px}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-results-wrapper,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-results-wrapper,.components-panel .uagb-inspector-tab .block-editor-link-control__search-results-wrapper,.components-panel .block-editor-link-control__search-results-wrapper,#customize-theme-controls .block-editor-link-control__search-results-wrapper{margin-top:0}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-results,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-results,.components-panel .uagb-inspector-tab .block-editor-link-control__search-results,.components-panel .block-editor-link-control__search-results,#customize-theme-controls .block-editor-link-control__search-results{padding:0;margin-top:10px}.block-editor-block-popover__dynamic-content .block-editor-link-control__search-item.is-current,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__search-item.is-current,.components-panel .uagb-inspector-tab .block-editor-link-control__search-item.is-current,.components-panel .block-editor-link-control__search-item.is-current,#customize-theme-controls .block-editor-link-control__search-item.is-current{border:1px solid #e6e7e9;border-radius:3px;margin-bottom:25px}.block-editor-block-popover__dynamic-content .block-editor-link-control__field input[type="text"],.block-editor-block-popover__dynamic-content .block-editor-link-control .components-text-control__input,.block-editor-block-popover__dynamic-content .block-editor-link-control .components-input-control__input,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__field input[type="text"],.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-text-control__input,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-input-control__input,.components-panel .uagb-inspector-tab .block-editor-link-control__field input[type="text"],.components-panel .uagb-inspector-tab .block-editor-link-control .components-text-control__input,.components-panel .uagb-inspector-tab .block-editor-link-control .components-input-control__input,.components-panel .block-editor-link-control__field input[type="text"],.components-panel .block-editor-link-control .components-text-control__input,.components-panel .block-editor-link-control .components-input-control__input,#customize-theme-controls .block-editor-link-control__field input[type="text"],#customize-theme-controls .block-editor-link-control .components-text-control__input,#customize-theme-controls .block-editor-link-control .components-input-control__input{color:#50575e;border-color:#e6e7e9;border-radius:3px;padding:7px 12px}.block-editor-block-popover__dynamic-content .block-editor-link-control__field input[type="text"]:focus,.block-editor-block-popover__dynamic-content .block-editor-link-control .components-text-control__input:focus,.block-editor-block-popover__dynamic-content .block-editor-link-control .components-input-control__input:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control__field input[type="text"]:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-text-control__input:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-input-control__input:focus,.components-panel .uagb-inspector-tab .block-editor-link-control__field input[type="text"]:focus,.components-panel .uagb-inspector-tab .block-editor-link-control .components-text-control__input:focus,.components-panel .uagb-inspector-tab .block-editor-link-control .components-input-control__input:focus,.components-panel .block-editor-link-control__field input[type="text"]:focus,.components-panel .block-editor-link-control .components-text-control__input:focus,.components-panel .block-editor-link-control .components-input-control__input:focus,#customize-theme-controls .block-editor-link-control__field input[type="text"]:focus,#customize-theme-controls .block-editor-link-control .components-text-control__input:focus,#customize-theme-controls .block-editor-link-control .components-input-control__input:focus{border-color:#959595;box-shadow:unset}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control,.components-panel .block-editor-link-control .block-editor-link-control,#customize-theme-controls .block-editor-link-control .block-editor-link-control{min-width:auto}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control a,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control a,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control a,.components-panel .block-editor-link-control .block-editor-link-control a,#customize-theme-controls .block-editor-link-control .block-editor-link-control a{color:#007cba}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control a:hover,.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control a:active,.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control a:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control a:hover,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control a:active,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control a:focus,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control a:hover,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control a:active,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control a:focus,.components-panel .block-editor-link-control .block-editor-link-control a:hover,.components-panel .block-editor-link-control .block-editor-link-control a:active,.components-panel .block-editor-link-control .block-editor-link-control a:focus,#customize-theme-controls .block-editor-link-control .block-editor-link-control a:hover,#customize-theme-controls .block-editor-link-control .block-editor-link-control a:active,#customize-theme-controls .block-editor-link-control .block-editor-link-control a:focus{color:#0063a1}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__tools,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__tools,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__tools,.components-panel .block-editor-link-control .block-editor-link-control__tools,#customize-theme-controls .block-editor-link-control .block-editor-link-control__tools{padding:25px 0 0;border:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-input,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-input,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-input,.components-panel .block-editor-link-control .block-editor-link-control__search-input,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-input{margin:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-actions,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-actions,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-actions,.components-panel .block-editor-link-control .block-editor-link-control__search-actions,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-actions{right:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit,.components-panel .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit{max-height:24px;padding:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,.components-panel .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-actions .block-editor-link-control__search-submit svg{width:16px}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-results-wrapper,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-results-wrapper,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-results-wrapper,.components-panel .block-editor-link-control .block-editor-link-control__search-results-wrapper,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-results-wrapper{margin-top:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-results,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-results,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-results,.components-panel .block-editor-link-control .block-editor-link-control__search-results,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-results{padding:0;margin-top:10px}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-item.is-current,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-item.is-current,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-item.is-current,.components-panel .block-editor-link-control .block-editor-link-control__search-item.is-current,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-item.is-current{border:1px solid #e6e7e9;border-radius:3px}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__field input[type="text"],.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__field input[type="text"],.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__field input[type="text"],.components-panel .block-editor-link-control .block-editor-link-control__field input[type="text"],#customize-theme-controls .block-editor-link-control .block-editor-link-control__field input[type="text"]{color:#50575e;border-color:#e6e7e9;border-radius:3px;padding:7px 12px;padding-right:calc(12px + 16px)}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__field input[type="text"]:focus,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__field input[type="text"]:focus,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__field input[type="text"]:focus,.components-panel .block-editor-link-control .block-editor-link-control__field input[type="text"]:focus,#customize-theme-controls .block-editor-link-control .block-editor-link-control__field input[type="text"]:focus{border-color:#959595;box-shadow:0 0 0 1px #959595}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control .components-base-control__field,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control .components-base-control__field,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control .components-base-control__field,.components-panel .block-editor-link-control .block-editor-link-control .components-base-control__field,#customize-theme-controls .block-editor-link-control .block-editor-link-control .components-base-control__field{padding:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .components-form-toggle,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-form-toggle,.components-panel .uagb-inspector-tab .block-editor-link-control .components-form-toggle,.components-panel .block-editor-link-control .components-form-toggle,#customize-theme-controls .block-editor-link-control .components-form-toggle{margin-right:0}.block-editor-block-popover__dynamic-content .block-editor-link-control .components-form-toggle.is-checked .components-form-toggle__thumb,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-form-toggle.is-checked .components-form-toggle__thumb,.components-panel .uagb-inspector-tab .block-editor-link-control .components-form-toggle.is-checked .components-form-toggle__thumb,.components-panel .block-editor-link-control .components-form-toggle.is-checked .components-form-toggle__thumb,#customize-theme-controls .block-editor-link-control .components-form-toggle.is-checked .components-form-toggle__thumb{background-color:#fff}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-item-top,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-item-top,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-item-top,.components-panel .block-editor-link-control .block-editor-link-control__search-item-top,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-item-top{display:block}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-item-icon,.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-item-info,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-item-icon,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-item-info,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-item-icon,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-item-info,.components-panel .block-editor-link-control .block-editor-link-control__search-item-icon,.components-panel .block-editor-link-control .block-editor-link-control__search-item-info,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-item-icon,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-item-info{display:none}.block-editor-block-popover__dynamic-content .block-editor-link-control .block-editor-link-control__search-item-header,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .block-editor-link-control__search-item-header,.components-panel .uagb-inspector-tab .block-editor-link-control .block-editor-link-control__search-item-header,.components-panel .block-editor-link-control .block-editor-link-control__search-item-header,#customize-theme-controls .block-editor-link-control .block-editor-link-control__search-item-header{display:grid;overflow:hidden}.block-editor-block-popover__dynamic-content .block-editor-link-control .components-base-control,.components-panel .uagb-dynamic-content-wrap .block-editor-link-control .components-base-control,.components-panel .uagb-inspector-tab .block-editor-link-control .components-base-control,.components-panel .block-editor-link-control .components-base-control,#customize-theme-controls .block-editor-link-control .components-base-control{margin-bottom:0}.block-editor-block-popover__dynamic-content .components-input-control__container .components-select-control__input,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-select-control__input,.components-panel .uagb-inspector-tab .components-input-control__container .components-select-control__input,.components-panel .components-input-control__container .components-select-control__input,#customize-theme-controls .components-input-control__container .components-select-control__input{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__backdrop,.components-panel .components-input-control__container .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-input-control__backdrop{border-color:#e6e7e9 !important;border-radius:3px !important;box-shadow:unset}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__input,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__input,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__input,.components-panel .components-input-control__container .components-input-control__input,#customize-theme-controls .components-input-control__container .components-input-control__input{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-truncate,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-truncate,.components-panel .uagb-inspector-tab .components-input-control__container .components-truncate,.components-panel .components-input-control__container .components-truncate,#customize-theme-controls .components-input-control__container .components-truncate{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.block-editor-block-popover__dynamic-content .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop{border-color:#959595}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__input:focus-visible .components-form-toggle__input:focus+.components-form-toggle__track,.block-editor-block-popover__dynamic-content .components-input-control__container .components-select-control__input:active .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__input:focus-visible .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-select-control__input:active .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__input:focus-visible .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .uagb-inspector-tab .components-input-control__container .components-select-control__input:active .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .components-input-control__container .components-input-control__input:focus-visible .components-form-toggle__input:focus+.components-form-toggle__track,.components-panel .components-input-control__container .components-select-control__input:active .components-form-toggle__input:focus+.components-form-toggle__track,#customize-theme-controls .components-input-control__container .components-input-control__input:focus-visible .components-form-toggle__input:focus+.components-form-toggle__track,#customize-theme-controls .components-input-control__container .components-select-control__input:active .components-form-toggle__input:focus+.components-form-toggle__track{box-shadow:0 0 0 2px #fff,0 0 0 4px #007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__track,.block-editor-block-popover__dynamic-content .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__track,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__track,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__track,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__track,.components-panel .uagb-inspector-tab .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__track,.components-panel .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__track,.components-panel .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__track,#customize-theme-controls .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__track,#customize-theme-controls .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__track{background-color:#007cba;border-color:transparent}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__thumb,.block-editor-block-popover__dynamic-content .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__thumb,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__thumb,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__thumb,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__thumb,.components-panel .uagb-inspector-tab .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__thumb,.components-panel .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__thumb,.components-panel .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__thumb,#customize-theme-controls .components-input-control__container .components-input-control__input:focus-visible.is-checked .components-form-toggle__thumb,#customize-theme-controls .components-input-control__container .components-select-control__input:active.is-checked .components-form-toggle__thumb{background-color:#fff}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-select-control__input,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-select-control__input,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-select-control__input,.components-panel .components-input-control__container .components-input-control__container .components-select-control__input,#customize-theme-controls .components-input-control__container .components-input-control__container .components-select-control__input{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-input-control__backdrop,.components-panel .components-input-control__container .components-input-control__container .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-input-control__container .components-input-control__backdrop{border-color:#e6e7e9;border-radius:3px;box-shadow:unset}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-input-control__input,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-input-control__input,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-input-control__input,.components-panel .components-input-control__container .components-input-control__container .components-input-control__input,#customize-theme-controls .components-input-control__container .components-input-control__container .components-input-control__input{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-truncate,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-truncate,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-truncate,.components-panel .components-input-control__container .components-input-control__container .components-truncate,#customize-theme-controls .components-input-control__container .components-input-control__container .components-truncate{color:#50575e}.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.block-editor-block-popover__dynamic-content .components-input-control__container .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .uagb-inspector-tab .components-input-control__container .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,.components-panel .components-input-control__container .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,.components-panel .components-input-control__container .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-input-control__container .components-input-control__input:focus-visible ~ .components-input-control__backdrop,#customize-theme-controls .components-input-control__container .components-input-control__container .components-select-control__input:active ~ .components-input-control__backdrop{border-color:#959595}.block-editor-block-popover__dynamic-content .components-input-control__container .components-range-control__wrapper .components-range-control__track,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-range-control__wrapper .components-range-control__track,.components-panel .uagb-inspector-tab .components-input-control__container .components-range-control__wrapper .components-range-control__track,.components-panel .components-input-control__container .components-range-control__wrapper .components-range-control__track,#customize-theme-controls .components-input-control__container .components-range-control__wrapper .components-range-control__track{color:#007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span,.components-panel .uagb-inspector-tab .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span,.components-panel .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span,#customize-theme-controls .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span{background-color:#007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span::before,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span::before,.components-panel .uagb-inspector-tab .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span::before,.components-panel .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span::before,#customize-theme-controls .components-input-control__container .components-range-control__wrapper .components-range-control__track+span span::before{background-color:#007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-angle-picker-control__angle-circle,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-angle-picker-control__angle-circle,.components-panel .uagb-inspector-tab .components-input-control__container .components-angle-picker-control__angle-circle,.components-panel .components-input-control__container .components-angle-picker-control__angle-circle,#customize-theme-controls .components-input-control__container .components-angle-picker-control__angle-circle{border-color:#e6e7e9}.block-editor-block-popover__dynamic-content .components-input-control__container .components-angle-picker-control__angle-circle .components-angle-picker-control__angle-circle-indicator,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-angle-picker-control__angle-circle .components-angle-picker-control__angle-circle-indicator,.components-panel .uagb-inspector-tab .components-input-control__container .components-angle-picker-control__angle-circle .components-angle-picker-control__angle-circle-indicator,.components-panel .components-input-control__container .components-angle-picker-control__angle-circle .components-angle-picker-control__angle-circle-indicator,#customize-theme-controls .components-input-control__container .components-angle-picker-control__angle-circle .components-angle-picker-control__angle-circle-indicator{background-color:#959595;border-color:#959595}.block-editor-block-popover__dynamic-content .components-input-control__container .components-circular-option-picker__clear,.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-circular-option-picker__clear,.components-panel .uagb-inspector-tab .components-input-control__container .components-circular-option-picker__clear,.components-panel .components-input-control__container .components-circular-option-picker__clear,#customize-theme-controls .components-input-control__container .components-circular-option-picker__clear{color:#007cba;box-shadow:inset 0 0 0 1px #007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-circular-option-picker__clear:hover:not(:disabled),.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-circular-option-picker__clear:hover:not(:disabled),.components-panel .uagb-inspector-tab .components-input-control__container .components-circular-option-picker__clear:hover:not(:disabled),.components-panel .components-input-control__container .components-circular-option-picker__clear:hover:not(:disabled),#customize-theme-controls .components-input-control__container .components-circular-option-picker__clear:hover:not(:disabled){color:#007cba}.block-editor-block-popover__dynamic-content .components-input-control__container .components-circular-option-picker__clear:active:not(:disabled),.components-panel .uagb-dynamic-content-wrap .components-input-control__container .components-circular-option-picker__clear:active:not(:disabled),.components-panel .uagb-inspector-tab .components-input-control__container .components-circular-option-picker__clear:active:not(:disabled),.components-panel .components-input-control__container .components-circular-option-picker__clear:active:not(:disabled),#customize-theme-controls .components-input-control__container .components-circular-option-picker__clear:active:not(:disabled){background-color:#f0f0f1}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-base-control,.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-base-control:last-child,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-base-control,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-base-control:last-child,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-base-control,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-base-control:last-child,.components-panel .block-editor-block-inspector .components-datetime__time .components-base-control,.components-panel .block-editor-block-inspector .components-datetime__time .components-base-control:last-child,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-base-control,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-base-control:last-child{margin-bottom:0}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-panel__body .components-base-control__field,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-panel__body .components-base-control__field,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-panel__body .components-base-control__field,.components-panel .block-editor-block-inspector .components-datetime__time .components-panel__body .components-base-control__field,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-panel__body .components-base-control__field{padding:0}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-datetime__time-separator,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-datetime__time-separator,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-datetime__time-separator,.components-panel .block-editor-block-inspector .components-datetime__time .components-datetime__time-separator,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-datetime__time-separator{border-color:#e6e7e9;line-height:calc(30px - 2px)}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time input,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time input,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time input,.components-panel .block-editor-block-inspector .components-datetime__time input,#customize-theme-controls .block-editor-block-inspector .components-datetime__time input{line-height:30px;min-height:30px;height:30px}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-button-group .components-button,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-button-group .components-button,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-button-group .components-button,.components-panel .block-editor-block-inspector .components-datetime__time .components-button-group .components-button,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-button-group .components-button{height:30px}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:first-child,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:first-child,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:first-child,.components-panel .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:first-child,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:first-child{border-radius:3px 0 0 3px}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:last-child,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:last-child,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:last-child,.components-panel .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:last-child,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-button-group .components-button:last-child{border-radius:0 3px 3px 0}.block-editor-block-popover__dynamic-content .block-editor-block-inspector .components-datetime__time .components-button-group .components-button.is-primary,.components-panel .uagb-dynamic-content-wrap .block-editor-block-inspector .components-datetime__time .components-button-group .components-button.is-primary,.components-panel .uagb-inspector-tab .block-editor-block-inspector .components-datetime__time .components-button-group .components-button.is-primary,.components-panel .block-editor-block-inspector .components-datetime__time .components-button-group .components-button.is-primary,#customize-theme-controls .block-editor-block-inspector .components-datetime__time .components-button-group .components-button.is-primary{box-shadow:0 0 0 1px #007cba inset}.uag-responsive-common-button .dashicon{font-size:10px}.components-button.uag-responsive-common-button:hover,.components-button.uag-responsive-common-button:focus,.components-button.uag-responsive-common-button:active{box-shadow:none;outline:none;color:#007cba}.uag-responsive-label-wrap{display:flex;align-items:center}.uagb-control__header{display:flex;width:100%;justify-content:space-between;align-items:center;margin-bottom:10px}.uagb-control__header .uag-control-label,.uagb-control__header .uagb-inspector-tab .components-base-control__label,.uagb-control__header .uagb-inspector-tab .components-panel__body label,.uagb-control__header .uagb-extention-tab label{margin-bottom:0}.uagb-control__header .uagb-control__inputs{display:flex}.uagb-control__header .uagb-control__label{margin-bottom:0}.uagb-control__header .uagb-control__actions{position:relative;top:0;display:flex;direction:initial}.uagb-control__header .uagb-control__actions .uagb-reset{padding:0}.uagb-control__header .uagb-control__actions .uagb-reset.is-pressed,.uagb-control__header .uagb-control__actions .uagb-reset:focus:not(:disabled){border:0}.uagb-control__header .uagb-control__actions .uagb-reset:only-child,.uagb-control__header .uagb-control__actions .uagb-reset:disabled{margin-right:0}.uagb-control__header .uagb-control__actions .disabled-element-wrapper{padding:0}.uagb-control__header .uagb-control__actions .disabled-element-wrapper:only-child{margin-right:0}.uagb-control__header .uagb-control__actions .uagb-control__units{direction:initial;display:flex;align-items:center}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button{font-size:10px;justify-content:center;padding:0;text-align:center;text-shadow:none;text-transform:uppercase;width:100%;cursor:pointer;padding-right:5px}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-pressed,.uagb-control__header .uagb-control__actions .uagb-control__units .components-button:focus:not(:disabled){border:0}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button:first-child{padding-left:10px}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-primary.is-small,.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-secondary.is-small{box-shadow:unset}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-primary{background:unset;background-color:unset;color:#007cba;box-shadow:unset}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-secondary,.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-tertiary{background:unset;background-color:unset;color:#50575e}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-secondary:hover:not(:disabled),.uagb-control__header .uagb-control__actions .uagb-control__units .components-button.is-tertiary:hover:not(:disabled){color:#007cba}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button:last-child{padding:0}.uagb-control__header .uagb-control__actions .uagb-control__units .components-button:only-child{padding-left:10px}.uagb-control__header .uagb-control__actions .components-button.is-secondary:hover:not(:disabled){background:0 0;box-shadow:0 0}.uagb-control__header .uagb-control__actions .components-button.is-secondary:disabled{background:0 0;color:#ccc}.uagb-control__header .uagb-control__actions .components-button.is-secondary{color:#007cba;box-shadow:0 0}.spectra-control-popup{position:relative;top:15px;width:100%;border-radius:2px;padding:16px;margin-bottom:40px;box-shadow:0 2px 8px rgba(0,0,0,0.2);background:#fff}.spectra-control-popup>.components-base-control{margin-bottom:15px !important}.spectra-control-popup>.components-base-control:last-child{margin-bottom:0 !important}.spectra-control-popup>.uagb-size-type-field-tabs{margin-bottom:15px !important}.spectra-control-popup>.uagb-size-type-field-tabs .components-base-control{margin-bottom:0 !important}.spectra-control-popup>.uagb-size-type-field-tabs:last-child{margin-bottom:0 !important}.spectra-control-popup .uagb-select-control--layout-inline .components-select-control{margin-bottom:15px !important}.spectra-control-popup__options{margin-bottom:15px;position:relative}.spectra-control-popup__options--action-wrapper{display:flex;justify-content:space-between;margin:0;align-items:center}.spectra-control-popup__options--action-wrapper>.uag-control-label{margin-bottom:0}.spectra-control-popup__options--action-button{margin:0;height:28px;width:28px;padding:5px;border:1px solid #e6e7e9;border-radius:14px;color:#50575e}.spectra-control-popup__options--action-button .dashicons-edit{font-size:15px;line-height:20px}.spectra-control-popup__options--action-button:focus:not(:disabled){box-shadow:none;outline:none}.spectra-control-popup__options--action-button:focus:not(:disabled).is-pressed{box-shadow:none;outline:none}.spectra-control-popup__options--action-button:hover{color:#007cba}.spectra-control-popup__options.active .spectra-control-popup__options--action-button{color:#007cba;background-color:#fff}.spectra-control-popup__options.active .spectra-control-popup__options--action-button:hover{color:#007cba;background-color:#fff}.components-base-control:last-child .spectra-control-popup{margin-bottom:16px}.spectra-media-control{position:relative}.spectra-media-control__wrapper{height:130px;border-radius:3px;border:1px solid #e6e7e9;position:relative;background-color:#fff;background-position:center;background-repeat:no-repeat;background-size:cover;-webkit-display:flex;-moz-display:flex;-ms-display:flex;display:flex;flex-direction:column;justify-content:flex-end}.spectra-media-control__wrapper--small{height:96px}.spectra-media-control__button{width:18px;height:18px;-webkit-display:flex;-moz-display:flex;-ms-display:flex;display:flex;-webkit-align-items:center;align-items:center;justify-content:center;border-radius:50%}.spectra-media-control__button--add{background-color:#ccc}.spectra-media-control__button--add svg path{fill:#fff}.spectra-media-control__button--close{background-color:#f0f0f1}.spectra-media-control__button--close svg path{fill:#555d66}.spectra-media-control__clickable{cursor:pointer;border:unset;color:transparent;background-color:transparent}.spectra-media-control__clickable--add{width:100%;height:100%;-webkit-display:flex;-moz-display:flex;-ms-display:flex;display:flex;-webkit-align-items:center;align-items:center;justify-content:center}.spectra-media-control__clickable--replace{width:100%;height:25px;color:#50575e;background-color:#f0f0f1;position:absolute;bottom:-1px;-webkit-display:flex;-moz-display:flex;-ms-display:flex;display:flex;-webkit-align-items:center;align-items:center;justify-content:center}.spectra-media-control__clickable--replace .uag-control-label{margin-bottom:0}.spectra-media-control__clickable--close{position:absolute;top:10px;right:10px}.spectra-media-control__icon{width:100%;flex:1;-webkit-display:flex;-moz-display:flex;-ms-display:flex;display:flex;-webkit-align-items:center;align-items:center;justify-content:center}.spectra-media-control__icon svg{width:30px;height:30px}.spectra-media-control__icon--stroke svg path{stroke:#959595}.spectra-media-control__icon--fill svg path{fill:#959595}.spectra-media-control__icon+.spectra-media-control__clickable--replace{position:relative}.spectra-media-control .spectra-media-control__footer{background:#f0f0f1;display:flex;justify-content:center;align-items:center}.spectra-media-control .spectra-media-control__footer .uag-control-label{flex-grow:1;height:26px;margin-bottom:0;border:0;padding:0;cursor:pointer;font-size:12px}.spectra-media-control .spectra-media-control__footer .spectra-btn-image-extender{border-top:0;border-bottom:0;border-right:0;border-left:1px solid #e6e7e9;padding:0;width:40px;height:26px;color:#e6e7e9;display:flex;text-align:center;justify-content:center;align-items:center}.spectra-media-control .spectra-media-control__footer .spectra-btn-image-extender svg{width:16px;stroke:#808285;stroke-width:1.4;fill:none}.uagb-variation-picker .components-button,.uagb-variation-picker .components-button.is-secondary,.uagb-variation-picker .components-button.is-tertiary,.uagb-variation-picker .components-button:hover:not(:disabled){box-shadow:none;outline:none;padding:20px;border:1px solid #1d2327;border-radius:3px;-webkit-transition-property:border-color;-moz-transition-property:border-color;-o-transition-property:border-color;transition-property:border-color;height:auto;-webkit-transition-duration:100ms;-moz-transition-duration:100ms;-o-transition-duration:100ms;transition-duration:100ms}.uagb-variation-picker .components-button svg,.uagb-variation-picker .components-button.is-secondary svg,.uagb-variation-picker .components-button.is-tertiary svg,.uagb-variation-picker .components-button:hover:not(:disabled) svg{width:36px;height:36px;fill:none !important}.uagb-variation-picker .components-button svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button svg circle,.uagb-variation-picker .components-button.is-secondary svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-secondary svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-secondary svg circle,.uagb-variation-picker .components-button.is-tertiary svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-tertiary svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-tertiary svg circle,.uagb-variation-picker .components-button:hover:not(:disabled) svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover:not(:disabled) svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover:not(:disabled) svg circle{stroke:#1d2327;-webkit-transition-property:stroke;-moz-transition-property:stroke;-o-transition-property:stroke;transition-property:stroke;-webkit-transition-duration:100ms;-moz-transition-duration:100ms;-o-transition-duration:100ms;transition-duration:100ms}.uagb-variation-picker .components-button:hover,.uagb-variation-picker .components-button.is-secondary:hover,.uagb-variation-picker .components-button.is-tertiary:hover,.uagb-variation-picker .components-button:hover:not(:disabled):hover{border-color:#007cba}.uagb-variation-picker .components-button:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover svg circle,.uagb-variation-picker .components-button.is-secondary:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-secondary:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-secondary:hover svg circle,.uagb-variation-picker .components-button.is-tertiary:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-tertiary:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button.is-tertiary:hover svg circle,.uagb-variation-picker .components-button:hover:not(:disabled):hover svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover:not(:disabled):hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-button:hover:not(:disabled):hover svg circle{stroke:#007cba}.uagb-variation-picker .components-placeholder{align-items:center;border:1px dashed #555d66;box-shadow:none;padding:48px 1em}.uagb-variation-picker .components-placeholder.components-placeholder{align-items:center;gap:0}.uagb-variation-picker .components-placeholder.is-large .components-placeholder__label,.uagb-variation-picker .components-placeholder .components-placeholder__label{font-size:24px;font-weight:400;line-height:29px;text-align:left;color:#1d2327;margin-bottom:16px}.uagb-variation-picker .components-placeholder.is-large .components-placeholder__label svg,.uagb-variation-picker .components-placeholder .components-placeholder__label svg{margin-right:12px}.uagb-variation-picker .components-placeholder.is-large .components-placeholder__label svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-placeholder.is-large .components-placeholder__label svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-placeholder.is-large .components-placeholder__label svg circle,.uagb-variation-picker .components-placeholder .components-placeholder__label svg path:not(.spectra-loop-variation),.uagb-variation-picker .components-placeholder .components-placeholder__label svg rect:not(.spectra-loop-variation),.uagb-variation-picker .components-placeholder .components-placeholder__label svg circle{stroke:#007cba}.uagb-variation-picker .block-editor-block-variation-picker__variation::before{padding-bottom:0}.uagb-variation-picker .components-placeholder__fieldset{align-items:center;text-align:center;flex-direction:column;max-width:90%}.uagb-variation-picker .components-placeholder__instructions{text-align:center;color:#50575e;line-height:20px;width:100%}.uagb-variation-picker .block-editor-block-variation-picker__variations{width:70%;justify-content:center;margin:32px 0 0}.uagb-variation-picker .block-editor-block-variation-picker__variations>li{margin:16px 24px 0;flex-basis:content;width:80px;gap:16px}.uagb-variation-picker .block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation-label{width:80px;font-size:14px;font-weight:400;line-height:20px;color:#50575e;-webkit-transition-property:color;-moz-transition-property:color;-o-transition-property:color;transition-property:color;-webkit-transition-duration:100ms;-moz-transition-duration:100ms;-o-transition-duration:100ms;transition-duration:100ms}.uagb-variation-picker .block-editor-block-variation-picker__skip .components-button,.uagb-variation-picker .block-editor-block-variation-picker__skip .components-button:hover:not(:disabled){margin:32px 0 0;border:none;padding:6px 12px;text-decoration:none;color:#007cba}.uagb-variation-picker--fill .components-button svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button svg circle,.uagb-variation-picker--fill .components-button.is-secondary svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-secondary svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-secondary svg circle,.uagb-variation-picker--fill .components-button.is-tertiary svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-tertiary svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-tertiary svg circle,.uagb-variation-picker--fill .components-button:hover:not(:disabled) svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover:not(:disabled) svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover:not(:disabled) svg circle{stroke-width:0;fill:#1d2327;-webkit-transition-property:fill;-moz-transition-property:fill;-o-transition-property:fill;transition-property:fill}.uagb-variation-picker--fill .components-button:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover svg circle,.uagb-variation-picker--fill .components-button.is-secondary:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-secondary:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-secondary:hover svg circle,.uagb-variation-picker--fill .components-button.is-tertiary:hover svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-tertiary:hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button.is-tertiary:hover svg circle,.uagb-variation-picker--fill .components-button:hover:not(:disabled):hover svg path:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover:not(:disabled):hover svg rect:not(.spectra-loop-variation),.uagb-variation-picker--fill .components-button:hover:not(:disabled):hover svg circle{fill:#007cba}.spectra__change-indicator--dot,.spectra__change-indicator--dot-right,.spectra__change-indicator--dot-left{width:6px;height:6px;position:relative;background-color:#007cba;border-radius:50%;display:inline-block;vertical-align:middle}.spectra__change-indicator--dot-right{left:4px;right:4px}.spectra__change-indicator--dot-left{right:4px}.spectra__legacy-icon--block-inserter-label{display:none;position:absolute;top:40px;margin:0 auto;padding:2px 4px;font-size:10px;line-height:10px;color:#94a3b8;background-color:#fff;border:1px solid #e2e8f0;border-radius:4px}.block-editor-inserter__panel-content .spectra__legacy-icon--block-inserter-label{display:block}
PK�][��SU@ultimate-addons-for-gutenberg/admin/assets/css/update-notice.cssnu�[���.uagb-plugin-update-notification {
	margin-bottom: 10px;
	max-width: 1000px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.uagb-plugin-update-notification__separator {
	margin: 15px -12px;
}
.uagb-plugin-update-notification__icon {
	font-size: 17px;
	margin-right: 9px;
	margin-left: 2px;
}
.uagb-plugin-update-notification__title {
	font-weight: 600;
	margin-bottom: 10px;
}
.uagb-plugin-update-notification + p {
	display: none;
}

.notice-success .uagb-plugin-update-notification__separator {
	border: 1px solid #46b450;
}
.notice-success .uagb-plugin-update-notification__icon {
	color: #79ba49;
}

.notice-warning .uagb-plugin-update-notification__separator {
	border: 1px solid #ffb900;
}
.notice-warning .uagb-plugin-update-notification__icon {
	color: #f56e28;
}
PK�][�,m�WWEultimate-addons-for-gutenberg/admin/assets/images/uag-placeholder.svgnu�[���<svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect width="250" height="250" fill="#EBECEF"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M61 78H187C188.105 78 189 78.8954 189 80V150.24C188.946 150.191 188.889 150.144 188.831 150.099L161.588 129.109C160.394 128.189 158.702 128.298 157.636 129.364L138.121 148.879C136.95 150.05 135.05 150.05 133.879 148.879L99.6079 114.608C98.4416 113.442 96.5525 113.436 95.3788 114.594L59 150.513V80C59 78.8954 59.8954 78 61 78ZM57 80C57 77.7909 58.7909 76 61 76H187C189.209 76 191 77.7909 191 80V168C191 170.209 189.209 172 187 172H61C58.7909 172 57 170.209 57 168V80Z" fill="#6F7B81"/>
<path d="M148 110C148 114.418 144.418 118 140 118C135.582 118 132 114.418 132 110C132 105.582 135.582 102 140 102C144.418 102 148 105.582 148 110Z" fill="#6F7B81"/>
</svg>
PK�][�
����Aultimate-addons-for-gutenberg/admin/assets/images/placeholder.pngnu�[����PNG


IHDR^^�+w	pHYs��sRGB���gAMA���aNIDATx�݉VW���cb�77��ϖێC0���+�F�9�}k�Dg��D�kkנ7���e ��V +��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ �A�����O��]���i1_�E��r�<.�?�l����1�����v�����~?���7o��p'mm�3��凈�Ng�4����Y��c���'��5��~㽽]1�y3��]&�`<�����!��]0l��D�`�}���˫YM��׷�f<�k]�U[[o��~:h���+^6o5َ�o:ۯ��DL�G�&a6Mxٌ�nG�d;��aS"�g�'�� �//��ݤ˫Q���"��G����v�K�݄��ӧ�>���(�
0�Cxy���K�	���8�3/����U{a�a�3	/O��~?�T�A�M��2޿{k��S��o��Y+<�����Exy�)�eb���/?�~y����.���]�)�e�>��==9L�c�g,<��/�>�/>��ݢ]=�!+&^Z�Z���?ۻ��yV|a�%��F6�}�Ct_Q���Ϳ��$o�Ź��/��w��~���O�� y�����)g=f��S��c]|�jd�O��C��
��_��3��-��O��#��M��?���;��M�x����8w�)c�ϑ�|�Ax+W�}�x�(C<W��9�n�[��W@\���������?��z	o�‍�'.�v��n�[��Ø�����I�Ix+{]g0�/�C��:	o�b��&��=���O��oe�"	{�z�G/y�RᭈC�b�k�P���ޖV�ʡ>�[����'�+�[��Cx+a�P��O~vaE
����C<Ǘ#�f�@x�F7N��8�f�-���e���5��Ox�N��􎩷|�[��8�?���	o��v���[6�-T��v�+�k�T.�-��v�Oe��'S�.��lcW+Ixt}�-&nM�E��rX�=��l����܎��KD�G—Gx�%�t���oab�/9��<�[���,5�)�
��eނܚv�
+��oA�SS
�s��,�[�x;9���C7i�PN++���D�S���Cx�,y��*��[��d��[fS��Ro!w~����܋s)��q��e�<%~F`+���A����[S�άJ ���xY����[�L���J��s�L��M�� �P���� �p/�r ��������g�����d&��	/@f����`0�N�?+e^�̄�[[o���[�-�`0H@=���o<M�ggۋt	�F��G��g��[���4�'��
/�q ��[/���$�Ox���ewǓ�g$~V�>�R!�&��Ź�[�����wwe�B������Cx�	O�3R�-D4��V���c���3U�]�����Eނ�'x��^��[��j\��?Ŋ��[�-�ᾩ��;4�Gxstt��KVP����G��xW��xK#���}�񡩗�V+���[KV���$��#�.� ��f(���^��ӓD���P��[L�+��ck�b	o�� ���Q��D�l�[�ӓ#SoO&�%�3��S�����	o�L����/���™z�%v����	ob�A�����)du�
����~��zo%�-���굷;t
YE��"���m�z��O�zoEb�@[}��;�V����+��8�V'᭐�C�9������o�LIu��Њ�N�[�8������j����Z	o�b�;�$����8Q/�X\X��߹�� �\�^7�;��٭\�"��ė2�se�[?��H����������~��q���aw�E�G����Hl���:��_��gķ[D�����ķD��������~���:�!�8{At�m��8�!�n���<-w�׳:��)c�xiC�_޻��ŋ[\�&��7���e���}��t�.G7�͉���>�e�|��j�/�w?�m&�A���jB�5�%�~���u�1���ˣb�ۇ����)>�2>'�}x�Rx��X=\\��)7>�.���^�S��\��t��:S.k^�����_뇿[}�R��k^�/�����x�V��g�X����ѽ����3�兄�����oz1."�lN�;�8hvx���p�
^6o<���&�����t{|x����n�
^^���8��N��x�+�"���{��谽���W"���pDx<���|�� ��áɖ���#n�3��Ӥ�qyqw��k�8�v���N�{MdM�� �Kw�b���q�X���G��ǯ�yuK˭7oڛ�lo=<vml�j2��#� �� 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��l� ��b���iqw�<ާ����q��k���r�����h��o��z�|m��\�������mmo����ng�׀��ıQ�ÿ�b�x�k��|��'������O�{M|Wa�i#̃�A���æ/϶�묉i�����$[����������a��&���a���N��z3��-�7�,��y�Y���v6թ�D�&�m��ǽ�]A�)K�Sl��_�ϱ�E�c���L����@�{��W��d��u<��b3Yx��0��{ii��1�F\#�S��]l�V�(��
p<�tl*����Bڛ��a��<�R��T|p��L����Ǫ�_N�7�k��|bq��T1�N�ض����ZI�����R���q3Վ�v��⢏���n�7��(��vY\Z{۬��jYCL���{�ZbO��Kx��
�M��pL�G�N[���Ul��1^E�$��s"�	����rtc�%�����[G�0›S�6�Z;[�"v���&�NS�Fxs����
���㣃v��W'��e�J���4�>;=qz���M����9X65�R<S��M���v�)8B̋	�K��	�W#�-�>>:l��}k��'��#v������k1��==�����^\�ڵ�@��Mx�!��4^��~����	�1��f���}����K�R��Z�q����J\���Y/�%`���7�{���?��2�[S�tv��C�k�?��ۓ>��^k��b���/?�q��Wxcʍ���&6@7�p��Ox��y���ܔԳ��	���2�֓�wY��K����Og,@!⢥xw���3��'�Z�2�ގ�l6�z�P�!�p~��ibP�wgo���a�L}���O�tq�P�v�Z�W���*��?5��M�{�8^���4բ�U��hP��p'���nmm��-��'���х�͚����+:����ԯ��^х~�!�ņ7v�����рR޸��N�-P��o����b@��KSTxon'.��&�������G��U,���ΛF�����碹�
�8�!�\-E፽��i��D#.�ʸe@��+{]`ъV�o�G,����C���Ս/�u�ʡ�g9t:�V���;�Ά7&]g1ߣ�Sog�k�^��So'��T�]�%�<�v2��7�/w5��y��o��L`b���}{;޸�&Dtonǩk��q��%�Lf�k:^�d6�fܽwѝ
�t6k��i�@�ĺ�k�o�Txg�r�	��k�;���b����&ޯ��x�W��w났N��~�j5`��n���VxXz�S�u�5t�-E}�;@
� 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��Lx2^�̄ 3��l�|-�,�����AIEND�B`�PK�][3��A1A1=ultimate-addons-for-gutenberg/admin/assets/images/uagb-10.pngnu�[����PNG


IHDRD��;��tPLTEz[�qF�O��խ���������������Ĵ��������״��e��QG�9*m?&u/ \,V,VB+,VC*}B)},VSC�B({^)�iZ�M`�E��D��A�����wd��u|��������������”޴�������尥�Æ�ș������������������������������������������������ÿ������������������������������������������摹޺��s����y��i��]��W��_��J��B��>{�_�Mq�Us�;c�X�I%�@(y;%pB({J3�YFmD=p?0a8$i4%[/!W-V,Vn���-tRNS�QK{ez]N?4,&.@^Su����ȍ����������t�/OIDATx��݋[I�0p�q.���e'#$dtA��mDEp|"&$Y7�|��L@@��>������ץ�:����yF�fȘ�U�N���0�c�^\����7��7~�0.���UA�0�@� �yNi��\�<}IC�'"�l�[>�K�>Z~1q�-D�O�<y�����	�GC�� J<���~s|1q-hD�G9��D�~{��S�o��_�� �D����G�H�
?�A"(XC"@�  �D�A"��u���\���
��3���  �D�A"@�  �D�A"@�  �D��@@� �D�A@"@�  �D��O�!�E@�~hۮ �D�"@$�+��#*DO�tm��c=a�^�%D��D��qGA!��Q�"z��t�B���� D�"@� D�"@� D���(]*�z���t��*�Bs��;;[�R/!*APѣ�j[���YlQ���6� lQ�MDBh�YS���5_�E��W��C���_HW5�ְ��*F�S�䉨���ļmPO��?Y�Hu���"†x�N��5��
n?
,�&J��-���woU@��Ց!�G�vJ�y!*"(�KMj D^�PB�����* D���|w�-5�ET��*�G�4_X��0^�b��Z_/t��}BD�H1G��;�.��-���	��"��yTm���
��xW7���Φ���Q��۴9�㏪o��4$ր�Q�>��Ӧձ�Up��ш�D��'�wx0 b5���1���Pj�����|�0#�9	
8"�J7�$��l6;DT�1Wx%��[DÀ�>�����1�G��H޽�NZ� 윈�����6r"�����
HO�p�jj�р��vx�k�g��|��
;zo-~�p"��o�hP�DV۳m-��nG1e)~��ł[s�����* HDk+�hk}�V�Mxވp���j�[#wT��[@4��;f�c�Ӵ6�����F�-[r�,�{��`"2���s2�=�[i6O�C�SϰÐ�F�ETԷ�VB�y�����\��LSݶ�h0a=5򪛫��VS�V�o��Ҵ5�
��-�f���=� ��
�

"<��q.�F�4���E��|Eu�<�;��iQ����(.�n�c/RD�Q���$��uQ:yr��$���<��"��ʝ�d�D�(Q����΍�=�T<��z)�;�l}��T��@T������D%��v�Y��MҠ�S�qDFO�8^��%��[�ऴB�!`��d|#�(i�����ā�<ə��~h��V� ���8����ԉ�K���ϯ��H*Q� ��DtÉ��8 ��G���_ME�'�BQ�_����ՙq@!�(+@t��_D�H�b-��P��: DR�r_Ċ�"@$�B���I!J��駓��y��1�y")D�*8N�9b~3�g9��lSZ�A��4D���h��Da#J ��!�É��D�"������M�zo� �� D���O�󛎜� ���@,�L�3�}��U@���cD�ND��G �F�A�6���������Я@��%�DHC4��Es��܍���Q獌zږ[#"*| Jv0��y��Mgt�@T1KD���ޥaC!.�l+���?�"yDUc$��������l��h8ن�XA��h�D���n�"D�5���D�Og$RCy��lP�*�hh#�D��?x��U j;����\�D�Jʉ�
��OP�AsyC>���@��
 �z.��`@�
�����(�L�Ѣ��q2��b8h<���^�E�2z�H�
a^��8��j��H<9�D�h'4����x�"�P*��/��A���~2����NU��I�C�±��[��������B�)�ؚ�LWMc{O�7�?����������D�f�3��{{<Do��voO�\	Q!�)��j���vB(Zo�y�N��>3u{d<D%l�c(D=��s$R[{��E��6]�G�GT'�v����g4��hcO6��G�l�a!jt��gf�Y�W�*��^D���r�b3Q
�B
�F���
g;���-��: 
r��r{���|��H���@D�z���f�=
g襭�-U��q�o}��r�����[4>�(����Q	h"1y90D��2C��V���Aն���F$�^W�3�Q�6�-MO��5?����x<���cil�e���U�L@�~bT�Gc����;� ��:ш��/����m��v�z�NnK\@��t���E�����!B�-�z��5�_��BQ���iLu-8R�r��>��$�$�Ǩ�l���m� �`(r_���m"�	Q�J���
�NDY�����(Zu�" 
�\�Nh��
�ݾ"�ä���܍��'̽G�256m̺� 
h(b&�bk�����+�~���@����A*Nuۢ�IX�qbݫC��Owbhoj�cDx��2��K2�N8�A�P� B� 
z(�&��b�SD�QY6�!�h�+�NM��3u�?��Ά"G�zc�3DSW:DT�aB�F�?�"""[bM��f^+�Oh����t�׆V4�{vD���]o�"�6*�pݬ��"@�qT�;�/[�*��"��R��vD	�$��{[x�c[�
� 
(�;���}G��;B�enr�T��!" �ci��jLk5@�PT��J�*��Q����C���__h�D�D;[M�a�qE����"cB#�6V�>�M�}�r���^Xp��>�Ӗc��?P�-7�·"m��/��{{�����Sk��x�x�EG/D���_f����4�0U쪐"}J�m�d�����ꦠ��ku�'=E�sjT�!	e�yC��	��E�6�!�=%,�F�;�.A�#Jre��Ӡ�~M-�I"Zz�h����"�����B4��h�ڭe\�3���p>󍨀
C���h�O� �RS�DW��[��
��s˜o���{��q�|�e�9N^M�ިyPߖ�C����ʣ�>�G��"�jU�(���E�3k6�-Z�E�h���C����J�DK̿�4�P�V�ͭ�s=3���p�G��#� Rj!Z-�hD�v[>�G��h��ʮ���֨�4e"rE��m!�q�������y��7C��K���F����(���5Z�כL��C�Lh)��hCj�㊾�zo�(��A��
WD�[g���[S�$:���5I���Fy��g~R�"A�Lh[�w[��c�QplM�GR���� �
�B�؟EK�}h�:v&?���e��;�Q�+4�v��Y�J"���q֥��!��~�����"�9��D���Q6z��b�*_����'
 �
���p�gQ�od��!������T��H��EDdQ���U��Y��o̿hCt�De%iU\�f4�,�(�7t�9�����vf��|����w�^�#�d﬚�Vq�3�]�[�c!RN�H�E�g���RmO�.u2��qU��
1$<��B�<Fuц�K�f�̺=De�NH�9m<�F&���	 �D��̑�t�XWͻ!��n%��عK�QwI]��g֣� �̥�J� J���8��"�$E�:���/D�Ϯ�NQw�� �'E�LgU���c��>9w�u@�UDRG���%fy�n����m Jz�L�QH��r�M��{�����"7�)�EAD�Ϟ�e��h��a23tf�Hl��!�L{:�>�@
"��	�CdW�hn����������]��g^�ܢ"q��Mρhza!Un�9�I��oku/@D����Ђ�lv���~u��
>��I�h��������Dt:�@��z��]��5�q'4�Bt��RT�3^��E${���Rk�N��&��oD'VT<�j���m@��萴�$��&٤(D�%섖�h��ZXpˋ��R�,�0Yl9�^߿߷�;�\�w��,��4Nd
-�wk�&�e�x�TS@"ewʈ=�������G�GGG�̓>/���RC�_��f���&4�rR%ݡ^&�$�:G��>�n���8<8ÿ]c��{� *�wЪ6Ӓ��n9Q
��*�b*W��(D��
��9:��9c�:�&E�Ad�9����ׄ6M#Ee�No��c 
 '��
,DGg��?�ؤ�R0�ʜ[j9
-�
�`7D������2k
�(Dq/D��W��I���e�^�ƧP6��R"?Dp� 
QB�r Dttv��Fk�6`�xl�����,e�?��R�=8��T�
 

ф�����3����=��W<ö��}���	�D�ªǏp���@T�>T�\a����N)�w ![j���3"^j�ІRUX��(�3qED�:��Ȟ�V3���B��/�(AP�Q޾s
6)�"[SZ5�[������LgL��*$�A���\�M��Cd�+���k�B�*��5�U�;#�(D	-svz9N��8����NJ�}���Vg�d���6�٧�V; 
ф���E�a�3]e��K�!���B��N�6�T\泪�r���������>\��g��/ct�u���m?���}�_4D�}�|f�
4ꇃ(wp�$���'�=4�G�r��Y�W�]��*��*Z���dRT���*��ŋ!!�Ӄ6G��g9�u��xZU��"ʫOtDe����H�6,Dq�����d��f�3�A\ᔔ
D��M|<yQCQ�}<�]�(D	�*B�̬I-�LcZ���`9c!r�%7%u�DU��H�4 ���9D"����Oۖg�BADM?J�@� :�2�9K�F�����=��M�ا�b"z�n�%0���x/��+L�A��|��ig��Gem�K��t�1#D�y�n��^,�3^i:��s�k���YW�U36D����3�V�S!ϐ�F��F���
��RF�8ÑÈ�8���Ѡ�푢�&D��F
Q�PȺ�niR�y���r�R(���ALŹCJa*��&�r�X#��K�D�D�c��Q昩Ar�`}#R<�\U2ND
���Ex�Gj�T5�n�D1"�>�u�̨_D��W(
�VJ�YW�/��ZQ�ub�Da��l�M���[���#j���d>f�E�Yی��~��|�$�:q�Z����,/Dt�^z6����f��q�Edn�O�k��'�������@Fpg�bD��"B�����4s��"�:���Qd��GbDZ���H��O�@T3�D�A�Z����&4�@F�8�gbD�hCss��u��y�H��DQ�1�$�#��/��A��u���N�U��>L+Ds^�RQ�^t�E�5O�pb툳��tA�ɩ�]���t�F����D���Lj��`��"�J�6뀨+��3����������Y����g��т��b�9�ɺ�*��#�C�uG���vR'����BUA�N��t��j�:pe��t��B��\��x���yfV��0���NgeoD�(��#�'�Q>vJ�f�RO-�P^�7=x�l;�$�6���ω�ވR��1�����>�u�^���n<��r̙��ވp�5ɯ��\n��r��w1��1��m"��#rF
	D}ؒ���6��n<�®�R����gFgf~j�~g��lp�FIQEQڜ�l��P<D��j(���Ӑ�ƓX�nz�3�GC�m!R�m:3"E����f2�|󦵻�[RLD��C�YDK1��(ۥ�Xޥ�G��
��zAn�,e��7�8�a"*X��FT>�J��ź��בF6="@��s�c:���8��#"Ð��&�X��%��9����ȟ�P��;��=D���wY#���P=j���j?&D�K_�_s�S���J��yl{Լ���9�A��?�%r�x>򊑰#����EDw��FV�Y�ΰ;���on�j��"~.܎���A���V���$K��A
e ��n��9bE�����Q���v�l����aW��ŏ�����M�W;�!1��f�~6��N�*;
�܁�4f\ޙ���(Ǽ+=zњ ����hpcz�3}>�ޜ���7
FQ>�u�QGy�qX��K����X@�\{�1T�$"�@��{���Q�gyΞ�Q6D~/^ܠF tw���LqE��3����NNO,@vD�Q��q��D��e�^A���fM��Z����fx���}6p�̥R3==��ٜ�Mg�&E�>-aCt"�w������m��Ɏ}
NG�6���lP�5��M��PRd"JF�t&8'~&{5s�Q�F#�V��R���z13����<}耉(��YsV���r"��"*R�[�'����e�T����U�FC��h�AaG�������E� �gS�qJ�QhD��z��j��#"tJZ/Ǣ�X=?�.('	��͟n����JT�<鸭��Md,Dk���A-æ���}������#Q���?
Dx:��4���zS����K�#���!�6D�G.W{D���9#mB-��z�-D=ާOՇO���6��9-���ڸ8A����ň����9�шp��WkQ?����D�:"�=�h3RD/x��u�ܑ�ɟ�!bw��ڋ)5Q�F4��0"��D�|r�-|/D�D��O�6� ����'v$����>��7�F�(i+2�[�=�He�XD�-�C��z��D�V���d��L��׫-CGI;�|� j0�6���9�B���	�KkQ׫�7��""�7VK~6�Q��m�m:�����:V<]��8{�G�ґhS�\[���j�,�4Z)��(y�v���Q���{�ʰ"�|�D�d]��Ӊ[Wp9R"!��� *��ۯ:���ADt�Ⱥ�ɧ����:��qó�՘��m��a�	E����D�=�x�DO�uM�򎽆�ъ��6`{;��i��m��f�,Ǚ��<���Zɣ�ւ���
W�%�yz=��ŝW�}u:�!��P�˚�ND�������E��H+i_�أw`��<��~ڀe�� ;:";��|�	�3�l�����"-�W�3��ef�L]�?o웡p��9�u>�:��L/"�7=ޛ5E�:����NE��X}��P�3�%(D1��Q�(���"�D��q�S��d�����ID�M��0 BY�z>�@�'��Z���J��ӫ���(DGt'?��(dDۂM
��0!���)�&"�:�Df��Edv�vӑ��">��X,ϯG�Tx��q�Y����5��=����BD�9���E��{6DGΫA���.h&b�*DK�+��T*�T�+�8���4�(M�e�Q#�՜liH-Y�;��<z��3�m�Y�-:�5*�u�x"Z���8VJA�%U�����=�?_]���z�4"{ބG�3�&~�{gLG��c�K� Uhg�l��6`3���������(��w��:��&�dEg��Q�D��WۋU�\��2���<��7`W�>v"zfQ"�i_X�`<�D1"-�>�z��O�2���Nr"�H�?�K����0���ԅ�(� �S�=tQ�w�L���(�J?�a�Ym1�(/Dd?3$rDtC�^���4��gވ=
���R�"D��٭��膴�'Êh�"G�����/���FD��f�m7D/ѢIFQ��JIQ�S�5bD/���!B�~�-.f�:�uZ�)�qv�sވD�a"j�G��RiJ[\D����.k��w�pA�l5��C���"J���=��g��]��z`-c��y�6X����Dg�=wD�"FĤ=�'n�2���9Ʌ�ı�'Jh��/d(+�5N�~�����x5ZD�6��`��]}f!r��,�+��j!��/$]�{�κ�#ZՒ	Dt<k(�����фܵa"bO&*Z
Jt	��z~�c�H��#"�!=<!�j��q�������좹�7_��X�Ie9�u�c�k=�D�b�-/�2Q�#Qo��X�4DfHNgh$Z
;%:p��[��������j!�ؓҖ���������S�u�BT�;N�]DJ�i��1L�6��@e���jYD6N��~�m!�6�Q����Kp�
j�j�;%zO�+KA�EDnܨQu�A���^���Z���9�S���7*�*���%�vu�fT+
�2���A�������SҭEߎ(�)']�ʙ�v�5|ݮ�s2�B1*"r9PE[�#�%�Q�E	�~4D��u@�TŽԸ��F�
QS�BZ+�;D�Չ���_���&���y��)�I��\Dyv��h,LD�R㾶��4�W�!E��@d^&�Z�@��@��9�~4D�ZcP�E���؆C{�P�U��
A��:��ԜMF�x�1��P泸��@�d�
�R$K4�/p���TD
�UcF%�P�g����-������"�{�:e��Y�s��
DZi�B��|r��"5�Z��������t�*2�&�?Z�����^���
g���H�o�a)�f�=p:��d&+�k���6��	-�A����ښ���8�{�k�&Xo���ʍ�0%2�f"r<q���<�
��s *+҈��~#i�
+%b�ѢB�3�B�U��-���cA�}�4��� "=iFR]"��Q���29D9�K���7N0���QL�9�]D�L�XD+2���vATʼn��?��R����H���i�Y�!ZZ��&�
m���4Dϴ��PXR��讶#���klQ���njO��Dn�pcc��&)5�Ȋ��Y�Zv��'�MT��_F�g/"���� D�m��ef3!"A��=D��^RȞ��q�}K���nlD����V�.
E4���={`�c J�A���L��(��c]��l5��(�n���Kvu��DhA����3�D�iJSF�&���ھ&��_|��/2"r�^���j�V	p�x��]mC�r.��6�����������i)`v�6p�U �J$1�kD��,U�D����;�1�~��QY�%���ZQp���7*pV���I���vWM��2Q�V����]D���#�#Q*�L��$�f�.B�����mD�W��.��b��DԢǙ���"{9�U�n���h�����v����h"�N�@q���CA��`�.:�U�E�|�i��At58Di��u����P��X�k��|?Q�"�(�QP�YNb��D����bh{gۢ��Ml��1b+�F��B���:DT	a>��n���L
":%�M�
��̔A@�Q*�!RB��b���6DI�S�BB��\�f0ݱ-�N��ź�у�_D�2w>K�}B/���m�ⲍ � r�DS��"m+�u�~D�d�Q��y;�9u��ߝ�y�٬�MD
EU�MٓfS��!�r;���e2LU��;./��N�Q'�cDil����qJ$�y:��̥L�"�"�@�s�ZoDh+�R��a�}�h�1q�۸/s
ݙ��&Ehz�Q�>�̄�l&Bt-PD�	[�Yx{*K�6[�.�ke���|��w$UC��n��,A�ө�\�DW�E��:"�^(x�WD�J��F��ܯP���}XC�۾�K^j��D4A_C-\ᇀ�%�c�"�o�X�(��-"��_�7ˏ��D�!�_����V�c�i�Vt�^	v�
Z��c���e2�E�Q'������'�V̕�vD�L��!�	/muA���[D�5�D��@4��(?�u��(Z4�e�N�ãH1)QIQ����F��2���Gq�H��ҳY��9p[���%��,���v�!*��
S)Dc���-6���`�� ��^���K�������_D9�$�0m4�vD�D��=⍼�cz6��C4��29
J���F�"z�x�0���A�}�	�_R�cr��+���! ڦ&��C�����H�o}�z��l7|"j|�,�8���!��u=Y��H���^E�܋��M�1m �+��l�~�
�l����&�k�7D��!!ڐ|X�'�&�k!��v���N�ZOx���ƾC�ˈ�Wgy��XQB~q4�m��Z
�\���dm���&�D�r��.��D�����*цK-���w�\J��r�@wD1��Y���yw9\D��F�6!;�m��>��l6��u��V��8�:���	��Y��O�m��h�a�o#��?��x�c�ƆIm;��:��&��gS��_#CD�y4����{�~���2��?v->%����z2qtxv ;�e�M|,�=[��U�3v�1�H��m��X�{x����Gݎ�D�I���d&~�#�3�{ *ӈnt��G�WGo��9i�M��˲? �s�ĺ5m���3�'c��~�a�c�_x ��[�W;@�h�GйN}�~>��}-��H���L���7ҋ�\2�O�������l���5��s_�y"j{�c�:���v��z5��+���E?�O��V�|���0���;���9��8QQ��H!��kDJ<bE�5����c�R69ao%z�H�p��~9;�u�
�O��u6�TG�rOS{#��E҃���.��s��(r�	��}6ˠ;V��hB;<��8�p9��+�}�٬H�N���2��#��~j���d���x�kmF�E.���s���X2{��Xp�YK2�yIm�����l����i�;�AQJ�_�_'s�-�H��hf~2O�\g��wA�h��b�F?\�D�'?������K�؃�կр�:�O�ɈT�{
\>�"���n���wO���\�:u���D)cHڮI>���ȿΒߒ���	9D�5p���������@�v"�~�sw����~P��I�|��w|'�H����x"ײ�;��(��<��&��I!����˯�!��q?�;DR��=����P���P#"q�[�A�=r����;~����M:wU���"�@C�?ۓt�� ���q���$n2A>��~U�ݻw���"�����h|l�
I>%M�Ŀ���FF~���N��w
ѕ)����m���P��%�~��׺��r�
}8slh(�fN4�'MÉ���&>��;]JB������8�c��_�nD��u�o/\��D^�O�ɿsO��l>Gz�r�x��h�����+���!Y��v~�e��o2��>yOj�y���\.��$�_Njߓ�>�&�D?���L�e�W��^������L���LjD�I>��i,K���LcO����O�9�-���|�:��bD#{��SrsԸ��4���G��q%�\F���(�ѿ��JBw��G<���,-�����À��7~�9����!•�_�}�KV��	�\n9���G�8�.}��7���q��KW���7oLig�`G����Aϫ/�|(�'����w�l����*�����#����f������2F���LJ[!r����1��Um�okgc`��7����kt���(M�ǔ����ά��P��=����>�W��酅��d��|��(����_�Ȁ��ѥo�������W��og����]�|3������^�vfasvzvvs��oGF�a̘�:��ڻ���"�<z�⌁azasa���ޜň���������"�K3h<���A�@��%x�
��{|�Ɵ�v^��ξ�q
�q����Ex-�{����&�i�@��7� �7%��^��÷zh#$�C�uL�7��B,,؇1�?}pK� #IEND�B`�PK�][���g��Sultimate-addons-for-gutenberg/admin/assets/admin-notice-spectra-pro-upgrade-pro.cssnu�[���#uagb-spectra-pro-popup-note .astra-notice-container {
	align-items: flex-start;
}

#uagb-spectra-pro-popup-note.notice {
	display: block;
	border: 1px solid #6105ff;
	border-top-color: #fff;
	border-bottom-color: #fff;
	border-right-color: #fff;
	border-left-width: 4px;
	box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.32);
}

#uagb-spectra-pro-popup-note a.uagb-review-notice.button-primary {
	background: #6105ff;
	border-color: #6105ff;
}

#uagb-spectra-pro-popup-note a.uagb-review-notice.button-primary:hover {
	background: #5300e0;
}

.post-type-spectra-popup .notice-dismiss {
	color: #fff;
}

a.spectra-plugins-go-pro {
	color: #6104ff;
	text-shadow: 1px 1px 1px #eee;
	font-weight: bold;
}

a.spectra-plugins-go-pro:hover {
	color: #5300e0;
}

.post-type-spectra-popup .astra-notice-wrapper:not( .spectra-upsell ),
.post-type-spectra-popup .notice:not( .spectra-upsell ) { /* Hide all other notices apart from upsell. */
	display: none;
}
PK�][=h�$��>ultimate-addons-for-gutenberg/admin/assets/spectra-submenu.cssnu�[���/* stylelint-disable selector-id-pattern */

/* Clear to evenly position the next list items after the separator */
#toplevel_page_spectra .wp-submenu li {
	clear: both;
}

/* Add the separator after the first item in the Spectra Settings Submenu */
#toplevel_page_spectra .wp-submenu li.wp-first-item::after {
	content: "";
	border-bottom: 1px solid rgb(255 255 255 / 0.2);
	display: block;
	float: left;
	margin: 8px 0;
	width: 100%;
}

/* Add the separator after the second last item in the Spectra Settings Submenu */
#toplevel_page_spectra .wp-submenu li:nth-child(5)::after {
	content: "";
	border-bottom: 1px solid rgb(255 255 255 / 0.2);
	display: block;
	float: left;
	margin: 8px 0;
	width: 100%;
}

.wp-submenu li:has( > a[href*="path=free-vs-pro"]) {
	background-color: #00a32a !important;
}

.wp-submenu li a[href*="path=free-vs-pro"] {
	color: #fff !important;
	font-weight: 500;
}

.wp-submenu li:has( > a[href*="path=free-vs-pro"]):hover {
	background-color: #008000 !important;
}

/* Add negative margins to the top separator if this is not the current submenu */
#toplevel_page_spectra.wp-not-current-submenu .wp-submenu li.wp-first-item::after {
	margin: 8px -3px;
}

/* Add negative margins to the bottom separator if this is not the current submenu */
#toplevel_page_spectra.wp-not-current-submenu .wp-submenu li:nth-last-child(2)::after {
	margin: 8px -3px;
}

/* Upgrade now button in sub-menu */
#toplevel_page_spectra .wp-submenu a[href="admin.php?page=spectra&path=upgrade-now"] {
	background-color: #6104ff;
	color: #fff;
	padding: 6px 12px 6px 12px;
	border-radius: 4px;
	text-align: center;
	display: block;
	margin: 8px 12px 8px 12px;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
}

#toplevel_page_spectra .wp-submenu a[href="admin.php?page=spectra&path=upgrade-now"]:focus,
#toplevel_page_spectra .wp-submenu a[href="admin.php?page=spectra&path=upgrade-now"]:hover {
	box-shadow: unset;
	background-color: #5300e0;
}
PK�][y��b��?ultimate-addons-for-gutenberg/admin/assets/blocks-deactivate.jsnu�[���const uagb_deactivated_blocks = uagb_deactivate_blocks.deactivated_blocks;
// If we are recieving an object, let's convert it into an array.
if ( uagb_deactivated_blocks.length ) {
	if ( typeof wp.blocks.unregisterBlockType !== 'undefined' ) {
		for ( const block_index in uagb_deactivated_blocks ) {
			const blockName = uagb_deactivated_blocks[block_index];
			if ( 'uagb/masonry-gallery' === blockName ) {
				continue;
			}

            // Check if the block is registered before attempting to unregister it
            if ( wp.blocks.getBlockType( blockName ) ) {
                wp.blocks.unregisterBlockType( blockName );
            }
		}
	}
}
PK�][={�z��;ultimate-addons-for-gutenberg/admin/assets/admin-notice.cssnu�[���.astra-notice .notice-container {
	padding-top: 10px;
	padding-bottom: 10px;
	display: block;
	justify-content: left;
	align-items: center;
}

#uagb-admin-rating .notice-container {
	display: flex;
}

.astra-notice .notice-content {
	margin-left: 15px;
}

.astra-notice .notice-image img {
	max-width: 70px;
}

.uagb-review-notice-container {
	display: flex;
	align-items: center;
	padding-top: 10px;
}

.uagb-review-notice-container .dashicons {
	font-size: 1.4em;
	padding-left: 10px;
}

.uagb-review-notice-container a {
	padding-left: 5px;
	text-decoration: none;
}

.uagb-review-notice-container .dashicons:first-child {
	padding-left: 0;
}
PK�][0�'��^ultimate-addons-for-gutenberg/blocks-config/advanced-settings/class-uagb-block-positioning.phpnu�[���<?php
/**
 * UAGB Block Positioning.
 *
 * @since 2.8.0
 * @package uagb
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}


if ( ! class_exists( 'UAGB_Block_Positioning' ) ) {

	/**
	 * Class UAGB_Block_Positioning.
	 * 
	 * @since 2.8.0
	 */
	class UAGB_Block_Positioning {

		/**
		 * The instance of this class, or null if it has not been created yet.
		 *
		 * @since 2.8.0
		 * @var object|null instance
		 */
		private static $instance = null;

		/**
		 * The Initiator.
		 *
		 * @since 2.8.0
		 * @return object  An instance of this class.
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * The Constructor.
		 * 
		 * @since 2.8.0
		 * @return void
		 */
		public function __construct() {
			add_filter( 'uagb_render_block', array( $this, 'add_positioning_classes' ), 10, 2 );
		}

		/**
		 * Add the required positioning classes if needed.
		 *
		 * @param string $block_content  The block content.
		 * @param array  $block          The block data.
		 * @since 2.8.0
		 * @return string                The block content after updation.
		 */
		public function add_positioning_classes( $block_content, $block ) {
			if ( empty( $block['blockName'] ) ) {
				return $block_content;
			}
			
			// Check $block_content is string or not.
			if ( ! is_string( $block_content ) || false === strpos( $block['blockName'], 'uagb' ) ) {
				return $block_content;
			}
			
			// Filter image block content.
			if ( 'uagb/image' === $block['blockName'] ) {
				$block_content = $this->image_block_content_filters( $block_content, $block );
			}

			// Return early if this doesn't need any positioning classes.
			if (
				'uagb/container' !== $block['blockName']
				|| empty( $block['attrs']['UAGPosition'] )
			) {
				return $block_content;
			}

			// Create the class to prepend to this block's class list.
			$prepended_classes = 'uagb-position__sticky';
			
			// Once all the additional classes have been added, add the start of the block selector.
			$prepended_classes .= ' wp-block-uagb-';

			// Replace the closest opening block selector with the prepended classes.
			$updated_content = preg_replace( '/wp-block-uagb-/', $prepended_classes, $block_content, 1 );

			// If an error was encountered, null would have been passed. Keep the content as it is when this happens.
			if ( $updated_content ) {
				$block_content = $updated_content;
			}

			return $block_content;
		}

		/**
		 * This function is used to filter image block content.
		 *
		 * @param string $block_content Image block content.
		 * @param array  $block Image block data.
		 * @since 2.10.2
		 * @return string
		 */
		public function image_block_content_filters( $block_content, $block ) {
			// Remove srcset attribute from image.
			if ( empty( $block['attrs']['id'] ) && ! empty( $block['attrs']['url'] ) && strpos( $block_content, 'srcset' ) ) {
				$remove_srcset_from_content = preg_replace( '/srcset="([^"]*)"/', '', $block_content );
				if ( $remove_srcset_from_content ) {
					$block_content = $remove_srcset_from_content;
				}
				
				return $block_content;
			}

			/**
			 * For migrating http and https.
			 */
			if ( empty( $block['attrs']['id'] ) || empty( $block['attrs']['url'] ) ) {
				return $block_content;
			}

			// Check url protocol.
			$current_url_protocol   = wp_parse_url( get_site_url(), PHP_URL_SCHEME );
			$attribute_url_protocol = wp_parse_url( $block['attrs']['url'], PHP_URL_SCHEME );

			if ( ! is_string( $current_url_protocol ) || ! is_string( $attribute_url_protocol ) || $current_url_protocol === $attribute_url_protocol ) {
				return $block_content;
			}

			foreach ( array( 'url', 'urlMobile', 'urlTablet' ) as $replace_attributes_url ) {
				if ( empty( $block['attrs'][ $replace_attributes_url ] ) ) {
					continue;
				}

				if ( false === strpos( $block_content, $block['attrs'][ $replace_attributes_url ] ) ) {
					continue;
				}

				// Replace http with https with current url protocol.
				$migrated_urls = str_replace( $attribute_url_protocol, $current_url_protocol, $block['attrs'][ $replace_attributes_url ] );

				$block_content = str_replace( $block['attrs'][ $replace_attributes_url ], $migrated_urls, $block_content );
			}
			
			return $block_content;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Block_Positioning' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Block_Positioning::get_instance();
}
PK�][Q:�<Fultimate-addons-for-gutenberg/blocks-config/image/class-uagb-image.phpnu�[���<?php
/**
 * UAGB Post.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Image' ) ) {

	/**
	 * Class UAGB_Image.
	 */
	class UAGB_Image {


		/**
		 * Member Variable
		 *
		 * @since 2.0.0
		 * @var instance
		 */
		private static $instance;


		/**
		 *  Initiator
		 *
		 * @since 2.0.0
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Register the Image block on server.
		 *
		 * @since 2.0.0
		 */
		public function register_blocks() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			register_block_type(
				'uagb/image',
				array(
					'supports' => array(
						'color' => array(
							'__experimentalDuotone' => 'img',
							'text'                  => false,
							'background'            => false,
						),
					),
				)
			);
		}
	}

	/**
	 *  Prepare if class 'UAGB_Image' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Image::get_instance();
}
PK�][?����Dultimate-addons-for-gutenberg/blocks-config/post/class-uagb-post.phpnu�[���<?php
/**
 * UAGB Post.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Post' ) ) {

	/**
	 * Class UAGB_Post.
	 */
	class UAGB_Post {


		/**
		 * Member Variable
		 *
		 * @since 1.18.1
		 * @var instance
		 */
		private static $instance;

		/**
		 * Member Variable
		 *
		 * @since 1.18.1
		 * @var settings
		 */
		private static $settings;

		/**
		 *  Initiator
		 *
		 * @since 1.18.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_blocks' ) );
			add_action( 'wp_ajax_uagb_post_pagination', array( $this, 'post_pagination' ) );
			add_action( 'wp_ajax_nopriv_uagb_post_pagination', array( $this, 'post_pagination' ) );
			add_action( 'wp_ajax_uagb_post_pagination_grid', array( $this, 'post_grid_pagination_ajax_callback' ) );
			add_action( 'wp_ajax_nopriv_uagb_post_pagination_grid', array( $this, 'post_grid_pagination_ajax_callback' ) );
			add_action( 'wp_ajax_uagb_get_posts', array( $this, 'masonry_pagination' ) );
			add_action( 'wp_ajax_nopriv_uagb_get_posts', array( $this, 'masonry_pagination' ) );
			add_action( 'wp_footer', array( $this, 'add_post_dynamic_script' ), 1000 );
			add_filter( 'redirect_canonical', array( $this, 'override_canonical' ), 1, 2 );
		}

		/**
		 * Registers the `core/latest-posts` block on server.
		 *
		 * @since 0.0.1
		 */
		public function register_blocks() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			$pagination_masonry_border_attribute = array();

			if ( method_exists( 'UAGB_Block_Helper', 'uag_generate_php_border_attribute' ) ) {

				$pagination_masonry_border_attribute = UAGB_Block_Helper::uag_generate_php_border_attribute( 'paginationMasonry' );

			}

			$common_attributes = $this->get_post_attributes();

			register_block_type(
				'uagb/post-grid',
				array(
					'attributes'      => array_merge(
						$common_attributes,
						array(
							'blockName'                   => array(
								'type'    => 'string',
								'default' => 'post-grid',
							),
							'equalHeight'                 => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'postPagination'              => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'pageLimit'                   => array(
								'type'    => 'number',
								'default' => 10,
							),
							'paginationBgActiveColor'     => array(
								'type'    => 'string',
								'default' => '#e4e4e4',
							),
							'paginationActiveColor'       => array(
								'type'    => 'string',
								'default' => '#333333',
							),
							'paginationBgColor'           => array(
								'type'    => 'string',
								'default' => '#e4e4e4',
							),
							'paginationColor'             => array(
								'type'    => 'string',
								'default' => '#777777',
							),
							'paginationMarkup'            => array(
								'type'    => 'string',
								'default' => '',
							),
							'paginationLayout'            => array(
								'type'    => 'string',
								'default' => 'filled',
							),
							'paginationBorderActiveColor' => array(
								'type' => 'string',
							),
							'paginationBorderColor'       => array(
								'type'    => 'string',
								'default' => '#888686',
							),
							'paginationBorderRadius'      => array(
								'type' => 'number',
							),
							'paginationBorderSize'        => array(
								'type'    => 'number',
								'default' => 1,
							),
							'paginationSpacing'           => array(
								'type'    => 'number',
								'default' => 20,
							),
							'paginationAlignment'         => array(
								'type'    => 'string',
								'default' => 'left',
							),
							'paginationPrevText'          => array(
								'type'    => 'string',
								'default' => '« Previous',
							),
							'paginationNextText'          => array(
								'type'    => 'string',
								'default' => 'Next »',
							),
							'layoutConfig'                => array(
								'type'    => 'array',
								'default' => array(
									array( 'uagb/post-image' ),
									array( 'uagb/post-taxonomy' ),
									array( 'uagb/post-title' ),
									array( 'uagb/post-meta' ),
									array( 'uagb/post-excerpt' ),
									array( 'uagb/post-button' ),
								),
							),
							'post_type'                   => array(
								'type'    => 'string',
								'default' => 'grid',
							),
							'equalHeightInlineButtons'    => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'imageRatio'                  => array(
								'type'    => 'string',
								'default' => 'inherit',
							),
							'imgEqualHeight'              => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'paginationType'              => array(
								'type'    => 'string',
								'default' => 'ajax',
							),
							'isLeftToRightLayout'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'wrapperTopPadding'           => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperRightPadding'         => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperLeftPadding'          => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperBottomPadding'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperTopPaddingTablet'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperRightPaddingTablet'   => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperLeftPaddingTablet'    => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperBottomPaddingTablet'  => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperTopPaddingMobile'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperRightPaddingMobile'   => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperLeftPaddingMobile'    => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperBottomPaddingMobile'  => array(
								'type'    => 'number',
								'default' => '',
							),
							'wrapperPaddingUnit'          => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'wrapperPaddingUnitTablet'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'wrapperPaddingUnitMobile'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'wrapperPaddingLink'          => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'wrapperAlign'                => array(
								'type'    => 'string',
								'default' => 'row',
							),
							'wrapperAlignPosition'        => array(
								'type'    => 'string',
								'default' => 'center',
							),
						)
					),
					'render_callback' => array( $this, 'post_grid_callback' ),
				)
			);

			register_block_type(
				'uagb/post-carousel',
				array(
					'attributes'      => array_merge(
						$common_attributes,
						array(
							'blockName'           => array(
								'type'    => 'string',
								'default' => 'post-carousel',
							),
							'pauseOnHover'        => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'infiniteLoop'        => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'transitionSpeed'     => array(
								'type'    => 'number',
								'default' => 500,
							),
							'arrowDots'           => array(
								'type'    => 'string',
								'default' => 'arrows_dots',
							),
							'autoplay'            => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'autoplaySpeed'       => array(
								'type'    => 'number',
								'default' => 2000,
							),
							'arrowSize'           => array(
								'type'    => 'number',
								'default' => 24,
							),
							'arrowBorderSize'     => array(
								'type'    => 'number',
								'default' => 0,
							),
							'arrowBorderRadius'   => array(
								'type'    => 'number',
								'default' => 0,
							),
							'arrowColor'          => array(
								'type'    => 'string',
								'default' => '#000',
							),
							'arrowDistance'       => array(
								'type' => 'number',
							),
							'arrowDistanceTablet' => array(
								'type' => 'number',
							),
							'arrowDistanceMobile' => array(
								'type' => 'number',
							),
							'equalHeight'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'layoutConfig'        => array(
								'type'    => 'array',
								'default' => array(
									array( 'uagb/post-image' ),
									array( 'uagb/post-taxonomy' ),
									array( 'uagb/post-title' ),
									array( 'uagb/post-meta' ),
									array( 'uagb/post-excerpt' ),
									array( 'uagb/post-button' ),
								),
							),
							'post_type'           => array(
								'type'    => 'string',
								'default' => 'carousel',
							),
							'dotsMarginTop'       => array(
								'type'    => 'number',
								'default' => '20',
							),
							'dotsMarginTopTablet' => array(
								'type'    => 'number',
								'default' => '20',
							),
							'dotsMarginTopMobile' => array(
								'type'    => 'number',
								'default' => '20',
							),
							'dotsMarginTopUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
						)
					),
					'render_callback' => array( $this, 'post_carousel_callback' ),
				)
			);

			$enable_legacy_blocks = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' );

			if ( 'yes' === $enable_legacy_blocks ) {
				register_block_type(
					'uagb/post-masonry',
					array(
						'attributes'      => array_merge(
							$common_attributes,
							array(
								'blockName'                => array(
									'type'    => 'string',
									'default' => 'post-masonry',
								),
								'paginationType'           => array(
									'type'    => 'string',
									'default' => 'none',
								),
								'paginationEventType'      => array(
									'type'    => 'string',
									'default' => 'button',
								),
								'buttonText'               => array(
									'type'    => 'string',
									'default' => 'Load More',
								),
								'paginationAlign'          => array(
									'type'    => 'string',
									'default' => 'center',
								),
								'paginationTextColor'      => array(
									'type'    => 'string',
									'default' => '',
								),
								'paginationMasonryBgColor' => array(
									'type'    => 'string',
									'default' => '',
								),
								'paginationBgHoverColor'   => array(
									'type' => 'string',
								),
								'paginationTextHoverColor' => array(
									'type' => 'string',
								),
								'paginationMasonryBorderHColor' => array(
									'type'    => 'string',
									'default' => '',
								),
								'paginationFontSize'       => array(
									'type'    => 'number',
									'default' => 13,
								),
								'loaderColor'              => array(
									'type'    => 'string',
									'default' => '#0085ba',
								),
								'loaderSize'               => array(
									'type'    => 'number',
									'default' => 18,
								),
								'paginationButtonPaddingType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'vpaginationButtonPaddingMobile' => array(
									'type'    => 'number',
									'default' => 8,
								),
								'vpaginationButtonPaddingTablet' => array(
									'type'    => 'number',
									'default' => 8,
								),
								'vpaginationButtonPaddingDesktop' => array(
									'type'    => 'number',
									'default' => 8,
								),
								'hpaginationButtonPaddingMobile' => array(
									'type'    => 'number',
									'default' => 12,
								),
								'hpaginationButtonPaddingTablet' => array(
									'type'    => 'number',
									'default' => 12,
								),
								'hpaginationButtonPaddingDesktop' => array(
									'type'    => 'number',
									'default' => 12,
								),
								'layoutConfig'             => array(
									'type'    => 'array',
									'default' => array(
										array( 'uagb/post-image' ),
										array( 'uagb/post-taxonomy' ),
										array( 'uagb/post-title' ),
										array( 'uagb/post-meta' ),
										array( 'uagb/post-excerpt' ),
										array( 'uagb/post-button' ),
									),
								),
								'post_type'                => array(
									'type'    => 'string',
									'default' => 'masonry',
								),
								'mobilepaginationButtonPaddingType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'tabletpaginationButtonPaddingType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
							),
							$pagination_masonry_border_attribute
						),
						'render_callback' => array( $this, 'post_masonry_callback' ),
					)
				);
			}

		}

		/**
		 * Get Post common attributes for all Post Grid, Masonry and Carousel.
		 *
		 * @since 0.0.1
		 */
		public function get_post_attributes() {

			$btn_border_attribute     = array();
			$overall_border_attribute = array();

			if ( method_exists( 'UAGB_Block_Helper', 'uag_generate_php_border_attribute' ) ) {

				$btn_border_attribute     = UAGB_Block_Helper::uag_generate_php_border_attribute( 'btn' );
				$overall_border_attribute = UAGB_Block_Helper::uag_generate_php_border_attribute( 'overall' );

			}

			$inherit_from_theme = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

			return array_merge(
				$btn_border_attribute,
				$overall_border_attribute,
				array(
					'inheritFromTheme'              => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'block_id'                      => array(
						'type'    => 'string',
						'default' => 'not_set',
					),
					'categories'                    => array(
						'type' => 'string',
					),
					'postType'                      => array(
						'type'    => 'string',
						'default' => 'post',
					),
					'postDisplaytext'               => array(
						'type'    => 'string',
						'default' => 'No post found!',
					),
					'taxonomyType'                  => array(
						'type'    => 'string',
						'default' => 'category',
					),
					'postsToShow'                   => array(
						'type'    => 'number',
						'default' => 6,
					),
					'enableOffset'                  => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'postsOffset'                   => array(
						'type'    => 'number',
						'default' => 0,
					),
					'displayPostDate'               => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'displayPostExcerpt'            => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'excerptLength'                 => array(
						'type'    => 'number',
						'default' => 15,
					),
					'displayPostAuthor'             => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'displayPostTitle'              => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'displayPostComment'            => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'displayPostTaxonomy'           => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'hideTaxonomyIcon'              => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'taxStyle'                      => array(
						'type'    => 'string',
						'default' => 'default',
					),
					'displayPostTaxonomyAboveTitle' => array(
						'type'    => 'string',
						'default' => 'withMeta',
					),
					'displayPostImage'              => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'imgSize'                       => array(
						'type'    => 'string',
						'default' => 'large',
					),
					'imgPosition'                   => array(
						'type'    => 'string',
						'default' => 'top',
					),
					'linkBox'                       => array(
						'type' => 'boolean',
					),
					'bgOverlayColor'                => array(
						'type'    => 'string',
						'default' => '#000000',
					),
					'overlayOpacity'                => array(
						'type'    => 'number',
						'default' => '50',
					),
					'displayPostLink'               => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'newTab'                        => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'ctaText'                       => array(
						'type'    => 'string',
						'default' => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
					),
					'inheritFromThemeBtn'           => array(
						'type'    => 'boolean',
						'default' => $inherit_from_theme,
					),
					'buttonType'                    => array(
						'type'    => 'string',
						'default' => 'primary',
					),
					'btnHPadding'                   => array(
						'type'    => 'number',
						'default' => '',
					),
					'btnVPadding'                   => array(
						'type'    => 'number',
						'default' => '',
					),
					'columns'                       => array(
						'type'    => 'number',
						'default' => 3,
					),
					'tcolumns'                      => array(
						'type'    => 'number',
						'default' => 2,
					),
					'mcolumns'                      => array(
						'type'    => 'number',
						'default' => 1,
					),
					'align'                         => array(
						'type'    => 'string',
						'default' => 'left',
					),
					'width'                         => array(
						'type'    => 'string',
						'default' => 'wide',
					),
					'order'                         => array(
						'type'    => 'string',
						'default' => 'desc',
					),
					'orderBy'                       => array(
						'type'    => 'string',
						'default' => 'date',
					),
					'rowGap'                        => array(
						'type'    => 'number',
						'default' => 20,
					),
					'rowGapTablet'                  => array(
						'type'    => 'number',
						'default' => 20,
					),
					'rowGapMobile'                  => array(
						'type'    => 'number',
						'default' => 20,
					),
					'columnGap'                     => array(
						'type'    => 'number',
						'default' => 20,
					),
					'columnGapTablet'               => array(
						'type' => 'number',
					),
					'columnGapMobile'               => array(
						'type' => 'number',
					),
					'bgType'                        => array(
						'type'    => 'string',
						'default' => 'color',
					),
					'bgColor'                       => array(
						'type'    => 'string',
						'default' => '#f6f6f6',
					),

					// Title Attributes.
					'titleColor'                    => array(
						'type' => 'string',
					),
					'titleTag'                      => array(
						'type'    => 'string',
						'default' => 'h4',
					),
					'titleFontSize'                 => array(
						'type'    => 'number',
						'default' => '',
					),
					'titleFontSizeType'             => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'titleFontSizeMobile'           => array(
						'type' => 'number',
					),
					'titleFontSizeTablet'           => array(
						'type' => 'number',
					),
					'titleFontFamily'               => array(
						'type'    => 'string',
						'default' => '',
					),
					'titleFontWeight'               => array(
						'type' => 'string',
					),
					'titleFontStyle'                => array(
						'type' => 'string',
					),
					'titleLineHeightType'           => array(
						'type'    => 'string',
						'default' => 'em',
					),
					'titleLineHeight'               => array(
						'type' => 'number',
					),
					'titleLineHeightTablet'         => array(
						'type' => 'number',
					),
					'titleLineHeightMobile'         => array(
						'type' => 'number',
					),
					'titleLoadGoogleFonts'          => array(
						'type'    => 'boolean',
						'default' => false,
					),

					// Meta attributes.
					'metaColor'                     => array(
						'type'    => 'string',
						'default' => '',
					),
					'highlightedTextColor'          => array(
						'type'    => 'string',
						'default' => '#fff',
					),
					'highlightedTextBgColor'        => array(
						'type'    => 'string',
						'default' => '#3182ce',
					),
					'metaFontSize'                  => array(
						'type'    => 'number',
						'default' => '',
					),
					'metaFontSizeType'              => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'metaFontSizeMobile'            => array(
						'type' => 'number',
					),
					'metaFontSizeTablet'            => array(
						'type' => 'number',
					),
					'metaFontFamily'                => array(
						'type'    => 'string',
						'default' => '',
					),
					'metaFontWeight'                => array(
						'type' => 'string',
					),
					'metaFontStyle'                 => array(
						'type' => 'string',
					),
					'metaLineHeightType'            => array(
						'type'    => 'string',
						'default' => 'em',
					),
					'metaLineHeight'                => array(
						'type' => 'number',
					),
					'metaLineHeightTablet'          => array(
						'type' => 'number',
					),
					'metaLineHeightMobile'          => array(
						'type' => 'number',
					),
					'metaLoadGoogleFonts'           => array(
						'type'    => 'boolean',
						'default' => false,
					),

					// Excerpt Attributes.
					'excerptColor'                  => array(
						'type'    => 'string',
						'default' => '',
					),
					'excerptFontSize'               => array(
						'type'    => 'number',
						'default' => '',
					),
					'excerptFontSizeType'           => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'excerptFontSizeMobile'         => array(
						'type' => 'number',
					),
					'excerptFontSizeTablet'         => array(
						'type' => 'number',
					),
					'excerptFontFamily'             => array(
						'type'    => 'string',
						'default' => '',
					),
					'excerptFontWeight'             => array(
						'type' => 'string',
					),
					'excerptFontStyle'              => array(
						'type' => 'string',
					),
					'excerptLineHeightType'         => array(
						'type'    => 'string',
						'default' => 'em',
					),
					'excerptLineHeight'             => array(
						'type' => 'number',
					),
					'excerptLineHeightTablet'       => array(
						'type' => 'number',
					),
					'excerptLineHeightMobile'       => array(
						'type' => 'number',
					),
					'excerptLoadGoogleFonts'        => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'displayPostContentRadio'       => array(
						'type'    => 'string',
						'default' => 'excerpt',
					),

					// CTA attributes.
					'ctaColor'                      => array(
						'type' => 'string',
					),
					'ctaBgType'                     => array(
						'type'    => 'string',
						'default' => 'color',
					),
					'ctaBgHType'                    => array(
						'type'    => 'string',
						'default' => 'color',
					),
					'ctaBgColor'                    => array(
						'type' => 'string',
					),
					'ctaHColor'                     => array(
						'type' => 'string',
					),
					'ctaBgHColor'                   => array(
						'type' => 'string',
					),
					'ctaFontSize'                   => array(
						'type'    => 'number',
						'default' => '',
					),
					'ctaFontSizeType'               => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'ctaFontSizeMobile'             => array(
						'type' => 'number',
					),
					'ctaFontSizeTablet'             => array(
						'type' => 'number',
					),
					'ctaFontFamily'                 => array(
						'type'    => 'string',
						'default' => '',
					),
					'ctaFontWeight'                 => array(
						'type' => 'string',
					),
					'ctaFontStyle'                  => array(
						'type' => 'string',
					),
					'ctaLineHeightType'             => array(
						'type'    => 'string',
						'default' => 'em',
					),
					'ctaLineHeight'                 => array(
						'type' => 'number',
					),
					'ctaLineHeightTablet'           => array(
						'type' => 'number',
					),
					'ctaLineHeightMobile'           => array(
						'type' => 'number',
					),
					'ctaLoadGoogleFonts'            => array(
						'type'    => 'boolean',
						'default' => false,
					),

					// Spacing Attributes.
					'paddingTop'                    => array(
						'type'    => 'number',
						'default' => 20,
					),
					'paddingBottom'                 => array(
						'type'    => 'number',
						'default' => 20,
					),
					'paddingRight'                  => array(
						'type'    => 'number',
						'default' => 20,
					),
					'paddingLeft'                   => array(
						'type'    => 'number',
						'default' => 20,
					),
					'paddingTopMobile'              => array(
						'type' => 'number',
					),
					'paddingBottomMobile'           => array(
						'type' => 'number',
					),
					'paddingRightMobile'            => array(
						'type' => 'number',
					),
					'paddingLeftMobile'             => array(
						'type' => 'number',
					),
					'paddingTopTablet'              => array(
						'type' => 'number',
					),
					'paddingBottomTablet'           => array(
						'type' => 'number',
					),
					'paddingRightTablet'            => array(
						'type' => 'number',
					),
					'paddingLeftTablet'             => array(
						'type' => 'number',
					),
					'paddingBtnTop'                 => array(
						'type' => 'number',
					),
					'paddingBtnBottom'              => array(
						'type' => 'number',
					),
					'paddingBtnRight'               => array(
						'type' => 'number',
					),
					'paddingBtnLeft'                => array(
						'type' => 'number',
					),
					'contentPadding'                => array(
						'type'    => 'number',
						'default' => 20,
					),
					'contentPaddingMobile'          => array(
						'type' => 'number',
					),
					'ctaBottomSpace'                => array(
						'type'    => 'number',
						'default' => 0,
					),
					'ctaBottomSpaceTablet'          => array(
						'type'    => 'number',
						'default' => 0,
					),
					'ctaBottomSpaceMobile'          => array(
						'type'    => 'number',
						'default' => 0,
					),
					'imageBottomSpace'              => array(
						'type'    => 'number',
						'default' => 15,
					),
					'imageBottomSpaceTablet'        => array(
						'type' => 'number',
					),
					'imageBottomSpaceMobiile'       => array(
						'type' => 'number',
					),
					'taxonomyBottomSpace'           => array(
						'type' => 'number',
					),
					'taxonomyBottomSpaceTablet'     => array(
						'type' => 'number',
					),
					'taxonomyBottomSpaceMobile'     => array(
						'type' => 'number',
					),
					'titleBottomSpace'              => array(
						'type'    => 'number',
						'default' => 15,
					),
					'titleBottomSpaceTablet'        => array(
						'type' => 'number',
					),
					'titleBottomSpaceMobile'        => array(
						'type' => 'number',
					),
					'metaBottomSpace'               => array(
						'type'    => 'number',
						'default' => 15,
					),
					'metaBottomSpaceTablet'         => array(
						'type' => 'number',
					),
					'metaBottomSpaceMobile'         => array(
						'type' => 'number',
					),
					'excerptBottomSpace'            => array(
						'type'    => 'number',
						'default' => 25,
					),
					'excerptBottomSpaceTablet'      => array(
						'type' => 'number',
					),
					'excerptBottomSpaceMobile'      => array(
						'type' => 'number',
					),
					// Exclude Current Post.
					'excludeCurrentPost'            => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'titleTransform'                => array(
						'type' => 'string',
					),
					'metaTransform'                 => array(
						'type' => 'string',
					),
					'excerptTransform'              => array(
						'type' => 'string',
					),
					'ctaTransform'                  => array(
						'type' => 'string',
					),
					'titleDecoration'               => array(
						'type' => 'string',
					),
					'metaDecoration'                => array(
						'type' => 'string',
					),
					'excerptDecoration'             => array(
						'type' => 'string',
					),
					'ctaDecoration'                 => array(
						'type' => 'string',
					),
					'contentPaddingUnit'            => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'rowGapUnit'                    => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'columnGapUnit'                 => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'excerptBottomSpaceUnit'        => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'paginationSpacingUnit'         => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'imageBottomSpaceUnit'          => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'taxonomyBottomSpaceUnit'       => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'titleBottomSpaceUnit'          => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'metaBottomSpaceUnit'           => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'ctaBottomSpaceUnit'            => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'paddingBtnUnit'                => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'mobilePaddingBtnUnit'          => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'tabletPaddingBtnUnit'          => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'paddingUnit'                   => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'mobilePaddingUnit'             => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'tabletPaddingUnit'             => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'isPreview'                     => array(
						'type'    => 'boolean',
						'default' => false,
					),
					'taxDivider'                    => array(
						'type'    => 'string',
						'default' => ', ',
					),
					'titleLetterSpacing'            => array(
						'type'    => 'number',
						'default' => '',
					),
					'titleLetterSpacingType'        => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'titleLetterSpacingMobile'      => array(
						'type' => 'number',
					),
					'titleLetterSpacingTablet'      => array(
						'type' => 'number',
					),
					'metaLetterSpacing'             => array(
						'type'    => 'number',
						'default' => '',
					),
					'metaLetterSpacingType'         => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'metaLetterSpacingMobile'       => array(
						'type' => 'number',
					),
					'metaLetterSpacingTablet'       => array(
						'type' => 'number',
					),
					'ctaLetterSpacing'              => array(
						'type'    => 'number',
						'default' => '',
					),
					'ctaLetterSpacingType'          => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'ctaLetterSpacingMobile'        => array(
						'type' => 'number',
					),
					'ctaLetterSpacingTablet'        => array(
						'type' => 'number',
					),
					'excerptLetterSpacing'          => array(
						'type'    => 'number',
						'default' => '',
					),
					'excerptLetterSpacingType'      => array(
						'type'    => 'string',
						'default' => 'px',
					),
					'excerptLetterSpacingMobile'    => array(
						'type' => 'number',
					),
					'excerptLetterSpacingTablet'    => array(
						'type' => 'number',
					),
					'useSeparateBoxShadows'         => array(
						'type'    => 'boolean',
						'default' => true,
					),
					'boxShadowColor'                => array(
						'type'    => 'string',
						'default' => '#00000070',
					),
					'boxShadowHOffset'              => array(
						'type'    => 'number',
						'default' => 0,
					),
					'boxShadowVOffset'              => array(
						'type'    => 'number',
						'default' => 0,
					),
					'boxShadowBlur'                 => array(
						'type'    => 'number',
						'default' => '',
					),
					'boxShadowSpread'               => array(
						'type'    => 'number',
						'default' => '',
					),
					'boxShadowPosition'             => array(
						'type'    => 'string',
						'default' => 'outset',
					),
					'boxShadowColorHover'           => array(
						'type'    => 'string',
						'default' => '',
					),
					'boxShadowHOffsetHover'         => array(
						'type'    => 'number',
						'default' => 0,
					),
					'boxShadowVOffsetHover'         => array(
						'type'    => 'number',
						'default' => 0,
					),
					'boxShadowBlurHover'            => array(
						'type'    => 'number',
						'default' => '',
					),
					'boxShadowSpreadHover'          => array(
						'type'    => 'number',
						'default' => '',
					),
					'boxShadowPositionHover'        => array(
						'type'    => 'string',
						'default' => 'outset',
					),
					'overallBorderHColor'           => array(
						'type' => 'string',
					),
					'borderWidth'                   => array(
						'type'    => 'number',
						'default' => '',
					),
					'borderStyle'                   => array(
						'type'    => 'string',
						'default' => 'none',
					),
					'borderColor'                   => array(
						'type'    => 'string',
						'default' => '',
					),
					'borderHColor'                  => array(
						'type' => 'string',
					),
					'borderRadius'                  => array(
						'type'    => 'number',
						'default' => '',
					),
				)
			);
		}

		/**
		 * Renders the post grid block on server.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function post_grid_callback( $attributes ) {

			// Render query.
			$query = UAGB_Helper::get_query( $attributes, 'grid' );

			// Cache the settings.
			self::$settings['grid'][ $attributes['block_id'] ] = $attributes;

			ob_start();
			$this->get_post_html( $attributes, $query, 'grid' );
			// Output the post markup.
			return ob_get_clean();
		}

		/**
		 * Renders the post grid block on pagination clicks.
		 *
		 * @since 2.6.0
		 *
		 * @return void
		 */
		public function post_grid_pagination_ajax_callback() {
			check_ajax_referer( 'uagb_grid_ajax_nonce', 'nonce' );

			if ( isset( $_POST['attr'] ) ) {

				$attr          = json_decode( stripslashes( sanitize_text_field( $_POST['attr'] ) ), true );
				$attr['paged'] = isset( $_POST['page_number'] ) ? sanitize_text_field( $_POST['page_number'] ) : '';
				$html          = $this->post_grid_callback( $attr );
				wp_send_json_success( $html );

			}

			wp_send_json_error( ' Something went wrong, failed to load pagination data! ' );
		}

		/**
		 * Renders the post carousel block on server.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function post_carousel_callback( $attributes ) {

			// Render query.
			$query = UAGB_Helper::get_query( $attributes, 'carousel' );

			// Cache the settings.
			self::$settings['carousel'][ $attributes['block_id'] ] = $attributes;

			ob_start();
			$this->get_post_html( $attributes, $query, 'carousel' );
			// Output the post markup.
			return ob_get_clean();
		}

		/**
		 * Renders the post masonry block on server.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function post_masonry_callback( $attributes ) {

			// Render query.
			$query = UAGB_Helper::get_query( $attributes, 'masonry' );

			// Cache the settings.
			self::$settings['masonry'][ $attributes['block_id'] ] = $attributes;

			ob_start();
			$this->get_post_html( $attributes, $query, 'masonry' );
			// Output the post markup.
			return ob_get_clean();
		}

		/**
		 * Renders the post grid block on server.
		 *
		 * @param array  $attributes Array of block attributes.
		 *
		 * @param object $query WP_Query object.
		 * @param string $layout post grid/masonry/carousel layout.
		 * @since 0.0.1
		 */
		public function get_post_html( $attributes, $query, $layout ) {
			
			$wrap = array(
				'uagb-post__items uagb-post__columns-' . $attributes['columns'],
				'is-' . $layout,
				'uagb-post__columns-tablet-' . $attributes['tcolumns'],
				'uagb-post__columns-mobile-' . $attributes['mcolumns'],
			);

			$block_id = 'uagb-block-' . $attributes['block_id'];

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}

			$is_image_enabled = ( true === $attributes['displayPostImage'] ) ? 'uagb-post__image-enabled' : 'uagb-post__image-disabled';

			$outerwrap = array(
				'wp-block-uagb-post-' . $layout,
				'uagb-post-grid',
				( isset( $attributes['className'] ) ) ? $attributes['className'] : '',
				'uagb-post__image-position-' . $attributes['imgPosition'],
				$is_image_enabled,
				$block_id,
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
			);

			switch ( $layout ) {
				case 'masonry':
					break;

				case 'grid':
					if ( $attributes['equalHeight'] ) {
						array_push( $wrap, 'uagb-post__equal-height' );
					}
					if ( $attributes['equalHeightInlineButtons'] ) {
						array_push( $wrap, 'uagb-equal_height_inline-read-more-buttons' );
					}
					break;

				case 'carousel':
					array_push( $outerwrap, 'uagb-post__arrow-outside' );

					if ( $attributes['equalHeight'] ) {
						array_push( $wrap, 'uagb-post__carousel_equal-height' );
					}

					if ( $query->post_count > $attributes['columns'] ) {
						array_push( $outerwrap, 'uagb-slick-carousel' );
					}
					break;

				default:
					// Nothing to do here.
					break;
			}

			$common_classes = array_merge( $outerwrap, $wrap );

			$total = $query->max_num_pages;

			?>

			<div class="<?php echo esc_attr( implode( ' ', $common_classes ) ); ?>" data-total="<?php echo esc_attr( $total ); ?>" style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>">

				<?php

				$this->posts_articles_markup( $query, $attributes );

				$post_not_found = $query->found_posts;

				if ( 0 === $post_not_found ) {
					?>
					<p class="uagb-post__no-posts">
						<?php echo esc_html( $attributes['postDisplaytext'] ); ?>
					</p>
					<?php
				}

				if ( ( isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) ) {

					?>
					<div class="uagb-post-pagination-wrap">
						<?php
							// content already escaped using wp_kses_post.
							echo $this->render_pagination( $query, $attributes ); //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped using wp_kses_post inside render_pagination().
						?>
					</div>
					<?php
				}
				if ( 'masonry' === $layout && 'infinite' === $attributes['paginationType'] ) {

					if ( 'scroll' === $attributes['paginationEventType'] ) {
						?>
							<div class="uagb-post-inf-loader" style="display: none;">
								<div class="uagb-post-loader-1"></div>
								<div class="uagb-post-loader-2"></div>
								<div class="uagb-post-loader-3"></div>
							</div>
							<?php

					}
					if ( 'button' === $attributes['paginationEventType'] ) {
						?>
							<div class="uagb-post__load-more-wrap">
								<span class="uagb-post-pagination-button">
									<a class="uagb-post__load-more" href="javascript:void(0);">
									<?php echo esc_html( $attributes['buttonText'] ); ?>
									</a>
								</span>
							</div>
							<?php
					}
				}
				?>
			</div>
			<?php
		}

		/**
		 * Renders the post post pagination on server.
		 *
		 * @param object $query WP_Query object.
		 * @param array  $attributes Array of block attributes.
		 * @since 1.18.1
		 */
		public function render_pagination( $query, $attributes ) {

			$permalink_structure = get_option( 'permalink_structure' );
			$base                = untrailingslashit( wp_specialchars_decode( get_pagenum_link() ) );
			$base                = UAGB_Helper::build_base_url( $permalink_structure, $base );
			$format              = UAGB_Helper::paged_format( $permalink_structure, $base );
			$paged               = UAGB_Helper::get_paged( $query );
			$p_limit             = isset( $attributes['pageLimit'] ) ? sanitize_text_field( $attributes['pageLimit'] ) : 10;
			$page_limit          = min( $p_limit, $query->max_num_pages );
			$page_limit          = isset( $page_limit ) ? $page_limit : sanitize_text_field( $attributes['postsToShow'] );

			$links = paginate_links(
				array(
					'base'      => $base . '%_%',
					'format'    => $format,
					'current'   => ( ! $paged ) ? 1 : $paged,
					'total'     => $page_limit,
					'type'      => 'array',
					'mid_size'  => 4,
					'end_size'  => 4,
					'prev_text' => $attributes['paginationPrevText'],
					'next_text' => $attributes['paginationNextText'],
				)
			);

			if ( isset( $links ) ) {

				return wp_kses_post( implode( PHP_EOL, $links ) );
			}

			return '';
		}

		/**
		 * Sends the Post pagination markup to edit.js
		 *
		 * @since 1.14.9
		 */
		public function post_pagination() {

			check_ajax_referer( 'uagb_ajax_nonce', 'nonce' );

			$post_attribute_array = array();

			if ( isset( $_POST['attributes'] ) ) {

				// $_POST['attributes'] is sanitized in later stage.
				$attr = isset( $_POST['attributes'] ) ? json_decode( wp_unslash( $_POST['attributes'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

				$post_attribute_array = $this->required_attribute_for_query( $attr );

				$query = UAGB_Helper::get_query( $post_attribute_array, 'grid' );

				$pagination_markup = $this->render_pagination( $query, $attr );

				wp_send_json_success( $pagination_markup );
			}

			wp_send_json_error( ' No attributes received' );
		}

		/**
		 * Required attribute for query.
		 *
		 * @param array $attributes plugin.
		 * @return array of requred query attributes.
		 * @since 2.0.0
		 */
		public function required_attribute_for_query( $attributes ) {
			return array(
				'postsOffset'        => ( isset( $attributes['postsOffset'] ) ) ? sanitize_text_field( $attributes['postsOffset'] ) : 0,
				'postsToShow'        => ( isset( $attributes['postsToShow'] ) ) ? sanitize_text_field( $attributes['postsToShow'] ) : 6,
				'postType'           => ( isset( $attributes['postType'] ) ) ? sanitize_text_field( $attributes['postType'] ) : 'post',
				'order'              => ( isset( $attributes['order'] ) ) ? sanitize_text_field( $attributes['order'] ) : 'desc',
				'orderBy'            => ( isset( $attributes['orderBy'] ) ) ? sanitize_text_field( $attributes['orderBy'] ) : 'date',
				'excludeCurrentPost' => ( ! empty( $attr['excludeCurrentPost'] ) ) ? sanitize_text_field( $attributes['excludeCurrentPost'] ) : false,
				'categories'         => ( isset( $attributes['categories'] ) && '' !== $attributes['categories'] ) ? sanitize_text_field( $attributes['categories'] ) : '',
				'taxonomyType'       => ( isset( $attributes['taxonomyType'] ) ) ? sanitize_text_field( $attributes['taxonomyType'] ) : 'category',
				'postPagination'     => ( isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) ? sanitize_text_field( $attributes['postPagination'] ) : false,
				'paginationType'     => ( isset( $attributes['paginationType'] ) && 'none' !== $attributes['paginationType'] ) ? sanitize_text_field( $attributes['paginationType'] ) : 'none',
				'paged'              => ( isset( $attributes['paged'] ) ) ? sanitize_text_field( $attributes['paged'] ) : '',
				'blockName'          => ( isset( $attributes['blockName'] ) ) ? sanitize_text_field( $attributes['blockName'] ) : '',
			);
		}

		/**
		 * Sends the Posts to Masonry AJAX.
		 *
		 * @since 1.18.1
		 */
		public function masonry_pagination() {

			check_ajax_referer( 'uagb_masonry_ajax_nonce', 'nonce' );

			$post_attribute_array = array();
			// $_POST['attr'] is sanitized in later stage.
			$attr = isset( $_POST['attr'] ) ? json_decode( wp_unslash( $_POST['attr'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

			$attr['paged'] = isset( $_POST['page_number'] ) ? sanitize_text_field( $_POST['page_number'] ) : '';

			$post_attribute_array = $this->required_attribute_for_query( $attr );

			$query = UAGB_Helper::get_query( $post_attribute_array, 'masonry' );

			foreach ( $attr as $key => $attribute ) {
				$attr[ $key ] = ( 'false' === $attribute ) ? false : ( ( 'true' === $attribute ) ? true : $attribute );
			}

			ob_start();
			$this->posts_articles_markup( $query, $attr );
			$html = ob_get_clean();

			wp_send_json_success( $html );
		}

		/**
		 * Render Posts HTML for Masonry Pagination.
		 *
		 * @param object $query WP_Query object.
		 * @param array  $attributes Array of block attributes.
		 * @since 1.18.1
		 */
		public function posts_articles_markup( $query, $attributes ) {

			while ( $query->have_posts() ) {

				$query->the_post();
				// Filter to modify the attributes based on content requirement.
				$attributes         = apply_filters( 'uagb_post_alter_attributes', $attributes, get_the_ID() );
				$post_class_enabled = apply_filters( 'uagb_enable_post_class', false, $attributes );

				do_action( "uagb_post_before_article_{$attributes['post_type']}", get_the_ID(), $attributes );
				$post_classes = ( $post_class_enabled ) ? implode( ' ', get_post_class( 'uagb-post__inner-wrap' ) ) : 'uagb-post__inner-wrap';
				$isLeftRight  = ( is_array( $attributes ) && isset( $attributes['isLeftToRightLayout'] ) ) ? $attributes['isLeftToRightLayout'] : false;
				?>
				<?php do_action( "uagb_post_before_inner_wrap_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
				<?php
				echo sprintf(
					'<article class="%1$s">',
					esc_attr( $post_classes )
				);
				?>
					<?php
					if ( $isLeftRight ) {
						$this->render_innerblocks_with_wrapper( $attributes );
					} else {
						$this->render_innerblocks( $attributes );
					}
					?>

					<?php $this->render_complete_box_link( $attributes ); ?>
				</article>
				<?php do_action( "uagb_post_after_inner_wrap_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
				<?php

				do_action( "uagb_post_after_article_{$attributes['post_type']}", get_the_ID(), $attributes );

			}

			wp_reset_postdata();
		}
		/**
		 * Render layout.
		 *
		 * @param array $fname to get the block.
		 * @param array $attr Array of block attributes.
		 *
		 * @since 1.20.0
		 */
		public function render_layout( $fname, $attr ) {
			switch ( $fname ) {
				case 'uagb/post-button':
					return $this->render_button( $attr );
				case 'uagb/post-image':
					return $this->render_image( $attr );
				case 'uagb/post-taxonomy':
					return ( 'aboveTitle' === $attr['displayPostTaxonomyAboveTitle'] ) ? $this->render_meta_taxonomy( $attr ) : '';
				case 'uagb/post-title':
					return $this->render_title( $attr );
				case 'uagb/post-meta':
					return $this->render_meta( $attr );
				case 'uagb/post-excerpt':
					return $this->render_excerpt( $attr );
				default:
					return '';
			}
		}

		/**
		 * Render Inner blocks with a wrapper.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.13.3
		 * @return void
		 */
		public function render_innerblocks_with_wrapper( $attributes ) {
			$length   = count( $attributes['layoutConfig'] );
			$img_atts = array();

			// Iterate through the blocks and find the uagb/post-image block.
			for ( $i = 0; $i < $length; $i++ ) {
				if ( 'uagb/post-image' === $attributes['layoutConfig'][ $i ][0] ) {
					// Store the image attributes for later rendering.
					$img_atts[] = $attributes['layoutConfig'][ $i ];
					// Remove the uagb/post-image block from the layoutConfig array.
					array_splice( $attributes['layoutConfig'], $i, 1 );
					$i--;
					$length--;
				}
			}

			// Render the uagb/post-image block(s) outside the wrapper, if it exists.
			foreach ( $img_atts as $img_att ) {
				echo esc_html( $this->render_layout( $img_att[0], $attributes ) );
			}

			// Render all blocks except for the uagb/post-image block inside the wrapper.
			echo '<div class="uag-post-grid-wrapper">';
			for ( $i = 0; $i < $length; $i++ ) {
				echo esc_html( $this->render_layout( $attributes['layoutConfig'][ $i ][0], $attributes ) );
			}
			echo '</div>';
		}

		/**
		 * Render Inner blocks.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.20.0
		 * @return void
		 */
		public function render_innerblocks( $attributes ) {
			$length   = count( $attributes['layoutConfig'] );
			$img_atts = array();
			for ( $i = 0; $i < $length; $i++ ) {
				if ( 'background' === $attributes['imgPosition'] && 'uagb/post-image' === $attributes['layoutConfig'][ $i ][0] ) {
					// This is to avoid background image container as first child as we are targetting first child for top margin property.
					$img_atts = $attributes['layoutConfig'][ $i ][0];
					continue;
				}
				$this->render_layout( $attributes['layoutConfig'][ $i ][0], $attributes );
			}
			// Render background image container as a last child.
			if ( ! empty( $img_atts ) ) {
				$this->render_layout( $img_atts, $attributes );
			}
		}
		/**
		 * Renders the post masonry related script.
		 *
		 * @since 0.0.1
		 */
		public function add_post_dynamic_script() {
			if ( isset( self::$settings['masonry'] ) && ! empty( self::$settings['masonry'] ) ) {
				foreach ( self::$settings['masonry'] as $key => $value ) {
					?>
					<script type="text/javascript" id="uagb-post-masonry-script-<?php echo esc_html( $key ); ?>">
						document.addEventListener("DOMContentLoaded", function(){
							let scope = document.querySelector( '.uagb-block-<?php echo esc_html( $key ); ?>' );
							if (scope.classList.contains( 'is-masonry' )) {
								setTimeout( function() {
									const isotope = new Isotope( scope, { // eslint-disable-line no-undef
											itemSelector: 'article',
										} );
									imagesLoaded( scope, function() { isotope	});
									window.addEventListener( 'resize', function() {	isotope	});
								}, 500 );
							}
							// This CSS is for Post BG Image Spacing
							let articles = document.querySelectorAll( '.wp-block-uagb-post-masonry.uagb-post__image-position-background .uagb-post__inner-wrap' );

							for( let article of articles ) {
								let articleWidth = article.offsetWidth;
								let rowGap = <?php echo esc_html( $value['rowGap'] ); ?>;
								let imageWidth = 100 - ( rowGap / articleWidth ) * 100;
								let image = article.getElementsByClassName('uagb-post__image');
								if ( image[0] ) {
									image[0].style.width = imageWidth + '%';
									image[0].style.marginLeft = rowGap / 2 + 'px';
								}

							}
						});
						<?php $selector = '.uagb-block-' . $key; ?>
						window.addEventListener( 'DOMContentLoaded', function() {
							UAGBPostMasonry._init( <?php echo wp_json_encode( $value ); ?>, '<?php echo esc_attr( $selector ); ?>' );
						});
					</script>
					<?php
				}
			}

			if ( isset( self::$settings['carousel'] ) && ! empty( self::$settings['carousel'] ) ) {
				foreach ( self::$settings['carousel'] as $key => $value ) {

					$dots         = ( 'dots' === $value['arrowDots'] || 'arrows_dots' === $value['arrowDots'] ) ? true : false;
					$arrows       = ( 'arrows' === $value['arrowDots'] || 'arrows_dots' === $value['arrowDots'] ) ? true : false;
					$equal_height = isset( $value['equalHeight'] ) ? $value['equalHeight'] : '';
					$tcolumns     = ( isset( $value['tcolumns'] ) ) ? $value['tcolumns'] : 2;
					$mcolumns     = ( isset( $value['mcolumns'] ) ) ? $value['mcolumns'] : 1;
					$is_rtl       = is_rtl();

					?>
					<script type="text/javascript" id="<?php echo esc_attr( $key ); ?>">
						document.addEventListener("DOMContentLoaded", function(){
							( function( $ ) {
								var cols = parseInt( '<?php echo esc_html( $value['columns'] ); ?>' );
								var $scope = $( '.uagb-block-<?php echo esc_html( $key ); ?>' );
								let imagePosition = '<?php echo esc_html( $value['imgPosition'] ); ?>';

								if( 'top' !== imagePosition ){
									// This CSS is for Post BG Image Spacing
									let articles = document.querySelectorAll( '.uagb-post__image-position-background .uagb-post__inner-wrap' );
									if( articles.length ) {
										for( let article of articles ) {
											let image = article.getElementsByClassName('uagb-post__image');
											if ( image[0] ) {
												let articleWidth = article.offsetWidth;
												let rowGap = <?php echo esc_html( $value['rowGap'] ); ?>;
												let imageWidth = 100 - ( rowGap / articleWidth ) * 100;
												image[0].style.width = imageWidth + '%';
												image[0].style.marginLeft = rowGap / 2 + 'px';
											}
										}
									}
								}
								// If this is not a Post Carousel, return.
								// Else if it is a carousel but has less posts than the number of columns, return after setting visibility.
								if ( ! $scope.hasClass('is-carousel') ) {
									return;
								} else if ( cols >= $scope.children('article.uagb-post__inner-wrap').length ) {
									$scope.css( 'visibility', 'visible' );
									return;
								}
								var slider_options = {
									'slidesToShow' : cols,
									'slidesToScroll' : 1,
									'autoplaySpeed' : <?php echo esc_html( $value['autoplaySpeed'] ); ?>,
									'autoplay' : Boolean( '<?php echo esc_html( $value['autoplay'] ); ?>' ),
									'infinite' : Boolean( '<?php echo esc_html( $value['infiniteLoop'] ); ?>' ),
									'pauseOnHover' : Boolean( '<?php echo esc_html( $value['pauseOnHover'] ); ?>' ),
									'speed' : <?php echo esc_html( $value['transitionSpeed'] ); ?>,
									'arrows' : Boolean( '<?php echo esc_html( $arrows ); ?>' ),
									'dots' : Boolean( '<?php echo esc_html( $dots ); ?>' ),
									'rtl' : Boolean( '<?php echo esc_html( $is_rtl ); ?>' ),
									'prevArrow' : '<button type=\"button\" data-role=\"none\" class=\"slick-prev\" aria-label=\"Previous\" tabindex=\"0\" role=\"button\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 256 512\"><path d=\"M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z\"></path></svg><\/button>',
									'nextArrow' : '<button type=\"button\" data-role=\"none\" class=\"slick-next\" aria-label=\"Next\" tabindex=\"0\" role=\"button\"><svg width=\"20\" height=\"20\" viewBox=\"0 0 256 512\"><path d=\"M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z\"></path></svg><\/button>',
									'responsive' : [
										{
											'breakpoint' : 1024,
											'settings' : {
												'slidesToShow' : <?php echo esc_html( $tcolumns ); ?>,
												'slidesToScroll' : 1,
											}
										},
										{
											'breakpoint' : 767,
											'settings' : {
												'slidesToShow' : <?php echo esc_html( $mcolumns ); ?>,
												'slidesToScroll' : 1,
											}
										}
									]
								};

								$scope.imagesLoaded( function() {
									$scope.slick( slider_options );
								}).always( function() {
									$scope.css( 'visibility', 'visible' );
								} );

								var enableEqualHeight = ( '<?php echo esc_html( $equal_height ); ?>' );

								if( enableEqualHeight ){
									$scope.imagesLoaded( function() {
										UAGBPostCarousel?._setHeight( $scope );
									});

									$scope.on( 'afterChange', function() {
										UAGBPostCarousel?._setHeight( $scope );
									} );
								}

							} )( jQuery );
						});
					</script>
					<?php
				}
			}

			if ( ! empty( self::$settings['grid'] ) && is_array( self::$settings['grid'] ) ) {
				foreach ( self::$settings['grid'] as $key => $value ) {
					if ( empty( $value ) || ! is_array( $value ) ) {
						return; // Exit early if this is not the attributes array.
					}
					if ( ! empty( $value['paginationType'] ) && 'ajax' !== $value['paginationType'] ) {
						return; // Early return when pagination type exists and is not ajax.
					}
					?>

					<script type="text/javascript" id="<?php echo esc_attr( $key ); ?>">
						( function() {
							let elements = document.querySelectorAll( '.uagb-post-grid.uagb-block-<?php echo esc_html( $key ); ?> .uagb-post-pagination-wrap a' );
							elements.forEach(function(element) {
								element.addEventListener("click", function(event){
									event.preventDefault();
									const link = event.target.getAttribute('href').match( /\/page\/\d+\// )?.[0] || '';
									const regex = /\d+/; // regular expression to match a number at the end of the string
									const match = link.match( regex ) ? link.match( regex )[0] : 1; // match the regular expression with the link
									const pageNumber = parseInt( match ); // extract the number and parse it to an integer
									window.UAGBPostGrid._callAjax(<?php echo wp_json_encode( $value ); ?>, pageNumber, '<?php echo esc_attr( $key ); ?>');
								});
							});
						} )();
					</script>

					<?php
				}
			}
		}

		/**
		 * Render Image HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function render_image( $attributes ) {
			if ( ! $attributes['displayPostImage'] ) {
				return;
			}

			if ( ! get_the_post_thumbnail_url() && ( 'background' !== $attributes['imgPosition'] ) ) {
				return;
			}

			$target = ( $attributes['newTab'] ) ? '_blank' : '_self';
			do_action( "uagb_single_post_before_featured_image_{$attributes['post_type']}", get_the_ID(), $attributes );

			?>
			<div class='uagb-post__image'>
				<?php
				if ( get_the_post_thumbnail_url() ) {
					if ( 'post-grid' === $attributes['blockName'] && 'background' !== $attributes['imgPosition'] ) {
						?>
					<a href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="bookmark noopener noreferrer" class='uagb-image-ratio-<?php echo esc_attr( $attributes['imageRatio'] ); ?>'><?php echo wp_get_attachment_image( get_post_thumbnail_id(), $attributes['imgSize'] ); ?>
					</a>
				<?php } else { ?>
					<a href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="bookmark noopener noreferrer"><?php echo wp_get_attachment_image( get_post_thumbnail_id(), $attributes['imgSize'] ); ?>
					</a>
						<?php
				}
				}
				?>
			</div>
			<?php
			do_action( "uagb_single_post_after_featured_image_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Render Post Title HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function render_title( $attributes ) {

			if ( ! $attributes['displayPostTitle'] ) {
				return;
			}

			$target = ( $attributes['newTab'] ) ? '_blank' : '_self';
			do_action( "uagb_single_post_before_title_{$attributes['post_type']}", get_the_ID(), $attributes );
			$array_of_allowed_HTML = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'span', 'p' );
			$title_tag             = UAGB_Helper::title_tag_allowed_html( $attributes['titleTag'], $array_of_allowed_HTML, 'h4' );
			?>
			<<?php echo esc_html( $title_tag ); ?> class="uagb-post__title uagb-post__text">
				<a href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="bookmark noopener noreferrer"><?php the_title(); ?></a>
			</<?php echo esc_html( $title_tag ); ?>>
			<?php
			do_action( "uagb_single_post_after_title_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Render Post Meta - Author HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.14.0
		 */
		public function render_meta_author( $attributes ) {

			if ( ! $attributes['displayPostAuthor'] ) {
				return;
			}
			?>
				<span class="uagb-post__author">
				<?php echo ( true === $attributes['hideTaxonomyIcon'] ) ? '<span class="dashicons-admin-users dashicons"></span>' : ''; ?>
					<?php the_author_posts_link(); ?>
				</span>
			<?php
		}

		/**
		 * Render Post Meta - Date HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.14.0
		 */
		public function render_meta_date( $attributes ) {

			if ( ! $attributes['displayPostDate'] ) {
				return;
			}
			global $post;
			?>
				<time datetime="<?php echo esc_attr( get_the_date( 'c', $post->ID ) ); ?>" class="uagb-post__date">
				<?php echo ( true === $attributes['hideTaxonomyIcon'] ) ? '<span class="dashicons-calendar dashicons"></span>' : ''; ?>
					<?php echo esc_html( get_the_date( '', $post->ID ) ); ?>
				</time>
			<?php
		}

		/**
		 * Render Post Meta - Comment HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.14.0
		 */
		public function render_meta_comment( $attributes ) {

			if ( ! $attributes['displayPostComment'] ) {
				return;
			}
			?>
				<span class="uagb-post__comment">
				<?php echo ( true === $attributes['hideTaxonomyIcon'] ) ? '<span class="dashicons-admin-comments dashicons"></span>' : ''; ?>
					<?php comments_number(); ?>
				</span>
			<?php
		}

		/**
		 * Render Post Meta - Comment HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.14.0
		 */
		public function render_meta_taxonomy( $attributes ) {

			if ( ! $attributes['displayPostTaxonomy'] ) {
				return;
			}
			global $post;

			$terms = get_the_terms( $post->ID, $attributes['taxonomyType'] );
			if ( is_wp_error( $terms ) ) {
				return;
			}

			if ( ! isset( $terms[0] ) ) {
				return;
			}
			$wrap = ( 'aboveTitle' === $attributes['displayPostTaxonomyAboveTitle'] ) ? array(
				'uagb-post__taxonomy',
				$attributes['taxStyle'],
			) : array( 'uagb-post__taxonomy' );

			if ( ( 'default' === $attributes['taxStyle'] && 'aboveTitle' === $attributes['displayPostTaxonomyAboveTitle'] ) || 'withMeta' === $attributes['displayPostTaxonomyAboveTitle'] ) {
				?>
				<div class="uagb-post__text">
					<span class='<?php echo esc_attr( implode( ' ', $wrap ) ); ?>'>
						<?php echo ( true === $attributes['hideTaxonomyIcon'] ) ? '<span class="dashicons-tag dashicons"></span>' : ''; ?>
						<?php
						$terms_list = array();
						foreach ( $terms as $key => $value ) {
							// Get the URL of this category.
							$category_link = get_category_link( $value->term_id );
							array_push( $terms_list, '<a href="' . esc_url( $category_link ) . '">' . esc_html( $value->name ) . '</a>' );
						}
						echo esc_attr( ( 'aboveTitle' === $attributes['displayPostTaxonomyAboveTitle'] ) && 'default' === $attributes['taxStyle'] ) ? wp_kses_post( implode( esc_html( $attributes['taxDivider'] ) . '&nbsp;', $terms_list ) ) : wp_kses_post( implode( ',&nbsp;', $terms_list ) );
						?>
					</span>
				</div>
				<?php
			}
			if ( 'highlighted' === $attributes['taxStyle'] && 'aboveTitle' === $attributes['displayPostTaxonomyAboveTitle'] ) {
				$terms_list = array();
				echo sprintf( '<div class="uagb-post__text">' );
				foreach ( $terms as $key => $value ) {
					// Get the URL of this category.
					$category_link = get_category_link( $value->term_id );
					echo sprintf(
						'<span class="%s">%s<a href="%s">%s</a></span>',
						esc_html( implode( ' ', $wrap ) ),
						( ( true === $attributes['hideTaxonomyIcon'] ) ? '<span class="dashicons-tag dashicons"></span>' : '' ),
						esc_url( $category_link ),
						esc_html( $value->name )
					);
				}
				echo sprintf( '</div>' );
			}
		}

		/**
		 * Render Post Meta HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function render_meta( $attributes ) {

			global $post;
			do_action( "uagb_single_post_before_meta_{$attributes['post_type']}", get_the_ID(), $attributes );

			$meta_sequence = array( 'author', 'date', 'comment', 'taxonomy' );
			$meta_sequence = apply_filters( "uagb_single_post_meta_sequence_{$attributes['post_type']}", $meta_sequence, get_the_ID(), $attributes );
			?>
			<div class='uagb-post__text uagb-post-grid-byline'>
				<?php
				foreach ( $meta_sequence as $key => $sequence ) {
					switch ( $sequence ) {
						case 'author':
							$this->render_meta_author( $attributes );
							break;

						case 'date':
							$this->render_meta_date( $attributes );
							break;

						case 'comment':
							$this->render_meta_comment( $attributes );
							break;

						case 'taxonomy':
							( 'withMeta' === $attributes['displayPostTaxonomyAboveTitle'] ) ? $this->render_meta_taxonomy( $attributes ) : '';
							break;

						default:
							break;
					}
				}
				?>
			</div>
			<?php
			do_action( "uagb_single_post_after_meta_{$attributes['post_type']}", get_the_ID(), $attributes );

		}

		/**
		 * Render Post Excerpt HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function render_excerpt( $attributes ) {

			if ( ! $attributes['displayPostExcerpt'] ) {
				return;
			}

			global $post;

			if ( 'full_post' === $attributes['displayPostContentRadio'] ) {
				$excerpt = get_the_content();
			} else {
				$excerpt_length_fallback = UAGB_Block_Helper::get_fallback_number( $attributes['excerptLength'], 'excerptLength', 'post-timeline' );
				$excerpt                 = UAGB_Helper::uagb_get_excerpt( $post->ID, $post->post_content, $excerpt_length_fallback );
			}

			$excerpt = apply_filters( "uagb_single_post_excerpt_{$attributes['post_type']}", $excerpt, get_the_ID(), $attributes );
			do_action( "uagb_single_post_before_excerpt_{$attributes['post_type']}", get_the_ID(), $attributes );
			?>
				<div class='uagb-post__text uagb-post__excerpt'>
					<?php echo wp_kses_post( $excerpt ); ?>
				</div>
			<?php
			do_action( "uagb_single_post_after_excerpt_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Render Post CTA button HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function render_button( $attributes ) {
			$inherit_astra_secondary = $attributes['inheritFromThemeBtn'] && 'secondary' === $attributes['buttonType'];
			$button_type_class       = $inherit_astra_secondary ? 'ast-outline-button' : 'wp-block-button__link';

			// Initialize an empty string for border style.
			$border_style = $inherit_astra_secondary ? 'border-width: revert-layer;' : '';

			if ( ! $attributes['displayPostLink'] ) {
				return;
			}
			$target   = ( $attributes['newTab'] ) ? '_blank' : '_self';
			$cta_text = ( $attributes['ctaText'] ) ? $attributes['ctaText'] : __( 'Read More', 'ultimate-addons-for-gutenberg' );
			do_action( "uagb_single_post_before_cta_{$attributes['post_type']}", get_the_ID(), $attributes );
			$wrap_classes = 'uagb-post__text uagb-post__cta wp-block-button';
			$link_classes = $button_type_class . ' uagb-text-link';
			?>
			<div class="<?php echo esc_attr( $wrap_classes ); ?>">
				<a class="<?php echo esc_attr( $link_classes ); ?>" style="<?php echo esc_attr( $border_style ); ?>" href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="bookmark noopener noreferrer"><?php echo wp_kses_post( $cta_text ); ?></a>
			</div>
			<?php
			do_action( "uagb_single_post_after_cta_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Render Complete Box Link HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.7.0
		 */
		public function render_complete_box_link( $attributes ) {
			if ( ! ( isset( $attributes['linkBox'] ) && $attributes['linkBox'] ) ) {
				return;
			}
			$target = ( $attributes['newTab'] ) ? '_blank' : '_self';
			?>
			<a class="uagb-post__link-complete-box" href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="bookmark noopener noreferrer"></a>
			<?php
		}

		/**
		 * Disable canonical on Single Post.
		 *
		 * @param  string $redirect_url  The redirect URL.
		 * @param  string $requested_url The requested URL.
		 * @since  1.14.9
		 * @return bool|string
		 */
		public function override_canonical( $redirect_url, $requested_url ) {

			global $wp_query;

			if ( is_array( $wp_query->query ) ) {

				if ( true === $wp_query->is_singular
					&& - 1 === $wp_query->current_post
					&& true === $wp_query->is_paged
				) {
					// Only prevent redirect if we're on a valid archive/listing page with pagination.
					// Don't prevent redirects for single posts with invalid pagination.
					if ( ! is_single() ) {
						$redirect_url = false;
					}
				}
			}

			return $redirect_url;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Post' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Post::get_instance();
}
PK�][�R�6�6�Vultimate-addons-for-gutenberg/blocks-config/post-timeline/class-uagb-post-timeline.phpnu�[���<?php
/**
 * UAGB Post.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Post_Timeline' ) ) {

	/**
	 * Class UAGB_Post_Timeline.
	 */
	class UAGB_Post_Timeline {


		/**
		 * Member Variable
		 *
		 * @since 1.18.1
		 * @var instance
		 */
		private static $instance;

		/**
		 * Member Variable
		 *
		 * @since 1.18.1
		 * @var settings
		 */
		private static $settings;

		/**
		 *  Initiator
		 *
		 * @since 1.18.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {

			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `core/latest-posts` block on server.
		 *
		 * @since 0.0.1
		 */
		public function register_blocks() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			$inherit_from_theme = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

			register_block_type(
				'uagb/post-timeline',
				array(
					'attributes'      => array(
						'blockName'                  => array(
							'type'    => 'string',
							'default' => 'post-timeline',
						),
						'align'                      => array(
							'type'    => 'string',
							'default' => '',
						),
						'alignTablet'                => array(
							'type'    => 'string',
							'default' => '',
						),
						'alignMobile'                => array(
							'type'    => 'string',
							'default' => '',
						),
						'headingColor'               => array(
							'type'    => 'string',
							'default' => '#333',
						),
						'subHeadingColor'            => array(
							'type'    => 'string',
							'default' => '#333',
						),
						'separatorBg'                => array(
							'type'    => 'string',
							'default' => '#eee',
						),
						'backgroundColor'            => array(
							'type'    => 'string',
							'default' => '#eee',
						),
						'separatorColor'             => array(
							'type'    => 'string',
							'default' => '#eee',
						),
						'separatorFillColor'         => array(
							'type'    => 'string',
							'default' => '#0693e3',
						),
						'separatorBorder'            => array(
							'type'    => 'string',
							'default' => '#eee',
						),
						'borderFocus'                => array(
							'type'    => 'string',
							'default' => '#5cb85c',
						),
						'headingTag'                 => array(
							'type'    => 'string',
							'default' => 'h3',
						),
						'horizontalSpace'            => array(
							'type'    => 'number',
							'default' => 10,
						),
						'horizontalSpaceTablet'      => array(
							'type' => 'number',
						),
						'horizontalSpaceMobile'      => array(
							'type' => 'number',
						),
						'horizontalSpaceUnit'        => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'horizontalSpaceUnitTablet'  => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'horizontalSpaceUnitMobile'  => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'verticalSpace'              => array(
							'type'    => 'number',
							'default' => 15,
						),
						'verticalSpaceTablet'        => array(
							'type' => 'number',
						),
						'verticalSpaceMobile'        => array(
							'type' => 'number',
						),
						'verticalSpaceUnit'          => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'verticalSpaceUnitTablet'    => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'verticalSpaceUnitMobile'    => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'timelinAlignment'           => array(
							'type'    => 'string',
							'default' => 'center',
						),
						'timelinAlignmentTablet'     => array(
							'type' => 'string',
						),
						'timelinAlignmentMobile'     => array(
							'type' => 'string',
						),
						'arrowlinAlignment'          => array(
							'type'    => 'string',
							'default' => 'center',
						),
						'subHeadFontSizeType'        => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'subHeadFontSize'            => array(
							'type' => 'number',
						),
						'subHeadFontSizeTablet'      => array(
							'type' => 'number',
						),
						'subHeadFontSizeMobile'      => array(
							'type' => 'number',
						),
						'subHeadFontFamily'          => array(
							'type'    => 'string',
							'default' => '',
						),
						'subHeadFontWeight'          => array(
							'type' => 'string',
						),
						'subHeadFontStyle'           => array(
							'type' => 'string',
						),
						'subHeadLineHeightType'      => array(
							'type'    => 'string',
							'default' => 'em',
						),
						'subHeadLineHeight'          => array(
							'type' => 'number',
						),
						'subHeadLineHeightTablet'    => array(
							'type' => 'number',
						),
						'subHeadLineHeightMobile'    => array(
							'type' => 'number',
						),
						'subHeadLoadGoogleFonts'     => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'headSpace'                  => array(
							'type'    => 'number',
							'default' => 5,
						),
						'headSpaceTablet'            => array(
							'type' => 'number',
						),
						'headSpaceMobile'            => array(
							'type' => 'number',
						),
						'authorSpace'                => array(
							'type'    => 'number',
							'default' => 5,
						),
						'authorSpaceTablet'          => array(
							'type' => 'number',
						),
						'authorSpaceMobile'          => array(
							'type' => 'number',
						),
						'contentSpace'               => array(
							'type'    => 'number',
							'default' => 15,
						),
						'separatorwidth'             => array(
							'type'    => 'number',
							'default' => 3,
						),
						'borderwidth'                => array(
							'type'    => 'number',
							'default' => 0,
						),
						'iconColor'                  => array(
							'type'    => 'string',
							'default' => '#333',
						),
						'iconFocus'                  => array(
							'type'    => 'string',
							'default' => '#fff',
						),
						'iconBgFocus'                => array(
							'type'    => 'string',
							'default' => '#0693e3',
						),
						'authorColor'                => array(
							'type'    => 'string',
							'default' => '#333',
						),
						'authorFontSizeType'         => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'authorFontSize'             => array(
							'type'    => 'number',
							'default' => 11,
						),
						'authorFontSizeTablet'       => array(
							'type' => 'number',
						),
						'authorFontSizeMobile'       => array(
							'type' => 'number',
						),
						'authorFontFamily'           => array(
							'type'    => 'string',
							'default' => '',
						),
						'authorFontWeight'           => array(
							'type' => 'string',
						),
						'authorFontStyle'            => array(
							'type' => 'string',
						),
						'authorLineHeightType'       => array(
							'type'    => 'string',
							'default' => 'em',
						),
						'authorLineHeight'           => array(
							'type' => 'number',
						),
						'authorLineHeightTablet'     => array(
							'type' => 'number',
						),
						'authorLineHeightMobile'     => array(
							'type' => 'number',
						),
						'authorLoadGoogleFonts'      => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'ctaFontSizeType'            => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'ctaFontSize'                => array(
							'type'    => 'number',
							'default' => '',
						),
						'ctaFontSizeTablet'          => array(
							'type' => 'number',
						),
						'ctaFontSizeMobile'          => array(
							'type' => 'number',
						),
						'ctaFontFamily'              => array(
							'type'    => 'string',
							'default' => '',
						),
						'ctaFontWeight'              => array(
							'type' => 'string',
						),
						'ctaFontStyle'               => array(
							'type' => 'string',
						),
						'ctaLineHeightType'          => array(
							'type'    => 'string',
							'default' => 'em',
						),
						'ctaLineHeight'              => array(
							'type' => 'number',
						),
						'ctaLineHeightTablet'        => array(
							'type' => 'number',
						),
						'ctaLineHeightMobile'        => array(
							'type' => 'number',
						),
						'ctaLoadGoogleFonts'         => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'dateColor'                  => array(
							'type'    => 'string',
							'default' => '#333',
						),
						'dateFontsizeType'           => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'dateFontsize'               => array(
							'type'    => 'number',
							'default' => 12,
						),
						'dateFontsizeTablet'         => array(
							'type' => 'number',
						),
						'dateFontsizeMobile'         => array(
							'type' => 'number',
						),
						'dateFontSizeType'           => array(
							'type' => 'string',
						),
						'dateFontSize'               => array(
							'type' => 'number',
						),
						'dateFontSizeTablet'         => array(
							'type' => 'number',
						),
						'dateFontSizeMobile'         => array(
							'type' => 'number',
						),
						'dateFontFamily'             => array(
							'type'    => 'string',
							'default' => '',
						),
						'dateFontWeight'             => array(
							'type' => 'string',
						),
						'dateFontStyle'              => array(
							'type' => 'string',
						),
						'dateLineHeightType'         => array(
							'type'    => 'string',
							'default' => 'em',
						),
						'dateLineHeight'             => array(
							'type' => 'number',
						),
						'dateLineHeightTablet'       => array(
							'type' => 'number',
						),
						'dateLineHeightMobile'       => array(
							'type' => 'number',
						),
						'dateLoadGoogleFonts'        => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'connectorBgsize'            => array(
							'type'    => 'number',
							'default' => 35,
						),
						'dateBottomspace'            => array(
							'type'    => 'number',
							'default' => 5,
						),
						'dateBottomspaceMobile'      => array(
							'type' => 'number',
						),
						'dateBottomspaceTablet'      => array(
							'type' => 'number',
						),
						'headFontSizeType'           => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'headFontSize'               => array(
							'type' => 'number',
						),
						'headFontSizeTablet'         => array(
							'type' => 'number',
						),
						'headFontSizeMobile'         => array(
							'type' => 'number',
						),
						'headFontFamily'             => array(
							'type'    => 'string',
							'default' => '',
						),
						'headFontWeight'             => array(
							'type' => 'string',
						),
						'headFontStyle'              => array(
							'type' => 'string',
						),
						'headLineHeightType'         => array(
							'type'    => 'string',
							'default' => 'em',
						),
						'headLineHeight'             => array(
							'type' => 'number',
						),
						'headLineHeightTablet'       => array(
							'type' => 'number',
						),
						'headLineHeightMobile'       => array(
							'type' => 'number',
						),
						'headLoadGoogleFonts'        => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'categories'                 => array(
							'type' => 'string',
						),
						'postType'                   => array(
							'type'    => 'string',
							'default' => 'post',
						),
						'taxonomyType'               => array(
							'type'    => 'string',
							'default' => 'category',
						),
						'postsToShow'                => array(
							'type'    => 'number',
							'default' => 6,
						),
						'postsOffset'                => array(
							'type'    => 'number',
							'default' => 0,
						),
						'displayPostDate'            => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'dateFormat'                 => array(
							'type'    => 'string',
							'default' => 'F j, Y',
						),
						'displayPostExcerpt'         => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'displayPostAuthor'          => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'displayPostImage'           => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'displayPostLink'            => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'inheritFromTheme'           => array(
							'type'    => 'boolean',
							'default' => $inherit_from_theme,
						),
						'buttonType'                 => array(
							'type'    => 'string',
							'default' => 'primary',
						),
						'exerptLength'               => array(
							'type'    => 'number',
							'default' => 15,
						),
						'postLayout'                 => array(
							'type'    => 'string',
							'default' => 'grid',
						),
						'columns'                    => array(
							'type'    => 'number',
							'default' => 2,
						),
						'width'                      => array(
							'type'    => 'string',
							'default' => 'wide',
						),
						'order'                      => array(
							'type'    => 'string',
							'default' => 'desc',
						),
						'orderBy'                    => array(
							'type'    => 'string',
							'default' => 'date',
						),
						'imageSize'                  => array(
							'type'    => 'string',
							'default' => 'large',
						),
						'readMoreText'               => array(
							'type'    => 'string',
							'default' => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
						),
						'block_id'                   => array(
							'type'    => 'string',
							'default' => 'not_set',
						),
						'icon'                       => array(
							'type'    => 'string',
							'default' => 'calendar-days',
						),
						'borderRadius'               => array(
							'type'    => 'number',
							'default' => 2,
						),
						'borderRadiusTablet'         => array(
							'type' => 'number',
						),
						'borderRadiusMobile'         => array(
							'type' => 'number',
						),
						'bgPadding'                  => array(
							'type'    => 'number',
							'default' => 20,
						),
						'contentPadding'             => array(
							'type'    => 'number',
							'default' => 10,
						),
						'ctaBottomSpacing'           => array(
							'type'    => 'number',
							'default' => 0,
						),
						'ctaBottomSpacingTablet'     => array(
							'type' => 'number',
						),
						'ctaBottomSpacingMobile'     => array(
							'type' => 'number',
						),
						'headTopSpacing'             => array(
							'type'    => 'number',
							'default' => 0,
						),
						'headTopSpacingTablet'       => array(
							'type' => 'number',
						),
						'headTopSpacingMobile'       => array(
							'type' => 'number',
						),
						'iconSize'                   => array(
							'type'    => 'number',
							'default' => 15,
						),
						'ctaColor'                   => array(
							'type' => 'string',
						),
						'ctaBackground'              => array(
							'type' => 'string',
						),
						'stack'                      => array(
							'type'    => 'string',
							'default' => 'tablet',
						),
						'linkTarget'                 => array(
							'type'    => 'boolean',
							'default' => false,
						),
						// Exclude Current Post.
						'excludeCurrentPost'         => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'leftMargin'                 => array(
							'type' => 'number',
						),
						'rightMargin'                => array(
							'type' => 'number',
						),
						'topMargin'                  => array(
							'type' => 'number',
						),
						'bottomMargin'               => array(
							'type' => 'number',
						),
						'leftMarginTablet'           => array(
							'type' => 'number',
						),
						'rightMarginTablet'          => array(
							'type' => 'number',
						),
						'topMarginTablet'            => array(
							'type' => 'number',
						),
						'bottomMarginTablet'         => array(
							'type' => 'number',
						),
						'leftMarginMobile'           => array(
							'type' => 'number',
						),
						'rightMarginMobile'          => array(
							'type' => 'number',
						),
						'topMarginMobile'            => array(
							'type' => 'number',
						),
						'bottomMarginMobile'         => array(
							'type' => 'number',
						),
						'marginUnit'                 => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'mobileMarginUnit'           => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'tabletMarginUnit'           => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'marginLink'                 => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'leftPadding'                => array(
							'type' => 'number',
						),
						'rightPadding'               => array(
							'type' => 'number',
						),
						'topPadding'                 => array(
							'type' => 'number',
						),
						'bottomPadding'              => array(
							'type' => 'number',
						),
						'leftPaddingTablet'          => array(
							'type' => 'number',
						),
						'rightPaddingTablet'         => array(
							'type' => 'number',
						),
						'topPaddingTablet'           => array(
							'type' => 'number',
						),
						'bottomPaddingTablet'        => array(
							'type' => 'number',
						),
						'leftPaddingMobile'          => array(
							'type' => 'number',
						),
						'rightPaddingMobile'         => array(
							'type' => 'number',
						),
						'topPaddingMobile'           => array(
							'type' => 'number',
						),
						'bottomPaddingMobile'        => array(
							'type' => 'number',
						),
						'paddingUnit'                => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'mobilePaddingUnit'          => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'tabletPaddingUnit'          => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'paddingLink'                => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'headTransform'              => array(
							'type' => 'string',
						),
						'authorTransform'            => array(
							'type' => 'string',
						),
						'subHeadTransform'           => array(
							'type' => 'string',
						),
						'dateTransform'              => array(
							'type' => 'string',
						),
						'ctaTransform'               => array(
							'type' => 'string',
						),
						'headDecoration'             => array(
							'type' => 'string',
						),
						'authorDecoration'           => array(
							'type' => 'string',
						),
						'subHeadDecoration'          => array(
							'type' => 'string',
						),
						'dateDecoration'             => array(
							'type' => 'string',
						),
						'ctaDecoration'              => array(
							'type' => 'string',
						),
						'isPreview'                  => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'headLetterSpacing'          => array(
							'type'    => 'number',
							'default' => '',
						),
						'headLetterSpacingType'      => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'headLetterSpacingMobile'    => array(
							'type' => 'number',
						),
						'headLetterSpacingTablet'    => array(
							'type' => 'number',
						),
						'subHeadLetterSpacing'       => array(
							'type'    => 'number',
							'default' => '',
						),
						'subHeadLetterSpacingType'   => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'subHeadLetterSpacingMobile' => array(
							'type' => 'number',
						),
						'subHeadLetterSpacingTablet' => array(
							'type' => 'number',
						),
						'ctaLetterSpacing'           => array(
							'type'    => 'number',
							'default' => '',
						),
						'ctaLetterSpacingType'       => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'ctaLetterSpacingMobile'     => array(
							'type' => 'number',
						),
						'ctaLetterSpacingTablet'     => array(
							'type' => 'number',
						),
						'dateLetterSpacing'          => array(
							'type'    => 'number',
							'default' => '',
						),
						'dateLetterSpacingType'      => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'dateLetterSpacingMobile'    => array(
							'type' => 'number',
						),
						'dateLetterSpacingTablet'    => array(
							'type' => 'number',
						),
						'authorLetterSpacing'        => array(
							'type'    => 'number',
							'default' => '',
						),
						'authorLetterSpacingType'    => array(
							'type'    => 'string',
							'default' => 'px',
						),
						'authorLetterSpacingMobile'  => array(
							'type' => 'number',
						),
						'authorLetterSpacingTablet'  => array(
							'type' => 'number',
						),
					),
					'render_callback' => array( $this, 'post_timeline_callback' ),
				)
			);
		}

		/**
		 * Renders the post grid block on server.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 0.0.1
		 */
		public function post_timeline_callback( $attributes ) {

			$attributes['post_type'] = 'timeline';

			$recent_posts = UAGB_Helper::get_query( $attributes, 'timeline' );
			$block_id     = 'uagb-block-' . $attributes['block_id'];

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}

			$outer_class = 'uagb-timeline__outer-wrap';

			$main_classes = array(
				'wp-block-uagb-post-timeline',
				$outer_class,
				$block_id,
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
			);

			ob_start();
			?>
			<div class = "
			<?php
			echo esc_attr( implode( ' ', $main_classes ) );
			echo esc_html( $this->get_classes( $attributes ) );
			?>
			<?php
			echo esc_html( $this->get_classes( $attributes ) );
			?>
			"
			style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>" >
				<?php
				if ( empty( $recent_posts ) ) {
					esc_html_e( 'No posts found', 'ultimate-addons-for-gutenberg' );
				} else {
					$this->get_post_html( $attributes, $recent_posts );
				}
				?>
				<div class = "uagb-timeline__line" >
					<div class = "uagb-timeline__line__inner"></div>
				</div>
			</div>
			<?php
			return ob_get_clean();
		}

		/**
		 * Renders the post timeline block on server.
		 *
		 * @param array  $attributes Array of block attributes.
		 *
		 * @param object $query WP_Query object.
		 * @since 0.0.1
		 */
		public function get_post_html( $attributes, $query ) {
			?>
				<?php
				$index = 0;
				while ( $query->have_posts() ) {
					$query->the_post();
					global $post;
					$this->render_single( $attributes, $index, $post );
					$index++;
				}
				wp_reset_postdata();
				?>
			<?php
		}

		/**
		 * Renders the post timeline single block.
		 *
		 * @param array  $attributes Array of block attributes.
		 * @param int    $index Index value of current post.
		 * @param object $post Current Post object.
		 *
		 * @since 0.0.1
		 */
		public function render_single( $attributes, $index, $post ) {

			$display_inner_date  = ( 'center' === $attributes['timelinAlignment'] ) ? true : false;
			$content_align_class = $this->get_align_classes( $attributes, $index );
			$day_align_class     = $this->get_day_align_classes( $attributes, $index );

			?>
			<article class = "uagb-timeline__field <?php echo esc_html( $content_align_class ); ?>">
					<?php $this->get_icon( $attributes ); ?>
					<div class = "<?php echo esc_html( $day_align_class ); ?> uagb-timeline__events-inner-new" >
						<div class="uagb-timeline__events-inner--content">
								<?php $this->get_date( $attributes, 'uagb-timeline__date-hide uagb-timeline__inner-date-new' ); ?>
							<?php ( $attributes['displayPostImage'] ) ? $this->get_image( $attributes ) : ''; ?>
								<?php
									$this->get_title( $attributes );
									$this->get_author( $attributes, $post->post_author );
									$this->get_excerpt( $attributes );
									$this->get_cta( $attributes );
								?>
								<div class = "uagb-timeline__arrow"></div>
						</div>
					</div>
					<?php if ( $display_inner_date ) { ?>
						<?php $this->get_date( $attributes, 'uagb-timeline__date-new' ); ?>
					<?php } ?>
			</article>
			<?php
		}

		/**
		 * Function Name: get_icon.
		 *
		 * @param  array $attributes attribute array.
		 */
		public function get_icon( $attributes ) {
			?>
			<div class = "uagb-timeline__marker uagb-timeline__out-view-icon" >
				<span class = "uagb-timeline__icon-new uagb-timeline__out-view-icon" ><?php UAGB_Helper::render_svg_html( $attributes['icon'] ); ?></span>
			</div>
			<?php
		}

		/**
		 * Function Name: get_image.
		 *
		 * @param  array $attributes attribute array.
		 */
		public function get_image( $attributes ) {

			if ( ! get_the_post_thumbnail_url() ) {
				return;
			}

			$target = ( isset( $attributes['linkTarget'] ) && ( true === $attributes['linkTarget'] ) ) ? '_blank' : '_self';
			do_action( "uagb_single_post_before_featured_image_{$attributes['post_type']}", get_the_ID(), $attributes );
			?>
				<a class='uagb-timeline__image' href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="noopener noreferrer"><?php echo wp_get_attachment_image( get_post_thumbnail_id(), $attributes['imageSize'] ); ?>
				</a>
			<?php
			do_action( "uagb_single_post_after_featured_image_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Function Name: get_date.
		 *
		 * @param  array  $attributes attribute array.
		 * @param  string $classname attribute string.
		 */
		public function get_date( $attributes, $classname ) {

			global $post;
			$post_id = $post->ID;
			?>
			<div datetime="<?php echo esc_attr( get_the_date( 'c', $post_id ) ); ?>" class="<?php echo esc_attr( $classname ); ?>">
				<?php
				if ( isset( $attributes['displayPostDate'] ) && $attributes['displayPostDate'] ) {
					echo esc_html( get_the_date( $attributes['dateFormat'], $post_id ) );
				}
				?>
			</div>
			<?php
		}

		/**
		 * Function Name: get_title.
		 *
		 * @param  array $attributes attribute array.
		 */
		public function get_title( $attributes ) {

			$target = ( isset( $attributes['linkTarget'] ) && ( true === $attributes['linkTarget'] ) ) ? '_blank' : '_self';

			$array_of_allowed_HTML = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'span', 'p' );
			$tag                   = UAGB_Helper::title_tag_allowed_html( $attributes['headingTag'], $array_of_allowed_HTML, 'h3' );
			global $post;
			?>
				<?php do_action( "uagb_single_post_before_title_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
				<<?php echo esc_html( $tag ); ?> class="uagb-timeline__heading" >
					<a href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel="noopener noreferrer"><?php the_title(); ?></a>
				</<?php echo esc_html( $tag ); ?>>
				<?php do_action( "uagb_single_post_after_title_{$attributes['post_type']}", get_the_ID(), $attributes ); ?>
			<?php
		}

		/**
		 * Function Name: get_cta.
		 *
		 * @param  array $attributes attribute array.
		 */
		public function get_cta( $attributes ) {

			$inherit_astra_secondary = $attributes['inheritFromTheme'] && 'secondary' === $attributes['buttonType'];
			$button_type_class       = $inherit_astra_secondary ? 'ast-outline-button' : 'wp-block-button__link';

			// Initialize an empty string for border style.
			$border_style  = $inherit_astra_secondary ? 'border-width: revert-layer;' : '';
			$cta_btn_class = "uagb-timeline__link $button_type_class";

			if ( ! $attributes['displayPostLink'] ) {
				return;
			}
			$target = ( isset( $attributes['linkTarget'] ) && ( true === $attributes['linkTarget'] ) ) ? '_blank' : '_self';
			do_action( "uagb_single_post_before_cta_{$attributes['post_type']}", get_the_ID(), $attributes );
			?>
			<div class="uagb-timeline__link_parent wp-block-button">
				<a class="<?php echo esc_attr( $cta_btn_class ); ?>" style="<?php echo esc_attr( $border_style ); ?>" href="<?php echo esc_url( apply_filters( "uagb_single_post_link_{$attributes['post_type']}", get_the_permalink(), get_the_ID(), $attributes ) ); ?>" target="<?php echo esc_attr( $target ); ?>" rel=" noopener noreferrer"><?php echo wp_kses_post( $attributes['readMoreText'] ); ?></a>
			</div>
			<?php
			do_action( "uagb_single_post_after_cta_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Function get_author.
		 *
		 * @param  array $attributes attribute.
		 * @param  array $author attribute.
		 */
		public function get_author( $attributes, $author ) {

			$output = '';
			do_action( "uagb_single_post_before_meta_{$attributes['post_type']}", get_the_ID(), $attributes );
			if ( isset( $attributes['displayPostAuthor'] ) && $attributes['displayPostAuthor'] ) {
				?>
				<span class="dashicons-admin-users dashicons"></span>
				<a class="uagb-timeline__author-link" href="<?php echo esc_url( get_author_posts_url( $author ) ); ?>"><?php echo esc_html( get_the_author_meta( 'display_name', $author ) ); ?></a>
				<?php
			}
			do_action( "uagb_single_post_after_meta_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Function get_excerpt.
		 *
		 * @param  array $attributes attribute.
		 */
		public function get_excerpt( $attributes ) {

			if ( ! $attributes['displayPostExcerpt'] ) {
				return;
			}

			global $post;

			$excerpt_length_fallback = UAGB_Block_Helper::get_fallback_number( $attributes['exerptLength'], 'exerptLength', $attributes['blockName'] );

			$excerpt = UAGB_Helper::uagb_get_excerpt( $post->ID, $post->post_content, $excerpt_length_fallback );

			$excerpt = apply_filters( "uagb_single_post_excerpt_{$attributes['post_type']}", $excerpt, get_the_ID(), $attributes );
			do_action( "uagb_single_post_before_excerpt_{$attributes['post_type']}", get_the_ID(), $attributes );
			?>
			<div class="uagb-timeline-desc-content">
				<?php echo wp_kses_post( $excerpt ); ?>
			</div>
			<?php
			do_action( "uagb_single_post_after_excerpt_{$attributes['post_type']}", get_the_ID(), $attributes );
		}

		/**
		 * Function Name: get_classes .
		 *
		 * @param  array $attributes array of setting.
		 * @return string             class name.
		 */
		public function get_classes( $attributes ) {

			// Arrow position.
			$classes = array();
			if ( isset( $attributes['arrowlinAlignment'] ) && '' !== $attributes['arrowlinAlignment'] ) {
				$classes[] = 'uagb-timeline__arrow-' . $attributes['arrowlinAlignment'];
			}
			// Alignmnet.
			if ( isset( $attributes['timelinAlignment'] ) && '' !== $attributes['timelinAlignment'] ) {
				$classes[] = 'uagb-timeline__' . $attributes['timelinAlignment'] . '-block';
			}

			if ( isset( $attributes['displayPostLink'] ) && '' !== $attributes['displayPostLink'] ) {
				$classes[] = 'uagb_timeline__cta-enable';
			}

			$classes[] = 'uagb-timeline';
			$classes[] = 'uagb-timeline__content-wrap';

			return implode( ' ', $classes );
		}

		/**
		 * Function Name: get_align_classes description.
		 *
		 * @param array  $attributes attribute array.
		 * @param string $index_val  post index.
		 * @return string            output HTML/String.
		 */
		public function get_align_classes( $attributes, $index_val ) {

			$classes   = array();
			$classes[] = '';
			if ( isset( $attributes['timelinAlignment'] ) && '' !== $attributes['timelinAlignment'] ) {
				if ( 'center' !== $attributes['timelinAlignment'] ) {
					$classes[] = 'uagb-timeline__' . $attributes['timelinAlignment'];
				} else {
					$classes[] = ( 0 === $index_val % 2 ) ? 'uagb-timeline__right' : 'uagb-timeline__left';
				}
			}

			return implode( ' ', $classes );
		}

		/**
		 * Function Name: get_day_align_classes description.
		 *
		 * @param array  $attributes attribute array.
		 * @param string $index_val  post index.
		 * @return string            output HTML/String.
		 */
		public function get_day_align_classes( $attributes, $index_val ) {

			$classes   = array();
			$classes[] = 'uagb-timeline__day-new';
			if ( isset( $attributes['timelinAlignment'] ) && '' !== $attributes['timelinAlignment'] ) {
				if ( 'center' === $attributes['timelinAlignment'] ) {
					$classes[] = ( 0 === $index_val % 2 ) ? 'uagb-timeline__day-right' : 'uagb-timeline__day-left';
				} else {
					$classes[] = 'uagb-timeline__day-' . $attributes['timelinAlignment'];
				}
			}

			return implode( ' ', $classes );
		}

	}

	/**
	 *  Prepare if class 'UAGB_Post_Timeline' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Post_Timeline::get_instance();
}
PK�][#T*>hhPultimate-addons-for-gutenberg/blocks-config/cf7-styler/class-uagb-cf7-styler.phpnu�[���<?php
/**
 * UAGB - Contact Form 7 Designer.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_CF7_Styler' ) ) {

	/**
	 * Class UAGB_CF7_Styler.
	 */
	class UAGB_CF7_Styler {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {

			// Activation hook.
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `core/latest-posts` block on server.
		 *
		 * @since 0.0.1
		 */
		public function register_blocks() {

			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}
			$field_border_attribute = array();
			$btn_border_attribute   = array();

			if ( method_exists( 'UAGB_Block_Helper', 'uag_generate_php_border_attribute' ) ) {

				$field_border_attribute = UAGB_Block_Helper::uag_generate_php_border_attribute( 'input' );
				$btn_border_attribute   = UAGB_Block_Helper::uag_generate_php_border_attribute( 'btn' );

			}

			$enable_legacy_blocks = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' );

			if ( 'yes' === $enable_legacy_blocks ) {
				register_block_type(
					'uagb/cf7-styler',
					array(
						'attributes'      => array_merge(
							$field_border_attribute,
							$btn_border_attribute,
							array(
								'block_id'                 => array(
									'type' => 'string',
								),
								'align'                    => array(
									'type'    => 'string',
									'default' => 'left',
								),
								'className'                => array(
									'type' => 'string',
								),
								'formId'                   => array(
									'type'    => 'string',
									'default' => '0',
								),
								'isHtml'                   => array(
									'type' => 'boolean',
								),
								'formJson'                 => array(
									'type'    => 'object',
									'default' => null,
								),
								'fieldStyle'               => array(
									'type'    => 'string',
									'default' => 'box',
								),
								'fieldVrPadding'           => array(
									'type'    => 'number',
									'default' => 10,
								),
								'fieldHrPadding'           => array(
									'type'    => 'number',
									'default' => 10,
								),
								'fieldBgColor'             => array(
									'type'    => 'string',
									'default' => '#fafafa',
								),
								'fieldLabelColor'          => array(
									'type'    => 'string',
									'default' => '#333',
								),
								'fieldInputColor'          => array(
									'type'    => 'string',
									'default' => '#333',
								),
								'buttonAlignment'          => array(
									'type'    => 'string',
									'default' => 'left',
								),
								'buttonAlignmentTablet'    => array(
									'type'    => 'string',
									'default' => '',
								),
								'buttonAlignmentMobile'    => array(
									'type'    => 'string',
									'default' => '',
								),
								'buttonVrPadding'          => array(
									'type'    => 'number',
									'default' => 10,
								),
								'buttonHrPadding'          => array(
									'type'    => 'number',
									'default' => 25,
								),
								'buttonTextColor'          => array(
									'type'    => 'string',
									'default' => '#333',
								),
								'buttonBgColor'            => array(
									'type'    => 'string',
									'default' => '',
								),
								'buttonTextHoverColor'     => array(
									'type'    => 'string',
									'default' => '#333',
								),
								'buttonBgHoverColor'       => array(
									'type'    => 'string',
									'default' => '',
								),
								'fieldSpacing'             => array(
									'type'    => 'number',
									'default' => '',
								),
								'fieldSpacingTablet'       => array(
									'type' => 'number',
								),
								'fieldSpacingMobile'       => array(
									'type' => 'number',
								),
								'fieldLabelSpacing'        => array(
									'type'    => 'number',
									'default' => '',
								),
								'fieldLabelSpacingTablet'  => array(
									'type' => 'number',
								),
								'fieldLabelSpacingMobile'  => array(
									'type' => 'number',
								),
								'labelFontSize'            => array(
									'type'    => 'number',
									'default' => '',
								),
								'labelFontSizeType'        => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'labelFontSizeTablet'      => array(
									'type' => 'number',
								),
								'labelFontSizeMobile'      => array(
									'type' => 'number',
								),
								'labelFontFamily'          => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'labelFontWeight'          => array(
									'type' => 'string',
								),
								'labelLineHeightType'      => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'labelLineHeight'          => array(
									'type' => 'number',
								),
								'labelLineHeightTablet'    => array(
									'type' => 'number',
								),
								'labelLineHeightMobile'    => array(
									'type' => 'number',
								),
								'labelLoadGoogleFonts'     => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'inputFontSize'            => array(
									'type'    => 'number',
									'default' => '',
								),
								'inputFontSizeType'        => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'inputFontSizeTablet'      => array(
									'type' => 'number',
								),
								'inputFontSizeMobile'      => array(
									'type' => 'number',
								),
								'inputFontFamily'          => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'inputFontWeight'          => array(
									'type' => 'string',
								),
								'inputLineHeightType'      => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'inputLineHeight'          => array(
									'type' => 'number',
								),
								'inputLineHeightTablet'    => array(
									'type' => 'number',
								),
								'inputLineHeightMobile'    => array(
									'type' => 'number',
								),
								'inputLoadGoogleFonts'     => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'buttonFontSize'           => array(
									'type'    => 'number',
									'default' => '',
								),
								'buttonFontSizeType'       => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonFontSizeTablet'     => array(
									'type' => 'number',
								),
								'buttonFontSizeMobile'     => array(
									'type' => 'number',
								),
								'buttonFontFamily'         => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'buttonFontWeight'         => array(
									'type' => 'string',
								),
								'buttonLineHeightType'     => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'buttonLineHeight'         => array(
									'type' => 'number',
								),
								'buttonLineHeightTablet'   => array(
									'type' => 'number',
								),
								'buttonLineHeightMobile'   => array(
									'type' => 'number',
								),
								'buttonLoadGoogleFonts'    => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'enableOveride'            => array(
									'type'    => 'boolean',
									'default' => true,
								),
								'radioCheckSize'           => array(
									'type'    => 'number',
									'default' => '',
								),
								'radioCheckSizeTablet'     => array(
									'type' => 'number',
								),
								'radioCheckSizeMobile'     => array(
									'type' => 'number',
								),
								'radioCheckBgColor'        => array(
									'type'    => 'string',
									'default' => '',
								),
								'radioCheckSelectColor'    => array(
									'type'    => 'string',
									'default' => '',
								),
								'radioCheckLableColor'     => array(
									'type'    => 'string',
									'default' => '',
								),
								'radioCheckBorderColor'    => array(
									'type'    => 'string',
									'default' => '#abb8c3',
								),
								'radioCheckBorderWidth'    => array(
									'type'    => 'number',
									'default' => '',
								),
								'radioCheckBorderWidthTablet' => array(
									'type'    => 'number',
									'default' => '1',
								),
								'radioCheckBorderWidthMobile' => array(
									'type'    => 'number',
									'default' => '1',
								),
								'radioCheckBorderWidthUnit' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'radioCheckBorderRadius'   => array(
									'type'    => 'number',
									'default' => '',
								),
								'radioCheckFontSize'       => array(
									'type'    => 'number',
									'default' => '',
								),
								'radioCheckFontSizeType'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'radioCheckFontSizeTablet' => array(
									'type' => 'number',
								),
								'radioCheckFontSizeMobile' => array(
									'type' => 'number',
								),
								'radioCheckFontFamily'     => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'radioCheckFontWeight'     => array(
									'type' => 'string',
								),
								'radioCheckLineHeightType' => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'radioCheckLineHeight'     => array(
									'type' => 'number',
								),
								'radioCheckLineHeightTablet' => array(
									'type' => 'number',
								),
								'radioCheckLineHeightMobile' => array(
									'type' => 'number',
								),
								'radioCheckLoadGoogleFonts' => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'validationMsgPosition'    => array(
									'type'    => 'string',
									'default' => 'default',
								),
								'validationMsgColor'       => array(
									'type'    => 'string',
									'default' => '#ff0000',
								),
								'validationMsgBgColor'     => array(
									'type'    => 'string',
									'default' => '',
								),
								'enableHighlightBorder'    => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'highlightBorderColor'     => array(
									'type'    => 'string',
									'default' => '#ff0000',
								),
								'validationMsgFontSize'    => array(
									'type'    => 'number',
									'default' => '',
								),
								'validationMsgFontSizeType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'validationMsgFontSizeTablet' => array(
									'type' => 'number',
								),
								'validationMsgFontSizeMobile' => array(
									'type' => 'number',
								),
								'validationMsgFontFamily'  => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'validationMsgFontWeight'  => array(
									'type' => 'string',
								),
								'validationMsgLineHeightType' => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'validationMsgLineHeight'  => array(
									'type' => 'number',
								),
								'validationMsgLineHeightTablet' => array(
									'type' => 'number',
								),
								'validationMsgLineHeightMobile' => array(
									'type' => 'number',
								),
								'validationMsgLoadGoogleFonts' => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'successMsgColor'          => array(
									'type'    => 'string',
									'default' => '',
								),
								'successMsgBgColor'        => array(
									'type'    => 'string',
									'default' => '',
								),
								'successMsgBorderColor'    => array(
									'type'    => 'string',
									'default' => '',
								),
								'errorMsgColor'            => array(
									'type'    => 'string',
									'default' => '',
								),
								'errorMsgBgColor'          => array(
									'type'    => 'string',
									'default' => '',
								),
								'errorMsgBorderColor'      => array(
									'type'    => 'string',
									'default' => '',
								),
								'msgBorderSize'            => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgBorderSizeUnit'        => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'msgBorderRadius'          => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgVrPadding'             => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgHrPadding'             => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgFontSize'              => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgFontSizeType'          => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'msgFontSizeTablet'        => array(
									'type' => 'number',
								),
								'msgFontSizeMobile'        => array(
									'type' => 'number',
								),
								'msgFontFamily'            => array(
									'type'    => 'string',
									'default' => 'Default',
								),
								'msgFontWeight'            => array(
									'type' => 'string',
								),
								'msgLineHeightType'        => array(
									'type'    => 'string',
									'default' => 'em',
								),
								'msgLineHeight'            => array(
									'type' => 'number',
								),
								'msgLineHeightTablet'      => array(
									'type' => 'number',
								),
								'msgLineHeightMobile'      => array(
									'type' => 'number',
								),
								'msgLoadGoogleFonts'       => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'radioCheckBorderRadiusType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'msgBorderRadiusType'      => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'fieldBorderRadiusType'    => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonBorderRadiusType'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'messageTopPaddingDesktop' => array(
									'type' => 'number',
								),
								'messageBottomPaddingDesktop' => array(
									'type' => 'number',
								),
								'messageLeftPaddingDesktop' => array(
									'type' => 'number',
								),
								'messageRightPaddingDesktop' => array(
									'type' => 'number',
								),

								'messageTopPaddingTablet'  => array(
									'type' => 'number',
								),
								'messageBottomPaddingTablet' => array(
									'type' => 'number',
								),
								'messageLeftPaddingTablet' => array(
									'type' => 'number',
								),
								'messageRightPaddingTablet' => array(
									'type' => 'number',
								),

								'messageTopPaddingMobile'  => array(
									'type' => 'number',
								),
								'messageBottomPaddingMobile' => array(
									'type' => 'number',
								),
								'messageLeftPaddingMobile' => array(
									'type' => 'number',
								),
								'messageRightPaddingMobile' => array(
									'type' => 'number',
								),
								'messagePaddingTypeDesktop' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'messageSpacingLink'       => array(
									'type'    => 'boolean',
									'default' => false,
								),

								'buttonTopPaddingDesktop'  => array(
									'type' => 'number',
								),
								'buttonBottomPaddingDesktop' => array(
									'type' => 'number',
								),
								'buttonLeftPaddingDesktop' => array(
									'type' => 'number',
								),
								'buttonRightPaddingDesktop' => array(
									'type' => 'number',
								),

								'buttonTopPaddingTablet'   => array(
									'type' => 'number',
								),
								'buttonBottomPaddingTablet' => array(
									'type' => 'number',
								),
								'buttonLeftPaddingTablet'  => array(
									'type' => 'number',
								),
								'buttonRightPaddingTablet' => array(
									'type' => 'number',
								),

								'buttonTopPaddingMobile'   => array(
									'type' => 'number',
								),
								'buttonBottomPaddingMobile' => array(
									'type' => 'number',
								),
								'buttonLeftPaddingMobile'  => array(
									'type' => 'number',
								),
								'buttonRightPaddingMobile' => array(
									'type' => 'number',
								),
								'buttonPaddingTypeDesktop' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonPaddingTypeTablet'  => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonPaddingTypeMobile'  => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonSpacingLink'        => array(
									'type'    => 'boolean',
									'default' => false,
								),

								'fieldTopPaddingDesktop'   => array(
									'type' => 'number',
								),
								'fieldBottomPaddingDesktop' => array(
									'type' => 'number',
								),
								'fieldLeftPaddingDesktop'  => array(
									'type' => 'number',
								),
								'fieldRightPaddingDesktop' => array(
									'type' => 'number',
								),

								'fieldTopPaddingTablet'    => array(
									'type' => 'number',
								),
								'fieldBottomPaddingTablet' => array(
									'type' => 'number',
								),
								'fieldLeftPaddingTablet'   => array(
									'type' => 'number',
								),
								'fieldRightPaddingTablet'  => array(
									'type' => 'number',
								),

								'fieldTopPaddingMobile'    => array(
									'type' => 'number',
								),
								'fieldBottomPaddingMobile' => array(
									'type' => 'number',
								),
								'fieldLeftPaddingMobile'   => array(
									'type' => 'number',
								),
								'fieldRightPaddingMobile'  => array(
									'type' => 'number',
								),
								'fieldPaddingTypeDesktop'  => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'fieldPaddingTypeTablet'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'fieldPaddingTypeMobile'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'fieldSpacingLink'         => array(
									'type'    => 'boolean',
									'default' => false,
								),
								'labelTransform'           => array(
									'type' => 'string',
								),
								'labelDecoration'          => array(
									'type' => 'string',
								),
								'labelFontStyle'           => array(
									'type' => 'string',
								),
								'inputTransform'           => array(
									'type' => 'string',
								),
								'inputDecoration'          => array(
									'type' => 'string',
								),
								'inputFontStyle'           => array(
									'type' => 'string',
								),
								'buttonTransform'          => array(
									'type' => 'string',
								),
								'buttonDecoration'         => array(
									'type' => 'string',
								),
								'buttonFontStyle'          => array(
									'type' => 'string',
								),
								'radioCheckTransform'      => array(
									'type' => 'string',
								),
								'radioCheckDecoration'     => array(
									'type' => 'string',
								),
								'radioCheckFontStyle'      => array(
									'type' => 'string',
								),
								'validationMsgTransform'   => array(
									'type' => 'string',
								),
								'validationMsgDecoration'  => array(
									'type' => 'string',
								),
								'validationMsgFontStyle'   => array(
									'type' => 'string',
								),
								'msgTransform'             => array(
									'type' => 'string',
								),
								'msgDecoration'            => array(
									'type' => 'string',
								),
								'msgFontStyle'             => array(
									'type' => 'string',
								),
								'isPreview'                => array(
									'type'    => 'boolean',
									'default' => false,
								),

								'labelLetterSpacing'       => array(
									'type'    => 'number',
									'default' => '',
								),
								'labelLetterSpacingType'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'labelLetterSpacingMobile' => array(
									'type' => 'number',
								),
								'labelLetterSpacingTablet' => array(
									'type' => 'number',
								),
								'inputLetterSpacing'       => array(
									'type'    => 'number',
									'default' => '',
								),
								'inputLetterSpacingType'   => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'inputLetterSpacingMobile' => array(
									'type' => 'number',
								),
								'inputLetterSpacingTablet' => array(
									'type' => 'number',
								),
								'buttonLetterSpacing'      => array(
									'type'    => 'number',
									'default' => '',
								),
								'buttonLetterSpacingType'  => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'buttonLetterSpacingMobile' => array(
									'type' => 'number',
								),
								'buttonLetterSpacingTablet' => array(
									'type' => 'number',
								),
								'radioCheckLetterSpacing'  => array(
									'type'    => 'number',
									'default' => '',
								),
								'radioCheckLetterSpacingType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'radioCheckLetterSpacingMobile' => array(
									'type' => 'number',
								),
								'radioCheckLetterSpacingTablet' => array(
									'type' => 'number',
								),
								'validationMsgLetterSpacing' => array(
									'type'    => 'number',
									'default' => '',
								),
								'validationMsgLetterSpacingType' => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'validationMsgLetterSpacingMobile' => array(
									'type' => 'number',
								),
								'validationMsgLetterSpacingTablet' => array(
									'type' => 'number',
								),

								'msgLetterSpacing'         => array(
									'type'    => 'number',
									'default' => '',
								),
								'msgLetterSpacingType'     => array(
									'type'    => 'string',
									'default' => 'px',
								),
								'msgLetterSpacingMobile'   => array(
									'type' => 'number',
								),
								'msgLetterSpacingTablet'   => array(
									'type' => 'number',
								),
								'fieldBorderStyle'         => array(
									'type'    => 'string',
									'default' => 'solid',
								),
								'fieldBorderWidth'         => array(
									'type'    => 'number',
									'default' => 1,
								),
								'fieldBorderRadius'        => array(
									'type'    => 'number',
									'default' => 0,
								),
								'fieldBorderColor'         => array(
									'type'    => 'string',
									'default' => '#eeeeee',
								),
								'fieldBorderFocusColor'    => array(
									'type'    => 'string',
									'default' => '',
								),
								'buttonBorderStyle'        => array(
									'type'    => 'string',
									'default' => 'solid',
								),
								'buttonBorderWidth'        => array(
									'type'    => 'number',
									'default' => 1,
								),
								'buttonBorderRadius'       => array(
									'type'    => 'number',
									'default' => 0,
								),
								'buttonBorderColor'        => array(
									'type'    => 'string',
									'default' => '#333',
								),
								'buttonBorderHoverColor'   => array(
									'type'    => 'string',
									'default' => '#333',
								),
							)
						),
						'render_callback' => array( $this, 'render_html' ),
					)
				);
			}

		}

		/**
		 * Render CF7 HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.10.0
		 */
		public function render_html( $attributes ) {

			$form = $attributes['formId'];

			$classes = array(
				'uagb-cf7-styler__align-' . $attributes['align'],
				'uagb-cf7-styler__field-style-' . $attributes['fieldStyle'],
				'uagb-cf7-styler__btn-align-' . $attributes['buttonAlignment'],
				'uagb-cf7-styler__btn-align-tablet-' . $attributes['buttonAlignmentTablet'],
				'uagb-cf7-styler__btn-align-mobile-' . $attributes['buttonAlignmentMobile'],
				'uagb-cf7-styler__highlight-style-' . $attributes['validationMsgPosition'],
			);

			if ( $attributes['enableOveride'] ) {
				$classes[] = 'uagb-cf7-styler__check-style-enabled';
			}

			if ( $attributes['enableHighlightBorder'] ) {
				$classes[] = 'uagb-cf7-styler__highlight-border';
			}
			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$main_classes = array(
				'wp-block-uagb-cf7-styler',
				'uagb-cf7-styler__outer-wrap',
				'uagb-block-' . $attributes['block_id'],
				$desktop_class,
				$tab_class,
				$mob_class,
			);

			if ( isset( $attributes['className'] ) ) {
				$main_classes[] = $attributes['className'];
			}

			ob_start();
			if ( $form && 0 !== $form && -1 !== $form ) {
				?>
				<div class = "<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>">
					<div class = "<?php echo esc_attr( implode( ' ', $classes ) ); ?>">
					<?php echo do_shortcode( '[contact-form-7 id="' . $form . '"]' ); ?>
					</div>
				</div>
				<?php
			}
			return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'UAGB_CF7_Styler' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_CF7_Styler::get_instance();
}
PK�][
�eCultimate-addons-for-gutenberg/blocks-config/uagb-controls/error_lognu�[���[27-Oct-2025 15:24:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-1.php:22
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-1.php on line 22
[27-Oct-2025 15:26:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-0.php:132
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-0.php on line 132
[27-Oct-2025 15:28:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-3.php:22
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-3.php on line 22
[27-Oct-2025 15:29:29 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-2.php:22
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-2.php on line 22
PK�][҂h}||Iultimate-addons-for-gutenberg/blocks-config/uagb-controls/AddGBSStyles.jsnu�[���import { useEffect, useMemo } from '@wordpress/element';
import { STORE_NAME as storeName } from '@Store/constants';
import { useSelect } from '@wordpress/data';
import getGBSEditorStyles from '@Controls/getGBSEditorStyles';
import AddGBSStylesDom from './AddGBSStylesDom';
import { GBS_RANDOM_NUMBER } from '@Utils/Helpers';
import { blocksAttributes } from '@Attributes/getBlocksDefaultAttributes';
import getAttributeFallback, { getFallbackNumber } from '@Controls/getAttributeFallback';

const AddGBSStyles = ( ChildComponent )=> {
	const WrapWithStyle = ( props ) => {
		const { globalBlockStyles, initialStateFlag } = useSelect( ( select ) => {
			const getStore = select( storeName );
			return {
				globalBlockStyles: getStore.getGlobalBlockStyles(),
				initialStateFlag: getStore.getState()?.initialStateSetFlag,
			}
		}, [] );

		const { 
			attributes,
			attributes : {
				globalBlockStyleId
			},
			setAttributes,
			name,
		} = props;

		const blockName = name.replace( 'uagb/', '' );
		
		const modifiedAttr = { ...attributes };

		const isGBSPresent = useMemo( () => globalBlockStyles?.find( style => {
			return globalBlockStyleId && style?.value === globalBlockStyleId;
		} ), [ globalBlockStyleId, globalBlockStyles ] );

		useEffect( () => {
			if ( uagb_blocks_info?.spectra_pro_status && 'enabled' === uagb_blocks_info?.uag_enable_gbs_extension ) {
				const editorStyles = getGBSEditorStyles( globalBlockStyles, globalBlockStyleId );
				AddGBSStylesDom( globalBlockStyleId, editorStyles );
			}

			// Don't set attribute is extension is not enabled.
			if ( 'disabled' === uagb_blocks_info?.uag_enable_gbs_extension ){
				return;
			}

			if( initialStateFlag && ! isGBSPresent && globalBlockStyleId ){
				const resetObject = { globalBlockStyleId : '', globalBlockStyleName : '' };
				for ( const attributeKey in modifiedAttr ) {
					// Check attribute support GBS style.
					if( ! blocksAttributes?.[ blockName ]?.[ attributeKey ]?.isGBSStyle ){
						continue;
					}

					// Reset gbs number attributes.
					if( GBS_RANDOM_NUMBER === modifiedAttr?.[ attributeKey ] ){
						resetObject[ attributeKey ] = getFallbackNumber( '', attributeKey, blockName );
					}

					// Reset the attributes which are not GBS style attributes.
					if( ! modifiedAttr?.[ attributeKey ] ){
						resetObject[ attributeKey ] = getAttributeFallback( '', attributeKey, blockName );
					}
				}
				setAttributes( resetObject );
			}
		}, [ globalBlockStyles ] );

		// Filter the placeholder attribute.
		if ( globalBlockStyleId && 'disabled' === uagb_blocks_info?.uag_enable_gbs_extension ){
			// If extension is disabled then set attributes as default.
			for ( const objectKey in modifiedAttr ) {
				// Check attribute support GBS style.
				if( ! blocksAttributes?.[ blockName ]?.[ objectKey ]?.isGBSStyle ){
					continue;
				}

				// Reset gbs number attributes.
				if( GBS_RANDOM_NUMBER === modifiedAttr?.[ objectKey ] ){
					modifiedAttr[ objectKey ] = getFallbackNumber( '', objectKey, blockName );
				}

				// Reset the attributes which are not GBS style attributes.
				if( ! modifiedAttr?.[ objectKey ] ){
					modifiedAttr[ objectKey ] = getAttributeFallback( '', objectKey, blockName );
				}
			}
		}else{
			for ( const objectKey in modifiedAttr ) {
				// Replace GBS_RANDOM_NUMBER with empty string.
				if( GBS_RANDOM_NUMBER === modifiedAttr?.[objectKey] ){
					modifiedAttr[objectKey] = '';
				}
			}
		}
		
		const updatedAttributes = {
			...attributes,
			...modifiedAttr
		};

		props = { ...props, ...{ attributes: updatedAttributes, isGBSPresent } };

		return <ChildComponent { ...props }/>
	}

    return WrapWithStyle;
}
export default AddGBSStyles;PK�][~0��Fultimate-addons-for-gutenberg/blocks-config/uagb-controls/isInvalid.jsnu�[���const isInvalid = ( block ) => {
	const { name, isValid, validationIssues } = block;

	if ( ! name || ! name.match( /^uagb\// ) ) {
		return false;
	}

	if ( isValid || ! validationIssues.length ) {
		return false;
	}

	return true;
};

export default isInvalid;
PK�][Os�2%%Pultimate-addons-for-gutenberg/blocks-config/uagb-controls/getImageHeightWidth.jsnu�[���async function getImageHeightWidth( url, setAttributes, onlyHas = null ) {
	// onlyHas is an object with the following properties:
	// onlyHas: {
	//     type: 'width' || 'height',
	//     value: attributeValue,
	// }
	/* eslint-disable no-undef */
	const img = new Image();
	img.addEventListener( 'load', function () {
		const imgTagWidth =
			'height' === onlyHas?.type
				? parseInt( ( onlyHas.value * this?.naturalWidth ) / this?.naturalHeight )
				: this?.naturalWidth;
		const imgTagHeight =
			'width' === onlyHas?.type
				? parseInt( ( onlyHas.value * this?.naturalHeight ) / this?.naturalWidth )
				: this?.naturalHeight;
		setAttributes( {
			// eslint-disable-next-line no-nested-ternary
			imgTagHeight: isNaN( imgTagHeight ) ? ( onlyHas !== null ? onlyHas?.value : imgTagHeight ) : imgTagHeight,
		} );
		setAttributes( {
			// eslint-disable-next-line no-nested-ternary
			imgTagWidth: isNaN( imgTagWidth ) ? ( onlyHas !== null ? onlyHas?.value : imgTagWidth ) : imgTagWidth,
		} );
	} );
	img.src = url;
}
export default getImageHeightWidth;
PK�][$&In��Lultimate-addons-for-gutenberg/blocks-config/uagb-controls/AddStaticStyles.jsnu�[���import { useEffect } from '@wordpress/element';
import addBlockEditorDynamicStyles from '@Controls/addBlockEditorDynamicStyles';
import { useDeviceType } from '@Controls/getPreviewType';

const AddStaticStyles = ( ChildComponent )=> {
	const WrapWithStyle = ( props ) => {
		useEffect( () => {
			addBlockEditorDynamicStyles();
		}, [] );

		return <ChildComponent { ...props } deviceType={ useDeviceType() } />
	}

    return WrapWithStyle;
}
export default AddStaticStyles;PK�][�����Nultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateShadowCSS.jsnu�[���import generateCSSUnit from '@Controls/generateCSSUnit';

/**
 * Generate the Box Shadow or Text Shadow CSS.
 *
 * For Text Shadow CSS:
 * { spread, position } should not be sent as params during the function call.
 * { spreadUnit } will have no effect.
 *
 * For Box/Text Shadow Hover CSS:
 * { altColor } should be set as the attribute used for { color } in Box/Text Shadow Normal CSS.
 *
 * @param {Object} shadowProperties                       The object of properties used to generate the Box/Text Shadow CSS.
 * @param {number|undefined} shadowProperties.horizontal  The horizontal value.
 * @param {number|undefined} shadowProperties.vertical    The vertical value.
 * @param {number|undefined} shadowProperties.blur        The blur value.
 * @param {number|undefined} shadowProperties.spread      The spread value.
 * @param {string} shadowProperties.horizontalUnit        The horizontal unit, defaults to 'px'.
 * @param {string} shadowProperties.verticalUnit          The vertical unit, defaults to 'px'.
 * @param {string} shadowProperties.blurUnit              The blur unit, defaults to 'px'.
 * @param {string} shadowProperties.spreadUnit            The spread unit, defaults to 'px'.
 * @param {string|undefined} shadowProperties.color       The shadow color.
 * @param {string} shadowProperties.position              The inset/outset position.
 * @param {string} shadowProperties.altColor              An alternate color to use for hover if color is undefined.
 * @return {string}                                       The generated css, or empty string if required properties aren't set.
 *
 * @since 2.5.0
 */
const generateShadowCSS = ( shadowProperties ) => {
	let {
		horizontal,
		vertical,
		blur,
		spread = undefined,
		horizontalUnit = 'px',
		verticalUnit = 'px',
		blurUnit = 'px',
		spreadUnit = 'px',
		color,
		position = 'outset',
		altColor = '',
	} = shadowProperties;

	// Although optional, color is required for Sarafi on PC. Return early if color isn't set.
	if ( ! color && ! altColor ) {
		return '';
	}

	// Get the CSS units for the number properties.
	horizontal = generateCSSUnit( horizontal, horizontalUnit );
	if ( '' === horizontal ) {
		horizontal = 0;
	}

	vertical = generateCSSUnit( vertical, verticalUnit );
	if ( '' === vertical ) {
		vertical = 0;
	}

	blur = generateCSSUnit( blur, blurUnit );
	if ( '' === blur ) {
		blur = 0;
	}

	spread = generateCSSUnit( spread, spreadUnit );
	if ( '' === spread ) {
		spread = 0;
	}

	// If all numeric unit values are exactly 0, don't render the CSS.
	if ( 0 === horizontal && 0 === vertical && 0 === blur && 0 === spread ) {
		return '';
	}

	// Return the CSS with horizontal, vertical, blur, and color - and conditionally render spread and position.
	return `${ horizontal } ${ vertical } ${ blur }${ spread ? ` ${ spread }` : '' } ${ color ? color : altColor }${
		'outset' === position ? '' : ` ${ position }`
	}`;
};

export default generateShadowCSS;
PK�][����
�
Xultimate-addons-for-gutenberg/blocks-config/uagb-controls/addBlockEditorDynamicStyles.jsnu�[���const addBlockEditorDynamicStyles = () => {
	setTimeout( () => {
		const getAllIFrames = document.getElementsByTagName( 'iframe' );
		if ( ! getAllIFrames?.length ) {
			return;
		}

		const cloneLinkTag = ( linkId ) => {
			const getTag = document.getElementById( linkId );
			return getTag ? getTag.cloneNode( true ) : false;
		}

		const cloneStyleTag = ( styleId ) => {
			const getStyleTag = document.getElementById( styleId );
			return getStyleTag ? getStyleTag.textContent : false;
		}
		
		const dashiconsCss = cloneLinkTag( 'dashicons-css' );
		const blockCssCss = cloneLinkTag( 'uagb-block-css-css' );
		const slickStyle = cloneLinkTag( 'uagb-slick-css-css' );
		const swiperStyle = cloneLinkTag( 'uagb-swiper-css-css' );
		const aosStyle = cloneLinkTag( 'uagb-aos-css-css' );

		const editorStyle = cloneStyleTag( 'uagb-editor-styles' );
		const editorProStyle = cloneStyleTag( 'spectra-pro-editor-styles' );
		const spacingStyle = cloneStyleTag( 'uagb-blocks-editor-spacing-style' );
		const editorCustomStyle = cloneStyleTag( 'uagb-blocks-editor-custom-css' );

		for ( const iterateIFrames of getAllIFrames ) {
			// Skip the iframe with the specific name.
			if ( uagb_blocks_info.exclude_crops_iframes.includes( iterateIFrames.name ) ) {
				continue;
			}
			try {
			const iframeDocument = iterateIFrames?.contentWindow?.document || iterateIFrames?.contentDocument;
			if( ! iframeDocument?.head ){
				continue;
			}

			const copyLinkTag = ( clonedTag, tagId ) => {
				if ( ! clonedTag ) return;
				const isExistTag = iframeDocument.getElementById( tagId );
				if ( isExistTag ) return;
				iframeDocument.head.appendChild( clonedTag );
			}

			const copyStyleTag = ( clonedTag, tagId ) => {
				if ( ! clonedTag ) return;
				const isExistTag = iframeDocument.getElementById( tagId );
				if( ! isExistTag ){
					const node = document.createElement( 'style' )
					node.setAttribute( 'id', tagId );
					node.textContent = clonedTag;
					iframeDocument.head.appendChild( node )
				}else{
					isExistTag.textContent = clonedTag
				}
			}

			copyLinkTag( blockCssCss, 'uagb-block-css-css' );
			copyLinkTag( dashiconsCss, 'dashicons-css' );
			copyLinkTag( slickStyle, 'uagb-slick-css-css' );
			copyLinkTag( swiperStyle, 'uagb-swiper-css-css' );
			copyLinkTag( aosStyle, 'uagb-aos-css-css' );

			copyStyleTag( editorStyle, 'uagb-editor-styles' );
			copyStyleTag( editorProStyle, 'spectra-pro-editor-styles' );
			copyStyleTag( spacingStyle, 'uagb-blocks-editor-spacing-style' );
			copyStyleTag( editorCustomStyle, 'uagb-blocks-editor-custom-css' );
			} catch ( e ) {
				// Ignore cross-origin access errors.
			}
		} // Loop end.
	} );
};

export default addBlockEditorDynamicStyles;PK�][+W�GWultimate-addons-for-gutenberg/blocks-config/uagb-controls/responsiveConditionPreview.jsnu�[���const responsiveConditionPreview = ( props ) => {
	// Desktop.
	const element = document.getElementById( 'block-' + props.clientId );

	const desktopStyle = document.getElementById( props.clientId + '-desktop-hide-block' );
	if ( props.attributes.UAGHideDesktop ) {
		if ( null !== element && undefined !== element ) {
			if ( null === desktopStyle || undefined === desktopStyle ) {
				const $style = document.createElement( 'style' );
				$style.setAttribute( 'id', props.clientId + '-desktop-hide-block' );

				$style.innerHTML =
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-desktop{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ';
				$style.innerHTML +=
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-desktop:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ';

				document.head.appendChild( $style );
			}
		}
	} else if ( null !== desktopStyle && undefined !== desktopStyle ) {
		desktopStyle.remove();
	}
	const tabletPreview = document.getElementsByClassName( 'is-tablet-preview' );
	const mobilePreview = document.getElementsByClassName( 'is-mobile-preview' );

	if ( 0 !== tabletPreview.length || 0 !== mobilePreview.length ) {
		const preview = tabletPreview[ 0 ] || mobilePreview[ 0 ];

		let iframe = false;

		if ( preview ) {
			iframe = preview.getElementsByTagName( 'iframe' )[ 0 ];
		}

		const iframeDocument = iframe?.contentWindow.document || iframe?.contentDocument;

		if ( ! iframe || ! iframeDocument ) {
			return;
		}
		const iframeTabletElement = iframeDocument.getElementById( props.clientId + '-tablet-hide-block' );

		if ( props.attributes.UAGHideTab ) {
			if ( null === iframeTabletElement || undefined === iframeTabletElement ) {
				const $style = document.createElement( 'style' );
				$style.setAttribute( 'id', props.clientId + '-tablet-hide-block' );

				$style.innerHTML =
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-tablet{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ';
				$style.innerHTML +=
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-tablet:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ';

				setTimeout( () => {
					iframeDocument.head.appendChild( $style );
				}, 500 );
			}
		} else if ( null !== iframeTabletElement && undefined !== iframeTabletElement ) {
			iframeTabletElement.remove();
		}
		const iframeMobileElement = iframeDocument.getElementById( props.clientId + '-mobile-hide-block' );
		if ( props.attributes.UAGHideMob ) {
			if ( null === iframeMobileElement || undefined === iframeMobileElement ) {
				const $style = document.createElement( 'style' );
				$style.setAttribute( 'id', props.clientId + '-mobile-hide-block' );

				$style.innerHTML =
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-mobile{ background:repeating-linear-gradient(125deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 1px, transparent 2px, transparent 9px); border: 1px solid rgba(0, 0, 0, 0.15); } ';
				$style.innerHTML +=
					'.uagb-block-' +
					props.clientId.substr( 0, 8 ) +
					'.uagb-editor-preview-mode-mobile:before{ content: ""; display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%;  background-color: rgba(255, 255, 255, 0.6); z-index: 9997; } ';

				setTimeout( () => {
					iframeDocument.head.appendChild( $style );
				}, 500 );
			}
		} else if ( null !== iframeMobileElement && undefined !== iframeMobileElement ) {
			iframeMobileElement.remove();
		}
	}
};

export default responsiveConditionPreview;
PK�][�|���Fultimate-addons-for-gutenberg/blocks-config/uagb-controls/parseIcon.jsnu�[���function parseSVG( svg ) {
	svg = svg.replace( 'far ', '' );
	svg = svg.replace( 'fas ', '' );
	svg = svg.replace( 'fab ', '' );
	svg = svg.replace( 'fa-', '' );
	svg = svg.replace( 'fa ', '' );

	return svg;
}

export default parseSVG;
PK�][_A�k��Uultimate-addons-for-gutenberg/blocks-config/uagb-controls/maybeGetColorForVariable.jsnu�[���const maybeGetColorForVariable = ( color ) => {
	// This external condition handles the following color format:
	// `var(--paletteColor7)`
	if ( color && color.includes( 'var' ) ) {
		const style = window.getComputedStyle( document.body );

		// Slice off `var(` and the slice off the `)` bracket at the end.
		color = color.slice( 4 ).slice( 0, -1 );

		// This nested condition handles the following color format:
		// `var(--paletteColor7, #FBFBFB)`
		if ( color.includes( ',' ) ) {
			color = color.split( ',' ).pop().trim();

			return color;
		}

		color = style.getPropertyValue( color ).trim();
	}
	return color;
};

export default maybeGetColorForVariable;
PK�][�	

Qultimate-addons-for-gutenberg/blocks-config/uagb-controls/deprecatedRenderIcon.jsnu�[���/**
 * Set inline CSS class.
 *
 * @param {Object} props - The block object.
 * @return {Array} The inline CSS class.
 */

import parseSVG from './parseIcon';

function renderSVG( svg ) {
	svg = parseSVG( svg );

	const fontAwesome = uagb_blocks_info.uagb_svg_icons[ svg ];

	if ( 'undefined' !== typeof fontAwesome ) {
		const viewbox_array = fontAwesome.svg.hasOwnProperty( 'brands' )
			? fontAwesome.svg.brands.viewBox
			: fontAwesome.svg.solid.viewBox;
		const path = fontAwesome.svg.hasOwnProperty( 'brands' )
			? fontAwesome.svg.brands.path
			: fontAwesome.svg.solid.path;
		const viewBox = viewbox_array?.join( ' ' );

		return (
			<svg xmlns="http://www.w3.org/2000/svg" viewBox={ viewBox }>
				<path d={ path }></path>
			</svg>
		);
	}
}

export default renderSVG;
PK�][�ф�))Nultimate-addons-for-gutenberg/blocks-config/uagb-controls/scrollBlockToView.jsnu�[���import { select } from '@wordpress/data';

const scrollBlockToView = () => {
	// Scroll the view to the selected block after device type change in editor.
	const { getSelectedBlock } = select( 'core/block-editor' );
	const selectedBlockID = getSelectedBlock()?.clientId ? `block-${ getSelectedBlock()?.clientId }` : false;

	if ( ! selectedBlockID ) {
		return;
	}

	setTimeout( () => {
		const currentDocument = getCurrentDocument();
		const selectedBlockElementToScroll = currentDocument.getElementById( selectedBlockID );

		if ( selectedBlockElementToScroll ) {
			selectedBlockElementToScroll.scrollIntoView( { behavior: 'smooth', block: 'center', inline: 'center' } );
		}
	}, 500 );
};

const getCurrentDocument = () => {
	const tabletPreview = document.getElementsByClassName( 'is-tablet-preview' );
	const mobilePreview = document.getElementsByClassName( 'is-mobile-preview' );
	if ( 0 !== tabletPreview.length || 0 !== mobilePreview.length ) {
		const preview = tabletPreview[ 0 ] || mobilePreview[ 0 ];

		let iframe = false;

		if ( preview ) {
			iframe = preview.getElementsByTagName( 'iframe' )[ 0 ];
		}

		const iframeDocument = iframe?.contentWindow.document || iframe?.contentDocument;
		if ( iframeDocument ) {
			return iframeDocument;
		}
	}

	return document;
};

export default scrollBlockToView;
PK�][R�u��Nultimate-addons-for-gutenberg/blocks-config/uagb-controls/autoBlockRecovery.jsnu�[���import { select, dispatch, subscribe } from '@wordpress/data';
import { createBlock, parse, serialize } from '@wordpress/blocks';
import isInvalid from './isInvalid';

// Flag to Detect if At Least One Block was Recovered.
let recoveryDone = false;

// Create Recovery CSS to Hide All Errornous Blocks.
const createRecoveryCSS = () => {
	const recoveryCSS = document.createElement( 'style' );
	recoveryCSS.setAttribute( 'id', 'uagb-recovery-styles' );
	recoveryCSS.innerHTML = '.has-warning[data-type^="uagb/"] { opacity: 0 !important; }';
	document.body.appendChild( recoveryCSS );
};

// Destroy the Recovery CSS to Restore the Editor to its Original State.
const destroyRecoveryCSS = () => {
	const recoveryCSS = document.querySelector( '#uagb-recovery-styles' );
	if ( recoveryCSS ) {
		document.body.removeChild( recoveryCSS );
	}
};

// Start Block Recovery for all Spectra Blocks.
const initBlockRecovery = ( blocks ) => {
	const curBlocks = [ ...blocks ];
	let isRecovered = false;

	const recoverInnerBlocks = ( innerBlocks ) => {
		innerBlocks.forEach( ( block ) => {
			if ( isInvalid( block ) ) {
				isRecovered = true;
				const newBlock = recoverBlock( block );
				for ( const key in newBlock ) {
					block[ key ] = newBlock[ key ];
				}
			}

			if ( block.innerBlocks.length ) {
				recoverInnerBlocks( block.innerBlocks );
			}
		} );
	};

	recoverInnerBlocks( curBlocks );
	return [ curBlocks, isRecovered ];
};

// Create Replacement Blocks Based on the Fixed Variant.
const recoverBlocks = ( allBlocks ) =>
	allBlocks.map( ( block ) => {
		const curBlock = block;

		if ( 'core/block' === block.name ) {
			const {
				attributes: { ref },
			} = block;
			const reusableBlockPosts = select( 'core' ).getEntityRecords( 'postType', 'wp_block' );

			let reusableBlockPost = null;

			if ( reusableBlockPosts ) {
				reusableBlockPosts?.forEach( ( post ) => {
					if ( ref === post?.id ) {
						reusableBlockPost = post?.content?.raw;
					}
				} );
			}

			if ( null === reusableBlockPost ) {
				return curBlock;
			}

			const parsedBlocks = parse( reusableBlockPost ) || [];

			const [ recoveredBlocks, isRecovered ] = initBlockRecovery( parsedBlocks );

			if ( isRecovered ) {
				recoveryDone = true;
				return {
					blocks: recoveredBlocks,
					isReusable: true,
					ref,
				};
			}
		}

		if ( curBlock.innerBlocks && curBlock.innerBlocks.length ) {
			const newInnerBlocks = recoverBlocks( curBlock.innerBlocks );
			if ( newInnerBlocks.some( ( innerBlock ) => innerBlock.recovered ) ) {
				curBlock.innerBlocks = newInnerBlocks;
				curBlock.replacedClientId = curBlock.clientId;
				curBlock.recovered = true;
			}
		}
		if ( isInvalid( curBlock ) ) {
			recoveryDone = true;
			const newBlock = recoverBlock( curBlock );
			newBlock.replacedClientId = curBlock.clientId;
			newBlock.recovered = true;
			return newBlock;
		}

		return curBlock;
	} );

// Recover Current Block.
const recoverBlock = ( { name, attributes, innerBlocks } ) => createBlock( name, attributes, innerBlocks );

// Start with the Automatic Block Recovery Process.
const autoBlockRecovery = () => {
	createRecoveryCSS();
	setTimeout( () => {
		const unsubscribe = subscribe( () => {
			if ( select( 'core' ).getEntityRecords( 'postType', 'wp_block' ) !== null ) {
				unsubscribe();
				const recoveredBlocks = recoverBlocks( select( 'core/block-editor' ).getBlocks() );
				recoveredBlocks.forEach( ( block ) => {
					if ( block.isReusable && block.ref ) {
						dispatch( 'core' )
							.editEntityRecord( 'postType', 'wp_block', block.ref, {
								content: serialize( block.blocks ),
							} )
							.then();
					}

					if ( block.recovered && block.replacedClientId ) {
						dispatch( 'core/block-editor' ).replaceBlock( block.replacedClientId, block );
					}
				} );
				if ( recoveryDone ) {
					//eslint-disable-next-line no-console
					console.log(
						'%cSpectra Auto Recovery Enabled: All Spectra Blocks on this page have been recovered!',
						'border-radius: 6px; width: 100%; margin: 16px 0; padding: 16px; background-color: #007CBA; color: #fff; font-weight: bold; text-shadow: 2px 2px 2px #0063A1;'
					);
				}
				destroyRecoveryCSS();
			}
		} );
	}, 0 );
};

export default autoBlockRecovery;
PK�][!KX�88Hultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateCSS.jsnu�[���function generateCSS(
	selectorsObj,
	id,
	isResponsive = false, // eslint-disable-line no-unused-vars
	responsiveType = '' // eslint-disable-line no-unused-vars
) {
	let gen_styling_css = '';

	for ( const selector in selectorsObj ) {
		const cssProps = selectorsObj[ selector ];
		let css = '';

		for ( const property in cssProps ) {
			if (
				typeof cssProps[ property ] === 'undefined' ||
				cssProps[ property ] === null ||
				cssProps[ property ]?.length === 0
			) {
				continue;
			}

			const propertyValue = cssProps[ property ];

			if ( 'font-family' === property && 'Default' === propertyValue ) {
				continue;
			}

			if ( 'font-family' === property ) {
				css += property + ': ' + "'" + propertyValue + "'" + ';';
			} else {
				css += property + ': ' + propertyValue + ';';
			}
		}

		if ( css.length !== 0 ) {
			if ( responsiveType === 'tablet' ) {
				gen_styling_css += '@media only screen and (max-width: ' + uagb_blocks_info.tablet_breakpoint + 'px) {';
				gen_styling_css += id;
				gen_styling_css += selector + '{';
				gen_styling_css += css;
				gen_styling_css += '}}';
			} else if ( responsiveType === 'mobile' ) {
				gen_styling_css += '@media only screen and (max-width: ' + uagb_blocks_info.mobile_breakpoint + 'px) {';
				gen_styling_css += id;
				gen_styling_css += selector + '{';
				gen_styling_css += css;
				gen_styling_css += '}}';
			} else {
				gen_styling_css += id;
				gen_styling_css += selector + '{';
				gen_styling_css += css;
				gen_styling_css += '}';
			}
		}
	}

	return gen_styling_css;
}

export default generateCSS;
PK�][���++Oultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateAttributes.jsnu�[���export const getBorderAttributes = ( prefix ) => {
	const defaults = {
		// Width
		borderTopWidth: '',
		borderRightWidth: '',
		borderBottomWidth: '',
		borderLeftWidth: '',
		borderTopWidthTablet: '',
		borderRightWidthTablet: '',
		borderBottomWidthTablet: '',
		borderLeftWidthTablet: '',
		borderTopWidthMobile: '',
		borderRightWidthMobile: '',
		borderBottomWidthMobile: '',
		borderLeftWidthMobile: '',
		// Radius
		borderTopLeftRadius: '',
		borderTopRightRadius: '',
		borderBottomRightRadius: '',
		borderBottomLeftRadius: '',
		borderTopLeftRadiusTablet: '',
		borderTopRightRadiusTablet: '',
		borderBottomRightRadiusTablet: '',
		borderBottomLeftRadiusTablet: '',
		borderTopLeftRadiusMobile: '',
		borderTopRightRadiusMobile: '',
		borderBottomRightRadiusMobile: '',
		borderBottomLeftRadiusMobile: '',
		// unit
		borderRadiusUnit: 'px',
		borderRadiusUnitTablet: 'px',
		borderRadiusUnitMobile: 'px',
		// common
		borderStyle: '',
		borderColor: '',
		borderHColor: '',
	};
	const attributes = {};
	const devices = [
		{ devicePrefix: '', copyPastePrefix: '' },
		{ devicePrefix: 'Tablet', copyPastePrefix: '-tablet' },
		{ devicePrefix: 'Mobile', copyPastePrefix: '-mobile' },
	];

	devices.forEach( ( item ) => {
		// border width
		attributes[ prefix + 'BorderTopWidth' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderTopWidth${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-top-width' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderLeftWidth' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderLeftWidth${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-left-width' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderRightWidth' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderRightWidth${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-right-width' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderBottomWidth' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderBottomWidth${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-bottom-width' + item.copyPastePrefix,
			},
		};

		// border radius
		attributes[ prefix + 'BorderTopLeftRadius' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderTopLeftRadius${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-top-left-radius' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderTopRightRadius' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderTopRightRadius${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-top-right-radius' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderBottomLeftRadius' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderBottomLeftRadius${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-bottom-left-radius' + item.copyPastePrefix,
			},
		};
		attributes[ prefix + 'BorderBottomRightRadius' + item.devicePrefix ] = {
			type: 'number',
			default: defaults[ `borderBottomRightRadius${ item.devicePrefix }` ],
			isGBSStyle: true,
			UAGCopyPaste: {
				styleType: prefix + '-border-bottom-right-radius' + item.copyPastePrefix,
			},
		};

		// radius unit
		attributes[ prefix + 'BorderRadiusUnit' + item.devicePrefix ] = {
			type: 'string',
			default: defaults[ `borderRadiusUnit${ item.devicePrefix }` ],
			UAGCopyPaste: {
				styleType: prefix + '-border-radius-unit' + item.copyPastePrefix,
			},
		};
	} );

	attributes[ prefix + 'BorderLink' ] = {
		type: 'boolean',
		default: true,
		UAGCopyPaste: {
			styleType: prefix + '-border-link',
		},
	};

	attributes[ prefix + 'BorderRadiusLink' ] = {
		type: 'boolean',
		default: true,
		UAGCopyPaste: {
			styleType: prefix + '-border-radius-link',
		},
	};

	attributes[ prefix + 'BorderStyle' ] = {
		type: 'string',
		default: defaults.borderStyle,
		isGBSStyle: true,
		UAGCopyPaste: {
			styleType: prefix + '-border-style',
		},
	};

	attributes[ prefix + 'BorderColor' ] = {
		type: 'string',
		default: defaults.borderColor,
		isGBSStyle: true,
		UAGCopyPaste: {
			styleType: prefix + '-border-color',
		},
	};

	attributes[ prefix + 'BorderHColor' ] = {
		type: 'string',
		default: defaults.borderHColor,
		isGBSStyle: true,
		UAGCopyPaste: {
			styleType: prefix + '-border-hover-color',
		},
	};

	return attributes;
};

export const migrateBorderAttributes = (
	prefix,
	borderWidth,
	borderRadius,
	color = {},
	hoverColor = {},
	borderStyle = {},
	setAttributes,
	attributes = {}
) => {
	if ( 'default' !== attributes[ prefix + 'BorderStyle' ] ) {
		if ( ! isNaN( borderWidth.value ) ) {
			if ( '' === attributes[ prefix + 'BorderTopWidth' ] ) {
				setAttributes( { [ prefix + 'BorderTopWidth' ]: borderWidth.value } );
			}
			if ( '' === attributes[ prefix + 'BorderLeftWidth' ] ) {
				setAttributes( { [ prefix + 'BorderLeftWidth' ]: borderWidth.value } );
			}
			if ( '' === attributes[ prefix + 'BorderRightWidth' ] ) {
				setAttributes( { [ prefix + 'BorderRightWidth' ]: borderWidth.value } );
			}
			if ( '' === attributes[ prefix + 'BorderBottomWidth' ] ) {
				setAttributes( { [ prefix + 'BorderBottomWidth' ]: borderWidth.value } );
			}
			// reset
			attributes[ borderWidth.label ] = '';
		}

		if ( ! isNaN( borderRadius.value ) ) {
			if ( '' === attributes[ prefix + 'BorderTopLeftRadius' ] ) {
				setAttributes( { [ prefix + 'BorderTopLeftRadius' ]: borderRadius.value } );
			}
			if ( '' === attributes[ prefix + 'BorderTopRightRadius' ] ) {
				setAttributes( { [ prefix + 'BorderTopRightRadius' ]: borderRadius.value } );
			}
			if ( '' === attributes[ prefix + 'BorderBottomLeftRadius' ] ) {
				setAttributes( { [ prefix + 'BorderBottomLeftRadius' ]: borderRadius.value } );
			}
			if ( '' === attributes[ prefix + 'BorderBottomRightRadius' ] ) {
				setAttributes( { [ prefix + 'BorderBottomRightRadius' ]: borderRadius.value } );
			}
			// reset
			attributes[ borderRadius.label ] = '';
		}

		if ( color.value ) {
			if ( '' === attributes[ prefix + 'BorderColor' ] ) {
				setAttributes( { [ prefix + 'BorderColor' ]: color.value } );
			}
			// reset
			attributes[ color.label ] = '';
		}

		if ( hoverColor.value ) {
			if ( '' === attributes[ prefix + 'BorderHColor' ] ) {
				setAttributes( { [ prefix + 'BorderHColor' ]: hoverColor.value } );
			}
			// reset
			attributes[ hoverColor.label ] = '';
		}

		if ( borderStyle.value ) {
			if ( '' === attributes[ prefix + 'BorderStyle' ] ) {
				setAttributes( { [ prefix + 'BorderStyle' ]: borderStyle.value } );
			}
			// reset
			attributes[ borderStyle.label ] = '';
		}
	}
	return attributes;
};
PK�][�v-VPPLultimate-addons-for-gutenberg/blocks-config/uagb-controls/AddGBSStylesDom.jsnu�[���const AddGBSStylesDom = ( globalBlockStyleId, styleText ) => {

    const putStyleInHead = ( current_document, rawStyle, tagId ) => {
        if ( ! rawStyle ) return;
        tagId = 'spectra-gbs-' + globalBlockStyleId;

        const isExistTag = current_document.getElementById( tagId );
        if( ! isExistTag ){
            const node = document.createElement( 'style' )
            node.setAttribute( 'id', tagId );
            node.textContent = rawStyle;
            current_document.head.appendChild( node )
        }else{
            isExistTag.textContent = rawStyle
        }
    }

    putStyleInHead( document, styleText, globalBlockStyleId );


	setTimeout( () => {
		const getAllIFrames = document.getElementsByTagName( 'iframe' );
		if ( ! getAllIFrames?.length ) {
			return;
		}

		for ( const iterateIFrames of getAllIFrames ) {
			// Skip the iframe with the specific name.
			if ( uagb_blocks_info.exclude_crops_iframes.includes( iterateIFrames.name ) ) {
				continue;
			}
			try {
				const iframeDocument = iterateIFrames?.contentWindow.document || iterateIFrames?.contentDocument;
				if( ! iframeDocument?.head ){
					continue;
				}

				putStyleInHead( iframeDocument, styleText, globalBlockStyleId );
			} catch ( e ) {
					// Ignore cross-origin access errors.
			}
		} // Loop end.
	} );
};

export default AddGBSStylesDom;PK�][�(�hffQultimate-addons-for-gutenberg/blocks-config/uagb-controls/unitWiseMinMaxOption.jsnu�[���import { useDeviceType } from '@Controls/getPreviewType';
export const limitMax = ( unitVal, props, isResponsiveMinMax ) => {
	let max = 0;
	if ( isResponsiveMinMax ) {
		const deviceType = useDeviceType(); // eslint-disable-line react-hooks/rules-of-hooks
		const responsiveUnit = unitVal ? unitVal : props.data[ deviceType.toLowerCase() ].value;
		max =
			responsiveUnit && props.data[ deviceType.toLowerCase() ]?.max
				? props.data[ deviceType.toLowerCase() ].max
				: props.max;
	} else {
		max = unitVal && props.limitMax ? props.limitMax[ unitVal ] : props.max;
	}

	return max;
};

export const limitMin = ( unitVal, props, isResponsiveMinMax ) => {
	let min = 0;
	if ( isResponsiveMinMax ) {
		const deviceType = useDeviceType(); // eslint-disable-line react-hooks/rules-of-hooks
		const responsiveUnit = unitVal ? unitVal : props.data[ deviceType.toLowerCase() ].value;
		min =
			responsiveUnit && props.data[ deviceType.toLowerCase() ]?.min
				? props.data[ deviceType.toLowerCase() ].min
				: props.min;
	} else {
		min = unitVal && props.limitMin ? props.limitMin[ unitVal ] : props.min;
	}
	return min;
};
PK�][-�
hhKultimate-addons-for-gutenberg/blocks-config/uagb-controls/gridCssCreator.jsnu�[���/**
 * Creates a CSS grid layout string from a given grid object.
 *
 * @param {Array} gridObject - An array of objects, each representing a grid column or row. 
 * Each object can have a 'default' property set to 'custom' or 'minmax', and corresponding properties:
 * - 'custom': An object with 'value' and 'unit' properties.
 * - 'minmax': An object with 'min' and 'max' properties, each having 'value' and 'unit'.
 *
 * @return {string} A CSS grid layout string. For example: "1fr 1fr 1fr 1fr".
 */
export const gridCssCreator = ( gridObject ) => {
    let gridCss = '';
    gridObject.forEach( ( grid ) => {
        // Add space if the column is not the last column.
        if( gridCss ){
            gridCss = gridCss + ' ';
        }

        let createCss = '';
        if( 'custom' === grid?.default && ( grid?.custom?.value || 0 === grid?.custom?.value ) ){
            createCss = `minmax(1px, ${ grid.custom.value }${ grid.custom.unit })`;
        } else if( 'minmax' === grid.default ){
            createCss = `minmax(${ grid.min.value }${ grid.min.unit }, ${ grid.max.value }${ grid.max.unit })`;
        }else if( 'auto' === grid.default ){
            createCss = 'minmax(1px, auto)';
        }

        gridCss += createCss + ' ';
    } );

    // Grid css will as a result look like: "1fr 1fr 1fr 1fr"
    return gridCss;
}

/**
 * Creates a CSS object for a grid layout from given attributes and device type.
 *
 * @param {Object} attr - This object contains 
 * @param {string} [deviceType='Desktop'] - Device type for the layout. Ex: Desktop, Tablet, Mobile.
 *
 * `attr` properties include `gridColumn<deviceType>`, `gridRow<deviceType>`, `gridAlignItems<deviceType>`, 
 * `gridJustifyItems<deviceType>`, `gridAlignContent<deviceType>`, `gridJustifyContent<deviceType>`.
 *
 * @return {Object} CSS object for styling a grid layout.
 */
const gridCssObject = ( attr, deviceType = 'Desktop' ) => {
    const grid_css = {};
    
    // Check attribute is not empty and should be array.
    if( attr[ 'gridColumn' + deviceType ]?.length ){
        grid_css[ 'grid-template-columns' ] = gridCssCreator( attr[ 'gridColumn' + deviceType ] );
    }

    if( attr[ 'gridRow' + deviceType ]?.length ){
        grid_css[ 'grid-template-rows' ] = gridCssCreator( attr[ 'gridRow' + deviceType ] );
    }

    if( attr[ 'gridAlignItems' + deviceType ] ){
        grid_css[ 'align-items' ] = attr[ 'gridAlignItems' + deviceType ];
    }

    if( attr[ 'gridJustifyItems' + deviceType ] ){
        grid_css[ 'justify-items' ] = attr[ 'gridJustifyItems' + deviceType ];
    }

    if( attr[ 'gridAlignContent' + deviceType ] ){
        grid_css[ 'align-content' ] = attr[ 'gridAlignContent' + deviceType ];
    }

    if( attr[ 'gridJustifyContent' + deviceType ] ){
        grid_css[ 'justify-content' ] = attr[ 'gridJustifyContent' + deviceType ];
    }
    
    return grid_css;
}

export default gridCssObject;PK�][y�d��Yultimate-addons-for-gutenberg/blocks-config/uagb-controls/addCommonDataToSpectraBlocks.jsnu�[���import { applyFilters } from '@wordpress/hooks';
function addCommonDataToSpectraBlocks( configData = {} ) {
	let data = {
		example: {
			attributes: {
				isPreview: true,
			},
		},
		usesContext: [ 'postId', 'postType' ],
	};

	if ( 'site-editor' === uagb_blocks_info.is_site_editor ) {
		data = {};
	}
	return applyFilters( 'addCommonDataToSpectraBlocks', { ...configData, ...data } );
}
export default addCommonDataToSpectraBlocks;
PK�][)�?��[ultimate-addons-for-gutenberg/blocks-config/uagb-controls/addBlockEditorResponsiveStyles.jsnu�[���const addBlockEditorResponsiveStyles = ( clientId, styling, deviceTypeClass ) => {
	// Desktop.
	const findResponsiveElement = document.getElementById( `block-${ clientId }` );

	if ( null !== findResponsiveElement && undefined !== findResponsiveElement ) {
		findResponsiveElement.classList.remove( 'uag-hide-desktop' ); // To remove uag-hide-desktop when toggle click.
		styling.map( ( item ) => {
			if ( item ) {
				findResponsiveElement.classList.remove( item, deviceTypeClass );
				if ( 'uag-hide-desktop' === item ) {
					findResponsiveElement.classList.add( item, deviceTypeClass );
				}
			}
			return findResponsiveElement;
		} );
	}
	// Desktop ends.

	// Tablet / Mobile Starts.
	const tabletPreview = document.getElementsByClassName( 'is-tablet-preview' );
	const mobilePreview = document.getElementsByClassName( 'is-mobile-preview' );

	if ( 0 !== tabletPreview.length || 0 !== mobilePreview.length ) {
		const preview = tabletPreview[ 0 ] || mobilePreview[ 0 ];

		const iframe = preview.getElementsByTagName( 'iframe' )[ 0 ];
		const iframeDocument = iframe.contentWindow.document || iframe.contentDocument;

		const findResponsiveElementInIframe = iframeDocument.getElementById( `block-${ clientId }` );

		if ( null !== findResponsiveElementInIframe && undefined !== findResponsiveElementInIframe ) {
			styling.map( ( item ) => {
				if ( item ) {
					findResponsiveElementInIframe.classList.remove( item, deviceTypeClass );
					if ( 'uag-hide-tab' === item || 'uag-hide-mob' === item ) {
						findResponsiveElementInIframe.classList.add( item, deviceTypeClass );
					}
				}

				return findResponsiveElementInIframe;
			} );
		}
	}
};

export default addBlockEditorResponsiveStyles;
PK�][J�Z��Nultimate-addons-for-gutenberg/blocks-config/uagb-controls/renderGBSSettings.jsnu�[���import GlobalBlockStyles from '@Components/global-block-link';

const renderGBSSettings = ( styling, setAttributes, attributes ) => {
    if ( ! uagb_blocks_info?.spectra_pro_status || 'enabled' !== uagb_blocks_info?.uag_enable_gbs_extension ) {
        return null;
    }

    return (
        <GlobalBlockStyles
            { ...{ setAttributes, styling, attributes  } }
        />
    )
};

export default renderGBSSettings;PK�][�d���Kultimate-addons-for-gutenberg/blocks-config/uagb-controls/getPreviewType.jsnu�[���import { useSelect, dispatch } from '@wordpress/data';
import { store as spectraStore } from '@Store';
import { isCustomizerPage } from '@Utils/Helpers';

export const useDeviceType = () => {
	const deviceType = useSelect( ( select ) => {
		const getDeviceFromStore = select( 'core/editor' )?.getDeviceType() ||
			select( 'core/edit-post' )?.__experimentalGetPreviewDeviceType() || select( spectraStore )?.getDeviceType();

		return getDeviceFromStore || 'Desktop'
	}, [] );

	return deviceType || '';
};

/**
 * Sets the preview device type for the Gutenberg editor.
 *
 * @param {string} device - The value representing the device type.
 * @param {boolean} updateInCustomizer - Whether to update the device type in the customizer preview.
 */
export const setDeviceType = ( device, updateInCustomizer = true ) => {
	const setPreviewDeviceType = dispatch( 'core/editor' )?.setDeviceType ||
		dispatch( 'core/edit-post' )?.__experimentalSetPreviewDeviceType ||
		dispatch( spectraStore )?.setDeviceType;

    // Verify setPreviewDeviceType is available and setPreviewDeviceType should be function.
    if( ! setPreviewDeviceType || typeof setPreviewDeviceType !== 'function' ){
        return;
    }

	setPreviewDeviceType( device );

    // If we don't want to update the device type in the customizer preview, return.
    if ( ! updateInCustomizer ) {
        return;
    }

    // This code sets the device type in the customizer preview. It's particularly useful when not using a Full Site Editing (FSE) theme.
    setCustomizerPreview( device );
};

/**
 * This function is used to set previewedDevice in customizer if it is customizer page.
 * 
 * @param {string} deviceType deviceType should be string e.g. 'desktop', 'tablet', 'mobile' may be 'Desktop', 'Tablet', 'Mobile'. 
 */
export const setCustomizerPreview = ( deviceType ) => {
    if ( ! isCustomizerPage() ) {
        return;
    }

    // deviceType should be string.
    if ( typeof deviceType !== 'string' ) {
        return;
    }

    const deviceTypeLower = deviceType.toLowerCase();

    // Check deviceType is valid.
    if ( ! [ 'desktop', 'tablet', 'mobile' ].includes( deviceTypeLower ) ) {
        return;
    }

    wp.customize.previewedDevice.set( deviceTypeLower );
}

/**
 * This function is used to set deviceType in customizer get previewedDevice if it is customizer page and set deviceType gutenberg store.
 */
export const setDeviceOnCustomizerAction = () => {
    if ( ! isCustomizerPage() ) {
        return;
    }

    window.wp.customize.bind( 'ready', () => {
        window.wp.customize.previewedDevice.bind( ( device ) => {
            if ( ! device ) {
                return;
            }

            // Check device type only mobile, tablet and desktop.
            if ( ! [ 'mobile', 'tablet', 'desktop' ].includes( device ) ) {
                return;
            }

            const deviceTypeFirstLetterUpper = device.charAt( 0 ).toUpperCase() + device.slice( 1 );
        
            setDeviceType( deviceTypeFirstLetterUpper, false );
        } );
    } );
}PK�][�!��&&Fultimate-addons-for-gutenberg/blocks-config/uagb-controls/hexToRgba.jsnu�[���/**
 * Get HEX color and return RGBA. Default return RGB color.
 *
 * @param {string} color - The color string.
 * @return {boolean} opacity The inline CSS class.
 */

function hexToRgba( color, opacity ) {
	if ( ! color ) {
		return '';
	}

	if ( 'undefined' === typeof opacity || '' === opacity ) {
		opacity = 100;
	}

	color = color.replace( '#', '' );

	opacity = typeof opacity !== 'undefined' ? opacity / 100 : 1;

	// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
	const shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
	color = color.replace( shorthandRegex, function ( m, r, g, b ) {
		return r + r + g + g + b + b;
	} );

	const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec( color );

	const parsed_color = result
		? {
				r: parseInt( result[ 1 ], 16 ),
				g: parseInt( result[ 2 ], 16 ),
				b: parseInt( result[ 3 ], 16 ),
		  }
		: null;

	if ( parsed_color ) {
		return 'rgba(' + parsed_color.r + ',' + parsed_color.g + ',' + parsed_color.b + ',' + opacity + ')';
	}

	return '';
}

export default hexToRgba;
PK�][ �al��Jultimate-addons-for-gutenberg/blocks-config/uagb-controls/setDeviceType.jsnu�[���
import { setCustomizerPreview } from '@Utils/customizer-preview-device';
import { dispatch } from '@wordpress/data';

/**
 * Sets the preview device type for the Gutenberg editor.
 *
 * @param {string} device - The value representing the device type.
 */
const setDeviceType = ( device ) => {
    const setPreviewDeviceType = dispatch( 'core/edit-site' )?.__experimentalSetPreviewDeviceType || dispatch( 'core/edit-post' )?.__experimentalSetPreviewDeviceType;

    // Verify setPreviewDeviceType is available and setPreviewDeviceType should be function.
    if( ! setPreviewDeviceType || typeof setPreviewDeviceType !== 'function' ){
        return;
    }

	setPreviewDeviceType( device );
    // This code sets the device type in the customizer preview. It's particularly useful when not using a Full Site Editing (FSE) theme.
    setCustomizerPreview( device );
};

// Export the function.
export default setDeviceType;PK�][�0j��Iultimate-addons-for-gutenberg/blocks-config/uagb-controls/previewImage.jsnu�[���const PreviewImage = ( { image, isChildren = false } ) => {
	if ( ! image ) {
		console.error( __( 'Please add preview image.', 'ultimate-addons-for-gutenberg' ) ); // eslint-disable-line
	}

	let imgUrl = uagb_blocks_info.uagb_url;
	imgUrl += '/assets/images/block-previews/';
	if ( isChildren ) {
		imgUrl += 'children/';
	}
	imgUrl += image + '.svg';
	return <img width="100%" src={ imgUrl } alt="" />;
};

export default PreviewImage;
PK�][p8N�	�	Pultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-1.phpnu�[���<?php
/**
 * Font awesome icons array array file.
 *
 * @package     UAGB
 * @author      Brainstorm Force
 * @link        https://wpspectra.com/
 */

/**
 * Returns font awesome icons array
 */
return array(
	'cross'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M383.1 160v64c0 17.62-14.37 32-31.1 32h-96v224c0 17.62-14.38 32-31.1 32H160c-17.62 0-32-14.38-32-32V256h-96C14.37 256-.0008 241.6-.0008 224V160c0-17.62 14.38-32 32-32h96V32c0-17.62 14.38-32 32-32h64c17.62 0 31.1 14.38 31.1 32v96h96C369.6 128 383.1 142.4 383.1 160z',
			),
		),
		'label'             => __( 'Cross', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'crosshairs'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M224 256C224 238.3 238.3 224 256 224C273.7 224 288 238.3 288 256C288 273.7 273.7 288 256 288C238.3 288 224 273.7 224 256zM256 0C273.7 0 288 14.33 288 32V42.35C381.7 56.27 455.7 130.3 469.6 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H469.6C455.7 381.7 381.7 455.7 288 469.6V480C288 497.7 273.7 512 256 512C238.3 512 224 497.7 224 480V469.6C130.3 455.7 56.27 381.7 42.35 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H42.35C56.27 130.3 130.3 56.27 224 42.35V32C224 14.33 238.3 0 256 0V0zM224 404.6V384C224 366.3 238.3 352 256 352C273.7 352 288 366.3 288 384V404.6C346.3 392.1 392.1 346.3 404.6 288H384C366.3 288 352 273.7 352 256C352 238.3 366.3 224 384 224H404.6C392.1 165.7 346.3 119.9 288 107.4V128C288 145.7 273.7 160 256 160C238.3 160 224 145.7 224 128V107.4C165.7 119.9 119.9 165.7 107.4 224H128C145.7 224 160 238.3 160 256C160 273.7 145.7 288 128 288H107.4C119.9 346.3 165.7 392.1 224 404.6z',
			),
		),
		'label'             => __( 'Crosshairs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'crow'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M523.9 31.1H574C603.4 31.1 628.1 51.99 636.1 80.48L640 95.1L544 119.1V191.1C544 279.1 484.9 354.1 404.2 376.8L446.2 478.9C451.2 491.1 445.4 505.1 433.1 510.2C420.9 515.2 406.9 509.4 401.8 497.1L355.2 383.1C354.1 383.1 353.1 384 352 384H311.1L350.2 478.9C355.2 491.1 349.4 505.1 337.1 510.2C324.9 515.2 310.9 509.4 305.8 497.1L259.2 384H126.1L51.51 441.4C37.5 452.1 17.41 449.5 6.638 435.5C-4.138 421.5-1.517 401.4 12.49 390.6L368 117.2V88C368 39.4 407.4 0 456 0C483.3 0 507.7 12.46 523.9 32V31.1zM456 111.1C469.3 111.1 480 101.3 480 87.1C480 74.74 469.3 63.1 456 63.1C442.7 63.1 432 74.74 432 87.1C432 101.3 442.7 111.1 456 111.1z',
			),
		),
		'label'             => __( 'Crow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'crown'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M576 136c0 22.09-17.91 40-40 40c-.248 0-.4551-.1266-.7031-.1305l-50.52 277.9C482 468.9 468.8 480 453.3 480H122.7c-15.46 0-28.72-11.06-31.48-26.27L40.71 175.9C40.46 175.9 40.25 176 39.1 176c-22.09 0-40-17.91-40-40S17.91 96 39.1 96s40 17.91 40 40c0 8.998-3.521 16.89-8.537 23.57l89.63 71.7c15.91 12.73 39.5 7.544 48.61-10.68l57.6-115.2C255.1 98.34 247.1 86.34 247.1 72C247.1 49.91 265.9 32 288 32s39.1 17.91 39.1 40c0 14.34-7.963 26.34-19.3 33.4l57.6 115.2c9.111 18.22 32.71 23.4 48.61 10.68l89.63-71.7C499.5 152.9 496 144.1 496 136C496 113.9 513.9 96 536 96S576 113.9 576 136z',
			),
		),
		'label'             => __( 'Crown', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'crutch'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 168.1l-159.6-159.5c-12.54-12.54-32.85-12.6-45.46-.1256c-12.68 12.54-12.73 33.1-.1256 45.71l159.6 159.5c12.6 12.59 33.03 12.57 45.59-.0628C515.1 201.9 515.1 181.5 502.6 168.1zM334.4 245.4l-67.88-67.87l55.13-55.12l-45.25-45.25L166.7 186.8C154.1 199.6 145.2 215.6 141.1 233.2L113.3 353.4l-108.6 108.6c-6.25 6.25-6.25 16.37 0 22.62l22.63 22.62c6.25 6.25 16.38 6.25 22.63 0l108.6-108.6l120.3-27.75c17.5-4.125 33.63-13 46.38-25.62l109.6-109.7l-45.25-45.25L334.4 245.4zM279.9 300.1C275.7 304.2 270.3 307.2 264.4 308.6l-79.25 18.25l18.25-79.25c1.375-5.875 4.375-11.25 8.5-15.5l9.375-9.25l67.88 67.87L279.9 300.1z',
			),
		),
		'label'             => __( 'Crutch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'cruzeiro-sign'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M159.1 402.7V256C159.1 238.3 174.3 224 191.1 224C199.7 224 206.8 226.7 212.3 231.3C223 226.6 234.8 224 247.3 224C264.5 224 281.3 229.1 295.7 238.7L305.8 245.4C320.5 255.2 324.4 275 314.6 289.8C304.8 304.5 284.1 308.4 270.2 298.6L260.2 291.9C256.3 289.4 251.9 288 247.3 288C234.4 288 224 298.4 224 311.3V416C264.1 416 302.3 400.6 330.7 375.3C343.8 363.5 364.1 364.6 375.8 377.8C387.6 390.9 386.5 411.2 373.3 422.1C333.7 458.4 281.4 480 224 480C100.3 480 0 379.7 0 256C0 132.3 100.3 32 224 32C281.4 32 333.7 53.59 373.3 89.04C386.5 100.8 387.6 121.1 375.8 134.2C364.1 147.4 343.8 148.5 330.7 136.7C302.3 111.4 264.1 96 224 96C135.6 96 63.1 167.6 63.1 256C63.1 321.6 103.5 377.1 159.1 402.7V402.7z',
			),
		),
		'label'             => __( 'Cruzeiro Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'css3'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 32l-64 368-223.3 80L0 400l19.6-94.8h82l-8 40.6L210 390.2l134.1-44.4 18.8-97.1H29.5l16-82h333.7l10.5-52.7H56.3l16.3-82H480z',
			),
		),
		'label'             => __( 'CSS 3 Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'css3-alt'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 32l34.9 395.8L192 480l157.1-52.2L384 32H0zm313.1 80l-4.8 47.3L193 208.6l-.3 .1h111.5l-12.8 146.6-98.2 28.7-98.8-29.2-6.4-73.9h48.9l3.2 38.3 52.6 13.3 54.7-15.4 3.7-61.6-166.3-.5v-.1l-.2 .1-3.6-46.3L193.1 162l6.5-2.7H76.7L70.9 112h242.2z',
			),
		),
		'label'             => __( 'Alternate CSS3 Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'cube'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M234.5 5.709C248.4 .7377 263.6 .7377 277.5 5.709L469.5 74.28C494.1 83.38 512 107.5 512 134.6V377.4C512 404.5 494.1 428.6 469.5 437.7L277.5 506.3C263.6 511.3 248.4 511.3 234.5 506.3L42.47 437.7C17 428.6 0 404.5 0 377.4V134.6C0 107.5 17 83.38 42.47 74.28L234.5 5.709zM256 65.98L82.34 128L256 190L429.7 128L256 65.98zM288 434.6L448 377.4V189.4L288 246.6V434.6z',
			),
		),
		'label'             => __( 'Cube', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'cubes'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M172.1 40.16L268.1 3.76C280.9-1.089 295.1-1.089 307.9 3.76L403.9 40.16C425.6 48.41 440 69.25 440 92.52V204.7C441.3 205.1 442.6 205.5 443.9 205.1L539.9 242.4C561.6 250.6 576 271.5 576 294.7V413.9C576 436.1 562.9 456.2 542.5 465.1L446.5 507.3C432.2 513.7 415.8 513.7 401.5 507.3L288 457.5L174.5 507.3C160.2 513.7 143.8 513.7 129.5 507.3L33.46 465.1C13.13 456.2 0 436.1 0 413.9V294.7C0 271.5 14.39 250.6 36.15 242.4L132.1 205.1C133.4 205.5 134.7 205.1 136 204.7V92.52C136 69.25 150.4 48.41 172.1 40.16V40.16zM290.8 48.64C289 47.95 286.1 47.95 285.2 48.64L206.8 78.35L287.1 109.5L369.2 78.35L290.8 48.64zM392 210.6V121L309.6 152.6V241.8L392 210.6zM154.8 250.9C153 250.2 150.1 250.2 149.2 250.9L70.81 280.6L152 311.7L233.2 280.6L154.8 250.9zM173.6 455.3L256 419.1V323.2L173.6 354.8V455.3zM342.8 280.6L424 311.7L505.2 280.6L426.8 250.9C425 250.2 422.1 250.2 421.2 250.9L342.8 280.6zM528 413.9V323.2L445.6 354.8V455.3L523.2 421.2C526.1 419.9 528 417.1 528 413.9V413.9z',
			),
		),
		'label'             => __( 'Cubes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'cubes-stacked'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M192 64C192 46.33 206.3 32 224 32H288C305.7 32 320 46.33 320 64V128C320 145.7 305.7 160 288 160H224C206.3 160 192 145.7 192 128V64zM138.1 174.1C153.4 166.1 172.1 171.4 181.8 186.7L213.8 242.1C222.6 257.4 217.4 276.1 202.1 285.8L146.7 317.8C131.4 326.6 111.8 321.4 102.1 306.1L70.96 250.7C62.12 235.4 67.37 215.8 82.67 206.1L138.1 174.1zM352 192C369.7 192 384 206.3 384 224V288C384 305.7 369.7 320 352 320H288C270.3 320 256 305.7 256 288V224C256 206.3 270.3 192 288 192H352zM416 352C433.7 352 448 366.3 448 384V448C448 465.7 433.7 480 416 480H352C334.3 480 320 465.7 320 448V384C320 366.3 334.3 352 352 352H416zM160 384C160 366.3 174.3 352 192 352H256C273.7 352 288 366.3 288 384V448C288 465.7 273.7 480 256 480H192C174.3 480 160 465.7 160 448V384zM96 352C113.7 352 128 366.3 128 384V448C128 465.7 113.7 480 96 480H32C14.33 480 0 465.7 0 448V384C0 366.3 14.33 352 32 352H96z',
			),
		),
		'label'             => __( 'Cubes Stacked', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'education', 'lifestyle-and-hobbies' ),
	),
	'cuttlefish'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 440,
				'height' => 512,
				'path'   => 'M344 305.5c-17.5 31.6-57.4 54.5-96 54.5-56.6 0-104-47.4-104-104s47.4-104 104-104c38.6 0 78.5 22.9 96 54.5 13.7-50.9 41.7-93.3 87-117.8C385.7 39.1 320.5 8 248 8 111 8 0 119 0 256s111 248 248 248c72.5 0 137.7-31.1 183-80.7-45.3-24.5-73.3-66.9-87-117.8z',
			),
		),
		'label'             => __( 'Cuttlefish', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'd'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M160 32.01L32 32.01c-17.67 0-32 14.33-32 32v384c0 17.67 14.33 32 32 32l128-.0073c123.5 0 224-100.5 224-224S283.5 32.01 160 32.01zM160 416H64v-320h96c88.22 0 160 71.78 160 159.1S248.2 416 160 416z',
			),
		),
		'label'             => __( 'D', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'd-and-d'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M82.5 98.9c-.6-17.2 2-33.8 12.7-48.2 .3 7.4 1.2 14.5 4.2 21.6 5.9-27.5 19.7-49.3 42.3-65.5-1.9 5.9-3.5 11.8-3 17.7 8.7-7.4 18.8-17.8 44.4-22.7 14.7-2.8 29.7-2 42.1 1 38.5 9.3 61 34.3 69.7 72.3 5.3 23.1 .7 45-8.3 66.4-5.2 12.4-12 24.4-20.7 35.1-2-1.9-3.9-3.8-5.8-5.6-42.8-40.8-26.8-25.2-37.4-37.4-1.1-1.2-1-2.2-.1-3.6 8.3-13.5 11.8-28.2 10-44-1.1-9.8-4.3-18.9-11.3-26.2-14.5-15.3-39.2-15-53.5 .6-11.4 12.5-14.1 27.4-10.9 43.6 .2 1.3 .4 2.7 0 3.9-3.4 13.7-4.6 27.6-2.5 41.6 .1 .5 .1 1.1 .1 1.6 0 .3-.1 .5-.2 1.1-21.8-11-36-28.3-43.2-52.2-8.3 17.8-11.1 35.5-6.6 54.1-15.6-15.2-21.3-34.3-22-55.2zm469.6 123.2c-11.6-11.6-25-20.4-40.1-26.6-12.8-5.2-26-7.9-39.9-7.1-10 .6-19.6 3.1-29 6.4-2.5 .9-5.1 1.6-7.7 2.2-4.9 1.2-7.3-3.1-4.7-6.8 3.2-4.6 3.4-4.2 15-12 .6-.4 1.2-.8 2.2-1.5h-2.5c-.6 0-1.2 .2-1.9 .3-19.3 3.3-30.7 15.5-48.9 29.6-10.4 8.1-13.8 3.8-12-.5 1.4-3.5 3.3-6.7 5.1-10 1-1.8 2.3-3.4 3.5-5.1-.2-.2-.5-.3-.7-.5-27 18.3-46.7 42.4-57.7 73.3 .3 .3 .7 .6 1 .9 .3-.6 .5-1.2 .9-1.7 10.4-12.1 22.8-21.8 36.6-29.8 18.2-10.6 37.5-18.3 58.7-20.2 4.3-.4 8.7-.1 13.1-.1-1.8 .7-3.5 .9-5.3 1.1-18.5 2.4-35.5 9-51.5 18.5-30.2 17.9-54.5 42.2-75.1 70.4-.3 .4-.4 .9-.7 1.3 14.5 5.3 24 17.3 36.1 25.6 .2-.1 .3-.2 .4-.4l1.2-2.7c12.2-26.9 27-52.3 46.7-74.5 16.7-18.8 38-25.3 62.5-20 5.9 1.3 11.4 4.4 17.2 6.8 2.3-1.4 5.1-3.2 8-4.7 8.4-4.3 17.4-7 26.7-9 14.7-3.1 29.5-4.9 44.5-1.3v-.5c-.5-.4-1.2-.8-1.7-1.4zM316.7 397.6c-39.4-33-22.8-19.5-42.7-35.6-.8 .9 0-.2-1.9 3-11.2 19.1-25.5 35.3-44 47.6-10.3 6.8-21.5 11.8-34.1 11.8-21.6 0-38.2-9.5-49.4-27.8-12-19.5-13.3-40.7-8.2-62.6 7.8-33.8 30.1-55.2 38.6-64.3-18.7-6.2-33 1.7-46.4 13.9 .8-13.9 4.3-26.2 11.8-37.3-24.3 10.6-45.9 25-64.8 43.9-.3-5.8 5.4-43.7 5.6-44.7 .3-2.7-.6-5.3-3-7.4-24.2 24.7-44.5 51.8-56.1 84.6 7.4-5.9 14.9-11.4 23.6-16.2-8.3 22.3-19.6 52.8-7.8 101.1 4.6 19 11.9 36.8 24.1 52.3 2.9 3.7 6.3 6.9 9.5 10.3 .2-.2 .4-.3 .6-.5-1.4-7-2.2-14.1-1.5-21.9 2.2 3.2 3.9 6 5.9 8.6 12.6 16 28.7 27.4 47.2 35.6 25 11.3 51.1 13.3 77.9 8.6 54.9-9.7 90.7-48.6 116-98.8 1-1.8 .6-2.9-.9-4.2zm172-46.4c-9.5-3.1-22.2-4.2-28.7-2.9 9.9 4 14.1 6.6 18.8 12 12.6 14.4 10.4 34.7-5.4 45.6-11.7 8.1-24.9 10.5-38.9 9.1-1.2-.1-2.3-.4-3-.6 2.8-3.7 6-7 8.1-10.8 9.4-16.8 5.4-42.1-8.7-56.1-2.1-2.1-4.6-3.9-7-5.9-.3 1.3-.1 2.1 .1 2.8 4.2 16.6-8.1 32.4-24.8 31.8-7.6-.3-13.9-3.8-19.6-8.5-19.5-16.1-39.1-32.1-58.5-48.3-5.9-4.9-12.5-8.1-20.1-8.7-4.6-.4-9.3-.6-13.9-.9-5.9-.4-8.8-2.8-10.4-8.4-.9-3.4-1.5-6.8-2.2-10.2-1.5-8.1-6.2-13-14.3-14.2-4.4-.7-8.9-1-13.3-1.5-13-1.4-19.8-7.4-22.6-20.3-5 11-1.6 22.4 7.3 29.9 4.5 3.8 9.3 7.3 13.8 11.2 4.6 3.8 7.4 8.7 7.9 14.8 .4 4.7 .8 9.5 1.8 14.1 2.2 10.6 8.9 18.4 17 25.1 16.5 13.7 33 27.3 49.5 41.1 17.9 15 13.9 32.8 13 56-.9 22.9 12.2 42.9 33.5 51.2 1 .4 2 .6 3.6 1.1-15.7-18.2-10.1-44.1 .7-52.3 .3 2.2 .4 4.3 .9 6.4 9.4 44.1 45.4 64.2 85 56.9 16-2.9 30.6-8.9 42.9-19.8 2-1.8 3.7-4.1 5.9-6.5-19.3 4.6-35.8 .1-50.9-10.6 .7-.3 1.3-.3 1.9-.3 21.3 1.8 40.6-3.4 57-17.4 19.5-16.6 26.6-42.9 17.4-66-8.3-20.1-23.6-32.3-43.8-38.9zM99.4 179.3c-5.3-9.2-13.2-15.6-22.1-21.3 13.7-.5 26.6 .2 39.6 3.7-7-12.2-8.5-24.7-5-38.7 5.3 11.9 13.7 20.1 23.6 26.8 19.7 13.2 35.7 19.6 46.7 30.2 3.4 3.3 6.3 7.1 9.6 10.9-.8-2.1-1.4-4.1-2.2-6-5-10.6-13-18.6-22.6-25-1.8-1.2-2.8-2.5-3.4-4.5-3.3-12.5-3-25.1-.7-37.6 1-5.5 2.8-10.9 4.5-16.3 .8-2.4 2.3-4.6 4-6.6 .6 6.9 0 25.5 19.6 46 10.8 11.3 22.4 21.9 33.9 32.7 9 8.5 18.3 16.7 25.5 26.8 1.1 1.6 2.2 3.3 3.8 4.7-5-13-14.2-24.1-24.2-33.8-9.6-9.3-19.4-18.4-29.2-27.4-3.3-3-4.6-6.7-5.1-10.9-1.2-10.4 0-20.6 4.3-30.2 .5-1 1.1-2 1.9-3.3 .5 4.2 .6 7.9 1.4 11.6 4.8 23.1 20.4 36.3 49.3 63.5 10 9.4 19.3 19.2 25.6 31.6 4.8 9.3 7.3 19 5.7 29.6-.1 .6 .5 1.7 1.1 2 6.2 2.6 10 6.9 9.7 14.3 7.7-2.6 12.5-8 16.4-14.5 4.2 20.2-9.1 50.3-27.2 58.7 .4-4.5 5-23.4-16.5-27.7-6.8-1.3-12.8-1.3-22.9-2.1 4.7-9 10.4-20.6 .5-22.4-24.9-4.6-52.8 1.9-57.8 4.6 8.2 .4 16.3 1 23.5 3.3-2 6.5-4 12.7-5.8 18.9-1.9 6.5 2.1 14.6 9.3 9.6 1.2-.9 2.3-1.9 3.3-2.7-3.1 17.9-2.9 15.9-2.8 18.3 .3 10.2 9.5 7.8 15.7 7.3-2.5 11.8-29.5 27.3-45.4 25.8 7-4.7 12.7-10.3 15.9-17.9-6.5 .8-12.9 1.6-19.2 2.4l-.3-.9c4.7-3.4 8-7.8 10.2-13.1 8.7-21.1-3.6-38-25-39.9-9.1-.8-17.8 .8-25.9 5.5 6.2-15.6 17.2-26.6 32.6-34.5-15.2-4.3-8.9-2.7-24.6-6.3 14.6-9.3 30.2-13.2 46.5-14.6-5.2-3.2-48.1-3.6-70.2 20.9 7.9 1.4 15.5 2.8 23.2 4.2-23.8 7-44 19.7-62.4 35.6 1.1-4.8 2.7-9.5 3.3-14.3 .6-4.5 .8-9.2 .1-13.6-1.5-9.4-8.9-15.1-19.7-16.3-7.9-.9-15.6 .1-23.3 1.3-.9 .1-1.7 .3-2.9 0 15.8-14.8 36-21.7 53.1-33.5 6-4.5 6.8-8.2 3-14.9zm128.4 26.8c3.3 16 12.6 25.5 23.8 24.3-4.6-11.3-12.1-19.5-23.8-24.3z',
			),
		),
		'label'             => __( 'Dungeons & Dragons', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'd-and-d-beyond'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M313.8 241.5c13.8 0 21-10.1 24.8-17.9-1-1.1-5-4.2-7.4-6.6-2.4 4.3-8.2 10.7-13.9 10.7-10.2 0-15.4-14.7-3.2-26.6-.5-.2-4.3-1.8-8 2.4 0-3 1-5.1 2.1-6.6-3.5 1.3-9.8 5.6-11.4 7.9 .2-5.8 1.6-7.5 .6-9l-.2-.2s-8.5 5.6-9.3 14.7c0 0 1.1-1.6 2.1-1.9 .6-.3 1.3 0 .6 1.9-.2 .6-5.8 15.7 5.1 26-.6-1.6-1.9-7.6 2.4-1.9-.3 .1 5.8 7.1 15.7 7.1zm52.4-21.1c0-4-4.9-4.4-5.6-4.5 2 3.9 .9 7.5 .2 9 2.5-.4 5.4-1.6 5.4-4.5zm10.3 5.2c0-6.4-6.2-11.4-13.5-10.7 8 1.3 5.6 13.8-5 11.4 3.7-2.6 3.2-9.9-1.3-12.5 1.4 4.2-3 8.2-7.4 4.6-2.4-1.9-8-6.6-10.6-8.6-2.4-2.1-5.5-1-6.6-1.8-1.3-1.1-.5-3.8-2.2-5-1.6-.8-3-.3-4.8-1-1.6-.6-2.7-1.9-2.6-3.5-2.5 4.4 3.4 6.3 4.5 8.5 1 1.9-.8 4.8 4 8.5 14.8 11.6 9.1 8 10.4 18.1 .6 4.3 4.2 6.7 6.4 7.4-2.1-1.9-2.9-6.4 0-9.3 0 13.9 19.2 13.3 23.1 6.4-2.4 1.1-7-.2-9-1.9 7.7 1 14.2-4.1 14.6-10.6zm-39.4-18.4c2 .8 1.6 .7 6.4 4.5 10.2-24.5 21.7-15.7 22-15.5 2.2-1.9 9.8-3.8 13.8-2.7-2.4-2.7-7.5-6.2-13.3-6.2-4.7 0-7.4 2.2-8 1.3-.8-1.4 3.2-3.4 3.2-3.4-5.4 .2-9.6 6.7-11.2 5.9-1.1-.5 1.4-3.7 1.4-3.7-5.1 2.9-9.3 9.1-10.2 13 4.6-5.8 13.8-9.8 19.7-9-10.5 .5-19.5 9.7-23.8 15.8zm242.5 51.9c-20.7 0-40 1.3-50.3 2.1l7.4 8.2v77.2l-7.4 8.2c10.4 .8 30.9 2.1 51.6 2.1 42.1 0 59.1-20.7 59.1-48.9 0-29.3-23.2-48.9-60.4-48.9zm-15.1 75.6v-53.3c30.1-3.3 46.8 3.8 46.8 26.3 0 25.6-21.4 30.2-46.8 27zM301.6 181c-1-3.4-.2-6.9 1.1-9.4 1 3 2.6 6.4 7.5 9-.5-2.4-.2-5.6 .5-8-1.4-5.4 2.1-9.9 6.4-9.9 6.9 0 8.5 8.8 4.7 14.4 2.1 3.2 5.5 5.6 7.7 7.8 3.2-3.7 5.5-9.5 5.5-13.8 0-8.2-5.5-15.9-16.7-16.5-20-.9-20.2 16.6-20 18.9 .5 5.2 3.4 7.8 3.3 7.5zm-.4 6c-.5 1.8-7 3.7-10.2 6.9 4.8-1 7-.2 7.8 1.8 .5 1.4-.2 3.4-.5 5.6 1.6-1.8 7-5.5 11-6.2-1-.3-3.4-.8-4.3-.8 2.9-3.4 9.3-4.5 12.8-3.7-2.2-.2-6.7 1.1-8.5 2.6 1.6 .3 3 .6 4.3 1.1-2.1 .8-4.8 3.4-5.8 6.1 7-5 13.1 5.2 7 8.2 .8 .2 2.7 0 3.5-.5-.3 1.1-1.9 3-3 3.4 2.9 0 7-1.9 8.2-4.6 0 0-1.8 .6-2.6-.2s.3-4.3 .3-4.3c-2.3 2.9-3.4-1.3-1.3-4.2-1-.3-3.5-.6-4.6-.5 3.2-1.1 10.4-1.8 11.2-.3 .6 1.1-1 3.4-1 3.4 4-.5 8.3 1.1 6.7 5.1 2.9-1.4 5.5-5.9 4.8-10.4-.3 1-1.6 2.4-2.9 2.7 .2-1.4-1-2.2-1.9-2.6 1.7-9.6-14.6-14.2-14.1-23.9-1 1.3-1.8 5-.8 7.1 2.7 3.2 8.7 6.7 10.1 12.2-2.6-6.4-15.1-11.4-14.6-20.2-1.6 1.6-2.6 7.8-1.3 11 2.4 1.4 4.5 3.8 4.8 6.1-2.2-5.1-11.4-6.1-13.9-12.2-.6 2.2-.3 5 1 6.7 0 0-2.2-.8-7-.6 1.7 .6 5.1 3.5 4.8 5.2zm25.9 7.4c-2.7 0-3.5-2.1-4.2-4.3 3.3 1.3 4.2 4.3 4.2 4.3zm38.9 3.7l-1-.6c-1.1-1-2.9-1.4-4.7-1.4-2.9 0-5.8 1.3-7.5 3.4-.8 .8-1.4 1.8-2.1 2.6v15.7c3.5 2.6 7.1-2.9 3-7.2 1.5 .3 4.6 2.7 5.1 3.2 0 0 2.6-.5 5-.5 2.1 0 3.9 .3 5.6 1.1V196c-1.1 .5-2.2 1-2.7 1.4zM79.9 305.9c17.2-4.6 16.2-18 16.2-19.9 0-20.6-24.1-25-37-25H3l8.3 8.6v29.5H0l11.4 14.6V346L3 354.6c61.7 0 73.8 1.5 86.4-5.9 6.7-4 9.9-9.8 9.9-17.6 0-5.1 2.6-18.8-19.4-25.2zm-41.3-27.5c20 0 29.6-.8 29.6 9.1v3c0 12.1-19 8.8-29.6 8.8zm0 59.2V315c12.2 0 32.7-2.3 32.7 8.8v4.5h.2c0 11.2-12.5 9.3-32.9 9.3zm101.2-19.3l23.1 .2v-.2l14.1-21.2h-37.2v-14.9h52.4l-14.1-21v-.2l-73.5 .2 7.4 8.2v77.1l-7.4 8.2h81.2l14.1-21.2-60.1 .2zm214.7-60.1c-73.9 0-77.5 99.3-.3 99.3 77.9 0 74.1-99.3 .3-99.3zm-.3 77.5c-37.4 0-36.9-55.3 .2-55.3 36.8 .1 38.8 55.3-.2 55.3zm-91.3-8.3l44.1-66.2h-41.7l6.1 7.2-20.5 37.2h-.3l-21-37.2 6.4-7.2h-44.9l44.1 65.8 .2 19.4-7.7 8.2h42.6l-7.2-8.2zm-28.4-151.3c1.6 1.3 2.9 2.4 2.9 6.6v38.8c0 4.2-.8 5.3-2.7 6.4-.1 .1-7.5 4.5-7.9 4.6h35.1c10 0 17.4-1.5 26-8.6-.6-5 .2-9.5 .8-12 0-.2-1.8 1.4-2.7 3.5 0-5.7 1.6-15.4 9.6-20.5-.1 0-3.7-.8-9 1.1 2-3.1 10-7.9 10.4-7.9-8.2-26-38-22.9-32.2-22.9-30.9 0-32.6 .3-39.9-4 .1 .8 .5 8.2 9.6 14.9zm21.5 5.5c4.6 0 23.1-3.3 23.1 17.3 0 20.7-18.4 17.3-23.1 17.3zm228.9 79.6l7 8.3V312h-.3c-5.4-14.4-42.3-41.5-45.2-50.9h-31.6l7.4 8.5v76.9l-7.2 8.3h39l-7.4-8.2v-47.4h.3c3.7 10.6 44.5 42.9 48.5 55.6h21.3v-85.2l7.4-8.3zm-106.7-96.1c-32.2 0-32.8 .2-39.9-4 .1 .7 .5 8.3 9.6 14.9 3.1 2 2.9 4.3 2.9 9.5 1.8-1.1 3.8-2.2 6.1-3-1.1 1.1-2.7 2.7-3.5 4.5 1-1.1 7.5-5.1 14.6-3.5-1.6 .3-4 1.1-6.1 2.9 .1 0 2.1-1.1 7.5-.3v-4.3c4.7 0 23.1-3.4 23.1 17.3 0 20.5-18.5 17.3-19.7 17.3 5.7 4.4 5.8 12 2.2 16.3h.3c33.4 0 36.7-27.3 36.7-34 0-3.8-1.1-32-33.8-33.6z',
			),
		),
		'label'             => __( 'D&D Beyond', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'dailymotion'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M298.9 267a48.4 48.4 0 0 0 -24.36-6.21q-19.83 0-33.44 13.27t-13.61 33.42q0 21.16 13.28 34.6t33.43 13.44q20.5 0 34.11-13.78T322 307.5A47.13 47.13 0 0 0 315.9 284 44.13 44.13 0 0 0 298.9 267zM0 32V480H448V32zM374.7 405.3h-53.1V381.4h-.67q-15.79 26.2-55.78 26.2-27.56 0-48.89-13.1a88.29 88.29 0 0 1 -32.94-35.77q-11.6-22.68-11.59-50.89 0-27.56 11.76-50.22a89.9 89.9 0 0 1 32.93-35.78q21.18-13.09 47.72-13.1a80.87 80.87 0 0 1 29.74 5.21q13.28 5.21 25 17V153l55.79-12.09z',
			),
		),
		'label'             => __( 'dailymotion', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dashcube'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M326.6 104H110.4c-51.1 0-91.2 43.3-91.2 93.5V427c0 50.5 40.1 85 91.2 85h227.2c51.1 0 91.2-34.5 91.2-85V0L326.6 104zM153.9 416.5c-17.7 0-32.4-15.1-32.4-32.8V240.8c0-17.7 14.7-32.5 32.4-32.5h140.7c17.7 0 32 14.8 32 32.5v123.5l51.1 52.3H153.9z',
			),
		),
		'label'             => __( 'DashCube', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'database'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 80V128C448 172.2 347.7 208 224 208C100.3 208 0 172.2 0 128V80C0 35.82 100.3 0 224 0C347.7 0 448 35.82 448 80zM393.2 214.7C413.1 207.3 433.1 197.8 448 186.1V288C448 332.2 347.7 368 224 368C100.3 368 0 332.2 0 288V186.1C14.93 197.8 34.02 207.3 54.85 214.7C99.66 230.7 159.5 240 224 240C288.5 240 348.3 230.7 393.2 214.7V214.7zM54.85 374.7C99.66 390.7 159.5 400 224 400C288.5 400 348.3 390.7 393.2 374.7C413.1 367.3 433.1 357.8 448 346.1V432C448 476.2 347.7 512 224 512C100.3 512 0 476.2 0 432V346.1C14.93 357.8 34.02 367.3 54.85 374.7z',
			),
		),
		'label'             => __( 'Database', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'deezer'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M451.5 244.7H576V172H451.5zm0-173.9v72.67H576V70.82zm0 275.1H576V273.2H451.5zM0 447.1H124.5V374.4H0zm150.5 0H275V374.4H150.5zm150.5 0H425.5V374.4H301zm150.5 0H576V374.4H451.5zM301 345.9H425.5V273.2H301zm-150.5 0H275V273.2H150.5zm0-101.2H275V172H150.5z',
			),
		),
		'label'             => __( 'Deezer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'delete-left'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M576 384C576 419.3 547.3 448 512 448H205.3C188.3 448 172 441.3 160 429.3L9.372 278.6C3.371 272.6 0 264.5 0 256C0 247.5 3.372 239.4 9.372 233.4L160 82.75C172 70.74 188.3 64 205.3 64H512C547.3 64 576 92.65 576 128V384zM271 208.1L318.1 256L271 303C261.7 312.4 261.7 327.6 271 336.1C280.4 346.3 295.6 346.3 304.1 336.1L352 289.9L399 336.1C408.4 346.3 423.6 346.3 432.1 336.1C442.3 327.6 442.3 312.4 432.1 303L385.9 256L432.1 208.1C442.3 199.6 442.3 184.4 432.1 175C423.6 165.7 408.4 165.7 399 175L352 222.1L304.1 175C295.6 165.7 280.4 165.7 271 175C261.7 184.4 261.7 199.6 271 208.1V208.1z',
			),
		),
		'label'             => __( 'Delete Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'delicious'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M446.5 68c-.4-1.5-.9-3-1.4-4.5-.9-2.5-2-4.8-3.3-7.1-1.4-2.4-3-4.8-4.7-6.9-2.1-2.5-4.4-4.8-6.9-6.8-1.1-.9-2.2-1.7-3.3-2.5-1.3-.9-2.6-1.7-4-2.4-1.8-1-3.6-1.8-5.5-2.5-1.7-.7-3.5-1.3-5.4-1.7-3.8-1-7.9-1.5-12-1.5H48C21.5 32 0 53.5 0 80v352c0 4.1 .5 8.2 1.5 12 2 7.7 5.8 14.6 11 20.3 1 1.1 2.1 2.2 3.3 3.3 5.7 5.2 12.6 9 20.3 11 3.8 1 7.9 1.5 12 1.5h352c26.5 0 48-21.5 48-48V80c-.1-4.1-.6-8.2-1.6-12zM416 432c0 8.8-7.2 16-16 16H224V256H32V80c0-8.8 7.2-16 16-16h176v192h192z',
			),
		),
		'label'             => __( 'Delicious', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'democrat'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M191.1 479.1C191.1 497.6 206.4 512 223.1 512h32c17.6 0 32-14.4 32-32v-64h160v64c0 17.6 14.41 32 32.01 32L511.1 512c17.6 0 32-14.4 32-32l.0102-128H192L191.1 479.1zM637.2 256.9l-19.5-29.38c-28.25-42.25-75.38-67.5-126.1-67.5H255.1L174.7 78.75c20.13-20 22.63-51 7.5-73.88C178.9-.2552 171.5-1.005 167.1 3.37L125.2 45.25L82.36 2.37C78.74-1.255 72.74-.6302 69.99 3.62c-12.25 18.63-10.25 44 6.125 60.38c3.25 3.25 7.25 5.25 11.25 7.5c-2.125 1.75-4.625 3.125-6.375 5.375l-74.63 99.38C-.8895 185.9-2.014 198.9 3.361 209.7l14.38 28.5c5.375 10.88 16.5 17.75 28.5 17.75H77.24c8.5 0 16.63-3.375 22.63-9.375l38.13-34.63l54.04 108h351.1l-.0102-77.75c16.25 12.13 18.25 17.5 40.13 50.25c4.875 7.375 14.75 9.25 22.13 4.375l26.63-17.63C640.2 274.2 642.2 264.2 637.2 256.9zM296.2 243.2L279.7 259.4l3.875 22.75c.625 4.125-3.625 7.125-7.25 5.25L255.1 276.7L235.6 287.4C231.1 289.2 227.7 286.2 228.4 282.1l3.875-22.75L215.7 243.2c-3-2.875-1.25-7.875 2.875-8.5l22.75-3.25l10.25-20.75c1.75-3.625 7.125-3.625 9 0l10.13 20.75l22.88 3.25C297.6 235.4 299.2 240.4 296.2 243.2zM408.2 243.2l-16.5 16.13l3.875 22.75c.625 4.125-3.625 7.125-7.25 5.25L367.1 276.7l-20.38 10.63c-3.625 1.875-7.875-1.125-7.25-5.25l3.875-22.75l-16.5-16.13c-3-2.875-1.25-7.875 2.875-8.5l22.75-3.25l10.25-20.75c1.75-3.625 7.125-3.625 9 0l10.13 20.75l22.88 3.25C409.6 235.4 411.2 240.4 408.2 243.2zM520.2 243.2l-16.5 16.13l3.875 22.75c.625 4.125-3.625 7.125-7.25 5.25l-20.38-10.63l-20.38 10.63c-3.625 1.875-7.875-1.125-7.25-5.25l3.875-22.75l-16.5-16.13c-3-2.875-1.25-7.875 2.875-8.5l22.75-3.25l10.25-20.75c1.75-3.625 7.125-3.625 9 0l10.13 20.75l22.88 3.25C521.6 235.4 523.2 240.4 520.2 243.2z',
			),
		),
		'label'             => __( 'Democrat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'deploydog'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M382.2 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.6 0-33.2 16.4-33.2 32.6zM188.5 136h51.7v239.6h-51.7v-20.7c-19.8 24.8-52.8 24.1-73.8 14.7-26.2-11.7-44.3-38.1-44.3-71.8 0-29.8 14.8-57.9 43.3-70.8 20.2-9.1 52.7-10.6 74.8 12.9V136zm-64.7 161.8c0 18.2 13.6 33.5 33.2 33.5 19.8 0 33.2-16.4 33.2-32.9 0-17.1-13.7-33.2-33.2-33.2-19.7 0-33.2 16.4-33.2 32.6zM448 96c17.5 0 32 14.4 32 32v256c0 17.5-14.4 32-32 32H64c-17.5 0-32-14.4-32-32V128c0-17.5 14.4-32 32-32h384m0-32H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h384c35.2 0 64-28.8 64-64V128c0-35.2-28.8-64-64-64z',
			),
		),
		'label'             => __( 'deploy.dog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'deskpro'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 480,
				'height' => 512,
				'path'   => 'M205.9 512l31.1-38.4c12.3-.2 25.6-1.4 36.5-6.6 38.9-18.6 38.4-61.9 38.3-63.8-.1-5-.8-4.4-28.9-37.4H362c-.2 50.1-7.3 68.5-10.2 75.7-9.4 23.7-43.9 62.8-95.2 69.4-8.7 1.1-32.8 1.2-50.7 1.1zm200.4-167.7c38.6 0 58.5-13.6 73.7-30.9l-175.5-.3-17.4 31.3 119.2-.1zm-43.6-223.9v168.3h-73.5l-32.7 55.5H250c-52.3 0-58.1-56.5-58.3-58.9-1.2-13.2-21.3-11.6-20.1 1.8 1.4 15.8 8.8 40 26.4 57.1h-91c-25.5 0-110.8-26.8-107-114V16.9C0 .9 9.7 .3 15 .1h82c.2 0 .3 .1 .5 .1 4.3-.4 50.1-2.1 50.1 43.7 0 13.3 20.2 13.4 20.2 0 0-18.2-5.5-32.8-15.8-43.7h84.2c108.7-.4 126.5 79.4 126.5 120.2zm-132.5 56l64 29.3c13.3-45.5-42.2-71.7-64-29.3z',
			),
		),
		'label'             => __( 'Deskpro', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'desktop'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528 0h-480C21.5 0 0 21.5 0 48v320C0 394.5 21.5 416 48 416h192L224 464H152C138.8 464 128 474.8 128 488S138.8 512 152 512h272c13.25 0 24-10.75 24-24s-10.75-24-24-24H352L336 416h192c26.5 0 48-21.5 48-48v-320C576 21.5 554.5 0 528 0zM512 288H64V64h448V288z',
			),
		),
		'label'             => __( 'Desktop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'dev'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M120.1 208.3c-3.88-2.9-7.77-4.35-11.65-4.35H91.03v104.5h17.45c3.88 0 7.77-1.45 11.65-4.35 3.88-2.9 5.82-7.25 5.82-13.06v-69.65c-.01-5.8-1.96-10.16-5.83-13.06zM404.1 32H43.9C19.7 32 .06 51.59 0 75.8v360.4C.06 460.4 19.7 480 43.9 480h360.2c24.21 0 43.84-19.59 43.9-43.8V75.8c-.06-24.21-19.7-43.8-43.9-43.8zM154.2 291.2c0 18.81-11.61 47.31-48.36 47.25h-46.4V172.1h47.38c35.44 0 47.36 28.46 47.37 47.28l.01 70.93zm100.7-88.66H201.6v38.42h32.57v29.57H201.6v38.41h53.29v29.57h-62.18c-11.16 .29-20.44-8.53-20.72-19.69V193.7c-.27-11.15 8.56-20.41 19.71-20.69h63.19l-.01 29.52zm103.6 115.3c-13.2 30.75-36.85 24.63-47.44 0l-38.53-144.8h32.57l29.71 113.7 29.57-113.7h32.58l-38.46 144.8z',
			),
		),
		'label'             => __( 'DEV', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'deviantart'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 93.2l-98.2 179.1 7.4 9.5H320v127.7H159.1l-13.5 9.2-43.7 84c-.3 0-8.6 8.6-9.2 9.2H0v-93.2l93.2-179.4-7.4-9.2H0V102.5h156l13.5-9.2 43.7-84c.3 0 8.6-8.6 9.2-9.2H320v93.1z',
			),
		),
		'label'             => __( 'deviantART', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dharmachakra'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M495 225l-17.24 1.124c-5.25-39.5-20.76-75.63-43.89-105.9l12.1-11.37c6.875-6.125 7.25-16.75 .75-23.38L426.5 64.38c-6.625-6.5-17.25-6.125-23.38 .75l-11.37 12.1c-30.25-23.12-66.38-38.64-105.9-43.89L287 17C287.5 7.75 280.2 0 271 0h-30c-9.25 0-16.5 7.75-16 17l1.124 17.24c-39.5 5.25-75.63 20.76-105.9 43.89L108.9 65.13C102.8 58.25 92.13 57.88 85.63 64.38L64.38 85.5C57.88 92.12 58.25 102.8 65.13 108.9l12.1 11.37C54.1 150.5 39.49 186.6 34.24 226.1L17 225C7.75 224.5 0 231.8 0 241v30c0 9.25 7.75 16.5 17 16l17.24-1.124c5.25 39.5 20.76 75.63 43.89 105.9l-12.1 11.37c-6.875 6.125-7.25 16.75-.75 23.25l21.25 21.25c6.5 6.5 17.13 6.125 23.25-.75l11.37-12.1c30.25 23.12 66.38 38.64 105.9 43.89L225 495C224.5 504.2 231.8 512 241 512h30c9.25 0 16.5-7.75 16-17l-1.124-17.24c39.5-5.25 75.63-20.76 105.9-43.89l11.37 12.1c6.125 6.875 16.75 7.25 23.38 .75l21.12-21.25c6.5-6.5 6.125-17.13-.75-23.25l-12.1-11.37c23.12-30.25 38.64-66.38 43.89-105.9L495 287C504.3 287.5 512 280.2 512 271v-30C512 231.8 504.3 224.5 495 225zM281.9 98.68c24.75 4 47.61 13.59 67.24 27.71L306.5 174.6c-8.75-5.375-18.38-9.507-28.62-11.88L281.9 98.68zM230.1 98.68l3.996 64.06C223.9 165.1 214.3 169.2 205.5 174.6L162.9 126.4C182.5 112.3 205.4 102.7 230.1 98.68zM126.4 163l48.35 42.48c-5.5 8.75-9.606 18.4-11.98 28.65L98.68 230.1C102.7 205.4 112.2 182.5 126.4 163zM98.68 281.9l64.06-3.996C165.1 288.1 169.3 297.8 174.6 306.5l-48.23 42.61C112.3 329.5 102.7 306.6 98.68 281.9zM230.1 413.3c-24.75-4-47.61-13.59-67.24-27.71l42.58-48.33c8.75 5.5 18.4 9.606 28.65 11.98L230.1 413.3zM256 288C238.4 288 224 273.6 224 256s14.38-32 32-32s32 14.38 32 32S273.6 288 256 288zM281.9 413.3l-3.996-64.06c10.25-2.375 19.9-6.48 28.65-11.98l42.48 48.35C329.5 399.8 306.6 409.3 281.9 413.3zM385.6 349l-48.25-42.5c5.375-8.75 9.507-18.38 11.88-28.62l64.06 3.996C409.3 306.6 399.8 329.5 385.6 349zM349.3 234.1c-2.375-10.25-6.48-19.9-11.98-28.65L385.6 163c14.13 19.5 23.69 42.38 27.69 67.13L349.3 234.1z',
			),
		),
		'label'             => __( 'Dharmachakra', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'dhl'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M238 301.2h58.7L319 271h-58.7L238 301.2zM0 282.9v6.4h81.8l4.7-6.4H0zM172.9 271c-8.7 0-6-3.6-4.6-5.5 2.8-3.8 7.6-10.4 10.4-14.1 2.8-3.7 2.8-5.9-2.8-5.9h-51l-41.1 55.8h100.1c33.1 0 51.5-22.5 57.2-30.3h-68.2zm317.5-6.9l39.3-53.4h-62.2l-39.3 53.4h62.2zM95.3 271H0v6.4h90.6l4.7-6.4zm111-26.6c-2.8 3.8-7.5 10.4-10.3 14.2-1.4 2-4.1 5.5 4.6 5.5h45.6s7.3-10 13.5-18.4c8.4-11.4 .7-35-29.2-35H112.6l-20.4 27.8h111.4c5.6 0 5.5 2.2 2.7 5.9zM0 301.2h73.1l4.7-6.4H0v6.4zm323 0h58.7L404 271h-58.7c-.1 0-22.3 30.2-22.3 30.2zm222 .1h95v-6.4h-90.3l-4.7 6.4zm22.3-30.3l-4.7 6.4H640V271h-72.7zm-13.5 18.3H640v-6.4h-81.5l-4.7 6.4zm-164.2-78.6l-22.5 30.6h-26.2l22.5-30.6h-58.7l-39.3 53.4H409l39.3-53.4h-58.7zm33.5 60.3s-4.3 5.9-6.4 8.7c-7.4 10-.9 21.6 23.2 21.6h94.3l22.3-30.3H423.1z',
			),
		),
		'label'             => __( 'DHL', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'diagram-next'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 160C512 195.3 483.3 224 448 224H280V288H326.1C347.4 288 358.1 313.9 343 328.1L272.1 399C263.6 408.4 248.4 408.4 239 399L168.1 328.1C153.9 313.9 164.6 288 185.9 288H232V224H64C28.65 224 0 195.3 0 160V96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V160zM312.6 416H448V352H376.6L384.1 343.6C401 327.6 404.6 306.4 399 288H448C483.3 288 512 316.7 512 352V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V352C0 316.7 28.65 288 64 288H112.1C107.4 306.4 110.1 327.6 127 343.6L135.4 352H64V416H199.4L216.4 432.1C238.3 454.8 273.7 454.8 295.6 432.1L312.6 416z',
			),
		),
		'label'             => __( 'Diagram Next', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'diagram-predecessor'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 480C28.65 480 0 451.3 0 416V352C0 316.7 28.65 288 64 288H448C483.3 288 512 316.7 512 352V416C512 451.3 483.3 480 448 480H64zM448 416V352H64V416H448zM288 160C288 195.3 259.3 224 224 224H64C28.65 224 0 195.3 0 160V96C0 60.65 28.65 32 64 32H368C412.2 32 448 67.82 448 112V128H486.1C507.4 128 518.1 153.9 503 168.1L432.1 239C423.6 248.4 408.4 248.4 399 239L328.1 168.1C313.9 153.9 324.6 128 345.9 128H384V112C384 103.2 376.8 96 368 96H288V160z',
			),
		),
		'label'             => __( 'Diagram Predecessor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'diagram-project'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 80C0 53.49 21.49 32 48 32H144C170.5 32 192 53.49 192 80V96H384V80C384 53.49 405.5 32 432 32H528C554.5 32 576 53.49 576 80V176C576 202.5 554.5 224 528 224H432C405.5 224 384 202.5 384 176V160H192V176C192 177.7 191.9 179.4 191.7 180.1L272 288H368C394.5 288 416 309.5 416 336V432C416 458.5 394.5 480 368 480H272C245.5 480 224 458.5 224 432V336C224 334.3 224.1 332.6 224.3 331L144 224H48C21.49 224 0 202.5 0 176V80z',
			),
		),
		'label'             => __( 'Diagram Project', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'diagram-successor'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V352C0 316.7 28.65 288 64 288H448C483.3 288 512 316.7 512 352V416zM224 224H64C28.65 224 0 195.3 0 160V96C0 60.65 28.65 32 64 32H368C412.2 32 448 67.82 448 112V128H486.1C507.4 128 518.1 153.9 503 168.1L432.1 239C423.6 248.4 408.4 248.4 399 239L328.1 168.1C313.9 153.9 324.6 128 345.9 128H384V112C384 103.2 376.8 96 368 96H288V160C288 195.3 259.3 224 224 224V224zM64 160H224V96H64V160z',
			),
		),
		'label'             => __( 'Diagram Successor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'diamond'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 227.7C515.9 243.3 515.9 268.7 500.3 284.3L284.3 500.3C268.7 515.9 243.3 515.9 227.7 500.3L11.72 284.3C-3.905 268.7-3.905 243.3 11.72 227.7L227.7 11.72C243.3-3.905 268.7-3.905 284.3 11.72L500.3 227.7z',
			),
		),
		'label'             => __( 'Diamond', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'lifestyle-and-hobbies' ),
	),
	'diamond-turn-right'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M497.1 222.1l-208.1-208.1c-9.364-9.364-21.62-14.04-33.89-14.03C243.7 .0092 231.5 4.686 222.1 14.03L14.03 222.1C4.676 231.5 .0002 243.7 .0004 255.1c.0002 12.26 4.676 24.52 14.03 33.87l208.1 208.1C231.5 507.3 243.7 511.1 256 511.1c12.26 0 24.52-4.677 33.87-14.03l208.1-208.1c9.352-9.353 14.03-21.61 14.03-33.87C511.1 243.7 507.3 231.5 497.1 222.1zM410.5 252l-96 84c-10.79 9.545-26.53 .9824-26.53-12.03V272H223.1l-.0001 48C223.1 337.6 209.6 352 191.1 352S159.1 337.6 159.1 320V240c0-17.6 14.4-32 32-32h95.1V156c0-13.85 16.39-20.99 26.53-12.03l96 84C414 231 415.1 235.4 415.1 240S414 249 410.5 252z',
			),
		),
		'label'             => __( 'Diamond Turn Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'diaspora'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M251.6 354.5c-1.4 0-88 119.9-88.7 119.9S76.34 414 76 413.3s86.6-125.7 86.6-127.4c0-2.2-129.6-44-137.6-47.1-1.3-.5 31.4-101.8 31.7-102.1 .6-.7 144.4 47 145.5 47 .4 0 .9-.6 1-1.3 .4-2 1-148.6 1.7-149.6 .8-1.2 104.5-.7 105.1-.3 1.5 1 3.5 156.1 6.1 156.1 1.4 0 138.7-47 139.3-46.3 .8 .9 31.9 102.2 31.5 102.6-.9 .9-140.2 47.1-140.6 48.8-.3 1.4 82.8 122.1 82.5 122.9s-85.5 63.5-86.3 63.5c-1-.2-89-125.5-90.9-125.5z',
			),
		),
		'label'             => __( 'Diaspora', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dice'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M447.1 224c0-12.56-4.781-25.13-14.35-34.76l-174.9-174.9C249.1 4.786 236.5 0 223.1 0C211.4 0 198.9 4.786 189.2 14.35L14.35 189.2C4.783 198.9-.0011 211.4-.0011 223.1c0 12.56 4.785 25.17 14.35 34.8l174.9 174.9c9.625 9.562 22.19 14.35 34.75 14.35s25.13-4.783 34.75-14.35l174.9-174.9C443.2 249.1 447.1 236.6 447.1 224zM96 248c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1S120 210.8 120 224S109.3 248 96 248zM224 376c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1s23.1 10.75 23.1 23.1S237.3 376 224 376zM224 248c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1S248 210.8 248 224S237.3 248 224 248zM224 120c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1s23.1 10.75 23.1 23.1S237.3 120 224 120zM352 248c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1s23.1 10.75 23.1 23.1S365.3 248 352 248zM591.1 192l-118.7 0c4.418 10.27 6.604 21.25 6.604 32.23c0 20.7-7.865 41.38-23.63 57.14l-136.2 136.2v46.37C320 490.5 341.5 512 368 512h223.1c26.5 0 47.1-21.5 47.1-47.1V240C639.1 213.5 618.5 192 591.1 192zM479.1 376c-13.25 0-23.1-10.75-23.1-23.1s10.75-23.1 23.1-23.1s23.1 10.75 23.1 23.1S493.2 376 479.1 376z',
			),
		),
		'label'             => __( 'Dice', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'dice-d20'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M20.04 317.3C18 317.3 16 315.8 16 313.3V150.5c0-2.351 1.91-4.012 4.001-4.012c.6882 0 1.396 .18 2.062 .5748l76.62 45.1l-75.28 122.3C22.59 316.8 21.31 317.3 20.04 317.3zM231.4 405.2l-208.2-22.06c-4.27-.4821-7.123-4.117-7.123-7.995c0-1.401 .3725-2.834 1.185-4.161L122.7 215.1L231.4 405.2zM31.1 420.1c0-2.039 1.508-4.068 3.93-4.068c.1654 0 .3351 .0095 .5089 .0291l203.6 22.31v65.66C239.1 508.6 236.2 512 232 512c-1.113 0-2.255-.2387-3.363-.7565L34.25 423.6C32.69 422.8 31.1 421.4 31.1 420.1zM33.94 117.1c-1.289-.7641-1.938-2.088-1.938-3.417c0-1.281 .6019-2.567 1.813-3.364l150.8-98.59C185.1 10.98 187.3 10.64 188.6 10.64c4.32 0 8.003 3.721 8.003 8.022c0 1.379-.3788 2.818-1.237 4.214L115.5 165.8L33.94 117.1zM146.8 175.1l95.59-168.4C245.5 2.53 250.7 0 255.1 0s10.5 2.53 13.62 7.624l95.59 168.4H146.8zM356.4 207.1l-100.4 175.7L155.6 207.1H356.4zM476.1 415.1c2.422 0 3.93 2.029 3.93 4.068c0 1.378-.6893 2.761-2.252 3.524l-194.4 87.66c-1.103 .5092-2.241 .7443-3.35 .7443c-4.2 0-7.994-3.371-7.994-7.994v-65.69l203.6-22.28C475.7 416 475.9 415.1 476.1 415.1zM494.8 370.9C495.6 372.3 496 373.7 496 375.1c0 3.872-2.841 7.499-7.128 7.98l-208.2 22.06l108.6-190.1L494.8 370.9zM316.6 22.87c-.8581-1.395-1.237-2.834-1.237-4.214c0-4.301 3.683-8.022 8.003-8.022c1.308 0 2.675 .3411 4.015 1.11l150.8 98.59c1.211 .7973 1.813 2.076 1.813 3.353c0 1.325-.6488 2.649-1.938 3.429L396.5 165.8L316.6 22.87zM491.1 146.5c2.091 0 4.001 1.661 4.001 4.012v162.8c0 2.483-2.016 4.006-4.053 4.006c-1.27 0-2.549-.5919-3.353-1.912l-75.28-122.3l76.62-45.1C490.6 146.7 491.3 146.5 491.1 146.5z',
			),
		),
		'label'             => __( 'Dice D20', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-d6'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M7.994 153.5c1.326 0 2.687 .3508 3.975 1.119L208 271.5v223.8c0 9.741-7.656 16.71-16.01 16.71c-2.688 0-5.449-.7212-8.05-2.303l-152.2-92.47C12.13 405.3 0 383.3 0 359.5v-197.7C0 156.1 3.817 153.5 7.994 153.5zM426.2 117.2c0 2.825-1.352 5.647-4.051 7.248L224 242.6L25.88 124.4C23.19 122.8 21.85 119.1 21.85 117.2c0-2.8 1.32-5.603 3.965-7.221l165.1-100.9C201.7 3.023 212.9 0 224 0s22.27 3.023 32.22 9.07l165.1 100.9C424.8 111.6 426.2 114.4 426.2 117.2zM440 153.5C444.2 153.5 448 156.1 448 161.8v197.7c0 23.75-12.12 45.75-31.78 57.69l-152.2 92.5C261.5 511.3 258.7 512 256 512C247.7 512 240 505 240 495.3V271.5l196-116.9C437.3 153.8 438.7 153.5 440 153.5z',
			),
		),
		'label'             => __( 'Dice D6', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-five'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM128 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S145.6 384 128 384zM128 192C110.4 192 96 177.6 96 160s14.38-32 32-32s32 14.38 32 32S145.6 192 128 192zM224 288C206.4 288 192 273.6 192 256s14.38-32 32-32s32 14.38 32 32S241.6 288 224 288zM320 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 384 320 384zM320 192c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 192 320 192z',
			),
		),
		'label'             => __( 'Dice Five', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'dice-four'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM128 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S145.6 384 128 384zM128 192C110.4 192 96 177.6 96 160s14.38-32 32-32s32 14.38 32 32S145.6 192 128 192zM320 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 384 320 384zM320 192c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 192 320 192z',
			),
		),
		'label'             => __( 'Dice Four', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-one'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM224 288C206.4 288 192 273.6 192 256s14.38-32 32-32s32 14.38 32 32S241.6 288 224 288z',
			),
		),
		'label'             => __( 'Dice One', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-six'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM128 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S145.6 384 128 384zM128 288C110.4 288 96 273.6 96 256s14.38-32 32-32s32 14.38 32 32S145.6 288 128 288zM128 192C110.4 192 96 177.6 96 160s14.38-32 32-32s32 14.38 32 32S145.6 192 128 192zM320 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 384 320 384zM320 288c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 288 320 288zM320 192c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 192 320 192z',
			),
		),
		'label'             => __( 'Dice Six', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-three'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM128 192C110.4 192 96 177.6 96 160s14.38-32 32-32s32 14.38 32 32S145.6 192 128 192zM224 288C206.4 288 192 273.6 192 256s14.38-32 32-32s32 14.38 32 32S241.6 288 224 288zM320 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 384 320 384z',
			),
		),
		'label'             => __( 'Dice Three', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'dice-two'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.62 32 0 60.62 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.62 419.4 32 384 32zM128 192C110.4 192 96 177.6 96 160s14.38-32 32-32s32 14.38 32 32S145.6 192 128 192zM320 384c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 384 320 384z',
			),
		),
		'label'             => __( 'Dice Two', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'digg'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M81.7 172.3H0v174.4h132.7V96h-51v76.3zm0 133.4H50.9v-92.3h30.8v92.3zm297.2-133.4v174.4h81.8v28.5h-81.8V416H512V172.3H378.9zm81.8 133.4h-30.8v-92.3h30.8v92.3zm-235.6 41h82.1v28.5h-82.1V416h133.3V172.3H225.1v174.4zm51.2-133.3h30.8v92.3h-30.8v-92.3zM153.3 96h51.3v51h-51.3V96zm0 76.3h51.3v174.4h-51.3V172.3z',
			),
		),
		'label'             => __( 'Digg Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'digital-ocean'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M87 481.8h73.7v-73.6H87zM25.4 346.6v61.6H87v-61.6zm466.2-169.7c-23-74.2-82.4-133.3-156.6-156.6C164.9-32.8 8 93.7 8 255.9h95.8c0-101.8 101-180.5 208.1-141.7 39.7 14.3 71.5 46.1 85.8 85.7 39.1 107-39.7 207.8-141.4 208v.3h-.3V504c162.6 0 288.8-156.8 235.6-327.1zm-235.3 231v-95.3h-95.6v95.6H256v-.3z',
			),
		),
		'label'             => __( 'Digital Ocean', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'discord'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M524.5 69.84a1.5 1.5 0 0 0 -.764-.7A485.1 485.1 0 0 0 404.1 32.03a1.816 1.816 0 0 0 -1.923 .91 337.5 337.5 0 0 0 -14.9 30.6 447.8 447.8 0 0 0 -134.4 0 309.5 309.5 0 0 0 -15.14-30.6 1.89 1.89 0 0 0 -1.924-.91A483.7 483.7 0 0 0 116.1 69.14a1.712 1.712 0 0 0 -.788 .676C39.07 183.7 18.19 294.7 28.43 404.4a2.016 2.016 0 0 0 .765 1.375A487.7 487.7 0 0 0 176 479.9a1.9 1.9 0 0 0 2.063-.676A348.2 348.2 0 0 0 208.1 430.4a1.86 1.86 0 0 0 -1.019-2.588 321.2 321.2 0 0 1 -45.87-21.85 1.885 1.885 0 0 1 -.185-3.126c3.082-2.309 6.166-4.711 9.109-7.137a1.819 1.819 0 0 1 1.9-.256c96.23 43.92 200.4 43.92 295.5 0a1.812 1.812 0 0 1 1.924 .233c2.944 2.426 6.027 4.851 9.132 7.16a1.884 1.884 0 0 1 -.162 3.126 301.4 301.4 0 0 1 -45.89 21.83 1.875 1.875 0 0 0 -1 2.611 391.1 391.1 0 0 0 30.01 48.81 1.864 1.864 0 0 0 2.063 .7A486 486 0 0 0 610.7 405.7a1.882 1.882 0 0 0 .765-1.352C623.7 277.6 590.9 167.5 524.5 69.84zM222.5 337.6c-28.97 0-52.84-26.59-52.84-59.24S193.1 219.1 222.5 219.1c29.67 0 53.31 26.82 52.84 59.24C275.3 310.1 251.9 337.6 222.5 337.6zm195.4 0c-28.97 0-52.84-26.59-52.84-59.24S388.4 219.1 417.9 219.1c29.67 0 53.31 26.82 52.84 59.24C470.7 310.1 447.5 337.6 417.9 337.6z',
			),
		),
		'label'             => __( 'Discord', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'discourse'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z',
			),
		),
		'label'             => __( 'Discourse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'disease'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M472.2 195.9l-66.1-22.1c-19.25-6.624-33.5-20.87-38.13-38.24l-16-60.49c-11.62-43.74-76.63-57.11-110-22.62L194.1 99.3c-13.25 13.75-33.5 20.87-54.25 19.25L68.86 112.9c-52-3.999-86.88 44.99-59 82.86l38.63 52.49c11 14.1 12.75 33.74 4.625 50.12l-28.5 56.99c-20.62 41.24 22.88 84.86 73.5 73.86l69.1-15.25c20.12-4.499 41.38 .0001 57 11.62l54.38 40.87c39.38 29.62 101 7.623 104.5-37.24l4.625-61.86c1.375-17.75 12.88-33.87 30.62-42.99l61.1-31.62C526.1 269.8 520.9 212.5 472.2 195.9zM159.1 256c-17.62 0-31.1-14.37-31.1-31.1s14.37-31.1 31.1-31.1s31.1 14.37 31.1 31.1S177.6 256 159.1 256zM287.1 351.1c-17.62 0-31.1-14.37-31.1-31.1c0-17.62 14.37-31.1 31.1-31.1s31.1 14.37 31.1 31.1C319.1 337.6 305.6 351.1 287.1 351.1zM303.1 224c-8.875 0-15.1-7.125-15.1-15.1c0-8.873 7.125-15.1 15.1-15.1s15.1 7.125 15.1 15.1C319.1 216.9 312.9 224 303.1 224z',
			),
		),
		'label'             => __( 'Disease', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'display'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528 0h-480C21.5 0 0 21.5 0 48v320C0 394.5 21.5 416 48 416h192L224 464H152C138.8 464 128 474.8 128 488S138.8 512 152 512h272c13.25 0 24-10.75 24-24s-10.75-24-24-24H352L336 416h192c26.5 0 48-21.5 48-48v-320C576 21.5 554.5 0 528 0zM512 352H64V64h448V352z',
			),
		),
		'label'             => __( 'Display', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'divide'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 224h-352c-17.69 0-32 14.31-32 31.1s14.31 32 32 32h352c17.69 0 32-14.31 32-32S417.7 224 400 224zM224 144c26.47 0 48-21.53 48-48s-21.53-48-48-48s-48 21.53-48 48S197.5 144 224 144zM224 368c-26.47 0-48 21.53-48 48s21.53 48 48 48s48-21.53 48-48S250.5 368 224 368z',
			),
		),
		'label'             => __( 'Divide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'dna'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M.1193 494.1c-1.125 9.5 6.312 17.87 15.94 17.87l32.06 .0635c8.125 0 15.21-5.833 16.21-13.83c.7501-4.875 1.869-11.17 3.494-18.17h312c1.625 6.875 2.904 13.31 3.529 18.18c1.125 7.1 7.84 13.94 15.97 13.82l32.46-.0625c9.625 0 17.12-8.374 15.99-17.87c-4.625-37.87-25.75-128.1-119.1-207.7c-17.5 12.37-36.98 24.37-58.48 35.49c6.25 4.625 11.56 9.405 17.06 14.15H159.7c21.25-18.12 47.03-35.63 78.65-51.38c172.1-85.5 203.7-218.8 209.5-266.7c1.125-9.5-6.297-17.88-15.92-17.88L399.6 .001c-8.125 0-14.84 5.832-15.96 13.83c-.7501 4.875-1.869 11.17-3.369 18.17H67.74C66.24 25 65.08 18.81 64.33 13.81C63.21 5.813 56.48-.124 48.36 .001L16.1 .1338c-9.625 0-17.09 8.354-15.96 17.85c5.125 42.87 31.29 153.8 159.9 238.1C31.55 340.3 5.245 451.2 .1193 494.1zM223.9 219.7C198.8 205.9 177.6 191.3 159.7 176h128.5C270.4 191.3 249 206.1 223.9 219.7zM355.1 96c-5.875 10.37-12.88 21.12-21 31.1H113.1c-8.25-10.87-15.3-21.63-21.05-32L355.1 96zM93 415.1c5.875-10.37 12.74-21.13 20.87-32h219.4c8.375 10.87 15.48 21.63 21.23 32H93z',
			),
		),
		'label'             => __( 'Dna', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'dochub'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 416,
				'height' => 512,
				'path'   => 'M397.9 160H256V19.6L397.9 160zM304 192v130c0 66.8-36.5 100.1-113.3 100.1H96V84.8h94.7c12 0 23.1 .8 33.1 2.5v-84C212.9 1.1 201.4 0 189.2 0H0v512h189.2C329.7 512 400 447.4 400 318.1V192h-96z',
			),
		),
		'label'             => __( 'DocHub', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'docker'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M349.9 236.3h-66.1v-59.4h66.1v59.4zm0-204.3h-66.1v60.7h66.1V32zm78.2 144.8H362v59.4h66.1v-59.4zm-156.3-72.1h-66.1v60.1h66.1v-60.1zm78.1 0h-66.1v60.1h66.1v-60.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4-3.3-24-16.7-44.9-41.1-63.7l-14-9.3-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1 37.1 43.9 92.7 66.2 165.4 66.2 157.4 0 273.9-72.5 328.4-204.2 21.4 .4 67.6 .1 91.3-45.2 1.5-2.5 6.6-13.2 8.5-17.1l-13.3-8.9zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1v-59.4zm-78.1-72.1h-66.1v60.1h66.1v-60.1z',
			),
		),
		'label'             => __( 'Docker', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dog'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M332.7 19.85C334.6 8.395 344.5 0 356.1 0C363.6 0 370.6 3.52 375.1 9.502L392 32H444.1C456.8 32 469.1 37.06 478.1 46.06L496 64H552C565.3 64 576 74.75 576 88V112C576 156.2 540.2 192 496 192H426.7L421.6 222.5L309.6 158.5L332.7 19.85zM448 64C439.2 64 432 71.16 432 80C432 88.84 439.2 96 448 96C456.8 96 464 88.84 464 80C464 71.16 456.8 64 448 64zM416 256.1V480C416 497.7 401.7 512 384 512H352C334.3 512 320 497.7 320 480V364.8C295.1 377.1 268.8 384 240 384C211.2 384 184 377.1 160 364.8V480C160 497.7 145.7 512 128 512H96C78.33 512 64 497.7 64 480V249.8C35.23 238.9 12.64 214.5 4.836 183.3L.9558 167.8C-3.331 150.6 7.094 133.2 24.24 128.1C41.38 124.7 58.76 135.1 63.05 152.2L66.93 167.8C70.49 182 83.29 191.1 97.97 191.1H303.8L416 256.1z',
			),
		),
		'label'             => __( 'Dog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'dollar-sign'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M160 0C177.7 0 192 14.33 192 32V67.68C193.6 67.89 195.1 68.12 196.7 68.35C207.3 69.93 238.9 75.02 251.9 78.31C268.1 82.65 279.4 100.1 275 117.2C270.7 134.3 253.3 144.7 236.1 140.4C226.8 137.1 198.5 133.3 187.3 131.7C155.2 126.9 127.7 129.3 108.8 136.5C90.52 143.5 82.93 153.4 80.92 164.5C78.98 175.2 80.45 181.3 82.21 185.1C84.1 189.1 87.79 193.6 95.14 198.5C111.4 209.2 136.2 216.4 168.4 225.1L171.2 225.9C199.6 233.6 234.4 243.1 260.2 260.2C274.3 269.6 287.6 282.3 295.8 299.9C304.1 317.7 305.9 337.7 302.1 358.1C295.1 397 268.1 422.4 236.4 435.6C222.8 441.2 207.8 444.8 192 446.6V480C192 497.7 177.7 512 160 512C142.3 512 128 497.7 128 480V445.1C127.6 445.1 127.1 444.1 126.7 444.9L126.5 444.9C102.2 441.1 62.07 430.6 35 418.6C18.85 411.4 11.58 392.5 18.76 376.3C25.94 360.2 44.85 352.9 60.1 360.1C81.9 369.4 116.3 378.5 136.2 381.6C168.2 386.4 194.5 383.6 212.3 376.4C229.2 369.5 236.9 359.5 239.1 347.5C241 336.8 239.6 330.7 237.8 326.9C235.9 322.9 232.2 318.4 224.9 313.5C208.6 302.8 183.8 295.6 151.6 286.9L148.8 286.1C120.4 278.4 85.58 268.9 59.76 251.8C45.65 242.4 32.43 229.7 24.22 212.1C15.89 194.3 14.08 174.3 17.95 153C25.03 114.1 53.05 89.29 85.96 76.73C98.98 71.76 113.1 68.49 128 66.73V32C128 14.33 142.3 0 160 0V0z',
			),
		),
		'label'             => __( 'Dollar Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'dolly'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M294.2 277.8c17.1 5 34.62 13.38 49.5 24.62l161.5-53.75c8.375-2.875 12.88-11.88 10-20.25L454.8 47.25c-2.748-8.502-11.88-13-20.12-10.12l-61.13 20.37l33.12 99.38l-60.75 20.13l-33.12-99.38L251.2 98.13c-8.373 2.75-12.87 11.88-9.998 20.12L294.2 277.8zM574.4 309.9c-5.594-16.75-23.67-25.91-40.48-20.23l-202.5 67.51c-17.22-22.01-43.57-36.41-73.54-36.97L165.7 43.75C156.9 17.58 132.5 0 104.9 0H32C14.33 0 0 14.33 0 32s14.33 32 32 32h72.94l92.22 276.7C174.7 358.2 160 385.3 160 416c0 53.02 42.98 96 96 96c52.4 0 94.84-42.03 95.82-94.2l202.3-67.44C570.9 344.8 579.1 326.6 574.4 309.9zM256 448c-17.67 0-32-14.33-32-32c0-17.67 14.33-31.1 32-31.1S288 398.3 288 416C288 433.7 273.7 448 256 448z',
			),
		),
		'label'             => __( 'Dolly', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'dong-sign'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 64C337.7 64 352 78.33 352 96C352 113.7 337.7 128 320 128V384C320 401.7 305.7 416 288 416C275 416 263.9 408.3 258.8 397.2C239.4 409.1 216.5 416 192 416C121.3 416 64 358.7 64 288C64 217.3 121.3 160 192 160C215.3 160 237.2 166.2 256 177.1V128H224C206.3 128 192 113.7 192 96C192 78.33 206.3 64 224 64H256C256 46.33 270.3 32 288 32C305.7 32 320 46.33 320 64V64zM256 288C256 252.7 227.3 224 192 224C156.7 224 128 252.7 128 288C128 323.3 156.7 352 192 352C227.3 352 256 323.3 256 288zM352 448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H352z',
			),
		),
		'label'             => __( 'Dong Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'door-closed'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M560 448H480V50.75C480 22.75 458.5 0 432 0h-288C117.5 0 96 22.75 96 50.75V448H16C7.125 448 0 455.1 0 464v32C0 504.9 7.125 512 16 512h544c8.875 0 16-7.125 16-16v-32C576 455.1 568.9 448 560 448zM384 288c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S401.6 288 384 288z',
			),
		),
		'label'             => __( 'Door Closed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'door-open'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M560 448H512V113.5c0-27.25-21.5-49.5-48-49.5L352 64.01V128h96V512h112c8.875 0 16-7.125 16-15.1v-31.1C576 455.1 568.9 448 560 448zM280.3 1.007l-192 49.75C73.1 54.51 64 67.76 64 82.88V448H16c-8.875 0-16 7.125-16 15.1v31.1C0 504.9 7.125 512 16 512H320V33.13C320 11.63 300.5-4.243 280.3 1.007zM232 288c-13.25 0-24-14.37-24-31.1c0-17.62 10.75-31.1 24-31.1S256 238.4 256 256C256 273.6 245.3 288 232 288z',
			),
		),
		'label'             => __( 'Door Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'dove'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 167.2V139.1c-28.25-36.38-47.13-79.29-54.13-125.2C231.7 .4054 214.8-5.02 206.1 5.481C184.1 30.36 168.4 59.7 157.2 92.07C191.4 130.3 237.2 156.7 288 167.2zM400 63.97c-44.25 0-79.1 35.82-79.1 80.08l.0014 59.44c-104.4-6.251-193-70.46-233-161.7C81.48 29.25 63.76 28.58 58.01 40.83C41.38 75.96 32.01 115.2 32.01 156.6c0 70.76 34.11 136.9 85.11 185.9c13.12 12.75 26.13 23.27 38.88 32.77L12.12 411.2c-10.75 2.75-15.5 15.09-9.5 24.47c17.38 26.88 60.42 72.54 153.2 76.29c8 .25 15.99-2.633 22.12-7.883l65.23-56.12l76.84 .0561c88.38 0 160-71.49 160-159.9l.0013-160.2l31.1-63.99L400 63.97zM400 160.1c-8.75 0-16.01-7.259-16.01-16.01c0-8.876 7.261-16.05 16.01-16.05s15.99 7.136 15.99 16.01C416 152.8 408.8 160.1 400 160.1z',
			),
		),
		'label'             => __( 'Dove', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment' ),
	),
	'down-left-and-up-right-to-center'     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M215.1 272h-136c-12.94 0-24.63 7.797-29.56 19.75C45.47 303.7 48.22 317.5 57.37 326.6l30.06 30.06l-78.06 78.07c-12.5 12.5-12.5 32.75-.0012 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.26 .0013l78.06-78.07l30.06 30.06c6.125 6.125 14.31 9.367 22.63 9.367c4.125 0 8.279-.7891 12.25-2.43c11.97-4.953 19.75-16.62 19.75-29.56V296C239.1 282.7 229.3 272 215.1 272zM296 240h136c12.94 0 24.63-7.797 29.56-19.75c4.969-11.97 2.219-25.72-6.938-34.87l-30.06-30.06l78.06-78.07c12.5-12.5 12.5-32.76 .0002-45.26l-22.62-22.62c-12.5-12.5-32.76-12.5-45.26-.0003l-78.06 78.07l-30.06-30.06c-9.156-9.141-22.87-11.84-34.87-6.937c-11.97 4.953-19.75 16.62-19.75 29.56v135.1C272 229.3 282.7 240 296 240z',
			),
		),
		'label'             => __( 'Down Left And Up Right To Center', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'down-long'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M281.6 392.3l-104 112.1c-9.498 10.24-25.69 10.24-35.19 0l-104-112.1c-6.484-6.992-8.219-17.18-4.404-25.94c3.811-8.758 12.45-14.42 21.1-14.42H128V32c0-17.69 14.33-32 32-32S192 14.31 192 32v319.9h72c9.547 0 18.19 5.66 22 14.42C289.8 375.1 288.1 385.3 281.6 392.3z',
			),
		),
		'label'             => __( 'Down Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'download'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 352h-133.5l-45.25 45.25C289.2 409.3 273.1 416 256 416s-33.16-6.656-45.25-18.75L165.5 352H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96C512 366.3 497.7 352 480 352zM432 456c-13.2 0-24-10.8-24-24c0-13.2 10.8-24 24-24s24 10.8 24 24C456 445.2 445.2 456 432 456zM233.4 374.6C239.6 380.9 247.8 384 256 384s16.38-3.125 22.62-9.375l128-128c12.49-12.5 12.49-32.75 0-45.25c-12.5-12.5-32.76-12.5-45.25 0L288 274.8V32c0-17.67-14.33-32-32-32C238.3 0 224 14.33 224 32v242.8L150.6 201.4c-12.49-12.5-32.75-12.5-45.25 0c-12.49 12.5-12.49 32.75 0 45.25L233.4 374.6z',
			),
		),
		'label'             => __( 'Download', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'draft2digital'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 480,
				'height' => 512,
				'path'   => 'M480 398.1l-144-82.2v64.7h-91.3c30.8-35 81.8-95.9 111.8-149.3 35.2-62.6 16.1-123.4-12.8-153.3-4.4-4.6-62.2-62.9-166-41.2-59.1 12.4-89.4 43.4-104.3 67.3-13.1 20.9-17 39.8-18.2 47.7-5.5 33 19.4 67.1 56.7 67.1 31.7 0 57.3-25.7 57.3-57.4 0-27.1-19.7-52.1-48-56.8 1.8-7.3 17.7-21.1 26.3-24.7 41.1-17.3 78 5.2 83.3 33.5 8.3 44.3-37.1 90.4-69.7 127.6C84.5 328.1 18.3 396.8 0 415.9l336-.1V480zM369.9 371l47.1 27.2-47.1 27.2zM134.2 161.4c0 12.4-10 22.4-22.4 22.4s-22.4-10-22.4-22.4 10-22.4 22.4-22.4 22.4 10.1 22.4 22.4zM82.5 380.5c25.6-27.4 97.7-104.7 150.8-169.9 35.1-43.1 40.3-82.4 28.4-112.7-7.4-18.8-17.5-30.2-24.3-35.7 45.3 2.1 68 23.4 82.2 38.3 0 0 42.4 48.2 5.8 113.3-37 65.9-110.9 147.5-128.5 166.7z',
			),
		),
		'label'             => __( 'Draft2digital', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dragon'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M18.43 255.8L192 224L100.8 292.6C90.67 302.8 97.8 320 112 320h222.7c-9.499-26.5-14.75-54.5-14.75-83.38V194.2L200.3 106.8C176.5 90.88 145 92.75 123.3 111.2l-117.5 116.4C-6.562 238 2.436 258 18.43 255.8zM575.2 289.9l-100.7-50.25c-16.25-8.125-26.5-24.75-26.5-43V160h63.99l28.12 22.62C546.1 188.6 554.2 192 562.7 192h30.1c11.1 0 23.12-6.875 28.5-17.75l14.37-28.62c5.374-10.87 4.25-23.75-2.999-33.5l-74.49-99.37C552.1 4.75 543.5 0 533.5 0H296C288.9 0 285.4 8.625 290.4 13.62L351.1 64L292.4 88.75c-5.874 3-5.874 11.37 0 14.37L351.1 128l-.0011 108.6c0 72 35.99 139.4 95.99 179.4c-195.6 6.75-344.4 41-434.1 60.88c-8.124 1.75-13.87 9-13.87 17.38C.0463 504 8.045 512 17.79 512h499.1c63.24 0 119.6-47.5 122.1-110.8C642.3 354 617.1 310.9 575.2 289.9zM489.1 66.25l45.74 11.38c-2.75 11-12.5 18.88-24.12 18.25C497.7 95.25 484.8 83.38 489.1 66.25z',
			),
		),
		'label'             => __( 'Dragon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'draw-polygon'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384.3 352C419.5 352.2 448 380.7 448 416C448 451.3 419.3 480 384 480C360.3 480 339.6 467.1 328.6 448H119.4C108.4 467.1 87.69 480 64 480C28.65 480 0 451.3 0 416C0 392.3 12.87 371.6 32 360.6V151.4C12.87 140.4 0 119.7 0 96C0 60.65 28.65 32 64 32C87.69 32 108.4 44.87 119.4 64H328.6C339.6 44.87 360.3 32 384 32C419.3 32 448 60.65 448 96C448 131.3 419.5 159.8 384.3 159.1L345.5 227.9C349.7 236.4 352 245.9 352 256C352 266.1 349.7 275.6 345.5 284.1L384.3 352zM96 360.6C105.7 366.2 113.8 374.3 119.4 384H328.6C328.6 383.9 328.7 383.8 328.7 383.7L292.2 319.9C290.8 319.1 289.4 320 288 320C252.7 320 224 291.3 224 256C224 220.7 252.7 192 288 192C289.4 192 290.8 192 292.2 192.1L328.7 128.3L328.6 128H119.4C113.8 137.7 105.7 145.8 96 151.4L96 360.6z',
			),
		),
		'label'             => __( 'Draw Polygon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'dribbble'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 8C119.3 8 8 119.3 8 256s111.3 248 248 248 248-111.3 248-248S392.7 8 256 8zm163.1 114.4c29.5 36.05 47.37 81.96 47.83 131.1-6.984-1.477-77.02-15.68-147.5-6.818-5.752-14.04-11.18-26.39-18.62-41.61 78.32-31.98 113.8-77.48 118.3-83.52zM396.4 97.87c-3.81 5.427-35.7 48.29-111 76.52-34.71-63.78-73.18-116.2-79.04-124 67.18-16.19 137.1 1.27 190.1 47.49zm-230.5-33.25c5.585 7.659 43.44 60.12 78.54 122.5-99.09 26.31-186.4 25.93-195.8 25.81C62.38 147.2 106.7 92.57 165.9 64.62zM44.17 256.3c0-2.166 .043-4.322 .108-6.473 9.268 .19 111.9 1.513 217.7-30.15 6.064 11.87 11.86 23.92 17.17 35.95-76.6 21.58-146.2 83.53-180.5 142.3C64.79 360.4 44.17 310.7 44.17 256.3zm81.81 167.1c22.13-45.23 82.18-103.6 167.6-132.8 29.74 77.28 42.04 142.1 45.19 160.6-68.11 29.01-150 21.05-212.8-27.88zm248.4 8.489c-2.171-12.89-13.45-74.9-41.15-151 66.38-10.63 124.7 6.768 131.9 9.055-9.442 58.94-43.27 109.8-90.79 141.1z',
			),
		),
		'label'             => __( 'Dribbble', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'dribbble-square'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M90.2 228.2c8.9-42.4 37.4-77.7 75.7-95.7 3.6 4.9 28 38.8 50.7 79-64 17-120.3 16.8-126.4 16.7zM314.6 154c-33.6-29.8-79.3-41.1-122.6-30.6 3.8 5.1 28.6 38.9 51 80 48.6-18.3 69.1-45.9 71.6-49.4zM140.1 364c40.5 31.6 93.3 36.7 137.3 18-2-12-10-53.8-29.2-103.6-55.1 18.8-93.8 56.4-108.1 85.6zm98.8-108.2c-3.4-7.8-7.2-15.5-11.1-23.2C159.6 253 93.4 252.2 87.4 252c0 1.4-.1 2.8-.1 4.2 0 35.1 13.3 67.1 35.1 91.4 22.2-37.9 67.1-77.9 116.5-91.8zm34.9 16.3c17.9 49.1 25.1 89.1 26.5 97.4 30.7-20.7 52.5-53.6 58.6-91.6-4.6-1.5-42.3-12.7-85.1-5.8zm-20.3-48.4c4.8 9.8 8.3 17.8 12 26.8 45.5-5.7 90.7 3.4 95.2 4.4-.3-32.3-11.8-61.9-30.9-85.1-2.9 3.9-25.8 33.2-76.3 53.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 176c0-88.2-71.8-160-160-160S64 167.8 64 256s71.8 160 160 160 160-71.8 160-160z',
			),
		),
		'label'             => __( 'Dribbble Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'dropbox'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 528,
				'height' => 512,
				'path'   => 'M264.4 116.3l-132 84.3 132 84.3-132 84.3L0 284.1l132.3-84.3L0 116.3 132.3 32l132.1 84.3zM131.6 395.7l132-84.3 132 84.3-132 84.3-132-84.3zm132.8-111.6l132-84.3-132-83.6L395.7 32 528 116.3l-132.3 84.3L528 284.8l-132.3 84.3-131.3-85z',
			),
		),
		'label'             => __( 'Dropbox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'droplet'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M16 319.1C16 245.9 118.3 89.43 166.9 19.3C179.2 1.585 204.8 1.585 217.1 19.3C265.7 89.43 368 245.9 368 319.1C368 417.2 289.2 496 192 496C94.8 496 16 417.2 16 319.1zM112 319.1C112 311.2 104.8 303.1 96 303.1C87.16 303.1 80 311.2 80 319.1C80 381.9 130.1 432 192 432C200.8 432 208 424.8 208 416C208 407.2 200.8 400 192 400C147.8 400 112 364.2 112 319.1z',
			),
		),
		'label'             => __( 'Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'travel' ),
	),
	'droplet-slash'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M215.3 143.4C243.5 95.07 274.2 49.29 294.9 19.3C307.2 1.585 332.8 1.585 345.1 19.3C393.7 89.43 496 245.9 496 319.1C496 333.7 494.4 347.1 491.5 359.9L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L215.3 143.4zM143.1 319.1C143.1 296.5 154.3 264.6 169.1 229.9L443.5 445.4C411.7 476.7 368.1 496 319.1 496C222.8 496 143.1 417.2 143.1 319.1V319.1zM239.1 319.1C239.1 311.2 232.8 303.1 223.1 303.1C215.2 303.1 207.1 311.2 207.1 319.1C207.1 381.9 258.1 432 319.1 432C328.8 432 336 424.8 336 416C336 407.2 328.8 400 319.1 400C275.8 400 239.1 364.2 239.1 319.1V319.1z',
			),
		),
		'label'             => __( 'Droplet Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'drum'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M431.1 122l70.02-45.91c11.09-7.273 14.19-22.14 6.906-33.25c-7.219-11.07-22.09-14.23-33.22-6.924l-106.4 69.73c-49.81-8.787-97.18-9.669-112.4-9.669c-.002 0 .002 0 0 0C219.5 96 0 100.6 0 208.3v160.1c0 30.27 27.5 57.68 71.1 77.85v-101.9c0-13.27 10.75-24.03 24-24.03s23.1 10.76 23.1 24.03v118.9C153 472.4 191.1 478.3 231.1 480v-103.6c0-13.27 10.75-24.03 24-24.03c.002 0-.002 0 0 0c13.25 0 24 10.76 24 24.03V480c40.93-1.668 78.95-7.615 111.1-16.72v-118.9c0-13.27 10.75-24.03 24-24.03s24 10.76 24 24.03v101.9c44.49-20.17 71.1-47.58 71.1-77.85V208.3C511.1 164.9 476.1 138.4 431.1 122zM255.1 272.5C255.1 272.5 255.1 272.5 255.1 272.5c-114.9 0-207.1-28.97-207.1-64.39s93.12-63.1 207.1-63.1c.002 0-.002 0 0 0c17.5 0 34.47 .7139 50.71 1.966L242.8 187.1c-11.09 7.273-14.19 22.14-6.906 33.25C240.5 228.3 248.2 232.1 256 232.1c4.5 0 9.062-1.265 13.12-3.923l109.3-71.67c51.77 11.65 85.5 30.38 85.5 51.67C463.1 243.6 370.9 272.5 255.1 272.5z',
			),
		),
		'label'             => __( 'Drum', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'drum-steelpan'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 32C129 32 0 89.25 0 160v192c0 70.75 129 128 288 128s288-57.25 288-128V160C576 89.25 447 32 288 32zM205 190.4c-4.5 16.62-14.5 30.5-28.25 40.5C100.2 217.5 48 190.8 48 160c0-30.12 50.12-56.38 124-69.1l25.62 44.25C207.5 151.4 210.1 171.2 205 190.4zM288 240c-21.12 0-41.38-.1-60.88-2.75C235.1 211.1 259.2 192 288 192s52.88 19.12 60.88 45.25C329.4 239 309.1 240 288 240zM352 96c0 35.25-28.75 64-64 64S224 131.2 224 96V83C244.4 81.12 265.8 80 288 80s43.63 1.125 64 3V96zM398.9 230.9c-13.75-9.875-23.88-23.88-28.38-40.5c-5.125-19.13-2.5-39 7.375-56l25.62-44.5C477.8 103.5 528 129.8 528 160C528 190.9 475.6 217.5 398.9 230.9z',
			),
		),
		'label'             => __( 'Drum Steelpan', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'drumstick-bite'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 168.9c0 1.766-.0229 3.398-.0768 5.164c-16.91-9.132-35.51-13.76-53.96-13.76c-82.65 0-105.5 74.17-105.5 105.4c0 27.04 9.923 54.43 29.63 76.25c-19.52 6.629-39.99 9.997-60.62 9.997l-87.18 .0038l-40.59 40.49c-6.104 6.103-8.921 14.01-8.921 22.17c0 13.98 7.244 17.1 7.244 37.03C192.1 485.4 164.6 512 131.7 512c-15.63 0-31.11-6.055-42.72-17.8c-11.55-11.46-16.82-26.31-16.82-41.26c0-4.948 .575-9.903 1.695-14.75c-4.842 1.11-9.793 1.681-14.72 1.681c-42.15 0-59.13-36.64-59.13-59.5c0-33.43 27.15-60.34 60.39-60.34c18.97 0 22.97 7.219 36.96 7.219c8.159 0 16.04-2.811 22.14-8.914l40.57-40.47L160.1 191.1c0-63.1 27.79-107 63.17-142.4c33.13-33.06 76.39-49.59 119.7-49.59s86.79 16.53 119.9 49.59C495.9 82.5 512 125.7 512 168.9z',
			),
		),
		'label'             => __( 'Drumstick Bite', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'drupal'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M303.1 108.1C268.2 72.46 234.2 38.35 224 0c-9.957 38.35-44.25 72.46-80.02 108.1C90.47 161.7 29.72 222.4 29.72 313.4c-2.337 107.3 82.75 196.2 190.1 198.5S415.9 429.2 418.3 321.9q.091-4.231 0-8.464C418.3 222.4 357.5 161.7 303.1 108.1zm-174.3 223a130.3 130.3 0 0 0 -15.21 24.15 4.978 4.978 0 0 1 -3.319 2.766h-1.659c-4.333 0-9.219-8.481-9.219-8.481h0c-1.29-2.028-2.489-4.149-3.687-6.361l-.83-1.752c-11.25-25.72-1.475-62.32-1.475-62.32h0a160.6 160.6 0 0 1 23.23-49.87A290.8 290.8 0 0 1 138.5 201.6l9.219 9.219 43.51 44.43a4.979 4.979 0 0 1 0 6.638L145.8 312.3h0zm96.61 127.3a67.2 67.2 0 0 1 -49.78-111.9c14.2-16.87 31.53-33.46 50.33-55.31 22.31 23.78 36.88 40.1 51.16 57.99a28.41 28.41 0 0 1 2.95 4.425 65.9 65.9 0 0 1 11.98 37.98 66.65 66.65 0 0 1 -66.47 66.84zM352.4 351.6h0a7.743 7.743 0 0 1 -6.176 5.347H344.9a11.25 11.25 0 0 1 -6.269-5.07h0a348.2 348.2 0 0 0 -39.46-48.95L281.4 284.5 222.3 223.2a497.9 497.9 0 0 1 -35.4-36.32 12.03 12.03 0 0 0 -.922-1.382 35.4 35.4 0 0 1 -4.7-9.219V174.5a31.35 31.35 0 0 1 9.218-27.66c11.43-11.43 22.95-22.95 33.83-34.94 11.98 13.27 24.8 26 37.43 38.63h0a530.1 530.1 0 0 1 69.6 79.1 147.5 147.5 0 0 1 27.01 83.8A134.1 134.1 0 0 1 352.4 351.6z',
			),
		),
		'label'             => __( 'Drupal Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'dumbbell'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M104 96h-48C42.75 96 32 106.8 32 120V224C14.33 224 0 238.3 0 256c0 17.67 14.33 32 31.1 32L32 392C32 405.3 42.75 416 56 416h48C117.3 416 128 405.3 128 392v-272C128 106.8 117.3 96 104 96zM456 32h-48C394.8 32 384 42.75 384 56V224H256V56C256 42.75 245.3 32 232 32h-48C170.8 32 160 42.75 160 56v400C160 469.3 170.8 480 184 480h48C245.3 480 256 469.3 256 456V288h128v168c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24V56C480 42.75 469.3 32 456 32zM608 224V120C608 106.8 597.3 96 584 96h-48C522.8 96 512 106.8 512 120v272c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24V288c17.67 0 32-14.33 32-32C640 238.3 625.7 224 608 224z',
			),
		),
		'label'             => __( 'Dumbbell', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'dumpster'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M560 160c10.38 0 17.1-9.75 15.5-19.88l-24-95.1C549.8 37 543.3 32 536 32h-98.88l25.62 128H560zM272 32H171.5L145.9 160H272V32zM404.5 32H304v128h126.1L404.5 32zM16 160h97.25l25.63-128H40C32.75 32 26.25 37 24.5 44.12l-24 95.1C-2.001 150.2 5.625 160 16 160zM560 224h-20L544 192H32l4 32H16C7.25 224 0 231.2 0 240v32C0 280.8 7.25 288 16 288h28L64 448v16C64 472.8 71.25 480 80 480h32C120.8 480 128 472.8 128 464V448h320v16c0 8.75 7.25 16 16 16h32c8.75 0 16-7.25 16-16V448l20-160H560C568.8 288 576 280.8 576 272v-32C576 231.2 568.8 224 560 224z',
			),
		),
		'label'             => __( 'Dumpster', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'dumpster-fire'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M418.8 104.2L404.6 32H304.1L304 159.1h60.77C381.1 140.7 399.1 121.8 418.8 104.2zM272.1 32.12H171.5L145.9 160.1h126.1L272.1 32.12zM461.3 104.2c18.25 16.25 35.51 33.62 51.14 51.49c5.751-5.623 11.38-11.12 17.38-16.37l21.26-18.98l21.25 18.98c1.125 .9997 2.125 2.124 3.126 3.124c-.125-.7498 .2501-1.5 0-2.249l-24-95.97c-1.625-7.123-8.127-12.12-15.38-12.12H437.2l12.25 61.5L461.3 104.2zM16 160.1l97.26-.0223l25.64-127.9h-98.89c-7.251 0-13.75 4.999-15.5 12.12L.5001 140.2C-2.001 150.3 5.626 160.1 16 160.1zM340.6 192.1L32.01 192.1l4.001 31.99L16 224.1C7.252 224.1 0 231.3 0 240.1V272c0 8.748 7.251 15.1 16 15.1l28.01 .0177l20 159.1L64.01 464C64.01 472.8 71.26 480 80.01 480h32.01c8.752 0 16-7.248 16-15.1v-15.1l208.8-.002c-30.13-33.74-48.73-77.85-48.73-126.3C288.1 285.8 307.9 238.8 340.6 192.1zM551.2 163.3c-14.88 13.25-28.38 27.12-40.26 41.12c-19.5-25.74-43.63-51.99-71.01-76.36c-70.14 62.73-120 144.2-120 193.6C319.1 409.1 391.6 480 479.1 480s160-70.87 160-158.3C640.1 285 602.1 209.4 551.2 163.3zM532.6 392.6c-14.75 10.62-32.88 16.1-52.51 16.1c-49.01 0-88.89-33.49-88.89-87.98c0-27.12 16.5-50.99 49.38-91.85c4.751 5.498 67.14 87.98 67.14 87.98l39.76-46.99c2.876 4.874 5.375 9.497 7.75 13.1C573.9 321.5 565.1 368.4 532.6 392.6z',
			),
		),
		'label'             => __( 'Dumpster Fire', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'dungeon'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M336.6 156.5C327.3 148.1 322.6 136.5 327.1 125.3L357.6 49.18C362.7 36.27 377.8 30.36 389.7 37.63C410.9 50.63 430 66.62 446.5 85.02C455.7 95.21 452.9 110.9 441.5 118.5L373.9 163.5C363.6 170.4 349.8 168.1 340.5 159.9C339.2 158.7 337.9 157.6 336.6 156.5H336.6zM297.7 112.6C293.2 123.1 280.9 129.8 268.7 128.6C264.6 128.2 260.3 128 256 128C251.7 128 247.4 128.2 243.3 128.6C231.1 129.8 218.8 123.1 214.3 112.6L183.1 36.82C178.8 24.02 185.5 9.433 198.1 6.374C217.3 2.203 236.4 0 256 0C275.6 0 294.7 2.203 313 6.374C326.5 9.433 333.2 24.02 328 36.82L297.7 112.6zM122.3 37.63C134.2 30.36 149.3 36.27 154.4 49.18L184.9 125.3C189.4 136.5 184.7 148.1 175.4 156.5C174.1 157.6 172.8 158.7 171.5 159.9C162.2 168.1 148.4 170.4 138.1 163.5L70.52 118.5C59.13 110.9 56.32 95.21 65.46 85.02C81.99 66.62 101.1 50.63 122.3 37.63H122.3zM379.5 222.1C376.3 210.7 379.7 198.1 389.5 191.6L458.1 145.8C469.7 138.1 485.6 141.9 491.2 154.7C501.6 178.8 508.4 204.8 510.9 232C512.1 245.2 501.3 255.1 488 255.1H408C394.7 255.1 384.2 245.2 381.8 232.1C381.1 228.7 380.4 225.4 379.5 222.1V222.1zM122.5 191.6C132.3 198.1 135.7 210.7 132.5 222.1C131.6 225.4 130.9 228.7 130.2 232.1C127.8 245.2 117.3 256 104 256H24C10.75 256-.1184 245.2 1.107 232C3.636 204.8 10.43 178.8 20.82 154.7C26.36 141.9 42.26 138.1 53.91 145.8L122.5 191.6zM104 288C117.3 288 128 298.7 128 312V360C128 373.3 117.3 384 104 384H24C10.75 384 0 373.3 0 360V312C0 298.7 10.75 288 24 288H104zM488 288C501.3 288 512 298.7 512 312V360C512 373.3 501.3 384 488 384H408C394.7 384 384 373.3 384 360V312C384 298.7 394.7 288 408 288H488zM104 416C117.3 416 128 426.7 128 440V488C128 501.3 117.3 512 104 512H24C10.75 512 0 501.3 0 488V440C0 426.7 10.75 416 24 416H104zM488 416C501.3 416 512 426.7 512 440V488C512 501.3 501.3 512 488 512H408C394.7 512 384 501.3 384 488V440C384 426.7 394.7 416 408 416H488zM272 464C272 472.8 264.8 480 256 480C247.2 480 240 472.8 240 464V192C240 183.2 247.2 176 256 176C264.8 176 272 183.2 272 192V464zM208 464C208 472.8 200.8 480 192 480C183.2 480 176 472.8 176 464V224C176 215.2 183.2 208 192 208C200.8 208 208 215.2 208 224V464zM336 464C336 472.8 328.8 480 320 480C311.2 480 304 472.8 304 464V224C304 215.2 311.2 208 320 208C328.8 208 336 215.2 336 224V464z',
			),
		),
		'label'             => __( 'Dungeon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'dyalog'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 416,
				'height' => 512,
				'path'   => 'M0 32v119.2h64V96h107.2C284.6 96 352 176.2 352 255.9 352 332 293.4 416 171.2 416H0v64h171.2C331.9 480 416 367.3 416 255.9c0-58.7-22.1-113.4-62.3-154.3C308.9 56 245.7 32 171.2 32H0z',
			),
		),
		'label'             => __( 'Dyalog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'e'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 448c0 17.67-14.33 32-32 32H32c-17.67 0-32-14.33-32-32v-384C0 46.34 14.33 32.01 32 32.01h256c17.67 0 32 14.33 32 32s-14.33 32-32 32H64v128h160c17.67 0 32 14.32 32 31.99s-14.33 32.01-32 32.01H64v128h224C305.7 416 320 430.3 320 448z',
			),
		),
		'label'             => __( 'E', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'ear-deaf'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 319.1C185.8 313.7 177.6 310.6 169.4 310.6S153 313.7 146.8 319.1l-137.4 137.4C3.124 463.6 0 471.8 0 480c0 18.3 14.96 31.1 31.1 31.1c8.188 0 16.38-3.124 22.62-9.371l137.4-137.4c6.247-6.247 9.371-14.44 9.371-22.62S198.3 326.2 192 319.1zM200 240c0-22.06 17.94-40 40-40s40 17.94 40 40c0 13.25 10.75 24 24 24s24-10.75 24-24c0-48.53-39.47-88-88-88S152 191.5 152 240c0 13.25 10.75 24 24 24S200 253.3 200 240zM511.1 31.1c0-8.188-3.124-16.38-9.371-22.62s-14.44-9.372-22.63-9.372s-16.38 3.124-22.62 9.372L416 50.75c-6.248 6.248-9.372 14.44-9.372 22.63c0 8.188 3.123 16.38 9.37 22.62c6.247 6.248 14.44 9.372 22.63 9.372s16.38-3.124 22.63-9.372l41.38-41.38C508.9 48.37 511.1 40.18 511.1 31.1zM415.1 241.6c0-57.78-42.91-177.6-175.1-177.6c-153.6 0-175.2 150.8-175.2 160.4c0 17.32 14.99 31.58 32.75 31.58c16.61 0 29.25-13.07 31.24-29.55c6.711-55.39 54.02-98.45 111.2-98.45c80.45 0 111.2 75.56 111.2 119.6c0 57.94-38.22 98.14-46.37 106.3L288 370.7v13.25c0 31.4-22.71 57.58-52.58 62.98C220.4 449.7 208 463.3 208 478.6c0 17.95 14.72 32.09 32.03 32.09c4.805 0 100.5-14.34 111.2-112.7C412.6 335.8 415.1 263.4 415.1 241.6z',
			),
		),
		'label'             => __( 'Ear Deaf', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'ear-listen'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160.1 320c-17.64 0-32.02 14.37-32.02 31.1s14.38 31.1 32.02 31.1s32.02-14.37 32.02-31.1S177.8 320 160.1 320zM86.66 361.4c-12.51-12.49-32.77-12.49-45.27 0c-12.51 12.5-12.51 32.78 0 45.27l63.96 63.99c12.51 12.49 32.77 12.49 45.27 .002c12.51-12.5 12.51-32.78 0-45.27L86.66 361.4zM32.02 448C14.38 448 0 462.4 0 480S14.38 512 32.02 512c17.64 0 32.02-14.37 32.02-31.1S49.66 448 32.02 448zM287.7 70.31c-110.9-29.38-211.7 47.53-222.8 150.9C62.1 239.9 78.73 255.1 97.57 255.1c16.61 0 29.25-13.07 31.24-29.55c6.934-57.22 57.21-101.3 116.9-98.3c71.71 3.594 117.1 76.82 102.5 146.9c-6.551 29.65-21.4 56.87-43.38 78.87L288 370.7v13.25c0 31.4-22.71 57.58-52.58 62.98C220.4 449.7 208 463.3 208 478.6c0 19.78 17.88 34.94 37.38 31.64c55.92-9.443 99.63-55.28 105.9-112.2c40.11-40.68 62.89-93.95 64.65-150.9C418.4 166.4 365.8 91 287.7 70.31zM240 200c22.06 0 40 17.94 40 40c0 13.25 10.75 24 24 24s24-10.75 24-24c0-48.53-39.47-88-88-88S152 191.5 152 240c0 13.25 10.75 24 24 24S200 253.3 200 240C200 217.9 217.9 200 240 200zM397.8 3.125c-15.91-7.594-35.05-.8438-42.66 15.09c-7.594 15.97-.8281 35.06 15.12 42.66C417.5 83.41 448 134.9 448 192c0 17.69 14.33 32 32 32S512 209.7 512 192C512 110.3 467.2 36.19 397.8 3.125z',
			),
		),
		'label'             => __( 'Ear Listen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'earlybirds'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 480,
				'height' => 512,
				'path'   => 'M313.2 47.5c1.2-13 21.3-14 36.6-8.7 .9 .3 26.2 9.7 19 15.2-27.9-7.4-56.4 18.2-55.6-6.5zm-201 6.9c30.7-8.1 62 20 61.1-7.1-1.3-14.2-23.4-15.3-40.2-9.6-1 .3-28.7 10.5-20.9 16.7zM319.4 160c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm-159.7 0c-8.8 0-16 7.2-16 16s7.2 16 16 16 16-7.2 16-16-7.2-16-16-16zm318.5 163.2c-9.9 24-40.7 11-63.9-1.2-13.5 69.1-58.1 111.4-126.3 124.2 .3 .9-2-.1 24 1 33.6 1.4 63.8-3.1 97.4-8-19.8-13.8-11.4-37.1-9.8-38.1 1.4-.9 14.7 1.7 21.6 11.5 8.6-12.5 28.4-14.8 30.2-13.6 1.6 1.1 6.6 20.9-6.9 34.6 4.7-.9 8.2-1.6 9.8-2.1 2.6-.8 17.7 11.3 3.1 13.3-14.3 2.3-22.6 5.1-47.1 10.8-45.9 10.7-85.9 11.8-117.7 12.8l1 11.6c3.8 18.1-23.4 24.3-27.6 6.2 .8 17.9-27.1 21.8-28.4-1l-.5 5.3c-.7 18.4-28.4 17.9-28.3-.6-7.5 13.5-28.1 6.8-26.4-8.5l1.2-12.4c-36.7 .9-59.7 3.1-61.8 3.1-20.9 0-20.9-31.6 0-31.6 2.4 0 27.7 1.3 63.2 2.8-61.1-15.5-103.7-55-114.9-118.2-25 12.8-57.5 26.8-68.2 .8-10.5-25.4 21.5-42.6 66.8-73.4 .7-6.6 1.6-13.3 2.7-19.8-14.4-19.6-11.6-36.3-16.1-60.4-16.8 2.4-23.2-9.1-23.6-23.1 .3-7.3 2.1-14.9 2.4-15.4 1.1-1.8 10.1-2 12.7-2.6 6-31.7 50.6-33.2 90.9-34.5 19.7-21.8 45.2-41.5 80.9-48.3C203.3 29 215.2 8.5 216.2 8c1.7-.8 21.2 4.3 26.3 23.2 5.2-8.8 18.3-11.4 19.6-10.7 1.1 .6 6.4 15-4.9 25.9 40.3 3.5 72.2 24.7 96 50.7 36.1 1.5 71.8 5.9 77.1 34 2.7 .6 11.6 .8 12.7 2.6 .3 .5 2.1 8.1 2.4 15.4-.5 13.9-6.8 25.4-23.6 23.1-3.2 17.3-2.7 32.9-8.7 47.7 2.4 11.7 4 23.8 4.8 36.4 37 25.4 70.3 42.5 60.3 66.9zM207.4 159.9c.9-44-37.9-42.2-78.6-40.3-21.7 1-38.9 1.9-45.5 13.9-11.4 20.9 5.9 92.9 23.2 101.2 9.8 4.7 73.4 7.9 86.3-7.1 8.2-9.4 15-49.4 14.6-67.7zm52 58.3c-4.3-12.4-6-30.1-15.3-32.7-2-.5-9-.5-11 0-10 2.8-10.8 22.1-17 37.2 15.4 0 19.3 9.7 23.7 9.7 4.3 0 6.3-11.3 19.6-14.2zm135.7-84.7c-6.6-12.1-24.8-12.9-46.5-13.9-40.2-1.9-78.2-3.8-77.3 40.3-.5 18.3 5 58.3 13.2 67.8 13 14.9 76.6 11.8 86.3 7.1 15.8-7.6 36.5-78.9 24.3-101.3z',
			),
		),
		'label'             => __( 'Earlybirds', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'earth-africa'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM177.8 63.19L187.8 80.62C190.5 85.46 192 90.93 192 96.5V137.9C192 141.8 193.6 145.6 196.3 148.3C202.6 154.6 212.8 153.1 218.3 147.1L231.9 130.1C236.6 124.2 244.8 122.4 251.6 125.8L266.8 133.4C270.2 135.1 273.1 136 277.8 136C284.3 136 290.6 133.4 295.2 128.8L299.1 124.9C302 121.1 306.5 121.2 310.1 123.1L339.4 137.7C347.1 141.6 352 149.5 352 158.1C352 168.6 344.9 177.8 334.7 180.3L299.3 189.2C291.9 191 284.2 190.7 276.1 188.3L244.1 177.7C241.7 176.6 238.2 176 234.8 176C227.8 176 220.1 178.3 215.4 182.5L176 212C165.9 219.6 160 231.4 160 244V272C160 298.5 181.5 320 208 320H240C248.8 320 256 327.2 256 336V384C256 401.7 270.3 416 288 416C298.1 416 307.6 411.3 313.6 403.2L339.2 369.1C347.5 357.1 352 344.5 352 330.7V318.6C352 314.7 354.6 311.3 358.4 310.4L363.7 309.1C375.6 306.1 384 295.4 384 283.1C384 275.1 381.2 269.2 376.2 264.2L342.7 230.7C338.1 226.1 338.1 221 342.7 217.3C348.4 211.6 356.8 209.6 364.5 212.2L378.6 216.9C390.9 220.1 404.3 215.4 410.1 203.8C413.6 196.8 421.3 193.1 428.1 194.6L456.4 200.1C431.1 112.4 351.5 48 256 48C228.3 48 201.1 53.4 177.8 63.19L177.8 63.19z',
			),
		),
		'label'             => __( 'Earth Africa', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'earth-americas'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM57.71 192.1L67.07 209.4C75.36 223.9 88.99 234.6 105.1 239.2L162.1 255.7C180.2 260.6 192 276.3 192 294.2V334.1C192 345.1 198.2 355.1 208 359.1C217.8 364.9 224 374.9 224 385.9V424.9C224 440.5 238.9 451.7 253.9 447.4C270.1 442.8 282.5 429.1 286.6 413.7L289.4 402.5C293.6 385.6 304.6 371.1 319.7 362.4L327.8 357.8C342.8 349.3 352 333.4 352 316.1V307.9C352 295.1 346.9 282.9 337.9 273.9L334.1 270.1C325.1 261.1 312.8 255.1 300.1 255.1H256.1C245.9 255.1 234.9 253.1 225.2 247.6L190.7 227.8C186.4 225.4 183.1 221.4 181.6 216.7C178.4 207.1 182.7 196.7 191.7 192.1L197.7 189.2C204.3 185.9 211.9 185.3 218.1 187.7L242.2 195.4C250.3 198.1 259.3 195 264.1 187.9C268.8 180.8 268.3 171.5 262.9 165L249.3 148.8C239.3 136.8 239.4 119.3 249.6 107.5L265.3 89.12C274.1 78.85 275.5 64.16 268.8 52.42L266.4 48.26C262.1 48.09 259.5 48 256 48C163.1 48 84.4 108.9 57.71 192.1L57.71 192.1zM437.6 154.5L412 164.8C396.3 171.1 388.2 188.5 393.5 204.6L410.4 255.3C413.9 265.7 422.4 273.6 433 276.3L462.2 283.5C463.4 274.5 464 265.3 464 256C464 219.2 454.4 184.6 437.6 154.5H437.6z',
			),
		),
		'label'             => __( 'Earth Americas', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'earth-asia'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM51.68 295.1L83.41 301.5C91.27 303.1 99.41 300.6 105.1 294.9L120.5 279.5C132 267.1 151.6 271.1 158.9 285.8L168.2 304.3C172.1 313.9 182.8 319.1 193.5 319.1C208.7 319.1 219.6 305.4 215.2 290.8L209.3 270.9C204.6 255.5 216.2 240 232.3 240H234.6C247.1 240 260.5 233.3 267.9 222.2L278.6 206.1C284.2 197.7 283.9 186.6 277.8 178.4L261.7 156.9C251.4 143.2 258.4 123.4 275.1 119.2L292.1 114.1C299.6 113.1 305.7 107.8 308.6 100.6L324.9 59.69C303.4 52.12 280.2 48 255.1 48C141.1 48 47.1 141.1 47.1 256C47.1 269.4 49.26 282.5 51.68 295.1L51.68 295.1zM450.4 300.4L434.6 304.9C427.9 306.7 420.8 304 417.1 298.2L415.1 295.1C409.1 285.7 398.7 279.1 387.5 279.1C376.4 279.1 365.1 285.7 359.9 295.1L353.8 304.6C352.4 306.8 350.5 308.7 348.2 309.1L311.1 330.1C293.9 340.2 286.5 362.5 294.1 381.4L300.5 393.8C309.1 413 331.2 422.3 350.1 414.9L353.5 413.1C363.6 410.2 374.8 411.8 383.5 418.1L385 419.2C422.2 389.7 449.1 347.8 459.4 299.7C456.4 299.4 453.4 299.6 450.4 300.4H450.4zM156.1 367.5L188.1 375.5C196.7 377.7 205.4 372.5 207.5 363.9C209.7 355.3 204.5 346.6 195.9 344.5L163.9 336.5C155.3 334.3 146.6 339.5 144.5 348.1C142.3 356.7 147.5 365.4 156.1 367.5V367.5zM236.5 328.1C234.3 336.7 239.5 345.4 248.1 347.5C256.7 349.7 265.4 344.5 267.5 335.9L275.5 303.9C277.7 295.3 272.5 286.6 263.9 284.5C255.3 282.3 246.6 287.5 244.5 296.1L236.5 328.1zM321.7 120.8L305.7 152.8C301.7 160.7 304.9 170.4 312.8 174.3C320.7 178.3 330.4 175.1 334.3 167.2L350.3 135.2C354.3 127.3 351.1 117.6 343.2 113.7C335.3 109.7 325.6 112.9 321.7 120.8V120.8z',
			),
		),
		'label'             => __( 'Earth Asia', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'earth-europe'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM266.3 48.25L232.5 73.6C227.2 77.63 224 83.95 224 90.67V99.72C224 106.5 229.5 112 236.3 112C238.7 112 241.1 111.3 243.1 109.9L284.9 82.06C286.9 80.72 289.3 80 291.7 80H292.7C298.9 80 304 85.07 304 91.31C304 94.31 302.8 97.19 300.7 99.31L280.8 119.2C275 124.1 267.9 129.4 260.2 131.9L233.6 140.8C227.9 142.7 224 148.1 224 154.2C224 157.9 222.5 161.5 219.9 164.1L201.9 182.1C195.6 188.4 192 197.1 192 206.1V210.3C192 226.7 205.6 240 221.9 240C232.9 240 243.1 233.8 248 224L252 215.9C254.5 211.1 259.4 208 264.8 208C269.4 208 273.6 210.1 276.3 213.7L292.6 235.5C294.7 238.3 298.1 240 301.7 240C310.1 240 315.6 231.1 311.8 223.6L310.7 221.3C307.1 214.3 310.7 205.8 318.1 203.3L339.3 196.2C346.9 193.7 352 186.6 352 178.6C352 168.3 360.3 160 370.6 160H400C408.8 160 416 167.2 416 176C416 184.8 408.8 192 400 192H379.3C372.1 192 365.1 194.9 360 200L355.3 204.7C353.2 206.8 352 209.7 352 212.7C352 218.9 357.1 224 363.3 224H374.6C380.6 224 386.4 226.4 390.6 230.6L397.2 237.2C398.1 238.1 400 241.4 400 244C400 246.6 398.1 249 397.2 250.8L389.7 258.3C386 261.1 384 266.9 384 272C384 277.1 386 282 389.7 285.7L408 304C418.2 314.2 432.1 320 446.6 320H453.1C460.5 299.8 464 278.3 464 256C464 144.6 376.4 53.64 266.3 48.25V48.25zM438.4 356.1C434.7 353.5 430.2 352 425.4 352C419.4 352 413.6 349.6 409.4 345.4L395.1 331.1C388.3 324.3 377.9 320 367.1 320C357.4 320 347.9 316.5 340.5 310.2L313.1 287.4C302.4 277.5 287.6 271.1 272.3 271.1H251.4C238.7 271.1 226.4 275.7 215.9 282.7L188.5 301C170.7 312.9 160 332.9 160 354.3V357.5C160 374.5 166.7 390.7 178.7 402.7L194.7 418.7C203.2 427.2 214.7 432 226.7 432H248C261.3 432 272 442.7 272 456C272 458.5 272.4 461 273.1 463.3C344.5 457.5 405.6 415.7 438.4 356.1L438.4 356.1zM164.7 100.7L132.7 132.7C126.4 138.9 126.4 149.1 132.7 155.3C138.9 161.6 149.1 161.6 155.3 155.3L187.3 123.3C193.6 117.1 193.6 106.9 187.3 100.7C181.1 94.44 170.9 94.44 164.7 100.7V100.7z',
			),
		),
		'label'             => __( 'Earth Europe', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'earth-oceania'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM215.5 360.6L240.9 377C247.1 381.6 256.2 384 264.6 384C278 384 290.7 377.8 298.1 367.2L311 351.8C316.8 344.4 320 335.2 320 325.8C320 316.4 316.8 307.2 311 299.8L293.1 276.9C288.3 270.7 284.4 263.1 281.6 256.7L271.5 230.8C269.9 226.7 265.9 224 261.5 224C258 224 254.8 225.6 252.8 228.4L242.4 242.6C237.7 248.1 229.7 252.1 221.9 250.5C218.7 249.8 215.8 247.1 213.8 245.4L209.3 239.3C202.1 229.7 190.7 224 178.7 224C166.7 224 155.3 229.7 148.1 239.3L142.8 246.3C141.3 248.4 139.2 250 136.9 251.1L101.6 267.9C81.08 277.7 72.8 302.6 83.37 322.7L86.65 328.9C95.67 346.1 115.7 354.3 134.1 348.4L149.5 343.6C156 341.5 163.1 341.6 169.6 343.8L208.6 357.3C211 358.1 213.4 359.2 215.5 360.6H215.5zM273.8 142.5C264.3 132.1 250.8 128.9 237.6 131.5L199.1 139.2C183.8 142.3 181.5 163.2 195.7 169.5L238.5 188.6C243.7 190.8 249.2 192 254.8 192H284.7C298.9 192 306.1 174.8 296 164.7L273.8 142.5zM264 448H280C288.8 448 296 440.8 296 432C296 423.2 288.8 416 280 416H264C255.2 416 248 423.2 248 432C248 440.8 255.2 448 264 448zM431.2 298.9C428.4 290.6 419.3 286 410.9 288.8C402.6 291.6 398 300.7 400.8 309.1L408.8 333.1C411.6 341.4 420.7 345.1 429.1 343.2C437.4 340.4 441.1 331.3 439.2 322.9L431.2 298.9zM411.3 379.3C417.6 373.1 417.6 362.9 411.3 356.7C405.1 350.4 394.9 350.4 388.7 356.7L356.7 388.7C350.4 394.9 350.4 405.1 356.7 411.3C362.9 417.6 373.1 417.6 379.3 411.3L411.3 379.3z',
			),
		),
		'label'             => __( 'Earth Oceania', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'ebay'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M606 189.5l-54.8 109.9-54.9-109.9h-37.5l10.9 20.6c-11.5-19-35.9-26-63.3-26-31.8 0-67.9 8.7-71.5 43.1h33.7c1.4-13.8 15.7-21.8 35-21.8 26 0 41 9.6 41 33v3.4c-12.7 0-28 .1-41.7 .4-42.4 .9-69.6 10-76.7 34.4 1-5.2 1.5-10.6 1.5-16.2 0-52.1-39.7-76.2-75.4-76.2-21.3 0-43 5.5-58.7 24.2v-80.6h-32.1v169.5c0 10.3-.6 22.9-1.1 33.1h31.5c.7-6.3 1.1-12.9 1.1-19.5 13.6 16.6 35.4 24.9 58.7 24.9 36.9 0 64.9-21.9 73.3-54.2-.5 2.8-.7 5.8-.7 9 0 24.1 21.1 45 60.6 45 26.6 0 45.8-5.7 61.9-25.5 0 6.6 .3 13.3 1.1 20.2h29.8c-.7-8.2-1-17.5-1-26.8v-65.6c0-9.3-1.7-17.2-4.8-23.8l61.5 116.1-28.5 54.1h35.9L640 189.5zM243.7 313.8c-29.6 0-50.2-21.5-50.2-53.8 0-32.4 20.6-53.8 50.2-53.8 29.8 0 50.2 21.4 50.2 53.8 0 32.3-20.4 53.8-50.2 53.8zm200.9-47.3c0 30-17.9 48.4-51.6 48.4-25.1 0-35-13.4-35-25.8 0-19.1 18.1-24.4 47.2-25.3 13.1-.5 27.6-.6 39.4-.6zm-411.9 1.6h128.8v-8.5c0-51.7-33.1-75.4-78.4-75.4-56.8 0-83 30.8-83 77.6 0 42.5 25.3 74 82.5 74 31.4 0 68-11.7 74.4-46.1h-33.1c-12 35.8-87.7 36.7-91.2-21.6zm95-21.4H33.3c6.9-56.6 92.1-54.7 94.4 0z',
			),
		),
		'label'             => __( 'eBay', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'edge'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M481.9 134.5C440.9 54.18 352.3 8 255.9 8 137.1 8 37.51 91.68 13.47 203.7c26-46.49 86.22-79.14 149.5-79.14 79.27 0 121.1 48.93 122.3 50.18 22 23.8 33 50.39 33 83.1 0 10.4-5.31 25.82-15.11 38.57-1.57 2-6.39 4.84-6.39 11 0 5.06 3.29 9.92 9.14 14 27.86 19.37 80.37 16.81 80.51 16.81A115.4 115.4 0 0 0 444.9 322a118.9 118.9 0 0 0 58.95-102.4C504.4 176.1 488.4 147.3 481.9 134.5zM212.8 475.7a154.9 154.9 0 0 1 -46.64-45c-32.94-47.42-34.24-95.6-20.1-136A155.5 155.5 0 0 1 203 215.8c59-45.2 94.84-5.65 99.06-1a80 80 0 0 0 -4.89-10.14c-9.24-15.93-24-36.41-56.56-53.51-33.72-17.69-70.59-18.59-77.64-18.59-38.71 0-77.9 13-107.5 35.69C35.68 183.3 12.77 208.7 8.6 243c-1.08 12.31-2.75 62.8 23 118.3a248 248 0 0 0 248.3 141.6C241.8 496.3 214.1 476.2 212.8 475.7zm250.7-98.33a7.76 7.76 0 0 0 -7.92-.23 181.7 181.7 0 0 1 -20.41 9.12 197.5 197.5 0 0 1 -69.55 12.52c-91.67 0-171.5-63.06-171.5-144A61.12 61.12 0 0 1 200.6 228 168.7 168.7 0 0 0 161.9 278c-14.92 29.37-33 88.13 13.33 151.7 6.51 8.91 23 30 56 47.67 23.57 12.65 49 19.61 71.7 19.61 35.14 0 115.4-33.44 163-108.9A7.75 7.75 0 0 0 463.5 377.3z',
			),
		),
		'label'             => __( 'Edge Browser', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'edge-legacy'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M25.71 228.2l.35-.48c0 .16 0 .32-.07 .48zm460.6 15.51c0-44-7.76-84.46-28.81-122.4C416.5 47.88 343.9 8 258.9 8 119 7.72 40.62 113.2 26.06 227.7c42.42-61.31 117.1-121.4 220.4-125 0 0 109.7 0 99.42 105H170c6.37-37.39 18.55-59 34.34-78.93-75.05 34.9-121.8 96.1-120.8 188.3 .83 71.45 50.13 144.8 120.8 172 83.35 31.84 192.8 7.2 240.1-21.33V363.3C363.6 419.8 173.6 424.2 172.2 295.7H486.3V243.7z',
			),
		),
		'label'             => __( 'Edge Legacy Browser', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'egg'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 16c-106 0-192 182-192 288c0 106 85.1 192 192 192c105.1 0 192-85.1 192-192C384 198 297.1 16 192 16zM160.1 138C128.6 177.1 96 249.8 96 304C96 312.8 88.84 320 80 320S64 312.8 64 304c0-63.56 36.7-143.3 71.22-186c5.562-6.906 15.64-7.969 22.5-2.406C164.6 121.1 165.7 131.2 160.1 138z',
			),
		),
		'label'             => __( 'Egg', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'eject'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M48.01 319.1h351.1c41.62 0 63.49-49.63 35.37-80.38l-175.1-192.1c-19-20.62-51.75-20.62-70.75 0L12.64 239.6C-15.48 270.2 6.393 319.1 48.01 319.1zM399.1 384H48.01c-26.39 0-47.99 21.59-47.99 47.98C.0117 458.4 21.61 480 48.01 480h351.1c26.39 0 47.99-21.6 47.99-47.99C447.1 405.6 426.4 384 399.1 384z',
			),
		),
		'label'             => __( 'Eject', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'elementor'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M.361 256C.361 397 114 511 255 511C397 511 511 397 511 256C511 116 397 2.05 255 2.05C114 2.05 .361 116 .361 256zM192 150V363H149V150H192zM234 150H362V193H234V150zM362 235V278H234V235H362zM234 320H362V363H234V320z',
			),
		),
		'label'             => __( 'Elementor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'elevator'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M79 96h130c5.967 0 11.37-3.402 13.75-8.662c2.385-5.262 1.299-11.39-2.754-15.59l-65-67.34c-5.684-5.881-16.31-5.881-21.99 0l-65 67.34C63.95 75.95 62.87 82.08 65.25 87.34C67.63 92.6 73.03 96 79 96zM357 91.59c5.686 5.881 16.31 5.881 21.99 0l65-67.34c4.053-4.199 5.137-10.32 2.754-15.59C444.4 3.402 438.1 0 433 0h-130c-5.967 0-11.37 3.402-13.75 8.662c-2.385 5.262-1.301 11.39 2.752 15.59L357 91.59zM448 128H64c-35.35 0-64 28.65-64 63.1v255.1C0 483.3 28.65 512 64 512h384c35.35 0 64-28.65 64-63.1V192C512 156.7 483.3 128 448 128zM352 224C378.5 224.1 400 245.5 400 272c0 26.46-21.47 47.9-48 48C325.5 319.9 304 298.5 304 272C304 245.5 325.5 224.1 352 224zM160 224C186.5 224.1 208 245.5 208 272c0 26.46-21.47 47.9-48 48C133.5 319.9 112 298.5 112 272C112 245.5 133.5 224.1 160 224zM240 448h-160v-48C80 373.5 101.5 352 128 352h64c26.51 0 48 21.49 48 48V448zM432 448h-160v-48c0-26.51 21.49-48 48-48h64c26.51 0 48 21.49 48 48V448z',
			),
		),
		'label'             => __( 'Elevator', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'ellipsis'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M120 256C120 286.9 94.93 312 64 312C33.07 312 8 286.9 8 256C8 225.1 33.07 200 64 200C94.93 200 120 225.1 120 256zM280 256C280 286.9 254.9 312 224 312C193.1 312 168 286.9 168 256C168 225.1 193.1 200 224 200C254.9 200 280 225.1 280 256zM328 256C328 225.1 353.1 200 384 200C414.9 200 440 225.1 440 256C440 286.9 414.9 312 384 312C353.1 312 328 286.9 328 256z',
			),
		),
		'label'             => __( 'Ellipsis', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'ellipsis-vertical'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 128,
				'height' => 512,
				'path'   => 'M64 360C94.93 360 120 385.1 120 416C120 446.9 94.93 472 64 472C33.07 472 8 446.9 8 416C8 385.1 33.07 360 64 360zM64 200C94.93 200 120 225.1 120 256C120 286.9 94.93 312 64 312C33.07 312 8 286.9 8 256C8 225.1 33.07 200 64 200zM64 152C33.07 152 8 126.9 8 96C8 65.07 33.07 40 64 40C94.93 40 120 65.07 120 96C120 126.9 94.93 152 64 152z',
			),
		),
		'label'             => __( 'Ellipsis Vertical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'ello'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S384.1 8 248 8zm143.8 285.2C375.3 358.5 315.8 404.8 248 404.8s-127.3-46.29-143.8-111.6c-1.65-7.44 2.48-15.71 9.92-17.36 7.44-1.65 15.71 2.48 17.36 9.92 14.05 52.91 62 90.11 116.6 90.11s102.5-37.2 116.6-90.11c1.65-7.44 9.92-12.4 17.36-9.92 7.44 1.65 12.4 9.92 9.92 17.36z',
			),
		),
		'label'             => __( 'Ello', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ember'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M639.9 254.6c-1.1-10.7-10.7-6.8-10.7-6.8s-15.6 12.1-29.3 10.7c-13.7-1.3-9.4-32-9.4-32s3-28.1-5.1-30.4c-8.1-2.4-18 7.3-18 7.3s-12.4 13.7-18.3 31.2l-1.6 .5s1.9-30.6-.3-37.6c-1.6-3.5-16.4-3.2-18.8 3s-14.2 49.2-15 67.2c0 0-23.1 19.6-43.3 22.8s-25-9.4-25-9.4 54.8-15.3 52.9-59.1-44.2-27.6-49-24c-4.6 3.5-29.4 18.4-36.6 59.7-.2 1.4-.7 7.5-.7 7.5s-21.2 14.2-33 18c0 0 33-55.6-7.3-80.9-11.4-6.8-21.3-.5-27.2 5.3 13.6-17.3 46.4-64.2 36.9-105.2-5.8-24.4-18-27.1-29.2-23.1-17 6.7-23.5 16.7-23.5 16.7s-22 32-27.1 79.5-12.6 105.1-12.6 105.1-10.5 10.2-20.2 10.7-5.4-28.7-5.4-28.7 7.5-44.6 7-52.1-1.1-11.6-9.9-14.2c-8.9-2.7-18.5 8.6-18.5 8.6s-25.5 38.7-27.7 44.6l-1.3 2.4-1.3-1.6s18-52.7 .8-53.5-28.5 18.8-28.5 18.8-19.6 32.8-20.4 36.5l-1.3-1.6s8.1-38.2 6.4-47.6c-1.6-9.4-10.5-7.5-10.5-7.5s-11.3-1.3-14.2 5.9-13.7 55.3-15 70.7c0 0-28.2 20.2-46.8 20.4-18.5 .3-16.7-11.8-16.7-11.8s68-23.3 49.4-69.2c-8.3-11.8-18-15.5-31.7-15.3-13.7 .3-30.3 8.6-41.3 33.3-5.3 11.8-6.8 23-7.8 31.5 0 0-12.3 2.4-18.8-2.9s-10 0-10 0-11.2 14-.1 18.3 28.1 6.1 28.1 6.1c1.6 7.5 6.2 19.5 19.6 29.7 20.2 15.3 58.8-1.3 58.8-1.3l15.9-8.8s.5 14.6 12.1 16.7 16.4 1 36.5-47.9c11.8-25 12.6-23.6 12.6-23.6l1.3-.3s-9.1 46.8-5.6 59.7C187.7 319.4 203 318 203 318s8.3 2.4 15-21.2 19.6-49.9 19.6-49.9h1.6s-5.6 48.1 3 63.7 30.9 5.3 30.9 5.3 15.6-7.8 18-10.2c0 0 18.5 15.8 44.6 12.9 58.3-11.5 79.1-25.9 79.1-25.9s10 24.4 41.1 26.7c35.5 2.7 54.8-18.6 54.8-18.6s-.3 13.5 12.1 18.6 20.7-22.8 20.7-22.8l20.7-57.2h1.9s1.1 37.3 21.5 43.2 47-13.7 47-13.7 6.4-3.5 5.3-14.3zm-578 5.3c.8-32 21.8-45.9 29-39 7.3 7 4.6 22-9.1 31.4-13.7 9.5-19.9 7.6-19.9 7.6zm272.8-123.8s19.1-49.7 23.6-25.5-40 96.2-40 96.2c.5-16.2 16.4-70.7 16.4-70.7zm22.8 138.4c-12.6 33-43.3 19.6-43.3 19.6s-3.5-11.8 6.4-44.9 33.3-20.2 33.3-20.2 16.2 12.4 3.6 45.5zm84.6-14.6s-3-10.5 8.1-30.6c11-20.2 19.6-9.1 19.6-9.1s9.4 10.2-1.3 25.5-26.4 14.2-26.4 14.2z',
			),
		),
		'label'             => __( 'Ember', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'empire'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M287.6 54.2c-10.8-2.2-22.1-3.3-33.5-3.6V32.4c78.1 2.2 146.1 44 184.6 106.6l-15.8 9.1c-6.1-9.7-12.7-18.8-20.2-27.1l-18 15.5c-26-29.6-61.4-50.7-101.9-58.4l4.8-23.9zM53.4 322.4l23-7.7c-6.4-18.3-10-38.2-10-58.7s3.3-40.4 9.7-58.7l-22.7-7.7c3.6-10.8 8.3-21.3 13.6-31l-15.8-9.1C34 181 24.1 217.5 24.1 256s10 75 27.1 106.6l15.8-9.1c-5.3-10-9.7-20.3-13.6-31.1zM213.1 434c-40.4-8-75.8-29.1-101.9-58.7l-18 15.8c-7.5-8.6-14.4-17.7-20.2-27.4l-16 9.4c38.5 62.3 106.8 104.3 184.9 106.6v-18.3c-11.3-.3-22.7-1.7-33.5-3.6l4.7-23.8zM93.3 120.9l18 15.5c26-29.6 61.4-50.7 101.9-58.4l-4.7-23.8c10.8-2.2 22.1-3.3 33.5-3.6V32.4C163.9 34.6 95.9 76.4 57.4 139l15.8 9.1c6-9.7 12.6-18.9 20.1-27.2zm309.4 270.2l-18-15.8c-26 29.6-61.4 50.7-101.9 58.7l4.7 23.8c-10.8 1.9-22.1 3.3-33.5 3.6v18.3c78.1-2.2 146.4-44.3 184.9-106.6l-16.1-9.4c-5.7 9.7-12.6 18.8-20.1 27.4zM496 256c0 137-111 248-248 248S0 393 0 256 111 8 248 8s248 111 248 248zm-12.2 0c0-130.1-105.7-235.8-235.8-235.8S12.2 125.9 12.2 256 117.9 491.8 248 491.8 483.8 386.1 483.8 256zm-39-106.6l-15.8 9.1c5.3 9.7 10 20.2 13.6 31l-22.7 7.7c6.4 18.3 9.7 38.2 9.7 58.7s-3.6 40.4-10 58.7l23 7.7c-3.9 10.8-8.3 21-13.6 31l15.8 9.1C462 331 471.9 294.5 471.9 256s-9.9-75-27.1-106.6zm-183 177.7c16.3-3.3 30.4-11.6 40.7-23.5l51.2 44.8c11.9-13.6 21.3-29.3 27.1-46.8l-64.2-22.1c2.5-7.5 3.9-15.2 3.9-23.5s-1.4-16.1-3.9-23.5l64.5-22.1c-6.1-17.4-15.5-33.2-27.4-46.8l-51.2 44.8c-10.2-11.9-24.4-20.5-40.7-23.8l13.3-66.4c-8.6-1.9-17.7-2.8-27.1-2.8-9.4 0-18.5 .8-27.1 2.8l13.3 66.4c-16.3 3.3-30.4 11.9-40.7 23.8l-51.2-44.8c-11.9 13.6-21.3 29.3-27.4 46.8l64.5 22.1c-2.5 7.5-3.9 15.2-3.9 23.5s1.4 16.1 3.9 23.5l-64.2 22.1c5.8 17.4 15.2 33.2 27.1 46.8l51.2-44.8c10.2 11.9 24.4 20.2 40.7 23.5l-13.3 66.7c8.6 1.7 17.7 2.8 27.1 2.8 9.4 0 18.5-1.1 27.1-2.8l-13.3-66.7z',
			),
		),
		'label'             => __( 'Galactic Empire', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'envelope'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 64C490.5 64 512 85.49 512 112C512 127.1 504.9 141.3 492.8 150.4L275.2 313.6C263.8 322.1 248.2 322.1 236.8 313.6L19.2 150.4C7.113 141.3 0 127.1 0 112C0 85.49 21.49 64 48 64H464zM217.6 339.2C240.4 356.3 271.6 356.3 294.4 339.2L512 176V384C512 419.3 483.3 448 448 448H64C28.65 448 0 419.3 0 384V176L217.6 339.2z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 128C0 92.65 28.65 64 64 64H448C483.3 64 512 92.65 512 128V384C512 419.3 483.3 448 448 448H64C28.65 448 0 419.3 0 384V128zM48 128V150.1L220.5 291.7C241.1 308.7 270.9 308.7 291.5 291.7L464 150.1V127.1C464 119.2 456.8 111.1 448 111.1H64C55.16 111.1 48 119.2 48 127.1L48 128zM48 212.2V384C48 392.8 55.16 400 64 400H448C456.8 400 464 392.8 464 384V212.2L322 328.8C283.6 360.3 228.4 360.3 189.1 328.8L48 212.2z',
			),
		),
		'label'             => __( 'Envelope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'social' ),
	),
	'envelope-circle-check'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M464 64C490.5 64 512 85.49 512 112C512 127.1 504.9 141.3 492.8 150.4L478.9 160.8C412.3 167.2 356.5 210.8 332.6 270.6L275.2 313.6C263.8 322.1 248.2 322.1 236.8 313.6L19.2 150.4C7.113 141.3 0 127.1 0 112C0 85.49 21.49 64 48 64H464zM294.4 339.2L320.8 319.4C320.3 324.9 320 330.4 320 336C320 378.5 335.1 417.6 360.2 448H64C28.65 448 0 419.3 0 384V176L217.6 339.2C240.4 356.3 271.6 356.3 294.4 339.2zM640 336C640 415.5 575.5 480 496 480C416.5 480 352 415.5 352 336C352 256.5 416.5 192 496 192C575.5 192 640 256.5 640 336zM540.7 292.7L480 353.4L451.3 324.7C445.1 318.4 434.9 318.4 428.7 324.7C422.4 330.9 422.4 341.1 428.7 347.3L468.7 387.3C474.9 393.6 485.1 393.6 491.3 387.3L563.3 315.3C569.6 309.1 569.6 298.9 563.3 292.7C557.1 286.4 546.9 286.4 540.7 292.7H540.7z',
			),
		),
		'label'             => __( 'Envelope Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'envelope-open'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M493.6 163c-24.88-19.62-45.5-35.37-164.3-121.6C312.7 29.21 279.7 0 256.4 0H255.6C232.3 0 199.3 29.21 182.6 41.38c-118.8 86.25-139.4 101.1-164.3 121.6C6.75 172 0 186 0 200.8v263.2C0 490.5 21.49 512 48 512h416c26.51 0 48-21.49 48-47.1V200.8C512 186 505.3 172 493.6 163zM303.2 367.5C289.1 378.5 272.5 384 256 384s-33.06-5.484-47.16-16.47L64 254.9V208.5c21.16-16.59 46.48-35.66 156.4-115.5c3.18-2.328 6.891-5.187 10.98-8.353C236.9 80.44 247.8 71.97 256 66.84c8.207 5.131 19.14 13.6 24.61 17.84c4.09 3.166 7.801 6.027 11.15 8.478C400.9 172.5 426.6 191.7 448 208.5v46.32L303.2 367.5z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M493.6 163c-24.88-19.62-45.5-35.37-164.3-121.6C312.7 29.21 279.7 0 256.4 0H255.6C232.3 0 199.3 29.21 182.6 41.38C63.88 127.6 43.25 143.4 18.38 163C6.75 172 0 186 0 200.8v247.2C0 483.3 28.65 512 64 512h384c35.35 0 64-28.67 64-64.01V200.8C512 186 505.3 172 493.6 163zM464 448c0 8.822-7.178 16-16 16H64c-8.822 0-16-7.178-16-16V276.7l136.1 113.4C204.3 406.8 229.8 416 256 416s51.75-9.211 71.97-26.01L464 276.7V448zM464 214.2l-166.8 138.1c-23.19 19.28-59.34 19.27-82.47 .0156L48 214.2l.1055-13.48c23.24-18.33 42.25-32.97 162.9-120.6c3.082-2.254 6.674-5.027 10.63-8.094C229.4 65.99 246.7 52.59 256 48.62c9.312 3.973 26.62 17.37 34.41 23.41c3.959 3.066 7.553 5.84 10.76 8.186C421.6 167.7 440.7 182.4 464 200.8V214.2z',
			),
		),
		'label'             => __( 'Envelope Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'envelope-open-text'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 417.1c-16.38 0-32.88-4.1-46.88-15.12L0 250.9v213.1C0 490.5 21.5 512 48 512h416c26.5 0 48-21.5 48-47.1V250.9l-209.1 151.1C288.9 412 272.4 417.1 256 417.1zM493.6 163C484.8 156 476.4 149.5 464 140.1v-44.12c0-26.5-21.5-48-48-48l-77.5 .0016c-3.125-2.25-5.875-4.25-9.125-6.5C312.6 29.13 279.3-.3732 256 .0018C232.8-.3732 199.4 29.13 182.6 41.5c-3.25 2.25-6 4.25-9.125 6.5L96 48c-26.5 0-48 21.5-48 48v44.12C35.63 149.5 27.25 156 18.38 163C6.75 172 0 186 0 200.8v10.62l96 69.37V96h320v184.7l96-69.37V200.8C512 186 505.3 172 493.6 163zM176 255.1h160c8.836 0 16-7.164 16-15.1c0-8.838-7.164-16-16-16h-160c-8.836 0-16 7.162-16 16C160 248.8 167.2 255.1 176 255.1zM176 191.1h160c8.836 0 16-7.164 16-16c0-8.838-7.164-15.1-16-15.1h-160c-8.836 0-16 7.162-16 15.1C160 184.8 167.2 191.1 176 191.1z',
			),
		),
		'label'             => __( 'Envelope Open Text', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'envelopes-bulk'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M191.9 448.6c-9.766 0-19.48-2.969-27.78-8.891L32 340.2V480c0 17.62 14.38 32 32 32h256c17.62 0 32-14.38 32-32v-139.8L220.2 439.5C211.7 445.6 201.8 448.6 191.9 448.6zM192 192c0-35.25 28.75-64 64-64h224V32c0-17.62-14.38-32-32-32H128C110.4 0 96 14.38 96 32v192h96V192zM320 256H64C46.38 256 32 270.4 32 288v12.18l151 113.8c5.25 3.719 12.7 3.734 18.27-.25L352 300.2V288C352 270.4 337.6 256 320 256zM576 160H256C238.4 160 224 174.4 224 192v32h96c33.25 0 60.63 25.38 63.75 57.88L384 416h192c17.62 0 32-14.38 32-32V192C608 174.4 593.6 160 576 160zM544 288h-64V224h64V288z',
			),
		),
		'label'             => __( 'Envelopes Bulk', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'envira'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32c477.6 0 366.6 317.3 367.1 366.3L448 480h-26l-70.4-71.2c-39 4.2-124.4 34.5-214.4-37C47 300.3 52 214.7 0 32zm79.7 46c-49.7-23.5-5.2 9.2-5.2 9.2 45.2 31.2 66 73.7 90.2 119.9 31.5 60.2 79 139.7 144.2 167.7 65 28 34.2 12.5 6-8.5-28.2-21.2-68.2-87-91-130.2-31.7-60-61-118.6-144.2-158.1z',
			),
		),
		'label'             => __( 'Envira Gallery', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'equals'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M48 192h352c17.69 0 32-14.32 32-32s-14.31-31.1-32-31.1h-352c-17.69 0-32 14.31-32 31.1S30.31 192 48 192zM400 320h-352c-17.69 0-32 14.31-32 31.1s14.31 32 32 32h352c17.69 0 32-14.32 32-32S417.7 320 400 320z',
			),
		),
		'label'             => __( 'Equals', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'eraser'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 416C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H150.6C133.7 480 117.4 473.3 105.4 461.3L25.37 381.3C.3786 356.3 .3786 315.7 25.37 290.7L258.7 57.37C283.7 32.38 324.3 32.38 349.3 57.37L486.6 194.7C511.6 219.7 511.6 260.3 486.6 285.3L355.9 416H480zM265.4 416L332.7 348.7L195.3 211.3L70.63 336L150.6 416L265.4 416z',
			),
		),
		'label'             => __( 'Eraser', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'erlang'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M87.2 53.5H0v405h100.4c-49.7-52.6-78.8-125.3-78.7-212.1-.1-76.7 24-142.7 65.5-192.9zm238.2 9.7c-45.9 .1-85.1 33.5-89.2 83.2h169.9c-1.1-49.7-34.5-83.1-80.7-83.2zm230.7-9.6h.3l-.1-.1zm.3 0c31.4 42.7 48.7 97.5 46.2 162.7 .5 6 .5 11.7 0 24.1H230.2c-.2 109.7 38.9 194.9 138.6 195.3 68.5-.3 118-51 151.9-106.1l96.4 48.2c-17.4 30.9-36.5 57.8-57.9 80.8H640v-405z',
			),
		),
		'label'             => __( 'Erlang', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ethereum'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M311.9 260.8L160 353.6 8 260.8 160 0l151.9 260.8zM160 383.4L8 290.6 160 512l152-221.4-152 92.8z',
			),
		),
		'label'             => __( 'Ethereum', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'ethernet'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 208v224c0 8.75-7.25 16-16 16H416v-128h-32v128h-64v-128h-32v128H224v-128H192v128H128v-128H96v128H16C7.25 448 0 440.8 0 432v-224C0 199.2 7.25 192 16 192H64V144C64 135.2 71.25 128 80 128H128V80C128 71.25 135.2 64 144 64h224C376.8 64 384 71.25 384 80V128h48C440.8 128 448 135.2 448 144V192h48C504.8 192 512 199.2 512 208z',
			),
		),
		'label'             => __( 'Ethernet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'etsy'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 348c-1.75 10.75-13.75 110-15.5 132-117.9-4.299-219.9-4.743-368.5 0v-25.5c45.46-8.948 60.63-8.019 61-35.25 1.793-72.32 3.524-244.1 0-322-1.029-28.46-12.13-26.76-61-36v-25.5c73.89 2.358 255.9 8.551 362.1-3.75-3.5 38.25-7.75 126.5-7.75 126.5H332C320.9 115.7 313.2 68 277.3 68h-137c-10.25 0-10.75 3.5-10.75 9.75V241.5c58 .5 88.5-2.5 88.5-2.5 29.77-.951 27.56-8.502 40.75-65.25h25.75c-4.407 101.4-3.91 61.83-1.75 160.3H257c-9.155-40.09-9.065-61.04-39.5-61.5 0 0-21.5-2-88-2v139c0 26 14.25 38.25 44.25 38.25H263c63.64 0 66.56-24.1 98.75-99.75H384z',
			),
		),
		'label'             => __( 'Etsy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'euro-sign'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M64 240C46.33 240 32 225.7 32 208C32 190.3 46.33 176 64 176H92.29C121.9 92.11 201.1 32 296 32H320C337.7 32 352 46.33 352 64C352 81.67 337.7 96 320 96H296C238.1 96 187.8 128.4 162.1 176H288C305.7 176 320 190.3 320 208C320 225.7 305.7 240 288 240H144.2C144.1 242.6 144 245.3 144 248V264C144 266.7 144.1 269.4 144.2 272H288C305.7 272 320 286.3 320 304C320 321.7 305.7 336 288 336H162.1C187.8 383.6 238.1 416 296 416H320C337.7 416 352 430.3 352 448C352 465.7 337.7 480 320 480H296C201.1 480 121.9 419.9 92.29 336H64C46.33 336 32 321.7 32 304C32 286.3 46.33 272 64 272H80.15C80.05 269.3 80 266.7 80 264V248C80 245.3 80.05 242.7 80.15 240H64z',
			),
		),
		'label'             => __( 'Euro Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'evernote'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M120.8 132.2c1.6 22.31-17.55 21.59-21.61 21.59-68.93 0-73.64-1-83.58 3.34-.56 .22-.74 0-.37-.37L123.8 46.45c.38-.37 .6-.22 .38 .37-4.35 9.99-3.35 15.09-3.35 85.39zm79 308c-14.68-37.08 13-76.93 52.52-76.62 17.49 0 22.6 23.21 7.95 31.42-6.19 3.3-24.95 1.74-25.14 19.2-.05 17.09 19.67 25 31.2 24.89A45.64 45.64 0 0 0 312 393.5v-.08c0-11.63-7.79-47.22-47.54-55.34-7.72-1.54-65-6.35-68.35-50.52-3.74 16.93-17.4 63.49-43.11 69.09-8.74 1.94-69.68 7.64-112.9-36.77 0 0-18.57-15.23-28.23-57.95-3.38-15.75-9.28-39.7-11.14-62 0-18 11.14-30.45 25.07-32.2 81 0 90 2.32 101-7.8 9.82-9.24 7.8-15.5 7.8-102.8 1-8.3 7.79-30.81 53.41-24.14 6 .86 31.91 4.18 37.48 30.64l64.26 11.15c20.43 3.71 70.94 7 80.6 57.94 22.66 121.1 8.91 238.5 7.8 238.5C362.1 485.5 267.1 480 267.1 480c-18.95-.23-54.25-9.4-67.27-39.83zm80.94-204.8c-1 1.92-2.2 6 .85 7 14.09 4.93 39.75 6.84 45.88 5.53 3.11-.25 3.05-4.43 2.48-6.65-3.53-21.85-40.83-26.5-49.24-5.92z',
			),
		),
		'label'             => __( 'Evernote', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'exclamation'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 128,
				'height' => 512,
				'path'   => 'M64 352c17.69 0 32-14.32 32-31.1V64.01c0-17.67-14.31-32.01-32-32.01S32 46.34 32 64.01v255.1C32 337.7 46.31 352 64 352zM64 400c-22.09 0-40 17.91-40 40s17.91 39.1 40 39.1s40-17.9 40-39.1S86.09 400 64 400z',
			),
		),
		'label'             => __( 'Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'expand'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M128 32H32C14.31 32 0 46.31 0 64v96c0 17.69 14.31 32 32 32s32-14.31 32-32V96h64c17.69 0 32-14.31 32-32S145.7 32 128 32zM416 32h-96c-17.69 0-32 14.31-32 32s14.31 32 32 32h64v64c0 17.69 14.31 32 32 32s32-14.31 32-32V64C448 46.31 433.7 32 416 32zM128 416H64v-64c0-17.69-14.31-32-32-32s-32 14.31-32 32v96c0 17.69 14.31 32 32 32h96c17.69 0 32-14.31 32-32S145.7 416 128 416zM416 320c-17.69 0-32 14.31-32 32v64h-64c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c17.69 0 32-14.31 32-32v-96C448 334.3 433.7 320 416 320z',
			),
		),
		'label'             => __( 'Expand', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'expeditedssl'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 43.4C130.6 43.4 35.4 138.6 35.4 256S130.6 468.6 248 468.6 460.6 373.4 460.6 256 365.4 43.4 248 43.4zm-97.4 132.9c0-53.7 43.7-97.4 97.4-97.4s97.4 43.7 97.4 97.4v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6c0-82.1-124-82.1-124 0v26.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-26.6zM389.7 380c0 9.7-8 17.7-17.7 17.7H124c-9.7 0-17.7-8-17.7-17.7V238.3c0-9.7 8-17.7 17.7-17.7h248c9.7 0 17.7 8 17.7 17.7V380zm-248-137.3v132.9c0 2.5-1.9 4.4-4.4 4.4h-8.9c-2.5 0-4.4-1.9-4.4-4.4V242.7c0-2.5 1.9-4.4 4.4-4.4h8.9c2.5 0 4.4 1.9 4.4 4.4zm141.7 48.7c0 13-7.2 24.4-17.7 30.4v31.6c0 5-3.9 8.9-8.9 8.9h-17.7c-5 0-8.9-3.9-8.9-8.9v-31.6c-10.5-6.1-17.7-17.4-17.7-30.4 0-19.7 15.8-35.4 35.4-35.4s35.5 15.8 35.5 35.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 478.3C121 486.3 17.7 383 17.7 256S121 25.7 248 25.7 478.3 129 478.3 256 375 486.3 248 486.3z',
			),
		),
		'label'             => __( 'ExpeditedSSL', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'explosion'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M499.6 11.32C506.3 .5948 520.1-3.127 531.3 2.814C542.4 8.754 547.1 22.32 541.9 33.84L404.8 338.6C406.9 340.9 409 343.3 411.1 345.7L508.2 291.1C518.7 285.2 531.9 287.9 539.1 297.5C546.4 307 545.4 320.5 536.1 328.1L449.9 415.1H378.5C365.4 378.7 329.8 351.1 288 351.1C246.2 351.1 210.6 378.7 197.5 415.1H117.8L42.34 363.7C32.59 356.1 29.23 344.1 34.43 333.5C39.64 322.8 51.84 317.6 63.16 321.1L160.4 351.5C163.3 347.6 166.5 343.8 169.7 340.2L107.4 236.3C101.4 226.3 103.5 213.3 112.5 205.7C121.5 198.1 134.7 198.1 143.6 205.8L246 293.6C247.5 293.2 249 292.8 250.5 292.4L264.1 149.7C265.3 137.4 275.6 127.1 288 127.1C300.4 127.1 310.7 137.4 311.9 149.7L325.4 291.6L499.6 11.32zM544 447.1C561.7 447.1 576 462.3 576 479.1C576 497.7 561.7 511.1 544 511.1H32C14.33 511.1 0 497.7 0 479.1C0 462.3 14.33 447.1 32 447.1H544zM288-.0046C301.3-.0046 312 10.74 312 23.1V71.1C312 85.25 301.3 95.1 288 95.1C274.7 95.1 264 85.25 264 71.1V23.1C264 10.74 274.7-.0046 288-.0046V-.0046z',
			),
		),
		'label'             => __( 'Explosion', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'eye'                                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M279.6 160.4C282.4 160.1 285.2 160 288 160C341 160 384 202.1 384 256C384 309 341 352 288 352C234.1 352 192 309 192 256C192 253.2 192.1 250.4 192.4 247.6C201.7 252.1 212.5 256 224 256C259.3 256 288 227.3 288 192C288 180.5 284.1 169.7 279.6 160.4zM480.6 112.6C527.4 156 558.7 207.1 573.5 243.7C576.8 251.6 576.8 260.4 573.5 268.3C558.7 304 527.4 355.1 480.6 399.4C433.5 443.2 368.8 480 288 480C207.2 480 142.5 443.2 95.42 399.4C48.62 355.1 17.34 304 2.461 268.3C-.8205 260.4-.8205 251.6 2.461 243.7C17.34 207.1 48.62 156 95.42 112.6C142.5 68.84 207.2 32 288 32C368.8 32 433.5 68.84 480.6 112.6V112.6zM288 112C208.5 112 144 176.5 144 256C144 335.5 208.5 400 288 400C367.5 400 432 335.5 432 256C432 176.5 367.5 112 288 112z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M160 256C160 185.3 217.3 128 288 128C358.7 128 416 185.3 416 256C416 326.7 358.7 384 288 384C217.3 384 160 326.7 160 256zM288 336C332.2 336 368 300.2 368 256C368 211.8 332.2 176 288 176C287.3 176 286.7 176 285.1 176C287.3 181.1 288 186.5 288 192C288 227.3 259.3 256 224 256C218.5 256 213.1 255.3 208 253.1C208 254.7 208 255.3 208 255.1C208 300.2 243.8 336 288 336L288 336zM95.42 112.6C142.5 68.84 207.2 32 288 32C368.8 32 433.5 68.84 480.6 112.6C527.4 156 558.7 207.1 573.5 243.7C576.8 251.6 576.8 260.4 573.5 268.3C558.7 304 527.4 355.1 480.6 399.4C433.5 443.2 368.8 480 288 480C207.2 480 142.5 443.2 95.42 399.4C48.62 355.1 17.34 304 2.461 268.3C-.8205 260.4-.8205 251.6 2.461 243.7C17.34 207.1 48.62 156 95.42 112.6V112.6zM288 80C222.8 80 169.2 109.6 128.1 147.7C89.6 183.5 63.02 225.1 49.44 256C63.02 286 89.6 328.5 128.1 364.3C169.2 402.4 222.8 432 288 432C353.2 432 406.8 402.4 447.9 364.3C486.4 328.5 512.1 286 526.6 256C512.1 225.1 486.4 183.5 447.9 147.7C406.8 109.6 353.2 80 288 80V80z',
			),
		),
		'label'             => __( 'Eye', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology', 'travel' ),
	),
	'eye-dropper'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M482.8 29.23C521.7 68.21 521.7 131.4 482.8 170.4L381.2 271.9L390.6 281.4C403.1 293.9 403.1 314.1 390.6 326.6C378.1 339.1 357.9 339.1 345.4 326.6L185.4 166.6C172.9 154.1 172.9 133.9 185.4 121.4C197.9 108.9 218.1 108.9 230.6 121.4L240.1 130.8L341.6 29.23C380.6-9.744 443.8-9.744 482.8 29.23L482.8 29.23zM55.43 323.3L176.1 202.6L221.4 247.9L100.7 368.6C97.69 371.6 96 375.6 96 379.9V416H132.1C136.4 416 140.4 414.3 143.4 411.3L264.1 290.6L309.4 335.9L188.7 456.6C173.7 471.6 153.3 480 132.1 480H89.69L49.75 506.6C37.06 515.1 20.16 513.4 9.373 502.6C-1.413 491.8-3.086 474.9 5.375 462.2L32 422.3V379.9C32 358.7 40.43 338.3 55.43 323.3L55.43 323.3z',
			),
		),
		'label'             => __( 'Eye Dropper', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'eye-low-vision'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L150.7 92.77zM223.1 149.5L313.4 220.3C317.6 211.8 320 202.2 320 191.1C320 180.5 316.1 169.7 311.6 160.4C314.4 160.1 317.2 159.1 320 159.1C373 159.1 416 202.1 416 255.1C416 269.7 413.1 282.7 407.1 294.5L446.6 324.7C457.7 304.3 464 280.9 464 255.1C464 176.5 399.5 111.1 320 111.1C282.7 111.1 248.6 126.2 223.1 149.5zM393.6 469.4L54.65 203.7C62.6 190.1 72.08 175.8 83.09 161.5L446.2 447.5C429.8 456.4 412.3 463.8 393.6 469.4V469.4zM34.46 268.3C31.74 261.8 31.27 254.5 33.08 247.8L329.2 479.8C326.1 479.9 323.1 480 320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3H34.46z',
			),
		),
		'label'             => __( 'Eye Low Vision', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'eye-slash'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L150.7 92.77zM223.1 149.5L313.4 220.3C317.6 211.8 320 202.2 320 191.1C320 180.5 316.1 169.7 311.6 160.4C314.4 160.1 317.2 159.1 320 159.1C373 159.1 416 202.1 416 255.1C416 269.7 413.1 282.7 407.1 294.5L446.6 324.7C457.7 304.3 464 280.9 464 255.1C464 176.5 399.5 111.1 320 111.1C282.7 111.1 248.6 126.2 223.1 149.5zM320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3C31.18 260.4 31.18 251.6 34.46 243.7C44 220.8 60.29 191.2 83.09 161.5L177.4 235.8C176.5 242.4 176 249.1 176 255.1C176 335.5 240.5 400 320 400C338.7 400 356.6 396.4 373 389.9L446.2 447.5C409.9 467.1 367.8 480 320 480H320z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M150.7 92.77C195 58.27 251.8 32 320 32C400.8 32 465.5 68.84 512.6 112.6C559.4 156 590.7 207.1 605.5 243.7C608.8 251.6 608.8 260.4 605.5 268.3C592.1 300.6 565.2 346.1 525.6 386.7L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L150.7 92.77zM189.8 123.5L235.8 159.5C258.3 139.9 287.8 128 320 128C390.7 128 448 185.3 448 256C448 277.2 442.9 297.1 433.8 314.7L487.6 356.9C521.1 322.8 545.9 283.1 558.6 256C544.1 225.1 518.4 183.5 479.9 147.7C438.8 109.6 385.2 79.1 320 79.1C269.5 79.1 225.1 97.73 189.8 123.5L189.8 123.5zM394.9 284.2C398.2 275.4 400 265.9 400 255.1C400 211.8 364.2 175.1 320 175.1C319.3 175.1 318.7 176 317.1 176C319.3 181.1 320 186.5 320 191.1C320 202.2 317.6 211.8 313.4 220.3L394.9 284.2zM404.3 414.5L446.2 447.5C409.9 467.1 367.8 480 320 480C239.2 480 174.5 443.2 127.4 399.4C80.62 355.1 49.34 304 34.46 268.3C31.18 260.4 31.18 251.6 34.46 243.7C44 220.8 60.29 191.2 83.09 161.5L120.8 191.2C102.1 214.5 89.76 237.6 81.45 255.1C95.02 286 121.6 328.5 160.1 364.3C201.2 402.4 254.8 432 320 432C350.7 432 378.8 425.4 404.3 414.5H404.3zM192 255.1C192 253.1 192.1 250.3 192.3 247.5L248.4 291.7C258.9 312.8 278.5 328.6 302 333.1L358.2 378.2C346.1 381.1 333.3 384 319.1 384C249.3 384 191.1 326.7 191.1 255.1H192z',
			),
		),
		'label'             => __( 'Eye Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology', 'travel' ),
	),
	'f'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 64.01c0 17.67-14.33 32-32 32H64v128h160c17.67 0 32 14.32 32 31.1s-14.33 32-32 32H64v160c0 17.67-14.33 32-32 32s-32-14.33-32-32v-384C0 46.34 14.33 32.01 32 32.01h256C305.7 32.01 320 46.34 320 64.01z',
			),
		),
		'label'             => __( 'F', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'face-angry'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM339.9 373.3C323.8 355.4 295.7 336 256 336C216.3 336 188.2 355.4 172.1 373.3C166.2 379.9 166.7 389.1 173.3 395.9C179.9 401.8 189.1 401.3 195.9 394.7C207.6 381.7 227.5 368 255.1 368C284.5 368 304.4 381.7 316.1 394.7C322 401.3 332.1 401.8 338.7 395.9C345.3 389.1 345.8 379.9 339.9 373.3H339.9zM176.4 272C194 272 208.4 257.7 208.4 240C208.4 238.5 208.3 237 208.1 235.6L218.9 239.2C227.3 241.1 236.4 237.4 239.2 229.1C241.1 220.7 237.4 211.6 229.1 208.8L133.1 176.8C124.7 174 115.6 178.6 112.8 186.9C110 195.3 114.6 204.4 122.9 207.2L153.7 217.4C147.9 223.2 144.4 231.2 144.4 240C144.4 257.7 158.7 272 176.4 272zM358.9 217.2L389.1 207.2C397.4 204.4 401.1 195.3 399.2 186.9C396.4 178.6 387.3 174 378.9 176.8L282.9 208.8C274.6 211.6 270 220.7 272.8 229.1C275.6 237.4 284.7 241.1 293.1 239.2L304.7 235.3C304.5 236.8 304.4 238.4 304.4 240C304.4 257.7 318.7 272 336.4 272C354 272 368.4 257.7 368.4 240C368.4 231.1 364.7 223 358.9 217.2H358.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M328.4 393.5C318.7 402.6 303.5 402.1 294.5 392.4C287.1 384.5 274.4 376 256 376C237.6 376 224.9 384.5 217.5 392.4C208.5 402.1 193.3 402.6 183.6 393.5C173.9 384.5 173.4 369.3 182.5 359.6C196.7 344.3 221.4 328 256 328C290.6 328 315.3 344.3 329.5 359.6C338.6 369.3 338.1 384.5 328.4 393.5zM144.4 240C144.4 231.2 147.9 223.2 153.7 217.4L122.9 207.2C114.6 204.4 110 195.3 112.8 186.9C115.6 178.6 124.7 174 133.1 176.8L229.1 208.8C237.4 211.6 241.1 220.7 239.2 229.1C236.4 237.4 227.3 241.1 218.9 239.2L208.1 235.6C208.3 237 208.4 238.5 208.4 240C208.4 257.7 194 272 176.4 272C158.7 272 144.4 257.7 144.4 240V240zM368.4 240C368.4 257.7 354 272 336.4 272C318.7 272 304.4 257.7 304.4 240C304.4 238.4 304.5 236.8 304.7 235.3L293.1 239.2C284.7 241.1 275.6 237.4 272.8 229.1C270 220.7 274.6 211.6 282.9 208.8L378.9 176.8C387.3 174 396.4 178.6 399.2 186.9C401.1 195.3 397.4 204.4 389.1 207.2L358.9 217.2C364.7 223 368.4 231.1 368.4 240H368.4zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464z',
			),
		),
		'label'             => __( 'Face Angry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-dizzy'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 416C291.3 416 320 387.3 320 352C320 316.7 291.3 288 256 288C220.7 288 192 316.7 192 352C192 387.3 220.7 416 256 416zM100.7 155.3L137.4 192L100.7 228.7C94.44 234.9 94.44 245.1 100.7 251.3C106.9 257.6 117.1 257.6 123.3 251.3L160 214.6L196.7 251.3C202.9 257.6 213.1 257.6 219.3 251.3C225.6 245.1 225.6 234.9 219.3 228.7L182.6 192L219.3 155.3C225.6 149.1 225.6 138.9 219.3 132.7C213.1 126.4 202.9 126.4 196.7 132.7L160 169.4L123.3 132.7C117.1 126.4 106.9 126.4 100.7 132.7C94.44 138.9 94.44 149.1 100.7 155.3zM292.7 155.3L329.4 192L292.7 228.7C286.4 234.9 286.4 245.1 292.7 251.3C298.9 257.6 309.1 257.6 315.3 251.3L352 214.6L388.7 251.3C394.9 257.6 405.1 257.6 411.3 251.3C417.6 245.1 417.6 234.9 411.3 228.7L374.6 192L411.3 155.3C417.6 149.1 417.6 138.9 411.3 132.7C405.1 126.4 394.9 126.4 388.7 132.7L352 169.4L315.3 132.7C309.1 126.4 298.9 126.4 292.7 132.7C286.4 138.9 286.4 149.1 292.7 155.3z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 352C192 316.7 220.7 288 256 288C291.3 288 320 316.7 320 352C320 387.3 291.3 416 256 416C220.7 416 192 387.3 192 352zM103 135C112.4 125.7 127.6 125.7 136.1 135L160 158.1L183 135C192.4 125.7 207.6 125.7 216.1 135C226.3 144.4 226.3 159.6 216.1 168.1L193.9 192L216.1 215C226.3 224.4 226.3 239.6 216.1 248.1C207.6 258.3 192.4 258.3 183 248.1L160 225.9L136.1 248.1C127.6 258.3 112.4 258.3 103 248.1C93.66 239.6 93.66 224.4 103 215L126.1 192L103 168.1C93.66 159.6 93.66 144.4 103 135V135zM295 135C304.4 125.7 319.6 125.7 328.1 135L352 158.1L375 135C384.4 125.7 399.6 125.7 408.1 135C418.3 144.4 418.3 159.6 408.1 168.1L385.9 192L408.1 215C418.3 224.4 418.3 239.6 408.1 248.1C399.6 258.3 384.4 258.3 375 248.1L352 225.9L328.1 248.1C319.6 258.3 304.4 258.3 295 248.1C285.7 239.6 285.7 224.4 295 215L318.1 192L295 168.1C285.7 159.6 285.7 144.4 295 135V135zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Dizzy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-flushed'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M184 224C184 237.3 173.3 248 160 248C146.7 248 136 237.3 136 224C136 210.7 146.7 200 160 200C173.3 200 184 210.7 184 224zM376 224C376 237.3 365.3 248 352 248C338.7 248 328 237.3 328 224C328 210.7 338.7 200 352 200C365.3 200 376 210.7 376 224zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM192 400H320C328.8 400 336 392.8 336 384C336 375.2 328.8 368 320 368H192C183.2 368 176 375.2 176 384C176 392.8 183.2 400 192 400zM160 296C199.8 296 232 263.8 232 224C232 184.2 199.8 152 160 152C120.2 152 88 184.2 88 224C88 263.8 120.2 296 160 296zM352 152C312.2 152 280 184.2 280 224C280 263.8 312.2 296 352 296C391.8 296 424 263.8 424 224C424 184.2 391.8 152 352 152z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 336C333.3 336 344 346.7 344 360C344 373.3 333.3 384 320 384H192C178.7 384 168 373.3 168 360C168 346.7 178.7 336 192 336H320zM136.4 224C136.4 210.7 147.1 200 160.4 200C173.6 200 184.4 210.7 184.4 224C184.4 237.3 173.6 248 160.4 248C147.1 248 136.4 237.3 136.4 224zM80 224C80 179.8 115.8 144 160 144C204.2 144 240 179.8 240 224C240 268.2 204.2 304 160 304C115.8 304 80 268.2 80 224zM160 272C186.5 272 208 250.5 208 224C208 197.5 186.5 176 160 176C133.5 176 112 197.5 112 224C112 250.5 133.5 272 160 272zM376.4 224C376.4 237.3 365.6 248 352.4 248C339.1 248 328.4 237.3 328.4 224C328.4 210.7 339.1 200 352.4 200C365.6 200 376.4 210.7 376.4 224zM432 224C432 268.2 396.2 304 352 304C307.8 304 272 268.2 272 224C272 179.8 307.8 144 352 144C396.2 144 432 179.8 432 224zM352 176C325.5 176 304 197.5 304 224C304 250.5 325.5 272 352 272C378.5 272 400 250.5 400 224C400 197.5 378.5 176 352 176zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464z',
			),
		),
		'label'             => __( 'Face Flushed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-frown'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM159.3 388.7C171.5 349.4 209.9 320 256 320C302.1 320 340.5 349.4 352.7 388.7C355.3 397.2 364.3 401.9 372.7 399.3C381.2 396.7 385.9 387.7 383.3 379.3C366.8 326.1 315.8 287.1 256 287.1C196.3 287.1 145.2 326.1 128.7 379.3C126.1 387.7 130.8 396.7 139.3 399.3C147.7 401.9 156.7 397.2 159.3 388.7H159.3zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M143.9 398.6C131.4 394.1 124.9 380.3 129.4 367.9C146.9 319.4 198.9 288 256 288C313.1 288 365.1 319.4 382.6 367.9C387.1 380.3 380.6 394.1 368.1 398.6C355.7 403.1 341.9 396.6 337.4 384.1C328.2 358.5 297.2 336 256 336C214.8 336 183.8 358.5 174.6 384.1C170.1 396.6 156.3 403.1 143.9 398.6V398.6zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Frown', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'face-frown-open'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240zM336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176zM259.9 369.4C288.8 369.4 316.2 375.2 340.6 385.5C352.9 390.7 366.7 381.3 361.4 369.1C344.8 330.9 305.6 303.1 259.9 303.1C214.3 303.1 175.1 330.8 158.4 369.1C153.1 381.3 166.1 390.6 179.3 385.4C203.7 375.1 231 369.4 259.9 369.4L259.9 369.4z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M179.3 369.3C166.1 374.5 153.1 365.1 158.4 352.9C175.1 314.7 214.3 287.8 259.9 287.8C305.6 287.8 344.8 314.7 361.4 352.1C366.7 365.2 352.9 374.5 340.6 369.3C316.2 359 288.8 353.2 259.9 353.2C231 353.2 203.7 358.1 179.3 369.3L179.3 369.3zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Frown Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grimace'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM399.3 360H344V400H352C375.8 400 395.5 382.7 399.3 360zM352 304H344V344H399.3C395.5 321.3 375.8 304 352 304zM328 344V304H264V344H328zM328 400V360H264V400H328zM184 304V344H248V304H184zM184 360V400H248V360H184zM168 344V304H160C136.2 304 116.5 321.3 112.7 344H168zM168 400V360H112.7C116.5 382.7 136.2 400 160 400H168zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M344 288C374.9 288 400 313.1 400 344C400 374.9 374.9 400 344 400H168C137.1 400 112 374.9 112 344C112 313.1 137.1 288 168 288H344zM168 320C154.7 320 144 330.7 144 344C144 357.3 154.7 368 168 368H176V320H168zM208 368H240V320H208V368zM304 320H272V368H304V320zM336 368H344C357.3 368 368 357.3 368 344C368 330.7 357.3 320 344 320H336V368zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grimace', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-beam'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM226.5 231.6C229.8 230.5 232 227.4 232 224C232 206.1 225.3 188.4 215.4 175.2C205.6 162.2 191.5 152 176 152C160.5 152 146.4 162.2 136.6 175.2C126.7 188.4 120 206.1 120 224C120 227.4 122.2 230.5 125.5 231.6C128.7 232.7 132.3 231.6 134.4 228.8L134.4 228.8L134.6 228.5C134.8 228.3 134.1 228 135.3 227.6C135.1 226.8 136.9 225.7 138.1 224.3C140.6 221.4 144.1 217.7 148.3 213.1C157.1 206.2 167.2 200 176 200C184.8 200 194.9 206.2 203.7 213.1C207.9 217.7 211.4 221.4 213.9 224.3C215.1 225.7 216 226.8 216.7 227.6C217 228 217.2 228.3 217.4 228.5L217.6 228.8L217.6 228.8C219.7 231.6 223.3 232.7 226.5 231.6V231.6zM377.6 228.8C379.7 231.6 383.3 232.7 386.5 231.6C389.8 230.5 392 227.4 392 224C392 206.1 385.3 188.4 375.4 175.2C365.6 162.2 351.5 152 336 152C320.5 152 306.4 162.2 296.6 175.2C286.7 188.4 280 206.1 280 224C280 227.4 282.2 230.5 285.5 231.6C288.7 232.7 292.3 231.6 294.4 228.8L294.4 228.8L294.6 228.5C294.8 228.3 294.1 228 295.3 227.6C295.1 226.8 296.9 225.7 298.1 224.3C300.6 221.4 304.1 217.7 308.3 213.1C317.1 206.2 327.2 200 336 200C344.8 200 354.9 206.2 363.7 213.1C367.9 217.7 371.4 221.4 373.9 224.3C375.1 225.7 376 226.8 376.7 227.6C377 228 377.2 228.3 377.4 228.5L377.6 228.8L377.6 228.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM217.6 228.8L217.6 228.8L217.4 228.5C217.2 228.3 217 228 216.7 227.6C216 226.8 215.1 225.7 213.9 224.3C211.4 221.4 207.9 217.7 203.7 213.1C194.9 206.2 184.8 200 176 200C167.2 200 157.1 206.2 148.3 213.1C144.1 217.7 140.6 221.4 138.1 224.3C136.9 225.7 135.1 226.8 135.3 227.6C134.1 228 134.8 228.3 134.6 228.5L134.4 228.8L134.4 228.8C132.3 231.6 128.7 232.7 125.5 231.6C122.2 230.5 120 227.4 120 224C120 206.1 126.7 188.4 136.6 175.2C146.4 162.2 160.5 152 176 152C191.5 152 205.6 162.2 215.4 175.2C225.3 188.4 232 206.1 232 224C232 227.4 229.8 230.5 226.5 231.6C223.3 232.7 219.7 231.6 217.6 228.8V228.8zM377.6 228.8L377.4 228.5C377.2 228.3 377 228 376.7 227.6C376 226.8 375.1 225.7 373.9 224.3C371.4 221.4 367.9 217.7 363.7 213.1C354.9 206.2 344.8 200 336 200C327.2 200 317.1 206.2 308.3 213.1C304.1 217.7 300.6 221.4 298.1 224.3C296.9 225.7 295.1 226.8 295.3 227.6C294.1 228 294.8 228.3 294.6 228.5L294.4 228.8L294.4 228.8C292.3 231.6 288.7 232.7 285.5 231.6C282.2 230.5 280 227.4 280 224C280 206.1 286.7 188.4 296.6 175.2C306.4 162.2 320.5 152 336 152C351.5 152 365.6 162.2 375.4 175.2C385.3 188.4 392 206.1 392 224C392 227.4 389.8 230.5 386.5 231.6C383.3 232.7 379.7 231.6 377.6 228.8L377.6 228.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin Beam', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-beam-sweat'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 128C437.5 128 416 107 416 81.01C416 76.01 417.8 69.74 420.6 62.87C420.9 62.17 421.2 61.46 421.6 60.74C430.5 40.51 448.1 15.86 457.6 3.282C460.8-1.093 467.2-1.094 470.4 3.281C483.4 20.65 512 61.02 512 81.01C512 102.7 497.1 120.8 476.8 126.3C472.7 127.4 468.4 128 464 128L464 128zM256 .0003C307.4 .0003 355.3 15.15 395.4 41.23C393.9 44.32 392.4 47.43 391.1 50.53C387.8 58.57 384 69.57 384 81.01C384 125.4 420.6 160 464 160C473.6 160 482.8 158.3 491.4 155.2C504.7 186.1 512 220.2 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0V.0003zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM226.5 231.6C229.8 230.5 232 227.4 232 224C232 206.1 225.3 188.4 215.4 175.2C205.6 162.2 191.5 152 176 152C160.5 152 146.4 162.2 136.6 175.2C126.7 188.4 120 206.1 120 224C120 227.4 122.2 230.5 125.5 231.6C128.7 232.7 132.3 231.6 134.4 228.8L134.4 228.8L134.6 228.5C134.8 228.3 134.1 228 135.3 227.6C135.1 226.8 136.9 225.7 138.1 224.3C140.6 221.4 144.1 217.7 148.3 213.1C157.1 206.2 167.2 200 176 200C184.8 200 194.9 206.2 203.7 213.1C207.9 217.7 211.4 221.4 213.9 224.3C215.1 225.7 216 226.8 216.7 227.6C217 228 217.2 228.3 217.4 228.5L217.6 228.8L217.6 228.8C219.7 231.6 223.3 232.7 226.5 231.6V231.6zM377.6 228.8C379.7 231.6 383.3 232.7 386.5 231.6C389.8 230.5 392 227.4 392 224C392 206.1 385.3 188.4 375.4 175.2C365.6 162.2 351.5 152 336 152C320.5 152 306.4 162.2 296.6 175.2C286.7 188.4 280 206.1 280 224C280 227.4 282.2 230.5 285.5 231.6C288.7 232.7 292.3 231.6 294.4 228.8L294.4 228.8L294.6 228.5C294.8 228.3 294.1 228 295.3 227.6C295.1 226.8 296.9 225.7 298.1 224.3C300.6 221.4 304.1 217.7 308.3 213.1C317.1 206.2 327.2 200 336 200C344.8 200 354.9 206.2 363.7 213.1C367.9 217.7 371.4 221.4 373.9 224.3C375.1 225.7 376 226.8 376.7 227.6C377 228 377.2 228.3 377.4 228.5L377.6 228.8L377.6 228.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 128C437.5 128 416 107 416 81.01C416 76.01 417.8 69.74 420.6 62.87C420.9 62.17 421.2 61.46 421.6 60.74C430.5 40.51 448.1 15.86 457.6 3.281C460.8-1.094 467.2-1.094 470.4 3.281C483.4 20.65 512 61.02 512 81.01C512 102.7 497.1 120.8 476.8 126.3C472.7 127.4 468.4 128 464 128L464 128zM391.1 50.53C387.8 58.57 384 69.57 384 81.01C384 84.1 384.3 88.91 384.9 92.72C349.4 64.71 304.7 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 219.7 454.7 185.5 438.3 155.8C446.4 158.5 455.1 160 464 160C473.6 160 482.8 158.3 491.4 155.2C504.7 186.2 512 220.2 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 .0002 256 .0002C307.4 .0002 355.3 15.15 395.4 41.23C393.9 44.32 392.4 47.43 391.1 50.53V50.53zM255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.9 255.9 318.9C289 318.9 320.6 315.1 349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1zM217.6 228.8L217.4 228.5C217.2 228.3 217 228 216.7 227.6C216 226.8 215.1 225.7 213.9 224.3C211.4 221.4 207.9 217.7 203.7 213.1C194.9 206.2 184.8 200 176 200C167.2 200 157.1 206.2 148.3 213.1C144.1 217.7 140.6 221.4 138.1 224.3C136.9 225.7 135.1 226.8 135.3 227.6C134.1 228 134.8 228.3 134.6 228.5L134.4 228.8L134.4 228.8C132.3 231.6 128.7 232.7 125.5 231.6C122.2 230.5 119.1 227.4 119.1 224C119.1 206.1 126.7 188.4 136.6 175.2C146.4 162.2 160.5 152 175.1 152C191.5 152 205.6 162.2 215.4 175.2C225.3 188.4 231.1 206.1 231.1 224C231.1 227.4 229.8 230.5 226.5 231.6C223.3 232.7 219.7 231.6 217.6 228.8L217.6 228.8zM377.6 228.8L377.6 228.8L377.4 228.5C377.2 228.3 377 228 376.7 227.6C376 226.8 375.1 225.7 373.9 224.3C371.4 221.4 367.9 217.7 363.7 213.1C354.9 206.2 344.8 200 336 200C327.2 200 317.1 206.2 308.3 213.1C304.1 217.7 300.6 221.4 298.1 224.3C296.9 225.7 295.1 226.8 295.3 227.6C294.1 228 294.8 228.3 294.6 228.5L294.4 228.8L294.4 228.8C292.3 231.6 288.7 232.7 285.5 231.6C282.2 230.5 280 227.4 280 224C280 206.1 286.7 188.4 296.6 175.2C306.4 162.2 320.5 152 336 152C351.5 152 365.6 162.2 375.4 175.2C385.3 188.4 392 206.1 392 224C392 227.4 389.8 230.5 386.5 231.6C383.3 232.7 379.7 231.6 377.6 228.8V228.8z',
			),
		),
		'label'             => __( 'Face Grin Beam Sweat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-hearts'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM199.3 129.1C181.5 124.4 163.2 134.9 158.4 152.7L154.1 168.8L137.1 164.5C120.2 159.7 101.9 170.3 97.14 188.1C92.38 205.8 102.9 224.1 120.7 228.9L185.8 246.3C194.4 248.6 203.1 243.6 205.4 235L222.9 169.1C227.6 152.2 217.1 133.9 199.3 129.1H199.3zM353.6 152.7C348.8 134.9 330.5 124.4 312.7 129.1C294.9 133.9 284.4 152.2 289.1 169.1L306.6 235C308.9 243.6 317.6 248.6 326.2 246.3L391.3 228.9C409.1 224.1 419.6 205.8 414.9 188.1C410.1 170.3 391.8 159.7 374 164.5L357.9 168.8L353.6 152.7z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM238.9 177.1L221.4 243C219.1 251.6 210.4 256.6 201.8 254.3L136.7 236.9C118.9 232.1 108.4 213.8 113.1 196.1C117.9 178.3 136.2 167.7 153.1 172.5L170.1 176.8L174.4 160.7C179.2 142.9 197.5 132.4 215.3 137.1C233.1 141.9 243.6 160.2 238.9 177.1H238.9zM341.9 176.8L358 172.5C375.8 167.7 394.1 178.3 398.9 196.1C403.6 213.8 393.1 232.1 375.3 236.9L310.2 254.3C301.6 256.6 292.9 251.6 290.6 243L273.1 177.1C268.4 160.2 278.9 141.9 296.7 137.1C314.5 132.4 332.8 142.9 337.6 160.7L341.9 176.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin Hearts', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'lifestyle-and-hobbies' ),
	),
	'face-grin-squint'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM133.5 146.7C125.6 142.4 116 148.2 116 157.1C116 159.9 116.1 162.6 118.8 164.8L154.8 208L118.8 251.2C116.1 253.4 116 256.1 116 258.9C116 267.8 125.6 273.6 133.5 269.3L223.4 221.4C234.1 215.7 234.1 200.3 223.4 194.6L133.5 146.7zM396 157.1C396 148.2 386.4 142.4 378.5 146.7L288.6 194.6C277.9 200.3 277.9 215.7 288.6 221.4L378.5 269.3C386.4 273.6 396 267.8 396 258.9C396 256.1 395 253.4 393.2 251.2L357.2 208L393.2 164.8C395 162.6 396 159.9 396 157.1V157.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM223.4 194.6C234.1 200.3 234.1 215.7 223.4 221.4L133.5 269.3C125.6 273.6 116 267.8 116 258.9C116 256.1 116.1 253.4 118.8 251.2L154.8 208L118.8 164.8C116.1 162.6 116 159.9 116 157.1C116 148.2 125.6 142.4 133.5 146.7L223.4 194.6zM393.2 164.8L357.2 208L393.2 251.2C395 253.4 396 256.1 396 258.9C396 267.8 386.4 273.6 378.5 269.3L288.6 221.4C277.9 215.7 277.9 200.3 288.6 194.6L378.5 146.7C386.4 142.4 396 148.2 396 157.1C396 159.9 395 162.6 393.2 164.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin Squint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-squint-tears'               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M426.8 14.18C446-5.046 477.5-4.645 497.1 14.92C516.6 34.49 517 65.95 497.8 85.18C490.1 92.02 476.4 97.59 460.5 101.9C444.1 106.3 426.4 109.4 414.1 111.2C412.5 111.5 410.1 111.7 409.6 111.9C403.1 112.8 399.2 108 400.1 102.4C401.7 91.19 404.7 72.82 409.1 55.42C409.4 54.12 409.8 52.84 410.1 51.56C414.4 35.62 419.1 21.02 426.8 14.18L426.8 14.18zM382.2 33.17C380.6 37.96 379.3 42.81 378.1 47.52C373.3 66.46 370.1 86.05 368.4 97.79C364.5 124.6 387.4 147.5 414.1 143.6C426 141.9 445.6 138.8 464.5 133.9C469.2 132.7 474.1 131.4 478.8 129.9C534.2 227.5 520.2 353.8 437 437C353.8 520.3 227.5 534.2 129.8 478.8C131.3 474 132.7 469.2 133.9 464.5C138.7 445.5 141.9 425.1 143.6 414.2C147.5 387.4 124.6 364.5 97.89 368.4C85.97 370.1 66.39 373.2 47.46 378.1C42.76 379.3 37.93 380.6 33.15 382.1C-22.19 284.5-8.245 158.2 74.98 74.98C158.2-8.253 284.5-22.19 382.2 33.17V33.17zM416.4 202.3C411.6 190.4 395.6 191.4 389.6 202.7C370.1 239.4 343.3 275.9 309.8 309.4C276.3 342.9 239.8 369.7 203.1 389.2C191.8 395.2 190.8 411.2 202.7 416C262.1 440.2 332.6 428.3 380.7 380.3C428.7 332.2 440.6 261.7 416.4 202.3H416.4zM94.43 288.5L150.5 293.6L155.6 349.7C155.8 352.5 157.1 355 159 357C165.4 363.4 176.2 360.7 178.8 352.1L208.5 254.6C211.1 242.1 201.1 232.1 189.5 235.7L92.05 265.3C83.46 267.9 80.76 278.7 87.1 285.1C89.07 287.1 91.66 288.3 94.43 288.5V288.5zM235.7 189.5C232.1 201.1 242.1 211.1 254.6 208.5L352.1 178.8C360.7 176.2 363.4 165.4 357 159C355 157.1 352.5 155.8 349.7 155.6L293.6 150.5L288.5 94.43C288.3 91.66 287.1 89.07 285.1 87.1C278.7 80.76 267.9 83.46 265.3 92.05L235.7 189.5zM51.53 410.1C70.01 405.1 90.3 401.8 102.4 400.1C108 399.2 112.8 403.1 111.9 409.6C110.2 421.7 106.9 441.9 101.9 460.4C97.57 476.4 92.02 490.1 85.18 497.8C65.95 517 34.49 516.6 14.92 497.1C-4.645 477.5-5.046 446 14.18 426.8C21.02 419.1 35.6 414.4 51.53 410.1V410.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M426.8 14.18C446-5.046 477.5-4.646 497.1 14.92C516.6 34.49 517 65.95 497.8 85.18C483 99.97 432.2 108.8 409.6 111.9C403.1 112.8 399.2 108 400.1 102.4C403.3 79.94 412 28.97 426.8 14.18H426.8zM74.98 74.98C158.2-8.253 284.5-22.19 382.2 33.17C380.6 37.96 379.3 42.81 378.1 47.52C375 59.67 372.6 72.08 370.8 82.52C290.1 28.93 180.1 37.74 108.9 108.9C37.75 180.1 28.94 290 82.49 370.8C72.01 372.6 59.6 374.1 47.46 378.1C42.76 379.3 37.93 380.6 33.15 382.1C-22.19 284.5-8.245 158.2 74.98 74.98V74.98zM478.8 129.9C534.2 227.5 520.2 353.8 437 437C353.8 520.3 227.5 534.2 129.8 478.8C131.3 474 132.7 469.2 133.9 464.5C136.1 452.3 139.4 439.9 141.2 429.5C221.9 483.1 331.9 474.3 403.1 403.1C474.3 331.9 483.1 221.1 429.5 141.2C439.1 139.4 452.4 137 464.5 133.9C469.2 132.7 474.1 131.4 478.8 129.9L478.8 129.9zM359.2 226.9C369.3 210.6 393 210 397 228.8C406.6 273.1 393.4 322.3 357.8 357.9C322.2 393.5 273 406.7 228.6 397.1C209.9 393.1 210.5 369.4 226.8 359.3C252 343.6 276.1 323.9 300.4 300.5C323.8 277.1 343.5 252.1 359.2 226.9L359.2 226.9zM189.5 235.7C201.1 232.1 211.1 242.1 208.5 254.6L178.8 352.1C176.2 360.7 165.4 363.4 159 357C157.1 355 155.8 352.5 155.6 349.7L150.5 293.6L94.43 288.5C91.66 288.3 89.07 287.1 87.1 285.1C80.76 278.7 83.46 267.9 92.05 265.3L189.5 235.7zM288.5 94.43L293.6 150.5L349.7 155.6C352.5 155.8 355 157.1 357 159C363.4 165.4 360.7 176.2 352.1 178.8L254.6 208.5C242.1 211.1 232.1 201.1 235.7 189.5L265.3 92.05C267.9 83.46 278.7 80.76 285.1 87.1C287.1 89.07 288.3 91.66 288.5 94.43V94.43zM14.18 426.8C28.97 412 79.85 403.2 102.4 400.1C108 399.2 112.8 403.1 111.9 409.6C108.7 432.1 99.97 483 85.18 497.8C65.95 517 34.5 516.6 14.93 497.1C-4.645 477.5-5.046 446 14.18 426.8H14.18z',
			),
		),
		'label'             => __( 'Face Grin Squint Tears', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-stars'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5H407.4zM152.8 124.6L136.2 159.3L98.09 164.3C95.03 164.7 92.48 166.8 91.52 169.8C90.57 172.7 91.39 175.9 93.62 178L121.5 204.5L114.5 242.3C113.1 245.4 115.2 248.4 117.7 250.2C120.2 252.1 123.5 252.3 126.2 250.8L159.1 232.5L193.8 250.8C196.5 252.3 199.8 252.1 202.3 250.2C204.8 248.4 206 245.4 205.5 242.3L198.5 204.5L226.4 178C228.6 175.9 229.4 172.7 228.5 169.8C227.5 166.8 224.1 164.7 221.9 164.3L183.8 159.3L167.2 124.6C165.9 121.8 163.1 120 159.1 120C156.9 120 154.1 121.8 152.8 124.6V124.6zM344.8 124.6L328.2 159.3L290.1 164.3C287 164.7 284.5 166.8 283.5 169.8C282.6 172.7 283.4 175.9 285.6 178L313.5 204.5L306.5 242.3C305.1 245.4 307.2 248.4 309.7 250.2C312.2 252.1 315.5 252.3 318.2 250.8L352 232.5L385.8 250.8C388.5 252.3 391.8 252.1 394.3 250.2C396.8 248.4 398 245.4 397.5 242.3L390.5 204.5L418.4 178C420.6 175.9 421.4 172.7 420.5 169.8C419.5 166.8 416.1 164.7 413.9 164.3L375.8 159.3L359.2 124.6C357.9 121.8 355.1 120 352 120C348.9 120 346.1 121.8 344.8 124.6H344.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M199.8 167.3L237.9 172.3C240.1 172.7 243.5 174.8 244.5 177.8C245.4 180.7 244.6 183.9 242.4 186L214.5 212.5L221.5 250.3C222 253.4 220.8 256.4 218.3 258.2C215.8 260.1 212.5 260.3 209.8 258.8L175.1 240.5L142.2 258.8C139.5 260.3 136.2 260.1 133.7 258.2C131.2 256.4 129.1 253.4 130.5 250.3L137.5 212.5L109.6 186C107.4 183.9 106.6 180.7 107.5 177.8C108.5 174.8 111 172.7 114.1 172.3L152.2 167.3L168.8 132.6C170.1 129.8 172.9 128 175.1 128C179.1 128 181.9 129.8 183.2 132.6L199.8 167.3zM359.8 167.3L397.9 172.3C400.1 172.7 403.5 174.8 404.5 177.8C405.4 180.7 404.6 183.9 402.4 186L374.5 212.5L381.5 250.3C382 253.4 380.8 256.4 378.3 258.2C375.8 260.1 372.5 260.3 369.8 258.8L336 240.5L302.2 258.8C299.5 260.3 296.2 260.1 293.7 258.2C291.2 256.4 289.1 253.4 290.5 250.3L297.5 212.5L269.6 186C267.4 183.9 266.6 180.7 267.5 177.8C268.5 174.8 271 172.7 274.1 172.3L312.2 167.3L328.8 132.6C330.1 129.8 332.9 128 336 128C339.1 128 341.9 129.8 343.2 132.6L359.8 167.3zM349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464z',
			),
		),
		'label'             => __( 'Face Grin Stars', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-tears'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M548.6 371.4C506.4 454.8 419.9 512 319.1 512C220.1 512 133.6 454.8 91.4 371.4C95.87 368.4 100.1 365 104.1 361.1C112.2 352.1 117.3 342.5 120.6 334.4C124.2 325.7 127.1 316 129.4 306.9C134 288.7 137 269.1 138.6 258.7C142.6 232.2 119.9 209.5 93.4 213.3C86.59 214.3 77.18 215.7 66.84 217.7C85.31 94.5 191.6 0 319.1 0C448.4 0 554.7 94.5 573.2 217.7C562.8 215.7 553.4 214.3 546.6 213.3C520.1 209.5 497.4 232.2 501.4 258.7C502.1 269.1 505.1 288.7 510.6 306.9C512.9 316 515.8 325.7 519.4 334.4C522.7 342.5 527.8 352.1 535.9 361.1C539.9 365 544.1 368.4 548.6 371.4V371.4zM471.4 331.5C476.4 319.7 464.4 309 452.1 312.8C412.4 324.9 367.7 331.8 320.3 331.8C272.9 331.8 228.1 324.9 188.5 312.8C176.2 309 164.2 319.7 169.2 331.5C194.1 390.6 252.4 432 320.3 432C388.2 432 446.4 390.6 471.4 331.5H471.4zM281.6 228.8C283.7 231.6 287.3 232.7 290.5 231.6C293.8 230.5 295.1 227.4 295.1 224C295.1 206.1 289.3 188.4 279.4 175.2C269.6 162.2 255.5 152 239.1 152C224.5 152 210.4 162.2 200.6 175.2C190.7 188.4 183.1 206.1 183.1 224C183.1 227.4 186.2 230.5 189.5 231.6C192.7 232.7 196.3 231.6 198.4 228.8L198.4 228.8L198.6 228.5C198.8 228.3 198.1 228 199.3 227.6C199.1 226.8 200.9 225.7 202.1 224.3C204.6 221.4 208.1 217.7 212.3 213.1C221.1 206.2 231.2 200 239.1 200C248.8 200 258.9 206.2 267.7 213.1C271.9 217.7 275.4 221.4 277.9 224.3C279.1 225.7 280 226.8 280.7 227.6C281 228 281.2 228.3 281.4 228.5L281.6 228.8L281.6 228.8zM450.5 231.6C453.8 230.5 456 227.4 456 224C456 206.1 449.3 188.4 439.4 175.2C429.6 162.2 415.5 152 400 152C384.5 152 370.4 162.2 360.6 175.2C350.7 188.4 344 206.1 344 224C344 227.4 346.2 230.5 349.5 231.6C352.7 232.7 356.3 231.6 358.4 228.8L358.4 228.8L358.6 228.5C358.8 228.3 358.1 228 359.3 227.6C359.1 226.8 360.9 225.7 362.1 224.3C364.6 221.4 368.1 217.7 372.3 213.1C381.1 206.2 391.2 200 400 200C408.8 200 418.9 206.2 427.7 213.1C431.9 217.7 435.4 221.4 437.9 224.3C439.1 225.7 440 226.8 440.7 227.6C441 228 441.2 228.3 441.4 228.5L441.6 228.8L441.6 228.8C443.7 231.6 447.3 232.7 450.5 231.6V231.6zM106.1 254.1C103.9 275.6 95.58 324.3 81.43 338.4C80.49 339.4 79.51 340.3 78.5 341.1C59.98 356.7 32.01 355.5 14.27 337.7C-4.442 319-4.825 288.9 13.55 270.6C22.19 261.9 43.69 255.4 64.05 250.1C77.02 248.2 89.53 246.2 97.94 245C103.3 244.2 107.8 248.7 106.1 254.1V254.1zM561.5 341.1C560.7 340.5 559.1 339.8 559.2 339.1C559 338.9 558.8 338.7 558.6 338.4C544.4 324.3 536.1 275.6 533 254.1C532.2 248.7 536.7 244.2 542.1 245C543.1 245.2 544.2 245.3 545.4 245.5C553.6 246.7 564.6 248.5 575.1 250.1C596.3 255.4 617.8 261.9 626.4 270.6C644.8 288.9 644.4 319 625.7 337.7C607.1 355.5 580 356.7 561.5 341.1L561.5 341.1z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M519.4 334.4C522.7 342.5 527.8 352.1 535.9 361.1C539.9 365 544.1 368.4 548.6 371.4C506.4 454.8 419.9 512 319.1 512C220.1 512 133.6 454.8 91.4 371.4C95.87 368.4 100.1 365 104.1 361.1C112.2 352.1 117.3 342.5 120.6 334.4C121.8 331.5 122.9 328.6 123.9 325.5C152.5 406.2 229.5 464 319.1 464C410.5 464 487.5 406.2 516.1 325.5C517.1 328.6 518.2 331.5 519.4 334.4V334.4zM319.1 47.1C218.6 47.1 134.2 120.5 115.7 216.5C109.1 213.4 101.4 212.2 93.4 213.3C86.59 214.3 77.18 215.7 66.84 217.7C85.31 94.5 191.6 0 319.1 0C448.4 0 554.7 94.5 573.2 217.7C562.8 215.7 553.4 214.3 546.6 213.3C538.6 212.2 530.9 213.4 524.2 216.5C505.8 120.5 421.4 48 319.1 48V47.1zM78.5 341.1C59.98 356.7 32.01 355.5 14.27 337.7C-4.442 319-4.825 288.9 13.55 270.6C22.19 261.9 43.69 255.4 64.05 250.1C77.02 248.2 89.53 246.2 97.94 245C103.3 244.2 107.8 248.7 106.1 254.1C103.9 275.6 95.58 324.3 81.43 338.4C80.49 339.4 79.51 340.3 78.5 341.1V341.1zM561.5 341.1C560.7 340.5 559.1 339.8 559.2 339.1C559 338.9 558.8 338.7 558.6 338.4C544.4 324.3 536.1 275.6 533 254.1C532.2 248.7 536.7 244.2 542.1 245C543.1 245.2 544.2 245.3 545.4 245.5C553.6 246.7 564.6 248.5 575.1 250.1C596.3 255.4 617.8 261.9 626.4 270.6C644.8 288.9 644.4 319 625.7 337.7C607.1 355.5 580 356.7 561.5 341.1L561.5 341.1zM319.9 399.1C269.6 399.1 225.5 374.6 200.9 336.5C190.5 320.4 207.7 303.1 226.3 308.4C255.3 315.1 286.8 318.8 319.9 318.8C353 318.8 384.6 315.1 413.5 308.4C432.2 303.1 449.4 320.4 438.1 336.5C414.4 374.6 370.3 399.1 319.9 399.1zM281.6 228.8L281.4 228.5C281.2 228.3 281 228 280.7 227.6C280 226.8 279.1 225.7 277.9 224.3C275.4 221.4 271.9 217.7 267.7 213.1C258.9 206.2 248.8 200 239.1 200C231.2 200 221.1 206.2 212.3 213.1C208.1 217.7 204.6 221.4 202.1 224.3C200.9 225.7 199.1 226.8 199.3 227.6C198.1 228 198.8 228.3 198.6 228.5L198.4 228.8L198.4 228.8C196.3 231.6 192.7 232.7 189.5 231.6C186.2 230.5 183.1 227.4 183.1 224C183.1 206.1 190.7 188.4 200.6 175.2C210.4 162.2 224.5 152 239.1 152C255.5 152 269.6 162.2 279.4 175.2C289.3 188.4 295.1 206.1 295.1 224C295.1 227.4 293.8 230.5 290.5 231.6C287.3 232.7 283.7 231.6 281.6 228.8L281.6 228.8zM441.6 228.8L441.6 228.8L441.4 228.5C441.2 228.3 441 228 440.7 227.6C440 226.8 439.1 225.7 437.9 224.3C435.4 221.4 431.9 217.7 427.7 213.1C418.9 206.2 408.8 200 400 200C391.2 200 381.1 206.2 372.3 213.1C368.1 217.7 364.6 221.4 362.1 224.3C360.9 225.7 359.1 226.8 359.3 227.6C358.1 228 358.8 228.3 358.6 228.5L358.4 228.8L358.4 228.8C356.3 231.6 352.7 232.7 349.5 231.6C346.2 230.5 344 227.4 344 223.1C344 206.1 350.7 188.4 360.6 175.2C370.4 162.2 384.5 151.1 400 151.1C415.5 151.1 429.6 162.2 439.4 175.2C449.3 188.4 456 206.1 456 223.1C456 227.4 453.8 230.5 450.5 231.6C447.3 232.7 443.7 231.6 441.6 228.8V228.8z',
			),
		),
		'label'             => __( 'Face Grin Tears', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-tongue'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C397.4 0 512 114.6 512 256C512 368.9 438.9 464.7 337.5 498.8C346.7 484 352 466.6 352 448V401.1C376.3 383.5 395.6 359.5 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C116.9 359.3 135.1 383.1 160 400.7V448C160 466.6 165.3 484 174.5 498.8C73.07 464.7 0 368.9 0 256C0 114.6 114.6 .0003 256 .0003L256 0zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240zM336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176zM256 512C220.7 512 192 483.3 192 448V402.6C192 387.9 203.9 376 218.6 376H220.6C231.9 376 241.7 383.9 244.2 394.9C247 407.5 264.1 407.5 267.8 394.9C270.3 383.9 280.1 376 291.4 376H293.4C308.1 376 320 387.9 320 402.6V448C320 483.3 291.3 512 256 512V512z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208zM368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 337.7 95.13 408.4 163.7 442.4C161.3 434 160 425.2 160 416V363.6C151.1 355.6 143.3 346.5 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C368.6 346.4 360.8 355.5 352 363.5V416C352 425.2 350.7 434 348.3 442.4C416.9 408.4 464 337.7 464 256C464 141.1 370.9 48 255.1 48H256zM320 416V378.6C320 363.9 308.1 352 293.4 352H291.4C280.1 352 270.3 359.9 267.8 370.9C264.1 383.5 247 383.5 244.2 370.9C241.7 359.9 231.9 352 220.6 352H218.6C203.9 352 192 363.9 192 378.6V416C192 451.3 220.7 480 256 480C291.3 480 320 451.3 320 416z',
			),
		),
		'label'             => __( 'Face Grin Tongue', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-tongue-squint'              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C397.4 0 512 114.6 512 256C512 368.9 438.9 464.7 337.5 498.8C346.7 484 352 466.6 352 448V401.1C376.3 383.5 395.6 359.5 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C116.9 359.3 135.1 383.1 160 400.7V448C160 466.6 165.3 484 174.5 498.8C73.07 464.7 0 368.9 0 256C0 114.6 114.6 .0003 256 .0003L256 0zM118.8 148.8L154.8 192L118.8 235.2C116.1 237.4 116 240.1 116 242.9C116 251.8 125.6 257.6 133.5 253.3L223.4 205.4C234.1 199.7 234.1 184.3 223.4 178.6L133.5 130.7C125.6 126.4 116 132.2 116 141.1C116 143.9 116.1 146.6 118.8 148.8V148.8zM288.6 178.6C277.9 184.3 277.9 199.7 288.6 205.4L378.5 253.3C386.4 257.6 396 251.8 396 242.9C396 240.1 395 237.4 393.2 235.2L357.2 192L393.2 148.8C395 146.6 396 143.9 396 141.1C396 132.2 386.4 126.4 378.5 130.7L288.6 178.6zM256 512C220.7 512 192 483.3 192 448V402.6C192 387.9 203.9 376 218.6 376H220.6C231.9 376 241.7 383.9 244.2 394.9C247 407.5 264.1 407.5 267.8 394.9C270.3 383.9 280.1 376 291.4 376H293.4C308.1 376 320 387.9 320 402.6V448C320 483.3 291.3 512 256 512V512z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M116 157.1C116 148.2 125.6 142.4 133.5 146.7L223.4 194.6C234.1 200.3 234.1 215.7 223.4 221.4L133.5 269.3C125.6 273.6 116 267.8 116 258.9C116 256.1 116.1 253.4 118.8 251.2L154.8 208L118.8 164.8C116.1 162.6 116 159.9 116 157.1V157.1zM378.5 146.7C386.4 142.4 396 148.2 396 157.1C396 159.9 395 162.6 393.2 164.8L357.2 208L393.2 251.2C395 253.4 396 256.1 396 258.9C396 267.8 386.4 273.6 378.5 269.3L288.6 221.4C277.9 215.7 277.9 200.3 288.6 194.6L378.5 146.7zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 337.7 95.13 408.4 163.7 442.4C161.3 434 160 425.2 160 416V392.7C135.1 375.1 116.9 351.3 105.2 323.5C100.2 311.7 112.2 301 124.5 304.8C164.1 316.9 208.9 323.8 256.3 323.8C303.7 323.8 348.4 316.9 388.1 304.8C400.4 301 412.4 311.7 407.4 323.5C395.6 351.5 376.3 375.5 352 393.1V416C352 425.2 350.7 434 348.3 442.4C416.9 408.4 464 337.7 464 255.1C464 141.1 370.9 47.1 256 47.1L256 48zM320 416V378.6C320 363.9 308.1 352 293.4 352H291.4C280.1 352 270.3 359.9 267.8 370.9C264.1 383.5 247 383.5 244.2 370.9C241.7 359.9 231.9 352 220.6 352H218.6C203.9 352 192 363.9 192 378.6V416C192 451.3 220.7 480 256 480C291.3 480 320 451.3 320 416z',
			),
		),
		'label'             => __( 'Face Grin Tongue Squint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-tongue-wink'                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M312 208C312 194.7 322.7 184 336 184C349.3 184 360 194.7 360 208C360 221.3 349.3 232 336 232C322.7 232 312 221.3 312 208zM174.5 498.8C73.07 464.7 0 368.9 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 368.9 438.9 464.7 337.5 498.8C346.7 484 352 466.6 352 448V401.1C376.3 383.5 395.6 359.5 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C116.9 359.3 135.1 383.1 159.1 400.7V448C159.1 466.6 165.3 484 174.5 498.8L174.5 498.8zM217.6 236.8C224.7 231.5 226.1 221.5 220.8 214.4C190.4 173.9 129.6 173.9 99.2 214.4C93.9 221.5 95.33 231.5 102.4 236.8C109.5 242.1 119.5 240.7 124.8 233.6C142.4 210.1 177.6 210.1 195.2 233.6C200.5 240.7 210.5 242.1 217.6 236.8zM336 272C371.3 272 400 243.3 400 208C400 172.7 371.3 144 336 144C300.7 144 272 172.7 272 208C272 243.3 300.7 272 336 272zM320 402.6V448C320 483.3 291.3 512 256 512C220.7 512 192 483.3 192 448V402.6C192 387.9 203.9 376 218.6 376H220.6C231.9 376 241.7 383.9 244.2 394.9C247 407.5 264.1 407.5 267.8 394.9C270.3 383.9 280.1 376 291.4 376H293.4C308.1 376 320 387.9 320 402.6V402.6z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.6 220C148.1 220 139.7 223.8 134.2 229.7C126.7 237.7 114 238.1 105.9 230.6C97.89 223 97.48 210.4 105 202.3C119.6 186.8 140.3 180 159.6 180C178.1 180 199.7 186.8 214.2 202.3C221.8 210.4 221.4 223 213.3 230.6C205.2 238.1 192.6 237.7 185 229.7C179.6 223.8 170.3 220 159.6 220zM312.4 208C312.4 194.7 323.1 184 336.4 184C349.6 184 360.4 194.7 360.4 208C360.4 221.3 349.6 232 336.4 232C323.1 232 312.4 221.3 312.4 208zM256 208C256 163.8 291.8 128 336 128C380.2 128 416 163.8 416 208C416 252.2 380.2 288 336 288C291.8 288 256 252.2 256 208zM336 256C362.5 256 384 234.5 384 208C384 181.5 362.5 160 336 160C309.5 160 288 181.5 288 208C288 234.5 309.5 256 336 256zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM348.3 442.4C416.9 408.4 464 337.7 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 337.7 95.13 408.4 163.7 442.4C161.3 434 160 425.2 160 416V363.6C151.1 355.6 143.3 346.5 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C368.6 346.4 360.8 355.5 352 363.5V416C352 425.2 350.7 434 348.3 442.4H348.3zM320 416V378.6C320 363.9 308.1 352 293.4 352H291.4C280.1 352 270.3 359.9 267.8 370.9C264.1 383.5 247 383.5 244.2 370.9C241.7 359.9 231.9 352 220.6 352H218.6C203.9 352 192 363.9 192 378.6V416C192 451.3 220.7 480 256 480C291.3 480 320 451.3 320 416z',
			),
		),
		'label'             => __( 'Face Grin Tongue Wink', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-wide'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM176 128C158.3 128 144 156.7 144 192C144 227.3 158.3 256 176 256C193.7 256 208 227.3 208 192C208 156.7 193.7 128 176 128zM336 256C353.7 256 368 227.3 368 192C368 156.7 353.7 128 336 128C318.3 128 304 156.7 304 192C304 227.3 318.3 256 336 256z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM224 192C224 227.3 209.7 256 192 256C174.3 256 160 227.3 160 192C160 156.7 174.3 128 192 128C209.7 128 224 156.7 224 192zM288 192C288 156.7 302.3 128 320 128C337.7 128 352 156.7 352 192C352 227.3 337.7 256 320 256C302.3 256 288 227.3 288 192zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin Wide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-grin-wink'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256.3 331.8C208.9 331.8 164.1 324.9 124.5 312.8C112.2 309 100.2 319.7 105.2 331.5C130.1 390.6 188.4 432 256.3 432C324.2 432 382.4 390.6 407.4 331.5C412.4 319.7 400.4 309 388.1 312.8C348.4 324.9 303.7 331.8 256.3 331.8H256.3zM393.6 236.8C400.7 231.5 402.1 221.5 396.8 214.4C366.4 173.9 305.6 173.9 275.2 214.4C269.9 221.5 271.3 231.5 278.4 236.8C285.5 242.1 295.5 240.7 300.8 233.6C318.4 210.1 353.6 210.1 371.2 233.6C376.5 240.7 386.5 242.1 393.6 236.8zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.5 308.4C368.2 303.1 385.4 320.4 374.1 336.5C350.4 374.6 306.3 399.1 255.9 399.1C205.6 399.1 161.5 374.6 136.9 336.5C126.5 320.4 143.7 303.1 162.3 308.4C191.3 315.1 222.8 318.8 255.9 318.8C289 318.8 320.6 315.1 349.5 308.4zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM281.9 230.6C273.9 223 273.5 210.4 281 202.3C295.6 186.8 316.3 180 335.6 180C354.1 180 375.7 186.8 390.2 202.3C397.8 210.4 397.4 223 389.3 230.6C381.2 238.1 368.6 237.7 361 229.7C355.6 223.8 346.3 220 335.6 220C324.1 220 315.7 223.8 310.2 229.7C302.7 237.7 290 238.1 281.9 230.6zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Grin Wink', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-kiss'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM287.9 300.3C274.7 292.9 257.4 288 240 288C236.4 288 233.2 290.5 232.3 293.1C231.3 297.5 232.9 301.2 236.1 302.1L236.1 302.1L236.3 303.1L236.8 303.4L237.2 303.7C238 304.1 239.2 304.9 240.6 305.8C243.4 307.6 247.2 310.3 250.8 313.4C254.6 316.5 258 319.1 260.5 323.4C262.1 326.1 264 329.8 264 332C264 334.2 262.1 337 260.5 340.6C258 344 254.6 347.5 250.8 350.6C247.2 353.7 243.4 356.4 240.6 358.2C239.2 359.1 238 359.9 237.2 360.3L236.6 360.7L236.3 360.9L236.1 361L236.1 361C233.6 362.4 232 365.1 232 368C232 370.9 233.6 373.6 236.1 374.1L236.1 374.1L236.3 375.1C236.5 375.2 236.8 375.4 237.2 375.7C238 376.1 239.2 376.9 240.6 377.8C243.4 379.6 247.2 382.3 250.8 385.4C254.6 388.5 258 391.9 260.5 395.4C262.1 398.1 264 401.8 264 403.1C264 406.2 262.1 409 260.5 412.6C258 416 254.6 419.5 250.8 422.6C247.2 425.7 243.4 428.4 240.6 430.2C239.2 431.1 238 431.9 237.2 432.3C236.8 432.6 236.5 432.8 236.3 432.9L236.1 432.1L236.1 433C232.9 434.8 231.3 438.5 232.3 442C233.2 445.5 236.4 447.1 240 447.1C257.4 447.1 274.7 443.1 287.9 435.7C294.5 432 300.4 427.5 304.7 422.3C308.9 417.2 312 410.9 312 403.1C312 397.1 308.9 390.8 304.7 385.7C300.4 380.5 294.5 375.1 287.9 372.3C285.2 370.7 282.3 369.3 279.2 367.1C282.3 366.7 285.2 365.3 287.9 363.7C294.5 360 300.4 355.5 304.7 350.3C308.9 345.2 312 338.9 312 331.1C312 325.1 308.9 318.8 304.7 313.7C300.4 308.5 294.5 303.1 287.9 300.3L287.9 300.3zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304.7 281.7C308.9 286.8 312 293.1 312 300C312 306.9 308.9 313.2 304.7 318.3C300.4 323.5 294.5 328 287.9 331.7C285.2 333.3 282.3 334.7 279.2 336C282.3 337.3 285.2 338.7 287.9 340.3C294.5 343.1 300.4 348.5 304.7 353.7C308.9 358.8 312 365.1 312 372C312 378.9 308.9 385.2 304.7 390.3C300.4 395.5 294.5 400 287.9 403.7C274.7 411.1 257.4 416 240 416C236.4 416 233.2 413.5 232.3 410C231.3 406.5 232.9 402.8 236.1 401L236.1 401L236.3 400.9C236.5 400.8 236.8 400.6 237.2 400.3C238 399.9 239.2 399.1 240.6 398.2C243.4 396.4 247.2 393.7 250.8 390.6C254.6 387.5 258 384 260.5 380.6C262.1 377 264 374.2 264 372C264 369.8 262.1 366.1 260.5 363.4C258 359.1 254.6 356.5 250.8 353.4C247.2 350.3 243.4 347.6 240.6 345.8C239.2 344.9 238 344.1 237.2 343.7L236.5 343.2L236.3 343.1L236.1 342.1L236.1 342.1C233.6 341.6 232 338.9 232 336C232 333.1 233.6 330.4 236.1 329L236.1 329L236.3 328.9C236.5 328.8 236.8 328.6 237.2 328.3C238 327.9 239.2 327.1 240.6 326.2C243.4 324.4 247.2 321.7 250.8 318.6C254.6 315.5 258 312.1 260.5 308.6C262.1 305 264 302.2 264 300C264 297.8 262.1 294.1 260.5 291.4C258 287.1 254.6 284.5 250.8 281.4C247.2 278.3 243.4 275.6 240.6 273.8C239.2 272.9 238 272.1 237.2 271.7C236.8 271.4 236.5 271.2 236.3 271.1L236.1 270.1L236.1 270.1C232.9 269.2 231.3 265.5 232.3 261.1C233.2 258.5 236.4 256 240 256C257.4 256 274.7 260.9 287.9 268.3C294.5 271.1 300.4 276.5 304.7 281.7V281.7zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Kiss', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-kiss-beam'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM287.9 300.3C274.7 292.9 257.4 288 240 288C236.4 288 233.2 290.5 232.3 293.1C231.3 297.5 232.9 301.2 236.1 302.1L236.1 302.1L236.3 303.1L236.8 303.4L237.2 303.7C238 304.1 239.2 304.9 240.6 305.8C243.4 307.6 247.2 310.3 250.8 313.4C254.6 316.5 258 319.1 260.5 323.4C262.1 326.1 264 329.8 264 332C264 334.2 262.1 337 260.5 340.6C258 344 254.6 347.5 250.8 350.6C247.2 353.7 243.4 356.4 240.6 358.2C239.2 359.1 238 359.9 237.2 360.3L236.6 360.7L236.3 360.9L236.1 361L236.1 361C233.6 362.4 232 365.1 232 368C232 370.9 233.6 373.6 236.1 374.1L236.1 374.1L236.3 375.1C236.5 375.2 236.8 375.4 237.2 375.7C238 376.1 239.2 376.9 240.6 377.8C243.4 379.6 247.2 382.3 250.8 385.4C254.6 388.5 258 391.9 260.5 395.4C262.1 398.1 264 401.8 264 403.1C264 406.2 262.1 409 260.5 412.6C258 416 254.6 419.5 250.8 422.6C247.2 425.7 243.4 428.4 240.6 430.2C239.2 431.1 238 431.9 237.2 432.3C236.8 432.6 236.5 432.8 236.3 432.9L236.1 432.1L236.1 433C232.9 434.8 231.3 438.5 232.3 442C233.2 445.5 236.4 447.1 240 447.1C257.4 447.1 274.7 443.1 287.9 435.7C294.5 432 300.4 427.5 304.7 422.3C308.9 417.2 312 410.9 312 403.1C312 397.1 308.9 390.8 304.7 385.7C300.4 380.5 294.5 375.1 287.9 372.3C285.2 370.7 282.3 369.3 279.2 367.1C282.3 366.7 285.2 365.3 287.9 363.7C294.5 360 300.4 355.5 304.7 350.3C308.9 345.2 312 338.9 312 331.1C312 325.1 308.9 318.8 304.7 313.7C300.4 308.5 294.5 303.1 287.9 300.3L287.9 300.3zM226.5 231.6C229.8 230.5 232 227.4 232 224C232 206.1 225.3 188.4 215.4 175.2C205.6 162.2 191.5 152 176 152C160.5 152 146.4 162.2 136.6 175.2C126.7 188.4 120 206.1 120 224C120 227.4 122.2 230.5 125.5 231.6C128.7 232.7 132.3 231.6 134.4 228.8L134.4 228.8L134.6 228.5C134.8 228.3 134.1 228 135.3 227.6C135.1 226.8 136.9 225.7 138.1 224.3C140.6 221.4 144.1 217.7 148.3 213.1C157.1 206.2 167.2 200 176 200C184.8 200 194.9 206.2 203.7 213.1C207.9 217.7 211.4 221.4 213.9 224.3C215.1 225.7 216 226.8 216.7 227.6C217 228 217.2 228.3 217.4 228.5L217.6 228.8L217.6 228.8C219.7 231.6 223.3 232.7 226.5 231.6V231.6zM377.6 228.8C379.7 231.6 383.3 232.7 386.5 231.6C389.8 230.5 392 227.4 392 224C392 206.1 385.3 188.4 375.4 175.2C365.6 162.2 351.5 152 336 152C320.5 152 306.4 162.2 296.6 175.2C286.7 188.4 280 206.1 280 224C280 227.4 282.2 230.5 285.5 231.6C288.7 232.7 292.3 231.6 294.4 228.8L294.4 228.8L294.6 228.5C294.8 228.3 294.1 228 295.3 227.6C295.1 226.8 296.9 225.7 298.1 224.3C300.6 221.4 304.1 217.7 308.3 213.1C317.1 206.2 327.2 200 336 200C344.8 200 354.9 206.2 363.7 213.1C367.9 217.7 371.4 221.4 373.9 224.3C375.1 225.7 376 226.8 376.7 227.6C377 228 377.2 228.3 377.4 228.5L377.6 228.8L377.6 228.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304.7 297.7C308.9 302.8 312 309.1 312 316C312 322.9 308.9 329.2 304.7 334.3C300.4 339.5 294.5 344 287.9 347.7C285.2 349.3 282.3 350.7 279.2 352C282.3 353.3 285.2 354.7 287.9 356.3C294.5 359.1 300.4 364.5 304.7 369.7C308.9 374.8 312 381.1 312 388C312 394.9 308.9 401.2 304.7 406.3C300.4 411.5 294.5 416 287.9 419.7C274.7 427.1 257.4 432 240 432C236.4 432 233.2 429.5 232.3 426C231.3 422.5 232.9 418.8 236.1 417L236.1 417L236.3 416.9C236.5 416.8 236.8 416.6 237.2 416.3C238 415.9 239.2 415.1 240.6 414.2C243.4 412.4 247.2 409.7 250.8 406.6C254.6 403.5 258 400 260.5 396.6C262.1 393 264 390.2 264 388C264 385.8 262.1 382.1 260.5 379.4C258 375.1 254.6 372.5 250.8 369.4C247.2 366.3 243.4 363.6 240.6 361.8C239.2 360.9 238 360.1 237.2 359.7C236.8 359.4 236.5 359.2 236.3 359.1L236.1 358.1L236.1 358.1C233.6 357.6 232 354.9 232 352C232 349.1 233.6 346.4 236.1 345L236.1 345L236.3 344.9C236.5 344.8 236.8 344.6 237.2 344.3C238 343.9 239.2 343.1 240.6 342.2C243.4 340.4 247.2 337.7 250.8 334.6C254.6 331.5 258 328.1 260.5 324.6C262.1 321 264 318.2 264 316C264 313.8 262.1 310.1 260.5 307.4C258 303.1 254.6 300.5 250.8 297.4C247.2 294.3 243.4 291.6 240.6 289.8C239.2 288.9 238 288.1 237.2 287.7C236.8 287.4 236.5 287.2 236.3 287.1L236.1 286.1L236.1 286.1C232.9 285.2 231.3 281.5 232.3 277.1C233.2 274.5 236.4 272 240 272C257.4 272 274.7 276.9 287.9 284.3C294.5 287.1 300.4 292.5 304.7 297.7L304.7 297.7zM217.6 228.8L217.6 228.8L217.4 228.5C217.2 228.3 217 228 216.7 227.6C216 226.8 215.1 225.7 213.9 224.3C211.4 221.4 207.9 217.7 203.7 213.1C194.9 206.2 184.8 200 176 200C167.2 200 157.1 206.2 148.3 213.1C144.1 217.7 140.6 221.4 138.1 224.3C136.9 225.7 135.1 226.8 135.3 227.6C134.1 228 134.8 228.3 134.6 228.5L134.4 228.8L134.4 228.8C132.3 231.6 128.7 232.7 125.5 231.6C122.2 230.5 120 227.4 120 224C120 206.1 126.7 188.4 136.6 175.2C146.4 162.2 160.5 152 176 152C191.5 152 205.6 162.2 215.4 175.2C225.3 188.4 232 206.1 232 224C232 227.4 229.8 230.5 226.5 231.6C223.3 232.7 219.7 231.6 217.6 228.8V228.8zM377.6 228.8L377.4 228.5C377.2 228.3 377 228 376.7 227.6C376 226.8 375.1 225.7 373.9 224.3C371.4 221.4 367.9 217.7 363.7 213.1C354.9 206.2 344.8 200 336 200C327.2 200 317.1 206.2 308.3 213.1C304.1 217.7 300.6 221.4 298.1 224.3C296.9 225.7 295.1 226.8 295.3 227.6C294.1 228 294.8 228.3 294.6 228.5L294.4 228.8L294.4 228.8C292.3 231.6 288.7 232.7 285.5 231.6C282.2 230.5 280 227.4 280 224C280 206.1 286.7 188.4 296.6 175.2C306.4 162.2 320.5 152 336 152C351.5 152 365.6 162.2 375.4 175.2C385.3 188.4 392 206.1 392 224C392 227.4 389.8 230.5 386.5 231.6C383.3 232.7 379.7 231.6 377.6 228.8L377.6 228.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Kiss Beam', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-kiss-wink-heart'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M461.8 334.6C448.1 300.8 411.5 280.3 374.3 290.7C334.2 301.9 312.4 343.8 322.4 382.8L345.3 472.1C347.3 479.7 350.9 486.4 355.7 491.8C325.1 504.8 291.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 285.3 507.1 313.4 498 339.7C486.9 334.1 474.5 333.1 461.8 334.6L461.8 334.6zM296 332C296 325.1 292.9 318.8 288.7 313.7C284.4 308.5 278.5 303.1 271.9 300.3C258.7 292.9 241.4 288 224 288C220.4 288 217.2 290.5 216.3 293.1C215.3 297.5 216.9 301.2 220.1 302.1L220.1 302.1L220.3 303.1C220.5 303.2 220.8 303.4 221.2 303.7C222 304.1 223.2 304.9 224.6 305.8C227.4 307.6 231.2 310.3 234.8 313.4C238.6 316.5 242 319.1 244.5 323.4C246.1 326.1 248 329.8 248 332C248 334.2 246.1 337 244.5 340.6C242 344 238.6 347.5 234.8 350.6C231.2 353.7 227.4 356.4 224.6 358.2C223.2 359.1 222 359.9 221.2 360.3C220.8 360.6 220.5 360.8 220.3 360.9L220.1 361L220.1 361C217.6 362.4 216 365.1 216 368C216 370.9 217.6 373.6 220.1 374.1L220.1 374.1L220.3 375.1L220.6 375.3L221.2 375.7C222 376.1 223.2 376.9 224.6 377.8C227.4 379.6 231.2 382.3 234.8 385.4C238.6 388.5 242 391.9 244.5 395.4C246.1 398.1 248 401.8 248 404C248 406.2 246.1 409 244.5 412.6C242 416 238.6 419.5 234.8 422.6C231.2 425.7 227.4 428.4 224.6 430.2C223.2 431.1 222 431.9 221.2 432.3C220.8 432.6 220.5 432.8 220.3 432.9L220.1 433L220.1 433C216.9 434.8 215.3 438.5 216.3 442C217.2 445.5 220.4 447.1 224 447.1C241.4 447.1 258.7 443.1 271.9 435.7C278.5 432 284.4 427.5 288.7 422.3C292.9 417.2 296 410.9 296 403.1C296 397.1 292.9 390.8 288.7 385.7C284.4 380.5 278.5 375.1 271.9 372.3C269.2 370.7 266.3 369.3 263.2 367.1C266.3 366.7 269.2 365.3 271.9 363.7C278.5 360 284.4 355.5 288.7 350.3C292.9 345.2 296 338.9 296 331.1V332zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240zM393.6 236.8C400.7 231.5 402.1 221.5 396.8 214.4C366.4 173.9 305.6 173.9 275.2 214.4C269.9 221.5 271.3 231.5 278.4 236.8C285.5 242.1 295.5 240.7 300.8 233.6C318.4 210.1 353.6 210.1 371.2 233.6C376.5 240.7 386.5 242.1 393.6 236.8zM439.4 373.3L459.5 367.6C481.7 361.4 504.6 375.2 510.6 398.4C516.5 421.7 503.3 445.6 481.1 451.8L396.1 475.6C387.5 478 378.6 472.9 376.3 464.2L353.4 374.9C347.5 351.6 360.7 327.7 382.9 321.5C405.2 315.3 428 329.1 433.1 352.3L439.4 373.3z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M345.3 472.1C347.3 479.7 350.9 486.4 355.7 491.8C325.1 504.8 291.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 285.3 507.1 313.4 498 339.7C486.9 334.1 474.5 333.1 461.8 334.6C459.7 329.4 457 324.6 453.9 320.1C460.5 299.9 464 278.4 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C285.4 464 313.5 457.9 338.9 446.8L345.3 472.1zM288.7 334.3C284.4 339.5 278.5 344 271.9 347.7C269.2 349.3 266.3 350.7 263.2 352C266.3 353.3 269.2 354.7 271.9 356.3C278.5 359.1 284.4 364.5 288.7 369.7C292.9 374.8 296 381.1 296 388C296 394.9 292.9 401.2 288.7 406.3C284.4 411.5 278.5 416 271.9 419.7C258.7 427.1 241.4 432 224 432C220.4 432 217.2 429.5 216.3 426C215.3 422.5 216.9 418.8 220.1 417L220.1 417L220.3 416.9C220.5 416.8 220.8 416.6 221.2 416.3C222 415.9 223.2 415.1 224.6 414.2C227.4 412.4 231.2 409.7 234.8 406.6C238.6 403.5 242 400 244.5 396.6C246.1 393 248 390.2 248 388C248 385.8 246.1 382.1 244.5 379.4C242 375.1 238.6 372.5 234.8 369.4C231.2 366.3 227.4 363.6 224.6 361.8C223.2 360.9 222 360.1 221.2 359.7C220.8 359.4 220.5 359.2 220.3 359.1L220.1 358.1L220.1 358.1C217.6 357.6 216 354.9 216 352C216 349.1 217.6 346.4 220.1 345L220.1 345L220.3 344.9C220.5 344.8 220.8 344.6 221.2 344.3C222 343.9 223.2 343.1 224.6 342.2C227.4 340.4 231.2 337.7 234.8 334.6C238.6 331.5 242 328.1 244.5 324.6C246.1 321 248 318.2 248 316C248 313.8 246.1 310.1 244.5 307.4C242 303.1 238.6 300.5 234.8 297.4C231.2 294.3 227.4 291.6 224.6 289.8C223.2 288.9 222 288.1 221.2 287.7C220.8 287.4 220.5 287.2 220.3 287.1L220.1 286.1L220.1 286.1C216.9 285.2 215.3 281.5 216.3 277.1C217.2 274.5 220.4 272 224 272C241.4 272 258.7 276.9 271.9 284.3C278.5 287.1 284.4 292.5 288.7 297.7C292.9 302.8 296 309.1 296 316C296 322.9 292.9 329.2 288.7 334.3V334.3zM144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208zM335.6 220C324.1 220 315.7 223.8 310.2 229.7C302.7 237.7 290 238.1 281.9 230.6C273.9 223 273.5 210.4 281 202.3C295.6 186.8 316.3 180 335.6 180C354.1 180 375.7 186.8 390.2 202.3C397.8 210.4 397.4 223 389.3 230.6C381.2 238.1 368.6 237.7 361 229.7C355.6 223.8 346.3 220 335.6 220zM439.4 373.3L459.5 367.6C481.7 361.4 504.6 375.2 510.6 398.4C516.5 421.7 503.3 445.6 481.1 451.8L396.1 475.6C387.5 478 378.6 472.9 376.3 464.2L353.4 374.9C347.5 351.6 360.7 327.7 382.9 321.5C405.2 315.3 428 329.1 433.1 352.3L439.4 373.3z',
			),
		),
		'label'             => __( 'Face Kiss Wink Heart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'lifestyle-and-hobbies' ),
	),
	'face-laugh'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 432C332.1 432 396.2 382 415.2 314.1C419.1 300.4 407.8 288 393.6 288H118.4C104.2 288 92.92 300.4 96.76 314.1C115.8 382 179.9 432 256 432V432zM176.4 160C158.7 160 144.4 174.3 144.4 192C144.4 209.7 158.7 224 176.4 224C194 224 208.4 209.7 208.4 192C208.4 174.3 194 160 176.4 160zM336.4 224C354 224 368.4 209.7 368.4 192C368.4 174.3 354 160 336.4 160C318.7 160 304.4 174.3 304.4 192C304.4 209.7 318.7 224 336.4 224z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M130.7 313.9C126.5 300.4 137.8 288 151.1 288H364.5C378.7 288 389.9 300.4 385.8 313.9C368.1 368.4 318.2 408 258.2 408C198.2 408 147.5 368.4 130.7 313.9V313.9zM208.4 192C208.4 209.7 194 224 176.4 224C158.7 224 144.4 209.7 144.4 192C144.4 174.3 158.7 160 176.4 160C194 160 208.4 174.3 208.4 192zM304.4 192C304.4 174.3 318.7 160 336.4 160C354 160 368.4 174.3 368.4 192C368.4 209.7 354 224 336.4 224C318.7 224 304.4 209.7 304.4 192zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Laugh', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-laugh-beam'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 432C332.1 432 396.2 382 415.2 314.1C419.1 300.4 407.8 288 393.6 288H118.4C104.2 288 92.92 300.4 96.76 314.1C115.8 382 179.9 432 256 432V432zM226.5 215.6C229.8 214.5 232 211.4 232 208C232 190.1 225.3 172.4 215.4 159.2C205.6 146.2 191.5 136 176 136C160.5 136 146.4 146.2 136.6 159.2C126.7 172.4 120 190.1 120 208C120 211.4 122.2 214.5 125.5 215.6C128.7 216.7 132.3 215.6 134.4 212.8L134.4 212.8L134.6 212.5C134.8 212.3 134.1 212 135.3 211.6C135.1 210.8 136.9 209.7 138.1 208.3C140.6 205.4 144.1 201.7 148.3 197.1C157.1 190.2 167.2 184 176 184C184.8 184 194.9 190.2 203.7 197.1C207.9 201.7 211.4 205.4 213.9 208.3C215.1 209.7 216 210.8 216.7 211.6C217 212 217.2 212.3 217.4 212.5L217.6 212.8L217.6 212.8C219.7 215.6 223.3 216.7 226.5 215.6V215.6zM377.6 212.8C379.7 215.6 383.3 216.7 386.5 215.6C389.8 214.5 392 211.4 392 208C392 190.1 385.3 172.4 375.4 159.2C365.6 146.2 351.5 136 336 136C320.5 136 306.4 146.2 296.6 159.2C286.7 172.4 280 190.1 280 208C280 211.4 282.2 214.5 285.5 215.6C288.7 216.7 292.3 215.6 294.4 212.8L294.4 212.8L294.6 212.5C294.8 212.3 294.1 212 295.3 211.6C295.1 210.8 296.9 209.7 298.1 208.3C300.6 205.4 304.1 201.7 308.3 197.1C317.1 190.2 327.2 184 336 184C344.8 184 354.9 190.2 363.7 197.1C367.9 201.7 371.4 205.4 373.9 208.3C375.1 209.7 376 210.8 376.7 211.6C377 212 377.2 212.3 377.4 212.5L377.6 212.8L377.6 212.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M130.7 313.9C126.5 300.4 137.8 288 151.1 288H364.5C378.7 288 389.9 300.4 385.8 313.9C368.1 368.4 318.2 408 258.2 408C198.2 408 147.5 368.4 130.7 313.9V313.9zM217.6 228.8L217.6 228.8L217.4 228.5C217.2 228.3 217 228 216.7 227.6C216 226.8 215.1 225.7 213.9 224.3C211.4 221.4 207.9 217.7 203.7 213.1C194.9 206.2 184.8 200 176 200C167.2 200 157.1 206.2 148.3 213.1C144.1 217.7 140.6 221.4 138.1 224.3C136.9 225.7 135.1 226.8 135.3 227.6C134.1 228 134.8 228.3 134.6 228.5L134.4 228.8L134.4 228.8C132.3 231.6 128.7 232.7 125.5 231.6C122.2 230.5 120 227.4 120 224C120 206.1 126.7 188.4 136.6 175.2C146.4 162.2 160.5 152 176 152C191.5 152 205.6 162.2 215.4 175.2C225.3 188.4 232 206.1 232 224C232 227.4 229.8 230.5 226.5 231.6C223.3 232.7 219.7 231.6 217.6 228.8V228.8zM377.6 228.8L377.4 228.5C377.2 228.3 377 228 376.7 227.6C376 226.8 375.1 225.7 373.9 224.3C371.4 221.4 367.9 217.7 363.7 213.1C354.9 206.2 344.8 200 336 200C327.2 200 317.1 206.2 308.3 213.1C304.1 217.7 300.6 221.4 298.1 224.3C296.9 225.7 295.1 226.8 295.3 227.6C294.1 228 294.8 228.3 294.6 228.5L294.4 228.8L294.4 228.8C292.3 231.6 288.7 232.7 285.5 231.6C282.2 230.5 280 227.4 280 224C280 206.1 286.7 188.4 296.6 175.2C306.4 162.2 320.5 152 336 152C351.5 152 365.6 162.2 375.4 175.2C385.3 188.4 392 206.1 392 224C392 227.4 389.8 230.5 386.5 231.6C383.3 232.7 379.7 231.6 377.6 228.8L377.6 228.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Laugh Beam', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-laugh-squint'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 432C332.1 432 396.2 382 415.2 314.1C419.1 300.4 407.8 288 393.6 288H118.4C104.2 288 92.92 300.4 96.76 314.1C115.8 382 179.9 432 256 432V432zM133.5 114.7C125.6 110.4 116 116.2 116 125.1C116 127.9 116.1 130.6 118.8 132.8L154.8 176L118.8 219.2C116.1 221.4 116 224.1 116 226.9C116 235.8 125.6 241.6 133.5 237.3L223.4 189.4C234.1 183.7 234.1 168.3 223.4 162.6L133.5 114.7zM396 125.1C396 116.2 386.4 110.4 378.5 114.7L288.6 162.6C277.9 168.3 277.9 183.7 288.6 189.4L378.5 237.3C386.4 241.6 396 235.8 396 226.9C396 224.1 395 221.4 393.2 219.2L357.2 176L393.2 132.8C395 130.6 396 127.9 396 125.1V125.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M130.7 313.9C126.5 300.4 137.8 288 151.1 288H364.5C378.7 288 389.9 300.4 385.8 313.9C368.1 368.4 318.2 408 258.2 408C198.2 408 147.5 368.4 130.7 313.9V313.9zM223.4 178.6C234.1 184.3 234.1 199.7 223.4 205.4L133.5 253.3C125.6 257.6 116 251.8 116 242.9C116 240.1 116.1 237.4 118.8 235.2L154.8 192L118.8 148.8C116.1 146.6 116 143.9 116 141.1C116 132.2 125.6 126.4 133.5 130.7L223.4 178.6zM393.2 148.8L357.2 192L393.2 235.2C395 237.4 396 240.1 396 242.9C396 251.8 386.4 257.6 378.5 253.3L288.6 205.4C277.9 199.7 277.9 184.3 288.6 178.6L378.5 130.7C386.4 126.4 396 132.2 396 141.1C396 143.9 395 146.6 393.2 148.8V148.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Laugh Squint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-laugh-wink'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 432C332.1 432 396.2 382 415.2 314.1C419.1 300.4 407.8 288 393.6 288H118.4C104.2 288 92.92 300.4 96.76 314.1C115.8 382 179.9 432 256 432V432zM176.4 160C158.7 160 144.4 174.3 144.4 192C144.4 209.7 158.7 224 176.4 224C194 224 208.4 209.7 208.4 192C208.4 174.3 194 160 176.4 160zM300.8 217.6C318.4 194.1 353.6 194.1 371.2 217.6C376.5 224.7 386.5 226.1 393.6 220.8C400.7 215.5 402.1 205.5 396.8 198.4C366.4 157.9 305.6 157.9 275.2 198.4C269.9 205.5 271.3 215.5 278.4 220.8C285.5 226.1 295.5 224.7 300.8 217.6z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M130.7 313.9C126.5 300.4 137.8 288 151.1 288H364.5C378.7 288 389.9 300.4 385.8 313.9C368.1 368.4 318.2 408 258.2 408C198.2 408 147.5 368.4 130.7 313.9V313.9zM208.4 192C208.4 209.7 194 224 176.4 224C158.7 224 144.4 209.7 144.4 192C144.4 174.3 158.7 160 176.4 160C194 160 208.4 174.3 208.4 192zM281.9 214.6C273.9 207 273.5 194.4 281 186.3C295.6 170.8 316.3 164 335.6 164C354.1 164 375.7 170.8 390.2 186.3C397.8 194.4 397.4 207 389.3 214.6C381.2 222.1 368.6 221.7 361 213.7C355.6 207.8 346.3 204 335.6 204C324.1 204 315.7 207.8 310.2 213.7C302.7 221.7 290 222.1 281.9 214.6zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Laugh Wink', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-meh'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240zM336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176zM160 336C151.2 336 144 343.2 144 352C144 360.8 151.2 368 160 368H352C360.8 368 368 360.8 368 352C368 343.2 360.8 336 352 336H160z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208zM368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208zM328 328C341.3 328 352 338.7 352 352C352 365.3 341.3 376 328 376H184C170.7 376 160 365.3 160 352C160 338.7 170.7 328 184 328H328zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464z',
			),
		),
		'label'             => __( 'Face Meh', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'face-meh-blank'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Meh Blank', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-rolling-eyes'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM192 368C183.2 368 176 375.2 176 384C176 392.8 183.2 400 192 400H320C328.8 400 336 392.8 336 384C336 375.2 328.8 368 320 368H192zM186.2 165.6C189.8 170.8 192 177.1 192 184C192 201.7 177.7 216 160 216C142.3 216 128 201.7 128 184C128 177.1 130.2 170.8 133.8 165.6C111.5 175.6 96 197.1 96 224C96 259.3 124.7 288 160 288C195.3 288 224 259.3 224 224C224 197.1 208.5 175.6 186.2 165.6zM352 288C387.3 288 416 259.3 416 224C416 197.1 400.5 175.6 378.2 165.6C381.8 170.8 384 177.1 384 184C384 201.7 369.7 216 352 216C334.3 216 320 201.7 320 184C320 177.1 322.2 170.8 325.8 165.6C303.5 175.6 288 197.1 288 224C288 259.3 316.7 288 352 288z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M168 376C168 362.7 178.7 352 192 352H320C333.3 352 344 362.7 344 376C344 389.3 333.3 400 320 400H192C178.7 400 168 389.3 168 376zM80 224C80 179.8 115.8 144 160 144C204.2 144 240 179.8 240 224C240 268.2 204.2 304 160 304C115.8 304 80 268.2 80 224zM160 272C186.5 272 208 250.5 208 224C208 209.7 201.7 196.8 191.8 188C191.9 189.3 192 190.6 192 192C192 209.7 177.7 224 160 224C142.3 224 128 209.7 128 192C128 190.6 128.1 189.3 128.2 188C118.3 196.8 112 209.7 112 224C112 250.5 133.5 272 160 272V272zM272 224C272 179.8 307.8 144 352 144C396.2 144 432 179.8 432 224C432 268.2 396.2 304 352 304C307.8 304 272 268.2 272 224zM352 272C378.5 272 400 250.5 400 224C400 209.7 393.7 196.8 383.8 188C383.9 189.3 384 190.6 384 192C384 209.7 369.7 224 352 224C334.3 224 320 209.7 320 192C320 190.6 320.1 189.3 320.2 188C310.3 196.8 304 209.7 304 224C304 250.5 325.5 272 352 272zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464z',
			),
		),
		'label'             => __( 'Face Rolling Eyes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-sad-cry'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 493.4C322.4 505.4 289.9 512 256 512C222.1 512 189.6 505.4 160 493.4V288C160 279.2 152.8 272 144 272C135.2 272 128 279.2 128 288V477.8C51.48 433.5 0 350.8 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 350.8 460.5 433.5 384 477.8V288C384 279.2 376.8 272 368 272C359.2 272 352 279.2 352 288V493.4zM217.6 236.8C224.7 231.5 226.1 221.5 220.8 214.4C190.4 173.9 129.6 173.9 99.2 214.4C93.9 221.5 95.33 231.5 102.4 236.8C109.5 242.1 119.5 240.7 124.8 233.6C142.4 210.1 177.6 210.1 195.2 233.6C200.5 240.7 210.5 242.1 217.6 236.8zM316.8 233.6C334.4 210.1 369.6 210.1 387.2 233.6C392.5 240.7 402.5 242.1 409.6 236.8C416.7 231.5 418.1 221.5 412.8 214.4C382.4 173.9 321.6 173.9 291.2 214.4C285.9 221.5 287.3 231.5 294.4 236.8C301.5 242.1 311.5 240.7 316.8 233.6zM208 368C208 394.5 229.5 416 256 416C282.5 416 304 394.5 304 368V336C304 309.5 282.5 288 256 288C229.5 288 208 309.5 208 336V368z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.6 220C148.1 220 139.7 223.8 134.2 229.7C126.7 237.7 114 238.1 105.1 230.6C97.89 223 97.48 210.4 105 202.3C119.6 186.8 140.3 180 159.6 180C178.1 180 199.7 186.8 214.2 202.3C221.8 210.4 221.4 223 213.3 230.6C205.2 238.1 192.6 237.7 185 229.7C179.6 223.8 170.3 220 159.6 220zM297.9 230.6C289.9 223 289.5 210.4 297 202.3C311.6 186.8 332.3 180 351.6 180C370.1 180 391.7 186.8 406.2 202.3C413.8 210.4 413.4 223 405.3 230.6C397.2 238.1 384.6 237.7 377 229.7C371.6 223.8 362.3 220 351.6 220C340.1 220 331.7 223.8 326.2 229.7C318.7 237.7 306 238.1 297.9 230.6zM208 320C208 293.5 229.5 272 256 272C282.5 272 304 293.5 304 320V352C304 378.5 282.5 400 256 400C229.5 400 208 378.5 208 352V320zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM400 406.1C439.4 368.2 464 314.1 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 314.1 72.55 368.2 112 406.1V288C112 274.7 122.7 264 136 264C149.3 264 160 274.7 160 288V440.6C188.7 455.5 221.4 464 256 464C290.6 464 323.3 455.5 352 440.6V288C352 274.7 362.7 264 376 264C389.3 264 400 274.7 400 288V406.1z',
			),
		),
		'label'             => __( 'Face Sad Cry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-sad-tear'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM256 352C290.9 352 323.2 367.8 348.3 394.9C354.3 401.4 364.4 401.7 370.9 395.7C377.4 389.7 377.7 379.6 371.7 373.1C341.6 340.5 301 320 256 320C247.2 320 240 327.2 240 336C240 344.8 247.2 352 256 352H256zM208 369C208 349 179.6 308.6 166.4 291.3C163.2 286.9 156.8 286.9 153.6 291.3C140.6 308.6 112 349 112 369C112 395 133.5 416 160 416C186.5 416 208 395 208 369H208zM303.6 208C303.6 225.7 317.1 240 335.6 240C353.3 240 367.6 225.7 367.6 208C367.6 190.3 353.3 176 335.6 176C317.1 176 303.6 190.3 303.6 208zM207.6 208C207.6 190.3 193.3 176 175.6 176C157.1 176 143.6 190.3 143.6 208C143.6 225.7 157.1 240 175.6 240C193.3 240 207.6 225.7 207.6 208z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M169.6 291.3C172.8 286.9 179.2 286.9 182.4 291.3C195.6 308.6 223.1 349 223.1 369C223.1 395 202.5 416 175.1 416C149.5 416 127.1 395 127.1 369C127.1 349 156.6 308.6 169.6 291.3H169.6zM368 346.8C377.9 355.6 378.7 370.8 369.9 380.7C361 390.6 345.9 391.4 335.1 382.6C314.7 363.5 286.7 352 256 352C242.7 352 232 341.3 232 328C232 314.7 242.7 304 256 304C299 304 338.3 320.2 368 346.8L368 346.8zM335.6 176C353.3 176 367.6 190.3 367.6 208C367.6 225.7 353.3 240 335.6 240C317.1 240 303.6 225.7 303.6 208C303.6 190.3 317.1 176 335.6 176zM175.6 240C157.1 240 143.6 225.7 143.6 208C143.6 190.3 157.1 176 175.6 176C193.3 176 207.6 190.3 207.6 208C207.6 225.7 193.3 240 175.6 240zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM175.9 448C200.5 458.3 227.6 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256C48 308.7 67.59 356.8 99.88 393.4C110.4 425.4 140.9 447.9 175.9 448V448z',
			),
		),
		'label'             => __( 'Face Sad Tear', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-smile'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM164.1 325.5C158.3 318.8 148.2 318.1 141.5 323.9C134.8 329.7 134.1 339.8 139.9 346.5C162.1 372.1 200.9 400 255.1 400C311.1 400 349.8 372.1 372.1 346.5C377.9 339.8 377.2 329.7 370.5 323.9C363.8 318.1 353.7 318.8 347.9 325.5C329.9 346.2 299.4 368 255.1 368C212.6 368 182 346.2 164.1 325.5H164.1zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 352C293.2 352 319.2 334.5 334.4 318.1C343.3 308.4 358.5 307.7 368.3 316.7C378 325.7 378.6 340.9 369.6 350.6C347.7 374.5 309.7 400 256 400C202.3 400 164.3 374.5 142.4 350.6C133.4 340.9 133.1 325.7 143.7 316.7C153.5 307.7 168.7 308.4 177.6 318.1C192.8 334.5 218.8 352 256 352zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Smile', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'face-smile-beam'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM164.1 325.5C158.3 318.8 148.2 318.1 141.5 323.9C134.8 329.7 134.1 339.8 139.9 346.5C162.1 372.1 200.9 400 255.1 400C311.1 400 349.8 372.1 372.1 346.5C377.9 339.8 377.2 329.7 370.5 323.9C363.8 318.1 353.7 318.8 347.9 325.5C329.9 346.2 299.4 368 255.1 368C212.6 368 182 346.2 164.1 325.5H164.1zM226.5 231.6C229.8 230.5 232 227.4 232 224C232 206.1 225.3 188.4 215.4 175.2C205.6 162.2 191.5 152 176 152C160.5 152 146.4 162.2 136.6 175.2C126.7 188.4 120 206.1 120 224C120 227.4 122.2 230.5 125.5 231.6C128.7 232.7 132.3 231.6 134.4 228.8L134.4 228.8L134.6 228.5C134.8 228.3 134.1 228 135.3 227.6C135.1 226.8 136.9 225.7 138.1 224.3C140.6 221.4 144.1 217.7 148.3 213.1C157.1 206.2 167.2 200 176 200C184.8 200 194.9 206.2 203.7 213.1C207.9 217.7 211.4 221.4 213.9 224.3C215.1 225.7 216 226.8 216.7 227.6C217 228 217.2 228.3 217.4 228.5L217.6 228.8L217.6 228.8C219.7 231.6 223.3 232.7 226.5 231.6V231.6zM377.6 228.8C379.7 231.6 383.3 232.7 386.5 231.6C389.8 230.5 392 227.4 392 224C392 206.1 385.3 188.4 375.4 175.2C365.6 162.2 351.5 152 336 152C320.5 152 306.4 162.2 296.6 175.2C286.7 188.4 280 206.1 280 224C280 227.4 282.2 230.5 285.5 231.6C288.7 232.7 292.3 231.6 294.4 228.8L294.4 228.8L294.6 228.5C294.8 228.3 294.1 228 295.3 227.6C295.1 226.8 296.9 225.7 298.1 224.3C300.6 221.4 304.1 217.7 308.3 213.1C317.1 206.2 327.2 200 336 200C344.8 200 354.9 206.2 363.7 213.1C367.9 217.7 371.4 221.4 373.9 224.3C375.1 225.7 376 226.8 376.7 227.6C377 228 377.2 228.3 377.4 228.5L377.6 228.8L377.6 228.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 352C293.2 352 319.2 334.5 334.4 318.1C343.3 308.4 358.5 307.7 368.3 316.7C378 325.7 378.6 340.9 369.6 350.6C347.7 374.5 309.7 400 256 400C202.3 400 164.3 374.5 142.4 350.6C133.4 340.9 133.1 325.7 143.7 316.7C153.5 307.7 168.7 308.4 177.6 318.1C192.8 334.5 218.8 352 256 352zM217.6 228.8L217.6 228.8L217.4 228.5C217.2 228.3 217 228 216.7 227.6C216 226.8 215.1 225.7 213.9 224.3C211.4 221.4 207.9 217.7 203.7 213.1C194.9 206.2 184.8 200 176 200C167.2 200 157.1 206.2 148.3 213.1C144.1 217.7 140.6 221.4 138.1 224.3C136.9 225.7 135.1 226.8 135.3 227.6C134.1 228 134.8 228.3 134.6 228.5L134.4 228.8L134.4 228.8C132.3 231.6 128.7 232.7 125.5 231.6C122.2 230.5 120 227.4 120 224C120 206.1 126.7 188.4 136.6 175.2C146.4 162.2 160.5 152 176 152C191.5 152 205.6 162.2 215.4 175.2C225.3 188.4 232 206.1 232 224C232 227.4 229.8 230.5 226.5 231.6C223.3 232.7 219.7 231.6 217.6 228.8V228.8zM377.6 228.8L377.4 228.5C377.2 228.3 377 228 376.7 227.6C376 226.8 375.1 225.7 373.9 224.3C371.4 221.4 367.9 217.7 363.7 213.1C354.9 206.2 344.8 200 336 200C327.2 200 317.1 206.2 308.3 213.1C304.1 217.7 300.6 221.4 298.1 224.3C296.9 225.7 295.1 226.8 295.3 227.6C294.1 228 294.8 228.3 294.6 228.5L294.4 228.8L294.4 228.8C292.3 231.6 288.7 232.7 285.5 231.6C282.2 230.5 280 227.4 280 224C280 206.1 286.7 188.4 296.6 175.2C306.4 162.2 320.5 152 336 152C351.5 152 365.6 162.2 375.4 175.2C385.3 188.4 392 206.1 392 224C392 227.4 389.8 230.5 386.5 231.6C383.3 232.7 379.7 231.6 377.6 228.8L377.6 228.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Smile Beam', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-smile-wink'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM164.1 325.5C158.3 318.8 148.2 318.1 141.5 323.9C134.8 329.7 134.1 339.8 139.9 346.5C162.1 372.1 200.9 400 255.1 400C311.1 400 349.8 372.1 372.1 346.5C377.9 339.8 377.2 329.7 370.5 323.9C363.8 318.1 353.7 318.8 347.9 325.5C329.9 346.2 299.4 368 255.1 368C212.6 368 182 346.2 164.1 325.5H164.1zM176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176zM300.8 233.6C318.4 210.1 353.6 210.1 371.2 233.6C376.5 240.7 386.5 242.1 393.6 236.8C400.7 231.5 402.1 221.5 396.8 214.4C366.4 173.9 305.6 173.9 275.2 214.4C269.9 221.5 271.3 231.5 278.4 236.8C285.5 242.1 295.5 240.7 300.8 233.6z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 352C293.2 352 319.2 334.5 334.4 318.1C343.3 308.4 358.5 307.7 368.3 316.7C378 325.7 378.6 340.9 369.6 350.6C347.7 374.5 309.7 400 256 400C202.3 400 164.3 374.5 142.4 350.6C133.4 340.9 133.1 325.7 143.7 316.7C153.5 307.7 168.7 308.4 177.6 318.1C192.8 334.5 218.8 352 256 352zM208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208zM281.9 230.6C273.9 223 273.5 210.4 281 202.3C295.6 186.8 316.3 180 335.6 180C354.1 180 375.7 186.8 390.2 202.3C397.8 210.4 397.4 223 389.3 230.6C381.2 238.1 368.6 237.7 361 229.7C355.6 223.8 346.3 220 335.6 220C324.1 220 315.7 223.8 310.2 229.7C302.7 237.7 290 238.1 281.9 230.6zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Smile Wink', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-surprise'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM176.4 240C194 240 208.4 225.7 208.4 208C208.4 190.3 194 176 176.4 176C158.7 176 144.4 190.3 144.4 208C144.4 225.7 158.7 240 176.4 240zM336.4 176C318.7 176 304.4 190.3 304.4 208C304.4 225.7 318.7 240 336.4 240C354 240 368.4 225.7 368.4 208C368.4 190.3 354 176 336.4 176zM256 416C291.3 416 320 387.3 320 352C320 316.7 291.3 288 256 288C220.7 288 192 316.7 192 352C192 387.3 220.7 416 256 416z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M144.4 208C144.4 190.3 158.7 176 176.4 176C194 176 208.4 190.3 208.4 208C208.4 225.7 194 240 176.4 240C158.7 240 144.4 225.7 144.4 208zM368.4 208C368.4 225.7 354 240 336.4 240C318.7 240 304.4 225.7 304.4 208C304.4 190.3 318.7 176 336.4 176C354 176 368.4 190.3 368.4 208zM192 352C192 316.7 220.7 288 256 288C291.3 288 320 316.7 320 352C320 387.3 291.3 416 256 416C220.7 416 192 387.3 192 352zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Surprise', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'face-tired'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM138.3 364.1C132.2 375.8 128 388.4 128 400C128 405.2 130.6 410.2 134.9 413.2C139.2 416.1 144.7 416.8 149.6 414.1L170.2 407.3C197.1 397.2 225.6 392 254.4 392H257.6C286.4 392 314.9 397.2 341.8 407.3L362.4 414.1C367.3 416.8 372.8 416.1 377.1 413.2C381.4 410.2 384 405.2 384 400C384 388.4 379.8 375.8 373.7 364.1C367.4 352.1 358.4 339.8 347.3 328.7C325.3 306.7 293.4 287.1 256 287.1C218.6 287.1 186.7 306.7 164.7 328.7C153.6 339.8 144.6 352.1 138.3 364.1H138.3zM133.5 146.7C125.6 142.4 116 148.2 116 157.1C116 159.9 116.1 162.6 118.8 164.8L154.8 208L118.8 251.2C116.1 253.4 116 256.1 116 258.9C116 267.8 125.6 273.6 133.5 269.3L223.4 221.4C234.1 215.7 234.1 200.3 223.4 194.6L133.5 146.7zM396 157.1C396 148.2 386.4 142.4 378.5 146.7L288.6 194.6C277.9 200.3 277.9 215.7 288.6 221.4L378.5 269.3C386.4 273.6 396 267.8 396 258.9C396 256.1 395 253.4 393.2 251.2L357.2 208L393.2 164.8C395 162.6 396 159.9 396 157.1V157.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M176.5 320.3C196.1 302.1 223.8 288 256 288C288.2 288 315.9 302.1 335.5 320.3C354.5 338.1 368 362 368 384C368 389.4 365.3 394.4 360.8 397.4C356.2 400.3 350.5 400.8 345.6 398.7L328.4 391.1C305.6 381.2 280.9 376 256 376C231.1 376 206.4 381.2 183.6 391.1L166.4 398.7C161.5 400.8 155.8 400.3 151.2 397.4C146.7 394.4 144 389.4 144 384C144 362 157.5 338.1 176.5 320.3zM223.4 194.6C234.1 200.3 234.1 215.7 223.4 221.4L133.5 269.3C125.6 273.6 116 267.8 116 258.9C116 256.1 116.1 253.4 118.8 251.2L154.8 208L118.8 164.8C116.1 162.6 116 159.9 116 157.1C116 148.2 125.6 142.4 133.5 146.7L223.4 194.6zM393.2 164.8L357.2 208L393.2 251.2C395 253.4 396 256.1 396 258.9C396 267.8 386.4 273.6 378.5 269.3L288.6 221.4C277.9 215.7 277.9 200.3 288.6 194.6L378.5 146.7C386.4 142.4 396 148.2 396 157.1C396 159.9 395 162.6 393.2 164.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Face Tired', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'facebook'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M504 256C504 119 393 8 256 8S8 119 8 256c0 123.8 90.69 226.4 209.3 245V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.3 482.4 504 379.8 504 256z',
			),
		),
		'label'             => __( 'Facebook', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'facebook-f'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M279.1 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.4 0 225.4 0c-73.22 0-121.1 44.38-121.1 124.7v70.62H22.89V288h81.39v224h100.2V288z',
			),
		),
		'label'             => __( 'Facebook F', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'facebook-messenger'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256.5 8C116.5 8 8 110.3 8 248.6c0 72.3 29.71 134.8 78.07 177.9 8.35 7.51 6.63 11.86 8.05 58.23A19.92 19.92 0 0 0 122 502.3c52.91-23.3 53.59-25.14 62.56-22.7C337.9 521.8 504 423.7 504 248.6 504 110.3 396.6 8 256.5 8zm149.2 185.1l-73 115.6a37.37 37.37 0 0 1 -53.91 9.93l-58.08-43.47a15 15 0 0 0 -18 0l-78.37 59.44c-10.46 7.93-24.16-4.6-17.11-15.67l73-115.6a37.36 37.36 0 0 1 53.91-9.93l58.06 43.46a15 15 0 0 0 18 0l78.41-59.38c10.44-7.98 24.14 4.54 17.09 15.62z',
			),
		),
		'label'             => __( 'Facebook Messenger', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'facebook-square'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.3V327.7h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0 -48-48z',
			),
		),
		'label'             => __( 'Facebook Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'fan'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352.6 127.1c-28.12 0-54.13 4.5-77.13 12.88l12.38-123.1c1.125-10.5-8.125-18.88-18.5-17.63C189.6 10.12 127.1 77.62 127.1 159.4c0 28.12 4.5 54.13 12.88 77.13L17.75 224.1c-10.5-1.125-18.88 8.125-17.63 18.5c9.1 79.75 77.5 141.4 159.3 141.4c28.12 0 54.13-4.5 77.13-12.88l-12.38 123.1c-1.125 10.38 8.125 18.88 18.5 17.63c79.75-10 141.4-77.5 141.4-159.3c0-28.12-4.5-54.13-12.88-77.13l123.1 12.38c10.5 1.125 18.88-8.125 17.63-18.5C501.9 189.6 434.4 127.1 352.6 127.1zM255.1 287.1c-17.62 0-31.1-14.38-31.1-32s14.37-32 31.1-32s31.1 14.38 31.1 32S273.6 287.1 255.1 287.1z',
			),
		),
		'label'             => __( 'Fan', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'fantasy-flight-games'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 32.86L32.86 256 256 479.1 479.1 256 256 32.86zM88.34 255.8c1.96-2 11.92-12.3 96.49-97.48 41.45-41.75 86.19-43.77 119.8-18.69 24.63 18.4 62.06 58.9 62.15 59 .68 .74 1.07 2.86 .58 3.38-11.27 11.84-22.68 23.54-33.5 34.69-34.21-32.31-40.52-38.24-48.51-43.95-17.77-12.69-41.4-10.13-56.98 5.1-2.17 2.13-1.79 3.43 .12 5.35 2.94 2.95 28.1 28.33 35.09 35.78-11.95 11.6-23.66 22.97-35.69 34.66-12.02-12.54-24.48-25.53-36.54-38.11-21.39 21.09-41.69 41.11-61.85 60.99zm234.8 101.6c-35.49 35.43-78.09 38.14-106.1 20.47-22.08-13.5-39.38-32.08-72.93-66.84 12.05-12.37 23.79-24.42 35.37-36.31 33.02 31.91 37.06 36.01 44.68 42.09 18.48 14.74 42.52 13.67 59.32-1.8 3.68-3.39 3.69-3.64 .14-7.24-10.59-10.73-21.19-21.44-31.77-32.18-1.32-1.34-3.03-2.48-.8-4.69 10.79-10.71 21.48-21.52 32.21-32.29 .26-.26 .65-.38 1.91-1.07 12.37 12.87 24.92 25.92 37.25 38.75 21.01-20.73 41.24-40.68 61.25-60.42 13.68 13.4 27.13 26.58 40.86 40.03-20.17 20.86-81.68 82.71-100.5 101.5zM256 0L0 256l256 256 256-256L256 0zM16 256L256 16l240 240-240 240L16 256z',
			),
		),
		'label'             => __( 'Fantasy Flight-games', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'faucet'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 256h-38.54C297.7 242.5 277.9 232.9 256 228V180.5L224 177L192 180.5V228C170.1 233 150.3 242.6 134.5 256H16C7.125 256 0 263.1 0 272v96C0 376.9 7.125 384 16 384h92.78C129.4 421.8 173 448 224 448s94.59-26.25 115.2-64H352c17.62 0 32 14.29 32 31.91S398.4 448 416 448h64c17.62 0 32-14.31 32-31.94C512 327.7 440.4 256 352 256zM81.63 159.9L224 144.9l142.4 15C375.9 160.9 384 153.1 384 143.1V112.9c0-10-8.125-17.74-17.62-16.74L256 107.8V80C256 71.12 248.9 64 240 64h-32C199.1 64 192 71.12 192 80v27.75L81.63 96.14C72.13 95.14 64 102.9 64 112.9v30.24C64 153.1 72.13 160.9 81.63 159.9z',
			),
		),
		'label'             => __( 'Faucet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'faucet-drip'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 480c0 17.62 14.38 32 32 32s32-14.38 32-32s-32-64-32-64S416 462.4 416 480zM352 192h-38.54C297.7 178.5 277.9 168.9 256 164V116.5L224 113L192 116.5V164C170.1 169 150.3 178.6 134.5 192H16C7.125 192 0 199.1 0 208v96C0 312.9 7.125 320 16 320h92.78C129.4 357.8 173 384 224 384s94.59-26.25 115.2-64H352c17.62 0 32 14.29 32 31.91S398.4 384 416 384h64c17.62 0 32-14.38 32-32C512 263.6 440.4 192 352 192zM81.63 95.88L224 80.88l142.4 15C375.9 96.88 384 89.12 384 79.12V48.89c0-10-8.125-17.74-17.62-16.74L256 43.75V16C256 7.125 248.9 0 240 0h-32C199.1 0 192 7.125 192 16v27.75L81.63 32.14C72.13 31.14 64 38.89 64 48.89V79.12C64 89.12 72.13 96.88 81.63 95.88z',
			),
		),
		'label'             => __( 'Faucet Drip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'fax'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 64h197.5L416 90.51V160h64V77.25c0-8.484-3.375-16.62-9.375-22.62l-45.25-45.25C419.4 3.375 411.2 0 402.8 0H160C142.3 0 128 14.33 128 32v128h64V64zM64 128H32C14.38 128 0 142.4 0 160v320c0 17.62 14.38 32 32 32h32c17.62 0 32-14.38 32-32V160C96 142.4 81.63 128 64 128zM480 192H128v288c0 17.6 14.4 32 32 32h320c17.6 0 32-14.4 32-32V224C512 206.4 497.6 192 480 192zM288 432c0 8.875-7.125 16-16 16h-32C231.1 448 224 440.9 224 432v-32C224 391.1 231.1 384 240 384h32c8.875 0 16 7.125 16 16V432zM288 304c0 8.875-7.125 16-16 16h-32C231.1 320 224 312.9 224 304v-32C224 263.1 231.1 256 240 256h32C280.9 256 288 263.1 288 272V304zM416 432c0 8.875-7.125 16-16 16h-32c-8.875 0-16-7.125-16-16v-32c0-8.875 7.125-16 16-16h32c8.875 0 16 7.125 16 16V432zM416 304c0 8.875-7.125 16-16 16h-32C359.1 320 352 312.9 352 304v-32C352 263.1 359.1 256 368 256h32C408.9 256 416 263.1 416 272V304z',
			),
		),
		'label'             => __( 'Fax', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'science-and-technology' ),
	),
	'feather'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M483.4 244.2L351.9 287.1h97.74c-9.874 10.62 3.75-3.125-46.24 46.87l-147.6 49.12h98.24c-74.99 73.12-194.6 70.62-246.8 54.1l-66.14 65.99c-9.374 9.374-24.6 9.374-33.98 0s-9.374-24.6 0-33.98l259.5-259.2c6.249-6.25 6.249-16.37 0-22.62c-6.249-6.249-16.37-6.249-22.62 0l-178.4 178.2C58.78 306.1 68.61 216.7 129.1 156.3l85.74-85.68c90.62-90.62 189.8-88.27 252.3-25.78C517.8 95.34 528.9 169.7 483.4 244.2z',
			),
		),
		'label'             => __( 'Feather', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'feather-pointed'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M467.1 241.1L351.1 288h94.34c-7.711 14.85-16.29 29.28-25.87 43.01l-132.5 52.99h85.65c-59.34 52.71-144.1 80.34-264.5 52.82l-68.13 68.13c-9.38 9.38-24.56 9.374-33.94 0c-9.375-9.375-9.375-24.56 0-33.94l253.4-253.4c4.846-6.275 4.643-15.19-1.113-20.95c-6.25-6.25-16.38-6.25-22.62 0l-168.6 168.6C24.56 58 366.9 8.118 478.9 .0846c18.87-1.354 34.41 14.19 33.05 33.05C508.7 78.53 498.5 161.8 467.1 241.1z',
			),
		),
		'label'             => __( 'Feather Pointed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'fedex'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M586 284.5l53.3-59.9h-62.4l-21.7 24.8-22.5-24.8H414v-16h56.1v-48.1H318.9V236h-.5c-9.6-11-21.5-14.8-35.4-14.8-28.4 0-49.8 19.4-57.3 44.9-18-59.4-97.4-57.6-121.9-14v-24.2H49v-26.2h60v-41.1H0V345h49v-77.5h48.9c-1.5 5.7-2.3 11.8-2.3 18.2 0 73.1 102.6 91.4 130.2 23.7h-42c-14.7 20.9-45.8 8.9-45.8-14.6h85.5c3.7 30.5 27.4 56.9 60.1 56.9 14.1 0 27-6.9 34.9-18.6h.5V345h212.2l22.1-25 22.3 25H640l-54-60.5zm-446.7-16.6c6.1-26.3 41.7-25.6 46.5 0h-46.5zm153.4 48.9c-34.6 0-34-62.8 0-62.8 32.6 0 34.5 62.8 0 62.8zm167.8 19.1h-94.4V169.4h95v30.2H405v33.9h55.5v28.1h-56.1v44.7h56.1v29.6zm-45.9-39.8v-24.4h56.1v-44l50.7 57-50.7 57v-45.6h-56.1zm138.6 10.3l-26.1 29.5H489l45.6-51.2-45.6-51.2h39.7l26.6 29.3 25.6-29.3h38.5l-45.4 51 46 51.4h-40.5l-26.3-29.5z',
			),
		),
		'label'             => __( 'FedEx', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'fedora'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M.0413 255.8C.1219 132.2 100.3 32 224 32C347.7 32 448 132.3 448 256C448 379.7 347.8 479.9 224.1 480H50.93C22.84 480 .0832 457.3 .0416 429.2H0V255.8H.0413zM342.6 192.7C342.6 153 307 124.2 269.4 124.2C234.5 124.2 203.6 150.5 199.3 184.1C199.1 187.9 198.9 189.1 198.9 192.6C198.8 213.7 198.9 235.4 198.1 257C199 283.1 199.1 309.1 198.1 333.6C198.1 360.7 178.7 379.1 153.4 379.1C128.1 379.1 107.6 358.9 107.6 333.6C108.1 305.9 130.2 288.3 156.1 287.5H156.3L182.6 287.3V250L156.3 250.2C109.2 249.8 71.72 286.7 70.36 333.6C70.36 379.2 107.9 416.5 153.4 416.5C196.4 416.5 232.1 382.9 236 340.9L236.2 287.4L268.8 287.1C294.1 287.3 293.8 249.3 268.6 249.8L236.2 250.1C236.2 243.7 236.3 237.3 236.3 230.9C236.4 218.2 236.4 205.5 236.2 192.7C236.3 176.2 252 161.5 269.4 161.5C286.9 161.5 305.3 170.2 305.3 192.7C305.3 195.9 305.2 197.8 305 199C303.1 209.5 310.2 219.4 320.7 220.9C331.3 222.4 340.9 214.8 341.9 204.3C342.5 200.1 342.6 196.4 342.6 192.7H342.6z',
			),
		),
		'label'             => __( 'Fedora', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ferry'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352 0C369.7 0 384 14.33 384 32H459.1C479.7 32 490.7 56.29 477.2 71.8L456 96H119.1L98.83 71.8C85.25 56.29 96.27 32 116.9 32H191.1C191.1 14.33 206.3 0 223.1 0L352 0zM95.1 128H480C497.7 128 512 142.3 512 160V283.5C512 296.8 507.8 309.8 500.1 320.7L448.7 392.6C446.8 393.7 444.1 394.9 443.2 396.1C427.7 406.8 409.1 414.2 392.1 416H375.6C358.5 414.2 340.6 406.1 324.8 396.1C302.8 380.6 273.3 380.6 251.2 396.1C236.3 406.3 218.7 414.1 200.5 416H183.9C166.9 414.2 148.3 406.8 132.9 396.1C131.1 394.8 129.2 393.7 127.3 392.6L75.92 320.7C68.17 309.8 64 296.8 64 283.5V160C64 142.3 78.33 128 96 128H95.1zM127.1 288H448V192H127.1V288zM384 448C410.9 448 439.4 437.2 461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448H384z',
			),
		),
		'label'             => __( 'Ferry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'figma'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M14 95.79C14 42.89 56.89 0 109.8 0H274.2C327.1 0 369.1 42.89 369.1 95.79C369.1 129.3 352.8 158.8 326.7 175.9C352.8 193 369.1 222.5 369.1 256C369.1 308.9 327.1 351.8 274.2 351.8H272.1C247.3 351.8 224.7 342.4 207.7 326.9V415.2C207.7 468.8 163.7 512 110.3 512C57.54 512 14 469.2 14 416.2C14 382.7 31.19 353.2 57.24 336.1C31.19 318.1 14 289.5 14 256C14 222.5 31.2 193 57.24 175.9C31.2 158.8 14 129.3 14 95.79zM176.3 191.6H109.8C74.22 191.6 45.38 220.4 45.38 256C45.38 291.4 73.99 320.2 109.4 320.4C109.5 320.4 109.7 320.4 109.8 320.4H176.3V191.6zM207.7 256C207.7 291.6 236.5 320.4 272.1 320.4H274.2C309.7 320.4 338.6 291.6 338.6 256C338.6 220.4 309.7 191.6 274.2 191.6H272.1C236.5 191.6 207.7 220.4 207.7 256zM109.8 351.8C109.7 351.8 109.5 351.8 109.4 351.8C73.99 352 45.38 380.8 45.38 416.2C45.38 451.7 74.6 480.6 110.3 480.6C146.6 480.6 176.3 451.2 176.3 415.2V351.8H109.8zM109.8 31.38C74.22 31.38 45.38 60.22 45.38 95.79C45.38 131.4 74.22 160.2 109.8 160.2H176.3V31.38H109.8zM207.7 160.2H274.2C309.7 160.2 338.6 131.4 338.6 95.79C338.6 60.22 309.7 31.38 274.2 31.38H207.7V160.2z',
			),
		),
		'label'             => __( 'Figma', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'file'                                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM336 448V160H256C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V448C48 456.8 55.16 464 64 464H320C328.8 464 336 456.8 336 448z',
			),
		),
		'label'             => __( 'File', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design', 'science-and-technology' ),
	),
	'file-arrow-down'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 128h-128V0L384 128zM256 160H384v304c0 26.51-21.49 48-48 48h-288C21.49 512 0 490.5 0 464v-416C0 21.49 21.49 0 48 0H224l.0039 128C224 145.7 238.3 160 256 160zM255 295L216 334.1V232c0-13.25-10.75-24-24-24S168 218.8 168 232v102.1L128.1 295C124.3 290.3 118.2 288 112 288S99.72 290.3 95.03 295c-9.375 9.375-9.375 24.56 0 33.94l80 80c9.375 9.375 24.56 9.375 33.94 0l80-80c9.375-9.375 9.375-24.56 0-33.94S264.4 285.7 255 295z',
			),
		),
		'label'             => __( 'File Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-arrow-up'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM288.1 344.1C284.3 349.7 278.2 352 272 352s-12.28-2.344-16.97-7.031L216 305.9V408c0 13.25-10.75 24-24 24s-24-10.75-24-24V305.9l-39.03 39.03c-9.375 9.375-24.56 9.375-33.94 0s-9.375-24.56 0-33.94l80-80c9.375-9.375 24.56-9.375 33.94 0l80 80C298.3 320.4 298.3 335.6 288.1 344.1z',
			),
		),
		'label'             => __( 'File Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-audio'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM176 404c0 10.75-12.88 15.98-20.5 8.484L120 376H76C69.38 376 64 370.6 64 364v-56C64 301.4 69.38 296 76 296H120l35.5-36.5C163.1 251.9 176 257.3 176 268V404zM224 387.8c-4.391 0-8.75-1.835-11.91-5.367c-5.906-6.594-5.359-16.69 1.219-22.59C220.2 353.7 224 345.2 224 336s-3.797-17.69-10.69-23.88c-6.578-5.906-7.125-16-1.219-22.59c5.922-6.594 16.05-7.094 22.59-1.219C248.2 300.5 256 317.8 256 336s-7.766 35.53-21.31 47.69C231.6 386.4 227.8 387.8 224 387.8zM320 336c0 41.81-20.5 81.11-54.84 105.1c-2.781 1.938-5.988 2.875-9.145 2.875c-5.047 0-10.03-2.375-13.14-6.844c-5.047-7.25-3.281-17.22 3.969-22.28C272.6 396.9 288 367.4 288 336s-15.38-60.84-41.14-78.8c-7.25-5.062-9.027-15.03-3.98-22.28c5.047-7.281 14.99-9.062 22.27-3.969C299.5 254.9 320 294.2 320 336zM256 0v128h128L256 0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0L64-.0001c-35.35 0-64 28.65-64 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM171.5 259.5L136 296H92C85.38 296 80 301.4 80 308v56C80 370.7 85.38 376 92 376H136l35.5 36.5C179.1 420 192 414.8 192 404v-136C192 257.3 179.1 251.9 171.5 259.5zM235.1 260.7c-6.25 6.25-6.25 16.38 0 22.62C235.3 283.5 256 305.1 256 336c0 30.94-20.77 52.53-20.91 52.69c-6.25 6.25-6.25 16.38 0 22.62C238.2 414.4 242.3 416 246.4 416s8.188-1.562 11.31-4.688C258.1 410.1 288 380.5 288 336s-29.05-74.06-30.28-75.31C251.5 254.4 241.3 254.4 235.1 260.7z',
			),
		),
		'label'             => __( 'File Audio', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies' ),
	),
	'file-circle-check'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7H476.7z',
			),
		),
		'label'             => __( 'File Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-circle-exclamation'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM415.1 288V368C415.1 376.8 423.2 384 431.1 384C440.8 384 447.1 376.8 447.1 368V288C447.1 279.2 440.8 272 431.1 272C423.2 272 415.1 279.2 415.1 288z',
			),
		),
		'label'             => __( 'File Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-circle-minus'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM496 351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1z',
			),
		),
		'label'             => __( 'File Circle Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-circle-plus'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM448 303.1C448 295.2 440.8 287.1 432 287.1C423.2 287.1 416 295.2 416 303.1V351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H416V431.1C416 440.8 423.2 447.1 432 447.1C440.8 447.1 448 440.8 448 431.1V383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1H448V303.1z',
			),
		),
		'label'             => __( 'File Circle Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'file-circle-question'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM368 328C368 336.8 375.2 344 384 344C392.8 344 400 336.8 400 328V321.6C400 316.3 404.3 312 409.6 312H450.1C457.8 312 464 318.2 464 325.9C464 331.1 461.1 335.8 456.6 338.3L424.6 355.1C419.3 357.9 416 363.3 416 369.2V384C416 392.8 423.2 400 432 400C440.8 400 448 392.8 448 384V378.9L471.5 366.6C486.6 358.6 496 342.1 496 325.9C496 300.6 475.4 280 450.1 280H409.6C386.6 280 368 298.6 368 321.6V328z',
			),
		),
		'label'             => __( 'File Circle Question', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-circle-xmark'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V198.6C310.1 219.5 256 287.4 256 368C256 427.1 285.1 479.3 329.7 511.3C326.6 511.7 323.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM491.3 331.3C497.6 325.1 497.6 314.9 491.3 308.7C485.1 302.4 474.9 302.4 468.7 308.7L432 345.4L395.3 308.7C389.1 302.4 378.9 302.4 372.7 308.7C366.4 314.9 366.4 325.1 372.7 331.3L409.4 368L372.7 404.7C366.4 410.9 366.4 421.1 372.7 427.3C378.9 433.6 389.1 433.6 395.3 427.3L432 390.6L468.7 427.3C474.9 433.6 485.1 433.6 491.3 427.3C497.6 421.1 497.6 410.9 491.3 404.7L454.6 368L491.3 331.3z',
			),
		),
		'label'             => __( 'File Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-code'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM154.1 353.8c7.812 7.812 7.812 20.5 0 28.31C150.2 386.1 145.1 388 140 388s-10.23-1.938-14.14-5.844l-48-48c-7.812-7.812-7.812-20.5 0-28.31l48-48c7.812-7.812 20.47-7.812 28.28 0s7.812 20.5 0 28.31L120.3 320L154.1 353.8zM306.1 305.8c7.812 7.812 7.812 20.5 0 28.31l-48 48C254.2 386.1 249.1 388 244 388s-10.23-1.938-14.14-5.844c-7.812-7.812-7.812-20.5 0-28.31L263.7 320l-33.86-33.84c-7.812-7.812-7.812-20.5 0-28.31s20.47-7.812 28.28 0L306.1 305.8zM256 0v128h128L256 0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M162.1 257.8c-7.812-7.812-20.47-7.812-28.28 0l-48 48c-7.812 7.812-7.812 20.5 0 28.31l48 48C137.8 386.1 142.9 388 148 388s10.23-1.938 14.14-5.844c7.812-7.812 7.812-20.5 0-28.31L128.3 320l33.86-33.84C169.1 278.3 169.1 265.7 162.1 257.8zM365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM221.9 257.8c-7.812 7.812-7.812 20.5 0 28.31L255.7 320l-33.86 33.84c-7.812 7.812-7.812 20.5 0 28.31C225.8 386.1 230.9 388 236 388s10.23-1.938 14.14-5.844l48-48c7.812-7.812 7.812-20.5 0-28.31l-48-48C242.3 250 229.7 250 221.9 257.8z',
			),
		),
		'label'             => __( 'File Code', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-contract'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM64 72C64 67.63 67.63 64 72 64h80C156.4 64 160 67.63 160 72v16C160 92.38 156.4 96 152 96h-80C67.63 96 64 92.38 64 88V72zM64 136C64 131.6 67.63 128 72 128h80C156.4 128 160 131.6 160 136v16C160 156.4 156.4 160 152 160h-80C67.63 160 64 156.4 64 152V136zM304 384c8.875 0 16 7.125 16 16S312.9 416 304 416h-47.25c-16.38 0-31.25-9.125-38.63-23.88c-2.875-5.875-8-6.5-10.12-6.5s-7.25 .625-10 6.125l-7.75 15.38C187.6 412.6 181.1 416 176 416H174.9c-6.5-.5-12-4.75-14-11L144 354.6L133.4 386.5C127.5 404.1 111 416 92.38 416H80C71.13 416 64 408.9 64 400S71.13 384 80 384h12.38c4.875 0 9.125-3.125 10.62-7.625l18.25-54.63C124.5 311.9 133.6 305.3 144 305.3s19.5 6.625 22.75 16.5l13.88 41.63c19.75-16.25 54.13-9.75 66 14.12c2 4 6 6.5 10.12 6.5H304z',
			),
		),
		'label'             => __( 'File Contract', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-csv'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 0V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64C0 28.65 28.65 0 64 0H224zM80 224C57.91 224 40 241.9 40 264V344C40 366.1 57.91 384 80 384H96C118.1 384 136 366.1 136 344V336C136 327.2 128.8 320 120 320C111.2 320 104 327.2 104 336V344C104 348.4 100.4 352 96 352H80C75.58 352 72 348.4 72 344V264C72 259.6 75.58 256 80 256H96C100.4 256 104 259.6 104 264V272C104 280.8 111.2 288 120 288C128.8 288 136 280.8 136 272V264C136 241.9 118.1 224 96 224H80zM175.4 310.6L200.8 325.1C205.2 327.7 208 332.5 208 337.6C208 345.6 201.6 352 193.6 352H168C159.2 352 152 359.2 152 368C152 376.8 159.2 384 168 384H193.6C219.2 384 240 363.2 240 337.6C240 320.1 231.1 305.6 216.6 297.4L191.2 282.9C186.8 280.3 184 275.5 184 270.4C184 262.4 190.4 256 198.4 256H216C224.8 256 232 248.8 232 240C232 231.2 224.8 224 216 224H198.4C172.8 224 152 244.8 152 270.4C152 287 160.9 302.4 175.4 310.6zM280 240C280 231.2 272.8 224 264 224C255.2 224 248 231.2 248 240V271.6C248 306.3 258.3 340.3 277.6 369.2L282.7 376.9C285.7 381.3 290.6 384 296 384C301.4 384 306.3 381.3 309.3 376.9L314.4 369.2C333.7 340.3 344 306.3 344 271.6V240C344 231.2 336.8 224 328 224C319.2 224 312 231.2 312 240V271.6C312 294.6 306.5 317.2 296 337.5C285.5 317.2 280 294.6 280 271.6V240zM256 0L384 128H256V0z',
			),
		),
		'label'             => __( 'File Csv', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-excel'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM272.1 264.4L224 344l48.99 79.61C279.6 434.3 271.9 448 259.4 448h-26.43c-5.557 0-10.71-2.883-13.63-7.617L192 396l-27.31 44.38C161.8 445.1 156.6 448 151.1 448H124.6c-12.52 0-20.19-13.73-13.63-24.39L160 344L111 264.4C104.4 253.7 112.1 240 124.6 240h26.43c5.557 0 10.71 2.883 13.63 7.613L192 292l27.31-44.39C222.2 242.9 227.4 240 232.9 240h26.43C271.9 240 279.6 253.7 272.1 264.4zM256 0v128h128L256 0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM229.1 233.3L192 280.9L154.9 233.3C146.8 222.8 131.8 220.9 121.3 229.1C110.8 237.2 108.9 252.3 117.1 262.8L161.6 320l-44.53 57.25c-8.156 10.47-6.25 25.56 4.188 33.69C125.7 414.3 130.8 416 135.1 416c7.156 0 14.25-3.188 18.97-9.25L192 359.1l37.06 47.65C233.8 412.8 240.9 416 248 416c5.125 0 10.31-1.656 14.72-5.062c10.44-8.125 12.34-23.22 4.188-33.69L222.4 320l44.53-57.25c8.156-10.47 6.25-25.56-4.188-33.69C252.2 220.9 237.2 222.8 229.1 233.3z',
			),
		),
		'label'             => __( 'File Excel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-export'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192 312C192 298.8 202.8 288 216 288H384V160H256c-17.67 0-32-14.33-32-32L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48v-128H216C202.8 336 192 325.3 192 312zM256 0v128h128L256 0zM568.1 295l-80-80c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L494.1 288H384v48h110.1l-39.03 39.03C450.3 379.7 448 385.8 448 392s2.344 12.28 7.031 16.97c9.375 9.375 24.56 9.375 33.94 0l80-80C578.3 319.6 578.3 304.4 568.1 295z',
			),
		),
		'label'             => __( 'File Export', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-image'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM96 224c17.67 0 32 14.33 32 32S113.7 288 96 288S64 273.7 64 256S78.33 224 96 224zM318.1 439.5C315.3 444.8 309.9 448 304 448h-224c-5.9 0-11.32-3.248-14.11-8.451c-2.783-5.201-2.479-11.52 .7949-16.42l53.33-80C122.1 338.7 127.1 336 133.3 336s10.35 2.674 13.31 7.125L160 363.2l45.35-68.03C208.3 290.7 213.3 288 218.7 288s10.35 2.674 13.31 7.125l85.33 128C320.6 428 320.9 434.3 318.1 439.5zM256 0v128h128L256 0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM215.3 292c-4.68 0-9.051 2.34-11.65 6.234L164 357.8l-11.68-17.53C149.7 336.3 145.3 334 140.7 334c-4.682 0-9.053 2.34-11.65 6.234l-46.67 70c-2.865 4.297-3.131 9.82-.6953 14.37C84.09 429.2 88.84 432 93.1 432h196c5.163 0 9.907-2.844 12.34-7.395c2.436-4.551 2.17-10.07-.6953-14.37l-74.67-112C224.4 294.3 220 292 215.3 292zM128 288c17.67 0 32-14.33 32-32S145.7 224 128 224S96 238.3 96 256S110.3 288 128 288z',
			),
		),
		'label'             => __( 'File Image', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'file-import'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M384 0v128h128L384 0zM352 128L352 0H176C149.5 0 128 21.49 128 48V288h174.1l-39.03-39.03c-9.375-9.375-9.375-24.56 0-33.94s24.56-9.375 33.94 0l80 80c9.375 9.375 9.375 24.56 0 33.94l-80 80c-9.375 9.375-24.56 9.375-33.94 0C258.3 404.3 256 398.2 256 392s2.344-12.28 7.031-16.97L302.1 336H128v128C128 490.5 149.5 512 176 512h288c26.51 0 48-21.49 48-48V160h-127.1C366.3 160 352 145.7 352 128zM24 288C10.75 288 0 298.7 0 312c0 13.25 10.75 24 24 24H128V288H24z',
			),
		),
		'label'             => __( 'File Import', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-invoice'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM288 256H96v64h192V256zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM64 72C64 67.63 67.63 64 72 64h80C156.4 64 160 67.63 160 72v16C160 92.38 156.4 96 152 96h-80C67.63 96 64 92.38 64 88V72zM64 136C64 131.6 67.63 128 72 128h80C156.4 128 160 131.6 160 136v16C160 156.4 156.4 160 152 160h-80C67.63 160 64 156.4 64 152V136zM320 440c0 4.375-3.625 8-8 8h-80C227.6 448 224 444.4 224 440v-16c0-4.375 3.625-8 8-8h80c4.375 0 8 3.625 8 8V440zM320 240v96c0 8.875-7.125 16-16 16h-224C71.13 352 64 344.9 64 336v-96C64 231.1 71.13 224 80 224h224C312.9 224 320 231.1 320 240z',
			),
		),
		'label'             => __( 'File Invoice', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'file-invoice-dollar'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 128h-128V0L384 128zM256 160H384v304c0 26.51-21.49 48-48 48h-288C21.49 512 0 490.5 0 464v-416C0 21.49 21.49 0 48 0H224l.0039 128C224 145.7 238.3 160 256 160zM64 88C64 92.38 67.63 96 72 96h80C156.4 96 160 92.38 160 88v-16C160 67.63 156.4 64 152 64h-80C67.63 64 64 67.63 64 72V88zM72 160h80C156.4 160 160 156.4 160 152v-16C160 131.6 156.4 128 152 128h-80C67.63 128 64 131.6 64 136v16C64 156.4 67.63 160 72 160zM197.5 316.8L191.1 315.2C168.3 308.2 168.8 304.1 169.6 300.5c1.375-7.812 16.59-9.719 30.27-7.625c5.594 .8438 11.73 2.812 17.59 4.844c10.39 3.594 21.83-1.938 25.45-12.34c3.625-10.44-1.891-21.84-12.33-25.47c-7.219-2.484-13.11-4.078-18.56-5.273V248c0-11.03-8.953-20-20-20s-20 8.969-20 20v5.992C149.6 258.8 133.8 272.8 130.2 293.7c-7.406 42.84 33.19 54.75 50.52 59.84l5.812 1.688c29.28 8.375 28.8 11.19 27.92 16.28c-1.375 7.812-16.59 9.75-30.31 7.625c-6.938-1.031-15.81-4.219-23.66-7.031l-4.469-1.625c-10.41-3.594-21.83 1.812-25.52 12.22c-3.672 10.41 1.781 21.84 12.2 25.53l4.266 1.5c7.758 2.789 16.38 5.59 25.06 7.512V424c0 11.03 8.953 20 20 20s20-8.969 20-20v-6.254c22.36-4.793 38.21-18.53 41.83-39.43C261.3 335 219.8 323.1 197.5 316.8z',
			),
		),
		'label'             => __( 'File Invoice Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'file-lines'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM272 416h-160C103.2 416 96 408.8 96 400C96 391.2 103.2 384 112 384h160c8.836 0 16 7.162 16 16C288 408.8 280.8 416 272 416zM272 352h-160C103.2 352 96 344.8 96 336C96 327.2 103.2 320 112 320h160c8.836 0 16 7.162 16 16C288 344.8 280.8 352 272 352zM288 272C288 280.8 280.8 288 272 288h-160C103.2 288 96 280.8 96 272C96 263.2 103.2 256 112 256h160C280.8 256 288 263.2 288 272z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0L64-.0001c-35.35 0-64 28.65-64 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM96 280C96 293.3 106.8 304 120 304h144C277.3 304 288 293.3 288 280S277.3 256 264 256h-144C106.8 256 96 266.8 96 280zM264 352h-144C106.8 352 96 362.8 96 376s10.75 24 24 24h144c13.25 0 24-10.75 24-24S277.3 352 264 352z',
			),
		),
		'label'             => __( 'File Lines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'science-and-technology' ),
	),
	'file-medical'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM288 301.7v36.57C288 345.9 281.9 352 274.3 352L224 351.1v50.29C224 409.9 217.9 416 210.3 416H173.7C166.1 416 160 409.9 160 402.3V351.1L109.7 352C102.1 352 96 345.9 96 338.3V301.7C96 294.1 102.1 288 109.7 288H160V237.7C160 230.1 166.1 224 173.7 224h36.57C217.9 224 224 230.1 224 237.7V288h50.29C281.9 288 288 294.1 288 301.7z',
			),
		),
		'label'             => __( 'File Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-pdf'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M88 304H80V256H88C101.3 256 112 266.7 112 280C112 293.3 101.3 304 88 304zM192 256H200C208.8 256 216 263.2 216 272V336C216 344.8 208.8 352 200 352H192V256zM224 0V128C224 145.7 238.3 160 256 160H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64C0 28.65 28.65 0 64 0H224zM64 224C55.16 224 48 231.2 48 240V368C48 376.8 55.16 384 64 384C72.84 384 80 376.8 80 368V336H88C118.9 336 144 310.9 144 280C144 249.1 118.9 224 88 224H64zM160 368C160 376.8 167.2 384 176 384H200C226.5 384 248 362.5 248 336V272C248 245.5 226.5 224 200 224H176C167.2 224 160 231.2 160 240V368zM288 224C279.2 224 272 231.2 272 240V368C272 376.8 279.2 384 288 384C296.8 384 304 376.8 304 368V320H336C344.8 320 352 312.8 352 304C352 295.2 344.8 288 336 288H304V256H336C344.8 256 352 248.8 352 240C352 231.2 344.8 224 336 224H288zM256 0L384 128H256V0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 464C328.8 464 336 456.8 336 448V416H384V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V416H48V448C48 456.8 55.16 464 64 464H320zM256 160C238.3 160 224 145.7 224 128V48H64C55.16 48 48 55.16 48 64V192H0V64C0 28.65 28.65 0 64 0H229.5C246.5 0 262.7 6.743 274.7 18.75L365.3 109.3C377.3 121.3 384 137.5 384 154.5V192H336V160H256zM88 224C118.9 224 144 249.1 144 280C144 310.9 118.9 336 88 336H80V368C80 376.8 72.84 384 64 384C55.16 384 48 376.8 48 368V240C48 231.2 55.16 224 64 224H88zM112 280C112 266.7 101.3 256 88 256H80V304H88C101.3 304 112 293.3 112 280zM160 240C160 231.2 167.2 224 176 224H200C226.5 224 248 245.5 248 272V336C248 362.5 226.5 384 200 384H176C167.2 384 160 376.8 160 368V240zM192 352H200C208.8 352 216 344.8 216 336V272C216 263.2 208.8 256 200 256H192V352zM336 224C344.8 224 352 231.2 352 240C352 248.8 344.8 256 336 256H304V288H336C344.8 288 352 295.2 352 304C352 312.8 344.8 320 336 320H304V368C304 376.8 296.8 384 288 384C279.2 384 272 376.8 272 368V240C272 231.2 279.2 224 288 224H336z',
			),
		),
		'label'             => __( 'File Pdf', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-pen'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V299.6L289.3 394.3C281.1 402.5 275.3 412.8 272.5 424.1L257.4 484.2C255.1 493.6 255.7 503.2 258.8 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM564.1 250.1C579.8 265.7 579.8 291 564.1 306.7L534.7 336.1L463.8 265.1L493.2 235.7C508.8 220.1 534.1 220.1 549.8 235.7L564.1 250.1zM311.9 416.1L441.1 287.8L512.1 358.7L382.9 487.9C378.8 492 373.6 494.9 368 496.3L307.9 511.4C302.4 512.7 296.7 511.1 292.7 507.2C288.7 503.2 287.1 497.4 288.5 491.1L303.5 431.8C304.9 426.2 307.8 421.1 311.9 416.1V416.1z',
			),
		),
		'label'             => __( 'File Pen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-powerpoint'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM279.6 308.1C284.2 353.5 248.5 392 204 392H160v40C160 440.8 152.8 448 144 448H128c-8.836 0-16-7.164-16-16V256c0-8.836 7.164-16 16-16h71.51C239.3 240 275.6 268.5 279.6 308.1zM160 344h44c15.44 0 28-12.56 28-28S219.4 288 204 288H160V344z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM200 224H128C119.2 224 112 231.2 112 240v168c0 13.25 10.75 24 24 24S160 421.3 160 408v-32h44c44.21 0 79.73-37.95 75.69-82.98C276.1 253.2 240 224 200 224zM204 328H160V272h44c15.44 0 28 12.56 28 28S219.4 328 204 328z',
			),
		),
		'label'             => __( 'File Powerpoint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-prescription'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M176 240H128v32h48C184.9 272 192 264.9 192 256S184.9 240 176 240zM256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM292.5 315.5l11.38 11.25c6.25 6.25 6.25 16.38 0 22.62l-29.88 30L304 409.4c6.25 6.25 6.25 16.38 0 22.62l-11.25 11.38c-6.25 6.25-16.5 6.25-22.75 0L240 413.3l-30 30c-6.249 6.25-16.48 6.266-22.73 .0156L176 432c-6.25-6.25-6.25-16.38 0-22.62l29.1-30.12L146.8 320H128l.0078 48.01c0 8.875-7.125 16-16 16L96 384c-8.875 0-16-7.125-16-16v-160C80 199.1 87.13 192 96 192h80c35.38 0 64 28.62 64 64c0 24.25-13.62 45-33.5 55.88L240 345.4l29.88-29.88C276.1 309.3 286.3 309.3 292.5 315.5z',
			),
		),
		'label'             => __( 'File Prescription', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-shield'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H224V128C224 145.7 238.3 160 256 160H384V207L291.2 244.2C269.9 252.7 256 273.3 256 296.2C256 352.7 274.9 444.2 350.2 504.4C341.2 509.3 330.9 512 320 512H64C28.65 512 0 483.3 0 448V64zM256 128V0L384 128H256zM423.1 225.7C428.8 223.4 435.2 223.4 440.9 225.7L560.9 273.7C570 277.4 576 286.2 576 296C576 359.3 550.1 464.8 441.2 510.2C435.3 512.6 428.7 512.6 422.8 510.2C313.9 464.8 288 359.3 288 296C288 286.2 293.1 277.4 303.1 273.7L423.1 225.7zM432 273.8V461.7C500.2 428.7 523.5 362.7 527.4 311.1L432 273.8z',
			),
		),
		'label'             => __( 'File Shield', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-signature'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M292.7 342.3C289.7 345.3 288 349.4 288 353.7V416h62.34c4.264 0 8.35-1.703 11.35-4.727l156.9-158l-67.88-67.88L292.7 342.3zM568.5 167.4L536.6 135.5c-9.875-10-26-10-36 0l-27.25 27.25l67.88 67.88l27.25-27.25C578.5 193.4 578.5 177.3 568.5 167.4zM256 0v128h128L256 0zM256 448c-16.07-.2852-30.62-9.359-37.88-23.88c-2.875-5.875-8-6.5-10.12-6.5s-7.25 .625-10 6.125l-7.749 15.38C187.6 444.6 181.1 448 176 448H174.9c-6.5-.5-12-4.75-14-11L144 386.6L133.4 418.5C127.5 436.1 111 448 92.45 448H80C71.13 448 64 440.9 64 432S71.13 416 80 416h12.4c4.875 0 9.102-3.125 10.6-7.625l18.25-54.63C124.5 343.9 133.6 337.3 144 337.3s19.5 6.625 22.75 16.5l13.88 41.63c19.75-16.25 54.13-9.75 66 14.12C248.5 413.2 252.2 415.6 256 415.9V347c0-8.523 3.402-16.7 9.451-22.71L384 206.5V160H256c-17.67 0-32-14.33-32-32L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V448H256z',
			),
		),
		'label'             => __( 'File Signature', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-video'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM224 384c0 17.67-14.33 32-32 32H96c-17.67 0-32-14.33-32-32V288c0-17.67 14.33-32 32-32h96c17.67 0 32 14.33 32 32V384zM320 284.9v102.3c0 12.57-13.82 20.23-24.48 13.57L256 376v-80l39.52-24.7C306.2 264.6 320 272.3 320 284.9z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM240 288c0-17.67-14.33-32-32-32h-96c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h96c17.67 0 32-14.33 32-32v-16.52l43.84 30.2C292.3 403.5 304 397.6 304 387.4V284.6c0-10.16-11.64-16.16-20.16-10.32L240 304.5V288z',
			),
		),
		'label'             => __( 'File Video', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'file-waveform'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M320 0v128h128L320 0zM288 128L288 0H112C85.49 0 64 21.49 64 48V224H16C7.164 224 0 231.2 0 240v32C0 280.8 7.164 288 16 288h128c6.062 0 11.59 3.438 14.31 8.844L176 332.2l49.69-99.38c5.438-10.81 23.19-10.81 28.62 0L281.9 288H352c8.844 0 16 7.156 16 16S360.8 320 352 320h-80c-6.062 0-11.59-3.438-14.31-8.844L240 275.8l-49.69 99.38C187.6 380.6 182.1 384 176 384s-11.59-3.438-14.31-8.844L134.1 320H64v144C64 490.5 85.49 512 112 512h288c26.51 0 48-21.49 48-48V160h-127.1C302.3 160 288 145.7 288 128z',
			),
		),
		'label'             => __( 'File Waveform', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'file-word'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM281.5 240h23.37c7.717 0 13.43 7.18 11.69 14.7l-42.46 184C272.9 444.1 268 448 262.5 448h-29.26c-5.426 0-10.18-3.641-11.59-8.883L192 329.1l-29.61 109.1C160.1 444.4 156.2 448 150.8 448H121.5c-5.588 0-10.44-3.859-11.69-9.305l-42.46-184C65.66 247.2 71.37 240 79.08 240h23.37c5.588 0 10.44 3.859 11.69 9.301L137.8 352L165.6 248.9C167 243.6 171.8 240 177.2 240h29.61c5.426 0 10.18 3.641 11.59 8.883L246.2 352l23.7-102.7C271.1 243.9 275.1 240 281.5 240zM256 0v128h128L256 0z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0H64C28.65 0 0 28.65 0 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h160L224 128c0 17.67 14.33 32 32 32h79.1V448zM214.6 248C211.3 238.4 202.2 232 192 232s-19.25 6.406-22.62 16L144.7 318.1l-25.89-77.66C114.6 227.8 101 221.2 88.41 225.2C75.83 229.4 69.05 243 73.23 255.6l48 144C124.5 409.3 133.5 415.9 143.8 416c10.17 0 19.45-6.406 22.83-16L192 328.1L217.4 400C220.8 409.6 229.8 416 240 416c10.27-.0938 19.53-6.688 22.77-16.41l48-144c4.188-12.59-2.594-26.16-15.17-30.38c-12.61-4.125-26.2 2.594-30.36 15.19l-25.89 77.66L214.6 248z',
			),
		),
		'label'             => __( 'File Word', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'file-zipper'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 0v128h128L256 0zM224 128L224 0H48C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48V160h-127.1C238.3 160 224 145.7 224 128zM96 32h64v32H96V32zM96 96h64v32H96V96zM96 160h64v32H96V160zM128.3 415.1c-40.56 0-70.76-36.45-62.83-75.45L96 224h64l30.94 116.9C198.7 379.7 168.5 415.1 128.3 415.1zM144 336h-32C103.2 336 96 343.2 96 352s7.164 16 16 16h32C152.8 368 160 360.8 160 352S152.8 336 144 336z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M365.3 93.38l-74.63-74.64C278.6 6.742 262.3 0 245.4 0L64-.0001c-35.35 0-64 28.65-64 64l.0065 384c0 35.34 28.65 64 64 64H320c35.2 0 64-28.8 64-64V138.6C384 121.7 377.3 105.4 365.3 93.38zM336 448c0 8.836-7.164 16-16 16H64.02c-8.838 0-16-7.164-16-16L48 64.13c0-8.836 7.164-16 16-16h48V64h64V48.13h48.01L224 128c0 17.67 14.33 32 32 32h79.1V448zM176 96h-64v32h64V96zM176 160h-64v32h64V160zM176 224h-64l-30.56 116.5C73.51 379.5 103.7 416 144.3 416c40.26 0 70.45-36.3 62.68-75.15L176 224zM160 368H128c-8.836 0-16-7.164-16-16s7.164-16 16-16h32c8.836 0 16 7.164 16 16S168.8 368 160 368z',
			),
		),
		'label'             => __( 'File Zipper', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'fill'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M168 90.74L221.1 37.66C249.2 9.539 294.8 9.539 322.9 37.66L474.3 189.1C502.5 217.2 502.5 262.8 474.3 290.9L283.9 481.4C246.4 518.9 185.6 518.9 148.1 481.4L30.63 363.9C-6.863 326.4-6.863 265.6 30.63 228.1L122.7 135.1L41.37 54.63C28.88 42.13 28.88 21.87 41.37 9.372C53.87-3.124 74.13-3.124 86.63 9.372L168 90.74zM75.88 273.4C71.69 277.6 68.9 282.6 67.52 287.1H386.7L429.1 245.7C432.2 242.5 432.2 237.5 429.1 234.3L277.7 82.91C274.5 79.79 269.5 79.79 266.3 82.91L213.3 136L262.6 185.4C275.1 197.9 275.1 218.1 262.6 230.6C250.1 243.1 229.9 243.1 217.4 230.6L168 181.3L75.88 273.4z',
			),
		),
		'label'             => __( 'Fill', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'fill-drip'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M41.37 9.372C53.87-3.124 74.13-3.124 86.63 9.372L168 90.74L221.1 37.66C249.2 9.539 294.8 9.539 322.9 37.66L474.3 189.1C502.5 217.2 502.5 262.8 474.3 290.9L283.9 481.4C246.4 518.9 185.6 518.9 148.1 481.4L30.63 363.9C-6.863 326.4-6.863 265.6 30.63 228.1L122.7 135.1L41.37 54.63C28.88 42.13 28.88 21.87 41.37 9.372V9.372zM217.4 230.6L168 181.3L75.88 273.4C71.69 277.6 68.9 282.6 67.52 288H386.7L429.1 245.7C432.2 242.5 432.2 237.5 429.1 234.3L277.7 82.91C274.5 79.79 269.5 79.79 266.3 82.91L213.3 136L262.6 185.4C275.1 197.9 275.1 218.1 262.6 230.6C250.1 243.1 229.9 243.1 217.4 230.6L217.4 230.6zM448 448C448 422.8 480.6 368.4 499.2 339.3C505.3 329.9 518.7 329.9 524.8 339.3C543.4 368.4 576 422.8 576 448C576 483.3 547.3 512 512 512C476.7 512 448 483.3 448 448H448z',
			),
		),
		'label'             => __( 'Fill Drip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'film'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M463.1 32h-416C21.49 32-.0001 53.49-.0001 80v352c0 26.51 21.49 48 47.1 48h416c26.51 0 48-21.49 48-48v-352C511.1 53.49 490.5 32 463.1 32zM111.1 408c0 4.418-3.582 8-8 8H55.1c-4.418 0-8-3.582-8-8v-48c0-4.418 3.582-8 8-8h47.1c4.418 0 8 3.582 8 8L111.1 408zM111.1 280c0 4.418-3.582 8-8 8H55.1c-4.418 0-8-3.582-8-8v-48c0-4.418 3.582-8 8-8h47.1c4.418 0 8 3.582 8 8V280zM111.1 152c0 4.418-3.582 8-8 8H55.1c-4.418 0-8-3.582-8-8v-48c0-4.418 3.582-8 8-8h47.1c4.418 0 8 3.582 8 8L111.1 152zM351.1 400c0 8.836-7.164 16-16 16H175.1c-8.836 0-16-7.164-16-16v-96c0-8.838 7.164-16 16-16h160c8.836 0 16 7.162 16 16V400zM351.1 208c0 8.836-7.164 16-16 16H175.1c-8.836 0-16-7.164-16-16v-96c0-8.838 7.164-16 16-16h160c8.836 0 16 7.162 16 16V208zM463.1 408c0 4.418-3.582 8-8 8h-47.1c-4.418 0-7.1-3.582-7.1-8l0-48c0-4.418 3.582-8 8-8h47.1c4.418 0 8 3.582 8 8V408zM463.1 280c0 4.418-3.582 8-8 8h-47.1c-4.418 0-8-3.582-8-8v-48c0-4.418 3.582-8 8-8h47.1c4.418 0 8 3.582 8 8V280zM463.1 152c0 4.418-3.582 8-8 8h-47.1c-4.418 0-8-3.582-8-8l0-48c0-4.418 3.582-8 7.1-8h47.1c4.418 0 8 3.582 8 8V152z',
			),
		),
		'label'             => __( 'Film', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'filter'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M3.853 54.87C10.47 40.9 24.54 32 40 32H472C487.5 32 501.5 40.9 508.1 54.87C514.8 68.84 512.7 85.37 502.1 97.33L320 320.9V448C320 460.1 313.2 471.2 302.3 476.6C291.5 482 278.5 480.9 268.8 473.6L204.8 425.6C196.7 419.6 192 410.1 192 400V320.9L9.042 97.33C-.745 85.37-2.765 68.84 3.854 54.87L3.853 54.87z',
			),
		),
		'label'             => __( 'Filter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'filter-circle-dollar'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M3.853 22.87C10.47 8.904 24.54 0 40 0H472C487.5 0 501.5 8.904 508.1 22.87C514.8 36.84 512.7 53.37 502.1 65.33L396.4 195.6C316.2 212.1 255.1 283 255.1 368C255.1 395.4 262.3 421.4 273.5 444.5C271.8 443.7 270.3 442.7 268.8 441.6L204.8 393.6C196.7 387.6 192 378.1 192 368V288.9L9.042 65.33C-.745 53.37-2.765 36.84 3.854 22.87H3.853zM576 368C576 447.5 511.5 512 432 512C352.5 512 287.1 447.5 287.1 368C287.1 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM413 331.1C418.1 329.3 425.6 327.9 431.8 328C439.1 328.1 448.9 329.8 458.1 332.1C466.7 334.2 475.4 328.1 477.5 320.4C479.7 311.8 474.4 303.2 465.9 301C460.3 299.6 454.3 298.3 448 297.4V288C448 279.2 440.8 272 432 272C423.2 272 416 279.2 416 288V297.5C409.9 298.7 403.7 300.7 397.1 303.8C386.1 310.1 374.9 322.2 376.1 341C377.1 357 387.8 366.4 397.7 371.7C406.6 376.4 417.5 379.5 426.3 381.1L428.1 382.5C438.3 385.4 445.1 387.7 451.2 390.8C455.8 393.5 455.1 395.1 455.1 396.5C456.1 398.9 455.5 400.2 454.1 401C454.3 401.1 453.2 403.2 450.1 404.4C446.3 406.9 439.2 408.2 432.5 407.1C422.1 407.7 414 404.8 402.6 401.2C400.7 400.6 398.8 400 396.8 399.4C388.3 396.8 379.3 401.5 376.7 409.9C374.1 418.3 378.8 427.3 387.2 429.9C388.9 430.4 390.5 430.1 392.3 431.5C399.3 433.8 407.4 436.4 416 438.1V449.5C416 458.4 423.2 465.5 432 465.5C440.8 465.5 448 458.4 448 449.5V438.7C454.2 437.6 460.5 435.6 466.3 432.5C478.3 425.9 488.5 413.8 487.1 395.5C487.5 379.4 477.7 369.3 467.5 363.3C458.1 357.7 446.2 354.4 436.9 351.7L436.8 351.7C426.3 348.7 418.5 346.5 412.9 343.5C408.1 340.9 408.1 339.5 408.1 339.1L408.1 338.1C407.9 337 408.4 336.1 408.8 335.4C409.4 334.5 410.6 333.3 413 331.1L413 331.1z',
			),
		),
		'label'             => __( 'Filter Circle Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'filter-circle-xmark'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M3.853 22.87C10.47 8.904 24.54 0 40 0H472C487.5 0 501.5 8.904 508.1 22.87C514.8 36.84 512.7 53.37 502.1 65.33L396.4 195.6C316.2 212.1 255.1 283 255.1 368C255.1 395.4 262.3 421.4 273.5 444.5C271.8 443.7 270.3 442.7 268.8 441.6L204.8 393.6C196.7 387.6 192 378.1 192 368V288.9L9.042 65.33C-.745 53.37-2.765 36.84 3.854 22.87H3.853zM287.1 368C287.1 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 287.1 447.5 287.1 368zM491.3 331.3C497.6 325.1 497.6 314.9 491.3 308.7C485.1 302.4 474.9 302.4 468.7 308.7L432 345.4L395.3 308.7C389.1 302.4 378.9 302.4 372.7 308.7C366.4 314.9 366.4 325.1 372.7 331.3L409.4 368L372.7 404.7C366.4 410.9 366.4 421.1 372.7 427.3C378.9 433.6 389.1 433.6 395.3 427.3L432 390.6L468.7 427.3C474.9 433.6 485.1 433.6 491.3 427.3C497.6 421.1 497.6 410.9 491.3 404.7L454.6 368L491.3 331.3z',
			),
		),
		'label'             => __( 'Filter Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'fingerprint'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256.1 246c-13.25 0-23.1 10.75-23.1 23.1c1.125 72.25-8.124 141.9-27.75 211.5C201.7 491.3 206.6 512 227.5 512c10.5 0 20.12-6.875 23.12-17.5c13.5-47.87 30.1-125.4 29.5-224.5C280.1 256.8 269.4 246 256.1 246zM255.2 164.3C193.1 164.1 151.2 211.3 152.1 265.4c.75 47.87-3.75 95.87-13.37 142.5c-2.75 12.1 5.624 25.62 18.62 28.37c12.1 2.625 25.62-5.625 28.37-18.62c10.37-50.12 15.12-101.6 14.37-152.1C199.7 238.6 219.1 212.1 254.5 212.3c31.37 .5 57.24 25.37 57.62 55.5c.8749 47.1-2.75 96.25-10.62 143.5c-2.125 12.1 6.749 25.37 19.87 27.62c19.87 3.25 26.75-15.12 27.5-19.87c8.249-49.1 12.12-101.1 11.25-151.1C359.2 211.1 312.2 165.1 255.2 164.3zM144.6 144.5C134.2 136.1 119.2 137.6 110.7 147.9C85.25 179.4 71.38 219.3 72 259.9c.6249 37.62-2.375 75.37-8.999 112.1c-2.375 12.1 6.249 25.5 19.25 27.87c20.12 3.5 27.12-14.87 27.1-19.37c7.124-39.87 10.5-80.62 9.749-121.4C119.6 229.3 129.2 201.3 147.1 178.3C156.4 167.9 154.9 152.9 144.6 144.5zM253.1 82.14C238.6 81.77 223.1 83.52 208.2 87.14c-12.87 2.1-20.87 15.1-17.87 28.87c3.125 12.87 15.1 20.75 28.1 17.75C230.4 131.3 241.7 130 253.4 130.1c75.37 1.125 137.6 61.5 138.9 134.6c.5 37.87-1.375 75.1-5.624 113.6c-1.5 13.12 7.999 24.1 21.12 26.5c16.75 1.1 25.5-11.87 26.5-21.12c4.625-39.75 6.624-79.75 5.999-119.7C438.6 165.3 355.1 83.64 253.1 82.14zM506.1 203.6c-2.875-12.1-15.51-21.25-28.63-18.38c-12.1 2.875-21.12 15.75-18.25 28.62c4.75 21.5 4.875 37.5 4.75 61.62c-.1249 13.25 10.5 24.12 23.75 24.25c13.12 0 24.12-10.62 24.25-23.87C512.1 253.8 512.3 231.8 506.1 203.6zM465.1 112.9c-48.75-69.37-128.4-111.7-213.3-112.9c-69.74-.875-134.2 24.84-182.2 72.96c-46.37 46.37-71.34 108-70.34 173.6l-.125 21.5C-.3651 281.4 10.01 292.4 23.26 292.8C23.51 292.9 23.76 292.9 24.01 292.9c12.1 0 23.62-10.37 23.1-23.37l.125-23.62C47.38 193.4 67.25 144 104.4 106.9c38.87-38.75 91.37-59.62 147.7-58.87c69.37 .1 134.7 35.62 174.6 92.37c7.624 10.87 22.5 13.5 33.37 5.875C470.1 138.6 473.6 123.8 465.1 112.9z',
			),
		),
		'label'             => __( 'Fingerprint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'fire'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M323.5 51.25C302.8 70.5 284 90.75 267.4 111.1C240.1 73.62 206.2 35.5 168 0C69.75 91.12 0 210 0 281.6C0 408.9 100.2 512 224 512s224-103.1 224-230.4C448 228.4 396 118.5 323.5 51.25zM304.1 391.9C282.4 407 255.8 416 226.9 416c-72.13 0-130.9-47.73-130.9-125.2c0-38.63 24.24-72.64 72.74-130.8c7 8 98.88 125.4 98.88 125.4l58.63-66.88c4.125 6.75 7.867 13.52 11.24 19.9C364.9 290.6 353.4 357.4 304.1 391.9z',
			),
		),
		'label'             => __( 'Fire', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'fire-burner'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M349 61.49C356.9 51.61 365.8 40.76 375.5 31.99C381.1 26.87 389.9 26.89 395.5 32.03C420.2 54.71 441.1 84.69 455.8 113.2C470.4 141.2 480 169.9 480 190.1C480 277.9 408.7 352 320 352C230.3 352 160 277.8 160 190.1C160 163.7 172.7 131.5 192.4 99.52C212.4 67.16 240.5 33.43 273.8 3.734C279.4-1.26 287.1-1.242 293.5 3.773C313.3 21.55 331.8 40.74 349 61.49V61.49zM390 176.1C388 172.1 386 168.1 383 164.1L347 206.1C347 206.1 289 132.1 285 127.1C255 164.1 240 185.1 240 209.1C240 258.1 276 287.1 320.1 287.1C339 287.1 355 282.1 370 272.1C400 251.1 408 209.1 390 176.1zM32 287.1C32 270.3 46.33 255.1 64 255.1H96C113.7 255.1 128 270.3 128 287.1C128 305.7 113.7 319.1 96 319.1V384H544V319.1C526.3 319.1 512 305.7 512 287.1C512 270.3 526.3 255.1 544 255.1H576C593.7 255.1 608 270.3 608 287.1V384C625.7 384 640 398.3 640 416V480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480V416C0 398.3 14.33 384 32 384V287.1zM320 480C337.7 480 352 465.7 352 448C352 430.3 337.7 416 320 416C302.3 416 288 430.3 288 448C288 465.7 302.3 480 320 480zM448 416C430.3 416 416 430.3 416 448C416 465.7 430.3 480 448 480C465.7 480 480 465.7 480 448C480 430.3 465.7 416 448 416zM192 480C209.7 480 224 465.7 224 448C224 430.3 209.7 416 192 416C174.3 416 160 430.3 160 448C160 465.7 174.3 480 192 480z',
			),
		),
		'label'             => __( 'Fire Burner', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'fire-extinguisher'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 480c0 17.67 14.33 32 31.1 32H256c17.67 0 31.1-14.33 31.1-32l-.0001-32H64L64 480zM503.4 5.56c-5.453-4.531-12.61-6.406-19.67-5.188l-175.1 32c-11.41 2.094-19.7 12.03-19.7 23.63L224 56L224 32c0-17.67-14.33-32-31.1-32H160C142.3 0 128 14.33 128 32l.0002 26.81C69.59 69.32 20.5 110.6 1.235 168.4C-2.952 181 3.845 194.6 16.41 198.8C18.94 199.6 21.48 200 24 200c10.05 0 19.42-6.344 22.77-16.41C59.45 145.5 90.47 117.8 128 108L128 139.2C90.27 157.2 64 195.4 64 240L64 416h223.1l.0001-176c0-44.6-26.27-82.79-63.1-100.8L224 104l63.1-.002c0 11.59 8.297 21.53 19.7 23.62l175.1 31.1c1.438 .25 2.875 .375 4.297 .375c5.578 0 11.03-1.938 15.37-5.562c5.469-4.562 8.625-11.31 8.625-18.44V23.1C511.1 16.87 508.8 10.12 503.4 5.56zM176 96C167.2 96 160 88.84 160 80S167.2 64 176 64s15.1 7.164 15.1 16S184.8 96 176 96z',
			),
		),
		'label'             => __( 'Fire Extinguisher', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'fire-flame-curved'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 319.1C384 425.9 297.9 512 192 512s-192-86.13-192-192c0-58.67 27.82-106.8 54.57-134.1C69.54 169.3 96 179.8 96 201.5v85.5c0 35.17 27.97 64.5 63.16 64.94C194.9 352.5 224 323.6 224 288c0-88-175.1-96.12-52.15-277.2c13.5-19.72 44.15-10.77 44.15 13.03C215.1 127 384 149.7 384 319.1z',
			),
		),
		'label'             => __( 'Fire Flame Curved', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'fire-flame-simple'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M203.1 4.365c-6.177-5.82-16.06-5.819-22.23-.0007C74.52 104.5 0 234.1 0 312C0 437.9 79 512 192 512s192-74.05 192-200C384 233.9 309 104.2 203.1 4.365zM192 432c-56.5 0-96-37.76-96-91.74c0-12.47 4.207-55.32 83.87-143c6.314-6.953 17.95-6.953 24.26 0C283.8 284.9 288 327.8 288 340.3C288 394.2 248.5 432 192 432z',
			),
		),
		'label'             => __( 'Fire Flame Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'firefox'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M503.5 241.5c-.12-1.56-.24-3.12-.24-4.68v-.12l-.36-4.68v-.12a245.9 245.9 0 0 0 -7.32-41.15c0-.12 0-.12-.12-.24l-1.08-4c-.12-.24-.12-.48-.24-.6-.36-1.2-.72-2.52-1.08-3.72-.12-.24-.12-.6-.24-.84-.36-1.2-.72-2.4-1.08-3.48-.12-.36-.24-.6-.36-1-.36-1.2-.72-2.28-1.2-3.48l-.36-1.08c-.36-1.08-.84-2.28-1.2-3.36a8.27 8.27 0 0 0 -.36-1c-.48-1.08-.84-2.28-1.32-3.36-.12-.24-.24-.6-.36-.84-.48-1.2-1-2.28-1.44-3.48 0-.12-.12-.24-.12-.36-1.56-3.84-3.24-7.68-5-11.4l-.36-.72c-.48-1-.84-1.8-1.32-2.64-.24-.48-.48-1.08-.72-1.56-.36-.84-.84-1.56-1.2-2.4-.36-.6-.6-1.2-1-1.8s-.84-1.44-1.2-2.28c-.36-.6-.72-1.32-1.08-1.92s-.84-1.44-1.2-2.16a18.07 18.07 0 0 0 -1.2-2c-.36-.72-.84-1.32-1.2-2s-.84-1.32-1.2-2-.84-1.32-1.2-1.92-.84-1.44-1.32-2.16a15.63 15.63 0 0 0 -1.2-1.8L463.2 119a15.63 15.63 0 0 0 -1.2-1.8c-.48-.72-1.08-1.56-1.56-2.28-.36-.48-.72-1.08-1.08-1.56l-1.8-2.52c-.36-.48-.6-.84-1-1.32-1-1.32-1.8-2.52-2.76-3.72a248.8 248.8 0 0 0 -23.51-26.64A186.8 186.8 0 0 0 412 62.46c-4-3.48-8.16-6.72-12.48-9.84a162.5 162.5 0 0 0 -24.6-15.12c-2.4-1.32-4.8-2.52-7.2-3.72a254 254 0 0 0 -55.43-19.56c-1.92-.36-3.84-.84-5.64-1.2h-.12c-1-.12-1.8-.36-2.76-.48a236.4 236.4 0 0 0 -38-4H255.1a234.6 234.6 0 0 0 -45.48 5c-33.59 7.08-63.23 21.24-82.91 39-1.08 1-1.92 1.68-2.4 2.16l-.48 .48H124l-.12 .12 .12-.12a.12 .12 0 0 0 .12-.12l-.12 .12a.42 .42 0 0 1 .24-.12c14.64-8.76 34.92-16 49.44-19.56l5.88-1.44c.36-.12 .84-.12 1.2-.24 1.68-.36 3.36-.72 5.16-1.08 .24 0 .6-.12 .84-.12C250.9 20.94 319.3 40.14 367 85.61a171.5 171.5 0 0 1 26.88 32.76c30.36 49.2 27.48 111.1 3.84 147.6-34.44 53-111.3 71.27-159 24.84a84.19 84.19 0 0 1 -25.56-59 74.05 74.05 0 0 1 6.24-31c1.68-3.84 13.08-25.67 18.24-24.59-13.08-2.76-37.55 2.64-54.71 28.19-15.36 22.92-14.52 58.2-5 83.28a132.9 132.9 0 0 1 -12.12-39.24c-12.24-82.55 43.31-153 94.31-170.5-27.48-24-96.47-22.31-147.7 15.36-29.88 22-51.23 53.16-62.51 90.36 1.68-20.88 9.6-52.08 25.8-83.88-17.16 8.88-39 37-49.8 62.88-15.6 37.43-21 82.19-16.08 124.8 .36 3.24 .72 6.36 1.08 9.6 19.92 117.1 122 206.4 244.8 206.4C392.8 503.4 504 392.2 504 255 503.9 250.5 503.8 245.9 503.5 241.5z',
			),
		),
		'label'             => __( 'Firefox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'firefox-browser'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M130.2 127.5C130.4 127.6 130.3 127.6 130.2 127.5V127.5zM481.6 172.9C471 147.4 449.6 119.9 432.7 111.2C446.4 138.1 454.4 165 457.4 185.2C457.4 185.3 457.4 185.4 457.5 185.6C429.9 116.8 383.1 89.11 344.9 28.75C329.9 5.058 333.1 3.518 331.8 4.088L331.7 4.158C284.1 30.11 256.4 82.53 249.1 126.9C232.5 127.8 216.2 131.9 201.2 139C199.8 139.6 198.7 140.7 198.1 142C197.4 143.4 197.2 144.9 197.5 146.3C197.7 147.2 198.1 147.1 198.6 148.6C199.1 149.3 199.8 149.9 200.5 150.3C201.3 150.7 202.1 150.1 202.1 151.1C203.8 151.1 204.7 151 205.5 150.8L206 150.6C221.5 143.3 238.4 139.4 255.5 139.2C318.4 138.7 352.7 183.3 363.2 201.5C350.2 192.4 326.8 183.3 304.3 187.2C392.1 231.1 368.5 381.8 246.1 376.4C187.5 373.8 149.9 325.5 146.4 285.6C146.4 285.6 157.7 243.7 227 243.7C234.5 243.7 255.1 222.8 256.4 216.7C256.3 214.7 213.8 197.8 197.3 181.5C188.4 172.8 184.2 168.6 180.5 165.5C178.5 163.8 176.4 162.2 174.2 160.7C168.6 141.2 168.4 120.6 173.5 101.1C148.4 112.5 128.1 130.5 114.8 146.4H114.7C105 134.2 105.7 93.78 106.3 85.35C106.1 84.82 99.02 89.02 98.1 89.66C89.53 95.71 81.55 102.6 74.26 110.1C57.97 126.7 30.13 160.2 18.76 211.3C14.22 231.7 12 255.7 12 263.6C12 398.3 121.2 507.5 255.9 507.5C376.6 507.5 478.9 420.3 496.4 304.9C507.9 228.2 481.6 173.8 481.6 172.9z',
			),
		),
		'label'             => __( 'Firefox Browser', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'first-order'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M12.9 229.2c.1-.1 .2-.3 .3-.4 0 .1 0 .3-.1 .4h-.2zM224 96.6c-7.1 0-14.6 .6-21.4 1.7l3.7 67.4-22-64c-14.3 3.7-27.7 9.4-40 16.6l29.4 61.4-45.1-50.9c-11.4 8.9-21.7 19.1-30.6 30.9l50.6 45.4-61.1-29.7c-7.1 12.3-12.9 25.7-16.6 40l64.3 22.6-68-4c-.9 7.1-1.4 14.6-1.4 22s.6 14.6 1.4 21.7l67.7-4-64 22.6c3.7 14.3 9.4 27.7 16.6 40.3l61.1-29.7L97.7 352c8.9 11.7 19.1 22.3 30.9 30.9l44.9-50.9-29.5 61.4c12.3 7.4 25.7 13.1 40 16.9l22.3-64.6-4 68c7.1 1.1 14.6 1.7 21.7 1.7 7.4 0 14.6-.6 21.7-1.7l-4-68.6 22.6 65.1c14.3-4 27.7-9.4 40-16.9L274.9 332l44.9 50.9c11.7-8.9 22-19.1 30.6-30.9l-50.6-45.1 61.1 29.4c7.1-12.3 12.9-25.7 16.6-40.3l-64-22.3 67.4 4c1.1-7.1 1.4-14.3 1.4-21.7s-.3-14.9-1.4-22l-67.7 4 64-22.3c-3.7-14.3-9.1-28-16.6-40.3l-60.9 29.7 50.6-45.4c-8.9-11.7-19.1-22-30.6-30.9l-45.1 50.9 29.4-61.1c-12.3-7.4-25.7-13.1-40-16.9L241.7 166l4-67.7c-7.1-1.2-14.3-1.7-21.7-1.7zM443.4 128v256L224 512 4.6 384V128L224 0l219.4 128zm-17.1 10.3L224 20.9 21.7 138.3v235.1L224 491.1l202.3-117.7V138.3zM224 37.1l187.7 109.4v218.9L224 474.9 36.3 365.4V146.6L224 37.1zm0 50.9c-92.3 0-166.9 75.1-166.9 168 0 92.6 74.6 167.7 166.9 167.7 92 0 166.9-75.1 166.9-167.7 0-92.9-74.9-168-166.9-168z',
			),
		),
		'label'             => __( 'First Order', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'first-order-alt'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S384.1 8 248 8zm0 488.2C115.3 496.2 7.79 388.7 7.79 256S115.3 15.79 248 15.79 488.2 123.3 488.2 256 380.7 496.2 248 496.2zm0-459.9C126.7 36.29 28.29 134.7 28.29 256S126.7 475.7 248 475.7 467.7 377.3 467.7 256 369.3 36.29 248 36.29zm0 431.2c-116.8 0-211.5-94.69-211.5-211.5S131.2 44.49 248 44.49 459.5 139.2 459.5 256 364.8 467.5 248 467.5zm186.2-162.1a191.6 191.6 0 0 1 -20.13 48.69l-74.13-35.88 61.48 54.82a193.5 193.5 0 0 1 -37.2 37.29l-54.8-61.57 35.88 74.27a190.9 190.9 0 0 1 -48.63 20.23l-27.29-78.47 4.79 82.93c-8.61 1.18-17.4 1.8-26.33 1.8s-17.72-.62-26.33-1.8l4.76-82.46-27.15 78.03a191.4 191.4 0 0 1 -48.65-20.2l35.93-74.34-54.87 61.64a193.9 193.9 0 0 1 -37.22-37.28l61.59-54.9-74.26 35.93a191.6 191.6 0 0 1 -20.14-48.69l77.84-27.11-82.23 4.76c-1.16-8.57-1.78-17.32-1.78-26.21 0-9 .63-17.84 1.82-26.51l82.38 4.77-77.94-27.16a191.7 191.7 0 0 1 20.23-48.67l74.22 35.92-61.52-54.86a193.9 193.9 0 0 1 37.28-37.22l54.76 61.53-35.83-74.17a191.5 191.5 0 0 1 48.65-20.13l26.87 77.25-4.71-81.61c8.61-1.18 17.39-1.8 26.32-1.8s17.71 .62 26.32 1.8l-4.74 82.16 27.05-77.76c17.27 4.5 33.6 11.35 48.63 20.17l-35.82 74.12 54.72-61.47a193.1 193.1 0 0 1 37.24 37.23l-61.45 54.77 74.12-35.86a191.5 191.5 0 0 1 20.2 48.65l-77.81 27.1 82.24-4.75c1.19 8.66 1.82 17.5 1.82 26.49 0 8.88-.61 17.63-1.78 26.19l-82.12-4.75 77.72 27.09z',
			),
		),
		'label'             => __( 'Alternate First Order', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'firstdraft'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 192h-64v128H192v128H0v-25.6h166.4v-128h128v-128H384V192zm-25.6 38.4v128h-128v128H64V512h192V384h128V230.4h-25.6zm25.6 192h-89.6V512H320v-64h64v-25.6zM0 0v384h128V256h128V128h128V0H0z',
			),
		),
		'label'             => __( 'firstdraft', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'fish'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M180.5 141.5C219.7 108.5 272.6 80 336 80C399.4 80 452.3 108.5 491.5 141.5C530.5 174.5 558.3 213.1 572.4 241.3C577.2 250.5 577.2 261.5 572.4 270.7C558.3 298 530.5 337.5 491.5 370.5C452.3 403.5 399.4 432 336 432C272.6 432 219.7 403.5 180.5 370.5C164.3 356.7 150 341.9 137.8 327.3L48.12 379.6C35.61 386.9 19.76 384.9 9.474 374.7C-.8133 364.5-2.97 348.7 4.216 336.1L50 256L4.216 175.9C-2.97 163.3-.8133 147.5 9.474 137.3C19.76 127.1 35.61 125.1 48.12 132.4L137.8 184.7C150 170.1 164.3 155.3 180.5 141.5L180.5 141.5zM416 224C398.3 224 384 238.3 384 256C384 273.7 398.3 288 416 288C433.7 288 448 273.7 448 256C448 238.3 433.7 224 416 224z',
			),
		),
		'label'             => __( 'Fish', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'fish-fins'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352.8 96.61C407.7 100.6 454.3 123.6 490 150.4C529.2 179.8 557.3 215.1 571.7 239.9C577.4 249.9 577.4 262.1 571.7 272.1C557.3 296.9 529.2 332.2 490 361.6C454.3 388.4 407.7 411.4 352.8 415.4L275.2 473.6C264.6 481.6 250.2 482.1 238.9 475.1C227.7 468 222 454.7 224.6 441.7L234.3 393.1C214.1 384.1 197.5 373.2 181.1 361.6C166.6 350.1 152.1 337.7 141.2 325.3L48.12 379.6C35.61 386.9 19.76 384.9 9.475 374.7C-.8124 364.5-2.969 348.7 4.217 336.1L50 256L4.217 175.9C-2.969 163.3-.8124 147.5 9.475 137.3C19.76 127.1 35.61 125.1 48.12 132.4L141.2 186.7C152.1 174.3 166.6 161.9 181.1 150.4C197.5 138.8 214.1 127.9 234.3 118.9L224.6 70.28C222 57.27 227.7 44 238.9 36.93C250.2 29.85 264.6 30.44 275.2 38.4L352.8 96.61zM416 224C398.3 224 384 238.3 384 256C384 273.7 398.3 288 416 288C433.7 288 448 273.7 448 256C448 238.3 433.7 224 416 224z',
			),
		),
		'label'             => __( 'Fish Fins', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'flag'                                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 496C64 504.8 56.75 512 48 512h-32C7.25 512 0 504.8 0 496V32c0-17.75 14.25-32 32-32s32 14.25 32 32V496zM476.3 0c-6.365 0-13.01 1.35-19.34 4.233c-45.69 20.86-79.56 27.94-107.8 27.94c-59.96 0-94.81-31.86-163.9-31.87C160.9 .3055 131.6 4.867 96 15.75v350.5c32-9.984 59.87-14.1 84.85-14.1c73.63 0 124.9 31.78 198.6 31.78c31.91 0 68.02-5.971 111.1-23.09C504.1 355.9 512 344.4 512 332.1V30.73C512 11.1 495.3 0 476.3 0z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M476.3 0c-6.365 0-13.01 1.35-19.34 4.233c-45.69 20.86-79.56 27.94-107.8 27.94c-59.96 0-94.81-31.86-163.9-31.87c-34.63 0-77.87 8.003-137.2 32.05V24C48 10.75 37.25 0 24 0S0 10.75 0 24v464C0 501.3 10.75 512 24 512s24-10.75 24-24v-104c53.59-23.86 96.02-31.81 132.8-31.81c73.63 0 124.9 31.78 198.6 31.78c31.91 0 68.02-5.971 111.1-23.09C504.1 355.9 512 344.4 512 332.1V30.73C512 11.1 495.3 0 476.3 0zM464 319.8c-30.31 10.82-58.08 16.1-84.6 16.1c-30.8 0-58.31-7-87.44-14.41c-32.01-8.141-68.29-17.37-111.1-17.37c-42.35 0-85.99 9.09-132.8 27.73V84.14l18.03-7.301c47.39-19.2 86.38-28.54 119.2-28.54c28.24 .0039 49.12 6.711 73.31 14.48c25.38 8.148 54.13 17.39 90.58 17.39c35.43 0 72.24-8.496 114.9-26.61V319.8z',
			),
		),
		'label'             => __( 'Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'flag-checkered'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M509.5 .0234c-6.145 0-12.53 1.344-18.64 4.227c-44.11 20.86-76.81 27.94-104.1 27.94c-57.89 0-91.53-31.86-158.2-31.87C195 .3203 153.3 8.324 96 32.38V32c0-17.75-14.25-32-32-32S32 14.25 32 32L31.96 496c0 8.75 7.25 16 16 16H80C88.75 512 96 504.8 96 496V384c51.74-23.86 92.71-31.82 128.3-31.82c71.09 0 120.6 31.78 191.7 31.78c30.81 0 65.67-5.969 108.1-23.09C536.3 355.9 544 344.4 544 332.1V30.74C544 12.01 527.8 .0234 509.5 .0234zM480 141.8c-31.99 14.04-57.81 20.59-80 22.49v80.21c25.44-1.477 51.59-6.953 80-17.34V308.9c-22.83 7.441-43.93 11.08-64.03 11.08c-5.447 0-10.71-.4258-15.97-.8906V244.5c-4.436 .2578-8.893 .6523-13.29 .6523c-25.82 0-47.35-4.547-66.71-10.08v66.91c-23.81-6.055-50.17-11.41-80-12.98V213.1C236.2 213.7 232.5 213.3 228.5 213.3C208.8 213.3 185.1 217.7 160 225.1v69.1C139.2 299.4 117.9 305.8 96 314.4V250.7l24.77-10.39C134.8 234.5 147.6 229.9 160 225.1V143.4C140.9 148.5 120.1 155.2 96 165.3V101.8l24.77-10.39C134.8 85.52 147.6 80.97 160 77.02v66.41c26.39-6.953 49.09-10.17 68.48-10.16c4.072 0 7.676 .4453 11.52 .668V65.03C258.6 66.6 274.4 71.55 293.2 77.83C301.7 80.63 310.7 83.45 320 86.12v66.07c20.79 6.84 41.45 12.96 66.71 12.96c4.207 0 8.781-.4766 13.29-.8594V95.54c25.44-1.477 51.59-6.953 80-17.34V141.8zM240 133.9v80.04c18.61 1.57 34.37 6.523 53.23 12.8C301.7 229.6 310.7 232.4 320 235.1V152.2C296.1 144.3 271.6 135.8 240 133.9z',
			),
		),
		'label'             => __( 'Flag Checkered', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'flag-usa'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 61.63V30.74c0-25-28.81-37.99-53.17-26.49C306.3 91.5 321.5-62.25 96 32.38V32c0-17.75-14.25-32-32-32S32 14.25 32 32L31.96 496c0 8.75 7.25 16 15.1 16H80C88.75 512 96 504.8 96 496V384c200-92.25 238.8 53.25 428.1-23.12C536.3 355.9 544 344.4 544 332.1V296.1c-46.98 17.25-86.42 24.12-120.8 24.12c-40.25-.125-74.17-8.5-107.7-16.62C254 288.5 195.3 274.8 96 314.8v-34.5c102-37.63 166.5-22.75 228.4-7.625C385.1 287.8 444.7 301.4 544 261.5V200c-46.98 17.25-86.42 24.12-120.8 24.12c-40.25 0-74.17-8.375-107.7-16.5C254 192.5 195.3 178.8 96 218.8v-34.5c102-37.5 166.5-22.62 228.4-7.5C385.1 191.8 444.7 205.4 544 165.6V96.75c-57.75 23.5-100.4 31.38-135.8 31.38c-62.96 0-118.9-27.09-120.2-27.38V67.5C331.9 78.94 390.1 128.3 544 61.63zM160 136c-8.75 0-16-7.125-16-16s7.25-16 16-16s16 7.125 16 16S168.8 136 160 136zM160 72c-8.75 0-16-7-16-16c0-8.75 7.25-16 16-16s16 7.125 16 16S168.8 72 160 72zM224 128C215.3 128 208 120.9 208 112S215.3 96 224 96s16 7 16 16C240 120.8 232.8 128 224 128zM224 64.25c-8.75 0-16-7-16-16c0-8.75 7.25-16 16-16s16 7.125 16 16S232.8 64.25 224 64.25z',
			),
		),
		'label'             => __( 'Flag Usa', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'flask'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M437.2 403.5L319.1 215L319.1 64h7.1c13.25 0 23.1-10.75 23.1-24l-.0002-16c0-13.25-10.75-24-23.1-24H120C106.8 0 96.01 10.75 96.01 24l-.0002 16c0 13.25 10.75 24 23.1 24h7.1L128 215l-117.2 188.5C-18.48 450.6 15.27 512 70.89 512h306.2C432.7 512 466.5 450.5 437.2 403.5zM137.1 320l48.15-77.63C189.8 237.3 191.9 230.8 191.9 224l.0651-160h63.99l-.06 160c0 6.875 2.25 13.25 5.875 18.38L309.9 320H137.1z',
			),
		),
		'label'             => __( 'Flask', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'flask-vial'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 442.5C149.1 446.1 139.2 448 128 448C74.98 448 32 405 32 352V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H224C241.7 0 256 14.33 256 32C256 49.67 241.7 64 224 64V309.9L175 389.4C165.2 405.4 160 423.8 160 442.5zM96 160H160V64H96V160zM512 0C529.7 0 544 14.33 544 32C544 49.67 529.7 64 512 64V214.9L629.7 406.2C636.4 417.2 640 429.7 640 442.6C640 480.9 608.9 512 570.6 512H261.4C223.1 512 191.1 480.9 191.1 442.6C191.1 429.7 195.6 417.2 202.3 406.2L319.1 214.9V64C302.3 64 287.1 49.67 287.1 32C287.1 14.33 302.3 0 319.1 0L512 0zM384 64V224C384 229.9 382.4 235.7 379.3 240.8L330.5 320H501.5L452.7 240.8C449.6 235.7 448 229.9 448 224V64H384z',
			),
		),
		'label'             => __( 'Flask Vial', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'flickr'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z',
			),
		),
		'label'             => __( 'Flickr', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'flipboard'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32H0zm358.4 179.2h-89.6v89.6h-89.6v89.6H89.6V121.6h268.8v89.6z',
			),
		),
		'label'             => __( 'Flipboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'floppy-disk'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M433.1 129.1l-83.9-83.9C342.3 38.32 327.1 32 316.1 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V163.9C448 152.9 441.7 137.7 433.1 129.1zM224 416c-35.34 0-64-28.66-64-64s28.66-64 64-64s64 28.66 64 64S259.3 416 224 416zM320 208C320 216.8 312.8 224 304 224h-224C71.16 224 64 216.8 64 208v-96C64 103.2 71.16 96 80 96h224C312.8 96 320 103.2 320 112V208z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 256c-35.2 0-64 28.8-64 64c0 35.2 28.8 64 64 64c35.2 0 64-28.8 64-64C288 284.8 259.2 256 224 256zM433.1 129.1l-83.9-83.9C341.1 37.06 328.8 32 316.1 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V163.9C448 151.2 442.9 138.9 433.1 129.1zM128 80h144V160H128V80zM400 416c0 8.836-7.164 16-16 16H64c-8.836 0-16-7.164-16-16V96c0-8.838 7.164-16 16-16h16v104c0 13.25 10.75 24 24 24h192C309.3 208 320 197.3 320 184V83.88l78.25 78.25C399.4 163.2 400 164.8 400 166.3V416z',
			),
		),
		'label'             => __( 'Floppy Disk', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design', 'science-and-technology' ),
	),
	'florin-sign'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 32C369.7 32 384 46.33 384 64C384 81.67 369.7 96 352 96H314.7C301.7 96 290.1 103.8 285.1 115.7L240 224H320C337.7 224 352 238.3 352 256C352 273.7 337.7 288 320 288H213.3L157.9 420.9C143 456.7 108.1 480 69.33 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H69.33C82.25 416 93.9 408.2 98.87 396.3L144 288H64C46.33 288 32 273.7 32 256C32 238.3 46.33 224 64 224H170.7L226.1 91.08C240.1 55.3 275.9 32 314.7 32H352z',
			),
		),
		'label'             => __( 'Florin Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'fly'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M197.8 427.8c12.9 11.7 33.7 33.3 33.2 50.7 0 .8-.1 1.6-.1 2.5-1.8 19.8-18.8 31.1-39.1 31-25-.1-39.9-16.8-38.7-35.8 1-16.2 20.5-36.7 32.4-47.6 2.3-2.1 2.7-2.7 5.6-3.6 3.4 0 3.9 .3 6.7 2.8zM331.9 67.3c-16.3-25.7-38.6-40.6-63.3-52.1C243.1 4.5 214-.2 192 0c-44.1 0-71.2 13.2-81.1 17.3C57.3 45.2 26.5 87.2 28 158.6c7.1 82.2 97 176 155.8 233.8 1.7 1.6 4.5 4.5 6.2 5.1l3.3 .1c2.1-.7 1.8-.5 3.5-2.1 52.3-49.2 140.7-145.8 155.9-215.7 7-39.2 3.1-72.5-20.8-112.5zM186.8 351.9c-28-51.1-65.2-130.7-69.3-189-3.4-47.5 11.4-131.2 69.3-136.7v325.7zM328.7 180c-16.4 56.8-77.3 128-118.9 170.3C237.6 298.4 275 217 277 158.4c1.6-45.9-9.8-105.8-48-131.4 88.8 18.3 115.5 98.1 99.7 153z',
			),
		),
		'label'             => __( 'Fly', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'folder'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 144v288c0 26.5-21.5 48-48 48h-416C21.5 480 0 458.5 0 432v-352C0 53.5 21.5 32 48 32h160l64 64h192C490.5 96 512 117.5 512 144z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447.1 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H63.1c-35.35 0-64 28.66-64 64v320c0 35.34 28.65 64 64 64h384c35.35 0 64-28.66 64-64V160C511.1 124.7 483.3 96 447.1 96zM463.1 416c0 8.824-7.178 16-16 16h-384c-8.822 0-16-7.176-16-16V96c0-8.824 7.178-16 16-16h117.5c4.273 0 8.293 1.664 11.31 4.688L255.1 144h192c8.822 0 16 7.176 16 16V416z',
			),
		),
		'label'             => __( 'Folder', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design', 'science-and-technology' ),
	),
	'folder-closed'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 96h-192l-64-64h-160C21.5 32 0 53.5 0 80V160h512V144C512 117.5 490.5 96 464 96zM0 432C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48V192H0V432z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 96h-172.1L226.7 50.75C214.7 38.74 198.5 32 181.5 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h384c35.35 0 64-28.66 64-64V160C512 124.7 483.3 96 448 96zM64 80h117.5c4.273 0 8.293 1.664 11.31 4.688L256 144h192c8.822 0 16 7.176 16 16v32h-416V96C48 87.18 55.18 80 64 80zM448 432H64c-8.822 0-16-7.176-16-16V240h416V416C464 424.8 456.8 432 448 432z',
			),
		),
		'label'             => __( 'Folder Closed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'folder-minus'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 96h-192l-64-64h-160C21.5 32 0 53.5 0 80v352C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-288C512 117.5 490.5 96 464 96zM336 311.1H175.1C162.7 311.1 152 301.3 152 288c0-13.26 10.74-23.1 23.1-23.1h160C349.3 264 360 274.7 360 288S349.3 311.1 336 311.1z',
			),
		),
		'label'             => __( 'Folder Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'folder-open'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M147.8 192H480V144C480 117.5 458.5 96 432 96h-160l-64-64h-160C21.49 32 0 53.49 0 80v328.4l90.54-181.1C101.4 205.6 123.4 192 147.8 192zM543.1 224H147.8C135.7 224 124.6 230.8 119.2 241.7L0 480h447.1c12.12 0 23.2-6.852 28.62-17.69l96-192C583.2 249 567.7 224 543.1 224z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M572.6 270.3l-96 192C471.2 473.2 460.1 480 447.1 480H64c-35.35 0-64-28.66-64-64V96c0-35.34 28.65-64 64-64h117.5c16.97 0 33.25 6.742 45.26 18.75L275.9 96H416c35.35 0 64 28.66 64 64v32h-48V160c0-8.824-7.178-16-16-16H256L192.8 84.69C189.8 81.66 185.8 80 181.5 80H64C55.18 80 48 87.18 48 96v288l71.16-142.3C124.6 230.8 135.7 224 147.8 224h396.2C567.7 224 583.2 249 572.6 270.3z',
			),
		),
		'label'             => __( 'Folder Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'science-and-technology' ),
	),
	'folder-plus'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 96h-192l-64-64h-160C21.5 32 0 53.5 0 80v352C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-288C512 117.5 490.5 96 464 96zM336 311.1h-56v56C279.1 381.3 269.3 392 256 392c-13.27 0-23.1-10.74-23.1-23.1V311.1H175.1C162.7 311.1 152 301.3 152 288c0-13.26 10.74-23.1 23.1-23.1h56V207.1C232 194.7 242.7 184 256 184s23.1 10.74 23.1 23.1V264h56C349.3 264 360 274.7 360 288S349.3 311.1 336 311.1z',
			),
		),
		'label'             => __( 'Folder Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'folder-tree'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 32h-112l-32-32H320c-17.62 0-32 14.38-32 32v160c0 17.62 14.38 32 32 32h224c17.62 0 32-14.38 32-32V64C576 46.38 561.6 32 544 32zM544 320h-112l-32-32H320c-17.62 0-32 14.38-32 32v160c0 17.62 14.38 32 32 32h224c17.62 0 32-14.38 32-32v-128C576 334.4 561.6 320 544 320zM64 16C64 7.125 56.88 0 48 0h-32C7.125 0 0 7.125 0 16V416c0 17.62 14.38 32 32 32h224v-64H64V160h192V96H64V16z',
			),
		),
		'label'             => __( 'Folder Tree', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'font'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 416h-25.81L253.1 52.76c-4.688-12.47-16.57-20.76-29.91-20.76s-25.34 8.289-30.02 20.76L57.81 416H32c-17.67 0-32 14.31-32 32s14.33 32 32 32h96c17.67 0 32-14.31 32-32s-14.33-32-32-32H126.2l17.1-48h159.6l17.1 48H320c-17.67 0-32 14.31-32 32s14.33 32 32 32h96c17.67 0 32-14.31 32-32S433.7 416 416 416zM168.2 304L224 155.1l55.82 148.9H168.2z',
			),
		),
		'label'             => __( 'Font', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'font-awesome'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 48V384c-63.09 22.54-82.34 32-119.5 32c-62.82 0-86.6-32-149.3-32C158.6 384 142.6 387.6 128 392.2v-64C142.6 323.6 158.6 320 179.2 320c62.73 0 86.51 32 149.3 32C348.9 352 364.1 349 384 342.7v-208C364.1 141 348.9 144 328.5 144c-62.82 0-86.6-32-149.3-32C128.4 112 104.3 132.6 64 140.7v307.3C64 465.7 49.67 480 32 480S0 465.7 0 448V63.1C0 46.33 14.33 32 31.1 32S64 46.33 64 63.1V76.66C104.3 68.63 128.4 48 179.2 48c62.73 0 86.51 32 149.3 32C365.7 80 384.9 70.54 448 48z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 48V384c-63.09 22.54-82.34 32-119.5 32c-62.82 0-86.6-32-149.3-32c-21.69 0-38.48 3.791-53.74 8.766C110.1 397.5 96 386.1 96 371.7v-.7461c0-9.275 5.734-17.6 14.42-20.86C129.1 342.8 150.2 336 179.2 336c62.73 0 86.51 32 149.3 32c25.5 0 42.85-4.604 71.47-14.7v-240C379.2 120.6 357.7 128 328.5 128c-.0039 0 .0039 0 0 0c-62.81 0-86.61-32-149.3-32C122.1 96 98.8 122.1 48 126.1V456C48 469.3 37.25 480 24 480S0 469.3 0 456V56C0 42.74 10.75 32 24 32S48 42.74 48 56v22.99C98.8 74.14 122.1 48 179.2 48c62.77 0 86.45 32 149.3 32C366.1 80 386.8 69.85 448 48z',
			),
			'brands'  => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 48V384C385 407 366 416 329 416C266 416 242 384 179 384C159 384 143 388 128 392V328C143 324 159 320 179 320C242 320 266 352 329 352C349 352 364 349 384 343V135C364 141 349 144 329 144C266 144 242 112 179 112C128 112 104 133 64 141V448C64 466 50 480 32 480S0 466 0 448V64C0 46 14 32 32 32S64 46 64 64V77C104 69 128 48 179 48C242 48 266 80 329 80C366 80 385 71 448 48z',
			),
		),
		'label'             => __( 'Font Awesome', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology', 'brands', 'brands', 'social' ),
	),
	'fonticons'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32zm187 140.9c-18.4 0-19 9.9-19 27.4v23.3c0 2.4-3.5 4.4-.6 4.4h67.4l-11.1 37.3H168v112.9c0 5.8-2 6.7 3.2 7.3l43.5 4.1v25.1H84V389l21.3-2c5.2-.6 6.7-2.3 6.7-7.9V267.7c0-2.3-2.9-2.3-5.8-2.3H84V228h28v-21c0-49.6 26.5-70 77.3-70 34.1 0 64.7 8.2 64.7 52.8l-50.7 6.1c.3-18.7-4.4-23-16.3-23zm74.3 241.8v-25.1l20.4-2.6c5.2-.6 7.6-1.7 7.6-7.3V271.8c0-4.1-2.9-6.7-6.7-7.9l-24.2-6.4 6.7-29.5h80.2v151.7c0 5.8-2.6 6.4 2.9 7.3l15.7 2.6v25.1zm80.8-255.5l9 33.2-7.3 7.3-31.2-16.6-31.2 16.6-7.3-7.3 9-33.2-21.8-24.2 3.5-9.6h27.7l15.5-28h9.3l15.5 28h27.7l3.5 9.6z',
			),
		),
		'label'             => __( 'Fonticons', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'fonticons-fi'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M114.4 224h92.4l-15.2 51.2h-76.4V433c0 8-2.8 9.2 4.4 10l59.6 5.6V483H0v-35.2l29.2-2.8c7.2-.8 9.2-3.2 9.2-10.8V278.4c0-3.2-4-3.2-8-3.2H0V224h38.4v-28.8c0-68 36.4-96 106-96 46.8 0 88.8 11.2 88.8 72.4l-69.6 8.4c.4-25.6-6-31.6-22.4-31.6-25.2 0-26 13.6-26 37.6v32c0 3.2-4.8 6-.8 6zM384 483H243.2v-34.4l28-3.6c7.2-.8 10.4-2.4 10.4-10V287c0-5.6-4-9.2-9.2-10.8l-33.2-8.8 9.2-40.4h110v208c0 8-3.6 8.8 4 10l21.6 3.6V483zm-30-347.2l12.4 45.6-10 10-42.8-22.8-42.8 22.8-10-10 12.4-45.6-30-36.4 4.8-10h38L307.2 51H320l21.2 38.4h38l4.8 13.2-30 33.2z',
			),
		),
		'label'             => __( 'Fonticons Fi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'football'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M16.17 337.5c0 44.98 7.565 83.54 13.98 107.9C35.22 464.3 50.46 496 174.9 496c9.566 0 19.59-.4707 29.84-1.271L17.33 307.3C16.53 317.6 16.17 327.7 16.17 337.5zM495.8 174.5c0-44.98-7.565-83.53-13.98-107.9c-4.688-17.54-18.34-31.23-36.04-35.95C435.5 27.91 392.9 16 337 16c-9.564 0-19.59 .4707-29.84 1.271l187.5 187.5C495.5 194.4 495.8 184.3 495.8 174.5zM26.77 248.8l236.3 236.3c142-36.1 203.9-150.4 222.2-221.1L248.9 26.87C106.9 62.96 45.07 177.2 26.77 248.8zM256 335.1c0 9.141-7.474 16-16 16c-4.094 0-8.188-1.564-11.31-4.689L164.7 283.3C161.6 280.2 160 276.1 160 271.1c0-8.529 6.865-16 16-16c4.095 0 8.189 1.562 11.31 4.688l64.01 64C254.4 327.8 256 331.9 256 335.1zM304 287.1c0 9.141-7.474 16-16 16c-4.094 0-8.188-1.564-11.31-4.689L212.7 235.3C209.6 232.2 208 228.1 208 223.1c0-9.141 7.473-16 16-16c4.094 0 8.188 1.562 11.31 4.688l64.01 64.01C302.5 279.8 304 283.9 304 287.1zM256 175.1c0-9.141 7.473-16 16-16c4.094 0 8.188 1.562 11.31 4.688l64.01 64.01c3.125 3.125 4.688 7.219 4.688 11.31c0 9.133-7.468 16-16 16c-4.094 0-8.189-1.562-11.31-4.688l-64.01-64.01C257.6 184.2 256 180.1 256 175.1z',
			),
		),
		'label'             => __( 'Football', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'fort-awesome'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M489.2 287.9h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6V146.2c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32h-36.6v-32c0-6-8-4.6-11.7-4.6v-38c8.3-2 17.1-3.4 25.7-3.4 10.9 0 20.9 4.3 31.4 4.3 4.6 0 27.7-1.1 27.7-8v-60c0-2.6-2-4.6-4.6-4.6-5.1 0-15.1 4.3-24 4.3-9.7 0-20.9-4.3-32.6-4.3-8 0-16 1.1-23.7 2.9v-4.9c5.4-2.6 9.1-8.3 9.1-14.3 0-20.7-31.4-20.8-31.4 0 0 6 3.7 11.7 9.1 14.3v111.7c-3.7 0-11.7-1.4-11.7 4.6v32h-36.6v-32c0-2.6-2-4.6-4.6-4.6h-27.4c-2.6 0-4.6 2-4.6 4.6v32H128v-32c0-2.6-2-4.6-4.6-4.6H96c-2.6 0-4.6 2-4.6 4.6v178.3H54.8v-32c0-2.6-2-4.6-4.6-4.6H22.8c-2.6 0-4.6 2-4.6 4.6V512h182.9v-96c0-72.6 109.7-72.6 109.7 0v96h182.9V292.5c.1-2.6-1.9-4.6-4.5-4.6zm-288.1-4.5c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64zm146.4 0c0 2.6-2 4.6-4.6 4.6h-27.4c-2.6 0-4.6-2-4.6-4.6v-64c0-2.6 2-4.6 4.6-4.6h27.4c2.6 0 4.6 2 4.6 4.6v64z',
			),
		),
		'label'             => __( 'Fort Awesome', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'fort-awesome-alt'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208 237.4h-22.2c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7H208c2.1 0 3.7-1.6 3.7-3.7v-51.7c0-2.1-1.6-3.7-3.7-3.7zm118.2 0H304c-2.1 0-3.7 1.6-3.7 3.7v51.7c0 2.1 1.6 3.7 3.7 3.7h22.2c2.1 0 3.7-1.6 3.7-3.7v-51.7c-.1-2.1-1.7-3.7-3.7-3.7zm132-125.1c-2.3-3.2-4.6-6.4-7.1-9.5-9.8-12.5-20.8-24-32.8-34.4-4.5-3.9-9.1-7.6-13.9-11.2-1.6-1.2-3.2-2.3-4.8-3.5C372 34.1 340.3 20 306 13c-16.2-3.3-32.9-5-50-5s-33.9 1.7-50 5c-34.3 7.1-66 21.2-93.3 40.8-1.6 1.1-3.2 2.3-4.8 3.5-4.8 3.6-9.4 7.3-13.9 11.2-3 2.6-5.9 5.3-8.8 8s-5.7 5.5-8.4 8.4c-5.5 5.7-10.7 11.8-15.6 18-2.4 3.1-4.8 6.3-7.1 9.5C25.2 153 8.3 202.5 8.3 256c0 2 .1 4 .1 6 .1 .7 .1 1.3 .1 2 .1 1.3 .1 2.7 .2 4 0 .8 .1 1.5 .1 2.3 0 1.3 .1 2.5 .2 3.7 .1 .8 .1 1.6 .2 2.4 .1 1.1 .2 2.3 .3 3.5 0 .8 .1 1.6 .2 2.4 .1 1.2 .3 2.4 .4 3.6 .1 .8 .2 1.5 .3 2.3 .1 1.3 .3 2.6 .5 3.9 .1 .6 .2 1.3 .3 1.9l.9 5.7c.1 .6 .2 1.1 .3 1.7 .3 1.3 .5 2.7 .8 4 .2 .8 .3 1.6 .5 2.4 .2 1 .5 2.1 .7 3.2 .2 .9 .4 1.7 .6 2.6 .2 1 .4 2 .7 3 .2 .9 .5 1.8 .7 2.7 .3 1 .5 1.9 .8 2.9 .3 .9 .5 1.8 .8 2.7 .2 .9 .5 1.9 .8 2.8s.5 1.8 .8 2.7c.3 1 .6 1.9 .9 2.8 .6 1.6 1.1 3.3 1.7 4.9 .4 1 .7 1.9 1 2.8 .3 1 .7 2 1.1 3 .3 .8 .6 1.5 .9 2.3l1.2 3c.3 .7 .6 1.5 .9 2.2 .4 1 .9 2 1.3 3l.9 2.1c.5 1 .9 2 1.4 3 .3 .7 .6 1.3 .9 2 .5 1 1 2.1 1.5 3.1 .2 .6 .5 1.1 .8 1.7 .6 1.1 1.1 2.2 1.7 3.3 .1 .2 .2 .3 .3 .5 2.2 4.1 4.4 8.2 6.8 12.2 .2 .4 .5 .8 .7 1.2 .7 1.1 1.3 2.2 2 3.3 .3 .5 .6 .9 .9 1.4 .6 1.1 1.3 2.1 2 3.2 .3 .5 .6 .9 .9 1.4 .7 1.1 1.4 2.1 2.1 3.2 .2 .4 .5 .8 .8 1.2 .7 1.1 1.5 2.2 2.3 3.3 .2 .2 .3 .5 .5 .7 37.5 51.7 94.4 88.5 160 99.4 .9 .1 1.7 .3 2.6 .4 1 .2 2.1 .4 3.1 .5s1.9 .3 2.8 .4c1 .2 2 .3 3 .4 .9 .1 1.9 .2 2.9 .3s1.9 .2 2.9 .3 2.1 .2 3.1 .3c.9 .1 1.8 .1 2.7 .2 1.1 .1 2.3 .1 3.4 .2 .8 0 1.7 .1 2.5 .1 1.3 0 2.6 .1 3.9 .1 .7 .1 1.4 .1 2.1 .1 2 .1 4 .1 6 .1s4-.1 6-.1c.7 0 1.4-.1 2.1-.1 1.3 0 2.6 0 3.9-.1 .8 0 1.7-.1 2.5-.1 1.1-.1 2.3-.1 3.4-.2 .9 0 1.8-.1 2.7-.2 1-.1 2.1-.2 3.1-.3s1.9-.2 2.9-.3c.9-.1 1.9-.2 2.9-.3s2-.3 3-.4 1.9-.3 2.8-.4c1-.2 2.1-.3 3.1-.5 .9-.1 1.7-.3 2.6-.4 65.6-11 122.5-47.7 160.1-102.4 .2-.2 .3-.5 .5-.7 .8-1.1 1.5-2.2 2.3-3.3 .2-.4 .5-.8 .8-1.2 .7-1.1 1.4-2.1 2.1-3.2 .3-.5 .6-.9 .9-1.4 .6-1.1 1.3-2.1 2-3.2 .3-.5 .6-.9 .9-1.4 .7-1.1 1.3-2.2 2-3.3 .2-.4 .5-.8 .7-1.2 2.4-4 4.6-8.1 6.8-12.2 .1-.2 .2-.3 .3-.5 .6-1.1 1.1-2.2 1.7-3.3 .2-.6 .5-1.1 .8-1.7 .5-1 1-2.1 1.5-3.1 .3-.7 .6-1.3 .9-2 .5-1 1-2 1.4-3l.9-2.1c.5-1 .9-2 1.3-3 .3-.7 .6-1.5 .9-2.2l1.2-3c.3-.8 .6-1.5 .9-2.3 .4-1 .7-2 1.1-3s.7-1.9 1-2.8c.6-1.6 1.2-3.3 1.7-4.9 .3-1 .6-1.9 .9-2.8s.5-1.8 .8-2.7c.2-.9 .5-1.9 .8-2.8s.6-1.8 .8-2.7c.3-1 .5-1.9 .8-2.9 .2-.9 .5-1.8 .7-2.7 .2-1 .5-2 .7-3 .2-.9 .4-1.7 .6-2.6 .2-1 .5-2.1 .7-3.2 .2-.8 .3-1.6 .5-2.4 .3-1.3 .6-2.7 .8-4 .1-.6 .2-1.1 .3-1.7l.9-5.7c.1-.6 .2-1.3 .3-1.9 .1-1.3 .3-2.6 .5-3.9 .1-.8 .2-1.5 .3-2.3 .1-1.2 .3-2.4 .4-3.6 0-.8 .1-1.6 .2-2.4 .1-1.1 .2-2.3 .3-3.5 .1-.8 .1-1.6 .2-2.4 .1 1.7 .1 .5 .2-.7 0-.8 .1-1.5 .1-2.3 .1-1.3 .2-2.7 .2-4 .1-.7 .1-1.3 .1-2 .1-2 .1-4 .1-6 0-53.5-16.9-103-45.8-143.7zM448 371.5c-9.4 15.5-20.6 29.9-33.6 42.9-20.6 20.6-44.5 36.7-71.2 48-13.9 5.8-28.2 10.3-42.9 13.2v-75.8c0-58.6-88.6-58.6-88.6 0v75.8c-14.7-2.9-29-7.3-42.9-13.2-26.7-11.3-50.6-27.4-71.2-48-13-13-24.2-27.4-33.6-42.9v-71.3c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7V326h29.6V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7H208c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-4.8 6.5-3.7 9.5-3.7V88.1c-4.4-2-7.4-6.7-7.4-11.5 0-16.8 25.4-16.8 25.4 0 0 4.8-3 9.4-7.4 11.5V92c6.3-1.4 12.7-2.3 19.2-2.3 9.4 0 18.4 3.5 26.3 3.5 7.2 0 15.2-3.5 19.4-3.5 2.1 0 3.7 1.6 3.7 3.7v48.4c0 5.6-18.7 6.5-22.4 6.5-8.6 0-16.6-3.5-25.4-3.5-7 0-14.1 1.2-20.8 2.8v30.7c3 0 9.5-1.1 9.5 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7v25.9h29.5V182c0-2.1 1.6-3.7 3.7-3.7h22.1c2.1 0 3.7 1.6 3.7 3.7v144h29.5v-25.8c0-2.1 1.6-3.7 3.7-3.7h22.2c2.1 0 3.7 1.6 3.7 3.7z',
			),
		),
		'label'             => __( 'Alternate Fort Awesome', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'forumbee'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M5.8 309.7C2 292.7 0 275.5 0 258.3 0 135 99.8 35 223.1 35c16.6 0 33.3 2 49.3 5.5C149 87.5 51.9 186 5.8 309.7zm392.9-189.2C385 103 369 87.8 350.9 75.2c-149.6 44.3-266.3 162.1-309.7 312 12.5 18.1 28 35.6 45.2 49 43.1-151.3 161.2-271.7 312.3-315.7zm15.8 252.7c15.2-25.1 25.4-53.7 29.5-82.8-79.4 42.9-145 110.6-187.6 190.3 30-4.4 58.9-15.3 84.6-31.3 35 13.1 70.9 24.3 107 33.6-9.3-36.5-20.4-74.5-33.5-109.8zm29.7-145.5c-2.6-19.5-7.9-38.7-15.8-56.8C290.5 216.7 182 327.5 137.1 466c18.1 7.6 37 12.5 56.6 15.2C240 367.1 330.5 274.4 444.2 227.7z',
			),
		),
		'label'             => __( 'Forumbee', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'forward'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M52.51 440.6l171.5-142.9V214.3L52.51 71.41C31.88 54.28 0 68.66 0 96.03v319.9C0 443.3 31.88 457.7 52.51 440.6zM308.5 440.6l192-159.1c15.25-12.87 15.25-36.37 0-49.24l-192-159.1c-20.63-17.12-52.51-2.749-52.51 24.62v319.9C256 443.3 287.9 457.7 308.5 440.6z',
			),
		),
		'label'             => __( 'Forward', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'forward-fast'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 96.03v319.9c0 17.67-14.33 31.1-31.1 31.1C462.3 447.1 448 433.6 448 415.1V284.1l-171.5 156.5C255.9 457.7 224 443.3 224 415.1V284.1l-171.5 156.5C31.88 457.7 0 443.3 0 415.1V96.03c0-27.37 31.88-41.74 52.5-24.62L224 226.8V96.03c0-27.37 31.88-41.74 52.5-24.62L448 226.8V96.03c0-17.67 14.33-31.1 31.1-31.1C497.7 64.03 512 78.36 512 96.03z',
			),
		),
		'label'             => __( 'Forward Fast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'forward-step'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M287.1 447.1c17.67 0 31.1-14.33 31.1-32V96.03c0-17.67-14.33-32-32-32c-17.67 0-31.1 14.33-31.1 31.1v319.9C255.1 433.6 270.3 447.1 287.1 447.1zM52.51 440.6l192-159.1c7.625-6.436 11.43-15.53 11.43-24.62c0-9.094-3.809-18.18-11.43-24.62l-192-159.1C31.88 54.28 0 68.66 0 96.03v319.9C0 443.3 31.88 457.7 52.51 440.6z',
			),
		),
		'label'             => __( 'Forward Step', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'foursquare'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 368,
				'height' => 512,
				'path'   => 'M323.1 3H49.9C12.4 3 0 31.3 0 49.1v433.8c0 20.3 12.1 27.7 18.2 30.1 6.2 2.5 22.8 4.6 32.9-7.1C180 356.5 182.2 354 182.2 354c3.1-3.4 3.4-3.1 6.8-3.1h83.4c35.1 0 40.6-25.2 44.3-39.7l48.6-243C373.8 25.8 363.1 3 323.1 3zm-16.3 73.8l-11.4 59.7c-1.2 6.5-9.5 13.2-16.9 13.2H172.1c-12 0-20.6 8.3-20.6 20.3v13c0 12 8.6 20.6 20.6 20.6h90.4c8.3 0 16.6 9.2 14.8 18.2-1.8 8.9-10.5 53.8-11.4 58.8-.9 4.9-6.8 13.5-16.9 13.5h-73.5c-13.5 0-17.2 1.8-26.5 12.6 0 0-8.9 11.4-89.5 108.3-.9 .9-1.8 .6-1.8-.3V75.9c0-7.7 6.8-16.6 16.6-16.6h219c8.2 0 15.6 7.7 13.5 17.5z',
			),
		),
		'label'             => __( 'Foursquare', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'franc-sign'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M288 32C305.7 32 320 46.33 320 64C320 81.67 305.7 96 288 96H112V192H256C273.7 192 288 206.3 288 224C288 241.7 273.7 256 256 256H112V320H192C209.7 320 224 334.3 224 352C224 369.7 209.7 384 192 384H112V448C112 465.7 97.67 480 80 480C62.33 480 48 465.7 48 448V384H32C14.33 384 0 369.7 0 352C0 334.3 14.33 320 32 320H48V64C48 46.33 62.33 32 80 32H288z',
			),
		),
		'label'             => __( 'Franc Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'free-code-camp'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M97.22 96.21c10.36-10.65 16-17.12 16-21.9 0-2.76-1.92-5.51-3.83-7.42A14.81 14.81 0 0 0 101 64.05c-8.48 0-20.92 8.79-35.84 25.69C23.68 137 2.51 182.8 3.37 250.3s17.47 117 54.06 161.9C76.22 435.9 90.62 448 100.9 448a13.55 13.55 0 0 0 8.37-3.84c1.91-2.76 3.81-5.63 3.81-8.38 0-5.63-3.86-12.2-13.2-20.55-44.45-42.33-67.32-97-67.48-165C32.25 188.8 54 137.8 97.22 96.21zM239.5 420.1c.58 .37 .91 .55 .91 .55zm93.79 .55 .17-.13C333.2 420.6 333.2 420.7 333.3 420.6zm3.13-158.2c-16.24-4.15 50.41-82.89-68.05-177.2 0 0 15.54 49.38-62.83 159.6-74.27 104.3 23.46 168.7 34 175.2-6.73-4.35-47.4-35.7 9.55-128.6 11-18.3 25.53-34.87 43.5-72.16 0 0 15.91 22.45 7.6 71.13C287.7 364 354 342.9 355 343.9c22.75 26.78-17.72 73.51-21.58 76.55 5.49-3.65 117.7-78 33-188.1C360.4 238.4 352.6 266.6 336.4 262.4zM510.9 89.69C496 72.79 483.5 64 475 64a14.81 14.81 0 0 0 -8.39 2.84c-1.91 1.91-3.83 4.66-3.83 7.42 0 4.78 5.6 11.26 16 21.9 43.23 41.61 65 92.59 64.82 154.1-.16 68-23 122.6-67.48 165-9.34 8.35-13.18 14.92-13.2 20.55 0 2.75 1.9 5.62 3.81 8.38A13.61 13.61 0 0 0 475.1 448c10.28 0 24.68-12.13 43.47-35.79 36.59-44.85 53.14-94.38 54.06-161.9S552.3 137 510.9 89.69z',
			),
		),
		'label'             => __( 'freeCodeCamp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'freebsd'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M303.7 96.2c11.1-11.1 115.5-77 139.2-53.2 23.7 23.7-42.1 128.1-53.2 139.2-11.1 11.1-39.4 .9-63.1-22.9-23.8-23.7-34.1-52-22.9-63.1zM109.9 68.1C73.6 47.5 22 24.6 5.6 41.1c-16.6 16.6 7.1 69.4 27.9 105.7 18.5-32.2 44.8-59.3 76.4-78.7zM406.7 174c3.3 11.3 2.7 20.7-2.7 26.1-20.3 20.3-87.5-27-109.3-70.1-18-32.3-11.1-53.4 14.9-48.7 5.7-3.6 12.3-7.6 19.6-11.6-29.8-15.5-63.6-24.3-99.5-24.3-119.1 0-215.6 96.5-215.6 215.6 0 119 96.5 215.6 215.6 215.6S445.3 380.1 445.3 261c0-38.4-10.1-74.5-27.7-105.8-3.9 7-7.6 13.3-10.9 18.8z',
			),
		),
		'label'             => __( 'FreeBSD', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'frog'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528 416h-32.07l-90.32-96.34l140.6-79.03c18.38-10.25 29.75-29.62 29.75-50.62c0-21.5-11.75-41-30.5-51.25c-40.5-22.25-99.07-41.43-99.07-41.43C439.6 60.19 407.3 32 368 32s-71.77 28.25-78.52 65.5C126.7 113-.4999 250.1 .0001 417C.1251 451.9 29.13 480 64 480h304c8.875 0 16-7.125 16-16c0-26.51-21.49-48-47.1-48H284.3l23.93-32.38c24.25-36.13 10.38-88.25-33.63-106.5C250.8 267.1 223 272.4 202.4 288L169.6 312.5c-7.125 5.375-17.12 4-22.38-3.125c-5.375-7.125-4-17.12 3.125-22.38l34.75-26.12c36.87-27.62 88.37-27.62 125.1 0c10.88 8.125 45.88 39 40.88 93.13L469.6 480h90.38c8.875 0 16-7.125 16-16C576 437.5 554.5 416 528 416zM344 112c0-13.25 10.75-24 24-24s24 10.75 24 24s-10.75 24-24 24S344 125.3 344 112z',
			),
		),
		'label'             => __( 'Frog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'fulcrum'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M95.75 164.1l-35.38 43.55L25 164.1l35.38-43.55zM144.2 0l-20.54 198.2L72.72 256l51 57.82L144.2 512V300.9L103.2 256l41.08-44.89zm79.67 164.1l35.38 43.55 35.38-43.55-35.38-43.55zm-48.48 47L216.5 256l-41.08 44.89V512L196 313.8 247 256l-51-57.82L175.4 0z',
			),
		),
		'label'             => __( 'Fulcrum', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'futbol'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M177.1 228.6L207.9 320h96.5l29.62-91.38L256 172.1L177.1 228.6zM255.1 0C114.6 0 .0001 114.6 .0001 256S114.6 512 256 512s255.1-114.6 255.1-255.1S397.4 0 255.1 0zM416.6 360.9l-85.4-1.297l-25.15 81.59C290.1 445.5 273.4 448 256 448s-34.09-2.523-50.09-6.859L180.8 359.6l-85.4 1.297c-18.12-27.66-29.15-60.27-30.88-95.31L134.3 216.4L106.6 135.6c21.16-26.21 49.09-46.61 81.06-58.84L256 128l68.29-51.22c31.98 12.23 59.9 32.64 81.06 58.84L377.7 216.4l69.78 49.1C445.8 300.6 434.8 333.2 416.6 360.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M177.1 228.6L207.9 320h96.5l29.62-91.38L256 172.1L177.1 228.6zM255.1 0C114.6 0 .0001 114.6 .0001 256S114.6 512 256 512s255.1-114.6 255.1-255.1S397.4 0 255.1 0zM435.2 361.1l-103.9-1.578l-30.67 99.52C286.2 462.2 271.3 464 256 464s-30.19-1.773-44.56-4.93L180.8 359.6L76.83 361.1c-14.93-25.35-24.79-54.01-27.8-84.72L134.3 216.4L100.7 118.1c19.85-22.34 44.32-40.45 72.04-52.62L256 128l83.29-62.47c27.72 12.17 52.19 30.27 72.04 52.62L377.7 216.4l85.23 59.97C459.1 307.1 450.1 335.8 435.2 361.1z',
			),
		),
		'label'             => __( 'Futbol', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'g'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 256c0 143.4-118.6 222.3-225 222.3c-132.3 0-222.1-106.2-222.1-222.4c0-124.4 100.9-223.9 223.1-223.9c84.84 0 167.8 55.28 167.8 88.2c0 18.28-14.95 32-32 32c-31.04 0-46.79-56.16-135.8-56.16c-87.66 0-159.1 70.66-159.1 159.8c0 34.81 27.19 158.8 159.1 158.8c79.45 0 144.6-55.1 158.1-126.7h-134.1c-17.67 0-32-14.33-32-32s14.33-31.1 32-31.1H416C433.7 224 448 238.3 448 256z',
			),
		),
		'label'             => __( 'G', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'galactic-republic'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 504C111.3 504 0 392.8 0 256S111.3 8 248 8s248 111.3 248 248-111.3 248-248 248zm0-479.5C120.4 24.53 16.53 128.4 16.53 256S120.4 487.5 248 487.5 479.5 383.6 479.5 256 375.6 24.53 248 24.53zm27.62 21.81v24.62a185.9 185.9 0 0 1 83.57 34.54l17.39-17.36c-28.75-22.06-63.3-36.89-100.1-41.8zm-55.37 .07c-37.64 4.94-72.16 19.8-100.9 41.85l17.28 17.36h.08c24.07-17.84 52.55-30.06 83.52-34.67V46.41zm12.25 50.17v82.87c-10.04 2.03-19.42 5.94-27.67 11.42l-58.62-58.59-21.93 21.93 58.67 58.67c-5.47 8.23-9.45 17.59-11.47 27.62h-82.9v31h82.9c2.02 10.02 6.01 19.31 11.47 27.54l-58.67 58.69 21.93 21.93 58.62-58.62a77.87 77.87 0 0 0 27.67 11.47v82.9h31v-82.9c10.05-2.03 19.37-6.06 27.62-11.55l58.67 58.69 21.93-21.93-58.67-58.69c5.46-8.23 9.47-17.52 11.5-27.54h82.87v-31h-82.87c-2.02-10.02-6.03-19.38-11.5-27.62l58.67-58.67-21.93-21.93-58.67 58.67c-8.25-5.49-17.57-9.47-27.62-11.5V96.58h-31zm183.2 30.72l-17.36 17.36a186.3 186.3 0 0 1 34.67 83.67h24.62c-4.95-37.69-19.83-72.29-41.93-101zm-335.5 .13c-22.06 28.72-36.91 63.26-41.85 100.9h24.65c4.6-30.96 16.76-59.45 34.59-83.52l-17.39-17.39zM38.34 283.7c4.92 37.64 19.75 72.18 41.8 100.9l17.36-17.39c-17.81-24.07-29.92-52.57-34.51-83.52H38.34zm394.7 0c-4.61 30.99-16.8 59.5-34.67 83.6l17.36 17.36c22.08-28.74 36.98-63.29 41.93-100.1h-24.62zM136.7 406.4l-17.36 17.36c28.73 22.09 63.3 36.98 100.1 41.93v-24.64c-30.99-4.63-59.53-16.79-83.6-34.65zm222.5 .05c-24.09 17.84-52.58 30.08-83.57 34.67v24.57c37.67-4.92 72.21-19.79 100.1-41.85l-17.31-17.39h-.08z',
			),
		),
		'label'             => __( 'Galactic Republic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'brands', 'brands', 'social' ),
	),
	'galactic-senate'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M249.9 33.48v26.07C236.3 80.17 226 168.1 225.4 274.9c11.74-15.62 19.13-33.33 19.13-48.24v-16.88c-.03-5.32 .75-10.53 2.19-15.65 .65-2.14 1.39-4.08 2.62-5.82 1.23-1.75 3.43-3.79 6.68-3.79 3.24 0 5.45 2.05 6.68 3.79 1.23 1.75 1.97 3.68 2.62 5.82 1.44 5.12 2.22 10.33 2.19 15.65v16.88c0 14.91 7.39 32.62 19.13 48.24-.63-106.8-10.91-194.7-24.49-215.4V33.48h-12.28zm-26.34 147.8c-9.52 2.15-18.7 5.19-27.46 9.08 8.9 16.12 9.76 32.64 1.71 37.29-8 4.62-21.85-4.23-31.36-19.82-11.58 8.79-21.88 19.32-30.56 31.09 14.73 9.62 22.89 22.92 18.32 30.66-4.54 7.7-20.03 7.14-35.47-.96-5.78 13.25-9.75 27.51-11.65 42.42 9.68 .18 18.67 2.38 26.18 6.04 17.78-.3 32.77-1.96 40.49-4.22 5.55-26.35 23.02-48.23 46.32-59.51 .73-25.55 1.88-49.67 3.48-72.07zm64.96 0c1.59 22.4 2.75 46.52 3.47 72.07 23.29 11.28 40.77 33.16 46.32 59.51 7.72 2.26 22.71 3.92 40.49 4.22 7.51-3.66 16.5-5.85 26.18-6.04-1.9-14.91-5.86-29.17-11.65-42.42-15.44 8.1-30.93 8.66-35.47 .96-4.57-7.74 3.6-21.05 18.32-30.66-8.68-11.77-18.98-22.3-30.56-31.09-9.51 15.59-23.36 24.44-31.36 19.82-8.05-4.65-7.19-21.16 1.71-37.29a147.5 147.5 0 0 0 -27.45-9.08zm-32.48 8.6c-3.23 0-5.86 8.81-6.09 19.93h-.05v16.88c0 41.42-49.01 95.04-93.49 95.04-52 0-122.8-1.45-156.4 29.17v2.51c9.42 17.12 20.58 33.17 33.18 47.97C45.7 380.3 84.77 360.4 141.2 360c45.68 1.02 79.03 20.33 90.76 40.87 .01 .01-.01 .04 0 .05 7.67 2.14 15.85 3.23 24.04 3.21 8.19 .02 16.37-1.07 24.04-3.21 .01-.01-.01-.04 0-.05 11.74-20.54 45.08-39.85 90.76-40.87 56.43 .39 95.49 20.26 108 41.35 12.6-14.8 23.76-30.86 33.18-47.97v-2.51c-33.61-30.62-104.4-29.17-156.4-29.17-44.48 0-93.49-53.62-93.49-95.04v-16.88h-.05c-.23-11.12-2.86-19.93-6.09-19.93zm0 96.59c22.42 0 40.6 18.18 40.6 40.6s-18.18 40.65-40.6 40.65-40.6-18.23-40.6-40.65c0-22.42 18.18-40.6 40.6-40.6zm0 7.64c-18.19 0-32.96 14.77-32.96 32.96S237.8 360 256 360s32.96-14.77 32.96-32.96-14.77-32.96-32.96-32.96zm0 6.14c14.81 0 26.82 12.01 26.82 26.82s-12.01 26.82-26.82 26.82-26.82-12.01-26.82-26.82 12.01-26.82 26.82-26.82zm-114.8 66.67c-10.19 .07-21.6 .36-30.5 1.66 .43 4.42 1.51 18.63 7.11 29.76 9.11-2.56 18.36-3.9 27.62-3.9 41.28 .94 71.48 34.35 78.26 74.47l.11 4.7c10.4 1.91 21.19 2.94 32.21 2.94 11.03 0 21.81-1.02 32.21-2.94l.11-4.7c6.78-40.12 36.98-73.53 78.26-74.47 9.26 0 18.51 1.34 27.62 3.9 5.6-11.13 6.68-25.34 7.11-29.76-8.9-1.3-20.32-1.58-30.5-1.66-18.76 .42-35.19 4.17-48.61 9.67-12.54 16.03-29.16 30.03-49.58 33.07-.09 .02-.17 .04-.27 .05-.05 .01-.11 .04-.16 .05-5.24 1.07-10.63 1.6-16.19 1.6-5.55 0-10.95-.53-16.19-1.6-.05-.01-.11-.04-.16-.05-.1-.02-.17-.04-.27-.05-20.42-3.03-37.03-17.04-49.58-33.07-13.42-5.49-29.86-9.25-48.61-9.67z',
			),
		),
		'label'             => __( 'Galactic Senate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'brands', 'brands', 'social' ),
	),
	'gamepad'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M448 64H192C85.96 64 0 149.1 0 256s85.96 192 192 192h256c106 0 192-85.96 192-192S554 64 448 64zM247.1 280h-32v32c0 13.2-10.78 24-23.98 24c-13.2 0-24.02-10.8-24.02-24v-32L136 279.1C122.8 279.1 111.1 269.2 111.1 256c0-13.2 10.85-24.01 24.05-24.01L167.1 232v-32c0-13.2 10.82-24 24.02-24c13.2 0 23.98 10.8 23.98 24v32h32c13.2 0 24.02 10.8 24.02 24C271.1 269.2 261.2 280 247.1 280zM431.1 344c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40s39.1 17.88 39.1 40S454.1 344 431.1 344zM495.1 248c-22.12 0-39.1-17.87-39.1-39.1s17.87-40 39.1-40c22.12 0 39.1 17.88 39.1 40S518.1 248 495.1 248z',
			),
		),
		'label'             => __( 'Gamepad', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'gas-pump'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 64C32 28.65 60.65 0 96 0H256C291.3 0 320 28.65 320 64V256H328C376.6 256 416 295.4 416 344V376C416 389.3 426.7 400 440 400C453.3 400 464 389.3 464 376V221.1C436.4 214.9 416 189.8 416 160V96L384 64C375.2 55.16 375.2 40.84 384 32C392.8 23.16 407.2 23.16 416 32L493.3 109.3C505.3 121.3 512 137.5 512 154.5V376C512 415.8 479.8 448 440 448C400.2 448 368 415.8 368 376V344C368 321.9 350.1 303.1 328 303.1H320V448C337.7 448 352 462.3 352 480C352 497.7 337.7 512 320 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V64zM96 176C96 184.8 103.2 192 112 192H240C248.8 192 256 184.8 256 176V80C256 71.16 248.8 64 240 64H112C103.2 64 96 71.16 96 80V176z',
			),
		),
		'label'             => __( 'Gas Pump', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'gauge'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM280 292.7V88C280 74.75 269.3 64 256 64C242.7 64 232 74.75 232 88V292.7C208.5 302.1 192 325.1 192 352C192 387.3 220.7 416 256 416C291.3 416 320 387.3 320 352C320 325.1 303.5 302.1 280 292.7zM144 176C161.7 176 176 161.7 176 144C176 126.3 161.7 112 144 112C126.3 112 112 126.3 112 144C112 161.7 126.3 176 144 176zM96 224C78.33 224 64 238.3 64 256C64 273.7 78.33 288 96 288C113.7 288 128 273.7 128 256C128 238.3 113.7 224 96 224zM416 288C433.7 288 448 273.7 448 256C448 238.3 433.7 224 416 224C398.3 224 384 238.3 384 256C384 273.7 398.3 288 416 288zM368 112C350.3 112 336 126.3 336 144C336 161.7 350.3 176 368 176C385.7 176 400 161.7 400 144C400 126.3 385.7 112 368 112z',
			),
		),
		'label'             => __( 'Gauge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'gauge-high'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64C238.3 64 224 78.33 224 96C224 113.7 238.3 128 256 128C273.7 128 288 113.7 288 96C288 78.33 273.7 64 256 64zM256 416C291.3 416 320 387.3 320 352C320 334.6 313.1 318.9 301.9 307.4L365.1 161.7C371.3 149.5 365.8 135.4 353.7 130C341.5 124.7 327.4 130.2 322 142.3L257.9 288C257.3 288 256.6 287.1 256 287.1C220.7 287.1 192 316.7 192 352C192 387.3 220.7 416 256 416V416zM144 112C126.3 112 112 126.3 112 144C112 161.7 126.3 176 144 176C161.7 176 176 161.7 176 144C176 126.3 161.7 112 144 112zM96 288C113.7 288 128 273.7 128 256C128 238.3 113.7 224 96 224C78.33 224 64 238.3 64 256C64 273.7 78.33 288 96 288zM416 224C398.3 224 384 238.3 384 256C384 273.7 398.3 288 416 288C433.7 288 448 273.7 448 256C448 238.3 433.7 224 416 224z',
			),
		),
		'label'             => __( 'Gauge High', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'gauge-simple'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM280 292.7V88C280 74.75 269.3 64 256 64C242.7 64 232 74.75 232 88V292.7C208.5 302.1 192 325.1 192 352C192 387.3 220.7 416 256 416C291.3 416 320 387.3 320 352C320 325.1 303.5 302.1 280 292.7z',
			),
		),
		'label'             => __( 'Gauge Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'gauge-simple-high'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM304.7 310.4L381.3 163.1C387.4 151.3 382.8 136.8 371.1 130.7C359.3 124.6 344.8 129.2 338.7 140.9L262.1 288.3C260.1 288.1 258.1 287.1 255.1 287.1C220.7 287.1 191.1 316.7 191.1 352C191.1 387.3 220.7 416 255.1 416C291.3 416 320 387.3 320 352C320 336.1 314.2 321.6 304.7 310.4L304.7 310.4z',
			),
		),
		'label'             => __( 'Gauge Simple High', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'gavel'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 216.3c0-6.125-2.344-12.25-7.031-16.93L482.3 176.8c-4.688-4.686-10.84-7.028-16.1-7.028s-12.31 2.343-16.1 7.028l-5.625 5.625L329.6 69.28l5.625-5.625c4.687-4.688 7.03-10.84 7.03-16.1s-2.343-12.31-7.03-16.1l-22.62-22.62C307.9 2.344 301.8 0 295.7 0s-12.15 2.344-16.84 7.031L154.2 131.5C149.6 136.2 147.2 142.3 147.2 148.5s2.344 12.25 7.031 16.94l22.62 22.62c4.688 4.688 10.84 7.031 16.1 7.031c6.156 0 12.31-2.344 16.1-7.031l5.625-5.625l113.1 113.1l-5.625 5.621c-4.688 4.688-7.031 10.84-7.031 16.1s2.344 12.31 7.031 16.1l22.62 22.62c4.688 4.688 10.81 7.031 16.94 7.031s12.25-2.344 16.94-7.031l124.5-124.6C509.7 228.5 512 222.5 512 216.3zM227.8 238.1L169.4 297.4C163.1 291.1 154.9 288 146.7 288S130.4 291.1 124.1 297.4l-114.7 114.7c-6.25 6.248-9.375 14.43-9.375 22.62s3.125 16.37 9.375 22.62l45.25 45.25C60.87 508.9 69.06 512 77.25 512s16.37-3.125 22.62-9.375l114.7-114.7c6.25-6.25 9.376-14.44 9.376-22.62c0-8.185-3.125-16.37-9.374-22.62l58.43-58.43L227.8 238.1z',
			),
		),
		'label'             => __( 'Gavel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'gear'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M495.9 166.6C499.2 175.2 496.4 184.9 489.6 191.2L446.3 230.6C447.4 238.9 448 247.4 448 256C448 264.6 447.4 273.1 446.3 281.4L489.6 320.8C496.4 327.1 499.2 336.8 495.9 345.4C491.5 357.3 486.2 368.8 480.2 379.7L475.5 387.8C468.9 398.8 461.5 409.2 453.4 419.1C447.4 426.2 437.7 428.7 428.9 425.9L373.2 408.1C359.8 418.4 344.1 427 329.2 433.6L316.7 490.7C314.7 499.7 307.7 506.1 298.5 508.5C284.7 510.8 270.5 512 255.1 512C241.5 512 227.3 510.8 213.5 508.5C204.3 506.1 197.3 499.7 195.3 490.7L182.8 433.6C167 427 152.2 418.4 138.8 408.1L83.14 425.9C74.3 428.7 64.55 426.2 58.63 419.1C50.52 409.2 43.12 398.8 36.52 387.8L31.84 379.7C25.77 368.8 20.49 357.3 16.06 345.4C12.82 336.8 15.55 327.1 22.41 320.8L65.67 281.4C64.57 273.1 64 264.6 64 256C64 247.4 64.57 238.9 65.67 230.6L22.41 191.2C15.55 184.9 12.82 175.3 16.06 166.6C20.49 154.7 25.78 143.2 31.84 132.3L36.51 124.2C43.12 113.2 50.52 102.8 58.63 92.95C64.55 85.8 74.3 83.32 83.14 86.14L138.8 103.9C152.2 93.56 167 84.96 182.8 78.43L195.3 21.33C197.3 12.25 204.3 5.04 213.5 3.51C227.3 1.201 241.5 0 256 0C270.5 0 284.7 1.201 298.5 3.51C307.7 5.04 314.7 12.25 316.7 21.33L329.2 78.43C344.1 84.96 359.8 93.56 373.2 103.9L428.9 86.14C437.7 83.32 447.4 85.8 453.4 92.95C461.5 102.8 468.9 113.2 475.5 124.2L480.2 132.3C486.2 143.2 491.5 154.7 495.9 166.6V166.6zM256 336C300.2 336 336 300.2 336 255.1C336 211.8 300.2 175.1 256 175.1C211.8 175.1 176 211.8 176 255.1C176 300.2 211.8 336 256 336z',
			),
		),
		'label'             => __( 'Gear', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'gears'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M286.3 155.1C287.4 161.9 288 168.9 288 175.1C288 183.1 287.4 190.1 286.3 196.9L308.5 216.7C315.5 223 318.4 232.1 314.7 241.7C312.4 246.1 309.9 252.2 307.1 257.2L304 262.6C300.1 267.6 297.7 272.4 294.2 277.1C288.5 284.7 278.5 287.2 269.5 284.2L241.2 274.9C230.5 283.8 218.3 290.9 205 295.9L198.1 324.9C197 334.2 189.8 341.6 180.4 342.8C173.7 343.6 166.9 344 160 344C153.1 344 146.3 343.6 139.6 342.8C130.2 341.6 122.1 334.2 121 324.9L114.1 295.9C101.7 290.9 89.5 283.8 78.75 274.9L50.53 284.2C41.54 287.2 31.52 284.7 25.82 277.1C22.28 272.4 18.98 267.5 15.94 262.5L12.92 257.2C10.13 252.2 7.592 247 5.324 241.7C1.62 232.1 4.458 223 11.52 216.7L33.7 196.9C32.58 190.1 31.1 183.1 31.1 175.1C31.1 168.9 32.58 161.9 33.7 155.1L11.52 135.3C4.458 128.1 1.62 119 5.324 110.3C7.592 104.1 10.13 99.79 12.91 94.76L15.95 89.51C18.98 84.46 22.28 79.58 25.82 74.89C31.52 67.34 41.54 64.83 50.53 67.79L78.75 77.09C89.5 68.25 101.7 61.13 114.1 56.15L121 27.08C122.1 17.8 130.2 10.37 139.6 9.231C146.3 8.418 153.1 8 160 8C166.9 8 173.7 8.418 180.4 9.23C189.8 10.37 197 17.8 198.1 27.08L205 56.15C218.3 61.13 230.5 68.25 241.2 77.09L269.5 67.79C278.5 64.83 288.5 67.34 294.2 74.89C297.7 79.56 300.1 84.42 304 89.44L307.1 94.83C309.9 99.84 312.4 105 314.7 110.3C318.4 119 315.5 128.1 308.5 135.3L286.3 155.1zM160 127.1C133.5 127.1 112 149.5 112 175.1C112 202.5 133.5 223.1 160 223.1C186.5 223.1 208 202.5 208 175.1C208 149.5 186.5 127.1 160 127.1zM484.9 478.3C478.1 479.4 471.1 480 464 480C456.9 480 449.9 479.4 443.1 478.3L423.3 500.5C416.1 507.5 407 510.4 398.3 506.7C393 504.4 387.8 501.9 382.8 499.1L377.4 496C372.4 492.1 367.6 489.7 362.9 486.2C355.3 480.5 352.8 470.5 355.8 461.5L365.1 433.2C356.2 422.5 349.1 410.3 344.1 397L315.1 390.1C305.8 389 298.4 381.8 297.2 372.4C296.4 365.7 296 358.9 296 352C296 345.1 296.4 338.3 297.2 331.6C298.4 322.2 305.8 314.1 315.1 313L344.1 306.1C349.1 293.7 356.2 281.5 365.1 270.8L355.8 242.5C352.8 233.5 355.3 223.5 362.9 217.8C367.6 214.3 372.5 210.1 377.5 207.9L382.8 204.9C387.8 202.1 392.1 199.6 398.3 197.3C407 193.6 416.1 196.5 423.3 203.5L443.1 225.7C449.9 224.6 456.9 224 464 224C471.1 224 478.1 224.6 484.9 225.7L504.7 203.5C511 196.5 520.1 193.6 529.7 197.3C535 199.6 540.2 202.1 545.2 204.9L550.5 207.9C555.5 210.1 560.4 214.3 565.1 217.8C572.7 223.5 575.2 233.5 572.2 242.5L562.9 270.8C571.8 281.5 578.9 293.7 583.9 306.1L612.9 313C622.2 314.1 629.6 322.2 630.8 331.6C631.6 338.3 632 345.1 632 352C632 358.9 631.6 365.7 630.8 372.4C629.6 381.8 622.2 389 612.9 390.1L583.9 397C578.9 410.3 571.8 422.5 562.9 433.2L572.2 461.5C575.2 470.5 572.7 480.5 565.1 486.2C560.4 489.7 555.6 492.1 550.6 496L545.2 499.1C540.2 501.9 534.1 504.4 529.7 506.7C520.1 510.4 511 507.5 504.7 500.5L484.9 478.3zM512 352C512 325.5 490.5 304 464 304C437.5 304 416 325.5 416 352C416 378.5 437.5 400 464 400C490.5 400 512 378.5 512 352z',
			),
		),
		'label'             => __( 'Gears', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'gem'                                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M378.7 32H133.3L256 182.7L378.7 32zM512 192l-107.4-141.3L289.6 192H512zM107.4 50.67L0 192h222.4L107.4 50.67zM244.3 474.9C247.3 478.2 251.6 480 256 480s8.653-1.828 11.67-5.062L510.6 224H1.365L244.3 474.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M507.9 196.4l-104-153.8C399.4 35.95 391.1 32 384 32H127.1C120 32 112.6 35.95 108.1 42.56l-103.1 153.8c-6.312 9.297-5.281 21.72 2.406 29.89l231.1 246.2C243.1 477.3 249.4 480 256 480s12.94-2.734 17.47-7.547l232-246.2C513.2 218.1 514.2 205.7 507.9 196.4zM382.5 96.59L446.1 192h-140.1L382.5 96.59zM256 178.9L177.6 80h156.7L256 178.9zM129.5 96.59L205.1 192H65.04L129.5 96.59zM256 421L85.42 240h341.2L256 421z',
			),
		),
		'label'             => __( 'Gem', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'genderless'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 80C94.83 80 16 158.8 16 256c0 97.17 78.83 176 176 176s176-78.83 176-176C368 158.8 289.2 80 192 80zM192 352c-52.95 0-96-43.05-96-96c0-52.95 43.05-96 96-96s96 43.05 96 96C288 308.9 244.1 352 192 352z',
			),
		),
		'label'             => __( 'Genderless', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'get-pocket'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M407.6 64h-367C18.5 64 0 82.5 0 104.6v135.2C0 364.5 99.7 464 224.2 464c124 0 223.8-99.5 223.8-224.2V104.6c0-22.4-17.7-40.6-40.4-40.6zm-162 268.5c-12.4 11.8-31.4 11.1-42.4 0C89.5 223.6 88.3 227.4 88.3 209.3c0-16.9 13.8-30.7 30.7-30.7 17 0 16.1 3.8 105.2 89.3 90.6-86.9 88.6-89.3 105.5-89.3 16.9 0 30.7 13.8 30.7 30.7 0 17.8-2.9 15.7-114.8 123.2z',
			),
		),
		'label'             => __( 'Get Pocket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'gg'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M179.2 230.4l102.4 102.4-102.4 102.4L0 256 179.2 76.8l44.8 44.8-25.6 25.6-19.2-19.2-128 128 128 128 51.5-51.5-77.1-76.5 25.6-25.6zM332.8 76.8L230.4 179.2l102.4 102.4 25.6-25.6-77.1-76.5 51.5-51.5 128 128-128 128-19.2-19.2-25.6 25.6 44.8 44.8L512 256 332.8 76.8z',
			),
		),
		'label'             => __( 'GG Currency', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'gg-circle'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M257 8C120 8 9 119 9 256s111 248 248 248 248-111 248-248S394 8 257 8zm-49.5 374.8L81.8 257.1l125.7-125.7 35.2 35.4-24.2 24.2-11.1-11.1-77.2 77.2 77.2 77.2 26.6-26.6-53.1-52.9 24.4-24.4 77.2 77.2-75 75.2zm99-2.2l-35.2-35.2 24.1-24.4 11.1 11.1 77.2-77.2-77.2-77.2-26.5 26.5 53.1 52.9-24.4 24.4-77.2-77.2 75-75L432.2 255 306.5 380.6z',
			),
		),
		'label'             => __( 'GG Currency Circle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'ghost'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M186.1 .1032c-105.1 3.126-186.1 94.75-186.1 199.9v264c0 14.25 17.3 21.38 27.3 11.25l24.95-18.5c6.625-5.001 16-4.001 21.5 2.25l43 48.31c6.25 6.251 16.37 6.251 22.62 0l40.62-45.81c6.375-7.251 17.62-7.251 24 0l40.63 45.81c6.25 6.251 16.38 6.251 22.62 0l43-48.31c5.5-6.251 14.88-7.251 21.5-2.25l24.95 18.5c10 10.13 27.3 3.002 27.3-11.25V192C384 83.98 294.9-3.147 186.1 .1032zM128 224c-17.62 0-31.1-14.38-31.1-32.01s14.38-32.01 31.1-32.01s32 14.38 32 32.01S145.6 224 128 224zM256 224c-17.62 0-32-14.38-32-32.01s14.38-32.01 32-32.01c17.62 0 32 14.38 32 32.01S273.6 224 256 224z',
			),
		),
		'label'             => __( 'Ghost', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'gift'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M152 0H154.2C186.1 0 215.7 16.91 231.9 44.45L256 85.46L280.1 44.45C296.3 16.91 325.9 0 357.8 0H360C408.6 0 448 39.4 448 88C448 102.4 444.5 115.1 438.4 128H480C497.7 128 512 142.3 512 160V224C512 241.7 497.7 256 480 256H32C14.33 256 0 241.7 0 224V160C0 142.3 14.33 128 32 128H73.6C67.46 115.1 64 102.4 64 88C64 39.4 103.4 0 152 0zM190.5 68.78C182.9 55.91 169.1 48 154.2 48H152C129.9 48 112 65.91 112 88C112 110.1 129.9 128 152 128H225.3L190.5 68.78zM360 48H357.8C342.9 48 329.1 55.91 321.5 68.78L286.7 128H360C382.1 128 400 110.1 400 88C400 65.91 382.1 48 360 48V48zM32 288H224V512H80C53.49 512 32 490.5 32 464V288zM288 512V288H480V464C480 490.5 458.5 512 432 512H288z',
			),
		),
		'label'             => __( 'Gift', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'gifts'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192.5 55.09L217.9 36.59C228.6 28.79 243.6 31.16 251.4 41.88C259.2 52.6 256.8 67.61 246.1 75.41L217.8 95.1H240C256.9 95.1 271.7 104.7 280.3 117.9C257.3 135.7 241.9 162.1 240.2 193.1C212.5 201 192 226.1 192 256V480C192 491.7 195.1 502.6 200.6 512H48C21.49 512 0 490.5 0 464V144C0 117.5 21.49 96 48 96H70.2L41.88 75.41C31.16 67.61 28.79 52.6 36.59 41.88C44.39 31.16 59.4 28.79 70.12 36.59L97.55 56.54L89.23 31.59C85.04 19.01 91.84 5.423 104.4 1.232C116.1-2.96 130.6 3.836 134.8 16.41L144.7 46.17L155.4 15.99C159.8 3.493 173.5-3.048 186 1.377C198.5 5.802 205 19.52 200.6 32.01L192.5 55.09zM344.2 127.1C366.6 127.1 387.8 138.4 401.5 156.2L432 195.8L462.5 156.2C476.2 138.4 497.4 127.1 519.8 127.1C559.5 127.1 592 160.1 592 199.1C592 208.4 590.6 216.5 587.9 223.1H592C618.5 223.1 640 245.5 640 271.1V352H448V255.1H416V352H224V271.1C224 245.5 245.5 223.1 272 223.1H276.1C273.4 216.5 272 208.4 272 199.1C272 160.1 304.5 127.1 344.2 127.1H344.2zM363.5 185.5C358.9 179.5 351.7 175.1 344.2 175.1C330.8 175.1 320 186.9 320 199.1C320 213.3 330.7 223.1 344 223.1H393.1L363.5 185.5zM519.8 175.1C512.3 175.1 505.1 179.5 500.5 185.5L470.9 223.1H520C533.3 223.1 544 213.3 544 199.1C544 186.9 533.2 175.1 519.8 175.1H519.8zM224 464V384H416V512H272C245.5 512 224 490.5 224 464zM448 512V384H640V464C640 490.5 618.5 512 592 512H448z',
			),
		),
		'label'             => __( 'Gifts', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'git'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M216.3 158.4H137C97 147.9 6.51 150.6 6.51 233.2c0 30.09 15 51.23 35 61-25.1 23-37 33.85-37 49.21 0 11 4.47 21.14 17.89 26.81C8.13 383.6 0 393.4 0 411.6c0 32.11 28.05 50.82 101.6 50.82 70.75 0 111.8-26.42 111.8-73.18 0-58.66-45.16-56.5-151.6-63l13.43-21.55c27.27 7.58 118.7 10 118.7-67.89 0-18.7-7.73-31.71-15-41.07l37.41-2.84zm-63.42 241.9c0 32.06-104.9 32.1-104.9 2.43 0-8.14 5.27-15 10.57-21.54 77.71 5.3 94.32 3.37 94.32 19.11zm-50.81-134.6c-52.8 0-50.46-71.16 1.2-71.16 49.54 0 50.82 71.16-1.2 71.16zm133.3 100.5v-32.1c26.75-3.66 27.24-2 27.24-11V203.6c0-8.5-2.05-7.38-27.24-16.26l4.47-32.92H324v168.7c0 6.51 .4 7.32 6.51 8.14l20.73 2.84v32.1zm52.45-244.3c-23.17 0-36.59-13.43-36.59-36.61s13.42-35.77 36.59-35.77c23.58 0 37 12.62 37 35.77s-13.42 36.61-37 36.61zM512 350.5c-17.49 8.53-43.1 16.26-66.28 16.26-48.38 0-66.67-19.5-66.67-65.46V194.8c0-5.42 1.05-4.06-31.71-4.06V154.5c35.78-4.07 50-22 54.47-66.27h38.63c0 65.83-1.34 61.81 3.26 61.81H501v40.65h-60.56v97.15c0 6.92-4.92 51.41 60.57 26.84z',
			),
		),
		'label'             => __( 'Git', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'git-alt'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M439.5 236.1L244 40.45a28.87 28.87 0 0 0 -40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.2 199v121.8c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1 -48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.6 101 8.45 235.1a28.86 28.86 0 0 0 0 40.81l195.6 195.6a28.86 28.86 0 0 0 40.8 0l194.7-194.7a28.86 28.86 0 0 0 0-40.81z',
			),
		),
		'label'             => __( 'Git Alt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'git-square'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M100.6 334.2c48.57 3.31 58.95 2.11 58.95 11.94 0 20-65.55 20.06-65.55 1.52 .01-5.09 3.29-9.4 6.6-13.46zm27.95-116.6c-32.29 0-33.75 44.47-.75 44.47 32.51 0 31.71-44.47 .75-44.47zM448 80v352a48 48 0 0 1 -48 48H48a48 48 0 0 1 -48-48V80a48 48 0 0 1 48-48h352a48 48 0 0 1 48 48zm-227 69.31c0 14.49 8.38 22.88 22.86 22.88 14.74 0 23.13-8.39 23.13-22.88S258.6 127 243.9 127c-14.48 0-22.88 7.84-22.88 22.31zM199.2 195h-49.55c-25-6.55-81.56-4.85-81.56 46.75 0 18.8 9.4 32 21.85 38.11C74.23 294.2 66.8 301 66.8 310.6c0 6.87 2.79 13.22 11.18 16.76-8.9 8.4-14 14.48-14 25.92C64 373.4 81.53 385 127.5 385c44.22 0 69.87-16.51 69.87-45.73 0-36.67-28.23-35.32-94.77-39.38l8.38-13.43c17 4.74 74.19 6.23 74.19-42.43 0-11.69-4.83-19.82-9.4-25.67l23.38-1.78zm84.34 109.8l-13-1.78c-3.82-.51-4.07-1-4.07-5.09V192.5h-52.6l-2.79 20.57c15.75 5.55 17 4.86 17 10.17V298c0 5.62-.31 4.58-17 6.87v20.06h72.42zM384 315l-6.87-22.37c-40.93 15.37-37.85-12.41-37.85-16.73v-60.72h37.85v-25.41h-35.82c-2.87 0-2 2.52-2-38.63h-24.18c-2.79 27.7-11.68 38.88-34 41.42v22.62c20.47 0 19.82-.85 19.82 2.54v66.57c0 28.72 11.43 40.91 41.67 40.91 14.45 0 30.45-4.83 41.38-10.2z',
			),
		),
		'label'             => __( 'Git Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'github'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3 .3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5 .3-6.2 2.3zm44.2-1.7c-2.9 .7-4.9 2.6-4.6 4.9 .3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3 .7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3 .3 2.9 2.3 3.9 1.6 1 3.6 .7 4.3-.7 .7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3 .7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3 .7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z',
			),
		),
		'label'             => __( 'GitHub', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'github-alt'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 480,
				'height' => 512,
				'path'   => 'M186.1 328.7c0 20.9-10.9 55.1-36.7 55.1s-36.7-34.2-36.7-55.1 10.9-55.1 36.7-55.1 36.7 34.2 36.7 55.1zM480 278.2c0 31.9-3.2 65.7-17.5 95-37.9 76.6-142.1 74.8-216.7 74.8-75.8 0-186.2 2.7-225.6-74.8-14.6-29-20.2-63.1-20.2-95 0-41.9 13.9-81.5 41.5-113.6-5.2-15.8-7.7-32.4-7.7-48.8 0-21.5 4.9-32.3 14.6-51.8 45.3 0 74.3 9 108.8 36 29-6.9 58.8-10 88.7-10 27 0 54.2 2.9 80.4 9.2 34-26.7 63-35.2 107.8-35.2 9.8 19.5 14.6 30.3 14.6 51.8 0 16.4-2.6 32.7-7.7 48.2 27.5 32.4 39 72.3 39 114.2zm-64.3 50.5c0-43.9-26.7-82.6-73.5-82.6-18.9 0-37 3.4-56 6-14.9 2.3-29.8 3.2-45.1 3.2-15.2 0-30.1-.9-45.1-3.2-18.7-2.6-37-6-56-6-46.8 0-73.5 38.7-73.5 82.6 0 87.8 80.4 101.3 150.4 101.3h48.2c70.3 0 150.6-13.4 150.6-101.3zm-82.6-55.1c-25.8 0-36.7 34.2-36.7 55.1s10.9 55.1 36.7 55.1 36.7-34.2 36.7-55.1-10.9-55.1-36.7-55.1z',
			),
		),
		'label'             => __( 'Alternate GitHub', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'github-square'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM277.3 415.7c-8.4 1.5-11.5-3.7-11.5-8 0-5.4 .2-33 .2-55.3 0-15.6-5.2-25.5-11.3-30.7 37-4.1 76-9.2 76-73.1 0-18.2-6.5-27.3-17.1-39 1.7-4.3 7.4-22-1.7-45-13.9-4.3-45.7 17.9-45.7 17.9-13.2-3.7-27.5-5.6-41.6-5.6-14.1 0-28.4 1.9-41.6 5.6 0 0-31.8-22.2-45.7-17.9-9.1 22.9-3.5 40.6-1.7 45-10.6 11.7-15.6 20.8-15.6 39 0 63.6 37.3 69 74.3 73.1-4.8 4.3-9.1 11.7-10.6 22.3-9.5 4.3-33.8 11.7-48.3-13.9-9.1-15.8-25.5-17.1-25.5-17.1-16.2-.2-1.1 10.2-1.1 10.2 10.8 5 18.4 24.2 18.4 24.2 9.7 29.7 56.1 19.7 56.1 19.7 0 13.9 .2 36.5 .2 40.6 0 4.3-3 9.5-11.5 8-66-22.1-112.2-84.9-112.2-158.3 0-91.8 70.2-161.5 162-161.5S388 165.6 388 257.4c.1 73.4-44.7 136.3-110.7 158.3zm-98.1-61.1c-1.9 .4-3.7-.4-3.9-1.7-.2-1.5 1.1-2.8 3-3.2 1.9-.2 3.7 .6 3.9 1.9 .3 1.3-1 2.6-3 3zm-9.5-.9c0 1.3-1.5 2.4-3.5 2.4-2.2 .2-3.7-.9-3.7-2.4 0-1.3 1.5-2.4 3.5-2.4 1.9-.2 3.7 .9 3.7 2.4zm-13.7-1.1c-.4 1.3-2.4 1.9-4.1 1.3-1.9-.4-3.2-1.9-2.8-3.2 .4-1.3 2.4-1.9 4.1-1.5 2 .6 3.3 2.1 2.8 3.4zm-12.3-5.4c-.9 1.1-2.8 .9-4.3-.6-1.5-1.3-1.9-3.2-.9-4.1 .9-1.1 2.8-.9 4.3 .6 1.3 1.3 1.8 3.3 .9 4.1zm-9.1-9.1c-.9 .6-2.6 0-3.7-1.5s-1.1-3.2 0-3.9c1.1-.9 2.8-.2 3.7 1.3 1.1 1.5 1.1 3.3 0 4.1zm-6.5-9.7c-.9 .9-2.4 .4-3.5-.6-1.1-1.3-1.3-2.8-.4-3.5 .9-.9 2.4-.4 3.5 .6 1.1 1.3 1.3 2.8 .4 3.5zm-6.7-7.4c-.4 .9-1.7 1.1-2.8 .4-1.3-.6-1.9-1.7-1.5-2.6 .4-.6 1.5-.9 2.8-.4 1.3 .7 1.9 1.8 1.5 2.6z',
			),
		),
		'label'             => __( 'Github Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'gitkraken'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 592,
				'height' => 512,
				'path'   => 'M565.7 118.1c-2.3-6.1-9.3-9.2-15.3-6.6-5.7 2.4-8.5 8.9-6.3 14.6 10.9 29 16.9 60.5 16.9 93.3 0 134.6-100.3 245.7-230.2 262.7V358.4c7.9-1.5 15.5-3.6 23-6.2v104c106.7-25.9 185.9-122.1 185.9-236.8 0-91.8-50.8-171.8-125.8-213.3-5.7-3.2-13-.9-15.9 5-2.7 5.5-.6 12.2 4.7 15.1 67.9 37.6 113.9 110 113.9 193.2 0 93.3-57.9 173.1-139.8 205.4v-92.2c14.2-4.5 24.9-17.7 24.9-33.5 0-13.1-6.8-24.4-17.3-30.5 8.3-79.5 44.5-58.6 44.5-83.9V170c0-38-87.9-161.8-129-164.7-2.5-.2-5-.2-7.6 0C251.1 8.3 163.2 132 163.2 170v14.8c0 25.3 36.3 4.3 44.5 83.9-10.6 6.1-17.3 17.4-17.3 30.5 0 15.8 10.6 29 24.8 33.5v92.2c-81.9-32.2-139.8-112-139.8-205.4 0-83.1 46-155.5 113.9-193.2 5.4-3 7.4-9.6 4.7-15.1-2.9-5.9-10.1-8.2-15.9-5-75 41.5-125.8 121.5-125.8 213.3 0 114.7 79.2 210.8 185.9 236.8v-104c7.6 2.5 15.1 4.6 23 6.2v123.7C131.4 465.2 31 354.1 31 219.5c0-32.8 6-64.3 16.9-93.3 2.2-5.8-.6-12.2-6.3-14.6-6-2.6-13 .4-15.3 6.6C14.5 149.7 8 183.8 8 219.5c0 155.1 122.6 281.6 276.3 287.8V361.4c6.8 .4 15 .5 23.4 0v145.8C461.4 501.1 584 374.6 584 219.5c0-35.7-6.5-69.8-18.3-101.4zM365.9 275.5c13 0 23.7 10.5 23.7 23.7 0 13.1-10.6 23.7-23.7 23.7-13 0-23.7-10.5-23.7-23.7 0-13.1 10.6-23.7 23.7-23.7zm-139.8 47.3c-13.2 0-23.7-10.7-23.7-23.7s10.5-23.7 23.7-23.7c13.1 0 23.7 10.6 23.7 23.7 0 13-10.5 23.7-23.7 23.7z',
			),
		),
		'label'             => __( 'GitKraken', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'gitlab'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M510.5 284.5l-27.26-83.96c.012 .038 .016 .077 .028 .115-.013-.044-.021-.088-.033-.132v-.01L429.1 33.87a21.33 21.33 0 0 0 -20.44-14.6A21.04 21.04 0 0 0 388.5 34L337.1 192.2H175L123.5 33.99A21.03 21.03 0 0 0 103.3 19.27h-.113A21.47 21.47 0 0 0 82.86 34L28.89 200.5l-.008 .021v0c-.013 .042-.019 .084-.033 .127 .012-.038 .017-.077 .029-.115L1.514 284.5a30.6 30.6 0 0 0 11.12 34.28L248.9 490.4c.035 .026 .074 .041 .109 .067 .1 .072 .2 .146 .3 .214-.1-.065-.187-.136-.282-.2l0 0c.015 .012 .033 .02 .05 .031s.027 .015 .041 .024l.006 0a11.99 11.99 0 0 0 1.137 .7c.054 .03 .1 .068 .157 .1l0 0c.033 .016 .064 .038 .1 .054s.053 .02 .077 .032 .038 .015 .056 .023c.044 .021 .092 .034 .136 .057 .205 .1 .421 .178 .633 .264 .2 .082 .389 .177 .592 .248l.025 .011c.034 .012 .064 .028 .1 .04s.083 .032 .125 .046l.05 .012c.053 .016 .11 .024 .163 .039 .019 .006 .042 .009 .063 .015 .284 .086 .579 .148 .872 .213 .115 .026 .225 .062 .341 .083 .017 0 .032 .009 .05 .012 .038 .008 .073 .021 .112 .027 .062 .011 .122 .031 .186 .04 .049 .007 .1 0 .151 .012h.033a11.92 11.92 0 0 0 1.7 .136h.019a11.97 11.97 0 0 0 1.7-.136h.033c.05-.008 .1 0 .153-.012s.124-.029 .187-.04c.038-.006 .073-.019 .11-.027 .017 0 .032-.009 .049-.012 .118-.023 .231-.059 .349-.084 .288-.064 .578-.126 .861-.21 .019-.006 .039-.008 .059-.014 .055-.017 .113-.024 .169-.041 .016-.006 .035-.007 .051-.012 .044-.013 .086-.032 .129-.047s.063-.028 .1-.041l.026-.01c.214-.076 .417-.175 .627-.261s.394-.154 .584-.245c.047-.023 .1-.036 .142-.059 .018-.009 .04-.015 .058-.024s.053-.02 .078-.033 .068-.04 .1-.056l0 0c.056-.028 .106-.069 .161-.1a12.34 12.34 0 0 0 1.132-.695c.029-.02 .062-.035 .092-.056 .008-.006 .017-.009 .024-.015 .035-.026 .076-.043 .11-.068l236.3-171.7A30.6 30.6 0 0 0 510.5 284.5zM408.8 49.48l46.34 142.7H362.5zm-305.6 0 46.43 142.7H56.95zM26.82 299.3a6.526 6.526 0 0 1 -2.361-7.308l20.34-62.42L193.8 420.6zm38.24-82.97h92.41L223.4 419.2zm183.4 273.8c-.047-.038-.092-.079-.138-.118-.009-.008-.018-.018-.028-.026-.091-.075-.18-.152-.268-.231-.172-.15-.341-.3-.5-.462 .014 .012 .029 .022 .043 .035l.055 .046a12.19 12.19 0 0 0 1.091 .929l.012 .011c.018 .013 .033 .03 .051 .045C248.7 490.3 248.6 490.2 248.5 490.1zm7.514-48.48L217.2 322.2 182.8 216.3H329.3zm7.935 48.11c-.091 .079-.178 .157-.27 .233l-.032 .028c-.047 .038-.091 .079-.136 .117-.1 .08-.209 .152-.313 .229 .018-.013 .033-.032 .053-.044l.009-.009a11.69 11.69 0 0 0 1.086-.926c.014-.013 .03-.024 .044-.036s.038-.03 .054-.047C264.3 489.4 264.1 489.6 263.9 489.7zm90.7-273.5h92.4l-18.91 24.23-139.5 178.7zm130.6 82.97L318.2 420.6 467.3 229.5l20.26 62.39A6.528 6.528 0 0 1 485.2 299.2z',
			),
		),
		'label'             => __( 'GitLab', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'gitter'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M66.4 322.5H16V0h50.4v322.5zM166.9 76.1h-50.4V512h50.4V76.1zm100.6 0h-50.4V512h50.4V76.1zM368 76h-50.4v247H368V76z',
			),
		),
		'label'             => __( 'Gitter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'glass-water'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 0C360.9 0 369.4 3.692 375.4 10.19C381.5 16.69 384.6 25.42 383.9 34.28L355.1 437.7C352.1 479.6 317.3 512 275.3 512H108.7C66.72 512 31.89 479.6 28.9 437.7L.0813 34.28C-.5517 25.42 2.527 16.69 8.58 10.19C14.63 3.692 23.12 0 32 0L352 0zM97.19 168.6C116.6 178.3 139.4 178.3 158.8 168.6C179.7 158.1 204.3 158.1 225.2 168.6C244.6 178.3 267.4 178.3 286.8 168.6L311 156.5L317.6 64H66.37L72.97 156.5L97.19 168.6z',
			),
		),
		'label'             => __( 'Glass Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'glass-water-droplet'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 196C256 229.1 227.3 256 192 256C156.7 256 128 229.1 128 196C128 171.1 161.7 125.9 180.2 102.5C186.3 94.77 197.7 94.77 203.8 102.5C222.3 125.9 256 171.1 256 196V196zM352 0C360.9 0 369.4 3.692 375.4 10.19C381.5 16.69 384.6 25.42 383.9 34.28L355.1 437.7C352.1 479.6 317.3 512 275.3 512H108.7C66.72 512 31.89 479.6 28.9 437.7L.0813 34.28C-.5517 25.42 2.527 16.69 8.58 10.19C14.63 3.692 23.12 0 32 0L352 0zM96 304C116.1 314.1 139.9 314.1 160 304C180.1 293.9 203.9 293.9 224 304C244.1 314.1 267.9 314.1 288 304L300.1 297.5L317.6 64H66.37L83.05 297.5L96 304z',
			),
		),
		'label'             => __( 'Glass Water Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'glasses'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M574.1 280.4l-45.38-181.8c-5.875-23.63-21.62-44-43-55.75c-21.5-11.75-46.1-14.13-70.25-6.375l-15.25 5.125c-8.375 2.75-12.87 11.88-10 20.25l5 15.13c2.75 8.375 11.88 12.88 20.25 10.13l13.12-4.375c10.88-3.625 23-3.625 33.25 1.75c10.25 5.375 17.5 14.5 20.38 25.75l38.38 153.9c-22.12-6.875-49.75-12.5-81.13-12.5c-34.88 0-73.1 7-114.9 26.75H251.4C210.5 258.6 171.4 251.6 136.5 251.6c-31.38 0-59 5.625-81.12 12.5l38.38-153.9c2.875-11.25 10.12-20.38 20.5-25.75C124.4 79.12 136.5 79.12 147.4 82.74l13.12 4.375c8.375 2.75 17.5-1.75 20.25-10.13l5-15.13C188.6 53.49 184.1 44.37 175.6 41.62l-15.25-5.125c-23.13-7.75-48.75-5.375-70.13 6.375c-21.37 11.75-37.12 32.13-43 55.75L1.875 280.4C.6251 285.4 .0001 290.6 .0001 295.9v70.25C.0001 428.1 51.63 480 115.3 480h37.13c60.25 0 110.4-46 114.9-105.4l2.875-38.63h35.75l2.875 38.63C313.3 433.1 363.4 480 423.6 480h37.13c63.62 0 115.2-51 115.2-113.9V295.9C576 290.6 575.4 285.5 574.1 280.4zM203.4 369.7c-2 26-24.38 46.25-51 46.25H115.2C87 415.1 64 393.6 64 366.1v-37.5c18.12-6.5 43.38-13 72.62-13c23.88 0 47.25 4.375 69.88 13L203.4 369.7zM512 366.1c0 27.5-23 49.88-51.25 49.88h-37.13c-26.62 0-49-20.25-51-46.25l-3.125-41.13c22.62-8.625 46.13-13 70-13c29 0 54.38 6.5 72.5 13V366.1z',
			),
		),
		'label'             => __( 'Glasses', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'glide'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M252.8 148.6c0 8.8-1.6 17.7-3.4 26.4-5.8 27.8-11.6 55.8-17.3 83.6-1.4 6.3-8.3 4.9-13.7 4.9-23.8 0-30.5-26-30.5-45.5 0-29.3 11.2-68.1 38.5-83.1 4.3-2.5 9.2-4.2 14.1-4.2 11.4 0 12.3 8.3 12.3 17.9zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-64 187c0-5.1-20.8-37.7-25.5-39.5-2.2-.9-7.2-2.3-9.6-2.3-23.1 0-38.7 10.5-58.2 21.5l-.5-.5c4.3-29.4 14.6-57.2 14.6-87.4 0-44.6-23.8-62.7-67.5-62.7-71.7 0-108 70.8-108 123.5 0 54.7 32 85 86.3 85 7.5 0 6.9-.6 6.9 2.3-10.5 80.3-56.5 82.9-56.5 58.9 0-24.4 28-36.5 28.3-38-.2-7.6-29.3-17.2-36.7-17.2-21.1 0-32.7 33-32.7 50.6 0 32.3 20.4 54.7 53.3 54.7 48.2 0 83.4-49.7 94.3-91.7 9.4-37.7 7-39.4 12.3-42.1 20-10.1 35.8-16.8 58.4-16.8 11.1 0 19 2.3 36.7 5.2 1.8 .1 4.1-1.7 4.1-3.5z',
			),
		),
		'label'             => __( 'Glide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'glide-g'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M407.1 211.2c-3.5-1.4-11.6-3.8-15.4-3.8-37.1 0-62.2 16.8-93.5 34.5l-.9-.9c7-47.3 23.5-91.9 23.5-140.4C320.8 29.1 282.6 0 212.4 0 97.3 0 39 113.7 39 198.4 39 286.3 90.3 335 177.6 335c12 0 11-1 11 3.8-16.9 128.9-90.8 133.1-90.8 94.6 0-39.2 45-58.6 45.5-61-.3-12.2-47-27.6-58.9-27.6-33.9 .1-52.4 51.2-52.4 79.3C32 476 64.8 512 117.5 512c77.4 0 134-77.8 151.4-145.4 15.1-60.5 11.2-63.3 19.7-67.6 32.2-16.2 57.5-27 93.8-27 17.8 0 30.5 3.7 58.9 8.4 2.9 0 6.7-2.9 6.7-5.8 0-8-33.4-60.5-40.9-63.4zm-175.3-84.4c-9.3 44.7-18.6 89.6-27.8 134.3-2.3 10.2-13.3 7.8-22 7.8-38.3 0-49-41.8-49-73.1 0-47 18-109.3 61.8-133.4 7-4.1 14.8-6.7 22.6-6.7 18.6 0 20 13.3 20 28.7-.1 14.3-2.7 28.5-5.6 42.4z',
			),
		),
		'label'             => __( 'Glide G', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'globe'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 256C352 278.2 350.8 299.6 348.7 320H163.3C161.2 299.6 159.1 278.2 159.1 256C159.1 233.8 161.2 212.4 163.3 192H348.7C350.8 212.4 352 233.8 352 256zM503.9 192C509.2 212.5 512 233.9 512 256C512 278.1 509.2 299.5 503.9 320H380.8C382.9 299.4 384 277.1 384 256C384 234 382.9 212.6 380.8 192H503.9zM493.4 160H376.7C366.7 96.14 346.9 42.62 321.4 8.442C399.8 29.09 463.4 85.94 493.4 160zM344.3 160H167.7C173.8 123.6 183.2 91.38 194.7 65.35C205.2 41.74 216.9 24.61 228.2 13.81C239.4 3.178 248.7 0 256 0C263.3 0 272.6 3.178 283.8 13.81C295.1 24.61 306.8 41.74 317.3 65.35C328.8 91.38 338.2 123.6 344.3 160H344.3zM18.61 160C48.59 85.94 112.2 29.09 190.6 8.442C165.1 42.62 145.3 96.14 135.3 160H18.61zM131.2 192C129.1 212.6 127.1 234 127.1 256C127.1 277.1 129.1 299.4 131.2 320H8.065C2.8 299.5 0 278.1 0 256C0 233.9 2.8 212.5 8.065 192H131.2zM194.7 446.6C183.2 420.6 173.8 388.4 167.7 352H344.3C338.2 388.4 328.8 420.6 317.3 446.6C306.8 470.3 295.1 487.4 283.8 498.2C272.6 508.8 263.3 512 255.1 512C248.7 512 239.4 508.8 228.2 498.2C216.9 487.4 205.2 470.3 194.7 446.6H194.7zM190.6 503.6C112.2 482.9 48.59 426.1 18.61 352H135.3C145.3 415.9 165.1 469.4 190.6 503.6V503.6zM321.4 503.6C346.9 469.4 366.7 415.9 376.7 352H493.4C463.4 426.1 399.8 482.9 321.4 503.6V503.6z',
			),
		),
		'label'             => __( 'Globe', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'gofore'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 400,
				'height' => 512,
				'path'   => 'M324 319.8h-13.2v34.7c-24.5 23.1-56.3 35.8-89.9 35.8-73.2 0-132.4-60.2-132.4-134.4 0-74.1 59.2-134.4 132.4-134.4 35.3 0 68.6 14 93.6 39.4l62.3-63.3C335 55.3 279.7 32 220.7 32 98 32 0 132.6 0 256c0 122.5 97 224 220.7 224 63.2 0 124.5-26.2 171-82.5-2-27.6-13.4-77.7-67.7-77.7zm-12.1-112.5H205.6v89H324c33.5 0 60.5 15.1 76 41.8v-30.6c0-65.2-40.4-100.2-88.1-100.2z',
			),
		),
		'label'             => __( 'Gofore', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'golang'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M400.1 194.8C389.2 197.6 380.2 199.1 371 202.4C363.7 204.3 356.3 206.3 347.8 208.5L347.2 208.6C343 209.8 342.6 209.9 338.7 205.4C334 200.1 330.6 196.7 324.1 193.5C304.4 183.9 285.4 186.7 267.7 198.2C246.5 211.9 235.6 232.2 235.9 257.4C236.2 282.4 253.3 302.9 277.1 306.3C299.1 309.1 316.9 301.7 330.9 285.8C333 283.2 334.9 280.5 337 277.5V277.5L337 277.5C337.8 276.5 338.5 275.4 339.3 274.2H279.2C272.7 274.2 271.1 270.2 273.3 264.9C277.3 255.2 284.8 239 289.2 230.9C290.1 229.1 292.3 225.1 296.1 225.1H397.2C401.7 211.7 409 198.2 418.8 185.4C441.5 155.5 468.1 139.9 506 133.4C537.8 127.8 567.7 130.9 594.9 149.3C619.5 166.1 634.7 188.9 638.8 218.8C644.1 260.9 631.9 295.1 602.1 324.4C582.4 345.3 557.2 358.4 528.2 364.3C522.6 365.3 517.1 365.8 511.7 366.3C508.8 366.5 506 366.8 503.2 367.1C474.9 366.5 449 358.4 427.2 339.7C411.9 326.4 401.3 310.1 396.1 291.2C392.4 298.5 388.1 305.6 382.1 312.3C360.5 341.9 331.2 360.3 294.2 365.2C263.6 369.3 235.3 363.4 210.3 344.7C187.3 327.2 174.2 304.2 170.8 275.5C166.7 241.5 176.7 210.1 197.2 184.2C219.4 155.2 248.7 136.8 284.5 130.3C313.8 124.1 341.8 128.4 367.1 145.6C383.6 156.5 395.4 171.4 403.2 189.5C405.1 192.3 403.8 193.9 400.1 194.8zM48.3 200.4C47.05 200.4 46.74 199.8 47.36 198.8L53.91 190.4C54.53 189.5 56.09 188.9 57.34 188.9H168.6C169.8 188.9 170.1 189.8 169.5 190.7L164.2 198.8C163.6 199.8 162 200.7 161.1 200.7L48.3 200.4zM1.246 229.1C0 229.1-.3116 228.4 .3116 227.5L6.855 219.1C7.479 218.2 9.037 217.5 10.28 217.5H152.4C153.6 217.5 154.2 218.5 153.9 219.4L151.4 226.9C151.1 228.1 149.9 228.8 148.6 228.8L1.246 229.1zM75.72 255.9C75.1 256.8 75.41 257.7 76.65 257.7L144.6 258C145.5 258 146.8 257.1 146.8 255.9L147.4 248.4C147.4 247.1 146.8 246.2 145.5 246.2H83.2C81.95 246.2 80.71 247.1 80.08 248.1L75.72 255.9zM577.2 237.9C577 235.3 576.9 233.1 576.5 230.9C570.9 200.1 542.5 182.6 512.9 189.5C483.9 196 465.2 214.4 458.4 243.7C452.8 268 464.6 292.6 487 302.6C504.2 310.1 521.3 309.2 537.8 300.7C562.4 287.1 575.8 268 577.4 241.2C577.3 240 577.3 238.9 577.2 237.9z',
			),
		),
		'label'             => __( 'Go', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'golf-ball-tee'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M96 399.1c0 17.67 14.33 31.1 32 31.1s32 14.33 32 31.1v48h64v-48c0-17.67 14.33-31.1 32-31.1s32-14.33 32-31.1v-16H96V399.1zM192 .0001c-106 0-192 86.68-192 193.6c0 65.78 32.82 123.5 82.52 158.4h218.1C351.2 317.1 384 259.4 384 193.6C384 86.68 298 .0001 192 .0001zM179 205.1C183 206.9 187.4 208 192 208c17.53 0 31.74-14.33 31.74-31.1c0-4.688-1.111-9.062-2.904-13.07c11.03 5.016 18.77 16.08 18.77 29.07c0 17.67-14.21 31.1-31.74 31.1C194.1 224 184 216.2 179 205.1zM223.7 303.1c-12.88 0-23.86-7.812-28.83-18.93c3.977 1.809 8.316 2.93 12.96 2.93c17.53 0 31.74-14.33 31.74-31.1c0-4.688-1.109-9.062-2.904-13.07c11.03 5.016 18.77 16.08 18.77 29.07C255.5 289.7 241.3 303.1 223.7 303.1zM287.2 240c-12.88 0-23.86-7.812-28.83-18.93c3.977 1.809 8.316 2.93 12.96 2.93c17.53 0 31.73-14.33 31.73-31.1c0-4.688-1.109-9.062-2.902-13.07C311.2 183.9 318.9 195 318.9 208C318.9 225.7 304.7 240 287.2 240z',
			),
		),
		'label'             => __( 'Golf Ball Tee', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'goodreads'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M299.9 191.2c5.1 37.3-4.7 79-35.9 100.7-22.3 15.5-52.8 14.1-70.8 5.7-37.1-17.3-49.5-58.6-46.8-97.2 4.3-60.9 40.9-87.9 75.3-87.5 46.9-.2 71.8 31.8 78.2 78.3zM448 88v336c0 30.9-25.1 56-56 56H56c-30.9 0-56-25.1-56-56V88c0-30.9 25.1-56 56-56h336c30.9 0 56 25.1 56 56zM330 313.2s-.1-34-.1-217.3h-29v40.3c-.8 .3-1.2-.5-1.6-1.2-9.6-20.7-35.9-46.3-76-46-51.9 .4-87.2 31.2-100.6 77.8-4.3 14.9-5.8 30.1-5.5 45.6 1.7 77.9 45.1 117.8 112.4 115.2 28.9-1.1 54.5-17 69-45.2 .5-1 1.1-1.9 1.7-2.9 .2 .1 .4 .1 .6 .2 .3 3.8 .2 30.7 .1 34.5-.2 14.8-2 29.5-7.2 43.5-7.8 21-22.3 34.7-44.5 39.5-17.8 3.9-35.6 3.8-53.2-1.2-21.5-6.1-36.5-19-41.1-41.8-.3-1.6-1.3-1.3-2.3-1.3h-26.8c.8 10.6 3.2 20.3 8.5 29.2 24.2 40.5 82.7 48.5 128.2 37.4 49.9-12.3 67.3-54.9 67.4-106.3z',
			),
		),
		'label'             => __( 'Goodreads', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'goodreads-g'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M42.6 403.3h2.8c12.7 0 25.5 0 38.2 .1 1.6 0 3.1-.4 3.6 2.1 7.1 34.9 30 54.6 62.9 63.9 26.9 7.6 54.1 7.8 81.3 1.8 33.8-7.4 56-28.3 68-60.4 8-21.5 10.7-43.8 11-66.5 .1-5.8 .3-47-.2-52.8l-.9-.3c-.8 1.5-1.7 2.9-2.5 4.4-22.1 43.1-61.3 67.4-105.4 69.1-103 4-169.4-57-172-176.2-.5-23.7 1.8-46.9 8.3-69.7C58.3 47.7 112.3 .6 191.6 0c61.3-.4 101.5 38.7 116.2 70.3 .5 1.1 1.3 2.3 2.4 1.9V10.6h44.3c0 280.3 .1 332.2 .1 332.2-.1 78.5-26.7 143.7-103 162.2-69.5 16.9-159 4.8-196-57.2-8-13.5-11.8-28.3-13-44.5zM188.9 36.5c-52.5-.5-108.5 40.7-115 133.8-4.1 59 14.8 122.2 71.5 148.6 27.6 12.9 74.3 15 108.3-8.7 47.6-33.2 62.7-97 54.8-154-9.7-71.1-47.8-120-119.6-119.7z',
			),
		),
		'label'             => __( 'Goodreads G', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 488,
				'height' => 512,
				'path'   => 'M488 261.8C488 403.3 391.1 504 248 504 110.8 504 0 393.2 0 256S110.8 8 248 8c66.8 0 123 24.5 166.3 64.9l-67.5 64.9C258.5 52.6 94.3 116.6 94.3 256c0 86.5 69.1 156.6 153.7 156.6 98.2 0 135-70.4 140.8-106.9H248v-85.3h236.1c2.3 12.7 3.9 24.9 3.9 41.4z',
			),
		),
		'label'             => __( 'Google Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google-drive'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M339 314.9L175.4 32h161.2l163.6 282.9H339zm-137.5 23.6L120.9 480h310.5L512 338.5H201.5zM154.1 67.4L0 338.5 80.6 480 237 208.8 154.1 67.4z',
			),
		),
		'label'             => __( 'Google Drive', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google-pay'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M105.7 215v41.25h57.1a49.66 49.66 0 0 1 -21.14 32.6c-9.54 6.55-21.72 10.28-36 10.28-27.6 0-50.93-18.91-59.3-44.22a65.61 65.61 0 0 1 0-41l0 0c8.37-25.46 31.7-44.37 59.3-44.37a56.43 56.43 0 0 1 40.51 16.08L176.5 155a101.2 101.2 0 0 0 -70.75-27.84 105.6 105.6 0 0 0 -94.38 59.11 107.6 107.6 0 0 0 0 96.18v.15a105.4 105.4 0 0 0 94.38 59c28.47 0 52.55-9.53 70-25.91 20-18.61 31.41-46.15 31.41-78.91A133.8 133.8 0 0 0 205.4 215zm389.4-4c-10.13-9.38-23.93-14.14-41.39-14.14-22.46 0-39.34 8.34-50.5 24.86l20.85 13.26q11.45-17 31.26-17a34.05 34.05 0 0 1 22.75 8.79A28.14 28.14 0 0 1 487.8 248v5.51c-9.1-5.07-20.55-7.75-34.64-7.75-16.44 0-29.65 3.88-39.49 11.77s-14.82 18.31-14.82 31.56a39.74 39.74 0 0 0 13.94 31.27c9.25 8.34 21 12.51 34.79 12.51 16.29 0 29.21-7.3 39-21.89h1v17.72h22.61V250C510.3 233.4 505.3 220.3 495.1 211zM475.9 300.3a37.32 37.32 0 0 1 -26.57 11.16A28.61 28.61 0 0 1 431 305.2a19.41 19.41 0 0 1 -7.77-15.63c0-7 3.22-12.81 9.54-17.42s14.53-7 24.07-7C470 265 480.3 268 487.6 273.9 487.6 284.1 483.7 292.9 475.9 300.3zm-93.65-142A55.71 55.71 0 0 0 341.7 142H279.1V328.7H302.7V253.1h39c16 0 29.5-5.36 40.51-15.93 .88-.89 1.76-1.79 2.65-2.68A54.45 54.45 0 0 0 382.3 158.3zm-16.58 62.23a30.65 30.65 0 0 1 -23.34 9.68H302.7V165h39.63a32 32 0 0 1 22.6 9.23A33.18 33.18 0 0 1 365.7 220.5zM614.3 201 577.8 292.7h-.45L539.9 201H514.2L566 320.5l-29.35 64.32H561L640 201z',
			),
		),
		'label'             => __( 'Google Pay', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'google-play'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M325.3 234.3L104.6 13l280.8 161.2-60.1 60.1zM47 0C34 6.8 25.3 19.2 25.3 35.3v441.3c0 16.1 8.7 28.5 21.7 35.3l256.6-256L47 0zm425.2 225.6l-58.9-34.1-65.7 64.5 65.7 64.5 60.1-34.1c18-14.3 18-46.5-1.2-60.8zM104.6 499l280.8-161.2-60.1-60.1L104.6 499z',
			),
		),
		'label'             => __( 'Google Play', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google-plus'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 8C119.1 8 8 119.1 8 256S119.1 504 256 504 504 392.9 504 256 392.9 8 256 8zM185.3 380a124 124 0 0 1 0-248c31.3 0 60.1 11 83 32.3l-33.6 32.6c-13.2-12.9-31.3-19.1-49.4-19.1-42.9 0-77.2 35.5-77.2 78.1S142.3 334 185.3 334c32.6 0 64.9-19.1 70.1-53.3H185.3V238.1H302.2a109.2 109.2 0 0 1 1.9 20.7c0 70.8-47.5 121.2-118.8 121.2zM415.5 273.8v35.5H380V273.8H344.5V238.3H380V202.8h35.5v35.5h35.2v35.5z',
			),
		),
		'label'             => __( 'Google Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google-plus-g'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M386.1 228.5c1.834 9.692 3.143 19.38 3.143 31.96C389.2 370.2 315.6 448 204.8 448c-106.1 0-192-85.92-192-192s85.92-192 192-192c51.86 0 95.08 18.86 128.6 50.29l-52.13 50.03c-14.15-13.62-39.03-29.6-76.49-29.6-65.48 0-118.9 54.22-118.9 121.3 0 67.06 53.44 121.3 118.9 121.3 75.96 0 104.5-54.74 108.1-82.77H204.8v-66.01h181.3zm185.4 6.437V179.2h-56v55.73h-55.73v56h55.73v55.73h56v-55.73H627.2v-56h-55.73z',
			),
		),
		'label'             => __( 'Google Plus G', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'google-plus-square'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM164 356c-55.3 0-100-44.7-100-100s44.7-100 100-100c27 0 49.5 9.8 67 26.2l-27.1 26.1c-7.4-7.1-20.3-15.4-39.8-15.4-34.1 0-61.9 28.2-61.9 63.2 0 34.9 27.8 63.2 61.9 63.2 39.6 0 54.4-28.5 56.8-43.1H164v-34.4h94.4c1 5 1.6 10.1 1.6 16.6 0 57.1-38.3 97.6-96 97.6zm220-81.8h-29v29h-29.2v-29h-29V245h29v-29H355v29h29v29.2z',
			),
		),
		'label'             => __( 'Google Plus Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'google-wallet'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M156.8 126.8c37.6 60.6 64.2 113.1 84.3 162.5-8.3 33.8-18.8 66.5-31.3 98.3-13.2-52.3-26.5-101.3-56-148.5 6.5-36.4 2.3-73.6 3-112.3zM109.3 200H16.1c-6.5 0-10.5 7.5-6.5 12.7C51.8 267 81.3 330.5 101.3 400h103.5c-16.2-69.7-38.7-133.7-82.5-193.5-3-4-8-6.5-13-6.5zm47.8-88c68.5 108 130 234.5 138.2 368H409c-12-138-68.4-265-143.2-368H157.1zm251.8-68.5c-1.8-6.8-8.2-11.5-15.2-11.5h-88.3c-5.3 0-9 5-7.8 10.3 13.2 46.5 22.3 95.5 26.5 146 48.2 86.2 79.7 178.3 90.6 270.8 15.8-60.5 25.3-133.5 25.3-203 0-73.6-12.1-145.1-31.1-212.6z',
			),
		),
		'label'             => __( 'Google Wallet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'gopuram'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M120 0C133.3 0 144 10.75 144 24V32H184V24C184 10.75 194.7 0 208 0C221.3 0 232 10.75 232 24V32H280V24C280 10.75 290.7 0 304 0C317.3 0 328 10.75 328 24V32H368V24C368 10.75 378.7 0 392 0C405.3 0 416 10.75 416 24V128C433.7 128 448 142.3 448 160V224C465.7 224 480 238.3 480 256V352C497.7 352 512 366.3 512 384V480C512 497.7 497.7 512 480 512H416V352H384V224H352V128H320V224H352V352H384V512H304V464C304 437.5 282.5 416 256 416C229.5 416 208 437.5 208 464V512H128V352H160V224H192V128H160V224H128V352H96V512H32C14.33 512 0 497.7 0 480V384C0 366.3 14.33 352 32 352V256C32 238.3 46.33 224 64 224V160C64 142.3 78.33 128 96 128V24C96 10.75 106.7 0 120 0zM256 272C238.3 272 224 286.3 224 304V352H288V304C288 286.3 273.7 272 256 272zM224 224H288V192C288 174.3 273.7 160 256 160C238.3 160 224 174.3 224 192V224z',
			),
		),
		'label'             => __( 'Gopuram', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'graduation-cap'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M623.1 136.9l-282.7-101.2c-13.73-4.91-28.7-4.91-42.43 0L16.05 136.9C6.438 140.4 0 149.6 0 160s6.438 19.65 16.05 23.09L76.07 204.6c-11.89 15.8-20.26 34.16-24.55 53.95C40.05 263.4 32 274.8 32 288c0 9.953 4.814 18.49 11.94 24.36l-24.83 149C17.48 471.1 25 480 34.89 480H93.11c9.887 0 17.41-8.879 15.78-18.63l-24.83-149C91.19 306.5 96 297.1 96 288c0-10.29-5.174-19.03-12.72-24.89c4.252-17.76 12.88-33.82 24.94-47.03l190.6 68.23c13.73 4.91 28.7 4.91 42.43 0l282.7-101.2C633.6 179.6 640 170.4 640 160S633.6 140.4 623.1 136.9zM351.1 314.4C341.7 318.1 330.9 320 320 320c-10.92 0-21.69-1.867-32-5.555L142.8 262.5L128 405.3C128 446.6 213.1 480 320 480c105.1 0 192-33.4 192-74.67l-14.78-142.9L351.1 314.4z',
			),
		),
		'label'             => __( 'Graduation Cap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies', 'travel' ),
	),
	'gratipay'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm114.6 226.4l-113 152.7-112.7-152.7c-8.7-11.9-19.1-50.4 13.6-72 28.1-18.1 54.6-4.2 68.5 11.9 15.9 17.9 46.6 16.9 61.7 0 13.9-16.1 40.4-30 68.1-11.9 32.9 21.6 22.6 60 13.8 72z',
			),
		),
		'label'             => __( 'Gratipay (Gittip)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'grav'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M301.1 212c4.4 4.4 4.4 11.9 0 16.3l-9.7 9.7c-4.4 4.7-11.9 4.7-16.6 0l-10.5-10.5c-4.4-4.7-4.4-11.9 0-16.6l9.7-9.7c4.4-4.4 11.9-4.4 16.6 0l10.5 10.8zm-30.2-19.7c3-3 3-7.8 0-10.5-2.8-3-7.5-3-10.5 0-2.8 2.8-2.8 7.5 0 10.5 3.1 2.8 7.8 2.8 10.5 0zm-26 5.3c-3 2.8-3 7.5 0 10.2 2.8 3 7.5 3 10.5 0 2.8-2.8 2.8-7.5 0-10.2-3-3-7.7-3-10.5 0zm72.5-13.3c-19.9-14.4-33.8-43.2-11.9-68.1 21.6-24.9 40.7-17.2 59.8 .8 11.9 11.3 29.3 24.9 17.2 48.2-12.5 23.5-45.1 33.2-65.1 19.1zm47.7-44.5c-8.9-10-23.3 6.9-15.5 16.1 7.4 9 32.1 2.4 15.5-16.1zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-66.2 42.6c2.5-16.1-20.2-16.6-25.2-25.7-13.6-24.1-27.7-36.8-54.5-30.4 11.6-8 23.5-6.1 23.5-6.1 .3-6.4 0-13-9.4-24.9 3.9-12.5 .3-22.4 .3-22.4 15.5-8.6 26.8-24.4 29.1-43.2 3.6-31-18.8-59.2-49.8-62.8-22.1-2.5-43.7 7.7-54.3 25.7-23.2 40.1 1.4 70.9 22.4 81.4-14.4-1.4-34.3-11.9-40.1-34.3-6.6-25.7 2.8-49.8 8.9-61.4 0 0-4.4-5.8-8-8.9 0 0-13.8 0-24.6 5.3 11.9-15.2 25.2-14.4 25.2-14.4 0-6.4-.6-14.9-3.6-21.6-5.4-11-23.8-12.9-31.7 2.8 .1-.2 .3-.4 .4-.5-5 11.9-1.1 55.9 16.9 87.2-2.5 1.4-9.1 6.1-13 10-21.6 9.7-56.2 60.3-56.2 60.3-28.2 10.8-77.2 50.9-70.6 79.7 .3 3 1.4 5.5 3 7.5-2.8 2.2-5.5 5-8.3 8.3-11.9 13.8-5.3 35.2 17.7 24.4 15.8-7.2 29.6-20.2 36.3-30.4 0 0-5.5-5-16.3-4.4 27.7-6.6 34.3-9.4 46.2-9.1 8 3.9 8-34.3 8-34.3 0-14.7-2.2-31-11.1-41.5 12.5 12.2 29.1 32.7 28 60.6-.8 18.3-15.2 23-15.2 23-9.1 16.6-43.2 65.9-30.4 106 0 0-9.7-14.9-10.2-22.1-17.4 19.4-46.5 52.3-24.6 64.5 26.6 14.7 108.8-88.6 126.2-142.3 34.6-20.8 55.4-47.3 63.9-65 22 43.5 95.3 94.5 101.1 59z',
			),
		),
		'label'             => __( 'Grav', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'greater-than'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M32.03 448c-11.75 0-23.05-6.469-28.66-17.69c-7.906-15.81-1.5-35.03 14.31-42.94l262.8-131.4L17.69 124.6C1.875 116.7-4.531 97.51 3.375 81.7c7.891-15.81 27.06-22.19 42.94-14.31l320 160C377.2 232.8 384 243.9 384 256c0 12.12-6.844 23.19-17.69 28.63l-320 160C41.72 446.9 36.83 448 32.03 448z',
			),
		),
		'label'             => __( 'Greater Than', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'greater-than-equal'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M34.28 331.9c5.016 12.53 17.03 20.12 29.73 20.12c3.953 0 7.969-.7187 11.88-2.281l320-127.1C408 216.9 416 205.1 416 192s-7.969-24.85-20.11-29.72l-320-128c-16.47-6.594-35.05 1.406-41.61 17.84C27.72 68.55 35.7 87.17 52.11 93.73l245.7 98.28L52.11 290.3C35.7 296.9 27.72 315.5 34.28 331.9zM416 416H32c-17.67 0-32 14.31-32 31.99s14.33 32.01 32 32.01h384c17.67 0 32-14.32 32-32.01S433.7 416 416 416z',
			),
		),
		'label'             => __( 'Greater Than Equal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'grip'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M128 184C128 206.1 110.1 224 88 224H40C17.91 224 0 206.1 0 184V136C0 113.9 17.91 96 40 96H88C110.1 96 128 113.9 128 136V184zM128 376C128 398.1 110.1 416 88 416H40C17.91 416 0 398.1 0 376V328C0 305.9 17.91 288 40 288H88C110.1 288 128 305.9 128 328V376zM160 136C160 113.9 177.9 96 200 96H248C270.1 96 288 113.9 288 136V184C288 206.1 270.1 224 248 224H200C177.9 224 160 206.1 160 184V136zM288 376C288 398.1 270.1 416 248 416H200C177.9 416 160 398.1 160 376V328C160 305.9 177.9 288 200 288H248C270.1 288 288 305.9 288 328V376zM320 136C320 113.9 337.9 96 360 96H408C430.1 96 448 113.9 448 136V184C448 206.1 430.1 224 408 224H360C337.9 224 320 206.1 320 184V136zM448 376C448 398.1 430.1 416 408 416H360C337.9 416 320 398.1 320 376V328C320 305.9 337.9 288 360 288H408C430.1 288 448 305.9 448 328V376z',
			),
		),
		'label'             => __( 'Grip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'grip-lines'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 288C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H416zM416 160C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H416z',
			),
		),
		'label'             => __( 'Grip Lines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'grip-lines-vertical'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 192,
				'height' => 512,
				'path'   => 'M64 448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448V64C0 46.33 14.33 32 32 32C49.67 32 64 46.33 64 64V448zM192 448C192 465.7 177.7 480 160 480C142.3 480 128 465.7 128 448V64C128 46.33 142.3 32 160 32C177.7 32 192 46.33 192 64V448z',
			),
		),
		'label'             => __( 'Grip Lines Vertical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'grip-vertical'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M88 352C110.1 352 128 369.9 128 392V440C128 462.1 110.1 480 88 480H40C17.91 480 0 462.1 0 440V392C0 369.9 17.91 352 40 352H88zM280 352C302.1 352 320 369.9 320 392V440C320 462.1 302.1 480 280 480H232C209.9 480 192 462.1 192 440V392C192 369.9 209.9 352 232 352H280zM40 320C17.91 320 0 302.1 0 280V232C0 209.9 17.91 192 40 192H88C110.1 192 128 209.9 128 232V280C128 302.1 110.1 320 88 320H40zM280 192C302.1 192 320 209.9 320 232V280C320 302.1 302.1 320 280 320H232C209.9 320 192 302.1 192 280V232C192 209.9 209.9 192 232 192H280zM40 160C17.91 160 0 142.1 0 120V72C0 49.91 17.91 32 40 32H88C110.1 32 128 49.91 128 72V120C128 142.1 110.1 160 88 160H40zM280 32C302.1 32 320 49.91 320 72V120C320 142.1 302.1 160 280 160H232C209.9 160 192 142.1 192 120V72C192 49.91 209.9 32 232 32H280z',
			),
		),
		'label'             => __( 'Grip Vertical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'gripfire'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M112.5 301.4c0-73.8 105.1-122.5 105.1-203 0-47.1-34-88-39.1-90.4 .4 3.3 .6 6.7 .6 10C179.1 110.1 32 171.9 32 286.6c0 49.8 32.2 79.2 66.5 108.3 65.1 46.7 78.1 71.4 78.1 86.6 0 10.1-4.8 17-4.8 22.3 13.1-16.7 17.4-31.9 17.5-46.4 0-29.6-21.7-56.3-44.2-86.5-16-22.3-32.6-42.6-32.6-69.5zm205.3-39c-12.1-66.8-78-124.4-94.7-130.9l4 7.2c2.4 5.1 3.4 10.9 3.4 17.1 0 44.7-54.2 111.2-56.6 116.7-2.2 5.1-3.2 10.5-3.2 15.8 0 20.1 15.2 42.1 17.9 42.1 2.4 0 56.6-55.4 58.1-87.7 6.4 11.7 9.1 22.6 9.1 33.4 0 41.2-41.8 96.9-41.8 96.9 0 11.6 31.9 53.2 35.5 53.2 1 0 2.2-1.4 3.2-2.4 37.9-39.3 67.3-85 67.3-136.8 0-8-.7-16.2-2.2-24.6z',
			),
		),
		'label'             => __( 'Gripfire, Inc.', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'group-arrows-rotate'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.7 89.85C159.9 91.87 159.1 93.93 159.1 96C159.1 131.3 131.3 160 95.1 160C93.92 160 91.87 159.9 89.85 159.7C82.34 172.6 76.29 186.5 71.94 201.1C66.9 218.1 49.08 227.7 32.15 222.7C15.21 217.6 5.562 199.8 10.6 182.9C17.01 161.4 26.15 141 37.64 122.3C34.02 114.3 31.1 105.4 31.1 96C31.1 60.65 60.65 32 95.1 32C105.4 32 114.3 34.02 122.3 37.64C141 26.16 161.4 17.01 182.9 10.61C199.8 5.566 217.6 15.21 222.7 32.15C227.7 49.09 218.1 66.91 201.1 71.95C186.5 76.3 172.6 82.34 159.7 89.85V89.85zM389.7 37.64C397.7 34.02 406.6 32 415.1 32C451.3 32 479.1 60.65 479.1 96C479.1 105.4 477.1 114.3 474.4 122.3C485.8 141 494.1 161.4 501.4 182.9C506.4 199.8 496.8 217.6 479.8 222.7C462.9 227.7 445.1 218.1 440.1 201.1C435.7 186.5 429.7 172.6 422.1 159.7C420.1 159.9 418.1 160 416 160C380.7 160 352 131.3 352 96C352 93.93 352.1 91.87 352.3 89.85C339.4 82.34 325.5 76.3 310.9 71.95C293.9 66.91 284.3 49.09 289.3 32.15C294.4 15.21 312.2 5.566 329.1 10.61C350.6 17.01 370.1 26.16 389.7 37.64L389.7 37.64zM89.85 352.3C91.87 352.1 93.92 352 95.1 352C131.3 352 159.1 380.7 159.1 416C159.1 418.1 159.9 420.1 159.7 422.2C172.6 429.7 186.5 435.7 201.1 440.1C218.1 445.1 227.7 462.9 222.7 479.9C217.6 496.8 199.8 506.4 182.9 501.4C161.4 494.1 141 485.8 122.3 474.4C114.3 477.1 105.4 480 95.1 480C60.65 480 31.1 451.3 31.1 416C31.1 406.6 34.02 397.7 37.64 389.7C26.15 370.1 17.01 350.6 10.6 329.1C5.562 312.2 15.21 294.4 32.15 289.3C49.08 284.3 66.9 293.9 71.94 310.9C76.29 325.5 82.34 339.4 89.85 352.3L89.85 352.3zM474.4 389.7C477.1 397.7 479.1 406.6 479.1 416C479.1 451.3 451.3 480 415.1 480C406.6 480 397.7 477.1 389.7 474.4C370.1 485.8 350.6 494.1 329.1 501.4C312.2 506.4 294.4 496.8 289.3 479.9C284.3 462.9 293.9 445.1 310.9 440.1C325.5 435.7 339.4 429.7 352.3 422.2C352.1 420.1 351.1 418.1 351.1 416C351.1 380.7 380.7 352 415.1 352C418.1 352 420.1 352.1 422.2 352.3C429.7 339.4 435.7 325.5 440.1 310.9C445.1 293.9 462.9 284.3 479.8 289.3C496.8 294.4 506.4 312.2 501.4 329.1C494.1 350.6 485.8 370.1 474.4 389.7H474.4zM192.8 256.8C192.8 281.6 206.9 303.2 227.7 313.8C239.5 319.9 244.2 334.3 238.2 346.1C232.1 357.9 217.7 362.6 205.9 356.6C169.7 338.1 144.8 300.4 144.8 256.8C144.8 227.9 155.7 201.6 173.7 181.7L162.5 170.6C155.1 163.1 160.6 152.8 169.9 152.8H230.4C236.1 152.8 240.8 157.5 240.8 163.2V223.7C240.8 232.1 229.6 237.6 223 231L207.7 215.7C198.4 226.8 192.8 241.1 192.8 256.8V256.8zM275.4 165.9C281.5 154.1 295.9 149.4 307.7 155.4C343.9 173.9 368.8 211.6 368.8 255.2C368.8 284.1 357.8 310.5 339.9 330.3L351 341.5C357.6 348 352.1 359.2 343.7 359.2H283.2C277.5 359.2 272.8 354.6 272.8 348.8V288.3C272.8 279 284 274.4 290.6 280.1L305.9 296.3C315.2 285.2 320.8 270.9 320.8 255.2C320.8 230.4 306.6 208.8 285.9 198.2C274.1 192.1 269.4 177.7 275.4 165.9V165.9z',
			),
		),
		'label'             => __( 'Group Arrows Rotate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'grunt'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M61.3 189.3c-1.1 10 5.2 19.1 5.2 19.1 .7-7.5 2.2-12.8 4-16.6 .4 10.3 3.2 23.5 12.8 34.1 6.9 7.6 35.6 23.3 54.9 6.1 1 2.4 2.1 5.3 3 8.5 2.9 10.3-2.7 25.3-2.7 25.3s15.1-17.1 13.9-32.5c10.8-.5 21.4-8.4 21.1-19.5 0 0-18.9 10.4-35.5-8.8-9.7-11.2-40.9-42-83.1-31.8 4.3 1 8.9 2.4 13.5 4.1h-.1c-4.2 2-6.5 7.1-7 12zm28.3-1.8c19.5 11 37.4 25.7 44.9 37-5.7 3.3-21.7 10.4-38-1.7-10.3-7.6-9.8-26.2-6.9-35.3zm142.1 45.8c-1.2 15.5 13.9 32.5 13.9 32.5s-5.6-15-2.7-25.3c.9-3.2 2-6 3-8.5 19.3 17.3 48 1.5 54.8-6.1 9.6-10.6 12.3-23.8 12.8-34.1 1.8 3.8 3.4 9.1 4 16.6 0 0 6.4-9.1 5.2-19.1-.6-5-2.9-10-7-11.8h-.1c4.6-1.8 9.2-3.2 13.5-4.1-42.3-10.2-73.4 20.6-83.1 31.8-16.7 19.2-35.5 8.8-35.5 8.8-.2 10.9 10.4 18.9 21.2 19.3zm62.7-45.8c3 9.1 3.4 27.7-7 35.4-16.3 12.1-32.2 5-37.9 1.6 7.5-11.4 25.4-26 44.9-37zM160 418.5h-29.4c-5.5 0-8.2 1.6-9.5 2.9-1.9 2-2.2 4.7-.9 8.1 3.5 9.1 11.4 16.5 13.7 18.6 3.1 2.7 7.5 4.3 11.8 4.3 4.4 0 8.3-1.7 11-4.6 7.5-8.2 11.9-17.1 13-19.8 .6-1.5 1.3-4.5-.9-6.8-1.8-1.8-4.7-2.7-8.8-2.7zm189.2-101.2c-2.4 17.9-13 33.8-24.6 43.7-3.1-22.7-3.7-55.5-3.7-62.4 0-14.7 9.5-24.5 12.2-26.1 2.5-1.5 5.4-3 8.3-4.6 18-9.6 40.4-21.6 40.4-43.7 0-16.2-9.3-23.2-15.4-27.8-.8-.6-1.5-1.1-2.2-1.7-2.1-1.7-3.7-3-4.3-4.4-4.4-9.8-3.6-34.2-1.7-37.6 .6-.6 16.7-20.9 11.8-39.2-2-7.4-6.9-13.3-14.1-17-5.3-2.7-11.9-4.2-19.5-4.5-.1-2-.5-3.9-.9-5.9-.6-2.6-1.1-5.3-.9-8.1 .4-4.7 .8-9 2.2-11.3 8.4-13.3 28.8-17.6 29-17.6l12.3-2.4-8.1-9.5c-.1-.2-17.3-17.5-46.3-17.5-7.9 0-16 1.3-24.1 3.9-24.2 7.8-42.9 30.5-49.4 39.3-3.1-1-6.3-1.9-9.6-2.7-4.2-15.8 9-38.5 9-38.5s-13.6-3-33.7 15.2c-2.6-6.5-8.1-20.5-1.8-37.2C184.6 10.1 177.2 26 175 40.4c-7.6-5.4-6.7-23.1-7.2-27.6-7.5 .9-29.2 21.9-28.2 48.3-2 .5-3.9 1.1-5.9 1.7-6.5-8.8-25.1-31.5-49.4-39.3-7.9-2.2-16-3.5-23.9-3.5-29 0-46.1 17.3-46.3 17.5L6 46.9l12.3 2.4c.2 0 20.6 4.3 29 17.6 1.4 2.2 1.8 6.6 2.2 11.3 .2 2.8-.4 5.5-.9 8.1-.4 1.9-.8 3.9-.9 5.9-7.7 .3-14.2 1.8-19.5 4.5-7.2 3.7-12.1 9.6-14.1 17-5 18.2 11.2 38.5 11.8 39.2 1.9 3.4 2.7 27.8-1.7 37.6-.6 1.4-2.2 2.7-4.3 4.4-.7 .5-1.4 1.1-2.2 1.7-6.1 4.6-15.4 11.7-15.4 27.8 0 22.1 22.4 34.1 40.4 43.7 3 1.6 5.8 3.1 8.3 4.6 2.7 1.6 12.2 11.4 12.2 26.1 0 6.9-.6 39.7-3.7 62.4-11.6-9.9-22.2-25.9-24.6-43.8 0 0-29.2 22.6-20.6 70.8 5.2 29.5 23.2 46.1 47 54.7 8.8 19.1 29.4 45.7 67.3 49.6C143 504.3 163 512 192.2 512h.2c29.1 0 49.1-7.7 63.6-19.5 37.9-3.9 58.5-30.5 67.3-49.6 23.8-8.7 41.7-25.2 47-54.7 8.2-48.4-21.1-70.9-21.1-70.9zM305.7 37.7c5.6-1.8 11.6-2.7 17.7-2.7 11 0 19.9 3 24.7 5-3.1 1.4-6.4 3.2-9.7 5.3-2.4-.4-5.6-.8-9.2-.8-10.5 0-20.5 3.1-28.7 8.9-12.3 8.7-18 16.9-20.7 22.4-2.2-1.3-4.5-2.5-7.1-3.7-1.6-.8-3.1-1.5-4.7-2.2 6.1-9.1 19.9-26.5 37.7-32.2zm21 18.2c-.8 1-1.6 2.1-2.3 3.2-3.3 5.2-3.9 11.6-4.4 17.8-.5 6.4-1.1 12.5-4.4 17-4.2 .8-8.1 1.7-11.5 2.7-2.3-3.1-5.6-7-10.5-11.2 1.4-4.8 5.5-16.1 13.5-22.5 5.6-4.3 12.2-6.7 19.6-7zM45.6 45.3c-3.3-2.2-6.6-4-9.7-5.3 4.8-2 13.7-5 24.7-5 6.1 0 12 .9 17.7 2.7 17.8 5.8 31.6 23.2 37.7 32.1-1.6 .7-3.2 1.4-4.8 2.2-2.5 1.2-4.9 2.5-7.1 3.7-2.6-5.4-8.3-13.7-20.7-22.4-8.3-5.8-18.2-8.9-28.8-8.9-3.4 .1-6.6 .5-9 .9zm44.7 40.1c-4.9 4.2-8.3 8-10.5 11.2-3.4-.9-7.3-1.9-11.5-2.7C65 89.5 64.5 83.4 64 77c-.5-6.2-1.1-12.6-4.4-17.8-.7-1.1-1.5-2.2-2.3-3.2 7.4 .3 14 2.6 19.5 7 8 6.3 12.1 17.6 13.5 22.4zM58.1 259.9c-2.7-1.6-5.6-3.1-8.4-4.6-14.9-8-30.2-16.3-30.2-30.5 0-11.1 4.3-14.6 8.9-18.2l.5-.4c.7-.6 1.4-1.2 2.2-1.8-.9 7.2-1.9 13.3-2.7 14.9 0 0 12.1-15 15.7-44.3 1.4-11.5-1.1-34.3-5.1-43 .2 4.9 0 9.8-.3 14.4-.4-.8-.8-1.6-1.3-2.2-3.2-4-11.8-17.5-9.4-26.6 .9-3.5 3.1-6 6.7-7.8 3.8-1.9 8.8-2.9 15.1-2.9 12.3 0 25.9 3.7 32.9 6 25.1 8 55.4 30.9 64.1 37.7 .2 .2 .4 .3 .4 .3l5.6 3.9-3.5-5.8c-.2-.3-19.1-31.4-53.2-46.5 2-2.9 7.4-8.1 21.6-15.1 21.4-10.5 46.5-15.8 74.3-15.8 27.9 0 52.9 5.3 74.3 15.8 14.2 6.9 19.6 12.2 21.6 15.1-34 15.1-52.9 46.2-53.1 46.5l-3.5 5.8 5.6-3.9s.2-.1 .4-.3c8.7-6.8 39-29.8 64.1-37.7 7-2.2 20.6-6 32.9-6 6.3 0 11.3 1 15.1 2.9 3.5 1.8 5.7 4.4 6.7 7.8 2.5 9.1-6.1 22.6-9.4 26.6-.5 .6-.9 1.3-1.3 2.2-.3-4.6-.5-9.5-.3-14.4-4 8.8-6.5 31.5-5.1 43 3.6 29.3 15.7 44.3 15.7 44.3-.8-1.6-1.8-7.7-2.7-14.9 .7 .6 1.5 1.2 2.2 1.8l.5 .4c4.6 3.7 8.9 7.1 8.9 18.2 0 14.2-15.4 22.5-30.2 30.5-2.9 1.5-5.7 3.1-8.4 4.6-8.7 5-18 16.7-19.1 34.2-.9 14.6 .9 49.9 3.4 75.9-12.4 4.8-26.7 6.4-39.7 6.8-2-4.1-3.9-8.5-5.5-13.1-.7-2-19.6-51.1-26.4-62.2 5.5 39 17.5 73.7 23.5 89.6-3.5-.5-7.3-.7-11.7-.7h-117c-4.4 0-8.3 .3-11.7 .7 6-15.9 18.1-50.6 23.5-89.6-6.8 11.2-25.7 60.3-26.4 62.2-1.6 4.6-3.5 9-5.5 13.1-13-.4-27.2-2-39.7-6.8 2.5-26 4.3-61.2 3.4-75.9-.9-17.4-10.3-29.2-19-34.2zM34.8 404.6c-12.1-20-8.7-54.1-3.7-59.1 10.9 34.4 47.2 44.3 74.4 45.4-2.7 4.2-5.2 7.6-7 10l-1.4 1.4c-7.2 7.8-8.6 18.5-4.1 31.8-22.7-.1-46.3-9.8-58.2-29.5zm45.7 43.5c6 1.1 12.2 1.9 18.6 2.4 3.5 8 7.4 15.9 12.3 23.1-14.4-5.9-24.4-16-30.9-25.5zM192 498.2c-60.6-.1-78.3-45.8-84.9-64.7-3.7-10.5-3.4-18.2 .9-23.1 2.9-3.3 9.5-7.2 24.6-7.2h118.8c15.1 0 21.8 3.9 24.6 7.2 4.2 4.8 4.5 12.6 .9 23.1-6.6 18.8-24.3 64.6-84.9 64.7zm80.6-24.6c4.9-7.2 8.8-15.1 12.3-23.1 6.4-.5 12.6-1.3 18.6-2.4-6.5 9.5-16.5 19.6-30.9 25.5zm76.6-69c-12 19.7-35.6 29.3-58.1 29.7 4.5-13.3 3.1-24.1-4.1-31.8-.4-.5-.9-1-1.4-1.5-1.8-2.4-4.3-5.8-7-10 27.2-1.2 63.5-11 74.4-45.4 5 5 8.4 39.1-3.8 59zM191.9 187.7h.2c12.7-.1 27.2-17.8 27.2-17.8-9.9 6-18.8 8.1-27.3 8.3-8.5-.2-17.4-2.3-27.3-8.3 0 0 14.5 17.6 27.2 17.8zm61.7 230.7h-29.4c-4.2 0-7.2 .9-8.9 2.7-2.2 2.3-1.5 5.2-.9 6.7 1 2.6 5.5 11.3 13 19.3 2.7 2.9 6.6 4.5 11 4.5s8.7-1.6 11.8-4.2c2.3-2 10.2-9.2 13.7-18.1 1.3-3.3 1-6-.9-7.9-1.3-1.3-4-2.9-9.4-3z',
			),
		),
		'label'             => __( 'Grunt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'guarani-sign'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 32V66.66C263.5 73.3 299 92.03 326.4 118.9C339 131.3 339.2 151.5 326.9 164.1C314.5 176.8 294.2 176.1 281.6 164.6C265.8 149.1 246.1 137.7 224 132V224H352C369.7 224 384 238.3 384 256C384 351.1 314.8 430.1 224 445.3V480C224 497.7 209.7 512 192 512C174.3 512 160 497.7 160 480V445.3C69.19 430.1 0 351.1 0 256C0 160.9 69.19 81.89 160 66.65V32C160 14.33 174.3 0 192 0C209.7 0 224 14.33 224 32H224zM160 132C104.8 146.2 64 196.4 64 256C64 315.6 104.8 365.8 160 379.1V132zM224 379.1C268.1 368.4 304.4 332.1 315.1 288H224V379.1z',
			),
		),
		'label'             => __( 'Guarani Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'guilded'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M443.4 64H4.571c0 103.3 22.19 180.1 43.42 222.4C112 414.1 224 448 225.3 448a312.8 312.8 0 0 0 140.6-103.5c25.91-33.92 53.1-87.19 65.92-145.8H171.8c4.14 36.43 22.18 67.95 45.1 86.94h88.59c-17.01 28.21-48.19 54.4-80.46 69.48-31.23-13.26-69.09-46.54-96.55-98.36-26.73-53.83-27.09-105.9-27.09-105.9H437.6A625.9 625.9 0 0 0 443.4 64z',
			),
		),
		'label'             => __( 'Guilded', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'guitar'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.7 39.02L473 9.37c-12.5-12.5-32.74-12.49-45.24 .0106l-46.24 46.37c-3.875 3.875-6.848 8.506-8.598 13.76l-12.19 36.51L284.5 182.3C272.4 173.5 259 166.5 244.4 163.1C211 155.4 177.4 162.3 154.5 185.1C145.3 194.5 138.3 206 134.3 218.6C128.3 237.1 111.1 251.3 92.14 253C68.52 255.4 46.39 264.5 29.52 281.5c-45.62 45.5-37.38 127.5 18.12 183c55.37 55.38 137.4 63.51 182.9 18c16.1-16.88 26.25-38.85 28.5-62.72c1.75-18.75 15.84-36.16 34.47-42.16c12.5-3.875 24.03-10.87 33.4-20.25c22.87-22.88 29.75-56.38 21.1-89.76c-3.375-14.63-10.39-27.99-19.14-40.11l76.25-76.26l36.53-12.17c5.125-1.75 9.894-4.715 13.77-8.59l46.36-46.29C515.2 71.72 515.2 51.52 502.7 39.02zM208 352c-26.5 0-48-21.5-48-48c0-26.5 21.5-48 48-48s47.1 21.5 47.1 48C256 330.5 234.5 352 208 352z',
			),
		),
		'label'             => __( 'Guitar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'gulp'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M209.8 391.1l-14.1 24.6-4.6 80.2c0 8.9-28.3 16.1-63.1 16.1s-63.1-7.2-63.1-16.1l-5.8-79.4-14.9-25.4c41.2 17.3 126 16.7 165.6 0zm-196-253.3l13.6 125.5c5.9-20 20.8-47 40-55.2 6.3-2.7 12.7-2.7 18.7 .9 5.2 3 9.6 9.3 10.1 11.8 1.2 6.5-2 9.1-4.5 9.1-3 0-5.3-4.6-6.8-7.3-4.1-7.3-10.3-7.6-16.9-2.8-6.9 5-12.9 13.4-17.1 20.7-5.1 8.8-9.4 18.5-12 28.2-1.5 5.6-2.9 14.6-.6 19.9 1 2.2 2.5 3.6 4.9 3.6 5 0 12.3-6.6 15.8-10.1 4.5-4.5 10.3-11.5 12.5-16l5.2-15.5c2.6-6.8 9.9-5.6 9.9 0 0 10.2-3.7 13.6-10 34.7-5.8 19.5-7.6 25.8-7.6 25.8-.7 2.8-3.4 7.5-6.3 7.5-1.2 0-2.1-.4-2.6-1.2-1-1.4-.9-5.3-.8-6.3 .2-3.2 6.3-22.2 7.3-25.2-2 2.2-4.1 4.4-6.4 6.6-5.4 5.1-14.1 11.8-21.5 11.8-3.4 0-5.6-.9-7.7-2.4l7.6 79.6c2 5 39.2 17.1 88.2 17.1 49.1 0 86.3-12.2 88.2-17.1l10.9-94.6c-5.7 5.2-12.3 11.6-19.6 14.8-5.4 2.3-17.4 3.8-17.4-5.7 0-5.2 9.1-14.8 14.4-21.5 1.4-1.7 4.7-5.9 4.7-8.1 0-2.9-6-2.2-11.7 2.5-3.2 2.7-6.2 6.3-8.7 9.7-4.3 6-6.6 11.2-8.5 15.5-6.2 14.2-4.1 8.6-9.1 22-5 13.3-4.2 11.8-5.2 14-.9 1.9-2.2 3.5-4 4.5-1.9 1-4.5 .9-6.1-.3-.9-.6-1.3-1.9-1.3-3.7 0-.9 .1-1.8 .3-2.7 1.5-6.1 7.8-18.1 15-34.3 1.6-3.7 1-2.6 .8-2.3-6.2 6-10.9 8.9-14.4 10.5-5.8 2.6-13 2.6-14.5-4.1-.1-.4-.1-.8-.2-1.2-11.8 9.2-24.3 11.7-20-8.1-4.6 8.2-12.6 14.9-22.4 14.9-4.1 0-7.1-1.4-8.6-5.1-2.3-5.5 1.3-14.9 4.6-23.8 1.7-4.5 4-9.9 7.1-16.2 1.6-3.4 4.2-5.4 7.6-4.5 .6 .2 1.1 .4 1.6 .7 2.6 1.8 1.6 4.5 .3 7.2-3.8 7.5-7.1 13-9.3 20.8-.9 3.3-2 9 1.5 9 2.4 0 4.7-.8 6.9-2.4 4.6-3.4 8.3-8.5 11.1-13.5 2-3.6 4.4-8.3 5.6-12.3 .5-1.7 1.1-3.3 1.8-4.8 1.1-2.5 2.6-5.1 5.2-5.1 1.3 0 2.4 .5 3.2 1.5 1.7 2.2 1.3 4.5 .4 6.9-2 5.6-4.7 10.6-6.9 16.7-1.3 3.5-2.7 8-2.7 11.7 0 3.4 3.7 2.6 6.8 1.2 2.4-1.1 4.8-2.8 6.8-4.5 1.2-4.9 .9-3.8 26.4-68.2 1.3-3.3 3.7-4.7 6.1-4.7 1.2 0 2.2 .4 3.2 1.1 1.7 1.3 1.7 4.1 1 6.2-.7 1.9-.6 1.3-4.5 10.5-5.2 12.1-8.6 20.8-13.2 31.9-1.9 4.6-7.7 18.9-8.7 22.3-.6 2.2-1.3 5.8 1 5.8 5.4 0 19.3-13.1 23.1-17 .2-.3 .5-.4 .9-.6 .6-1.9 1.2-3.7 1.7-5.5 1.4-3.8 2.7-8.2 5.3-11.3 .8-1 1.7-1.6 2.7-1.6 2.8 0 4.2 1.2 4.2 4 0 1.1-.7 5.1-1.1 6.2 1.4-1.5 2.9-3 4.5-4.5 15-13.9 25.7-6.8 25.7 .2 0 7.4-8.9 17.7-13.8 23.4-1.6 1.9-4.9 5.4-5 6.4 0 1.3 .9 1.8 2.2 1.8 2 0 6.4-3.5 8-4.7 5-3.9 11.8-9.9 16.6-14.1l14.8-136.8c-30.5 17.1-197.6 17.2-228.3 .2zm229.7-8.5c0 21-231.2 21-231.2 0 0-8.8 51.8-15.9 115.6-15.9 9 0 17.8 .1 26.3 .4l12.6-48.7L228.1 .6c1.4-1.4 5.8-.2 9.9 3.5s6.6 7.9 5.3 9.3l-.1 .1L185.9 74l-10 40.7c39.9 2.6 67.6 8.1 67.6 14.6zm-69.4 4.6c0-.8-.9-1.5-2.5-2.1l-.2 .8c0 1.3-5 2.4-11.1 2.4s-11.1-1.1-11.1-2.4c0-.1 0-.2 .1-.3l.2-.7c-1.8 .6-3 1.4-3 2.3 0 2.1 6.2 3.7 13.7 3.7 7.7 .1 13.9-1.6 13.9-3.7z',
			),
		),
		'label'             => __( 'Gulp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'gun'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 64h-16V56C528 42.74 517.3 32 504 32S480 42.74 480 56V64H43.17C19.33 64 0 83.33 0 107.2v89.66C0 220.7 19.33 240 43.17 240c21.26 0 36.61 20.35 30.77 40.79l-40.69 158.4C27.41 459.6 42.76 480 64.02 480h103.8c14.29 0 26.84-9.469 30.77-23.21L226.4 352h94.58c24.16 0 45.5-15.41 53.13-38.28L398.6 240h36.1c8.486 0 16.62-3.369 22.63-9.373L480 208h64c17.67 0 32-14.33 32-32V96C576 78.33 561.7 64 544 64zM328.5 298.6C327.4 301.8 324.4 304 320.9 304H239.1L256 240h92.02L328.5 298.6zM480 160H64V128h416V160z',
			),
		),
		'label'             => __( 'Gun', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'h'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 64.01v384c0 17.67-14.33 32-32 32s-32-14.33-32-32v-192H64v192c0 17.67-14.33 32-32 32s-32-14.33-32-32v-384C0 46.34 14.33 32.01 32 32.01S64 46.34 64 64.01v128h256v-128c0-17.67 14.33-32 32-32S384 46.34 384 64.01z',
			),
		),
		'label'             => __( 'H', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'hacker-news'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32H0zm21.2 197.2H21c.1-.1 .2-.3 .3-.4 0 .1 0 .3-.1 .4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z',
			),
		),
		'label'             => __( 'Hacker News', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hacker-news-square'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.2 229.2H21c.1-.1 .2-.3 .3-.4 0 .1 0 .3-.1 .4zm218 53.9V384h-31.4V281.3L128 128h37.3c52.5 98.3 49.2 101.2 59.3 125.6 12.3-27 5.8-24.4 60.6-125.6H320l-80.8 155.1z',
			),
		),
		'label'             => __( 'Hacker News Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hackerrank'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M477.5 128C463 103.1 285.1 0 256.2 0S49.25 102.8 34.84 128s-14.49 230.8 0 256 192.4 128 221.3 128S463 409.1 477.5 384s14.51-231 .01-256zM316.1 414.2c-4 0-40.91-35.77-38-38.69 .87-.87 6.26-1.48 17.55-1.83 0-26.23 .59-68.59 .94-86.32 0-2-.44-3.43-.44-5.85h-79.93c0 7.1-.46 36.2 1.37 72.88 .23 4.54-1.58 6-5.74 5.94-10.13 0-20.27-.11-30.41-.08-4.1 0-5.87-1.53-5.74-6.11 .92-33.44 3-84-.15-212.7v-3.17c-9.67-.35-16.38-1-17.26-1.84-2.92-2.92 34.54-38.69 38.49-38.69s41.17 35.78 38.27 38.69c-.87 .87-7.9 1.49-16.77 1.84v3.16c-2.42 25.75-2 79.59-2.63 105.4h80.26c0-4.55 .39-34.74-1.2-83.64-.1-3.39 .95-5.17 4.21-5.2 11.07-.08 22.15-.13 33.23-.06 3.46 0 4.57 1.72 4.5 5.38C333 354.6 336 341.3 336 373.7c8.87 .35 16.82 1 17.69 1.84 2.88 2.91-33.62 38.69-37.58 38.69z',
			),
		),
		'label'             => __( 'Hackerrank', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hammer'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.1 196.3l-22.62-22.62c-4.533-4.533-10.56-7.029-16.97-7.029s-12.44 2.496-16.97 7.029l-5.654 5.656l-20.12-20.12c4.596-23.46-2.652-47.9-19.47-64.73l-45.25-45.25C390.2 17.47 347.1 0 303.1 0C258.2 0 216 17.47 184.3 49.21L176.5 57.05L272.5 105.1v13.81c0 18.95 7.688 37.5 21.09 50.91l49.16 49.14c13.44 13.45 31.39 20.86 50.54 20.86c4.758 0 9.512-.4648 14.18-1.387l20.12 20.12l-5.654 5.654c-9.357 9.357-9.357 24.58-.002 33.94l22.62 22.62c4.535 4.533 10.56 7.031 16.97 7.031s12.44-2.498 16.97-7.031l90.53-90.5C578.3 220.8 578.3 205.6 568.1 196.3zM270.9 192.4c-3.846-3.846-7.197-8.113-10.37-12.49l-239.5 209.2c-28.12 28.12-28.16 73.72-.0371 101.8C35.12 505 53.56 512 71.1 512s36.84-7.031 50.91-21.09l209.1-239.4c-4.141-3.061-8.184-6.289-11.89-9.996L270.9 192.4z',
			),
		),
		'label'             => __( 'Hammer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'hamsa'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M509.4 307.2C504.3 295.5 492.8 288 480 288h-64l.0001-208c0-21.1-18-40-40-40c-22 0-40 18-40 40l-.0001 134C336 219.5 331.5 224 326 224h-20c-5.5 0-10-4.5-10-9.1V40c0-21.1-17.1-40-39.1-40S215.1 18 215.1 40v174C215.1 219.5 211.5 224 205.1 224H185.1C180.5 224 175.1 219.5 175.1 214L175.1 80c0-21.1-18-40-40-40S95.1 58 95.1 80L95.1 288H31.99C19.24 288 7.743 295.5 2.618 307.2C-2.382 318.9-.1322 332.5 8.618 341.9l102.6 110C146.1 490.1 199.8 512 256 512s108.1-21.88 144.8-60.13l102.6-110C512.1 332.5 514.4 318.9 509.4 307.2zM256 416c-53 0-96.01-64-96.01-64s43-64 96.01-64s96.01 64 96.01 64S309 416 256 416zM256 320c-17.63 0-32 14.38-32 32s14.38 32 32 32s32-14.38 32-32S273.6 320 256 320z',
			),
		),
		'label'             => __( 'Hamsa', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand'                                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 128v208c0 97.05-78.95 176-176 176h-37.72c-53.42 0-103.7-20.8-141.4-58.58l-113.1-113.1C3.906 332.5 0 322.2 0 312C0 290.7 17.15 272 40 272c10.23 0 20.47 3.906 28.28 11.72L128 343.4V64c0-17.67 14.33-32 32-32s32 14.33 32 32l.0729 176C192.1 248.8 199.2 256 208 256s16.07-7.164 16.07-16L224 32c0-17.67 14.33-32 32-32s32 14.33 32 32l.0484 208c0 8.836 7.111 16 15.95 16S320 248.8 320 240L320 64c0-17.67 14.33-32 32-32s32 14.33 32 32l.0729 176c0 8.836 7.091 16 15.93 16S416 248.8 416 240V128c0-17.67 14.33-32 32-32S480 110.3 480 128z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M408 80c-3.994 0-7.91 .3262-11.73 .9551c-9.586-28.51-36.57-49.11-68.27-49.11c-6.457 0-12.72 .8555-18.68 2.457C296.6 13.73 273.9 0 248 0C222.1 0 199.3 13.79 186.6 34.44C180.7 32.85 174.5 32 168.1 32C128.4 32 96.01 64.3 96.01 104v121.6C90.77 224.6 85.41 224 80.01 224c-.0026 0 .0026 0 0 0C36.43 224 0 259.2 0 304.1c0 20.29 7.558 39.52 21.46 54.45l81.25 87.24C141.9 487.9 197.4 512 254.9 512h33.08C393.9 512 480 425.9 480 320V152C480 112.3 447.7 80 408 80zM432 320c0 79.41-64.59 144-143.1 144H254.9c-44.41 0-86.83-18.46-117.1-50.96l-79.76-85.63c-6.202-6.659-9.406-15.4-9.406-23.1c0-22.16 18.53-31.4 31.35-31.4c8.56 0 17.1 3.416 23.42 10.18l26.72 28.69C131.8 312.7 133.9 313.4 135.9 313.4c4.106 0 8.064-3.172 8.064-8.016V104c0-13.25 10.75-24 23.1-24c13.25 0 23.1 10.75 23.1 24v152C192 264.8 199.2 272 208 272s15.1-7.163 15.1-15.1L224 72c0-13.25 10.75-24 23.1-24c13.25 0 23.1 10.75 23.1 24v184C272 264.8 279.2 272 288 272s15.99-7.164 15.99-15.1l.0077-152.2c0-13.25 10.75-24 23.1-24c13.25 0 23.1 10.75 23.1 24v152.2C352 264.8 359.2 272 368 272s15.1-7.163 15.1-15.1V152c0-13.25 10.75-24 23.1-24c13.25 0 23.1 10.75 23.1 24V320z',
			),
		),
		'label'             => __( 'Hand', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'hand-back-fist'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 144v120.4C448 314.2 422.6 358.1 384 384v128H128v-128l-53.19-38.67C48 325.8 32 294.3 32 261.2V192c0-14.58 6.625-28.38 17.1-37.48L80 130.5V176C80 184.8 87.16 192 96 192s16-7.164 16-16v-128C112 21.48 133.5 0 160 0c25.38 0 45.96 19.77 47.67 44.73C216.2 36.9 227.5 32 240 32C266.5 32 288 53.48 288 80v5.531C296.6 72.57 311.3 64 328 64c23.47 0 42.94 16.87 47.11 39.14C382.4 98.7 390.9 96 400 96C426.5 96 448 117.5 448 144z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M377.1 68.05C364.4 50.65 343.7 40 321.2 40h-13.53c-3.518 0-7.039 .2754-10.53 .8184C284.8 31.33 269.6 26 253.5 26H240c-3.977 0-7.904 .3691-11.75 1.084C216.7 10.71 197.6 0 176 0H160C124.7 0 96 28.65 96 64v49.71L63.04 143.3C43.3 160 32 184.6 32 210.9v78.97c0 32.1 17.11 61.65 44.65 77.12L112 386.9v101.1C112 501.3 122.7 512 135.1 512S160 501.3 160 488v-129.9c-1.316-.6543-2.775-.9199-4.062-1.639l-55.78-31.34C87.72 318.2 80 304.6 80 289.9V210.9c0-12.31 5.281-23.77 14.5-31.39L112 163.8V208C112 216.8 119.2 224 128 224s16-7.156 16-16V64c0-8.828 7.188-16 16-16h16C184.8 48 192 55.17 192 64v16c0 9.578 7.942 16.04 16.15 16.04c6.432 0 12.31-4.018 14.73-10.17C223.3 84.84 228.3 74 240 74h13.53c20.97 0 17.92 19.58 34.27 19.58c8.177 0 9.9-5.584 19.88-5.584h13.53c25.54 0 18.27 28.23 38.66 28.23c.1562 0 .3125-.002 .4668-.0078L375.4 116C388.1 116 400 127.7 400 142V272c0 36.15-19.54 67.32-48 83.69v132.3C352 501.3 362.7 512 375.1 512S400 501.3 400 488v-108.1C430.1 352.8 448 313.6 448 272V142C448 102.1 416.8 69.44 377.1 68.05z',
			),
		),
		'label'             => __( 'Hand Back Fist', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-dots'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 96c-17.67 0-32 14.33-32 32v112C416 248.8 408.8 256 400 256s-15.93-7.164-15.93-16L384 64c0-17.67-14.33-32-32-32s-32 14.33-32 32l.0498 176c0 8.836-7.219 16-16.06 16s-15.95-7.164-15.95-16L288 32c0-17.67-14.33-32-32-32S224 14.33 224 32l.0729 208C224.1 248.8 216.8 256 208 256S192.1 248.8 192.1 240L192 64c0-17.67-14.33-32-32-32S128 46.33 128 64v279.4L68.28 283.7C60.47 275.9 50.23 272 40 272C18.68 272 0 289.2 0 312c0 10.23 3.906 20.47 11.72 28.28l113.1 113.1C162.6 491.2 212.9 512 266.3 512H304c97.05 0 176-78.95 176-176V128C480 110.3 465.7 96 448 96zM192 416c-8.836 0-16-7.164-16-16C176 391.2 183.2 384 192 384s16 7.162 16 16C208 408.8 200.8 416 192 416zM256 448c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C272 440.8 264.8 448 256 448zM256 352c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C272 344.8 264.8 352 256 352zM320 384c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C336 376.8 328.8 384 320 384zM352 448c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C368 440.8 360.8 448 352 448zM384 352c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C400 344.8 392.8 352 384 352z',
			),
		),
		'label'             => __( 'Hand Dots', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'hand-fist'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 180.4V32c0-17.67-14.31-32-32-32S160 14.33 160 32v144h40C208.5 176 216.5 177.7 224 180.4zM128 176V64c0-17.67-14.31-32-32-32S64 46.33 64 64v112.8C66.66 176.5 69.26 176 72 176H128zM288 192c17.69 0 32-14.33 32-32V64c0-17.67-14.31-32-32-32s-32 14.33-32 32v96C256 177.7 270.3 192 288 192zM384 96c-17.69 0-32 14.33-32 32v64c0 17.67 14.31 32 32 32s32-14.34 32-32.02V128C416 110.3 401.7 96 384 96zM350.9 246.2c-12.43-7.648-21.94-19.31-26.88-33.25C313.7 219.9 301.3 223.9 288 223.9c-7.641 0-14.87-1.502-21.66-3.957C269.1 228.6 272 238.1 272 248c0 39.77-32.25 72-72 72H128c-8.836 0-16-7.164-16-16C112 295.2 119.2 288 128 288h72c22.09 0 40-17.91 40-40S222.1 208 200 208h-128C49.91 208 32 225.9 32 248v63.41c0 33.13 16 64.56 42.81 84.13L128 434.2V512h224v-85.09c38.3-24.09 64-66.42 64-114.9V247.1C406.6 252.6 395.7 256 384 256C371.7 256 360.5 252.2 350.9 246.2z',
			),
		),
		'label'             => __( 'Hand Fist', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'hand-holding'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M559.7 392.2l-135.1 99.51C406.9 504.8 385 512 362.1 512H15.1c-8.749 0-15.1-7.246-15.1-15.99l0-95.99c0-8.748 7.25-16.02 15.1-16.02l55.37 .0238l46.5-37.74c20.1-16.1 47.12-26.25 74.12-26.25h159.1c19.5 0 34.87 17.37 31.62 37.37c-2.625 15.75-17.37 26.62-33.37 26.62H271.1c-8.749 0-15.1 7.249-15.1 15.1s7.25 15.1 15.1 15.1h120.6l119.7-88.17c17.8-13.19 42.81-9.342 55.93 8.467C581.3 354.1 577.5 379.1 559.7 392.2z',
			),
		),
		'label'             => __( 'Hand Holding', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-holding-dollar'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.2 336.3c-13.12-17.81-38.14-21.66-55.93-8.469l-119.7 88.17h-120.6c-8.748 0-15.1-7.25-15.1-15.99c0-8.75 7.25-16 15.1-16h78.25c15.1 0 30.75-10.88 33.37-26.62c3.25-20-12.12-37.38-31.62-37.38H191.1c-26.1 0-53.12 9.25-74.12 26.25l-46.5 37.74L15.1 383.1C7.251 383.1 0 391.3 0 400v95.98C0 504.8 7.251 512 15.1 512h346.1c22.03 0 43.92-7.188 61.7-20.27l135.1-99.52C577.5 379.1 581.3 354.1 568.2 336.3zM279.3 175C271.7 173.9 261.7 170.3 252.9 167.1L248 165.4C235.5 160.1 221.8 167.5 217.4 179.1s2.121 26.2 14.59 30.64l4.655 1.656c8.486 3.061 17.88 6.095 27.39 8.312V232c0 13.25 10.73 24 23.98 24s24-10.75 24-24V221.6c25.27-5.723 42.88-21.85 46.1-45.72c8.688-50.05-38.89-63.66-64.42-70.95L288.4 103.1C262.1 95.64 263.6 92.42 264.3 88.31c1.156-6.766 15.3-10.06 32.21-7.391c4.938 .7813 11.37 2.547 19.65 5.422c12.53 4.281 26.21-2.312 30.52-14.84s-2.309-26.19-14.84-30.53c-7.602-2.627-13.92-4.358-19.82-5.721V24c0-13.25-10.75-24-24-24s-23.98 10.75-23.98 24v10.52C238.8 40.23 221.1 56.25 216.1 80.13C208.4 129.6 256.7 143.8 274.9 149.2l6.498 1.875c31.66 9.062 31.15 11.89 30.34 16.64C310.6 174.5 296.5 177.8 279.3 175z',
			),
		),
		'label'             => __( 'Hand Holding Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'hand-holding-droplet'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M287.1 256c53 0 95.1-42.13 95.1-93.1c0-40-57.12-120.8-83.25-155.6c-6.375-8.5-19.12-8.5-25.5 0C249.1 41.25 191.1 122 191.1 162C191.1 213.9 234.1 256 287.1 256zM568.2 336.3c-13.12-17.81-38.14-21.66-55.93-8.469l-119.7 88.17h-120.6c-8.748 0-15.1-7.25-15.1-15.99c0-8.75 7.25-16 15.1-16h78.25c15.1 0 30.75-10.88 33.37-26.62c3.25-20-12.12-37.38-31.62-37.38H191.1c-26.1 0-53.12 9.25-74.12 26.25l-46.5 37.74L15.1 383.1c-8.748 0-15.1 7.274-15.1 16.02L.0001 496C.0001 504.8 7.251 512 15.1 512h346.1c22.03 0 43.92-7.188 61.7-20.27l135.1-99.52C577.5 379.1 581.3 354.1 568.2 336.3z',
			),
		),
		'label'             => __( 'Hand Holding Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'hand-holding-hand'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M328.7 52.28L431.7 119.8C449.5 132.9 453.3 157.9 440.2 175.7C427.1 193.5 402.1 197.3 384.3 184.2L296.6 127.1H191.1C183.2 127.1 175.1 135.2 175.1 143.1C175.1 152.7 183.2 159.1 191.1 159.1H254.2C270.2 159.1 284.1 170.9 287.6 186.6C290.8 206.6 275.5 223.1 255.1 223.1H143.1C116.1 223.1 90.87 214.7 69.87 197.7L23.37 159.1L15.1 160C7.25 160 0 152.7 0 143.1V47.99C0 39.25 7.25 32 15.1 32H266.1C289 32 310.9 39.19 328.7 52.28L328.7 52.28zM151.3 459.7L16.27 360.2C-1.509 347.1-5.305 322.1 7.803 304.3C20.93 286.5 45.94 282.7 63.74 295.8L183.4 384H304C312.8 384 320 376.8 320 368C320 359.3 312.8 352 304 352H225.8C209.8 352 195 341.1 192.4 325.4C189.2 305.4 204.5 288 224 288H352C379 288 405.1 297.3 426.1 314.3L472.6 352L496 352C504.7 352 512 359.3 512 368V464C512 472.8 504.7 480 496 480H213C190.1 480 169.1 472.8 151.3 459.7V459.7z',
			),
		),
		'label'             => __( 'Hand Holding Hand', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'hand-holding-heart'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M275.2 250.5c7 7.375 18.5 7.375 25.5 0l108.1-114.2c31.5-33.12 29.72-88.1-5.65-118.7c-30.88-26.75-76.75-21.9-104.9 7.724L287.1 36.91L276.8 25.28C248.7-4.345 202.7-9.194 171.1 17.56C136.7 48.18 134.7 103.2 166.4 136.3L275.2 250.5zM568.2 336.3c-13.12-17.81-38.14-21.66-55.93-8.469l-119.7 88.17h-120.6c-8.748 0-15.1-7.25-15.1-15.1c0-8.746 7.25-15.1 15.1-15.1h78.25c15.1 0 30.75-10.87 33.37-26.62c3.25-19.1-12.12-37.37-31.62-37.37H191.1c-26.1 0-53.12 9.25-74.12 26.25l-46.5 37.74l-55.37-.0253c-8.748 0-15.1 7.275-15.1 16.02L.0001 496C.0001 504.8 7.251 512 15.1 512h346.1c22.03 0 43.92-7.187 61.7-20.28l135.1-99.51C577.5 379.1 581.3 354.1 568.2 336.3z',
			),
		),
		'label'             => __( 'Hand Holding Heart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'hand-holding-medical'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.2 336.3c-13.12-17.81-38.14-21.66-55.93-8.469l-119.7 88.17h-120.6c-8.748 0-15.1-7.25-15.1-15.99c0-8.75 7.25-16 15.1-16h78.25c15.1 0 30.75-10.88 33.37-26.62c3.25-20-12.12-37.38-31.62-37.38H191.1c-26.1 0-53.12 9.25-74.12 26.25l-46.5 37.74L15.1 383.1C7.251 383.1 0 391.3 0 400v95.98C0 504.8 7.251 512 15.1 512h346.1c22.03 0 43.92-7.188 61.7-20.27l135.1-99.52C577.5 379.1 581.3 354.1 568.2 336.3zM160 176h64v64C224 248.8 231.2 256 240 256h64C312.8 256 320 248.8 320 240v-64h64c8.836 0 16-7.164 16-16V96c0-8.838-7.164-16-16-16h-64v-64C320 7.162 312.8 0 304 0h-64C231.2 0 224 7.162 224 16v64H160C151.2 80 144 87.16 144 96v64C144 168.8 151.2 176 160 176z',
			),
		),
		'label'             => __( 'Hand Holding Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'hand-lizard'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 329.1V432c0 8.836-7.164 16-16 16H368c-8.836 0-16-7.164-16-16V416l-85.33-64H95.1c-16.47 0-31.44-13.44-31.96-29.9C62.87 285.8 91.96 256 127.1 256h104.9c13.77 0 26-8.811 30.36-21.88l10.67-32C280.9 181.4 265.4 160 243.6 160H63.1C27.95 160-1.129 130.2 .0352 93.9C.5625 77.44 15.53 64 31.1 64h271.2c26.26 0 50.84 12.88 65.79 34.47l128.8 185.1C507 297.8 512 313.7 512 329.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 331.8V424c0 13.25-10.75 24-24 24c-13.25 0-24-10.75-24-24v-92.17c0-10.09-3.031-19.8-8.766-28.08l-118.6-170.5C327.4 119.1 312.2 112 295.1 112H53.32c-2.5 0-5.25 2.453-5.313 4.172c-.2969 9.5 3.156 18.47 9.75 25.28C64.36 148.3 73.2 152 82.67 152h161.8c17.09 0 33.4 8.281 43.4 22.14c9.984 13.88 12.73 31.83 7.328 48.05l-9.781 29.34C278.2 273.3 257.8 288 234.9 288H138.7C129.2 288 120.4 291.8 113.8 298.5c-6.594 6.812-10.05 15.78-9.75 25.28C104.1 325.5 106.8 328 109.3 328h156.6c5.188 0 10.14 1.688 14.3 4.797l78.22 58.67c6.031 4.531 9.594 11.66 9.594 19.2L367.1 424c0 13.25-10.75 24-24 24s-24-10.75-24-24v-1.328L257.8 376H109.3c-28.48 0-52.39-22.72-53.28-50.64c-.7187-22.61 7.531-43.98 23.23-60.2C94.1 248.9 116.1 240 138.7 240h96.19c2.297 0 4.328-1.469 5.063-3.656l9.781-29.33c.7031-2.141-.0156-3.797-.7344-4.797C248.2 201.2 246.9 200 244.6 200H82.67c-22.58 0-43.67-8.938-59.39-25.16C7.575 158.6-.6755 137.3 .0433 114.6C.9339 86.72 24.84 64 53.32 64h242.7c31.94 0 61.86 15.67 80.05 41.92l118.6 170.5C506 292.8 512 311.9 512 331.8z',
			),
		),
		'label'             => __( 'Hand Lizard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-middle-finger'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 288v96c0 70.69-57.31 128-128 128H184c-50.35 0-97.76-23.7-127.1-63.98l-14.43-19.23C35.37 420.5 32 410.4 32 400v-48.02c0-14.58 6.629-28.37 18.02-37.48L80 290.5V336C80 344.8 87.16 352 96 352s16-7.164 16-16v-96C112 213.5 133.5 192 160 192s48 21.48 48 48V40C208 17.91 225.9 0 248 0S288 17.91 288 40v189.5C296.6 216.6 311.3 208 328 208c23.48 0 42.94 16.87 47.11 39.14C382.4 242.7 390.8 240 400 240C426.5 240 448 261.5 448 288z',
			),
		),
		'label'             => __( 'Hand Middle Finger', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-peace'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 287.4V32c0-17.67-14.31-32-32-32S192 14.33 192 32v216.3C218.7 248.4 243.7 263.1 256 287.4zM170.8 251.2c2.514-.7734 5.043-1.027 7.57-1.516L93.41 51.39C88.21 39.25 76.34 31.97 63.97 31.97c-20.97 0-31.97 18.01-31.97 32.04c0 4.207 .8349 8.483 2.599 12.6l81.97 191.3L170.8 251.2zM416 224c-17.69 0-32 14.33-32 32v64c0 17.67 14.31 32 32 32s32-14.33 32-32V256C448 238.3 433.7 224 416 224zM320 352c17.69 0 32-14.33 32-32V224c0-17.67-14.31-32-32-32s-32 14.33-32 32v96C288 337.7 302.3 352 320 352zM368 361.9C356.3 375.3 339.2 384 320 384c-27.41 0-50.62-17.32-59.73-41.55c-7.059 21.41-23.9 39.23-47.08 46.36l-47.96 14.76c-1.562 .4807-3.147 .7105-4.707 .7105c-6.282 0-12.18-3.723-14.74-9.785c-.8595-2.038-1.264-4.145-1.264-6.213c0-6.79 4.361-13.16 11.3-15.3l46.45-14.29c17.2-5.293 29.76-20.98 29.76-38.63c0-34.19-32.54-40.07-40.02-40.07c-3.89 0-7.848 .5712-11.76 1.772l-104 32c-18.23 5.606-28.25 22.21-28.25 38.22c0 4.266 .6825 8.544 2.058 12.67L68.19 419C86.71 474.5 138.7 512 197.2 512H272c82.54 0 151.8-57.21 170.7-134C434.6 381.8 425.6 384 416 384C396.8 384 379.7 375.3 368 361.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M412 160c-8.326 0-16.3 1.51-23.68 4.27C375.1 151.8 358.9 144 340 144c-11.64 0-22.44 3.223-32.03 8.418l11.12-68.95c.6228-3.874 .9243-7.725 .9243-11.53c0-36.08-28.91-71.95-72.09-71.95c-34.68 0-65.31 25.16-71.03 60.54L173.4 82.22L168.9 72.77c-12.4-25.75-38.07-40.78-64.89-40.78c-40.8 0-72.01 33.28-72.01 72.07c0 10.48 2.296 21.11 7.144 31.18L89.05 238.9C64.64 250.4 48 275.7 48 303.1v80c0 22.06 10.4 43.32 27.83 56.86l45.95 35.74c29.35 22.83 65.98 35.41 103.2 35.41l78.81 .0352C400.9 512 480 432.1 480 335.8v-107.5C480 189.6 447.9 160 412 160zM320 212.3C320 201.1 328.1 192 340 192c11.02 0 20 9.078 20 20.25v55.5C360 278.9 351 288 340 288C328.1 288 320 278.9 320 267.8V212.3zM247.9 47.98c12.05 0 24.13 9.511 24.13 23.98c0 1.277-.1022 2.57-.3134 3.871L248.4 220.5C240.7 217.6 232.4 215.1 223.9 215.1c0 0 .002 0 0 0c-4.475 0-8.967 .4199-13.38 1.254l-10.55 1.627l24.32-150.7C226.2 56.42 236.4 47.98 247.9 47.98zM79.1 104c0-13.27 10.79-24.04 24.02-24.04c8.937 0 17.5 5.023 21.61 13.61l61.29 127.3L137.3 228.5L82.38 114.4C80.76 111.1 79.1 107.5 79.1 104zM303.8 464l-78.81-.0352c-26.56 0-52.72-8.984-73.69-25.3l-45.97-35.75C99.47 398.4 96 391.3 96 383.1v-80c0-11.23 7.969-21.11 17.59-23.22l105.3-16.23C220.6 264.2 222.3 263.1 223.9 263.1c11.91 0 24.09 9.521 24.09 24.06c0 11.04-7.513 20.95-17.17 23.09L172.8 319c-12.03 1.633-20.78 11.92-20.78 23.75c0 20.21 18.82 24.08 23.7 24.08c2.645 0 64.61-8.619 65.54-8.826c23.55-5.227 41.51-22.23 49.73-43.64C303.3 327.5 320.6 336 340 336c8.326 0 16.31-1.51 23.69-4.27C376 344.2 393.1 352 412 352c.1992 0 10.08-.4453 18.65-2.92C423.9 413.5 369.9 464 303.8 464zM432 283.8C432 294.9 423 304 412 304c-11.02 0-20-9.078-20-20.25v-55.5C392 217.1 400.1 208 412 208c11.02 0 20 9.078 20 20.25V283.8z',
			),
		),
		'label'             => __( 'Hand Peace', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-point-down'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 256v64c0 17.67 14.31 32 32 32s32-14.33 32-32V256c0-17.67-14.31-32-32-32S256 238.3 256 256zM200 272H160V352c0 17.67 14.31 32 32 32s32-14.33 32-32V267.6C216.5 270.3 208.5 272 200 272zM72 272C69.26 272 66.66 271.5 64 271.2V480c0 17.67 14.31 32 32 32s32-14.33 32-32V272H72zM416 288V224c0-17.67-14.31-32-32-32s-32 14.33-32 32v64c0 17.67 14.31 32 32 32S416 305.7 416 288zM384 160c11.72 0 22.55 3.381 32 8.879V136C416 60.89 355.1 0 280 0L191.3 0C162.5 0 134.5 9.107 111.2 26.02L74.81 52.47C48 72.03 32 103.5 32 136.6V200C32 222.1 49.91 240 72 240h128c22.09 0 39.1-17.91 39.1-39.1c0-28.73-26.72-40-42.28-40l-69.72 0C119.2 160 112 152.8 112 144S119.2 128 127.1 128H200c37.87 0 68.59 29.35 71.45 66.51C276.8 193.1 282.2 192 288 192c13.28 0 25.6 4.047 35.83 10.97C332.6 178 356.1 160 384 160z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 248V144C448 64.6 385.1 0 307.7 0H199.8C176.4 0 153.1 6.104 132.5 17.65L76.63 49C49.1 64.47 32 94.02 32 126.1V176c0 27.23 12.51 51.53 32 67.69V440C64 479.7 96.3 512 136 512s72-32.3 72-72v-56.44C210.6 383.9 213.3 384 216 384c25.95 0 48.73-13.79 61.4-34.43C283.3 351.2 289.6 352 296 352c25.95 0 48.73-13.79 61.4-34.43C363.3 319.2 369.6 320 376 320C415.7 320 448 287.7 448 248zM272 232c0-13.23 10.78-24 24-24S320 218.9 320 232.1V280c0 13.23-10.78 24-24 24S272 293.2 272 280V232zM192 264h12c12.39 0 23.93-3.264 34.27-8.545C239.3 258.1 240 260.1 240 264v48c0 13.23-10.78 24-24 24S192 325.2 192 312V264zM112 264c0-.2813 .1504-.5137 .1602-.793C114.8 263.4 117.3 264 120 264H160v176c0 13.23-10.78 24-24 24S112 453.2 112 440V264zM397.9 123.8C390.9 121.6 383.7 120 376 120c-29.04 0-53.96 17.37-65.34 42.18C305.8 161.2 301 160 296 160c-7.139 0-13.96 1.273-20.46 3.355C265.2 133.6 237.2 112 204 112H152C138.8 112 128 122.8 128 136S138.8 160 152 160h52c15.44 0 28 12.56 28 28S219.4 216 204 216H120C97.94 216 80 198.1 80 176V126.1c0-14.77 7.719-28.28 20.16-35.27l55.78-31.34C169.4 51.98 184.6 48 199.8 48h107.9C351.9 48 388.9 80.56 397.9 123.8zM400 248c0 13.23-10.78 24-24 24S352 261.2 352 248V192c0-13.23 10.78-24 24-24S400 178.8 400 192V248z',
			),
		),
		'label'             => __( 'Hand Point Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-point-left'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 288H192c-17.67 0-32 14.31-32 32s14.33 32 32 32h64c17.67 0 32-14.31 32-32S273.7 288 256 288zM240 232V192H160C142.3 192 128 206.3 128 224s14.33 32 32 32h84.41C241.7 248.5 240 240.5 240 232zM240 104C240 101.3 240.5 98.66 240.8 96H32C14.33 96 0 110.3 0 128s14.33 32 32 32h208V104zM224 448h64c17.67 0 32-14.31 32-32s-14.33-32-32-32H224c-17.67 0-32 14.31-32 32S206.3 448 224 448zM352 416c0 11.72-3.381 22.55-8.879 32H376C451.1 448 512 387.1 512 312V223.3c0-28.76-9.107-56.79-26.02-80.06l-26.45-36.41C439.1 80 408.5 64 375.4 64H312c-22.09 0-40 17.91-40 40v128c0 22.09 17.91 39.1 39.1 39.1c28.73 0 40-26.72 40-42.28L352 159.1C352 151.2 359.2 144 368 144S384 151.2 384 159.1V232c0 37.87-29.35 68.59-66.51 71.45C318.9 308.8 320 314.2 320 320c0 13.28-4.047 25.6-10.97 35.83C333.1 364.6 352 388.1 352 416z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M264 480h104c79.4 0 144-62.95 144-140.3V231.8c0-23.44-6.104-46.73-17.65-67.35L462.1 108.6C447.5 81.1 417.1 64 385.9 64H336c-27.23 0-51.53 12.51-67.69 32H72C32.3 96 0 128.3 0 168S32.3 240 72 240h56.44C128.1 242.6 128 245.3 128 248c0 25.95 13.79 48.73 34.43 61.4C160.8 315.3 160 321.6 160 328c0 25.95 13.79 48.73 34.43 61.4C192.8 395.3 192 401.6 192 408C192 447.7 224.3 480 264 480zM280 304c13.23 0 24 10.78 24 24S293.1 352 279.9 352H232c-13.23 0-24-10.78-24-24S218.8 304 232 304H280zM248 224v12c0 12.39 3.264 23.93 8.545 34.27C253.9 271.3 251 272 248 272h-48C186.8 272 176 261.2 176 248S186.8 224 200 224H248zM248 144c.2813 0 .5137 .1504 .793 .1602C248.6 146.8 248 149.3 248 152V192h-176C58.77 192 48 181.2 48 168S58.77 144 72 144H248zM388.2 429.9C390.4 422.9 392 415.7 392 408c0-29.04-17.37-53.96-42.18-65.34C350.8 337.8 352 333 352 328c0-7.139-1.273-13.96-3.355-20.46C378.4 297.2 400 269.2 400 236V184C400 170.8 389.3 160 376 160S352 170.8 352 184v52c0 15.44-12.56 28-28 28S296 251.4 296 236V152c0-22.06 17.94-40 40-40h49.88c14.77 0 28.28 7.719 35.27 20.16l31.34 55.78C460 201.4 464 216.6 464 231.8v107.9C464 383.9 431.4 420.9 388.2 429.9zM264 432c-13.23 0-24-10.78-24-24S250.8 384 264 384H320c13.23 0 24 10.78 24 24S333.2 432 320 432H264z',
			),
		),
		'label'             => __( 'Hand Point Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-point-right'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M224 320c0 17.69 14.33 32 32 32h64c17.67 0 32-14.31 32-32s-14.33-32-32-32h-64C238.3 288 224 302.3 224 320zM267.6 256H352c17.67 0 32-14.31 32-32s-14.33-32-32-32h-80v40C272 240.5 270.3 248.5 267.6 256zM272 160H480c17.67 0 32-14.31 32-32s-14.33-32-32-32h-208.8C271.5 98.66 272 101.3 272 104V160zM320 416c0-17.69-14.33-32-32-32H224c-17.67 0-32 14.31-32 32s14.33 32 32 32h64C305.7 448 320 433.7 320 416zM202.1 355.8C196 345.6 192 333.3 192 320c0-5.766 1.08-11.24 2.51-16.55C157.4 300.6 128 269.9 128 232V159.1C128 151.2 135.2 144 143.1 144S160 151.2 159.1 159.1l0 69.72C159.1 245.2 171.3 271.1 200 271.1C222.1 271.1 240 254.1 240 232v-128C240 81.91 222.1 64 200 64H136.6C103.5 64 72.03 80 52.47 106.8L26.02 143.2C9.107 166.5 0 194.5 0 223.3V312C0 387.1 60.89 448 136 448h32.88C163.4 438.6 160 427.7 160 416C160 388.1 178 364.6 202.1 355.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 408c0-6.428-.8457-12.66-2.434-18.6C338.2 376.7 352 353.9 352 328c0-6.428-.8457-12.66-2.434-18.6C370.2 296.7 384 273.9 384 248c0-2.705-.1484-5.373-.4414-8H440C479.7 240 512 207.7 512 168S479.7 96 440 96H243.7C227.5 76.51 203.2 64 176 64H126.1C94.02 64 64.47 81.1 49 108.6L17.65 164.5C6.104 185.1 0 208.4 0 231.8v107.9C0 417.1 64.6 480 144 480h104C287.7 480 320 447.7 320 408zM280 304c13.23 0 24 10.78 24 24S293.2 352 280 352H232.1C218.9 352 208 341.2 208 328S218.8 304 232 304H280zM312 224c13.23 0 24 10.78 24 24S325.2 272 312 272h-48c-3.029 0-5.875-.7012-8.545-1.73C260.7 259.9 264 248.4 264 236V224H312zM440 144c13.23 0 24 10.78 24 24S453.2 192 440 192h-176V152c0-2.686-.5566-5.217-.793-7.84C263.5 144.2 263.7 144 264 144H440zM48 339.7V231.8c0-15.25 3.984-30.41 11.52-43.88l31.34-55.78C97.84 119.7 111.4 112 126.1 112H176c22.06 0 40 17.94 40 40v84c0 15.44-12.56 28-28 28S160 251.4 160 236V184C160 170.8 149.3 160 136 160S112 170.8 112 184v52c0 33.23 21.58 61.25 51.36 71.54C161.3 314 160 320.9 160 328c0 5.041 1.166 9.836 2.178 14.66C137.4 354 120 378.1 120 408c0 7.684 1.557 14.94 3.836 21.87C80.56 420.9 48 383.9 48 339.7zM192 432c-13.23 0-24-10.78-24-24S178.8 384 192 384h56c13.23 0 24 10.78 24 24s-10.77 24-24 24H192z',
			),
		),
		'label'             => __( 'Hand Point Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-point-up'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M288 288c17.69 0 32-14.33 32-32V192c0-17.67-14.31-32-32-32s-32 14.33-32 32v64C256 273.7 270.3 288 288 288zM224 244.4V160c0-17.67-14.31-32-32-32S160 142.3 160 160v80h40C208.5 240 216.5 241.7 224 244.4zM128 240V32c0-17.67-14.31-32-32-32S64 14.33 64 32v208.8C66.66 240.5 69.26 240 72 240H128zM384 192c-17.69 0-32 14.33-32 32v64c0 17.67 14.31 32 32 32s32-14.33 32-32V224C416 206.3 401.7 192 384 192zM323.8 309C313.6 315.1 301.3 320 288 320c-5.766 0-11.24-1.08-16.55-2.51C268.6 354.6 237.9 384 200 384H127.1C119.2 384 112 376.8 112 368S119.2 352 127.1 352l69.72 .0001c15.52 0 42.28-11.29 42.28-40C239.1 289.9 222.1 272 200 272h-128C49.91 272 32 289.9 32 312v63.41c0 33.13 16 64.56 42.81 84.13l36.41 26.45C134.5 502.9 162.5 512 191.3 512H280c75.11 0 136-60.89 136-136v-32.88C406.6 348.6 395.7 352 384 352C356.1 352 332.6 333.1 323.8 309z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M376 192c-6.428 0-12.66 .8457-18.6 2.434C344.7 173.8 321.9 160 296 160c-6.428 0-12.66 .8457-18.6 2.434C264.7 141.8 241.9 128 216 128C213.3 128 210.6 128.1 208 128.4V72C208 32.3 175.7 0 136 0S64 32.3 64 72v196.3C44.51 284.5 32 308.8 32 336v49.88c0 32.1 17.1 61.65 44.63 77.12l55.83 31.35C153.1 505.9 176.4 512 199.8 512h107.9C385.1 512 448 447.4 448 368V264C448 224.3 415.7 192 376 192zM272 232c0-13.23 10.78-24 24-24S320 218.8 320 232v47.91C320 293.1 309.2 304 296 304S272 293.2 272 280V232zM192 200C192 186.8 202.8 176 216 176s24 10.77 24 24v48c0 3.029-.7012 5.875-1.73 8.545C227.9 251.3 216.4 248 204 248H192V200zM112 72c0-13.23 10.78-24 24-24S160 58.77 160 72v176H120c-2.686 0-5.217 .5566-7.84 .793C112.2 248.5 112 248.3 112 248V72zM307.7 464H199.8c-15.25 0-30.41-3.984-43.88-11.52l-55.78-31.34C87.72 414.2 80 400.6 80 385.9V336c0-22.06 17.94-40 40-40h84c15.44 0 28 12.56 28 28S219.4 352 204 352H152C138.8 352 128 362.8 128 376s10.75 24 24 24h52c33.23 0 61.25-21.58 71.54-51.36C282 350.7 288.9 352 296 352c5.041 0 9.836-1.166 14.66-2.178C322 374.6 346.1 392 376 392c7.684 0 14.94-1.557 21.87-3.836C388.9 431.4 351.9 464 307.7 464zM400 320c0 13.23-10.78 24-24 24S352 333.2 352 320V264c0-13.23 10.78-24 24-24s24 10.77 24 24V320z',
			),
		),
		'label'             => __( 'Hand Point Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-pointer'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 224c-9.148 0-17.62 2.697-24.89 7.143C370.9 208.9 351.5 192 328 192c-17.38 0-32.46 9.33-40.89 23.17C282.1 192.9 263.5 176 240 176c-12.35 0-23.49 4.797-32 12.46V40c0-22.09-17.9-40-39.1-40C145.9 0 128 17.91 128 40v322.7L72 288C64.15 277.5 52.13 272 39.97 272c-21.22 0-39.97 17.06-39.97 40.02c0 8.356 2.608 16.78 8.005 23.98l91.22 121.6C124.8 491.7 165.5 512 208 512h96C383.4 512 448 447.4 448 368v-96C448 245.5 426.5 224 400 224zM240 400c0 8.844-7.156 16-16 16s-16-7.156-16-16v-96C208 295.2 215.2 288 224 288s16 7.156 16 16V400zM304 400c0 8.844-7.156 16-16 16s-16-7.156-16-16v-96C272 295.2 279.2 288 288 288s16 7.156 16 16V400zM368 400c0 8.844-7.156 16-16 16s-16-7.156-16-16v-96C336 295.2 343.2 288 352 288s16 7.156 16 16V400z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M208 288C199.2 288 192 295.2 192 304v96C192 408.8 199.2 416 208 416s16-7.164 16-16v-96C224 295.2 216.8 288 208 288zM272 288C263.2 288 256 295.2 256 304v96c0 8.836 7.162 16 15.1 16S288 408.8 288 400l-.0013-96C287.1 295.2 280.8 288 272 288zM376.9 201.2c-13.74-17.12-34.8-27.45-56.92-27.45h-13.72c-3.713 0-7.412 .291-11.07 .8652C282.7 165.1 267.4 160 251.4 160h-11.44V72c0-39.7-32.31-72-72.01-72c-39.7 0-71.98 32.3-71.98 72v168.5C84.85 235.1 75.19 235.4 69.83 235.4c-44.35 0-69.83 37.23-69.83 69.85c0 14.99 4.821 29.51 13.99 41.69l78.14 104.2C120.7 489.3 166.2 512 213.7 512h109.7c6.309 0 12.83-.957 18.14-2.645c28.59-5.447 53.87-19.41 73.17-40.44C436.1 446.3 448 416.2 448 384.2V274.3C448 234.6 416.3 202.3 376.9 201.2zM400 384.2c0 19.62-7.219 38.06-20.44 52.06c-12.53 13.66-29.03 22.67-49.69 26.56C327.4 463.6 325.3 464 323.4 464H213.7c-32.56 0-63.65-15.55-83.18-41.59L52.36 318.2C49.52 314.4 48.02 309.8 48.02 305.2c0-16.32 14.5-21.75 21.72-21.75c4.454 0 12.01 1.55 17.34 8.703l28.12 37.5c3.093 4.105 7.865 6.419 12.8 6.419c11.94 0 16.01-10.7 16.01-16.01V72c0-13.23 10.78-24 23.1-24c13.22 0 24 10.77 24 24v130.7c0 6.938 5.451 16.01 16.03 16.01C219.5 218.7 220.1 208 237.7 208h13.72c21.5 0 18.56 19.21 34.7 19.21c8.063 0 9.805-5.487 20.15-5.487h13.72c26.96 0 17.37 27.43 40.77 27.43l14.07-.0037c13.88 0 25.16 11.28 25.16 25.14V384.2zM336 288C327.2 288 320 295.2 320 304v96c0 8.836 7.164 16 16 16s16-7.164 16-16v-96C352 295.2 344.8 288 336 288z',
			),
		),
		'label'             => __( 'Hand Pointer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-scissors'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 192v111.1C512 383.4 447.4 448 368 448H288c-26.52 0-48-21.48-48-47.99c0-9.152 2.697-17.61 7.139-24.89C224.9 370.1 208 351.5 208 328c0-16.72 8.561-31.4 21.52-39.1H40c-22.09 0-40-17.9-40-39.99s17.91-39.1 40-39.1h229.5L60 142.2C42.93 136.8 31.99 121.1 31.99 104c0-3.973 .5967-8.014 1.851-12.01c5.35-17.07 21.08-28.04 38.06-28.04c4 0 8.071 .6085 12.09 1.889l279.2 87.22C364.8 153.6 366.4 153.8 368 153.8c6.812 0 13.12-4.375 15.27-11.23c.4978-1.588 .7346-3.195 .7346-4.777c0-6.807-4.388-13.12-11.23-15.25l-72.54-22.67l14.29-17.85C323.6 70.67 337.4 64.04 352 64.04h48c10.39 0 20.48 3.359 28.8 9.592l38.41 28.79c25.2 18.91 40.53 47.97 43.55 79.04C511.5 184.9 512 188.4 512 192z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M270.1 480h97.92C447.4 480 512 417.1 512 339.7V231.8c0-23.45-6.106-46.73-17.66-67.33l-31.35-55.85C447.5 81.1 417.1 64 385.9 64h-46.97c-26.63 0-51.56 11.63-68.4 31.93l-15.46 18.71L127.3 68.44C119 65.46 110.5 64.05 102.1 64.05c-30.02 0-58.37 18.06-69.41 47.09C15.06 156.8 46.19 194 76.75 204.9l2.146 .7637L68.79 206.4C30.21 209 0 241.2 0 279.3c0 39.7 33.27 72.09 73.92 72.09c1.745 0 3.501-.0605 5.268-.1833l88.79-6.135v8.141c0 22.11 10.55 43.11 28.05 56.74C197.4 448.8 230.2 480 270.1 480zM269.1 432c-14.34 0-26-11.03-26-24.62c0 0 .0403-14.31 .0403-14.71c0-6.894-4.102-14.2-10.67-16.39c-10.39-3.5-17.38-12.78-17.38-23.06v-13.53c0-16.98 13.7-16.4 13.7-29.89c0-9.083-7.392-15.96-15.96-15.96c-.3646 0-.7311 .0125-1.099 .0377c0 0-138.1 9.505-138.7 9.505c-14.32 0-25.93-11.04-25.93-24.49c0-13.28 10.7-23.74 24.1-24.64l163.2-11.28c2.674-.1882 14.92-2.907 14.92-16.18c0-6.675-4.284-12.58-10.65-14.85L92.84 159.7C85.39 156.1 75.97 149.4 75.97 136.7c0-11.14 9.249-24.66 25.97-24.66c3.043 0 6.141 .5115 9.166 1.59l234.1 85.03c1.801 .6581 3.644 .9701 5.456 .9701c8.96 0 16-7.376 16-15.1c0-6.514-4.068-12.69-10.59-15.04l-64.81-23.47l15.34-18.56C315.2 117.3 326.6 112 338.9 112h46.97c14.77 0 28.28 7.719 35.27 20.16L452.5 188c7.531 13.41 11.52 28.56 11.52 43.81v107.9c0 50.91-43.06 92.31-96 92.31H269.1z',
			),
		),
		'label'             => __( 'Hand Scissors', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-sparkles'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M448 432c0-14.25 8.547-28.14 21.28-34.55l39.56-16.56l15.64-37.52c4.461-9.037 11.45-15.37 19.43-19.23L544 128c0-17.67-14.33-32-32-32s-32 14.33-32 32l-.0156 112c0 8.836-7.148 16-15.98 16s-16.07-7.164-16.07-16L448 64c0-17.67-14.33-32-32-32s-32 14.33-32 32l-.0635 176c0 8.836-7.106 16-15.94 16S351.9 248.8 351.9 240L352 32c0-17.67-14.33-32-32-32S288 14.33 288 32L287.9 240C287.9 248.8 280.8 256 272 256S255.9 248.8 255.9 240L256 64c0-17.67-14.33-32-32-32S192 46.33 192 64v279.4L132.3 283.7C124.5 275.9 114.2 272 104 272C82.68 272 64 289.2 64 312c0 10.23 3.906 20.47 11.72 28.28l113.1 113.1C226.6 491.2 276.9 512 330.3 512H368c42.72 0 81.91-15.32 112.4-40.73l-9.049-3.773C456.6 460.1 448 446.3 448 432zM349.8 371.6L320 383.1l-12.42 29.78C306.1 415 305.4 416 304 416s-2.969-.9941-3.578-2.219L288 383.1l-29.79-12.42C256.1 370.1 256 369.4 256 367.1c0-1.365 .9922-2.967 2.209-3.577L288 352l12.42-29.79C301 320.1 302.6 320 304 320s2.967 .9902 3.578 2.217L320 352l29.79 12.42C351 365 352 366.6 352 367.1C352 369.4 351 370.1 349.8 371.6zM80 224c2.277 0 4.943-1.656 5.959-3.699l20.7-49.63l49.65-20.71c2.027-1.014 3.682-3.696 3.686-5.958C159.1 141.7 158.3 139.1 156.3 138L106.7 117.4L85.96 67.7C84.94 65.65 82.28 64 80 64C77.72 64 75.05 65.65 74.04 67.7L53.34 117.3L3.695 138C1.668 139.1 .0117 141.7 .0078 143.1c.0039 2.262 1.662 4.953 3.688 5.967l49.57 20.67l20.77 49.67C75.05 222.3 77.72 224 80 224zM639.1 432c-.0039-2.275-1.657-4.952-3.687-5.968l-49.57-20.67l-20.77-49.67C564.9 353.7 562.3 352 560 352c-2.281 0-4.959 1.652-5.975 3.695l-20.7 49.63l-49.64 20.71c-2.027 1.016-3.682 3.683-3.686 5.958c.0039 2.262 1.661 4.954 3.686 5.968l49.57 20.67l20.77 49.67C555.1 510.3 557.7 512 560 512c2.277 0 4.933-1.656 5.949-3.699l20.7-49.63l49.65-20.71C638.3 436.9 639.1 434.3 639.1 432z',
			),
		),
		'label'             => __( 'Hand Sparkles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hand-spock'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M543.6 128.6c0-8.999-6.115-32.58-31.68-32.58c-14.1 0-27.02 9.324-30.92 23.56l-34.36 125.1c-1.682 6.16-7.275 10.43-13.66 10.43c-7.981 0-14.16-6.518-14.16-14.13c0-.9844 .1034-1.987 .3197-2.996l35.71-166.6c.5233-2.442 .7779-4.911 .7779-7.362c0-13.89-9.695-32.86-31.7-32.86c-14.79 0-28.12 10.26-31.34 25.29l-37.77 176.2c-2.807 13.1-14.38 22.46-27.77 22.46c-13.04 0-24.4-8.871-27.56-21.52l-52.11-208.5C243.6 11.2 230.5-.0013 215.6-.0013c-26.71 0-31.78 25.71-31.78 31.98c0 2.569 .3112 5.18 .9617 7.786l50.55 202.2c.2326 .9301 .3431 1.856 .3431 2.764c0 6.051-4.911 11.27-11.3 11.27c-4.896 0-9.234-3.154-10.74-7.812L166.9 103.9C162.4 89.1 149.5 80.02 135.5 80.02c-15.68 0-31.63 12.83-31.63 31.97c0 3.273 .5059 6.602 1.57 9.884l69.93 215.7c.2903 .8949 .4239 1.766 .4239 2.598c0 4.521-3.94 7.915-8.119 7.915c-1.928 0-3.906-.7219-5.573-2.388L101.7 285.3c-8.336-8.336-19.63-12.87-30.81-12.87c-23.56 0-39.07 19.69-39.07 39.55c0 10.23 3.906 20.47 11.72 28.28l122.5 122.5C197.6 494.3 240.3 512 284.9 512h50.98c23.5 0 108.4-14.57 132.5-103l73.96-271.2C543.2 134.8 543.6 131.7 543.6 128.6z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M234.9 48.02c10.43 0 20.72 5.834 24.13 19.17l47.33 184.1c2.142 8.456 9.174 12.62 16.21 12.62c7.326 0 14.66-4.505 16.51-13.37l31.72-155.1c2.921-14.09 13.76-20.57 24.67-20.57c13.01 0 26.14 9.19 26.14 25.62c0 2.19-.2333 4.508-.7313 6.951l-28.48 139.2c-.2389 1.156-.3514 2.265-.3514 3.323c0 8.644 7.504 13.9 14.86 13.9c5.869 0 11.65-3.341 13.46-10.98l24.73-104.2c.2347-.9802 4.12-19.76 24.28-19.76c13.21 0 26.64 9.4 26.64 24.79c0 2.168-.2665 4.455-.8378 6.852l-48.06 204.7c-13.59 57.85-65.15 98.74-124.5 98.74l-48.79-.0234c-40.7-.0196-79.86-15.58-109.5-43.51l-75.93-71.55c-5.938-5.584-8.419-11.1-8.419-18.2c0-13.88 12.45-26.69 26.38-26.69c5.756 0 11.76 2.182 17.26 7.376l51.08 48.14c1.682 1.569 3.599 2.249 5.448 2.249c4.192 0 8.04-3.49 8.04-8.001c0-23.76-3.372-47.39-10.12-70.28L142 161.1C141.2 159.1 140.8 156.3 140.8 153.7c0-15.23 13.48-24.82 26.75-24.82c10.11 0 20.1 5.559 23.94 18.42l31.22 105.8c2.231 7.546 8.029 10.8 13.9 10.8c7.752 0 15.64-5.659 15.64-14.57c0-1.339-.1783-2.752-.562-4.23L209.3 80.06C208.7 77.45 208.3 74.97 208.3 72.62C208.3 57.33 221.7 48.02 234.9 48.02zM234.9 0C201.5 0 160.4 25.24 160.4 72.72c0 2.807 .1579 5.632 .4761 8.463C129.9 83.9 92.84 108.9 92.84 153.8c0 7.175 1.038 14.47 3.148 21.68l24.33 81.94C115.8 256.5 111.1 256 106.4 256C65.74 256 32 290.6 32 330.8c0 19.59 8.162 38.58 23.6 53.1l75.89 71.51c38.68 36.45 89.23 56.53 142.3 56.56L322.6 512c82.1 0 152.5-55.83 171.3-135.8l48.06-204.7C543.3 165.7 544 159.7 544 153.9c0-54.55-49.55-72.95-74.59-72.95c-.7689 0-1.534 .0117-2.297 .0352c-10.49-39.43-46.46-54.11-71.62-54.11c-34.1 0-64.45 24.19-71.63 58.83L319.2 108.5l-13.7-53.29C297.1 22.22 268.7 0 234.9 0z',
			),
		),
		'label'             => __( 'Hand Spock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'handcuffs'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M304 32C304 49.67 289.7 64 272 64C254.3 64 240 49.67 240 32C240 14.33 254.3 0 272 0C289.7 0 304 14.33 304 32zM160 80C160 62.33 174.3 48 192 48C209.7 48 224 62.33 224 80C224 97.67 209.7 112 192 112C174.3 112 160 97.67 160 80zM160 128C177.7 128 192 142.3 192 160H200C213.3 160 224 170.7 224 184V200C224 201.7 223.8 203.4 223.5 205.1C280.3 229.6 320 286.2 320 352C320 440.4 248.4 512 160 512C71.63 512 0 440.4 0 352C0 286.2 39.74 229.6 96.54 205.1C96.19 203.4 96 201.7 96 200V184C96 170.7 106.7 160 120 160H128C128 142.3 142.3 128 160 128zM160 448C213 448 256 405 256 352C256 298.1 213 256 160 256C106.1 256 64 298.1 64 352C64 405 106.1 448 160 448zM337.6 278.9C354.5 246.1 382.5 219.8 416.5 205.1C416.2 203.4 416 201.7 416 199.1V183.1C416 170.7 426.7 159.1 440 159.1H448C448 142.3 462.3 127.1 480 127.1C497.7 127.1 512 142.3 512 159.1H520C533.3 159.1 544 170.7 544 183.1V199.1C544 201.7 543.8 203.4 543.5 205.1C600.3 229.6 640 286.2 640 352C640 440.4 568.4 512 480 512C417.1 512 364.2 476.7 337.6 425.1C346.9 402.5 352 377.9 352 352C352 326.1 346.9 301.5 337.6 278.9V278.9zM480 256C426.1 256 384 298.1 384 352C384 405 426.1 448 480 448C533 448 576 405 576 352C576 298.1 533 256 480 256zM336 32C336 14.33 350.3 0 368 0C385.7 0 400 14.33 400 32C400 49.67 385.7 64 368 64C350.3 64 336 49.67 336 32zM416 80C416 62.33 430.3 48 448 48C465.7 48 480 62.33 480 80C480 97.67 465.7 112 448 112C430.3 112 416 97.67 416 80z',
			),
		),
		'label'             => __( 'Handcuffs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'hands'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M330.8 242.3L223.1 209.1C210.3 205.2 197 212.3 193.1 224.9C189.2 237.6 196.3 251 208.9 254.9L256 272H56.9c-11.61 0-22.25 7.844-24.44 19.24C29.51 306.6 41.19 320 56 320h128C188.4 320 192 323.6 192 328S188.4 336 184 336H24.9c-11.61 0-22.25 7.844-24.44 19.24C-2.49 370.6 9.193 384 24 384h160C188.4 384 192 387.6 192 392S188.4 400 184 400H56.9c-11.61 0-22.25 7.844-24.44 19.24C29.51 434.6 41.19 448 56 448h128C188.4 448 192 451.6 192 456S188.4 464 184 464H88.9c-11.61 0-22.25 7.844-24.44 19.24C61.51 498.6 73.19 512 88 512h208c66.28 0 120-53.73 120-120v-32.03C416 306.6 381.1 259.4 330.8 242.3zM197.1 179.5c5.986-2.148 12.32-3.482 18.98-3.482c5.508 0 10.99 .8105 16.5 2.471l16.11 4.975L227.7 117.2C224.2 106.2 213.6 98.39 202 99.74c-15.51 1.807-24.79 16.99-20.33 31.11L197.1 179.5zM487.1 144.5c-13.27 .0977-23.95 10.91-23.86 24.16l-2.082 50.04l-59.98-189.8c-3.496-11.07-14.18-18.86-25.71-17.51c-15.51 1.807-24.79 16.99-20.33 31.11l38.56 122.1c1.332 4.213-1.004 8.707-5.219 10.04c-4.213 1.332-8.707-1.004-10.04-5.217l-47.93-151.7c-3.496-11.07-14.18-18.86-25.71-17.51c-15.51 1.807-24.79 16.99-20.33 31.11l43.37 137.8c1.33 4.213-1.006 8.707-5.219 10.04c-4.213 1.332-8.707-1.004-10.04-5.217l-33.46-106.4C275.6 56.39 264.9 48.6 253.4 49.94c-15.51 1.807-24.79 16.99-20.33 31.11l34.15 108.1l73.7 22.76C404.1 233.3 448 292.8 448 359.9v27.91c38.27-21.17 63.28-61.24 64-106.7V168.4C511.8 155.1 500.3 144.5 487.1 144.5z',
			),
		),
		'label'             => __( 'Hands', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'hands-asl-interpreting'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M200 240c16.94 0 32.09 10.72 37.73 26.67c5.891 16.66 24.17 25.39 40.84 19.5c16.66-5.891 25.39-24.17 19.5-40.84C287.2 214.7 262.8 191.6 233.1 181.5l79.68-22.76c16.98-4.859 26.83-22.56 21.97-39.56C329.9 102.2 312.2 92.35 295.2 97.24L196 125.6l80.82-69.28c13.42-11.5 14.97-31.7 3.469-45.12C268.8-2.24 248.6-3.803 235.2 7.713l-100.4 86.09l22.33-48.39c7.391-16.05 .3906-35.06-15.66-42.47C125.4-4.412 106.4 2.525 98.94 18.6L14.92 206.6C5.082 228.6 0 252.5 0 276.6C0 335.9 48.1 384 107.4 384l99.9-.0064c31.87-2.289 61.15-19.35 79.13-46.18c9.828-14.69 5.891-34.56-8.781-44.41C263 283.6 243.1 287.5 233.3 302.2C225.8 313.3 213.4 320 200 320c-22.06 0-40-17.94-40-40C160 257.9 177.9 240 200 240zM532.6 128l-99.9 .004c-31.87 2.289-61.15 19.35-79.13 46.18c-9.828 14.69-5.891 34.56 8.781 44.41c14.66 9.812 34.55 5.906 44.41-8.781C414.2 198.7 426.6 191.1 440 191.1c22.06 0 40 17.94 40 40c0 22.06-17.94 39.1-40 39.1c-16.94 0-32.09-10.72-37.73-26.67c-5.891-16.66-24.17-25.39-40.84-19.5c-16.66 5.891-25.39 24.17-19.5 40.84c10.84 30.64 35.23 53.77 64.96 63.8l-79.68 22.76c-16.98 4.859-26.83 22.56-21.97 39.56c4.844 16.98 22.56 26.86 39.56 21.97l99.2-28.34l-80.82 69.28c-13.42 11.5-14.97 31.7-3.469 45.12c11.52 13.42 31.73 14.98 45.13 3.469l100.4-86.09l-22.33 48.39c-7.391 16.05-.3906 35.06 15.66 42.47c16.02 7.359 35.05 .4219 42.47-15.65l84.02-188C634.9 283.4 640 259.5 640 235.4C640 176.1 591.9 128 532.6 128z',
			),
		),
		'label'             => __( 'Hands Asl Interpreting', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'hands-bound'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M95.1 144.8L165.3 237.2C170.1 244.7 181.4 246.8 189.6 242C199.3 236.3 201.7 223.3 194.6 214.5L167 179.1C156.2 166.4 158.1 146.7 171.4 135.5C184.6 124.4 204.4 125.8 215.9 138.7L262.6 191.3C278.1 209.7 287.1 233.4 287.1 258.1V352H352V258.1C352 233.4 361 209.7 377.4 191.3L424.1 138.7C435.6 125.8 455.4 124.4 468.6 135.5C481.9 146.7 483.8 166.4 472.1 179.1L445.4 214.5C438.3 223.3 440.7 236.3 450.4 242C458.6 246.8 469 244.7 474.7 237.2L544 144.8V32C544 14.33 558.3 0 576 0C593.7 0 608 14.33 608 32V213.9C608 228 602.9 241.8 593.7 252.5L508.4 352H512C525.3 352 536 362.7 536 376C536 389.3 525.3 400 512 400H128C114.7 400 104 389.3 104 376C104 362.7 114.7 352 128 352H131.6L46.31 252.5C37.07 241.8 32 228 32 213.9V32C32 14.33 46.33 0 64 0C81.67 0 96 14.33 96 32L95.1 144.8zM127.1 480C114.7 480 103.1 469.3 103.1 456C103.1 442.7 114.7 432 127.1 432H512C525.3 432 536 442.7 536 456C536 469.3 525.3 480 512 480H480V512H352V480H287.1V512H159.1V480H127.1z',
			),
		),
		'label'             => __( 'Hands Bound', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'hands-bubbles'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M416 64c17.67 0 32-14.33 32-31.1c0-17.67-14.33-32-32-32c-17.67 0-32 14.33-32 32C384 49.67 398.3 64 416 64zM519.1 336H360c-4.418 0-8-3.582-8-8s3.582-8 8-8h128c14.81 0 26.49-13.42 23.54-28.76c-2.191-11.4-12.84-19.24-24.44-19.24H288l47.09-17.06c12.66-3.906 19.75-17.34 15.84-30.03c-3.938-12.62-17.28-19.69-30.03-15.84L213.2 242.3C162 259.4 128 306.6 128 359.1v25.65c36.47 7.434 64 39.75 64 78.38c0 10.71-2.193 20.91-6.031 30.25C204.1 505.3 225.2 512 248 512h208c14.81 0 26.49-13.42 23.54-28.76c-2.191-11.4-12.84-19.24-24.44-19.24H360c-4.418 0-8-3.582-8-8s3.582-8 8-8h128c14.81 0 26.49-13.42 23.54-28.76c-2.191-11.4-12.84-19.24-24.44-19.24H360c-4.418 0-8-3.582-8-8s3.582-8 8-8h160c14.81 0 26.49-13.42 23.54-28.76C541.3 343.8 530.7 336 519.1 336zM311.5 178.4c5.508-1.66 10.99-2.471 16.5-2.471c6.662 0 12.1 1.334 18.98 3.482l15.36-48.61c4.461-14.12-4.82-29.3-20.33-31.11c-11.53-1.344-22.21 6.443-25.71 17.51l-20.9 66.17L311.5 178.4zM496 224c26.51 0 48-21.49 48-47.1s-21.49-48-48-48S448 149.5 448 176S469.5 224 496 224zM93.65 386.3C94.45 386.1 95.19 385.8 96 385.6v-25.69c0-67.17 43.03-126.7 107.1-148l73.7-22.76l34.15-108.1c4.459-14.12-4.82-29.3-20.33-31.11C279.1 48.6 268.4 56.39 264.9 67.46L231.4 173.9c-1.332 4.213-5.826 6.549-10.04 5.217C217.2 177.8 214.8 173.3 216.2 169.1l43.37-137.8c4.461-14.12-4.82-29.3-20.33-31.11c-11.53-1.344-22.21 6.445-25.71 17.51L165.6 169.4C164.2 173.6 159.7 175.9 155.5 174.6C151.3 173.3 148.1 168.8 150.3 164.6l38.56-122.1c4.459-14.12-4.82-29.3-20.33-31.11C157 10.04 146.3 17.83 142.8 28.9L82.84 218.7L80.76 168.7C80.85 155.5 70.17 144.6 56.9 144.5C43.67 144.5 32.18 155.1 32 168.4v112.7C32.71 325.6 56.76 364.8 93.65 386.3zM112 416c-26.51 0-48 21.49-48 47.1s21.49 48 48 48S160 490.5 160 464S138.5 416 112 416z',
			),
		),
		'label'             => __( 'Hands Bubbles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hands-clapping'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 96c8.844 0 16-7.156 16-16v-64C336 7.156 328.8 0 320 0s-16 7.156-16 16v64C304 88.84 311.2 96 320 96zM383.4 96c5.125 0 10.16-2.453 13.25-7.016l32.56-48c1.854-2.746 2.744-5.865 2.744-8.951c0-8.947-7.273-16.04-15.97-16.04c-5.125 0-10.17 2.465-13.27 7.02l-32.56 48C368.3 73.76 367.4 76.88 367.4 79.97C367.4 88.88 374.7 96 383.4 96zM384 357.5l0-163.9c0-6.016-4.672-33.69-32-33.69c-17.69 0-32.07 14.33-32.07 31.1L320 268.1L169.2 117.3C164.5 112.6 158.3 110.3 152.2 110.3c-13.71 0-24 11.21-24 24c0 6.141 2.344 12.28 7.031 16.97l89.3 89.3C227.4 243.4 228.9 247.2 228.9 251c0 3.8-1.45 7.6-4.349 10.5c-2.899 2.899-6.7 4.349-10.5 4.349c-3.8 0-7.6-1.45-10.5-4.349l-107.6-107.6C91.22 149.2 85.08 146.9 78.94 146.9c-13.71 0-24 11.21-24 24c0 6.141 2.344 12.28 7.031 16.97l107.6 107.6C172.5 298.4 173.9 302.2 173.9 305.1c0 3.8-1.45 7.6-4.349 10.5c-2.899 2.9-6.7 4.349-10.5 4.349c-3.8 0-7.6-1.45-10.5-4.349L59.28 227.2C54.59 222.5 48.45 220.1 42.31 220.1c-13.71 0-24 11.21-24 24c0 6.141 2.344 12.28 7.031 16.97l89.3 89.3c2.9 2.899 4.349 6.7 4.349 10.5c0 3.8-1.45 7.6-4.349 10.5c-2.899 2.899-6.7 4.349-10.5 4.349c-3.8 0-7.6-1.45-10.5-4.349L40.97 318.7C36.28 314 30.14 311.7 24 311.7c-13.71 0-23.99 11.26-23.99 24.05c0 6.141 2.332 12.23 7.02 16.92C112.6 458.2 151.3 512 232.3 512C318.1 512 384 440.9 384 357.5zM243.3 88.98C246.4 93.55 251.4 96 256.6 96c8.762 0 15.99-7.117 15.99-16.03c0-3.088-.8906-6.205-2.744-8.951l-32.56-48C234.2 18.46 229.1 15.98 223.1 15.98c-8.664 0-15.98 7.074-15.98 16.05c0 3.086 .8906 6.205 2.744 8.951L243.3 88.98zM480 160c-17.69 0-32 14.33-32 32v76.14l-32-32v121.4c0 94.01-63.31 141.5-78.32 152.2C345.1 510.9 352.6 512 360.3 512C446.1 512 512 440.9 512 357.5l-.0625-165.6C511.9 174.3 497.7 160 480 160z',
			),
		),
		'label'             => __( 'Hands Clapping', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hands-holding'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M216.1 236C205.1 222.3 185.8 219.1 172 231c-13.81 11.06-16.05 31.19-5 45l18.86 30.56C194.8 317.7 193.9 333.7 183.8 343.8c-11.79 11.79-31.2 10.71-41.61-2.305L80 256.8V104C80 81.91 62.09 64 40 64S0 81.91 0 104v204.7c0 14.54 4.949 28.65 14.03 40l120.1 151.3C141.1 507.6 150.3 512 159.1 512H256c17.67 0 32.03-14.35 32.03-32.02L288 358.4c0-21.79-7.414-42.93-21.02-59.94L216.1 236zM600 64c-22.09 0-40 17.91-40 40v152.8l-62.2 84.73c-10.41 13.02-29.83 14.09-41.61 2.305c-10.08-10.07-10.97-26.11-2.068-37.24l18.86-30.56c11.05-13.81 8.812-33.94-5-45c-13.77-11.03-33.94-8.75-44.97 5l-49.99 62.5C359.4 315.5 352 336.6 352 358.4l-.0313 121.5C351.1 497.7 366.3 512 384 512h96.02c9.713 0 18.9-4.414 24.96-12l120.1-151.3C635.1 337.4 640 323.3 640 308.7V104C640 81.91 622.1 64 600 64z',
			),
		),
		'label'             => __( 'Hands Holding', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hands-holding-child'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M280 40C280 17.91 297.9 0 320 0C342.1 0 360 17.91 360 40C360 62.09 342.1 80 320 80C297.9 80 280 62.09 280 40zM375.8 253C377.5 266.2 368.1 278.2 354.1 279.8C341.8 281.5 329.8 272.1 328.2 258.1L323.8 223.1H316.2L311.8 258.1C310.2 272.1 298.2 281.5 285 279.8C271.9 278.2 262.5 266.2 264.2 253L275.3 164.3L255.5 180.1C245.4 189.6 230.2 188.3 221.7 178.2C213.1 168 214.4 152.9 224.5 144.3L266 109.2C276.1 100.7 288.9 96 302.2 96H337.8C351.1 96 363.9 100.7 373.1 109.2L415.5 144.3C425.6 152.9 426.9 168 418.3 178.2C409.8 188.3 394.6 189.6 384.5 180.1L364.7 164.3L375.8 253zM80 258.7L140.3 339C149.7 351.6 167.7 353.8 179.9 343.8C190.4 335.1 193.1 319.1 186 308.3L164.6 272.5C155.9 258 159.9 239.3 173.7 229.7C187.6 220.1 206.5 222.9 216.1 236L263.5 294.1C279.3 313.1 288 338.6 288 364.1V480C288 497.7 273.7 512 256 512H160C150.3 512 141.1 507.6 135 499.1L14.02 348.8C4.946 337.4 0 323.3 0 308.8V103.1C0 81.91 17.91 63.1 40 63.1C62.09 63.1 80 81.91 80 103.1V258.7zM640 104V308.8C640 323.3 635.1 337.4 625.1 348.8L504.1 499.1C498.9 507.6 489.7 512 480 512H384C366.3 512 352 497.7 352 480V364.1C352 338.6 360.7 313.1 376.5 294.1L423 236C433.5 222.9 452.4 220.1 466.3 229.7C480.1 239.3 484.1 258 475.4 272.5L453.1 308.3C446.9 319.1 449.6 335.1 460.2 343.8C472.3 353.8 490.3 351.6 499.7 339L560 258.7V104C560 81.91 577.9 64 600 64C622.1 64 640 81.91 640 104V104z',
			),
		),
		'label'             => __( 'Hands Holding Child', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education', 'science-and-technology' ),
	),
	'hands-holding-circle'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M208 112C208 50.14 258.1 0 320 0C381.9 0 432 50.14 432 112C432 173.9 381.9 224 320 224C258.1 224 208 173.9 208 112zM80 258.7L140.3 339C149.7 351.6 167.7 353.8 179.9 343.8C190.4 335.1 193.1 319.1 186 308.3L164.6 272.5C155.9 258 159.9 239.3 173.7 229.7C187.6 220.1 206.5 222.9 216.1 236L263.5 294.1C279.3 313.1 288 338.6 288 364.1V480C288 497.7 273.7 512 256 512H160C150.3 512 141.1 507.6 135 499.1L14.02 348.8C4.946 337.4 0 323.3 0 308.8V103.1C0 81.91 17.91 63.1 40 63.1C62.09 63.1 80 81.91 80 103.1V258.7zM640 104V308.8C640 323.3 635.1 337.4 625.1 348.8L504.1 499.1C498.9 507.6 489.7 512 480 512H384C366.3 512 352 497.7 352 480V364.1C352 338.6 360.7 313.1 376.5 294.1L423 236C433.5 222.9 452.4 220.1 466.3 229.7C480.1 239.3 484.1 258 475.4 272.5L453.1 308.3C446.9 319.1 449.6 335.1 460.2 343.8C472.3 353.8 490.3 351.6 499.7 339L560 258.7V104C560 81.91 577.9 64 600 64C622.1 64 640 81.91 640 104V104z',
			),
		),
		'label'             => __( 'Hands Holding Circle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'hands-praying'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M272 191.9c-17.62 0-32 14.35-32 31.97V303.9c0 8.875-7.125 16-16 16s-16-7.125-16-16V227.4c0-17.37 4.75-34.5 13.75-49.37L299.5 48.41c9-15.12 4.125-34.76-11-43.88C273.1-4.225 255.8 .1289 246.1 13.63C245.1 13.88 245.5 13.88 245.4 14.13L128.1 190C117.5 205.9 112 224.3 112 243.3v80.24l-90.13 29.1C8.75 357.9 0 370.1 0 383.9v95.99c0 10.88 8.5 31.1 32 31.1c2.75 0 5.375-.25 8-1l179.3-46.62C269.1 450 304 403.8 304 351.9V223.9C304 206.3 289.6 191.9 272 191.9zM618.1 353.6L528 323.6V243.4c0-19-5.5-37.37-16.12-53.25l-117.3-175.9c-.125-.25-.6251-.2487-.75-.4987c-9.625-13.5-27.88-17.85-42.38-9.229c-15.12 9.125-20 28.76-11 44.01l77.75 129.5C427.3 193 432 210 432 227.5v76.49c0 8.875-7.125 16-16 16s-16-7.125-16-16V223.1c0-17.62-14.38-31.97-32-31.97s-32 14.38-32 31.1v127.1c0 51.87 34.88 98.12 84.75 112.4L600 511C602.6 511.6 605.4 512 608 512c23.5 0 32-21.25 32-31.1v-95.99C640 370.3 631.3 358 618.1 353.6z',
			),
		),
		'label'             => __( 'Hands Praying', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'handshake'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 383.9l64 .0404c17.75 0 32-14.29 32-32.03V128.3L0 128.3V383.9zM48 320.1c8.75 0 16 7.118 16 15.99c0 8.742-7.25 15.99-16 15.99S32 344.8 32 336.1C32 327.2 39.25 320.1 48 320.1zM348.8 64c-7.941 0-15.66 2.969-21.52 8.328L228.9 162.3C228.8 162.5 228.8 162.7 228.6 162.7C212 178.3 212.3 203.2 226.5 218.7c12.75 13.1 39.38 17.62 56.13 2.75C282.8 221.3 282.9 221.3 283 221.2l79.88-73.1c6.5-5.871 16.75-5.496 22.62 1c6 6.496 5.5 16.62-1 22.62l-26.12 23.87L504 313.7c2.875 2.496 5.5 4.996 7.875 7.742V127.1c-40.98-40.96-96.48-63.88-154.4-63.88L348.8 64zM334.6 217.4l-30 27.49c-29.75 27.11-75.25 24.49-101.8-4.371C176 211.2 178.1 165.7 207.3 138.9L289.1 64H282.5C224.7 64 169.1 87.08 128.2 127.9L128 351.8l18.25 .0369l90.5 81.82c27.5 22.37 67.75 18.12 90-9.246l18.12 15.24c15.88 12.1 39.38 10.5 52.38-5.371l31.38-38.6l5.374 4.498c13.75 11 33.88 9.002 45-4.748l9.538-11.78c11.12-13.75 9.036-33.78-4.694-44.93L334.6 217.4zM544 128.4v223.6c0 17.62 14.25 32.05 31.1 32.05L640 384V128.1L544 128.4zM592 352c-8.75 0-16-7.246-16-15.99c0-8.875 7.25-15.99 16-15.99S608 327.2 608 336.1C608 344.8 600.8 352 592 352z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M506.1 127.1c-17.97-20.17-61.46-61.65-122.7-71.1c-22.5-3.354-45.39 3.606-63.41 18.21C302 60.47 279.1 53.42 256.5 56.86C176.8 69.17 126.7 136.2 124.6 139.1c-7.844 10.69-5.531 25.72 5.125 33.57c4.281 3.157 9.281 4.657 14.19 4.657c7.406 0 14.69-3.375 19.38-9.782c.4062-.5626 40.19-53.91 100.5-63.23c7.457-.9611 14.98 .67 21.56 4.483L227.2 168.2C214.8 180.5 207.1 196.1 207.1 214.5c0 17.5 6.812 33.94 19.16 46.29C239.5 273.2 255.9 279.1 273.4 279.1s33.94-6.813 46.31-19.19l11.35-11.35l124.2 100.9c2.312 1.875 2.656 5.251 .5 7.97l-27.69 35.75c-1.844 2.25-5.25 2.594-7.156 1.063l-22.22-18.69l-26.19 27.75c-2.344 2.875-5.344 3.563-6.906 3.719c-1.656 .1562-4.562 .125-6.812-1.719l-32.41-27.66L310.7 392.3l-2.812 2.938c-5.844 7.157-14.09 11.66-23.28 12.6c-9.469 .8126-18.25-1.75-24.5-6.782L170.3 319.8H96V128.3L0 128.3v255.6l64 .0404c11.74 0 21.57-6.706 27.14-16.14h60.64l77.06 69.66C243.7 449.6 261.9 456 280.8 456c2.875 0 5.781-.125 8.656-.4376c13.62-1.406 26.41-6.063 37.47-13.5l.9062 .8126c12.03 9.876 27.28 14.41 42.69 12.78c13.19-1.375 25.28-7.032 33.91-15.35c21.09 8.188 46.09 2.344 61.25-16.47l27.69-35.75c18.47-22.82 14.97-56.48-7.844-75.01l-120.3-97.76l8.381-8.382c9.375-9.376 9.375-24.57 0-33.94c-9.375-9.376-24.56-9.376-33.94 0L285.8 226.8C279.2 233.5 267.7 233.5 261.1 226.8c-3.312-3.282-5.125-7.657-5.125-12.31c0-4.688 1.812-9.064 5.281-12.53l85.91-87.64c7.812-7.845 18.53-11.75 28.94-10.03c59.75 9.22 100.2 62.73 100.6 63.29c3.088 4.155 7.264 6.946 11.84 8.376H544v175.1c0 17.67 14.33 32.05 31.1 32.05L640 384V128.1L506.1 127.1zM48 352c-8.75 0-16-7.245-16-15.99c0-8.876 7.25-15.99 16-15.99S64 327.2 64 336.1C64 344.8 56.75 352 48 352zM592 352c-8.75 0-16-7.245-16-15.99c0-8.876 7.25-15.99 16-15.99s16 7.117 16 15.99C608 344.8 600.8 352 592 352z',
			),
		),
		'label'             => __( 'Handshake', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'handshake-angle'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M488 191.1h-152l.0001 51.86c.0001 37.66-27.08 72-64.55 75.77c-43.09 4.333-79.45-29.42-79.45-71.63V126.4l-24.51 14.73C123.2 167.8 96.04 215.7 96.04 267.5L16.04 313.8c-15.25 8.751-20.63 28.38-11.75 43.63l80 138.6c8.875 15.25 28.5 20.5 43.75 11.75l103.4-59.75h136.6c35.25 0 64-28.75 64-64c26.51 0 48-21.49 48-48V288h8c13.25 0 24-10.75 24-24l.0001-48C512 202.7 501.3 191.1 488 191.1zM635.7 154.5l-79.95-138.6c-8.875-15.25-28.5-20.5-43.75-11.75l-103.4 59.75h-62.57c-37.85 0-74.93 10.61-107.1 30.63C229.7 100.4 224 110.6 224 121.6l-.0004 126.4c0 22.13 17.88 40 40 40c22.13 0 40-17.88 40-40V159.1h184c30.93 0 56 25.07 56 56v28.5l80-46.25C639.3 189.4 644.5 169.8 635.7 154.5z',
			),
		),
		'label'             => __( 'Handshake Angle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'handshake-simple'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M334.6 217.4l-30 27.49C264 282.1 217.8 256.8 202.9 240.6C176 211.2 178.1 165.7 207.3 138.9L289.1 64H282.5C224.7 64 169.1 86.95 128.2 127.8L32 128.1c-17.6 0-32 14.39-32 31.98v159.8c0 17.59 14.4 32.04 31.1 32.04l114.3-.0604l90.5 81.82c27.5 22.37 67.75 18.11 90-9.255l18.12 15.25c15.88 12.1 39.38 10.5 52.38-5.369l31.38-38.6l5.374 4.498c13.75 11 33.88 9.002 45-4.748l9.576-11.83c11.08-13.7 8.979-33.75-4.701-44.86L334.6 217.4zM608 128.1l-96-.1257c-40.98-40.96-96.56-63.88-154.5-63.88L348.9 64c-8 0-15.62 3.197-21.62 8.568L229 162.3C228.9 162.5 228.8 162.7 228.8 162.7C212 178.5 212.4 203.3 226.6 218.7c9.625 10.5 35 21.62 56.13 2.75c0-.125 .25-.125 .375-.25l80-73.1c6.5-5.871 16.62-5.496 22.62 1s5.5 16.62-1 22.62l-26.12 23.87l145.6 118.1c12.12 9.992 19.5 23.49 22.12 37.98L608 351.7c17.6 0 32-14.38 32-31.98V160.1C640 142.4 625.7 128.1 608 128.1z',
			),
		),
		'label'             => __( 'Handshake Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'handshake-simple-slash'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M358.6 195.6l145.6 118.1c12.12 9.992 19.5 23.49 22.12 37.98h81.62c17.6 0 31.1-14.39 31.1-31.99V159.1c0-17.67-14.33-31.99-31.1-31.99h-95.1c-40.98-40.96-96.56-63.98-154.5-63.98h-8.613c-7.1 0-15.63 3.002-21.63 8.373l-93.44 85.57L208.3 137.9L289.1 64.01L282.5 64c-43.48 0-85.19 13.66-120.8 37.44l-122.9-96.33C34.41 1.672 29.19 0 24.03 0c-7.125 0-14.19 3.156-18.91 9.187c-8.187 10.44-6.375 25.53 4.062 33.7L601.2 506.9c10.5 8.203 25.56 6.328 33.69-4.078c8.187-10.44 6.375-25.53-4.062-33.7l-135.5-106.2c-.1719-9.086-3.789-18.03-11.39-24.2l-149.2-121.2l-11.47 10.51L297.6 207.1l65.51-59.85c6.5-5.871 16.62-5.496 22.62 .1c5.1 6.496 5.5 16.62-.1 22.62L358.6 195.6zM32 127.1c-17.6 0-31.1 14.4-31.1 31.99v159.8c0 17.59 14.4 32.06 31.1 32.06l114.2-.0712l90.5 81.85c27.5 22.37 67.75 18.12 89.1-9.25l18.12 15.25c15.87 12.1 39.37 10.5 52.37-5.371l13.02-16.03L39.93 127.1L32 127.1z',
			),
		),
		'label'             => __( 'Handshake Simple Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'handshake-slash'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M543.1 128.2l.0002 223.8c0 17.62 14.25 31.99 31.1 31.99h64V128.1L543.1 128.2zM591.1 352c-8.75 0-16-7.251-16-15.99c0-8.875 7.25-15.1 16-15.1c8.75 0 15.1 7.122 15.1 15.1C607.1 344.8 600.7 352 591.1 352zM.0005 128.2v255.7l63.1 .0446c17.75 0 32-14.28 32-32.03L96 171.9l-55.77-43.71H.0005zM64 336c0 8.742-7.25 15.99-15.1 15.99s-15.1-7.251-15.1-15.99c0-8.875 7.25-15.1 15.1-15.1S64 327.2 64 336zM128 351.8h18.25l90.5 81.85c27.5 22.37 67.75 18.12 89.1-9.25l18.12 15.25c15.87 12.1 39.37 10.5 52.37-5.371l13.02-16.03L128 196.1V351.8zM495.2 362.8c-.1875-9.101-3.824-18.05-11.44-24.24l-149.2-121.1l-11.47 10.51L297.5 207.9l65.33-59.79c6.5-5.871 16.75-5.496 22.62 1c5.1 6.496 5.5 16.62-1 22.62l-26.12 23.87l145.6 118.1c2.875 2.496 5.5 4.996 7.875 7.742V127.1c-40.98-40.96-96.52-63.98-154.5-63.98h-8.613c-7.941 0-15.64 2.97-21.5 8.329L233.7 157.9L208.3 137.9l80.85-73.92L282.5 64c-43.47 0-85.16 13.68-120.8 37.45L38.81 5.109C34.41 1.672 29.19 0 24.03 0C16.91 0 9.846 3.156 5.127 9.187C-3.06 19.62-1.248 34.72 9.19 42.89l591.1 463.1c10.5 8.203 25.56 6.328 33.69-4.078c8.187-10.44 6.375-25.53-4.062-33.7L495.2 362.8z',
			),
		),
		'label'             => __( 'Handshake Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hanukiah'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M231.1 159.9C227.6 159.9 224 163.6 224 168V288h32V168C256 163.6 252.4 160 248 160L231.1 159.9zM167.1 159.9C163.6 159.9 160 163.6 160 168V288h32V168C192 163.6 188.4 160 184 160L167.1 159.9zM392 160C387.6 160 384 163.6 384 168V288h32V168c0-4.375-3.625-8.061-8-8.061L392 160zM456 160C451.6 160 448 163.6 448 168V288h32V168c0-4.375-3.625-8.061-8-8.061L456 160zM544 168c0-4.375-3.625-8.061-8-8.061L520 160C515.6 160 512 163.6 512 168V288h32V168zM103.1 159.9C99.62 159.9 96 163.6 96 168V288h32V168C128 163.6 124.4 160 120 160L103.1 159.9zM624 160h-31.98c-8.837 0-16.03 7.182-16.03 16.02L576 288c0 17.6-14.4 32-32 32h-192V128c0-8.837-7.151-16.01-15.99-16.01H303.1C295.2 111.1 288 119.2 288 128v192H96c-17.6 0-32-14.4-32-32l.0065-112C64.01 167.2 56.85 160 48.02 160H16C7.163 160 0 167.2 0 176V288c0 53.02 42.98 96 96 96h192v64H175.1C149.5 448 128 469.5 128 495.1C128 504.8 135.2 512 143.1 512h352C504.9 512 512 504.9 512 496C512 469.5 490.5 448 464 448H352v-64h192c53.02 0 96-42.98 96-96V176C640 167.2 632.8 160 624 160zM607.1 127.9C621.2 127.9 632 116 632 101.4C632 86.62 608 48 608 48s-24 38.62-24 53.38C584 116 594.7 127.9 607.1 127.9zM31.1 127.9C45.25 127.9 56 116 56 101.4C56 86.62 32 48 32 48S8 86.62 8 101.4C8 116 18.75 127.9 31.1 127.9zM319.1 79.94c13.25 0 24-11.94 24-26.57C344 38.62 320 0 320 0S296 38.62 296 53.38C296 67.1 306.7 79.94 319.1 79.94zM112 128c13.25 0 24-12 24-26.62C136 86.62 112 48 112 48S88 86.62 88 101.4C88 115.1 98.75 128 112 128zM176 128c13.25 0 24-12 24-26.62C200 86.62 176 48 176 48S152 86.62 152 101.4C152 115.1 162.8 128 176 128zM240 128c13.25 0 24-12 24-26.62C264 86.62 240 48 240 48S216 86.62 216 101.4C216 115.1 226.8 128 240 128zM400 128c13.25 0 24-12 24-26.62C424 86.62 400 48 400 48s-24 38.62-24 53.38C376 115.1 386.8 128 400 128zM464 128c13.25 0 24-12 24-26.62C488 86.62 464 48 464 48s-24 38.62-24 53.38C440 115.1 450.8 128 464 128zM528 128c13.25 0 24-12 24-26.62C552 86.62 528 48 528 48s-24 38.62-24 53.38C504 115.1 514.8 128 528 128z',
			),
		),
		'label'             => __( 'Hanukiah', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hard-drive'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 288h-416C21.5 288 0 309.5 0 336v96C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-96C512 309.5 490.5 288 464 288zM320 416c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S337.6 416 320 416zM416 416c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S433.6 416 416 416zM464 32h-416C21.5 32 0 53.5 0 80v192.4C13.41 262.3 29.92 256 48 256h416c18.08 0 34.59 6.254 48 16.41V80C512 53.5 490.5 32 464 32z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304 344c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24c13.26 0 24-10.75 24-24C328 354.7 317.3 344 304 344zM448 32h-384c-35.35 0-64 28.65-64 64v320c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V96C512 60.65 483.3 32 448 32zM464 416c0 8.822-7.178 16-16 16H64c-8.822 0-16-7.178-16-16v-96c0-8.822 7.178-16 16-16h384C456.8 304 464 311.2 464 320V416zM464 258.3C458.9 256.9 453.6 256 448 256H64C58.44 256 53.14 256.9 48 258.3V96c0-8.822 7.178-16 16-16h384c8.822 0 16 7.178 16 16V258.3zM400 344c-13.25 0-24 10.74-24 24c0 13.25 10.75 24 24 24c13.26 0 24-10.75 24-24C424 354.7 413.3 344 400 344z',
			),
		),
		'label'             => __( 'Hard Drive', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'hashnode'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M35.19 171.1C-11.72 217.1-11.72 294 35.19 340.9L171.1 476.8C217.1 523.7 294 523.7 340.9 476.8L476.8 340.9C523.7 294 523.7 217.1 476.8 171.1L340.9 35.19C294-11.72 217.1-11.72 171.1 35.19L35.19 171.1zM315.5 315.5C282.6 348.3 229.4 348.3 196.6 315.5C163.7 282.6 163.7 229.4 196.6 196.6C229.4 163.7 282.6 163.7 315.5 196.6C348.3 229.4 348.3 282.6 315.5 315.5z',
			),
		),
		'label'             => __( 'Hashnode', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hashtag'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 127.1h-58.23l9.789-58.74c2.906-17.44-8.875-33.92-26.3-36.83c-17.53-2.875-33.92 8.891-36.83 26.3L292.9 127.1H197.8l9.789-58.74c2.906-17.44-8.875-33.92-26.3-36.83c-17.53-2.875-33.92 8.891-36.83 26.3L132.9 127.1H64c-17.67 0-32 14.33-32 32C32 177.7 46.33 191.1 64 191.1h58.23l-21.33 128H32c-17.67 0-32 14.33-32 32c0 17.67 14.33 31.1 32 31.1h58.23l-9.789 58.74c-2.906 17.44 8.875 33.92 26.3 36.83C108.5 479.9 110.3 480 112 480c15.36 0 28.92-11.09 31.53-26.73l11.54-69.27h95.12l-9.789 58.74c-2.906 17.44 8.875 33.92 26.3 36.83C268.5 479.9 270.3 480 272 480c15.36 0 28.92-11.09 31.53-26.73l11.54-69.27H384c17.67 0 32-14.33 32-31.1c0-17.67-14.33-32-32-32h-58.23l21.33-128H416c17.67 0 32-14.32 32-31.1C448 142.3 433.7 127.1 416 127.1zM260.9 319.1H165.8L187.1 191.1h95.12L260.9 319.1z',
			),
		),
		'label'             => __( 'Hashtag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social', 'brands', 'brands', 'social' ),
	),
	'hat-cowboy'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M489.1 264.9C480.5 207.5 450.5 32 392.3 32c-14 0-26.58 5.875-37.08 14c-20.75 15.87-49.62 15.87-70.5 0C274.2 38 261.7 32 247.7 32c-58.25 0-88.27 175.5-97.77 232.9C188.7 277.5 243.7 288 319.1 288S451.2 277.5 489.1 264.9zM632.9 227.7c-6.125-4.125-14.2-3.51-19.7 1.49c-1 .875-101.3 90.77-293.1 90.77c-190.9 0-292.2-89.99-293.2-90.86c-5.5-4.875-13.71-5.508-19.71-1.383c-6.125 4.125-8.587 11.89-6.087 18.77C1.749 248.5 78.37 448 319.1 448s318.2-199.5 318.1-201.5C641.5 239.6 639 231.9 632.9 227.7z',
			),
		),
		'label'             => __( 'Hat Cowboy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'hat-cowboy-side'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M260.8 260C232.1 237.1 198.8 225 164.4 225c-77.38 0-142.9 62.75-163 156c-3.5 16.62-.375 33.88 8.625 47.38c8.75 13.12 21.88 20.62 35.88 20.62H592c-103.2 0-155-37.13-233.2-104.5L260.8 260zM495.5 241.8l-27.13-156.5c-2.875-17.25-12.75-32.5-27.12-42.25c-14.37-9.75-32.24-13.3-49.24-9.675L200.9 74.02C173.7 79.77 153.5 102.3 150.5 129.8L143.6 195c6.875-.875 13.62-2 20.75-2c41.87 0 82 14.5 117.4 42.88l98 84.37c71 61.25 115.1 96.75 212.2 96.75c26.5 0 48-21.5 48-48C640 343.6 610.4 249.6 495.5 241.8z',
			),
		),
		'label'             => __( 'Hat Cowboy Side', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'hat-wizard'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200 376l-49.23-16.41c-7.289-2.434-7.289-12.75 0-15.18L200 328l16.41-49.23c2.434-7.289 12.75-7.289 15.18 0L248 328l49.23 16.41c7.289 2.434 7.289 12.75 0 15.18L248 376L240 416H448l-86.38-201.6C355.4 200 354.8 183.8 359.8 168.9L416 0L228.4 107.3C204.8 120.8 185.1 141.4 175 166.4L64 416h144L200 376zM231.2 172.4L256 160l12.42-24.84c1.477-2.949 5.68-2.949 7.156 0L288 160l24.84 12.42c2.949 1.477 2.949 5.68 0 7.156L288 192l-12.42 24.84c-1.477 2.949-5.68 2.949-7.156 0L256 192L231.2 179.6C228.2 178.1 228.2 173.9 231.2 172.4zM496 448h-480C7.164 448 0 455.2 0 464C0 490.5 21.49 512 48 512h416c26.51 0 48-21.49 48-48C512 455.2 504.8 448 496 448z',
			),
		),
		'label'             => __( 'Hat Wizard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'head-side-cough'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M608 359.1c-13.25 0-24 10.75-24 24s10.75 24 24 24s24-10.75 24-24S621.3 359.1 608 359.1zM477.2 275c-21-47.13-48.49-151.8-73.11-186.8C365.6 33.63 302.5 0 234.1 0L192 0C86 0 0 86 0 192c0 56.75 24.75 107.6 64 142.9L64 512h223.1v-32h64.01c35.38 0 64-28.62 64-63.1L320 416c-17.67 0-32-14.33-32-32s14.33-32 32-32h95.98l-.003-32h31.99C471.1 320 486.6 296.1 477.2 275zM336 224c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S353.6 224 336 224zM480 359.1c-13.25 0-23.1 10.75-23.1 24s10.75 24 23.1 24s24-10.75 24-24S493.3 359.1 480 359.1zM608 311.1c13.25 0 24-10.75 24-24s-10.75-24-24-24s-24 10.75-24 24S594.8 311.1 608 311.1zM544 311.1c-13.25 0-23.1 10.75-23.1 24s10.75 24 23.1 24s24-10.75 24-24S557.3 311.1 544 311.1zM544 407.1c-13.25 0-23.1 10.75-23.1 24s10.75 24 23.1 24s24-10.75 24-24S557.3 407.1 544 407.1zM608 455.1c-13.25 0-24 10.75-24 24s10.75 24 24 24s24-10.75 24-24S621.3 455.1 608 455.1z',
			),
		),
		'label'             => __( 'Head Side Cough', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'head-side-cough-slash'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M607.1 311.1c13.25 0 24-10.75 24-23.1s-10.75-23.1-24-23.1s-23.1 10.75-23.1 23.1S594.7 311.1 607.1 311.1zM607.1 407.1c13.25 0 24-10.78 24-24.03c0-13.25-10.75-23.1-24-23.1s-24 10.78-24 24.03C583.1 397.2 594.7 407.1 607.1 407.1zM630.8 469.1l-190.2-149.1h7.4c23.12 0 38.62-23.87 29.25-44.1c-20.1-47.12-48.49-151.7-73.11-186.7C365.6 33.63 302.5 0 234.1 0H192C149.9 0 111.5 14.26 79.88 37.29L38.81 5.109C34.41 1.672 29.19 0 24.03 0C16.91 0 9.845 3.156 5.126 9.187c-8.187 10.44-6.375 25.53 4.062 33.7l591.1 463.1c10.5 8.203 25.56 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1zM320 415.1c-17.67 0-31.1-14.33-31.1-31.1S302.3 351.1 320 351.1l5.758-.0009L18.16 110.9C6.631 135.6 .0006 162.1 .0006 191.1c0 56.75 24.75 107.6 64 142.9L64 511.1h223.1l0-31.1l64.01 .001c33.25 0 60.2-25.38 63.37-57.78l-7.932-6.217H320zM543.1 359.1c13.25 0 24-10.78 24-24.03s-10.75-23.1-24-23.1c-13.25 0-24 10.78-24 24.03C519.1 349.2 530.7 359.1 543.1 359.1z',
			),
		),
		'label'             => __( 'Head Side Cough Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'head-side-mask'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M.1465 184.4C-2.166 244.2 23.01 298 63.99 334.9L63.99 512h160L224 316.5L3.674 156.2C1.871 165.4 .5195 174.8 .1465 184.4zM336 368H496L512 320h-255.1l.0178 192h145.9c27.55 0 52-17.63 60.71-43.76L464 464h-127.1c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16h138.7l10.67-32h-149.3c-8.836 0-16-7.164-16-16C320 375.2 327.2 368 336 368zM509.2 275c-20.1-47.13-48.49-151.8-73.11-186.8C397.6 33.63 334.5 0 266.1 0H200C117.1 0 42.48 50.57 13.25 123.7L239.2 288h272.6C511.8 283.7 511.1 279.3 509.2 275zM352 224c-17.62 0-32-14.38-32-32s14.38-32 32-32c17.62 0 31.1 14.38 31.1 32S369.6 224 352 224z',
			),
		),
		'label'             => __( 'Head Side Mask', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'head-side-virus'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208 175.1c-8.836 0-16 7.162-16 16c0 8.836 7.163 15.1 15.1 15.1s16-7.164 16-16C224 183.2 216.8 175.1 208 175.1zM272 239.1c-8.836 0-15.1 7.163-15.1 16c0 8.836 7.165 16 16 16s16-7.164 16-16C288 247.2 280.8 239.1 272 239.1zM509.2 275c-20.94-47.13-48.46-151.7-73.1-186.8C397.7 33.59 334.6 0 266.1 0H192C85.95 0 0 85.95 0 192c0 56.8 24.8 107.7 64 142.8L64 512h256l-.0044-64h63.99c35.34 0 63.1-28.65 63.1-63.1V320h31.98C503.1 320 518.6 296.2 509.2 275zM368 240h-12.12c-28.51 0-42.79 34.47-22.63 54.63l8.576 8.576c6.25 6.25 6.25 16.38 0 22.62c-3.125 3.125-7.219 4.688-11.31 4.688s-8.188-1.562-11.31-4.688l-8.576-8.576c-20.16-20.16-54.63-5.881-54.63 22.63V352c0 8.844-7.156 16-16 16s-16-7.156-16-16v-12.12c0-28.51-34.47-42.79-54.63-22.63l-8.576 8.576c-3.125 3.125-7.219 4.688-11.31 4.688c-4.096 0-8.188-1.562-11.31-4.688c-6.25-6.25-6.25-16.38 0-22.62l8.577-8.576C166.9 274.5 152.6 240 124.1 240H112c-8.844 0-16-7.156-16-16s7.157-16 16-16L124.1 208c28.51 0 42.79-34.47 22.63-54.63L138.2 144.8c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.63 0L169.4 130.7c20.16 20.16 54.63 5.881 54.63-22.63V96c0-8.844 7.156-16 16-16S256 87.16 256 96v12.12c0 28.51 34.47 42.79 54.63 22.63l8.576-8.576c6.25-6.25 16.38-6.25 22.63 0s6.25 16.38 0 22.62L333.3 153.4C313.1 173.5 327.4 208 355.9 208l12.12-.0004c8.844 0 15.1 7.157 15.1 16S376.8 240 368 240z',
			),
		),
		'label'             => __( 'Head Side Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heading'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 448c0 17.69-14.33 32-32 32h-96c-17.67 0-32-14.31-32-32s14.33-32 32-32h16v-144h-224v144H128c17.67 0 32 14.31 32 32s-14.33 32-32 32H32c-17.67 0-32-14.31-32-32s14.33-32 32-32h16v-320H32c-17.67 0-32-14.31-32-32s14.33-32 32-32h96c17.67 0 32 14.31 32 32s-14.33 32-32 32H112v112h224v-112H320c-17.67 0-32-14.31-32-32s14.33-32 32-32h96c17.67 0 32 14.31 32 32s-14.33 32-32 32h-16v320H416C433.7 416 448 430.3 448 448z',
			),
		),
		'label'             => __( 'Heading', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'headphones'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 287.9l-.0042 112C511.1 444.1 476.1 480 432 480c-26.47 0-48-21.56-48-48.06V304.1C384 277.6 405.5 256 432 256c10.83 0 20.91 2.723 30.3 6.678C449.7 159.1 362.1 80.13 256 80.13S62.29 159.1 49.7 262.7C59.09 258.7 69.17 256 80 256C106.5 256 128 277.6 128 304.1v127.9C128 458.4 106.5 480 80 480c-44.11 0-79.1-35.88-79.1-80.06L0 288c0-141.2 114.8-256 256-256c140.9 0 255.6 114.5 255.1 255.3C511.1 287.5 511.1 287.7 512 287.9z',
			),
		),
		'label'             => __( 'Headphones', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'headphones-simple'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 32C112.9 32 4.563 151.1 0 288v104C0 405.3 10.75 416 23.1 416S48 405.3 48 392V288c0-114.7 93.34-207.8 208-207.8C370.7 80.2 464 173.3 464 288v104C464 405.3 474.7 416 488 416S512 405.3 512 392V287.1C507.4 151.1 399.1 32 256 32zM160 288L144 288c-35.34 0-64 28.7-64 64.13v63.75C80 451.3 108.7 480 144 480L160 480c17.66 0 32-14.34 32-32.05v-127.9C192 302.3 177.7 288 160 288zM368 288L352 288c-17.66 0-32 14.32-32 32.04v127.9c0 17.7 14.34 32.05 32 32.05L368 480c35.34 0 64-28.7 64-64.13v-63.75C432 316.7 403.3 288 368 288z',
			),
		),
		'label'             => __( 'Headphones Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'headset'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M191.1 224c0-17.72-14.34-32.04-32-32.04L144 192c-35.34 0-64 28.66-64 64.08v47.79C80 339.3 108.7 368 144 368H160c17.66 0 32-14.36 32-32.06L191.1 224zM256 0C112.9 0 4.583 119.1 .0208 256L0 296C0 309.3 10.75 320 23.1 320S48 309.3 48 296V256c0-114.7 93.34-207.8 208-207.8C370.7 48.2 464 141.3 464 256v144c0 22.09-17.91 40-40 40h-110.7C305 425.7 289.7 416 272 416H241.8c-23.21 0-44.5 15.69-48.87 38.49C187 485.2 210.4 512 239.1 512H272c17.72 0 33.03-9.711 41.34-24H424c48.6 0 88-39.4 88-88V256C507.4 119.1 399.1 0 256 0zM368 368c35.34 0 64-28.7 64-64.13V256.1C432 220.7 403.3 192 368 192l-16 0c-17.66 0-32 14.34-32 32.04L320 335.9C320 353.7 334.3 368 352 368H368z',
			),
		),
		'label'             => __( 'Headset', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'heart'                                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84.02L256 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 .0003 232.4 .0003 190.9L0 190.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M244 84L255.1 96L267.1 84.02C300.6 51.37 347 36.51 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.1C164.1 36.51 211.4 51.37 244 84C243.1 84 244 84.01 244 84L244 84zM255.1 163.9L210.1 117.1C188.4 96.28 157.6 86.4 127.3 91.44C81.55 99.07 48 138.7 48 185.1V190.9C48 219.1 59.71 246.1 80.34 265.3L256 429.3L431.7 265.3C452.3 246.1 464 219.1 464 190.9V185.1C464 138.7 430.4 99.07 384.7 91.44C354.4 86.4 323.6 96.28 301.9 117.1L255.1 163.9z',
			),
		),
		'label'             => __( 'Heart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design', 'lifestyle-and-hobbies', 'science-and-technology', 'social', 'travel' ),
	),
	'heart-circle-bolt'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM464.8 286.4L368.8 358.4C364.7 361.5 362.1 366.9 364.6 371.8C366.2 376.7 370.8 380 376 380H411.6L381.5 434.2C378.8 439.1 379.8 445.3 384.1 449C388.4 452.8 394.7 452.1 399.2 449.6L495.2 377.6C499.3 374.5 501 369.1 499.4 364.2C497.8 359.3 493.2 356 488 356H452.4L482.5 301.8C485.2 296.9 484.2 290.7 479.9 286.1C475.6 283.2 469.3 283 464.8 286.4V286.4z',
			),
		),
		'label'             => __( 'Heart Circle Bolt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-circle-check'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7H476.7z',
			),
		),
		'label'             => __( 'Heart Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-circle-exclamation'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM415.1 288V368C415.1 376.8 423.2 384 431.1 384C440.8 384 447.1 376.8 447.1 368V288C447.1 279.2 440.8 272 431.1 272C423.2 272 415.1 279.2 415.1 288z',
			),
		),
		'label'             => __( 'Heart Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-circle-minus'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM496 351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1z',
			),
		),
		'label'             => __( 'Heart Circle Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-circle-plus'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM448 303.1C448 295.2 440.8 287.1 432 287.1C423.2 287.1 416 295.2 416 303.1V351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H416V431.1C416 440.8 423.2 447.1 432 447.1C440.8 447.1 448 440.8 448 431.1V383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1H448V303.1z',
			),
		),
		'label'             => __( 'Heart Circle Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-circle-xmark'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 368C256 403.7 266.6 436.9 284.9 464.6L279.4 470.3C266.4 483.2 245.5 483.2 233.5 470.3L39.71 270.5C-16.22 212.5-13.23 116.6 49.7 62.68C103.6 15.73 186.5 24.72 236.5 75.67L256.4 96.64L275.4 75.67C325.4 24.72 407.3 15.73 463.2 62.68C506.1 100.1 520.7 157.6 507 208.7C484.3 198 458.8 192 432 192C334.8 192 256 270.8 256 368zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM491.3 331.3C497.6 325.1 497.6 314.9 491.3 308.7C485.1 302.4 474.9 302.4 468.7 308.7L432 345.4L395.3 308.7C389.1 302.4 378.9 302.4 372.7 308.7C366.4 314.9 366.4 325.1 372.7 331.3L409.4 368L372.7 404.7C366.4 410.9 366.4 421.1 372.7 427.3C378.9 433.6 389.1 433.6 395.3 427.3L432 390.6L468.7 427.3C474.9 433.6 485.1 433.6 491.3 427.3C497.6 421.1 497.6 410.9 491.3 404.7L454.6 368L491.3 331.3z',
			),
		),
		'label'             => __( 'Heart Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'heart-crack'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M119.4 44.1C142.7 40.22 166.2 42.2 187.1 49.43L237.8 126.9L162.3 202.3C160.8 203.9 159.1 205.1 160 208.2C160 210.3 160.1 212.4 162.6 213.9L274.6 317.9C277.5 320.6 281.1 320.7 285.1 318.2C288.2 315.6 288.9 311.2 286.8 307.8L226.4 209.7L317.1 134.1C319.7 131.1 320.7 128.5 319.5 125.3L296.8 61.74C325.4 45.03 359.2 38.53 392.6 44.1C461.5 55.58 512 115.2 512 185.1V190.9C512 232.4 494.8 272.1 464.4 300.4L283.7 469.1C276.2 476.1 266.3 480 256 480C245.7 480 235.8 476.1 228.3 469.1L47.59 300.4C17.23 272.1 0 232.4 0 190.9V185.1C0 115.2 50.52 55.58 119.4 44.09V44.1z',
			),
		),
		'label'             => __( 'Heart Crack', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'heart-pulse'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352.4 243.8l-49.83 99.5c-6.009 12-23.41 11.62-28.92-.625L216.7 216.3l-30.05 71.75L88.55 288l176.4 182.2c12.66 13.07 33.36 13.07 46.03 0l176.4-182.2l-112.1 .0052L352.4 243.8zM495.2 62.86c-54.36-46.98-137.5-38.5-187.5 13.06L288 96.25L268.3 75.92C218.3 24.36 135.2 15.88 80.81 62.86C23.37 112.5 16.84 197.6 60.18 256h105l35.93-86.25c5.508-12.88 23.66-13.12 29.54-.375l58.21 129.4l49.07-98c5.884-11.75 22.78-11.75 28.67 0l27.67 55.25h121.5C559.2 197.6 552.6 112.5 495.2 62.86z',
			),
		),
		'label'             => __( 'Heart Pulse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'helicopter'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M127.1 32C127.1 14.33 142.3 0 159.1 0H544C561.7 0 576 14.33 576 32C576 49.67 561.7 64 544 64H384V128H416C504.4 128 576 199.6 576 288V352C576 369.7 561.7 384 544 384H303.1C293.9 384 284.4 379.3 278.4 371.2L191.1 256L47.19 198.1C37.65 194.3 30.52 186.1 28.03 176.1L4.97 83.88C2.445 73.78 10.08 64 20.49 64H47.1C58.07 64 67.56 68.74 73.6 76.8L111.1 128H319.1V64H159.1C142.3 64 127.1 49.67 127.1 32V32zM384 320H512V288C512 234.1 469 192 416 192H384V320zM630.6 470.6L626.7 474.5C602.7 498.5 570.2 512 536.2 512H255.1C238.3 512 223.1 497.7 223.1 480C223.1 462.3 238.3 448 255.1 448H536.2C553.2 448 569.5 441.3 581.5 429.3L585.4 425.4C597.9 412.9 618.1 412.9 630.6 425.4C643.1 437.9 643.1 458.1 630.6 470.6L630.6 470.6z',
			),
		),
		'label'             => __( 'Helicopter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'helicopter-symbol'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M320 66.66V1.985C435.8 16.42 527.6 108.2 542 224H477.3C463.9 143.6 400.4 80.15 320 66.66V66.66zM320 510V445.4C400.4 431.9 463.9 368.4 477.3 288H542C527.6 403.8 435.8 495.6 320 510V510zM33.98 288H98.65C112.1 368.4 175.6 431.9 256 445.4V510C140.2 495.6 48.42 403.8 33.98 288zM256 1.984V66.66C175.6 80.15 112.1 143.6 98.66 224H33.98C48.42 108.2 140.2 16.42 256 1.985V1.984zM240 224H336V160C336 142.3 350.3 128 368 128C385.7 128 400 142.3 400 160V352C400 369.7 385.7 384 368 384C350.3 384 336 369.7 336 352V288H240V352C240 369.7 225.7 384 208 384C190.3 384 176 369.7 176 352V160C176 142.3 190.3 128 208 128C225.7 128 240 142.3 240 160V224z',
			),
		),
		'label'             => __( 'Helicopter Symbol', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'helmet-safety'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 280.9c0-89.17-61.83-165.4-139.6-197.4L352 174.2V49.78C352 39.91 344.1 32 334.2 32H241.8C231.9 32 224 39.91 224 49.78v124.4L171.6 83.53C93.83 115.5 32 191.7 32 280.9L31.99 352h512L544 280.9zM574.7 393.7C572.2 387.8 566.4 384 560 384h-544c-6.375 0-12.16 3.812-14.69 9.656c-2.531 5.875-1.344 12.69 3.062 17.34C7.031 413.8 72.02 480 287.1 480s280.1-66.19 283.6-69C576 406.3 577.2 399.5 574.7 393.7z',
			),
		),
		'label'             => __( 'Helmet Safety', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'helmet-un'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H368V462.5L369.5 464H456C469.3 464 480 474.7 480 488C480 501.3 469.3 512 456 512H360C353.9 512 347.1 509.7 343.5 505.4L214.9 384H87.65C39.24 384 0 344.8 0 296.3V240C0 107.5 107.5 0 240 0C367.2 0 471.2 98.91 479.5 224H480zM320 288H274.4L241.1 343.5L320 417.2V288zM285.3 103.1C281.4 97.26 274.1 94.64 267.4 96.69C260.6 98.73 256 104.9 256 112V208C256 216.8 263.2 224 272 224C280.8 224 288 216.8 288 208V164.8L322.7 216.9C326.6 222.7 333.9 225.4 340.6 223.3C347.4 221.3 352 215.1 352 208V112C352 103.2 344.8 96 336 96C327.2 96 320 103.2 320 112V155.2L285.3 103.1zM160 112C160 103.2 152.8 96 144 96C135.2 96 128 103.2 128 112V176C128 202.5 149.5 224 176 224C202.5 224 224 202.5 224 176V112C224 103.2 216.8 96 208 96C199.2 96 192 103.2 192 112V176C192 184.8 184.8 192 176 192C167.2 192 160 184.8 160 176V112z',
			),
		),
		'label'             => __( 'Helmet Un', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'highlighter'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M143.1 320V248.3C143.1 233 151.2 218.7 163.5 209.6L436.6 8.398C444 2.943 452.1 0 462.2 0C473.6 0 484.5 4.539 492.6 12.62L547.4 67.38C555.5 75.46 559.1 86.42 559.1 97.84C559.1 107 557.1 115.1 551.6 123.4L350.4 396.5C341.3 408.8 326.1 416 311.7 416H239.1L214.6 441.4C202.1 453.9 181.9 453.9 169.4 441.4L118.6 390.6C106.1 378.1 106.1 357.9 118.6 345.4L143.1 320zM489.4 99.92L460.1 70.59L245 229L330.1 314.1L489.4 99.92zM23.03 466.3L86.06 403.3L156.7 473.9L125.7 504.1C121.2 509.5 115.1 512 108.7 512H40C26.75 512 16 501.3 16 488V483.3C16 476.1 18.53 470.8 23.03 466.3V466.3z',
			),
		),
		'label'             => __( 'Highlighter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'hill-avalanche'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M161.4 91.58C160.5 87.87 160 83.99 160 80C160 53.49 181.5 32 208 32C229.9 32 248.3 46.62 254.1 66.62C268.5 45.7 292.7 32 320 32C364.2 32 400 67.82 400 112C400 119.4 398.1 126.6 397.1 133.5C426.9 145.1 448 174.1 448 208C448 236.4 433.2 261.3 410.9 275.5L492.6 357.2C508.2 372.8 533.6 372.8 549.2 357.2C564.8 341.6 564.8 316.2 549.2 300.6C533.6 284.1 508.2 284.1 492.6 300.6L458.7 266.7C493 232.3 548.8 232.3 583.1 266.7C617.5 301 617.5 356.8 583.1 391.1C552.8 421.4 505.9 425 471.7 401.9L161.4 91.58zM512 64C512 81.67 497.7 96 480 96C462.3 96 448 81.67 448 64C448 46.33 462.3 32 480 32C497.7 32 512 46.33 512 64zM480 160C480 142.3 494.3 128 512 128C529.7 128 544 142.3 544 160C544 177.7 529.7 192 512 192C494.3 192 480 177.7 480 160zM456.1 443.7C482.2 468.9 464.3 512 428.7 512H112C67.82 512 32 476.2 32 432V115.3C32 79.68 75.09 61.83 100.3 87.03L456.1 443.7z',
			),
		),
		'label'             => __( 'Hill Avalanche', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'hill-rockslide'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M252.4 103.8C249.7 98.97 249.7 93.03 252.4 88.16L279.4 40.16C282.2 35.12 287.6 32 293.4 32H346.6C352.4 32 357.8 35.12 360.6 40.16L387.6 88.16C390.3 93.03 390.3 98.97 387.6 103.8L360.6 151.8C357.8 156.9 352.4 160 346.6 160H293.4C287.6 160 282.2 156.9 279.4 151.8L252.4 103.8zM424.1 443.7C450.2 468.9 432.3 512 396.7 512H80C35.82 512 0 476.2 0 432V115.3C0 79.68 43.09 61.83 68.28 87.03L424.1 443.7zM456.2 376.6C451.1 373.8 448 368.4 448 362.6V309.4C448 303.6 451.1 298.2 456.2 295.4L504.2 268.4C509 265.7 514.1 265.7 519.8 268.4L567.8 295.4C572.9 298.2 576 303.6 576 309.4V362.6C576 368.4 572.9 373.8 567.8 376.6L519.8 403.6C514.1 406.3 509 406.3 504.2 403.6L456.2 376.6zM192 64C192 81.67 177.7 96 160 96C142.3 96 128 81.67 128 64C128 46.33 142.3 32 160 32C177.7 32 192 46.33 192 64zM352 256C352 238.3 366.3 224 384 224C401.7 224 416 238.3 416 256C416 273.7 401.7 288 384 288C366.3 288 352 273.7 352 256z',
			),
		),
		'label'             => __( 'Hill Rockslide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'hippo'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M584.2 96.36c-28.88-1.701-54.71 17.02-79.74 26.49C490 88.22 455.9 64 416 64c-11.25 0-22 2.252-32 5.877V56C384 42.75 373.2 32 360 32h-16C330.8 32 320 42.75 320 56v49C285.1 79.62 241.2 64 192 64C85.1 64 0 135.6 0 224v232C0 469.3 10.75 480 24 480h48C85.25 480 96 469.3 96 456v-62.87C128.4 407.5 166.8 416 208 416s79.63-8.492 112-22.87V456c0 13.25 10.75 24 24 24h48c13.25 0 24-10.75 24-24V288h128v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V288c17.62 0 32-14.38 32-32l-.0001-96.07C639.1 127.8 616.4 98.25 584.2 96.36zM447.1 176c-8.875 0-16-7.125-16-16S439.1 144 448 144s16 7.125 16 16S456.9 176 447.1 176z',
			),
		),
		'label'             => __( 'Hippo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'hips'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M251.6 157.6c0-1.9-.9-2.8-2.8-2.8h-40.9c-1.6 0-2.7 1.4-2.7 2.8v201.8c0 1.4 1.1 2.8 2.7 2.8h40.9c1.9 0 2.8-.9 2.8-2.8zM156.5 168c-16.1-11.8-36.3-17.9-60.3-18-18.1-.1-34.6 3.7-49.8 11.4V80.2c0-1.8-.9-2.7-2.8-2.7H2.7c-1.8 0-2.7 .9-2.7 2.7v279.2c0 1.9 .9 2.8 2.7 2.8h41c1.9 0 2.8-.9 2.8-2.8V223.3c0-.8-2.8-27 45.8-27 48.5 0 45.8 26.1 45.8 27v122.6c0 9 7.3 16.3 16.4 16.3h27.3c1.8 0 2.7-.9 2.7-2.8V223.3c0-23.4-9.3-41.8-28-55.3zm478.4 110.1c-6.8-15.7-18.4-27-34.9-34.1l-57.6-25.3c-8.6-3.6-9.2-11.2-2.6-16.1 7.4-5.5 44.3-13.9 84 6.8 1.7 1 4-.3 4-2.4v-44.7c0-1.3-.6-2.1-1.9-2.6-17.7-6.6-36.1-9.9-55.1-9.9-26.5 0-45.3 5.8-58.5 15.4-.5 .4-28.4 20-22.7 53.7 3.4 19.6 15.8 34.2 37.2 43.6l53.6 23.5c11.6 5.1 15.2 13.3 12.2 21.2-3.7 9.1-13.2 13.6-36.5 13.6-24.3 0-44.7-8.9-58.4-19.1-2.1-1.4-4.4 .2-4.4 2.3v34.4c0 10.4 4.9 17.3 14.6 20.7 15.6 5.5 31.6 8.2 48.2 8.2 12.7 0 25.8-1.2 36.3-4.3 .7-.3 36-8.9 45.6-45.8 3.5-13.5 2.4-26.5-3.1-39.1zM376.2 149.8c-31.7 0-104.2 20.1-104.2 103.5v183.5c0 .8 .6 2.7 2.7 2.7h40.9c1.9 0 2.8-.9 2.8-2.7V348c16.5 12.7 35.8 19.1 57.7 19.1 60.5 0 108.7-48.5 108.7-108.7 .1-60.3-48.2-108.6-108.6-108.6zm0 170.9c-17.2 0-31.9-6.1-44-18.2-12.2-12.2-18.2-26.8-18.2-44 0-34.5 27.6-62.2 62.2-62.2 34.5 0 62.2 27.6 62.2 62.2 .1 34.3-27.3 62.2-62.2 62.2zM228.3 72.5c-15.9 0-28.8 12.9-28.9 28.9 0 15.6 12.7 28.9 28.9 28.9s28.9-13.1 28.9-28.9c0-16.2-13-28.9-28.9-28.9z',
			),
		),
		'label'             => __( 'Hips', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hire-a-helper'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M443.1 0H71.9C67.9 37.3 37.4 67.8 0 71.7v371.5c37.4 4.9 66 32.4 71.9 68.8h372.2c3-36.4 32.5-65.8 67.9-69.8V71.7c-36.4-5.9-65-35.3-68.9-71.7zm-37 404.9c-36.3 0-18.8-2-55.1-2-35.8 0-21 2-56.1 2-5.9 0-4.9-8.2 0-9.8 22.8-7.6 22.9-10.2 24.6-12.8 10.4-15.6 5.9-83 5.9-113 0-5.3-6.4-12.8-13.8-12.8H200.4c-7.4 0-13.8 7.5-13.8 12.8 0 30-4.5 97.4 5.9 113 1.7 2.5 1.8 5.2 24.6 12.8 4.9 1.6 6 9.8 0 9.8-35.1 0-20.3-2-56.1-2-36.3 0-18.8 2-55.1 2-7.9 0-5.8-10.8 0-10.8 10.2-3.4 13.5-3.5 21.7-13.8 7.7-12.9 7.9-44.4 7.9-127.8V151.3c0-22.2-12.2-28.3-28.6-32.4-8.8-2.2-4-11.8 1-11.8 36.5 0 20.6 2 57.1 2 32.7 0 16.5-2 49.2-2 3.3 0 8.5 8.3 1 10.8-4.9 1.6-27.6 3.7-27.6 39.3 0 45.6-.2 55.8 1 68.8 0 1.3 2.3 12.8 12.8 12.8h109.2c10.5 0 12.8-11.5 12.8-12.8 1.2-13 1-23.2 1-68.8 0-35.6-22.7-37.7-27.6-39.3-7.5-2.5-2.3-10.8 1-10.8 32.7 0 16.5 2 49.2 2 36.5 0 20.6-2 57.1-2 4.9 0 9.9 9.6 1 11.8-16.4 4.1-28.6 10.3-28.6 32.4v101.2c0 83.4 .1 114.9 7.9 127.8 8.2 10.2 11.4 10.4 21.7 13.8 5.8 0 7.8 10.8 0 10.8z',
			),
		),
		'label'             => __( 'HireAHelper', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hive'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M260.4 254.9 131.5 33.1a2.208 2.208 0 0 0 -3.829 .009L.3 254.9A2.234 2.234 0 0 0 .3 257.1L129.1 478.9a2.208 2.208 0 0 0 3.83-.009L260.4 257.1A2.239 2.239 0 0 0 260.4 254.9zm39.08-25.71a2.19 2.19 0 0 0 1.9 1.111h66.51a2.226 2.226 0 0 0 1.9-3.341L259.1 33.11a2.187 2.187 0 0 0 -1.9-1.111H190.7a2.226 2.226 0 0 0 -1.9 3.341zM511.7 254.9 384.9 33.11A2.2 2.2 0 0 0 382.1 32h-66.6a2.226 2.226 0 0 0 -1.906 3.34L440.7 256 314.5 476.7a2.226 2.226 0 0 0 1.906 3.34h66.6a2.2 2.2 0 0 0 1.906-1.112L511.7 257.1A2.243 2.243 0 0 0 511.7 254.9zM366 284.9H299.5a2.187 2.187 0 0 0 -1.9 1.111l-108.8 190.6a2.226 2.226 0 0 0 1.9 3.341h66.51a2.187 2.187 0 0 0 1.9-1.111l108.8-190.6A2.226 2.226 0 0 0 366 284.9z',
			),
		),
		'label'             => __( 'Hive Blockchain Network', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hockey-puck'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 160c0-53 114.6-96 256-96s256 43 256 96s-114.6 96-256 96S0 213 0 160zM255.1 303.1C156.4 303.1 56.73 283.4 0 242.2V352c0 53 114.6 96 256 96s256-43 256-96V242.2C455.3 283.4 355.6 303.1 255.1 303.1z',
			),
		),
		'label'             => __( 'Hockey Puck', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'holly-berry'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M287.1 143.1c0 26.5 21.5 47.1 47.1 47.1c26.5 0 48-21.5 48-47.1s-21.5-47.1-48-47.1C309.5 95.99 287.1 117.5 287.1 143.1zM176 191.1c26.5 0 47.1-21.5 47.1-47.1S202.5 95.96 176 95.96c-26.5 0-47.1 21.5-47.1 47.1S149.5 191.1 176 191.1zM303.1 47.1C303.1 21.5 282.5 0 255.1 0c-26.5 0-47.1 21.5-47.1 47.1S229.5 95.99 255.1 95.99C282.5 95.99 303.1 74.5 303.1 47.1zM243.7 242.6C245.3 229.7 231.9 220.1 219.5 225.5C179.7 242.8 137.8 251.4 96.72 250.8C86.13 250.6 78.49 260.7 81.78 270.4C86.77 285.7 90.33 301.4 92.44 317.7c2.133 16.15-9.387 31.26-26.12 34.23c-16.87 2.965-33.7 4.348-50.48 4.152c-10.6-.0586-18.37 10.05-15.08 19.74c12.4 35.79 16.57 74.93 12.12 114.7c-1.723 14.96 13.71 25.67 28.02 19.8c38.47-15.95 78.77-23.81 118.2-23.34c10.58 .1953 18.36-9.91 15.07-19.6c-5.141-15.15-8.68-31.06-10.79-47.34c-2.133-16.16 9.371-31.13 26.24-34.09c16.73-2.973 33.57-4.496 50.36-4.301c10.73 .0781 18.51-10.03 15.22-19.72C242.5 324.7 238.5 283.9 243.7 242.6zM496.2 356.1c-16.78 .1953-33.61-1.188-50.48-4.152c-16.73-2.973-28.25-18.08-26.12-34.23c2.115-16.28 5.67-32.05 10.66-47.32c3.289-9.691-4.35-19.81-14.93-19.62c-41.11 .6484-83.01-7.965-122.7-25.23c-6.85-2.969-13.71-1.18-18.47 2.953c1.508 5.836 2.102 11.93 1.332 18.05c-4.539 36.23-1.049 72.56 10.12 105.1c3.395 9.988 3.029 20.73-.4766 30.52c12.44 .5 24.89 1.602 37.28 3.801c16.87 2.957 28.37 17.93 26.24 34.09c-2.115 16.27-5.654 32.19-10.79 47.34c-3.289 9.691 4.486 19.8 15.07 19.6c39.47-.4766 79.77 7.383 118.2 23.34c14.31 5.867 29.74-4.844 28.02-19.8c-4.451-39.81-.2832-78.95 12.12-114.7C514.5 366.1 506.8 356 496.2 356.1z',
			),
		),
		'label'             => __( 'Holly Berry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'hooli'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144.5 352l38.3 .8c-13.2-4.6-26-10.2-38.3-16.8zm57.7-5.3v5.3l-19.4 .8c36.5 12.5 69.9 14.2 94.7 7.2-19.9 .2-45.8-2.6-75.3-13.3zm408.9-115.2c15.9 0 28.9-12.9 28.9-28.9s-12.9-24.5-28.9-24.5c-15.9 0-28.9 8.6-28.9 24.5s12.9 28.9 28.9 28.9zm-29 120.5H640V241.5h-57.9zm-73.7 0h57.9V156.7L508.4 184zm-31-119.4c-18.2-18.2-50.4-17.1-50.4-17.1s-32.3-1.1-50.4 17.1c-18.2 18.2-16.8 33.9-16.8 52.6s-1.4 34.3 16.8 52.5 50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.8-33.8 16.8-52.5-.1-18.8 1.3-34.5-16.8-52.6zm-39.8 71.9c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9zm-106.2-71.9c-18.2-18.2-50.4-17.1-50.4-17.1s-32.2-1.1-50.4 17.1c-1.9 1.9-3.7 3.9-5.3 6-38.2-29.6-72.5-46.5-102.1-61.1v-20.7l-22.5 10.6c-54.4-22.1-89-18.2-97.3 .1 0 0-24.9 32.8 61.8 110.8V352h57.9v-28.6c-6.5-4.2-13-8.7-19.4-13.6-14.8-11.2-27.4-21.6-38.4-31.4v-31c13.1 14.7 30.5 31.4 53.4 50.3l4.5 3.6v-29.8c0-6.9 1.7-18.2 10.8-18.2s10.6 6.9 10.6 15V317c18 12.2 37.3 22.1 57.7 29.6v-93.9c0-18.7-13.4-37.4-40.6-37.4-15.8-.1-30.5 8.2-38.5 21.9v-54.3c41.9 20.9 83.9 46.5 99.9 58.3-10.2 14.6-9.3 28.1-9.3 43.7 0 18.7-1.4 34.3 16.8 52.5s50.4 17.1 50.4 17.1 32.3 1.1 50.4-17.1c18.2-18.2 16.7-33.8 16.7-52.5 0-18.5 1.5-34.2-16.7-52.3zM65.2 184v63.3c-48.7-54.5-38.9-76-35.2-79.1 13.5-11.4 37.5-8 64.4 2.1zm226.5 120.5c0 3.6-1.8 12.5-10.7 12.5s-10.7-8.9-10.7-12.5v-40.4c0-8.7 7.3-10.9 10.7-10.9s10.7 2.1 10.7 10.9z',
			),
		),
		'label'             => __( 'Hooli', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hornbill'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M76.38 370.3a37.8 37.8 0 1 1 -32.07-32.42c-78.28-111.3 52-190.5 52-190.5-5.86 43-8.24 91.16-8.24 91.16-67.31 41.49 .93 64.06 39.81 72.87a140.4 140.4 0 0 0 131.7 91.94c1.92 0 3.77-.21 5.67-.28l.11 18.86c-99.22 1.39-158.7-29.14-188.9-51.6zm108-327.7A37.57 37.57 0 0 0 181 21.45a37.95 37.95 0 1 0 -31.17 54.22c-22.55 29.91-53.83 89.57-52.42 190l21.84-.15c0-.9-.14-1.77-.14-2.68A140.4 140.4 0 0 1 207 132.7c8-37.71 30.7-114.3 73.8-44.29 0 0 48.14 2.38 91.18 8.24 0 0-77.84-128-187.6-54.06zm304.2 134.2a37.94 37.94 0 1 0 -53.84-28.7C403 126.1 344.9 99 251.3 100.3l.14 22.5c2.7-.15 5.39-.41 8.14-.41a140.4 140.4 0 0 1 130.5 88.76c39.1 9 105.1 31.58 38.46 72.54 0 0-2.34 48.13-8.21 91.16 0 0 133.4-81.16 49-194.6a37.45 37.45 0 0 0 19.31-3.5zM374.1 436.2c21.43-32.46 46.42-89.69 45.14-179.7l-19.52 .14c.08 2.06 .3 4.07 .3 6.15a140.3 140.3 0 0 1 -91.39 131.4c-8.85 38.95-31.44 106.7-72.77 39.49 0 0-48.12-2.34-91.19-8.22 0 0 79.92 131.3 191.9 51a37.5 37.5 0 0 0 3.64 14 37.93 37.93 0 1 0 33.89-54.29z',
			),
		),
		'label'             => __( 'Hornbill', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'horse'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.9 76.61c0-8.125-3.05-15.84-8.55-21.84c-3.875-4-8.595-9.125-13.72-14.5c11.12-6.75 19.47-17.51 22.22-30.63c.9999-5-2.849-9.641-7.974-9.641L447.9 0c-70.62 0-127.9 57.25-127.9 128L159.1 128c-28.87 0-54.38 12.1-72 33.12L87.1 160C39.5 160 .0001 199.5 .0001 248L0 304c0 8.875 7.125 15.1 15.1 15.1L31.1 320c8.874 0 15.1-7.125 15.1-16l.0005-56c0-13.25 6.884-24.4 16.76-31.65c-.125 2.5-.758 5.024-.758 7.649c0 27.62 11.87 52.37 30.5 69.87l-25.65 68.61c-4.586 12.28-5.312 25.68-2.128 38.4l21.73 86.89C92.02 502 104.8 512 119.5 512h32.98c20.81 0 36.08-19.55 31.05-39.74L162.2 386.9l23.78-63.61l133.1 22.34L319.1 480c0 17.67 14.33 32 31.1 32h31.1c17.67 0 31.1-14.33 31.1-32l.0166-161.8C435.7 297.1 447.1 270.5 447.1 240c0-.25-.1025-.3828-.1025-.6328V136.9L463.9 144l18.95 37.72c7.481 14.86 25.08 21.55 40.52 15.34l32.54-13.05c12.13-4.878 20.11-16.67 20.09-29.74L575.9 76.61zM511.9 96c-8.75 0-15.1-7.125-15.1-16S503.1 64 511.9 64c8.874 0 15.1 7.125 15.1 16S520.8 96 511.9 96z',
			),
		),
		'label'             => __( 'Horse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'travel' ),
	),
	'horse-head'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M509.8 332.5l-69.89-164.3c-14.88-41.25-50.38-70.98-93.01-79.24c18-10.63 46.35-35.9 34.23-82.29c-1.375-5.001-7.112-7.972-11.99-6.097l-202.3 75.66C35.89 123.4 0 238.9 0 398.8v81.24C0 497.7 14.25 512 32 512h236.2c23.75 0 39.3-25.03 28.55-46.28l-40.78-81.71V383.3c-45.63-3.5-84.66-30.7-104.3-69.58c-1.625-3.125-.9342-6.951 1.566-9.327l12.11-12.11c3.875-3.875 10.64-2.692 12.89 2.434c14.88 33.63 48.17 57.38 87.42 57.38c17.13 0 33.05-5.091 46.8-13.22l46 63.9c6 8.501 15.75 13.34 26 13.34h50.28c8.501 0 16.61-3.388 22.61-9.389l45.34-39.84C511.6 357.7 514.4 344.2 509.8 332.5zM328.1 223.1c-13.25 0-23.96-10.75-23.96-24c0-13.25 10.75-23.92 24-23.92s23.94 10.73 23.94 23.98C352 213.3 341.3 223.1 328.1 223.1z',
			),
		),
		'label'             => __( 'Horse Head', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'hospital'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 48C192 21.49 213.5 0 240 0H400C426.5 0 448 21.49 448 48V512H368V432C368 405.5 346.5 384 320 384C293.5 384 272 405.5 272 432V512H192V48zM312 64C303.2 64 296 71.16 296 80V104H272C263.2 104 256 111.2 256 120V136C256 144.8 263.2 152 272 152H296V176C296 184.8 303.2 192 312 192H328C336.8 192 344 184.8 344 176V152H368C376.8 152 384 144.8 384 136V120C384 111.2 376.8 104 368 104H344V80C344 71.16 336.8 64 328 64H312zM160 96V512H48C21.49 512 0 490.5 0 464V320H80C88.84 320 96 312.8 96 304C96 295.2 88.84 288 80 288H0V224H80C88.84 224 96 216.8 96 208C96 199.2 88.84 192 80 192H0V144C0 117.5 21.49 96 48 96H160zM592 96C618.5 96 640 117.5 640 144V192H560C551.2 192 544 199.2 544 208C544 216.8 551.2 224 560 224H640V288H560C551.2 288 544 295.2 544 304C544 312.8 551.2 320 560 320H640V464C640 490.5 618.5 512 592 512H480V96H592z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M296 96C296 87.16 303.2 80 312 80H328C336.8 80 344 87.16 344 96V120H368C376.8 120 384 127.2 384 136V152C384 160.8 376.8 168 368 168H344V192C344 200.8 336.8 208 328 208H312C303.2 208 296 200.8 296 192V168H272C263.2 168 256 160.8 256 152V136C256 127.2 263.2 120 272 120H296V96zM408 0C447.8 0 480 32.24 480 72V80H568C607.8 80 640 112.2 640 152V440C640 479.8 607.8 512 568 512H71.98C32.19 512 0 479.8 0 440V152C0 112.2 32.24 80 72 80H160V72C160 32.24 192.2 0 232 0L408 0zM480 128V464H568C581.3 464 592 453.3 592 440V336H536C522.7 336 512 325.3 512 312C512 298.7 522.7 288 536 288H592V240H536C522.7 240 512 229.3 512 216C512 202.7 522.7 192 536 192H592V152C592 138.7 581.3 128 568 128H480zM48 152V192H104C117.3 192 128 202.7 128 216C128 229.3 117.3 240 104 240H48V288H104C117.3 288 128 298.7 128 312C128 325.3 117.3 336 104 336H48V440C48 453.3 58.74 464 71.98 464H160V128H72C58.75 128 48 138.7 48 152V152zM208 464H272V400C272 373.5 293.5 352 320 352C346.5 352 368 373.5 368 400V464H432V72C432 58.75 421.3 48 408 48H232C218.7 48 208 58.75 208 72V464z',
			),
		),
		'label'             => __( 'Hospital', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'hospital-user'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M272 0C298.5 0 320 21.49 320 48V367.8C281.8 389.2 256 430 256 476.9C256 489.8 259.6 501.8 265.9 512H48C21.49 512 0 490.5 0 464V384H144C152.8 384 160 376.8 160 368C160 359.2 152.8 352 144 352H0V288H144C152.8 288 160 280.8 160 272C160 263.2 152.8 256 144 256H0V48C0 21.49 21.49 0 48 0H272zM152 64C143.2 64 136 71.16 136 80V104H112C103.2 104 96 111.2 96 120V136C96 144.8 103.2 152 112 152H136V176C136 184.8 143.2 192 152 192H168C176.8 192 184 184.8 184 176V152H208C216.8 152 224 144.8 224 136V120C224 111.2 216.8 104 208 104H184V80C184 71.16 176.8 64 168 64H152zM512 272C512 316.2 476.2 352 432 352C387.8 352 352 316.2 352 272C352 227.8 387.8 192 432 192C476.2 192 512 227.8 512 272zM288 477.1C288 425.7 329.7 384 381.1 384H482.9C534.3 384 576 425.7 576 477.1C576 496.4 560.4 512 541.1 512H322.9C303.6 512 288 496.4 288 477.1V477.1z',
			),
		),
		'label'             => __( 'Hospital User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'hot-tub-person'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M414.3 177.6C415.3 185.9 421.1 192 429.1 192h16.13c9.5 0 17-8.625 16-18.38C457.8 134.5 439.6 99.12 412 76.5c-17.38-14.12-28.88-36.75-32-62.12C379 6.125 372.3 0 364.3 0h-16.12c-9.5 0-17.12 8.625-16 18.38c4.375 39.12 22.38 74.5 50.13 97.13C399.6 129.6 411 152.2 414.3 177.6zM306.3 177.6C307.3 185.9 313.1 192 321.1 192h16.13c9.5 0 17-8.625 16-18.38C349.8 134.5 331.6 99.12 304 76.5c-17.38-14.12-28.88-36.75-32-62.12C271 6.125 264.3 0 256.3 0h-16.17C230.6 0 223 8.625 224.1 18.38C228.5 57.5 246.5 92.88 274.3 115.5C291.6 129.6 303 152.2 306.3 177.6zM480 256h-224L145.1 172.8C133.1 164.5 120.5 160 106.6 160H64C28.62 160 0 188.6 0 224v224c0 35.38 28.62 64 64 64h384c35.38 0 64-28.62 64-64V288C512 270.4 497.6 256 480 256zM128 440C128 444.4 124.4 448 120 448h-16C99.62 448 96 444.4 96 440v-112C96 323.6 99.62 320 104 320h16C124.4 320 128 323.6 128 328V440zM224 440C224 444.4 220.4 448 216 448h-16C195.6 448 192 444.4 192 440v-112C192 323.6 195.6 320 200 320h16C220.4 320 224 323.6 224 328V440zM320 440c0 4.375-3.625 8-8 8h-16C291.6 448 288 444.4 288 440v-112c0-4.375 3.625-8 8-8h16c4.375 0 8 3.625 8 8V440zM416 440c0 4.375-3.625 8-8 8h-16C387.6 448 384 444.4 384 440v-112c0-4.375 3.625-8 8-8h16c4.375 0 8 3.625 8 8V440zM64 128c35.38 0 64-28.62 64-64S99.38 0 64 0S0 28.62 0 64S28.62 128 64 128z',
			),
		),
		'label'             => __( 'Hot Tub Person', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'hotdog'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M488.6 23.44c-31.06-31.19-81.76-31.16-112.8 .0313L24.46 374.8c-20.83 19.96-29.19 49.66-21.83 77.6c7.36 27.94 29.07 49.65 57.02 57.01c27.94 7.36 57.64-1 77.6-21.83l351.3-351.3C519.7 105.2 519.8 54.5 488.6 23.44zM438.8 118.4c-19.59 19.59-37.39 22.52-51.74 25.01c-12.97 2.246-22.33 3.867-34.68 16.22c-12.35 12.35-13.97 21.71-16.22 34.69c-2.495 14.35-5.491 32.19-25.08 51.78c-19.59 19.59-37.43 22.58-51.78 25.08C246.3 273.4 236.9 275.1 224.6 287.4c-12.35 12.35-13.97 21.71-16.22 34.68C205.9 336.4 202.9 354.3 183.3 373.9c-19.59 19.59-37.43 22.58-51.78 25.08C118.5 401.2 109.2 402.8 96.83 415.2c-6.238 6.238-16.34 6.238-22.58 0c-6.238-6.238-6.238-16.35 0-22.58c19.59-19.59 37.43-22.58 51.78-25.07c12.97-2.245 22.33-3.869 34.68-16.22c12.35-12.35 13.97-21.71 16.22-34.69c2.495-14.35 5.492-32.19 25.08-51.78s37.43-22.58 51.78-25.08c12.97-2.246 22.33-3.869 34.68-16.22s13.97-21.71 16.22-34.68c2.495-14.35 5.492-32.19 25.08-51.78c19.59-19.59 37.43-22.58 51.78-25.07c12.97-2.246 22.28-3.815 34.63-16.17c6.238-6.238 16.36-6.238 22.59 0C444.1 102.1 444.1 112.2 438.8 118.4zM32.44 321.5l290-290l-11.48-11.6c-24.95-24.95-63.75-26.57-86.58-3.743L17.1 223.4C-5.73 246.3-4.108 285.1 20.84 310L32.44 321.5zM480.6 189.5l-290 290l11.48 11.6c24.95 24.95 63.75 26.57 86.58 3.743l207.3-207.3c22.83-22.83 21.21-61.63-3.743-86.58L480.6 189.5z',
			),
		),
		'label'             => __( 'Hotdog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'hotel'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 0C497.7 0 512 14.33 512 32C512 49.67 497.7 64 480 64V448C497.7 448 512 462.3 512 480C512 497.7 497.7 512 480 512H304V448H208V512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H480zM112 96C103.2 96 96 103.2 96 112V144C96 152.8 103.2 160 112 160H144C152.8 160 160 152.8 160 144V112C160 103.2 152.8 96 144 96H112zM224 144C224 152.8 231.2 160 240 160H272C280.8 160 288 152.8 288 144V112C288 103.2 280.8 96 272 96H240C231.2 96 224 103.2 224 112V144zM368 96C359.2 96 352 103.2 352 112V144C352 152.8 359.2 160 368 160H400C408.8 160 416 152.8 416 144V112C416 103.2 408.8 96 400 96H368zM96 240C96 248.8 103.2 256 112 256H144C152.8 256 160 248.8 160 240V208C160 199.2 152.8 192 144 192H112C103.2 192 96 199.2 96 208V240zM240 192C231.2 192 224 199.2 224 208V240C224 248.8 231.2 256 240 256H272C280.8 256 288 248.8 288 240V208C288 199.2 280.8 192 272 192H240zM352 240C352 248.8 359.2 256 368 256H400C408.8 256 416 248.8 416 240V208C416 199.2 408.8 192 400 192H368C359.2 192 352 199.2 352 208V240zM256 288C211.2 288 173.5 318.7 162.1 360.2C159.7 373.1 170.7 384 184 384H328C341.3 384 352.3 373.1 349 360.2C338.5 318.7 300.8 288 256 288z',
			),
		),
		'label'             => __( 'Hotel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'hotjar'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M414.9 161.5C340.2 29 121.1 0 121.1 0S222.2 110.4 93 197.7C11.3 252.8-21 324.4 14 402.6c26.8 59.9 83.5 84.3 144.6 93.4-29.2-55.1-6.6-122.4-4.1-129.6 57.1 86.4 165 0 110.8-93.9 71 15.4 81.6 138.6 27.1 215.5 80.5-25.3 134.1-88.9 148.8-145.6 15.5-59.3 3.7-127.9-26.3-180.9z',
			),
		),
		'label'             => __( 'Hotjar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hourglass'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 0C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H352zM111.1 128H272C282.4 112.4 288 93.98 288 74.98V64H96V74.98C96 93.98 101.6 112.4 111.1 128zM111.1 384H272C268.5 378.7 264.5 373.7 259.9 369.1L192 301.3L124.1 369.1C119.5 373.7 115.5 378.7 111.1 384V384z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 24C0 10.75 10.75 0 24 0H360C373.3 0 384 10.75 384 24C384 37.25 373.3 48 360 48H352V66.98C352 107.3 335.1 145.1 307.5 174.5L225.9 256L307.5 337.5C335.1 366 352 404.7 352 445V464H360C373.3 464 384 474.7 384 488C384 501.3 373.3 512 360 512H24C10.75 512 0 501.3 0 488C0 474.7 10.75 464 24 464H32V445C32 404.7 48.01 366 76.52 337.5L158.1 256L76.52 174.5C48.01 145.1 32 107.3 32 66.98V48H24C10.75 48 0 37.25 0 24V24zM99.78 384H284.2C281 379.6 277.4 375.4 273.5 371.5L192 289.9L110.5 371.5C106.6 375.4 102.1 379.6 99.78 384H99.78zM284.2 128C296.1 110.4 304 89.03 304 66.98V48H80V66.98C80 89.03 87 110.4 99.78 128H284.2z',
			),
		),
		'label'             => __( 'Hourglass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hourglass-empty'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 32C0 14.33 14.33 0 32 0H352C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32zM96 64V74.98C96 100.4 106.1 124.9 124.1 142.9L192 210.7L259.9 142.9C277.9 124.9 288 100.4 288 74.98V64H96zM96 448H288V437C288 411.6 277.9 387.1 259.9 369.1L192 301.3L124.1 369.1C106.1 387.1 96 411.6 96 437V448z',
			),
		),
		'label'             => __( 'Hourglass Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hourglass-end'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 0C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H352zM124.1 142.9L192 210.7L259.9 142.9C277.9 124.9 288 100.4 288 74.98V64H96V74.98C96 100.4 106.1 124.9 124.1 142.9z',
			),
		),
		'label'             => __( 'Hourglass End', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'hourglass-start'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 0C369.7 0 384 14.33 384 32C384 49.67 369.7 64 352 64V74.98C352 117.4 335.1 158.1 305.1 188.1L237.3 256L305.1 323.9C335.1 353.9 352 394.6 352 437V448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V437C32 394.6 48.86 353.9 78.86 323.9L146.7 256L78.86 188.1C48.86 158.1 32 117.4 32 74.98V64C14.33 64 0 49.67 0 32C0 14.33 14.33 0 32 0H352zM259.9 369.1L192 301.3L124.1 369.1C106.1 387.1 96 411.6 96 437V448H288V437C288 411.6 277.9 387.1 259.9 369.1V369.1z',
			),
		),
		'label'             => __( 'Hourglass Start', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'house'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z',
			),
		),
		'label'             => __( 'House', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'house-chimney'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M511.8 287.6L512.5 447.7C512.5 450.5 512.3 453.1 512 455.8V472C512 494.1 494.1 512 472 512H456C454.9 512 453.8 511.1 452.7 511.9C451.3 511.1 449.9 512 448.5 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L416 100.7V64C416 46.33 430.3 32 448 32H480C497.7 32 512 46.33 512 64V185L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6L511.8 287.6z',
			),
		),
		'label'             => __( 'House Chimney', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'house-chimney-crack'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.6 483.2 483.9 512 448.5 512H326.4L288 448L368.8 380.7C376.6 374.1 376.5 362.1 368.5 355.8L250.6 263.2C235.1 251.7 216.8 270.1 227.8 285.2L288 368L202.5 439.2C196.5 444.3 194.1 452.1 199.1 459.8L230.4 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L416 100.7V64C416 46.33 430.3 32 448 32H480C497.7 32 512 46.33 512 64V185L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5z',
			),
		),
		'label'             => __( 'House Chimney Crack', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment' ),
	),
	'house-chimney-medical'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M511.8 287.6L512.5 447.7C512.6 483.2 483.9 512 448.5 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L416 100.7V64C416 46.33 430.3 32 448 32H480C497.7 32 512 46.33 512 64V185L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6L511.8 287.6zM400 248C400 239.2 392.8 232 384 232H328V176C328 167.2 320.8 160 312 160H264C255.2 160 248 167.2 248 176V232H192C183.2 232 176 239.2 176 248V296C176 304.8 183.2 312 192 312H248V368C248 376.8 255.2 384 264 384H312C320.8 384 328 376.8 328 368V312H384C392.8 312 400 304.8 400 296V248z',
			),
		),
		'label'             => __( 'House Chimney Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-chimney-user'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M511.8 287.6L512.5 447.7C512.6 483.2 483.9 512 448.5 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L416 100.7V64C416 46.33 430.3 32 448 32H480C497.7 32 512 46.33 512 64V185L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6L511.8 287.6zM288 288C323.3 288 352 259.3 352 224C352 188.7 323.3 160 288 160C252.7 160 224 188.7 224 224C224 259.3 252.7 288 288 288zM192 416H384C392.8 416 400 408.8 400 400C400 355.8 364.2 320 320 320H256C211.8 320 176 355.8 176 400C176 408.8 183.2 416 192 416z',
			),
		),
		'label'             => __( 'House Chimney User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'house-chimney-window'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.6 483.2 483.9 512 448.5 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L416 100.7V64C416 46.33 430.3 32 448 32H480C497.7 32 512 46.33 512 64V185L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5L575.8 255.5zM248 192C234.7 192 224 202.7 224 216V296C224 309.3 234.7 320 248 320H328C341.3 320 352 309.3 352 296V216C352 202.7 341.3 192 328 192H248z',
			),
		),
		'label'             => __( 'House Chimney Window', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'house-circle-check'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C404.2 192 328.8 262.3 320.7 352L320 352zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'House Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'house-circle-exclamation'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C404.2 192 328.8 262.3 320.7 352L320 352zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'House Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'house-circle-xmark'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C404.2 192 328.8 262.3 320.7 352L320 352zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'House Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'house-crack'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M511.8 287.6L512.5 447.7C512.6 483.2 483.9 512 448.5 512H326.4L288 448L368.8 380.7C376.6 374.1 376.5 362.1 368.5 355.8L250.6 263.2C235.1 251.7 216.8 270.1 227.8 285.2L288 368L202.5 439.2C196.5 444.3 194.1 452.1 199.1 459.8L230.4 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8z',
			),
		),
		'label'             => __( 'House Crack', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment' ),
	),
	'house-fire'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 350.1L288 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L447.3 128.1C434.9 127.2 422.3 131.1 412.5 139.9C377.1 171.5 346.9 207.6 325.2 242.7C304.3 276.5 288 314.9 288 350.1H288zM509 221.5C516.9 211.6 525.8 200.8 535.5 191.1C541.1 186.9 549.9 186.9 555.5 192C580.2 214.7 601.1 244.7 615.8 273.2C630.4 301.2 640 329.9 640 350.1C640 437.9 568.7 512 480 512C390.3 512 320 437.8 320 350.1C320 323.7 332.7 291.5 352.4 259.5C372.4 227.2 400.5 193.4 433.8 163.7C439.4 158.7 447.1 158.8 453.5 163.8C473.3 181.6 491.8 200.7 509 221.5V221.5zM550 336.1C548 332.1 546 328.1 543 324.1L507 367C507 367 449 293 445 288C415 324.1 400 346 400 370C400 419 436 448 481 448C499 448 515 443 530 432.1C560 412 568 370 550 336.1z',
			),
		),
		'label'             => __( 'House Fire', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'house-flag'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M480 0C497.7 0 512 14.33 512 32H624C632.8 32 640 39.16 640 48V176C640 184.8 632.8 192 624 192H512V512H448V32C448 14.33 462.3 0 480 0V0zM416 512H416.1L416.8 512H352C334.3 512 320 497.7 320 480V384C320 366.3 305.7 352 288 352H224C206.3 352 192 366.3 192 384V480C192 497.7 177.7 512 160 512H96C78.33 512 64 497.7 64 480V288H31.1C18.61 288 6.631 279.7 1.985 267.1C-2.661 254.5 1.005 240.4 11.17 231.7L235.2 39.7C247.2 29.43 264.8 29.43 276.8 39.7L416 159V512z',
			),
		),
		'label'             => __( 'House Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'house-flood-water'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M482.8 134.1C494 142.3 498.7 156.7 494.4 169.9C490.1 183.1 477.9 192 464 192H447.4L447.7 265.2C446.1 266.1 444.6 267.1 443.2 268.1C425.2 280.5 403 288.5 384 288.5C364.4 288.5 343.2 280.8 324.8 268.1C302.8 252.6 273.3 252.6 251.2 268.1C234 279.9 213.2 288.5 192 288.5C172.1 288.5 150.8 280.5 132.9 268.1C131.3 267 129.7 265.1 128 265V192H112C98.14 192 85.86 183.1 81.57 169.9C77.28 156.7 81.97 142.3 93.18 134.1L269.2 6.12C280.4-2.04 295.6-2.04 306.8 6.12L482.8 134.1zM269.5 309.9C280.6 302 295.4 302 306.5 309.9C328.1 325.4 356.5 336 384 336C410.9 336 439.4 325.2 461.4 309.9L461.5 309.9C473.4 301.4 489.5 302.1 500.7 311.6C515 323.5 533.2 332.6 551.3 336.8C568.5 340.8 579.2 358.1 575.2 375.3C571.2 392.5 553.1 403.2 536.7 399.2C512.2 393.4 491.9 382.6 478.5 374.2C449.5 389.7 417 400 384 400C352.1 400 323.4 390.1 303.6 381.1C297.7 378.5 292.5 375.8 288 373.4C283.5 375.8 278.3 378.5 272.4 381.1C252.6 390.1 223.9 400 192 400C158.1 400 126.5 389.7 97.5 374.2C84.12 382.6 63.79 393.4 39.27 399.2C22.06 403.2 4.854 392.5 .8426 375.3C-3.169 358.1 7.532 340.8 24.74 336.8C42.84 332.6 60.96 323.5 75.31 311.6C86.46 302.1 102.6 301.4 114.5 309.9L114.6 309.9C136.7 325.2 165.1 336 192 336C219.5 336 247 325.4 269.5 309.9H269.5zM461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448C410.9 448 439.4 437.2 461.4 421.9H461.4z',
			),
		),
		'label'             => __( 'House Flood Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'house-flood-water-circle-arrow-right' => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 144C288 223.5 223.5 288 144 288C64.47 288 0 223.5 0 144C0 64.47 64.47 .0002 144 .0002C223.5 .0002 288 64.47 288 144zM140.7 99.31L169.4 128H80C71.16 128 64 135.2 64 144C64 152.8 71.16 160 80 160H169.4L140.7 188.7C134.4 194.9 134.4 205.1 140.7 211.3C146.9 217.6 157.1 217.6 163.3 211.3L219.3 155.3C225.6 149.1 225.6 138.9 219.3 132.7L163.3 76.69C157.1 70.44 146.9 70.44 140.7 76.69C134.4 82.94 134.4 93.07 140.7 99.31V99.31zM301 64.42L381.2 6.12C392.4-2.04 407.6-2.04 418.8 6.12L594.8 134.1C606 142.3 610.7 156.7 606.4 169.9C602.1 183.1 589.9 192 576 192H559.4L559.7 276.4C557.5 274.8 555.3 273.2 553.2 271.5C531 252.8 498.9 251.4 475.2 268.1C457.2 280.5 435 288.5 416 288.5C396.4 288.5 375.2 280.8 356.8 268.1C334.8 252.6 305.3 252.6 283.2 268.1C273.2 274.1 262 280.7 250.2 284.3C292.6 252.2 319.1 201.3 319.1 144C319.1 115.4 313.2 88.32 301 64.42V64.42zM416 336C442.9 336 471.4 325.2 493.4 309.9L493.5 309.9C505.4 301.4 521.5 302.1 532.7 311.6C547 323.5 565.2 332.6 583.3 336.8C600.5 340.8 611.2 358.1 607.2 375.3C603.2 392.5 585.1 403.2 568.7 399.2C544.2 393.4 523.9 382.6 510.5 374.2C481.5 389.7 449 400 416 400C384.1 400 355.4 390.1 335.6 381.1C329.7 378.5 324.5 375.8 320 373.4C315.5 375.8 310.3 378.5 304.4 381.1C284.6 390.1 255.9 400 224 400C190.1 400 158.5 389.7 129.5 374.2C116.1 382.6 95.79 393.4 71.27 399.2C54.06 403.2 36.85 392.5 32.84 375.3C28.83 358.1 39.53 340.8 56.74 336.8C74.84 332.6 92.96 323.5 107.3 311.6C118.5 302.1 134.6 301.4 146.5 309.9L146.6 309.9C168.7 325.2 197.1 336 224 336C251.5 336 279 325.4 301.5 309.9C312.6 302 327.4 302 338.5 309.9C360.1 325.4 388.5 336 416 336H416zM338.5 421.9C360.1 437.4 388.5 448 416 448C442.9 448 471.4 437.2 493.4 421.9L493.5 421.9C505.4 413.4 521.5 414.1 532.7 423.6C547 435.5 565.2 444.6 583.3 448.8C600.5 452.8 611.2 470.1 607.2 487.3C603.2 504.5 585.1 515.2 568.7 511.2C544.2 505.4 523.9 494.6 510.5 486.2C481.5 501.7 449 512 416 512C384.1 512 355.4 502.1 335.6 493.1C329.7 490.5 324.5 487.8 320 485.4C315.5 487.8 310.3 490.5 304.4 493.1C284.6 502.1 255.9 512 224 512C190.1 512 158.5 501.7 129.5 486.2C116.1 494.6 95.79 505.4 71.27 511.2C54.06 515.2 36.85 504.5 32.84 487.3C28.83 470.1 39.53 452.8 56.74 448.8C74.84 444.6 92.96 435.5 107.3 423.6C118.5 414.1 134.6 413.4 146.5 421.9L146.6 421.9C168.7 437.2 197.1 448 224 448C251.5 448 279 437.4 301.5 421.9C312.6 414 327.4 414 338.5 421.9H338.5z',
			),
		),
		'label'             => __( 'House Flood Water Circle Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'house-laptop'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M218.3 8.486C230.6-2.829 249.4-2.829 261.7 8.486L469.7 200.5C476.4 206.7 480 215.2 480 224H336C316.9 224 299.7 232.4 288 245.7V208C288 199.2 280.8 192 272 192H208C199.2 192 192 199.2 192 208V272C192 280.8 199.2 288 208 288H271.1V416H112C85.49 416 64 394.5 64 368V256H32C18.83 256 6.996 247.9 2.198 235.7C-2.6 223.4 .6145 209.4 10.3 200.5L218.3 8.486zM336 256H560C577.7 256 592 270.3 592 288V448H624C632.8 448 640 455.2 640 464C640 490.5 618.5 512 592 512H303.1C277.5 512 255.1 490.5 255.1 464C255.1 455.2 263.2 448 271.1 448H303.1V288C303.1 270.3 318.3 256 336 256zM352 304V448H544V304H352z',
			),
		),
		'label'             => __( 'House Laptop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'house-lock'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M384 480C384 491.7 387.1 502.6 392.6 512H392C369.9 512 352 494.1 352 472V384C352 366.3 337.7 352 320 352H256C238.3 352 224 366.3 224 384V472C224 494.1 206.1 512 184 512H128.1C126.6 512 125.1 511.9 123.6 511.8C122.4 511.9 121.2 512 120 512H104C81.91 512 64 494.1 64 472V360C64 359.1 64.03 358.1 64.09 357.2V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L490.7 166.3C447.2 181.7 416 223.2 416 272V296.6C396.9 307.6 384 328.3 384 352L384 480zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'House Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'house-medical'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.6 483.2 483.9 512 448.5 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5H575.8zM328 232V176C328 167.2 320.8 160 312 160H264C255.2 160 248 167.2 248 176V232H192C183.2 232 176 239.2 176 248V296C176 304.8 183.2 312 192 312H248V368C248 376.8 255.2 384 264 384H312C320.8 384 328 376.8 328 368V312H384C392.8 312 400 304.8 400 296V248C400 239.2 392.8 232 384 232H328z',
			),
		),
		'label'             => __( 'House Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-medical-circle-check'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320.5 381.5C324.6 435.5 353 482.6 394.8 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C453.6 192 414.7 207 384.3 232L384 232H328V176C328 167.2 320.8 160 311.1 160H263.1C255.2 160 247.1 167.2 247.1 176V232H191.1C183.2 232 175.1 239.2 175.1 248V296C175.1 304.8 183.2 312 191.1 312H247.1V368C247.1 376.8 255.2 384 263.1 384H311.1C315.1 384 318 383.1 320.5 381.5H320.5zM328 312H329.1C328.7 313.1 328.4 314.3 328 315.4V312zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'House Medical Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-medical-circle-exclamation'     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320.5 381.5C324.6 435.5 353 482.6 394.8 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C453.6 192 414.7 207 384.3 232L384 232H328V176C328 167.2 320.8 160 311.1 160H263.1C255.2 160 247.1 167.2 247.1 176V232H191.1C183.2 232 175.1 239.2 175.1 248V296C175.1 304.8 183.2 312 191.1 312H247.1V368C247.1 376.8 255.2 384 263.1 384H311.1C315.1 384 318 383.1 320.5 381.5H320.5zM328 312H329.1C328.7 313.1 328.4 314.3 328 315.4V312zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'House Medical Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-medical-circle-xmark'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320.5 381.5C324.6 435.5 353 482.6 394.8 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L522.1 193.9C513.6 192.7 504.9 192 496 192C453.6 192 414.7 207 384.3 232L384 232H328V176C328 167.2 320.8 160 311.1 160H263.1C255.2 160 247.1 167.2 247.1 176V232H191.1C183.2 232 175.1 239.2 175.1 248V296C175.1 304.8 183.2 312 191.1 312H247.1V368C247.1 376.8 255.2 384 263.1 384H311.1C315.1 384 318 383.1 320.5 381.5H320.5zM328 312H329.1C328.7 313.1 328.4 314.3 328 315.4V312zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'House Medical Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-medical-flag'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M480 0C497.7 0 512 14.33 512 32H624C632.8 32 640 39.16 640 48V176C640 184.8 632.8 192 624 192H512V512H448V32C448 14.33 462.3 0 480 0V0zM416 512H416.1L416.8 512H96C78.33 512 64 497.7 64 480V288H31.1C18.61 288 6.631 279.7 1.985 267.1C-2.661 254.5 1.005 240.4 11.17 231.7L235.2 39.7C247.2 29.43 264.8 29.43 276.8 39.7L416 159V512zM223.1 256H175.1C167.2 256 159.1 263.2 159.1 272V304C159.1 312.8 167.2 320 175.1 320H223.1V368C223.1 376.8 231.2 384 239.1 384H271.1C280.8 384 287.1 376.8 287.1 368V320H336C344.8 320 352 312.8 352 304V272C352 263.2 344.8 256 336 256H287.1V208C287.1 199.2 280.8 192 271.1 192H239.1C231.2 192 223.1 199.2 223.1 208V256z',
			),
		),
		'label'             => __( 'House Medical Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'house-signal'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M314.3 8.486C326.6-2.829 345.4-2.829 357.7 8.486L565.7 200.5C575.4 209.4 578.6 223.4 573.8 235.7C569 247.9 557.2 256 544 256H512V368C512 394.5 490.5 416 464 416H296.4C272.7 317.5 195.4 239.1 97.06 215.8C98.58 210.1 101.7 204.7 106.3 200.5L314.3 8.486zM304 192C295.2 192 287.1 199.2 287.1 208V272C287.1 280.8 295.2 288 304 288H368C376.8 288 384 280.8 384 272V208C384 199.2 376.8 192 368 192H304zM256 488C256 501.3 245.3 512 232 512C218.7 512 208 501.3 208 488C208 386.4 125.6 304 24 304C10.75 304 0 293.3 0 280C0 266.7 10.75 256 24 256C152.1 256 256 359.9 256 488zM0 480C0 462.3 14.33 448 32 448C49.67 448 64 462.3 64 480C64 497.7 49.67 512 32 512C14.33 512 0 497.7 0 480zM0 376C0 362.7 10.75 352 24 352C99.11 352 160 412.9 160 488C160 501.3 149.3 512 136 512C122.7 512 112 501.3 112 488C112 439.4 72.6 400 24 400C10.75 400 0 389.3 0 376z',
			),
		),
		'label'             => __( 'House Signal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'house-tsunami'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M184.4 96C207.4 96 229.3 101.1 248.1 110.3C264.1 117.7 271.9 136.8 264.4 152.8C256.1 168.8 237.9 175.7 221.9 168.3C210.6 162.1 197.9 160 184.4 160C135.5 160 95.1 199.5 95.1 248C95.1 287 121.6 320.2 157.1 331.7C167.1 334.5 179.6 336 191.1 336C192 336 192.1 336 192.1 336C219.6 335.1 247.1 325.4 269.5 309.9C280.6 302 295.4 302 306.5 309.9C328.1 325.4 356.5 336 384 336C410.9 336 439.4 325.2 461.4 309.9L461.5 309.9C473.4 301.4 489.5 302.1 500.7 311.6C515 323.5 533.2 332.6 551.3 336.8C568.5 340.8 579.2 358.1 575.2 375.3C571.2 392.5 553.1 403.2 536.7 399.2C512.2 393.4 491.9 382.6 478.5 374.2C449.5 389.7 417 400 384 400C352.1 400 323.4 390.1 303.6 381.1C297.7 378.5 292.5 375.8 288 373.4C283.5 375.8 278.3 378.5 272.4 381.1C252.6 390.1 223.9 400 192 400C190.2 400 188.3 399.1 186.5 399.9C185.8 399.1 185.1 400 184.4 400C169.8 400 155.6 397.9 142.2 394.1C53.52 372.1 .0006 291.6 .0006 200C.0006 87.99 95.18 0 209 0C232.8 0 255.8 3.823 277.2 10.9C294 16.44 303.1 34.54 297.6 51.32C292 68.1 273.9 77.21 257.2 71.67C242.2 66.72 225.1 64 209 64C152.6 64 104.9 93.82 80.81 136.5C108 111.4 144.4 96 184.4 96H184.4zM428.8 46.43C440.2 37.88 455.8 37.9 467.2 46.47L562.7 118.4C570.7 124.5 575.4 133.9 575.5 143.9L575.8 287.9C575.8 290.8 575.4 293.6 574.7 296.3C569.8 293.6 564.3 291.5 558.5 290.1C545.4 287.1 531.8 280.3 521.2 271.5C499 252.8 466.9 251.4 443.2 268.1C425.2 280.5 403 288.5 384 288.5C364.4 288.5 343.2 280.8 324.8 268.1C323.3 267 321.6 265.1 320 265V143.1C320 133.9 324.7 124.4 332.8 118.4L428.8 46.43zM461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448C410.9 448 439.4 437.2 461.4 421.9H461.4z',
			),
		),
		'label'             => __( 'House Tsunami', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'house-user'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.8 255.5C575.8 273.5 560.8 287.6 543.8 287.6H511.8L512.5 447.7C512.6 483.2 483.9 512 448.5 512H128.1C92.75 512 64.09 483.3 64.09 448V287.6H32.05C14.02 287.6 0 273.5 0 255.5C0 246.5 3.004 238.5 10.01 231.5L266.4 8.016C273.4 1.002 281.4 0 288.4 0C295.4 0 303.4 2.004 309.5 7.014L564.8 231.5C572.8 238.5 576.9 246.5 575.8 255.5H575.8zM288 160C252.7 160 224 188.7 224 224C224 259.3 252.7 288 288 288C323.3 288 352 259.3 352 224C352 188.7 323.3 160 288 160zM256 320C211.8 320 176 355.8 176 400C176 408.8 183.2 416 192 416H384C392.8 416 400 408.8 400 400C400 355.8 364.2 320 320 320H256z',
			),
		),
		'label'             => __( 'House User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'houzz'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M275.9 330.7H171.3V480H17V32h109.5v104.5l305.1 85.6V480H275.9z',
			),
		),
		'label'             => __( 'Houzz', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hryvnia-sign'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M115.1 120.1C102.2 132 82.05 129.8 71.01 115.1C59.97 102.2 62.21 82.05 76.01 71.01L81.94 66.27C109.7 44.08 144.1 32 179.6 32H223C285.4 32 336 82.59 336 144.1C336 155.6 334.5 166.1 331.7 176H352C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H284.2C282.5 241.1 280.8 242.1 279.1 243.1L228.5 272H352C369.7 272 384 286.3 384 304C384 321.7 369.7 336 352 336H123.1C116 344.6 112 355.5 112 367C112 394.1 133.9 416 160.1 416H204.4C225.3 416 245.7 408.9 262.1 395.8L268 391C281.8 379.1 301.9 382.2 312.1 396C324 409.8 321.8 429.9 307.1 440.1L302.1 445.7C274.3 467.9 239.9 480 204.4 480H160.1C98.59 480 48 429.4 48 367C48 356.4 49.49 345.9 52.33 336H32C14.33 336 0 321.7 0 304C0 286.3 14.33 272 32 272H99.82C101.5 270.9 103.2 269.9 104.9 268.9L155.5 240H32C14.33 240 0 225.7 0 208C0 190.3 14.33 176 32 176H260.9C267.1 167.4 272 156.5 272 144.1C272 117.9 250.1 96 223 96H179.6C158.7 96 138.3 103.1 121.9 116.2L115.1 120.1z',
			),
		),
		'label'             => __( 'Hryvnia Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'html5'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 32l34.9 395.8L191.5 480l157.6-52.2L384 32H0zm308.2 127.9H124.4l4.1 49.4h175.6l-13.6 148.4-97.9 27v.3h-1.1l-98.7-27.3-6-75.8h47.7L138 320l53.5 14.5 53.7-14.5 6-62.2H84.3L71.5 112.2h241.1l-4.4 47.7z',
			),
		),
		'label'             => __( 'HTML 5 Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hubspot'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M267.4 211.6c-25.1 23.7-40.8 57.3-40.8 94.6 0 29.3 9.7 56.3 26 78L203.1 434c-4.4-1.6-9.1-2.5-14-2.5-10.8 0-20.9 4.2-28.5 11.8-7.6 7.6-11.8 17.8-11.8 28.6s4.2 20.9 11.8 28.5c7.6 7.6 17.8 11.6 28.5 11.6 10.8 0 20.9-3.9 28.6-11.6 7.6-7.6 11.8-17.8 11.8-28.5 0-4.2-.6-8.2-1.9-12.1l50-50.2c22 16.9 49.4 26.9 79.3 26.9 71.9 0 130-58.3 130-130.2 0-65.2-47.7-119.2-110.2-128.7V116c17.5-7.4 28.2-23.8 28.2-42.9 0-26.1-20.9-47.9-47-47.9S311.2 47 311.2 73.1c0 19.1 10.7 35.5 28.2 42.9v61.2c-15.2 2.1-29.6 6.7-42.7 13.6-27.6-20.9-117.5-85.7-168.9-124.8 1.2-4.4 2-9 2-13.8C129.8 23.4 106.3 0 77.4 0 48.6 0 25.2 23.4 25.2 52.2c0 28.9 23.4 52.3 52.2 52.3 9.8 0 18.9-2.9 26.8-7.6l163.2 114.7zm89.5 163.6c-38.1 0-69-30.9-69-69s30.9-69 69-69 69 30.9 69 69-30.9 69-69 69z',
			),
		),
		'label'             => __( 'HubSpot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'hurricane'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 223.1c-17.75 0-32 14.25-32 32c0 17.75 14.25 32 32 32s32-14.25 32-32C256 238.2 241.8 223.1 224 223.1zM208 95.98l24.5-74.74c3.75-11.25-5.615-22.49-17.36-21.11C112 12.38 32 101.6 32 208c0 114.9 93.13 208 208 208l-24.5 74.73c-3.75 11.25 5.615 22.5 17.36 21.12C335.1 499.6 416 410.4 416 304C416 189.1 322.9 95.98 208 95.98zM224 351.1c-53 0-96-43-96-96s43-96 96-96s96 43 96 96S277 351.1 224 351.1z',
			),
		),
		'label'             => __( 'Hurricane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'i'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 448c0 17.67-14.31 32-32 32H32c-17.69 0-32-14.33-32-32s14.31-32 32-32h96v-320H32c-17.69 0-32-14.33-32-32s14.31-32 32-32h256c17.69 0 32 14.33 32 32s-14.31 32-32 32h-96v320h96C305.7 416 320 430.3 320 448z',
			),
		),
		'label'             => __( 'I', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'i-cursor'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M256 480c0 17.69-14.33 31.1-32 31.1c-38.41 0-72.52-17.35-96-44.23c-23.48 26.88-57.59 44.23-96 44.23c-17.67 0-32-14.31-32-31.1s14.33-32 32-32c35.3 0 64-28.72 64-64V288H64C46.33 288 32 273.7 32 256s14.33-32 32-32h32V128c0-35.28-28.7-64-64-64C14.33 64 0 49.69 0 32s14.33-32 32-32c38.41 0 72.52 17.35 96 44.23c23.48-26.88 57.59-44.23 96-44.23c17.67 0 32 14.31 32 32s-14.33 32-32 32c-35.3 0-64 28.72-64 64v96h32c17.67 0 32 14.31 32 32s-14.33 32-32 32h-32v96c0 35.28 28.7 64 64 64C241.7 448 256 462.3 256 480z',
			),
		),
		'label'             => __( 'I Cursor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'ice-cream'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96.06 288.3H351.9L252.6 493.8C250.1 499.2 246 503.8 240.1 507.1C235.9 510.3 230 512 224 512C217.1 512 212.1 510.3 207 507.1C201.1 503.8 197.9 499.2 195.4 493.8L96.06 288.3zM386.3 164C392.1 166.4 397.4 169.9 401.9 174.4C406.3 178.8 409.9 184.1 412.3 189.9C414.7 195.7 415.1 201.1 416 208.3C416 214.5 414.8 220.8 412.4 226.6C409.1 232.4 406.5 237.7 402 242.2C397.6 246.6 392.3 250.2 386.5 252.6C380.7 255 374.4 256.3 368.1 256.3H79.88C67.16 256.3 54.96 251.2 45.98 242.2C37 233.2 31.97 220.1 32 208.3C32.03 195.5 37.1 183.4 46.12 174.4C55.14 165.4 67.35 160.4 80.07 160.4H81.06C80.4 154.9 80.06 149.4 80.04 143.8C80.04 105.7 95.2 69.11 122.2 42.13C149.2 15.15 185.8 0 223.1 0C262.1 0 298.7 15.15 325.7 42.13C352.7 69.11 367.9 105.7 367.9 143.8C367.9 149.4 367.6 154.9 366.9 160.4H367.9C374.2 160.4 380.5 161.6 386.3 164z',
			),
		),
		'label'             => __( 'Ice Cream', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'icicles'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.4 37.87l-87.54 467.6c-1.625 8.623-14.04 8.634-15.67 .0104L341.4 141.7L295.7 314.2c-2.375 7.624-12.98 7.624-15.36 0L246.3 180.9l-46.49 196.9c-1.875 8.373-13.64 8.373-15.51 0L139.1 190.5L103.6 314.5c-2.375 7.124-12.64 7.198-15.14 .0744L1.357 41.24C-4.768 20.75 10.61 0 31.98 0h448C500 0 515.2 18.25 511.4 37.87z',
			),
		),
		'label'             => __( 'Icicles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'icons'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 7.251C507.7 13.33 512 22.41 512 31.1V175.1C512 202.5 483.3 223.1 447.1 223.1C412.7 223.1 383.1 202.5 383.1 175.1C383.1 149.5 412.7 127.1 447.1 127.1V71.03L351.1 90.23V207.1C351.1 234.5 323.3 255.1 287.1 255.1C252.7 255.1 223.1 234.5 223.1 207.1C223.1 181.5 252.7 159.1 287.1 159.1V63.1C287.1 48.74 298.8 35.61 313.7 32.62L473.7 .6198C483.1-1.261 492.9 1.173 500.3 7.251H500.3zM74.66 303.1L86.5 286.2C92.43 277.3 102.4 271.1 113.1 271.1H174.9C185.6 271.1 195.6 277.3 201.5 286.2L213.3 303.1H239.1C266.5 303.1 287.1 325.5 287.1 351.1V463.1C287.1 490.5 266.5 511.1 239.1 511.1H47.1C21.49 511.1-.0019 490.5-.0019 463.1V351.1C-.0019 325.5 21.49 303.1 47.1 303.1H74.66zM143.1 359.1C117.5 359.1 95.1 381.5 95.1 407.1C95.1 434.5 117.5 455.1 143.1 455.1C170.5 455.1 191.1 434.5 191.1 407.1C191.1 381.5 170.5 359.1 143.1 359.1zM440.3 367.1H496C502.7 367.1 508.6 372.1 510.1 378.4C513.3 384.6 511.6 391.7 506.5 396L378.5 508C372.9 512.1 364.6 513.3 358.6 508.9C352.6 504.6 350.3 496.6 353.3 489.7L391.7 399.1H336C329.3 399.1 323.4 395.9 321 389.6C318.7 383.4 320.4 376.3 325.5 371.1L453.5 259.1C459.1 255 467.4 254.7 473.4 259.1C479.4 263.4 481.6 271.4 478.7 278.3L440.3 367.1zM116.7 219.1L19.85 119.2C-8.112 90.26-6.614 42.31 24.85 15.34C51.82-8.137 93.26-3.642 118.2 21.83L128.2 32.32L137.7 21.83C162.7-3.642 203.6-8.137 231.6 15.34C262.6 42.31 264.1 90.26 236.1 119.2L139.7 219.1C133.2 225.6 122.7 225.6 116.7 219.1H116.7z',
			),
		),
		'label'             => __( 'Icons', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'social' ),
	),
	'id-badge'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0h-288C21.49 0 0 21.49 0 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48v-416C384 21.49 362.5 0 336 0zM192 160c35.35 0 64 28.65 64 64s-28.65 64-64 64S128 259.3 128 224S156.7 160 192 160zM288 416H96c-8.836 0-16-7.164-16-16C80 355.8 115.8 320 160 320h64c44.18 0 80 35.82 80 80C304 408.8 296.8 416 288 416zM240 96h-96C135.2 96 128 88.84 128 80S135.2 64 144 64h96C248.8 64 256 71.16 256 80S248.8 96 240 96z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h256c35.35 0 64-28.65 64-64V64C384 28.65 355.3 0 320 0zM336 448c0 8.836-7.164 16-16 16H64c-8.836 0-16-7.164-16-16V64c0-8.838 7.164-16 16-16h64V64c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32V48h64c8.836 0 16 7.162 16 16V448zM192 288c35.35 0 64-28.65 64-64s-28.65-64-64-64C156.7 160 128 188.7 128 224S156.7 288 192 288zM224 320H160c-44.18 0-80 35.82-80 80C80 408.8 87.16 416 96 416h192c8.836 0 16-7.164 16-16C304 355.8 268.2 320 224 320z',
			),
		),
		'label'             => __( 'Id Badge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'id-card'                              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528 32h-480C21.49 32 0 53.49 0 80V96h576V80C576 53.49 554.5 32 528 32zM0 432C0 458.5 21.49 480 48 480h480c26.51 0 48-21.49 48-48V128H0V432zM368 192h128C504.8 192 512 199.2 512 208S504.8 224 496 224h-128C359.2 224 352 216.8 352 208S359.2 192 368 192zM368 256h128C504.8 256 512 263.2 512 272S504.8 288 496 288h-128C359.2 288 352 280.8 352 272S359.2 256 368 256zM368 320h128c8.836 0 16 7.164 16 16S504.8 352 496 352h-128c-8.836 0-16-7.164-16-16S359.2 320 368 320zM176 192c35.35 0 64 28.66 64 64s-28.65 64-64 64s-64-28.66-64-64S140.7 192 176 192zM112 352h128c26.51 0 48 21.49 48 48c0 8.836-7.164 16-16 16h-192C71.16 416 64 408.8 64 400C64 373.5 85.49 352 112 352z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M368 344h96c13.25 0 24-10.75 24-24s-10.75-24-24-24h-96c-13.25 0-24 10.75-24 24S354.8 344 368 344zM208 320c35.35 0 64-28.65 64-64c0-35.35-28.65-64-64-64s-64 28.65-64 64C144 291.3 172.7 320 208 320zM512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM528 416c0 8.822-7.178 16-16 16h-192c0-44.18-35.82-80-80-80h-64C131.8 352 96 387.8 96 432H64c-8.822 0-16-7.178-16-16V160h480V416zM368 264h96c13.25 0 24-10.75 24-24s-10.75-24-24-24h-96c-13.25 0-24 10.75-24 24S354.8 264 368 264z',
			),
		),
		'label'             => __( 'Id Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'id-card-clip'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 128h64c17.67 0 32-14.33 32-32V32c0-17.67-14.33-32-32-32H256C238.3 0 224 14.33 224 32v64C224 113.7 238.3 128 256 128zM528 64H384v48C384 138.5 362.5 160 336 160h-96C213.5 160 192 138.5 192 112V64H48C21.49 64 0 85.49 0 112v352C0 490.5 21.49 512 48 512h480c26.51 0 48-21.49 48-48v-352C576 85.49 554.5 64 528 64zM288 224c35.35 0 64 28.66 64 64s-28.65 64-64 64s-64-28.66-64-64S252.7 224 288 224zM384 448H192c-8.836 0-16-7.164-16-16C176 405.5 197.5 384 224 384h128c26.51 0 48 21.49 48 48C400 440.8 392.8 448 384 448z',
			),
		),
		'label'             => __( 'Id Card Clip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'ideal'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M125.6 165.5a49.07 49.07 0 1 0 49.06 49.06A49.08 49.08 0 0 0 125.6 165.5zM86.15 425.8h78.94V285.3H86.15zm151.5-211.6c0-20-10-22.53-18.74-22.53H204.8V237.5h14.05C228.6 237.5 237.6 234.7 237.6 214.2zm201.7 46V168.9h22.75V237.5h33.69C486.5 113.1 388.6 86.19 299.7 86.19H204.8V169h14c25.6 0 41.5 17.35 41.5 45.26 0 28.81-15.52 46-41.5 46h-14V425.9h94.83c144.6 0 194.9-67.16 196.7-165.6zm-109.8 0H273.3V169h54.43v22.73H296v10.58h30V225H296V237.5h33.51zm74.66 0-5.16-17.67H369.3l-5.18 17.67H340.5L368 168.9h32.35l27.53 91.34zM299.6 32H32V480H299.6c161.9 0 251-79.73 251-224.5C550.6 172 518 32 299.6 32zm0 426.9H53.07V53.07H299.6c142.1 0 229.9 64.61 229.9 202.4C529.5 389.6 448.5 458.9 299.6 458.9zm83.86-264.9L376 219.9H392.4l-7.52-25.81z',
			),
		),
		'label'             => __( 'iDeal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'igloo'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M320 160H48.5C100.2 82.82 188.1 32 288 32C298.8 32 309.5 32.6 320 33.76V160zM352 39.14C424.9 55.67 487.2 99.82 527.5 160H352V39.14zM96 192V320H0C0 274 10.77 230.6 29.94 192H96zM192 320H128V192H448V320H384V352H576V432C576 458.5 554.5 480 528 480H352V352C352 316.7 323.3 288 288 288C252.7 288 224 316.7 224 352V480H48C21.49 480 0 458.5 0 432V352H192V320zM480 192H546.1C565.2 230.6 576 274 576 320H480V192z',
			),
		),
		'label'             => __( 'Igloo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'image'                                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447.1 32h-384C28.64 32-.0091 60.65-.0091 96v320c0 35.35 28.65 64 63.1 64h384c35.35 0 64-28.65 64-64V96C511.1 60.65 483.3 32 447.1 32zM111.1 96c26.51 0 48 21.49 48 48S138.5 192 111.1 192s-48-21.49-48-48S85.48 96 111.1 96zM446.1 407.6C443.3 412.8 437.9 416 432 416H82.01c-6.021 0-11.53-3.379-14.26-8.75c-2.73-5.367-2.215-11.81 1.334-16.68l70-96C142.1 290.4 146.9 288 152 288s9.916 2.441 12.93 6.574l32.46 44.51l93.3-139.1C293.7 194.7 298.7 192 304 192s10.35 2.672 13.31 7.125l128 192C448.6 396 448.9 402.3 446.1 407.6z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M152 120c-26.51 0-48 21.49-48 48s21.49 48 48 48s48-21.49 48-48S178.5 120 152 120zM447.1 32h-384C28.65 32-.0091 60.65-.0091 96v320c0 35.35 28.65 64 63.1 64h384c35.35 0 64-28.65 64-64V96C511.1 60.65 483.3 32 447.1 32zM463.1 409.3l-136.8-185.9C323.8 218.8 318.1 216 312 216c-6.113 0-11.82 2.768-15.21 7.379l-106.6 144.1l-37.09-46.1c-3.441-4.279-8.934-6.809-14.77-6.809c-5.842 0-11.33 2.529-14.78 6.809l-75.52 93.81c0-.0293 0 .0293 0 0L47.99 96c0-8.822 7.178-16 16-16h384c8.822 0 16 7.178 16 16V409.3z',
			),
		),
		'label'             => __( 'Image', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'social', 'travel' ),
	),
	'image-portrait'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0h-288c-26.51 0-48 21.49-48 48v416C0 490.5 21.49 512 48 512h288c26.51 0 48-21.49 48-48v-416C384 21.49 362.5 0 336 0zM192 128c35.35 0 64 28.65 64 64s-28.65 64-64 64S128 227.3 128 192S156.7 128 192 128zM288 384H96c-8.836 0-16-7.164-16-16C80 323.8 115.8 288 160 288h64c44.18 0 80 35.82 80 80C304 376.8 296.8 384 288 384z',
			),
		),
		'label'             => __( 'Image Portrait', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'images'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528 32H144c-26.51 0-48 21.49-48 48v256c0 26.51 21.49 48 48 48H528c26.51 0 48-21.49 48-48v-256C576 53.49 554.5 32 528 32zM223.1 96c17.68 0 32 14.33 32 32S241.7 160 223.1 160c-17.67 0-32-14.33-32-32S206.3 96 223.1 96zM494.1 311.6C491.3 316.8 485.9 320 480 320H192c-6.023 0-11.53-3.379-14.26-8.75c-2.73-5.367-2.215-11.81 1.332-16.68l70-96C252.1 194.4 256.9 192 262 192c5.111 0 9.916 2.441 12.93 6.574l22.35 30.66l62.74-94.11C362.1 130.7 367.1 128 373.3 128c5.348 0 10.34 2.672 13.31 7.125l106.7 160C496.6 300 496.9 306.3 494.1 311.6zM456 432H120c-39.7 0-72-32.3-72-72v-240C48 106.8 37.25 96 24 96S0 106.8 0 120v240C0 426.2 53.83 480 120 480h336c13.25 0 24-10.75 24-24S469.3 432 456 432z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 32H160c-35.35 0-64 28.65-64 64v224c0 35.35 28.65 64 64 64H512c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM528 320c0 8.822-7.178 16-16 16h-16l-109.3-160.9C383.7 170.7 378.7 168 373.3 168c-5.352 0-10.35 2.672-13.31 7.125l-62.74 94.11L274.9 238.6C271.9 234.4 267.1 232 262 232c-5.109 0-9.914 2.441-12.93 6.574L176 336H160c-8.822 0-16-7.178-16-16V96c0-8.822 7.178-16 16-16H512c8.822 0 16 7.178 16 16V320zM224 112c-17.67 0-32 14.33-32 32s14.33 32 32 32c17.68 0 32-14.33 32-32S241.7 112 224 112zM456 480H120C53.83 480 0 426.2 0 360v-240C0 106.8 10.75 96 24 96S48 106.8 48 120v240c0 39.7 32.3 72 72 72h336c13.25 0 24 10.75 24 24S469.3 480 456 480z',
			),
		),
		'label'             => __( 'Images', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'social', 'travel' ),
	),
);
PK�][����Lultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateCSSUnit.jsnu�[���function generateCSSUnit( value, unit = '', isImportant = false ) {
	if ( isNaN( value ) || value === '' ) {
		return '';
	}

	return value + unit + ( isImportant ? ' !important' : '' );
}

export default generateCSSUnit;
PK�][C��� � �Pultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-3.phpnu�[���<?php
/**
 * Font awesome icons array array file.
 *
 * @package     UAGB
 * @author      Brainstorm Force
 * @link        https://wpspectra.com/
 */

/**
 * Returns font awesome icons array
 */
return array(
	'satellite'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.8 264.1l-80.37-80.37l47.87-47.88c13-13.12 13-34.37 0-47.5l-47.5-47.5c-13.12-13.12-34.38-13.12-47.5 0l-47.88 47.88L247.1 9.25C241 3.375 232.9 0 224.5 0c-8.5 0-16.62 3.375-22.5 9.25l-96.75 96.75c-12.38 12.5-12.38 32.62 0 45.12L185.5 231.5L175.8 241.4c-54-24.5-116.3-22.5-168.5 5.375c-8.498 4.625-9.623 16.38-2.873 23.25l107.6 107.5l-17.88 17.75c-2.625-.75-5-1.625-7.75-1.625c-17.75 0-32 14.38-32 32c0 17.75 14.25 32 32 32c17.62 0 32-14.25 32-32c0-2.75-.875-5.125-1.625-7.75l17.75-17.88l107.6 107.6c6.75 6.75 18.62 5.625 23.12-2.875c27.88-52.25 29.88-114.5 5.375-168.5l10-9.873l80.25 80.36c12.5 12.38 32.62 12.38 44.1 0l96.75-96.75C508.6 304.1 512 295.1 512 287.5C512 279.1 508.6 270.1 502.8 264.1zM219.5 197.4L150.6 128.5l73.87-73.75l68.86 68.88L219.5 197.4zM383.5 361.4L314.6 292.5l73.75-73.88l68.88 68.87L383.5 361.4z',
			),
		),
		'label'             => __( 'Satellite', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'satellite-dish'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M216 104C202.8 104 192 114.8 192 128s10.75 24 24 24c79.41 0 144 64.59 144 144C360 309.3 370.8 320 384 320s24-10.75 24-24C408 190.1 321.9 104 216 104zM224 0C206.3 0 192 14.31 192 32s14.33 32 32 32c123.5 0 224 100.5 224 224c0 17.69 14.33 32 32 32s32-14.31 32-32C512 129.2 382.8 0 224 0zM188.9 346l27.37-27.37c2.625 .625 5.059 1.506 7.809 1.506c17.75 0 31.99-14.26 31.99-32c0-17.62-14.24-32.01-31.99-32.01c-17.62 0-31.99 14.38-31.99 32.01c0 2.875 .8099 5.25 1.56 7.875L166.2 323.4L49.37 206.5c-7.25-7.25-20.12-6-24.1 3c-41.75 77.88-29.88 176.7 35.75 242.4c65.62 65.62 164.6 77.5 242.4 35.75c9.125-5 10.38-17.75 3-25L188.9 346z',
			),
		),
		'label'             => __( 'Satellite Dish', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'scale-balanced'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M554.9 154.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 128 80s127.1-35.88 127.1-80C639.1 319.9 641.4 327.3 554.9 154.5zM439.1 320l71.96-144l72.17 144H439.1zM256 336c0-16.12 1.375-8.75-85.12-181.5c-17.62-35.25-68.12-35.38-85.87 0c-87 174.3-84.1 165.9-84.1 181.5c0 44.13 57.25 80 127.1 80S256 380.1 256 336zM127.9 176L200.1 320H55.96L127.9 176zM495.1 448h-143.1V153.3C375.5 143 393.1 121.8 398.4 96h113.6c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-128.4c-14.62-19.38-37.5-32-63.62-32S270.1 12.62 256.4 32H128C110.3 32 96 46.33 96 64S110.3 96 127.1 96h113.6c5.25 25.75 22.87 47 46.37 57.25V448H144c-26.51 0-48.01 21.49-48.01 48c0 8.836 7.165 16 16 16h416c8.836 0 16-7.164 16-16C544 469.5 522.5 448 495.1 448z',
			),
		),
		'label'             => __( 'Scale Balanced', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'scale-unbalanced'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M85 250.5c-87 174.2-84.1 165.9-84.1 181.5C.0035 476.1 57.25 512 128 512s128-35.88 128-79.1c0-16.12 1.375-8.752-85.12-181.5C153.3 215.3 102.8 215.1 85 250.5zM55.96 416l71.98-143.1l72.15 143.1H55.96zM554.9 122.5c-17.62-35.25-68.08-35.37-85.83 0c-87 174.2-85.04 165.9-85.04 181.5c0 44.12 57.25 79.1 128 79.1s127.1-35.87 127.1-79.1C639.1 287.9 641.4 295.3 554.9 122.5zM439.1 288l72.04-143.1l72.08 143.1H439.1zM495.1 448h-143.1V153.3c20.83-9.117 36.72-26.93 43.78-48.77l126.3-42.11c16.77-5.594 25.83-23.72 20.23-40.48c-5.578-16.73-23.62-25.86-40.48-20.23l-113.3 37.76c-13.94-23.49-39.29-39.41-68.58-39.41c-44.18 0-79.1 35.82-79.1 80c0 2.961 .5587 5.771 .8712 8.648L117.9 129.7C101.1 135.3 92.05 153.4 97.64 170.1c4.469 13.41 16.95 21.88 30.36 21.88c3.344 0 6.768-.5186 10.13-1.644L273.8 145.1C278.2 148.3 282.1 151.1 288 153.3V496C288 504.8 295.2 512 304 512h223.1c8.838 0 16-7.164 16-15.1C543.1 469.5 522.5 448 495.1 448z',
			),
		),
		'label'             => __( 'Scale Unbalanced', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'scale-unbalanced-flip'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M554.9 250.5c-17.62-35.37-68.12-35.25-85.87 0c-86.38 172.7-85.04 165.4-85.04 181.5C383.1 476.1 441.3 512 512 512s127.1-35.88 127.1-79.1C639.1 416.4 642 424.7 554.9 250.5zM439.9 416l72.15-143.1l71.98 143.1H439.9zM512 192c13.41 0 25.89-8.471 30.36-21.88c5.594-16.76-3.469-34.89-20.23-40.48l-122.1-40.1c.3125-2.877 .8712-5.687 .8712-8.648c0-44.18-35.81-80-79.1-80c-29.29 0-54.65 15.92-68.58 39.41l-113.3-37.76C121.3-3.963 103.2 5.162 97.64 21.9C92.05 38.66 101.1 56.78 117.9 62.38l126.3 42.11c7.061 21.84 22.95 39.65 43.78 48.77v294.7H144c-26.51 0-47.1 21.49-47.1 47.1C96 504.8 103.2 512 112 512h223.1c8.836 0 15.1-7.164 15.1-15.1V153.3c5.043-2.207 9.756-4.965 14.19-8.115l135.7 45.23C505.2 191.5 508.7 192 512 192zM256 304c0-15.62 1.1-7.252-85.12-181.5c-17.62-35.37-68.08-35.25-85.83 0c-86.38 172.7-85.04 165.4-85.04 181.5c0 44.12 57.25 79.1 127.1 79.1S256 348.1 256 304zM128 144l72.04 143.1H55.92L128 144z',
			),
		),
		'label'             => __( 'Scale Unbalanced Flip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'schlix'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M350.5 157.7l-54.2-46.1 73.4-39 78.3 44.2-97.5 40.9zM192 122.1l45.7-28.2 34.7 34.6-55.4 29-25-35.4zm-65.1 6.6l31.9-22.1L176 135l-36.7 22.5-12.4-28.8zm-23.3 88.2l-8.8-34.8 29.6-18.3 13.1 35.3-33.9 17.8zm-21.2-83.7l23.9-18.1 8.9 24-26.7 18.3-6.1-24.2zM59 206.5l-3.6-28.4 22.3-15.5 6.1 28.7L59 206.5zm-30.6 16.6l20.8-12.8 3.3 33.4-22.9 12-1.2-32.6zM1.4 268l19.2-10.2 .4 38.2-21 8.8L1.4 268zm59.1 59.3l-28.3 8.3-1.6-46.8 25.1-10.7 4.8 49.2zM99 263.2l-31.1 13-5.2-40.8L90.1 221l8.9 42.2zM123.2 377l-41.6 5.9-8.1-63.5 35.2-10.8 14.5 68.4zm28.5-139.9l21.2 57.1-46.2 13.6-13.7-54.1 38.7-16.6zm85.7 230.5l-70.9-3.3-24.3-95.8 55.2-8.6 40 107.7zm-84.9-279.7l42.2-22.4 28 45.9-50.8 21.3-19.4-44.8zm41 94.9l61.3-18.7 52.8 86.6-79.8 11.3-34.3-79.2zm51.4-85.6l67.3-28.8 65.5 65.4-88.6 26.2-44.2-62.8z',
			),
		),
		'label'             => __( 'SCHLIX', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'school'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 128C328.8 128 336 135.2 336 144V160H352C360.8 160 368 167.2 368 176C368 184.8 360.8 192 352 192H320C311.2 192 304 184.8 304 176V144C304 135.2 311.2 128 320 128zM476.8 98.06L602.4 125.1C624.4 130.9 640 150.3 640 172.8V464C640 490.5 618.5 512 592 512H48C21.49 512 0 490.5 0 464V172.8C0 150.3 15.63 130.9 37.59 125.1L163.2 98.06L302.2 5.374C312.1-1.791 327-1.791 337.8 5.374L476.8 98.06zM256 512H384V416C384 380.7 355.3 352 320 352C284.7 352 256 380.7 256 416V512zM96 192C87.16 192 80 199.2 80 208V272C80 280.8 87.16 288 96 288H128C136.8 288 144 280.8 144 272V208C144 199.2 136.8 192 128 192H96zM496 272C496 280.8 503.2 288 512 288H544C552.8 288 560 280.8 560 272V208C560 199.2 552.8 192 544 192H512C503.2 192 496 199.2 496 208V272zM96 320C87.16 320 80 327.2 80 336V400C80 408.8 87.16 416 96 416H128C136.8 416 144 408.8 144 400V336C144 327.2 136.8 320 128 320H96zM496 400C496 408.8 503.2 416 512 416H544C552.8 416 560 408.8 560 400V336C560 327.2 552.8 320 544 320H512C503.2 320 496 327.2 496 336V400zM320 88C271.4 88 232 127.4 232 176C232 224.6 271.4 264 320 264C368.6 264 408 224.6 408 176C408 127.4 368.6 88 320 88z',
			),
		),
		'label'             => __( 'School', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'school-circle-check'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M476.8 98.06L602.4 125.1C624.4 130.9 640 150.3 640 172.8V266.8C608.1 221.6 555.5 191.1 496 191.1C457.5 191.1 421.8 204.4 392.9 225.4C402.4 211.3 408 194.3 408 175.1C408 127.4 368.6 87.1 320 87.1C271.4 87.1 232 127.4 232 175.1C232 224.6 271.4 263.1 320 263.1C335.6 263.1 350.2 259.1 362.9 252.9C339.4 279.9 324.1 314.3 320.7 352H320.3L320 352C284.7 352 256 380.7 256 416V512L320 512H48C21.49 512 0 490.5 0 464V172.8C0 150.3 15.63 130.9 37.59 125.1L163.2 98.06L302.2 5.374C312.1-1.791 327-1.791 337.8 5.374L476.8 98.06zM96 192C87.16 192 80 199.2 80 208V272C80 280.8 87.16 288 96 288H128C136.8 288 144 280.8 144 272V208C144 199.2 136.8 192 128 192H96zM96 320C87.16 320 80 327.2 80 336V400C80 408.8 87.16 416 96 416H128C136.8 416 144 408.8 144 400V336C144 327.2 136.8 320 128 320H96zM320 128C328.8 128 336 135.2 336 144V160H352C360.8 160 368 167.2 368 176C368 184.8 360.8 192 352 192H320C311.2 192 304 184.8 304 176V144C304 135.2 311.2 128 320 128zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7L480 385.4z',
			),
		),
		'label'             => __( 'School Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'school-circle-exclamation'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M476.8 98.06L602.4 125.1C624.4 130.9 640 150.3 640 172.8V266.8C608.1 221.6 555.5 191.1 496 191.1C457.5 191.1 421.8 204.4 392.9 225.4C402.4 211.3 408 194.3 408 175.1C408 127.4 368.6 87.1 320 87.1C271.4 87.1 232 127.4 232 175.1C232 224.6 271.4 263.1 320 263.1C335.6 263.1 350.2 259.1 362.9 252.9C339.4 279.9 324.1 314.3 320.7 352H320.3L320 352C284.7 352 256 380.7 256 416V512L320 512H48C21.49 512 0 490.5 0 464V172.8C0 150.3 15.63 130.9 37.59 125.1L163.2 98.06L302.2 5.374C312.1-1.791 327-1.791 337.8 5.374L476.8 98.06zM96 192C87.16 192 80 199.2 80 208V272C80 280.8 87.16 288 96 288H128C136.8 288 144 280.8 144 272V208C144 199.2 136.8 192 128 192H96zM96 320C87.16 320 80 327.2 80 336V400C80 408.8 87.16 416 96 416H128C136.8 416 144 408.8 144 400V336C144 327.2 136.8 320 128 320H96zM320 128C328.8 128 336 135.2 336 144V160H352C360.8 160 368 167.2 368 176C368 184.8 360.8 192 352 192H320C311.2 192 304 184.8 304 176V144C304 135.2 311.2 128 320 128zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'School Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'school-circle-xmark'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M476.8 98.06L602.4 125.1C624.4 130.9 640 150.3 640 172.8V266.8C608.1 221.6 555.5 191.1 496 191.1C457.5 191.1 421.8 204.4 392.9 225.4C402.4 211.3 408 194.3 408 175.1C408 127.4 368.6 87.1 320 87.1C271.4 87.1 232 127.4 232 175.1C232 224.6 271.4 263.1 320 263.1C335.6 263.1 350.2 259.1 362.9 252.9C339.4 279.9 324.1 314.3 320.7 352H320.3L320 352C284.7 352 256 380.7 256 416V512L320 512H48C21.49 512 0 490.5 0 464V172.8C0 150.3 15.63 130.9 37.59 125.1L163.2 98.06L302.2 5.374C312.1-1.791 327-1.791 337.8 5.374L476.8 98.06zM96 192C87.16 192 80 199.2 80 208V272C80 280.8 87.16 288 96 288H128C136.8 288 144 280.8 144 272V208C144 199.2 136.8 192 128 192H96zM96 320C87.16 320 80 327.2 80 336V400C80 408.8 87.16 416 96 416H128C136.8 416 144 408.8 144 400V336C144 327.2 136.8 320 128 320H96zM320 128C328.8 128 336 135.2 336 144V160H352C360.8 160 368 167.2 368 176C368 184.8 360.8 192 352 192H320C311.2 192 304 184.8 304 176V144C304 135.2 311.2 128 320 128zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM518.6 368L555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368z',
			),
		),
		'label'             => __( 'School Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'school-flag'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 0H400C408.8 0 416 7.164 416 16V64C416 72.84 408.8 80 400 80H320V95.53L410.3 160H512C547.3 160 576 188.7 576 224V448C576 483.3 547.3 512 512 512H336V400C336 373.5 314.5 352 288 352C261.5 352 240 373.5 240 400V512H64C28.65 512 0 483.3 0 448V224C0 188.7 28.65 160 64 160H165.7L256 95.53V32C256 14.33 270.3 0 288 0V0zM288 192C261.5 192 240 213.5 240 240C240 266.5 261.5 288 288 288C314.5 288 336 266.5 336 240C336 213.5 314.5 192 288 192zM80 224C71.16 224 64 231.2 64 240V304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V240C128 231.2 120.8 224 112 224H80zM448 304C448 312.8 455.2 320 464 320H496C504.8 320 512 312.8 512 304V240C512 231.2 504.8 224 496 224H464C455.2 224 448 231.2 448 240V304zM80 352C71.16 352 64 359.2 64 368V432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V368C128 359.2 120.8 352 112 352H80zM464 352C455.2 352 448 359.2 448 368V432C448 440.8 455.2 448 464 448H496C504.8 448 512 440.8 512 432V368C512 359.2 504.8 352 496 352H464z',
			),
		),
		'label'             => __( 'School Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'school-lock'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 160H352C360.8 160 368 167.2 368 176C368 184.8 360.8 192 352 192H320C311.2 192 304 184.8 304 176V144C304 135.2 311.2 128 320 128C328.8 128 336 135.2 336 144V160zM302.2 5.374C312.1-1.791 327-1.791 337.8 5.374L476.8 98.06L602.4 125.1C624.4 130.9 640 150.3 640 172.8V271.1C640 210.1 589.9 159.1 528 159.1C466.1 159.1 416 210.1 416 271.1V296.6C396.9 307.6 384 328.3 384 352H320.3L320 352C284.7 352 256 380.7 256 416V512H320L48 512C21.49 512 0 490.5 0 464V172.8C0 150.3 15.63 130.9 37.59 125.1L163.2 98.06L302.2 5.374zM80 272C80 280.8 87.16 288 96 288H128C136.8 288 144 280.8 144 272V208C144 199.2 136.8 192 128 192H96C87.16 192 80 199.2 80 208V272zM80 400C80 408.8 87.16 416 96 416H128C136.8 416 144 408.8 144 400V336C144 327.2 136.8 320 128 320H96C87.16 320 80 327.2 80 336V400zM320 264C368.6 264 408 224.6 408 176C408 127.4 368.6 88 320 88C271.4 88 232 127.4 232 176C232 224.6 271.4 264 320 264zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'School Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'scissors'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M396.8 51.2C425.1 22.92 470.9 22.92 499.2 51.2C506.3 58.27 506.3 69.73 499.2 76.8L216.5 359.5C221.3 372.1 224 385.7 224 400C224 461.9 173.9 512 112 512C50.14 512 0 461.9 0 400C0 338.1 50.14 287.1 112 287.1C126.3 287.1 139.9 290.7 152.5 295.5L191.1 255.1L152.5 216.5C139.9 221.3 126.3 224 112 224C50.14 224 0 173.9 0 112C0 50.14 50.14 0 112 0C173.9 0 224 50.14 224 112C224 126.3 221.3 139.9 216.5 152.5L255.1 191.1L396.8 51.2zM160 111.1C160 85.49 138.5 63.1 112 63.1C85.49 63.1 64 85.49 64 111.1C64 138.5 85.49 159.1 112 159.1C138.5 159.1 160 138.5 160 111.1zM112 448C138.5 448 160 426.5 160 400C160 373.5 138.5 352 112 352C85.49 352 64 373.5 64 400C64 426.5 85.49 448 112 448zM278.6 342.6L342.6 278.6L499.2 435.2C506.3 442.3 506.3 453.7 499.2 460.8C470.9 489.1 425.1 489.1 396.8 460.8L278.6 342.6z',
			),
		),
		'label'             => __( 'Scissors', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'screenpal'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M233.5 22.49C233.5 10.07 243.6 0 256 0C268.4 0 278.5 10.07 278.5 22.49C278.5 34.91 268.4 44.98 256 44.98C243.6 44.98 233.5 34.91 233.5 22.49zM313.4 259C313.4 290.7 287.7 316.4 256 316.4C224.3 316.4 198.6 290.7 198.6 259C198.6 227.3 224.3 201.6 256 201.6C287.7 201.6 313.4 227.3 313.4 259zM337.2 350C359.5 330.1 373.7 302.7 377.1 273H496.6C493.1 334.4 466.2 392.2 421.4 434.4C376.7 476.6 317.5 500.2 256 500.2C194.5 500.2 135.3 476.6 90.56 434.4C45.83 392.2 18.94 334.4 15.39 273H135.1C138.5 302.7 152.7 330.1 175 350C197.3 369.9 226.2 380.9 256.1 380.9C285.1 380.9 314.8 369.9 337.2 350zM73.14 140.3C73.54 152.7 63.81 163.1 51.39 163.5C38.97 163.9 28.59 154.2 28.18 141.8C27.78 129.3 37.52 118.9 49.94 118.5C62.35 118.1 72.74 127.9 73.14 140.3zM438.9 141C438.9 128.6 448.9 118.5 461.4 118.5C473.8 118.5 483.8 128.6 483.8 141C483.8 153.5 473.8 163.5 461.4 163.5C448.9 163.5 438.9 153.5 438.9 141zM317.9 95.27C300.6 109.1 278.7 118.1 256 118.1C233.3 118.1 211.4 109.1 194.1 95.27C176.8 80.55 165.3 60.18 161.7 37.78C176.8 31.37 192.5 26.52 208.6 23.31C208.6 35.88 213.6 47.93 222.5 56.82C231.4 65.7 243.4 70.7 256 70.7C268.6 70.7 280.6 65.7 289.5 56.82C298.4 47.93 303.4 35.88 303.4 23.31C319.5 26.52 335.2 31.37 350.3 37.78C346.7 60.18 335.2 80.55 317.9 95.27H317.9zM82.78 231C61.42 238.6 38.06 238.4 16.86 230.4C18.82 214.1 22.46 198.1 27.71 182.5C33.1 185.6 39.05 187.6 45.22 188.5C51.39 189.3 57.67 188.9 63.68 187.3C69.69 185.6 75.33 182.9 80.27 179.1C85.21 175.3 89.36 170.6 92.47 165.2C95.58 159.8 97.61 153.8 98.42 147.7C99.23 141.5 98.83 135.2 97.22 129.2C95.61 123.2 92.83 117.6 89.04 112.6C85.25 107.7 80.53 103.5 75.14 100.4C85.96 88.11 98.01 76.94 111.1 67.07C128.7 81.42 140.6 101.6 144.7 123.9C148.8 146.2 144.8 169.3 133.5 188.9C122.1 208.5 104.1 223.4 82.78 231V231zM429.2 231.1C407.9 223.5 389.9 208.5 378.5 188.9C367.2 169.3 363.3 146.2 367.4 123.9C371.5 101.7 383.4 81.54 400.9 67.19C414 77.04 426.1 88.21 436.9 100.5C426.2 106.9 418.5 117.2 415.4 129.3C412.2 141.3 413.1 154.1 420.2 164.9C426.4 175.7 436.6 183.6 448.6 186.9C460.6 190.2 473.5 188.6 484.3 182.6C489.6 198.1 493.2 214.2 495.2 230.4C473.1 238.5 450.6 238.7 429.2 231.1L429.2 231.1z',
			),
		),
		'label'             => __( 'Screenpal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'screwdriver'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M128 278.6l-117.1 116.9c-14.5 14.62-14.5 38.29 0 52.79l52.75 52.75c14.5 14.5 38.17 14.5 52.79 0L233.4 384c29.12-29.12 29.12-76.25 0-105.4S157.1 249.5 128 278.6zM447.1 0l-128 96L320 158L237 241.1C243.8 245.4 250.3 250.1 256 256c5.875 5.75 10.62 12.25 14.88 19L353.1 192h61.99l95.1-128L447.1 0z',
			),
		),
		'label'             => __( 'Screwdriver', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'screwdriver-wrench'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M331.8 224.1c28.29 0 54.88 10.99 74.86 30.97l19.59 19.59c40.01-17.74 71.25-53.3 81.62-96.65c5.725-23.92 5.34-47.08 .2148-68.4c-2.613-10.88-16.43-14.51-24.34-6.604l-68.9 68.9h-75.6V97.2l68.9-68.9c7.912-7.912 4.275-21.73-6.604-24.34c-21.32-5.125-44.48-5.51-68.4 .2148c-55.3 13.23-98.39 60.22-107.2 116.4C224.5 128.9 224.2 137 224.3 145l82.78 82.86C315.2 225.1 323.5 224.1 331.8 224.1zM384 278.6c-23.16-23.16-57.57-27.57-85.39-13.9L191.1 158L191.1 95.99l-127.1-95.99L0 63.1l96 127.1l62.04 .0077l106.7 106.6c-13.67 27.82-9.251 62.23 13.91 85.39l117 117.1c14.62 14.5 38.21 14.5 52.71-.0016l52.75-52.75c14.5-14.5 14.5-38.08-.0016-52.71L384 278.6zM227.9 307L168.7 247.9l-148.9 148.9c-26.37 26.37-26.37 69.08 0 95.45C32.96 505.4 50.21 512 67.5 512s34.54-6.592 47.72-19.78l119.1-119.1C225.5 352.3 222.6 329.4 227.9 307zM64 472c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24S88 434.7 88 448C88 461.3 77.25 472 64 472z',
			),
		),
		'label'             => __( 'Screwdriver Wrench', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'scribd'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M42.3 252.7c-16.1-19-24.7-45.9-24.8-79.9 0-100.4 75.2-153.1 167.2-153.1 98.6-1.6 156.8 49 184.3 70.6l-50.5 72.1-37.3-24.6 26.9-38.6c-36.5-24-79.4-36.5-123-35.8-50.7-.8-111.7 27.2-111.7 76.2 0 18.7 11.2 20.7 28.6 15.6 23.3-5.3 41.9 .6 55.8 14 26.4 24.3 23.2 67.6-.7 91.9-29.2 29.5-85.2 27.3-114.8-8.4zm317.7 5.9c-15.5-18.8-38.9-29.4-63.2-28.6-38.1-2-71.1 28-70.5 67.2-.7 16.8 6 33 18.4 44.3 14.1 13.9 33 19.7 56.3 14.4 17.4-5.1 28.6-3.1 28.6 15.6 0 4.3-.5 8.5-1.4 12.7-16.7 40.9-59.5 64.4-121.4 64.4-51.9 .2-102.4-16.4-144.1-47.3l33.7-39.4-35.6-27.4L0 406.3l15.4 13.8c52.5 46.8 120.4 72.5 190.7 72.2 51.4 0 94.4-10.5 133.6-44.1 57.1-51.4 54.2-149.2 20.3-189.6z',
			),
		),
		'label'             => __( 'Scribd', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'scroll'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M48 32C21.5 32 0 53.5 0 80v64C0 152.9 7.125 160 16 160H96V80C96 53.5 74.5 32 48 32zM256 380.6V320h224V128c0-53-43-96-96-96H111.6C121.8 45.38 128 61.88 128 80V384c0 38.88 34.62 69.63 74.75 63.13C234.3 442 256 412.5 256 380.6zM288 352v32c0 52.88-43 96-96 96h272c61.88 0 112-50.13 112-112c0-8.875-7.125-16-16-16H288z',
			),
		),
		'label'             => __( 'Scroll', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'scroll-torah'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 366.5l17.75-29.62l-35.5 .0011L320 366.5zM382.5 311.5l36.75-.0011l-18.38-30.75L382.5 311.5zM48 0C21.5 0 0 14.38 0 32v448c0 17.62 21.5 32 48 32S96 497.6 96 480V32C96 14.38 74.5 0 48 0zM419.2 200.5L382.4 200.5l18.5 30.79L419.2 200.5zM220.8 311.5l36.87-.0012l-18.5-30.87L220.8 311.5zM287.1 311.5L352.9 311.5l33.25-55.5l-33.25-55.5L287.1 200.5L253.9 256L287.1 311.5zM592 0C565.5 0 544 14.38 544 32v448c0 17.62 21.5 32 48 32s48-14.38 48-32V32C640 14.38 618.5 0 592 0zM128 480h384V32H128V480zM194.8 185.9c3.75-6.625 10.87-10.75 18.5-10.75L272.7 175.1l29.12-48.67C305.6 119.1 312.6 116.1 319.1 116.1c7.375-.125 14.25 3.916 17.1 10.17l29.25 48.87l59.5-.0019c7.625 0 14.62 4.124 18.38 10.75s3.626 14.75-.2493 21.25l-29.25 48.87l29.38 48.1c4 6.5 4.001 14.62 .2506 21.12c-3.75 6.625-10.87 10.75-18.5 10.75l-59.5 .0019l-29.12 48.67c-3.75 6.5-10.62 10.33-18.12 10.46c-7.375 0-14.25-3.874-18-10.25l-29.25-48.87l-59.5 .0019c-7.625 0-14.62-4.124-18.37-10.75S191.3 311.4 195.1 304.9l29.25-48.87L195 207C191.1 200.5 191 192.4 194.8 185.9zM319.1 145.5L302.2 175.1l35.37-.0011L319.1 145.5zM257.5 200.5L220.8 200.5l18.38 30.83L257.5 200.5z',
			),
		),
		'label'             => __( 'Scroll Torah', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'sd-card'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 0H128L0 128v320c0 35.25 28.75 64 64 64h256c35.25 0 64-28.75 64-64V64C384 28.75 355.3 0 320 0zM160 160H112V64H160V160zM240 160H192V64h48V160zM320 160h-48V64H320V160z',
			),
		),
		'label'             => __( 'Sd Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'searchengin'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 460,
				'height' => 512,
				'path'   => 'M220.6 130.3l-67.2 28.2V43.2L98.7 233.5l54.7-24.2v130.3l67.2-209.3zm-83.2-96.7l-1.3 4.7-15.2 52.9C80.6 106.7 52 145.8 52 191.5c0 52.3 34.3 95.9 83.4 105.5v53.6C57.5 340.1 0 272.4 0 191.6c0-80.5 59.8-147.2 137.4-158zm311.4 447.2c-11.2 11.2-23.1 12.3-28.6 10.5-5.4-1.8-27.1-19.9-60.4-44.4-33.3-24.6-33.6-35.7-43-56.7-9.4-20.9-30.4-42.6-57.5-52.4l-9.7-14.7c-24.7 16.9-53 26.9-81.3 28.7l2.1-6.6 15.9-49.5c46.5-11.9 80.9-54 80.9-104.2 0-54.5-38.4-102.1-96-107.1V32.3C254.4 37.4 320 106.8 320 191.6c0 33.6-11.2 64.7-29 90.4l14.6 9.6c9.8 27.1 31.5 48 52.4 57.4s32.2 9.7 56.8 43c24.6 33.2 42.7 54.9 44.5 60.3s.7 17.3-10.5 28.5zm-9.9-17.9c0-4.4-3.6-8-8-8s-8 3.6-8 8 3.6 8 8 8 8-3.6 8-8z',
			),
		),
		'label'             => __( 'Searchengin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'section'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M224.5 337.4c15.66-14.28 26.09-33.12 29.8-55.82c14.46-88.44-64.67-112.4-117-128.2L124.7 149.5C65.67 131.2 61.11 119.4 64.83 96.79c1.531-9.344 5.715-16.19 13.21-21.56c14.74-10.56 39.94-13.87 69.23-9.029c10.74 1.75 24.36 5.686 41.66 12.03c16.58 6 34.98-2.438 41.04-19.06c6.059-16.59-2.467-34.97-19.05-41.06c-21.39-7.842-38.35-12.62-53.28-15.06c-46.47-7.781-88.1-.5313-116.9 20.19C19.46 38.52 5.965 60.39 1.686 86.48C-5.182 128.6 9.839 156 31.47 174.7C15.87 188.1 5.406 207.8 1.686 230.5C-12.59 317.9 67.36 342.7 105.7 354.6l12.99 3.967c64.71 19.56 76.92 29.09 72.42 56.59c-1.279 7.688-4.84 18.75-21.23 26.16c-15.27 6.906-37.01 8.406-61.4 4.469c-16.74-2.656-37.32-10.5-55.49-17.41l-9.773-3.719c-16.52-6.156-34.95 2.25-41.16 18.75c-6.184 16.56 2.186 34.1 18.74 41.19l9.463 3.594c21.05 8 44.94 17.12 68.02 20.75c12.21 2.031 24.14 3.032 35.54 3.032c23.17 0 44.28-4.157 62.4-12.34c31.95-14.44 52.53-40.75 58.02-74.12C261.1 383.6 246.8 356.3 224.5 337.4zM64.83 240.8c3.303-20.28 21.22-28.1 38.09-31.04c.9258 .2891 15.81 4.852 15.81 4.852c64.71 19.56 76.92 29.09 72.39 56.62c-3.291 20.2-21.12 28.07-37.93 31.04c-5.488-1.746-28.49-8.754-28.49-8.754C65.67 275.2 61.11 263.4 64.83 240.8z',
			),
		),
		'label'             => __( 'Section', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'seedling'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 95.1H0c0 123.8 100.3 224 224 224v128C224 465.6 238.4 480 255.1 480S288 465.6 288 448V320C288 196.3 187.7 95.1 64 95.1zM448 32c-84.25 0-157.4 46.5-195.8 115.3c27.75 30.12 48.25 66.88 59 107.5C424 243.1 512 147.9 512 32H448z',
			),
		),
		'label'             => __( 'Seedling', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'sellcast'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M353.4 32H94.7C42.6 32 0 74.6 0 126.6v258.7C0 437.4 42.6 480 94.7 480h258.7c52.1 0 94.7-42.6 94.7-94.6V126.6c0-52-42.6-94.6-94.7-94.6zm-50 316.4c-27.9 48.2-89.9 64.9-138.2 37.2-22.9 39.8-54.9 8.6-42.3-13.2l15.7-27.2c5.9-10.3 19.2-13.9 29.5-7.9 18.6 10.8-.1-.1 18.5 10.7 27.6 15.9 63.4 6.3 79.4-21.3 15.9-27.6 6.3-63.4-21.3-79.4-17.8-10.2-.6-.4-18.6-10.6-24.6-14.2-3.4-51.9 21.6-37.5 18.6 10.8-.1-.1 18.5 10.7 48.4 28 65.1 90.3 37.2 138.5zm21.8-208.8c-17 29.5-16.3 28.8-19 31.5-6.5 6.5-16.3 8.7-26.5 3.6-18.6-10.8 .1 .1-18.5-10.7-27.6-15.9-63.4-6.3-79.4 21.3s-6.3 63.4 21.3 79.4c0 0 18.5 10.6 18.6 10.6 24.6 14.2 3.4 51.9-21.6 37.5-18.6-10.8 .1 .1-18.5-10.7-48.2-27.8-64.9-90.1-37.1-138.4 27.9-48.2 89.9-64.9 138.2-37.2l4.8-8.4c14.3-24.9 52-3.3 37.7 21.5z',
			),
		),
		'label'             => __( 'Sellcast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sellsy'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M539.7 237.3c3.064-12.26 4.29-24.82 4.29-37.38C544 107.4 468.6 32 376.1 32c-77.22 0-144.6 53.01-163 127.8-15.32-13.18-34.93-20.53-55.16-20.53-46.27 0-83.96 37.69-83.96 83.96 0 7.354 .92 15.02 3.065 22.37-42.9 20.23-70.79 63.74-70.79 111.2C6.216 424.8 61.68 480 129.4 480h381.2c67.72 0 123.2-55.16 123.2-123.2 .001-56.38-38.92-106-94.07-119.5zM199.9 401.6c0 8.274-7.048 15.32-15.32 15.32H153.6c-8.274 0-15.32-7.048-15.32-15.32V290.6c0-8.273 7.048-15.32 15.32-15.32h30.95c8.274 0 15.32 7.048 15.32 15.32v110.9zm89.48 0c0 8.274-7.048 15.32-15.32 15.32h-30.95c-8.274 0-15.32-7.048-15.32-15.32V270.1c0-8.274 7.048-15.32 15.32-15.32h30.95c8.274 0 15.32 7.048 15.32 15.32v131.5zm89.48 0c0 8.274-7.047 15.32-15.32 15.32h-30.95c-8.274 0-15.32-7.048-15.32-15.32V238.8c0-8.274 7.048-15.32 15.32-15.32h30.95c8.274 0 15.32 7.048 15.32 15.32v162.7zm87.03 0c0 8.274-7.048 15.32-15.32 15.32h-28.5c-8.274 0-15.32-7.048-15.32-15.32V176.9c0-8.579 7.047-15.63 15.32-15.63h28.5c8.274 0 15.32 7.048 15.32 15.63v224.6z',
			),
		),
		'label'             => __( 'Sellsy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'server'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 288H32c-17.62 0-32 14.38-32 32v128c0 17.62 14.38 32 32 32h448c17.62 0 32-14.38 32-32v-128C512 302.4 497.6 288 480 288zM352 408c-13.25 0-24-10.75-24-24s10.75-24 24-24s24 10.75 24 24S365.3 408 352 408zM416 408c-13.25 0-24-10.75-24-24s10.75-24 24-24s24 10.75 24 24S429.3 408 416 408zM480 32H32C14.38 32 0 46.38 0 64v128c0 17.62 14.38 32 32 32h448c17.62 0 32-14.38 32-32V64C512 46.38 497.6 32 480 32zM352 152c-13.25 0-24-10.75-24-24S338.8 104 352 104S376 114.8 376 128S365.3 152 352 152zM416 152c-13.25 0-24-10.75-24-24S402.8 104 416 104S440 114.8 440 128S429.3 152 416 152z',
			),
		),
		'label'             => __( 'Server', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'servicestack'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M88 216c81.7 10.2 273.7 102.3 304 232H0c99.5-8.1 184.5-137 88-232zm32-152c32.3 35.6 47.7 83.9 46.4 133.6C249.3 231.3 373.7 321.3 400 448h96C455.3 231.9 222.8 79.5 120 64z',
			),
		),
		'label'             => __( 'Servicestack', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'shapes'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M411.4 175.5C417.4 185.4 417.5 197.7 411.8 207.8C406.2 217.8 395.5 223.1 384 223.1H192C180.5 223.1 169.8 217.8 164.2 207.8C158.5 197.7 158.6 185.4 164.6 175.5L260.6 15.54C266.3 5.897 276.8 0 288 0C299.2 0 309.7 5.898 315.4 15.54L411.4 175.5zM288 312C288 289.9 305.9 272 328 272H472C494.1 272 512 289.9 512 312V456C512 478.1 494.1 496 472 496H328C305.9 496 288 478.1 288 456V312zM0 384C0 313.3 57.31 256 128 256C198.7 256 256 313.3 256 384C256 454.7 198.7 512 128 512C57.31 512 0 454.7 0 384z',
			),
		),
		'label'             => __( 'Shapes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'education' ),
	),
	'share'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M503.7 226.2l-176 151.1c-15.38 13.3-39.69 2.545-39.69-18.16V272.1C132.9 274.3 66.06 312.8 111.4 457.8c5.031 16.09-14.41 28.56-28.06 18.62C39.59 444.6 0 383.8 0 322.3c0-152.2 127.4-184.4 288-186.3V56.02c0-20.67 24.28-31.46 39.69-18.16l176 151.1C514.8 199.4 514.8 216.6 503.7 226.2z',
			),
		),
		'label'             => __( 'Share', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'share-from-square'                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.9 143.5l-150.9-138.2C404.8-6.773 384 3.039 384 21.84V96C241.2 97.63 128 126.1 128 260.6c0 54.3 35.2 108.1 74.08 136.2c12.14 8.781 29.42-2.238 24.94-16.46C186.7 252.2 256 224 384 223.1v74.2c0 18.82 20.84 28.59 34.02 16.51l150.9-138.2C578.4 167.8 578.4 152.2 568.9 143.5zM416 384c-17.67 0-32 14.33-32 32v31.1l-320-.0013V128h32c17.67 0 32-14.32 32-32S113.7 64 96 64H64C28.65 64 0 92.65 0 128v319.1c0 35.34 28.65 64 64 64l320-.0013c35.35 0 64-28.66 64-64V416C448 398.3 433.7 384 416 384z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.5 142.6l-144-135.1c-9.625-9.156-24.81-8.656-33.91 .9687c-9.125 9.625-8.688 24.81 .9687 33.91l100.1 94.56h-163.4C287.5 134.2 249.7 151 221 179.4C192 208.2 176 246.7 176 288v87.1c0 13.25 10.75 23.1 24 23.1S224 389.3 224 376V288c0-28.37 10.94-54.84 30.78-74.5C274.3 194.2 298.9 183 328 184h163.6l-100.1 94.56c-9.656 9.094-10.09 24.28-.9687 33.91c4.719 4.1 11.06 7.531 17.44 7.531c5.906 0 11.84-2.156 16.47-6.562l144-135.1C573.3 172.9 576 166.6 576 160S573.3 147.1 568.5 142.6zM360 384c-13.25 0-24 10.75-24 23.1v47.1c0 4.406-3.594 7.1-8 7.1h-272c-4.406 0-8-3.594-8-7.1V184c0-4.406 3.594-7.1 8-7.1H112c13.25 0 24-10.75 24-23.1s-10.75-23.1-24-23.1H56c-30.88 0-56 25.12-56 55.1v271.1C0 486.9 25.13 512 56 512h272c30.88 0 56-25.12 56-55.1v-47.1C384 394.8 373.3 384 360 384z',
			),
		),
		'label'             => __( 'Share From Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'share-nodes'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 127.1C448 181 405 223.1 352 223.1C326.1 223.1 302.6 213.8 285.4 197.1L191.3 244.1C191.8 248 191.1 251.1 191.1 256C191.1 260 191.8 263.1 191.3 267.9L285.4 314.9C302.6 298.2 326.1 288 352 288C405 288 448 330.1 448 384C448 437 405 480 352 480C298.1 480 256 437 256 384C256 379.1 256.2 376 256.7 372.1L162.6 325.1C145.4 341.8 121.9 352 96 352C42.98 352 0 309 0 256C0 202.1 42.98 160 96 160C121.9 160 145.4 170.2 162.6 186.9L256.7 139.9C256.2 135.1 256 132 256 128C256 74.98 298.1 32 352 32C405 32 448 74.98 448 128L448 127.1zM95.1 287.1C113.7 287.1 127.1 273.7 127.1 255.1C127.1 238.3 113.7 223.1 95.1 223.1C78.33 223.1 63.1 238.3 63.1 255.1C63.1 273.7 78.33 287.1 95.1 287.1zM352 95.1C334.3 95.1 320 110.3 320 127.1C320 145.7 334.3 159.1 352 159.1C369.7 159.1 384 145.7 384 127.1C384 110.3 369.7 95.1 352 95.1zM352 416C369.7 416 384 401.7 384 384C384 366.3 369.7 352 352 352C334.3 352 320 366.3 320 384C320 401.7 334.3 416 352 416z',
			),
		),
		'label'             => __( 'Share Nodes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social', 'brands', 'brands', 'social' ),
	),
	'sheet-plastic'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H320C355.3 0 384 28.65 384 64V352H256C238.3 352 224 366.3 224 384V512H64C28.65 512 0 483.3 0 448V64zM171.3 52.69C165.1 46.44 154.9 46.44 148.7 52.69L52.69 148.7C46.44 154.9 46.44 165.1 52.69 171.3C58.93 177.6 69.06 177.6 75.31 171.3L171.3 75.31C177.6 69.07 177.6 58.94 171.3 52.69V52.69zM267.3 107.3C273.6 101.1 273.6 90.93 267.3 84.69C261.1 78.44 250.9 78.44 244.7 84.69L84.69 244.7C78.44 250.9 78.44 261.1 84.69 267.3C90.93 273.6 101.1 273.6 107.3 267.3L267.3 107.3zM384 384L256 512V384H384z',
			),
		),
		'label'             => __( 'Sheet Plastic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'shekel-sign'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M192 32C262.7 32 320 89.31 320 160V320C320 337.7 305.7 352 288 352C270.3 352 256 337.7 256 320V160C256 124.7 227.3 96 192 96H64V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448V64C0 46.33 14.33 32 32 32H192zM160 480C142.3 480 128 465.7 128 448V192C128 174.3 142.3 160 160 160C177.7 160 192 174.3 192 192V416H320C355.3 416 384 387.3 384 352V64C384 46.33 398.3 32 416 32C433.7 32 448 46.33 448 64V352C448 422.7 390.7 480 320 480H160z',
			),
		),
		'label'             => __( 'Shekel Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'shield'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256-.0078C260.7-.0081 265.2 1.008 269.4 2.913L457.7 82.79C479.7 92.12 496.2 113.8 496 139.1C495.5 239.2 454.7 420.7 282.4 503.2C265.7 511.1 246.3 511.1 229.6 503.2C57.25 420.7 16.49 239.2 15.1 139.1C15.87 113.8 32.32 92.12 54.3 82.79L242.7 2.913C246.8 1.008 251.4-.0081 256-.0078V-.0078z',
			),
		),
		'label'             => __( 'Shield', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'shield-cat'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M199.1 272C199.1 263.2 207.2 256 215.1 256C224.8 256 231.1 263.2 231.1 272C231.1 280.8 224.8 288 215.1 288C207.2 288 199.1 280.8 199.1 272zM312 272C312 280.8 304.8 288 296 288C287.2 288 280 280.8 280 272C280 263.2 287.2 256 296 256C304.8 256 312 263.2 312 272zM256.3-.0068C261.9-.0507 267.3 1.386 272.1 4.066L476.5 90.53C487.7 95.27 495.2 105.1 495.9 118.1C501.6 213.6 466.7 421.9 272.5 507.7C267.6 510.5 261.1 512.1 256.3 512C250.5 512.1 244.9 510.5 239.1 507.7C45.8 421.9 10.95 213.6 16.57 118.1C17.28 105.1 24.83 95.27 36.04 90.53L240.4 4.066C245.2 1.386 250.7-.0507 256.3-.0068H256.3zM223.1 208L159.1 144V272C159.1 325 202.1 368 255.1 368C309 368 352 325 352 272V144L288 208H223.1z',
			),
		),
		'label'             => __( 'Shield Cat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'shield-dog'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 208C288 216.8 280.8 224 272 224C263.2 224 255.1 216.8 255.1 208C255.1 199.2 263.2 192 272 192C280.8 192 288 199.2 288 208zM256.3-.0068C261.9-.0507 267.3 1.386 272.1 4.066L476.5 90.53C487.7 95.27 495.2 105.1 495.9 118.1C501.6 213.6 466.7 421.9 272.5 507.7C267.6 510.5 261.1 512.1 256.3 512C250.5 512.1 244.9 510.5 239.1 507.7C45.8 421.9 10.95 213.6 16.57 118.1C17.28 105.1 24.83 95.27 36.04 90.53L240.4 4.066C245.2 1.386 250.7-.0507 256.3-.0068H256.3zM160.9 286.2L143.1 320L272 384V320H320C364.2 320 400 284.2 400 240V208C400 199.2 392.8 192 384 192H320L312.8 177.7C307.4 166.8 296.3 160 284.2 160H239.1V224C239.1 259.3 211.3 288 175.1 288C170.8 288 165.7 287.4 160.9 286.2H160.9zM143.1 176V224C143.1 241.7 158.3 256 175.1 256C193.7 256 207.1 241.7 207.1 224V160H159.1C151.2 160 143.1 167.2 143.1 176z',
			),
		),
		'label'             => __( 'Shield Dog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'shield-halved'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256-.0078C260.7-.0081 265.2 1.008 269.4 2.913L457.7 82.79C479.7 92.12 496.2 113.8 496 139.1C495.5 239.2 454.7 420.7 282.4 503.2C265.7 511.1 246.3 511.1 229.6 503.2C57.25 420.7 16.49 239.2 15.1 139.1C15.87 113.8 32.32 92.12 54.3 82.79L242.7 2.913C246.8 1.008 251.4-.0081 256-.0078V-.0078zM256 444.8C393.1 378 431.1 230.1 432 141.4L256 66.77L256 444.8z',
			),
		),
		'label'             => __( 'Shield Halved', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'shield-heart'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256.3-.0068C261.9-.0507 267.3 1.386 272.1 4.066L476.5 90.53C487.7 95.27 495.2 105.1 495.9 118.1C501.6 213.6 466.7 421.9 272.5 507.7C267.6 510.5 261.1 512.1 256.3 512C250.5 512.1 244.9 510.5 239.1 507.7C45.8 421.9 10.95 213.6 16.57 118.1C17.28 105.1 24.83 95.27 36.04 90.53L240.4 4.066C245.2 1.386 250.7-.0507 256.3-.0068H256.3zM266.1 363.4L364.2 263.6C392.2 234.7 390.5 186.6 358.1 159.5C331.8 135.8 291.5 140.2 266.1 166.5L256.4 176.1L245.9 166.5C221.4 140.2 180.2 135.8 153 159.5C121.5 186.6 119.8 234.7 147.8 263.6L244.2 363.4C251.2 369.5 260.8 369.5 266.1 363.4V363.4z',
			),
		),
		'label'             => __( 'Shield Heart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'shield-virus'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 255.1c-8.836 0-16 7.162-16 16c0 8.836 7.164 15.1 16 15.1s16-7.163 16-15.1C304 263.2 296.8 255.1 288 255.1zM224 191.1c-8.836 0-16 7.162-16 16c0 8.836 7.164 16 15.1 16s16-7.164 16-16C240 199.2 232.8 191.1 224 191.1zM466.5 83.68l-192-80.01C269.6 1.641 261.3 0 256.1 0C250.7 0 242.5 1.641 237.6 3.672l-192 80.01C27.69 91.07 16 108.6 16 127.1C16 385.2 205.2 512 255.9 512c52.02 0 240.1-128.2 240.1-384C496 108.6 484.3 91.07 466.5 83.68zM384 255.1h-12.12c-19.29 0-32.06 15.78-32.06 32.23c0 7.862 2.918 15.88 9.436 22.4l8.576 8.576c3.125 3.125 4.688 7.218 4.688 11.31c0 8.527-6.865 15.1-16 15.1c-4.094 0-8.188-1.562-11.31-4.688l-8.576-8.576c-6.519-6.519-14.53-9.436-22.4-9.436c-16.45 0-32.23 12.77-32.23 32.06v12.12c0 8.844-7.156 16-16 16s-16-7.156-16-16v-12.12c0-19.29-15.78-32.06-32.23-32.06c-7.862 0-15.87 2.917-22.39 9.436l-8.576 8.576c-3.125 3.125-7.219 4.688-11.31 4.688c-9.139 0-16-7.473-16-15.1c0-4.094 1.562-8.187 4.688-11.31l8.576-8.576c6.519-6.519 9.436-14.53 9.436-22.4c0-16.45-12.77-32.23-32.06-32.23H128c-8.844 0-16-7.156-16-16s7.156-16 16-16h12.12c19.29 0 32.06-15.78 32.06-32.23c0-7.862-2.918-15.88-9.436-22.4L154.2 160.8C151 157.7 149.5 153.6 149.5 149.5c0-8.527 6.865-15.1 16-15.1c4.094 0 8.188 1.562 11.31 4.688L185.4 146.7C191.9 153.3 199.9 156.2 207.8 156.2c16.45 0 32.23-12.77 32.23-32.07V111.1c0-8.844 7.156-16 16-16s16 7.156 16 16v12.12c0 19.29 15.78 32.07 32.23 32.07c7.862 0 15.88-2.917 22.4-9.436l8.576-8.577c3.125-3.125 7.219-4.688 11.31-4.688c9.139 0 16 7.473 16 15.1c0 4.094-1.562 8.187-4.688 11.31l-8.576 8.577c-6.519 6.519-9.436 14.53-9.436 22.4c0 16.45 12.77 32.23 32.06 32.23h12.12c8.844 0 16 7.156 16 16S392.8 255.1 384 255.1z',
			),
		),
		'label'             => __( 'Shield Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'ship'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192 32C192 14.33 206.3 0 224 0H352C369.7 0 384 14.33 384 32V64H432C458.5 64 480 85.49 480 112V240L524.4 254.8C547.6 262.5 553.9 292.3 535.9 308.7L434.9 401.4C418.7 410.7 400.2 416.5 384 416.5C364.4 416.5 343.2 408.8 324.8 396.1C302.8 380.6 273.3 380.6 251.2 396.1C234 407.9 213.2 416.5 192 416.5C175.8 416.5 157.3 410.7 141.1 401.3L40.09 308.7C22.1 292.3 28.45 262.5 51.59 254.8L96 239.1V111.1C96 85.49 117.5 63.1 144 63.1H192V32zM160 218.7L267.8 182.7C280.9 178.4 295.1 178.4 308.2 182.7L416 218.7V128H160V218.7zM384 448C410.9 448 439.4 437.2 461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448H384z',
			),
		),
		'label'             => __( 'Ship', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'shirt'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 162.8c0 6.917-2.293 13.88-7.012 19.7l-49.96 61.63c-6.32 7.796-15.62 11.85-25.01 11.85c-7.01 0-14.07-2.262-19.97-6.919L480 203.3V464c0 26.51-21.49 48-48 48H208C181.5 512 160 490.5 160 464V203.3L101.1 249.1C96.05 253.7 88.99 255.1 81.98 255.1c-9.388 0-18.69-4.057-25.01-11.85L7.012 182.5C2.292 176.7-.0003 169.7-.0003 162.8c0-9.262 4.111-18.44 12.01-24.68l135-106.6C159.8 21.49 175.7 16 191.1 16H225.6C233.3 61.36 272.5 96 320 96s86.73-34.64 94.39-80h33.6c16.35 0 32.22 5.49 44.99 15.57l135 106.6C635.9 144.4 640 153.6 640 162.8z',
			),
		),
		'label'             => __( 'Shirt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'shirtsinbulk'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M100 410.3l30.6 13.4 4.4-9.9-30.6-13.4zm39.4 17.5l30.6 13.4 4.4-9.9-30.6-13.4zm172.1-14l4.4 9.9 30.6-13.4-4.4-9.9zM179.1 445l30.3 13.7 4.4-9.9-30.3-13.4zM60.4 392.8L91 406.2l4.4-9.6-30.6-13.7zm211.4 38.5l4.4 9.9 30.6-13.4-4.4-9.9zm-39.3 17.5l4.4 9.9 30.6-13.7-4.4-9.6zm118.4-52.2l4.4 9.6 30.6-13.4-4.4-9.9zM170 46.6h-33.5v10.5H170zm-47.2 0H89.2v10.5h33.5zm-47.3 0H42.3v10.5h33.3zm141.5 0h-33.2v10.5H217zm94.5 0H278v10.5h33.5zm47.3 0h-33.5v10.5h33.5zm-94.6 0H231v10.5h33.2zm141.5 0h-33.3v10.5h33.3zM52.8 351.1H42v33.5h10.8zm70-215.9H89.2v10.5h33.5zm-70 10.6h22.8v-10.5H42v33.5h10.8zm168.9 228.6c50.5 0 91.3-40.8 91.3-91.3 0-50.2-40.8-91.3-91.3-91.3-50.2 0-91.3 41.1-91.3 91.3 0 50.5 41.1 91.3 91.3 91.3zm-48.2-111.1c0-25.4 29.5-31.8 49.6-31.8 16.9 0 29.2 5.8 44.3 12l-8.8 16.9h-.9c-6.4-9.9-24.8-13.1-35.6-13.1-9 0-29.8 1.8-29.8 14.9 0 21.6 78.5-10.2 78.5 37.9 0 25.4-31.5 31.2-51 31.2-18.1 0-32.4-2.9-47.2-12.2l9-18.4h.9c6.1 12.2 23.6 14.9 35.9 14.9 8.7 0 32.7-1.2 32.7-14.3 0-26.1-77.6 6.3-77.6-38zM52.8 178.4H42V212h10.8zm342.4 206.2H406v-33.5h-10.8zM52.8 307.9H42v33.5h10.8zM0 3.7v406l221.7 98.6L448 409.7V3.7zm418.8 387.1L222 476.5 29.2 390.8V120.7h389.7v270.1zm0-299.3H29.2V32.9h389.7v58.6zm-366 130.1H42v33.5h10.8zm0 43.2H42v33.5h10.8zM170 135.2h-33.5v10.5H170zm225.2 163.1H406v-33.5h-10.8zm0-43.2H406v-33.5h-10.8zM217 135.2h-33.2v10.5H217zM395.2 212H406v-33.5h-10.8zm0 129.5H406V308h-10.8zm-131-206.3H231v10.5h33.2zm47.3 0H278v10.5h33.5zm83.7 33.6H406v-33.5h-33.5v10.5h22.8zm-36.4-33.6h-33.5v10.5h33.5z',
			),
		),
		'label'             => __( 'Shirts in Bulk', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'shoe-prints'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 159.1L224 159.1V32L192 32c-35.38 0-64 28.62-64 63.1S156.6 159.1 192 159.1zM0 415.1c0 35.37 28.62 64.01 64 64.01l32-.0103v-127.1l-32-.0005C28.62 351.1 0 380.6 0 415.1zM337.5 287.1c-35 0-76.25 13.12-104.8 31.1C208 336.4 188.3 351.1 128 351.1v128l57.5 15.98c26.25 7.25 53 13.13 80.38 15.01c32.63 2.375 65.63 .743 97.5-6.132C472.9 481.2 512 429.2 512 383.1C512 319.1 427.9 287.1 337.5 287.1zM491.4 7.252c-31.88-6.875-64.88-8.625-97.5-6.25C366.5 2.877 339.8 8.752 313.5 16L256 32V159.1c60.25 0 80 15.62 104.8 31.1c28.5 18.87 69.75 31.1 104.8 31.1C555.9 223.1 640 191.1 640 127.1C640 82.75 600.9 30.75 491.4 7.252z',
			),
		),
		'label'             => __( 'Shoe Prints', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'shop'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 155.2C0 147.9 2.153 140.8 6.188 134.7L81.75 21.37C90.65 8.021 105.6 0 121.7 0H518.3C534.4 0 549.3 8.021 558.2 21.37L633.8 134.7C637.8 140.8 640 147.9 640 155.2C640 175.5 623.5 192 603.2 192H36.84C16.5 192 .0003 175.5 .0003 155.2H0zM64 224H128V384H320V224H384V464C384 490.5 362.5 512 336 512H112C85.49 512 64 490.5 64 464V224zM512 224H576V480C576 497.7 561.7 512 544 512C526.3 512 512 497.7 512 480V224z',
			),
		),
		'label'             => __( 'Shop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'shop-lock'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 155.2C0 147.9 2.153 140.8 6.188 134.7L81.75 21.37C90.65 8.021 105.6 0 121.7 0H518.3C534.4 0 549.3 8.021 558.2 21.37L633.8 134.7C637.8 140.8 640 147.9 640 155.2C640 174.5 625.2 190.3 606.3 191.9C586.1 172.2 558.5 160 528 160C497.5 160 469.8 172.2 449.6 192H36.84C16.5 192 .0003 175.5 .0003 155.2H0zM384 224V464C384 490.5 362.5 512 336 512H112C85.49 512 64 490.5 64 464V224H128V384H320V224H384zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'Shop Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'shop-slash'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M74.13 32.8L81.75 21.38C90.65 8.022 105.6 .001 121.7 .001H518.3C534.4 .001 549.3 8.022 558.2 21.38L633.8 134.7C637.8 140.8 640 147.9 640 155.2C640 175.5 623.5 192 603.2 192H277.3L320 225.5V224H384V275.7L512 375.1V224H576V426.2L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L74.13 32.8zM0 155.2C0 147.9 2.153 140.8 6.188 134.7L20.98 112.5L121.8 192H36.84C16.5 192 .0003 175.5 .0003 155.2H0zM320 384V348.1L384 398.5V464C384 490.5 362.5 512 336 512H112C85.49 512 64 490.5 64 464V224H128V384H320z',
			),
		),
		'label'             => __( 'Shop Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'shopify'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M388.3 104.1a4.66 4.66 0 0 0 -4.4-4c-2 0-37.23-.8-37.23-.8s-21.61-20.82-29.62-28.83V503.2L442.8 472S388.7 106.5 388.3 104.1zM288.6 70.47a116.7 116.7 0 0 0 -7.21-17.61C271 32.85 255.4 22 237 22a15 15 0 0 0 -4 .4c-.4-.8-1.2-1.2-1.6-2C223.4 11.63 213 7.63 200.6 8c-24 .8-48 18-67.25 48.83-13.61 21.62-24 48.84-26.82 70.06-27.62 8.4-46.83 14.41-47.23 14.81-14 4.4-14.41 4.8-16 18-1.2 10-38 291.8-38 291.8L307.9 504V65.67a41.66 41.66 0 0 0 -4.4 .4S297.9 67.67 288.6 70.47zM233.4 87.69c-16 4.8-33.63 10.4-50.84 15.61 4.8-18.82 14.41-37.63 25.62-50 4.4-4.4 10.41-9.61 17.21-12.81C232.2 54.86 233.8 74.48 233.4 87.69zM200.6 24.44A27.49 27.49 0 0 1 215 28c-6.4 3.2-12.81 8.41-18.81 14.41-15.21 16.42-26.82 42-31.62 66.45-14.42 4.41-28.83 8.81-42 12.81C131.3 83.28 163.8 25.24 200.6 24.44zM154.1 244.6c1.6 25.61 69.25 31.22 73.25 91.66 2.8 47.64-25.22 80.06-65.65 82.47-48.83 3.2-75.65-25.62-75.65-25.62l10.4-44s26.82 20.42 48.44 18.82c14-.8 19.22-12.41 18.81-20.42-2-33.62-57.24-31.62-60.84-86.86-3.2-46.44 27.22-93.27 94.47-97.68 26-1.6 39.23 4.81 39.23 4.81L221.4 225.4s-17.21-8-37.63-6.4C154.1 221 153.8 239.8 154.1 244.6zM249.4 82.88c0-12-1.6-29.22-7.21-43.63 18.42 3.6 27.22 24 31.23 36.43Q262.6 78.68 249.4 82.88z',
			),
		),
		'label'             => __( 'Shopify', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'shopware'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M403.5 455.4A246.2 246.2 0 0 1 256 504C118.8 504 8 393 8 256 8 118.8 119 8 256 8a247.4 247.4 0 0 1 165.7 63.5 3.57 3.57 0 0 1 -2.86 6.18A418.6 418.6 0 0 0 362.1 74c-129.4 0-222.4 53.47-222.4 155.4 0 109 92.13 145.9 176.8 178.7 33.64 13 65.4 25.36 87 41.59a3.58 3.58 0 0 1 0 5.72zM503 233.1a3.64 3.64 0 0 0 -1.27-2.44c-51.76-43-93.62-60.48-144.5-60.48-84.13 0-80.25 52.17-80.25 53.63 0 42.6 52.06 62 112.3 84.49 31.07 11.59 63.19 23.57 92.68 39.93a3.57 3.57 0 0 0 5-1.82A249 249 0 0 0 503 233.1z',
			),
		),
		'label'             => __( 'Shopware', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'shower'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 384c-17.67 0-32 14.33-32 32c0 17.67 14.33 32 32 32s32-14.33 32-32C320 398.3 305.7 384 288 384zM416 256c-17.67 0-32 14.33-32 32c0 17.67 14.33 32 32 32s32-14.33 32-32C448 270.3 433.7 256 416 256zM480 192c-17.67 0-32 14.33-32 32c0 17.67 14.33 32 32 32s32-14.33 32-32C512 206.3 497.7 192 480 192zM288 320c0-17.67-14.33-32-32-32s-32 14.33-32 32c0 17.67 14.33 32 32 32S288 337.7 288 320zM320 224c-17.67 0-32 14.33-32 32c0 17.67 14.33 32 32 32s32-14.33 32-32C352 238.3 337.7 224 320 224zM384 224c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32s-32 14.33-32 32C352 209.7 366.3 224 384 224zM352 320c-17.67 0-32 14.33-32 32c0 17.67 14.33 32 32 32s32-14.33 32-32C384 334.3 369.7 320 352 320zM347.3 91.31l-11.31-11.31c-6.248-6.248-16.38-6.248-22.63 0l-6.631 6.631c-35.15-26.29-81.81-29.16-119.6-8.779L170.5 61.25C132.2 22.95 63.65 18.33 21.98 71.16C7.027 90.11 0 114.3 0 138.4V464C0 472.8 7.164 480 16 480h32C56.84 480 64 472.8 64 464V131.9c0-19.78 16.09-35.87 35.88-35.87c9.438 0 18.69 3.828 25.38 10.5l16.61 16.61C121.5 160.9 124.3 207.6 150.6 242.7L144 249.4c-6.248 6.248-6.248 16.38 0 22.63l11.31 11.31c6.248 6.25 16.38 6.25 22.63 0l169.4-169.4C353.6 107.7 353.6 97.56 347.3 91.31z',
			),
		),
		'label'             => __( 'Shower', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'shrimp'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 320V128H64C46.34 128 32 113.6 32 96s14.34-32 32-32h368c8.844 0 16-7.156 16-16s-7.156-16-16-16H64C28.72 32 0 60.7 0 96s28.72 64 64 64h2.879c15.26 90.77 94.01 160 189.1 160H288zM192 216c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24s24 10.74 24 24C216 205.3 205.3 216 192 216zM225.6 399.4c-4.75 12.36 1.406 26.25 13.78 31.02l5.688 2.188C233.3 434.1 224 443.8 224 456c0 13.25 10.75 24 24 24h72v-70.03l-63.38-24.38C244.3 380.9 230.4 386.1 225.6 399.4zM511.2 286.7c-.5488-5.754-2.201-11.1-3.314-16.65l-124.6 90.62c.3711 2.404 .7383 4.814 .7383 7.322c0 1.836-.3379 3.576-.5391 5.357l90.15 40.06C500.8 379.2 515.8 334.8 511.2 286.7zM352 413.1v66.08c37.23-3.363 71.04-18.3 97.94-41.21l-80.34-35.71C364.7 407.1 358.6 410.7 352 413.1zM497.9 237.7C470.1 172.4 402.8 128 328.4 128h-8.436v192h16c12.28 0 23.36 4.748 31.85 12.33L497.9 237.7z',
			),
		),
		'label'             => __( 'Shrimp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'shuffle'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M424.1 287c-15.13-15.12-40.1-4.426-40.1 16.97V352H336L153.6 108.8C147.6 100.8 138.1 96 128 96H32C14.31 96 0 110.3 0 128s14.31 32 32 32h80l182.4 243.2C300.4 411.3 309.9 416 320 416h63.97v47.94c0 21.39 25.86 32.12 40.99 17l79.1-79.98c9.387-9.387 9.387-24.59 0-33.97L424.1 287zM336 160h47.97v48.03c0 21.39 25.87 32.09 40.1 16.97l79.1-79.98c9.387-9.391 9.385-24.59-.0013-33.97l-79.1-79.98c-15.13-15.12-40.99-4.391-40.99 17V96H320c-10.06 0-19.56 4.75-25.59 12.81L254 162.7L293.1 216L336 160zM112 352H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h96c10.06 0 19.56-4.75 25.59-12.81l40.4-53.87L154 296L112 352z',
			),
		),
		'label'             => __( 'Shuffle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'shuttle-space'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M129.1 480H128V384H352L245.2 448.1C210.4 468.1 170.6 480 129.1 480zM352 128H128V32H129.1C170.6 32 210.4 43.03 245.2 63.92L352 128zM104 128C130.2 128 153.4 140.6 168 160H456C525.3 160 591 182.7 635.2 241.6C641.6 250.1 641.6 261.9 635.2 270.4C591 329.3 525.3 352 456 352H168C153.4 371.4 130.2 384 104 384H96V480H80C53.49 480 32 458.5 32 432V384H40C17.91 384 0 366.1 0 344V168C0 145.9 17.89 128 39.96 128H32V80C32 53.49 53.49 32 80 32H96V128H104zM476.4 208C473.1 208 472 209.1 472 212.4V299.6C472 302 473.1 304 476.4 304C496.1 304 512 288.1 512 268.4V243.6C512 223.9 496.1 208 476.4 208z',
			),
		),
		'label'             => __( 'Shuttle Space', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'sign-hanging'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V64H480C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H128V480C128 497.7 113.7 512 96 512C78.33 512 64 497.7 64 480V128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H64V32C64 14.33 78.33 0 96 0zM448 160C465.7 160 480 174.3 480 192V352C480 369.7 465.7 384 448 384H192C174.3 384 160 369.7 160 352V192C160 174.3 174.3 160 192 160H448z',
			),
		),
		'label'             => __( 'Sign Hanging', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'signal'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 0c-17.67 0-32 14.33-32 31.1V480C512 497.7 526.3 512 544 512s32-14.33 32-31.1V31.1C576 14.33 561.7 0 544 0zM160 288C142.3 288 128 302.3 128 319.1v160C128 497.7 142.3 512 160 512s32-14.33 32-31.1V319.1C192 302.3 177.7 288 160 288zM32 384C14.33 384 0 398.3 0 415.1v64C0 497.7 14.33 512 31.1 512S64 497.7 64 480V415.1C64 398.3 49.67 384 32 384zM416 96c-17.67 0-32 14.33-32 31.1V480C384 497.7 398.3 512 416 512s32-14.33 32-31.1V127.1C448 110.3 433.7 96 416 96zM288 192C270.3 192 256 206.3 256 223.1v256C256 497.7 270.3 512 288 512s32-14.33 32-31.1V223.1C320 206.3 305.7 192 288 192z',
			),
		),
		'label'             => __( 'Signal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'signature'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 160C192 177.7 177.7 192 160 192C142.3 192 128 177.7 128 160V128C128 74.98 170.1 32 224 32C277 32 320 74.98 320 128V135.8C320 156.6 318.8 177.4 316.4 198.1L438.8 161.3C450.2 157.9 462.6 161.1 470.1 169.7C479.3 178.3 482.1 190.8 478.4 202.1L460.4 255.1H544C561.7 255.1 576 270.3 576 287.1C576 305.7 561.7 319.1 544 319.1H416C405.7 319.1 396.1 315.1 390 306.7C384 298.4 382.4 287.6 385.6 277.9L398.1 240.4L303.7 268.7C291.9 321.5 272.2 372.2 245.3 419.2L231.4 443.5C218.5 466.1 194.5 480 168.5 480C128.5 480 95.1 447.5 95.1 407.5V335.6C95.1 293.2 123.8 255.8 164.4 243.7L248.8 218.3C253.6 191.1 255.1 163.5 255.1 135.8V128C255.1 110.3 241.7 96 223.1 96C206.3 96 191.1 110.3 191.1 128L192 160zM160 335.6V407.5C160 412.2 163.8 416 168.5 416C171.5 416 174.4 414.4 175.9 411.7L189.8 387.4C207.3 356.6 221.4 324.1 231.8 290.3L182.8 304.1C169.3 309 160 321.5 160 335.6V335.6zM24 368H64V407.5C64 410.4 64.11 413.2 64.34 416H24C10.75 416 0 405.3 0 392C0 378.7 10.75 368 24 368zM616 416H283.5C291.7 400.3 299.2 384.3 305.9 368H616C629.3 368 640 378.7 640 392C640 405.3 629.3 416 616 416z',
			),
		),
		'label'             => __( 'Signature', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'signs-post'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M223.1 32C223.1 14.33 238.3 0 255.1 0C273.7 0 288 14.33 288 32H441.4C445.6 32 449.7 33.69 452.7 36.69L500.7 84.69C506.9 90.93 506.9 101.1 500.7 107.3L452.7 155.3C449.7 158.3 445.6 160 441.4 160H63.1C46.33 160 31.1 145.7 31.1 128V64C31.1 46.33 46.33 32 63.1 32L223.1 32zM480 320C480 337.7 465.7 352 448 352H70.63C66.38 352 62.31 350.3 59.31 347.3L11.31 299.3C5.065 293.1 5.065 282.9 11.31 276.7L59.31 228.7C62.31 225.7 66.38 223.1 70.63 223.1H223.1V191.1H288V223.1H448C465.7 223.1 480 238.3 480 255.1V320zM255.1 512C238.3 512 223.1 497.7 223.1 480V384H288V480C288 497.7 273.7 512 255.1 512z',
			),
		),
		'label'             => __( 'Signs Post', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'sim-card'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 64v384c0 35.25 28.75 64 64 64h256c35.25 0 64-28.75 64-64V128l-128-128H64C28.75 0 0 28.75 0 64zM224 256H160V192h64V256zM320 256h-64V192h32c17.75 0 32 14.25 32 32V256zM256 384h64v32c0 17.75-14.25 32-32 32h-32V384zM160 384h64v64H160V384zM64 384h64v64H96c-17.75 0-32-14.25-32-32V384zM64 288h256v64H64V288zM64 224c0-17.75 14.25-32 32-32h32v64H64V224z',
			),
		),
		'label'             => __( 'Sim Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'simplybuilt'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M481.2 64h-106c-14.5 0-26.6 11.8-26.6 26.3v39.6H163.3V90.3c0-14.5-12-26.3-26.6-26.3h-106C16.1 64 4.3 75.8 4.3 90.3v331.4c0 14.5 11.8 26.3 26.6 26.3h450.4c14.8 0 26.6-11.8 26.6-26.3V90.3c-.2-14.5-12-26.3-26.7-26.3zM149.8 355.8c-36.6 0-66.4-29.7-66.4-66.4 0-36.9 29.7-66.6 66.4-66.6 36.9 0 66.6 29.7 66.6 66.6 0 36.7-29.7 66.4-66.6 66.4zm212.4 0c-36.9 0-66.6-29.7-66.6-66.6 0-36.6 29.7-66.4 66.6-66.4 36.6 0 66.4 29.7 66.4 66.4 0 36.9-29.8 66.6-66.4 66.6z',
			),
		),
		'label'             => __( 'SimplyBuilt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sink'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M496 288h-96V256l64 .0002c8.838 0 16-7.164 16-15.1v-15.1c0-8.838-7.162-16-16-16L384 208c-17.67 0-32 14.33-32 32v47.1l-64 .0005v-192c0-17.64 14.36-32 32-32s32 14.36 32 32v16c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16v-16c0-59.2-53.85-106-115.1-94.14C255.3 10.71 224 53.36 224 99.79v188.2L160 288V240c0-17.67-14.33-32-32-32L48 208c-8.836 0-16 7.162-16 16v15.1C32 248.8 39.16 256 48 256l64-.0002V288h-96c-8.836 0-16 7.164-16 16v32c0 8.836 7.164 16 16 16h480c8.836 0 16-7.164 16-16V304C512 295.2 504.8 288 496 288zM32 416c0 53.02 42.98 96 96 96h256c53.02 0 96-42.98 96-96v-32H32V416z',
			),
		),
		'label'             => __( 'Sink', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'sistrix'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 449L301.2 300.2c20-27.9 31.9-62.2 31.9-99.2 0-93.1-74.7-168.9-166.5-168.9C74.7 32 0 107.8 0 200.9s74.7 168.9 166.5 168.9c39.8 0 76.3-14.2 105-37.9l146 148.1 30.5-31zM166.5 330.8c-70.6 0-128.1-58.3-128.1-129.9S95.9 71 166.5 71s128.1 58.3 128.1 129.9-57.4 129.9-128.1 129.9z',
			),
		),
		'label'             => __( 'SISTRIX', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sitemap'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 80C208 53.49 229.5 32 256 32H320C346.5 32 368 53.49 368 80V144C368 170.5 346.5 192 320 192H312V232H464C494.9 232 520 257.1 520 288V320H528C554.5 320 576 341.5 576 368V432C576 458.5 554.5 480 528 480H464C437.5 480 416 458.5 416 432V368C416 341.5 437.5 320 464 320H472V288C472 283.6 468.4 280 464 280H312V320H320C346.5 320 368 341.5 368 368V432C368 458.5 346.5 480 320 480H256C229.5 480 208 458.5 208 432V368C208 341.5 229.5 320 256 320H264V280H112C107.6 280 104 283.6 104 288V320H112C138.5 320 160 341.5 160 368V432C160 458.5 138.5 480 112 480H48C21.49 480 0 458.5 0 432V368C0 341.5 21.49 320 48 320H56V288C56 257.1 81.07 232 112 232H264V192H256C229.5 192 208 170.5 208 144V80z',
			),
		),
		'label'             => __( 'Sitemap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'sith'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32l69.71 118.8-58.86-11.52 69.84 91.03a146.7 146.7 0 0 0 0 51.45l-69.84 91.03 58.86-11.52L0 480l118.8-69.71-11.52 58.86 91.03-69.84c17.02 3.04 34.47 3.04 51.48 0l91.03 69.84-11.52-58.86L448 480l-69.71-118.8 58.86 11.52-69.84-91.03c3.03-17.01 3.04-34.44 0-51.45l69.84-91.03-58.86 11.52L448 32l-118.8 69.71 11.52-58.9-91.06 69.87c-8.5-1.52-17.1-2.29-25.71-2.29s-17.21 .78-25.71 2.29l-91.06-69.87 11.52 58.9L0 32zm224 99.78c31.8 0 63.6 12.12 87.85 36.37 48.5 48.5 48.49 127.2 0 175.7s-127.2 48.46-175.7-.03c-48.5-48.5-48.49-127.2 0-175.7 24.24-24.25 56.05-36.34 87.85-36.34zm0 36.66c-22.42 0-44.83 8.52-61.92 25.61-34.18 34.18-34.19 89.68 0 123.9s89.65 34.18 123.8 0c34.18-34.18 34.19-89.68 0-123.9-17.09-17.09-39.5-25.61-61.92-25.61z',
			),
		),
		'label'             => __( 'Sith', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sitrox'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M212.4 .0085V0H448V128H64C64 57.6 141.8 .4753 212.4 .0085zM237.3 192V192C307.1 192.5 384 249.6 384 320H210.8V319.1C140.9 319.6 64 262.4 64 192H237.3zM235.6 511.1C306.3 511.5 384 454.4 384 384H0V512H235.6V511.1z',
			),
		),
		'label'             => __( 'Sitrox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sketch'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M27.5 162.2L9 187.1h90.5l6.9-130.7-78.9 105.8zM396.3 45.7L267.7 32l135.7 147.2-7.1-133.5zM112.2 218.3l-11.2-22H9.9L234.8 458zm2-31.2h284l-81.5-88.5L256.3 33zm297.3 9.1L277.6 458l224.8-261.7h-90.9zM415.4 69L406 56.4l.9 17.3 6.1 113.4h90.3zM113.5 93.5l-4.6 85.6L244.7 32 116.1 45.7zm287.7 102.7h-290l42.4 82.9L256.3 480l144.9-283.8z',
			),
		),
		'label'             => __( 'Sketch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'skull'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 400V464C416 490.5 394.5 512 368 512H320V464C320 455.2 312.8 448 304 448C295.2 448 288 455.2 288 464V512H224V464C224 455.2 216.8 448 208 448C199.2 448 192 455.2 192 464V512H144C117.5 512 96 490.5 96 464V400C96 399.6 96 399.3 96.01 398.9C37.48 357.8 0 294.7 0 224C0 100.3 114.6 0 256 0C397.4 0 512 100.3 512 224C512 294.7 474.5 357.8 415.1 398.9C415.1 399.3 416 399.6 416 400V400zM160 192C124.7 192 96 220.7 96 256C96 291.3 124.7 320 160 320C195.3 320 224 291.3 224 256C224 220.7 195.3 192 160 192zM352 320C387.3 320 416 291.3 416 256C416 220.7 387.3 192 352 192C316.7 192 288 220.7 288 256C288 291.3 316.7 320 352 320z',
			),
		),
		'label'             => __( 'Skull', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'skull-crossbones'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M368 128C368 172.4 342.6 211.5 304 234.4V256C304 273.7 289.7 288 272 288H175.1C158.3 288 143.1 273.7 143.1 256V234.4C105.4 211.5 79.1 172.4 79.1 128C79.1 57.31 144.5 0 223.1 0C303.5 0 368 57.31 368 128V128zM167.1 176C185.7 176 199.1 161.7 199.1 144C199.1 126.3 185.7 112 167.1 112C150.3 112 135.1 126.3 135.1 144C135.1 161.7 150.3 176 167.1 176zM280 112C262.3 112 248 126.3 248 144C248 161.7 262.3 176 280 176C297.7 176 312 161.7 312 144C312 126.3 297.7 112 280 112zM3.378 273.7C11.28 257.9 30.5 251.5 46.31 259.4L223.1 348.2L401.7 259.4C417.5 251.5 436.7 257.9 444.6 273.7C452.5 289.5 446.1 308.7 430.3 316.6L295.6 384L430.3 451.4C446.1 459.3 452.5 478.5 444.6 494.3C436.7 510.1 417.5 516.5 401.7 508.6L223.1 419.8L46.31 508.6C30.5 516.5 11.28 510.1 3.378 494.3C-4.526 478.5 1.881 459.3 17.69 451.4L152.4 384L17.69 316.6C1.881 308.7-4.526 289.5 3.378 273.7V273.7z',
			),
		),
		'label'             => __( 'Skull Crossbones', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'skyatlas'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 329.3c0 65.9-52.5 114.4-117.5 114.4-165.9 0-196.6-249.7-359.7-249.7-146.9 0-147.1 212.2 5.6 212.2 42.5 0 90.9-17.8 125.3-42.5 5.6-4.1 16.9-16.3 22.8-16.3s10.9 5 10.9 10.9c0 7.8-13.1 19.1-18.7 24.1-40.9 35.6-100.3 61.2-154.7 61.2-83.4 .1-154-59-154-144.9s67.5-149.1 152.8-149.1c185.3 0 222.5 245.9 361.9 245.9 99.9 0 94.8-139.7 3.4-139.7-17.5 0-35 11.6-46.9 11.6-8.4 0-15.9-7.2-15.9-15.6 0-11.6 5.3-23.7 5.3-36.3 0-66.6-50.9-114.7-116.9-114.7-53.1 0-80 36.9-88.8 36.9-6.2 0-11.2-5-11.2-11.2 0-5.6 4.1-10.3 7.8-14.4 25.3-28.8 64.7-43.7 102.8-43.7 79.4 0 139.1 58.4 139.1 137.8 0 6.9-.3 13.7-1.2 20.6 11.9-3.1 24.1-4.7 35.9-4.7 60.7 0 111.9 45.3 111.9 107.2z',
			),
		),
		'label'             => __( 'skyatlas', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'skype'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M424.7 299.8c2.9-14 4.7-28.9 4.7-43.8 0-113.5-91.9-205.3-205.3-205.3-14.9 0-29.7 1.7-43.8 4.7C161.3 40.7 137.7 32 112 32 50.2 32 0 82.2 0 144c0 25.7 8.7 49.3 23.3 68.2-2.9 14-4.7 28.9-4.7 43.8 0 113.5 91.9 205.3 205.3 205.3 14.9 0 29.7-1.7 43.8-4.7 19 14.6 42.6 23.3 68.2 23.3 61.8 0 112-50.2 112-112 .1-25.6-8.6-49.2-23.2-68.1zm-194.6 91.5c-65.6 0-120.5-29.2-120.5-65 0-16 9-30.6 29.5-30.6 31.2 0 34.1 44.9 88.1 44.9 25.7 0 42.3-11.4 42.3-26.3 0-18.7-16-21.6-42-28-62.5-15.4-117.8-22-117.8-87.2 0-59.2 58.6-81.1 109.1-81.1 55.1 0 110.8 21.9 110.8 55.4 0 16.9-11.4 31.8-30.3 31.8-28.3 0-29.2-33.5-75-33.5-25.7 0-42 7-42 22.5 0 19.8 20.8 21.8 69.1 33 41.4 9.3 90.7 26.8 90.7 77.6 0 59.1-57.1 86.5-112 86.5z',
			),
		),
		'label'             => __( 'Skype', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'slack'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M94.12 315.1c0 25.9-21.16 47.06-47.06 47.06S0 341 0 315.1c0-25.9 21.16-47.06 47.06-47.06h47.06v47.06zm23.72 0c0-25.9 21.16-47.06 47.06-47.06s47.06 21.16 47.06 47.06v117.8c0 25.9-21.16 47.06-47.06 47.06s-47.06-21.16-47.06-47.06V315.1zm47.06-188.1c-25.9 0-47.06-21.16-47.06-47.06S139 32 164.9 32s47.06 21.16 47.06 47.06v47.06H164.9zm0 23.72c25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06H47.06C21.16 243.1 0 222.8 0 196.9s21.16-47.06 47.06-47.06H164.9zm188.1 47.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06s-21.16 47.06-47.06 47.06h-47.06V196.9zm-23.72 0c0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06V79.06c0-25.9 21.16-47.06 47.06-47.06 25.9 0 47.06 21.16 47.06 47.06V196.9zM283.1 385.9c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06-25.9 0-47.06-21.16-47.06-47.06v-47.06h47.06zm0-23.72c-25.9 0-47.06-21.16-47.06-47.06 0-25.9 21.16-47.06 47.06-47.06h117.8c25.9 0 47.06 21.16 47.06 47.06 0 25.9-21.16 47.06-47.06 47.06H283.1z',
			),
		),
		'label'             => __( 'Slack Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'slash'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196V9.196z',
			),
		),
		'label'             => __( 'Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'sleigh'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M63.1 32C66.31 32 68.56 32.24 70.74 32.71C124.1 37.61 174.2 67.59 203.4 114.3L207.7 121.1C247.7 185.1 317.8 224 393.3 224C423.5 224 448 199.5 448 169.3V128C448 110.3 462.3 96 480 96H544C561.7 96 576 110.3 576 128C576 145.7 561.7 160 544 160V256C544 309 501 352 448 352V384H384V352H192V384H128V352C74.98 352 32 309 32 256V96C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H63.1zM640 392C640 440.6 600.6 480 552 480H63.1C46.33 480 31.1 465.7 31.1 448C31.1 430.3 46.33 416 63.1 416H552C565.3 416 576 405.3 576 392V384C576 366.3 590.3 352 608 352C625.7 352 640 366.3 640 384V392z',
			),
		),
		'label'             => __( 'Sleigh', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'sliders'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 416C0 398.3 14.33 384 32 384H86.66C99 355.7 127.2 336 160 336C192.8 336 220.1 355.7 233.3 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H233.3C220.1 476.3 192.8 496 160 496C127.2 496 99 476.3 86.66 448H32C14.33 448 0 433.7 0 416V416zM192 416C192 398.3 177.7 384 160 384C142.3 384 128 398.3 128 416C128 433.7 142.3 448 160 448C177.7 448 192 433.7 192 416zM352 176C384.8 176 412.1 195.7 425.3 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H425.3C412.1 316.3 384.8 336 352 336C319.2 336 291 316.3 278.7 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H278.7C291 195.7 319.2 176 352 176zM384 256C384 238.3 369.7 224 352 224C334.3 224 320 238.3 320 256C320 273.7 334.3 288 352 288C369.7 288 384 273.7 384 256zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H265.3C252.1 156.3 224.8 176 192 176C159.2 176 131 156.3 118.7 128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H118.7C131 35.75 159.2 16 192 16C224.8 16 252.1 35.75 265.3 64H480zM160 96C160 113.7 174.3 128 192 128C209.7 128 224 113.7 224 96C224 78.33 209.7 64 192 64C174.3 64 160 78.33 160 96z',
			),
		),
		'label'             => __( 'Sliders', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'slideshare'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M187.7 153.7c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7s61.7-26 61.7-57.7c0-32-27.7-57.7-61.7-57.7zm143.4 0c-34 0-61.7 25.7-61.7 57.7 0 31.7 27.7 57.7 61.7 57.7 34.3 0 61.7-26 61.7-57.7 .1-32-27.4-57.7-61.7-57.7zm156.6 90l-6 4.3V49.7c0-27.4-20.6-49.7-46-49.7H76.6c-25.4 0-46 22.3-46 49.7V248c-2-1.4-4.3-2.9-6.3-4.3-15.1-10.6-25.1 4-16 17.7 18.3 22.6 53.1 50.3 106.3 72C58.3 525.1 252 555.7 248.9 457.5c0-.7 .3-56.6 .3-96.6 5.1 1.1 9.4 2.3 13.7 3.1 0 39.7 .3 92.8 .3 93.5-3.1 98.3 190.6 67.7 134.3-124 53.1-21.7 88-49.4 106.3-72 9.1-13.8-.9-28.3-16.1-17.8zm-30.5 19.2c-68.9 37.4-128.3 31.1-160.6 29.7-23.7-.9-32.6 9.1-33.7 24.9-10.3-7.7-18.6-15.5-20.3-17.1-5.1-5.4-13.7-8-27.1-7.7-31.7 1.1-89.7 7.4-157.4-28V72.3c0-34.9 8.9-45.7 40.6-45.7h317.7c30.3 0 40.9 12.9 40.9 45.7v190.6z',
			),
		),
		'label'             => __( 'Slideshare', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'smog'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 288h156.1C322.6 307.8 351.8 320 384 320s61.25-12.25 83.88-32H528C589.9 288 640 237.9 640 176s-50.13-112-112-112c-18 0-34.75 4.625-49.75 12.12C453.1 30.1 406.8 0 352 0c-41 0-77.75 17.25-104 44.75C221.8 17.25 185 0 144 0c-79.5 0-144 64.5-144 144S64.5 288 144 288zM136 464H23.1C10.8 464 0 474.8 0 487.1S10.8 512 23.1 512H136C149.2 512 160 501.2 160 488S149.2 464 136 464zM616 368h-528C74.8 368 64 378.8 64 391.1S74.8 416 87.1 416h528c13.2 0 24-10.8 24-23.1S629.2 368 616 368zM552 464H231.1C218.8 464 208 474.8 208 487.1S218.8 512 231.1 512H552c13.2 0 24-10.8 24-23.1S565.2 464 552 464z',
			),
		),
		'label'             => __( 'Smog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'smoking'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M432 352h-384C21.5 352 0 373.5 0 400v64C0 490.5 21.5 512 48 512h384c8.75 0 16-7.25 16-16v-128C448 359.3 440.8 352 432 352zM400 464H224v-64h176V464zM536 352h-48C483.6 352 480 355.6 480 360v144c0 4.375 3.625 8 8 8h48c4.375 0 8-3.625 8-8v-144C544 355.6 540.4 352 536 352zM632 352h-48C579.6 352 576 355.6 576 360v144c0 4.375 3.625 8 8 8h48c4.375 0 8-3.625 8-8v-144C640 355.6 636.4 352 632 352zM553.3 87.13C547.6 83.25 544 77.12 544 70.25V8C544 3.625 540.4 0 536 0h-48C483.6 0 480 3.625 480 8v62.25c0 22 10.25 43.5 28.62 55.5C550.8 153 576 199.5 576 249.8V280C576 284.4 579.6 288 584 288h48C636.4 288 640 284.4 640 280V249.8C640 184.3 607.6 123.5 553.3 87.13zM487.8 141.6C463.8 125 448 99.25 448 70.25V8C448 3.625 444.4 0 440 0h-48C387.6 0 384 3.625 384 8v66.38C384 118.1 408.6 156 444.3 181.1C466.8 196.8 480 222.3 480 249.8V280C480 284.4 483.6 288 488 288h48C540.4 288 544 284.4 544 280V249.8C544 206.4 523 166.3 487.8 141.6z',
			),
		),
		'label'             => __( 'Smoking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'snapchat'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M496.9 366.6c-3.373-9.176-9.8-14.09-17.11-18.15-1.376-.806-2.641-1.451-3.72-1.947-2.182-1.128-4.414-2.22-6.634-3.373-22.8-12.09-40.61-27.34-52.96-45.42a102.9 102.9 0 0 1 -9.089-16.12c-1.054-3.013-1-4.724-.248-6.287a10.22 10.22 0 0 1 2.914-3.038c3.918-2.591 7.96-5.22 10.7-6.993 4.885-3.162 8.754-5.667 11.25-7.44 9.362-6.547 15.91-13.5 20-21.28a42.37 42.37 0 0 0 2.1-35.19c-6.2-16.32-21.61-26.45-40.29-26.45a55.54 55.54 0 0 0 -11.72 1.24c-1.029 .224-2.059 .459-3.063 .72 .174-11.16-.074-22.94-1.066-34.53-3.522-40.76-17.79-62.12-32.67-79.16A130.2 130.2 0 0 0 332.1 36.44C309.5 23.55 283.9 17 256 17S202.6 23.55 180 36.44a129.7 129.7 0 0 0 -33.28 26.78c-14.88 17.04-29.15 38.44-32.67 79.16-.992 11.59-1.24 23.43-1.079 34.53-1-.26-2.021-.5-3.051-.719a55.46 55.46 0 0 0 -11.72-1.24c-18.69 0-34.13 10.13-40.3 26.45a42.42 42.42 0 0 0 2.046 35.23c4.105 7.774 10.65 14.73 20.01 21.28 2.48 1.736 6.361 4.24 11.25 7.44 2.641 1.711 6.5 4.216 10.28 6.72a11.05 11.05 0 0 1 3.3 3.311c.794 1.624 .818 3.373-.36 6.6a102 102 0 0 1 -8.94 15.78c-12.08 17.67-29.36 32.65-51.43 44.64C32.35 348.6 20.2 352.8 15.07 366.7c-3.868 10.53-1.339 22.51 8.494 32.6a49.14 49.14 0 0 0 12.4 9.387 134.3 134.3 0 0 0 30.34 12.14 20.02 20.02 0 0 1 6.126 2.741c3.583 3.137 3.075 7.861 7.849 14.78a34.47 34.47 0 0 0 8.977 9.127c10.02 6.919 21.28 7.353 33.21 7.811 10.78 .41 22.99 .881 36.94 5.481 5.778 1.91 11.78 5.605 18.74 9.92C194.8 480.1 217.7 495 255.1 495s61.29-14.12 78.12-24.43c6.907-4.24 12.87-7.9 18.49-9.758 13.95-4.613 26.16-5.072 36.94-5.481 11.93-.459 23.19-.893 33.21-7.812a34.58 34.58 0 0 0 10.22-11.16c3.434-5.84 3.348-9.919 6.572-12.77a18.97 18.97 0 0 1 5.753-2.629A134.9 134.9 0 0 0 476 408.7a48.34 48.34 0 0 0 13.02-10.19l.124-.149C498.4 388.5 500.7 376.9 496.9 366.6zm-34.01 18.28c-20.75 11.46-34.53 10.23-45.26 17.14-9.114 5.865-3.72 18.51-10.34 23.08-8.134 5.617-32.18-.4-63.24 9.858-25.62 8.469-41.96 32.82-88.04 32.82s-62.04-24.3-88.08-32.88c-31-10.26-55.09-4.241-63.24-9.858-6.609-4.563-1.24-17.21-10.34-23.08-10.74-6.907-24.53-5.679-45.26-17.08-13.21-7.291-5.716-11.8-1.314-13.94 75.14-36.38 87.13-92.55 87.67-96.72 .645-5.046 1.364-9.014-4.191-14.15-5.369-4.96-29.19-19.7-35.8-24.32-10.94-7.638-15.75-15.26-12.2-24.64 2.48-6.485 8.531-8.928 14.88-8.928a27.64 27.64 0 0 1 5.965 .67c12 2.6 23.66 8.617 30.39 10.24a10.75 10.75 0 0 0 2.48 .335c3.6 0 4.86-1.811 4.612-5.927-.768-13.13-2.628-38.72-.558-62.64 2.84-32.91 13.44-49.22 26.04-63.64 6.051-6.932 34.48-36.98 88.86-36.98s82.88 29.92 88.93 36.83c12.61 14.42 23.23 30.73 26.04 63.64 2.071 23.92 .285 49.53-.558 62.64-.285 4.327 1.017 5.927 4.613 5.927a10.65 10.65 0 0 0 2.48-.335c6.745-1.624 18.4-7.638 30.4-10.24a27.64 27.64 0 0 1 5.964-.67c6.386 0 12.4 2.48 14.88 8.928 3.546 9.374-1.24 17-12.19 24.64-6.609 4.612-30.43 19.34-35.8 24.32-5.568 5.134-4.836 9.1-4.191 14.15 .533 4.228 12.51 60.4 87.67 96.72C468.6 373 476.1 377.5 462.9 384.9z',
			),
		),
		'label'             => __( 'Snapchat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'snapchat-square'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64A64 64 0 0 0 0 96V416a64 64 0 0 0 64 64H384a64 64 0 0 0 64-64V96A64 64 0 0 0 384 32zm-3.907 319.3-.083 .1a32.36 32.36 0 0 1 -8.717 6.823 90.26 90.26 0 0 1 -20.59 8.2 12.69 12.69 0 0 0 -3.852 1.76c-2.158 1.909-2.1 4.64-4.4 8.55a23.14 23.14 0 0 1 -6.84 7.471c-6.707 4.632-14.24 4.923-22.23 5.23-7.214 .274-15.39 .581-24.73 3.669-3.761 1.245-7.753 3.694-12.38 6.533-11.27 6.9-26.68 16.35-52.3 16.35s-40.92-9.4-52.11-16.28c-4.657-2.888-8.675-5.362-12.54-6.64-9.339-3.08-17.52-3.4-24.73-3.67-7.986-.307-15.52-.6-22.23-5.229a23.08 23.08 0 0 1 -6.01-6.11c-3.2-4.632-2.855-7.8-5.254-9.895a13.43 13.43 0 0 0 -4.1-1.834 89.99 89.99 0 0 1 -20.31-8.127 32.9 32.9 0 0 1 -8.3-6.284c-6.583-6.757-8.276-14.78-5.686-21.82 3.436-9.338 11.57-12.11 19.4-16.26 14.78-8.027 26.35-18.06 34.43-29.88a68.24 68.24 0 0 0 5.985-10.57c.789-2.158 .772-3.329 .241-4.416a7.386 7.386 0 0 0 -2.208-2.217c-2.532-1.676-5.113-3.353-6.882-4.5-3.27-2.141-5.868-3.818-7.529-4.98-6.267-4.383-10.65-9.04-13.4-14.24a28.4 28.4 0 0 1 -1.369-23.58c4.134-10.92 14.47-17.71 26.98-17.71a37.14 37.14 0 0 1 7.845 .83c.689 .15 1.37 .307 2.042 .482-.108-7.43 .058-15.36 .722-23.12 2.358-27.26 11.91-41.59 21.87-52.99a86.84 86.84 0 0 1 22.28-17.93C188.3 100.4 205.3 96 224 96s35.83 4.383 50.94 13.02a87.17 87.17 0 0 1 22.24 17.9c9.961 11.41 19.52 25.71 21.87 52.99a231.2 231.2 0 0 1 .713 23.12c.673-.174 1.362-.332 2.051-.481a37.13 37.13 0 0 1 7.844-.83c12.5 0 22.82 6.782 26.97 17.71a28.37 28.37 0 0 1 -1.4 23.56c-2.74 5.2-7.123 9.861-13.39 14.24-1.668 1.187-4.258 2.864-7.529 4.981-1.835 1.187-4.541 2.947-7.164 4.682a6.856 6.856 0 0 0 -1.951 2.034c-.506 1.046-.539 2.191 .166 4.208a69.01 69.01 0 0 0 6.085 10.79c8.268 12.1 20.19 22.31 35.45 30.41 1.486 .772 2.98 1.5 4.441 2.258 .722 .332 1.569 .763 2.491 1.3 4.9 2.723 9.2 6.01 11.45 12.15C387.8 336.9 386.3 344.7 380.1 351.3zm-16.72-18.46c-50.31-24.31-58.33-61.92-58.69-64.75-.431-3.379-.921-6.035 2.806-9.472 3.594-3.328 19.54-13.19 23.97-16.28 7.33-5.114 10.53-10.22 8.16-16.5-1.66-4.316-5.686-5.976-9.961-5.976a18.5 18.5 0 0 0 -3.993 .448c-8.035 1.743-15.84 5.769-20.35 6.857a7.1 7.1 0 0 1 -1.66 .224c-2.408 0-3.279-1.071-3.088-3.968 .564-8.783 1.759-25.92 .373-41.94-1.884-22.03-8.99-32.95-17.43-42.6-4.051-4.624-23.14-24.65-59.54-24.65S168.5 134.4 164.5 139c-8.434 9.654-15.53 20.57-17.43 42.6-1.386 16.01-.141 33.15 .373 41.94 .166 2.756-.68 3.968-3.088 3.968a7.1 7.1 0 0 1 -1.66-.224c-4.507-1.087-12.31-5.113-20.35-6.856a18.49 18.49 0 0 0 -3.993-.449c-4.25 0-8.3 1.636-9.961 5.977-2.374 6.276 .847 11.38 8.168 16.49 4.425 3.088 20.37 12.96 23.97 16.28 3.719 3.437 3.237 6.093 2.805 9.471-.356 2.79-8.384 40.39-58.69 64.75-2.946 1.428-7.96 4.45 .88 9.331 13.88 7.628 23.11 6.807 30.3 11.43 6.093 3.927 2.5 12.39 6.923 15.45 5.454 3.76 21.58-.266 42.33 6.6 17.43 5.744 28.12 22.01 58.96 22.01s41.79-16.3 58.94-21.97c20.8-6.865 36.89-2.839 42.34-6.6 4.433-3.055 .822-11.52 6.923-15.45 7.181-4.624 16.41-3.8 30.3-11.47C371.4 337.4 366.3 334.3 363.4 332.8z',
			),
		),
		'label'             => __( 'Snapchat Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'snowflake'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M475.6 384.1C469.7 394.3 458.9 400 447.9 400c-5.488 0-11.04-1.406-16.13-4.375l-25.09-14.64l5.379 20.29c3.393 12.81-4.256 25.97-17.08 29.34c-2.064 .5625-4.129 .8125-6.164 .8125c-10.63 0-20.36-7.094-23.21-17.84l-17.74-66.92L288 311.7l.0002 70.5l48.38 48.88c9.338 9.438 9.244 24.62-.1875 33.94C331.5 469.7 325.4 472 319.3 472c-6.193 0-12.39-2.375-17.08-7.125l-14.22-14.37L288 480c0 17.69-14.34 32-32.03 32s-32.03-14.31-32.03-32l-.0002-29.5l-14.22 14.37c-9.322 9.438-24.53 9.5-33.97 .1875c-9.432-9.312-9.525-24.5-.1875-33.94l48.38-48.88L223.1 311.7l-59.87 34.93l-17.74 66.92c-2.848 10.75-12.58 17.84-23.21 17.84c-2.035 0-4.1-.25-6.164-.8125c-12.82-3.375-20.47-16.53-17.08-29.34l5.379-20.29l-25.09 14.64C75.11 398.6 69.56 400 64.07 400c-11.01 0-21.74-5.688-27.69-15.88c-8.932-15.25-3.785-34.84 11.5-43.75l25.96-15.15l-20.33-5.508C40.7 316.3 33.15 303.1 36.62 290.3S53.23 270 66.09 273.4L132 291.3L192.5 256L132 220.7L66.09 238.6c-2.111 .5625-4.225 .8438-6.305 .8438c-10.57 0-20.27-7.031-23.16-17.72C33.15 208.9 40.7 195.8 53.51 192.3l20.33-5.508L47.88 171.6c-15.28-8.906-20.43-28.5-11.5-43.75c8.885-15.28 28.5-20.44 43.81-11.5l25.09 14.64L99.9 110.7C96.51 97.91 104.2 84.75 116.1 81.38C129.9 77.91 142.1 85.63 146.4 98.41l17.74 66.92L223.1 200.3l-.0002-70.5L175.6 80.88C166.3 71.44 166.3 56.25 175.8 46.94C185.2 37.59 200.4 37.72 209.8 47.13l14.22 14.37L223.1 32c0-17.69 14.34-32 32.03-32s32.03 14.31 32.03 32l.0002 29.5l14.22-14.37c9.307-9.406 24.51-9.531 33.97-.1875c9.432 9.312 9.525 24.5 .1875 33.94l-48.38 48.88L288 200.3l59.87-34.93l17.74-66.92c3.395-12.78 16.56-20.5 29.38-17.03c12.82 3.375 20.47 16.53 17.08 29.34l-5.379 20.29l25.09-14.64c15.28-8.906 34.91-3.75 43.81 11.5c8.932 15.25 3.785 34.84-11.5 43.75l-25.96 15.15l20.33 5.508c12.81 3.469 20.37 16.66 16.89 29.44c-2.895 10.69-12.59 17.72-23.16 17.72c-2.08 0-4.193-.2813-6.305-.8438L379.1 220.7L319.5 256l60.46 35.28l65.95-17.87C458.8 270 471.9 277.5 475.4 290.3c3.473 12.78-4.082 25.97-16.89 29.44l-20.33 5.508l25.96 15.15C479.4 349.3 484.5 368.9 475.6 384.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M484.4 294.4c1.715 6.402 .6758 12.89-2.395 18.21s-8.172 9.463-14.57 11.18l-31.46 8.43l32.96 19.03C480.4 357.8 484.4 372.5 477.8 384s-21.38 15.41-32.86 8.783l-32.96-19.03l8.43 31.46c3.432 12.81-4.162 25.96-16.97 29.39s-25.96-4.162-29.39-16.97l-20.85-77.82L280 297.6v84.49l56.97 56.97c9.375 9.375 9.375 24.56 0 33.94C332.3 477.7 326.1 480 320 480s-12.28-2.344-16.97-7.031L280 449.9V488c0 13.25-10.75 24-24 24s-24-10.75-24-24v-38.06l-23.03 23.03c-9.375 9.375-24.56 9.375-33.94 0s-9.375-24.56 0-33.94L232 382.1V297.6l-73.17 42.25l-20.85 77.82c-3.432 12.81-16.58 20.4-29.39 16.97s-20.4-16.58-16.97-29.39l8.43-31.46l-32.96 19.03C55.61 399.4 40.85 395.5 34.22 384s-2.615-26.16 8.859-32.79l32.96-19.03l-31.46-8.43c-12.81-3.432-20.4-16.58-16.97-29.39s16.58-20.4 29.39-16.97l77.82 20.85L208 255.1L134.8 213.8L57.01 234.6C44.2 238 31.05 230.4 27.62 217.6s4.162-25.96 16.97-29.39l31.46-8.432L43.08 160.8C31.61 154.2 27.6 139.5 34.22 128s21.38-15.41 32.86-8.785l32.96 19.03L91.62 106.8C88.18 93.98 95.78 80.83 108.6 77.39s25.96 4.162 29.39 16.97l20.85 77.82L232 214.4V129.9L175 72.97c-9.375-9.375-9.375-24.56 0-33.94s24.56-9.375 33.94 0L232 62.06V24C232 10.75 242.8 0 256 0s24 10.75 24 24v38.06l23.03-23.03c9.375-9.375 24.56-9.375 33.94 0s9.375 24.56 0 33.94L280 129.9v84.49l73.17-42.25l20.85-77.82c3.432-12.81 16.58-20.4 29.39-16.97c6.402 1.715 11.5 5.861 14.57 11.18s4.109 11.81 2.395 18.21l-8.43 31.46l32.96-19.03C456.4 112.6 471.2 116.5 477.8 128s2.615 26.16-8.859 32.78l-32.96 19.03l31.46 8.432c12.81 3.432 20.4 16.58 16.97 29.39s-16.58 20.4-29.39 16.97l-77.82-20.85L304 255.1l73.17 42.25l77.82-20.85C467.8 273.1 480.1 281.6 484.4 294.4z',
			),
		),
		'label'             => __( 'Snowflake', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'snowman'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M510.9 152.3l-5.875-14.5c-3.25-8-12.62-11.88-20.75-8.625l-28.25 11.5v-29C455.1 103 448.7 96 439.1 96h-16c-8.75 0-16 7-16 15.62V158.5c0 .5 .25 1 .25 1.5l-48.98 20.6c-5.291-12.57-12.98-23.81-22.24-33.55c9.35-14.81 14.98-32.23 14.98-51.04C351.1 42.98 309 0 255.1 0S160 42.98 160 95.1c0 18.81 5.626 36.23 14.98 51.04C165.7 156.8 158.1 168.1 152.8 180.7L103.8 160c0-.5 .25-1 .25-1.5V111.6C104 103 96.76 96 88.01 96h-16c-8.75 0-16 7-16 15.62v29l-28.25-11.5c-8.125-3.25-17.5 .625-20.75 8.625l-5.875 14.5C-2.119 160.4 1.881 169.5 10.01 172.6L144.4 228.4C144.9 240.8 147.3 252.7 151.5 263.7c-33.78 29.34-55.53 72.04-55.53 120.3c0 52.59 25.71 98.84 64.88 128h190.2c39.17-29.17 64.88-75.42 64.88-128c0-48.25-21.76-90.95-55.53-120.3c4.195-11.03 6.599-22.89 7.091-35.27l134.4-55.8C510.1 169.5 514.1 160.4 510.9 152.3zM224 95.1c-8.75 0-15.1-7.25-15.1-15.1s7.25-15.1 15.1-15.1s15.1 7.25 15.1 15.1S232.8 95.1 224 95.1zM256 367.1c-8.75 0-15.1-7.25-15.1-15.1S247.3 335.1 256 335.1s15.1 7.25 15.1 15.1S264.8 367.1 256 367.1zM256 303.1c-8.75 0-15.1-7.25-15.1-15.1S247.3 271.1 256 271.1s15.1 7.25 15.1 15.1S264.8 303.1 256 303.1zM256 239.1c-8.75 0-15.1-7.25-15.1-15.1S247.3 207.1 256 207.1s15.1 7.25 15.1 15.1S264.8 239.1 256 239.1zM256 152c0 0-15.1-23.25-15.1-32S247.3 104 256 104s15.1 7.25 15.1 16S256 152 256 152zM287.1 95.1c-8.75 0-15.1-7.25-15.1-15.1s7.25-15.1 15.1-15.1s15.1 7.25 15.1 15.1S296.7 95.1 287.1 95.1z',
			),
		),
		'label'             => __( 'Snowman', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'snowplow'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 400C144 413.3 133.3 424 120 424C106.7 424 96 413.3 96 400C96 386.7 106.7 376 120 376C133.3 376 144 386.7 144 400zM336 400C336 386.7 346.7 376 360 376C373.3 376 384 386.7 384 400C384 413.3 373.3 424 360 424C346.7 424 336 413.3 336 400zM304 400C304 413.3 293.3 424 280 424C266.7 424 256 413.3 256 400C256 386.7 266.7 376 280 376C293.3 376 304 386.7 304 400zM176 400C176 386.7 186.7 376 200 376C213.3 376 224 386.7 224 400C224 413.3 213.3 424 200 424C186.7 424 176 413.3 176 400zM447.4 249.6C447.8 251.9 448.1 254.3 448 256.7V288H512V235.2C512 220.7 516.9 206.6 526 195.2L583 124C594.1 110.2 614.2 107.1 627.1 119C641.8 130.1 644 150.2 632.1 163.1L576 235.2V402.7L630.6 457.4C643.1 469.9 643.1 490.1 630.6 502.6C618.1 515.1 597.9 515.1 585.4 502.6L530.7 448C518.7 435.1 512 419.7 512 402.7V352H469.2C476.1 366.5 480 382.8 480 400C480 461.9 429.9 512 368 512H112C50.14 512 0 461.9 0 400C0 355.3 26.16 316.8 64 298.8V192C64 174.3 78.33 160 96 160H128V48C128 21.49 149.5 0 176 0H298.9C324.5 0 347.6 15.26 357.7 38.79L445.1 242.7C446.1 244.9 446.9 247.2 447.4 249.6H447.4zM298.9 64H192V160L256 224H367.5L298.9 64zM368 352H112C85.49 352 64 373.5 64 400C64 426.5 85.49 448 112 448H368C394.5 448 416 426.5 416 400C416 373.5 394.5 352 368 352z',
			),
		),
		'label'             => __( 'Snowplow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'soap'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 256c35.35 0 64-28.65 64-64c0-35.35-28.65-64-64-64s-64 28.65-64 64C256 227.3 284.7 256 320 256zM160 288c-35.35 0-64 28.65-64 64c0 35.35 28.65 64 64 64h192c35.35 0 64-28.65 64-64c0-35.35-28.65-64-64-64H160zM384 64c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32s-32 14.33-32 32C352 49.67 366.3 64 384 64zM208 96C234.5 96 256 74.51 256 48S234.5 0 208 0S160 21.49 160 48S181.5 96 208 96zM416 192c0 27.82-12.02 52.68-30.94 70.21C421.7 275.7 448 310.7 448 352c0 53.02-42.98 96-96 96H160c-53.02 0-96-42.98-96-96s42.98-96 96-96h88.91C233.6 238.1 224 216.7 224 192H96C42.98 192 0 234.1 0 288v128c0 53.02 42.98 96 96 96h320c53.02 0 96-42.98 96-96V288C512 234.1 469 192 416 192z',
			),
		),
		'label'             => __( 'Soap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'socks'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M319.1 32c0-11 3.125-21.25 8-30.38C325.4 .8721 322.9 0 319.1 0H192C174.4 0 159.1 14.38 159.1 32l.0042 32h160L319.1 32zM246.6 310.1l73.36-55l.0026-159.1h-160l-.0042 175.1l-86.64 64.61c-39.38 29.5-53.86 84.4-29.24 127c18.25 31.62 51.1 48.36 83.97 48.36c20 0 40.26-6.225 57.51-19.22l21.87-16.38C177.6 421 193.9 350.6 246.6 310.1zM351.1 271.1l-86.13 64.61c-39.37 29.5-53.86 84.4-29.23 127C254.9 495.3 287.2 512 320.1 512c20 0 40.25-6.25 57.5-19.25l115.2-86.38C525 382.3 544 344.2 544 303.1v-207.1h-192L351.1 271.1zM512 0h-128c-17.62 0-32 14.38-32 32l-.0003 32H544V32C544 14.38 529.6 0 512 0z',
			),
		),
		'label'             => __( 'Socks', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'solar-panel'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M575.4 25.72C572.4 10.78 559.2 0 543.1 0H96c-15.25 0-28.39 10.78-31.38 25.72l-63.1 320c-1.891 9.406 .5469 19.16 6.625 26.56S22.41 384 32 384h255.1v64.25H239.8c-26.26 0-47.75 21.49-47.75 47.75c0 8.844 7.168 16.01 16.01 16l223.1-.1667c8.828-.0098 15.99-7.17 15.99-16C447.1 469.5 426.6 448 400.2 448h-48.28v-64h256c9.594 0 18.67-4.312 24.75-11.72s8.516-17.16 6.625-26.56L575.4 25.72zM517.8 64l19.2 96h-97.98L429.2 64H517.8zM380.1 64l9.617 96H250l9.873-96H380.1zM210.8 64L201 160H103.1l19.18-96H210.8zM71.16 320l22.28-112h102.7L184.6 320H71.16zM233.8 320l11.37-112h149.7L406.2 320H233.8zM455.4 320l-11.5-112h102.7l22.28 112H455.4z',
			),
		),
		'label'             => __( 'Solar Panel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'sort'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M27.66 224h264.7c24.6 0 36.89-29.78 19.54-47.12l-132.3-136.8c-5.406-5.406-12.47-8.107-19.53-8.107c-7.055 0-14.09 2.701-19.45 8.107L8.119 176.9C-9.229 194.2 3.055 224 27.66 224zM292.3 288H27.66c-24.6 0-36.89 29.77-19.54 47.12l132.5 136.8C145.9 477.3 152.1 480 160 480c7.053 0 14.12-2.703 19.53-8.109l132.3-136.8C329.2 317.8 316.9 288 292.3 288z',
			),
		),
		'label'             => __( 'Sort', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'sort-down'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M311.9 335.1l-132.4 136.8C174.1 477.3 167.1 480 160 480c-7.055 0-14.12-2.702-19.47-8.109l-132.4-136.8C-9.229 317.8 3.055 288 27.66 288h264.7C316.9 288 329.2 317.8 311.9 335.1z',
			),
		),
		'label'             => __( 'Sort Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'sort-up'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M27.66 224h264.7c24.6 0 36.89-29.78 19.54-47.12l-132.3-136.8c-5.406-5.406-12.47-8.107-19.53-8.107c-7.055 0-14.09 2.701-19.45 8.107L8.119 176.9C-9.229 194.2 3.055 224 27.66 224z',
			),
		),
		'label'             => __( 'Sort Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'soundcloud'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M111.4 256.3l5.8 65-5.8 68.3c-.3 2.5-2.2 4.4-4.4 4.4s-4.2-1.9-4.2-4.4l-5.6-68.3 5.6-65c0-2.2 1.9-4.2 4.2-4.2 2.2 0 4.1 2 4.4 4.2zm21.4-45.6c-2.8 0-4.7 2.2-5 5l-5 105.6 5 68.3c.3 2.8 2.2 5 5 5 2.5 0 4.7-2.2 4.7-5l5.8-68.3-5.8-105.6c0-2.8-2.2-5-4.7-5zm25.5-24.1c-3.1 0-5.3 2.2-5.6 5.3l-4.4 130 4.4 67.8c.3 3.1 2.5 5.3 5.6 5.3 2.8 0 5.3-2.2 5.3-5.3l5.3-67.8-5.3-130c0-3.1-2.5-5.3-5.3-5.3zM7.2 283.2c-1.4 0-2.2 1.1-2.5 2.5L0 321.3l4.7 35c.3 1.4 1.1 2.5 2.5 2.5s2.2-1.1 2.5-2.5l5.6-35-5.6-35.6c-.3-1.4-1.1-2.5-2.5-2.5zm23.6-21.9c-1.4 0-2.5 1.1-2.5 2.5l-6.4 57.5 6.4 56.1c0 1.7 1.1 2.8 2.5 2.8s2.5-1.1 2.8-2.5l7.2-56.4-7.2-57.5c-.3-1.4-1.4-2.5-2.8-2.5zm25.3-11.4c-1.7 0-3.1 1.4-3.3 3.3L47 321.3l5.8 65.8c.3 1.7 1.7 3.1 3.3 3.1 1.7 0 3.1-1.4 3.1-3.1l6.9-65.8-6.9-68.1c0-1.9-1.4-3.3-3.1-3.3zm25.3-2.2c-1.9 0-3.6 1.4-3.6 3.6l-5.8 70 5.8 67.8c0 2.2 1.7 3.6 3.6 3.6s3.6-1.4 3.9-3.6l6.4-67.8-6.4-70c-.3-2.2-2-3.6-3.9-3.6zm241.4-110.9c-1.1-.8-2.8-1.4-4.2-1.4-2.2 0-4.2 .8-5.6 1.9-1.9 1.7-3.1 4.2-3.3 6.7v.8l-3.3 176.7 1.7 32.5 1.7 31.7c.3 4.7 4.2 8.6 8.9 8.6s8.6-3.9 8.6-8.6l3.9-64.2-3.9-177.5c-.4-3-2-5.8-4.5-7.2zm-26.7 15.3c-1.4-.8-2.8-1.4-4.4-1.4s-3.1 .6-4.4 1.4c-2.2 1.4-3.6 3.9-3.6 6.7l-.3 1.7-2.8 160.8s0 .3 3.1 65.6v.3c0 1.7 .6 3.3 1.7 4.7 1.7 1.9 3.9 3.1 6.4 3.1 2.2 0 4.2-1.1 5.6-2.5 1.7-1.4 2.5-3.3 2.5-5.6l.3-6.7 3.1-58.6-3.3-162.8c-.3-2.8-1.7-5.3-3.9-6.7zm-111.4 22.5c-3.1 0-5.8 2.8-5.8 6.1l-4.4 140.6 4.4 67.2c.3 3.3 2.8 5.8 5.8 5.8 3.3 0 5.8-2.5 6.1-5.8l5-67.2-5-140.6c-.2-3.3-2.7-6.1-6.1-6.1zm376.7 62.8c-10.8 0-21.1 2.2-30.6 6.1-6.4-70.8-65.8-126.4-138.3-126.4-17.8 0-35 3.3-50.3 9.4-6.1 2.2-7.8 4.4-7.8 9.2v249.7c0 5 3.9 8.6 8.6 9.2h218.3c43.3 0 78.6-35 78.6-78.3 .1-43.6-35.2-78.9-78.5-78.9zm-296.7-60.3c-4.2 0-7.5 3.3-7.8 7.8l-3.3 136.7 3.3 65.6c.3 4.2 3.6 7.5 7.8 7.5 4.2 0 7.5-3.3 7.5-7.5l3.9-65.6-3.9-136.7c-.3-4.5-3.3-7.8-7.5-7.8zm-53.6-7.8c-3.3 0-6.4 3.1-6.4 6.7l-3.9 145.3 3.9 66.9c.3 3.6 3.1 6.4 6.4 6.4 3.6 0 6.4-2.8 6.7-6.4l4.4-66.9-4.4-145.3c-.3-3.6-3.1-6.7-6.7-6.7zm26.7 3.4c-3.9 0-6.9 3.1-6.9 6.9L227 321.3l3.9 66.4c.3 3.9 3.1 6.9 6.9 6.9s6.9-3.1 6.9-6.9l4.2-66.4-4.2-141.7c0-3.9-3-6.9-6.9-6.9z',
			),
		),
		'label'             => __( 'SoundCloud', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'sourcetree'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M427.2 203c0-112.1-90.9-203-203-203C112.1-.2 21.2 90.6 21 202.6A202.9 202.9 0 0 0 161.5 396v101.7a14.3 14.3 0 0 0 14.3 14.3h96.4a14.3 14.3 0 0 0 14.3-14.3V396.1A203.2 203.2 0 0 0 427.2 203zm-271.6 0c0-90.8 137.3-90.8 137.3 0-.1 89.9-137.3 91-137.3 0z',
			),
		),
		'label'             => __( 'Sourcetree', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'spa'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.3 192c-29 .125-135 6.124-213.9 82.1C321.2 304.7 301 338.3 288 369.9c-13-31.63-33.25-65.25-66.38-94.87C142.8 198.2 36.75 192.2 7.75 192C3.375 192 0 195.4 0 199.9c.25 27.88 7.125 126.2 88.75 199.3C172.8 481 256 479.1 288 479.1s115.2 1.025 199.3-80.85C568.9 326 575.8 227.7 576 199.9C576 195.4 572.6 192 568.3 192zM288 302.6c12.75-18.87 27.62-35.75 44.13-50.5c19-18.62 39.5-33.37 60.25-45.25c-16.5-70.5-51.75-133-96.75-172.3c-4.125-3.5-11-3.5-15.12 0c-45 39.25-80.25 101.6-96.75 172.1c20.37 11.75 40.5 26.12 59.25 44.37C260 266.4 275.1 283.7 288 302.6z',
			),
		),
		'label'             => __( 'Spa', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'spaghetti-monster-flying'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M624.5 347.7c-32.63-12.5-57.38 4.241-75.38 16.49c-17 11.5-23.25 14.37-31.38 11.37c-8.125-3.125-10.88-9.358-15.88-29.36c-3.375-13.12-7.5-29.47-18-42.72c2.25-3 4.5-5.875 6.375-8.625C500.5 304.5 513.8 312 532 312c33.1 0 50.87-25.75 61.1-42.88C604.6 253 609 248 616 248C629.3 248 640 237.3 640 224s-10.75-24-24-24c-34 0-50.88 25.75-62 42.88C543.4 259 539 264 532 264c-17.25 0-37.5-61.38-97.25-101.9L452 127.6C485.4 125.5 512 97.97 512 63.97C512 28.6 483.4 0 448 0s-64 28.6-64 63.97c0 13 4 25.15 10.62 35.28L376.5 135.5C359.5 130.9 340.9 128 320 128S280.5 130.9 263.5 135.5L245.4 99.25C252 89.13 256 76.97 256 63.97C256 28.6 227.4 0 192 0S128 28.6 128 63.97C128 97.97 154.5 125.5 188 127.6l17.25 34.5C145.6 202.5 125.1 264 108 264c-7 0-11.31-5-21.94-21.12C74.94 225.8 57.1 200 24 200C10.75 200 0 210.8 0 224s10.75 24 24 24c7 0 11.37 5 21.1 21.12C57.12 286.3 73.1 312 108 312c18.25 0 31.5-7.5 41.75-17.12C151.6 297.6 153.9 300.5 156.1 303.5c-10.5 13.25-14.62 29.59-18 42.72c-5 20-7.75 26.23-15.88 29.36c-8.125 3-14.37 .1314-31.37-11.37c-18.12-12.25-42.75-28.87-75.38-16.49c-12.38 4.75-18.62 18.61-13.88 30.98c4.625 12.38 18.62 18.62 30.88 13.87C40.75 389.6 46.88 392.4 64 403.9c13.5 9.125 30.75 20.86 52.38 20.86c7.125 0 14.88-1.248 23-4.373c32.63-12.5 40-41.34 45.25-62.46c2.25-8.75 4-14.49 6-18.86c16.62 13.62 37 25.86 61.63 34.23C242.3 410.3 220.1 464 192 464c-13.25 0-24 10.74-24 23.99S178.8 512 192 512c66.75 0 97-88.55 107.4-129.1C306.1 383.6 312.9 384 320 384s13.88-.4706 20.62-1.096C351 423.4 381.3 512 448 512c13.25 0 24-10.74 24-23.99S461.3 464 448 464c-28 0-50.25-53.74-60.25-90.74c24.75-8.375 45-20.56 61.63-34.19c2 4.375 3.75 10.11 6 18.86c5.375 21.12 12.62 49.96 45.25 62.46c8.25 3.125 15.88 4.373 23 4.373c21.62 0 38.83-11.74 52.46-20.86c17-11.5 23.29-14.37 31.42-11.37c12.38 4.75 26.25-1.492 30.88-13.87C643.1 366.3 637 352.5 624.5 347.7zM192 79.97c-8.875 0-16-7.125-16-16S183.1 47.98 192 47.98s16 7.118 16 15.99S200.9 79.97 192 79.97zM448 47.98c8.875 0 16 7.118 16 15.99s-7.125 16-16 16s-16-7.125-16-16S439.1 47.98 448 47.98z',
			),
		),
		'label'             => __( 'Spaghetti Monster Flying', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'speakap'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M64 391.8C-15.41 303.6-8 167.4 80.64 87.64s224.8-73 304.2 15.24 72 224.4-16.64 304.1c-18.74 16.87 64 43.09 42 52.26-82.06 34.21-253.9 35-346.2-67.5zm213.3-211.6l38.5-40.86c-9.61-8.89-32-26.83-76.17-27.6-52.33-.91-95.86 28.3-96.77 80-.2 11.33 .29 36.72 29.42 54.83 34.46 21.42 86.52 21.51 86 52.26-.37 21.28-26.42 25.81-38.59 25.6-3-.05-30.23-.46-47.61-24.62l-40 42.61c28.16 27 59 32.62 83.49 33.05 10.23 .18 96.42 .33 97.84-81 .28-15.81-2.07-39.72-28.86-56.59-34.36-21.64-85-19.45-84.43-49.75 .41-23.25 31-25.37 37.53-25.26 .43 0 26.62 .26 39.62 17.37z',
			),
		),
		'label'             => __( 'Speakap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'speaker-deck'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M213.9 296H100a100 100 0 0 1 0-200h132.8a40 40 0 0 1 0 80H98c-26.47 0-26.45 40 0 40h113.8a100 100 0 0 1 0 200H40a40 40 0 0 1 0-80h173.9c26.48 0 26.46-40 0-40zM298 416a120.2 120.2 0 0 0 51.11-80h64.55a19.83 19.83 0 0 0 19.66-20V196a19.83 19.83 0 0 0 -19.66-20H296.4a60.77 60.77 0 0 0 0-80h136.9c43.44 0 78.65 35.82 78.65 80v160c0 44.18-35.21 80-78.65 80z',
			),
		),
		'label'             => __( 'Speaker Deck', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'spell-check'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M566.6 265.4c-12.5-12.5-32.75-12.5-45.25 0L352 434.8l-73.38-73.38c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l96 96c6.25 6.25 14.44 9.368 22.62 9.368s16.38-3.118 22.63-9.368l192-192C579.1 298.1 579.1 277.9 566.6 265.4zM221.5 211.7l-80-192C136.6 7.796 124.9 .0147 112 .0147S87.44 7.796 82.47 19.7l-80 192C-4.328 228 3.375 246.8 19.69 253.5c16.36 6.812 35.06-.9375 41.84-17.22l5.131-12.31h90.68l5.131 12.31c5.109 12.28 17.02 19.69 29.55 19.69c4.094 0 8.266-.7812 12.3-2.469C220.6 246.8 228.3 228 221.5 211.7zM93.33 160L112 115.2l18.67 44.81H93.33zM288 256h80c44.11 0 80-35.87 80-79.1c0-23.15-10.03-43.85-25.79-58.47C428.3 106.3 432 93.65 432 80.01c0-44.13-35.89-80-79.1-80L288 .0147c-17.67 0-32 14.31-32 31.1v192C256 241.7 270.3 256 288 256zM320 64.01h32c8.828 0 16 7.188 16 16s-7.172 16-16 16h-32V64.01zM320 160h48c8.828 0 16 7.188 16 16s-7.172 16-16 16H320V160z',
			),
		),
		'label'             => __( 'Spell Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'spider'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M563.3 401.6c2.608 8.443-2.149 17.4-10.62 19.1l-15.35 4.709c-8.48 2.6-17.47-2.139-20.08-10.59L493.2 338l-79.79-31.8l53.47 62.15c5.08 5.904 6.972 13.89 5.08 21.44l-28.23 110.1c-2.151 8.57-10.87 13.78-19.47 11.64l-15.58-3.873c-8.609-2.141-13.84-10.83-11.69-19.4l25.2-98.02l-38.51-44.77c.1529 2.205 .6627 4.307 .6627 6.549c0 53.02-43.15 96-96.37 96S191.6 405 191.6 352c0-2.242 .5117-4.34 .6627-6.543l-38.51 44.76l25.2 98.02c2.151 8.574-3.084 17.26-11.69 19.4l-15.58 3.873c-8.603 2.141-17.32-3.072-19.47-11.64l-28.23-110.1c-1.894-7.543 0-15.53 5.08-21.44l53.47-62.15l-79.79 31.8l-24.01 77.74c-2.608 8.447-11.6 13.19-20.08 10.59l-15.35-4.709c-8.478-2.6-13.23-11.55-10.63-19.1l27.4-88.69c2.143-6.939 7.323-12.54 14.09-15.24L158.9 256l-104.7-41.73C47.43 211.6 42.26 205.1 40.11 199.1L12.72 110.4c-2.608-8.443 2.149-17.4 10.62-19.1l15.35-4.709c8.48-2.6 17.47 2.139 20.08 10.59l24.01 77.74l79.79 31.8L109.1 143.6C104 137.7 102.1 129.7 104 122.2l28.23-110.1c2.151-8.57 10.87-13.78 19.47-11.64l15.58 3.873C175.9 6.494 181.1 15.18 178.1 23.76L153.8 121.8L207.7 184.4l.1542-24.44C206.1 123.4 228.9 91.77 261.4 80.43c5.141-1.793 10.5 2.215 10.5 7.641V112h32.12V88.09c0-5.443 5.394-9.443 10.55-7.641C345.9 91.39 368.3 121 368.3 155.9c0 1.393-.1786 2.689-.2492 4.064L368.3 184.4l53.91-62.66l-25.2-98.02c-2.151-8.574 3.084-17.26 11.69-19.4l15.58-3.873c8.603-2.141 17.32 3.072 19.47 11.64l28.23 110.1c1.894 7.543 0 15.53-5.08 21.44l-53.47 62.15l79.79-31.8l24.01-77.74c2.608-8.447 11.6-13.19 20.08-10.59l15.35 4.709c8.478 2.6 13.23 11.55 10.63 19.1l-27.4 88.69c-2.143 6.939-7.323 12.54-14.09 15.24L417.1 256l104.7 41.73c6.754 2.691 11.92 8.283 14.07 15.21L563.3 401.6z',
			),
		),
		'label'             => __( 'Spider', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'spinner'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304 48C304 74.51 282.5 96 256 96C229.5 96 208 74.51 208 48C208 21.49 229.5 0 256 0C282.5 0 304 21.49 304 48zM304 464C304 490.5 282.5 512 256 512C229.5 512 208 490.5 208 464C208 437.5 229.5 416 256 416C282.5 416 304 437.5 304 464zM0 256C0 229.5 21.49 208 48 208C74.51 208 96 229.5 96 256C96 282.5 74.51 304 48 304C21.49 304 0 282.5 0 256zM512 256C512 282.5 490.5 304 464 304C437.5 304 416 282.5 416 256C416 229.5 437.5 208 464 208C490.5 208 512 229.5 512 256zM74.98 437C56.23 418.3 56.23 387.9 74.98 369.1C93.73 350.4 124.1 350.4 142.9 369.1C161.6 387.9 161.6 418.3 142.9 437C124.1 455.8 93.73 455.8 74.98 437V437zM142.9 142.9C124.1 161.6 93.73 161.6 74.98 142.9C56.24 124.1 56.24 93.73 74.98 74.98C93.73 56.23 124.1 56.23 142.9 74.98C161.6 93.73 161.6 124.1 142.9 142.9zM369.1 369.1C387.9 350.4 418.3 350.4 437 369.1C455.8 387.9 455.8 418.3 437 437C418.3 455.8 387.9 455.8 369.1 437C350.4 418.3 350.4 387.9 369.1 369.1V369.1z',
			),
		),
		'label'             => __( 'Spinner', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'splotch'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M349.3 47.38L367.9 116.1C374.6 142.1 393.2 162.3 417.6 171.2L475.8 192.4C497.5 200.3 512 221 512 244.2C512 261.8 503.6 278.4 489.4 288.8L406.9 348.1C393.3 358.9 385.7 374.1 386.7 391.8L389.8 442.4C392.1 480.1 362.2 511.9 324.4 511.9C308.8 511.9 293.8 506.4 281.1 496.4L236.1 458.2C221.1 444.7 200.9 437.3 180 437.3H171.6C165.1 437.3 160.4 437.8 154.8 438.9L87.81 451.9C63.82 456.6 39.53 445.5 27.41 424.3C17.39 406.7 17.39 385.2 27.41 367.7L55.11 319.2C60.99 308.9 64.09 297.3 64.09 285.4C64.09 272.3 60.33 259.6 53.27 248.6L8.796 179.4C-6.738 155.2-1.267 123.2 21.41 105.6C32.12 97.25 45.52 93.13 59.07 94.01L130.8 98.66C159.8 100.5 187.1 87.91 205.9 64.93L237.3 24.66C249.4 9.133 267.9 .0566 287.6 .0566C316.5 .0566 341.8 19.47 349.3 47.38V47.38z',
			),
		),
		'label'             => __( 'Splotch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'spoon'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M449.5 242.2C436.4 257.8 419.8 270 400.1 277.8C382.2 285.6 361.7 288.8 341.4 287C326.2 284.5 311.8 278.4 299.5 269.1L68.29 500.3C60.79 507.8 50.61 512 40 512C29.39 512 19.22 507.8 11.71 500.3C4.211 492.8-.0039 482.6-.0039 472C-.0039 461.4 4.211 451.2 11.71 443.7L243 212.5C233.7 200.2 227.6 185.8 225.1 170.6C223.3 150.3 226.5 129.9 234.3 111C242.1 92.22 254.3 75.56 269.9 62.47C337.8-5.437 433.1-20.28 482.7 29.35C532.3 78.95 517.4 174.2 449.5 242.2z',
			),
		),
		'label'             => __( 'Spoon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'spotify'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111.1 8 0 119.1 0 256s111.1 248 248 248 248-111.1 248-248S384.9 8 248 8zm100.7 364.9c-4.2 0-6.8-1.3-10.7-3.6-62.4-37.6-135-39.2-206.7-24.5-3.9 1-9 2.6-11.9 2.6-9.7 0-15.8-7.7-15.8-15.8 0-10.3 6.1-15.2 13.6-16.8 81.9-18.1 165.6-16.5 237 26.2 6.1 3.9 9.7 7.4 9.7 16.5s-7.1 15.4-15.2 15.4zm26.9-65.6c-5.2 0-8.7-2.3-12.3-4.2-62.5-37-155.7-51.9-238.6-29.4-4.8 1.3-7.4 2.6-11.9 2.6-10.7 0-19.4-8.7-19.4-19.4s5.2-17.8 15.5-20.7c27.8-7.8 56.2-13.6 97.8-13.6 64.9 0 127.6 16.1 177 45.5 8.1 4.8 11.3 11 11.3 19.7-.1 10.8-8.5 19.5-19.4 19.5zm31-76.2c-5.2 0-8.4-1.3-12.9-3.9-71.2-42.5-198.5-52.7-280.9-29.7-3.6 1-8.1 2.6-12.9 2.6-13.2 0-23.3-10.3-23.3-23.6 0-13.6 8.4-21.3 17.4-23.9 35.2-10.3 74.6-15.2 117.5-15.2 73 0 149.5 15.2 205.4 47.8 7.8 4.5 12.9 10.7 12.9 22.6 0 13.6-11 23.3-23.2 23.3z',
			),
		),
		'label'             => __( 'Spotify', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'spray-can'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 0C209.7 0 224 14.33 224 32V128H96V32C96 14.33 110.3 0 128 0H192zM0 256C0 202.1 42.98 160 96 160H224C277 160 320 202.1 320 256V464C320 490.5 298.5 512 272 512H48C21.49 512 0 490.5 0 464V256zM160 256C115.8 256 80 291.8 80 336C80 380.2 115.8 416 160 416C204.2 416 240 380.2 240 336C240 291.8 204.2 256 160 256zM320 64C320 81.67 305.7 96 288 96C270.3 96 256 81.67 256 64C256 46.33 270.3 32 288 32C305.7 32 320 46.33 320 64zM352 64C352 46.33 366.3 32 384 32C401.7 32 416 46.33 416 64C416 81.67 401.7 96 384 96C366.3 96 352 81.67 352 64zM512 64C512 81.67 497.7 96 480 96C462.3 96 448 81.67 448 64C448 46.33 462.3 32 480 32C497.7 32 512 46.33 512 64zM448 160C448 142.3 462.3 128 480 128C497.7 128 512 142.3 512 160C512 177.7 497.7 192 480 192C462.3 192 448 177.7 448 160zM512 256C512 273.7 497.7 288 480 288C462.3 288 448 273.7 448 256C448 238.3 462.3 224 480 224C497.7 224 512 238.3 512 256zM352 160C352 142.3 366.3 128 384 128C401.7 128 416 142.3 416 160C416 177.7 401.7 192 384 192C366.3 192 352 177.7 352 160z',
			),
		),
		'label'             => __( 'Spray Can', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'spray-can-sparkles'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 32C96 14.33 110.3 0 128 0H192C209.7 0 224 14.33 224 32V128H96V32zM224 160C277 160 320 202.1 320 256V464C320 490.5 298.5 512 272 512H48C21.49 512 0 490.5 0 464V256C0 202.1 42.98 160 96 160H224zM160 416C204.2 416 240 380.2 240 336C240 291.8 204.2 256 160 256C115.8 256 80 291.8 80 336C80 380.2 115.8 416 160 416zM384 48C384 49.36 383 50.97 381.8 51.58L352 64L339.6 93.78C338.1 95 337.4 96 336 96C334.6 96 333 95 332.4 93.78L320 64L290.2 51.58C288.1 50.97 288 49.36 288 48C288 46.62 288.1 45.03 290.2 44.42L320 32L332.4 2.219C333 1 334.6 0 336 0C337.4 0 338.1 1 339.6 2.219L352 32L381.8 44.42C383 45.03 384 46.62 384 48zM460.4 93.78L448 64L418.2 51.58C416.1 50.97 416 49.36 416 48C416 46.62 416.1 45.03 418.2 44.42L448 32L460.4 2.219C461 1 462.6 0 464 0C465.4 0 466.1 1 467.6 2.219L480 32L509.8 44.42C511 45.03 512 46.62 512 48C512 49.36 511 50.97 509.8 51.58L480 64L467.6 93.78C466.1 95 465.4 96 464 96C462.6 96 461 95 460.4 93.78zM467.6 194.2L480 224L509.8 236.4C511 237 512 238.6 512 240C512 241.4 511 242.1 509.8 243.6L480 256L467.6 285.8C466.1 287 465.4 288 464 288C462.6 288 461 287 460.4 285.8L448 256L418.2 243.6C416.1 242.1 416 241.4 416 240C416 238.6 416.1 237 418.2 236.4L448 224L460.4 194.2C461 193 462.6 192 464 192C465.4 192 466.1 193 467.6 194.2zM448 144C448 145.4 447 146.1 445.8 147.6L416 160L403.6 189.8C402.1 191 401.4 192 400 192C398.6 192 397 191 396.4 189.8L384 160L354.2 147.6C352.1 146.1 352 145.4 352 144C352 142.6 352.1 141 354.2 140.4L384 128L396.4 98.22C397 97 398.6 96 400 96C401.4 96 402.1 97 403.6 98.22L416 128L445.8 140.4C447 141 448 142.6 448 144z',
			),
		),
		'label'             => __( 'Spray Can Sparkles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'square'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM384 80H64C55.16 80 48 87.16 48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80z',
			),
		),
		'label'             => __( 'Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'square-arrow-up-right'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM344 312c0 17.69-14.31 32-32 32s-32-14.31-32-32V245.3l-121.4 121.4C152.4 372.9 144.2 376 136 376s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L234.8 200H168c-17.69 0-32-14.31-32-32s14.31-32 32-32h144c17.69 0 32 14.31 32 32V312z',
			),
		),
		'label'             => __( 'Square Arrow Up Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-caret-down'                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.65 419.3 32 384 32zM345.6 232.3l-104 112C237 349.2 230.7 352 224 352s-13.03-2.781-17.59-7.656l-104-112c-6.5-7-8.219-17.19-4.407-25.94C101.8 197.7 110.5 192 120 192h208c9.531 0 18.19 5.656 21.1 14.41C353.8 215.2 352.1 225.3 345.6 232.3z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M320 192H128C118.5 192 109.8 197.7 105.1 206.4C102.2 215.1 103.9 225.3 110.4 232.3l96 104C210.9 341.2 217.3 344 224 344s13.09-2.812 17.62-7.719l96-104c6.469-7 8.188-17.19 4.375-25.91C338.2 197.7 329.5 192 320 192zM384 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM400 416c0 8.82-7.178 16-16 16H64c-8.822 0-16-7.18-16-16V96c0-8.82 7.178-16 16-16h320c8.822 0 16 7.18 16 16V416z',
			),
		),
		'label'             => __( 'Square Caret Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-caret-left'                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.65 419.3 32 384 32zM288 360c0 9.531-5.656 18.19-14.41 22C270.5 383.3 267.3 384 264 384c-5.938 0-11.81-2.219-16.34-6.406l-112-104C130.8 269 128 262.7 128 256s2.781-13.03 7.656-17.59l112-104c7.031-6.469 17.22-8.156 25.94-4.406C282.3 133.8 288 142.5 288 152V360z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.66 32 0 60.66 0 96v320c0 35.34 28.66 64 64 64h320c35.34 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM400 416c0 8.82-7.18 16-16 16H64c-8.82 0-16-7.18-16-16V96c0-8.82 7.18-16 16-16h320c8.82 0 16 7.18 16 16V416zM273.6 138c-8.719-3.812-18.91-2.094-25.91 4.375l-104 96C138.8 242.9 136 249.3 136 256s2.812 13.09 7.719 17.62l104 96c7 6.469 17.19 8.188 25.91 4.375C282.3 370.2 288 361.5 288 352V160C288 150.5 282.3 141.8 273.6 138z',
			),
		),
		'label'             => __( 'Square Caret Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-caret-right'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.65 419.3 32 384 32zM312.3 273.6l-112 104C195.8 381.8 189.9 384 184 384c-3.25 0-6.5-.6562-9.594-2C165.7 378.2 160 369.5 160 360v-208c0-9.531 5.656-18.19 14.41-22c8.75-3.75 18.94-2.062 25.94 4.406l112 104C317.2 242.1 320 249.3 320 256S317.2 269 312.3 273.6z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M200.3 142.4C193.3 135.9 183.1 134.2 174.4 138C165.7 141.8 160 150.5 160 159.1v192C160 361.5 165.7 370.2 174.4 374c8.719 3.812 18.91 2.094 25.91-4.375l104-96C309.2 269.1 312 262.7 312 256s-2.812-13.09-7.719-17.62L200.3 142.4zM384 32H64C28.66 32 0 60.66 0 96v320c0 35.34 28.66 64 64 64h320c35.34 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM400 416c0 8.82-7.18 16-16 16H64c-8.82 0-16-7.18-16-16V96c0-8.82 7.18-16 16-16h320c8.82 0 16 7.18 16 16V416z',
			),
		),
		'label'             => __( 'Square Caret Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-caret-up'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.65 419.3 32 384 32zM349.1 305.6C346.2 314.3 337.5 320 328 320h-208c-9.531 0-18.19-5.656-22-14.41C94.19 296.8 95.91 286.7 102.4 279.7l104-112c9.125-9.75 26.06-9.75 35.19 0l104 112C352.1 286.7 353.8 296.8 349.1 305.6z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M241.6 175.7C237.1 170.8 230.7 168 224 168S210.9 170.8 206.4 175.7l-96 104c-6.469 7-8.188 17.19-4.375 25.91C109.8 314.3 118.5 320 127.1 320h192c9.531 0 18.16-5.656 22-14.38c3.813-8.719 2.094-18.91-4.375-25.91L241.6 175.7zM384 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM400 416c0 8.82-7.178 16-16 16H64c-8.822 0-16-7.18-16-16V96c0-8.82 7.178-16 16-16h320c8.822 0 16 7.18 16 16V416z',
			),
		),
		'label'             => __( 'Square Caret Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-check'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM339.8 211.8C350.7 200.9 350.7 183.1 339.8 172.2C328.9 161.3 311.1 161.3 300.2 172.2L192 280.4L147.8 236.2C136.9 225.3 119.1 225.3 108.2 236.2C97.27 247.1 97.27 264.9 108.2 275.8L172.2 339.8C183.1 350.7 200.9 350.7 211.8 339.8L339.8 211.8z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M211.8 339.8C200.9 350.7 183.1 350.7 172.2 339.8L108.2 275.8C97.27 264.9 97.27 247.1 108.2 236.2C119.1 225.3 136.9 225.3 147.8 236.2L192 280.4L300.2 172.2C311.1 161.3 328.9 161.3 339.8 172.2C350.7 183.1 350.7 200.9 339.8 211.8L211.8 339.8zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z',
			),
		),
		'label'             => __( 'Square Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'square-envelope'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.63 32 0 60.63 0 96v320c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V96C448 60.63 419.4 32 384 32zM384 336c0 17.67-14.33 32-32 32H96c-17.67 0-32-14.33-32-32V225.9l138.5 69.27C209.3 298.5 216.6 300.2 224 300.2s14.75-1.688 21.47-5.047L384 225.9V336zM384 190.1l-152.8 76.42c-4.5 2.25-9.812 2.25-14.31 0L64 190.1V176c0-17.67 14.33-32 32-32h256c17.67 0 32 14.33 32 32V190.1z',
			),
		),
		'label'             => __( 'Square Envelope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'square-font-awesome'                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384.5 32.5h-320c-35.3 0-64 28.7-64 64v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64v-320C448.5 61.2 419.8 32.5 384.5 32.5zM336.5 312.5c-31.6 11.2-41.2 16-59.8 16c-31.4 0-43.2-16-74.6-16c-10.2 0-18.2 1.6-25.6 4v-32c7.4-2.2 15.4-4 25.6-4c31.2 0 43.2 16 74.6 16c10.2 0 17.8-1.4 27.8-4.6v-96c-10 3.2-17.6 4.6-27.8 4.6c-31.4 0-43.2-16-74.6-16c-25.4 0-37.4 10.4-57.6 14.4v153.6c0 8.8-7.2 16-16 16c-8.8 0-16-7.2-16-16v-192c0-8.8 7.2-16 16-16c8.8 0 16 7.2 16 16v6.4c20.2-4 32.2-14.4 57.6-14.4c31.2 0 43.2 16 74.6 16c18.6 0 28.2-4.8 59.8-16V312.5z',
			),
		),
		'label'             => __( 'Font Awesome in Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'square-font-awesome-stroke'         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M201.6 152c-25.4 0-37.4 10.4-57.6 14.4V160c0-8.8-7.2-16-16-16s-16 7.2-16 16v192c0 .8 .1 1.6 .2 2.4c.1 .4 .1 .8 .2 1.2c1.6 7.1 8 12.4 15.6 12.4s14-5.3 15.6-12.4c.1-.4 .2-.8 .2-1.2c.1-.8 .2-1.6 .2-2.4V198.4c4-.8 7.7-1.8 11.2-3c14.3-4.7 26-11.4 46.4-11.4c31.4 0 43.2 16 74.6 16c8.9 0 15.9-1.1 24.2-3.5c1.2-.3 2.4-.7 3.6-1.1v96c-10 3.2-17.6 4.6-27.8 4.6c-31.4 0-43.4-16-74.6-16c-10.2 0-18.2 1.8-25.6 4v32c7.4-2.4 15.4-4 25.6-4c31.4 0 43.2 16 74.6 16c18.6 0 28.2-4.8 59.8-16V152c-31.6 11.2-41.2 16-59.8 16C244.8 168 232.8 152 201.6 152zM384 32H64C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96C448 60.7 419.3 32 384 32zM416 416c0 17.6-14.4 32-32 32H64c-17.6 0-32-14.4-32-32V96c0-17.6 14.4-32 32-32h320c17.6 0 32 14.4 32 32V416z',
			),
		),
		'label'             => __( 'Font Awesome in Square with Stroke Outline', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'square-full'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 0H512V512H0V0z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 0V512H0V0H512zM464 48H48V464H464V48z',
			),
		),
		'label'             => __( 'Square Full', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'square-h'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96C448 60.65 419.3 32 384 32zM336 360c0 13.25-10.75 24-24 24S288 373.3 288 360v-80H160v80C160 373.3 149.3 384 136 384S112 373.3 112 360v-208C112 138.8 122.8 128 136 128S160 138.8 160 152v80h128v-80C288 138.8 298.8 128 312 128s24 10.75 24 24V360z',
			),
		),
		'label'             => __( 'Square H', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology', 'travel' ),
	),
	'square-minus'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM136 232C122.7 232 112 242.7 112 256C112 269.3 122.7 280 136 280H312C325.3 280 336 269.3 336 256C336 242.7 325.3 232 312 232H136z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M312 232C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H312zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z',
			),
		),
		'label'             => __( 'Square Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'square-nfi'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM64 176V336C64 344.8 71.16 352 80 352C88.84 352 96 344.8 96 336V233.8L162.3 344.2C165.1 350.4 173.3 353.3 180.3 351.4C187.2 349.5 191.1 343.2 191.1 336V176C191.1 167.2 184.8 160 175.1 160C167.2 160 159.1 167.2 159.1 176V278.2L93.72 167.8C90.02 161.6 82.66 158.7 75.73 160.6C68.8 162.5 64 168.8 64 176V176zM224 336C224 344.8 231.2 352 240 352C248.8 352 256 344.8 256 336V256H304C312.8 256 320 248.8 320 240C320 231.2 312.8 224 304 224H256V192H304C312.8 192 320 184.8 320 176C320 167.2 312.8 160 304 160H240C231.2 160 224 167.2 224 176V336zM384 176C384 167.2 376.8 160 368 160C359.2 160 352 167.2 352 176V336C352 344.8 359.2 352 368 352C376.8 352 384 344.8 384 336V176z',
			),
		),
		'label'             => __( 'Square Nfi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'square-parking'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M192 256V192H240C257.7 192 272 206.3 272 224C272 241.7 257.7 256 240 256H192zM384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM336 224C336 170.1 293 128 240 128H168C145.9 128 128 145.9 128 168V352C128 369.7 142.3 384 160 384C177.7 384 192 369.7 192 352V320H240C293 320 336 277 336 224z',
			),
		),
		'label'             => __( 'Square Parking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'square-pen'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM325.8 139.7C310.1 124.1 284.8 124.1 269.2 139.7L247.8 161.1L318.7 232.1L340.1 210.7C355.8 195 355.8 169.7 340.1 154.1L325.8 139.7zM111.5 303.8L96.48 363.1C95.11 369.4 96.71 375.2 100.7 379.2C104.7 383.1 110.4 384.7 115.9 383.4L176 368.3C181.6 366.9 186.8 364 190.9 359.9L296.1 254.7L225.1 183.8L119.9 288.1C115.8 293.1 112.9 298.2 111.5 303.8z',
			),
		),
		'label'             => __( 'Square Pen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'square-person-confined'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM208 96C181.5 96 160 117.5 160 144C160 170.5 181.5 192 208 192C234.5 192 256 170.5 256 144C256 117.5 234.5 96 208 96zM240 306.7L198.6 265.4C191.4 258.1 181 254.8 170.9 256.4C160.7 258.1 151.1 264.5 147.4 273.7L99.39 369.7C91.48 385.5 97.89 404.7 113.7 412.6C129.5 420.5 148.7 414.1 156.6 398.3L184.8 342L239.4 396.7C251.8 409.1 268.6 416 286.1 416C322.5 416 352 386.5 352 350.1V248C352 217.1 326.9 192 296 192C265.1 192 240 217.1 240 248V306.7z',
			),
		),
		'label'             => __( 'Square Person Confined', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'square-phone'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96C448 60.65 419.3 32 384 32zM351.6 321.5l-11.62 50.39c-1.633 7.125-7.9 12.11-15.24 12.11c-126.1 0-228.7-102.6-228.7-228.8c0-7.328 4.984-13.59 12.11-15.22l50.38-11.63c7.344-1.703 14.88 2.109 17.93 9.062l23.27 54.28c2.719 6.391 .8828 13.83-4.492 18.22L168.3 232c16.99 34.61 45.14 62.75 79.77 79.75l22.02-26.91c4.344-5.391 11.85-7.25 18.24-4.484l54.24 23.25C349.5 306.6 353.3 314.2 351.6 321.5z',
			),
		),
		'label'             => __( 'Square Phone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'travel' ),
	),
	'square-phone-flip'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96c0-35.35-28.65-64-64-64H64C28.65 32 0 60.65 0 96zM105.5 303.6l54.24-23.25c6.391-2.766 13.9-.9062 18.24 4.484l22.02 26.91c34.63-17 62.77-45.14 79.77-79.75l-26.91-22.05c-5.375-4.391-7.211-11.83-4.492-18.22l23.27-54.28c3.047-6.953 10.59-10.77 17.93-9.062l50.38 11.63c7.125 1.625 12.11 7.891 12.11 15.22c0 126.1-102.6 228.8-228.7 228.8c-7.336 0-13.6-4.984-15.24-12.11l-11.62-50.39C94.71 314.2 98.5 306.6 105.5 303.6z',
			),
		),
		'label'             => __( 'Square Phone Flip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'travel' ),
	),
	'square-plus'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM224 368C237.3 368 248 357.3 248 344V280H312C325.3 280 336 269.3 336 256C336 242.7 325.3 232 312 232H248V168C248 154.7 237.3 144 224 144C210.7 144 200 154.7 200 168V232H136C122.7 232 112 242.7 112 256C112 269.3 122.7 280 136 280H200V344C200 357.3 210.7 368 224 368z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M200 344V280H136C122.7 280 112 269.3 112 256C112 242.7 122.7 232 136 232H200V168C200 154.7 210.7 144 224 144C237.3 144 248 154.7 248 168V232H312C325.3 232 336 242.7 336 256C336 269.3 325.3 280 312 280H248V344C248 357.3 237.3 368 224 368C210.7 368 200 357.3 200 344zM0 96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H384C392.8 432 400 424.8 400 416V96C400 87.16 392.8 80 384 80H64C55.16 80 48 87.16 48 96z',
			),
		),
		'label'             => __( 'Square Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'square-poll-horizontal'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384C419.3 32 448 60.65 448 96V416zM256 160C256 142.3 241.7 128 224 128H128C110.3 128 96 142.3 96 160C96 177.7 110.3 192 128 192H224C241.7 192 256 177.7 256 160zM128 224C110.3 224 96 238.3 96 256C96 273.7 110.3 288 128 288H320C337.7 288 352 273.7 352 256C352 238.3 337.7 224 320 224H128zM192 352C192 334.3 177.7 320 160 320H128C110.3 320 96 334.3 96 352C96 369.7 110.3 384 128 384H160C177.7 384 192 369.7 192 352z',
			),
		),
		'label'             => __( 'Square Poll Horizontal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'social' ),
	),
	'square-poll-vertical'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM128 224C110.3 224 96 238.3 96 256V352C96 369.7 110.3 384 128 384C145.7 384 160 369.7 160 352V256C160 238.3 145.7 224 128 224zM192 352C192 369.7 206.3 384 224 384C241.7 384 256 369.7 256 352V160C256 142.3 241.7 128 224 128C206.3 128 192 142.3 192 160V352zM320 288C302.3 288 288 302.3 288 320V352C288 369.7 302.3 384 320 384C337.7 384 352 369.7 352 352V320C352 302.3 337.7 288 320 288z',
			),
		),
		'label'             => __( 'Square Poll Vertical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'social' ),
	),
	'square-root-variable'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M576 32.01c0-17.69-14.33-31.1-32-31.1l-224-.0049c-14.69 0-27.48 10-31.05 24.25L197.9 388.3L124.6 241.7C119.2 230.9 108.1 224 96 224L32 224c-17.67 0-32 14.31-32 31.1s14.33 32 32 32h44.22l103.2 206.3c5.469 10.91 16.6 17.68 28.61 17.68c1.172 0 2.323-.0576 3.495-.1826c13.31-1.469 24.31-11.06 27.56-24.06l105.9-423.8H544C561.7 64.01 576 49.7 576 32.01zM566.6 233.4c-12.5-12.5-32.75-12.5-45.25 0L480 274.8l-41.38-41.37c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l41.38 41.38l-41.38 41.38c-12.5 12.5-12.5 32.75 0 45.25C399.6 412.9 407.8 416 416 416s16.38-3.125 22.62-9.375L480 365.3l41.38 41.38C527.6 412.9 535.8 416 544 416s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25l-41.38-41.38L566.6 278.6C579.1 266.1 579.1 245.9 566.6 233.4z',
			),
		),
		'label'             => __( 'Square Root Variable', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'square-rss'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.66 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.66 419.3 32 384 32zM150.6 374.6C144.4 380.9 136.2 384 128 384s-16.38-3.121-22.63-9.371c-12.5-12.5-12.5-32.76 0-45.26C111.6 323.1 119.8 320 128 320s16.38 3.121 22.63 9.371C163.1 341.9 163.1 362.1 150.6 374.6zM249.6 383.9C249 383.1 248.5 384 247.1 384c-12.53 0-23.09-9.75-23.92-22.44C220.5 306.9 173.1 259.5 118.4 255.9c-13.22-.8438-23.25-12.28-22.39-25.5c.8594-13.25 12.41-22.81 25.52-22.38c77.86 5.062 145.3 72.5 150.4 150.4C272.8 371.7 262.8 383.1 249.6 383.9zM345 383.1C344.7 384 344.3 384 343.1 384c-12.8 0-23.42-10.09-23.97-23C315.6 254.6 225.4 164.4 119 159.1C105.8 159.4 95.47 148.3 96.02 135C96.58 121.8 107.9 111.2 121 112c130.7 5.469 241.5 116.3 246.1 246.1C368.5 372.3 358.3 383.4 345 383.1z',
			),
		),
		'label'             => __( 'Square Rss', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'square-share-nodes'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM320 96C284.7 96 256 124.7 256 160C256 162.5 256.1 164.9 256.4 167.3L174.5 212C162.8 199.7 146.3 192 128 192C92.65 192 64 220.7 64 256C64 291.3 92.65 320 128 320C146.3 320 162.8 312.3 174.5 299.1L256.4 344.7C256.1 347.1 256 349.5 256 352C256 387.3 284.7 416 320 416C355.3 416 384 387.3 384 352C384 316.7 355.3 288 320 288C304.6 288 290.5 293.4 279.4 302.5L194.1 256L279.4 209.5C290.5 218.6 304.6 224 320 224C355.3 224 384 195.3 384 160C384 124.7 355.3 96 320 96V96z',
			),
		),
		'label'             => __( 'Square Share Nodes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social', 'brands', 'brands', 'social' ),
	),
	'square-up-right'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64C28.65 32 0 60.65 0 96v320c0 35.34 28.65 64 64 64h320c35.35 0 64-28.66 64-64V96C448 60.65 419.3 32 384 32zM330.5 323.9c0 6.473-3.889 12.3-9.877 14.78c-5.979 2.484-12.86 1.105-17.44-3.469l-45.25-45.25l-67.92 67.92c-12.5 12.5-32.72 12.46-45.21-.0411l-22.63-22.63C109.7 322.7 109.6 302.5 122.1 289.1l67.92-67.92L144.8 176.8C140.2 172.2 138.8 165.3 141.3 159.4c2.477-5.984 8.309-9.875 14.78-9.875h158.4c8.835 0 15.1 7.163 15.1 15.1V323.9z',
			),
		),
		'label'             => __( 'Square Up Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'square-virus'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 224C160 206.3 174.3 192 192 192C209.7 192 224 206.3 224 224C224 241.7 209.7 256 192 256C174.3 256 160 241.7 160 224zM280 288C280 301.3 269.3 312 256 312C242.7 312 232 301.3 232 288C232 274.7 242.7 264 256 264C269.3 264 280 274.7 280 288zM384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM199.8 117.7C199.8 146.9 164.5 161.6 143.8 140.9C134.4 131.5 119.2 131.5 109.8 140.9C100.5 150.2 100.5 165.4 109.8 174.8C130.5 195.5 115.9 230.9 86.61 230.9C73.35 230.9 62.61 241.6 62.61 254.9C62.61 268.1 73.35 278.9 86.61 278.9C115.9 278.9 130.5 314.3 109.8 334.9C100.5 344.3 100.5 359.5 109.8 368.9C119.2 378.3 134.4 378.3 143.8 368.9C164.5 348.2 199.8 362.9 199.8 392.1C199.8 405.4 210.6 416.1 223.8 416.1C237.1 416.1 247.8 405.4 247.8 392.1C247.8 362.9 283.2 348.2 303.9 368.9C313.3 378.3 328.5 378.3 337.8 368.9C347.2 359.5 347.2 344.3 337.8 334.9C317.2 314.3 331.8 278.9 361.1 278.9C374.3 278.9 385.1 268.1 385.1 254.9C385.1 241.6 374.3 230.9 361.1 230.9C331.8 230.9 317.2 195.5 337.8 174.8C347.2 165.4 347.2 150.2 337.8 140.9C328.5 131.5 313.3 131.5 303.9 140.9C283.2 161.6 247.8 146.9 247.8 117.7C247.8 104.4 237.1 93.65 223.8 93.65C210.6 93.65 199.8 104.4 199.8 117.7H199.8z',
			),
		),
		'label'             => __( 'Square Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'square-xmark'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM143 208.1L190.1 255.1L143 303C133.7 312.4 133.7 327.6 143 336.1C152.4 346.3 167.6 346.3 176.1 336.1L223.1 289.9L271 336.1C280.4 346.3 295.6 346.3 304.1 336.1C314.3 327.6 314.3 312.4 304.1 303L257.9 255.1L304.1 208.1C314.3 199.6 314.3 184.4 304.1 175C295.6 165.7 280.4 165.7 271 175L223.1 222.1L176.1 175C167.6 165.7 152.4 165.7 143 175C133.7 184.4 133.7 199.6 143 208.1V208.1z',
			),
		),
		'label'             => __( 'Square Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'squarespace'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M186.1 343.3c-9.65 9.65-9.65 25.29 0 34.94 9.65 9.65 25.29 9.65 34.94 0L378.2 221.1c19.29-19.29 50.57-19.29 69.86 0s19.29 50.57 0 69.86L293.1 445.1c19.27 19.29 50.53 19.31 69.82 .04l.04-.04 119.3-119.2c38.59-38.59 38.59-101.1 0-139.7-38.59-38.59-101.2-38.59-139.7 0l-157.2 157.2zm244.5-104.8c-9.65-9.65-25.29-9.65-34.93 0l-157.2 157.2c-19.27 19.29-50.53 19.31-69.82 .05l-.05-.05c-9.64-9.64-25.27-9.65-34.92-.01l-.01 .01c-9.65 9.64-9.66 25.28-.02 34.93l.02 .02c38.58 38.57 101.1 38.57 139.7 0l157.2-157.2c9.65-9.65 9.65-25.29 .01-34.93zm-261.1 87.33l157.2-157.2c9.64-9.65 9.64-25.29 0-34.94-9.64-9.64-25.27-9.64-34.91 0L133.7 290.9c-19.28 19.29-50.56 19.3-69.85 .01l-.01-.01c-19.29-19.28-19.31-50.54-.03-69.84l.03-.03L218 66.89c-19.28-19.29-50.55-19.3-69.85-.02l-.02 .02L28.93 186.1c-38.58 38.59-38.58 101.1 0 139.7 38.6 38.59 101.1 38.59 139.7 .01zm-87.33-52.4c9.64 9.64 25.27 9.64 34.91 0l157.2-157.2c19.28-19.29 50.55-19.3 69.84-.02l.02 .02c9.65 9.65 25.29 9.65 34.93 0 9.65-9.65 9.65-25.29 0-34.93-38.59-38.59-101.1-38.59-139.7 0L81.33 238.5c-9.65 9.64-9.65 25.28-.01 34.93h.01z',
			),
		),
		'label'             => __( 'Squarespace', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stack-exchange'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M17.7 332.3h412.7v22c0 37.7-29.3 68-65.3 68h-19L259.3 512v-89.7H83c-36 0-65.3-30.3-65.3-68v-22zm0-23.6h412.7v-85H17.7v85zm0-109.4h412.7v-85H17.7v85zM365 0H83C47 0 17.7 30.3 17.7 67.7V90h412.7V67.7C430.3 30.3 401 0 365 0z',
			),
		),
		'label'             => __( 'Stack Exchange', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stack-overflow'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M290.7 311L95 269.7 86.8 309l195.7 41zm51-87L188.2 95.7l-25.5 30.8 153.5 128.3zm-31.2 39.7L129.2 179l-16.7 36.5L293.7 300zM262 32l-32 24 119.3 160.3 32-24zm20.5 328h-200v39.7h200zm39.7 80H42.7V320h-40v160h359.5V320h-40z',
			),
		),
		'label'             => __( 'Stack Overflow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stackpath'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M244.6 232.4c0 8.5-4.26 20.49-21.34 20.49h-19.61v-41.47h19.61c17.13 0 21.34 12.36 21.34 20.98zM448 32v448H0V32zM151.3 287.8c0-21.24-12.12-34.54-46.72-44.85-20.57-7.41-26-10.91-26-18.63s7-14.61 20.41-14.61c14.09 0 20.79 8.45 20.79 18.35h30.7l.19-.57c.5-19.57-15.06-41.65-51.12-41.65-23.37 0-52.55 10.75-52.55 38.29 0 19.4 9.25 31.29 50.74 44.37 17.26 6.15 21.91 10.4 21.91 19.48 0 15.2-19.13 14.23-19.47 14.23-20.4 0-25.65-9.1-25.65-21.9h-30.8l-.18 .56c-.68 31.32 28.38 45.22 56.63 45.22 29.98 0 51.12-13.55 51.12-38.29zm125.4-55.63c0-25.3-18.43-45.46-53.42-45.46h-51.78v138.2h32.17v-47.36h19.61c30.25 0 53.42-15.95 53.42-45.36zM297.9 325L347 186.8h-31.09L268 325zm106.5-138.2h-31.09L325.5 325h29.94z',
			),
		),
		'label'             => __( 'Stackpath', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'staff-aesculapius'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M222.5 48H288C341 48 384 90.98 384 144C384 197 341 240 288 240H248V160H288C296.8 160 304 152.8 304 144C304 135.2 296.8 128 288 128H220L215.5 272H256C309 272 352 314.1 352 368C352 421 309 464 256 464H240V384H256C264.8 384 272 376.8 272 368C272 359.2 264.8 352 256 352H212.1L208.5 496C208.2 504.9 200.9 512 191.1 512C183.1 512 175.8 504.9 175.5 496L174.5 464H135.1C113.9 464 95.1 446.1 95.1 424C95.1 401.9 113.9 384 135.1 384H171.1L170.1 352H151.1C98.98 352 55.1 309 55.1 256C55.1 208.4 90.6 168.9 135.1 161.3V256C135.1 264.8 143.2 272 151.1 272H168.5L164 128H122.6C113.6 146.9 94.34 160 72 160H56C25.07 160 0 134.9 0 104C0 73.07 25.07 48 56 48H161.5L160.1 31.98C160.1 31.33 160.1 30.69 160.1 30.05C161.5 13.43 175.1 0 192 0C208.9 0 222.5 13.43 223 30.05C223 30.69 223 31.33 223 31.98L222.5 48zM79.1 96C79.1 87.16 72.84 80 63.1 80C55.16 80 47.1 87.16 47.1 96C47.1 104.8 55.16 112 63.1 112C72.84 112 79.1 104.8 79.1 96z',
			),
		),
		'label'             => __( 'Staff Aesculapius', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'stairs'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M576 64c0 17.67-14.31 32-32 32h-96v96c0 17.67-14.31 32-32 32h-96v96c0 17.67-14.31 32-32 32H192v96c0 17.67-14.31 32-32 32H32c-17.69 0-32-14.33-32-32s14.31-32 32-32h96v-96c0-17.67 14.31-32 32-32h96V192c0-17.67 14.31-32 32-32h96V64c0-17.67 14.31-32 32-32h128C561.7 32 576 46.33 576 64z',
			),
		),
		'label'             => __( 'Stairs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'stamp'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M366.2 256H400C461.9 256 512 306.1 512 368C512 388.9 498.6 406.7 480 413.3V464C480 490.5 458.5 512 432 512H80C53.49 512 32 490.5 32 464V413.3C13.36 406.7 0 388.9 0 368C0 306.1 50.14 256 112 256H145.8C175.7 256 200 231.7 200 201.8C200 184.3 190.8 168.5 180.1 154.8C167.5 138.5 160 118.1 160 96C160 42.98 202.1 0 256 0C309 0 352 42.98 352 96C352 118.1 344.5 138.5 331.9 154.8C321.2 168.5 312 184.3 312 201.8C312 231.7 336.3 256 366.2 256zM416 416H96V448H416V416z',
			),
		),
		'label'             => __( 'Stamp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'star'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0L287.9 0zM287.9 78.95L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L276.6 387.5C283.7 383.7 292.2 383.7 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.9 78.95z',
			),
		),
		'label'             => __( 'Star', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'lifestyle-and-hobbies', 'social' ),
	),
	'star-and-crescent'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M340.5 466.4c-1.5 0-6.875 .5-9.25 .5c-116.3 0-210.8-94.63-210.8-210.9s94.5-210.9 210.8-210.9c2.375 0 7.75 .5 9.25 .5c7.125 0 13.25-5 14.75-12c1.375-7.25-2.625-14.5-9.5-17.12c-29.13-11-59.38-16.5-89.75-16.5c-141.1 0-256 114.9-256 256s114.9 256 256 256c30.25 0 60.25-5.5 89.38-16.38c5.875-2 10.25-7.625 10.25-14.25C355.6 473.4 349.3 466.4 340.5 466.4zM503.5 213.9l-76.38-11.12L392.9 133.5C391.1 129.9 387.5 128 384 128c-3.5 0-7.125 1.875-9 5.5l-34.13 69.25l-76.38 11.12c-8.125 1.125-11.38 11.25-5.5 17l55.25 53.88l-13 76c-1.125 6.5 3.1 11.75 9.75 11.75c1.5 0 3.125-.375 4.625-1.25l68.38-35.88l68.25 35.88c1.625 .875 3.125 1.25 4.75 1.25c5.75 0 10.88-5.25 9.75-11.75l-13-76l55.25-53.88C514.9 225.1 511.6 214.1 503.5 213.9z',
			),
		),
		'label'             => __( 'Star And Crescent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'star-half'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.995 275.8 .0131 287.1-.0391L288 439.8zM433.2 512C432.1 512.1 431 512.1 429.9 512H433.2z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M293.3 .6123C304.2 3.118 311.9 12.82 311.9 24V408.7C311.9 417.5 307.1 425.7 299.2 429.8L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.1 115.1 483.9L142.2 328.4L31.11 218.3C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C271.2 3.46 282.4-1.893 293.3 .6127L293.3 .6123zM263.9 128.4L235.4 187.2C231.9 194.3 225.1 199.3 217.3 200.5L98.98 217.9L184.9 303C190.4 308.5 192.9 316.4 191.6 324.1L171.4 443.7L263.9 394.3L263.9 128.4z',
			),
		),
		'label'             => __( 'Star Half', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'star-half-stroke'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M463.1 474.7C465.1 486.7 460.2 498.9 450.2 506C440.3 513.1 427.2 514 416.5 508.3L288.1 439.8L159.8 508.3C149 514 135.9 513.1 126 506C116.1 498.9 111.1 486.7 113.2 474.7L137.8 328.1L33.58 225.9C24.97 217.3 21.91 204.7 25.69 193.1C29.46 181.6 39.43 173.2 51.42 171.5L195 150.3L259.4 17.97C264.7 6.954 275.9-.0391 288.1-.0391C300.4-.0391 311.6 6.954 316.9 17.97L381.2 150.3L524.9 171.5C536.8 173.2 546.8 181.6 550.6 193.1C554.4 204.7 551.3 217.3 542.7 225.9L438.5 328.1L463.1 474.7zM288 376.4L288.1 376.3L399.7 435.9L378.4 309.6L469.2 219.8L343.8 201.4L288.1 86.85L288 87.14V376.4z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M378.1 154.8L531.4 177.5C540.4 178.8 547.8 185.1 550.7 193.7C553.5 202.4 551.2 211.9 544.8 218.2L433.6 328.4L459.9 483.9C461.4 492.9 457.7 502.1 450.2 507.4C442.8 512.7 432.1 513.4 424.9 509.1L287.9 435.9L150.1 509.1C142.9 513.4 133.1 512.7 125.6 507.4C118.2 502.1 114.5 492.9 115.1 483.9L142.2 328.4L31.11 218.2C24.65 211.9 22.36 202.4 25.2 193.7C28.03 185.1 35.5 178.8 44.49 177.5L197.7 154.8L266.3 13.52C270.4 5.249 278.7 0 287.9 0C297.1 0 305.5 5.25 309.5 13.52L378.1 154.8zM287.1 384.7C291.9 384.7 295.7 385.6 299.2 387.5L404.4 443.7L384.2 324.1C382.9 316.4 385.5 308.5 391 303L476.9 217.9L358.6 200.5C350.7 199.3 343.9 194.3 340.5 187.2L287.1 79.09L287.1 384.7z',
			),
		),
		'label'             => __( 'Star Half Stroke', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'star-of-david'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M490.7 345.4L435.6 256l55.1-89.38c14.87-24.25-3.62-54.61-33.12-54.61l-110.6-.005l-57.87-93.1C281.7 6.003 268.9 0 256 0C243.1 0 230.3 6.003 222.9 18L165 112H54.39c-29.62 0-47.99 30.37-33.12 54.62L76.37 256l-55.1 89.38C6.4 369.6 24.77 399.1 54.39 399.1h110.6l57.87 93.1C230.3 505.1 243.1 512 256 512c12.88 0 25.74-6.002 33.12-18l57.83-93.1h110.7C487.2 399.1 505.6 369.6 490.7 345.4zM256 73.77l23.59 38.23H232.5L256 73.77zM89.48 343.1l20.59-33.35l20.45 33.35H89.48zM110 201.3L89.48 168h41.04L110 201.3zM256 438.2l-23.59-38.25h47.08L256 438.2zM313.9 343.1H198L143.8 256l54.22-87.1h116L368.3 256L313.9 343.1zM381.3 343.1l20.67-33.29l20.52 33.29H381.3zM401.1 201.3l-20.51-33.29h41.04L401.1 201.3z',
			),
		),
		'label'             => __( 'Star Of David', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'star-of-life'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M489.1 363.3l-24.03 41.59c-6.635 11.48-21.33 15.41-32.82 8.78l-129.1-74.56V488c0 13.25-10.75 24-24.02 24H231.1c-13.27 0-24.02-10.75-24.02-24v-148.9L78.87 413.7c-11.49 6.629-26.19 2.698-32.82-8.78l-24.03-41.59c-6.635-11.48-2.718-26.14 8.774-32.77L159.9 256L30.8 181.5C19.3 174.8 15.39 160.2 22.02 148.7l24.03-41.59c6.635-11.48 21.33-15.41 32.82-8.781l129.1 74.56L207.1 24c0-13.25 10.75-24 24.02-24h48.04c13.27 0 24.02 10.75 24.02 24l.0005 148.9l129.1-74.56c11.49-6.629 26.19-2.698 32.82 8.78l24.02 41.59c6.637 11.48 2.718 26.14-8.774 32.77L352.1 256l129.1 74.53C492.7 337.2 496.6 351.8 489.1 363.3z',
			),
		),
		'label'             => __( 'Star Of Life', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'staylinked'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 440,
				'height' => 512,
				'path'   => 'M382.7 292.5l2.7 2.7-170-167.3c-3.5-3.5-9.7-3.7-13.8-.5L144.3 171c-4.2 3.2-4.6 8.7-1.1 12.2l68.1 64.3c3.6 3.5 9.9 3.7 14 .5l.1-.1c4.1-3.2 10.4-3 14 .5l84 81.3c3.6 3.5 3.2 9-.9 12.2l-93.2 74c-4.2 3.3-10.5 3.1-14.2-.4L63.2 268c-3.5-3.5-9.7-3.7-13.9-.5L3.5 302.4c-4.2 3.2-4.7 8.7-1.2 12.2L211 510.7s7.4 6.8 17.3-.8l198-163.9c4-3.2 4.4-8.7 .7-12.2zm54.5-83.4L226.7 2.5c-1.5-1.2-8-5.5-16.3 1.1L3.6 165.7c-4.2 3.2-4.8 8.7-1.2 12.2l42.3 41.7 171.7 165.1c3.7 3.5 10.1 3.7 14.3 .4l50.2-38.8-.3-.3 7.7-6c4.2-3.2 4.6-8.7 .9-12.2l-57.1-54.4c-3.6-3.5-10-3.7-14.2-.5l-.1 .1c-4.2 3.2-10.5 3.1-14.2-.4L109 180.8c-3.6-3.5-3.1-8.9 1.1-12.2l92.2-71.5c4.1-3.2 10.3-3 13.9 .5l160.4 159c3.7 3.5 10 3.7 14.1 .5l45.8-35.8c4.1-3.2 4.4-8.7 .7-12.2z',
			),
		),
		'label'             => __( 'StayLinked', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'steam'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M496 256c0 137-111.2 248-248.4 248-113.8 0-209.6-76.3-239-180.4l95.2 39.3c6.4 32.1 34.9 56.4 68.9 56.4 39.2 0 71.9-32.4 70.2-73.5l84.5-60.2c52.1 1.3 95.8-40.9 95.8-93.5 0-51.6-42-93.5-93.7-93.5s-93.7 42-93.7 93.5v1.2L176.6 279c-15.5-.9-30.7 3.4-43.5 12.1L0 236.1C10.2 108.4 117.1 8 247.6 8 384.8 8 496 119 496 256zM155.7 384.3l-30.5-12.6a52.79 52.79 0 0 0 27.2 25.8c26.9 11.2 57.8-1.6 69-28.4 5.4-13 5.5-27.3 .1-40.3-5.4-13-15.5-23.2-28.5-28.6-12.9-5.4-26.7-5.2-38.9-.6l31.5 13c19.8 8.2 29.2 30.9 20.9 50.7-8.3 19.9-31 29.2-50.8 21zm173.8-129.9c-34.4 0-62.4-28-62.4-62.3s28-62.3 62.4-62.3 62.4 28 62.4 62.3-27.9 62.3-62.4 62.3zm.1-15.6c25.9 0 46.9-21 46.9-46.8 0-25.9-21-46.8-46.9-46.8s-46.9 21-46.9 46.8c.1 25.8 21.1 46.8 46.9 46.8z',
			),
		),
		'label'             => __( 'Steam', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'steam-square'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M185.2 356.5c7.7-18.5-1-39.7-19.6-47.4l-29.5-12.2c11.4-4.3 24.3-4.5 36.4 .5 12.2 5.1 21.6 14.6 26.7 26.7 5 12.2 5 25.6-.1 37.7-10.5 25.1-39.4 37-64.6 26.5-11.6-4.8-20.4-13.6-25.4-24.2l28.5 11.8c18.6 7.8 39.9-.9 47.6-19.4zM400 32H48C21.5 32 0 53.5 0 80v160.7l116.6 48.1c12-8.2 26.2-12.1 40.7-11.3l55.4-80.2v-1.1c0-48.2 39.3-87.5 87.6-87.5s87.6 39.3 87.6 87.5c0 49.2-40.9 88.7-89.6 87.5l-79 56.3c1.6 38.5-29.1 68.8-65.7 68.8-31.8 0-58.5-22.7-64.5-52.7L0 319.2V432c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-99.7 222.5c-32.2 0-58.4-26.1-58.4-58.3s26.2-58.3 58.4-58.3 58.4 26.2 58.4 58.3-26.2 58.3-58.4 58.3zm.1-14.6c24.2 0 43.9-19.6 43.9-43.8 0-24.2-19.6-43.8-43.9-43.8-24.2 0-43.9 19.6-43.9 43.8 0 24.2 19.7 43.8 43.9 43.8z',
			),
		),
		'label'             => __( 'Steam Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'steam-symbol'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M395.5 177.5c0 33.8-27.5 61-61 61-33.8 0-61-27.3-61-61s27.3-61 61-61c33.5 0 61 27.2 61 61zm52.5 .2c0 63-51 113.8-113.7 113.8L225 371.3c-4 43-40.5 76.8-84.5 76.8-40.5 0-74.7-28.8-83-67L0 358V250.7L97.2 290c15.1-9.2 32.2-13.3 52-11.5l71-101.7c.5-62.3 51.5-112.8 114-112.8C397 64 448 115 448 177.7zM203 363c0-34.7-27.8-62.5-62.5-62.5-4.5 0-9 .5-13.5 1.5l26 10.5c25.5 10.2 38 39 27.7 64.5-10.2 25.5-39.2 38-64.7 27.5-10.2-4-20.5-8.3-30.7-12.2 10.5 19.7 31.2 33.2 55.2 33.2 34.7 0 62.5-27.8 62.5-62.5zm207.5-185.3c0-42-34.3-76.2-76.2-76.2-42.3 0-76.5 34.2-76.5 76.2 0 42.2 34.3 76.2 76.5 76.2 41.9 .1 76.2-33.9 76.2-76.2z',
			),
		),
		'label'             => __( 'Steam Symbol', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'sterling-sign'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M112 223.1H224C241.7 223.1 256 238.3 256 255.1C256 273.7 241.7 287.1 224 287.1H112V332.5C112 361.5 104.1 389.1 89.2 414.9L88.52 416H288C305.7 416 320 430.3 320 448C320 465.7 305.7 480 288 480H32C20.47 480 9.834 473.8 4.154 463.8C-1.527 453.7-1.371 441.4 4.56 431.5L34.32 381.9C43.27 367 48 349.9 48 332.5V288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H48V160.4C48 89.47 105.5 32 176.4 32C190.2 32 203.9 34.22 216.1 38.59L298.1 65.64C314.9 71.23 323.9 89.35 318.4 106.1C312.8 122.9 294.6 131.9 277.9 126.4L196.7 99.3C190.2 97.12 183.3 96 176.4 96C140.8 96 112 124.8 112 160.4V223.1z',
			),
		),
		'label'             => __( 'Sterling Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'stethoscope'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M480 112c-44.18 0-80 35.82-80 80c0 32.84 19.81 60.98 48.11 73.31v78.7c0 57.25-50.25 104-112 104c-60 0-109.3-44.1-111.9-99.23C296.1 333.8 352 269.3 352 191.1V36.59c0-11.38-8.15-21.38-19.28-23.5L269.8 .4775c-13-2.625-25.54 5.766-28.16 18.77L238.4 34.99c-2.625 13 5.812 25.59 18.81 28.22l30.69 6.059L287.9 190.7c0 52.88-42.13 96.63-95.13 97.13c-53.38 .5-96.81-42.56-96.81-95.93L95.89 69.37l30.72-6.112c13-2.5 21.41-15.15 18.78-28.15L142.3 19.37c-2.5-13-15.15-21.41-28.15-18.78L51.28 12.99C40.15 15.24 32 25.09 32 36.59v155.4c0 77.25 55.11 142 128.1 156.8C162.7 439.3 240.6 512 336 512c97 0 176-75.37 176-168V265.3c28.23-12.36 48-40.46 48-73.25C560 147.8 524.2 112 480 112zM480 216c-13.25 0-24-10.75-24-24S466.7 168 480 168S504 178.7 504 192S493.3 216 480 216z',
			),
		),
		'label'             => __( 'Stethoscope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'sticker-mule'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M561.7 199.6c-1.3 .3 .3 0 0 0zm-6.2-77.4c-7.7-22.3-5.1-7.2-13.4-36.9-1.6-6.5-3.6-14.5-6.2-20-4.4-8.7-4.6-7.5-4.6-9.5 0-5.3 30.7-45.3 19-46.9-5.7-.6-12.2 11.6-20.6 17-8.6 4.2-8 5-10.3 5-2.6 0-5.7-3-6.2-5-2-5.7 1.9-25.9-3.6-25.9-3.6 0-12.3 24.8-17 25.8-5.2 1.3-27.9-11.4-75.1 18-25.3 13.2-86.9 65.2-87 65.3-6.7 4.7-20 4.7-35.5 16-44.4 30.1-109.6 9.4-110.7 9-110.6-26.8-128-15.2-159 11.5-20.8 17.9-23.7 36.5-24.2 38.9-4.2 20.4 5.2 48.3 6.7 64.3 1.8 19.3-2.7 17.7 7.7 98.3 .5 1 4.1 0 5.1 1.5 0 8.4-3.8 12.1-4.1 13-1.5 4.5-1.5 10.5 0 16 2.3 8.2 8.2 37.2 8.2 46.9 0 41.8 .4 44 2.6 49.4 3.9 10 12.5 9.1 17 12 3.1 3.5-.5 8.5 1 12.5 .5 2 3.6 4 6.2 5 9.2 3.6 27 .3 29.9-2.5 1.6-1.5 .5-4.5 3.1-5 5.1 0 10.8-.5 14.4-2.5 5.1-2.5 4.1-6 1.5-10.5-.4-.8-7-13.3-9.8-16-2.1-2-5.1-3-7.2-4.5-5.8-4.9-10.3-19.4-10.3-19.5-4.6-19.4-10.3-46.3-4.1-66.8 4.6-17.2 39.5-87.7 39.6-87.8 4.1-6.5 17-11.5 27.3-7 6 1.9 19.3 22 65.4 30.9 47.9 8.7 97.4-2 112.2-2 2.8 2-1.9 13-.5 38.9 0 26.4-.4 13.7-4.1 29.9-2.2 9.7 3.4 23.2-1.5 46.9-1.4 9.8-9.9 32.7-8.2 43.4 .5 1 1 2 1.5 3.5 .5 4.5 1.5 8.5 4.6 10 7.3 3.6 12-3.5 9.8 11.5-.7 3.1-2.6 12 1.5 15 4.4 3.7 30.6 3.4 36.5 .5 2.6-1.5 1.6-4.5 6.4-7.4 1.9-.9 11.3-.4 11.3-6.5 .3-1.8-9.2-19.9-9.3-20-2.6-3.5-9.2-4.5-11.3-8-6.9-10.1-1.7-52.6 .5-59.4 3-11 5.6-22.4 8.7-32.4 11-42.5 10.3-50.6 16.5-68.3 .8-1.8 6.4-23.1 10.3-29.9 9.3-17 21.7-32.4 33.5-47.4 18-22.9 34-46.9 52-69.8 6.1-7 8.2-13.7 18-8 10.8 5.7 21.6 7 31.9 17 14.6 12.8 10.2 18.2 11.8 22.9 1.5 5 7.7 10.5 14.9 9.5 10.4-2 13-2.5 13.4-2.5 2.6-.5 5.7-5 7.2-8 3.1-5.5 7.2-9 7.2-16.5 0-7.7-.4-2.8-20.6-52.9z',
			),
		),
		'label'             => __( 'Sticker Mule', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stop'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 128v255.1c0 35.35-28.65 64-64 64H64c-35.35 0-64-28.65-64-64V128c0-35.35 28.65-64 64-64H320C355.3 64 384 92.65 384 128z',
			),
		),
		'label'             => __( 'Stop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'stopwatch'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M272 0C289.7 0 304 14.33 304 32C304 49.67 289.7 64 272 64H256V98.45C293.5 104.2 327.7 120 355.7 143L377.4 121.4C389.9 108.9 410.1 108.9 422.6 121.4C435.1 133.9 435.1 154.1 422.6 166.6L398.5 190.8C419.7 223.3 432 262.2 432 304C432 418.9 338.9 512 224 512C109.1 512 16 418.9 16 304C16 200 92.32 113.8 192 98.45V64H176C158.3 64 144 49.67 144 32C144 14.33 158.3 0 176 0L272 0zM248 192C248 178.7 237.3 168 224 168C210.7 168 200 178.7 200 192V320C200 333.3 210.7 344 224 344C237.3 344 248 333.3 248 320V192z',
			),
		),
		'label'             => __( 'Stopwatch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'stopwatch-20'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M276 256C276 249.4 281.4 244 288 244C294.6 244 300 249.4 300 256V352C300 358.6 294.6 364 288 364C281.4 364 276 358.6 276 352V256zM272 0C289.7 0 304 14.33 304 32C304 49.67 289.7 64 272 64H256V98.45C293.5 104.2 327.7 120 355.7 143L377.4 121.4C389.9 108.9 410.1 108.9 422.6 121.4C435.1 133.9 435.1 154.1 422.6 166.6L398.5 190.8C419.7 223.3 432 262.2 432 304C432 418.9 338.9 512 224 512C109.1 512 16 418.9 16 304C16 200 92.32 113.8 192 98.45V64H176C158.3 64 144 49.67 144 32C144 14.33 158.3 0 176 0L272 0zM288 204C259.3 204 236 227.3 236 256V352C236 380.7 259.3 404 288 404C316.7 404 340 380.7 340 352V256C340 227.3 316.7 204 288 204zM172 256.5V258.8C172 262.4 170.7 265.9 168.3 268.6L129.2 312.5C115.5 327.9 108 347.8 108 368.3V384C108 395 116.1 404 128 404H192C203 404 212 395 212 384C212 372.1 203 364 192 364H148.2C149.1 354.8 152.9 346.1 159.1 339.1L198.2 295.2C207.1 285.1 211.1 272.2 211.1 258.8V256.5C211.1 227.5 188.5 204 159.5 204C136.8 204 116.8 218.5 109.6 239.9L109 241.7C105.5 252.2 111.2 263.5 121.7 266.1C132.2 270.5 143.5 264.8 146.1 254.3L147.6 252.6C149.3 247.5 154.1 244 159.5 244C166.4 244 171.1 249.6 171.1 256.5L172 256.5z',
			),
		),
		'label'             => __( 'Stopwatch 20', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'store'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M495.5 223.2C491.6 223.7 487.6 224 483.4 224C457.4 224 434.2 212.6 418.3 195C402.4 212.6 379.2 224 353.1 224C327 224 303.8 212.6 287.9 195C272 212.6 248.9 224 222.7 224C196.7 224 173.5 212.6 157.6 195C141.7 212.6 118.5 224 92.36 224C88.3 224 84.21 223.7 80.24 223.2C24.92 215.8-1.255 150.6 28.33 103.8L85.66 13.13C90.76 4.979 99.87 0 109.6 0H466.4C476.1 0 485.2 4.978 490.3 13.13L547.6 103.8C577.3 150.7 551 215.8 495.5 223.2H495.5zM499.7 254.9C503.1 254.4 508 253.6 512 252.6V448C512 483.3 483.3 512 448 512H128C92.66 512 64 483.3 64 448V252.6C67.87 253.6 71.86 254.4 75.97 254.9L76.09 254.9C81.35 255.6 86.83 256 92.36 256C104.8 256 116.8 254.1 128 250.6V384H448V250.7C459.2 254.1 471.1 256 483.4 256C489 256 494.4 255.6 499.7 254.9L499.7 254.9z',
			),
		),
		'label'             => __( 'Store', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'store-slash'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M94.92 49.09L117.7 13.13C122.8 4.98 131.9 .0007 141.6 .0007H498.4C508.1 .0007 517.2 4.979 522.3 13.13L579.6 103.8C609.3 150.7 583 215.8 527.5 223.2C523.6 223.7 519.6 224 515.4 224C489.4 224 466.2 212.6 450.3 195C434.4 212.6 411.2 224 385.1 224C359 224 335.8 212.6 319.9 195C314.4 201.1 308.1 206.4 301.2 210.7L480 350.9V250.7C491.2 254.1 503.1 256 515.4 256C521 256 526.4 255.6 531.7 254.9L531.7 254.9C535.1 254.4 540 253.6 544 252.6V401.1L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L94.92 49.09zM112.2 223.2C68.36 217.3 42.82 175.1 48.9 134.5L155.3 218.4C145.7 222 135.3 224 124.4 224C120.3 224 116.2 223.7 112.2 223.2V223.2zM160 384H365.5L514.9 501.7C504.8 508.2 492.9 512 480 512H160C124.7 512 96 483.3 96 448V252.6C99.87 253.6 103.9 254.4 107.1 254.9L108.1 254.9C113.3 255.6 118.8 256 124.4 256C136.8 256 148.8 254.1 160 250.6V384z',
			),
		),
		'label'             => __( 'Store Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'strava'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M158.4 0L7 292h89.2l62.2-116.1L220.1 292h88.5zm150.2 292l-43.9 88.2-44.6-88.2h-67.6l112.2 220 111.5-220z',
			),
		),
		'label'             => __( 'Strava', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'street-view'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 64C320 99.35 291.3 128 256 128C220.7 128 192 99.35 192 64C192 28.65 220.7 0 256 0C291.3 0 320 28.65 320 64zM288 160C323.3 160 352 188.7 352 224V272C352 289.7 337.7 304 320 304H318.2L307.2 403.5C305.4 419.7 291.7 432 275.4 432H236.6C220.3 432 206.6 419.7 204.8 403.5L193.8 304H192C174.3 304 160 289.7 160 272V224C160 188.7 188.7 160 224 160H288zM63.27 414.7C60.09 416.3 57.47 417.8 55.33 419.2C51.7 421.6 51.72 426.4 55.34 428.8C64.15 434.6 78.48 440.6 98.33 446.1C137.7 456.1 193.5 464 256 464C318.5 464 374.3 456.1 413.7 446.1C433.5 440.6 447.9 434.6 456.7 428.8C460.3 426.4 460.3 421.6 456.7 419.2C454.5 417.8 451.9 416.3 448.7 414.7C433.4 406.1 409.9 399.8 379.7 394.2C366.6 391.8 358 379.3 360.4 366.3C362.8 353.3 375.3 344.6 388.3 347C420.8 352.9 449.2 361.2 470.3 371.8C480.8 377.1 490.6 383.5 498 391.4C505.6 399.5 512 410.5 512 424C512 445.4 496.5 460.1 482.9 469C468.2 478.6 448.6 486.3 426.4 492.4C381.8 504.7 321.6 512 256 512C190.4 512 130.2 504.7 85.57 492.4C63.44 486.3 43.79 478.6 29.12 469C15.46 460.1 0 445.4 0 424C0 410.5 6.376 399.5 13.96 391.4C21.44 383.5 31.24 377.1 41.72 371.8C62.75 361.2 91.24 352.9 123.7 347C136.7 344.6 149.2 353.3 151.6 366.3C153.1 379.3 145.4 391.8 132.3 394.2C102.1 399.8 78.57 406.1 63.27 414.7H63.27z',
			),
		),
		'label'             => __( 'Street View', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'strikethrough'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M332.2 319.9c17.22 12.17 22.33 26.51 18.61 48.21c-3.031 17.59-10.88 29.34-24.72 36.99c-35.44 19.75-108.5 11.96-186-19.68c-16.34-6.686-35.03 1.156-41.72 17.53s1.188 35.05 17.53 41.71c31.75 12.93 95.69 35.37 157.6 35.37c29.62 0 58.81-5.156 83.72-18.96c30.81-17.09 50.44-45.46 56.72-82.11c3.998-23.27 2.168-42.58-3.488-59.05H332.2zM488 239.9l-176.5-.0309c-15.85-5.613-31.83-10.34-46.7-14.62c-85.47-24.62-110.9-39.05-103.7-81.33c2.5-14.53 10.16-25.96 22.72-34.03c20.47-13.15 64.06-23.84 155.4 .3438c17.09 4.531 34.59-5.654 39.13-22.74c4.531-17.09-5.656-34.59-22.75-39.12c-91.31-24.18-160.7-21.62-206.3 7.654C121.8 73.72 103.6 101.1 98.09 133.1C89.26 184.5 107.9 217.3 137.2 239.9L24 239.9c-13.25 0-24 10.75-24 23.1c0 13.25 10.75 23.1 24 23.1h464c13.25 0 24-10.75 24-23.1C512 250.7 501.3 239.9 488 239.9z',
			),
		),
		'label'             => __( 'Strikethrough', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'stripe'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M165 144.7l-43.3 9.2-.2 142.4c0 26.3 19.8 43.3 46.1 43.3 14.6 0 25.3-2.7 31.2-5.9v-33.8c-5.7 2.3-33.7 10.5-33.7-15.7V221h33.7v-37.8h-33.7zm89.1 51.6l-2.7-13.1H213v153.2h44.3V233.3c10.5-13.8 28.2-11.1 33.9-9.3v-40.8c-6-2.1-26.7-6-37.1 13.1zm92.3-72.3l-44.6 9.5v36.2l44.6-9.5zM44.9 228.3c0-6.9 5.8-9.6 15.1-9.7 13.5 0 30.7 4.1 44.2 11.4v-41.8c-14.7-5.8-29.4-8.1-44.1-8.1-36 0-60 18.8-60 50.2 0 49.2 67.5 41.2 67.5 62.4 0 8.2-7.1 10.9-17 10.9-14.7 0-33.7-6.1-48.6-14.2v40c16.5 7.1 33.2 10.1 48.5 10.1 36.9 0 62.3-15.8 62.3-47.8 0-52.9-67.9-43.4-67.9-63.4zM640 261.6c0-45.5-22-81.4-64.2-81.4s-67.9 35.9-67.9 81.1c0 53.5 30.3 78.2 73.5 78.2 21.2 0 37.1-4.8 49.2-11.5v-33.4c-12.1 6.1-26 9.8-43.6 9.8-17.3 0-32.5-6.1-34.5-26.9h86.9c.2-2.3 .6-11.6 .6-15.9zm-87.9-16.8c0-20 12.3-28.4 23.4-28.4 10.9 0 22.5 8.4 22.5 28.4zm-112.9-64.6c-17.4 0-28.6 8.2-34.8 13.9l-2.3-11H363v204.8l44.4-9.4 .1-50.2c6.4 4.7 15.9 11.2 31.4 11.2 31.8 0 60.8-23.2 60.8-79.6 .1-51.6-29.3-79.7-60.5-79.7zm-10.6 122.5c-10.4 0-16.6-3.8-20.9-8.4l-.3-66c4.6-5.1 11-8.8 21.2-8.8 16.2 0 27.4 18.2 27.4 41.4 .1 23.9-10.9 41.8-27.4 41.8zm-126.7 33.7h44.6V183.2h-44.6z',
			),
		),
		'label'             => __( 'Stripe', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'brands', 'brands', 'social', 'social', 'social' ),
	),
	'stripe-s'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M155.3 154.6c0-22.3 18.6-30.9 48.4-30.9 43.4 0 98.5 13.3 141.9 36.7V26.1C298.3 7.2 251.1 0 203.8 0 88.1 0 11 60.4 11 161.4c0 157.9 216.8 132.3 216.8 200.4 0 26.4-22.9 34.9-54.7 34.9-47.2 0-108.2-19.5-156.1-45.5v128.5a396.1 396.1 0 0 0 156 32.4c118.6 0 200.3-51 200.3-153.6 0-170.2-218-139.7-218-203.9z',
			),
		),
		'label'             => __( 'Stripe S', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'brands', 'brands', 'social', 'social', 'social' ),
	),
	'stroopwafel'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M188.1 210.8l-45.25 45.25l45.25 45.25l45.25-45.25L188.1 210.8zM301.2 188.1l-45.25-45.25L210.7 188.1l45.25 45.25L301.2 188.1zM210.7 323.9l45.25 45.25l45.25-45.25L255.1 278.6L210.7 323.9zM256 16c-132.5 0-240 107.5-240 240s107.5 240 240 240s240-107.5 240-240S388.5 16 256 16zM442.6 295.6l-11.25 11.25c-3.125 3.125-8.25 3.125-11.38 0L391.8 278.6l-45.25 45.25l34 33.88l16.88-16.88c3.125-3.125 8.251-3.125 11.38 0l11.25 11.25c3.125 3.125 3.125 8.25 0 11.38l-16.88 16.88l16.88 17c3.125 3.125 3.125 8.25 0 11.38l-11.25 11.25c-3.125 3.125-8.251 3.125-11.38 0l-16.88-17l-17 17c-3.125 3.125-8.25 3.125-11.38 0l-11.25-11.25c-3.125-3.125-3.125-8.25 0-11.38l17-17l-34-33.88l-45.25 45.25l28.25 28.25c3.125 3.125 3.125 8.25 0 11.38l-11.25 11.25c-3.125 3.125-8.25 3.125-11.38 0l-28.25-28.25L227.7 442.6c-3.125 3.125-8.25 3.125-11.38 0l-11.25-11.25c-3.125-3.125-3.125-8.25 0-11.38l28.25-28.25l-45.25-45.25l-33.88 34l16.88 16.88c3.125 3.125 3.125 8.25 0 11.38l-11.25 11.25c-3.125 3.125-8.25 3.125-11.38 0L131.6 403.1l-16.1 16.88c-3.125 3.125-8.25 3.125-11.38 0l-11.25-11.25c-3.125-3.125-3.125-8.25 0-11.38l17-16.88l-17-17c-3.125-3.125-3.125-8.25 0-11.38l11.25-11.25c3.125-3.125 8.25-3.125 11.38 0l16.1 17l33.88-34L120.2 278.6l-28.25 28.25c-3.125 3.125-8.25 3.125-11.38 0L69.37 295.6c-3.125-3.125-3.125-8.25 0-11.38l28.25-28.25l-28.25-28.25c-3.125-3.125-3.125-8.25 0-11.38l11.25-11.25c3.125-3.125 8.25-3.125 11.38 0l28.25 28.25l45.25-45.25l-34-34l-16.88 17c-3.125 3.125-8.25 3.125-11.38 0l-11.25-11.25c-3.125-3.125-3.125-8.25 0-11.38l16.88-17l-16.88-16.88c-3.125-3.125-3.125-8.25 0-11.38l11.25-11.25c3.125-3.125 8.25-3.125 11.38 0l16.88 17l17-17c3.125-3.125 8.25-3.125 11.38 0l11.25 11.25c3.125 3.125 3.125 8.25 0 11.38l-17 16.88l34 34l45.25-45.25L205.1 92c-3.125-3.125-3.125-8.25 0-11.38l11.25-11.25c3.125-3.125 8.25-3.125 11.38 0l28.25 28.25l28.25-28.25c3.125-3.125 8.25-3.125 11.38 0l11.25 11.25c3.125 3.125 3.125 8.25 0 11.38l-28.25 28.25l45.25 45.25l34-34l-17-16.88c-3.125-3.125-3.125-8.25 0-11.38l11.25-11.25c3.125-3.125 8.25-3.125 11.38 0l17 16.88l16.88-16.88c3.125-3.125 8.251-3.125 11.38 0l11.25 11.25c3.125 3.125 3.125 8.25 0 11.38l-17 16.88l17 17c3.125 3.125 3.125 8.25 0 11.38l-11.25 11.25c-3.125 3.125-8.251 3.125-11.38 0l-16.88-17l-34 34l45.25 45.25l28.25-28.25c3.125-3.125 8.25-3.125 11.38 0l11.25 11.25c3.125 3.125 3.125 8.25 0 11.38l-28.25 28.25l28.25 28.25C445.7 287.4 445.7 292.5 442.6 295.6zM278.6 256l45.25 45.25l45.25-45.25l-45.25-45.25L278.6 256z',
			),
		),
		'label'             => __( 'Stroopwafel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'studiovinari'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480.3 187.7l4.2 28v28l-25.1 44.1-39.8 78.4-56.1 67.5-79.1 37.8-17.7 24.5-7.7 12-9.6 4s17.3-63.6 19.4-63.6c2.1 0 20.3 .7 20.3 .7l66.7-38.6-92.5 26.1-55.9 36.8-22.8 28-6.6 1.4 20.8-73.6 6.9-5.5 20.7 12.9 88.3-45.2 56.8-51.5 14.8-68.4-125.4 23.3 15.2-18.2-173.4-53.3 81.9-10.5-166-122.9L133.5 108 32.2 0l252.9 126.6-31.5-38L378 163 234.7 64l18.7 38.4-49.6-18.1L158.3 0l194.6 122L310 66.2l108 96.4 12-8.9-21-16.4 4.2-37.8L451 89.1l29.2 24.7 11.5 4.2-7 6.2 8.5 12-13.1 7.4-10.3 20.2 10.5 23.9z',
			),
		),
		'label'             => __( 'Studio Vinari', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stumbleupon'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.9 266v69.7c0 62.1-50.3 112.4-112.4 112.4-61.8 0-112.4-49.8-112.4-111.3v-70.2l34.3 16 51.1-15.2V338c0 14.7 12 26.5 26.7 26.5S417 352.7 417 338v-72h85.9zm-224.7-58.2l34.3 16 51.1-15.2V173c0-60.5-51.1-109-112.1-109-60.8 0-112.1 48.2-112.1 108.2v162.4c0 14.9-12 26.7-26.7 26.7S86 349.5 86 334.6V266H0v69.7C0 397.7 50.3 448 112.4 448c61.6 0 112.4-49.5 112.4-110.8V176.9c0-14.7 12-26.7 26.7-26.7s26.7 12 26.7 26.7v30.9z',
			),
		),
		'label'             => __( 'StumbleUpon Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'stumbleupon-circle'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 177.5c-9.8 0-17.8 8-17.8 17.8v106.9c0 40.9-33.9 73.9-74.9 73.9-41.4 0-74.9-33.5-74.9-74.9v-46.5h57.3v45.8c0 10 8 17.8 17.8 17.8s17.8-7.9 17.8-17.8V200.1c0-40 34.2-72.1 74.7-72.1 40.7 0 74.7 32.3 74.7 72.6v23.7l-34.1 10.1-22.9-10.7v-20.6c.1-9.6-7.9-17.6-17.7-17.6zm167.6 123.6c0 41.4-33.5 74.9-74.9 74.9-41.2 0-74.9-33.2-74.9-74.2V263l22.9 10.7 34.1-10.1v47.1c0 9.8 8 17.6 17.8 17.6s17.8-7.9 17.8-17.6v-48h57.3c-.1 45.9-.1 46.4-.1 46.4z',
			),
		),
		'label'             => __( 'StumbleUpon Circle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'subscript'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 448v-128c0-11.09-5.75-21.38-15.17-27.22c-9.422-5.875-21.25-6.344-31.14-1.406l-32 16c-15.81 7.906-22.22 27.12-14.31 42.94c5.609 11.22 16.89 17.69 28.62 17.69v80c-17.67 0-32 14.31-32 32s14.33 32 32 32h64c17.67 0 32-14.31 32-32S497.7 448 480 448zM320 128c17.67 0 32-14.31 32-32s-14.33-32-32-32l-32-.0024c-10.44 0-20.23 5.101-26.22 13.66L176 200.2L90.22 77.67C84.23 69.11 74.44 64.01 64 64.01L32 64.01c-17.67 0-32 14.32-32 32s14.33 32 32 32h15.34L136.9 256l-89.6 128H32c-17.67 0-32 14.31-32 32s14.33 31.1 32 31.1l32-.0024c10.44 0 20.23-5.086 26.22-13.65L176 311.8l85.78 122.5C267.8 442.9 277.6 448 288 448l32 .0024c17.67 0 32-14.31 32-31.1s-14.33-32-32-32h-15.34l-89.6-128l89.6-127.1H320z',
			),
		),
		'label'             => __( 'Subscript', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'suitcase'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 144v288C0 457.6 22.41 480 48 480H96V96H48C22.41 96 0 118.4 0 144zM336 0h-160C150.4 0 128 22.41 128 48V480h256V48C384 22.41 361.6 0 336 0zM336 96h-160V48h160V96zM464 96H416v384h48c25.59 0 48-22.41 48-48v-288C512 118.4 489.6 96 464 96z',
			),
		),
		'label'             => __( 'Suitcase', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'suitcase-medical'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 144v288C0 457.6 22.41 480 48 480H64V96H48C22.41 96 0 118.4 0 144zM464 96H448v384h16c25.59 0 48-22.41 48-48v-288C512 118.4 489.6 96 464 96zM384 48C384 22.41 361.6 0 336 0h-160C150.4 0 128 22.41 128 48V96H96v384h320V96h-32V48zM176 48h160V96h-160V48zM352 312C352 316.4 348.4 320 344 320H288v56c0 4.375-3.625 8-8 8h-48C227.6 384 224 380.4 224 376V320H168C163.6 320 160 316.4 160 312v-48C160 259.6 163.6 256 168 256H224V200C224 195.6 227.6 192 232 192h48C284.4 192 288 195.6 288 200V256h56C348.4 256 352 259.6 352 264V312z',
			),
		),
		'label'             => __( 'Suitcase Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'suitcase-rolling'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M368 128h-47.95l.0123-80c0-26.5-21.5-48-48-48h-96c-26.5 0-48 21.5-48 48L128 128H80C53.5 128 32 149.5 32 176v256C32 458.5 53.5 480 80 480h16.05L96 496C96 504.9 103.1 512 112 512h32C152.9 512 160 504.9 160 496L160.1 480h128L288 496c0 8.875 7.125 16 16 16h32c8.875 0 16-7.125 16-16l.0492-16H368c26.5 0 48-21.5 48-48v-256C416 149.5 394.5 128 368 128zM176.1 48h96V128h-96V48zM336 384h-224C103.2 384 96 376.8 96 368C96 359.2 103.2 352 112 352h224c8.801 0 16 7.199 16 16C352 376.8 344.8 384 336 384zM336 256h-224C103.2 256 96 248.8 96 240C96 231.2 103.2 224 112 224h224C344.8 224 352 231.2 352 240C352 248.8 344.8 256 336 256z',
			),
		),
		'label'             => __( 'Suitcase Rolling', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'sun'                                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 159.1c-53.02 0-95.1 42.98-95.1 95.1S202.1 351.1 256 351.1s95.1-42.98 95.1-95.1S309 159.1 256 159.1zM509.3 347L446.1 255.1l63.15-91.01c6.332-9.125 1.104-21.74-9.826-23.72l-109-19.7l-19.7-109c-1.975-10.93-14.59-16.16-23.72-9.824L256 65.89L164.1 2.736c-9.125-6.332-21.74-1.107-23.72 9.824L121.6 121.6L12.56 141.3C1.633 143.2-3.596 155.9 2.736 164.1L65.89 256l-63.15 91.01c-6.332 9.125-1.105 21.74 9.824 23.72l109 19.7l19.7 109c1.975 10.93 14.59 16.16 23.72 9.824L256 446.1l91.01 63.15c9.127 6.334 21.75 1.107 23.72-9.822l19.7-109l109-19.7C510.4 368.8 515.6 356.1 509.3 347zM256 383.1c-70.69 0-127.1-57.31-127.1-127.1c0-70.69 57.31-127.1 127.1-127.1s127.1 57.3 127.1 127.1C383.1 326.7 326.7 383.1 256 383.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M505.2 324.8l-47.73-68.78l47.75-68.81c7.359-10.62 8.797-24.12 3.844-36.06c-4.969-11.94-15.52-20.44-28.22-22.72l-82.39-14.88l-14.89-82.41c-2.281-12.72-10.76-23.25-22.69-28.22c-11.97-4.936-25.42-3.498-36.12 3.844L256 54.49L187.2 6.709C176.5-.6016 163.1-2.039 151.1 2.896c-11.92 4.971-20.4 15.5-22.7 28.19l-14.89 82.44L31.15 128.4C18.42 130.7 7.854 139.2 2.9 151.2C-2.051 163.1-.5996 176.6 6.775 187.2l47.73 68.78l-47.75 68.81c-7.359 10.62-8.795 24.12-3.844 36.06c4.969 11.94 15.52 20.44 28.22 22.72l82.39 14.88l14.89 82.41c2.297 12.72 10.78 23.25 22.7 28.22c11.95 4.906 25.44 3.531 36.09-3.844L256 457.5l68.83 47.78C331.3 509.7 338.8 512 346.3 512c4.906 0 9.859-.9687 14.56-2.906c11.92-4.969 20.4-15.5 22.7-28.19l14.89-82.44l82.37-14.88c12.73-2.281 23.3-10.78 28.25-22.75C514.1 348.9 512.6 335.4 505.2 324.8zM456.8 339.2l-99.61 18l-18 99.63L256 399.1L172.8 456.8l-18-99.63l-99.61-18L112.9 255.1L55.23 172.8l99.61-18l18-99.63L256 112.9l83.15-57.75l18.02 99.66l99.61 18L399.1 255.1L456.8 339.2zM256 143.1c-61.85 0-111.1 50.14-111.1 111.1c0 61.85 50.15 111.1 111.1 111.1s111.1-50.14 111.1-111.1C367.1 194.1 317.8 143.1 256 143.1zM256 319.1c-35.28 0-63.99-28.71-63.99-63.99S220.7 192 256 192s63.99 28.71 63.99 63.1S291.3 319.1 256 319.1z',
			),
		),
		'label'             => __( 'Sun', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'sun-plant-wilt'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 160C192 177.7 177.7 192 160 192C142.3 192 128 177.7 128 160C128 142.3 142.3 128 160 128C177.7 128 192 142.3 192 160zM160 0C166.3 0 172 3.708 174.6 9.467L199.4 64.89L256.1 43.23C262 40.98 268.7 42.4 273.1 46.86C277.6 51.32 279 57.99 276.8 63.88L255.1 120.6L310.5 145.4C316.3 147.1 320 153.7 320 160C320 166.3 316.3 172 310.5 174.6L255.1 199.4L276.8 256.1C279 262 277.6 268.7 273.1 273.1C268.7 277.6 262 279 256.1 276.8L199.4 255.1L174.6 310.5C172 316.3 166.3 320 160 320C153.7 320 147.1 316.3 145.4 310.5L120.6 255.1L63.88 276.8C57.99 279 51.32 277.6 46.86 273.1C42.4 268.7 40.98 262 43.23 256.1L64.89 199.4L9.467 174.6C3.708 172 0 166.3 0 160C0 153.7 3.708 147.1 9.467 145.4L64.89 120.6L43.23 63.88C40.98 57.99 42.4 51.32 46.86 46.86C51.32 42.4 57.99 40.98 63.88 43.23L120.6 64.89L145.4 9.467C147.1 3.708 153.7 0 160 0V0zM160 224C195.3 224 224 195.3 224 160C224 124.7 195.3 96 160 96C124.7 96 96 124.7 96 160C96 195.3 124.7 224 160 224zM504 448H608C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 .0003 497.7 .0003 480C.0003 462.3 14.33 448 32 448H456V272C456 254.3 441.7 240 424 240C406.3 240 392 254.3 392 272V293.4C406.8 301.1 416 316.5 416 338C416 357.3 394.5 390.1 368 416C341.5 390.1 320 357.6 320 338C320 316.5 329.2 301.1 344 293.4V271.1C344 227.8 379.8 191.1 424 191.1C435.4 191.1 446.2 194.4 456 198.7V175.1C456 131.8 491.8 95.1 536 95.1C580.2 95.1 616 131.8 616 175.1V229.4C630.8 237.1 640 252.5 640 274C640 293.3 618.5 326.1 592 352C565.5 326.1 544 293.6 544 274C544 252.5 553.2 237.1 568 229.4V175.1C568 158.3 553.7 143.1 536 143.1C518.3 143.1 504 158.3 504 175.1V448z',
			),
		),
		'label'             => __( 'Sun Plant Wilt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'superpowers'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 32c-83.3 11-166.8 22-250 33-92 12.5-163.3 86.7-169 180-3.3 55.5 18 109.5 57.8 148.2L0 480c83.3-11 166.5-22 249.8-33 91.8-12.5 163.3-86.8 168.7-179.8 3.5-55.5-18-109.5-57.7-148.2L448 32zm-79.7 232.3c-4.2 79.5-74 139.2-152.8 134.5-79.5-4.7-140.7-71-136.3-151 4.5-79.2 74.3-139.3 153-134.5 79.3 4.7 140.5 71 136.1 151z',
			),
		),
		'label'             => __( 'Superpowers', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'superscript'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 160v-128c0-11.09-5.75-21.37-15.17-27.22C455.4-1.048 443.6-1.548 433.7 3.39l-32 16c-15.81 7.906-22.22 27.12-14.31 42.94C392.1 73.55 404.3 80.01 416 80.01v80c-17.67 0-32 14.31-32 32s14.33 32 32 32h64c17.67 0 32-14.31 32-32S497.7 160 480 160zM320 128c17.67 0 32-14.31 32-32s-14.33-32-32-32l-32-.0024c-10.44 0-20.23 5.101-26.22 13.66L176 200.2L90.22 77.67C84.23 69.11 74.44 64.01 64 64.01L32 64.01c-17.67 0-32 14.32-32 32s14.33 32 32 32h15.34L136.9 256l-89.6 128H32c-17.67 0-32 14.31-32 32s14.33 31.1 32 31.1l32-.0024c10.44 0 20.23-5.086 26.22-13.65L176 311.8l85.78 122.5C267.8 442.9 277.6 448 288 448l32 .0024c17.67 0 32-14.31 32-31.1s-14.33-32-32-32h-15.34l-89.6-128l89.6-127.1H320z',
			),
		),
		'label'             => __( 'Superscript', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'supple'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 262.5c0 64.1-109 116.1-243.5 116.1-24.8 0-48.6-1.8-71.1-5 7.7 .4 15.5 .6 23.4 .6 134.5 0 243.5-56.9 243.5-127.1 0-29.4-19.1-56.4-51.2-78 60 21.1 98.9 55.1 98.9 93.4zM47.7 227.9c-.1-70.2 108.8-127.3 243.3-127.6 7.9 0 15.6 .2 23.3 .5-22.5-3.2-46.3-4.9-71-4.9C108.8 96.3-.1 148.5 0 212.6c.1 38.3 39.1 72.3 99.3 93.3-32.3-21.5-51.5-48.6-51.6-78zm60.2 39.9s10.5 13.2 29.3 13.2c17.9 0 28.4-11.5 28.4-25.1 0-28-40.2-25.1-40.2-39.7 0-5.4 5.3-9.1 12.5-9.1 5.7 0 11.3 2.6 11.3 6.6v3.9h14.2v-7.9c0-12.1-15.4-16.8-25.4-16.8-16.5 0-28.5 10.2-28.5 24.1 0 26.6 40.2 25.4 40.2 39.9 0 6.6-5.8 10.1-12.3 10.1-11.9 0-20.7-10.1-20.7-10.1l-8.8 10.9zm120.8-73.6v54.4c0 11.3-7.1 17.8-17.8 17.8-10.7 0-17.8-6.5-17.8-17.7v-54.5h-15.8v55c0 18.9 13.4 31.9 33.7 31.9 20.1 0 33.4-13 33.4-31.9v-55h-15.7zm34.4 85.4h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.8-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5.1 14.7-14 14.7h-12.6zm57 43h15.8v-29.5h15.5c16 0 27.2-11.5 27.2-28.1s-11.2-27.8-27.2-27.8h-39.1v13.4h7.8v72zm15.7-43v-29.1h12.9c8.7 0 13.7 5.7 13.7 14.4 0 8.9-5 14.7-14 14.7h-12.6zm57.1 34.8c0 5.8 2.4 8.2 8.2 8.2h37.6c5.8 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-18.6c-1.7 0-2.6-1-2.6-2.6v-61.2c0-5.7-2.4-8.2-8.2-8.2H401v13.4h5.2c1.7 0 2.6 1 2.6 2.6v61.2zm63.4 0c0 5.8 2.4 8.2 8.2 8.2H519c5.7 0 8.2-2.4 8.2-8.2v-13h-14.3v5.2c0 1.7-1 2.6-2.6 2.6h-19.7c-1.7 0-2.6-1-2.6-2.6v-20.3h27.7v-13.4H488v-22.4h19.2c1.7 0 2.6 1 2.6 2.6v5.2H524v-13c0-5.7-2.5-8.2-8.2-8.2h-51.6v13.4h7.8v63.9zm58.9-76v5.9h1.6v-5.9h2.7v-1.2h-7v1.2h2.7zm5.7-1.2v7.1h1.5v-5.7l2.3 5.7h1.3l2.3-5.7v5.7h1.5v-7.1h-2.3l-2.1 5.1-2.1-5.1h-2.4z',
			),
		),
		'label'             => __( 'Supple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'suse'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M471.1 102.7s-.3 18.3-.3 20.3c-9.1-3-74.4-24.1-135.7-26.3-51.9-1.8-122.8-4.3-223 57.3-19.4 12.4-73.9 46.1-99.6 109.7C7 277-.12 307 7 335.1a111 111 0 0 0 16.5 35.7c17.4 25 46.6 41.6 78.1 44.4 44.4 3.9 78.1-16 90-53.3 8.2-25.8 0-63.6-31.5-82.9-25.6-15.7-53.3-12.1-69.2-1.6-13.9 9.2-21.8 23.5-21.6 39.2 .3 27.8 24.3 42.6 41.5 42.6a49 49 0 0 0 15.8-2.7c6.5-1.8 13.3-6.5 13.3-14.9 0-12.1-11.6-14.8-16.8-13.9-2.9 .5-4.5 2-11.8 2.4-2-.2-12-3.1-12-14V316c.2-12.3 13.2-18 25.5-16.9 32.3 2.8 47.7 40.7 28.5 65.7-18.3 23.7-76.6 23.2-99.7-20.4-26-49.2 12.7-111.2 87-98.4 33.2 5.7 83.6 35.5 102.4 104.3h45.9c-5.7-17.6-8.9-68.3 42.7-68.3 56.7 0 63.9 39.9 79.8 68.3H460c-12.8-18.3-21.7-38.7-18.9-55.8 5.6-33.8 39.7-18.4 82.4-17.4 66.5 .4 102.1-27 103.1-28 3.7-3.1 6.5-15.8 7-17.7 1.3-5.1-3.2-2.4-3.2-2.4-8.7 5.2-30.5 15.2-50.9 15.6-25.3 .5-76.2-25.4-81.6-28.2-.3-.4 .1 1.2-11-25.5 88.4 58.3 118.3 40.5 145.2 21.7 .8-.6 4.3-2.9 3.6-5.7-13.8-48.1-22.4-62.7-34.5-69.6-37-21.6-125-34.7-129.2-35.3 .1-.1-.9-.3-.9 .7zm60.4 72.8a37.54 37.54 0 0 1 38.9-36.3c33.4 1.2 48.8 42.3 24.4 65.2-24.2 22.7-64.4 4.6-63.3-28.9zm38.6-25.3a26.27 26.27 0 1 0 25.4 27.2 26.19 26.19 0 0 0 -25.4-27.2zm4.3 28.8c-15.4 0-15.4-15.6 0-15.6s15.4 15.64 0 15.64z',
			),
		),
		'label'             => __( 'Suse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'swatchbook'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 32C0 14.33 14.33 0 32 0H160C177.7 0 192 14.33 192 32V416C192 469 149 512 96 512C42.98 512 0 469 0 416V32zM128 64H64V128H128V64zM64 256H128V192H64V256zM96 440C109.3 440 120 429.3 120 416C120 402.7 109.3 392 96 392C82.75 392 72 402.7 72 416C72 429.3 82.75 440 96 440zM224 416V154L299.4 78.63C311.9 66.13 332.2 66.13 344.7 78.63L435.2 169.1C447.7 181.6 447.7 201.9 435.2 214.4L223.6 425.9C223.9 422.7 224 419.3 224 416V416zM374.8 320H480C497.7 320 512 334.3 512 352V480C512 497.7 497.7 512 480 512H182.8L374.8 320z',
			),
		),
		'label'             => __( 'Swatchbook', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'swift'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 156.1c0-4.51-.08-9-.2-13.52a196.3 196.3 0 0 0 -2.58-29.42 99.62 99.62 0 0 0 -9.22-28A94.08 94.08 0 0 0 394.8 44a99.17 99.17 0 0 0 -28-9.22 195 195 0 0 0 -29.43-2.59c-4.51-.12-9-.17-13.52-.2H124.1c-4.51 0-9 .08-13.52 .2-2.45 .07-4.91 .15-7.37 .27a171.7 171.7 0 0 0 -22.06 2.32 103.1 103.1 0 0 0 -21.21 6.1q-3.46 1.45-6.81 3.12a94.66 94.66 0 0 0 -18.39 12.32c-1.88 1.61-3.69 3.28-5.43 5A93.86 93.86 0 0 0 12 85.17a99.45 99.45 0 0 0 -9.22 28 196.3 196.3 0 0 0 -2.54 29.4c-.13 4.51-.18 9-.21 13.52v199.8c0 4.51 .08 9 .21 13.51a196.1 196.1 0 0 0 2.58 29.42 99.3 99.3 0 0 0 9.22 28A94.31 94.31 0 0 0 53.17 468a99.47 99.47 0 0 0 28 9.21 195 195 0 0 0 29.43 2.59c4.5 .12 9 .17 13.52 .2H323.9c4.51 0 9-.08 13.52-.2a196.6 196.6 0 0 0 29.44-2.59 99.57 99.57 0 0 0 28-9.21A94.22 94.22 0 0 0 436 426.8a99.3 99.3 0 0 0 9.22-28 194.8 194.8 0 0 0 2.59-29.42c.12-4.5 .17-9 .2-13.51V172.1c-.01-5.35-.01-10.7-.01-16.05zm-69.88 241c-20-38.93-57.23-29.27-76.31-19.47-1.72 1-3.48 2-5.25 3l-.42 .25c-39.5 21-92.53 22.54-145.9-.38A234.6 234.6 0 0 1 45 290.1a230.6 230.6 0 0 0 39.17 23.37c56.36 26.4 113 24.49 153 0-57-43.85-104.6-101-141.1-147.2a197.1 197.1 0 0 1 -18.78-25.9c43.7 40 112.7 90.22 137.5 104.1-52.57-55.49-98.89-123.9-96.72-121.7 82.79 83.42 159.2 130.6 159.2 130.6 2.88 1.58 5 2.85 6.73 4a127.4 127.4 0 0 0 4.16-12.47c13.22-48.33-1.66-103.6-35.31-149.2C329.6 141.8 375 229.3 356.4 303.4c-.44 1.73-.95 3.4-1.44 5.09 38.52 47.4 28.04 98.17 23.13 88.59z',
			),
		),
		'label'             => __( 'Swift', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'symfony'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm133.7 143.5c-11.47 .41-19.4-6.45-19.77-16.87-.27-9.18 6.68-13.44 6.53-18.85-.23-6.55-10.16-6.82-12.87-6.67-39.78 1.29-48.59 57-58.89 113.8 21.43 3.15 36.65-.72 45.14-6.22 12-7.75-3.34-15.72-1.42-24.56 4-18.16 32.55-19 32 5.3-.36 17.86-25.92 41.81-77.6 35.7-10.76 59.52-18.35 115-58.2 161.7-29 34.46-58.4 39.82-71.58 40.26-24.65 .85-41-12.31-41.58-29.84-.56-17 14.45-26.26 24.31-26.59 21.89-.75 30.12 25.67 14.88 34-12.09 9.71 .11 12.61 2.05 12.55 10.42-.36 17.34-5.51 22.18-9 24-20 33.24-54.86 45.35-118.3 8.19-49.66 17-78 18.23-82-16.93-12.75-27.08-28.55-49.85-34.72-15.61-4.23-25.12-.63-31.81 7.83-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62-5.06 29.93-40.72 52.9-82.88 39.94-36-11.11-42.7-36.56-38.38-50.62 7.51-24.15 42.36-11.72 34.62 13.6-2.79 8.6-4.92 8.68-6.28 13.07-4.56 14.77 41.85 28.4 51-1.39 4.47-14.52-5.3-21.71-22.25-39.85-28.47-31.75-16-65.49 2.95-79.67C204.2 140.1 251.9 197 262 205.3c37.17-109 100.5-105.5 102.4-105.5 25.16-.81 44.19 10.59 44.83 28.65 .25 7.69-4.17 22.59-19.52 23.13z',
			),
		),
		'label'             => __( 'Symfony', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'synagogue'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M309.8 3.708C315.7-1.236 324.3-1.236 330.2 3.708L451.2 104.5C469.5 119.7 480 142.2 480 165.1V512H384V384C384 348.7 355.3 320 320 320C284.7 320 256 348.7 256 384V512H160V165.1C160 142.2 170.5 119.7 188.8 104.5L309.8 3.708zM326.1 124.3C323.9 118.9 316.1 118.9 313 124.3L297.2 152.4L264.9 152.1C258.7 152.1 254.8 158.8 257.9 164.2L274.3 191.1L257.9 219.8C254.8 225.2 258.7 231.9 264.9 231.9L297.2 231.6L313 259.7C316.1 265.1 323.9 265.1 326.1 259.7L342.8 231.6L375.1 231.9C381.3 231.9 385.2 225.2 382.1 219.8L365.7 191.1L382.1 164.2C385.2 158.8 381.3 152.1 375.1 152.1L342.8 152.4L326.1 124.3zM512 244.5L540.1 213.3C543.1 209.9 547.5 208 552 208C556.5 208 560.9 209.9 563.9 213.3L627.7 284.2C635.6 292.1 640 304.4 640 316.3V448C640 483.3 611.3 512 576 512H512V244.5zM128 244.5V512H64C28.65 512 0 483.3 0 448V316.3C0 304.4 4.389 292.1 12.32 284.2L76.11 213.3C79.14 209.9 83.46 208 88 208C92.54 208 96.86 209.9 99.89 213.3L128 244.5z',
			),
		),
		'label'             => __( 'Synagogue', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'syringe'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M504.1 71.03l-64-64c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94L422.1 56L384 94.06l-55.03-55.03c-9.375-9.375-24.56-9.375-33.94 0c-8.467 8.467-8.873 21.47-2.047 30.86l149.1 149.1C446.3 222.1 451.1 224 456 224c6.141 0 12.28-2.344 16.97-7.031c9.375-9.375 9.375-24.56 0-33.94L417.9 128L456 89.94l15.03 15.03C475.7 109.7 481.9 112 488 112s12.28-2.344 16.97-7.031C514.3 95.59 514.3 80.41 504.1 71.03zM208.8 154.1l58.56 58.56c6.25 6.25 6.25 16.38 0 22.62C264.2 238.4 260.1 240 256 240S247.8 238.4 244.7 235.3L186.1 176.8L144.8 218.1l58.56 58.56c6.25 6.25 6.25 16.38 0 22.62C200.2 302.4 196.1 304 192 304S183.8 302.4 180.7 299.3L122.1 240.8L82.75 280.1C70.74 292.1 64 308.4 64 325.4v88.68l-56.97 56.97c-9.375 9.375-9.375 24.56 0 33.94C11.72 509.7 17.86 512 24 512s12.28-2.344 16.97-7.031L97.94 448h88.69c16.97 0 33.25-6.744 45.26-18.75l187.6-187.6l-149.1-149.1L208.8 154.1z',
			),
		),
		'label'             => __( 'Syringe', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	't'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 64.01c0 17.67-14.33 32-32 32h-128v352c0 17.67-14.33 31.99-32 31.99s-32-14.32-32-31.99v-352H32c-17.67 0-32-14.33-32-32s14.33-32 32-32h320C369.7 32.01 384 46.34 384 64.01z',
			),
		),
		'label'             => __( 'T', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'table'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM224 256V160H64V256H224zM64 320V416H224V320H64zM288 416H448V320H288V416zM448 256V160H288V256H448z',
			),
		),
		'label'             => __( 'Table', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'table-cells'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM152 96H64V160H152V96zM208 160H296V96H208V160zM448 96H360V160H448V96zM64 288H152V224H64V288zM296 224H208V288H296V224zM360 288H448V224H360V288zM152 352H64V416H152V352zM208 416H296V352H208V416zM448 352H360V416H448V352z',
			),
		),
		'label'             => __( 'Table Cells', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'table-cells-large'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM448 96H288V224H448V96zM448 288H288V416H448V288zM224 224V96H64V224H224zM64 416H224V288H64V416z',
			),
		),
		'label'             => __( 'Table Cells Large', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'table-columns'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM64 416H224V160H64V416zM448 160H288V416H448V160z',
			),
		),
		'label'             => __( 'Table Columns', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'table-list'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM64 160H128V96H64V160zM448 96H192V160H448V96zM64 288H128V224H64V288zM448 224H192V288H448V224zM64 416H128V352H64V416zM448 352H192V416H448V352z',
			),
		),
		'label'             => __( 'Table List', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'table-tennis-paddle-ball'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 287.1c27.99 0 53.68 9.254 74.76 24.51c14.03-29.82 21.06-62.13 21.06-94.43c0-103.1-79.37-218.1-216.5-218.1c-59.94 0-120.4 23.71-165.5 68.95l-54.66 54.8C73.61 125.3 72.58 126.1 71.14 128.5l230.7 230.7C322.8 317.2 365.8 287.1 416 287.1zM290.3 392.1l-238.6-238.6C38.74 176.2 32.3 199.4 32.3 221.9c0 30.53 11.71 59.94 34.29 82.58l36.6 36.7l-92.38 81.32c-7.177 6.255-10.81 15.02-10.81 23.81c0 8.027 3.032 16.07 9.164 22.24l34.05 34.2c6.145 6.16 14.16 9.205 22.15 9.205c8.749 0 17.47-3.649 23.7-10.86l81.03-92.85l35.95 36.04c23.62 23.68 54.41 35.23 85.37 35.23c4.532 0 9.205-.2677 13.72-.7597c-10.56-18.61-17.12-39.89-17.12-62.81C288 408.1 288.1 400.5 290.3 392.1zM415.1 320c-52.99 0-95.99 42.1-95.99 95.1c0 52.1 42.99 95.99 95.99 95.99c52.1 0 95.99-42.1 95.99-95.99C511.1 363 468.1 320 415.1 320z',
			),
		),
		'label'             => __( 'Table Tennis Paddle Ball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'tablet'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64C448 28.65 419.3 0 384 0zM288 447.1C288 456.8 280.8 464 272 464H175.1C167.2 464 160 456.8 160 448S167.2 432 175.1 432h96C280.8 432 288 439.2 288 447.1z',
			),
		),
		'label'             => __( 'Tablet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'tablet-button'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V64C448 28.65 419.3 0 384 0zM224 464c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S241.8 464 224 464z',
			),
		),
		'label'             => __( 'Tablet Button', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'tablet-screen-button'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 .0001H64c-35.35 0-64 28.65-64 64v384c0 35.35 28.65 63.1 64 63.1h320c35.35 0 64-28.65 64-63.1v-384C448 28.65 419.3 .0001 384 .0001zM224 480c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S241.8 480 224 480zM384 384H64v-320h320V384z',
			),
		),
		'label'             => __( 'Tablet Screen Button', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'tablets'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M159.1 191.1c-81.1 0-147.5 58.51-159.9 134.8C-.7578 331.5 3.367 336 8.365 336h303.3c4.998 0 8.996-4.5 8.248-9.25C307.4 250.5 241.1 191.1 159.1 191.1zM311.5 368H8.365c-4.998 0-9.123 4.5-8.248 9.25C12.49 453.5 78.88 512 159.1 512s147.4-58.5 159.8-134.8C320.7 372.5 316.5 368 311.5 368zM362.9 65.74c-3.502-3.502-9.504-3.252-12.25 .75c-45.52 62.76-40.52 150.4 15.88 206.9c56.52 56.51 144.2 61.39 206.1 15.88c4.002-2.875 4.252-8.877 .75-12.25L362.9 65.74zM593.4 46.61c-56.52-56.51-144.2-61.39-206.1-16c-4.002 2.877-4.252 8.877-.75 12.25l211.3 211.4c3.5 3.502 9.504 3.252 12.25-.75C654.8 190.8 649.9 103.1 593.4 46.61z',
			),
		),
		'label'             => __( 'Tablets', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'tachograph-digital'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M576 64H64C28.8 64 0 92.8 0 128v256c0 35.2 28.8 64 64 64h512c35.2 0 64-28.8 64-64V128C640 92.8 611.2 64 576 64zM64 296C64 291.6 67.63 288 72 288h16C92.38 288 96 291.6 96 296v16C96 316.4 92.38 320 88 320h-16C67.63 320 64 316.4 64 312V296zM336 384h-256C71.2 384 64 376.8 64 368C64 359.2 71.2 352 79.1 352h256c8.801 0 16 7.199 16 16C352 376.8 344.8 384 336 384zM128 312v-16C128 291.6 131.6 288 136 288h16C156.4 288 160 291.6 160 296v16C160 316.4 156.4 320 152 320h-16C131.6 320 128 316.4 128 312zM192 312v-16C192 291.6 195.6 288 200 288h16C220.4 288 224 291.6 224 296v16C224 316.4 220.4 320 216 320h-16C195.6 320 192 316.4 192 312zM256 312v-16C256 291.6 259.6 288 264 288h16C284.4 288 288 291.6 288 296v16C288 316.4 284.4 320 280 320h-16C259.6 320 256 316.4 256 312zM352 312C352 316.4 348.4 320 344 320h-16C323.6 320 320 316.4 320 312v-16C320 291.6 323.6 288 328 288h16C348.4 288 352 291.6 352 296V312zM352 237.7C352 247.9 344.4 256 334.9 256H81.07C71.6 256 64 247.9 64 237.7V146.3C64 136.1 71.6 128 81.07 128h253.9C344.4 128 352 136.1 352 146.3V237.7zM560 384h-160c-8.801 0-16-7.201-16-16c0-8.801 7.199-16 16-16h160c8.801 0 16 7.199 16 16C576 376.8 568.8 384 560 384z',
			),
		),
		'label'             => __( 'Tachograph Digital', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'tag'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M48 32H197.5C214.5 32 230.7 38.74 242.7 50.75L418.7 226.7C443.7 251.7 443.7 292.3 418.7 317.3L285.3 450.7C260.3 475.7 219.7 475.7 194.7 450.7L18.75 274.7C6.743 262.7 0 246.5 0 229.5V80C0 53.49 21.49 32 48 32L48 32zM112 176C129.7 176 144 161.7 144 144C144 126.3 129.7 112 112 112C94.33 112 80 126.3 80 144C80 161.7 94.33 176 112 176z',
			),
		),
		'label'             => __( 'Tag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'tags'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M472.8 168.4C525.1 221.4 525.1 306.6 472.8 359.6L360.8 472.9C351.5 482.3 336.3 482.4 326.9 473.1C317.4 463.8 317.4 448.6 326.7 439.1L438.6 325.9C472.5 291.6 472.5 236.4 438.6 202.1L310.9 72.87C301.5 63.44 301.6 48.25 311.1 38.93C320.5 29.61 335.7 29.7 344.1 39.13L472.8 168.4zM.0003 229.5V80C.0003 53.49 21.49 32 48 32H197.5C214.5 32 230.7 38.74 242.7 50.75L410.7 218.7C435.7 243.7 435.7 284.3 410.7 309.3L277.3 442.7C252.3 467.7 211.7 467.7 186.7 442.7L18.75 274.7C6.743 262.7 0 246.5 0 229.5L.0003 229.5zM112 112C94.33 112 80 126.3 80 144C80 161.7 94.33 176 112 176C129.7 176 144 161.7 144 144C144 126.3 129.7 112 112 112z',
			),
		),
		'label'             => __( 'Tags', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'tape'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 256C288 291.3 259.3 320 224 320C188.7 320 160 291.3 160 256C160 220.7 188.7 192 224 192C259.3 192 288 220.7 288 256zM544 416C561.7 416 576 430.3 576 448C576 465.7 561.7 480 544 480H224C100.3 480 0 379.7 0 256C0 132.3 100.3 32 224 32C347.7 32 448 132.3 448 256C448 318.7 422.3 375.3 380.8 416H544zM224 352C277 352 320 309 320 256C320 202.1 277 160 224 160C170.1 160 128 202.1 128 256C128 309 170.1 352 224 352z',
			),
		),
		'label'             => __( 'Tape', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'tarp'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M576 288H448C430.3 288 416 302.3 416 320V448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512C547.3 64 576 92.65 576 128V288zM96 192C113.7 192 128 177.7 128 160C128 142.3 113.7 128 96 128C78.33 128 64 142.3 64 160C64 177.7 78.33 192 96 192zM448 448V320H576L448 448z',
			),
		),
		'label'             => __( 'Tarp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tarp-droplet'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M224 100C224 75.95 257.7 29.93 276.2 6.49C282.3-1.226 293.7-1.226 299.8 6.49C318.3 29.93 352 75.95 352 100C352 133.1 323.3 160 288 160C252.7 160 224 133.1 224 100V100zM64 128H197.5C210.6 165.3 246.2 192 288 192C329.8 192 365.4 165.3 378.5 128H512C547.3 128 576 156.7 576 192V352H448C430.3 352 416 366.3 416 384V512H64C28.65 512 0 483.3 0 448V192C0 156.7 28.65 128 64 128V128zM96 256C113.7 256 128 241.7 128 224C128 206.3 113.7 192 96 192C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256zM448 512V384H576L448 512z',
			),
		),
		'label'             => __( 'Tarp Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'taxi'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352 0C369.7 0 384 14.33 384 32V64L384 64.15C422.6 66.31 456.3 91.49 469.2 128.3L504.4 228.8C527.6 238.4 544 261.3 544 288V480C544 497.7 529.7 512 512 512H480C462.3 512 448 497.7 448 480V432H128V480C128 497.7 113.7 512 96 512H64C46.33 512 32 497.7 32 480V288C32 261.3 48.36 238.4 71.61 228.8L106.8 128.3C119.7 91.49 153.4 66.31 192 64.15L192 64V32C192 14.33 206.3 0 224 0L352 0zM197.4 128C183.8 128 171.7 136.6 167.2 149.4L141.1 224H434.9L408.8 149.4C404.3 136.6 392.2 128 378.6 128H197.4zM128 352C145.7 352 160 337.7 160 320C160 302.3 145.7 288 128 288C110.3 288 96 302.3 96 320C96 337.7 110.3 352 128 352zM448 288C430.3 288 416 302.3 416 320C416 337.7 430.3 352 448 352C465.7 352 480 337.7 480 320C480 302.3 465.7 288 448 288z',
			),
		),
		'label'             => __( 'Taxi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'teamspeak'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M244.2 346.8c2.4-12.3-12-30-32.4-48.7-20.9-19.2-48.2-39.1-63.4-46.6-21.7-12-41.7-1.8-46.3 22.7-5 26.2 0 51.4 14.5 73.9 10.2 15.5 25.4 22.7 43.4 24 11.6 .6 52.5 2.2 61.7-1 11.9-4.3 20.1-11.8 22.5-24.3zm205 20.8a5.22 5.22 0 0 0 -8.3 2.4c-8 25.4-44.7 112.5-172.1 121.5-149.7 10.5 80.3 43.6 145.4-6.4 22.7-17.4 47.6-35 46.6-85.4-.4-10.1-4.9-26.69-11.6-32.1zm62-122.4c-.3-18.9-8.6-33.4-26-42.2-2.9-1.3-5-2.7-5.9-6.4A222.6 222.6 0 0 0 438.9 103c-1.1-1.5-3.5-3.2-2.2-5 8.5-11.5-.3-18-7-24.4Q321.4-31.11 177.4 13.09c-40.1 12.3-73.9 35.6-102 67.4-4 4.3-6.7 9.1-3 14.5 3 4 1.3 6.2-1 9.3C51.6 132 38.2 162.6 32.1 196c-.7 4.3-2.9 6-6.4 7.8-14.2 7-22.5 18.5-24.9 34L0 264.3v20.9c0 30.8 21 50.4 51.8 49 7.7-.3 11.7-4.3 12-11.5 2-77.5-2.4-95.4 3.7-125.8C92.1 72.39 234.3 5 345.3 65.39 411.4 102 445.7 159 447.6 234.8c.8 28.2 0 56.5 0 84.6 0 7 2.2 12.5 9.4 14.2 24.1 5 49.2-12 53.2-36.7 2.9-17.1 1-34.5 1-51.7zm-159.6 131.5c36.5 2.8 59.3-28.5 58.4-60.5-2.1-45.2-66.2-16.5-87.8-8-73.2 28.1-45 54.9-22.2 60.8z',
			),
		),
		'label'             => __( 'TeamSpeak', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'teeth'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M480 32H96C42.98 32 0 74.98 0 128v256c0 53.02 42.98 96 96 96h384c53.02 0 96-42.98 96-96V128C576 74.98 533 32 480 32zM144 336C144 362.5 122.5 384 96 384s-48-21.5-48-48v-32C48 295.1 55.13 288 64 288h64c8.875 0 16 7.125 16 16V336zM144 240C144 248.9 136.9 256 128 256H64C55.13 256 48 248.9 48 240v-32C48 181.5 69.5 160 96 160s48 21.5 48 48V240zM272 336C272 362.5 250.5 384 224 384s-48-21.5-48-48v-32C176 295.1 183.1 288 192 288h64c8.875 0 16 7.125 16 16V336zM272 242.3C272 249.9 265.9 256 258.3 256H189.7C182.1 256 176 249.9 176 242.3V176C176 149.5 197.5 128 224 128s48 21.54 48 48V242.3zM400 336c0 26.5-21.5 48-48 48s-48-21.5-48-48v-32C304 295.1 311.1 288 320 288h64c8.875 0 16 7.125 16 16V336zM400 242.3C400 249.9 393.9 256 386.3 256h-68.57C310.1 256 304 249.9 304 242.3V176C304 149.5 325.5 128 352 128s48 21.54 48 48V242.3zM528 336c0 26.5-21.5 48-48 48s-48-21.5-48-48v-32C432 295.1 439.1 288 448 288h64c8.875 0 16 7.125 16 16V336zM528 240C528 248.9 520.9 256 512 256h-64c-8.875 0-16-7.125-16-16v-32C432 181.5 453.5 160 480 160s48 21.5 48 48V240z',
			),
		),
		'label'             => __( 'Teeth', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'teeth-open'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 288H64c-35.35 0-64 28.65-64 64v32c0 53.02 42.98 96 96 96h384c53.02 0 96-42.98 96-96v-32C576 316.7 547.3 288 512 288zM144 368C144 394.5 122.5 416 96 416s-48-21.5-48-48v-32C48 327.1 55.13 320 64 320h64c8.875 0 16 7.125 16 16V368zM272 368C272 394.5 250.5 416 224 416s-48-21.5-48-48v-32C176 327.1 183.1 320 192 320h64c8.875 0 16 7.125 16 16V368zM400 368c0 26.5-21.5 48-48 48s-48-21.5-48-48v-32c0-8.875 7.125-16 16-16h64c8.875 0 16 7.125 16 16V368zM528 368c0 26.5-21.5 48-48 48s-48-21.5-48-48v-32c0-8.875 7.125-16 16-16h64c8.875 0 16 7.125 16 16V368zM480 32H96C42.98 32 0 74.98 0 128v64c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V128C576 74.98 533 32 480 32zM144 208C144 216.9 136.9 224 128 224H64C55.13 224 48 216.9 48 208v-32C48 149.5 69.5 128 96 128s48 21.5 48 48V208zM272 210.3C272 217.9 265.9 224 258.3 224H189.7C182.1 224 176 217.9 176 210.3V144C176 117.5 197.5 96 224 96s48 21.54 48 48V210.3zM400 210.3C400 217.9 393.9 224 386.3 224h-68.57C310.1 224 304 217.9 304 210.3V144C304 117.5 325.5 96 352 96s48 21.54 48 48V210.3zM528 208C528 216.9 520.9 224 512 224h-64c-8.875 0-16-7.125-16-16v-32C432 149.5 453.5 128 480 128s48 21.5 48 48V208z',
			),
		),
		'label'             => __( 'Teeth Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'telegram'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256S111 504 248 504 496 392.1 496 256 384.1 8 248 8zM362.1 176.7c-3.732 39.22-19.88 134.4-28.1 178.3-3.476 18.58-10.32 24.82-16.95 25.42-14.4 1.326-25.34-9.517-39.29-18.66-21.83-14.31-34.16-23.22-55.35-37.18-24.49-16.14-8.612-25 5.342-39.5 3.652-3.793 67.11-61.51 68.33-66.75 .153-.655 .3-3.1-1.154-4.384s-3.59-.849-5.135-.5q-3.283 .746-104.6 69.14-14.85 10.19-26.89 9.934c-8.855-.191-25.89-5.006-38.55-9.123-15.53-5.048-27.88-7.717-26.8-16.29q.84-6.7 18.45-13.7 108.4-47.25 144.6-62.3c68.87-28.65 83.18-33.62 92.51-33.79 2.052-.034 6.639 .474 9.61 2.885a10.45 10.45 0 0 1 3.53 6.716A43.76 43.76 0 0 1 362.1 176.7z',
			),
		),
		'label'             => __( 'Telegram', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'temperature-arrow-down'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.1 322.9l-.0002-18.92C159.1 295.1 152.9 287.1 144 287.1c-8.875 0-15.1 7.115-15.1 15.99L128 322.9c-22 7.875-35.25 30.38-31.25 53.38C100.6 399.4 120.6 416.1 144 416.1c23.37 0 43.37-16.71 47.25-39.83C195.2 353.3 181.1 330.8 159.1 322.9zM255.1 112C255.1 50.13 205.9 0 144 0C82.13 0 32 50.13 32 112v166.5C12.25 303.3 0 334 0 368C0 447.5 64.5 512 144 512c79.5 0 143.1-64.5 143.1-144c0-34-12.25-64.88-32-89.5V112zM219.9 393.4C208.1 426.1 178.4 447.1 144 447.1c-34.38 0-65-21.84-75.88-54.59C57.25 360.8 68.5 324.9 96 304.3V112C96 85.5 117.5 64 144 64c26.5 0 47.1 21.5 47.1 48v192.3C219.5 324.9 230.7 360.8 219.9 393.4zM499.1 343c-13.77-11.03-33.92-8.75-44.97 5L448 356.8V64c0-17.69-14.33-32-32-32s-32 14.31-32 32v292.8L376.1 348c-11.03-13.81-31.19-16.03-44.97-5c-13.81 11.06-16.05 31.19-5 45l64 80C397.1 475.6 406.3 480 416 480s18.92-4.406 24.98-12l64-80C516 374.2 513.8 354.1 499.1 343z',
			),
		),
		'label'             => __( 'Temperature Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'temperature-arrow-up'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.1 322.9V112C159.1 103.1 152.9 96 144 96C135.1 96 128 103.1 128 112v210.9c-22 7.875-35.25 30.38-31.25 53.38C100.6 399.4 120.6 416.1 144 416.1c23.37 0 43.37-16.71 47.25-39.83C195.2 353.3 181.1 330.8 159.1 322.9zM255.1 112C255.1 50.13 205.9 0 144 0C82.13 0 32 50.13 32 112v166.5C12.25 303.3 0 334 0 368C0 447.5 64.5 512 144 512c79.5 0 143.1-64.5 143.1-144c0-34-12.25-64.88-32-89.5V112zM219.9 393.4C208.1 426.1 178.4 447.1 144 447.1c-34.38 0-65-21.84-75.88-54.59C57.25 360.8 68.5 324.9 96 304.3V112c0-26.5 21.5-48.01 48-48.01c26.5 0 47.1 21.51 47.1 48.01v192.3C219.5 324.9 230.7 360.8 219.9 393.4zM504.1 124l-64-80c-12.12-15.19-37.84-15.19-49.97 0l-64 80c-11.05 13.81-8.812 33.94 5 45c13.75 11.03 33.94 8.781 44.97-5L384 155.2V448c0 17.69 14.33 32 32 32s32-14.31 32-32V155.2L455 164c6.312 7.906 15.61 12 25 12c7.016 0 14.08-2.281 19.97-7C513.8 157.9 516 137.8 504.1 124z',
			),
		),
		'label'             => __( 'Temperature Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'temperature-empty'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M272 278.5V112c0-61.87-50.12-112-111.1-112S48 50.13 48 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 143.1 144 143.1S304 447.5 304 368C304 334 291.8 303.1 272 278.5zM160 448c-44.13 0-80-35.87-80-79.1c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.3c19.75 14.75 32 38.25 32 63.75C240 412.1 204.1 448 160 448zM160 320c-26.51 0-48 21.49-48 48s21.49 48 48 48s48-21.49 48-48S186.5 320 160 320z',
			),
		),
		'label'             => __( 'Temperature Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'temperature-full'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M176 322.9V112c0-8.75-7.25-16-16-16s-16 7.25-16 16v210.9c-18.62 6.625-32 24.25-32 45.13c0 26.5 21.5 48 48 48s48-21.5 48-48C208 347.1 194.6 329.5 176 322.9zM272 278.5V112c0-61.87-50.12-112-111.1-112S48 50.13 48 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 143.1 144 143.1S304 447.5 304 368C304 334 291.8 303.1 272 278.5zM160 448c-44.13 0-80-35.87-80-79.1c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.3c19.75 14.75 32 38.25 32 63.75C240 412.1 204.1 448 160 448z',
			),
		),
		'label'             => __( 'Temperature Full', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'temperature-half'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M176 322.9l.0002-114.9c0-8.75-7.25-16-16-16s-15.1 7.25-15.1 16L144 322.9c-18.62 6.625-32 24.25-32 45.13c0 26.5 21.5 48 48 48s48-21.5 48-48C208 347.1 194.6 329.5 176 322.9zM272 278.5V112c0-61.87-50.12-112-111.1-112S48 50.13 48 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 143.1 144 143.1S304 447.5 304 368C304 334 291.8 303.1 272 278.5zM160 448c-44.13 0-80-35.87-80-79.1c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.3c19.75 14.75 32 38.25 32 63.75C240 412.1 204.1 448 160 448z',
			),
		),
		'label'             => __( 'Temperature Half', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'temperature-high'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 322.9V112C160 103.3 152.8 96 144 96S128 103.3 128 112v210.9C109.4 329.5 96 347.1 96 368C96 394.5 117.5 416 144 416S192 394.5 192 368C192 347.1 178.6 329.5 160 322.9zM416 0c-52.88 0-96 43.13-96 96s43.13 96 96 96s96-43.13 96-96S468.9 0 416 0zM416 128c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S433.8 128 416 128zM256 112c0-61.88-50.13-112-112-112s-112 50.13-112 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.1-12.25-64.88-32-89.5V112zM144 448c-44.13 0-80-35.88-80-80c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48S192 85.5 192 112V304.3c19.75 14.75 32 38.25 32 63.75C224 412.1 188.1 448 144 448z',
			),
		),
		'label'             => __( 'Temperature High', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'temperature-low'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 322.9V304C160 295.3 152.8 288 144 288S128 295.3 128 304v18.88C109.4 329.5 96 347.1 96 368C96 394.5 117.5 416 144 416S192 394.5 192 368C192 347.1 178.6 329.5 160 322.9zM256 112c0-61.88-50.13-112-112-112s-112 50.13-112 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 144 144 144s144-64.5 144-144c0-33.1-12.25-64.88-32-89.5V112zM144 448c-44.13 0-80-35.88-80-80c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.1c19.75 14.75 32 38.38 32 63.88C224 412.1 188.1 448 144 448zM416 0c-52.88 0-96 43.13-96 96s43.13 96 96 96s96-43.13 96-96S468.9 0 416 0zM416 128c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S433.8 128 416 128z',
			),
		),
		'label'             => __( 'Temperature Low', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'temperature-quarter'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M176 322.9l.0002-50.88c0-8.75-7.25-16-16-16s-15.1 7.25-15.1 16L144 322.9c-18.62 6.625-32 24.25-32 45.13c0 26.5 21.5 48 48 48s48-21.5 48-48C208 347.1 194.6 329.5 176 322.9zM272 278.5V112c0-61.87-50.12-112-111.1-112S48 50.13 48 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 143.1 144 143.1S304 447.5 304 368C304 334 291.8 303.1 272 278.5zM160 448c-44.13 0-80-35.87-80-79.1c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.3c19.75 14.75 32 38.25 32 63.75C240 412.1 204.1 448 160 448z',
			),
		),
		'label'             => __( 'Temperature Quarter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'temperature-three-quarters'         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M176 322.9V160c0-8.75-7.25-16-16-16s-16 7.25-16 16v162.9c-18.62 6.625-32 24.25-32 45.13c0 26.5 21.5 48 48 48s48-21.5 48-48C208 347.1 194.6 329.5 176 322.9zM272 278.5V112c0-61.87-50.12-112-111.1-112S48 50.13 48 112v166.5c-19.75 24.75-32 55.5-32 89.5c0 79.5 64.5 143.1 144 143.1S304 447.5 304 368C304 334 291.8 303.1 272 278.5zM160 448c-44.13 0-80-35.87-80-79.1c0-25.5 12.25-48.88 32-63.75v-192.3c0-26.5 21.5-48 48-48s48 21.5 48 48v192.3c19.75 14.75 32 38.25 32 63.75C240 412.1 204.1 448 160 448z',
			),
		),
		'label'             => __( 'Temperature Three Quarters', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'tencent-weibo'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M72.3 495.8c1.4 19.9-27.6 22.2-29.7 2.9C31 368.8 73.7 259.2 144 185.5c-15.6-34 9.2-77.1 50.6-77.1 30.3 0 55.1 24.6 55.1 55.1 0 44-49.5 70.8-86.9 45.1-65.7 71.3-101.4 169.8-90.5 287.2zM192 .1C66.1 .1-12.3 134.3 43.7 242.4 52.4 259.8 79 246.9 70 229 23.7 136.4 91 29.8 192 29.8c75.4 0 136.9 61.4 136.9 136.9 0 90.8-86.9 153.9-167.7 133.1-19.1-4.1-25.6 24.4-6.6 29.1 110.7 23.2 204-60 204-162.3C358.6 74.7 284 .1 192 .1z',
			),
		),
		'label'             => __( 'Tencent Weibo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'tenge-sign'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 64C0 46.33 14.33 32 32 32H352C369.7 32 384 46.33 384 64C384 81.67 369.7 96 352 96H32C14.33 96 0 81.67 0 64zM0 192C0 174.3 14.33 160 32 160H352C369.7 160 384 174.3 384 192C384 209.7 369.7 224 352 224H224V448C224 465.7 209.7 480 192 480C174.3 480 160 465.7 160 448V224H32C14.33 224 0 209.7 0 192z',
			),
		),
		'label'             => __( 'Tenge Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'tent'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M269.4 5.961C280.5-1.987 295.5-1.987 306.6 5.961L530.6 165.1C538 171.2 542.8 179.4 543.8 188.5L575.8 476.5C576.8 485.5 573.9 494.6 567.8 501.3C561.8 508.1 553.1 512 544 512H416L288 288V512H32C22.9 512 14.23 508.1 8.156 501.3C2.086 494.6-.8093 485.5 .1958 476.5L32.2 188.5C33.2 179.4 38 171.2 45.4 165.1L269.4 5.961z',
			),
		),
		'label'             => __( 'Tent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tent-arrow-down-to-line'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M241.8 111.9C250.7 121.8 249.9 136.1 240.1 145.8L160.1 217.8C150.9 226.1 137.1 226.1 127.9 217.8L47.94 145.8C38.09 136.1 37.29 121.8 46.16 111.9C55.03 102.1 70.2 101.3 80.05 110.2L119.1 146.1V24C119.1 10.75 130.7 0 143.1 0C157.3 0 167.1 10.75 167.1 24V146.1L207.9 110.2C217.8 101.3 232.1 102.1 241.8 111.9H241.8zM364.6 134.5C376.1 125.8 391.9 125.8 403.4 134.5L571.4 262.5C578 267.6 582.4 275 583.6 283.3L608.4 448C625.9 448.2 640 462.4 640 480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H159.6L184.4 283.3C185.6 275 189.1 267.6 196.6 262.5L364.6 134.5zM384 448H460.8L384 320V448z',
			),
		),
		'label'             => __( 'Tent Arrow Down To Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tent-arrow-left-right'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M568.1 78.16C573.1 82.71 576 89.2 576 96C576 102.8 573.1 109.3 568.1 113.8L488.1 185.8C478.2 194.7 463 193.9 454.2 184.1C445.3 174.2 446.1 159 455.9 150.2L489.5 120H86.54L120.1 150.2C129.9 159 130.7 174.2 121.8 184.1C112.1 193.9 97.8 194.7 87.94 185.8L7.945 113.8C2.888 109.3 0 102.8 0 96C0 89.2 2.888 82.71 7.945 78.16L87.94 6.161C97.8-2.706 112.1-1.907 121.8 7.945C130.7 17.8 129.9 32.97 120.1 41.84L86.54 72H489.5L455.9 41.84C446.1 32.97 445.3 17.8 454.2 7.945C463-1.907 478.2-2.706 488.1 6.161L568.1 78.16zM475.4 294.5C482 299.6 486.4 307 487.6 315.3L511.6 475.3C513 484.5 510.3 493.8 504.2 500.9C498.2 507.9 489.3 512 480 512H384L287.1 352V512H96C86.68 512 77.83 507.9 71.75 500.9C65.67 493.8 62.97 484.5 64.35 475.3L88.35 315.3C89.59 307 93.98 299.6 100.6 294.5L268.6 166.5C280.1 157.8 295.9 157.8 307.4 166.5L475.4 294.5z',
			),
		),
		'label'             => __( 'Tent Arrow Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tent-arrow-turn-left'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M86.54 72H456C522.3 72 576 125.7 576 192V232C576 245.3 565.3 256 552 256C538.7 256 528 245.3 528 232V192C528 152.2 495.8 120 456 120H86.54L120.1 150.2C129.9 159 130.7 174.2 121.8 184.1C112.1 193.9 97.8 194.7 87.94 185.8L7.945 113.8C2.888 109.3 0 102.8 0 96C0 89.2 2.888 82.71 7.945 78.16L87.94 6.161C97.8-2.706 112.1-1.907 121.8 7.945C130.7 17.8 129.9 32.97 120.1 41.84L86.54 72zM475.4 294.5C482 299.6 486.4 307 487.6 315.3L511.6 475.3C513 484.5 510.3 493.8 504.2 500.9C498.2 507.9 489.3 512 480 512H384L287.1 352V512H96C86.68 512 77.83 507.9 71.75 500.9C65.67 493.8 62.97 484.5 64.35 475.3L88.35 315.3C89.59 307 93.98 299.6 100.6 294.5L268.6 166.5C280.1 157.8 295.9 157.8 307.4 166.5L475.4 294.5z',
			),
		),
		'label'             => __( 'Tent Arrow Turn Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tent-arrows-down'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M209.8 111.9C218.7 121.8 217.9 136.1 208.1 145.8L128.1 217.8C118.9 226.1 105.1 226.1 95.94 217.8L15.94 145.8C6.093 136.1 5.294 121.8 14.16 111.9C23.03 102.1 38.2 101.3 48.06 110.2L88 146.1V24C88 10.75 98.75 0 112 0C125.3 0 136 10.75 136 24V146.1L175.9 110.2C185.8 101.3 200.1 102.1 209.8 111.9H209.8zM561.8 111.9C570.7 121.8 569.9 136.1 560.1 145.8L480.1 217.8C470.9 226.1 457.1 226.1 447.9 217.8L367.9 145.8C358.1 136.1 357.3 121.8 366.2 111.9C375 102.1 390.2 101.3 400.1 110.2L440 146.1V24C440 10.75 450.7 0 464 0C477.3 0 488 10.75 488 24V146.1L527.9 110.2C537.8 101.3 552.1 102.1 561.8 111.9H561.8zM475.4 294.5C482 299.6 486.4 307 487.6 315.3L511.6 475.3C513 484.5 510.3 493.8 504.2 500.9C498.2 507.9 489.3 512 480 512H384L287.1 352V512H96C86.68 512 77.83 507.9 71.75 500.9C65.67 493.8 62.97 484.5 64.35 475.3L88.35 315.3C89.59 307 93.98 299.6 100.6 294.5L268.6 166.5C280.1 157.8 295.9 157.8 307.4 166.5L475.4 294.5z',
			),
		),
		'label'             => __( 'Tent Arrows Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'tents'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M396.6 6.546C408.1-2.182 423.9-2.182 435.4 6.546L603.4 134.5C610 139.6 614.4 147 615.6 155.3L639.6 315.3C641 324.5 638.3 333.8 632.2 340.9C626.2 347.9 617.3 352 608 352H461.5L455.3 310.5C452.8 294 444 279.2 430.8 269.1L262.8 141.1C254.6 134.9 245.4 130.9 235.8 129.1L396.6 6.546zM411.4 294.5C418 299.6 422.4 307 423.6 315.3L447.6 475.3C449 484.5 446.3 493.8 440.2 500.9C434.2 507.9 425.3 512 416 512H319.1L223.1 352V512H32C22.68 512 13.83 507.9 7.753 500.9C1.674 493.8-1.028 484.5 .3542 475.3L24.35 315.3C25.59 307 29.98 299.6 36.61 294.5L204.6 166.5C216.1 157.8 231.9 157.8 243.4 166.5L411.4 294.5z',
			),
		),
		'label'             => __( 'Tents', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'terminal'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M9.372 86.63C-3.124 74.13-3.124 53.87 9.372 41.37C21.87 28.88 42.13 28.88 54.63 41.37L246.6 233.4C259.1 245.9 259.1 266.1 246.6 278.6L54.63 470.6C42.13 483.1 21.87 483.1 9.372 470.6C-3.124 458.1-3.124 437.9 9.372 425.4L178.7 256L9.372 86.63zM544 416C561.7 416 576 430.3 576 448C576 465.7 561.7 480 544 480H256C238.3 480 224 465.7 224 448C224 430.3 238.3 416 256 416H544z',
			),
		),
		'label'             => __( 'Terminal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'text-height'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 32.01H32c-17.67 0-32 14.31-32 32v64c0 17.69 14.33 32 32 32s32-14.31 32-32v-32h64v320H96c-17.67 0-32 14.31-32 32s14.33 32 32 32h128c17.67 0 32-14.31 32-32s-14.33-32-32-32H192v-320h64v32c0 17.69 14.33 32 32 32s32-14.31 32-32v-64C320 46.33 305.7 32.01 288 32.01zM521.4 361.4L512 370.8V141.3l9.375 9.375C527.6 156.9 535.8 160 544 160s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25l-64-64c-12.5-12.5-32.75-12.5-45.25 0l-64 64c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0L448 141.3v229.5l-9.375-9.375c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l64 64C463.6 476.9 471.8 480 480 480s16.38-3.118 22.62-9.368l64-64c12.5-12.5 12.5-32.75 0-45.25S533.9 348.9 521.4 361.4z',
			),
		),
		'label'             => __( 'Text Height', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'text-slash'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 416H306.7l18.96-64.1L271.4 308.5L239.1 416H192c-17.67 0-32 14.31-32 32s14.33 31.99 31.1 31.99h160C369.7 480 384 465.7 384 448S369.7 416 352 416zM630.8 469.1l-276.4-216.7l45.63-156.5H512v32c0 17.69 14.33 32 32 32s32-14.31 32-32v-64c0-17.69-14.33-32-32-32H192c-17.67 0-32 14.31-32 32v36.11L38.81 5.13c-10.47-8.219-25.53-6.37-33.7 4.068s-6.349 25.54 4.073 33.69l591.1 463.1c4.406 3.469 9.61 5.127 14.8 5.127c7.125 0 14.17-3.164 18.9-9.195C643.1 492.4 641.2 477.3 630.8 469.1zM300.1 209.9l-82.08-64.33C221.5 140.5 224 134.7 224 128v-32h109.3L300.1 209.9z',
			),
		),
		'label'             => __( 'Text Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'text-width'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 32.01H32c-17.67 0-32 14.31-32 32v63.1c0 17.69 14.33 32 32 32s32-14.31 32-32v-32h128v128H176c-17.67 0-32 14.31-32 31.1s14.33 32 32 32h96c17.67 0 32-14.31 32-32s-14.33-31.1-32-31.1H256v-128h128v32c0 17.69 14.33 32 32 32s32-14.32 32-32V64.01C448 46.33 433.7 32.01 416 32.01zM374.6 297.4c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l9.375 9.375h-229.5L118.6 342.6c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0l-64 64c-12.5 12.5-12.5 32.75 0 45.25l64 64C79.63 476.9 87.81 480 96 480s16.38-3.118 22.62-9.368c12.5-12.5 12.5-32.75 0-45.25l-9.375-9.375h229.5l-9.375 9.375c-12.5 12.5-12.5 32.75 0 45.25C335.6 476.9 343.8 480 352 480s16.38-3.118 22.62-9.368l64-64c12.5-12.5 12.5-32.75 0-45.25L374.6 297.4z',
			),
		),
		'label'             => __( 'Text Width', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'the-red-yeti'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M488.2 241.7l20.7 7.1c-9.6-23.9-23.9-37-31.7-44.8l7.1-18.2c.2 0 12.3-27.8-2.5-30.7-.6-11.3-6.6-27-18.4-27-7.6-10.6-17.7-12.3-30.7-5.9a122.2 122.2 0 0 0 -25.3 16.5c-5.3-6.4-3 .4-3-29.8-37.1-24.3-45.4-11.7-74.8 3l.5 .5a239.4 239.4 0 0 0 -68.4-13.3c-5.5-8.7-18.6-19.1-25.1-25.1l24.8 7.1c-5.5-5.5-26.8-12.9-34.2-15.2 18.2-4.1 29.8-20.8 42.5-33-34.9-10.1-67.9-5.9-97.9 11.8l12-44.2L182 0c-31.6 24.2-33 41.9-33.7 45.5-.9-2.4-6.3-19.6-15.2-27a35.12 35.12 0 0 0 -.5 25.3c3 8.4 5.9 14.8 8.4 18.9-16-3.3-28.3-4.9-49.2 0h-3.7l33 14.3a194.3 194.3 0 0 0 -46.7 67.4l-1.7 8.4 1.7 1.7 7.6-4.7c-3.3 11.6-5.3 19.4-6.6 25.8a200.2 200.2 0 0 0 -27.8 40.3c-15 1-31.8 10.8-40.3 14.3l3 3.4 28.8 1c-.5 1-.7 2.2-1.2 3.2-7.3 6.4-39.8 37.7-33 80.7l20.2-22.4c.5 1.7 .7 3.4 1.2 5.2 0 25.5 .4 89.6 64.9 150.5 43.6 40 96 60.2 157.5 60.2 121.7 0 223-87.3 223-211.5 6.8-9.7-1.2 3 16.7-25.1l13 14.3 2.5-.5A181.8 181.8 0 0 0 495 255a44.74 44.74 0 0 0 -6.8-13.3zM398 111.2l-.5 21.9c5.5 18.1 16.9 17.2 22.4 17.2l-3.4-4.7 22.4-5.4a242.4 242.4 0 0 1 -27 0c12.8-2.1 33.3-29 43-11.3 3.4 7.6 6.4 17.2 9.3 27.8l1.7-5.9a56.38 56.38 0 0 1 -1.7-15.2c5.4 .5 8.8 3.4 9.3 10.1 .5 6.4 1.7 14.8 3.4 25.3l4.7-11.3c4.6 0 4.5-3.6-2.5 20.7-20.9-8.7-35.1-8.4-46.5-8.4l18.2-16c-25.3 8.2-33 10.8-54.8 20.9-1.1-5.4-5-13.5-16-19.9-3.2 3.8-2.8 .9-.7 14.8h-2.5a62.32 62.32 0 0 0 -8.4-23.1l4.2-3.4c8.4-7.1 11.8-14.3 10.6-21.9-.5-6.4-5.4-13.5-13.5-20.7 5.6-3.4 15.2-.4 28.3 8.5zm-39.6-10.1c2.7 1.9 11.4 5.4 18.9 17.2 4.2 8.4 4 9.8 3.4 11.1-.5 2.4-.5 4.3-3 7.1-1.7 2.5-5.4 4.7-11.8 7.6-7.6-13-16.5-23.6-27.8-31.2zM91 143.1l1.2-1.7c1.2-2.9 4.2-7.6 9.3-15.2l2.5-3.4-13 12.3 5.4-4.7-10.1 9.3-4.2 1.2c12.3-24.1 23.1-41.3 32.5-50.2 9.3-9.3 16-16 20.2-19.4l-6.4 1.2c-11.3-4.2-19.4-7.1-24.8-8.4 2.5-.5 3.7-.5 3.2-.5 10.3 0 17.5 .5 20.9 1.2a52.35 52.35 0 0 0 16 2.5l.5-1.7-8.4-35.8 13.5 29a42.89 42.89 0 0 0 5.9-14.3c1.7-6.4 5.4-13 10.1-19.4s7.6-10.6 9.3-11.3a234.7 234.7 0 0 0 -6.4 25.3l-1.7 7.1-.5 4.7 2.5 2.5C190.4 39.9 214 34 239.8 34.5l21.1 .5c-11.8 13.5-27.8 21.9-48.5 24.8a201.3 201.3 0 0 1 -23.4 2.9l-.2-.5-2.5-1.2a20.75 20.75 0 0 0 -14 2c-2.5-.2-4.9-.5-7.1-.7l-2.5 1.7 .5 1.2c2 .2 3.9 .5 6.2 .7l-2 3.4 3.4-.5-10.6 11.3c-4.2 3-5.4 6.4-4.2 9.3l5.4-3.4h1.2a39.4 39.4 0 0 1 25.3-15.2v-3c6.4 .5 13 1 19.4 1.2 6.4 0 8.4 .5 5.4 1.2a189.6 189.6 0 0 1 20.7 13.5c13.5 10.1 23.6 21.9 30 35.4 8.8 18.2 13.5 37.1 13.5 56.6a141.1 141.1 0 0 1 -3 28.3 209.9 209.9 0 0 1 -16 46l2.5 .5c18.2-19.7 41.9-16 49.2-16l-6.4 5.9 22.4 17.7-1.7 30.7c-5.4-12.3-16.5-21.1-33-27.8 16.5 14.8 23.6 21.1 21.9 20.2-4.8-2.8-3.5-1.9-10.8-3.7 4.1 4.1 17.5 18.8 18.2 20.7l.2 .2-.2 .2c0 1.8 1.6-1.2-14 22.9-75.2-15.3-106.3-42.7-141.2-63.2l11.8 1.2c-11.8-18.5-15.6-17.7-38.4-26.1L149 225c-8.8-3-18.2-3-28.3 .5l7.6-10.6-1.2-1.7c-14.9 4.3-19.8 9.2-22.6 11.3-1.1-5.5-2.8-12.4-12.3-28.8l-1.2 27-13.2-5c1.5-25.2 5.4-50.5 13.2-74.6zm276.5 330c-49.9 25-56.1 22.4-59 23.9-29.8-11.8-50.9-31.7-63.5-58.8l30 16.5c-9.8-9.3-18.3-16.5-38.4-44.3l11.8 23.1-17.7-7.6c14.2 21.1 23.5 51.7 66.6 73.5-120.8 24.2-199-72.1-200.9-74.3a262.6 262.6 0 0 0 35.4 24.8c3.4 1.7 7.1 2.5 10.1 1.2l-16-20.7c9.2 4.2 9.5 4.5 69.1 29-42.5-20.7-73.8-40.8-93.2-60.2-.5 6.4-1.2 10.1-1.2 10.1a80.25 80.25 0 0 1 20.7 26.6c-39-18.9-57.6-47.6-71.3-82.6 49.9 55.1 118.9 37.5 120.5 37.1 34.8 16.4 69.9 23.6 113.9 10.6 3.3 0 20.3 17 25.3 39.1l4.2-3-2.5-23.6c9 9 24.9 22.6 34.4 13-15.6-5.3-23.5-9.5-29.5-31.7 4.6 4.2 7.6 9 27.8 15l1.2-1.2-10.5-14.2c11.7-4.8-3.5 1 32-10.8 4.3 34.3 9 49.2 .7 89.5zm115.3-214.4l-2.5 .5 3 9.3c-3.5 5.9-23.7 44.3-71.6 79.7-39.5 29.8-76.6 39.1-80.9 40.3l-7.6-7.1-1.2 3 14.3 16-7.1-4.7 3.4 4.2h-1.2l-21.9-13.5 9.3 26.6-19-27.9-1.2 2.5 7.6 29c-6.1-8.2-21-32.6-56.8-39.6l32.5 21.2a214.8 214.8 0 0 1 -93.2-6.4c-4.2-1.2-8.9-2.5-13.5-4.2l1.2-3-44.8-22.4 26.1 22.4c-57.7 9.1-113-25.4-126.4-83.4l-2.5-16.4-22.27 22.3c19.5-57.5 25.6-57.9 51.4-70.1-9.1-5.3-1.6-3.3-38.4-9.3 15.8-5.8 33-15.4 73 5.2a18.5 18.5 0 0 1 3.7-1.7c.6-3.2 .4-.8 1-11.8 3.9 10 3.6 8.7 3 9.3l1.7 .5c12.7-6.5 8.9-4.5 17-8.9l-5.4 13.5 22.3-5.8-8.4 8.4 2.5 2.5c4.5-1.8 30.3 3.4 40.8 16l-23.6-2.5c39.4 23 51.5 54 55.8 69.6l1.7-1.2c-2.8-22.3-12.4-33.9-16-40.1 4.2 5 39.2 34.6 110.4 46-11.3-.5-23.1 5.4-34.9 18.9l46.7-20.2-9.3 21.9c7.6-10.1 14.8-23.6 21.2-39.6v-.5l1.2-3-1.2 16c13.5-41.8 25.3-78.5 35.4-109.7l13.5-27.8v-2l-5.4-4.2h10.1l5.9 4.2 2.5-1.2-3.4-16 12.3 18.9 41.8-20.2-14.8 13 .5 2.9 17.7-.5a184 184 0 0 1 33 4.2l-23.6 2.5-1.2 3 26.6 23.1a254.2 254.2 0 0 1 27 32c-11.2-3.3-10.3-3.4-21.2-3.4l12.3 32.5zm-6.1-71.3l-3.9 13-14.3-11.8zm-254.8 7.1c1.7 10.6 4.7 17.7 8.8 21.9-9.3 6.6-27.5 13.9-46.5 16l.5 1.2a50.22 50.22 0 0 0 24.8-2.5l-7.1 13c4.2-1.7 10.1-7.1 17.7-14.8 11.9-5.5 12.7-5.1 20.2-16-12.7-6.4-15.7-13.7-18.4-18.8zm3.7-102.3c-6.4-3.4-10.6 3-12.3 18.9s2.5 29.5 11.8 39.6 18.2 10.6 26.1 3 3.4-23.6-11.3-47.7a39.57 39.57 0 0 0 -14.27-13.8zm-4.7 46.3c5.4 2.2 10.5 1.9 12.3-10.6v-4.7l-1.2 .5c-4.3-3.1-2.5-4.5-1.7-6.2l.5-.5c-.9-1.2-5-8.1-12.5 4.7-.5-13.5 .5-21.9 3-24.8 1.2-2.5 4.7-1.2 11.3 4.2 6.4 5.4 11.3 16 15.2 32.5 6.5 28-19.8 26.2-26.9 4.9zm-45-5.5c1.6 .3 9.3-1.1 9.3-14.8h-.5c-5.4-1.1-2.2-5.5-.7-5.9-1.7-3-3.4-4.2-5.4-4.7-8.1 0-11.6 12.7-8.1 21.2a7.51 7.51 0 0 0 5.43 4.2zM216 82.9l-2.5 .5 .5 3a48.94 48.94 0 0 1 26.1 5.9c-2.5-5.5-10-14.3-28.3-14.3l.5 2.5zm-71.8 49.4c21.7 16.8 16.5 21.4 46.5 23.6l-2.9-4.7a42.67 42.67 0 0 0 14.8-28.3c1.7-16-1.2-29.5-8.8-41.3l13-7.6a2.26 2.26 0 0 0 -.5-1.7 14.21 14.21 0 0 0 -13.5 1.7c-12.7 6.7-28 20.9-29 22.4-1.7 1.7-3.4 5.9-5.4 13.5a99.61 99.61 0 0 0 -2.9 23.6c-4.7-8-10.5-6.4-19.9-5.9l7.1 7.6c-16.5 0-23.3 15.4-23.6 16 6.8 0 4.6-7.6 30-12.3-4.3-6.3-3.3-5-4.9-6.6zm18.7-18.7c1.2-7.6 3.4-13 6.4-17.2 5.4-6.4 10.6-10.1 16-11.8 4.2-1.7 7.1 1.2 10.1 9.3a72.14 72.14 0 0 1 3 25.3c-.5 9.3-3.4 17.2-8.4 23.1-2.9 3.4-5.4 5.9-6.4 7.6a39.21 39.21 0 0 1 -11.3-.5l-7.1-3.4-5.4-6.4c.8-10 1.3-18.8 3.1-26zm42 56.1c-34.8 14.4-34.7 14-36.1 14.3-20.8 4.7-19-24.4-18.9-24.8l5.9-1.2-.5-2.5c-20.2-2.6-31 4.2-32.5 4.9 .5 .5 3 3.4 5.9 9.3 4.2-6.4 8.8-10.1 15.2-10.6a83.47 83.47 0 0 0 1.7 33.7c.1 .5 2.6 17.4 27.5 24.1 11.3 3 27 1.2 48.9-5.4l-9.2 .5c-4.2-14.8-6.4-24.8-5.9-29.5 11.3-8.8 21.9-11.3 30.7-7.6h2.5l-11.8-7.6-7.1 .5c-5.9 1.2-12.3 4.2-19.4 8.4z',
			),
		),
		'label'             => __( 'The Red Yeti', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'themeco'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M202.9 8.43c9.9-5.73 26-5.82 35.95-.21L430 115.8c10 5.6 18 19.44 18 30.86V364c0 11.44-8.06 25.29-18 31L238.8 503.7c-9.93 5.66-26 5.57-35.85-.21L17.86 395.1C8 389.3 0 375.4 0 364V146.7c0-11.44 8-25.36 17.91-31.08zm-77.4 199.8c-15.94 0-31.89 .14-47.83 .14v101.4H96.8V280h28.7c49.71 0 49.56-71.74 0-71.74zm140.1 100.3l-30.73-34.64c37-7.51 34.8-65.23-10.87-65.51-16.09 0-32.17-.14-48.26-.14v101.6h19.13v-33.91h18.41l29.56 33.91h22.76zm-41.59-82.32c23.34 0 23.26 32.46 0 32.46h-29.13v-32.46zm-95.56-1.6c21.18 0 21.11 38.85 0 38.85H96.18v-38.84zm192.6-18.25c-68.46 0-71 105.8 0 105.8 69.48-.01 69.41-105.8 0-105.8zm0 17.39c44.12 0 44.8 70.86 0 70.86s-44.43-70.86 0-70.86z',
			),
		),
		'label'             => __( 'Themeco', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'themeisle'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208 88.29c0-10 6.286-21.71 17.72-21.71 11.14 0 17.71 11.71 17.71 21.71 0 10.28-6.572 21.71-17.71 21.71C214.3 110 208 98.57 208 88.29zm304 160c0 36-11.43 102.3-36.29 129.7-22.86 24.86-87.43 61.14-120.9 70.57l-1.143 .286v32.57c0 16.29-12.57 30.57-29.14 30.57-10 0-19.43-5.714-24.57-14.29-5.427 8.572-14.86 14.29-24.86 14.29-10 0-19.43-5.714-24.86-14.29-5.142 8.572-14.57 14.29-24.57 14.29-10.29 0-19.43-5.714-24.86-14.29-5.143 8.572-14.57 14.29-24.57 14.29-18.86 0-29.43-15.71-29.43-32.86-16.29 12.28-35.72 19.43-56.57 19.43-22 0-43.43-8.285-60.29-22.86 10.28-.286 20.57-2.286 30.28-5.714-20.86-5.714-39.43-18.86-52-36.29 21.37 4.645 46.21 1.673 67.14-11.14-22-22-56.57-58.86-68.57-87.43C1.143 321.7 0 303.7 0 289.4c0-49.71 20.29-160 86.29-160 10.57 0 18.86 4.858 23.14 14.86a158.8 158.8 0 0 1 12-15.43c2-2.572 5.714-5.429 7.143-8.286 7.999-12.57 11.71-21.14 21.71-34C182.6 45.43 232 17.14 285.1 17.14c6 0 12 .285 17.71 1.143C313.7 6.571 328.9 0 344.6 0c14.57 0 29.71 6 40 16.29 .857 .858 1.428 2.286 1.428 3.428 0 3.714-10.28 13.43-12.86 16.29 4.286 1.429 15.71 6.858 15.71 12 0 2.857-2.857 5.143-4.571 7.143 31.43 27.71 49.43 67.14 56.29 108 4.286-5.143 10.28-8.572 17.14-8.572 10.57 0 20.86 7.144 28.57 14C507.1 187.1 512 221.7 512 248.3zM188 89.43c0 18.29 12.57 37.14 32.29 37.14 19.71 0 32.28-18.86 32.28-37.14 0-18-12.57-36.86-32.28-36.86-19.72 0-32.29 18.86-32.29 36.86zM237.7 194c0-19.71 3.714-39.14 8.571-58.29-52.04 79.53-13.53 184.6 68.86 184.6 21.43 0 42.57-7.714 60-20 2-7.429 3.714-14.86 3.714-22.57 0-14.29-6.286-21.43-20.57-21.43-4.571 0-9.143 .857-13.43 1.714-63.34 12.67-107.1 3.669-107.1-63.1zm-41.14 254.9c0-11.14-8.858-20.86-20.29-20.86-11.43 0-20 9.715-20 20.86v32.57c0 11.14 8.571 21.14 20 21.14 11.43 0 20.29-9.715 20.29-21.14v-32.57zm49.14 0c0-11.14-8.572-20.86-20-20.86-11.43 0-20.29 9.715-20.29 20.86v32.57c0 11.14 8.857 21.14 20.29 21.14 11.43 0 20-10 20-21.14v-32.57zm49.71 0c0-11.14-8.857-20.86-20.28-20.86-11.43 0-20.29 9.715-20.29 20.86v32.57c0 11.14 8.857 21.14 20.29 21.14 11.43 0 20.28-9.715 20.28-21.14v-32.57zm49.72 0c0-11.14-8.857-20.86-20.29-20.86-11.43 0-20.29 9.715-20.29 20.86v32.57c0 11.14 8.858 21.14 20.29 21.14 11.43 0 20.29-10 20.29-21.14v-32.57zM421.7 286c-30.86 59.14-90.29 102.6-158.6 102.6-96.57 0-160.6-84.57-160.6-176.6 0-16.86 2-33.43 6-49.71-20 33.72-29.71 72.57-29.71 111.4 0 60.29 24.86 121.7 71.43 160.9 5.143-9.714 14.86-16.29 26-16.29 10 0 19.43 5.714 24.57 14.29 5.429-8.571 14.57-14.29 24.86-14.29 10 0 19.43 5.714 24.57 14.29 5.429-8.571 14.86-14.29 24.86-14.29 10 0 19.43 5.714 24.86 14.29 5.143-8.571 14.57-14.29 24.57-14.29 10.86 0 20.86 6.572 25.71 16 43.43-36.29 68.57-92 71.43-148.3zm10.57-99.71c0-53.71-34.57-105.7-92.57-105.7-30.28 0-58.57 15.14-78.86 36.86C240.9 183.8 233.4 254 302.3 254c28.81 0 97.36-28.54 84.29 36.86 28.86-26 45.71-65.71 45.71-104.6z',
			),
		),
		'label'             => __( 'ThemeIsle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'thermometer'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M483.1 162.6L229.8 415.9l-99.87-.0001l-88.99 89.02c-9.249 9.377-24.5 9.377-33.87 0c-9.374-9.252-9.374-24.51 0-33.88l88.99-89.02l.0003-100.9l49.05-49.39l51.6 51.59c3.125 3.126 7.218 4.688 11.31 4.688s8.187-1.563 11.31-4.688c6.249-6.252 6.249-16.38 0-22.63L167.6 209.1l41.24-41.52l51.81 51.81c3.125 3.126 7.218 4.688 11.31 4.688s8.187-1.563 11.31-4.688c6.249-6.252 6.249-16.38 0-22.63L231.4 144.8l41.24-41.52l52.02 52.02c3.125 3.126 7.218 4.688 11.31 4.688s8.187-1.563 11.31-4.688c6.249-6.252 6.249-16.38 0-22.63l-52.09-52.09l49.68-50.02c36.37-36.51 94.37-40.88 131.9-10.25C526.2 61.11 518.9 127.8 483.1 162.6z',
			),
		),
		'label'             => __( 'Thermometer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'think-peaks'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M465.4 409.4l87.1-150.2-32-.3-55.1 95L259.2 0 23 407.4l32 .3L259.2 55.6zm-355.3-44.1h32.1l117.4-202.5L463 511.9l32.5 .1-235.8-404.6z',
			),
		),
		'label'             => __( 'Think Peaks', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'thumbs-down'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 32.04H32c-17.67 0-32 14.32-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64c17.67 0 32-14.33 32-31.1V64.03C128 46.36 113.7 32.04 96 32.04zM467.3 240.2C475.1 231.7 480 220.4 480 207.9c0-23.47-16.87-42.92-39.14-47.09C445.3 153.6 448 145.1 448 135.1c0-21.32-14-39.18-33.25-45.43C415.5 87.12 416 83.61 416 79.98C416 53.47 394.5 32 368 32h-58.69c-34.61 0-68.28 11.22-95.97 31.98L179.2 89.57C167.1 98.63 160 112.9 160 127.1l.1074 160c0 0-.0234-.0234 0 0c.0703 13.99 6.123 27.94 17.91 37.36l16.3 13.03C276.2 403.9 239.4 480 302.5 480c30.96 0 49.47-24.52 49.47-48.11c0-15.15-11.76-58.12-34.52-96.02H464c26.52 0 48-21.47 48-47.98C512 262.5 492.2 241.9 467.3 240.2z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M128 288V64.03c0-17.67-14.33-31.1-32-31.1H32c-17.67 0-32 14.33-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64C113.7 320 128 305.7 128 288zM481.5 229.1c1.234-5.092 1.875-10.32 1.875-15.64c0-22.7-11.44-43.13-29.28-55.28c.4219-3.015 .6406-6.076 .6406-9.122c0-22.32-11.06-42.6-28.83-54.83c-2.438-34.71-31.47-62.2-66.8-62.2h-52.53c-35.94 0-71.55 11.87-100.3 33.41L169.6 92.93c-6.285 4.71-9.596 11.85-9.596 19.13c0 12.76 10.29 24.04 24.03 24.04c5.013 0 10.07-1.565 14.38-4.811l36.66-27.51c20.48-15.34 45.88-23.81 71.5-23.81h52.53c10.45 0 18.97 8.497 18.97 18.95c0 3.5-1.11 4.94-1.11 9.456c0 26.97 29.77 17.91 29.77 40.64c0 9.254-6.392 10.96-6.392 22.25c0 13.97 10.85 21.95 19.58 23.59c8.953 1.671 15.45 9.481 15.45 18.56c0 13.04-11.39 13.37-11.39 28.91c0 12.54 9.702 23.08 22.36 23.94C456.2 266.1 464 275.2 464 284.1c0 10.43-8.516 18.93-18.97 18.93H307.4c-12.44 0-24 10.02-24 23.1c0 4.038 1.02 8.078 3.066 11.72C304.4 371.7 312 403.8 312 411.2c0 8.044-5.984 20.79-22.06 20.79c-12.53 0-14.27-.9059-24.94-28.07c-24.75-62.91-61.74-99.9-80.98-99.9c-13.8 0-24.02 11.27-24.02 23.99c0 7.041 3.083 14.02 9.016 18.76C238.1 402 211.4 480 289.9 480C333.8 480 360 445 360 411.2c0-12.7-5.328-35.21-14.83-59.33h99.86C481.1 351.9 512 321.9 512 284.1C512 261.8 499.9 241 481.5 229.1z',
			),
		),
		'label'             => __( 'Thumbs Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'social' ),
	),
	'thumbs-up'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M128 447.1V223.1c0-17.67-14.33-31.1-32-31.1H32c-17.67 0-32 14.33-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64C113.7 479.1 128 465.6 128 447.1zM512 224.1c0-26.5-21.48-47.98-48-47.98h-146.5c22.77-37.91 34.52-80.88 34.52-96.02C352 56.52 333.5 32 302.5 32c-63.13 0-26.36 76.15-108.2 141.6L178 186.6C166.2 196.1 160.2 210 160.1 224c-.0234 .0234 0 0 0 0L160 384c0 15.1 7.113 29.33 19.2 38.39l34.14 25.59C241 468.8 274.7 480 309.3 480H368c26.52 0 48-21.47 48-47.98c0-3.635-.4805-7.143-1.246-10.55C434 415.2 448 397.4 448 376c0-9.148-2.697-17.61-7.139-24.88C463.1 347 480 327.5 480 304.1c0-12.5-4.893-23.78-12.72-32.32C492.2 270.1 512 249.5 512 224.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 191.1H32c-17.67 0-32 14.33-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64c17.67 0 32-14.33 32-31.1V223.1C128 206.3 113.7 191.1 96 191.1zM512 227c0-36.89-30.05-66.92-66.97-66.92h-99.86C354.7 135.1 360 113.5 360 100.8c0-33.8-26.2-68.78-70.06-68.78c-46.61 0-59.36 32.44-69.61 58.5c-31.66 80.5-60.33 66.39-60.33 93.47c0 12.84 10.36 23.99 24.02 23.99c5.256 0 10.55-1.721 14.97-5.26c76.76-61.37 57.97-122.7 90.95-122.7c16.08 0 22.06 12.75 22.06 20.79c0 7.404-7.594 39.55-25.55 71.59c-2.046 3.646-3.066 7.686-3.066 11.72c0 13.92 11.43 23.1 24 23.1h137.6C455.5 208.1 464 216.6 464 227c0 9.809-7.766 18.03-17.67 18.71c-12.66 .8593-22.36 11.4-22.36 23.94c0 15.47 11.39 15.95 11.39 28.91c0 25.37-35.03 12.34-35.03 42.15c0 11.22 6.392 13.03 6.392 22.25c0 22.66-29.77 13.76-29.77 40.64c0 4.515 1.11 5.961 1.11 9.456c0 10.45-8.516 18.95-18.97 18.95h-52.53c-25.62 0-51.02-8.466-71.5-23.81l-36.66-27.51c-4.315-3.245-9.37-4.811-14.38-4.811c-13.85 0-24.03 11.38-24.03 24.04c0 7.287 3.312 14.42 9.596 19.13l36.67 27.52C235 468.1 270.6 480 306.6 480h52.53c35.33 0 64.36-27.49 66.8-62.2c17.77-12.23 28.83-32.51 28.83-54.83c0-3.046-.2187-6.107-.6406-9.122c17.84-12.15 29.28-32.58 29.28-55.28c0-5.311-.6406-10.54-1.875-15.64C499.9 270.1 512 250.2 512 227z',
			),
		),
		'label'             => __( 'Thumbs Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'social' ),
	),
	'thumbtack'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M32 32C32 14.33 46.33 0 64 0H320C337.7 0 352 14.33 352 32C352 49.67 337.7 64 320 64H290.5L301.9 212.2C338.6 232.1 367.5 265.4 381.4 306.9L382.4 309.9C385.6 319.6 383.1 330.4 377.1 338.7C371.9 347.1 362.3 352 352 352H32C21.71 352 12.05 347.1 6.04 338.7C.0259 330.4-1.611 319.6 1.642 309.9L2.644 306.9C16.47 265.4 45.42 232.1 82.14 212.2L93.54 64H64C46.33 64 32 49.67 32 32zM224 384V480C224 497.7 209.7 512 192 512C174.3 512 160 497.7 160 480V384H224z',
			),
		),
		'label'             => __( 'Thumbtack', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'social', 'travel' ),
	),
	'ticket'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M128 160H448V352H128V160zM512 64C547.3 64 576 92.65 576 128V208C549.5 208 528 229.5 528 256C528 282.5 549.5 304 576 304V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V304C26.51 304 48 282.5 48 256C48 229.5 26.51 208 0 208V128C0 92.65 28.65 64 64 64H512zM96 352C96 369.7 110.3 384 128 384H448C465.7 384 480 369.7 480 352V160C480 142.3 465.7 128 448 128H128C110.3 128 96 142.3 96 160V352z',
			),
		),
		'label'             => __( 'Ticket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'travel' ),
	),
	'ticket-simple'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 128C0 92.65 28.65 64 64 64H512C547.3 64 576 92.65 576 128V208C549.5 208 528 229.5 528 256C528 282.5 549.5 304 576 304V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V304C26.51 304 48 282.5 48 256C48 229.5 26.51 208 0 208V128z',
			),
		),
		'label'             => __( 'Ticket Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'tiktok'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 209.9a210.1 210.1 0 0 1 -122.8-39.25V349.4A162.6 162.6 0 1 1 185 188.3V278.2a74.62 74.62 0 1 0 52.23 71.18V0l88 0a121.2 121.2 0 0 0 1.86 22.17h0A122.2 122.2 0 0 0 381 102.4a121.4 121.4 0 0 0 67 20.14z',
			),
		),
		'label'             => __( 'TikTok', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'timeline'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 224H480V169.3C451.7 156.1 432 128.8 432 96C432 51.82 467.8 16 512 16C556.2 16 592 51.82 592 96C592 128.8 572.3 156.1 544 169.3V224H608C625.7 224 640 238.3 640 256C640 273.7 625.7 288 608 288H352V342.7C380.3 355 400 383.2 400 416C400 460.2 364.2 496 320 496C275.8 496 240 460.2 240 416C240 383.2 259.7 355 288 342.7V288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H96V169.3C67.75 156.1 48 128.8 48 96C48 51.82 83.82 16 128 16C172.2 16 208 51.82 208 96C208 128.8 188.3 156.1 160 169.3V224zM128 120C141.3 120 152 109.3 152 96C152 82.75 141.3 72 128 72C114.7 72 104 82.75 104 96C104 109.3 114.7 120 128 120zM512 72C498.7 72 488 82.75 488 96C488 109.3 498.7 120 512 120C525.3 120 536 109.3 536 96C536 82.75 525.3 72 512 72zM320 440C333.3 440 344 429.3 344 416C344 402.7 333.3 392 320 392C306.7 392 296 402.7 296 416C296 429.3 306.7 440 320 440z',
			),
		),
		'label'             => __( 'Timeline', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'toggle-off'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192 352C138.1 352 96 309 96 256C96 202.1 138.1 160 192 160C245 160 288 202.1 288 256C288 309 245 352 192 352zM384 448H192C85.96 448 0 362 0 256C0 149.1 85.96 64 192 64H384C490 64 576 149.1 576 256C576 362 490 448 384 448zM384 128H192C121.3 128 64 185.3 64 256C64 326.7 121.3 384 192 384H384C454.7 384 512 326.7 512 256C512 185.3 454.7 128 384 128z',
			),
		),
		'label'             => __( 'Toggle Off', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'toggle-on'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M384 64C490 64 576 149.1 576 256C576 362 490 448 384 448H192C85.96 448 0 362 0 256C0 149.1 85.96 64 192 64H384zM384 352C437 352 480 309 480 256C480 202.1 437 160 384 160C330.1 160 288 202.1 288 256C288 309 330.1 352 384 352z',
			),
		),
		'label'             => __( 'Toggle On', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'toilet'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M432 48C440.8 48 448 40.75 448 32V16C448 7.25 440.8 0 432 0h-416C7.25 0 0 7.25 0 16V32c0 8.75 7.25 16 16 16H32v158.7C11.82 221.2 0 237.1 0 256c0 60.98 33.28 115.2 84.1 150.4l-19.59 64.36C59.16 491.3 74.53 512 96.03 512h255.9c21.5 0 36.88-20.75 30.62-41.25L363 406.4C414.7 371.2 448 316.1 448 256c0-18.04-11.82-34.85-32-49.26V48H432zM96 72C96 67.63 99.63 64 104 64h48C156.4 64 160 67.63 160 72v16C160 92.38 156.4 96 152 96h-48C99.63 96 96 92.38 96 88V72zM224 288C135.6 288 64 273.7 64 256c0-17.67 71.63-32 160-32s160 14.33 160 32C384 273.7 312.4 288 224 288z',
			),
		),
		'label'             => __( 'Toilet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'toilet-paper'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M127.1 0C74.98 0 31.98 86 31.98 192v172.1c0 41.12-9.751 62.75-31.13 126.9C-2.65 501.2 5.101 512 15.98 512h280.9c13.88 0 26-8.75 30.38-21.88c12.88-38.5 24.75-72.37 24.75-126L351.1 192c0-83.62 23.62-153.5 60.5-192H127.1zM95.99 224C87.11 224 79.99 216.9 79.99 208S87.11 192 95.99 192s16 7.125 16 16S104.9 224 95.99 224zM159.1 224c-8.875 0-16-7.125-16-16S151.1 192 159.1 192s16 7.125 16 16S168.9 224 159.1 224zM223.1 224C215.1 224 207.1 216.9 207.1 208S215.1 192 223.1 192c8.875 0 16 7.125 16 16S232.9 224 223.1 224zM287.1 224C279.1 224 271.1 216.9 271.1 208S279.1 192 287.1 192c8.875 0 16 7.125 16 16S296.9 224 287.1 224zM479.1 0c-53 0-96 86.06-96 192.1C383.1 298.1 426.1 384 479.1 384S576 298 576 192C576 86 532.1 0 479.1 0zM479.1 256c-17.63 0-32-28.62-32-64s14.38-64 32-64c17.63 0 32 28.62 32 64S497.6 256 479.1 256z',
			),
		),
		'label'             => __( 'Toilet Paper', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'toilet-paper-slash'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M63.98 191.1v172.1c0 41.12-9.75 62.75-31.13 126.9c-3.5 10.25 4.25 20.1 15.13 20.1l280.9-.0059c13.87 0 25.1-8.75 30.37-21.87c10.08-30.15 19.46-57.6 23.1-93.78L66.51 148.8C64.9 162.7 63.98 177.1 63.98 191.1zM630.8 469.1l-109.8-86.02c48.75-9.144 86.94-91.2 86.94-191.1C607.1 86 564.1 0 511.1 0s-96 86-96 191.1c0 49.25 9.362 94.03 24.62 128l-56.62-44.38l.0049-83.65c0-83.62 23.62-153.5 60.5-191.1H159.1C135.2 0 112.7 18.93 95.72 49.72L38.81 5.109C34.41 1.672 29.19 0 24.03 0c-7.125 0-14.19 3.156-18.91 9.187C-3.061 19.62-1.249 34.72 9.189 42.89l591.1 463.1c10.5 8.203 25.56 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1zM479.1 191.1c0-35.37 14.37-64 32-64c17.62 0 32 28.63 32 64S529.6 255.1 511.1 255.1C494.4 255.1 479.1 227.4 479.1 191.1z',
			),
		),
		'label'             => __( 'Toilet Paper Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'toilet-portable'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M0 32C0 14.33 14.33 0 32 0H288C305.7 0 320 14.33 320 32V64H0V32zM320 96V488C320 501.3 309.3 512 296 512C282.7 512 272 501.3 272 488V480H48V488C48 501.3 37.25 512 24 512C10.75 512 0 501.3 0 488V96H320zM256 240C256 231.2 248.8 224 240 224C231.2 224 224 231.2 224 240V304C224 312.8 231.2 320 240 320C248.8 320 256 312.8 256 304V240z',
			),
		),
		'label'             => __( 'Toilet Portable', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'toilets-portable'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M224 0C241.7 0 256 14.33 256 32V64H0V32C0 14.33 14.33 0 32 0H224zM0 96H256V488C256 501.3 245.3 512 232 512C218.7 512 208 501.3 208 488V480H48V488C48 501.3 37.25 512 24 512C10.75 512 0 501.3 0 488V96zM176 240V304C176 312.8 183.2 320 192 320C200.8 320 208 312.8 208 304V240C208 231.2 200.8 224 192 224C183.2 224 176 231.2 176 240zM544 0C561.7 0 576 14.33 576 32V64H320V32C320 14.33 334.3 0 352 0H544zM320 96H576V488C576 501.3 565.3 512 552 512C538.7 512 528 501.3 528 488V480H368V488C368 501.3 357.3 512 344 512C330.7 512 320 501.3 320 488V96zM496 240V304C496 312.8 503.2 320 512 320C520.8 320 528 312.8 528 304V240C528 231.2 520.8 224 512 224C503.2 224 496 231.2 496 240z',
			),
		),
		'label'             => __( 'Toilets Portable', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'toolbox'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 182.6l-45.25-45.25C451.4 131.4 443.3 128 434.8 128H384V80C384 53.5 362.5 32 336 32h-160C149.5 32 128 53.5 128 80V128H77.25c-8.5 0-16.62 3.375-22.62 9.375L9.375 182.6C3.375 188.6 0 196.8 0 205.3V304h128v-32C128 263.1 135.1 256 144 256h32C184.9 256 192 263.1 192 272v32h128v-32C320 263.1 327.1 256 336 256h32C376.9 256 384 263.1 384 272v32h128V205.3C512 196.8 508.6 188.6 502.6 182.6zM336 128h-160V80h160V128zM384 368c0 8.875-7.125 16-16 16h-32c-8.875 0-16-7.125-16-16v-32H192v32C192 376.9 184.9 384 176 384h-32C135.1 384 128 376.9 128 368v-32H0V448c0 17.62 14.38 32 32 32h448c17.62 0 32-14.38 32-32v-112h-128V368z',
			),
		),
		'label'             => __( 'Toolbox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'tooth'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M394.1 212.8c-20.04 27.67-28.07 60.15-31.18 93.95c-3.748 41.34-8.785 82.46-17.89 122.8l-6.75 29.64c-2.68 12.14-13.29 20.78-25.39 20.78c-12 0-22.39-8.311-25.29-20.23l-29.57-121.2C254.1 322.6 240.1 311.4 224 311.4c-16.18 0-30.21 11.26-34.07 27.23l-29.57 121.2c-2.893 11.92-13.39 20.23-25.29 20.23c-12.21 0-22.71-8.639-25.5-20.78l-6.643-29.64c-9.105-40.36-14.14-81.48-17.1-122.8C81.93 272.1 73.9 240.5 53.86 212.8c-18.75-25.92-27.11-60.15-18.43-96.57c9.428-39.59 40.39-71.75 78.85-82.03c20.14-5.25 39.54-.4375 57.32 9.077l86.14 56.54c6.643 4.375 15.11 1.86 18.96-4.264c4.07-6.454 2.25-15.09-4.18-19.36l-24.21-15.86c3-1.531 6.215-2.735 9-4.813c22.39-16.84 48.75-28.65 76.39-21.33c38.46 10.28 69.43 42.43 78.85 82.03C421.2 152.7 412.9 187 394.1 212.8z',
			),
		),
		'label'             => __( 'Tooth', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'torii-gate'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 80V0L71.37 23.79C87.68 29.23 104.8 32 121.1 32H390C407.2 32 424.3 29.23 440.6 23.79L512 0V80C512 106.5 490.5 128 464 128H448V192H384V128H288V192H224V128H128V192H64V128H48C21.49 128 0 106.5 0 80zM32 288C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H448V480C448 497.7 433.7 512 416 512C398.3 512 384 497.7 384 480V288H128V480C128 497.7 113.7 512 96 512C78.33 512 64 497.7 64 480V288H32z',
			),
		),
		'label'             => __( 'Torii Gate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'tornado'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M407.8 42.09c7.531-6.562 10.22-17.12 6.688-26.5C410.1 6.219 401.1 0 391.1 0L24.16 .0313c-13 0-23.66 10.38-24 23.38C-.5495 50.32 1.349 74.22 4.945 95.98h353.9C367.9 80.76 383.4 63.34 407.8 42.09zM387.7 195.9c-22.02-25.33-38.96-44.87-39-67.93H12.05c11.47 40.4 30.38 71.34 53.15 96h345.8C403.4 214.1 395.4 204.8 387.7 195.9zM303.6 485.3c-1.125 10.12 4.249 19.84 13.44 24.28C320.3 511.2 323.9 512 327.4 512c6.219 0 12.34-2.406 16.94-7c43.73-43.61 73.32-83.63 89.35-121h-148.6C300.8 408.6 308.7 440 303.6 485.3zM431.7 255.1H100.5C127.1 276.3 155.8 291.6 182.4 305.8c28.14 15.01 54.04 28.9 74.73 46.14h186.8C446.4 341.1 447.1 330.4 448 320C448 295.4 441.4 274.6 431.7 255.1z',
			),
		),
		'label'             => __( 'Tornado', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'tower-broadcast'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M160.9 59.01C149.3 52.6 134.7 56.76 128.3 68.39C117.6 87.6 112 109.4 112 131.4c0 19.03 4.031 37.44 11.98 54.62c4.047 8.777 12.73 13.93 21.8 13.93c3.375 0 6.797-.7187 10.05-2.219C167.9 192.2 173.1 177.1 167.5 165.9C162.5 155.1 160 143.5 160 131.4c0-13.93 3.547-27.69 10.25-39.81C176.7 80.04 172.5 65.42 160.9 59.01zM62.61 2.363C46.17-4.32 27.58 3.676 20.95 20.02C7.047 54.36 0 90.69 0 127.1C0 165.3 7.047 201.7 20.95 236C25.98 248.5 37.97 256 50.63 256C54.61 256 58.69 255.3 62.61 253.7C79 247 86.91 228.4 80.27 212C69.47 185.3 64 157.1 64 128c0-29.06 5.469-57.3 16.27-83.99C86.91 27.64 79 8.988 62.61 2.363zM555 20.02c-6.609-16.41-25.23-24.31-41.66-17.66c-16.39 6.625-24.3 25.28-17.66 41.65C506.5 70.7 512 98.95 512 128c0 29.06-5.469 57.31-16.27 83.1C489.1 228.4 497 247 513.4 253.7C517.3 255.3 521.4 256 525.4 256c12.66 0 24.64-7.562 29.67-20C568.1 201.7 576 165.3 576 127.1C576 90.69 568.1 54.36 555 20.02zM420.2 58.23c-12.03 5.562-17.28 19.81-11.72 31.84C413.5 100.9 416 112.5 416 124.6c0 13.94-3.547 27.69-10.25 39.81c-6.422 11.59-2.219 26.22 9.375 32.62c3.688 2.031 7.672 3 11.61 3c8.438 0 16.64-4.47 21.02-12.37C458.4 168.4 464 146.6 464 124.6c0-19.03-4.031-37.43-11.98-54.62C446.5 57.89 432.1 52.7 420.2 58.23zM301.8 65.45C260.5 56.78 224 88.13 224 128c0 23.63 12.95 44.04 32 55.12v296.9c0 17.67 14.33 32 32 32s32-14.33 32-32V183.1c23.25-13.54 37.42-40.96 30.03-71.18C344.4 88.91 325 70.31 301.8 65.45z',
			),
		),
		'label'             => __( 'Tower Broadcast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology', 'travel' ),
	),
	'tower-cell'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M62.62 2.339C78.1 8.97 86.9 27.63 80.27 44.01C69.79 69.9 64 98.24 64 128C64 157.8 69.79 186.1 80.27 211.1C86.9 228.4 78.1 247 62.62 253.7C46.23 260.3 27.58 252.4 20.95 236C7.428 202.6 0 166.1 0 128C0 89.87 7.428 53.39 20.95 19.99C27.58 3.612 46.23-4.293 62.62 2.339V2.339zM513.4 2.339C529.8-4.293 548.4 3.612 555.1 19.99C568.6 53.39 576 89.87 576 128C576 166.1 568.6 202.6 555.1 236C548.4 252.4 529.8 260.3 513.4 253.7C497 247 489.1 228.4 495.7 211.1C506.2 186.1 512 157.8 512 128C512 98.24 506.2 69.9 495.7 44.01C489.1 27.63 497 8.969 513.4 2.338V2.339zM477.1 466.8C484.4 482.8 477.3 501.8 461.2 509.1C445.2 516.4 426.2 509.3 418.9 493.2L398.3 448H177.7L157.1 493.2C149.8 509.3 130.8 516.4 114.8 509.1C98.67 501.8 91.56 482.8 98.87 466.8L235.9 165.2C228.4 154.7 224 141.9 224 128C224 92.65 252.7 64 288 64C323.3 64 352 92.65 352 128C352 141.9 347.6 154.7 340.1 165.2L477.1 466.8zM369.2 384L354.7 352H221.3L206.8 384H369.2zM250.4 288H325.6L288 205.3L250.4 288zM152 128C152 147.4 156 165.8 163.3 182.4C168.6 194.5 163.1 208.7 150.9 213.1C138.8 219.3 124.6 213.8 119.3 201.6C109.5 179 104 154.1 104 128C104 101.9 109.5 76.96 119.3 54.39C124.6 42.25 138.8 36.7 150.9 42.01C163.1 47.31 168.6 61.46 163.3 73.61C156 90.23 152 108.6 152 128V128zM472 128C472 154.1 466.5 179 456.7 201.6C451.4 213.8 437.2 219.3 425.1 213.1C412.9 208.7 407.4 194.5 412.7 182.4C419.1 165.8 424 147.4 424 128C424 108.6 419.1 90.24 412.7 73.61C407.4 61.46 412.9 47.32 425.1 42.01C437.2 36.7 451.4 42.25 456.7 54.39C466.5 76.96 472 101.9 472 128V128z',
			),
		),
		'label'             => __( 'Tower Cell', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology', 'travel' ),
	),
	'tower-observation'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M241.7 3.378C250.7-1.126 261.3-1.126 270.3 3.378L430.3 83.38C446.1 91.28 452.5 110.5 444.6 126.3C439 137.5 427.7 143.1 416 144V224C416 241.7 401.7 256 384 256H379.1L411.1 448H480C497.7 448 512 462.3 512 480C512 497.7 497.7 512 480 512H384.5C384.2 512 383.8 512 383.4 512H128.6C128.2 512 127.9 512 127.5 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H100.9L132.9 256H128C110.3 256 96 241.7 96 224V144C84.27 143.1 72.98 137.5 67.38 126.3C59.47 110.5 65.88 91.28 81.69 83.38L241.7 3.378zM314.5 448L256 399.2L197.5 448H314.5zM193.1 284.3L256 336.8L318.9 284.3L314.2 256H197.8L193.1 284.3zM183.9 339.2L172.8 406.1L218.5 368L183.9 339.2zM293.5 368L339.2 406.1L328.1 339.2L293.5 368zM176 128C167.2 128 160 135.2 160 144C160 152.8 167.2 160 176 160H336C344.8 160 352 152.8 352 144C352 135.2 344.8 128 336 128H176z',
			),
		),
		'label'             => __( 'Tower Observation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'tractor'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M96 64C96 28.65 124.7 0 160 0H266.3C292.5 0 316 15.93 325.8 40.23L373.7 160H480V126.2C480 101.4 485.8 76.88 496.9 54.66L499.4 49.69C507.3 33.88 526.5 27.47 542.3 35.38C558.1 43.28 564.5 62.5 556.6 78.31L554.1 83.28C547.5 96.61 544 111.3 544 126.2V160H600C622.1 160 640 177.9 640 200V245.4C640 261.9 631.5 277.3 617.4 286.1L574.1 313.2C559.9 307.3 544.3 304 528 304C488.7 304 453.9 322.9 431.1 352H352C352 369.7 337.7 384 320 384H311.8C310.1 388.8 308.2 393.5 305.1 398.1L311.8 403.9C324.3 416.4 324.3 436.6 311.8 449.1L289.1 471.8C276.6 484.3 256.4 484.3 243.9 471.8L238.1 465.1C233.5 468.2 228.8 470.1 224 471.8V480C224 497.7 209.7 512 192 512H160C142.3 512 128 497.7 128 480V471.8C123.2 470.1 118.5 468.2 113.9 465.1L108.1 471.8C95.62 484.3 75.36 484.3 62.86 471.8L40.24 449.1C27.74 436.6 27.74 416.4 40.24 403.9L46.03 398.1C43.85 393.5 41.9 388.8 40.19 384H32C14.33 384 0 369.7 0 352V320C0 302.3 14.33 288 32 288H40.19C41.9 283.2 43.85 278.5 46.03 273.9L40.24 268.1C27.74 255.6 27.74 235.4 40.24 222.9L62.86 200.2C71.82 191.3 84.78 188.7 96 192.6L96 64zM160 64V160H304.7L266.3 64H160zM176 256C131.8 256 96 291.8 96 336C96 380.2 131.8 416 176 416C220.2 416 256 380.2 256 336C256 291.8 220.2 256 176 256zM440 424C440 394.2 454.8 367.9 477.4 352C491.7 341.9 509.2 336 528 336C530.7 336 533.3 336.1 535.9 336.3C580.8 340.3 616 378.1 616 424C616 472.6 576.6 512 528 512C479.4 512 440 472.6 440 424zM528 448C541.3 448 552 437.3 552 424C552 410.7 541.3 400 528 400C514.7 400 504 410.7 504 424C504 437.3 514.7 448 528 448z',
			),
		),
		'label'             => __( 'Tractor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'trade-federation'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8.8c-137 0-248 111-248 248s111 248 248 248 248-111 248-248-111-248-248-248zm0 482.8c-129.7 0-234.8-105.1-234.8-234.8S118.3 22 248 22s234.8 105.1 234.8 234.8S377.7 491.6 248 491.6zm155.1-328.5v-46.8H209.3V198H54.2l36.7 46h117.7v196.8h48.8V245h83.3v-47h-83.3v-34.8h145.7zm-73.3 45.1v23.9h-82.9v197.4h-26.8V232.1H96.3l-20.1-23.9h143.9v-80.6h171.8V152h-145v56.2zm-161.3-69l-12.4-20.7 2.1 23.8-23.5 5.4 23.3 5.4-2.1 24 12.3-20.5 22.2 9.5-15.7-18.1 15.8-18.1zm-29.6-19.7l9.3-11.5-12.7 5.9-8-12.4 1.7 13.9-14.3 3.8 13.7 2.7-.8 14.7 6.8-12.2 13.8 5.3zm165.4 145.2l-13.1 5.6-7.3-12.2 1.3 14.2-13.9 3.2 13.9 3.2-1.2 14.2 7.3-12.2 13.1 5.5-9.4-10.7zm106.9-77.2l-20.9 9.1-12-19.6 2.2 22.7-22.3 5.4 22.2 4.9-1.8 22.9 11.5-19.6 21.2 8.8-15.1-17zM248 29.9c-125.3 0-226.9 101.6-226.9 226.9S122.7 483.7 248 483.7s226.9-101.6 226.9-226.9S373.3 29.9 248 29.9zM342.6 196v51h-83.3v195.7h-52.7V245.9H89.9l-40-49.9h157.4v-81.6h197.8v50.7H259.4V196zM248 43.2c60.3 0 114.8 25 153.6 65.2H202.5V190H45.1C73.1 104.8 153.4 43.2 248 43.2zm0 427.1c-117.9 0-213.6-95.6-213.6-213.5 0-21.2 3.1-41.8 8.9-61.1L87.1 252h114.7v196.8h64.6V253h83.3v-62.7h-83.2v-19.2h145.6v-50.8c30.8 37 49.3 84.6 49.3 136.5 .1 117.9-95.5 213.5-213.4 213.5zM178.8 275l-11-21.4 1.7 24.5-23.7 3.9 23.8 5.9-3.7 23.8 13-20.9 21.5 10.8-15.8-18.8 16.9-17.1z',
			),
		),
		'label'             => __( 'Trade Federation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'trademark'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M618.1 97.67c-13.02-4.375-27.45 .1562-35.72 11.16L464 266.7l-118.4-157.8c-8.266-11.03-22.64-15.56-35.72-11.16C296.8 102 288 114.2 288 128v256c0 17.69 14.33 32 32 32s32-14.31 32-32v-160l86.41 115.2c12.06 16.12 39.13 16.12 51.19 0L576 224v160c0 17.69 14.33 32 32 32s32-14.31 32-32v-256C640 114.2 631.2 102 618.1 97.67zM224 96.01H32c-17.67 0-32 14.31-32 32s14.33 32 32 32h64v223.1c0 17.69 14.33 31.99 32 31.99s32-14.3 32-31.99V160h64c17.67 0 32-14.31 32-32S241.7 96.01 224 96.01z',
			),
		),
		'label'             => __( 'Trademark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'brands', 'brands', 'social' ),
	),
	'traffic-light'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M256 0C291.3 0 320 28.65 320 64V352C320 440.4 248.4 512 160 512C71.63 512 0 440.4 0 352V64C0 28.65 28.65 0 64 0H256zM160 320C133.5 320 112 341.5 112 368C112 394.5 133.5 416 160 416C186.5 416 208 394.5 208 368C208 341.5 186.5 320 160 320zM160 288C186.5 288 208 266.5 208 240C208 213.5 186.5 192 160 192C133.5 192 112 213.5 112 240C112 266.5 133.5 288 160 288zM160 64C133.5 64 112 85.49 112 112C112 138.5 133.5 160 160 160C186.5 160 208 138.5 208 112C208 85.49 186.5 64 160 64z',
			),
		),
		'label'             => __( 'Traffic Light', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'trailer'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M496 32C522.5 32 544 53.49 544 80V320H608C625.7 320 640 334.3 640 352C640 369.7 625.7 384 608 384H286.9C279.1 329.7 232.4 288 176 288C119.6 288 72.9 329.7 65.13 384H48C21.49 384 0 362.5 0 336V80C0 53.49 21.49 32 48 32H496zM64 112V264.2C73.83 256.1 84.55 249 96 243.2V112C96 103.2 88.84 96 80 96C71.16 96 64 103.2 64 112V112zM176 224C181.4 224 186.7 224.2 192 224.7V112C192 103.2 184.8 96 176 96C167.2 96 160 103.2 160 112V224.7C165.3 224.2 170.6 224 176 224zM256 243.2C267.4 249 278.2 256.1 288 264.2V112C288 103.2 280.8 96 272 96C263.2 96 256 103.2 256 112V243.2zM352 112V304C352 312.8 359.2 320 368 320C376.8 320 384 312.8 384 304V112C384 103.2 376.8 96 368 96C359.2 96 352 103.2 352 112zM480 112C480 103.2 472.8 96 464 96C455.2 96 448 103.2 448 112V304C448 312.8 455.2 320 464 320C472.8 320 480 312.8 480 304V112zM96 400C96 355.8 131.8 320 176 320C220.2 320 256 355.8 256 400C256 444.2 220.2 480 176 480C131.8 480 96 444.2 96 400zM176 432C193.7 432 208 417.7 208 400C208 382.3 193.7 368 176 368C158.3 368 144 382.3 144 400C144 417.7 158.3 432 176 432z',
			),
		),
		'label'             => __( 'Trailer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'train'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 0C405 0 448 42.98 448 96V352C448 399.1 412.8 439.7 366.9 446.9L412.9 492.9C419.9 499.9 414.9 512 404.1 512H365.3C356.8 512 348.6 508.6 342.6 502.6L288 448H160L105.4 502.6C99.37 508.6 91.23 512 82.75 512H43.04C33.06 512 28.06 499.9 35.12 492.9L81.14 446.9C35.18 439.7 0 399.1 0 352V96C0 42.98 42.98 0 96 0H352zM64 192C64 209.7 78.33 224 96 224H352C369.7 224 384 209.7 384 192V96C384 78.33 369.7 64 352 64H96C78.33 64 64 78.33 64 96V192zM224 384C250.5 384 272 362.5 272 336C272 309.5 250.5 288 224 288C197.5 288 176 309.5 176 336C176 362.5 197.5 384 224 384z',
			),
		),
		'label'             => __( 'Train', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'train-subway'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 0C405 0 448 42.98 448 96V352C448 399.1 412.8 439.7 366.9 446.9L412.9 492.9C419.9 499.9 414.9 512 404.1 512H365.3C356.8 512 348.6 508.6 342.6 502.6L288 448H160L105.4 502.6C99.37 508.6 91.23 512 82.75 512H43.04C33.06 512 28.06 499.9 35.12 492.9L81.14 446.9C35.18 439.7 0 399.1 0 352V96C0 42.98 42.98 0 96 0H352zM64 224C64 241.7 78.33 256 96 256H176C193.7 256 208 241.7 208 224V128C208 110.3 193.7 96 176 96H96C78.33 96 64 110.3 64 128V224zM272 96C254.3 96 240 110.3 240 128V224C240 241.7 254.3 256 272 256H352C369.7 256 384 241.7 384 224V128C384 110.3 369.7 96 352 96H272zM96 320C78.33 320 64 334.3 64 352C64 369.7 78.33 384 96 384C113.7 384 128 369.7 128 352C128 334.3 113.7 320 96 320zM352 384C369.7 384 384 369.7 384 352C384 334.3 369.7 320 352 320C334.3 320 320 334.3 320 352C320 369.7 334.3 384 352 384z',
			),
		),
		'label'             => __( 'Train Subway', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'train-tram'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M86.76 48C74.61 48 63.12 53.52 55.53 63.01L42.74 78.99C34.46 89.34 19.36 91.02 9.007 82.74C-1.343 74.46-3.021 59.36 5.259 49.01L18.04 33.03C34.74 12.15 60.03 0 86.76 0H361.2C387.1 0 413.3 12.15 429.1 33.03L442.7 49.01C451 59.36 449.3 74.46 438.1 82.74C428.6 91.02 413.5 89.34 405.3 78.99L392.5 63.01C384.9 53.52 373.4 48 361.2 48H248V96H288C341 96 384 138.1 384 192V352C384 382.6 369.7 409.8 347.4 427.4L412.9 492.9C419.9 499.9 414.9 512 404.1 512H365.3C356.8 512 348.6 508.6 342.6 502.6L288 448H160L105.4 502.6C99.37 508.6 91.23 512 82.74 512H43.04C33.06 512 28.06 499.9 35.12 492.9L100.6 427.4C78.3 409.8 64 382.6 64 352V192C64 138.1 106.1 96 160 96H200V48H86.76zM160 160C142.3 160 128 174.3 128 192V224C128 241.7 142.3 256 160 256H288C305.7 256 320 241.7 320 224V192C320 174.3 305.7 160 288 160H160zM160 320C142.3 320 128 334.3 128 352C128 369.7 142.3 384 160 384C177.7 384 192 369.7 192 352C192 334.3 177.7 320 160 320zM288 384C305.7 384 320 369.7 320 352C320 334.3 305.7 320 288 320C270.3 320 256 334.3 256 352C256 369.7 270.3 384 288 384z',
			),
		),
		'label'             => __( 'Train Tram', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'transgender'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M498.6 .0003h-94.37c-17.96 0-26.95 21.71-14.25 34.41L411.1 55.61l-67.01 67.01C318.8 105.9 288.6 96 256 96S193.2 105.9 167.9 122.6L151.6 106.3l6.061-6.062c6.25-6.248 6.25-16.38 0-22.63L146.3 66.34c-6.25-6.248-16.38-6.248-22.63 0L117.7 72.41L100.9 55.61L122.1 34.41c12.7-12.7 3.703-34.41-14.25-34.41H13.44C6.016 .0003 0 6.016 0 13.44v94.37c0 17.96 21.71 26.95 34.41 14.25l21.2-21.2l16.8 16.8L66.35 123.7c-6.25 6.248-6.25 16.38 0 22.63l11.31 11.31c6.25 6.248 16.38 6.248 22.63 0l6.061-6.061L122.6 167.9C105.9 193.2 96 223.4 96 256c0 77.4 54.97 141.9 128 156.8v19.23l-16-.0014c-8.836 0-16 7.165-16 16v15.1c0 8.836 7.164 16 16 16L224 480v16c0 8.836 7.164 16 16 16h32c8.836 0 16-7.164 16-16v-16l16-.0001c8.836 0 16-7.164 16-16v-15.1c0-8.836-7.164-16-16-16L288 432v-19.23c73.03-14.83 128-79.37 128-156.8c0-32.6-9.867-62.85-26.61-88.14l67.01-67.01l21.2 21.2C490.3 134.8 512 125.8 512 107.8V13.44C512 6.016 505.1 .0003 498.6 .0003zM256 336c-44.11 0-80-35.89-80-80c0-44.11 35.89-80 80-80c44.11 0 80 35.89 80 80C336 300.1 300.1 336 256 336z',
			),
		),
		'label'             => __( 'Transgender', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'trash'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69zM394.8 466.1C393.2 492.3 372.3 512 346.9 512H101.1C75.75 512 54.77 492.3 53.19 466.1L31.1 128H416L394.8 466.1z',
			),
		),
		'label'             => __( 'Trash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'trash-arrow-up'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2zM31.1 128H416L394.8 466.1C393.2 492.3 372.3 512 346.9 512H101.1C75.75 512 54.77 492.3 53.19 466.1L31.1 128zM207 199L127 279C117.7 288.4 117.7 303.6 127 312.1C136.4 322.3 151.6 322.3 160.1 312.1L199.1 273.9V408C199.1 421.3 210.7 432 223.1 432C237.3 432 248 421.3 248 408V273.9L287 312.1C296.4 322.3 311.6 322.3 320.1 312.1C330.3 303.6 330.3 288.4 320.1 279L240.1 199C236.5 194.5 230.4 191.1 223.1 191.1C217.6 191.1 211.5 194.5 207 199V199z',
			),
		),
		'label'             => __( 'Trash Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'trash-can'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69zM31.1 128H416V448C416 483.3 387.3 512 352 512H95.1C60.65 512 31.1 483.3 31.1 448V128zM111.1 208V432C111.1 440.8 119.2 448 127.1 448C136.8 448 143.1 440.8 143.1 432V208C143.1 199.2 136.8 192 127.1 192C119.2 192 111.1 199.2 111.1 208zM207.1 208V432C207.1 440.8 215.2 448 223.1 448C232.8 448 240 440.8 240 432V208C240 199.2 232.8 192 223.1 192C215.2 192 207.1 199.2 207.1 208zM304 208V432C304 440.8 311.2 448 320 448C328.8 448 336 440.8 336 432V208C336 199.2 328.8 192 320 192C311.2 192 304 199.2 304 208z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 400C160 408.8 152.8 416 144 416C135.2 416 128 408.8 128 400V192C128 183.2 135.2 176 144 176C152.8 176 160 183.2 160 192V400zM240 400C240 408.8 232.8 416 224 416C215.2 416 208 408.8 208 400V192C208 183.2 215.2 176 224 176C232.8 176 240 183.2 240 192V400zM320 400C320 408.8 312.8 416 304 416C295.2 416 288 408.8 288 400V192C288 183.2 295.2 176 304 176C312.8 176 320 183.2 320 192V400zM317.5 24.94L354.2 80H424C437.3 80 448 90.75 448 104C448 117.3 437.3 128 424 128H416V432C416 476.2 380.2 512 336 512H112C67.82 512 32 476.2 32 432V128H24C10.75 128 0 117.3 0 104C0 90.75 10.75 80 24 80H93.82L130.5 24.94C140.9 9.357 158.4 0 177.1 0H270.9C289.6 0 307.1 9.358 317.5 24.94H317.5zM151.5 80H296.5L277.5 51.56C276 49.34 273.5 48 270.9 48H177.1C174.5 48 171.1 49.34 170.5 51.56L151.5 80zM80 432C80 449.7 94.33 464 112 464H336C353.7 464 368 449.7 368 432V128H80V432z',
			),
		),
		'label'             => __( 'Trash Can', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'trash-can-arrow-up'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M284.2 0C296.3 0 307.4 6.848 312.8 17.69L320 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H128L135.2 17.69C140.6 6.848 151.7 0 163.8 0H284.2zM31.1 128H416V448C416 483.3 387.3 512 352 512H95.1C60.65 512 31.1 483.3 31.1 448V128zM207 199L127 279C117.7 288.4 117.7 303.6 127 312.1C136.4 322.3 151.6 322.3 160.1 312.1L199.1 273.9V408C199.1 421.3 210.7 432 223.1 432C237.3 432 248 421.3 248 408V273.9L287 312.1C296.4 322.3 311.6 322.3 320.1 312.1C330.3 303.6 330.3 288.4 320.1 279L240.1 199C236.5 194.5 230.4 191.1 223.1 191.1C217.6 191.1 211.5 194.5 207 199V199z',
			),
		),
		'label'             => __( 'Trash Can Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'tree'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M413.8 447.1L256 448l0 31.99C256 497.7 241.8 512 224.1 512c-17.67 0-32.1-14.32-32.1-31.99l0-31.99l-158.9-.0099c-28.5 0-43.69-34.49-24.69-56.4l68.98-79.59H62.22c-25.41 0-39.15-29.8-22.67-49.13l60.41-70.85H89.21c-21.28 0-32.87-22.5-19.28-37.31l134.8-146.5c10.4-11.3 28.22-11.3 38.62-.0033l134.9 146.5c13.62 14.81 2.001 37.31-19.28 37.31h-10.77l60.35 70.86c16.46 19.34 2.716 49.12-22.68 49.12h-15.2l68.98 79.59C458.7 413.7 443.1 447.1 413.8 447.1z',
			),
		),
		'label'             => __( 'Tree', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'tree-city'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 48C288 21.49 309.5 0 336 0H432C458.5 0 480 21.49 480 48V192H520V120C520 106.7 530.7 96 544 96C557.3 96 568 106.7 568 120V192H592C618.5 192 640 213.5 640 240V464C640 490.5 618.5 512 592 512H336C309.5 512 288 490.5 288 464V48zM352 112C352 120.8 359.2 128 368 128H400C408.8 128 416 120.8 416 112V80C416 71.16 408.8 64 400 64H368C359.2 64 352 71.16 352 80V112zM368 160C359.2 160 352 167.2 352 176V208C352 216.8 359.2 224 368 224H400C408.8 224 416 216.8 416 208V176C416 167.2 408.8 160 400 160H368zM352 304C352 312.8 359.2 320 368 320H400C408.8 320 416 312.8 416 304V272C416 263.2 408.8 256 400 256H368C359.2 256 352 263.2 352 272V304zM528 256C519.2 256 512 263.2 512 272V304C512 312.8 519.2 320 528 320H560C568.8 320 576 312.8 576 304V272C576 263.2 568.8 256 560 256H528zM512 400C512 408.8 519.2 416 528 416H560C568.8 416 576 408.8 576 400V368C576 359.2 568.8 352 560 352H528C519.2 352 512 359.2 512 368V400zM224 160C224 166 223 171 222 176C242 190 256 214 256 240C256 285 220 320 176 320H160V480C160 498 145 512 128 512C110 512 96 498 96 480V320H80C35 320 0 285 0 240C0 214 13 190 33 176C32 171 32 166 32 160C32 107 74 64 128 64C181 64 224 107 224 160z',
			),
		),
		'label'             => __( 'Tree City', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'trello'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M392.3 32H56.1C25.1 32 0 57.1 0 88c-.1 0 0-4 0 336 0 30.9 25.1 56 56 56h336.2c30.8-.2 55.7-25.2 55.7-56V88c.1-30.8-24.8-55.8-55.6-56zM197 371.3c-.2 14.7-12.1 26.6-26.9 26.6H87.4c-14.8 .1-26.9-11.8-27-26.6V117.1c0-14.8 12-26.9 26.9-26.9h82.9c14.8 0 26.9 12 26.9 26.9v254.2zm193.1-112c0 14.8-12 26.9-26.9 26.9h-81c-14.8 0-26.9-12-26.9-26.9V117.2c0-14.8 12-26.9 26.8-26.9h81.1c14.8 0 26.9 12 26.9 26.9v142.1z',
			),
		),
		'label'             => __( 'Trello', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'triangle-exclamation'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M506.3 417l-213.3-364c-16.33-28-57.54-28-73.98 0l-213.2 364C-10.59 444.9 9.849 480 42.74 480h426.6C502.1 480 522.6 445 506.3 417zM232 168c0-13.25 10.75-24 24-24S280 154.8 280 168v128c0 13.25-10.75 24-23.1 24S232 309.3 232 296V168zM256 416c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 401.9 273.4 416 256 416z',
			),
		),
		'label'             => __( 'Triangle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'trophy'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M572.1 82.38C569.5 71.59 559.8 64 548.7 64h-100.8c.2422-12.45 .1078-23.7-.1559-33.02C447.3 13.63 433.2 0 415.8 0H160.2C142.8 0 128.7 13.63 128.2 30.98C127.1 40.3 127.8 51.55 128.1 64H27.26C16.16 64 6.537 71.59 3.912 82.38C3.1 85.78-15.71 167.2 37.07 245.9c37.44 55.82 100.6 95.03 187.5 117.4c18.7 4.805 31.41 22.06 31.41 41.37C256 428.5 236.5 448 212.6 448H208c-26.51 0-47.99 21.49-47.99 48c0 8.836 7.163 16 15.1 16h223.1c8.836 0 15.1-7.164 15.1-16c0-26.51-21.48-48-47.99-48h-4.644c-23.86 0-43.36-19.5-43.36-43.35c0-19.31 12.71-36.57 31.41-41.37c86.96-22.34 150.1-61.55 187.5-117.4C591.7 167.2 572.9 85.78 572.1 82.38zM77.41 219.8C49.47 178.6 47.01 135.7 48.38 112h80.39c5.359 59.62 20.35 131.1 57.67 189.1C137.4 281.6 100.9 254.4 77.41 219.8zM498.6 219.8c-23.44 34.6-59.94 61.75-109 81.22C426.9 243.1 441.9 171.6 447.2 112h80.39C528.1 135.7 526.5 178.7 498.6 219.8z',
			),
		),
		'label'             => __( 'Trophy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'trowel'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M343.9 213.4L245.3 312L310.6 377.4C318.5 385.3 321.8 396.8 319.1 407.6C316.4 418.5 308.2 427.2 297.5 430.5L41.55 510.5C30.18 514.1 17.79 511 9.373 502.6C.9565 494.2-2.093 481.8 1.458 470.5L81.46 214.5C84.8 203.8 93.48 195.6 104.4 192.9C115.2 190.3 126.7 193.5 134.6 201.4L200 266.7L298.6 168.1C284.4 153.5 284.5 130.1 298.9 115.6L394.4 20.18C421.3-6.728 464.9-6.728 491.8 20.18C518.7 47.1 518.7 90.73 491.8 117.6L396.4 213.1C381.9 227.5 358.5 227.6 343.9 213.4V213.4z',
			),
		),
		'label'             => __( 'Trowel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'trowel-bricks'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M240.8 4.779C250.3 10.61 256 20.91 256 32V104H345C348.6 90.2 361.1 80 376 80H464C490.5 80 512 101.5 512 128C512 154.5 490.5 176 464 176H376C361.1 176 348.6 165.8 345 152H256V224C256 235.1 250.3 245.4 240.8 251.2C231.4 257.1 219.6 257.6 209.7 252.6L17.69 156.6C6.848 151.2 0 140.1 0 128C0 115.9 6.848 104.8 17.69 99.38L209.7 3.378C219.6-1.581 231.4-1.051 240.8 4.779V4.779zM288 256C288 238.3 302.3 224 320 224H480C497.7 224 512 238.3 512 256V320C512 337.7 497.7 352 480 352H320C302.3 352 288 337.7 288 320V256zM128 384C145.7 384 160 398.3 160 416V480C160 497.7 145.7 512 128 512H32C14.33 512 0 497.7 0 480V416C0 398.3 14.33 384 32 384H128zM480 384C497.7 384 512 398.3 512 416V480C512 497.7 497.7 512 480 512H224C206.3 512 192 497.7 192 480V416C192 398.3 206.3 384 224 384H480z',
			),
		),
		'label'             => __( 'Trowel Bricks', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'truck'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M368 0C394.5 0 416 21.49 416 48V96H466.7C483.7 96 499.1 102.7 512 114.7L589.3 192C601.3 204 608 220.3 608 237.3V352C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H576C576 469 533 512 480 512C426.1 512 384 469 384 416H256C256 469 213 512 160 512C106.1 512 64 469 64 416H48C21.49 416 0 394.5 0 368V48C0 21.49 21.49 0 48 0H368zM416 160V256H544V237.3L466.7 160H416zM160 368C133.5 368 112 389.5 112 416C112 442.5 133.5 464 160 464C186.5 464 208 442.5 208 416C208 389.5 186.5 368 160 368zM480 464C506.5 464 528 442.5 528 416C528 389.5 506.5 368 480 368C453.5 368 432 389.5 432 416C432 442.5 453.5 464 480 464z',
			),
		),
		'label'             => __( 'Truck', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'truck-arrow-right'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H368C394.5 0 416 21.49 416 48V96H466.7C483.7 96 499.1 102.7 512 114.7L589.3 192C601.3 204 608 220.3 608 237.3V352C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H576C576 469 533 512 480 512C426.1 512 384 469 384 416H256C256 469 213 512 160 512C106.1 512 64 469 64 416H48C21.49 416 0 394.5 0 368V48zM544 256V237.3L466.7 160H416V256H544zM160 464C186.5 464 208 442.5 208 416C208 389.5 186.5 368 160 368C133.5 368 112 389.5 112 416C112 442.5 133.5 464 160 464zM480 368C453.5 368 432 389.5 432 416C432 442.5 453.5 464 480 464C506.5 464 528 442.5 528 416C528 389.5 506.5 368 480 368zM256.1 95.03C247.6 85.66 232.4 85.66 223 95.03C213.7 104.4 213.7 119.6 223 128.1L262.1 168H96C82.75 168 72 178.7 72 192C72 205.3 82.75 216 96 216H262.1L223 255C213.7 264.4 213.7 279.6 223 288.1C232.4 298.3 247.6 298.3 256.1 288.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175L256.1 95.03z',
			),
		),
		'label'             => __( 'Truck Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-droplet'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H368C394.5 0 416 21.49 416 48V96H466.7C483.7 96 499.1 102.7 512 114.7L589.3 192C601.3 204 608 220.3 608 237.3V352C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H576C576 469 533 512 480 512C426.1 512 384 469 384 416H256C256 469 213 512 160 512C106.1 512 64 469 64 416H48C21.49 416 0 394.5 0 368V48zM544 256V237.3L466.7 160H416V256H544zM160 464C186.5 464 208 442.5 208 416C208 389.5 186.5 368 160 368C133.5 368 112 389.5 112 416C112 442.5 133.5 464 160 464zM480 368C453.5 368 432 389.5 432 416C432 442.5 453.5 464 480 464C506.5 464 528 442.5 528 416C528 389.5 506.5 368 480 368zM208 272C247.8 272 280 242.4 280 205.1C280 179 240.6 123 220.1 95.71C213.1 87.54 202 87.54 195.9 95.71C175.4 123 136 179 136 205.1C136 242.4 168.2 272 208 272V272z',
			),
		),
		'label'             => __( 'Truck Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'truck-fast'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M112 0C85.49 0 64 21.49 64 48V96H16C7.163 96 0 103.2 0 112C0 120.8 7.163 128 16 128H272C280.8 128 288 135.2 288 144C288 152.8 280.8 160 272 160H48C39.16 160 32 167.2 32 176C32 184.8 39.16 192 48 192H240C248.8 192 256 199.2 256 208C256 216.8 248.8 224 240 224H16C7.163 224 0 231.2 0 240C0 248.8 7.163 256 16 256H208C216.8 256 224 263.2 224 272C224 280.8 216.8 288 208 288H64V416C64 469 106.1 512 160 512C213 512 256 469 256 416H384C384 469 426.1 512 480 512C533 512 576 469 576 416H608C625.7 416 640 401.7 640 384C640 366.3 625.7 352 608 352V237.3C608 220.3 601.3 204 589.3 192L512 114.7C499.1 102.7 483.7 96 466.7 96H416V48C416 21.49 394.5 0 368 0H112zM544 237.3V256H416V160H466.7L544 237.3zM160 464C133.5 464 112 442.5 112 416C112 389.5 133.5 368 160 368C186.5 368 208 389.5 208 416C208 442.5 186.5 464 160 464zM528 416C528 442.5 506.5 464 480 464C453.5 464 432 442.5 432 416C432 389.5 453.5 368 480 368C506.5 368 528 389.5 528 416z',
			),
		),
		'label'             => __( 'Truck Fast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'truck-field'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 96C32 60.65 60.65 32 96 32H320C343.7 32 364.4 44.87 375.4 64H427.2C452.5 64 475.4 78.9 485.7 102L538.5 220.8C538.1 221.9 539.4 222.9 539.8 223.1H544C579.3 223.1 608 252.7 608 287.1V319.1C625.7 319.1 640 334.3 640 352C640 369.7 625.7 384 608 384H576C576 437 533 480 480 480C426.1 480 384 437 384 384H256C256 437 213 480 160 480C106.1 480 64 437 64 384H32C14.33 384 0 369.7 0 352C0 334.3 14.33 319.1 32 319.1V287.1C14.33 287.1 0 273.7 0 255.1V159.1C0 142.3 14.33 127.1 32 127.1V96zM469.9 224L427.2 128H384V224H469.9zM160 432C186.5 432 208 410.5 208 384C208 357.5 186.5 336 160 336C133.5 336 112 357.5 112 384C112 410.5 133.5 432 160 432zM480 336C453.5 336 432 357.5 432 384C432 410.5 453.5 432 480 432C506.5 432 528 410.5 528 384C528 357.5 506.5 336 480 336z',
			),
		),
		'label'             => __( 'Truck Field', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-field-un'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 32C343.7 32 364.4 44.87 375.4 64H427.2C452.5 64 475.4 78.9 485.7 102L538.5 220.8C538.1 221.9 539.4 222.9 539.8 224H544C579.3 224 608 252.7 608 288V320C625.7 320 640 334.3 640 352C640 369.7 625.7 384 608 384H576C576 437 533 480 480 480C426.1 480 384 437 384 384H256C256 437 213 480 160 480C106.1 480 64 437 64 384H32C14.33 384 0 369.7 0 352C0 334.3 14.33 320 32 320V288C14.33 288 0 273.7 0 256V160C0 142.3 14.33 128 32 128V96C32 60.65 60.65 32 96 32L320 32zM384 128V224H469.9L427.2 128H384zM160 336C133.5 336 112 357.5 112 384C112 410.5 133.5 432 160 432C186.5 432 208 410.5 208 384C208 357.5 186.5 336 160 336zM480 432C506.5 432 528 410.5 528 384C528 357.5 506.5 336 480 336C453.5 336 432 357.5 432 384C432 410.5 453.5 432 480 432zM253.3 135.1C249.4 129.3 242.1 126.6 235.4 128.7C228.6 130.7 224 136.9 224 144V240C224 248.8 231.2 256 240 256C248.8 256 256 248.8 256 240V196.8L290.7 248.9C294.6 254.7 301.9 257.4 308.6 255.3C315.4 253.3 320 247.1 320 240V144C320 135.2 312.8 128 304 128C295.2 128 288 135.2 288 144V187.2L253.3 135.1zM128 144C128 135.2 120.8 128 112 128C103.2 128 96 135.2 96 144V208C96 234.5 117.5 256 144 256C170.5 256 192 234.5 192 208V144C192 135.2 184.8 128 176 128C167.2 128 160 135.2 160 144V208C160 216.8 152.8 224 144 224C135.2 224 128 216.8 128 208V144z',
			),
		),
		'label'             => __( 'Truck Field Un', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-front'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 80C0 35.82 35.82 0 80 0H432C476.2 0 512 35.82 512 80V368C512 394.2 499.4 417.4 480 432V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H128V480C128 497.7 113.7 512 96 512H64C46.33 512 32 497.7 32 480V432C12.57 417.4 0 394.2 0 368V80zM129.9 152.2L112 224H400L382.1 152.2C378.5 137.1 365.7 128 351 128H160.1C146.3 128 133.5 137.1 129.9 152.2H129.9zM96 288C78.33 288 64 302.3 64 320C64 337.7 78.33 352 96 352C113.7 352 128 337.7 128 320C128 302.3 113.7 288 96 288zM416 352C433.7 352 448 337.7 448 320C448 302.3 433.7 288 416 288C398.3 288 384 302.3 384 320C384 337.7 398.3 352 416 352z',
			),
		),
		'label'             => __( 'Truck Front', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-medical'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M368 0C394.5 0 416 21.49 416 48V96H466.7C483.7 96 499.1 102.7 512 114.7L589.3 192C601.3 204 608 220.3 608 237.3V352C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H576C576 469 533 512 480 512C426.1 512 384 469 384 416H256C256 469 213 512 160 512C106.1 512 64 469 64 416H48C21.49 416 0 394.5 0 368V48C0 21.49 21.49 0 48 0H368zM416 160V256H544V237.3L466.7 160H416zM160 368C133.5 368 112 389.5 112 416C112 442.5 133.5 464 160 464C186.5 464 208 442.5 208 416C208 389.5 186.5 368 160 368zM480 464C506.5 464 528 442.5 528 416C528 389.5 506.5 368 480 368C453.5 368 432 389.5 432 416C432 442.5 453.5 464 480 464zM112 176C112 184.8 119.2 192 128 192H176V240C176 248.8 183.2 256 192 256H224C232.8 256 240 248.8 240 240V192H288C296.8 192 304 184.8 304 176V144C304 135.2 296.8 128 288 128H240V80C240 71.16 232.8 64 224 64H192C183.2 64 176 71.16 176 80V128H128C119.2 128 112 135.2 112 144V176z',
			),
		),
		'label'             => __( 'Truck Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'truck-monster'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M419.2 25.6L496 128H576C593.7 128 608 142.3 608 160V224C625.7 224 640 238.3 640 256C640 273.7 625.7 287.1 608 288C578.8 249.1 532.3 224 480 224C427.7 224 381.2 249.1 351.1 288H288C258.8 249.1 212.3 224 160 224C107.7 224 61.18 249.1 31.99 288C14.32 287.1 0 273.7 0 256C0 238.3 14.33 224 32 224V160C32 142.3 46.33 128 64 128H224V48C224 21.49 245.5 0 272 0H368C388.1 0 407.1 9.484 419.2 25.6H419.2zM288 128H416L368 64H288V128zM168 256C180.1 256 190.1 264.9 191.8 276.6C199.4 278.8 206.7 281.9 213.5 285.6C222.9 278.5 236.3 279.3 244.9 287.8L256.2 299.1C264.7 307.7 265.5 321.1 258.4 330.5C262.1 337.3 265.2 344.6 267.4 352.2C279.1 353.9 288 363.9 288 376V392C288 404.1 279.1 414.1 267.4 415.8C265.2 423.4 262.1 430.7 258.4 437.5C265.5 446.9 264.7 460.3 256.2 468.9L244.9 480.2C236.3 488.7 222.9 489.5 213.5 482.4C206.7 486.1 199.4 489.2 191.8 491.4C190.1 503.1 180.1 512 167.1 512H151.1C139.9 512 129.9 503.1 128.2 491.4C120.6 489.2 113.3 486.1 106.5 482.4C97.09 489.5 83.7 488.7 75.15 480.2L63.83 468.9C55.28 460.3 54.53 446.9 61.58 437.5C57.85 430.7 54.81 423.4 52.57 415.8C40.94 414.1 31.1 404.1 31.1 392V376C31.1 363.9 40.94 353.9 52.57 352.2C54.81 344.6 57.85 337.3 61.58 330.5C54.53 321.1 55.28 307.7 63.83 299.1L75.15 287.8C83.7 279.3 97.09 278.5 106.5 285.6C113.3 281.9 120.6 278.8 128.2 276.6C129.9 264.9 139.9 255.1 151.1 255.1L168 256zM160 432C186.5 432 208 410.5 208 384C208 357.5 186.5 336 160 336C133.5 336 112 357.5 112 384C112 410.5 133.5 432 160 432zM448.2 276.6C449.9 264.9 459.9 256 472 256H488C500.1 256 510.1 264.9 511.8 276.6C519.4 278.8 526.7 281.9 533.5 285.6C542.9 278.5 556.3 279.3 564.9 287.8L576.2 299.1C584.7 307.7 585.5 321.1 578.4 330.5C582.1 337.3 585.2 344.6 587.4 352.2C599.1 353.9 608 363.9 608 376V392C608 404.1 599.1 414.1 587.4 415.8C585.2 423.4 582.1 430.7 578.4 437.5C585.5 446.9 584.7 460.3 576.2 468.9L564.9 480.2C556.3 488.7 542.9 489.5 533.5 482.4C526.7 486.1 519.4 489.2 511.8 491.4C510.1 503.1 500.1 512 488 512H472C459.9 512 449.9 503.1 448.2 491.4C440.6 489.2 433.3 486.1 426.5 482.4C417.1 489.5 403.7 488.7 395.1 480.2L383.8 468.9C375.3 460.3 374.5 446.9 381.6 437.5C377.9 430.7 374.8 423.4 372.6 415.8C360.9 414.1 352 404.1 352 392V376C352 363.9 360.9 353.9 372.6 352.2C374.8 344.6 377.9 337.3 381.6 330.5C374.5 321.1 375.3 307.7 383.8 299.1L395.1 287.8C403.7 279.3 417.1 278.5 426.5 285.6C433.3 281.9 440.6 278.8 448.2 276.6L448.2 276.6zM480 336C453.5 336 432 357.5 432 384C432 410.5 453.5 432 480 432C506.5 432 528 410.5 528 384C528 357.5 506.5 336 480 336z',
			),
		),
		'label'             => __( 'Truck Monster', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-moving'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M416 32C451.3 32 480 60.65 480 96V144H528.8C545.6 144 561.5 151.5 572.2 164.5L630.1 236.4C636.8 243.5 640 252.5 640 261.7V352C640 369.7 625.7 384 608 384H606.4C607.4 389.2 608 394.5 608 400C608 444.2 572.2 480 528 480C483.8 480 448 444.2 448 400C448 394.5 448.6 389.2 449.6 384H286.4C287.4 389.2 288 394.5 288 400C288 444.2 252.2 480 208 480C181.8 480 158.6 467.4 144 448C129.4 467.4 106.2 480 80 480C35.82 480 0 444.2 0 400V96C0 60.65 28.65 32 64 32H416zM535 194.9C533.5 193.1 531.2 192 528.8 192H480V256H584.1L535 194.9zM528 432C545.7 432 560 417.7 560 400C560 382.3 545.7 368 528 368C510.3 368 496 382.3 496 400C496 417.7 510.3 432 528 432zM208 368C190.3 368 176 382.3 176 400C176 417.7 190.3 432 208 432C225.7 432 240 417.7 240 400C240 382.3 225.7 368 208 368zM80 432C97.67 432 112 417.7 112 400C112 382.3 97.67 368 80 368C62.33 368 48 382.3 48 400C48 417.7 62.33 432 80 432z',
			),
		),
		'label'             => __( 'Truck Moving', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'truck-pickup'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M272 32H368.6C388.1 32 406.5 40.84 418.6 56.02L527.4 192H576C593.7 192 608 206.3 608 224V288C625.7 288 640 302.3 640 320C640 337.7 625.7 352 608 352H574.9C575.6 357.2 576 362.6 576 368C576 429.9 525.9 480 464 480C402.1 480 352 429.9 352 368C352 362.6 352.4 357.2 353.1 352H286.9C287.6 357.2 288 362.6 288 368C288 429.9 237.9 480 176 480C114.1 480 64 429.9 64 368C64 362.6 64.39 357.2 65.13 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288V224C32 206.3 46.33 192 64 192H224V80C224 53.49 245.5 32 272 32H272zM368.6 96H288V192H445.4L368.6 96zM176 416C202.5 416 224 394.5 224 368C224 341.5 202.5 320 176 320C149.5 320 128 341.5 128 368C128 394.5 149.5 416 176 416zM464 416C490.5 416 512 394.5 512 368C512 341.5 490.5 320 464 320C437.5 320 416 341.5 416 368C416 394.5 437.5 416 464 416z',
			),
		),
		'label'             => __( 'Truck Pickup', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-plane'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M256 86.06L256 182.9L256 184V411.5L256.1 411.6C257.3 433.8 269.8 452.9 288 463.4V496C288 501.2 288.8 506.3 290.4 510.1L200 480.9L109.1 511.2C104.2 512.8 98.82 511.1 94.64 508.1C90.47 505.1 88 501.1 88 496V464C88 459.1 90.21 454.5 94 451.5L144 411.5V330.3L20.6 367.3C15.75 368.8 10.51 367.9 6.449 364.8C2.391 361.8 0 357.1 0 352V288C0 282.4 2.949 277.2 7.768 274.3L144 192.5V86.06C144 54.68 169.4 0 200 0C231.5 0 256 54.68 256 86.06V86.06zM288 176C288 149.5 309.5 128 336 128H592C618.5 128 640 149.5 640 176V400C640 420.9 626.6 438.7 608 445.3V488C608 501.3 597.3 512 584 512H568C554.7 512 544 501.3 544 488V448H384V488C384 501.3 373.3 512 360 512H344C330.7 512 320 501.3 320 488V445.3C301.4 438.7 288 420.9 288 400V176zM367.8 254.7L352 304H576L560.2 254.7C556.9 246 548.9 240 539.7 240H388.3C379.1 240 371.1 246 367.8 254.7H367.8zM568 400C581.3 400 592 389.3 592 376C592 362.7 581.3 352 568 352C554.7 352 544 362.7 544 376C544 389.3 554.7 400 568 400zM360 352C346.7 352 336 362.7 336 376C336 389.3 346.7 400 360 400C373.3 400 384 389.3 384 376C384 362.7 373.3 352 360 352z',
			),
		),
		'label'             => __( 'Truck Plane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'truck-ramp-box'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 .0003V400C640 461.9 589.9 512 528 512C467 512 417.5 463.3 416 402.7L48.41 502.9C31.36 507.5 13.77 497.5 9.126 480.4C4.48 463.4 14.54 445.8 31.59 441.1L352 353.8V64C352 28.65 380.7 0 416 0L640 .0003zM528 352C501.5 352 480 373.5 480 400C480 426.5 501.5 448 528 448C554.5 448 576 426.5 576 400C576 373.5 554.5 352 528 352zM23.11 207.7C18.54 190.6 28.67 173.1 45.74 168.5L92.1 156.1L112.8 233.4C115.1 241.9 123.9 246.1 132.4 244.7L163.3 236.4C171.8 234.1 176.9 225.3 174.6 216.8L153.9 139.5L200.3 127.1C217.4 122.5 234.9 132.7 239.5 149.7L280.9 304.3C285.5 321.4 275.3 338.9 258.3 343.5L103.7 384.9C86.64 389.5 69.1 379.3 64.52 362.3L23.11 207.7z',
			),
		),
		'label'             => __( 'Truck Ramp Box', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'tty'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M271.1 364v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40c0-6.625-5.375-12-12-12h-40C277.3 352 271.1 357.4 271.1 364zM367.1 364v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40c0-6.625-5.375-12-12-12h-40C373.3 352 367.1 357.4 367.1 364zM275.1 256h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.376 12 12 12h39.1c6.625 0 12-5.375 12-12v-40C287.1 261.4 282.6 256 275.1 256zM83.96 448h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40C95.96 453.4 90.59 448 83.96 448zM175.1 364v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40c0-6.625-5.375-12-12-12h-40C181.3 352 175.1 357.4 175.1 364zM371.1 256h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.372 12 11.1 12h39.1c6.625 0 12-5.375 12-12v-40C383.1 261.4 378.6 256 371.1 256zM467.1 256h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.369 12 11.99 12h39.1c6.625 0 12.01-5.375 12.01-12v-40C479.1 261.4 474.6 256 467.1 256zM371.1 448h-232c-6.625 0-12 5.375-12 12v40c0 6.625 5.375 12 12 12h232c6.625 0 12-5.375 12-12v-40C383.1 453.4 378.6 448 371.1 448zM179.1 256h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.38 12 12 12h39.1c6.625 0 11.1-5.375 11.1-12v-40C191.1 261.4 186.6 256 179.1 256zM467.1 448h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40C479.1 453.4 474.6 448 467.1 448zM79.96 364v40c0 6.625 5.375 12 12 12h40c6.625 0 12-5.375 12-12v-40c0-6.625-5.375-12-12-12h-40C85.34 352 79.96 357.4 79.96 364zM83.96 256h-40c-6.625 0-12 5.375-12 12v40c0 6.625 5.383 12 12.01 12H83.97c6.625 0 11.99-5.375 11.99-12v-40C95.96 261.4 90.59 256 83.96 256zM504.9 102.9C367.7-34.31 144.3-34.32 7.083 102.9c-7.975 7.973-9.375 20.22-3.391 29.74l42.17 67.47c6.141 9.844 18.47 13.88 29.35 9.632l84.36-33.74C169.5 172.1 175.6 161.1 174.5 151.3l-5.303-53.27c56.15-19.17 117.4-19.17 173.6 .0059L337.5 151.3c-1.139 10.59 4.997 20.78 14.96 24.73l84.35 33.73c10.83 4.303 23.22 .1608 29.33-9.615l42.18-67.48C514.3 123.2 512.9 110.9 504.9 102.9z',
			),
		),
		'label'             => __( 'Tty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'travel' ),
	),
	'tumblr'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1 .8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5 .9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z',
			),
		),
		'label'             => __( 'Tumblr', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'tumblr-square'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-82.3 364.2c-8.5 9.1-31.2 19.8-60.9 19.8-75.5 0-91.9-55.5-91.9-87.9v-90h-29.7c-3.4 0-6.2-2.8-6.2-6.2v-42.5c0-4.5 2.8-8.5 7.1-10 38.8-13.7 50.9-47.5 52.7-73.2 .5-6.9 4.1-10.2 10-10.2h44.3c3.4 0 6.2 2.8 6.2 6.2v72h51.9c3.4 0 6.2 2.8 6.2 6.2v51.1c0 3.4-2.8 6.2-6.2 6.2h-52.1V321c0 21.4 14.8 33.5 42.5 22.4 3-1.2 5.6-2 8-1.4 2.2 .5 3.6 2.1 4.6 4.9l13.8 40.2c1 3.2 2 6.7-.3 9.1z',
			),
		),
		'label'             => __( 'Tumblr Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'turkish-lira-sign'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M96 32C113.7 32 128 46.33 128 64V99.29L247.2 65.23C264.2 60.38 281.9 70.22 286.8 87.21C291.6 104.2 281.8 121.9 264.8 126.8L128 165.9V195.3L247.2 161.2C264.2 156.4 281.9 166.2 286.8 183.2C291.6 200.2 281.8 217.9 264.8 222.8L128 261.9V416H191.8C260 416 316.2 362.5 319.6 294.4L320 286.4C320.9 268.8 335.9 255.2 353.6 256C371.2 256.9 384.8 271.9 383.1 289.6L383.6 297.6C378.5 399.8 294.1 480 191.8 480H96C78.33 480 64 465.7 64 448V280.1L40.79 286.8C23.8 291.6 6.087 281.8 1.232 264.8C-3.623 247.8 6.217 230.1 23.21 225.2L64 213.6V184.1L40.79 190.8C23.8 195.6 6.087 185.8 1.232 168.8C-3.623 151.8 6.216 134.1 23.21 129.2L64 117.6V64C64 46.33 78.33 32 96 32L96 32z',
			),
		),
		'label'             => __( 'Turkish Lira Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'turn-down'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M313.6 392.3l-104 112c-9.5 10.23-25.69 10.23-35.19 0l-104-112c-6.484-6.984-8.219-17.17-4.406-25.92S78.45 352 88 352H160V80C160 71.19 152.8 64 144 64H32C14.33 64 0 49.69 0 32s14.33-32 32-32h112C188.1 0 224 35.88 224 80V352h72c9.547 0 18.19 5.656 22 14.41S320.1 385.3 313.6 392.3z',
			),
		),
		'label'             => __( 'Turn Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'turn-up'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M318 145.6c-3.812 8.75-12.45 14.41-22 14.41L224 160v272c0 44.13-35.89 80-80 80H32c-17.67 0-32-14.31-32-32s14.33-32 32-32h112C152.8 448 160 440.8 160 432V160L88 159.1c-9.547 0-18.19-5.656-22-14.41S63.92 126.7 70.41 119.7l104-112c9.498-10.23 25.69-10.23 35.19 0l104 112C320.1 126.7 321.8 136.8 318 145.6z',
			),
		),
		'label'             => __( 'Turn Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'tv'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M512 448H127.1C110.3 448 96 462.3 96 479.1S110.3 512 127.1 512h384C529.7 512 544 497.7 544 480S529.7 448 512 448zM592 0h-544C21.5 0 0 21.5 0 48v320C0 394.5 21.5 416 48 416h544c26.5 0 48-21.5 48-48v-320C640 21.5 618.5 0 592 0zM576 352H64v-288h512V352z',
			),
		),
		'label'             => __( 'Tv', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'twitch'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M391.2 103.5H352.5v109.7h38.63zM285 103H246.4V212.8H285zM120.8 0 24.31 91.42V420.6H140.1V512l96.53-91.42h77.25L487.7 256V0zM449.1 237.8l-77.22 73.12H294.6l-67.6 64v-64H140.1V36.58H449.1z',
			),
		),
		'label'             => __( 'Twitch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'twitter'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M459.4 151.7c.325 4.548 .325 9.097 .325 13.65 0 138.7-105.6 298.6-298.6 298.6-59.45 0-114.7-17.22-161.1-47.11 8.447 .974 16.57 1.299 25.34 1.299 49.06 0 94.21-16.57 130.3-44.83-46.13-.975-84.79-31.19-98.11-72.77 6.498 .974 12.99 1.624 19.82 1.624 9.421 0 18.84-1.3 27.61-3.573-48.08-9.747-84.14-51.98-84.14-102.1v-1.299c13.97 7.797 30.21 12.67 47.43 13.32-28.26-18.84-46.78-51.01-46.78-87.39 0-19.49 5.197-37.36 14.29-52.95 51.65 63.67 129.3 105.3 216.4 109.8-1.624-7.797-2.599-15.92-2.599-24.04 0-57.83 46.78-104.9 104.9-104.9 30.21 0 57.5 12.67 76.67 33.14 23.72-4.548 46.46-13.32 66.6-25.34-7.798 24.37-24.37 44.83-46.13 57.83 21.12-2.273 41.58-8.122 60.43-16.24-14.29 20.79-32.16 39.31-52.63 54.25z',
			),
		),
		'label'             => __( 'Twitter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'x-twitter'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z',
			),
		),
		'label'             => __( 'Twitter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'twitter-square'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8 .2 5.7 .2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3 .6 10.4 .8 15.8 .8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.45 65.45 0 0 1 -29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z',
			),
		),
		'label'             => __( 'Twitter Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'typo3'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M178.7 78.4c0-24.7 5.4-32.4 13.9-39.4-69.5 8.5-149.3 34-176.3 66.4-5.4 7.7-9.3 20.8-9.3 37.1C7 246 113.8 480 191.1 480c36.3 0 97.3-59.5 146.7-139-7 2.3-11.6 2.3-18.5 2.3-57.2 0-140.6-198.5-140.6-264.9zM301.5 32c-30.1 0-41.7 5.4-41.7 36.3 0 66.4 53.8 198.5 101.7 198.5 26.3 0 78.8-99.7 78.8-182.3 0-40.9-67-52.5-138.8-52.5z',
			),
		),
		'label'             => __( 'Typo3', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'u'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 64.01v225.7c0 104.1-86.13 190.3-192 190.3s-192-85.38-192-190.3V64.01C0 46.34 14.33 32.01 32 32.01S64 46.34 64 64.01v225.7c0 69.67 57.42 126.3 128 126.3s128-56.67 128-126.3V64.01c0-17.67 14.33-32 32-32S384 46.34 384 64.01z',
			),
		),
		'label'             => __( 'U', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'uber'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M414.1 32H33.9C15.2 32 0 47.2 0 65.9V446c0 18.8 15.2 34 33.9 34H414c18.7 0 33.9-15.2 33.9-33.9V65.9C448 47.2 432.8 32 414.1 32zM237.6 391.1C163 398.6 96.4 344.2 88.9 269.6h94.4V290c0 3.7 3 6.8 6.8 6.8H258c3.7 0 6.8-3 6.8-6.8v-67.9c0-3.7-3-6.8-6.8-6.8h-67.9c-3.7 0-6.8 3-6.8 6.8v20.4H88.9c7-69.4 65.4-122.2 135.1-122.2 69.7 0 128.1 52.8 135.1 122.2 7.5 74.5-46.9 141.1-121.5 148.6z',
			),
		),
		'label'             => __( 'Uber', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ubuntu'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm52.7 93c8.8-15.2 28.3-20.5 43.5-11.7 15.3 8.8 20.5 28.3 11.7 43.6-8.8 15.2-28.3 20.5-43.5 11.7-15.3-8.9-20.5-28.4-11.7-43.6zM87.4 287.9c-17.6 0-31.9-14.3-31.9-31.9 0-17.6 14.3-31.9 31.9-31.9 17.6 0 31.9 14.3 31.9 31.9 0 17.6-14.3 31.9-31.9 31.9zm28.1 3.1c22.3-17.9 22.4-51.9 0-69.9 8.6-32.8 29.1-60.7 56.5-79.1l23.7 39.6c-51.5 36.3-51.5 112.5 0 148.8L172 370c-27.4-18.3-47.8-46.3-56.5-79zm228.7 131.7c-15.3 8.8-34.7 3.6-43.5-11.7-8.8-15.3-3.6-34.8 11.7-43.6 15.2-8.8 34.7-3.6 43.5 11.7 8.8 15.3 3.6 34.8-11.7 43.6zm.3-69.5c-26.7-10.3-56.1 6.6-60.5 35-5.2 1.4-48.9 14.3-96.7-9.4l22.5-40.3c57 26.5 123.4-11.7 128.9-74.4l46.1 .7c-2.3 34.5-17.3 65.5-40.3 88.4zm-5.9-105.3c-5.4-62-71.3-101.2-128.9-74.4l-22.5-40.3c47.9-23.7 91.5-10.8 96.7-9.4 4.4 28.3 33.8 45.3 60.5 35 23.1 22.9 38 53.9 40.2 88.5l-46 .6z',
			),
		),
		'label'             => __( 'Ubuntu', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'uikit'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M443.9 128v256L218 512 0 384V169.7l87.6 45.1v117l133.5 75.5 135.8-75.5v-151l-101.1-57.6 87.6-53.1L443.9 128zM308.6 49.1L223.8 0l-88.6 54.8 86 47.3 87.4-53z',
			),
		),
		'label'             => __( 'UIkit', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'umbraco'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 510,
				'height' => 512,
				'path'   => 'M255.4 8C118.4 7.83 7.14 118.7 7 255.7c-.07 137 111 248.2 248 248.3 136.9 0 247.8-110.7 248-247.7S392.3 8.17 255.4 8zm145 266q-1.14 40.68-14 65t-43.51 35q-30.61 10.7-85.45 10.47h-4.6q-54.78 .22-85.44-10.47t-43.52-35q-12.85-24.36-14-65a224.8 224.8 0 0 1 0-30.71 418.4 418.4 0 0 1 3.6-43.88c1.88-13.39 3.57-22.58 5.4-32 1-4.88 1.28-6.42 1.82-8.45a5.09 5.09 0 0 1 4.9-3.89h.69l32 5a5.07 5.07 0 0 1 4.16 5 5 5 0 0 1 0 .77l-1.7 8.78q-2.41 13.25-4.84 33.68a380.6 380.6 0 0 0 -2.64 42.15q-.28 40.43 8.13 59.83a43.87 43.87 0 0 0 31.31 25.18A243 243 0 0 0 250 340.6h10.25a242.6 242.6 0 0 0 57.27-5.16 43.86 43.86 0 0 0 31.15-25.23q8.53-19.42 8.13-59.78a388 388 0 0 0 -2.6-42.15q-2.48-20.38-4.89-33.68l-1.69-8.78a5 5 0 0 1 0-.77 5 5 0 0 1 4.2-5l32-5h.82a5 5 0 0 1 4.9 3.89c.55 2.05 .81 3.57 1.83 8.45 1.82 9.62 3.52 18.78 5.39 32a415.7 415.7 0 0 1 3.61 43.88 228.1 228.1 0 0 1 -.04 30.73z',
			),
		),
		'label'             => __( 'Umbraco', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'umbrella'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M255.1 301.7v130.3c0 8.814-7.188 16-16 16c-7.814 0-13.19-5.314-15.1-10.69c-5.906-16.72-24.1-25.41-40.81-19.5c-16.69 5.875-25.41 24.19-19.5 40.79C175.8 490.6 206.2 512 239.1 512C284.1 512 320 476.1 320 431.1v-130.3c-9.094-7.908-19.81-13.61-32-13.61C275.7 288.1 265.6 292.9 255.1 301.7zM575.7 280.9C547.1 144.5 437.3 62.61 320 49.91V32.01c0-17.69-14.31-32.01-32-32.01S255.1 14.31 255.1 32.01v17.91C138.3 62.61 29.48 144.5 .2949 280.9C-1.926 290.1 8.795 302.1 18.98 292.2c52-55.01 107.7-52.39 158.6 37.01c5.312 9.502 14.91 8.625 19.72 0C217.5 293.9 242.2 256 287.1 256c58.5 0 88.19 68.82 90.69 73.2c4.812 8.625 14.41 9.502 19.72 0c51-89.52 107.1-91.39 158.6-37.01C567.3 302.2 577.9 290.1 575.7 280.9z',
			),
		),
		'label'             => __( 'Umbrella', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'travel' ),
	),
	'umbrella-beach'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M115.4 136.8l102.1 37.35c35.13-81.62 86.25-144.4 139-173.7c-95.88-4.875-188.8 36.96-248.5 111.7C101.2 120.6 105.2 133.2 115.4 136.8zM247.6 185l238.5 86.87c35.75-121.4 18.62-231.6-42.63-253.9c-7.375-2.625-15.12-4.062-23.12-4.062C362.4 13.88 292.1 83.13 247.6 185zM521.5 60.51c6.25 16.25 10.75 34.62 13.13 55.25c5.75 49.87-1.376 108.1-18.88 166.9l102.6 37.37c10.13 3.75 21.25-3.375 21.5-14.12C642.3 210.1 598 118.4 521.5 60.51zM528 448h-207l65-178.5l-60.13-21.87l-72.88 200.4H48C21.49 448 0 469.5 0 496C0 504.8 7.163 512 16 512h544c8.837 0 16-7.163 16-15.1C576 469.5 554.5 448 528 448z',
			),
		),
		'label'             => __( 'Umbrella Beach', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'uncharted'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M171.7 232.8A5.381 5.381 0 0 0 176.7 229.5 48.08 48.08 0 0 1 191.6 204.2c1.243-.828 1.657-2.484 1.657-4.141a4.22 4.22 0 0 0 -2.071-3.312L74.43 128.5 148.1 85a9.941 9.941 0 0 0 4.968-8.281 9.108 9.108 0 0 0 -4.968-8.281L126.6 55.6a9.748 9.748 0 0 0 -9.523 0l-100.2 57.97a9.943 9.943 0 0 0 -4.969 8.281V236.1a9.109 9.109 0 0 0 4.969 8.281L39.24 258.1a8.829 8.829 0 0 0 4.968 1.242 9.4 9.4 0 0 0 6.625-2.484 10.8 10.8 0 0 0 2.9-7.039V164.5L169.7 232.4A4.5 4.5 0 0 0 171.7 232.8zM323.3 377.7a12.48 12.48 0 0 0 -4.969 1.242l-74.53 43.06V287.9c0-2.9-2.9-5.8-6.211-4.555a53.04 53.04 0 0 1 -28.98 .414 4.86 4.86 0 0 0 -6.21 4.555V421.6l-74.53-43.06a8.83 8.83 0 0 0 -4.969-1.242 9.631 9.631 0 0 0 -9.523 9.523v26.08a9.107 9.107 0 0 0 4.969 8.281l100.2 57.55A8.829 8.829 0 0 0 223.5 480a11.03 11.03 0 0 0 4.969-1.242l100.2-57.55a9.941 9.941 0 0 0 4.968-8.281V386.8C332.8 382.3 328.2 377.7 323.3 377.7zM286 78a23 23 0 1 0 -23-23A23 23 0 0 0 286 78zm63.63-10.09a23 23 0 1 0 23 23A23 23 0 0 0 349.6 67.91zM412.8 151.6a23 23 0 1 0 -23-23A23 23 0 0 0 412.8 151.6zm-63.18-9.2a23 23 0 1 0 23 23A23 23 0 0 0 349.6 142.4zm-63.63 83.24a23 23 0 1 0 -23-23A23 23 0 0 0 286 225.6zm-62.07 36.36a23 23 0 1 0 -23-23A23 23 0 0 0 223.9 262zm188.9-82.36a23 23 0 1 0 23 23A23 23 0 0 0 412.8 179.6zm0 72.27a23 23 0 1 0 23 23A23 23 0 0 0 412.8 251.9z',
			),
		),
		'label'             => __( 'Uncharted Software', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'underline'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 448H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h384c17.69 0 32-14.31 32-32S433.7 448 416 448zM48 64.01H64v160c0 88.22 71.78 159.1 160 159.1s160-71.78 160-159.1v-160h16c17.69 0 32-14.32 32-32s-14.31-31.1-32-31.1l-96-.0049c-17.69 0-32 14.32-32 32s14.31 32 32 32H320v160c0 52.94-43.06 95.1-96 95.1S128 276.1 128 224v-160h16c17.69 0 32-14.31 32-32s-14.31-32-32-32l-96 .0049c-17.69 0-32 14.31-32 31.1S30.31 64.01 48 64.01z',
			),
		),
		'label'             => __( 'Underline', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'uniregistry'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 480c39.5 0 76.2-11.8 106.8-32.2H85.3C115.8 468.2 152.5 480 192 480zm-89.1-193.1v-12.4H0v12.4c0 2.5 0 5 .1 7.4h103.1c-.2-2.4-.3-4.9-.3-7.4zm20.5 57H8.5c2.6 8.5 5.8 16.8 9.6 24.8h138.3c-12.9-5.7-24.1-14.2-33-24.8zm-17.7-34.7H1.3c.9 7.6 2.2 15 3.9 22.3h109.7c-4-6.9-7.2-14.4-9.2-22.3zm-2.8-69.3H0v17.3h102.9zm0-173.2H0v4.9h102.9zm0-34.7H0v2.5h102.9zm0 69.3H0v7.4h102.9zm0 104H0v14.8h102.9zm0-69.3H0v9.9h102.9zm0 34.6H0V183h102.9zm166.2 160.9h109.7c1.8-7.3 3.1-14.7 3.9-22.3H278.3c-2.1 7.9-5.2 15.4-9.2 22.3zm12-185.7H384V136H281.1zm0 37.2H384v-12.4H281.1zm0-74.3H384v-7.4H281.1zm0-76.7v2.5H384V32zm-203 410.9h227.7c11.8-8.7 22.7-18.6 32.2-29.7H44.9c9.6 11 21.4 21 33.2 29.7zm203-371.3H384v-4.9H281.1zm0 148.5H384v-14.8H281.1zM38.8 405.7h305.3c6.7-8.5 12.6-17.6 17.8-27.2H23c5.2 9.6 9.2 18.7 15.8 27.2zm188.8-37.1H367c3.7-8 5.8-16.2 8.5-24.8h-115c-8.8 10.7-20.1 19.2-32.9 24.8zm53.5-81.7c0 2.5-.1 5-.4 7.4h103.1c.1-2.5 .2-4.9 .2-7.4v-12.4H281.1zm0-29.7H384v-17.3H281.1z',
			),
		),
		'label'             => __( 'Uniregistry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'unity'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M243.6 91.6L323.7 138.4C326.6 140 326.7 144.6 323.7 146.2L228.5 201.9C225.6 203.6 222.2 203.4 219.5 201.9L124.4 146.2C121.4 144.6 121.4 139.1 124.4 138.4L204.4 91.6V0L0 119.4V358.3L78.38 312.5V218.9C78.33 215.6 82.21 213.2 85.09 214.1L180.3 270.6C183.2 272.3 184.8 275.3 184.8 278.5V389.7C184.8 393 180.1 395.4 178.1 393.6L97.97 346.8L19.58 392.6L224 512L428.4 392.6L350 346.8L269.9 393.6C267.1 395.3 263.1 393.1 263.2 389.7V278.5C263.2 275.1 265.1 272.2 267.7 270.6L362.9 214.1C365.7 213.2 369.7 215.5 369.6 218.9V312.5L448 358.3V119.4L243.6 0V91.6z',
			),
		),
		'label'             => __( 'Unity 3D', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'universal-access'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM256 80c22.09 0 40 17.91 40 40S278.1 160 256 160S216 142.1 216 120S233.9 80 256 80zM374.6 215.1L315.3 232C311.6 233.1 307.8 233.6 304 234.4v62.32l30.64 87.34c4.391 12.5-2.188 26.19-14.69 30.59C317.3 415.6 314.6 416 312 416c-9.906 0-19.19-6.188-22.64-16.06l-25.85-70.65c-2.562-7.002-12.46-7.002-15.03 0l-25.85 70.65C219.2 409.8 209.9 416 200 416c-2.641 0-5.312-.4375-7.953-1.344c-12.5-4.406-19.08-18.09-14.69-30.59L208 296.7V234.4C204.2 233.6 200.4 233.1 196.7 232L137.4 215.1C124.7 211.4 117.3 198.2 120.9 185.4S137.9 165.2 150.6 168.9l59.25 16.94c30.17 8.623 62.15 8.623 92.31 0l59.25-16.94c12.7-3.781 26.02 3.719 29.67 16.47C394.7 198.2 387.3 211.4 374.6 215.1z',
			),
		),
		'label'             => __( 'Universal Access', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'unlock'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M144 192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80V144C80 64.47 144.5 0 224 0C281.5 0 331 33.69 354.1 82.27C361.7 98.23 354.9 117.3 338.1 124.9C322.1 132.5 303.9 125.7 296.3 109.7C283.4 82.63 255.9 64 224 64C179.8 64 144 99.82 144 144L144 192z',
			),
		),
		'label'             => __( 'Unlock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'unlock-keyhole'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 64C179.8 64 144 99.82 144 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80V144C80 64.47 144.5 0 224 0C281.5 0 331 33.69 354.1 82.27C361.7 98.23 354.9 117.3 338.1 124.9C322.1 132.5 303.9 125.7 296.3 109.7C283.4 82.63 255.9 64 224 64H224zM256 384C273.7 384 288 369.7 288 352C288 334.3 273.7 320 256 320H192C174.3 320 160 334.3 160 352C160 369.7 174.3 384 192 384H256z',
			),
		),
		'label'             => __( 'Unlock Keyhole', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'unsplash'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 230.2V480H0V230.2H141.1V355.1H306.9V230.2zM306.9 32H141.1V156.9H306.9z',
			),
		),
		'label'             => __( 'Unsplash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'brands', 'brands', 'social' ),
	),
	'untappd'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M401.3 49.9c-79.8 160.1-84.6 152.5-87.9 173.2l-5.2 32.8c-1.9 12-6.6 23.5-13.7 33.4L145.6 497.1c-7.6 10.6-20.4 16.2-33.4 14.6-40.3-5-77.8-32.2-95.3-68.5-5.7-11.8-4.5-25.8 3.1-36.4l148.9-207.9c7.1-9.9 16.4-18 27.2-23.7l29.3-15.5c18.5-9.8 9.7-11.9 135.6-138.9 1-4.8 1-7.3 3.6-8 3-.7 6.6-1 6.3-4.6l-.4-4.6c-.2-1.9 1.3-3.6 3.2-3.6 4.5-.1 13.2 1.2 25.6 10 12.3 8.9 16.4 16.8 17.7 21.1 .6 1.8-.6 3.7-2.4 4.2l-4.5 1.1c-3.4 .9-2.5 4.4-2.3 7.4 .1 2.8-2.3 3.6-6.5 6.1zM230.1 36.4c3.4 .9 2.5 4.4 2.3 7.4-.2 2.7 2.1 3.5 6.4 6 7.9 15.9 15.3 30.5 22.2 44 .7 1.3 2.3 1.5 3.3 .5 11.2-12 24.6-26.2 40.5-42.6 1.3-1.4 1.4-3.5 .1-4.9-8-8.2-16.5-16.9-25.6-26.1-1-4.7-1-7.3-3.6-8-3-.8-6.6-1-6.3-4.6 .3-3.3 1.4-8.1-2.8-8.2-4.5-.1-13.2 1.1-25.6 10-12.3 8.9-16.4 16.8-17.7 21.1-1.4 4.2 3.6 4.6 6.8 5.4zM620 406.7L471.2 198.8c-13.2-18.5-26.6-23.4-56.4-39.1-11.2-5.9-14.2-10.9-30.5-28.9-1-1.1-2.9-.9-3.6 .5-46.3 88.8-47.1 82.8-49 94.8-1.7 10.7-1.3 20 .3 29.8 1.9 12 6.6 23.5 13.7 33.4l148.9 207.9c7.6 10.6 20.2 16.2 33.1 14.7 40.3-4.9 78-32 95.7-68.6 5.4-11.9 4.3-25.9-3.4-36.6z',
			),
		),
		'label'             => __( 'Untappd', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'up-down'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M249.6 392.3l-104 112c-9.094 9.781-26.09 9.781-35.19 0l-103.1-112c-6.484-6.984-8.219-17.17-4.406-25.92S14.45 352 24 352H80V160H24C14.45 160 5.812 154.3 1.999 145.6C-1.813 136.8-.0781 126.7 6.406 119.7l104-112c9.094-9.781 26.09-9.781 35.19 0l104 112c6.484 6.984 8.219 17.17 4.406 25.92C250.2 154.3 241.5 160 232 160H176v192h56c9.547 0 18.19 5.656 22 14.41S256.1 385.3 249.6 392.3z',
			),
		),
		'label'             => __( 'Up Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'up-down-left-right'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256c0 6.797-2.891 13.28-7.938 17.84l-80 72C419.6 349.9 413.8 352 408 352c-3.312 0-6.625-.6875-9.766-2.078C389.6 346.1 384 337.5 384 328V288h-96v96l40-.0013c9.484 0 18.06 5.578 21.92 14.23s2.25 18.78-4.078 25.83l-72 80C269.3 509.1 262.8 512 255.1 512s-13.28-2.89-17.84-7.937l-71.1-80c-6.328-7.047-7.938-17.17-4.078-25.83s12.44-14.23 21.92-14.23l39.1 .0013V288H128v40c0 9.484-5.578 18.06-14.23 21.92C110.6 351.3 107.3 352 104 352c-5.812 0-11.56-2.109-16.06-6.156l-80-72C2.891 269.3 0 262.8 0 256s2.891-13.28 7.938-17.84l80-72C95 159.8 105.1 158.3 113.8 162.1C122.4 165.9 128 174.5 128 184V224h95.1V128l-39.1-.0013c-9.484 0-18.06-5.578-21.92-14.23S159.8 94.99 166.2 87.94l71.1-80c9.125-10.09 26.56-10.09 35.69 0l72 80c6.328 7.047 7.938 17.17 4.078 25.83s-12.44 14.23-21.92 14.23l-40 .0013V224H384V184c0-9.484 5.578-18.06 14.23-21.92c8.656-3.812 18.77-2.266 25.83 4.078l80 72C509.1 242.7 512 249.2 512 256z',
			),
		),
		'label'             => __( 'Up Down Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'up-long'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M285.1 145.7c-3.81 8.758-12.45 14.42-21.1 14.42L192 160.1V480c0 17.69-14.33 32-32 32s-32-14.31-32-32V160.1L55.1 160.1c-9.547 0-18.19-5.658-22-14.42c-3.811-8.758-2.076-18.95 4.408-25.94l104-112.1c9.498-10.24 25.69-10.24 35.19 0l104 112.1C288.1 126.7 289.8 136.9 285.1 145.7z',
			),
		),
		'label'             => __( 'Up Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'up-right-and-down-left-from-center' => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208 281.4c-12.5-12.5-32.76-12.5-45.26-.002l-78.06 78.07l-30.06-30.06c-6.125-6.125-14.31-9.367-22.63-9.367c-4.125 0-8.279 .7891-12.25 2.43c-11.97 4.953-19.75 16.62-19.75 29.56v135.1C.0013 501.3 10.75 512 24 512h136c12.94 0 24.63-7.797 29.56-19.75c4.969-11.97 2.219-25.72-6.938-34.87l-30.06-30.06l78.06-78.07c12.5-12.49 12.5-32.75 .002-45.25L208 281.4zM487.1 0h-136c-12.94 0-24.63 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.87l30.06 30.06l-78.06 78.07c-12.5 12.5-12.5 32.76 0 45.26l22.62 22.62c12.5 12.5 32.76 12.5 45.26 0l78.06-78.07l30.06 30.06c9.156 9.141 22.87 11.84 34.87 6.937C504.2 184.6 512 172.9 512 159.1V23.1C512 10.74 501.3 0 487.1 0z',
			),
		),
		'label'             => __( 'Up Right And Down Left From Center', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'up-right-from-square'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z',
			),
		),
		'label'             => __( 'Up Right From Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'upload'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M105.4 182.6c12.5 12.49 32.76 12.5 45.25 .001L224 109.3V352c0 17.67 14.33 32 32 32c17.67 0 32-14.33 32-32V109.3l73.38 73.38c12.49 12.49 32.75 12.49 45.25-.001c12.49-12.49 12.49-32.75 0-45.25l-128-128C272.4 3.125 264.2 0 256 0S239.6 3.125 233.4 9.375L105.4 137.4C92.88 149.9 92.88 170.1 105.4 182.6zM480 352h-160c0 35.35-28.65 64-64 64s-64-28.65-64-64H32c-17.67 0-32 14.33-32 32v96c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-96C512 366.3 497.7 352 480 352zM432 456c-13.2 0-24-10.8-24-24c0-13.2 10.8-24 24-24s24 10.8 24 24C456 445.2 445.2 456 432 456z',
			),
		),
		'label'             => __( 'Upload', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'ups'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M103.2 303c-5.2 3.6-32.6 13.1-32.6-19V180H37.9v102.6c0 74.9 80.2 51.1 97.9 39V180h-32.6zM4 74.82v220.9c0 103.7 74.9 135.2 187.7 184.1 112.4-48.9 187.7-80.2 187.7-184.1V74.82c-116.3-61.6-281.8-49.6-375.4 0zm358.1 220.9c0 86.6-53.2 113.6-170.4 165.3-117.5-51.8-170.5-78.7-170.5-165.3v-126.4c102.3-93.8 231.6-100 340.9-89.8zm-209.6-107.4v212.8h32.7v-68.7c24.4 7.3 71.7-2.6 71.7-78.5 0-97.4-80.7-80.92-104.4-65.6zm32.7 117.3v-100.3c8.4-4.2 38.4-12.7 38.4 49.3 0 67.9-36.4 51.8-38.4 51zm79.1-86.4c.1 47.3 51.6 42.5 52.2 70.4 .6 23.5-30.4 23-50.8 4.9v30.1c36.2 21.5 81.9 8.1 83.2-33.5 1.7-51.5-54.1-46.6-53.4-73.2 .6-20.3 30.6-20.5 48.5-2.2v-28.4c-28.5-22-79.9-9.2-79.7 31.9z',
			),
		),
		'label'             => __( 'UPS', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'usb'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M641.5 256c0 3.1-1.7 6.1-4.5 7.5L547.9 317c-1.4 .8-2.8 1.4-4.5 1.4-1.4 0-3.1-.3-4.5-1.1-2.8-1.7-4.5-4.5-4.5-7.8v-35.6H295.7c25.3 39.6 40.5 106.9 69.6 106.9H392V354c0-5 3.9-8.9 8.9-8.9H490c5 0 8.9 3.9 8.9 8.9v89.1c0 5-3.9 8.9-8.9 8.9h-89.1c-5 0-8.9-3.9-8.9-8.9v-26.7h-26.7c-75.4 0-81.1-142.5-124.7-142.5H140.3c-8.1 30.6-35.9 53.5-69 53.5C32 327.3 0 295.3 0 256s32-71.3 71.3-71.3c33.1 0 61 22.8 69 53.5 39.1 0 43.9 9.5 74.6-60.4C255 88.7 273 95.7 323.8 95.7c7.5-20.9 27-35.6 50.4-35.6 29.5 0 53.5 23.9 53.5 53.5s-23.9 53.5-53.5 53.5c-23.4 0-42.9-14.8-50.4-35.6H294c-29.1 0-44.3 67.4-69.6 106.9h310.1v-35.6c0-3.3 1.7-6.1 4.5-7.8 2.8-1.7 6.4-1.4 8.9 .3l89.1 53.5c2.8 1.1 4.5 4.1 4.5 7.2z',
			),
		),
		'label'             => __( 'USB', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'user'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 256c70.7 0 128-57.31 128-128s-57.3-128-128-128C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3C77.61 304 0 381.6 0 477.3c0 19.14 15.52 34.67 34.66 34.67h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M272 304h-96C78.8 304 0 382.8 0 480c0 17.67 14.33 32 32 32h384c17.67 0 32-14.33 32-32C448 382.8 369.2 304 272 304zM48.99 464C56.89 400.9 110.8 352 176 352h96c65.16 0 119.1 48.95 127 112H48.99zM224 256c70.69 0 128-57.31 128-128c0-70.69-57.31-128-128-128S96 57.31 96 128C96 198.7 153.3 256 224 256zM224 48c44.11 0 80 35.89 80 80c0 44.11-35.89 80-80 80S144 172.1 144 128C144 83.89 179.9 48 224 48z',
			),
		),
		'label'             => __( 'User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'user-astronaut'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M176 448C167.3 448 160 455.3 160 464V512h32v-48C192 455.3 184.8 448 176 448zM272 448c-8.75 0-16 7.25-16 16s7.25 16 16 16s16-7.25 16-16S280.8 448 272 448zM164 172l8.205 24.62c1.215 3.645 6.375 3.645 7.59 0L188 172l24.62-8.203c3.646-1.219 3.646-6.375 0-7.594L188 148L179.8 123.4c-1.215-3.648-6.375-3.648-7.59 0L164 148L139.4 156.2c-3.646 1.219-3.646 6.375 0 7.594L164 172zM336.1 315.4C304 338.6 265.1 352 224 352s-80.03-13.43-112.1-36.59C46.55 340.2 0 403.3 0 477.3C0 496.5 15.52 512 34.66 512H128v-64c0-17.75 14.25-32 32-32h128c17.75 0 32 14.25 32 32v64h93.34C432.5 512 448 496.5 448 477.3C448 403.3 401.5 340.2 336.1 315.4zM64 224h13.5C102.3 280.5 158.4 320 224 320s121.8-39.5 146.5-96H384c8.75 0 16-7.25 16-16v-96C400 103.3 392.8 96 384 96h-13.5C345.8 39.5 289.6 0 224 0S102.3 39.5 77.5 96H64C55.25 96 48 103.3 48 112v96C48 216.8 55.25 224 64 224zM104 136C104 113.9 125.5 96 152 96h144c26.5 0 48 17.88 48 40V160c0 53-43 96-96 96h-48c-53 0-96-43-96-96V136z',
			),
		),
		'label'             => __( 'User Astronaut', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-check'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M274.7 304H173.3C77.61 304 0 381.6 0 477.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM632.3 134.4c-9.703-9-24.91-8.453-33.92 1.266l-87.05 93.75l-38.39-38.39c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94l56 56C499.5 285.5 505.6 288 512 288h.4375c6.531-.125 12.72-2.891 17.16-7.672l104-112C642.6 158.6 642 143.4 632.3 134.4z',
			),
		),
		'label'             => __( 'User Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-clock'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M496 224c-79.63 0-144 64.38-144 144s64.38 144 144 144s144-64.38 144-144S575.6 224 496 224zM544 384h-54.25C484.4 384 480 379.6 480 374.3V304c0-8.836 7.164-16 16-16c8.838 0 16 7.164 16 16v48h32c8.838 0 16 7.164 16 15.1S552.8 384 544 384zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM320 368c0-19.3 3.221-37.82 8.961-55.2C311.9 307.2 293.6 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512H395C349.7 480.2 320 427.6 320 368z',
			),
		),
		'label'             => __( 'User Clock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-doctor'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 128C352 198.7 294.7 256 223.1 256C153.3 256 95.1 198.7 95.1 128C95.1 57.31 153.3 0 223.1 0C294.7 0 352 57.31 352 128zM287.1 362C260.4 369.1 239.1 394.2 239.1 424V448C239.1 452.2 241.7 456.3 244.7 459.3L260.7 475.3C266.9 481.6 277.1 481.6 283.3 475.3C289.6 469.1 289.6 458.9 283.3 452.7L271.1 441.4V424C271.1 406.3 286.3 392 303.1 392C321.7 392 336 406.3 336 424V441.4L324.7 452.7C318.4 458.9 318.4 469.1 324.7 475.3C330.9 481.6 341.1 481.6 347.3 475.3L363.3 459.3C366.3 456.3 368 452.2 368 448V424C368 394.2 347.6 369.1 320 362V308.8C393.5 326.7 448 392.1 448 472V480C448 497.7 433.7 512 416 512H32C14.33 512 0 497.7 0 480V472C0 393 54.53 326.7 128 308.8V370.3C104.9 377.2 88 398.6 88 424C88 454.9 113.1 480 144 480C174.9 480 200 454.9 200 424C200 398.6 183.1 377.2 160 370.3V304.2C162.7 304.1 165.3 304 168 304H280C282.7 304 285.3 304.1 288 304.2L287.1 362zM167.1 424C167.1 437.3 157.3 448 143.1 448C130.7 448 119.1 437.3 119.1 424C119.1 410.7 130.7 400 143.1 400C157.3 400 167.1 410.7 167.1 424z',
			),
		),
		'label'             => __( 'User Doctor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-gear'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M425.1 482.6c-2.303-1.25-4.572-2.559-6.809-3.93l-7.818 4.493c-6.002 3.504-12.83 5.352-19.75 5.352c-10.71 0-21.13-4.492-28.97-12.75c-18.41-20.09-32.29-44.15-40.22-69.9c-5.352-18.06 2.343-36.87 17.83-45.24l8.018-4.669c-.0664-2.621-.0664-5.242 0-7.859l-7.655-4.461c-12.3-6.953-19.4-19.66-19.64-33.38C305.6 306.3 290.4 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512H413.3c5.727 0 10.9-1.727 15.66-4.188c-2.271-4.984-3.86-10.3-3.86-16.06V482.6zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM610.5 373.3c2.625-14 2.625-28.5 0-42.5l25.75-15c3-1.625 4.375-5.125 3.375-8.5c-6.75-21.5-18.25-41.13-33.25-57.38c-2.25-2.5-6-3.125-9-1.375l-25.75 14.88c-10.88-9.25-23.38-16.5-36.88-21.25V212.3c0-3.375-2.5-6.375-5.75-7c-22.25-5-45-4.875-66.25 0c-3.25 .625-5.625 3.625-5.625 7v29.88c-13.5 4.75-26 12-36.88 21.25L394.4 248.5c-2.875-1.75-6.625-1.125-9 1.375c-15 16.25-26.5 35.88-33.13 57.38c-1 3.375 .3751 6.875 3.25 8.5l25.75 15c-2.5 14-2.5 28.5 0 42.5l-25.75 15c-3 1.625-4.25 5.125-3.25 8.5c6.625 21.5 18.13 41 33.13 57.38c2.375 2.5 6 3.125 9 1.375l25.88-14.88c10.88 9.25 23.38 16.5 36.88 21.25v29.88c0 3.375 2.375 6.375 5.625 7c22.38 5 45 4.875 66.25 0c3.25-.625 5.75-3.625 5.75-7v-29.88c13.5-4.75 26-12 36.88-21.25l25.75 14.88c2.875 1.75 6.75 1.125 9-1.375c15-16.25 26.5-35.88 33.25-57.38c1-3.375-.3751-6.875-3.375-8.5L610.5 373.3zM496 400.5c-26.75 0-48.5-21.75-48.5-48.5s21.75-48.5 48.5-48.5c26.75 0 48.5 21.75 48.5 48.5S522.8 400.5 496 400.5z',
			),
		),
		'label'             => __( 'User Gear', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-graduate'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M45.63 79.75L52 81.25v58.5C45 143.9 40 151.3 40 160c0 8.375 4.625 15.38 11.12 19.75L35.5 242C33.75 248.9 37.63 256 43.13 256h41.75c5.5 0 9.375-7.125 7.625-13.1L76.88 179.8C83.38 175.4 88 168.4 88 160c0-8.75-5-16.12-12-20.25V87.13L128 99.63l.001 60.37c0 70.75 57.25 128 128 128s127.1-57.25 127.1-128L384 99.62l82.25-19.87c18.25-4.375 18.25-27 0-31.5l-190.4-46c-13-3-26.62-3-39.63 0l-190.6 46C27.5 52.63 27.5 75.38 45.63 79.75zM359.2 312.8l-103.2 103.2l-103.2-103.2c-69.93 22.3-120.8 87.2-120.8 164.5C32 496.5 47.53 512 66.67 512h378.7C464.5 512 480 496.5 480 477.3C480 400 429.1 335.1 359.2 312.8z',
			),
		),
		'label'             => __( 'User Graduate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'user-group'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3c-95.73 0-173.3 77.6-173.3 173.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM479.1 320h-73.85C451.2 357.7 480 414.1 480 477.3C480 490.1 476.2 501.9 470 512h138C625.7 512 640 497.6 640 479.1C640 391.6 568.4 320 479.1 320zM432 256C493.9 256 544 205.9 544 144S493.9 32 432 32c-25.11 0-48.04 8.555-66.72 22.51C376.8 76.63 384 101.4 384 128c0 35.52-11.93 68.14-31.59 94.71C372.7 243.2 400.8 256 432 256z',
			),
		),
		'label'             => __( 'User Group', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'user-injured'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M277.4 11.98C261.1 4.469 243.1 0 224 0C170.3 0 124.5 33.13 105.5 80h81.07L277.4 11.98zM342.5 80c-7.895-19.47-20.66-36.19-36.48-49.51L240 80H342.5zM224 256c70.7 0 128-57.31 128-128c0-5.48-.9453-10.7-1.613-16H97.61C96.95 117.3 96 122.5 96 128C96 198.7 153.3 256 224 256zM272 416h-45.14l58.64 93.83C305.4 503.1 320 485.8 320 464C320 437.5 298.5 416 272 416zM274.7 304H173.3c-5.393 0-10.71 .3242-15.98 .8047L206.9 384H272c44.13 0 80 35.88 80 80c0 18.08-6.252 34.59-16.4 48h77.73C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM0 477.3C0 496.5 15.52 512 34.66 512H64v-169.1C24.97 374.7 0 423.1 0 477.3zM96 322.4V512h153.1L123.7 311.3C114.1 314.2 104.8 317.9 96 322.4z',
			),
		),
		'label'             => __( 'User Injured', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-large'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 288c79.53 0 144-64.47 144-144s-64.47-144-144-144c-79.52 0-144 64.47-144 144S176.5 288 256 288zM351.1 320H160c-88.36 0-160 71.63-160 160c0 17.67 14.33 32 31.1 32H480c17.67 0 31.1-14.33 31.1-32C512 391.6 440.4 320 351.1 320z',
			),
		),
		'label'             => __( 'User Large', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-large-slash'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M284.9 320l-60.9-.0002c-88.36 0-160 71.63-160 159.1C63.1 497.7 78.33 512 95.1 512l448-.0039c.0137 0-.0137 0 0 0l-14.13-.0013L284.9 320zM630.8 469.1l-249.5-195.5c48.74-22.1 82.65-72.1 82.65-129.6c0-79.53-64.47-143.1-143.1-143.1c-69.64 0-127.3 49.57-140.6 115.3L38.81 5.109C34.41 1.672 29.19 0 24.03 0C16.91 0 9.845 3.156 5.127 9.187c-8.187 10.44-6.375 25.53 4.062 33.7L601.2 506.9c10.5 8.203 25.56 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'User Large Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-lock'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M592 288H576V212.7c0-41.84-30.03-80.04-71.66-84.27C456.5 123.6 416 161.1 416 208V288h-16C373.6 288 352 309.6 352 336v128c0 26.4 21.6 48 48 48h192c26.4 0 48-21.6 48-48v-128C640 309.6 618.4 288 592 288zM496 432c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S513.6 432 496 432zM528 288h-64V208c0-17.62 14.38-32 32-32s32 14.38 32 32V288zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM320 336c0-8.672 1.738-16.87 4.303-24.7C308.6 306.6 291.9 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512h301.7C326.3 498.6 320 482.1 320 464V336z',
			),
		),
		'label'             => __( 'User Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-minus'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M274.7 304H173.3C77.61 304 0 381.6 0 477.3C0 496.5 15.52 512 34.66 512h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM616 200h-144C458.8 200 448 210.8 448 224s10.75 24 24 24h144C629.3 248 640 237.3 640 224S629.3 200 616 200z',
			),
		),
		'label'             => __( 'User Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-ninja'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 192c27.25 0 51.75-11.5 69.25-29.75c15 54 64 93.75 122.8 93.75c70.75 0 127.1-57.25 127.1-128s-57.25-128-127.1-128c-50.38 0-93.63 29.38-114.5 71.75C124.1 47.75 96 32 64 32c0 33.37 17.12 62.75 43.13 80C81.13 129.3 64 158.6 64 192zM208 96h95.1C321.7 96 336 110.3 336 128h-160C176 110.3 190.3 96 208 96zM337.8 306.9L256 416L174.2 306.9C93.36 321.6 32 392.2 32 477.3c0 19.14 15.52 34.67 34.66 34.67H445.3c19.14 0 34.66-15.52 34.66-34.67C480 392.2 418.6 321.6 337.8 306.9z',
			),
		),
		'label'             => __( 'User Ninja', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-nurse'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 304c70.75 0 128-57.25 128-128V65.88c0-13.38-8.25-25.38-20.75-30L246.5 4.125C239.3 1.375 231.6 0 224 0S208.8 1.375 201.5 4.125L116.8 35.88C104.3 40.5 96 52.5 96 65.88V176C96 246.8 153.3 304 224 304zM184 71.63c0-2.75 2.25-5 5-5h21.62V45c0-2.75 2.25-5 5-5h16.75c2.75 0 5 2.25 5 5v21.62H259c2.75 0 5 2.25 5 5v16.75c0 2.75-2.25 5-5 5h-21.62V115c0 2.75-2.25 5-5 5H215.6c-2.75 0-5-2.25-5-5V93.38H189c-2.75 0-5-2.25-5-5V71.63zM144 160h160v16C304 220.1 268.1 256 224 256S144 220.1 144 176V160zM327.2 312.8L224 416L120.8 312.8c-69.93 22.3-120.8 87.25-120.8 164.6C.0006 496.5 15.52 512 34.66 512H413.3c19.14 0 34.66-15.46 34.66-34.61C447.1 400.1 397.1 335.1 327.2 312.8z',
			),
		),
		'label'             => __( 'User Nurse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-pen'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M223.1 256c70.7 0 128-57.31 128-128s-57.3-128-128-128C153.3 0 96 57.31 96 128S153.3 256 223.1 256zM274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512h286.4c-1.246-5.531-1.43-11.31-.2832-17.04l14.28-71.41c1.943-9.723 6.676-18.56 13.68-25.56l45.72-45.72C363.3 322.4 321.2 304 274.7 304zM371.4 420.6c-2.514 2.512-4.227 5.715-4.924 9.203l-14.28 71.41c-1.258 6.289 4.293 11.84 10.59 10.59l71.42-14.29c3.482-.6992 6.682-2.406 9.195-4.922l125.3-125.3l-72.01-72.01L371.4 420.6zM629.5 255.7l-21.1-21.11c-14.06-14.06-36.85-14.06-50.91 0l-38.13 38.14l72.01 72.01l38.13-38.13C643.5 292.5 643.5 269.7 629.5 255.7z',
			),
		),
		'label'             => __( 'User Pen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-plus'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM274.7 304H173.3C77.61 304 0 381.6 0 477.3C0 496.5 15.52 512 34.66 512h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM616 200h-48v-48C568 138.8 557.3 128 544 128s-24 10.75-24 24v48h-48C458.8 200 448 210.8 448 224s10.75 24 24 24h48v48C520 309.3 530.8 320 544 320s24-10.75 24-24v-48h48C629.3 248 640 237.3 640 224S629.3 200 616 200z',
			),
		),
		'label'             => __( 'User Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'user-secret'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M377.7 338.8l37.15-92.87C419 235.4 411.3 224 399.1 224h-57.48C348.5 209.2 352 193 352 176c0-4.117-.8359-8.057-1.217-12.08C390.7 155.1 416 142.3 416 128c0-16.08-31.75-30.28-80.31-38.99C323.8 45.15 304.9 0 277.4 0c-10.38 0-19.62 4.5-27.38 10.5c-15.25 11.88-36.75 11.88-52 0C190.3 4.5 181.1 0 170.7 0C143.2 0 124.4 45.16 112.5 88.98C63.83 97.68 32 111.9 32 128c0 14.34 25.31 27.13 65.22 35.92C96.84 167.9 96 171.9 96 176C96 193 99.47 209.2 105.5 224H48.02C36.7 224 28.96 235.4 33.16 245.9l37.15 92.87C27.87 370.4 0 420.4 0 477.3C0 496.5 15.52 512 34.66 512H413.3C432.5 512 448 496.5 448 477.3C448 420.4 420.1 370.4 377.7 338.8zM176 479.1L128 288l64 32l16 32L176 479.1zM271.1 479.1L240 352l16-32l64-32L271.1 479.1zM320 186C320 207 302.8 224 281.6 224h-12.33c-16.46 0-30.29-10.39-35.63-24.99C232.1 194.9 228.4 192 224 192S215.9 194.9 214.4 199C209 213.6 195.2 224 178.8 224h-12.33C145.2 224 128 207 128 186V169.5C156.3 173.6 188.1 176 224 176s67.74-2.383 96-6.473V186z',
			),
		),
		'label'             => __( 'User Secret', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-shield'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M622.3 271.1l-115.1-45.01c-4.125-1.629-12.62-3.754-22.25 0L369.8 271.1C359 275.2 352 285.1 352 295.1c0 111.6 68.75 188.8 132.9 213.9c9.625 3.75 18 1.625 22.25 0C558.4 489.9 640 420.5 640 295.1C640 285.1 633 275.2 622.3 271.1zM496 462.4V273.2l95.5 37.38C585.9 397.8 530.6 446 496 462.4zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM320.6 310.3C305.9 306.3 290.6 304 274.7 304H173.3C77.61 304 0 381.7 0 477.4C0 496.5 15.52 512 34.66 512H413.3c3.143 0 5.967-1.004 8.861-1.789C369.7 469.8 324.1 400.3 320.6 310.3z',
			),
		),
		'label'             => __( 'User Shield', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'user-slash'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M95.1 477.3c0 19.14 15.52 34.67 34.66 34.67h378.7c5.625 0 10.73-1.65 15.42-4.029L264.9 304.3C171.3 306.7 95.1 383.1 95.1 477.3zM630.8 469.1l-277.1-217.9c54.69-14.56 95.18-63.95 95.18-123.2C447.1 57.31 390.7 0 319.1 0C250.2 0 193.7 55.93 192.3 125.4l-153.4-120.3C34.41 1.672 29.19 0 24.03 0C16.91 0 9.845 3.156 5.127 9.187c-8.187 10.44-6.375 25.53 4.062 33.7L601.2 506.9c10.5 8.203 25.56 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'User Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-tag'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M351.8 367.3v-44.1C328.5 310.7 302.4 304 274.7 304H173.3c-95.73 0-173.3 77.65-173.3 173.4C.0005 496.5 15.52 512 34.66 512h378.7c11.86 0 21.82-6.337 28.07-15.43l-61.65-61.57C361.7 416.9 351.8 392.9 351.8 367.3zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM630.6 364.8L540.3 274.8C528.3 262.8 512 256 495 256h-79.23c-17.75 0-31.99 14.25-31.99 32l.0147 79.2c0 17 6.647 33.15 18.65 45.15l90.31 90.27c12.5 12.5 32.74 12.5 45.24 0l92.49-92.5C643.1 397.6 643.1 377.3 630.6 364.8zM447.8 343.9c-13.25 0-24-10.62-24-24c0-13.25 10.75-24 24-24c13.38 0 24 10.75 24 24S461.1 343.9 447.8 343.9z',
			),
		),
		'label'             => __( 'User Tag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'user-tie'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 128C352 198.7 294.7 256 224 256C153.3 256 96 198.7 96 128C96 57.31 153.3 0 224 0C294.7 0 352 57.31 352 128zM209.1 359.2L176 304H272L238.9 359.2L272.2 483.1L311.7 321.9C388.9 333.9 448 400.7 448 481.3C448 498.2 434.2 512 417.3 512H30.72C13.75 512 0 498.2 0 481.3C0 400.7 59.09 333.9 136.3 321.9L175.8 483.1L209.1 359.2z',
			),
		),
		'label'             => __( 'User Tie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'user-xmark'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M274.7 304H173.3C77.61 304 0 381.6 0 477.3C0 496.5 15.52 512 34.66 512h378.7C432.5 512 448 496.5 448 477.3C448 381.6 370.4 304 274.7 304zM224 256c70.7 0 128-57.31 128-128S294.7 0 224 0C153.3 0 96 57.31 96 128S153.3 256 224 256zM577.9 223.1l47.03-47.03c9.375-9.375 9.375-24.56 0-33.94s-24.56-9.375-33.94 0L544 190.1l-47.03-47.03c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94l47.03 47.03l-47.03 47.03c-9.375 9.375-9.375 24.56 0 33.94c9.373 9.373 24.56 9.381 33.94 0L544 257.9l47.03 47.03c9.373 9.373 24.56 9.381 33.94 0c9.375-9.375 9.375-24.56 0-33.94L577.9 223.1z',
			),
		),
		'label'             => __( 'User Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M319.9 320c57.41 0 103.1-46.56 103.1-104c0-57.44-46.54-104-103.1-104c-57.41 0-103.1 46.56-103.1 104C215.9 273.4 262.5 320 319.9 320zM369.9 352H270.1C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h327.2C499.3 512 512 500.1 512 485.3C512 411.7 448.4 352 369.9 352zM512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM183.9 216c0-5.449 .9824-10.63 1.609-15.91C174.6 194.1 162.6 192 149.9 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C196.7 280.2 183.9 249.7 183.9 216zM128 160c44.18 0 80-35.82 80-80S172.2 0 128 0C83.82 0 48 35.82 48 80S83.82 160 128 160zM551.9 192h-61.84c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 33.71-12.78 64.21-33.16 88h199.7C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192z',
			),
		),
		'label'             => __( 'Users', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'users-between-lines'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 24C0 10.75 10.75 0 24 0H616C629.3 0 640 10.75 640 24C640 37.25 629.3 48 616 48H24C10.75 48 0 37.25 0 24zM0 488C0 474.7 10.75 464 24 464H616C629.3 464 640 474.7 640 488C640 501.3 629.3 512 616 512H24C10.75 512 0 501.3 0 488zM211.2 160C211.2 195.3 182.5 224 147.2 224C111.9 224 83.2 195.3 83.2 160C83.2 124.7 111.9 96 147.2 96C182.5 96 211.2 124.7 211.2 160zM32 320C32 284.7 60.65 256 96 256H192C204.2 256 215.7 259.4 225.4 265.4C188.2 280.5 159.8 312.6 149.6 352H64C46.33 352 32 337.7 32 320V320zM415.9 264.6C425.3 259.1 436.3 256 448 256H544C579.3 256 608 284.7 608 320C608 337.7 593.7 352 576 352H493.6C483.2 311.9 453.1 279.4 415.9 264.6zM391.2 290.4C423.3 297.8 449.3 321.3 460.1 352C463.7 362 465.6 372.8 465.6 384C465.6 401.7 451.3 416 433.6 416H209.6C191.9 416 177.6 401.7 177.6 384C177.6 372.8 179.5 362 183.1 352C193.6 322.3 218.3 299.2 249.1 291.1C256.1 289.1 265.1 288 273.6 288H369.6C377 288 384.3 288.8 391.2 290.4zM563.2 160C563.2 195.3 534.5 224 499.2 224C463.9 224 435.2 195.3 435.2 160C435.2 124.7 463.9 96 499.2 96C534.5 96 563.2 124.7 563.2 160zM241.6 176C241.6 131.8 277.4 96 321.6 96C365.8 96 401.6 131.8 401.6 176C401.6 220.2 365.8 256 321.6 256C277.4 256 241.6 220.2 241.6 176z',
			),
		),
		'label'             => __( 'Users Between Lines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-gear'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM128 160c44.18 0 80-35.82 80-80S172.2 0 128 0C83.82 0 48 35.82 48 80S83.82 160 128 160zM319.9 320c57.41 0 103.1-46.56 103.1-104c0-57.44-46.54-104-103.1-104c-57.41 0-103.1 46.56-103.1 104C215.9 273.4 262.5 320 319.9 320zM368 400c0-16.69 3.398-32.46 8.619-47.36C374.3 352.5 372.2 352 369.9 352H270.1C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h266.1C389.5 485.6 368 445.5 368 400zM183.9 216c0-5.449 .9824-10.63 1.609-15.91C174.6 194.1 162.6 192 149.9 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C196.7 280.2 183.9 249.7 183.9 216zM551.9 192h-61.84c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 21.47-5.625 41.38-14.65 59.34C462.2 263.4 486.1 256 512 256c42.48 0 80.27 18.74 106.6 48h3.756C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192zM618.1 366.7c-5.025-16.01-13.59-30.62-24.75-42.71c-1.674-1.861-4.467-2.326-6.699-1.023l-19.17 11.07c-8.096-6.887-17.4-12.28-27.45-15.82V295.1c0-2.514-1.861-4.746-4.281-5.213c-16.56-3.723-33.5-3.629-49.32 0C484.9 291.2 483.1 293.5 483.1 295.1v22.24c-10.05 3.537-19.36 8.932-27.45 15.82l-19.26-11.07c-2.139-1.303-4.932-.8379-6.697 1.023c-11.17 12.1-19.73 26.71-24.66 42.71c-.7441 2.512 .2793 5.117 2.42 6.326l19.17 11.17c-1.859 10.42-1.859 21.21 0 31.64l-19.17 11.17c-2.234 1.209-3.164 3.816-2.42 6.328c4.932 16.01 13.49 30.52 24.66 42.71c1.766 1.863 4.467 2.328 6.697 1.025l19.26-11.07c8.094 6.887 17.4 12.28 27.45 15.82v22.24c0 2.514 1.77 4.746 4.188 5.211c16.66 3.723 33.5 3.629 49.32 0c2.42-.4648 4.281-2.697 4.281-5.211v-22.24c10.05-3.535 19.36-8.932 27.45-15.82l19.17 11.07c2.141 1.303 5.025 .8379 6.699-1.025c11.17-12.1 19.73-26.7 24.75-42.71c.7441-2.512-.2773-5.119-2.512-6.328l-19.17-11.17c1.953-10.42 1.953-21.22 0-31.64l19.17-11.17C618.7 371.8 619.7 369.2 618.1 366.7zM512 432c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32s32 14.33 32 32C544 417.7 529.7 432 512 432z',
			),
		),
		'label'             => __( 'Users Gear', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-line'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M211.2 96C211.2 131.3 182.5 160 147.2 160C111.9 160 83.2 131.3 83.2 96C83.2 60.65 111.9 32 147.2 32C182.5 32 211.2 60.65 211.2 96zM32 256C32 220.7 60.65 192 96 192H192C204.2 192 215.7 195.4 225.4 201.4C188.2 216.5 159.8 248.6 149.6 288H64C46.33 288 32 273.7 32 256V256zM415.9 200.6C425.3 195.1 436.3 192 448 192H544C579.3 192 608 220.7 608 256C608 273.7 593.7 288 576 288H493.6C483.2 247.9 453.1 215.4 415.9 200.6zM391.2 226.4C423.3 233.8 449.3 257.3 460.1 288C463.7 298 465.6 308.8 465.6 320C465.6 337.7 451.3 352 433.6 352H209.6C191.9 352 177.6 337.7 177.6 320C177.6 308.8 179.5 298 183.1 288C193.6 258.3 218.3 235.2 249.1 227.1C256.1 225.1 265.1 224 273.6 224H369.6C377 224 384.3 224.8 391.2 226.4zM563.2 96C563.2 131.3 534.5 160 499.2 160C463.9 160 435.2 131.3 435.2 96C435.2 60.65 463.9 32 499.2 32C534.5 32 563.2 60.65 563.2 96zM241.6 112C241.6 67.82 277.4 32 321.6 32C365.8 32 401.6 67.82 401.6 112C401.6 156.2 365.8 192 321.6 192C277.4 192 241.6 156.2 241.6 112zM608 416C625.7 416 640 430.3 640 448C640 465.7 625.7 480 608 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H608z',
			),
		),
		'label'             => __( 'Users Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-rays'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M112.1 79.03C122.3 88.4 122.3 103.6 112.1 112.1C103.6 122.3 88.4 122.3 79.03 112.1L7.029 40.97C-2.343 31.6-2.343 16.4 7.029 7.029C16.4-2.343 31.6-2.343 40.97 7.029L112.1 79.03zM599 7.029C608.4-2.343 623.6-2.343 632.1 7.029C642.3 16.4 642.3 31.6 632.1 40.97L560.1 112.1C551.6 122.3 536.4 122.3 527 112.1C517.7 103.6 517.7 88.4 527 79.03L599 7.029zM7.029 471L79.03 399C88.4 389.7 103.6 389.7 112.1 399C122.3 408.4 122.3 423.6 112.1 432.1L40.97 504.1C31.6 514.3 16.4 514.3 7.029 504.1C-2.343 495.6-2.343 480.4 7.029 471V471zM527 432.1C517.7 423.6 517.7 408.4 527 399C536.4 389.7 551.6 389.7 560.1 399L632.1 471C642.3 480.4 642.3 495.6 632.1 504.1C623.6 514.3 608.4 514.3 599 504.1L527 432.1zM256 192C256 156.7 284.7 128 320 128C355.3 128 384 156.7 384 192C384 227.3 355.3 256 320 256C284.7 256 256 227.3 256 192zM265.5 289.5C266.3 289.3 267.1 289.1 267.1 288.1C271.9 288.3 275.9 288 280 288H360C364.1 288 368.1 288.3 372 288.1C396.6 293.1 416.9 309.7 426.3 331.1C426.9 333.3 427.4 334.6 427.9 336C430.6 343.5 432 351.6 432 360C432 373.3 421.3 384 408 384H232C218.7 384 208 373.3 208 360C208 351.6 209.4 343.5 212.1 336C220.4 312.5 240.6 294.6 265.5 289.5V289.5zM127.8 176C127.8 149.5 149.3 128 175.8 128C202.3 128 223.8 149.5 223.8 176C223.8 202.5 202.3 224 175.8 224C149.3 224 127.8 202.5 127.8 176V176zM218.7 256C227.8 256 236.5 258.3 244 262.4C211.6 274.3 186.8 301.9 178.8 336H122.7C107.9 336 96 324.1 96 309.3C96 279.9 119.9 256 149.3 256H218.7zM517.3 336H461.2C453.2 301.9 428.4 274.3 395.1 262.4C403.5 258.3 412.2 256 421.3 256H490.7C520.1 256 544 279.9 544 309.3C544 324.1 532.1 336 517.3 336H517.3zM416 176C416 149.5 437.5 128 464 128C490.5 128 512 149.5 512 176C512 202.5 490.5 224 464 224C437.5 224 416 202.5 416 176z',
			),
		),
		'label'             => __( 'Users Rays', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-rectangle'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M223.8 176C223.8 202.5 202.3 224 175.8 224C149.3 224 127.8 202.5 127.8 176C127.8 149.5 149.3 128 175.8 128C202.3 128 223.8 149.5 223.8 176zM96 309.3C96 279.9 119.9 256 149.3 256H218.7C227.8 256 236.5 258.3 244 262.4C211.6 274.3 186.8 301.9 178.8 336H122.7C107.9 336 96 324.1 96 309.3H96zM395.1 262.4C403.5 258.3 412.2 256 421.3 256H490.7C520.1 256 544 279.9 544 309.3C544 324.1 532.1 336 517.3 336H461.2C453.2 301.9 428.4 274.3 395.1 262.4H395.1zM372 288.1C398 293.4 419.3 311.7 427.9 336C430.6 343.5 432 351.6 432 360C432 373.3 421.3 384 408 384H232C218.7 384 208 373.3 208 360C208 351.6 209.4 343.5 212.1 336C220.7 311.7 241.1 293.4 267.1 288.1C271.9 288.3 275.9 288 280 288H360C364.1 288 368.1 288.3 372 288.1V288.1zM512 176C512 202.5 490.5 224 464 224C437.5 224 416 202.5 416 176C416 149.5 437.5 128 464 128C490.5 128 512 149.5 512 176zM256 192C256 156.7 284.7 128 320 128C355.3 128 384 156.7 384 192C384 227.3 355.3 256 320 256C284.7 256 256 227.3 256 192zM544 0C597 0 640 42.98 640 96V416C640 469 597 512 544 512H96C42.98 512 0 469 0 416V96C0 42.98 42.98 0 96 0H544zM64 416C64 433.7 78.33 448 96 448H544C561.7 448 576 433.7 576 416V96C576 78.33 561.7 64 544 64H96C78.33 64 64 78.33 64 96V416z',
			),
		),
		'label'             => __( 'Users Rectangle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-slash'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M512 160c44.18 0 80-35.82 80-80S556.2 0 512 0c-44.18 0-80 35.82-80 80S467.8 160 512 160zM490.1 192c-12.8 0-24.88 3.037-35.86 8.24C454.8 205.5 455.8 210.6 455.8 216c0 33.71-12.78 64.21-33.16 88h199.7C632.1 304 640 295.6 640 285.3C640 233.8 600.6 192 551.9 192H490.1zM396.6 285.5C413.4 267.2 423.8 242.9 423.8 216c0-57.44-46.54-104-103.1-104c-35.93 0-67.07 18.53-85.59 46.3L193.1 126.1C202.4 113.1 208 97.24 208 80C208 35.82 172.2 0 128 0C103.8 0 82.52 10.97 67.96 27.95L38.81 5.109C34.41 1.672 29.19 0 24.03 0C16.91 0 9.846 3.156 5.127 9.188C-3.061 19.62-1.248 34.72 9.189 42.89l591.1 463.1c10.5 8.203 25.56 6.328 33.69-4.078c8.188-10.44 6.375-25.53-4.062-33.7L396.6 285.5zM270.1 352C191.6 352 128 411.7 128 485.3C128 500.1 140.7 512 156.4 512h327.2c11.62 0 21.54-6.583 25.95-15.96L325.7 352H270.1zM186.1 243.2L121.6 192H88.08C39.44 192 0 233.8 0 285.3C0 295.6 7.887 304 17.62 304h199.5C202.4 286.8 191.8 266.1 186.1 243.2z',
			),
		),
		'label'             => __( 'Users Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'users-viewfinder'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M48 136C48 149.3 37.25 160 24 160C10.75 160 0 149.3 0 136V32C0 14.33 14.33 0 32 0H136C149.3 0 160 10.75 160 24C160 37.25 149.3 48 136 48H48V136zM127.8 176C127.8 149.5 149.3 128 175.8 128C202.3 128 223.8 149.5 223.8 176C223.8 202.5 202.3 224 175.8 224C149.3 224 127.8 202.5 127.8 176V176zM218.7 256C227.8 256 236.5 258.3 244 262.4C211.6 274.3 186.8 301.9 178.8 336H122.7C107.9 336 96 324.1 96 309.3C96 279.9 119.9 256 149.3 256H218.7zM517.3 336H461.2C453.2 301.9 428.4 274.3 395.1 262.4C403.5 258.3 412.2 256 421.3 256H490.7C520.1 256 544 279.9 544 309.3C544 324.1 532.1 336 517.3 336H517.3zM432 360C432 373.3 421.3 384 408 384H232C218.7 384 208 373.3 208 360C208 351.6 209.4 343.5 212.1 336C220.7 311.7 241.1 293.4 267.1 288.1C271.9 288.3 275.9 288 280 288H360C364.1 288 368.1 288.3 372 288.1C398 293.4 419.3 311.7 427.9 336C430.6 343.5 432 351.6 432 360zM416 176C416 149.5 437.5 128 464 128C490.5 128 512 149.5 512 176C512 202.5 490.5 224 464 224C437.5 224 416 202.5 416 176zM384 192C384 227.3 355.3 256 320 256C284.7 256 256 227.3 256 192C256 156.7 284.7 128 320 128C355.3 128 384 156.7 384 192zM480 24C480 10.75 490.7 0 504 0H608C625.7 0 640 14.33 640 32V136C640 149.3 629.3 160 616 160C602.7 160 592 149.3 592 136V48H504C490.7 48 480 37.25 480 24zM48 464H136C149.3 464 160 474.7 160 488C160 501.3 149.3 512 136 512H32C14.33 512 0 497.7 0 480V376C0 362.7 10.75 352 24 352C37.25 352 48 362.7 48 376V464zM504 464H592V376C592 362.7 602.7 352 616 352C629.3 352 640 362.7 640 376V480C640 497.7 625.7 512 608 512H504C490.7 512 480 501.3 480 488C480 474.7 490.7 464 504 464z',
			),
		),
		'label'             => __( 'Users Viewfinder', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'usps'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M460.3 241.7c25.8-41.3 15.2-48.8-11.7-48.8h-27c-.1 0-1.5-1.4-10.9 8-11.2 5.6-37.9 6.3-37.9 8.7 0 4.5 70.3-3.1 88.1 0 9.5 1.5-1.5 20.4-4.4 32-.5 4.5 2.4 2.3 3.8 .1zm-112.1 22.6c64-21.3 97.3-23.9 102-26.2 4.4-2.9-4.4-6.6-26.2-5.8-51.7 2.2-137.6 37.1-172.6 53.9l-30.7-93.3h196.6c-2.7-28.2-152.9-22.6-337.9-22.6L27 415.8c196.4-97.3 258.9-130.3 321.2-151.5zM94.7 96c253.3 53.7 330 65.7 332.1 85.2 36.4 0 45.9 0 52.4 6.6 21.1 19.7-14.6 67.7-14.6 67.7-4.4 2.9-406.4 160.2-406.4 160.2h423.1L549 96z',
			),
		),
		'label'             => __( 'United States Postal Service', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'ussunnah'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M156.8 285.1l5.7 14.4h-8.2c-1.3-3.2-3.1-7.7-3.8-9.5-2.5-6.3-1.1-8.4 0-10 1.9-2.7 3.2-4.4 3.6-5.2 0 2.2 .8 5.7 2.7 10.3zm297.3 18.8c-2.1 13.8-5.7 27.1-10.5 39.7l43 23.4-44.8-18.8c-5.3 13.2-12 25.6-19.9 37.2l34.2 30.2-36.8-26.4c-8.4 11.8-18 22.6-28.7 32.3l24.9 34.7-28.1-31.8c-11 9.6-23.1 18-36.1 25.1l15.7 37.2-19.3-35.3c-13.1 6.8-27 12.1-41.6 15.9l6.7 38.4-10.5-37.4c-14.3 3.4-29.2 5.3-44.5 5.4L256 512l-1.9-38.4c-15.3-.1-30.2-2-44.5-5.3L199 505.6l6.7-38.2c-14.6-3.7-28.6-9.1-41.7-15.8l-19.2 35.1 15.6-37c-13-7-25.2-15.4-36.2-25.1l-27.9 31.6 24.7-34.4c-10.7-9.7-20.4-20.5-28.8-32.3l-36.5 26.2 33.9-29.9c-7.9-11.6-14.6-24.1-20-37.3l-44.4 18.7L67.8 344c-4.8-12.7-8.4-26.1-10.5-39.9l-51 9 50.3-14.2c-1.1-8.5-1.7-17.1-1.7-25.9 0-4.7 .2-9.4 .5-14.1L0 256l56-2.8c1.3-13.1 3.8-25.8 7.5-38.1L6.4 199l58.9 10.4c4-12 9.1-23.5 15.2-34.4l-55.1-30 58.3 24.6C90 159 97.2 149.2 105.3 140L55.8 96.4l53.9 38.7c8.1-8.6 17-16.5 26.6-23.6l-40-55.6 45.6 51.6c9.5-6.6 19.7-12.3 30.3-17.2l-27.3-64.9 33.8 62.1c10.5-4.4 21.4-7.9 32.7-10.4L199 6.4l19.5 69.2c11-2.1 22.3-3.2 33.8-3.4L256 0l3.6 72.2c11.5 .2 22.8 1.4 33.8 3.5L313 6.4l-12.4 70.7c11.3 2.6 22.2 6.1 32.6 10.5l33.9-62.2-27.4 65.1c10.6 4.9 20.7 10.7 30.2 17.2l45.8-51.8-40.1 55.9c9.5 7.1 18.4 15 26.5 23.6l54.2-38.9-49.7 43.9c8 9.1 15.2 18.9 21.5 29.4l58.7-24.7-55.5 30.2c6.1 10.9 11.1 22.3 15.1 34.3l59.3-10.4-57.5 16.2c3.7 12.2 6.2 24.9 7.5 37.9L512 256l-56 2.8c.3 4.6 .5 9.3 .5 14.1 0 8.7-.6 17.3-1.6 25.8l50.7 14.3-51.5-9.1zm-21.8-31c0-97.5-79-176.5-176.5-176.5s-176.5 79-176.5 176.5 79 176.5 176.5 176.5 176.5-79 176.5-176.5zm-24 0c0 84.3-68.3 152.6-152.6 152.6s-152.6-68.3-152.6-152.6 68.3-152.6 152.6-152.6 152.6 68.3 152.6 152.6zM195 241c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-40.7-19c0 2.1 1.3 3.8 3.6 5.1 3.5 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.5 6.8-9.6 10.9-9.6 12.6zm-19 0c0 2.1 1.3 3.8 3.6 5.1 3.3 1.9 6.2 4.6 8.2 8.2 2.8-5.7 4.3-9.5 4.3-11.2 0-2.2-1.1-4.4-3.2-7-2.1-2.5-3.2-5.2-3.3-7.7-6.4 6.8-9.6 10.9-9.6 12.6zm204.9 87.9c-8.4-3-8.7-6.8-8.7-15.6V182c-8.2 12.5-14.2 18.6-18 18.6 6.3 14.4 9.5 23.9 9.5 28.3v64.3c0 2.2-2.2 6.5-4.7 6.5h-18c-2.8-7.5-10.2-26.9-15.3-40.3-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 2.6 6.7 6.4 16.5 7.9 20.2h-9.2c-3.9-10.4-9.6-25.4-11.8-31.1-2 2.5-7.2 9.2-10.7 13.7 2.4 1.6 4.1 3.6 5.2 6.3 .8 2 2.8 7.3 4.3 10.9H256c-1.5-4.1-5.6-14.6-8.4-22-2 2.5-7.2 9.2-10.7 13.7 2.5 1.6 4.3 3.6 5.2 6.3 .2 .6 .5 1.4 .6 1.7H225c-4.6-13.9-11.4-27.7-11.4-34.1 0-2.2 .3-5.1 1.1-8.2-8.8 10.8-14 15.9-14 25 0 7.5 10.4 28.3 10.4 33.3 0 1.7-.5 3.3-1.4 4.9-9.6-12.7-15.5-20.7-18.8-20.7h-12l-11.2-28c-3.8-9.6-5.7-16-5.7-18.8 0-3.8 .5-7.7 1.7-12.2-1 1.3-3.7 4.7-5.5 7.1-.8-2.1-3.1-7.7-4.6-11.5-2.1 2.5-7.5 9.1-11.2 13.6 .9 2.3 3.3 8.1 4.9 12.2-2.5 3.3-9.1 11.8-13.6 17.7-4 5.3-5.8 13.3-2.7 21.8 2.5 6.7 2 7.9-1.7 14.1H191c5.5 0 14.3 14 15.5 22 13.2-16 15.4-19.6 16.8-21.6h107c3.9 0 7.2-1.9 9.9-5.8zm20.1-26.6V181.7c-9 12.5-15.9 18.6-20.7 18.6 7.1 14.4 10.7 23.9 10.7 28.3v66.3c0 17.5 8.6 20.4 24 20.4 8.1 0 12.5-.8 13.7-2.7-4.3-1.6-7.6-2.5-9.9-3.3-8.1-3.2-17.8-7.4-17.8-26z',
			),
		),
		'label'             => __( 'us-Sunnah Foundation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'utensils'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M221.6 148.7C224.7 161.3 224.8 174.5 222.1 187.2C219.3 199.1 213.6 211.9 205.6 222.1C191.1 238.6 173 249.1 151.1 254.1V472C151.1 482.6 147.8 492.8 140.3 500.3C132.8 507.8 122.6 512 111.1 512C101.4 512 91.22 507.8 83.71 500.3C76.21 492.8 71.1 482.6 71.1 472V254.1C50.96 250.1 31.96 238.9 18.3 222.4C10.19 212.2 4.529 200.3 1.755 187.5C-1.019 174.7-.8315 161.5 2.303 148.8L32.51 12.45C33.36 8.598 35.61 5.197 38.82 2.9C42.02 .602 45.97-.4297 49.89 .0026C53.82 .4302 57.46 2.303 60.1 5.259C62.74 8.214 64.18 12.04 64.16 16V160H81.53L98.62 11.91C99.02 8.635 100.6 5.621 103.1 3.434C105.5 1.248 108.7 .0401 111.1 .0401C115.3 .0401 118.5 1.248 120.9 3.434C123.4 5.621 124.1 8.635 125.4 11.91L142.5 160H159.1V16C159.1 12.07 161.4 8.268 163.1 5.317C166.6 2.366 170.2 .474 174.1 .0026C178-.4262 181.1 .619 185.2 2.936C188.4 5.253 190.6 8.677 191.5 12.55L221.6 148.7zM448 472C448 482.6 443.8 492.8 436.3 500.3C428.8 507.8 418.6 512 408 512C397.4 512 387.2 507.8 379.7 500.3C372.2 492.8 368 482.6 368 472V352H351.2C342.8 352 334.4 350.3 326.6 347.1C318.9 343.8 311.8 339.1 305.8 333.1C299.9 327.1 295.2 320 291.1 312.2C288.8 304.4 287.2 296 287.2 287.6L287.1 173.8C288 136.9 299.1 100.8 319.8 70.28C340.5 39.71 369.8 16.05 404.1 2.339C408.1 .401 414.2-.3202 419.4 .2391C424.6 .7982 429.6 2.62 433.9 5.546C438.2 8.472 441.8 12.41 444.2 17.03C446.7 21.64 447.1 26.78 448 32V472z',
			),
		),
		'label'             => __( 'Utensils', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'v'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M381.5 76.33l-160 384C216.6 472.2 204.9 480 192 480s-24.56-7.757-29.53-19.68l-160-384c-6.797-16.31 .9062-35.05 17.22-41.84c16.38-6.859 35.08 .9219 41.84 17.22L192 364.8l130.5-313.1c6.766-16.3 25.47-24.09 41.84-17.22C380.6 41.28 388.3 60.01 381.5 76.33z',
			),
		),
		'label'             => __( 'V', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'vaadin'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224.5 140.7c1.5-17.6 4.9-52.7 49.8-52.7h98.6c20.7 0 32.1-7.8 32.1-21.6V54.1c0-12.2 9.3-22.1 21.5-22.1S448 41.9 448 54.1v36.5c0 42.9-21.5 62-66.8 62H280.7c-30.1 0-33 14.7-33 27.1 0 1.3-.1 2.5-.2 3.7-.7 12.3-10.9 22.2-23.4 22.2s-22.7-9.8-23.4-22.2c-.1-1.2-.2-2.4-.2-3.7 0-12.3-3-27.1-33-27.1H66.8c-45.3 0-66.8-19.1-66.8-62V54.1C0 41.9 9.4 32 21.6 32s21.5 9.9 21.5 22.1v12.3C43.1 80.2 54.5 88 75.2 88h98.6c44.8 0 48.3 35.1 49.8 52.7h.9zM224 456c11.5 0 21.4-7 25.7-16.3 1.1-1.8 97.1-169.6 98.2-171.4 11.9-19.6-3.2-44.3-27.2-44.3-13.9 0-23.3 6.4-29.8 20.3L224 362l-66.9-117.7c-6.4-13.9-15.9-20.3-29.8-20.3-24 0-39.1 24.6-27.2 44.3 1.1 1.9 97.1 169.6 98.2 171.4 4.3 9.3 14.2 16.3 25.7 16.3z',
			),
		),
		'label'             => __( 'Vaadin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'van-shuttle'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M592 384H576C576 437 533 480 480 480C426.1 480 384 437 384 384H256C256 437 213 480 160 480C106.1 480 64 437 64 384H48C21.49 384 0 362.5 0 336V104C0 64.24 32.24 32 72 32H465.1C483.1 32 501.9 40.34 514.1 54.78L624.1 186.5C634.7 197.1 640 212.6 640 227.7V336C640 362.5 618.5 384 592 384zM64 192H160V96H72C67.58 96 64 99.58 64 104V192zM545.1 192L465.1 96H384V192H545.1zM320 192V96H224V192H320zM480 336C453.5 336 432 357.5 432 384C432 410.5 453.5 432 480 432C506.5 432 528 410.5 528 384C528 357.5 506.5 336 480 336zM160 432C186.5 432 208 410.5 208 384C208 357.5 186.5 336 160 336C133.5 336 112 357.5 112 384C112 410.5 133.5 432 160 432z',
			),
		),
		'label'             => __( 'Van Shuttle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'vault'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M144 240C144 195.8 179.8 160 224 160C268.2 160 304 195.8 304 240C304 284.2 268.2 320 224 320C179.8 320 144 284.2 144 240zM512 0C547.3 0 576 28.65 576 64V416C576 451.3 547.3 480 512 480H496L480 512H416L400 480H176L160 512H96L80 480H64C28.65 480 0 451.3 0 416V64C0 28.65 28.65 0 64 0H512zM224 400C312.4 400 384 328.4 384 240C384 151.6 312.4 80 224 80C135.6 80 64 151.6 64 240C64 328.4 135.6 400 224 400zM480 221.3C498.6 214.7 512 196.9 512 176C512 149.5 490.5 128 464 128C437.5 128 416 149.5 416 176C416 196.9 429.4 214.7 448 221.3V336C448 344.8 455.2 352 464 352C472.8 352 480 344.8 480 336V221.3z',
			),
		),
		'label'             => __( 'Vault', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'vector-square'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 32C433.7 32 448 46.33 448 64V128C448 145.7 433.7 160 416 160V352C433.7 352 448 366.3 448 384V448C448 465.7 433.7 480 416 480H352C334.3 480 320 465.7 320 448H128C128 465.7 113.7 480 96 480H32C14.33 480 0 465.7 0 448V384C0 366.3 14.33 352 32 352V160C14.33 160 0 145.7 0 128V64C0 46.33 14.33 32 32 32H96C113.7 32 128 46.33 128 64H320C320 46.33 334.3 32 352 32H416zM368 80V112H400V80H368zM96 160V352C113.7 352 128 366.3 128 384H320C320 366.3 334.3 352 352 352V160C334.3 160 320 145.7 320 128H128C128 145.7 113.7 160 96 160zM48 400V432H80V400H48zM400 432V400H368V432H400zM80 112V80H48V112H80z',
			),
		),
		'label'             => __( 'Vector Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'venus'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M368 176c0-97.2-78.8-176-176-176c-97.2 0-176 78.8-176 176c0 86.26 62.1 157.9 144 172.1v35.05H112c-8.836 0-16 7.162-16 16v32c0 8.836 7.164 16 16 16H160v48c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16v-48h48c8.838 0 16-7.164 16-16v-32c0-8.838-7.162-16-16-16H224v-35.05C305.9 333.9 368 262.3 368 176zM192 272c-52.93 0-96-43.07-96-96c0-52.94 43.07-96 96-96c52.94 0 96 43.06 96 96C288 228.9 244.9 272 192 272z',
			),
		),
		'label'             => __( 'Venus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'venus-double'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M368 176c0-97.2-78.8-176-176-176c-97.2 0-176 78.8-176 176c0 86.26 62.1 157.9 144 172.1v35.05H112c-8.836 0-16 7.162-16 16v32c0 8.836 7.164 16 16 16H160v48c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16v-48h48c8.838 0 16-7.164 16-16v-32c0-8.838-7.162-16-16-16H224v-35.05C305.9 333.9 368 262.3 368 176zM192 272c-52.93 0-96-43.07-96-96c0-52.94 43.07-96 96-96c52.94 0 96 43.06 96 96C288 228.9 244.9 272 192 272zM624 176C624 78.8 545.2 0 448 0c-39.02 0-74.95 12.85-104.1 34.34c18.38 19.7 32.94 42.91 42.62 68.58C403.2 88.83 424.5 80 448 80c52.94 0 96 43.06 96 96c0 52.93-43.06 96-96 96c-23.57 0-44.91-8.869-61.63-23.02c-9.572 25.45-23.95 48.54-42.23 68.23C365.1 332.7 389.3 344 416 348.1V384h-48c-8.836 0-16 7.162-16 16v32c0 8.836 7.164 16 16 16H416v48c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16V448h48c8.838 0 16-7.164 16-16v-32c0-8.838-7.162-16-16-16H480v-35.05C561.9 333.9 624 262.3 624 176z',
			),
		),
		'label'             => __( 'Venus Double', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'venus-mars'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M256 384H208v-35.05C289.9 333.9 352 262.3 352 176c0-97.2-78.8-176-176-176c-97.2 0-176 78.8-176 176c0 86.26 62.1 157.9 144 172.1v35.05H96c-8.836 0-16 7.162-16 16v32c0 8.836 7.164 16 16 16h48v48c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16v-48H256c8.838 0 16-7.164 16-16v-32C272 391.2 264.8 384 256 384zM176 272c-52.93 0-96-43.07-96-96c0-52.94 43.07-96 96-96c52.94 0 96 43.06 96 96C272 228.9 228.9 272 176 272zM624 0h-112.4c-21.38 0-32.09 25.85-16.97 40.97l29.56 29.56l-24.55 24.55c-29.97-20.66-64.81-31.05-99.74-31.05c-15.18 0-30.42 2.225-45.19 6.132c13.55 22.8 22.82 48.36 26.82 75.67c6.088-1.184 12.27-1.785 18.45-1.785c24.58 0 49.17 9.357 67.88 28.07c37.43 37.43 37.43 98.33 0 135.8c-18.71 18.71-43.3 28.07-67.88 28.07c-23.55 0-46.96-8.832-65.35-26.01c-15.92 18.84-34.93 35.1-56.75 47.35c11.45 5.898 20.17 16.3 23.97 28.82C331.5 406 365.7 416 400 416c45.04 0 90.08-17.18 124.5-51.55c60.99-60.99 67.73-155.6 20.47-224.1l24.55-24.55l29.56 29.56c4.889 4.889 10.9 7.078 16.8 7.078C628.2 152.4 640 142.8 640 128.4V16C640 7.164 632.8 0 624 0z',
			),
		),
		'label'             => __( 'Venus Mars', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'vest'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M437.3 239.9L384 160V32c0-17.67-14.33-32-32-32h-32c-4.75 0-9.375 1.406-13.31 4.031l-25 16.66c-35.03 23.38-80.28 23.38-115.4 0l-25-16.66C137.4 1.406 132.8 0 128 0H96C78.33 0 64 14.33 64 32v128L10.75 239.9C3.74 250.4 0 262.7 0 275.4V480c0 17.67 14.33 32 32 32h160V288c0-3.439 .5547-6.855 1.643-10.12l13.49-40.48L150.2 66.56C173.2 79.43 198.5 86.25 224 86.25s50.79-6.824 73.81-19.69L224 288v224h192c17.67 0 32-14.33 32-32V275.4C448 262.7 444.3 250.4 437.3 239.9zM131.3 371.3l-48 48C80.19 422.4 76.09 424 72 424s-8.188-1.562-11.31-4.688c-6.25-6.25-6.25-16.38 0-22.62l48-48c6.25-6.25 16.38-6.25 22.62 0S137.6 365.1 131.3 371.3zM387.3 419.3C384.2 422.4 380.1 424 376 424s-8.188-1.562-11.31-4.688l-48-48c-6.25-6.25-6.25-16.38 0-22.62s16.38-6.25 22.62 0l48 48C393.6 402.9 393.6 413.1 387.3 419.3z',
			),
		),
		'label'             => __( 'Vest', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'vest-patches'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M437.3 239.9L384 160V32c0-17.67-14.33-32-32-32h-32c-4.75 0-9.375 1.406-13.31 4.031l-25 16.66c-35.03 23.38-80.28 23.38-115.4 0l-25-16.66C137.4 1.406 132.8 0 128 0H96C78.33 0 64 14.33 64 32v128L10.75 239.9C3.74 250.4 0 262.7 0 275.4V480c0 17.67 14.33 32 32 32h160V288c0-3.439 .5547-6.855 1.643-10.12l13.49-40.48L150.2 66.56C173.2 79.43 198.5 86.25 224 86.25s50.79-6.824 73.81-19.69L224 288v224h192c17.67 0 32-14.33 32-32V275.4C448 262.7 444.3 250.4 437.3 239.9zM63.5 272.5c-4.656-4.688-4.656-12.31 0-17c4.688-4.688 12.31-4.688 17 0L96 271l15.5-15.5c4.688-4.688 12.31-4.688 17 0c4.656 4.688 4.656 12.31 0 17L113 288l15.5 15.5c4.656 4.688 4.656 12.31 0 17C126.2 322.8 123.1 324 120 324s-6.156-1.156-8.5-3.5L96 305l-15.5 15.5C78.16 322.8 75.06 324 72 324s-6.156-1.156-8.5-3.5c-4.656-4.688-4.656-12.31 0-17L79 288L63.5 272.5zM96 456c-22.09 0-40-17.91-40-40S73.91 376 96 376S136 393.9 136 416S118.1 456 96 456zM359.2 335.8L310.7 336C306.1 336 303.1 333 304 329.3l.2158-48.53c.1445-14.4 12.53-25.98 27.21-24.67c12.79 1.162 22.13 12.62 22.06 25.42l-.0557 5.076l5.069-.0566c12.83-.0352 24.24 9.275 25.4 22.08C385.2 323.3 373.7 335.7 359.2 335.8z',
			),
		),
		'label'             => __( 'Vest Patches', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'viacoin'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 32h-64l-80.7 192h-94.5L64 32H0l48 112H0v48h68.5l13.8 32H0v48h102.8L192 480l89.2-208H384v-48h-82.3l13.8-32H384v-48h-48l48-112zM192 336l-27-64h54l-27 64z',
			),
		),
		'label'             => __( 'Viacoin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'viadeo'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M276.2 150.5v.7C258.3 98.6 233.6 47.8 205.4 0c43.3 29.2 67 100 70.8 150.5zm32.7 121.7c7.6 18.2 11 37.5 11 57 0 77.7-57.8 141-137.8 139.4l3.8-.3c74.2-46.7 109.3-118.6 109.3-205.1 0-38.1-6.5-75.9-18.9-112 1 11.7 1 23.7 1 35.4 0 91.8-18.1 241.6-116.6 280C95 455.2 49.4 398 49.4 329.2c0-75.6 57.4-142.3 135.4-142.3 16.8 0 33.7 3.1 49.1 9.6 1.7-15.1 6.5-29.9 13.4-43.3-19.9-7.2-41.2-10.7-62.5-10.7-161.5 0-238.7 195.9-129.9 313.7 67.9 74.6 192 73.9 259.8 0 56.6-61.3 60.9-142.4 36.4-201-12.7 8-27.1 13.9-42.2 17zM418.1 11.7c-31 66.5-81.3 47.2-115.8 80.1-12.4 12-20.6 34-20.6 50.5 0 14.1 4.5 27.1 12 38.8 47.4-11 98.3-46 118.2-90.7-.7 5.5-4.8 14.4-7.2 19.2-20.3 35.7-64.6 65.6-99.7 84.9 14.8 14.4 33.7 25.8 55 25.8 79 0 110.1-134.6 58.1-208.6z',
			),
		),
		'label'             => __( 'Viadeo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'viadeo-square'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM280.7 381.2c-42.4 46.2-120 46.6-162.4 0-68-73.6-19.8-196.1 81.2-196.1 13.3 0 26.6 2.1 39.1 6.7-4.3 8.4-7.3 17.6-8.4 27.1-9.7-4.1-20.2-6-30.7-6-48.8 0-84.6 41.7-84.6 88.9 0 43 28.5 78.7 69.5 85.9 61.5-24 72.9-117.6 72.9-175 0-7.3 0-14.8-.6-22.1-11.2-32.9-26.6-64.6-44.2-94.5 27.1 18.3 41.9 62.5 44.2 94.1v.4c7.7 22.5 11.8 46.2 11.8 70 0 54.1-21.9 99-68.3 128.2l-2.4 .2c50 1 86.2-38.6 86.2-87.2 0-12.2-2.1-24.3-6.9-35.7 9.5-1.9 18.5-5.6 26.4-10.5 15.3 36.6 12.6 87.3-22.8 125.6zM309 233.7c-13.3 0-25.1-7.1-34.4-16.1 21.9-12 49.6-30.7 62.3-53 1.5-3 4.1-8.6 4.5-12-12.5 27.9-44.2 49.8-73.9 56.7-4.7-7.3-7.5-15.5-7.5-24.3 0-10.3 5.2-24.1 12.9-31.6 21.6-20.5 53-8.5 72.4-50 32.5 46.2 13.1 130.3-36.3 130.3z',
			),
		),
		'label'             => __( 'Viadeo Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'vial'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 169.4l-160-160C336.4 3.125 328.2 0 320 0s-16.38 3.125-22.62 9.375c-12.5 12.5-12.5 32.75 0 45.25l6.975 6.977l-271.4 271c-38.75 38.75-45.13 102-9.375 143.5C44.08 500 72.76 512 101.5 512h.4473c26.38 0 52.75-9.1 72.88-30.12l275.2-274.6l7.365 7.367C463.6 220.9 471.8 224 480 224s16.38-3.125 22.62-9.375C515.1 202.1 515.1 181.9 502.6 169.4zM310.6 256H200.2l149.3-149.1l55.18 55.12L310.6 256z',
			),
		),
		'label'             => __( 'Vial', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'vial-circle-check'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 64C0 46.33 14.33 32 32 32H224C241.7 32 256 46.33 256 64C256 81.67 241.7 96 224 96V266.8C203.8 295.4 192 330.3 192 368C192 393.2 197.3 417.1 206.8 438.8C189.5 463.7 160.6 480 128 480C74.98 480 32 437 32 384V96C14.33 96 0 81.67 0 64V64zM96 192H160V96H96V192zM512 368C512 447.5 447.5 512 368 512C288.5 512 224 447.5 224 368C224 288.5 288.5 224 368 224C447.5 224 512 288.5 512 368zM412.7 324.7L352 385.4L323.3 356.7C317.1 350.4 306.9 350.4 300.7 356.7C294.4 362.9 294.4 373.1 300.7 379.3L340.7 419.3C346.9 425.6 357.1 425.6 363.3 419.3L435.3 347.3C441.6 341.1 441.6 330.9 435.3 324.7C429.1 318.4 418.9 318.4 412.7 324.7H412.7z',
			),
		),
		'label'             => __( 'Vial Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'vial-virus'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 32C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96V207.1C252.9 209.1 249.9 211.5 247.2 214.2C225.3 236.1 225.3 271.6 247.2 293.4C247.4 293.6 247.4 293.7 247.5 293.8L247.5 293.8C247.5 293.9 247.5 294.1 247.4 294.4C247.3 294.6 247.1 294.8 247.1 294.8L247 294.9C246.1 294.9 246.8 294.9 246.6 294.9C215.7 294.9 190.6 319.1 190.6 350.9C190.6 381.8 215.7 406.9 246.6 406.9C246.8 406.9 246.1 406.9 247 406.9L247.1 406.9C247.1 406.1 247.3 407.1 247.4 407.4C247.5 407.7 247.5 407.9 247.5 407.1L247.5 408C247.4 408.1 247.4 408.2 247.2 408.3C236 419.5 230.6 434.2 230.8 448.8C213.3 467.1 188 480 160 480C106.1 480 64 437 64 384V96C46.33 96 32 81.67 32 64C32 46.33 46.33 32 64 32H256zM192 192V96H128V192H192zM383.8 189.7C397.1 189.7 407.8 200.4 407.8 213.7C407.8 242.9 443.2 257.6 463.9 236.9C473.3 227.5 488.5 227.5 497.8 236.9C507.2 246.2 507.2 261.4 497.8 270.8C477.2 291.5 491.8 326.9 521.1 326.9C534.3 326.9 545.1 337.6 545.1 350.9C545.1 364.1 534.3 374.9 521.1 374.9C491.8 374.9 477.2 410.3 497.8 430.9C507.2 440.3 507.2 455.5 497.8 464.9C488.5 474.3 473.3 474.3 463.9 464.9C443.2 444.2 407.8 458.9 407.8 488.1C407.8 501.4 397.1 512.1 383.8 512.1C370.6 512.1 359.8 501.4 359.8 488.1C359.8 458.9 324.5 444.2 303.8 464.9C294.4 474.3 279.2 474.3 269.8 464.9C260.5 455.5 260.5 440.3 269.8 430.9C290.5 410.3 275.9 374.9 246.6 374.9C233.4 374.9 222.6 364.1 222.6 350.9C222.6 337.6 233.4 326.9 246.6 326.9C275.9 326.9 290.5 291.5 269.8 270.8C260.5 261.4 260.5 246.2 269.8 236.9C279.2 227.5 294.4 227.5 303.8 236.9C324.5 257.6 359.8 242.9 359.8 213.7C359.8 200.4 370.6 189.7 383.8 189.7H383.8zM352 352C369.7 352 384 337.7 384 320C384 302.3 369.7 288 352 288C334.3 288 320 302.3 320 320C320 337.7 334.3 352 352 352zM416 360C402.7 360 392 370.7 392 384C392 397.3 402.7 408 416 408C429.3 408 440 397.3 440 384C440 370.7 429.3 360 416 360z',
			),
		),
		'label'             => __( 'Vial Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'vials'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200 32h-176C10.75 32 0 42.74 0 56C0 69.25 10.75 80 24 80H32v320C32 444.1 67.88 480 112 480S192 444.1 192 400v-320h8C213.3 80 224 69.25 224 56C224 42.74 213.3 32 200 32zM144 256h-64V80h64V256zM488 32h-176C298.7 32 288 42.74 288 56c0 13.25 10.75 24 24 24H320v320c0 44.13 35.88 80 80 80s80-35.88 80-80v-320h8C501.3 80 512 69.25 512 56C512 42.74 501.3 32 488 32zM432 256h-64V80h64V256z',
			),
		),
		'label'             => __( 'Vials', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'viber'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M444 49.9C431.3 38.2 379.9 .9 265.3 .4c0 0-135.1-8.1-200.9 52.3C27.8 89.3 14.9 143 13.5 209.5c-1.4 66.5-3.1 191.1 117 224.9h.1l-.1 51.6s-.8 20.9 13 25.1c16.6 5.2 26.4-10.7 42.3-27.8 8.7-9.4 20.7-23.2 29.8-33.7 82.2 6.9 145.3-8.9 152.5-11.2 16.6-5.4 110.5-17.4 125.7-142 15.8-128.6-7.6-209.8-49.8-246.5zM457.9 287c-12.9 104-89 110.6-103 115.1-6 1.9-61.5 15.7-131.2 11.2 0 0-52 62.7-68.2 79-5.3 5.3-11.1 4.8-11-5.7 0-6.9 .4-85.7 .4-85.7-.1 0-.1 0 0 0-101.8-28.2-95.8-134.3-94.7-189.8 1.1-55.5 11.6-101 42.6-131.6 55.7-50.5 170.4-43 170.4-43 96.9 .4 143.3 29.6 154.1 39.4 35.7 30.6 53.9 103.8 40.6 211.1zm-139-80.8c.4 8.6-12.5 9.2-12.9 .6-1.1-22-11.4-32.7-32.6-33.9-8.6-.5-7.8-13.4 .7-12.9 27.9 1.5 43.4 17.5 44.8 46.2zm20.3 11.3c1-42.4-25.5-75.6-75.8-79.3-8.5-.6-7.6-13.5 .9-12.9 58 4.2 88.9 44.1 87.8 92.5-.1 8.6-13.1 8.2-12.9-.3zm47 13.4c.1 8.6-12.9 8.7-12.9 .1-.6-81.5-54.9-125.9-120.8-126.4-8.5-.1-8.5-12.9 0-12.9 73.7 .5 133 51.4 133.7 139.2zM374.9 329v.2c-10.8 19-31 40-51.8 33.3l-.2-.3c-21.1-5.9-70.8-31.5-102.2-56.5-16.2-12.8-31-27.9-42.4-42.4-10.3-12.9-20.7-28.2-30.8-46.6-21.3-38.5-26-55.7-26-55.7-6.7-20.8 14.2-41 33.3-51.8h.2c9.2-4.8 18-3.2 23.9 3.9 0 0 12.4 14.8 17.7 22.1 5 6.8 11.7 17.7 15.2 23.8 6.1 10.9 2.3 22-3.7 26.6l-12 9.6c-6.1 4.9-5.3 14-5.3 14s17.8 67.3 84.3 84.3c0 0 9.1 .8 14-5.3l9.6-12c4.6-6 15.7-9.8 26.6-3.7 14.7 8.3 33.4 21.2 45.8 32.9 7 5.7 8.6 14.4 3.8 23.6z',
			),
		),
		'label'             => __( 'Viber', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'video'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M384 112v288c0 26.51-21.49 48-48 48h-288c-26.51 0-48-21.49-48-48v-288c0-26.51 21.49-48 48-48h288C362.5 64 384 85.49 384 112zM576 127.5v256.9c0 25.5-29.17 40.39-50.39 25.79L416 334.7V177.3l109.6-75.56C546.9 87.13 576 102.1 576 127.5z',
			),
		),
		'label'             => __( 'Video', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'social' ),
	),
	'video-slash'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 399.1c0 26.51 21.49 47.1 47.1 47.1h287.1c19.57 0 36.34-11.75 43.81-28.56L32 121.8L32 399.1zM630.8 469.1l-89.21-69.92l15.99 11.02c21.22 14.59 50.41-.2971 50.41-25.8V127.5c0-25.41-29.07-40.37-50.39-25.76l-109.6 75.56l.0001 148.5l-32-25.08l.0001-188.7c0-26.51-21.49-47.1-47.1-47.1H113.9L38.81 5.111C34.41 1.673 29.19 0 24.03 0C16.91 0 9.84 3.158 5.121 9.189C-3.066 19.63-1.249 34.72 9.189 42.89l591.1 463.1c10.5 8.203 25.57 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'Video Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'vihara'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M280.1 22.03L305.8 4.661C307.1 3.715 308.4 2.908 309.9 2.246C313.1 .7309 316.6-.0029 319.1 0C323.4-.0029 326.9 .7309 330.1 2.246C331.6 2.909 332.9 3.716 334.2 4.661L359 22.03C392.1 45.8 430.8 63.52 470.8 74.42L493.8 80.71C495.6 81.17 497.4 81.83 499 82.68C502.2 84.33 504.1 86.66 507.1 89.43C510.8 94.38 512.7 100.7 511.8 107.2C511.4 109.1 510.6 112.6 509.3 115C507.7 118.2 505.3 120.1 502.6 123.1C498.3 126.3 492.1 128.1 487.5 128H480V184.1L491.7 193.3C512.8 210 536.6 222.9 562.2 231.4L591.1 241.1C592.7 241.6 594.2 242.2 595.7 243C598.8 244.8 601.4 247.2 603.5 249.1C605.5 252.8 606.9 256 607.6 259.6C608.1 262.2 608.2 265 607.7 267.8C607.2 270.6 606.3 273.3 604.1 275.7C603.2 278.8 600.8 281.5 598 283.5C595.2 285.5 591.1 286.9 588.4 287.6C586.8 287.9 585.1 288 583.4 288H544V353.9C564.5 376.7 591.4 393 621.4 400.6C632 403 640 412.6 640 424C640 437.3 629.3 448 616 448H576V480C576 497.7 561.7 512 544 512C526.3 512 512 497.7 512 480V448H352V480C352 497.7 337.7 512 320 512C302.3 512 288 497.7 288 480V448H128V480C128 497.7 113.7 512 96 512C78.33 512 64 497.7 64 480V448H24C10.75 448 0 437.3 0 424C0 412.6 7.962 403 18.63 400.6C48.61 393 75.51 376.7 96 353.9V288H56.55C54.87 288 53.2 287.9 51.57 287.6C48.03 286.9 44.77 285.5 41.96 283.5C39.16 281.5 36.77 278.8 35.03 275.7C33.69 273.3 32.76 270.6 32.31 267.8C31.85 265 31.9 262.2 32.41 259.6C33.07 256 34.51 252.8 36.53 249.1C38.55 247.2 41.19 244.8 44.34 243C45.78 242.2 47.32 241.6 48.94 241.1L77.81 231.4C103.4 222.9 127.2 210 148.3 193.3L160 184.1V128H152.5C147 128.1 141.7 126.3 137.4 123.1C134.7 120.1 132.3 118.2 130.7 115C129.4 112.6 128.6 109.1 128.2 107.2C127.3 100.7 129.2 94.38 132.9 89.43C135 86.66 137.8 84.33 140.1 82.68C142.6 81.83 144.4 81.17 146.2 80.71L169.2 74.42C209.2 63.52 247 45.8 280.1 22.03H280.1zM223.1 128V192H416V128H223.1zM159.1 352H480V288H159.1V352z',
			),
		),
		'label'             => __( 'Vihara', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'vimeo'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M403.2 32H44.8C20.1 32 0 52.1 0 76.8v358.4C0 459.9 20.1 480 44.8 480h358.4c24.7 0 44.8-20.1 44.8-44.8V76.8c0-24.7-20.1-44.8-44.8-44.8zM377 180.8c-1.4 31.5-23.4 74.7-66 129.4-44 57.2-81.3 85.8-111.7 85.8-18.9 0-34.8-17.4-47.9-52.3-25.5-93.3-36.4-148-57.4-148-2.4 0-10.9 5.1-25.4 15.2l-15.2-19.6c37.3-32.8 72.9-69.2 95.2-71.2 25.2-2.4 40.7 14.8 46.5 51.7 20.7 131.2 29.9 151 67.6 91.6 13.5-21.4 20.8-37.7 21.8-48.9 3.5-33.2-25.9-30.9-45.8-22.4 15.9-52.1 46.3-77.4 91.2-76 33.3 .9 49 22.5 47.1 64.7z',
			),
		),
		'label'             => __( 'Vimeo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'vimeo-square'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-16.2 149.6c-1.4 31.1-23.2 73.8-65.3 127.9-43.5 56.5-80.3 84.8-110.4 84.8-18.7 0-34.4-17.2-47.3-51.6-25.2-92.3-35.9-146.4-56.7-146.4-2.4 0-10.8 5-25.1 15.1L64 192c36.9-32.4 72.1-68.4 94.1-70.4 24.9-2.4 40.2 14.6 46 51.1 20.5 129.6 29.6 149.2 66.8 90.5 13.4-21.2 20.6-37.2 21.5-48.3 3.4-32.8-25.6-30.6-45.2-22.2 15.7-51.5 45.8-76.5 90.1-75.1 32.9 1 48.4 22.4 46.5 64z',
			),
		),
		'label'             => __( 'Vimeo Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'vimeo-v'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M447.8 153.6c-2 43.6-32.4 103.3-91.4 179.1-60.9 79.2-112.4 118.8-154.6 118.8-26.1 0-48.2-24.1-66.3-72.3C100.3 250 85.3 174.3 56.2 174.3c-3.4 0-15.1 7.1-35.2 21.1L0 168.2c51.6-45.3 100.9-95.7 131.8-98.5 34.9-3.4 56.3 20.5 64.4 71.5 28.7 181.5 41.4 208.9 93.6 126.7 18.7-29.6 28.8-52.1 30.2-67.6 4.8-45.9-35.8-42.8-63.3-31 22-72.1 64.1-107.1 126.2-105.1 45.8 1.2 67.5 31.1 64.9 89.4z',
			),
		),
		'label'             => __( 'Vimeo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'vine'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 254.7v52.1c-18.4 4.2-36.9 6.1-52.1 6.1-36.9 77.4-103 143.8-125.1 156.2-14 7.9-27.1 8.4-42.7-.8C137 452 34.2 367.7 0 102.7h74.5C93.2 261.8 139 343.4 189.3 404.5c27.9-27.9 54.8-65.1 75.6-106.9-49.8-25.3-80.1-80.9-80.1-145.6 0-65.6 37.7-115.1 102.2-115.1 114.9 0 106.2 127.9 81.6 181.5 0 0-46.4 9.2-63.5-20.5 3.4-11.3 8.2-30.8 8.2-48.5 0-31.3-11.3-46.6-28.4-46.6-18.2 0-30.8 17.1-30.8 50 .1 79.2 59.4 118.7 129.9 101.9z',
			),
		),
		'label'             => __( 'Vine', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'virus'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 43.55C288 93.44 348.3 118.4 383.6 83.15L391.8 74.98C404.3 62.48 424.5 62.48 437 74.98C449.5 87.48 449.5 107.7 437 120.2L428.9 128.4C393.6 163.7 418.6 224 468.5 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H468.5C418.6 288 393.6 348.3 428.9 383.6L437 391.8C449.5 404.3 449.5 424.5 437 437C424.5 449.5 404.3 449.5 391.8 437L383.6 428.9C348.3 393.6 288 418.6 288 468.5V480C288 497.7 273.7 512 256 512C238.3 512 224 497.7 224 480V468.5C224 418.6 163.7 393.6 128.4 428.9L120.2 437C107.7 449.5 87.48 449.5 74.98 437C62.48 424.5 62.48 404.3 74.98 391.8L83.15 383.6C118.4 348.3 93.44 288 43.55 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H43.55C93.44 224 118.4 163.7 83.15 128.4L74.98 120.2C62.48 107.7 62.48 87.48 74.98 74.98C87.48 62.48 107.7 62.48 120.2 74.98L128.4 83.15C163.7 118.4 224 93.44 224 43.55V32C224 14.33 238.3 0 256 0C273.7 0 288 14.33 288 32V43.55zM224 176C197.5 176 176 197.5 176 224C176 250.5 197.5 272 224 272C250.5 272 272 250.5 272 224C272 197.5 250.5 176 224 176zM304 328C317.3 328 328 317.3 328 304C328 290.7 317.3 280 304 280C290.7 280 280 290.7 280 304C280 317.3 290.7 328 304 328z',
			),
		),
		'label'             => __( 'Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'virus-covid'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 24C192 10.75 202.7 0 216 0H296C309.3 0 320 10.75 320 24C320 37.25 309.3 48 296 48H280V81.62C310.7 85.8 338.8 97.88 362.3 115.7L386.1 91.95L374.8 80.64C365.4 71.26 365.4 56.07 374.8 46.7C384.2 37.32 399.4 37.32 408.7 46.7L465.3 103.3C474.7 112.6 474.7 127.8 465.3 137.2C455.9 146.6 440.7 146.6 431.4 137.2L420 125.9L396.3 149.7C414.1 173.2 426.2 201.3 430.4 232H464V216C464 202.7 474.7 192 488 192C501.3 192 512 202.7 512 216V296C512 309.3 501.3 320 488 320C474.7 320 464 309.3 464 296V280H430.4C426.2 310.7 414.1 338.8 396.3 362.3L420 386.1L431.4 374.8C440.7 365.4 455.9 365.4 465.3 374.8C474.7 384.2 474.7 399.4 465.3 408.7L408.7 465.3C399.4 474.7 384.2 474.7 374.8 465.3C365.4 455.9 365.4 440.7 374.8 431.4L386.1 420L362.3 396.3C338.8 414.1 310.7 426.2 280 430.4V464H296C309.3 464 320 474.7 320 488C320 501.3 309.3 512 296 512H216C202.7 512 192 501.3 192 488C192 474.7 202.7 464 216 464H232V430.4C201.3 426.2 173.2 414.1 149.7 396.3L125.9 420.1L137.2 431.4C146.6 440.7 146.6 455.9 137.2 465.3C127.8 474.7 112.6 474.7 103.3 465.3L46.7 408.7C37.32 399.4 37.32 384.2 46.7 374.8C56.07 365.4 71.27 365.4 80.64 374.8L91.95 386.1L115.7 362.3C97.88 338.8 85.8 310.7 81.62 280H48V296C48 309.3 37.25 320 24 320C10.75 320 0 309.3 0 296V216C0 202.7 10.75 192 24 192C37.25 192 48 202.7 48 216V232H81.62C85.8 201.3 97.88 173.2 115.7 149.7L91.95 125.9L80.64 137.2C71.26 146.6 56.07 146.6 46.7 137.2C37.32 127.8 37.32 112.6 46.7 103.3L103.3 46.7C112.6 37.33 127.8 37.33 137.2 46.7C146.6 56.07 146.6 71.27 137.2 80.64L125.9 91.95L149.7 115.7C173.2 97.88 201.3 85.8 232 81.62V48H216C202.7 48 192 37.26 192 24V24zM192 176C165.5 176 144 197.5 144 224C144 250.5 165.5 272 192 272C218.5 272 240 250.5 240 224C240 197.5 218.5 176 192 176zM304 328C317.3 328 328 317.3 328 304C328 290.7 317.3 280 304 280C290.7 280 280 290.7 280 304C280 317.3 290.7 328 304 328z',
			),
		),
		'label'             => __( 'Virus Covid', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'virus-covid-slash'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M134.1 79.83L167.3 46.7C176.6 37.33 191.8 37.33 201.2 46.7C210.6 56.07 210.6 71.27 201.2 80.64L189.9 91.95L213.7 115.7C237.2 97.88 265.3 85.8 295.1 81.62V48H279.1C266.7 48 255.1 37.26 255.1 24C255.1 10.75 266.7 .0003 279.1 .0003H360C373.3 .0003 384 10.75 384 24C384 37.26 373.3 48 360 48H344V81.62C374.7 85.8 402.8 97.88 426.3 115.7L450.1 91.95L438.8 80.64C429.4 71.26 429.4 56.07 438.8 46.7C448.2 37.32 463.4 37.32 472.7 46.7L529.3 103.3C538.7 112.6 538.7 127.8 529.3 137.2C519.9 146.6 504.7 146.6 495.4 137.2L484 125.9L460.3 149.7C478.1 173.2 490.2 201.3 494.4 232H528V216C528 202.7 538.7 192 552 192C565.3 192 576 202.7 576 216V296C576 309.3 565.3 320 552 320C538.7 320 528 309.3 528 296V280H494.4C491.2 303.3 483.4 325.2 472.1 344.7L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L134.1 79.83zM149.2 213.5L401.3 412.2C383.7 421.3 364.4 427.6 344 430.4V464H360C373.3 464 384 474.7 384 488C384 501.3 373.3 512 360 512H279.1C266.7 512 255.1 501.3 255.1 488C255.1 474.7 266.7 464 279.1 464H295.1V430.4C265.3 426.2 237.2 414.1 213.7 396.3L189.9 420.1L201.2 431.4C210.6 440.7 210.6 455.9 201.2 465.3C191.8 474.7 176.6 474.7 167.3 465.3L110.7 408.7C101.3 399.4 101.3 384.2 110.7 374.8C120.1 365.4 135.3 365.4 144.6 374.8L155.1 386.1L179.7 362.3C161.9 338.8 149.8 310.7 145.6 280H111.1V296C111.1 309.3 101.3 320 87.1 320C74.74 320 63.1 309.3 63.1 296V216C63.1 202.7 74.74 192 87.1 192C101.3 192 111.1 202.7 111.1 216V232H145.6C146.5 225.7 147.7 219.6 149.2 213.5L149.2 213.5z',
			),
		),
		'label'             => __( 'Virus Covid Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'virus-slash'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M113.1 227.6H92.44c-15.72 0-28.45 12.72-28.45 28.45s12.72 28.44 28.45 28.44h21.55c50.68 0 76.06 61.28 40.23 97.11l-15.25 15.25c-11.11 11.11-11.11 29.11-.0006 40.22c5.555 5.555 12.83 8.332 20.11 8.332c7.277 0 14.55-2.779 20.11-8.334l15.24-15.25c35.84-35.84 97.12-10.45 97.12 40.23v21.55c0 15.72 12.72 28.45 28.45 28.45c15.72 0 28.45-12.72 28.45-28.45v-21.55c0-30.08 21.69-50.85 46.74-55.6L150 214.3C140.5 222.2 128.5 227.6 113.1 227.6zM630.8 469.1l-161.2-126.4c-.5176-29.6 21.73-58.3 56.41-58.3h21.55c15.72 0 28.45-12.72 28.45-28.44s-12.72-28.45-28.45-28.45h-21.55c-50.68 0-76.06-61.28-40.23-97.11l15.25-15.25c11.11-11.11 11.11-29.11 .0011-40.22c-11.11-11.11-29.11-11.11-40.22 .0007l-15.24 15.24c-35.84 35.84-97.12 10.46-97.12-40.23V28.44C348.4 12.72 335.7 0 319.1 0C304.3 0 291.6 12.72 291.6 28.44v21.55c0 50.68-61.28 76.06-97.12 40.23L179.2 74.97c-11.11-11.11-29.11-11.11-40.22 0C137.3 76.63 136.2 78.61 135 80.53L38.81 5.112C34.41 1.675 29.19 0 24.03 0C16.91 0 9.845 3.159 5.126 9.19C-3.061 19.63-1.248 34.72 9.189 42.89l591.1 463.1c10.5 8.203 25.56 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1zM334.1 236.6L264.6 182.1c6.904-3.885 14.86-6.109 23.36-6.109c26.51 0 47.1 21.49 47.1 47.1C335.1 228.4 335.2 232.5 334.1 236.6z',
			),
		),
		'label'             => __( 'Virus Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'viruses'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M346.5 213.3h16.16C374.5 213.3 384 203.8 384 192c0-11.79-9.541-21.33-21.33-21.33h-16.16c-38.01 0-57.05-45.96-30.17-72.84l11.44-11.44c8.332-8.332 8.331-21.83-.0012-30.17c-8.334-8.334-21.83-8.332-30.17 .002L286.2 67.66C259.3 94.54 213.3 75.51 213.3 37.49V21.33C213.3 9.542 203.8 0 192 0S170.7 9.542 170.7 21.33v16.16c0 38.01-45.96 57.05-72.84 30.17L86.4 56.23c-8.334-8.334-21.83-8.336-30.17-.002c-8.332 8.334-8.333 21.84-.0012 30.17L67.66 97.83c26.88 26.88 7.842 72.84-30.17 72.84H21.33C9.541 170.7 0 180.2 0 192c0 11.79 9.541 21.33 21.33 21.33h16.16c38.01 0 57.05 45.96 30.17 72.84L56.23 297.6c-8.332 8.334-8.328 21.84 .0043 30.17c4.168 4.168 9.621 6.248 15.08 6.248s10.92-2.082 15.08-6.25L97.83 316.3c26.88-26.88 72.84-7.842 72.84 30.17v16.16C170.7 374.5 180.2 384 192 384s21.33-9.543 21.33-21.33v-16.16c0-38.01 45.96-57.05 72.84-30.17l11.43 11.43c4.168 4.168 9.625 6.25 15.08 6.25s10.91-2.08 15.08-6.248c8.332-8.332 8.333-21.83 .0012-30.17L316.3 286.2C289.5 259.3 308.5 213.3 346.5 213.3zM160 192C142.3 192 128 177.7 128 160c0-17.67 14.33-32 32-32s32 14.33 32 32C192 177.7 177.7 192 160 192zM240 224C231.2 224 224 216.8 224 208C224 199.2 231.2 192 240 192S256 199.2 256 208C256 216.8 248.8 224 240 224zM624 352h-12.12c-28.51 0-42.79-34.47-22.63-54.63l8.576-8.576c6.25-6.25 6.25-16.37 0-22.62s-16.38-6.253-22.62-.0031l-8.576 8.576C546.5 294.9 512 280.6 512 252.1V240C512 231.2 504.8 224 496 224S480 231.2 480 240v12.12c0 28.51-34.47 42.79-54.63 22.63l-8.576-8.576c-6.25-6.25-16.37-6.253-22.62-.0031s-6.253 16.38-.0031 22.63l8.576 8.576C422.9 317.5 408.6 352 380.1 352H368c-8.844 0-16 7.156-16 16s7.156 16 16 16h12.12c28.51 0 42.79 34.47 22.63 54.63l-8.576 8.576c-6.25 6.25-6.253 16.37-.0031 22.62c3.125 3.125 7.222 4.691 11.32 4.691s8.188-1.562 11.31-4.688l8.576-8.576C445.5 441.1 480 455.4 480 483.9V496c0 8.844 7.156 16 16 16s16-7.156 16-16v-12.12c0-28.51 34.47-42.79 54.63-22.63l8.576 8.576c3.125 3.125 7.219 4.688 11.31 4.688s8.184-1.559 11.31-4.684c6.25-6.25 6.253-16.38 .0031-22.63l-8.576-8.576C569.1 418.5 583.4 384 611.9 384H624c8.844 0 16-7.156 16-16S632.8 352 624 352zM480 384c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32s32 14.33 32 32C512 369.7 497.7 384 480 384z',
			),
		),
		'label'             => __( 'Viruses', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'vk'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M31.49 63.49C0 94.98 0 145.7 0 247V264.1C0 366.3 0 417 31.49 448.5C62.98 480 113.7 480 215 480H232.1C334.3 480 385 480 416.5 448.5C448 417 448 366.3 448 264.1V247C448 145.7 448 94.98 416.5 63.49C385 32 334.3 32 232.1 32H215C113.7 32 62.98 32 31.49 63.49zM75.6 168.3H126.7C128.4 253.8 166.1 289.1 196 297.4V168.3H244.2V242C273.7 238.8 304.6 205.2 315.1 168.3H363.3C359.3 187.4 351.5 205.6 340.2 221.6C328.9 237.6 314.5 251.1 297.7 261.2C316.4 270.5 332.9 283.6 346.1 299.8C359.4 315.9 369 334.6 374.5 354.7H321.4C316.6 337.3 306.6 321.6 292.9 309.8C279.1 297.9 262.2 290.4 244.2 288.1V354.7H238.4C136.3 354.7 78.03 284.7 75.6 168.3z',
			),
		),
		'label'             => __( 'VK', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'vnv'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M104.9 352c-34.1 0-46.4-30.4-46.4-30.4L2.6 210.1S-7.8 192 13 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.7-74.5c5.6-9.5 8.4-18.1 18.8-18.1h32.8c20.8 0 10.4 18.1 10.4 18.1l-55.8 111.5S174.2 352 140 352h-35.1zm395 0c-34.1 0-46.4-30.4-46.4-30.4l-55.9-111.5S387.2 192 408 192h32.8c10.4 0 13.2 8.7 18.8 18.1l36.7 74.5s5.2 13.1 21.1 13.1 21.1-13.1 21.1-13.1l36.8-74.5c5.6-9.5 8.4-18.1 18.8-18.1H627c20.8 0 10.4 18.1 10.4 18.1l-55.9 111.5S569.3 352 535.1 352h-35.2zM337.6 192c34.1 0 46.4 30.4 46.4 30.4l55.9 111.5s10.4 18.1-10.4 18.1h-32.8c-10.4 0-13.2-8.7-18.8-18.1l-36.7-74.5s-5.2-13.1-21.1-13.1c-15.9 0-21.1 13.1-21.1 13.1l-36.7 74.5c-5.6 9.4-8.4 18.1-18.8 18.1h-32.9c-20.8 0-10.4-18.1-10.4-18.1l55.9-111.5s12.2-30.4 46.4-30.4h35.1z',
			),
		),
		'label'             => __( 'VNV', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'voicemail'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M495.1 96c-53.13 0-102 29.25-127 76.13c-25 46.88-22.25 103.8 7.25 147.9H263.7c36.63-54.88 31.25-127.8-13-176.8c-44.38-48.87-116.4-61.37-174.6-30.25s-87.88 97.88-71.75 162c16 64 73.63 108.1 139.6 108.1h352C575.5 384 640 319.5 640 240S575.5 96 495.1 96zM63.99 240c0-44.12 35.88-80 80-80s80 35.88 80 80s-35.88 79.1-80 79.1S63.99 284.1 63.99 240zM495.1 320c-44.13 0-80-35.88-80-79.1s35.88-80 80-80s80 35.88 80 80S540.1 320 495.1 320z',
			),
		),
		'label'             => __( 'Voicemail', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'volcano'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304.4 224H207.6C197.7 224 188.5 228.5 182.4 236.3l-55.63 71l13.25 16.5C149.7 336 170.2 336 180.1 323.8c10.75-13.5 26.75-21.25 44.13-21.5c17.13-1.5 33.5 7 44.75 20l31.63 36.88c9.751 11.38 29.13 11.38 39 0l45.13-52.62l-55-70.25C323.5 228.5 314.3 224 304.4 224zM159.1 144c12.88 0 24.75-3.875 34.75-10.38L223.1 192h64l29.25-58.38C327.3 140.1 339.1 144 352 144c35.25 0 64-28.75 64-64s-28.75-64-64-64c-15.75 0-30 5.875-41.25 15.38C299.6 12.75 279.4 0 255.1 0C232.6 0 212.4 12.75 201.2 31.38C189.1 21.88 175.7 16 159.1 16c-35.25 0-64 28.75-64 64S124.7 144 159.1 144zM505.5 460.8l-100.8-128.6l-41 47.63C352.8 392.6 336.8 400 320 400s-32.75-7.25-43.75-20.25L244.6 343C239.7 337.3 232.6 334 225.1 334H224.7c-7.751 .25-14.88 3.75-19.63 9.75c-22.13 27.5-68.13 27.5-90.13 0l-8.376-10.62l-100.1 127.6C-9.397 481.9 5.727 512 32.1 512h447.9C506.3 512 521.4 481.9 505.5 460.8z',
			),
		),
		'label'             => __( 'Volcano', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'volleyball'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200.3 106C185.4 80.24 165.2 53.9 137.4 29.26C55.75 72.05 0 157.4 0 256c0 21.33 2.898 41.94 7.814 61.75C53.59 182.1 155.1 124.9 200.3 106zM381.7 281.1c1.24-9.223 2.414-22.08 2.414-37.65c0-59.1-16.93-157.2-111.5-242.6C267.1 .4896 261.6 0 256 0C225.5 0 196.5 5.591 169.4 15.36c93.83 90.15 102.6 198.5 102.8 231.7C287.8 255.9 327.3 275.1 381.7 281.1zM240.1 246.5C239.1 228.5 236.9 184.7 214.9 134.6C173.6 151.6 60.4 211.7 26.67 369.2c15.66 31.64 37.52 59.66 64.22 82.23C122 325.1 211.5 263.3 240.1 246.5zM326.5 10.07c74.79 84.9 89.5 175.9 89.5 234c0 15.45-1.042 28.56-2.27 38.61l.5501 .0005c29.54 0 62.2-4.325 97.16-15.99C511.6 263.1 512 259.6 512 256C512 139.1 433.6 40.72 326.5 10.07zM255.7 274.5c-15.43 9.086-51.89 33.63-84.32 77.86c26.34 20.33 93.51 63.27 189.5 63.27c32.83 0 69.02-5.021 108.1-17.69c19.08-28.59 32.41-61.34 38.71-96.47C474.5 311.1 443 315 414.4 315C334.6 315 276.5 286.3 255.7 274.5zM153.1 379.3c-14.91 25.71-27.62 56.33-35.03 92.72C158.6 497.2 205.5 512 256 512c69 0 131.5-27.43 177.5-71.82c-25.42 5.105-49.71 7.668-72.38 7.668C258.6 447.8 185.5 402.1 153.1 379.3z',
			),
		),
		'label'             => __( 'Volleyball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'volume-high'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M412.6 182c-10.28-8.334-25.41-6.867-33.75 3.402c-8.406 10.24-6.906 25.35 3.375 33.74C393.5 228.4 400 241.8 400 255.1c0 14.17-6.5 27.59-17.81 36.83c-10.28 8.396-11.78 23.5-3.375 33.74c4.719 5.806 11.62 8.802 18.56 8.802c5.344 0 10.75-1.779 15.19-5.399C435.1 311.5 448 284.6 448 255.1S435.1 200.4 412.6 182zM473.1 108.2c-10.22-8.334-25.34-6.898-33.78 3.34c-8.406 10.24-6.906 25.35 3.344 33.74C476.6 172.1 496 213.3 496 255.1s-19.44 82.1-53.31 110.7c-10.25 8.396-11.75 23.5-3.344 33.74c4.75 5.775 11.62 8.771 18.56 8.771c5.375 0 10.75-1.779 15.22-5.431C518.2 366.9 544 313 544 255.1S518.2 145 473.1 108.2zM534.4 33.4c-10.22-8.334-25.34-6.867-33.78 3.34c-8.406 10.24-6.906 25.35 3.344 33.74C559.9 116.3 592 183.9 592 255.1s-32.09 139.7-88.06 185.5c-10.25 8.396-11.75 23.5-3.344 33.74C505.3 481 512.2 484 519.2 484c5.375 0 10.75-1.779 15.22-5.431C601.5 423.6 640 342.5 640 255.1S601.5 88.34 534.4 33.4zM301.2 34.98c-11.5-5.181-25.01-3.076-34.43 5.29L131.8 160.1H48c-26.51 0-48 21.48-48 47.96v95.92c0 26.48 21.49 47.96 48 47.96h83.84l134.9 119.8C272.7 477 280.3 479.8 288 479.8c4.438 0 8.959-.9314 13.16-2.835C312.7 471.8 320 460.4 320 447.9V64.12C320 51.55 312.7 40.13 301.2 34.98z',
			),
		),
		'label'             => __( 'Volume High', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'volume-low'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M412.6 181.9c-10.28-8.344-25.41-6.875-33.75 3.406c-8.406 10.25-6.906 25.37 3.375 33.78C393.5 228.4 400 241.8 400 256c0 14.19-6.5 27.62-17.81 36.87c-10.28 8.406-11.78 23.53-3.375 33.78c4.719 5.812 11.62 8.812 18.56 8.812c5.344 0 10.75-1.781 15.19-5.406C435.1 311.6 448 284.7 448 256S435.1 200.4 412.6 181.9zM301.2 34.84c-11.5-5.187-25.01-3.116-34.43 5.259L131.8 160H48c-26.51 0-48 21.49-48 47.1v95.1c0 26.51 21.49 47.1 48 47.1h83.84l134.9 119.9C272.7 477.2 280.3 480 288 480c4.438 0 8.959-.9313 13.16-2.837C312.7 472 320 460.6 320 448V64C320 51.41 312.7 39.1 301.2 34.84z',
			),
		),
		'label'             => __( 'Volume Low', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'volume-off'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 64v383.1c0 12.59-7.337 24.01-18.84 29.16C296.1 479.1 292.4 480 288 480c-7.688 0-15.28-2.781-21.27-8.094l-134.9-119.9H48c-26.51 0-48-21.49-48-47.1V208c0-26.51 21.49-47.1 48-47.1h83.84l134.9-119.9c9.422-8.375 22.93-10.45 34.43-5.259C312.7 39.1 320 51.41 320 64z',
			),
		),
		'label'             => __( 'Volume Off', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'volume-xmark'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M301.2 34.85c-11.5-5.188-25.02-3.122-34.44 5.253L131.8 160H48c-26.51 0-48 21.49-48 47.1v95.1c0 26.51 21.49 47.1 48 47.1h83.84l134.9 119.9c5.984 5.312 13.58 8.094 21.26 8.094c4.438 0 8.972-.9375 13.17-2.844c11.5-5.156 18.82-16.56 18.82-29.16V64C319.1 51.41 312.7 40 301.2 34.85zM513.9 255.1l47.03-47.03c9.375-9.375 9.375-24.56 0-33.94s-24.56-9.375-33.94 0L480 222.1L432.1 175c-9.375-9.375-24.56-9.375-33.94 0s-9.375 24.56 0 33.94l47.03 47.03l-47.03 47.03c-9.375 9.375-9.375 24.56 0 33.94c9.373 9.373 24.56 9.381 33.94 0L480 289.9l47.03 47.03c9.373 9.373 24.56 9.381 33.94 0c9.375-9.375 9.375-24.56 0-33.94L513.9 255.1z',
			),
		),
		'label'             => __( 'Volume Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'vr-cardboard'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M576 64H64c-35.2 0-64 28.8-64 64v256c0 35.2 28.8 64 64 64l128.3 .0001c25.18 0 48.03-14.77 58.37-37.73l27.76-61.65c7.875-17.5 24-28.63 41.63-28.63s33.75 11.13 41.63 28.63l27.75 61.63c10.35 22.98 33.2 37.75 58.4 37.75L576 448c35.2 0 64-28.8 64-64v-256C640 92.8 611.2 64 576 64zM160 304c-35.38 0-64-28.63-64-64s28.62-63.1 64-63.1s64 28.62 64 63.1S195.4 304 160 304zM480 304c-35.38 0-64-28.63-64-64s28.62-63.1 64-63.1s64 28.62 64 63.1S515.4 304 480 304z',
			),
		),
		'label'             => __( 'Vr Cardboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'vuejs'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M356.9 64.3H280l-56 88.6-48-88.6H0L224 448 448 64.3h-91.1zm-301.2 32h53.8L224 294.5 338.4 96.3h53.8L224 384.5 55.7 96.3z',
			),
		),
		'label'             => __( 'Vue.js', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'w'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M573.1 75.25l-144 384c-4.703 12.53-16.67 20.77-29.95 20.77c-.4062 0-.8125 0-1.219-.0156c-13.77-.5156-25.66-9.797-29.52-23.03L288 178.3l-81.28 278.7c-3.859 13.23-15.75 22.52-29.52 23.03c-13.75 .4687-26.33-7.844-31.17-20.75l-144-384c-6.203-16.55 2.188-34.98 18.73-41.2C37.31 27.92 55.75 36.23 61.97 52.78l110.2 293.1l85.08-291.7C261.3 41.41 273.8 32.01 288 32.01s26.73 9.396 30.72 23.05l85.08 291.7l110.2-293.1c6.219-16.55 24.67-24.86 41.2-18.73C571.8 40.26 580.2 58.7 573.1 75.25z',
			),
		),
		'label'             => __( 'W', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'walkie-talkie'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 96h-32V80C320 71.16 312.8 64 304 64h-32C263.2 64 256 71.16 256 80V96h-32V80C224 71.16 216.8 64 208 64h-32C167.2 64 160 71.16 160 80V96H112V23.1C112 10.74 101.3 0 88 0S64 10.74 64 23.1V96H32C14.4 96 0 110.4 0 128v178.7c0 8.484 3.373 16.62 9.371 22.62L32 352v112C32 490.5 53.49 512 80 512h224c26.51 0 48-21.49 48-48V352l22.63-22.63C380.6 323.4 384 315.2 384 306.7V128C384 110.4 369.6 96 352 96zM288 312C288 316.4 284.4 320 280 320h-176C99.63 320 96 316.4 96 312v-16C96 291.6 99.63 288 104 288h176C284.4 288 288 291.6 288 296V312zM288 248C288 252.4 284.4 256 280 256h-176C99.63 256 96 252.4 96 248v-16C96 227.6 99.63 224 104 224h176C284.4 224 288 227.6 288 232V248zM288 184C288 188.4 284.4 192 280 192h-176C99.63 192 96 188.4 96 184v-16C96 163.6 99.63 160 104 160h176C284.4 160 288 163.6 288 168V184z',
			),
		),
		'label'             => __( 'Walkie Talkie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'wallet'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C465.7 32 480 46.33 480 64C480 81.67 465.7 96 448 96H80C71.16 96 64 103.2 64 112C64 120.8 71.16 128 80 128H448C483.3 128 512 156.7 512 192V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM416 336C433.7 336 448 321.7 448 304C448 286.3 433.7 272 416 272C398.3 272 384 286.3 384 304C384 321.7 398.3 336 416 336z',
			),
		),
		'label'             => __( 'Wallet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'wand-magic'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M14.06 463.3C-4.686 444.6-4.686 414.2 14.06 395.4L395.4 14.06C414.2-4.686 444.6-4.686 463.3 14.06L497.9 48.64C516.6 67.38 516.6 97.78 497.9 116.5L116.5 497.9C97.78 516.6 67.38 516.6 48.64 497.9L14.06 463.3zM347.6 187.6L452.6 82.58L429.4 59.31L324.3 164.3L347.6 187.6z',
			),
		),
		'label'             => __( 'Wand Magic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'wand-magic-sparkles'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M248.8 4.994C249.9 1.99 252.8 .0001 256 .0001C259.2 .0001 262.1 1.99 263.2 4.994L277.3 42.67L315 56.79C318 57.92 320 60.79 320 64C320 67.21 318 70.08 315 71.21L277.3 85.33L263.2 123C262.1 126 259.2 128 256 128C252.8 128 249.9 126 248.8 123L234.7 85.33L196.1 71.21C193.1 70.08 192 67.21 192 64C192 60.79 193.1 57.92 196.1 56.79L234.7 42.67L248.8 4.994zM427.4 14.06C446.2-4.686 476.6-4.686 495.3 14.06L529.9 48.64C548.6 67.38 548.6 97.78 529.9 116.5L148.5 497.9C129.8 516.6 99.38 516.6 80.64 497.9L46.06 463.3C27.31 444.6 27.31 414.2 46.06 395.4L427.4 14.06zM461.4 59.31L356.3 164.3L379.6 187.6L484.6 82.58L461.4 59.31zM7.491 117.2L64 96L85.19 39.49C86.88 34.98 91.19 32 96 32C100.8 32 105.1 34.98 106.8 39.49L128 96L184.5 117.2C189 118.9 192 123.2 192 128C192 132.8 189 137.1 184.5 138.8L128 160L106.8 216.5C105.1 221 100.8 224 96 224C91.19 224 86.88 221 85.19 216.5L64 160L7.491 138.8C2.985 137.1 0 132.8 0 128C0 123.2 2.985 118.9 7.491 117.2zM359.5 373.2L416 352L437.2 295.5C438.9 290.1 443.2 288 448 288C452.8 288 457.1 290.1 458.8 295.5L480 352L536.5 373.2C541 374.9 544 379.2 544 384C544 388.8 541 393.1 536.5 394.8L480 416L458.8 472.5C457.1 477 452.8 480 448 480C443.2 480 438.9 477 437.2 472.5L416 416L359.5 394.8C354.1 393.1 352 388.8 352 384C352 379.2 354.1 374.9 359.5 373.2z',
			),
		),
		'label'             => __( 'Wand Magic Sparkles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'wand-sparkles'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M3.682 149.1L53.32 170.7L74.02 220.3c1.016 2.043 3.698 3.696 5.977 3.696c.0078 0-.0078 0 0 0c2.271-.0156 4.934-1.661 5.946-3.696l20.72-49.63l49.62-20.71c2.023-1.008 3.68-3.681 3.691-5.947C159.1 141.7 158.3 139 156.3 138L106.9 117.4L106.5 117L85.94 67.7C84.93 65.66 82.27 64.02 80 64c-.0078 0 .0078 0 0 0c-2.279 0-4.966 1.649-5.981 3.692L53.32 117.3L3.682 138C1.652 139.1 0 141.7 0 144C0 146.3 1.652 148.9 3.682 149.1zM511.1 368c-.0039-2.273-1.658-4.95-3.687-5.966l-49.57-20.67l-20.77-49.67C436.9 289.7 434.3 288 432 288c-2.281 0-4.948 1.652-5.964 3.695l-20.7 49.63l-49.64 20.71c-2.027 1.016-3.684 3.683-3.687 5.956c.0039 2.262 1.662 4.954 3.687 5.966l49.57 20.67l20.77 49.67C427.1 446.3 429.7 448 432 448c2.277 0 4.944-1.656 5.96-3.699l20.69-49.63l49.65-20.71C510.3 372.9 511.1 370.3 511.1 368zM207.1 64l12.42 29.78C221 95.01 222.6 96 223.1 96s2.965-.9922 3.575-2.219L239.1 64l29.78-12.42c1.219-.6094 2.215-2.219 2.215-3.578c0-1.367-.996-2.969-2.215-3.578L239.1 32L227.6 2.219C226.1 .9922 225.4 0 223.1 0S221 .9922 220.4 2.219L207.1 32L178.2 44.42C176.1 45.03 176 46.63 176 48c0 1.359 .9928 2.969 2.21 3.578L207.1 64zM399.1 191.1c8.875 0 15.1-7.127 15.1-16v-28l91.87-101.7c5.75-6.371 5.5-15.1-.4999-22.12L487.8 4.774c-6.125-6.125-15.75-6.375-22.12-.625L186.6 255.1H144c-8.875 0-15.1 7.125-15.1 15.1v36.88l-117.5 106c-13.5 12.25-14.14 33.34-1.145 46.34l41.4 41.41c12.1 12.1 34.13 12.36 46.37-1.133l279.2-309.5H399.1z',
			),
		),
		'label'             => __( 'Wand Sparkles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'warehouse'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 488V171.3C0 145.2 15.93 121.6 40.23 111.9L308.1 4.753C315.7 1.702 324.3 1.702 331.9 4.753L599.8 111.9C624.1 121.6 640 145.2 640 171.3V488C640 501.3 629.3 512 616 512H568C554.7 512 544 501.3 544 488V223.1C544 206.3 529.7 191.1 512 191.1H128C110.3 191.1 96 206.3 96 223.1V488C96 501.3 85.25 512 72 512H24C10.75 512 0 501.3 0 488zM152 512C138.7 512 128 501.3 128 488V432H512V488C512 501.3 501.3 512 488 512H152zM128 336H512V400H128V336zM128 224H512V304H128V224z',
			),
		),
		'label'             => __( 'Warehouse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'watchman-monitoring'                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 16C123.5 16 16 123.5 16 256S123.5 496 256 496 496 388.5 496 256 388.5 16 256 16zM121.7 429.1C70.06 388.1 36.74 326.3 36.74 256a218.5 218.5 0 0 1 9.587-64.12l102.9-17.9-.121 10.97-13.94 2.013s-.144 12.5-.144 19.55a12.78 12.78 0 0 0 4.887 10.35l9.468 7.4zm105.7-283.3 8.48-7.618s6.934-5.38-.143-9.344c-7.188-4.024-39.53-34.5-39.53-34.5-5.348-5.477-8.257-7.347-15.46 0 0 0-32.34 30.47-39.53 34.5-7.078 3.964-.144 9.344-.144 9.344l8.481 7.618-.048 4.369L75.98 131c39.64-56.94 105.5-94.3 180-94.3A218.8 218.8 0 0 1 420.9 111.8l-193.5 37.7zm34.06 329.3-33.9-250.9 9.467-7.4a12.78 12.78 0 0 0 4.888-10.35c0-7.044-.144-19.55-.144-19.55l-13.94-2.013-.116-10.47 241.7 31.39A218.9 218.9 0 0 1 475.3 256C475.3 375.1 379.8 472.2 261.4 475.1z',
			),
		),
		'label'             => __( 'Watchman Monitoring', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'water'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M549.8 237.5c-31.23-5.719-46.84-20.06-47.13-20.31C490.4 205 470.3 205.1 457.7 216.8c-1 .9375-25.14 23-73.73 23s-72.73-22.06-73.38-22.62C298.4 204.9 278.3 205.1 265.7 216.8c-1 .9375-25.14 23-73.73 23S119.3 217.8 118.6 217.2C106.4 204.9 86.35 205 73.74 216.9C73.09 217.4 57.48 231.8 26.24 237.5c-17.38 3.188-28.89 19.84-25.72 37.22c3.188 17.38 19.78 29.09 37.25 25.72C63.1 295.8 82.49 287.1 95.96 279.2c19.5 11.53 51.47 24.68 96.04 24.68c44.55 0 76.49-13.12 96-24.65c19.52 11.53 51.45 24.59 96 24.59c44.58 0 76.55-13.09 96.05-24.62c13.47 7.938 32.86 16.62 58.19 21.25c17.56 3.375 34.06-8.344 37.25-25.72C578.7 257.4 567.2 240.7 549.8 237.5zM549.8 381.7c-31.23-5.719-46.84-20.06-47.13-20.31c-12.22-12.19-32.31-12.12-44.91-.375C456.7 361.9 432.6 384 384 384s-72.73-22.06-73.38-22.62c-12.22-12.25-32.3-12.12-44.89-.375C264.7 361.9 240.6 384 192 384s-72.73-22.06-73.38-22.62c-12.22-12.25-32.28-12.16-44.89-.3438c-.6562 .5938-16.27 14.94-47.5 20.66c-17.38 3.188-28.89 19.84-25.72 37.22C3.713 436.3 20.31 448 37.78 444.6C63.1 440 82.49 431.3 95.96 423.4c19.5 11.53 51.51 24.62 96.08 24.62c44.55 0 76.45-13.06 95.96-24.59C307.5 434.9 339.5 448 384.1 448c44.58 0 76.5-13.09 95.1-24.62c13.47 7.938 32.86 16.62 58.19 21.25C555.8 448 572.3 436.3 575.5 418.9C578.7 401.5 567.2 384.9 549.8 381.7zM37.78 156.4c25.33-4.625 44.72-13.31 58.19-21.25c19.5 11.53 51.47 24.68 96.04 24.68c44.55 0 76.49-13.12 96-24.65c19.52 11.53 51.45 24.59 96 24.59c44.58 0 76.55-13.09 96.05-24.62c13.47 7.938 32.86 16.62 58.19 21.25c17.56 3.375 34.06-8.344 37.25-25.72c3.172-17.38-8.344-34.03-25.72-37.22c-31.23-5.719-46.84-20.06-47.13-20.31c-12.22-12.19-32.31-12.12-44.91-.375c-1 .9375-25.14 23-73.73 23s-72.73-22.06-73.38-22.62c-12.22-12.25-32.3-12.12-44.89-.375c-1 .9375-25.14 23-73.73 23S119.3 73.76 118.6 73.2C106.4 60.95 86.35 61.04 73.74 72.85C73.09 73.45 57.48 87.79 26.24 93.51c-17.38 3.188-28.89 19.84-25.72 37.22C3.713 148.1 20.31 159.8 37.78 156.4z',
			),
		),
		'label'             => __( 'Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology', 'travel' ),
	),
	'water-ladder'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M320 128c0 .375-.1992 .6855-.2129 1.057C319.8 129.9 320 130.7 320 131.6V128zM192 383.1V288h192v95.99c39.6-.1448 53.95-17.98 64-26.83V128c0-17.62 14.38-32 32-32s32 14.38 32 32c0 17.67 14.33 32 32 32s32-14.33 32-32c0-53-42.1-95.1-95.1-95.1C420.1 32 384 81.94 384 131.6V224H192V128c0-17.62 14.38-32 32-32s32 14.38 32 32c0 17.67 14.33 32 32 32c17.3 0 31.2-13.79 31.79-30.94c-1.227-49.01-37.99-97.06-95.79-97.06C170.1 32 128 74.1 128 128v229.2C138.5 366.4 151.4 383.8 192 383.1zM576 445c0-15.14-10.82-28.59-26.25-31.42c-48.52-8.888-45.5-29.48-69.6-29.48c-25.02 0-31.19 31.79-96.18 31.79c-48.59 0-72.72-22.06-73.38-22.62c-6.141-6.157-14.26-9.188-22.42-9.188c-24.75 0-31.59 31.81-96.2 31.81c-48.59 0-72.69-22.03-73.41-22.59c-6.125-6.157-14.24-9.196-22.4-9.196c-8.072 0-16.18 2.976-22.45 8.852c-29.01 26.25-73.75 12.54-73.75 52.08c0 16.08 12.77 32.07 31.71 32.07c9.77 0 39.65-7.34 64.26-21.84c19.5 11.53 51.51 24.69 96.08 24.69s76.46-13.12 95.96-24.66c19.53 11.53 51.52 24.62 96.06 24.62c44.59 0 76.51-13.12 96.01-24.66c24.71 14.57 54.74 21.83 64.24 21.83C563.2 477.1 576 461.3 576 445z',
			),
		),
		'label'             => __( 'Water Ladder', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'wave-square'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M476 480h-152c-19.88 0-36-16.12-36-36v-348H192v156c0 19.88-16.12 36-36 36H31.1C14.33 288 0 273.7 0 256s14.33-31.1 31.1-31.1H128v-156c0-19.88 16.12-36 36-36h152c19.88 0 36 16.12 36 36v348h96v-156c0-19.88 16.12-36 36-36h124C625.7 224 640 238.3 640 256s-14.33 32-31.1 32H512v156C512 463.9 495.9 480 476 480z',
			),
		),
		'label'             => __( 'Wave Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'waze'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.2 201.7C516.7 287.5 471.2 369.6 389 409.8c13 34.1-12.4 70.2-48.32 70.2a51.68 51.68 0 0 1 -51.57-49c-6.44 .19-64.2 0-76.33-.64A51.69 51.69 0 0 1 159 479.9c-33.86-1.36-57.95-34.84-47-67.92-37.21-13.11-72.54-34.87-99.62-70.8-13-17.28-.48-41.8 20.84-41.8 46.31 0 32.22-54.17 43.15-110.3C94.8 95.2 193.1 32 288.1 32c102.5 0 197.1 70.67 214.1 169.7zM373.5 388.3c42-19.18 81.33-56.71 96.29-102.1 40.48-123.1-64.15-228-181.7-228-83.45 0-170.3 55.42-186.1 136-9.53 48.91 5 131.4-68.75 131.4C58.21 358.6 91.6 378.1 127 389.5c24.66-21.8 63.87-15.47 79.83 14.34 14.22 1 79.19 1.18 87.9 .82a51.69 51.69 0 0 1 78.78-16.42zM205.1 187.1c0-34.74 50.84-34.75 50.84 0s-50.84 34.74-50.84 0zm116.6 0c0-34.74 50.86-34.75 50.86 0s-50.86 34.75-50.86 0zm-122.6 70.69c-3.44-16.94 22.18-22.18 25.62-5.21l.06 .28c4.14 21.42 29.85 44 64.12 43.07 35.68-.94 59.25-22.21 64.11-42.77 4.46-16.05 28.6-10.36 25.47 6-5.23 22.18-31.21 62-91.46 62.9-42.55 0-80.88-27.84-87.9-64.25z',
			),
		),
		'label'             => __( 'Waze', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'weebly'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M425.1 65.83c-39.88 0-73.28 25.73-83.66 64.33-18.16-58.06-65.5-64.33-84.95-64.33-19.78 0-66.8 6.28-85.28 64.33-10.38-38.6-43.45-64.33-83.66-64.33C38.59 65.83 0 99.72 0 143c0 28.96 4.18 33.27 77.17 233.5 22.37 60.57 67.77 69.35 92.74 69.35 39.23 0 70.04-19.46 85.93-53.98 15.89 34.83 46.69 54.29 85.93 54.29 24.97 0 70.36-9.1 92.74-69.67 76.55-208.6 77.5-205.6 77.5-227.2 .63-48.32-36.01-83.47-86.92-83.47zm26.34 114.8l-65.57 176.4c-7.92 21.49-21.22 37.22-46.24 37.22-23.44 0-37.38-12.41-44.03-33.9l-39.28-117.4h-.95L216.1 360.4c-6.96 21.5-20.9 33.6-44.02 33.6-25.02 0-38.33-15.74-46.24-37.22L60.88 181.6c-5.38-14.83-7.92-23.91-7.92-34.5 0-16.34 15.84-29.36 38.33-29.36 18.69 0 31.99 11.8 36.11 29.05l44.03 139.8h.95l44.66-136.8c6.02-19.67 16.47-32.08 38.96-32.08s32.94 12.11 38.96 32.08l44.66 136.8h.95l44.03-139.8c4.12-17.25 17.42-29.05 36.11-29.05 22.17 0 38.33 13.32 38.33 35.71-.32 7.87-4.12 16.04-7.61 27.24z',
			),
		),
		'label'             => __( 'Weebly', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'weibo'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M407 177.6c7.6-24-13.4-46.8-37.4-41.7-22 4.8-28.8-28.1-7.1-32.8 50.1-10.9 92.3 37.1 76.5 84.8-6.8 21.2-38.8 10.8-32-10.3zM214.8 446.7C108.5 446.7 0 395.3 0 310.4c0-44.3 28-95.4 76.3-143.7C176 67 279.5 65.8 249.9 161c-4 13.1 12.3 5.7 12.3 6 79.5-33.6 140.5-16.8 114 51.4-3.7 9.4 1.1 10.9 8.3 13.1 135.7 42.3 34.8 215.2-169.7 215.2zm143.7-146.3c-5.4-55.7-78.5-94-163.4-85.7-84.8 8.6-148.8 60.3-143.4 116s78.5 94 163.4 85.7c84.8-8.6 148.8-60.3 143.4-116zM347.9 35.1c-25.9 5.6-16.8 43.7 8.3 38.3 72.3-15.2 134.8 52.8 111.7 124-7.4 24.2 29.1 37 37.4 12 31.9-99.8-55.1-195.9-157.4-174.3zm-78.5 311c-17.1 38.8-66.8 60-109.1 46.3-40.8-13.1-58-53.4-40.3-89.7 17.7-35.4 63.1-55.4 103.4-45.1 42 10.8 63.1 50.2 46 88.5zm-86.3-30c-12.9-5.4-30 .3-38 12.9-8.3 12.9-4.3 28 8.6 34 13.1 6 30.8 .3 39.1-12.9 8-13.1 3.7-28.3-9.7-34zm32.6-13.4c-5.1-1.7-11.4 .6-14.3 5.4-2.9 5.1-1.4 10.6 3.7 12.9 5.1 2 11.7-.3 14.6-5.4 2.8-5.2 1.1-10.9-4-12.9z',
			),
		),
		'label'             => __( 'Weibo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'weight-hanging'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M510.3 445.9L437.3 153.8C433.5 138.5 420.8 128 406.4 128H346.1c3.625-9.1 5.875-20.75 5.875-32c0-53-42.1-96-96-96S159.1 43 159.1 96c0 11.25 2.25 22 5.875 32H105.6c-14.38 0-27.13 10.5-30.88 25.75l-73.01 292.1C-6.641 479.1 16.36 512 47.99 512h416C495.6 512 518.6 479.1 510.3 445.9zM256 128C238.4 128 223.1 113.6 223.1 96S238.4 64 256 64c17.63 0 32 14.38 32 32S273.6 128 256 128z',
			),
		),
		'label'             => __( 'Weight Hanging', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'weight-scale'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M310.3 97.25c-8-3.5-17.5 .25-21 8.5L255.8 184C233.8 184.3 216 202 216 224c0 22.12 17.88 40 40 40S296 246.1 296 224c0-10.5-4.25-20-11-27.12l33.75-78.63C322.3 110.1 318.4 100.8 310.3 97.25zM448 64h-56.23C359.5 24.91 310.7 0 256 0S152.5 24.91 120.2 64H64C28.75 64 0 92.75 0 128v320c0 35.25 28.75 64 64 64h384c35.25 0 64-28.75 64-64V128C512 92.75 483.3 64 448 64zM256 304c-70.58 0-128-57.42-128-128s57.42-128 128-128c70.58 0 128 57.42 128 128S326.6 304 256 304z',
			),
		),
		'label'             => __( 'Weight Scale', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'weixin'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M385.2 167.6c6.4 0 12.6 .3 18.8 1.1C387.4 90.3 303.3 32 207.7 32 100.5 32 13 104.8 13 197.4c0 53.4 29.3 97.5 77.9 131.6l-19.3 58.6 68-34.1c24.4 4.8 43.8 9.7 68.2 9.7 6.2 0 12.1-.3 18.3-.8-4-12.9-6.2-26.6-6.2-40.8-.1-84.9 72.9-154 165.3-154zm-104.5-52.9c14.5 0 24.2 9.7 24.2 24.4 0 14.5-9.7 24.2-24.2 24.2-14.8 0-29.3-9.7-29.3-24.2 .1-14.7 14.6-24.4 29.3-24.4zm-136.4 48.6c-14.5 0-29.3-9.7-29.3-24.2 0-14.8 14.8-24.4 29.3-24.4 14.8 0 24.4 9.7 24.4 24.4 0 14.6-9.6 24.2-24.4 24.2zM563 319.4c0-77.9-77.9-141.3-165.4-141.3-92.7 0-165.4 63.4-165.4 141.3S305 460.7 397.6 460.7c19.3 0 38.9-5.1 58.6-9.9l53.4 29.3-14.8-48.6C534 402.1 563 363.2 563 319.4zm-219.1-24.5c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.8 0 24.4 9.7 24.4 19.3 0 10-9.7 19.6-24.4 19.6zm107.1 0c-9.7 0-19.3-9.7-19.3-19.6 0-9.7 9.7-19.3 19.3-19.3 14.5 0 24.4 9.7 24.4 19.3 .1 10-9.9 19.6-24.4 19.6z',
			),
		),
		'label'             => __( 'Weixin (WeChat)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'whatsapp'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z',
			),
		),
		'label'             => __( 'WhatsApp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'whatsapp-square'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 122.8c-72.7 0-131.8 59.1-131.9 131.8 0 24.9 7 49.2 20.2 70.1l3.1 5-13.3 48.6 49.9-13.1 4.8 2.9c20.2 12 43.4 18.4 67.1 18.4h.1c72.6 0 133.3-59.1 133.3-131.8 0-35.2-15.2-68.3-40.1-93.2-25-25-58-38.7-93.2-38.7zm77.5 188.4c-3.3 9.3-19.1 17.7-26.7 18.8-12.6 1.9-22.4 .9-47.5-9.9-39.7-17.2-65.7-57.2-67.7-59.8-2-2.6-16.2-21.5-16.2-41s10.2-29.1 13.9-33.1c3.6-4 7.9-5 10.6-5 2.6 0 5.3 0 7.6 .1 2.4 .1 5.7-.9 8.9 6.8 3.3 7.9 11.2 27.4 12.2 29.4s1.7 4.3 .3 6.9c-7.6 15.2-15.7 14.6-11.6 21.6 15.3 26.3 30.6 35.4 53.9 47.1 4 2 6.3 1.7 8.6-1 2.3-2.6 9.9-11.6 12.5-15.5 2.6-4 5.3-3.3 8.9-2 3.6 1.3 23.1 10.9 27.1 12.9s6.6 3 7.6 4.6c.9 1.9 .9 9.9-2.4 19.1zM400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM223.9 413.2c-26.6 0-52.7-6.7-75.8-19.3L64 416l22.5-82.2c-13.9-24-21.2-51.3-21.2-79.3C65.4 167.1 136.5 96 223.9 96c42.4 0 82.2 16.5 112.2 46.5 29.9 30 47.9 69.8 47.9 112.2 0 87.4-72.7 158.5-160.1 158.5z',
			),
		),
		'label'             => __( 'WhatsApp Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'wheat-awn'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416.1 128.1C407.6 138.3 392.4 138.3 383 128.1C373.7 119.6 373.7 104.4 383 95.03L471 7.029C480.4-2.343 495.6-2.343 504.1 7.029C514.3 16.4 514.3 31.6 504.1 40.97L416.1 128.1zM327.2 230.1L295.3 261.1C323.8 264.7 351.5 277 373.4 298.8L395.1 321.5L373.4 344.1C335.9 381.6 275.1 381.6 237.6 344.1L225.4 331.9L193.5 363.8C221.1 366.5 249.7 378.8 271.5 400.7L294.2 423.3L271.5 445.9C234 483.4 173.3 483.4 135.8 445.9L123.5 433.7L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L78.29 388.5L67.88 378C30.39 340.6 30.39 279.8 67.88 242.3L90.51 219.6L113.1 242.3C134.1 263.3 146.3 289.7 149.7 317.1L180.1 286.6L169.7 276.2C132.2 238.7 132.2 177.9 169.7 140.5L192.3 117.8L214.1 140.5C235.1 161.4 248.1 187.9 251.5 215.3L281.9 184.8L271.5 174.4C234 136.9 234 76.12 271.5 38.63L294.2 16L316.8 38.63C321.3 43.15 325.4 47.94 329.1 52.93L375 7.03C384.4-2.343 399.6-2.343 408.1 7.03C418.3 16.4 418.3 31.6 408.1 40.97L350.7 99.2C355.9 120.7 355.4 143.2 349.3 164.5C369.6 158.7 391.1 157.1 411.7 162.4L471 103C480.4 93.66 495.6 93.66 504.1 103C514.3 112.4 514.3 127.6 504.1 136.1L458.8 183.2C464.5 187.2 470 191.9 475.2 197L497.8 219.6L475.2 242.3C437.7 279.8 376.9 279.8 339.4 242.3L327.2 230.1z',
			),
		),
		'label'             => __( 'Wheat Awn', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'wheat-awn-circle-exclamation'       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M416.1 128.1C407.6 138.3 392.4 138.3 383 128.1C373.7 119.6 373.7 104.4 383 95.03L471 7.03C480.4-2.343 495.6-2.343 504.1 7.03C514.3 16.4 514.3 31.6 504.1 40.97L416.1 128.1zM327.2 230.1L295.3 261.1C312.5 263.6 329.5 268.8 345 277.4C329.1 303.9 320 334.9 320 368C320 369 320 370.1 320 371.1C290.9 375.6 260 366.6 237.6 344.1L225.4 331.9L193.5 363.8C221.1 366.5 249.7 378.8 271.5 400.7L294.2 423.3L271.5 445.9C234 483.4 173.3 483.4 135.8 445.9L123.5 433.7L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L78.29 388.5L67.88 378C30.39 340.6 30.39 279.8 67.88 242.3L90.51 219.6L113.1 242.3C134.1 263.3 146.3 289.7 149.7 317.1L180.1 286.6L169.7 276.2C132.2 238.7 132.2 177.9 169.7 140.5L192.3 117.8L214.1 140.5C235.1 161.4 248.1 187.9 251.5 215.3L281.9 184.8L271.5 174.4C234 136.9 234 76.12 271.5 38.63L294.2 15.1L316.8 38.63C321.3 43.15 325.4 47.94 329.1 52.93L375 7.029C384.4-2.343 399.6-2.343 408.1 7.029C418.3 16.4 418.3 31.6 408.1 40.97L350.7 99.2C355.9 120.7 355.4 143.2 349.3 164.5C369.6 158.7 391.1 157.1 411.7 162.4L471 103C480.4 93.66 495.6 93.66 504.1 103C514.3 112.4 514.3 127.6 504.1 136.1L458.8 183.1C463.3 186.3 467.6 189.8 471.7 193.7C426.4 199.9 386.5 223.5 359.1 257.4C352 253.3 345.4 248.3 339.4 242.3L327.2 230.1zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Wheat Awn Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'wheelchair'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M510.3 421.9c-5.594-16.75-23.53-25.84-40.47-20.22l-19.38 6.438l-41.7-99.97C403.9 295.1 392.2 288 379.1 288h-97.78l-10.4-48h65.11c17.69 0 32-14.31 32-32s-14.31-32-32-32h-78.98L255.6 169.2C251.8 142.1 227.2 124.8 201.2 128.5C174.1 132.2 156.7 156.5 160.5 182.8l23.68 140.4C185.8 339.6 199.6 352 216 352h141.4l44.86 107.9C407.3 472.3 419.3 480 432 480c3.344 0 6.781-.5313 10.12-1.656l48-16C506.9 456.8 515.9 438.7 510.3 421.9zM160 464c-61.76 0-112-50.24-112-112c0-54.25 38.78-99.55 90.06-109.8L130.1 195C56.06 209 0 273.9 0 352c0 88.37 71.63 160 160 160c77.4 0 141.9-54.97 156.8-128h-49.1C252.9 430.1 210.6 464 160 464zM192 96c26.51 0 48-21.49 48-48S218.5 0 192 0S144 21.49 144 48S165.5 96 192 96z',
			),
		),
		'label'             => __( 'Wheelchair', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology', 'travel' ),
	),
	'wheelchair-move'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 48C416 74.51 394.5 96 368 96C341.5 96 320 74.51 320 48C320 21.49 341.5 0 368 0C394.5 0 416 21.49 416 48zM172.8 54.4C182.3 47.29 194.9 46 205.6 51.05L322.1 105.9C351.3 119.6 358.9 157.5 337.4 181.4L299.1 224H416C425.6 224 434.7 228.3 440.7 235.7C446.8 243.1 449.3 252.9 447.4 262.3L415.4 422.3C411.9 439.6 395.1 450.8 377.7 447.4C360.4 443.9 349.2 427.1 352.6 409.7L376.1 288H306.7C315.3 307.6 320 329.2 320 352C320 440.4 248.4 512 160 512C71.63 512 0 440.4 0 352C0 263.6 71.63 192 160 192C171.1 192 181.1 193.1 192.4 195.3L246.6 141.1L195.8 117.2L147.2 153.6C133.1 164.2 113 161.3 102.4 147.2C91.8 133.1 94.66 113 108.8 102.4L172.8 54.4zM160 448C213 448 256 405 256 352C256 298.1 213 256 160 256C106.1 256 64 298.1 64 352C64 405 106.1 448 160 448z',
			),
		),
		'label'             => __( 'Wheelchair Move', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology', 'travel' ),
	),
	'whiskey-glass'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M479.1 32H32.04C12.55 32-2.324 49.25 .3008 68.51L56.29 425.1C60.79 456.6 87.78 480 119.8 480h272.9c31.74 0 58.86-23.38 63.36-54.89l55.61-356.6C514.3 49.25 499.5 32 479.1 32zM422.7 224H89.49L69.39 96h373.2L422.7 224z',
			),
		),
		'label'             => __( 'Whiskey Glass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'whmcs'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 161v-21.3l-28.5-8.8-2.2-10.4 20.1-20.7L427 80.4l-29 7.5-7.2-7.5 7.5-28.2-19.1-11.6-21.3 21-10.7-3.2-7-26.4h-22.6l-6.2 26.4-12.1 3.2-19.7-21-19.4 11 8.1 27.7-8.1 8.4-28.5-7.5-11 19.1 20.7 21-2.9 10.4-28.5 7.8-.3 21.7 28.8 7.5 2.4 12.1-20.1 19.9 10.4 18.5 29.6-7.5 7.2 8.6-8.1 26.9 19.9 11.6 19.4-20.4 11.6 2.9 6.7 28.5 22.6 .3 6.7-28.8 11.6-3.5 20.7 21.6 20.4-12.1-8.8-28 7.8-8.1 28.8 8.8 10.3-20.1-20.9-18.8 2.2-12.1 29.1-7zm-119.2 45.2c-31.3 0-56.8-25.4-56.8-56.8s25.4-56.8 56.8-56.8 56.8 25.4 56.8 56.8c0 31.5-25.4 56.8-56.8 56.8zm72.3 16.4l46.9 14.5V277l-55.1 13.4-4.1 22.7 38.9 35.3-19.2 37.9-54-16.7-14.6 15.2 16.7 52.5-38.3 22.7-38.9-40.5-21.7 6.6-12.6 54-42.4-.5-12.6-53.6-21.7-5.6-36.4 38.4-37.4-21.7 15.2-50.5-13.7-16.1-55.5 14.1-19.7-34.8 37.9-37.4-4.8-22.8-54-14.1 .5-40.9L54 219.9l5.7-19.7-38.9-39.4L41.5 125l53.6 14.1 15.2-15.7-15.2-52 36.4-20.7 36.8 39.4L191 84l11.6-52H245l11.6 45.9L234 72l-6.3-1.7-3.3 5.7-11 19.1-3.3 5.6 4.6 4.6 17.2 17.4-.3 1-23.8 6.5-6.2 1.7-.1 6.4-.2 12.9C153.8 161.6 118 204 118 254.7c0 58.3 47.3 105.7 105.7 105.7 50.5 0 92.7-35.4 103.2-82.8l13.2 .2 6.9 .1 1.6-6.7 5.6-24 1.9-.6 17.1 17.8 4.7 4.9 5.8-3.4 20.4-12.1 5.8-3.5-2-6.5-6.8-21.2z',
			),
		),
		'label'             => __( 'WHMCS', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wifi'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M319.1 351.1c-35.35 0-64 28.66-64 64.01s28.66 64.01 64 64.01c35.34 0 64-28.66 64-64.01S355.3 351.1 319.1 351.1zM320 191.1c-70.25 0-137.9 25.6-190.5 72.03C116.3 275.7 115 295.9 126.7 309.2C138.5 322.4 158.7 323.7 171.9 312C212.8 275.9 265.4 256 320 256s107.3 19.88 148.1 56C474.2 317.4 481.8 320 489.3 320c8.844 0 17.66-3.656 24-10.81C525 295.9 523.8 275.7 510.5 264C457.9 217.6 390.3 191.1 320 191.1zM630.2 156.7C546.3 76.28 436.2 32 320 32S93.69 76.28 9.844 156.7c-12.75 12.25-13.16 32.5-.9375 45.25c12.22 12.78 32.47 13.12 45.25 .9375C125.1 133.1 220.4 96 320 96s193.1 37.97 265.8 106.9C592.1 208.8 600 211.8 608 211.8c8.406 0 16.81-3.281 23.09-9.844C643.3 189.2 642.9 168.1 630.2 156.7z',
			),
		),
		'label'             => __( 'Wifi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'wikipedia-w'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 51.2l-.3 12.2c-28.1 .8-45 15.8-55.8 40.3-25 57.8-103.3 240-155.3 358.6H415l-81.9-193.1c-32.5 63.6-68.3 130-99.2 193.1-.3 .3-15 0-15-.3C172 352.3 122.8 243.4 75.8 133.4 64.4 106.7 26.4 63.4 .2 63.7c0-3.1-.3-10-.3-14.2h161.9v13.9c-19.2 1.1-52.8 13.3-43.3 34.2 21.9 49.7 103.6 240.3 125.6 288.6 15-29.7 57.8-109.2 75.3-142.8-13.9-28.3-58.6-133.9-72.8-160-9.7-17.8-36.1-19.4-55.8-19.7V49.8l142.5 .3v13.1c-19.4 .6-38.1 7.8-29.4 26.1 18.9 40 30.6 68.1 48.1 104.7 5.6-10.8 34.7-69.4 48.1-100.8 8.9-20.6-3.9-28.6-38.6-29.4 .3-3.6 0-10.3 .3-13.6 44.4-.3 111.1-.3 123.1-.6v13.6c-22.5 .8-45.8 12.8-58.1 31.7l-59.2 122.8c6.4 16.1 63.3 142.8 69.2 156.7L559.2 91.8c-8.6-23.1-36.4-28.1-47.2-28.3V49.6l127.8 1.1 .2 .5z',
			),
		),
		'label'             => __( 'Wikipedia W', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wind'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 192h320c52.94 0 96-43.06 96-96s-43.06-96-96-96h-32c-17.69 0-32 14.31-32 32s14.31 32 32 32h32c17.66 0 32 14.34 32 32s-14.34 32-32 32H32C14.31 128 0 142.3 0 160S14.31 192 32 192zM160 320H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h128c17.66 0 32 14.34 32 32s-14.34 32-32 32H128c-17.69 0-32 14.31-32 32s14.31 32 32 32h32c52.94 0 96-43.06 96-96S212.9 320 160 320zM416 224H32C14.31 224 0 238.3 0 256s14.31 32 32 32h384c17.66 0 32 14.34 32 32s-14.34 32-32 32h-32c-17.69 0-32 14.31-32 32s14.31 32 32 32h32c52.94 0 96-43.06 96-96S468.9 224 416 224z',
			),
		),
		'label'             => __( 'Wind', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'window-maximize'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM96 96C78.33 96 64 110.3 64 128C64 145.7 78.33 160 96 160H416C433.7 160 448 145.7 448 128C448 110.3 433.7 96 416 96H96z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M7.724 65.49C13.36 55.11 21.79 46.47 32 40.56C39.63 36.15 48.25 33.26 57.46 32.33C59.61 32.11 61.79 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 93.79 .112 91.61 .3306 89.46C1.204 80.85 3.784 72.75 7.724 65.49V65.49zM48 416C48 424.8 55.16 432 64 432H448C456.8 432 464 424.8 464 416V224H48V416z',
			),
		),
		'label'             => __( 'Window Maximize', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'window-minimize'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 448C0 430.3 14.33 416 32 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H32C14.33 480 0 465.7 0 448z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 456C0 442.7 10.75 432 24 432H488C501.3 432 512 442.7 512 456C512 469.3 501.3 480 488 480H24C10.75 480 0 469.3 0 456z',
			),
		),
		'label'             => __( 'Window Minimize', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'window-restore'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M432 64H208C199.2 64 192 71.16 192 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V320H432C440.8 320 448 312.8 448 304V80C448 71.16 440.8 64 432 64zM0 192C0 156.7 28.65 128 64 128H320C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192zM96 256H288C305.7 256 320 241.7 320 224C320 206.3 305.7 192 288 192H96C78.33 192 64 206.3 64 224C64 241.7 78.33 256 96 256z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M432 48H208C190.3 48 176 62.33 176 80V96H128V80C128 35.82 163.8 0 208 0H432C476.2 0 512 35.82 512 80V304C512 348.2 476.2 384 432 384H416V336H432C449.7 336 464 321.7 464 304V80C464 62.33 449.7 48 432 48zM320 128C355.3 128 384 156.7 384 192V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V192C0 156.7 28.65 128 64 128H320zM64 464H320C328.8 464 336 456.8 336 448V256H48V448C48 456.8 55.16 464 64 464z',
			),
		),
		'label'             => __( 'Window Restore', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'windows'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 93.7l183.6-25.3v177.4H0V93.7zm0 324.6l183.6 25.3V268.4H0v149.9zm203.8 28L448 480V268.4H203.8v177.9zm0-380.6v180.1H448V32L203.8 65.7z',
			),
		),
		'label'             => __( 'Windows', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wine-bottle'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M507.3 72.57l-67.88-67.88c-6.252-6.25-16.38-6.25-22.63 0l-22.63 22.62c-6.25 6.254-6.251 16.38-.0006 22.63l-76.63 76.63c-46.63-19.75-102.4-10.75-140.4 27.25l-158.4 158.4c-25 25-25 65.51 0 90.51l90.51 90.52c25 25 65.51 25 90.51 0l158.4-158.4c38-38 47-93.76 27.25-140.4l76.63-76.63c6.25 6.25 16.5 6.25 22.75 0l22.63-22.63C513.5 88.95 513.5 78.82 507.3 72.57zM179.3 423.2l-90.51-90.51l122-122l90.51 90.52L179.3 423.2z',
			),
		),
		'label'             => __( 'Wine Bottle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'wine-glass'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M232 464h-40.01v-117.3c68.51-15.88 118-79.86 111.4-154.1L287.5 14.5C286.8 6.25 279.9 0 271.8 0H48.23C40.1 0 33.22 6.25 32.47 14.5L16.6 192.6c-6.626 74.25 42.88 138.2 111.4 154.2V464H87.98c-22.13 0-40.01 17.88-40.01 40c0 4.375 3.626 8 8.002 8h208c4.376 0 8.002-3.625 8.002-8C272 481.9 254.1 464 232 464zM77.72 48h164.6L249.4 128H70.58L77.72 48z',
			),
		),
		'label'             => __( 'Wine Glass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'wine-glass-empty'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M232 464h-40.01v-117.3c68.52-15.88 118-79.86 111.4-154.1L287.5 14.5C286.8 6.25 279.9 0 271.8 0H48.23C40.1 0 33.22 6.25 32.47 14.5L16.6 192.6c-6.625 74.25 42.88 138.2 111.4 154.2V464H87.98c-22.13 0-40.01 17.88-40.01 40c0 4.375 3.625 8 8.002 8h208c4.377 0 8.002-3.625 8.002-8C272 481.9 254.1 464 232 464zM180.4 300.2c-13.64 3.16-27.84 3.148-41.48-.0371C91.88 289.2 60.09 245.2 64.38 197.1L77.7 48h164.6L255.6 197.2c4.279 48.01-27.5 91.93-74.46 102.8L180.4 300.2z',
			),
		),
		'label'             => __( 'Wine Glass Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'wirsindhandwerk'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M50.77 479.8h83.36V367.8l-83.36 47.01zm329 0h82.35V414.9l-82.35-47.01zm.0057-448V251.6L256.2 179.2 134.5 251.6V31.81H50.77V392.6L256.2 270.3 462.2 392.6V31.81z',
			),
		),
		'label'             => __( 'wirsindhandwerk', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wix'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M393.4 131.7c0 13.03 2.08 32.69-28.68 43.83-9.52 3.45-15.95 9.66-15.95 9.66 0-31 4.72-42.22 17.4-48.86 9.75-5.11 27.23-4.63 27.23-4.63zm-115.8 35.54l-34.24 132.7-28.48-108.6c-7.69-31.99-20.81-48.53-48.43-48.53-27.37 0-40.66 16.18-48.43 48.53L89.52 299.9 55.28 167.2C49.73 140.5 23.86 128.1 0 131.1l65.57 247.9s21.63 1.56 32.46-3.96c14.22-7.25 20.98-12.84 29.59-46.57 7.67-30.07 29.11-118.4 31.12-124.7 4.76-14.94 11.09-13.81 15.4 0 1.97 6.3 23.45 94.63 31.12 124.7 8.6 33.73 15.37 39.32 29.59 46.57 10.82 5.52 32.46 3.96 32.46 3.96l65.57-247.9c-24.42-3.07-49.82 8.93-55.3 35.27zm115.8 5.21s-4.1 6.34-13.46 11.57c-6.01 3.36-11.78 5.64-17.97 8.61-15.14 7.26-13.18 13.95-13.18 35.2v152.1s16.55 2.09 27.37-3.43c13.93-7.1 17.13-13.95 17.26-44.78V181.4l-.02 .01v-8.98zm163.4 84.08L640 132.8s-35.11-5.98-52.5 9.85c-13.3 12.1-24.41 29.55-54.18 72.47-.47 .73-6.25 10.54-13.07 0-29.29-42.23-40.8-60.29-54.18-72.47-17.39-15.83-52.5-9.85-52.5-9.85l83.2 123.7-82.97 123.4s36.57 4.62 53.95-11.21c11.49-10.46 17.58-20.37 52.51-70.72 6.81-10.52 12.57-.77 13.07 0 29.4 42.38 39.23 58.06 53.14 70.72 17.39 15.83 53.32 11.21 53.32 11.21L556.8 256.5z',
			),
		),
		'label'             => __( 'Wix', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wizards-of-the-coast'               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M219.2 345.7c-1.9 1.38-11.07 8.44-.26 23.57 4.64 6.42 14.11 12.79 21.73 6.55 6.5-4.88 7.35-12.92 .26-23.04-5.47-7.76-14.28-12.88-21.73-7.08zm336.8 75.94c-.34 1.7-.55 1.67 .79 0 2.09-4.19 4.19-10.21 4.98-19.9 3.14-38.49-40.33-71.49-101.3-78.03-54.73-6.02-124.4 9.17-188.8 60.49l-.26 1.57c2.62 4.98 4.98 10.74 3.4 21.21l.79 .26c63.89-58.4 131.2-77.25 184.4-73.85 58.4 3.67 100 34.04 100 68.08-.01 9.96-2.63 15.72-3.94 20.17zM392.3 240.4c.79 7.07 4.19 10.21 9.17 10.47 5.5 .26 9.43-2.62 10.47-6.55 .79-3.4 2.09-29.85 2.09-29.85s-11.26 6.55-14.93 10.47c-3.66 3.68-7.33 8.39-6.8 15.46zm-50.02-151.1C137.8 89.32 13.1 226.8 .79 241.2c-1.05 .52-1.31 .79 .79 1.31 60.49 16.5 155.8 81.18 196.1 202.2l1.05 .26c55.25-69.92 140.9-128.1 236.1-128.1 80.92 0 130.1 42.16 130.1 80.39 0 18.33-6.55 33.52-22.26 46.35 0 .96-.2 .79 .79 .79 14.66-10.74 27.5-28.8 27.5-48.18 0-22.78-12.05-38.23-12.05-38.23 7.07 7.07 10.74 16.24 10.74 16.24 5.76-40.85 26.97-62.32 26.97-62.32-2.36-9.69-6.81-17.81-6.81-17.81 7.59 8.12 14.4 27.5 14.4 41.37 0 10.47-3.4 22.78-12.57 31.95l.26 .52c8.12-4.98 16.5-16.76 16.5-37.97 0-15.71-4.71-25.92-4.71-25.92 5.76-5.24 11.26-9.17 15.97-11.78 .79 3.4 2.09 9.69 2.36 14.93 0 1.05 .79 1.83 1.05 0 .79-5.76-.26-16.24-.26-16.5 6.02-3.14 9.69-4.45 9.69-4.45C617.7 176 489.4 89.32 342.3 89.32zm-99.24 289.6c-11.06 8.99-24.2 4.08-30.64-4.19-7.45-9.58-6.76-24.09 4.19-32.47 14.85-11.35 27.08-.49 31.16 5.5 .28 .39 12.13 16.57-4.71 31.16zm2.09-136.4l9.43-17.81 11.78 70.96-12.57 6.02-24.62-28.8 14.14-26.71 3.67 4.45-1.83-8.11zm18.59 117.6l-.26-.26c2.05-4.1-2.5-6.61-17.54-31.69-1.31-2.36-3.14-2.88-4.45-2.62l-.26-.52c7.86-5.76 15.45-10.21 25.4-15.71l.52 .26c1.31 1.83 2.09 2.88 3.4 4.71l-.26 .52c-1.05-.26-2.36-.79-5.24 .26-2.09 .79-7.86 3.67-12.31 7.59v1.31c1.57 2.36 3.93 6.55 5.76 9.69h.26c10.05-6.28 7.56-4.55 11.52-7.86h.26c.52 1.83 .52 1.83 1.83 5.5l-.26 .26c-3.06 .61-4.65 .34-11.52 5.5v.26c9.46 17.02 11.01 16.75 12.57 15.97l.26 .26c-2.34 1.59-6.27 4.21-9.68 6.57zm55.26-32.47c-3.14 1.57-6.02 2.88-9.95 4.98l-.26-.26c1.29-2.59 1.16-2.71-11.78-32.47l-.26-.26c-.15 0-8.9 3.65-9.95 7.33h-.52l-1.05-5.76 .26-.52c7.29-4.56 25.53-11.64 27.76-12.57l.52 .26 3.14 4.98-.26 .52c-3.53-1.76-7.35 .76-12.31 2.62v.26c12.31 32.01 12.67 30.64 14.66 30.64v.25zm44.77-16.5c-4.19 1.05-5.24 1.31-9.69 2.88l-.26-.26 .52-4.45c-1.05-3.4-3.14-11.52-3.67-13.62l-.26-.26c-3.4 .79-8.9 2.62-12.83 3.93l-.26 .26c.79 2.62 3.14 9.95 4.19 13.88 .79 2.36 1.83 2.88 2.88 3.14v.52c-3.67 1.05-7.07 2.62-10.21 3.93l-.26-.26c1.05-1.31 1.05-2.88 .26-4.98-1.05-3.14-8.12-23.83-9.17-27.23-.52-1.83-1.57-3.14-2.62-3.14v-.52c3.14-1.05 6.02-2.09 10.74-3.4l.26 .26-.26 4.71c1.31 3.93 2.36 7.59 3.14 9.69h.26c3.93-1.31 9.43-2.88 12.83-3.93l.26-.26-2.62-9.43c-.52-1.83-1.05-3.4-2.62-3.93v-.26c4.45-1.05 7.33-1.83 10.74-2.36l.26 .26c-1.05 1.31-1.05 2.88-.52 4.45 1.57 6.28 4.71 20.43 6.28 26.45 .54 2.62 1.85 3.41 2.63 3.93zm32.21-6.81l-.26 .26c-4.71 .52-14.14 2.36-22.52 4.19l-.26-.26 .79-4.19c-1.57-7.86-3.4-18.59-4.98-26.19-.26-1.83-.79-2.88-2.62-3.67l.79-.52c9.17-1.57 20.16-2.36 24.88-2.62l.26 .26c.52 2.36 .79 3.14 1.57 5.5l-.26 .26c-1.14-1.14-3.34-3.2-16.24-.79l-.26 .26c.26 1.57 1.05 6.55 1.57 9.95l.26 .26c9.52-1.68 4.76-.06 10.74-2.36h.26c0 1.57-.26 1.83-.26 5.24h-.26c-4.81-1.03-2.15-.9-10.21 0l-.26 .26c.26 2.09 1.57 9.43 2.09 12.57l.26 .26c1.15 .38 14.21-.65 16.24-4.71h.26c-.53 2.38-1.05 4.21-1.58 6.04zm10.74-44.51c-4.45 2.36-8.12 2.88-11 2.88-.25 .02-11.41 1.09-17.54-9.95-6.74-10.79-.98-25.2 5.5-31.69 8.8-8.12 23.35-10.1 28.54-17.02 8.03-10.33-13.04-22.31-29.59-5.76l-2.62-2.88 5.24-16.24c25.59-1.57 45.2-3.04 50.02 16.24 .79 3.14 0 9.43-.26 12.05 0 2.62-1.83 18.85-2.09 23.04-.52 4.19-.79 18.33-.79 20.69 .26 2.36 .52 4.19 1.57 5.5 1.57 1.83 5.76 1.83 5.76 1.83l-.79 4.71c-11.82-1.07-10.28-.59-20.43-1.05-3.22-5.15-2.23-3.28-4.19-7.86 0 .01-4.19 3.94-7.33 5.51zm37.18 21.21c-6.35-10.58-19.82-7.16-21.73 5.5-2.63 17.08 14.3 19.79 20.69 10.21l.26 .26c-.52 1.83-1.83 6.02-1.83 6.28l-.52 .52c-10.3 6.87-28.5-2.5-25.66-18.59 1.94-10.87 14.44-18.93 28.8-9.95l.26 .52c0 1.06-.27 3.41-.27 5.25zm5.77-87.73v-6.55c.69 0 19.65 3.28 27.76 7.33l-1.57 17.54s10.21-9.43 15.45-10.74c5.24-1.57 14.93 7.33 14.93 7.33l-11.26 11.26c-12.07-6.35-19.59-.08-20.69 .79-5.29 38.72-8.6 42.17 4.45 46.09l-.52 4.71c-17.55-4.29-18.53-4.5-36.92-7.33l.79-4.71c7.25 0 7.48-5.32 7.59-6.81 0 0 4.98-53.16 4.98-55.25-.02-2.87-4.99-3.66-4.99-3.66zm10.99 114.4c-8.12-2.09-14.14-11-10.74-20.69 3.14-9.43 12.31-12.31 18.85-10.21 9.17 2.62 12.83 11.78 10.74 19.38-2.61 8.9-9.42 13.87-18.85 11.52zm42.16 9.69c-2.36-.52-7.07-2.36-8.64-2.88v-.26l1.57-1.83c.59-8.24 .59-7.27 .26-7.59-4.82-1.81-6.66-2.36-7.07-2.36-1.31 1.83-2.88 4.45-3.67 5.5l-.79 3.4v.26c-1.31-.26-3.93-1.31-6.02-1.57v-.26l2.62-1.83c3.4-4.71 9.95-14.14 13.88-20.16v-2.09l.52-.26c2.09 .79 5.5 2.09 7.59 2.88 .48 .48 .18-1.87-1.05 25.14-.24 1.81 .02 2.6 .8 3.91zm-4.71-89.82c11.25-18.27 30.76-16.19 34.04-3.4L539.7 198c2.34-6.25-2.82-9.9-4.45-11.26l1.83-3.67c12.22 10.37 16.38 13.97 22.52 20.43-25.91 73.07-30.76 80.81-24.62 84.32l-1.83 4.45c-6.37-3.35-8.9-4.42-17.81-8.64l2.09-6.81c-.26-.26-3.93 3.93-9.69 3.67-19.06-1.3-22.89-31.75-9.67-52.9zm29.33 79.34c0-5.71-6.34-7.89-7.86-5.24-1.31 2.09 1.05 4.98 2.88 8.38 1.57 2.62 2.62 6.28 1.05 9.43-2.64 6.34-12.4 5.31-15.45-.79 0-.7-.27 .09 1.83-4.71l.79-.26c-.57 5.66 6.06 9.61 8.38 4.98 1.05-2.09-.52-5.5-2.09-8.38-1.57-2.62-3.67-6.28-1.83-9.69 2.72-5.06 11.25-4.47 14.66 2.36v.52l-2.36 3.4zm21.21 13.36c-1.96-3.27-.91-2.14-4.45-4.71h-.26c-2.36 4.19-5.76 10.47-8.64 16.24-1.31 2.36-1.05 3.4-.79 3.93l-.26 .26-5.76-4.45 .26-.26 2.09-1.31c3.14-5.76 6.55-12.05 9.17-17.02v-.26c-2.64-1.98-1.22-1.51-6.02-1.83v-.26l3.14-3.4h.26c3.67 2.36 9.95 6.81 12.31 8.9l.26 .26-1.31 3.91zm27.23-44.26l-2.88-2.88c.79-2.36 1.83-4.98 2.09-7.59 .75-9.74-11.52-11.84-11.52-4.98 0 4.98 7.86 19.38 7.86 27.76 0 10.21-5.76 15.71-13.88 16.5-8.38 .79-20.16-10.47-20.16-10.47l4.98-14.4 2.88 2.09c-2.97 17.8 17.68 20.37 13.35 5.24-1.06-4.02-18.75-34.2 2.09-38.23 13.62-2.36 23.04 16.5 23.04 16.5l-7.85 10.46zm35.62-10.21c-11-30.38-60.49-127.5-191.9-129.6-53.42-1.05-94.27 15.45-132.8 37.97l85.63-9.17-91.39 20.69 25.14 19.64-3.93-16.5c7.5-1.71 39.15-8.45 66.77-8.9l-22.26 80.39c13.61-.7 18.97-8.98 19.64-22.78l4.98-1.05 .26 26.71c-22.46 3.21-37.3 6.69-49.49 9.95l13.09-43.21-61.54-36.66 2.36 8.12 10.21 4.98c6.28 18.59 19.38 56.56 20.43 58.66 1.95 4.28 3.16 5.78 12.05 4.45l1.05 4.98c-16.08 4.86-23.66 7.61-39.02 14.4l-2.36-4.71c4.4-2.94 8.73-3.94 5.5-12.83-23.7-62.5-21.48-58.14-22.78-59.44l2.36-4.45 33.52 67.3c-3.84-11.87 1.68 1.69-32.99-78.82l-41.9 88.51 4.71-13.88-35.88-42.16 27.76 93.48-11.78 8.38C95 228.6 101.1 231.9 93.23 231.5c-5.5-.26-13.62 5.5-13.62 5.5L74.63 231c30.56-23.53 31.62-24.33 58.4-42.68l4.19 7.07s-5.76 4.19-7.86 7.07c-5.9 9.28 1.67 13.28 61.8 75.68l-18.85-58.92 39.8-10.21 25.66 30.64 4.45-12.31-4.98-24.62 13.09-3.4 .52 3.14 3.67-10.47-94.27 29.33 11.26-4.98-13.62-42.42 17.28-9.17 30.11 36.14 28.54-13.09c-1.41-7.47-2.47-14.5-4.71-19.64l17.28 13.88 4.71-2.09-59.18-42.68 23.08 11.5c18.98-6.07 25.23-7.47 32.21-9.69l2.62 11c-12.55 12.55 1.43 16.82 6.55 19.38l-13.62-61.01 12.05 28.28c4.19-1.31 7.33-2.09 7.33-2.09l2.62 8.64s-3.14 1.05-6.28 2.09l8.9 20.95 33.78-65.73-20.69 61.01c42.42-24.09 81.44-36.66 131.1-35.88 67.04 1.05 167.3 40.85 199.8 139.8 .78 2.1-.01 2.63-.79 .27zM203.5 152.4s1.83-.52 4.19-1.31l9.43 7.59c-.4 0-3.44-.25-11.26 2.36l-2.36-8.64zm143.8 38.5c-1.57-.6-26.46-4.81-33.26 20.69l21.73 17.02 11.53-37.71zM318.4 67.07c-58.4 0-106.1 12.05-114.1 14.4v.79c8.38 2.09 14.4 4.19 21.21 11.78l1.57 .26c6.55-1.83 48.97-13.88 110.2-13.88 180.2 0 301.7 116.8 301.7 223.4v9.95c0 1.31 .79 2.62 1.05 .52 .52-2.09 .79-8.64 .79-19.64 .26-83.79-96.63-227.6-321.6-227.6zm211.1 169.7c1.31-5.76 0-12.31-7.33-13.09-9.62-1.13-16.14 23.79-17.02 33.52-.79 5.5-1.31 14.93 6.02 14.93 4.68-.01 9.72-.91 18.33-35.36zm-61.53 42.95c-2.62-.79-9.43-.79-12.57 10.47-1.83 6.81 .52 13.35 6.02 14.66 3.67 1.05 8.9 .52 11.78-10.74 2.62-9.94-1.83-13.61-5.23-14.39zM491 300.6c1.83 .52 3.14 1.05 5.76 1.83 0-1.83 .52-8.38 .79-12.05-1.05 1.31-5.5 8.12-6.55 9.95v.27z',
			),
		),
		'label'             => __( 'Wizards of the Coast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'wodu'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M178.4 339.7H141.1L112.2 223.5h-.478L83.23 339.7H45.2L0 168.9H37.55L64.57 285.2h.478L94.71 168.9h35.16l29.18 117.7h.479L187.5 168.9h36.83zM271.4 212.7c38.98 0 64.1 25.83 64.1 65.29 0 39.22-25.11 65.05-64.1 65.05-38.74 0-63.85-25.83-63.85-65.05C207.5 238.5 232.7 212.7 271.4 212.7zm0 104.8c23.2 0 30.13-19.85 30.13-39.46 0-19.85-6.934-39.7-30.13-39.7-27.7 0-29.89 19.85-29.89 39.7C241.5 297.6 248.4 317.5 271.4 317.5zM435.1 323.9h-.478c-7.893 13.39-21.76 19.13-37.55 19.13-37.31 0-55.49-32.04-55.49-66.25 0-33.24 18.42-64.1 54.77-64.1 14.59 0 28.94 6.218 36.83 18.42h.24V168.9h33.96v170.8H435.1zM405.4 238.3c-22.24 0-29.89 19.13-29.89 39.46 0 19.37 8.848 39.7 29.89 39.7 22.48 0 29.18-19.61 29.18-39.94C434.6 257.4 427.4 238.3 405.4 238.3zM592.1 339.7H560.7V322.5h-.718c-8.609 13.87-23.44 20.57-37.79 20.57-36.11 0-45.2-20.33-45.2-50.94V216.1h33.96V285.9c0 20.33 5.979 30.37 21.76 30.37 18.42 0 26.31-10.28 26.31-35.39V216.1H592.1zM602.5 302.9H640v36.83H602.5z',
			),
		),
		'label'             => __( 'Wodu', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wolf-pack-battalion'                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M267.7 471.5l10.56 15.84 5.28-12.32 5.28 7V512c21.06-7.92 21.11-66.86 25.51-97.21 4.62-31.89-.88-92.81 81.37-149.1-8.88-23.61-12-49.43-2.64-80.05C421 189 447 196.2 456.4 239.7l-30.35 8.36c11.15 23 17 46.76 13.2 72.14L412 313.2l-6.16 33.43-18.47-7-8.8 33.39-19.35-7 26.39 21.11 8.8-28.15L419 364.2l7-35.63 26.39 14.52c.25-20 7-58.06-8.8-84.45l26.39 5.28c4-22.07-2.38-39.21-7.92-56.74l22.43 9.68c-.44-25.07-29.94-56.79-61.58-58.5-20.22-1.09-56.74-25.17-54.1-51.9 2-19.87 17.45-42.62 43.11-49.7-44 36.51-9.68 67.3 5.28 73.46 4.4-11.44 17.54-69.08 0-130.2-40.39 22.87-89.65 65.1-93.2 147.8l-58 38.71-3.52 93.25L369.8 220l7 7-17.59 3.52-44 38.71-15.84-5.28-28.1 49.25-3.52 119.6 21.11 15.84-32.55 15.84-32.55-15.84 21.11-15.84-3.52-119.6-28.15-49.26-15.84 5.28-44-38.71-17.58-3.51 7-7 107.3 59.82-3.52-93.25-58.06-38.71C185 65.1 135.8 22.87 95.3 0c-17.54 61.12-4.4 118.8 0 130.2 15-6.16 49.26-36.95 5.28-73.46 25.66 7.08 41.15 29.83 43.11 49.7 2.63 26.74-33.88 50.81-54.1 51.9-31.65 1.72-61.15 33.44-61.59 58.51l22.43-9.68c-5.54 17.53-11.91 34.67-7.92 56.74l26.39-5.28c-15.76 26.39-9.05 64.43-8.8 84.45l26.39-14.52 7 35.63 24.63-5.28 8.8 28.15L153.4 366 134 373l-8.8-33.43-18.47 7-6.16-33.43-27.27 7c-3.82-25.38 2-49.1 13.2-72.14l-30.35-8.36c9.4-43.52 35.47-50.77 63.34-54.1 9.36 30.62 6.24 56.45-2.64 80.05 82.25 56.3 76.75 117.2 81.37 149.1 4.4 30.35 4.45 89.29 25.51 97.21v-29.83l5.28-7 5.28 12.32 10.56-15.84 11.44 21.11 11.43-21.1zm79.17-95L331.1 366c7.47-4.36 13.76-8.42 19.35-12.32-.6 7.22-.27 13.84-3.51 22.84zm28.15-49.26c-.4 10.94-.9 21.66-1.76 31.67-7.85-1.86-15.57-3.8-21.11-7 8.24-7.94 15.55-16.32 22.87-24.68zm24.63 5.28c0-13.43-2.05-24.21-5.28-33.43a235 235 0 0 1 -18.47 27.27zm3.52-80.94c19.44 12.81 27.8 33.66 29.91 56.3-12.32-4.53-24.63-9.31-36.95-10.56 5.06-12 6.65-28.14 7-45.74zm-1.76-45.74c.81 14.3 1.84 28.82 1.76 42.23 19.22-8.11 29.78-9.72 44-14.08-10.61-18.96-27.2-25.53-45.76-28.16zM165.7 376.5L181.5 366c-7.47-4.36-13.76-8.42-19.35-12.32 .6 7.26 .27 13.88 3.51 22.88zm-28.15-49.26c.4 10.94 .9 21.66 1.76 31.67 7.85-1.86 15.57-3.8 21.11-7-8.24-7.93-15.55-16.31-22.87-24.67zm-24.64 5.28c0-13.43 2-24.21 5.28-33.43a235 235 0 0 0 18.47 27.27zm-3.52-80.94c-19.44 12.81-27.8 33.66-29.91 56.3 12.32-4.53 24.63-9.31 37-10.56-5-12-6.65-28.14-7-45.74zm1.76-45.74c-.81 14.3-1.84 28.82-1.76 42.23-19.22-8.11-29.78-9.72-44-14.08 10.63-18.95 27.23-25.52 45.76-28.15z',
			),
		),
		'label'             => __( 'Wolf Pack Battalion', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'won-sign'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M119.1 224H183L224.1 56.24C228.5 41.99 241.3 32 256 32C270.7 32 283.5 41.99 287 56.24L328.1 224H392.9L449.6 53.88C455.2 37.12 473.4 28.05 490.1 33.64C506.9 39.23 515.9 57.35 510.4 74.12L460.4 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H439.1L382.4 458.1C377.9 471.6 364.1 480.5 350.8 479.1C336.6 479.4 324.4 469.6 320.1 455.8L279 288H232.1L191 455.8C187.6 469.6 175.4 479.4 161.2 479.1C147 480.5 134.1 471.6 129.6 458.1L72.94 288H32C14.33 288 .001 273.7 .001 256C.001 238.3 14.33 224 32 224H51.6L1.643 74.12C-3.946 57.35 5.115 39.23 21.88 33.64C38.65 28.05 56.77 37.12 62.36 53.88L119.1 224zM140.4 288L155.6 333.6L167 288H140.4zM248.1 224H263L256 195.9L248.1 224zM344.1 288L356.4 333.6L371.6 288H344.1z',
			),
		),
		'label'             => __( 'Won Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'wordpress'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M61.7 169.4l101.5 278C92.2 413 43.3 340.2 43.3 256c0-30.9 6.6-60.1 18.4-86.6zm337.9 75.9c0-26.3-9.4-44.5-17.5-58.7-10.8-17.5-20.9-32.4-20.9-49.9 0-19.6 14.8-37.8 35.7-37.8 .9 0 1.8 .1 2.8 .2-37.9-34.7-88.3-55.9-143.7-55.9-74.3 0-139.7 38.1-177.8 95.9 5 .2 9.7 .3 13.7 .3 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l77.5 230.4L249.8 247l-33.1-90.8c-11.5-.7-22.3-2-22.3-2-11.5-.7-10.1-18.2 1.3-17.5 0 0 35.1 2.7 56 2.7 22.2 0 56.7-2.7 56.7-2.7 11.5-.7 12.8 16.2 1.4 17.5 0 0-11.5 1.3-24.3 2l76.9 228.7 21.2-70.9c9-29.4 16-50.5 16-68.7zm-139.9 29.3l-63.8 185.5c19.1 5.6 39.2 8.7 60.1 8.7 24.8 0 48.5-4.3 70.6-12.1-.6-.9-1.1-1.9-1.5-2.9l-65.4-179.2zm183-120.7c.9 6.8 1.4 14 1.4 21.9 0 21.6-4 45.8-16.2 76.2l-65 187.9C426.2 403 468.7 334.5 468.7 256c0-37-9.4-71.8-26-102.1zM504 256c0 136.8-111.3 248-248 248C119.2 504 8 392.7 8 256 8 119.2 119.2 8 256 8c136.7 0 248 111.2 248 248zm-11.4 0c0-130.5-106.2-236.6-236.6-236.6C125.5 19.4 19.4 125.5 19.4 256S125.6 492.6 256 492.6c130.5 0 236.6-106.1 236.6-236.6z',
			),
		),
		'label'             => __( 'WordPress Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wordpress-simple'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 8C119.3 8 8 119.2 8 256c0 136.7 111.3 248 248 248s248-111.3 248-248C504 119.2 392.7 8 256 8zM33 256c0-32.3 6.9-63 19.3-90.7l106.4 291.4C84.3 420.5 33 344.2 33 256zm223 223c-21.9 0-43-3.2-63-9.1l66.9-194.4 68.5 187.8c.5 1.1 1 2.1 1.6 3.1-23.1 8.1-48 12.6-74 12.6zm30.7-327.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-21.9 0-58.7-2.8-58.7-2.8-12-.7-13.4 17.7-1.4 18.4 0 0 11.4 1.4 23.4 2.1l34.7 95.2L200.6 393l-81.2-241.5c13.4-.7 25.5-2.1 25.5-2.1 12-1.4 10.6-19.1-1.4-18.4 0 0-36.1 2.8-59.4 2.8-4.2 0-9.1-.1-14.4-.3C109.6 73 178.1 33 256 33c58 0 110.9 22.2 150.6 58.5-1-.1-1.9-.2-2.9-.2-21.9 0-37.4 19.1-37.4 39.6 0 18.4 10.6 33.9 21.9 52.3 8.5 14.8 18.4 33.9 18.4 61.5 0 19.1-7.3 41.2-17 72.1l-22.2 74.3-80.7-239.6zm81.4 297.2l68.1-196.9c12.7-31.8 17-57.2 17-79.9 0-8.2-.5-15.8-1.5-22.9 17.4 31.8 27.3 68.2 27.3 107 0 82.3-44.6 154.1-110.9 192.7z',
			),
		),
		'label'             => __( 'Wordpress Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'worm'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 96C256 42.98 298.1 0 352 0H390.4C439.9 0 480 40.12 480 89.6V376C480 451.1 419.1 512 344 512C268.9 512 208 451.1 208 376V296C208 273.9 190.1 256 168 256C145.9 256 128 273.9 128 296V464C128 490.5 106.5 512 80 512C53.49 512 32 490.5 32 464V296C32 220.9 92.89 160 168 160C243.1 160 304 220.9 304 296V376C304 398.1 321.9 416 344 416C366.1 416 384 398.1 384 376V192H352C298.1 192 256 149 256 96zM376 64C362.7 64 352 74.75 352 88C352 101.3 362.7 112 376 112C389.3 112 400 101.3 400 88C400 74.75 389.3 64 376 64z',
			),
		),
		'label'             => __( 'Worm', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'wpbeginner'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M462.8 322.4C519 386.7 466.1 480 370.9 480c-39.6 0-78.82-17.69-100.1-50.04-6.887 .356-22.7 .356-29.59 0C219.8 462.4 180.6 480 141.1 480c-95.49 0-148.3-92.1-91.86-157.6C-29.92 190.5 80.48 32 256 32c175.6 0 285.9 158.6 206.8 290.4zm-339.6-82.97h41.53v-58.08h-41.53v58.08zm217.2 86.07v-23.84c-60.51 20.92-132.4 9.198-187.6-33.97l.246 24.9c51.1 46.37 131.7 57.88 187.3 32.91zm-150.8-86.07h166.1v-58.08H189.6v58.08z',
			),
		),
		'label'             => __( 'WPBeginner', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wpexplorer'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256c0 141.2-114.7 256-256 256C114.8 512 0 397.3 0 256S114.7 0 256 0s256 114.7 256 256zm-32 0c0-123.2-100.3-224-224-224C132.5 32 32 132.5 32 256s100.5 224 224 224 224-100.5 224-224zM160.9 124.6l86.9 37.1-37.1 86.9-86.9-37.1 37.1-86.9zm110 169.1l46.6 94h-14.6l-50-100-48.9 100h-14l51.1-106.9-22.3-9.4 6-14 68.6 29.1-6 14.3-16.5-7.1zm-11.8-116.3l68.6 29.4-29.4 68.3L230 246l29.1-68.6zm80.3 42.9l54.6 23.1-23.4 54.3-54.3-23.1 23.1-54.3z',
			),
		),
		'label'             => __( 'WPExplorer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wpforms'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 75.2v361.7c0 24.3-19 43.2-43.2 43.2H43.2C19.3 480 0 461.4 0 436.8V75.2C0 51.1 18.8 32 43.2 32h361.7c24 0 43.1 18.8 43.1 43.2zm-37.3 361.6V75.2c0-3-2.6-5.8-5.8-5.8h-9.3L285.3 144 224 94.1 162.8 144 52.5 69.3h-9.3c-3.2 0-5.8 2.8-5.8 5.8v361.7c0 3 2.6 5.8 5.8 5.8h361.7c3.2 .1 5.8-2.7 5.8-5.8zM150.2 186v37H76.7v-37h73.5zm0 74.4v37.3H76.7v-37.3h73.5zm11.1-147.3l54-43.7H96.8l64.5 43.7zm210 72.9v37h-196v-37h196zm0 74.4v37.3h-196v-37.3h196zm-84.6-147.3l64.5-43.7H232.8l53.9 43.7zM371.3 335v37.3h-99.4V335h99.4z',
			),
		),
		'label'             => __( 'WPForms', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wpressr'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S384.1 8 248 8zm171.3 158.6c-15.18 34.51-30.37 69.02-45.63 103.5-2.44 5.51-6.89 8.24-12.97 8.24-23.02-.01-46.03 .06-69.05-.05-5.12-.03-8.25 1.89-10.34 6.72-10.19 23.56-20.63 47-30.95 70.5-1.54 3.51-4.06 5.29-7.92 5.29-45.94-.01-91.87-.02-137.8 0-3.13 0-5.63-1.15-7.72-3.45-11.21-12.33-22.46-24.63-33.68-36.94-2.69-2.95-2.79-6.18-1.21-9.73 8.66-19.54 17.27-39.1 25.89-58.66 12.93-29.35 25.89-58.69 38.75-88.08 1.7-3.88 4.28-5.68 8.54-5.65 14.24 .1 28.48 .02 42.72 .05 6.24 .01 9.2 4.84 6.66 10.59-13.6 30.77-27.17 61.55-40.74 92.33-5.72 12.99-11.42 25.99-17.09 39-3.91 8.95 7.08 11.97 10.95 5.6 .23-.37-1.42 4.18 30.01-67.69 1.36-3.1 3.41-4.4 6.77-4.39 15.21 .08 30.43 .02 45.64 .04 5.56 .01 7.91 3.64 5.66 8.75-8.33 18.96-16.71 37.9-24.98 56.89-4.98 11.43 8.08 12.49 11.28 5.33 .04-.08 27.89-63.33 32.19-73.16 2.02-4.61 5.44-6.51 10.35-6.5 26.43 .05 52.86 0 79.29 .05 12.44 .02 13.93-13.65 3.9-13.64-25.26 .03-50.52 .02-75.78 .02-6.27 0-7.84-2.47-5.27-8.27 5.78-13.06 11.59-26.11 17.3-39.21 1.73-3.96 4.52-5.79 8.84-5.78 23.09 .06 25.98 .02 130.8 .03 6.08-.01 8.03 2.79 5.62 8.27z',
			),
		),
		'label'             => __( 'wpressr', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'wrench'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M507.6 122.8c-2.904-12.09-18.25-16.13-27.04-7.338l-76.55 76.56l-83.1-.0002l0-83.1l76.55-76.56c8.791-8.789 4.75-24.14-7.336-27.04c-23.69-5.693-49.34-6.111-75.92 .2484c-61.45 14.7-109.4 66.9-119.2 129.3C189.8 160.8 192.3 186.7 200.1 210.1l-178.1 178.1c-28.12 28.12-28.12 73.69 0 101.8C35.16 504.1 53.56 512 71.1 512s36.84-7.031 50.91-21.09l178.1-178.1c23.46 7.736 49.31 10.24 76.17 6.004c62.41-9.84 114.6-57.8 129.3-119.2C513.7 172.1 513.3 146.5 507.6 122.8zM80 456c-13.25 0-24-10.75-24-24c0-13.26 10.75-24 24-24s24 10.74 24 24C104 445.3 93.25 456 80 456z',
			),
		),
		'label'             => __( 'Wrench', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'x'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M376.6 427.5c11.31 13.58 9.484 33.75-4.094 45.06c-5.984 4.984-13.25 7.422-20.47 7.422c-9.172 0-18.27-3.922-24.59-11.52L192 305.1l-135.4 162.5c-6.328 7.594-15.42 11.52-24.59 11.52c-7.219 0-14.48-2.438-20.47-7.422c-13.58-11.31-15.41-31.48-4.094-45.06l142.9-171.5L7.422 84.5C-3.891 70.92-2.063 50.75 11.52 39.44c13.56-11.34 33.73-9.516 45.06 4.094L192 206l135.4-162.5c11.3-13.58 31.48-15.42 45.06-4.094c13.58 11.31 15.41 31.48 4.094 45.06l-142.9 171.5L376.6 427.5z',
			),
		),
		'label'             => __( 'X', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'x-ray'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M208 352C199.2 352 192 359.2 192 368C192 376.8 199.2 384 208 384S224 376.8 224 368C224 359.2 216.8 352 208 352zM304 384c8.836 0 16-7.164 16-16c0-8.838-7.164-16-16-16S288 359.2 288 368C288 376.8 295.2 384 304 384zM496 96C504.8 96 512 88.84 512 80v-32C512 39.16 504.8 32 496 32h-480C7.164 32 0 39.16 0 48v32C0 88.84 7.164 96 16 96H32v320H16C7.164 416 0 423.2 0 432v32C0 472.8 7.164 480 16 480h480c8.836 0 16-7.164 16-16v-32c0-8.836-7.164-16-16-16H480V96H496zM416 216C416 220.4 412.4 224 408 224H272v32h104C380.4 256 384 259.6 384 264v16C384 284.4 380.4 288 376 288H272v32h69.33c25.56 0 40.8 28.48 26.62 49.75l-21.33 32C340.7 410.7 330.7 416 319.1 416H192c-10.7 0-20.69-5.347-26.62-14.25l-21.33-32C129.9 348.5 145.1 320 170.7 320H240V288H136C131.6 288 128 284.4 128 280v-16C128 259.6 131.6 256 136 256H240V224H104C99.6 224 96 220.4 96 216v-16C96 195.6 99.6 192 104 192H240V160H136C131.6 160 128 156.4 128 152v-16C128 131.6 131.6 128 136 128H240V104C240 99.6 243.6 96 248 96h16c4.4 0 8 3.6 8 8V128h104C380.4 128 384 131.6 384 136v16C384 156.4 380.4 160 376 160H272v32h136C412.4 192 416 195.6 416 200V216z',
			),
		),
		'label'             => __( 'X Ray', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'xbox'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M369.9 318.2c44.3 54.3 64.7 98.8 54.4 118.7-7.9 15.1-56.7 44.6-92.6 55.9-29.6 9.3-68.4 13.3-100.4 10.2-38.2-3.7-76.9-17.4-110.1-39C93.3 445.8 87 438.3 87 423.4c0-29.9 32.9-82.3 89.2-142.1 32-33.9 76.5-73.7 81.4-72.6 9.4 2.1 84.3 75.1 112.3 109.5zM188.6 143.8c-29.7-26.9-58.1-53.9-86.4-63.4-15.2-5.1-16.3-4.8-28.7 8.1-29.2 30.4-53.5 79.7-60.3 122.4-5.4 34.2-6.1 43.8-4.2 60.5 5.6 50.5 17.3 85.4 40.5 120.9 9.5 14.6 12.1 17.3 9.3 9.9-4.2-11-.3-37.5 9.5-64 14.3-39 53.9-112.9 120.3-194.4zm311.6 63.5C483.3 127.3 432.7 77 425.6 77c-7.3 0-24.2 6.5-36 13.9-23.3 14.5-41 31.4-64.3 52.8C367.7 197 427.5 283.1 448.2 346c6.8 20.7 9.7 41.1 7.4 52.3-1.7 8.5-1.7 8.5 1.4 4.6 6.1-7.7 19.9-31.3 25.4-43.5 7.4-16.2 15-40.2 18.6-58.7 4.3-22.5 3.9-70.8-.8-93.4zM141.3 43C189 40.5 251 77.5 255.6 78.4c.7 .1 10.4-4.2 21.6-9.7 63.9-31.1 94-25.8 107.4-25.2-63.9-39.3-152.7-50-233.9-11.7-23.4 11.1-24 11.9-9.4 11.2z',
			),
		),
		'label'             => __( 'Xbox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'xing'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M162.7 210c-1.8 3.3-25.2 44.4-70.1 123.5-4.9 8.3-10.8 12.5-17.7 12.5H9.8c-7.7 0-12.1-7.5-8.5-14.4l69-121.3c.2 0 .2-.1 0-.3l-43.9-75.6c-4.3-7.8 .3-14.1 8.5-14.1H100c7.3 0 13.3 4.1 18 12.2l44.7 77.5zM382.6 46.1l-144 253v.3L330.2 466c3.9 7.1 .2 14.1-8.5 14.1h-65.2c-7.6 0-13.6-4-18-12.2l-92.4-168.5c3.3-5.8 51.5-90.8 144.8-255.2 4.6-8.1 10.4-12.2 17.5-12.2h65.7c8 0 12.3 6.7 8.5 14.1z',
			),
		),
		'label'             => __( 'Xing', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'xing-square'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM140.4 320.2H93.8c-5.5 0-8.7-5.3-6-10.3l49.3-86.7c.1 0 .1-.1 0-.2l-31.4-54c-3-5.6 .2-10.1 6-10.1h46.6c5.2 0 9.5 2.9 12.9 8.7l31.9 55.3c-1.3 2.3-18 31.7-50.1 88.2-3.5 6.2-7.7 9.1-12.6 9.1zm219.7-214.1L257.3 286.8v.2l65.5 119c2.8 5.1 .1 10.1-6 10.1h-46.6c-5.5 0-9.7-2.9-12.9-8.7l-66-120.3c2.3-4.1 36.8-64.9 103.4-182.3 3.3-5.8 7.4-8.7 12.5-8.7h46.9c5.7-.1 8.8 4.7 6 10z',
			),
		),
		'label'             => __( 'Xing Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'xmark'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M310.6 361.4c12.5 12.5 12.5 32.75 0 45.25C304.4 412.9 296.2 416 288 416s-16.38-3.125-22.62-9.375L160 301.3L54.63 406.6C48.38 412.9 40.19 416 32 416S15.63 412.9 9.375 406.6c-12.5-12.5-12.5-32.75 0-45.25l105.4-105.4L9.375 150.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 210.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-105.4 105.4L310.6 361.4z',
			),
		),
		'label'             => __( 'Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'education' ),
	),
	'xmarks-lines'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M608 32C625.7 32 640 46.33 640 64C640 81.67 625.7 96 608 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H608zM608 416C625.7 416 640 430.3 640 448C640 465.7 625.7 480 608 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H608zM7.029 167C16.4 157.7 31.6 157.7 40.97 167L96 222.1L151 167C160.4 157.7 175.6 157.7 184.1 167C194.3 176.4 194.3 191.6 184.1 200.1L129.9 256L184.1 311C194.3 320.4 194.3 335.6 184.1 344.1C175.6 354.3 160.4 354.3 151 344.1L96 289.9L40.97 344.1C31.6 354.3 16.4 354.3 7.029 344.1C-2.343 335.6-2.343 320.4 7.029 311L62.06 256L7.029 200.1C-2.343 191.6-2.343 176.4 7.029 167V167zM320 222.1L375 167C384.4 157.7 399.6 157.7 408.1 167C418.3 176.4 418.3 191.6 408.1 200.1L353.9 256L408.1 311C418.3 320.4 418.3 335.6 408.1 344.1C399.6 354.3 384.4 354.3 375 344.1L320 289.9L264.1 344.1C255.6 354.3 240.4 354.3 231 344.1C221.7 335.6 221.7 320.4 231 311L286.1 256L231 200.1C221.7 191.6 221.7 176.4 231 167C240.4 157.7 255.6 157.7 264.1 167L320 222.1zM455 167C464.4 157.7 479.6 157.7 488.1 167L544 222.1L599 167C608.4 157.7 623.6 157.7 632.1 167C642.3 176.4 642.3 191.6 632.1 200.1L577.9 256L632.1 311C642.3 320.4 642.3 335.6 632.1 344.1C623.6 354.3 608.4 354.3 599 344.1L544 289.9L488.1 344.1C479.6 354.3 464.4 354.3 455 344.1C445.7 335.6 445.7 320.4 455 311L510.1 256L455 200.1C445.7 191.6 445.7 176.4 455 167V167z',
			),
		),
		'label'             => __( 'Xmarks Lines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment' ),
	),
	'y'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M378 82.61L224 298.3v149.8c0 17.67-14.31 31.1-32 31.1S160 465.7 160 448V298.3L5.969 82.61C-4.313 68.23-.9688 48.25 13.41 37.97c14.34-10.27 34.38-6.922 44.63 7.453L192 232.1l133.1-187.5c10.28-14.37 30.28-17.7 44.63-7.453C384.1 48.25 388.3 68.23 378 82.61z',
			),
		),
		'label'             => __( 'Y', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'y-combinator'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 32v448H0V32h448zM236 287.5L313.5 142h-32.7L235 233c-4.7 9.3-9 18.3-12.8 26.8L210 233l-45.2-91h-35l76.7 143.8v94.5H236v-92.8z',
			),
		),
		'label'             => __( 'Y Combinator', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yahoo'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M223.7 141.1 167 284.2 111 141.1H14.93L120.8 390.2 82.19 480h94.17L317.3 141.1zm105.4 135.8a58.22 58.22 0 1 0 58.22 58.22A58.22 58.22 0 0 0 329.1 276.9zM394.6 32l-93 223.5H406.4L499.1 32z',
			),
		),
		'label'             => __( 'Yahoo Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yammer'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.7 159.5a12.78 12.78 0 0 0 -6.4-8.282 13.95 13.95 0 0 0 -10.08-1.125L457.8 156.7l-.043-.2-22.3 5.785-1.243 .333-.608-2.17A369 369 0 0 0 347.5 4.289a14.1 14.1 0 0 0 -19.78-.463l-102.9 102.7H24.95A24.9 24.9 0 0 0 0 131.4V380.4a24.96 24.96 0 0 0 24.92 24.9H224.1L328.1 508a13.67 13.67 0 0 0 19.33 0c.126-.126 .249-.255 .37-.385a368 368 0 0 0 69.58-107.4 403.5 403.5 0 0 0 17.3-50.8v-.028l20.41 5.336 .029-.073L483.3 362a20.25 20.25 0 0 0 2.619 .5 13.36 13.36 0 0 0 4.139-.072 13.5 13.5 0 0 0 10.52-9.924 415.9 415.9 0 0 0 .058-193zM337.1 24.65l.013 .014h-.013zm-110.2 165.2L174.3 281.1a11.34 11.34 0 0 0 -1.489 5.655v46.19a22.04 22.04 0 0 1 -22.04 22h-3.4A22.07 22.07 0 0 1 125.3 332.1V287.3a11.53 11.53 0 0 0 -1.388-5.51l-51.6-92.2a21.99 21.99 0 0 1 19.26-32.73h3.268a22.06 22.06 0 0 1 19.61 11.92l36.36 70.28 37.51-70.51a22.07 22.07 0 0 1 38.56-.695 21.7 21.7 0 0 1 0 21.97zM337.1 24.67a348.1 348.1 0 0 1 75.8 141.3l.564 1.952-114.1 29.6V131.4a25.01 25.01 0 0 0 -24.95-24.9H255.1zm60.5 367.3v-.043l-.014 .014a347.2 347.2 0 0 1 -60.18 95.23l-82.2-81.89h19.18a24.98 24.98 0 0 0 24.95-24.9v-66.2l114.6 29.86A385.2 385.2 0 0 1 397.6 391.1zm84-52.45 .015 .014-50.62-13.13L299.4 292.1V219.6l119.7-30.99 4.468-1.157 39.54-10.25 18.51-4.816A393 393 0 0 1 481.6 339.5z',
			),
		),
		'label'             => __( 'Yammer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yandex'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M153.1 315.8L65.7 512H2l96-209.8c-45.1-22.9-75.2-64.4-75.2-141.1C22.7 53.7 90.8 0 171.7 0H254v512h-55.1V315.8h-45.8zm45.8-269.3h-29.4c-44.4 0-87.4 29.4-87.4 114.6 0 82.3 39.4 108.8 87.4 108.8h29.4V46.5z',
			),
		),
		'label'             => __( 'Yandex', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yandex-international'               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M129.5 512V345.9L18.5 48h55.8l81.8 229.7L250.2 0h51.3L180.8 347.8V512h-51.3z',
			),
		),
		'label'             => __( 'Yandex International', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yarn'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M393.9 345.2c-39 9.3-48.4 32.1-104 47.4 0 0-2.7 4-10.4 5.8-13.4 3.3-63.9 6-68.5 6.1-12.4 .1-19.9-3.2-22-8.2-6.4-15.3 9.2-22 9.2-22-8.1-5-9-9.9-9.8-8.1-2.4 5.8-3.6 20.1-10.1 26.5-8.8 8.9-25.5 5.9-35.3 .8-10.8-5.7 .8-19.2 .8-19.2s-5.8 3.4-10.5-3.6c-6-9.3-17.1-37.3 11.5-62-1.3-10.1-4.6-53.7 40.6-85.6 0 0-20.6-22.8-12.9-43.3 5-13.4 7-13.3 8.6-13.9 5.7-2.2 11.3-4.6 15.4-9.1 20.6-22.2 46.8-18 46.8-18s12.4-37.8 23.9-30.4c3.5 2.3 16.3 30.6 16.3 30.6s13.6-7.9 15.1-5c8.2 16 9.2 46.5 5.6 65.1-6.1 30.6-21.4 47.1-27.6 57.5-1.4 2.4 16.5 10 27.8 41.3 10.4 28.6 1.1 52.7 2.8 55.3 .8 1.4 13.7 .8 36.4-13.2 12.8-7.9 28.1-16.9 45.4-17 16.7-.5 17.6 19.2 4.9 22.2zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-79.3 75.2c-1.7-13.6-13.2-23-28-22.8-22 .3-40.5 11.7-52.8 19.2-4.8 3-8.9 5.2-12.4 6.8 3.1-44.5-22.5-73.1-28.7-79.4 7.8-11.3 18.4-27.8 23.4-53.2 4.3-21.7 3-55.5-6.9-74.5-1.6-3.1-7.4-11.2-21-7.4-9.7-20-13-22.1-15.6-23.8-1.1-.7-23.6-16.4-41.4 28-12.2 .9-31.3 5.3-47.5 22.8-2 2.2-5.9 3.8-10.1 5.4h.1c-8.4 3-12.3 9.9-16.9 22.3-6.5 17.4 .2 34.6 6.8 45.7-17.8 15.9-37 39.8-35.7 82.5-34 36-11.8 73-5.6 79.6-1.6 11.1 3.7 19.4 12 23.8 12.6 6.7 30.3 9.6 43.9 2.8 4.9 5.2 13.8 10.1 30 10.1 6.8 0 58-2.9 72.6-6.5 6.8-1.6 11.5-4.5 14.6-7.1 9.8-3.1 36.8-12.3 62.2-28.7 18-11.7 24.2-14.2 37.6-17.4 12.9-3.2 21-15.1 19.4-28.2z',
			),
		),
		'label'             => __( 'Yarn', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yelp'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M42.9 240.3l99.62 48.61c19.2 9.4 16.2 37.51-4.5 42.71L30.5 358.5a22.79 22.79 0 0 1 -28.21-19.6 197.2 197.2 0 0 1 9-85.32 22.8 22.8 0 0 1 31.61-13.21zm44 239.3a199.4 199.4 0 0 0 79.42 32.11A22.78 22.78 0 0 0 192.9 490l3.9-110.8c.7-21.3-25.5-31.91-39.81-16.1l-74.21 82.4a22.82 22.82 0 0 0 4.09 34.09zm145.3-109.9l58.81 94a22.93 22.93 0 0 0 34 5.5 198.4 198.4 0 0 0 52.71-67.61A23 23 0 0 0 364.2 370l-105.4-34.26c-20.31-6.5-37.81 15.8-26.51 33.91zm148.3-132.2a197.4 197.4 0 0 0 -50.41-69.31 22.85 22.85 0 0 0 -34 4.4l-62 91.92c-11.9 17.7 4.7 40.61 25.2 34.71L366 268.6a23 23 0 0 0 14.61-31.21zM62.11 30.18a22.86 22.86 0 0 0 -9.9 32l104.1 180.4c11.7 20.2 42.61 11.9 42.61-11.4V22.88a22.67 22.67 0 0 0 -24.5-22.8 320.4 320.4 0 0 0 -112.3 30.1z',
			),
		),
		'label'             => __( 'Yelp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'yen-sign'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M159.1 198.3L261.4 46.25C271.2 31.54 291 27.57 305.8 37.37C320.5 47.18 324.4 67.04 314.6 81.75L219.8 223.1H272C289.7 223.1 304 238.3 304 255.1C304 273.7 289.7 287.1 272 287.1H192V319.1H272C289.7 319.1 304 334.3 304 352C304 369.7 289.7 384 272 384H192V448C192 465.7 177.7 480 159.1 480C142.3 480 127.1 465.7 127.1 448V384H47.1C30.33 384 15.1 369.7 15.1 352C15.1 334.3 30.33 319.1 47.1 319.1H127.1V287.1H47.1C30.33 287.1 15.1 273.7 15.1 255.1C15.1 238.3 30.33 223.1 47.1 223.1H100.2L5.374 81.75C-4.429 67.04-.456 47.18 14.25 37.37C28.95 27.57 48.82 31.54 58.62 46.25L159.1 198.3z',
			),
		),
		'label'             => __( 'Yen Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'yin-yang'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 128C238.3 128 224 142.4 224 160S238.3 192 256 192s31.97-14.38 31.97-32S273.7 128 256 128zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 384c-17.68 0-31.97-14.38-31.97-32S238.3 320 256 320s31.97 14.38 31.97 32S273.7 384 256 384zM256 256c-53.04 0-96.03 43-96.03 96S202.1 448 256 448c-106.1 0-192.1-86-192.1-192S149.9 64 256 64c53.04 0 96.03 43 96.03 96S309 256 256 256z',
			),
		),
		'label'             => __( 'Yin Yang', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'yoast'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M91.3 76h186l-7 18.9h-179c-39.7 0-71.9 31.6-71.9 70.3v205.4c0 35.4 24.9 70.3 84 70.3V460H91.3C41.2 460 0 419.8 0 370.5V165.2C0 115.9 40.7 76 91.3 76zm229.1-56h66.5C243.1 398.1 241.2 418.9 202.2 459.3c-20.8 21.6-49.3 31.7-78.3 32.7v-51.1c49.2-7.7 64.6-49.9 64.6-75.3 0-20.1 .6-12.6-82.1-223.2h61.4L218.2 299 320.4 20zM448 161.5V460H234c6.6-9.6 10.7-16.3 12.1-19.4h182.5V161.5c0-32.5-17.1-51.9-48.2-62.9l6.7-17.6c41.7 13.6 60.9 43.1 60.9 80.5z',
			),
		),
		'label'             => __( 'Yoast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'youtube'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M549.7 124.1c-6.281-23.65-24.79-42.28-48.28-48.6C458.8 64 288 64 288 64S117.2 64 74.63 75.49c-23.5 6.322-42 24.95-48.28 48.6-11.41 42.87-11.41 132.3-11.41 132.3s0 89.44 11.41 132.3c6.281 23.65 24.79 41.5 48.28 47.82C117.2 448 288 448 288 448s170.8 0 213.4-11.49c23.5-6.321 42-24.17 48.28-47.82 11.41-42.87 11.41-132.3 11.41-132.3s0-89.44-11.41-132.3zm-317.5 213.5V175.2l142.7 81.21-142.7 81.2z',
			),
		),
		'label'             => __( 'YouTube', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'youtube-square'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z',
			),
		),
		'label'             => __( 'YouTube Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'z'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 448c0 17.67-14.31 32-32 32H32c-12.41 0-23.72-7.188-28.97-18.42c-5.281-11.25-3.562-24.53 4.375-34.06l276.3-331.5H32c-17.69 0-32-14.33-32-32s14.31-32 32-32h320c12.41 0 23.72 7.188 28.97 18.42c5.281 11.25 3.562 24.53-4.375 34.06L100.3 416H352C369.7 416 384 430.3 384 448z',
			),
		),
		'label'             => __( 'Z', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'zhihu'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M170.5 148.1v217.5l23.43 .01 7.71 26.37 42.01-26.37h49.53V148.1H170.5zm97.75 193.9h-27.94l-27.9 17.51-5.08-17.47-11.9-.04V171.8h72.82v170.3zm-118.5-94.39H97.5c1.74-27.1 2.2-51.59 2.2-73.46h51.16s1.97-22.56-8.58-22.31h-88.5c3.49-13.12 7.87-26.66 13.12-40.67 0 0-24.07 0-32.27 21.57-3.39 8.9-13.21 43.14-30.7 78.12 5.89-.64 25.37-1.18 36.84-22.21 2.11-5.89 2.51-6.66 5.14-14.53h28.87c0 10.5-1.2 66.88-1.68 73.44H20.83c-11.74 0-15.56 23.62-15.56 23.62h65.58C66.45 321.1 42.83 363.1 0 396.3c20.49 5.85 40.91-.93 51-9.9 0 0 22.98-20.9 35.59-69.25l53.96 64.94s7.91-26.89-1.24-39.99c-7.58-8.92-28.06-33.06-36.79-41.81L87.9 311.1c4.36-13.98 6.99-27.55 7.87-40.67h61.65s-.09-23.62-7.59-23.62v.01zm412-1.6c20.83-25.64 44.98-58.57 44.98-58.57s-18.65-14.8-27.38-4.06c-6 8.15-36.83 48.2-36.83 48.2l19.23 14.43zm-150.1-59.09c-9.01-8.25-25.91 2.13-25.91 2.13s39.52 55.04 41.12 57.45l19.46-13.73s-25.67-37.61-34.66-45.86h-.01zM640 258.4c-19.78 0-130.9 .93-131.1 .93v-101c4.81 0 12.42-.4 22.85-1.2 40.88-2.41 70.13-4 87.77-4.81 0 0 12.22-27.19-.59-33.44-3.07-1.18-23.17 4.58-23.17 4.58s-165.2 16.49-232.4 18.05c1.6 8.82 7.62 17.08 15.78 19.55 13.31 3.48 22.69 1.7 49.15 .89 24.83-1.6 43.68-2.43 56.51-2.43v99.81H351.4s2.82 22.31 25.51 22.85h107.9v70.92c0 13.97-11.19 21.99-24.48 21.12-14.08 .11-26.08-1.15-41.69-1.81 1.99 3.97 6.33 14.39 19.31 21.84 9.88 4.81 16.17 6.57 26.02 6.57 29.56 0 45.67-17.28 44.89-45.31v-73.32h122.4c9.68 0 8.7-23.78 8.7-23.78l.03-.01z',
			),
		),
		'label'             => __( 'Zhihu', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'uagb_category_list'                 => array(
		array(
			'slug'  => 'brands',
			'title' => __( 'Brands', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'business',
			'title' => __( 'Business', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'communication',
			'title' => __( 'Communication', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'design',
			'title' => __( 'Design', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'education',
			'title' => __( 'Education', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'environment',
			'title' => __( 'Environment', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'lifestyle-and-hobbies',
			'title' => __( 'Lifestyle', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'science-and-technology',
			'title' => __( 'Science', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'social',
			'title' => __( 'Social', 'ultimate-addons-for-gutenberg' ),
		),
		array(
			'slug'  => 'travel',
			'title' => __( 'Travel', 'ultimate-addons-for-gutenberg' ),
		),
	),
);
PK�][�����Kultimate-addons-for-gutenberg/blocks-config/uagb-controls/addInitialAttr.jsnu�[���import { useEffect } from '@wordpress/element';
import { select } from '@wordpress/data';

const headingDescToggleDefault = 'yes' === uagb_blocks_info.uagb_old_user_less_than_2;

const getUniqId = ( blocks ) => blocks
	.reduce( ( result, block ) => {
		if ( block?.attributes?.block_id && block.name.includes( 'uagb' ) ) {
			result.blockIds.push( block.attributes.block_id );
			result.clientIds.push( block.clientId );
		}

		if ( block.innerBlocks ) {
			const { blockIds, clientIds } = getUniqId( block.innerBlocks );
			result.blockIds = [ ...result.blockIds, ...blockIds ];
			result.clientIds = [ ...result.clientIds, ...clientIds ];
		}

		return result;
	}, { blockIds: [], clientIds: [] } );

const checkDuplicate = ( blockIds, block_id, currentIndex ) => {
	const getFiltered =  blockIds.filter( ( el ) => ( el === block_id ) );
	return getFiltered.length > 1 && currentIndex === blockIds.lastIndexOf( block_id )
}

const addInitialAttr = ( ChildComponent ) => {
	const WrappedComponent = ( props ) => {
		const { name, setAttributes, clientId, attributes : { block_id } } = props;

		const listOfParentBlock = [
			'uagb/faq',
			'uagb/buttons',
			'uagb/icon-list',
			'uagb/restaurant-menu',
			'uagb/social-share',
			'uagb/content-timeline',
			'uagb/tabs',
			'uagb/how-to'
		]; // Add all parent block name here who's getting issue in customize preview.

		useEffect( () => {
			if ( uagb_blocks_info.is_customize_preview && ( '0' === block_id || undefined === block_id ) && listOfParentBlock.includes( name ) ) {
				document.addEventListener( `UAG-${name}-${clientId.substr( 0, 8 )}-BlockCustomizeWidgetEditor`, function ( e ) {
					setAttributes( { block_id: e.detail.id, classMigrate: e.detail.classMigrate, childMigrate: e.detail.childMigrate } );
				} );
			}
		}, [] );

		useEffect( () => {
			if ( uagb_blocks_info.is_customize_preview && ( '0' === block_id || undefined === block_id ) && listOfParentBlock.includes( name ) ) {
				const loadCustomEvent = new CustomEvent( `UAG-${name}-${clientId.substr( 0, 8 )}-BlockCustomizeWidgetEditor`, { detail: { id: clientId.substr( 0, 8 ), classMigrate: true, childMigrate: true }, } );
				document.dispatchEvent( loadCustomEvent );
			}
		}, [ props.attributes ] );

		useEffect( () => {
			const listOfClassMigrate = [
				'uagb/advanced-heading',
				'uagb/blockquote',
				'uagb/buttons',
				'uagb/call-to-action',
				'uagb/column',
				'uagb/columns',
				'uagb/icon-list',
				'uagb/marketing-button',
				'uagb/image-gallery',
				'uagb/info-box',
				'uagb/lottie',
				'uagb/restaurant-menu',
				'uagb/section',
				'uagb/social-share',
				'uagb/content-timeline',
				'uagb/table-of-contents',
				'uagb/team',
				'uagb/testimonial',
				'uagb/instagram-feed',
				'uagb/login',
				'uagb/register',
			];

			const listOfChildMigrate = [
				'uagb/buttons',
				'uagb/icon-list',
				'uagb/restaurant-menu',
				'uagb/social-share',
                'uagb/content-timeline',
				'uagb/instagram-feed',
			];

			const listOfIsHtml = [ 'uagb/cf7-styler', 'uagb/gf-styler' ];

			const listOfEditorInnerblocksPreview = [ 'uagb/countdown' ];

			const listOfAllTaxonomyStore = [ 'uagb/post-carousel', 'uagb/post-grid', 'uagb/post-masonry' ];

			const attributeObject = { block_id: clientId.substr( 0, 8 ) };

			if ( listOfAllTaxonomyStore.includes( name ) ) {
				attributeObject.allTaxonomyStore = undefined;
			}

            // editorInnerblocksPreview: This attribute is used to display innerblocks preview for 'Replace with Content' mode.
			if ( listOfEditorInnerblocksPreview.includes( name ) ) {
				attributeObject.editorInnerblocksPreview = false;
			}

			if ( listOfIsHtml.includes( name ) ) {
				attributeObject.isHtml = false;
			}

			if ( listOfChildMigrate.includes( name ) ) {
				attributeObject.childMigrate = true;
			}

			if ( listOfClassMigrate.includes( name ) ) {
				attributeObject.classMigrate = true;
			}

			if ( 'uagb/advanced-heading' === name ) {
				attributeObject.headingDescToggle = headingDescToggleDefault;
			}

			const getStore = select( 'core/block-editor' );
			const getAllBlocks = getStore?.getBlocks ? getStore.getBlocks() : null;
			const { blockIds, clientIds } = getAllBlocks ? getUniqId( getAllBlocks ) : { blockIds: [], clientIds: [] };
			if ( 'not_set' === block_id || '0' === block_id || ! block_id || checkDuplicate( blockIds, block_id, clientIds.indexOf( clientId ) ) ) {
				setAttributes( attributeObject );
			}

		}, [ clientId ] );

		return <ChildComponent { ...props } />;
	};

	return WrappedComponent;
};
export default addInitialAttr;
PK�][�~�f{f{Multimate-addons-for-gutenberg/blocks-config/uagb-controls/renderCustomIcon.jsnu�[���function renderCustomIcon( svg ) {
	let customSVG = '';

	switch ( svg ) {
		// Align
		case 'align-center':
			customSVG = (
				<svg id="icon-format_align_center" viewBox="0 0 24 24">
					<path d="M3 3h18v2.016h-18v-2.016zM6.984 6.984h10.031v2.016h-10.031v-2.016zM3 12.984v-1.969h18v1.969h-18zM3 21v-2.016h18v2.016h-18zM6.984 15h10.031v2.016h-10.031v-2.016z"></path>
				</svg>
			);
			break;
		case 'align-left':
			customSVG = (
				<svg id="icon-format_align_left" viewBox="0 0 24 24">
					<path d="M3 3h18v2.016h-18v-2.016zM3 21v-2.016h18v2.016h-18zM3 12.984v-1.969h18v1.969h-18zM15 6.984v2.016h-12v-2.016h12zM15 15v2.016h-12v-2.016h12z"></path>
				</svg>
			);
			break;
		case 'align-right':
			customSVG = (
				<svg id="icon-format_align_right" viewBox="0 0 24 24">
					<path d="M3 3h18v2.016h-18v-2.016zM9 9v-2.016h12v2.016h-12zM3 12.984v-1.969h18v1.969h-18zM9 17.016v-2.016h12v2.016h-12zM3 21v-2.016h18v2.016h-18z"></path>
				</svg>
			);
			break;
		// Flex Row
		case 'flex-row-start':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
					<path d="M5 6L9 6C9.53027 6.00053 10.0387 6.21141 10.4136 6.58637C10.7886 6.96133 10.9995 7.46973 11 8L11 23C10.9995 23.5303 10.7886 24.0387 10.4136 24.4136C10.0387 24.7886 9.53027 24.9995 9 25H5C4.46973 24.9995 3.96133 24.7886 3.58637 24.4136C3.21141 24.0387 3.00053 23.5303 3 23L3 8C3.00053 7.46973 3.21141 6.96133 3.58637 6.58637C3.96133 6.21141 4.46973 6.00053 5 6Z" />
					<path d="M14 6L18 6C18.5303 6.00053 19.0387 6.21141 19.4136 6.58637C19.7886 6.96133 19.9995 7.46973 20 8L20 23C19.9995 23.5303 19.7886 24.0387 19.4136 24.4136C19.0387 24.7886 18.5303 24.9995 18 25H14C13.4697 24.9995 12.9613 24.7886 12.5864 24.4136C12.2114 24.0387 12.0005 23.5303 12 23L12 8C12.0005 7.46973 12.2114 6.96133 12.5864 6.58637C12.9613 6.21141 13.4697 6.00053 14 6Z" />
				</svg>
			);
			break;
		case 'flex-row-end':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path d="M14 6L18 6C18.5303 6.00053 19.0387 6.21141 19.4136 6.58637C19.7886 6.96133 19.9995 7.46973 20 8L20 23C19.9995 23.5303 19.7886 24.0387 19.4136 24.4136C19.0387 24.7886 18.5303 24.9995 18 25H14C13.4697 24.9995 12.9613 24.7886 12.5864 24.4136C12.2114 24.0387 12.0005 23.5303 12 23L12 8C12.0005 7.46973 12.2114 6.96133 12.5864 6.58637C12.9613 6.21141 13.4697 6.00053 14 6Z" />
					<path d="M23 6L27 6C27.5303 6.00053 28.0387 6.21141 28.4136 6.58637C28.7886 6.96133 28.9995 7.46973 29 8L29 23C28.9995 23.5303 28.7886 24.0387 28.4136 24.4136C28.0387 24.7886 27.5303 24.9995 27 25H23C22.4697 24.9995 21.9613 24.7886 21.5864 24.4136C21.2114 24.0387 21.0005 23.5303 21 23L21 8C21.0005 7.46973 21.2114 6.96133 21.5864 6.58637C21.9613 6.21141 22.4697 6.00053 23 6Z" />
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
				</svg>
			);
			break;
		case 'flex-row-center':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
					<path d="M9 6L13 6C13.5303 6.00053 14.0387 6.21141 14.4136 6.58637C14.7886 6.96133 14.9995 7.46973 15 8L15 23C14.9995 23.5303 14.7886 24.0387 14.4136 24.4136C14.0387 24.7886 13.5303 24.9995 13 25H9C8.46973 24.9995 7.96133 24.7886 7.58637 24.4136C7.21141 24.0387 7.00053 23.5303 7 23L7 8C7.00053 7.46973 7.21141 6.96133 7.58637 6.58637C7.96133 6.21141 8.46973 6.00053 9 6Z" />
					<path d="M19 6L23 6C23.5303 6.00053 24.0387 6.21141 24.4136 6.58637C24.7886 6.96133 24.9995 7.46973 25 8L25 23C24.9995 23.5303 24.7886 24.0387 24.4136 24.4136C24.0387 24.7886 23.5303 24.9995 23 25H19C18.4697 24.9995 17.9613 24.7886 17.5864 24.4136C17.2114 24.0387 17.0005 23.5303 17 23L17 8C17.0005 7.46973 17.2114 6.96133 17.5864 6.58637C17.9613 6.21141 18.4697 6.00053 19 6Z" />
				</svg>
			);
			break;
		case 'flex-row-strech':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path d="M19 6L26.9988 6C27.5291 6.00053 28.0375 6.21141 28.4125 6.58637C28.7874 6.96133 28.9983 7.46973 28.9988 8L28.9988 23C28.9983 23.5303 28.7874 24.0387 28.4125 24.4136C28.0375 24.7886 27.5291 24.9995 26.9988 25L19 25C18.4698 24.9995 17.9614 24.7886 17.5864 24.4136C17.2114 24.0387 17.0006 23.5303 17 23L17 8C17.0006 7.46973 17.2114 6.96133 17.5864 6.58637C17.9614 6.21141 18.4698 6.00053 19 6Z" />
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
					<path d="M5.00021 6L12.999 6C13.5293 6.00053 14.0377 6.21141 14.4127 6.58637C14.7876 6.96133 14.9985 7.46973 14.999 8L14.999 23C14.9985 23.5303 14.7876 24.0387 14.4127 24.4136C14.0377 24.7886 13.5293 24.9995 12.999 25L5.00021 25C4.46993 24.9995 3.96153 24.7886 3.58658 24.4136C3.21162 24.0387 3.00073 23.5303 3.00021 23L3.00021 8C3.00074 7.46973 3.21162 6.96133 3.58658 6.58637C3.96153 6.21141 4.46994 6.00053 5.00021 6Z" />
				</svg>
			);
			break;
		case 'flex-row-space-between':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
					<path d="M5 6L9 6C9.53027 6.00053 10.0387 6.21141 10.4136 6.58637C10.7886 6.96133 10.9995 7.46973 11 8L11 23C10.9995 23.5303 10.7886 24.0387 10.4136 24.4136C10.0387 24.7886 9.53027 24.9995 9 25L5 25C4.46973 24.9995 3.96133 24.7886 3.58637 24.4136C3.21141 24.0387 3.00053 23.5303 3 23L3 8C3.00053 7.46973 3.21141 6.96133 3.58637 6.58637C3.96133 6.21141 4.46973 6.00053 5 6Z" />
					<path d="M23 6L27 6C27.5303 6.00053 28.0387 6.21141 28.4136 6.58637C28.7886 6.96133 28.9995 7.46973 29 8L29 23C28.9995 23.5303 28.7886 24.0387 28.4136 24.4136C28.0387 24.7886 27.5303 24.9995 27 25L23 25C22.4697 24.9995 21.9613 24.7886 21.5864 24.4136C21.2114 24.0387 21.0005 23.5303 21 23L21 8C21.0005 7.46973 21.2114 6.96133 21.5864 6.58637C21.9613 6.21141 22.4697 6.00053 23 6Z" />
				</svg>
			);
			break;
		case 'flex-row-space-around':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 0C1.55228 0 2 0.447715 2 1V30.5C2 31.0523 1.55228 31.5 1 31.5C0.447715 31.5 0 31.0523 0 30.5V1C0 0.447715 0.447715 0 1 0Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 0C31.5523 0 32 0.447715 32 1V30.5C32 31.0523 31.5523 31.5 31 31.5C30.4477 31.5 30 31.0523 30 30.5V1C30 0.447715 30.4477 0 31 0Z"
					/>
					<path d="M7 6L11 6C11.5303 6.00053 12.0387 6.21141 12.4136 6.58637C12.7886 6.96133 12.9995 7.46973 13 8L13 23C12.9995 23.5303 12.7886 24.0387 12.4136 24.4136C12.0387 24.7886 11.5303 24.9995 11 25L7 25C6.46973 24.9995 5.96133 24.7886 5.58637 24.4136C5.21141 24.0387 5.00053 23.5303 5 23L5 8C5.00053 7.46973 5.21141 6.96133 5.58637 6.58637C5.96133 6.21141 6.46973 6.00053 7 6Z" />
					<path d="M21 6L25 6C25.5303 6.00053 26.0387 6.21141 26.4136 6.58637C26.7886 6.96133 26.9995 7.46973 27 8L27 23C26.9995 23.5303 26.7886 24.0387 26.4136 24.4136C26.0387 24.7886 25.5303 24.9995 25 25L21 25C20.4697 24.9995 19.9613 24.7886 19.5864 24.4136C19.2114 24.0387 19.0005 23.5303 19 23L19 8C19.0005 7.46973 19.2114 6.96133 19.5864 6.58637C19.9613 6.21141 20.4697 6.00053 21 6Z" />
				</svg>
			);
			break;
		case 'flex-row-space-evenly':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31 31.5C30.4477 31.5 30 31.0523 30 30.5L30 1C30 0.447716 30.4477 -1.35705e-07 31 -8.74228e-08C31.5523 -3.91405e-08 32 0.447716 32 1L32 30.5C32 31.0523 31.5523 31.5 31 31.5Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1 31.5C0.447715 31.5 3.91405e-08 31.0523 8.74228e-08 30.5L2.66639e-06 1C2.71468e-06 0.447716 0.447718 -1.35705e-07 1 -8.74228e-08C1.55229 -3.91405e-08 2 0.447716 2 1L2 30.5C2 31.0523 1.55228 31.5 1 31.5Z"
					/>
					<path d="M12 25.5L8 25.5C7.46973 25.4995 6.96133 25.2886 6.58637 24.9136C6.21141 24.5387 6.00053 24.0303 6 23.5L6 8.5C6.00053 7.96973 6.21141 7.46133 6.58637 7.08637C6.96133 6.71141 7.46973 6.50053 8 6.5L12 6.5C12.5303 6.50053 13.0387 6.71141 13.4136 7.08637C13.7886 7.46133 13.9995 7.96973 14 8.5L14 23.5C13.9995 24.0303 13.7886 24.5387 13.4136 24.9136C13.0387 25.2886 12.5303 25.4995 12 25.5Z" />
					<path d="M24 25.5L20 25.5C19.4697 25.4995 18.9613 25.2886 18.5864 24.9136C18.2114 24.5387 18.0005 24.0303 18 23.5L18 8.5C18.0005 7.96973 18.2114 7.46133 18.5864 7.08637C18.9613 6.71141 19.4697 6.50053 20 6.5L24 6.5C24.5303 6.50053 25.0387 6.71141 25.4136 7.08637C25.7886 7.46133 25.9995 7.96973 26 8.5L26 23.5C25.9995 24.0303 25.7886 24.5387 25.4136 24.9136C25.0387 25.2886 24.5303 25.4995 24 25.5Z" />
				</svg>
			);
			break;
		// Flex Column
		case 'flex-column-start':
			customSVG = (
				<svg width="32" height="33" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"
					/>
					<path d="M25.5 5.75L25.5 9.75C25.4995 10.2803 25.2886 10.7887 24.9136 11.1636C24.5387 11.5386 24.0303 11.7495 23.5 11.75L8.5 11.75C7.96973 11.7495 7.46133 11.5386 7.08637 11.1636C6.71141 10.7887 6.50053 10.2803 6.5 9.75L6.5 5.75C6.50053 5.21973 6.71141 4.71133 7.08637 4.33637C7.46133 3.96141 7.96973 3.75053 8.5 3.75L23.5 3.75C24.0303 3.75053 24.5387 3.96141 24.9136 4.33637C25.2886 4.71133 25.4995 5.21973 25.5 5.75Z" />
					<path d="M25.5 14.75L25.5 18.75C25.4995 19.2803 25.2886 19.7887 24.9136 20.1636C24.5387 20.5386 24.0303 20.7495 23.5 20.75L8.5 20.75C7.96973 20.7495 7.46133 20.5386 7.08637 20.1636C6.71141 19.7887 6.50053 19.2803 6.5 18.75L6.5 14.75C6.50053 14.2197 6.71141 13.7113 7.08637 13.3364C7.46133 12.9614 7.96973 12.7505 8.5 12.75L23.5 12.75C24.0303 12.7505 24.5387 12.9614 24.9136 13.3364C25.2886 13.7113 25.4995 14.2197 25.5 14.75Z" />
				</svg>
			);
			break;
		case 'flex-column-end':
			customSVG = (
				<svg width="32" height="33" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M30.5 2.75C31.0523 2.75 31.5 2.30228 31.5 1.75C31.5 1.19772 31.0523 0.75 30.5 0.75H1C0.447716 0.75 0 1.19771 0 1.75C0 2.30228 0.447716 2.75 1 2.75L30.5 2.75ZM30.5 32.75C31.0523 32.75 31.5 32.3023 31.5 31.75C31.5 31.1977 31.0523 30.75 30.5 30.75L1 30.75C0.447716 30.75 0 31.1977 0 31.75C0 32.3023 0.447716 32.75 1 32.75L30.5 32.75ZM25.5 14.75V18.75C25.4995 19.2803 25.2886 19.7887 24.9136 20.1636C24.5387 20.5386 24.0303 20.7495 23.5 20.75L8.5 20.75C7.96973 20.7495 7.46133 20.5386 7.08637 20.1636C6.71141 19.7887 6.50053 19.2803 6.5 18.75L6.5 14.75C6.50053 14.2197 6.71141 13.7113 7.08637 13.3364C7.46133 12.9614 7.96973 12.7505 8.5 12.75L23.5 12.75C24.0303 12.7505 24.5387 12.9614 24.9136 13.3364C25.2886 13.7113 25.4995 14.2197 25.5 14.75ZM25.5 27.75V23.75C25.4995 23.2197 25.2886 22.7113 24.9136 22.3364C24.5387 21.9614 24.0303 21.7505 23.5 21.75L8.5 21.75C7.96973 21.7505 7.46133 21.9614 7.08637 22.3364C6.71141 22.7113 6.50053 23.2197 6.5 23.75L6.5 27.75C6.50053 28.2803 6.71141 28.7887 7.08637 29.1636C7.46133 29.5386 7.96973 29.7495 8.5 29.75L23.5 29.75C24.0303 29.7495 24.5387 29.5386 24.9136 29.1636C25.2886 28.7887 25.4995 28.2803 25.5 27.75Z"
					/>
				</svg>
			);
			break;
		case 'flex-column-center':
			customSVG = (
				<svg width="32" height="33" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"
					/>
					<path d="M25.5 9.75L25.5 13.75C25.4995 14.2803 25.2886 14.7887 24.9136 15.1636C24.5387 15.5386 24.0303 15.7495 23.5 15.75L8.5 15.75C7.96973 15.7495 7.46133 15.5386 7.08637 15.1636C6.71141 14.7887 6.50053 14.2803 6.5 13.75L6.5 9.75C6.50053 9.21973 6.71141 8.71133 7.08637 8.33637C7.46133 7.96141 7.96973 7.75053 8.5 7.75L23.5 7.75C24.0303 7.75053 24.5387 7.96141 24.9136 8.33637C25.2886 8.71133 25.4995 9.21973 25.5 9.75Z" />
					<path d="M25.5 19.75L25.5 23.75C25.4995 24.2803 25.2886 24.7887 24.9136 25.1636C24.5387 25.5386 24.0303 25.7495 23.5 25.75L8.5 25.75C7.96973 25.7495 7.46133 25.5386 7.08637 25.1636C6.71141 24.7887 6.50053 24.2803 6.5 23.75L6.5 19.75C6.50053 19.2197 6.71141 18.7113 7.08637 18.3364C7.46133 17.9614 7.96973 17.7505 8.5 17.75L23.5 17.75C24.0303 17.7505 24.5387 17.9614 24.9136 18.3364C25.2886 18.7113 25.4995 19.2197 25.5 19.75Z" />
				</svg>
			);
			break;
		case 'flex-column-strech':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M30.5 2C31.0523 2 31.5 1.55228 31.5 1C31.5 0.447715 31.0523 0 30.5 0H1C0.447716 0 0 0.447714 0 0.999999C0 1.55228 0.447716 2 1 2L30.5 2ZM30.5 32C31.0523 32 31.5 31.5523 31.5 31C31.5 30.4477 31.0523 30 30.5 30L1 30C0.447716 30 0 30.4477 0 31C0 31.5523 0.447716 32 1 32L30.5 32ZM25.5 5.00018V12.999C25.4995 13.5293 25.2886 14.0377 24.9136 14.4126C24.5387 14.7876 24.0303 14.9985 23.5 14.999L8.5 14.999C7.96973 14.9985 7.46133 14.7876 7.08637 14.4126C6.71141 14.0377 6.50053 13.5293 6.5 12.999L6.5 5.00017C6.50053 4.4699 6.71141 3.9615 7.08637 3.58654C7.46133 3.21159 7.96973 3.0007 8.5 3.00017L23.5 3.00018C24.0303 3.0007 24.5387 3.21159 24.9136 3.58655C25.2886 3.9615 25.4995 4.4699 25.5 5.00018ZM25.5 18.9999V26.9987C25.4995 27.529 25.2886 28.0374 24.9136 28.4124C24.5387 28.7873 24.0303 28.9982 23.5 28.9987L8.5 28.9987C7.96973 28.9982 7.46133 28.7873 7.08637 28.4124C6.71141 28.0374 6.50053 27.529 6.5 26.9987L6.5 18.9999C6.50053 18.4697 6.71141 17.9613 7.08637 17.5863C7.46133 17.2113 7.96973 17.0005 8.5 16.9999L23.5 16.9999C24.0303 17.0005 24.5387 17.2113 24.9136 17.5863C25.2886 17.9613 25.4995 18.4697 25.5 18.9999Z"
					/>
				</svg>
			);
			break;
		case 'flex-column-space-between':
			customSVG = (
				<svg width="32" height="33" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"
					/>
					<path d="M25.5 5.75L25.5 9.75C25.4995 10.2803 25.2886 10.7887 24.9136 11.1636C24.5387 11.5386 24.0303 11.7495 23.5 11.75L8.5 11.75C7.96973 11.7495 7.46133 11.5386 7.08637 11.1636C6.71141 10.7887 6.50053 10.2803 6.5 9.75L6.5 5.75C6.50053 5.21973 6.71141 4.71133 7.08637 4.33637C7.46133 3.96141 7.96973 3.75053 8.5 3.75L23.5 3.75C24.0303 3.75053 24.5387 3.96141 24.9136 4.33637C25.2886 4.71133 25.4995 5.21973 25.5 5.75Z" />
					<path d="M25.5 23.75L25.5 27.75C25.4995 28.2803 25.2886 28.7887 24.9136 29.1636C24.5387 29.5386 24.0303 29.7495 23.5 29.75L8.5 29.75C7.96973 29.7495 7.46133 29.5386 7.08637 29.1636C6.71141 28.7887 6.50053 28.2803 6.5 27.75L6.5 23.75C6.50053 23.2197 6.71141 22.7113 7.08637 22.3364C7.46133 21.9614 7.96973 21.7505 8.5 21.75L23.5 21.75C24.0303 21.7505 24.5387 21.9614 24.9136 22.3364C25.2886 22.7113 25.4995 23.2197 25.5 23.75Z" />
				</svg>
			);
			break;
		case 'flex-column-space-around':
			customSVG = (
				<svg width="32" height="33" viewBox="0 0 32 33" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 1.75C31.5 2.30228 31.0523 2.75 30.5 2.75L1 2.75C0.447716 2.75 -6.78525e-08 2.30228 -4.37114e-08 1.75C-1.95703e-08 1.19771 0.447716 0.749999 1 0.749999L30.5 0.75C31.0523 0.75 31.5 1.19772 31.5 1.75Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M31.5 31.75C31.5 32.3023 31.0523 32.75 30.5 32.75L1 32.75C0.447716 32.75 -6.78525e-08 32.3023 -4.37114e-08 31.75C-1.95703e-08 31.1977 0.447716 30.75 1 30.75L30.5 30.75C31.0523 30.75 31.5 31.1977 31.5 31.75Z"
					/>
					<path d="M25.5 7.75L25.5 11.75C25.4995 12.2803 25.2886 12.7887 24.9136 13.1636C24.5387 13.5386 24.0303 13.7495 23.5 13.75L8.5 13.75C7.96973 13.7495 7.46133 13.5386 7.08637 13.1636C6.71141 12.7887 6.50053 12.2803 6.5 11.75L6.5 7.75C6.50053 7.21973 6.71141 6.71133 7.08637 6.33637C7.46133 5.96141 7.96973 5.75053 8.5 5.75L23.5 5.75C24.0303 5.75053 24.5387 5.96141 24.9136 6.33637C25.2886 6.71133 25.4995 7.21973 25.5 7.75Z" />
					<path d="M25.5 21.75L25.5 25.75C25.4995 26.2803 25.2886 26.7887 24.9136 27.1636C24.5387 27.5386 24.0303 27.7495 23.5 27.75L8.5 27.75C7.96973 27.7495 7.46133 27.5386 7.08637 27.1636C6.71141 26.7887 6.50053 26.2803 6.5 25.75L6.5 21.75C6.50053 21.2197 6.71141 20.7113 7.08637 20.3364C7.46133 19.9614 7.96973 19.7505 8.5 19.75L23.5 19.75C24.0303 19.7505 24.5387 19.9614 24.9136 20.3364C25.2886 20.7113 25.4995 21.2197 25.5 21.75Z" />
				</svg>
			);
			break;
		case 'flex-column-space-evenly':
			customSVG = (
				<svg width="32" height="32" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1.31134e-07 31C2.03558e-07 30.4477 0.447715 30 1 30L30.5 30C31.0523 30 31.5 30.4477 31.5 31C31.5 31.5523 31.0523 32 30.5 32L1 32C0.447715 32 5.87108e-08 31.5523 1.31134e-07 31Z"
					/>
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1.31134e-07 0.999996C2.03558e-07 0.447711 0.447715 -3.75599e-06 1 -3.68356e-06L30.5 1.84895e-07C31.0523 2.57318e-07 31.5 0.447716 31.5 1C31.5 1.55229 31.0523 2 30.5 2L1 2C0.447715 2 5.87108e-08 1.55228 1.31134e-07 0.999996Z"
					/>
					<path d="M6 24L6 20C6.00053 19.4697 6.21141 18.9613 6.58637 18.5864C6.96133 18.2114 7.46973 18.0005 8 18L23 18C23.5303 18.0005 24.0387 18.2114 24.4136 18.5864C24.7886 18.9613 24.9995 19.4697 25 20L25 24C24.9995 24.5303 24.7886 25.0387 24.4136 25.4136C24.0387 25.7886 23.5303 25.9995 23 26L8 26C7.46973 25.9995 6.96133 25.7886 6.58637 25.4136C6.21141 25.0387 6.00053 24.5303 6 24Z" />
					<path d="M6 12L6 8C6.00053 7.46973 6.21141 6.96132 6.58637 6.58637C6.96133 6.21141 7.46973 6.00053 8 6L23 6C23.5303 6.00053 24.0387 6.21141 24.4136 6.58637C24.7886 6.96133 24.9995 7.46973 25 8L25 12C24.9995 12.5303 24.7886 13.0387 24.4136 13.4136C24.0387 13.7886 23.5303 13.9995 23 14L8 14C7.46973 13.9995 6.96133 13.7886 6.58637 13.4136C6.21141 13.0387 6.00053 12.5303 6 12Z" />
				</svg>
			);
			break;
		// Flex Direction
		case 'flex-direction-row':
			customSVG = (
				<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M2 1.01587C2 0.454822 1.55228 0 1 0C0.447715 0 0 0.454822 0 1.01587V30.9841C0 31.5452 0.447715 32 1 32C1.55228 32 2 31.5452 2 30.9841V1.01587ZM32 1.01587C32 0.454822 31.5523 0 31 0C30.4477 0 30 0.454822 30 1.01587V30.9841C30 31.5452 30.4477 32 31 32C31.5523 32 32 31.5452 32 30.9841V1.01587ZM23.0355 5.29289L26.6213 8.87864C27.0118 9.26916 27.0118 9.90233 26.6213 10.2929L23.0355 13.8786C22.645 14.2691 22.0118 14.2691 21.6213 13.8786C21.2308 13.4881 21.2308 12.8549 21.6213 12.4644L23.5 10.5857H6C5.44772 10.5857 5 10.138 5 9.58574C5 9.03346 5.44772 8.58574 6 8.58574H23.5L21.6213 6.70711C21.2308 6.31658 21.2308 5.68342 21.6213 5.29289C22.0118 4.90237 22.645 4.90237 23.0355 5.29289ZM26.6213 21.5L23.0355 17.9143C22.645 17.5238 22.0118 17.5238 21.6213 17.9143C21.2308 18.3048 21.2308 18.938 21.6213 19.3285L23.5 21.2071H6C5.44771 21.2071 5 21.6548 5 22.2071C5 22.7594 5.44771 23.2071 6 23.2071H23.5L21.6213 25.0858C21.2308 25.4763 21.2308 26.1095 21.6213 26.5C22.0118 26.8905 22.645 26.8905 23.0355 26.5L26.6213 22.9142C27.0118 22.5237 27.0118 21.8905 26.6213 21.5Z"
					/>
				</svg>
			);
			break;
		case 'flex-direction-column':
			customSVG = (
				<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M30.9841 2C31.5452 2 32 1.55228 32 1C32 0.447715 31.5452 -1.98809e-08 30.9841 -4.44052e-08L1.01587 -1.35436e-06C0.454821 -1.37888e-06 -1.95703e-08 0.447714 -4.37114e-08 0.999999C-6.78525e-08 1.55228 0.454821 2 1.01587 2L30.9841 2ZM30.9841 32C31.5452 32 32 31.5523 32 31C32 30.4477 31.5452 30 30.9841 30L1.01587 30C0.454819 30 -1.33091e-06 30.4477 -1.35505e-06 31C-1.37919e-06 31.5523 0.454819 32 1.01587 32L30.9841 32ZM26.7071 23.0355L23.1214 26.6213C22.7308 27.0118 22.0977 27.0118 21.7071 26.6213L18.1214 23.0355C17.7309 22.645 17.7309 22.0118 18.1214 21.6213C18.5119 21.2308 19.1451 21.2308 19.5356 21.6213L21.4143 23.5L21.4143 6C21.4143 5.44771 21.862 5 22.4143 5C22.9665 5 23.4143 5.44771 23.4143 6L23.4143 23.5L25.2929 21.6213C25.6834 21.2308 26.3166 21.2308 26.7071 21.6213C27.0976 22.0118 27.0976 22.645 26.7071 23.0355ZM10.5 26.6213L14.0857 23.0355C14.4762 22.645 14.4762 22.0118 14.0857 21.6213C13.6952 21.2308 13.062 21.2308 12.6715 21.6213L10.7929 23.5L10.7929 6C10.7929 5.44771 10.3452 5 9.79287 5C9.24059 5 8.79287 5.44771 8.79287 6L8.79287 23.5L6.91422 21.6213C6.52369 21.2308 5.89053 21.2308 5.5 21.6213C5.10948 22.0118 5.10948 22.645 5.5 23.0355L9.08576 26.6213C9.47629 27.0118 10.1095 27.0118 10.5 26.6213Z"
					/>
				</svg>
			);
			break;
		case 'flex-direction-row-reverse':
			customSVG = (
				<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M30 30.9841C30 31.5452 30.4477 32 31 32C31.5523 32 32 31.5452 32 30.9841L32 1.01587C32 0.454821 31.5523 -3.91405e-08 31 -8.74228e-08C30.4477 -1.35705e-07 30 0.45482 30 1.01587L30 30.9841ZM8.88104e-08 30.9841C3.97618e-08 31.5452 0.447716 32 1 32C1.55228 32 2 31.5452 2 30.9841L2 1.01587C2 0.454818 1.55229 -2.66182e-06 1 -2.71011e-06C0.447719 -2.75839e-06 2.75777e-06 0.454818 2.70872e-06 1.01587L8.88104e-08 30.9841ZM8.96449 26.7071L5.37868 23.1214C4.98816 22.7308 4.98816 22.0977 5.37868 21.7071L8.96449 18.1214C9.35501 17.7309 9.98818 17.7309 10.3787 18.1214C10.7692 18.5119 10.7692 19.1451 10.3787 19.5356L8.5 21.4143L26 21.4143C26.5523 21.4143 27 21.862 27 22.4143C27 22.9665 26.5523 23.4143 26 23.4143L8.5 23.4143L10.3787 25.2929C10.7692 25.6834 10.7692 26.3166 10.3787 26.7071C9.98818 27.0976 9.35501 27.0976 8.96449 26.7071ZM5.37868 10.5L8.96449 14.0857C9.35502 14.4762 9.98818 14.4762 10.3787 14.0857C10.7692 13.6952 10.7692 13.062 10.3787 12.6715L8.5 10.7929L26 10.7929C26.5523 10.7929 27 10.3452 27 9.79287C27 9.24059 26.5523 8.79287 26 8.79287L8.5 8.79287L10.3787 6.91422C10.7692 6.52369 10.7692 5.89053 10.3787 5.5C9.98818 5.10948 9.35502 5.10948 8.96449 5.5L5.37868 9.08576C4.98816 9.47629 4.98816 10.1095 5.37868 10.5Z"
					/>
				</svg>
			);
			break;
		case 'flex-direction-column-reverse':
			customSVG = (
				<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
					<path
						fillRule="evenodd"
						clipRule="evenodd"
						d="M1.01587 30C0.454822 30 -6.78525e-08 30.4477 -4.37113e-08 31C-1.95702e-08 31.5523 0.454822 32 1.01587 32L30.9841 32C31.5452 32 32 31.5523 32 31C32 30.4477 31.5452 30 30.9841 30L1.01587 30ZM1.01587 -4.44052e-08C0.45482 -1.98809e-08 -1.37919e-06 0.447716 -1.35505e-06 1C-1.33091e-06 1.55228 0.454821 2 1.01587 2L30.9841 2C31.5452 2 32 1.55228 32 0.999999C32 0.447714 31.5452 -1.37888e-06 30.9841 -1.35436e-06L1.01587 -4.44052e-08ZM5.29289 8.96449L8.87863 5.37868C9.26916 4.98815 9.90233 4.98815 10.2928 5.37868L13.8786 8.96449C14.2691 9.35501 14.2691 9.98818 13.8786 10.3787C13.4881 10.7692 12.8549 10.7692 12.4644 10.3787L10.5857 8.5L10.5857 26C10.5857 26.5523 10.138 27 9.58574 27C9.03346 27 8.58574 26.5523 8.58574 26L8.58574 8.5L6.70711 10.3787C6.31658 10.7692 5.68342 10.7692 5.29289 10.3787C4.90237 9.98818 4.90237 9.35501 5.29289 8.96449ZM21.5 5.37868L17.9143 8.96449C17.5238 9.35501 17.5238 9.98818 17.9143 10.3787C18.3048 10.7692 18.938 10.7692 19.3285 10.3787L21.2071 8.5L21.2071 26C21.2071 26.5523 21.6548 27 22.2071 27C22.7594 27 23.2071 26.5523 23.2071 26L23.2071 8.5L25.0858 10.3787C25.4763 10.7692 26.1095 10.7692 26.5 10.3787C26.8905 9.98818 26.8905 9.35501 26.5 8.96449L22.9142 5.37868C22.5237 4.98815 21.8905 4.98815 21.5 5.37868Z"
					/>
				</svg>
			);
			break;
		// Flex Wrap
		case 'flex-wrap':
			customSVG = (
				<svg viewBox="0 0 33 32" xmlns="http://www.w3.org/2000/svg">
					<path d="M1.33984 0C1.89213 0 2.33984 0.447715 2.33984 1V30.5C2.33984 31.0523 1.89213 31.5 1.33984 31.5C0.787559 31.5 0.339844 31.0523 0.339844 30.5V1C0.339844 0.447715 0.787559 0 1.33984 0Z" />
					<path d="M31.3398 0C31.8921 0 32.3398 0.447715 32.3398 1V30.5C32.3398 31.0523 31.8921 31.5 31.3398 31.5C30.7876 31.5 30.3398 31.0523 30.3398 30.5V1C30.3398 0.447715 30.7876 0 31.3398 0Z" />
					<path d="M27.3398 5C27.8921 5 28.3398 5.44772 28.3398 6V22C28.3398 22.0022 28.3398 22.0043 28.3398 22.0065C28.3363 22.5558 27.89 23 27.3398 23L10.8398 23L12.7185 24.8786C13.1091 25.2692 13.1091 25.9023 12.7185 26.2929C12.328 26.6834 11.6949 26.6834 11.3043 26.2929L7.71852 22.7071C7.328 22.3166 7.328 21.6834 7.71852 21.2929L11.3043 17.7071C11.6949 17.3166 12.328 17.3166 12.7185 17.7071C13.1091 18.0977 13.1091 18.7308 12.7185 19.1213L10.8398 21L26.3398 21V7L5.33984 7C4.78756 7 4.33984 6.55228 4.33984 6C4.33984 5.44771 4.78756 5 5.33984 5H27.3398Z" />
				</svg>
			);
			break;
		case 'flex-no-wrap':
			customSVG = (
				<svg viewBox="0 0 33 32" xmlns="http://www.w3.org/2000/svg">
					<path d="M1.33984 0C1.89213 0 2.33984 0.447715 2.33984 1V30.5C2.33984 31.0523 1.89213 31.5 1.33984 31.5C0.787559 31.5 0.339844 31.0523 0.339844 30.5V1C0.339844 0.447715 0.787559 0 1.33984 0Z" />
					<path d="M31.3398 0C31.8921 0 32.3398 0.447715 32.3398 1V30.5C32.3398 31.0523 31.8921 31.5 31.3398 31.5C30.7876 31.5 30.3398 31.0523 30.3398 30.5V1C30.3398 0.447715 30.7876 0 31.3398 0Z" />
					<path d="M24.3754 11.2929L27.9612 14.8786C28.3517 15.2692 28.3517 15.9023 27.9612 16.2929L24.3754 19.8786C23.9848 20.2691 23.3517 20.2691 22.9611 19.8786C22.5706 19.4881 22.5706 18.8549 22.9611 18.4644L24.8398 16.5857L5.33984 16.5857C4.78756 16.5857 4.33984 16.138 4.33984 15.5857C4.33984 15.0334 4.78756 14.5857 5.33984 14.5857L24.8398 14.5857L22.9611 12.7071C22.5706 12.3166 22.5706 11.6834 22.9611 11.2929C23.3517 10.9024 23.9848 10.9024 24.3754 11.2929Z" />
				</svg>
			);
			break;
		case 'flex-wrap-reverse':
			customSVG = (
				<svg viewBox="0 0 33 32" xmlns="http://www.w3.org/2000/svg">
					<path d="M1.33984 32C1.89213 32 2.33984 31.5452 2.33984 30.9841V1.01587C2.33984 0.454821 1.89213 0 1.33984 0C0.787559 0 0.339844 0.454821 0.339844 1.01587V30.9841C0.339844 31.5452 0.787559 32 1.33984 32Z" />
					<path d="M31.3398 32C31.8921 32 32.3398 31.5452 32.3398 30.9841V1.01587C32.3398 0.454821 31.8921 0 31.3398 0C30.7876 0 30.3398 0.454821 30.3398 1.01587V30.9841C30.3398 31.5452 30.7876 32 31.3398 32Z" />
					<path d="M27.3398 26.5C27.8921 26.5 28.3398 26.0523 28.3398 25.5V9.5C28.3398 9.49784 28.3398 9.49569 28.3398 9.49353C28.3363 8.94422 27.89 8.5 27.3398 8.5L10.8398 8.5L12.7185 6.62136C13.1091 6.23084 13.1091 5.59767 12.7185 5.20715C12.328 4.81663 11.6949 4.81663 11.3043 5.20715L7.71852 8.79289C7.328 9.18342 7.328 9.81658 7.71852 10.2071L11.3043 13.7929C11.6949 14.1834 12.328 14.1834 12.7185 13.7929C13.1091 13.4023 13.1091 12.7692 12.7185 12.3787L10.8398 10.5L26.3398 10.5V24.5H5.33984C4.78756 24.5 4.33984 24.9477 4.33984 25.5C4.33984 26.0523 4.78756 26.5 5.33984 26.5H27.3398Z" />
				</svg>
			);
			break;
		case 'start-order':
			customSVG = (
				<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path d="M3 3V21M21 12H7M7 12L14 19M7 12L14 5" stroke="#1E1E1E" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
                </svg>
			);
			break;
		case 'end-order':
			customSVG = (
				<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                    <path d="M21 21V3M3 12H17M17 12L10 5M17 12L10 19" stroke="#1E1E1E" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
                </svg>
			);
			break;
		case 'custom-order':
			customSVG = (
				<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<path d="M12 5L12 5.01M12 12L12 12.01M12 19L12 19.01M12 6C11.4477 6 11 5.55228 11 5C11 4.44772 11.4477 4 12 4C12.5523 4 13 4.44772 13 5C13 5.55228 12.5523 6 12 6ZM12 13C11.4477 13 11 12.5523 11 12C11 11.4477 11.4477 11 12 11C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13ZM12 20C11.4477 20 11 19.5523 11 19C11 18.4477 11.4477 18 12 18C12.5523 18 13 18.4477 13 19C13 19.5523 12.5523 20 12 20Z" stroke="#111827" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
                </svg>
			);
			break;
	}

	return customSVG;
}

export default renderCustomIcon;
PK�][Ȥ
i&?&?Hultimate-addons-for-gutenberg/blocks-config/uagb-controls/block-icons.jsnu�[���/**
 * Block Icons
 */

import { createElement as el } from '@wordpress/element';

// This is the color that will be visible on the drag and drop of the blocks. Use this as the primary fill / stroke color.
const iconColor = '#fff';
// This is the color used for non-block icons.
const spectraDarkColor = '#1d2327';

// Negative Space Color needs to be implemented for the property that doesn't use iconColor.
const noColor = 'none';

const UAGB_Block_Icons = {
	// ------------------------.
	// All Spectra Block Icons .
	// ------------------------.

	logo: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 85 85', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M41.7849 0C33.5206 0 25.4419 2.49258 18.5705 7.16254C11.699 11.8325 6.34331 18.4701 3.18071 26.236C0.0181112 34.0018 -0.809377 42.5471 0.802901 50.7913C2.41518 59.0355 6.3948 66.6083 12.2385 72.552C18.0822 78.4958 25.5276 82.5435 33.633 84.1834C41.7385 85.8232 50.1401 84.9816 57.7753 81.7649C65.4105 78.5482 71.9363 73.1008 76.5277 66.1117C81.1191 59.1226 83.5697 50.9057 83.5697 42.5C83.565 31.2298 79.1612 20.4225 71.326 12.4533C63.4908 4.48402 52.8655 0.0048112 41.7849 0ZM57.5278 49.0175C57.5278 49.1264 57.5278 49.2354 57.5278 49.3443V49.6529V49.8526C57.3161 51.0856 56.8673 52.2639 56.207 53.3201L55.8143 53.8829L55.2431 54.5546C55.0482 54.8082 54.8268 55.0396 54.5827 55.2445V55.3353L54.4578 55.4261L54.2079 55.6258C54.1249 55.7007 54.0353 55.7675 53.9402 55.8255L53.6724 56.0071L34.3061 69.0602C34.1479 69.1683 33.9612 69.2253 33.7706 69.2236H33.5743C33.447 69.1967 33.3262 69.1443 33.2189 69.0695C33.1117 68.9947 33.0201 68.899 32.9495 68.7879C32.9495 68.7879 32.5033 67.9891 32.4676 67.9347V67.7531V67.6623V67.5534V67.4263V67.2811C31.7014 65.262 31.6378 63.0371 32.2872 60.9761C32.9366 58.9152 34.2601 57.1424 36.0375 55.9526L45.0691 49.8708C45.2101 49.7754 45.3201 49.6398 45.3853 49.4809C45.4505 49.322 45.4679 49.147 45.4355 48.9781C45.403 48.8091 45.3221 48.6537 45.2029 48.5315C45.0837 48.4093 44.9316 48.3257 44.7657 48.2913L34.1633 46.1128H33.8599H33.7706H33.485H33.1816H33.0567H32.896H32.8068L32.5212 46.0038H32.4319H32.2534L31.9679 45.8586L31.6823 45.7134L31.4145 45.55L31.1468 45.3866C30.3041 44.8521 29.5509 44.1841 28.9156 43.4077L28.6836 43.0809L28.4159 42.6634C27.73 41.6278 27.255 40.4629 27.0189 39.2375C26.7828 38.012 26.7905 36.751 27.0415 35.5286C27.228 34.6884 27.5221 33.8766 27.9161 33.1141C28.0232 32.9144 28.1124 32.7328 28.2195 32.5694L28.3802 32.3153C28.4948 32.1207 28.6199 31.9329 28.755 31.7525L28.9156 31.5528L29.112 31.3167L29.3083 31.0989L29.4333 30.9718L29.6475 30.754L29.8259 30.5906L30.0223 30.4272L30.2365 30.2456H30.3257L30.4685 30.1185H30.5578L30.7898 29.9551L50.049 16.9746C50.1725 16.8912 50.3113 16.8338 50.457 16.806C50.6027 16.7782 50.7524 16.7804 50.8973 16.8126C51.0421 16.8448 51.1791 16.9062 51.3002 16.9933C51.4212 17.0804 51.5238 17.1913 51.6019 17.3195L51.7626 17.5918L51.8875 17.846C51.8875 17.9368 51.9768 18.0094 52.0125 18.082C52.0125 18.082 52.0125 18.082 52.0125 18.191C52.0239 18.2325 52.0239 18.2765 52.0125 18.318L52.1195 18.5904C52.1292 18.6383 52.1292 18.6877 52.1195 18.7356C52.1195 18.7356 52.1195 18.7356 52.1195 18.8445C52.8288 20.8305 52.8625 23.0011 52.2153 25.0089C51.5681 27.0166 50.2774 28.7455 48.5497 29.9188L39.6251 35.9462C39.4842 36.0415 39.3742 36.1772 39.309 36.3361C39.2438 36.495 39.2263 36.6699 39.2588 36.8389C39.2912 37.0078 39.3722 37.1632 39.4914 37.2854C39.6106 37.4077 39.7627 37.4912 39.9286 37.5256L50.4417 39.686C52.5458 40.1281 54.4361 41.2935 55.7948 42.9862C57.1536 44.679 57.8979 46.796 57.9027 48.9812C57.5635 48.4003 57.5278 48.9812 57.5278 48.9812V49.0175Z',
			fill: 'url(#paint0_linear_619_170)',
		} )
	),
	section: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M21 15V19C21 20.1046 20.1046 21 19 21H5C3.89543 21 3 20.1046 3 19L3 15M21 15L3 15M21 15V9M3 15L3 9M21 9V5C21 3.89543 20.1046 3 19 3L5 3C3.89543 3 3 3.89543 3 5L3 9M21 9L3 9',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	buttons: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 17.5H17M7 6.5H17M5 10H19C20.1046 10 21 9.10457 21 8V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V8C3 9.10457 3.89543 10 5 10ZM5 21H19C20.1046 21 21 20.1046 21 19V16C21 14.8954 20.1046 14 19 14H5C3.89543 14 3 14.8954 3 16V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	buttons_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 11.5H17M5 15H19C20.1046 15 21 14.1046 21 13V10C21 8.89543 20.1046 8 19 8H5C3.89543 8 3 8.89543 3 10V13C3 14.1046 3.89543 15 5 15Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	advanced_heading: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M8 7V12.8333M8 12.8333V17M8 12.8333H16M16 12.8333V7M16 12.8333V17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	google_map: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M9 3.00002L4.10557 5.44723C3.428 5.78601 3 6.47854 3 7.23608V20.382C3 21.1254 3.78231 21.6089 4.44721 21.2764L9 19M9 3.00002L15 5.00002M9 3.00002V19M9 19L15 21M15 5.00002L19.5528 2.72362C20.2177 2.39117 21 2.87467 21 3.61805V16.7639C21 17.5215 20.572 18.214 19.8944 18.5528L15 21M15 5.00002V21',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	info_box: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 13H17M7 16.5H15.3333M9 8C9 8.55228 8.55228 9 8 9C7.44772 9 7 8.55228 7 8C7 7.44772 7.44772 7 8 7C8.55228 7 9 7.44772 9 8ZM5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	post_carousel: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M0 17C1.10457 17 2 16.1046 2 15V8C2 6.89543 1.10457 6 0 6M24 17C22.8954 17 22 16.1046 22 15V8C22 6.89543 22.8954 6 24 6M7 17H17C18.1046 17 19 16.1046 19 15V8C19 6.89543 18.1046 6 17 6H7C5.89543 6 5 6.89543 5 8V15C5 16.1046 5.89543 17 7 17Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d: 'M8 11H12.5M8 14H16',
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	post_masonry: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 14C3 12.8954 3.89543 12 5 12H8C9.10457 12 10 12.8954 10 14V21C10 22.1046 9.10457 23 8 23H5C3.89543 23 3 22.1046 3 21V14Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M14 3C14 1.89543 14.8954 1 16 1H19C20.1046 1 21 1.89543 21 3V10C21 11.1046 20.1046 12 19 12H16C14.8954 12 14 11.1046 14 10V3Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M14 18C14 16.8954 14.8954 16 16 16H19C20.1046 16 21 16.8954 21 18V21C21 22.1046 20.1046 23 19 23H16C14.8954 23 14 22.1046 14 21V18Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M3 3C3 1.89543 3.89543 1 5 1H8C9.10457 1 10 1.89543 10 3V6C10 7.10457 9.10457 8 8 8H5C3.89543 8 3 7.10457 3 6V3Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	post_grid: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 16C3 14.8954 3.89543 14 5 14H8C9.10457 14 10 14.8954 10 16V19C10 20.1046 9.10457 21 8 21H5C3.89543 21 3 20.1046 3 19V16Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M14 16C14 14.8954 14.8954 14 16 14H19C20.1046 14 21 14.8954 21 16V19C21 20.1046 20.1046 21 19 21H16C14.8954 21 14 20.1046 14 19V16Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M3 5C3 3.89543 3.89543 3 5 3H8C9.10457 3 10 3.89543 10 5V8C10 9.10457 9.10457 10 8 10H5C3.89543 10 3 9.10457 3 8V5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M14 5C14 3.89543 14.8954 3 16 3H19C20.1046 3 21 3.89543 21 5V8C21 9.10457 20.1046 10 19 10H16C14.8954 10 14 9.10457 14 8V5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	testimonial: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M15.5 9.42857C15.5 10.2175 14.903 10.8571 14.1667 10.8571C13.4303 10.8571 12.8333 10.2175 12.8333 9.42857C12.8333 8.63959 13.4303 8 14.1667 8C14.903 8 15.5 8.63959 15.5 9.42857ZM15.5 9.42857C15.5 9.42857 15.5 11.5714 13.5 13M11.1667 9.42857C11.1667 10.2175 10.5697 10.8571 9.83333 10.8571C9.09695 10.8571 8.5 10.2175 8.5 9.42857C8.5 8.63959 9.09695 8 9.83333 8C10.5697 8 11.1667 8.63959 11.1667 9.42857ZM11.1667 9.42857C11.1667 9.42857 11.1667 11.5714 9.16667 13M12 21L14.4142 18.5858C14.7893 18.2107 15.298 18 15.8284 18H19C20.1046 18 21 17.1046 21 16V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V16C3 17.1046 3.89543 18 5 18H8.17157C8.70201 18 9.21071 18.2107 9.58579 18.5858L12 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	cf7_styler: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M4.51555 17C6.13007 19.412 8.87958 21 12 21C15.1204 21 17.8699 19.412 19.4845 17M4.51555 17C3.55827 15.5699 3 13.8501 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 13.8501 20.4417 15.5699 19.4845 17M4.51555 17C5.75777 17 7.12889 15 8.43944 13M19.4845 17C18.2422 17 16.8711 15 15.5606 13M8.43944 13C9.75 11 11 9 12 9C13 9 14.25 11 15.5606 13M8.43944 13L9.09522 14.2607C9.47211 14.9852 10.5116 14.9769 10.8768 14.2464L11.3795 13.241C11.6848 12.6305 12.4984 12.4984 12.9811 12.9811L13.4309 13.4309C13.7632 13.7632 14.282 13.8193 14.6776 13.5658L15.5606 13',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	gf_styler: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M17 12V15H7L6.99998 12.9996C6.99998 10.7905 8.79083 9.00001 10.9999 9.00001H17.5M3.33984 8.71466V15.2854C3.33984 16.0317 3.75541 16.7159 4.41768 17.0601L11.0779 20.5208C11.656 20.8212 12.3442 20.8212 12.9223 20.5208L19.5825 17.0601C20.2448 16.7159 20.6604 16.0317 20.6604 15.2854V8.71466C20.6604 7.96832 20.2448 7.28407 19.5825 6.93995L12.9223 3.47918C12.3442 3.1788 11.656 3.1788 11.0779 3.47918L4.41768 6.93995C3.75541 7.28407 3.33984 7.96832 3.33984 8.71466Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	content_timeline: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12.0001 3V7M12.0001 21V17M12.0001 7H15.0001M12.0001 7V12M15.0001 7C15.0001 8.10457 15.8954 9 17 9H19C20.1046 9 21 8.10457 21 7C21 5.89543 20.1046 5 19 5H17C15.8954 5 15.0001 5.89543 15.0001 7ZM12.0001 12H9M12.0001 12V17M9 12C9 13.1046 8.10457 14 7 14H5C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10H7C8.10457 10 9 10.8954 9 12ZM12.0001 17H15.0001M15.0001 17C15.0001 18.1046 15.8954 19 17 19H19C20.1046 19 21 18.1046 21 17C21 15.8954 20.1046 15 19 15H17C15.8954 15 15.0001 15.8954 15.0001 17Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	content_timeline_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M5.99993 3V7V12M5.99993 21V17V12M5.99993 12H9M9 12C9 13.1046 9.89543 14 11 14H16C17.1046 14 18 13.1046 18 12C18 10.8954 17.1046 10 16 10H11C9.89543 10 9 10.8954 9 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	call_to_action: el(
		'svg',
		{ width: 40, height: 40, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M16.4545 16.4545L14.6364 21L11 11L21 14.6364L16.4545 16.4545ZM16.4545 16.4545L21 21M9 16.9291C5.60771 16.4439 3 13.5265 3 10C3 6.13401 6.13401 3 10 3C13.5265 3 16.4439 5.60771 16.9291 9M8.5 12.5987C7.6033 12.0799 7 11.1104 7 10C7 8.34315 8.34315 7 10 7C11.1104 7 12.0799 7.6033 12.5987 8.5',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	post_timeline: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M4 3V6M4 6C2.89543 6 2 6.89543 2 8C2 9.10457 2.89543 10 4 10M4 6C5.10457 6 6 6.89543 6 8C6 9.10457 5.10457 10 4 10M4 10V14M4 14C2.89543 14 2 14.8954 2 16C2 17.1046 2.89543 18 4 18M4 14C5.10457 14 6 14.8954 6 16C6 17.1046 5.10457 18 4 18M4 18V21M11 18H19C20.1046 18 21 17.1046 21 16C21 14.8954 20.1046 14 19 14H11C9.89543 14 9 14.8954 9 16C9 17.1046 9.89543 18 11 18ZM11 10H19C20.1046 10 21 9.10457 21 8C21 6.89543 20.1046 6 19 6H11C9.89543 6 9 6.89543 9 8C9 9.10457 9.89543 10 11 10Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	icon_list: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M11 5H21M11 12H21M11 19H21',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M7 5C7 6.10457 6.10457 7 5 7C3.89543 7 3 6.10457 3 5C3 3.89543 3.89543 3 5 3C6.10457 3 7 3.89543 7 5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M7 12C7 13.1046 6.10457 14 5 14C3.89543 14 3 13.1046 3 12C3 10.8954 3.89543 10 5 10C6.10457 10 7 10.8954 7 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M7 19C7 20.1046 6.10457 21 5 21C3.89543 21 3 20.1046 3 19C3 17.8954 3.89543 17 5 17C6.10457 17 7 17.8954 7 19Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	icon_list_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M11 5H21M13 11H21M13 16H21M13 20.5H21M7 5C7 6.10457 6.10457 7 5 7C3.89543 7 3 6.10457 3 5C3 3.89543 3.89543 3 5 3C6.10457 3 7 3.89543 7 5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M9 11C9 11.5523 8.55228 12 8 12C7.44772 12 7 11.5523 7 11C7 10.4477 7.44772 10 8 10C8.55228 10 9 10.4477 9 11Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M9 16C9 16.5523 8.55228 17 8 17C7.44772 17 7 16.5523 7 16C7 15.4477 7.44772 15 8 15C8.55228 15 9 15.4477 9 16Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M9 20.5C9 21.0523 8.55228 21.5 8 21.5C7.44772 21.5 7 21.0523 7 20.5C7 19.9477 7.44772 19.5 8 19.5C8.55228 19.5 9 19.9477 9 20.5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	team: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M17 20H22V18C22 16.3431 20.6569 15 19 15C18.0444 15 17.1931 15.4468 16.6438 16.1429M17 20H7M17 20V18C17 17.3438 16.8736 16.717 16.6438 16.1429M7 20H2V18C2 16.3431 3.34315 15 5 15C5.95561 15 6.80686 15.4468 7.35625 16.1429M7 20V18C7 17.3438 7.12642 16.717 7.35625 16.1429M7.35625 16.1429C8.0935 14.301 9.89482 13 12 13C14.1052 13 15.9065 14.301 16.6438 16.1429M15 7C15 8.65685 13.6569 10 12 10C10.3431 10 9 8.65685 9 7C9 5.34315 10.3431 4 12 4C13.6569 4 15 5.34315 15 7ZM21 10C21 11.1046 20.1046 12 19 12C17.8954 12 17 11.1046 17 10C17 8.89543 17.8954 8 19 8C20.1046 8 21 8.89543 21 10ZM7 10C7 11.1046 6.10457 12 5 12C3.89543 12 3 11.1046 3 10C3 8.89543 3.89543 8 5 8C6.10457 8 7 8.89543 7 10Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	tabs: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M10 3V6C10 7.10457 10.8954 8 12 8H15.5M15.5 8H21M15.5 8V3M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	tabs_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12 3V8C12 9.10457 12.8954 10 14 10H16.5H21M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	social_share: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M9 12C9 13.1046 8.10457 14 7 14C5.89543 14 5 13.1046 5 12C5 10.8954 5.89543 10 7 10C8.10457 10 9 10.8954 9 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M19 6C19 7.10457 18.1046 8 17 8C15.8954 8 15 7.10457 15 6C15 4.89543 15.8954 4 17 4C18.1046 4 19 4.89543 19 6Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M19 18C19 19.1046 18.1046 20 17 20C15.8954 20 15 19.1046 15 18C15 16.8954 15.8954 16 17 16C18.1046 16 19 16.8954 19 18Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d: 'M9 10.5L15 7M9 13.5L15 17',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	social_share_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M9 10.5L15 7M9 13.5L15 17M21 18C21 19.6569 19.6569 21 18 21C16.3431 21 15 19.6569 15 18C15 16.3431 16.3431 15 18 15C19.6569 15 21 16.3431 21 18ZM9 12C9 13.1046 8.10457 14 7 14C5.89543 14 5 13.1046 5 12C5 10.8954 5.89543 10 7 10C8.10457 10 9 10.8954 9 12ZM19 6C19 7.10457 18.1046 8 17 8C15.8954 8 15 7.10457 15 6C15 4.89543 15.8954 4 17 4C18.1046 4 19 4.89543 19 6Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	restaurant_menu: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M17.7472 5.05554C17.5824 4.84998 17.3481 4.68976 17.074 4.59515C16.8912 4.53203 16.696 4.5 16.5 4.5M16.5 4.5C16.4022 4.5 16.3042 4.50797 16.2074 4.52402C15.9164 4.57225 15.6491 4.6913 15.4393 4.86612C15.2296 5.04093 15.0867 5.26366 15.0288 5.50614C14.9709 5.74861 15.0006 5.99995 15.1142 6.22835C15.2277 6.45676 15.42 6.65199 15.6666 6.78934C15.9133 6.92669 16.2033 7 16.5 7C16.7967 7 17.0867 7.07331 17.3334 7.21066C17.58 7.34802 17.7723 7.54324 17.8858 7.77165C17.9994 8.00005 18.0291 8.25139 17.9712 8.49386C17.9133 8.73634 17.7704 8.95907 17.5607 9.13388C17.3509 9.3087 17.0836 9.42775 16.7926 9.47598C16.6958 9.49203 16.5978 9.5 16.5 9.5M16.5 4.5V4M15.2528 8.94446C15.4176 9.15003 15.6519 9.31024 15.926 9.40485C16.1088 9.46797 16.304 9.5 16.5 9.5M16.5 9.5V10',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M17.7472 15.0555C17.5824 14.85 17.3481 14.6898 17.074 14.5952C16.8912 14.532 16.696 14.5 16.5 14.5M16.5 14.5C16.4022 14.5 16.3042 14.508 16.2074 14.524C15.9164 14.5723 15.6491 14.6913 15.4393 14.8661C15.2296 15.0409 15.0867 15.2637 15.0288 15.5061C14.9709 15.7486 15.0006 15.9999 15.1142 16.2284C15.2277 16.4568 15.42 16.652 15.6666 16.7893C15.9133 16.9267 16.2033 17 16.5 17C16.7967 17 17.0867 17.0733 17.3334 17.2107C17.58 17.348 17.7723 17.5432 17.8858 17.7716C17.9994 18.0001 18.0291 18.2514 17.9712 18.4939C17.9133 18.7363 17.7704 18.9591 17.5607 19.1339C17.3509 19.3087 17.0836 19.4278 16.7926 19.476C16.6958 19.492 16.5978 19.5 16.5 19.5M16.5 14.5V14M15.2528 18.9445C15.4176 19.15 15.6519 19.3102 15.926 19.4049C16.1088 19.468 16.304 19.5 16.5 19.5M16.5 19.5V20',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M6 5H12M6 15H12M6 8H9M6 18H9',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M3 3C3 1.89543 3.89543 1 5 1H19C20.1046 1 21 1.89543 21 3V21C21 22.1046 20.1046 23 19 23H5C3.89543 23 3 22.1046 3 21V3Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	restaurant_menu_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M20.6208 8.58331C20.3736 8.27496 20.0222 8.03464 19.611 7.89273C19.3367 7.79804 19.0441 7.75 18.75 7.75M18.75 7.75C18.6033 7.75 18.4563 7.76195 18.311 7.78603C17.8746 7.85838 17.4737 8.03695 17.159 8.29918C16.8443 8.5614 16.6301 8.89549 16.5432 9.25921C16.4564 9.62292 16.501 9.99992 16.6713 10.3425C16.8416 10.6851 17.13 10.978 17.5 11.184C17.87 11.39 18.305 11.5 18.75 11.5C19.195 11.5 19.63 11.61 20 11.816C20.37 12.022 20.6584 12.3149 20.8287 12.6575C20.999 13.0001 21.0436 13.3771 20.9568 13.7408C20.8699 14.1045 20.6557 14.4386 20.341 14.7008C20.0263 14.963 19.6254 15.1416 19.189 15.214C19.0437 15.2381 18.8967 15.25 18.75 15.25M18.75 7.75V7M16.8792 14.4167C17.1264 14.725 17.4778 14.9654 17.889 15.1073C18.1633 15.202 18.4559 15.25 18.75 15.25M18.75 15.25V16M3 9.5H12M3 13H7.5M3 3H20.9568M3 21H20.9568',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	blockquote: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 7H17M7 11H9M17 11.8571C17 12.3305 16.6418 12.7143 16.2 12.7143C15.7582 12.7143 15.4 12.3305 15.4 11.8571C15.4 11.3838 15.7582 11 16.2 11C16.6418 11 17 11.3838 17 11.8571ZM17 11.8571C17 11.8571 17 13.1429 15.8 14M13.6 11.8571C13.6 12.3305 13.2418 12.7143 12.8 12.7143C12.3582 12.7143 12 12.3305 12 11.8571C12 11.3838 12.3582 11 12.8 11C13.2418 11 13.6 11.3838 13.6 11.8571ZM13.6 11.8571C13.6 11.8571 13.6 13.1429 12.4 14M3 21V5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V16C21 17.1046 20.1046 18 19 18H7.66667C7.23393 18 6.81286 18.1404 6.46667 18.4L3 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	columns: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M15 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H15M15 3V21M15 3H9M15 21H9M9 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H9M9 3V21',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	column: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 5C3 3.89543 3.89543 3 5 3H10C11.1046 3 12 3.89543 12 5V19C12 20.1046 11.1046 21 10 21H5C3.89543 21 3 20.1046 3 19V5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M15 3H19C20.1046 3 21 3.89543 21 5V19C21 20.1046 20.1046 21 19 21H15',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeDasharray: 1.4,
		} )
	),
	marketing_button: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M7 20.9895H17M4 16.9895H20',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M10 7H19M3 11H21C22.1046 11 23 10.1046 23 9V5C23 3.89543 22.1046 3 21 3H3C1.89543 3 1 3.89543 1 5V9C1 10.1046 1.89543 11 3 11ZM7 7C7 7.55228 6.55228 8 6 8C5.44772 8 5 7.55228 5 7C5 6.44772 5.44772 6 6 6C6.55228 6 7 6.44772 7 7Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	table_of_contents: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 16H13M7 12H15.3333M7 8H17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	faq: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M9.00006 9C9.50006 8 10.5001 7 12.0001 7C13.5002 7 15.0001 8.5 15.0001 10C15.0001 11.4553 14.0588 12.4399 13.0843 12.8686C13.0248 12.8948 12.9619 12.9116 12.8992 12.9285C12.4001 13.0627 12.0001 13.4804 12.0001 14M12.0001 17H12.0101M21.0001 12C21.0001 16.9706 16.9706 21 12.0001 21C10.5124 21 9.1091 20.6391 7.87286 20C7.19356 19.6488 3.56466 21.5054 3 21C2.43678 20.4959 4.93748 17.6302 4.51561 17C3.55833 15.5699 3.00006 13.8501 3.00006 12C3.00006 7.02944 7.0295 3 12.0001 3C16.9706 3 21.0001 7.02944 21.0001 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	faq_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12.0067 10.2C12.34 9.6 13.0067 9 14.0067 9C15.0067 9 16.0067 9.9 16.0067 10.8C16.0067 11.6628 15.394 12.2498 14.7527 12.5118C14.6977 12.5343 14.6397 12.5477 14.5824 12.5632C14.2608 12.6496 14.0067 12.8957 14.0067 13.2M14.0067 15H14.0133M11.0002 15H11.0069M8.00017 15H8.00684M21.0001 12C21.0001 16.9706 16.9706 21 12.0001 21C10.5124 21 9.1091 20.6391 7.87286 20C7.19356 19.6488 3.56466 21.5054 3 21C2.43678 20.4959 4.93748 17.6302 4.51561 17C3.55833 15.5699 3.00006 13.8501 3.00006 12C3.00006 7.02944 7.0295 3 12.0001 3C16.9706 3 21.0001 7.02944 21.0001 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	forms: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 10H17M7 7H10.5M9 17H15M7 13H17M13.5 7H17M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	how_to: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M13 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21H19C20.1046 21 21 20.1046 21 19V11M13 3L21 11M13 3V9C13 10.1046 13.8954 11 15 11H21M10 11H17M10 7H13M10 15H17M7 7H7.1M7 11H7.1M7 15H7.1',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	how_to_step: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M14 12C14 13.1046 13.1046 14 12 14C10.8954 14 10 13.1046 10 12C10 10.8954 10.8954 10 12 10C13.1046 10 14 10.8954 14 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M23 12C23 13.1046 22.1046 14 21 14C19.8954 14 19 13.1046 19 12C19 10.8954 19.8954 10 21 10C22.1046 10 23 10.8954 23 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d:
				'M5 12C5 13.1046 4.10457 14 3 14C1.89543 14 1 13.1046 1 12C1 10.8954 1.89543 10 3 10C4.10457 10 5 10.8954 5 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M7.5 12H7.6',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M16.5 12H16.6',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	inline_notice: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 21H21M3 3H21M10 12H19M3 17H21C22.1046 17 23 16.1046 23 15V9C23 7.89543 22.1046 7 21 7H3C1.89543 7 1 7.89543 1 9V15C1 16.1046 1.89543 17 3 17ZM7 12C7 12.5523 6.55228 13 6 13C5.44772 13 5 12.5523 5 12C5 11.4477 5.44772 11 6 11C6.55228 11 7 11.4477 7 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	wp_search: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 21L9 15M7 10C7 13.866 10.134 17 14 17C17.866 17 21 13.866 21 10C21 6.13401 17.866 3 14 3C10.134 3 7 6.13401 7 10Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	taxonomy_list: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M10 16H17M10 12H15M10 8H17M6.98999 8H6.99999M6.98999 12H6.99999M6.98999 16H6.99999M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	review: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 10.5H17M9.5 7H9.51M6.99 7H7M12 7H12.01M7 14H14M12 21L14.4142 18.5858C14.7893 18.2107 15.298 18 15.8284 18H19C20.1046 18 21 17.1046 21 16V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V16C3 17.1046 3.89543 18 5 18H8.17157C8.70201 18 9.21071 18.2107 9.58579 18.5858L12 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	lottie: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M7 17C7 17 12 17.5 12 12C12 6.5 17 7 17 7M5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	accept: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M20 12H12M4 12L5.66667 14L9 10M3 17H21C22.1046 17 23 16.1046 23 15V9C23 7.89543 22.1046 7 21 7H3C1.89543 7 1 7.89543 1 9V15C1 16.1046 1.89543 17 3 17Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	checkbox: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M8 12L10.6667 15L16 9M5.77778 20H18.2222C19.2041 20 20 18.9767 20 17.7143V6.28571C20 5.02335 19.2041 4 18.2222 4H5.77778C4.79594 4 4 5.02335 4 6.28571V17.7143C4 18.9767 4.79594 20 5.77778 20Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	datepicker: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M8 7V3M16 7V3M8 13H8.1M11.9 13H12M16 13H16.1M5 21H19C20.1046 21 21 20.1046 21 19V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	email: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 8L10.8906 13.2604C11.5624 13.7083 12.4376 13.7083 13.1094 13.2604L21 8M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	hidden: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3.00024 3L6.5894 6.58916M21.0002 21L17.4114 17.4112M13.8751 18.8246C13.268 18.9398 12.6414 19 12.0007 19C7.52305 19 3.73275 16.0571 2.4585 12C2.80539 10.8955 3.33875 9.87361 4.02168 8.97118M9.87892 9.87868C10.4218 9.33579 11.1718 9 12.0002 9C13.6571 9 15.0002 10.3431 15.0002 12C15.0002 12.8284 14.6645 13.5784 14.1216 14.1213M9.87892 9.87868L14.1216 14.1213M9.87892 9.87868L6.5894 6.58916M14.1216 14.1213L6.5894 6.58916M14.1216 14.1213L17.4114 17.4112M6.5894 6.58916C8.14922 5.58354 10.0068 5 12.0007 5C16.4783 5 20.2686 7.94291 21.5429 12C20.836 14.2507 19.3548 16.1585 17.4114 17.4112',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	name: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M18 9H13M13 12H17M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19ZM7 14H9C9.55228 14 10 13.5523 10 13V9C10 8.44772 9.55228 8 9 8H7C6.44772 8 6 8.44772 6 9V13C6 13.5523 6.44772 14 7 14Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	phone: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 5C3 3.89543 3.89543 3 5 3H8.27924C8.70967 3 9.09181 3.27543 9.22792 3.68377L10.7257 8.17721C10.8831 8.64932 10.6694 9.16531 10.2243 9.38787L7.96701 10.5165C9.06925 12.9612 11.0388 14.9308 13.4835 16.033L14.6121 13.7757C14.8347 13.3306 15.3507 13.1169 15.8228 13.2743L20.3162 14.7721C20.7246 14.9082 21 15.2903 21 15.7208V19C21 20.1046 20.1046 21 19 21H18C9.71573 21 3 14.2843 3 6V5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	radio: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12 7H22M12 17H22M8 7C8 8.65685 6.65685 10 5 10C3.34315 10 2 8.65685 2 7C2 5.34315 3.34315 4 5 4C6.65685 4 8 5.34315 8 7ZM8 17C8 18.6569 6.65685 20 5 20C3.34315 20 2 18.6569 2 17C2 15.3431 3.34315 14 5 14C6.65685 14 8 15.3431 8 17ZM5.5 7C5.5 7.27614 5.27614 7.5 5 7.5C4.72386 7.5 4.5 7.27614 4.5 7C4.5 6.72386 4.72386 6.5 5 6.5C5.27614 6.5 5.5 6.72386 5.5 7Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	select: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M5 17H17M5 14H19M4 9H20C21.1046 9 22 8.10457 22 7V5C22 3.89543 21.1046 3 20 3H4C2.89543 3 2 3.89543 2 5V7C2 8.10457 2.89543 9 4 9ZM4 21H20C21.1046 21 22 20.1046 22 19V12C22 10.8954 21.1046 10 20 10H4C2.89543 10 2 10.8954 2 12V19C2 20.1046 2.89543 21 4 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	textarea: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M15.5 16L18 13.5M18.5 16.5L18.6 16.4M5 19H19C20.1046 19 21 18.1046 21 17V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V17C3 18.1046 3.89543 19 5 19Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	toggle: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M2 12C2 8.68629 4.68629 6 8 6H16C19.3137 6 22 8.68629 22 12V12C22 15.3137 19.3137 18 16 18H8C4.68629 18 2 15.3137 2 12V12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M20 12C20 14.2091 18.2091 16 16 16C13.7909 16 12 14.2091 12 12C12 9.79086 13.7909 8 16 8C18.2091 8 20 9.79086 20 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	url: el(
		'svg',
		{ width: 24, height: 24, role: 'img', viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M13.8284 10.1716C12.2663 8.60948 9.73367 8.60948 8.17157 10.1716L4.17157 14.1716C2.60948 15.7337 2.60948 18.2663 4.17157 19.8284C5.73367 21.3905 8.26633 21.3905 9.82843 19.8284L10.93 18.7269M10.1716 13.8284C11.7337 15.3905 14.2663 15.3905 15.8284 13.8284L19.8284 9.82843C21.3905 8.26633 21.3905 5.73367 19.8284 4.17157C18.2663 2.60948 15.7337 2.60948 14.1716 4.17157L13.072 5.27118',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	star_rating: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M11.103 7.81696C11.4698 7.07371 12.5297 7.07371 12.8965 7.81696L13.8243 9.69697C13.97 9.99211 14.2516 10.1967 14.5773 10.244L16.652 10.5455C17.4722 10.6647 17.7997 11.6726 17.2062 12.2512L15.7049 13.7146C15.4692 13.9443 15.3617 14.2753 15.4173 14.5997L15.7717 16.666C15.9118 17.4829 15.0544 18.1059 14.3208 17.7202L12.4651 16.7446C12.1738 16.5915 11.8257 16.5915 11.5344 16.7446L9.67874 17.7202C8.94511 18.1059 8.08768 17.4829 8.22779 16.666L8.58219 14.5997C8.63783 14.2753 8.53028 13.9443 8.29459 13.7146L6.79332 12.2512C6.1998 11.6726 6.52731 10.6647 7.34753 10.5455L9.42225 10.244C9.74796 10.1967 10.0295 9.99211 10.1752 9.69697L11.103 7.81696Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M18.4424 14.106L20.1846 14.8943C21.0283 15.2761 21.9613 14.5667 21.7842 13.6782L21.6155 12.8313C21.5377 12.4411 21.6806 12.0403 21.99 11.7808L22.6034 11.2662C23.3499 10.6399 22.9822 9.44941 22.0043 9.32712L20.8958 9.18848C20.5373 9.14365 20.2219 8.93603 20.0458 8.62895L19.4377 7.56859C19.003 6.81047 17.8817 6.81047 17.447 7.56859L16.559 9.11719M5.55765 14.106L3.8154 14.8943C2.97172 15.2761 2.0387 14.5667 2.21577 13.6782L2.38454 12.8313C2.46229 12.4411 2.3194 12.0403 2.01002 11.7808L1.39664 11.2662C0.650069 10.6399 1.01784 9.44941 1.99569 9.32712L3.1042 9.18848C3.46273 9.14365 3.77814 8.93603 3.95423 8.62895L4.56227 7.56859C4.997 6.81047 6.11829 6.81047 6.55302 7.56859L7.44104 9.11719',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	container: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 16C3 14.8954 3.89543 14 5 14H8C9.10457 14 10 14.8954 10 16V19C10 20.1046 9.10457 21 8 21H5C3.89543 21 3 20.1046 3 19V16Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M14 16C14 14.8954 14.8954 14 16 14H19C20.1046 14 21 14.8954 21 16V19C21 20.1046 20.1046 21 19 21H16C14.8954 21 14 20.1046 14 19V16Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} ),
		el( 'path', {
			d:
				'M3 5C3 3.89543 3.89543 3 5 3H19C20.1046 3 21 3.89543 21 5V8C21 9.10457 20.1046 10 19 10H5C3.89543 10 3 9.10457 3 8V5Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	image: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 17L7.41995 12.58C8.26284 11.7372 9.65125 11.8141 10.3959 12.7449L11.789 14.4863C12.4639 15.3298 13.6866 15.4851 14.5508 14.8369L15.6123 14.0408C16.4086 13.4436 17.5228 13.5228 18.2265 14.2265L21 17M17 8C17 8.55228 16.5523 9 16 9C15.4477 9 15 8.55228 15 8C15 7.44772 15.4477 7 16 7C16.5523 7 17 7.44772 17 8ZM5 21H19C20.1046 21 21 20.1046 21 19V5C21 3.89543 20.1046 3 19 3H5C3.89543 3 3 3.89543 3 5V19C3 20.1046 3.89543 21 5 21Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	image_gallery: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M3 8.5V5C3 3.89543 3.89543 3 5 3H8.5C9.60457 3 10.5 3.89543 10.5 5V8.5M3 8.5C3 9.60457 3.89543 10.5 5 10.5H8.5C9.60457 10.5 10.5 9.60457 10.5 8.5M3 8.5L4.94679 6.87767C5.58153 6.34873 6.47618 6.26455 7.19844 6.6658L10.5 8.5M13.5 8.5V5C13.5 3.89543 14.3954 3 15.5 3H19C20.1046 3 21 3.89543 21 5V8.5M13.5 8.5C13.5 9.60457 14.3954 10.5 15.5 10.5H19C20.1046 10.5 21 9.60457 21 8.5M13.5 8.5L15.4468 6.87767C16.0815 6.34873 16.9762 6.26455 17.6984 6.6658L21 8.5M3 19V15.5C3 14.3954 3.89543 13.5 5 13.5H8.5C9.60457 13.5 10.5 14.3954 10.5 15.5V19M3 19C3 20.1046 3.89543 21 5 21H8.5C9.60457 21 10.5 20.1046 10.5 19M3 19L4.94679 17.3777C5.58153 16.8487 6.47618 16.7645 7.19844 17.1658L10.5 19M13.5 19V15.5C13.5 14.3954 14.3954 13.5 15.5 13.5H19C20.1046 13.5 21 14.3954 21 15.5V19M13.5 19C13.5 20.1046 14.3954 21 15.5 21H19C20.1046 21 21 20.1046 21 19M13.5 19L15.4468 17.3777C16.0815 16.8487 16.9762 16.7645 17.6984 17.1658L21 19',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	counter: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M1 10.5L3 9.5V16.5M5.5 11C5.66667 10.5 6.3 9.5 7.5 9.5C9 9.5 9.5 10.5 9.5 11C9.5 13.0707 7 15 5.5 16.5H9.7M11.5 10.5C11.6667 10.1667 12.3 9.2 13.5 9.2C14.7 9.2 15.7 10 15.7 11C15.7 12 14.2 13 13 13C14 13 16.2469 13 16 15C15.8742 16.0188 14.8107 16.7 13.5 16.7C13 16.7 12 16.5 11.5 15.5M20.5 18V6M20.5 6L18 8M20.5 6L23 8',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	countdown: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12 5.39514V3.16507M16.2269 6.58948L17.8848 5.09796M9.69775 2.60654H14.3022M11.8872 13.4553H16.6079M20.0052 13.3886C20.0052 17.8099 16.4211 21.394 11.9999 21.394C7.57873 21.394 3.99463 17.8099 3.99463 13.3886C3.99463 8.96743 7.57873 5.38333 11.9999 5.38333C16.4211 5.38333 20.0052 8.96743 20.0052 13.3886ZM12.327 13.3886C12.327 13.2081 12.1807 13.0618 12.0002 13.0618C11.8197 13.0618 11.6733 13.2081 11.6733 13.3886C11.6733 13.5692 11.8197 13.7155 12.0002 13.7155C12.1807 13.7155 12.327 13.5692 12.327 13.3886Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	modal: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'rect', {
			x: 3,
			y: 7.30975,
			width: 15.033,
			height: 11.7712,
			rx: 2,
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M6.86572 11.6992H14.1675',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M6.86572 14.6918H14.1675',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d:
				'M19.0982 4.51694L20.1633 5.58197M20.1633 5.58197L21.2283 6.647M20.1633 5.58197L19.0982 6.647M20.1633 5.58197L21.2283 4.51694',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	slider: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 26 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'rect', {
			x: 5.4502,
			y: 4.98621,
			width: 15.0978,
			height: 11.2249,
			rx: 2,
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M9.19922 9.10217H16.501',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M9.19922 12.0948H16.501',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M15.9987 19.0138H16.0054M12.9922 19.0138H12.9989M9.99219 19.0138H9.99885',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M2.49658 9.69873L1.49658 10.5987L2.49658 11.4987',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M23.5034 11.4987L24.5034 10.5987L23.5034 9.69872',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	slider_child: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 26 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'rect', {
			x: 5.4502,
			y: 6.38751,
			width: 15.0978,
			height: 11.2249,
			rx: 2,
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M9.19922 10.5035H16.501',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M9.19922 13.4962H16.501',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M2.49658 11.1L1.49658 12.0001L2.49658 12.9',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d: 'M23.5034 12.9L24.5034 12L23.5034 11.1',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),

	// ----------------------------.
	// All Spectra Pro Block Icons .
	// ----------------------------.

	login: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M12 16L16 12M16 12L12 8M16 12L4 12M7 16V17C7 18.6569 8.34315 20 10 20H17C18.6569 20 20 18.6569 20 17V7C20 5.34315 18.6569 4 17 4H10C8.34315 4 7 5.34315 7 7V8',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	register: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M14 21H4C4 17.134 7.13401 14 11 14C12.0736 14 13.0907 14.2417 14 14.6736M17 15V18M17 18V21M17 18H14M17 18H20M15 7C15 9.20914 13.2091 11 11 11C8.79086 11 7 9.20914 7 7C7 4.79086 8.79086 3 11 3C13.2091 3 15 4.79086 15 7Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	password: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M15 7C16.1046 7 17 7.89543 17 9M21 9C21 12.3137 18.3137 15 15 15C14.3938 15 13.8087 14.9101 13.2571 14.7429L11 17H9V19H7V21H4C3.44772 21 3 20.5523 3 20V17.4142C3 17.149 3.10536 16.8946 3.29289 16.7071L9.25707 10.7429C9.08989 10.1914 9 9.60617 9 9C9 5.68629 11.6863 3 15 3C18.3137 3 21 5.68629 21 9Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	rePassword: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M13 9C13 7.9 13.8954 7 15 7C16.1046 7 17 7.89543 17 9C17 10.1 16.1 11 15 11M15 11V10M15 11L16 11.5M21 9C21 12.3137 18.3137 15 15 15C14.3938 15 13.8087 14.9101 13.2571 14.7429L11 17H9V19H7V21H4C3.44772 21 3 20.5523 3 20V17.4142C3 17.149 3.10536 16.8946 3.29289 16.7071L9.25707 10.7429C9.08989 10.1914 9 9.60617 9 9C9 5.68629 11.6863 3 15 3C18.3137 3 21 5.68629 21 9Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	instagram_feed: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M17 6.5H17.1M8.14286 21H15.8571C18.6975 21 21 18.6975 21 15.8571V8.14286C21 5.30254 18.6975 3 15.8571 3H8.14286C5.30254 3 3 5.30254 3 8.14286V15.8571C3 18.6975 5.30254 21 8.14286 21ZM16 12C16 14.2091 14.2091 16 12 16C9.79086 16 8 14.2091 8 12C8 9.79086 9.79086 8 12 8C14.2091 8 16 9.79086 16 12Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	loop_builder: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el(
			'g',
			null,
			el( 'path', {
				d: 'M3.35981 8.80578C5.11039 7.05892 7.94864 7.05892 9.69922 8.80578L12.8689 11.9687L9.69922 15.1317C7.94864 16.8785 5.11039 16.8785 3.35981 15.1317C1.60923 13.3848 1.60923 10.5526 3.35981 8.80578Z',
				fill: noColor,
				stroke: iconColor,
				strokeWidth: 1.4,
			} ),
			el( 'path', {
				d: 'M22.2987 15.1942C20.5481 16.9411 17.7099 16.9411 15.9593 15.1942L12.7896 12.0313L15.9593 8.86831C17.7099 7.12146 20.5481 7.12146 22.2987 8.86831C24.0493 10.6152 24.0493 13.4474 22.2987 15.1942Z',
				fill: noColor,
				stroke: iconColor,
				strokeWidth: 1.4,
			} ),
		),
	),
	loop_wrapper: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M7.21733 14.2448C5.93905 14.2448 5.29991 14.2448 4.82713 13.9634C4.54096 13.7931 4.30185 13.554 4.13151 13.2678C3.8501 12.795 3.8501 12.1559 3.8501 10.8776V7.02072C3.8501 5.1351 3.8501 4.19229 4.43588 3.60651C5.02167 3.02072 5.96448 3.02072 7.8501 3.02072H11.707C12.9852 3.02072 13.6244 3.02072 14.0972 3.30214C14.3833 3.47248 14.6224 3.71158 14.7928 3.99775C15.0742 4.47053 15.0742 5.10967 15.0742 6.38795M14.584 20.9793H17.8081C19.6937 20.9793 20.6365 20.9793 21.2223 20.3935C21.8081 19.8077 21.8081 18.8649 21.8081 16.9793V13.7552C21.8081 11.8696 21.8081 10.9267 21.2223 10.341C20.6365 9.75517 19.6937 9.75517 17.8081 9.75517H14.584C12.6984 9.75517 11.7556 9.75517 11.1698 10.341C10.584 10.9267 10.584 11.8696 10.584 13.7552V16.9793C10.584 18.8649 10.584 19.8077 11.1698 20.3935C11.7556 20.9793 12.6984 20.9793 14.584 20.9793Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
	),
	popup_builder: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 25 25', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M7.18382 7.82229C7.1591 7.79676 6.49721 7.78045 5.55331 7.77579C4.45592 7.77038 3.57129 8.66533 3.57129 9.76272V20.3833C3.57129 21.4879 4.46672 22.3833 5.57129 22.3833H15.7129C16.8175 22.3833 17.7129 21.4879 17.7129 20.3833V17.8467M11.5659 7.36682H17.0951C17.6474 7.36682 18.0951 7.81454 18.0951 8.36682V13.8366M7.62451 5.35669V15.8467C7.62451 16.9513 8.51994 17.8467 9.62451 17.8467H20.0361C21.1407 17.8467 22.0361 16.9513 22.0361 15.8467V5.35669C22.0361 4.25212 21.1407 3.35669 20.0361 3.35669H9.62451C8.51994 3.35669 7.62451 4.25212 7.62451 5.35669Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
	),
	loop_search: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M1 19L7 13M5 8C5 11.866 8.13401 15 12 15C15.866 15 19 11.866 19 8C19 4.13401 15.866 1 12 1C8.13401 1 5 4.13401 5 8Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	loop_sort: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M2.95 6.4691V3.00943C2.95 2.84374 3.08431 2.70943 3.25 2.70943H20.75C20.9157 2.70943 21.05 2.84374 21.05 3.00943V6.45928C21.05 6.54425 21.014 6.62523 20.9509 6.68212L16.269 10.9021C15.9114 11.2245 15.7072 11.6834 15.7072 12.1649V18.5587C15.7072 18.6803 15.6339 18.7898 15.5215 18.8361L8.53336 21.7145C8.33591 21.7959 8.11911 21.6507 8.11911 21.4371V12.1551C8.11911 11.6833 7.92309 11.2328 7.57792 10.9112L3.0455 6.6886L2.57457 7.19409L3.0455 6.6886C2.98459 6.63186 2.95 6.55235 2.95 6.4691Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	loop_reset: el(
		'svg',
		{ width: 24, height: 25, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M14.9404 13.515L10.8696 18.461L15.8919 22.47M5.07181 14.2876C4.19127 12.7856 3.83859 11.0395 4.06845 9.32003C4.29832 7.60057 5.09789 6.00385 6.34315 4.77751C7.58842 3.55117 9.20979 2.76375 10.9558 2.53738C12.7018 2.31101 14.4749 2.65833 16 3.52549C17.5251 4.39264 18.7171 5.73115 19.391 7.33344C20.065 8.93573 20.1832 10.7122 19.7274 12.3874C19.2716 14.0627 18.2672 15.5429 16.8701 16.5987C15.4729 17.6545 13.7611 18.2268 12 18.2268',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	loop_category: el(
		'svg',
		{ width: 24, height: 25, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M3 5.46997C3 4.52716 3 4.05576 3.29289 3.76286C3.58579 3.46997 4.05719 3.46997 5 3.46997H8C8.94281 3.46997 9.41421 3.46997 9.70711 3.76286C10 4.05576 10 4.52716 10 5.46997V8.46997C10 9.41278 10 9.88418 9.70711 10.1771C9.41421 10.47 8.94281 10.47 8 10.47H5C4.05719 10.47 3.58579 10.47 3.29289 10.1771C3 9.88418 3 9.41278 3 8.46997V5.46997Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M3 16.47C3 15.5272 3 15.0558 3.29289 14.7629C3.58579 14.47 4.05719 14.47 5 14.47H8C8.94281 14.47 9.41421 14.47 9.70711 14.7629C10 15.0558 10 15.5272 10 16.47V19.47C10 20.4128 10 20.8842 9.70711 21.1771C9.41421 21.47 8.94281 21.47 8 21.47H5C4.05719 21.47 3.58579 21.47 3.29289 21.1771C3 20.8842 3 20.4128 3 19.47V16.47Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M14 5.46997C14 4.52716 14 4.05576 14.2929 3.76286C14.5858 3.46997 15.0572 3.46997 16 3.46997H19C19.9428 3.46997 20.4142 3.46997 20.7071 3.76286C21 4.05576 21 4.52716 21 5.46997V8.46997C21 9.41278 21 9.88418 20.7071 10.1771C20.4142 10.47 19.9428 10.47 19 10.47H16C15.0572 10.47 14.5858 10.47 14.2929 10.1771C14 9.88418 14 9.41278 14 8.46997V5.46997Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} ),
		el( 'path', {
			d: 'M14 16.47C14 15.5272 14 15.0558 14.2929 14.7629C14.5858 14.47 15.0572 14.47 16 14.47H19C19.9428 14.47 20.4142 14.47 20.7071 14.7629C21 15.0558 21 15.5272 21 16.47V19.47C21 20.4128 21 20.8842 20.7071 21.1771C20.4142 21.47 19.9428 21.47 19 21.47H16C15.0572 21.47 14.5858 21.47 14.2929 21.1771C14 20.8842 14 20.4128 14 19.47V16.47Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),
	loop_pagination: el(
		'svg',
		{ width: 24, height: 25, viewBox: '0 0 25 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M4.24796 9.21127L0.989258 12.47L4.24796 15.7287M19.7522 15.7287L23.0109 12.47L19.7522 9.21127M8.75989 12.47C8.75989 13.2825 8.10119 13.9412 7.28864 13.9412C6.47609 13.9412 5.81738 13.2825 5.81738 12.47C5.81738 11.6574 6.47609 10.9987 7.28864 10.9987C8.10119 10.9987 8.75989 11.6574 8.75989 12.47ZM13.4779 12.47C13.4779 13.2825 12.8192 13.9412 12.0067 13.9412C11.1941 13.9412 10.5354 13.2825 10.5354 12.47C10.5354 11.6574 11.1941 10.9987 12.0067 10.9987C12.8192 10.9987 13.4779 11.6574 13.4779 12.47ZM18.1956 12.47C18.1956 13.2825 17.5369 13.9412 16.7243 13.9412C15.9118 13.9412 15.2531 13.2825 15.2531 12.47C15.2531 11.6574 15.9118 10.9987 16.7243 10.9987C17.5369 10.9987 18.1956 11.6574 18.1956 12.47Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
		} )
	),

	// --------------------------------.
	// All Spectra Cross-Product Icons .
	// --------------------------------.

	sure_forms: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 32 32', fill: noColor, stroke: noColor, className: 'uagb-editor-icons sureforms-logo' },
		el(
			'g',
			{ clipPath: 'url(#clip_spectra_sureforms_block_icon)' },
			el(
				'rect',
				{ width: '32', height: '32', fill: 'transparent', strokeWidth: '1.4', stroke: '#0063a1', },
			),
			el(
				'path',
				{
					d: 'M9.14307 6.85645H22.8574V11.4279H11.4288L9.14307 13.7136V11.4279V6.85645Z',
					fill: '#0063a1',
				},
			),
			el(
				'path',
				{
					d: 'M9.14307 6.85645H22.8574V11.4279H11.4288L9.14307 13.7136V11.4279V6.85645Z',
					fill: '#0063a1',
				},
			),
			el(
				'path',
				{
					d: 'M9.14307 13.7139H20.5716V18.2853H11.4288L9.14307 20.571V18.2853V13.7139Z',
					fill: '#0063a1',
				},
			),
			el(
				'path',
				{
					d: 'M9.14307 13.7139H20.5716V18.2853H11.4288L9.14307 20.571V18.2853V13.7139Z',
					fill: '#0063a1',
				},
			),
			el(
				'path',
				{
					d: 'M9.14307 20.5713H16.0002V25.1427H9.14307V20.5713Z',
					fill: '#0063a1',
				},
			),
			el(
				'path',
				{
					d: 'M9.14307 20.5713H16.0002V25.1427H9.14307V20.5713Z',
					fill: '#0063a1',
				},
			),
		),	
		el(
			'defs',
			null,
			el(
				'clipPath',
				{ id: 'clip_spectra_sureforms_block_icon' },
				el(
					'rect',
					{
						width: '192',
						height: '32',
						fill: 'white',
					},
				),
			),
		),	
	),

	// ------------------------.
	// All Miscellaneous Icons .
	// ------------------------.

	post_title: el(
		'svg',
		{ width: 20, height: 20 },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M19.31 0h-18.619c-0.381 0-0.691 0.309-0.691 0.691v18.619c0 0.382 0.309 0.691 0.691 0.691h18.619c0.382 0 0.691-0.309 0.691-0.691v-18.619c0-0.381-0.309-0.691-0.69-0.691v0zM18.62 6.206h-4.825v-4.825h4.825v4.825zM18.62 12.413h-4.825v-4.825h4.825v4.825zM1.381 7.588h4.825v4.825h-4.825v-4.825zM7.588 7.588h4.825v4.825h-4.825v-4.825zM12.413 1.381v4.825h-4.825v-4.825h4.825zM6.206 1.381v4.825h-4.825v-4.825h4.825zM1.381 13.794h4.825v4.826h-4.825v-4.826zM7.588 18.62v-4.826h4.825v4.826h-4.825zM13.794 18.62v-4.826h4.825v4.826h-4.825z',
		} )
	),
	quote_1: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M15.581 10.226h-15.162c-0.233 0-0.419 0.37-0.419 0.826 0 0.458 0.186 0.828 0.419 0.828h15.161c0.233 0 0.419-0.37 0.419-0.828 0.001-0.455-0.186-0.826-0.418-0.826v0z',
		} ),
		el( 'path', {
			d:
				'M15.581 14.285h-15.162c-0.233 0-0.419 0.373-0.419 0.827 0 0.458 0.186 0.826 0.419 0.826h15.161c0.233 0 0.419-0.369 0.419-0.826 0.001-0.454-0.186-0.827-0.418-0.827v0z',
		} ),
		el( 'path', {
			d:
				'M15.581 18.346h-15.162c-0.233 0-0.419 0.37-0.419 0.826 0 0.459 0.186 0.828 0.419 0.828h15.161c0.233 0 0.419-0.369 0.419-0.828 0.001-0.455-0.186-0.826-0.418-0.826v0z',
		} ),
		el( 'path', {
			d:
				'M9.126 0.595c-0.46 0.465-0.974 1.35-0.835 3.042 0.081 1.319 0.666 3.29 3.048 5.216 0.112 0.090 0.241 0.136 0.38 0.136 0.183 0 0.362-0.086 0.487-0.251 0.214-0.283 0.164-0.683-0.113-0.902-1.935-1.566-2.458-3.105-2.551-4.154 0.274 0.156 0.582 0.258 0.913 0.258 1.045 0 1.89-0.886 1.89-1.972 0-1.088-0.846-1.966-1.89-1.966-0.233 0-0.451 0.062-0.657 0.143l0.004-0.011-0.218 0.101-0.018 0.011-0.007 0.006-0.299 0.214-0.134 0.131z',
		} ),
		el( 'path', {
			d:
				'M4.517 0.595c-0.465 0.465-0.974 1.35-0.841 3.042 0.085 1.319 0.671 3.29 3.049 5.216 0.116 0.090 0.245 0.136 0.383 0.136 0.178 0 0.366-0.086 0.487-0.251 0.214-0.283 0.165-0.683-0.108-0.902-1.939-1.566-2.467-3.105-2.56-4.154 0.278 0.156 0.584 0.258 0.92 0.258 1.046 0 1.885-0.886 1.885-1.972 0-1.088-0.845-1.966-1.885-1.966-0.236 0-0.447 0.062-0.657 0.143l0.010-0.011-0.218 0.101-0.022 0.011-0.009 0.006-0.305 0.214-0.129 0.13z',
		} )
	),
	quote_2: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M4.599 6.686c-0.39 0.397-0.822 1.149-0.705 2.586 0.068 1.123 0.561 2.799 2.561 4.434 0.096 0.080 0.205 0.115 0.321 0.115 0.153 0 0.306-0.071 0.409-0.214 0.181-0.239 0.135-0.58-0.095-0.766-1.626-1.332-2.066-2.639-2.144-3.531 0.231 0.132 0.488 0.218 0.769 0.218 0.874 0 1.587-0.753 1.587-1.677s-0.711-1.672-1.587-1.672c-0.196 0-0.38 0.054-0.552 0.121l0.003-0.010-0.184 0.085-0.016 0.010-0.006 0.006-0.252 0.181-0.109 0.114z',
		} ),
		el( 'path', {
			d:
				'M0.725 6.686c-0.389 0.397-0.821 1.149-0.706 2.586 0.068 1.123 0.562 2.799 2.56 4.434 0.094 0.077 0.204 0.114 0.322 0.114 0.151 0 0.31-0.073 0.409-0.213 0.177-0.239 0.136-0.582-0.090-0.767-1.63-1.332-2.072-2.639-2.149-3.531 0.23 0.132 0.486 0.218 0.772 0.218 0.879 0 1.583-0.753 1.583-1.677s-0.71-1.672-1.583-1.672c-0.199 0-0.378 0.054-0.554 0.121l0.008-0.010-0.184 0.085-0.018 0.010-0.009 0.006-0.253 0.182-0.108 0.114z',
		} ),
		el( 'path', {
			d:
				'M19.25 6.929h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z',
		} ),
		el( 'path', {
			d:
				'M19.25 10.75h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z',
		} ),
		el( 'path', {
			d:
				'M19.25 14.571h-10.041c-0.414 0-0.75-0.336-0.75-0.75s0.336-0.75 0.75-0.75h10.041c0.414 0 0.75 0.336 0.75 0.75s-0.336 0.75-0.75 0.75z',
		} )
	),
	quote_inline_icon: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 32 32' },
		el( 'path', {
			d:
				'M7.031 14c3.866 0 7 3.134 7 7s-3.134 7-7 7-7-3.134-7-7l-0.031-1c0-7.732 6.268-14 14-14v4c-2.671 0-5.182 1.040-7.071 2.929-0.364 0.364-0.695 0.751-0.995 1.157 0.357-0.056 0.724-0.086 1.097-0.086zM25.031 14c3.866 0 7 3.134 7 7s-3.134 7-7 7-7-3.134-7-7l-0.031-1c0-7.732 6.268-14 14-14v4c-2.671 0-5.182 1.040-7.071 2.929-0.364 0.364-0.695 0.751-0.995 1.157 0.358-0.056 0.724-0.086 1.097-0.086z',
		} )
	),
	quote_tweet_icon: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 512 512' },
		el( 'path', {
			d:
				'M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z',
		} )
	),
	at_the_rate: el(
		'svg',
		{ width: 30, height: 30, className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M5.605 17.2c0-2.131 0.499-4.074 1.499-5.829 1-1.754 2.395-3.136 4.19-4.15 1.794-1.013 3.81-1.52 6.046-1.52 2.712 0 4.901 0.773 6.562 2.323 1.662 1.549 2.493 3.589 2.493 6.118 0 2.051-0.542 3.786-1.626 5.202-1.088 1.418-2.304 2.125-3.656 2.125-0.781 0-1.355-0.232-1.717-0.696-0.365-0.462-0.533-1.037-0.506-1.726-1.006 1.614-2.378 2.422-4.11 2.422-1.39 0-2.507-0.539-3.347-1.619-0.842-1.077-1.142-2.442-0.904-4.088 0.237-1.65 0.946-2.982 2.125-4.002 1.179-1.021 2.509-1.53 3.992-1.53s2.638 0.518 3.467 1.558c0.829 1.040 1.122 2.322 0.883 3.843l-0.494 3.2c-0.094 0.739 0.165 1.11 0.77 1.11 0.77 0 1.502-0.56 2.205-1.678 0.701-1.12 1.054-2.493 1.054-4.122 0-2.106-0.656-3.787-1.966-5.046-1.312-1.258-3.133-1.886-5.462-1.886-2.794 0-5.098 0.96-6.91 2.88-1.814 1.92-2.722 4.29-2.722 7.109 0 2.382 0.738 4.227 2.214 5.533 1.477 1.302 3.459 1.989 5.947 2.056l-0.376 1.509c-2.862-0.069-5.184-0.899-6.971-2.494-1.787-1.594-2.68-3.794-2.68-6.602zM19.15 15.85c0.17-1.15-0.014-2.118-0.558-2.899-0.542-0.781-1.28-1.173-2.214-1.173-0.933 0-1.79 0.392-2.571 1.173s-1.259 1.749-1.43 2.899c-0.171 1.152 0.013 2.122 0.557 2.91 0.542 0.787 1.282 1.181 2.214 1.181s1.79-0.394 2.573-1.181c0.781-0.789 1.256-1.758 1.43-2.91z',
		} )
	),
	top_align: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M1.5 0.438v2.125h17v-2.125h-17zM5.75 8.938h3.188v10.625h2.125v-10.625h3.187l-4.25-4.25-4.25 4.25z',
		} )
	),
	middle_align: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', { d: 'M18.5 11.063v-2.125h-17v2.125h17z' } ),
		el( 'path', {
			d: 'M12.707 3.519l-2.707-2.707-2.707 2.707h2.030v4.368h1.354v-4.368h2.030z',
		} ),
		el( 'path', {
			d: 'M7.293 16.48l2.707 2.707 2.707-2.707h-2.030v-4.368h-1.354v4.368h-2.030z',
		} )
	),
	bottom_align: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			d: 'M18.5 20v-2.125h-17v2.125h17zM14.25 11.5h-3.187v-10.625h-2.125v10.625h-3.188l4.25 4.25 4.25-4.25z',
		} )
	),
	carousel_left: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 256 512', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z',
		} )
	),
	carousel_right: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 256 512', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z',
		} )
	),
	top_margin: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 1c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17 0h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M17 0.984h-14c-1.103 0-2 0.897-2 2v0.797h18v-0.797c0-1.103-0.897-2-2-2z',
		} )
	),
	bottom_margin: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 1c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17 0h-14c-1.657 0-3 1.343-3 3v14c0 1.656 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M3 19.016h14c1.103 0 2-0.896 2-2v-0.797h-18v0.797c0 1.103 0.897 2 2 2z',
		} )
	),
	left_margin: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.656 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M0.984 2.999v14c0 1.103 0.896 2 2 2h0.797v-18h-0.797c-1.104 0-2 0.897-2 2z',
		} )
	),
	right_margin: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.656 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M19.015 16.999v-14c0-1.103-0.896-2-2-2h-0.797v18h0.797c1.104 0 2-0.896 2-2z',
		} )
	),
	vertical_spacing: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.657 0 3-1.343 3-3v-14c0-1.656-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M17 0.983h-14c-1.103 0-2 0.896-2 2v0.797h18v-0.797c0-1.103-0.896-2-2-2z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M3 19.031h14c1.103 0 2-0.896 2-2v-0.797h-18v0.797c0 1.104 0.896 2 2 2z',
		} )
	),
	horizontal_spacing: el(
		'svg',
		{ width: 20, height: 20, className: 'uagb-editor-icons' },
		el( 'path', {
			fill: '#999',
			d:
				'M17 0.999c1.103 0 2 0.897 2 2v14c0 1.103-0.897 2-2 2h-14c-1.103 0-2-0.897-2-2v-14c0-1.103 0.897-2 2-2h14zM17-0.001h-14c-1.657 0-3 1.343-3 3v14c0 1.657 1.343 3 3 3h14c1.656 0 3-1.343 3-3v-14c0-1.657-1.343-3-3-3v0z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M19.016 16.999v-14c0-1.103-0.896-2-2-2h-0.797v18h0.797c1.103 0 2-0.896 2-2z',
		} ),
		el( 'path', {
			fill: '#575E67',
			d: 'M0.968 2.999v14c0 1.103 0.896 2 2 2h0.797v-18h-0.797c-1.104 0-2 0.897-2 2z',
		} )
	),
	form1: el(
		'svg',
		{ width: 20, height: 20, role: 'img', viewBox: '0 0 58 58', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M41.5,2.1H7.8C4,2.1,1,5.2,1,8.9v40.5c0,3.7,3,6.8,6.8,6.8h18.6v-3.4H7.8c-1.9,0-3.4-1.5-3.4-3.4V8.9c0-1.9,1.5-3.4,3.4-3.4h33.8c1.9,0,3.4,1.5,3.4,3.4v19.8l3.4-3.4V8.9C48.3,5.2,45.2,2.1,41.5,2.1z',
		} ),
		el( 'path', { fill: spectraDarkColor, d: 'M38.1,15.6h-27v-3.4h27V15.6z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M38.1,23h-27v-3.4h27V23z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M35.2,29.6H13.5v-2.7h21.7V29.6z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M35.2,35.4H13.5v-2.7h21.7V35.4z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M35.2,27.8v6.3h-2.7v-6.3H35.2z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M16.2,27.9v6.3h-2.7v-6.3H16.2z' } ),
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M43.4,31.9c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.7,0.4-1.2,1-1.4,1.8c-0.9-0.3-1.9-0.1-2.7,0.3c-0.4,0.4-0.8,0.7-1.1,1.3L31,34c-1.1-1.3-3-1.5-4.4-0.7c-0.8,0.6-1.4,1.4-1.5,2.4c-0.1,1,0.1,2,0.8,2.8l4,4.5c-0.7,0.3-1.2,0.6-1.8,1.2c-0.4,0.5-0.9,1.2-1,1.9c0,0.3,0.1,0.6,0.3,0.9l5.8,6.5c4.3,4.8,11.6,5.5,16.5,1.6c0.2-0.1,0.3-0.2,0.4-0.4c0.1-0.1,0.3-0.2,0.3-0.3c5-4.7,5.2-12.9,0.4-18.3l-3-3.4C46.7,31.4,44.8,31.1,43.4,31.9z M49.1,37.5c4,4.5,3.8,11.2-0.3,15.2c-0.3,0.2-0.4,0.4-0.7,0.6c-3.8,3.1-9.9,2.4-13.3-1.4l-5.3-6c0-0.2,0.1-0.2,0.2-0.3c0.3-0.3,0.7-0.5,1.3-0.6c0.5,0,0.9,0.2,1.2,0.6l4.1,4.6c0.4,0.5,1.1,0.5,1.6,0.1s0.5-1.1,0.1-1.6l-4.1-4.6l-1.1-1.3l-5.2-5.9c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.3-0.5,0.5-0.8c0.4-0.2,1.1-0.1,1.5,0.3l5.2,5.8l1.5,1.7c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-1.5-1.7c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8c0.5-0.3,1.1-0.1,1.5,0.3l0.7,0.8l0.7,0.8c0.4,0.5,1.1,0.5,1.6,0.1c0.5-0.4,0.5-1.1,0.1-1.6l-0.7-0.8c-0.2-0.3-0.4-0.6-0.3-1c0-0.3,0.2-0.6,0.5-0.8l0,0c0.5-0.3,1.1-0.1,1.5,0.3L49.1,37.5L49.1,37.5z',
		} )
	),
	form2: el(
		'svg',
		{ width: 20, height: 20, role: 'img', viewBox: '0 0 58 58', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M44.4,5.6H10.9c-4.1,0-7.4,3.3-7.4,7.4v33.5c0,4.1,3.3,7.4,7.4,7.4h15.4l3.7-1.9l-3.7-1.9H10.9c-2.1,0-3.7-1.7-3.7-3.7V13.1c0-2.1,1.7-3.7,3.7-3.7h33.5c2.1,0,3.7,1.7,3.7,3.7v30l0.1-0.1c0.4-2.3,1.7-4.4,3.6-5.7V13.1C51.9,9,48.5,5.6,44.4,5.6z',
		} ),
		el( 'path', { fill: spectraDarkColor, d: 'M14.7,19.6h26.1v-3.7H14.7V19.6z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M14.7,27h26.1v-3.7H14.7V27z' } ),
		el( 'path', { fill: spectraDarkColor, d: 'M14.7,34.5h26.1v-3.7H14.7V34.5z' } ),
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M56.2,45l0-3.7c0-1-0.4-2-1.1-2.6c-0.7-0.7-1.6-1.1-2.6-1.1l-22.6,0.2c-1,0-4.6,0.5-5.3,1.1l-7.1,4.6l7.2,4.4c0,0,4.2,1,5.3,1l22.6-0.2C54.5,48.7,56.2,47,56.2,45z M29.9,47.1c-0.3,0-1.2-0.2-2.2-0.4l-0.1-6.8c0.8-0.1,1.7-0.2,2.2-0.2l17-0.2l0.1,7.4L29.9,47.1z',
		} )
	),
	form3: el(
		'svg',
		{ width: 20, height: 20, role: 'img', viewBox: '0 0 58 58', className: 'uagb-editor-icons' },
		el( 'path', { fill: spectraDarkColor, d: 'M41.5,46.1h-27v-3.4h27V46.1z' } ),
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M20.7,26.3l10.1,10.1l21.2-21.2L41.8,5.1L20.7,26.3z M44.2,12.8c0.7,0.7,0.7,1.8,0,2.5L32,27.6c-0.3,0.4-0.8,0.5-1.3,0.5c-0.5,0-0.9-0.2-1.3-0.5c-0.7-0.7-0.7-1.8,0-2.5l12.3-12.3C42.4,12.1,43.5,12.1,44.2,12.8z',
		} ),
		el( 'path', {
			fill: spectraDarkColor,
			d: 'M56,5.8l-4.8-4.8c-1.4-1.4-3.9-1.4-5.3,0l-1.6,1.6l10.1,10.1l1.5-1.5C57.4,9.7,57.4,7.3,56,5.8z',
		} ),
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M46.9,56.3H4.6c-1,0-1.8-0.8-1.8-1.8V9.7c0-1,0.8-1.8,1.8-1.8H33c1,0,1.8,0.8,1.8,1.8c0,1-0.8,1.8-1.8,1.8H6.5v41.1h40.4c1.4,0,2.6-1.2,2.6-2.6V26.9c0-1,0.8-1.8,1.8-1.8c1,0,1.8,0.8,1.8,1.8V50C53.2,53.5,50.4,56.3,46.9,56.3z',
		} )
	),
	close: el(
		'svg',
		{ width: 8, height: 8, viewBox: '0 0 6 6', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M5.91683 0.5875L5.32933 0L3.00016 2.32917L0.670996 0L0.0834961 0.5875L2.41266 2.91667L0.0834961 5.24583L0.670996 5.83333L3.00016 3.50417L5.32933 5.83333L5.91683 5.24583L3.58766 2.91667L5.91683 0.5875Z',
		} )
	),
	add: el(
		'svg',
		{ width: 8, height: 8, viewBox: '0 0 8 8', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M4.35613 0.231675L3.52528 0.231675V3.52561L0.231343 3.52561V4.35647L3.52528 4.35647V7.65041L4.35613 7.65041L4.35613 4.35647H7.65007V3.52561H4.35613L4.35613 0.231675Z',
		} )
	),
	video_placeholder: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M14.7519 11.1679L11.5547 9.03647C10.8901 8.59343 10 9.06982 10 9.86852V14.1315C10 14.9302 10.8901 15.4066 11.5547 14.9635L14.7519 12.8321C15.3457 12.4362 15.3457 11.5638 14.7519 11.1679Z',
			stroke: spectraDarkColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d:
				'M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z',
			stroke: spectraDarkColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	gallery_placeholder: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M6 14.6667L9.68329 10.9834C10.3857 10.281 11.5427 10.345 12.1632 11.1207L13.3242 12.5719C13.8866 13.2749 14.9055 13.4042 15.6257 12.8641L16.5103 12.2006C17.1738 11.703 18.1023 11.769 18.6888 12.3554L21 14.6667M6 6H4.66667C3.74619 6 3 6.74619 3 7.66667V19.3333C3 20.2538 3.74619 21 4.66667 21H16.3333C17.2538 21 18 20.2538 18 19.3333V18M17.6667 7.16667C17.6667 7.6269 17.2936 8 16.8333 8C16.3731 8 16 7.6269 16 7.16667C16 6.70643 16.3731 6.33333 16.8333 6.33333C17.2936 6.33333 17.6667 6.70643 17.6667 7.16667ZM7.66667 18H19.3333C20.2538 18 21 17.2538 21 16.3333V4.66667C21 3.74619 20.2538 3 19.3333 3H7.66667C6.74619 3 6 3.74619 6 4.66667V16.3333C6 17.2538 6.74619 18 7.66667 18Z',
			fill: noColor,
			stroke: spectraDarkColor,
			strokeWidth: 1.4,
		} )
	),
	bg_color: el(
		'svg',
		{ width: 11, height: 10, viewBox: '0 0 11 10', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M10.6927 1.08247C10.6927 1.08247 10.8502 0.615805 10.5119 0.289139C10.2027 -0.0141947 9.80023 0.149139 9.80023 0.149139C9.4444 0.324139 6.44023 2.17331 5.32606 3.39831C4.8244 3.95831 4.12439 5.60914 4.69023 6.20997C5.2269 6.78164 7.00023 6.11081 7.4844 5.62664C8.68606 4.42497 10.5236 1.44414 10.6927 1.08247ZM0.816895 9.29581C2.19939 8.38581 1.66856 7.30664 2.70106 6.58914C3.24356 6.20997 3.99606 6.22747 4.49773 6.75831C4.86523 7.14914 4.9644 8.25747 4.4044 8.77664C3.48856 9.62247 2.07106 9.68081 0.816895 9.29581Z',
		} )
	),
	bg_gradient: el(
		'svg',
		{ width: 12, height: 12, viewBox: '0 0 10 10', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			fillRule: 'evenodd',
			clipRule: 'evenodd',
			d:
				'M1.11111 1.11111V8.88889H8.88889V1.11111H1.11111ZM0.555556 0C0.248731 0 0 0.248731 0 0.555556V9.44444C0 9.75127 0.248731 10 0.555556 10H9.44444C9.75127 10 10 9.75127 10 9.44444V0.555556C10 0.248731 9.75127 0 9.44444 0H0.555556Z',
		} ),
		el( 'path', {
			fill: spectraDarkColor,
			d: 'M1.66667 1.66667H7.77778L1.66667 7.77778V1.66667Z',
		} )
	),
	bg_image: el(
		'svg',
		{ width: 14, height: 14, viewBox: '0 0 14 14', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M1.5752 0.699951H12.4252C12.9082 0.699951 13.3002 1.09195 13.3002 1.57495V12.425C13.3002 12.908 12.9082 13.3 12.4252 13.3H1.5752C1.0922 13.3 0.700195 12.908 0.700195 12.425V1.57495C0.700195 1.09195 1.0922 0.699951 1.5752 0.699951ZM11.9002 11.9V2.09995H2.1002V11.9H11.9002ZM7.0002 4.19995C7.0002 3.42995 6.3702 2.79995 5.6002 2.79995C4.8302 2.79995 4.2002 3.42995 4.2002 4.19995C4.2002 4.96995 4.8302 5.59995 5.6002 5.59995C6.3702 5.59995 7.0002 4.96995 7.0002 4.19995ZM9.1002 7.69995C9.1002 7.69995 9.1002 3.49995 11.2002 3.49995V10.5C11.2002 10.885 10.8852 11.2 10.5002 11.2H3.5002C3.1152 11.2 2.8002 10.885 2.8002 10.5V5.59995C4.2002 5.59995 4.9002 8.39995 4.9002 8.39995C4.9002 8.39995 5.6002 6.29995 7.0002 6.29995C8.4002 6.29995 9.1002 7.69995 9.1002 7.69995Z',
		} )
	),
	bg_video: el(
		'svg',
		{ width: 14, height: 8, viewBox: '0 0 14 8', className: 'uagb-editor-icons' },
		el( 'path', {
			fill: spectraDarkColor,
			d:
				'M8.4002 6.1V1.9C8.4002 1.13 7.7702 0.5 7.0002 0.5H2.1002C1.3302 0.5 0.700195 1.13 0.700195 1.9V6.1C0.700195 6.87 1.3302 7.5 2.1002 7.5H7.0002C7.7702 7.5 8.4002 6.87 8.4002 6.1ZM9.1002 4.35L13.3002 7.5V0.5L9.1002 3.65V4.35Z',
		} )
	),
	dynamic_content: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'red', className: 'uagb-editor-icons' },
		el( 'path', {
			stoke: spectraDarkColor,
			strokeWidth: 1.4,
			d:
				'M4 7V17C4 19.2091 7.58172 21 12 21C16.4183 21 20 19.2091 20 17V7M4 7C4 9.20914 7.58172 11 12 11C16.4183 11 20 9.20914 20 7M4 7C4 4.79086 7.58172 3 12 3C16.4183 3 20 4.79086 20 7M20 12C20 14.2091 16.4183 16 12 16C7.58172 16 4 14.2091 4 12',
		} )
	),
	separator: el(
		'svg',
		{ width: 24, height: 24, viewBox: '0 0 24 24', fill: 'none' , className: 'uagb-editor-icons' },
		el( 'path', {
			stokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
			fill: noColor,
			stroke: iconColor,
			d: 'M4 12H20M14 17L12 19L10 17M14 7L12 5L10 7',
        } ),
	),	
	icon: el(
		'svg',
		{ width: 24, height: 25, viewBox: '0 0 24 25', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M21 12.6987C21 17.6693 16.9706 21.6987 12 21.6987C7.02944 21.6987 3 17.6693 3 12.6987C3 7.72817 7.02944 3.69873 12 3.69873C16.9706 3.69873 21 7.72817 21 12.6987Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} ),
		el( 'path', {
			d:
				'M11.3217 9.12032C11.5991 8.5582 12.4007 8.5582 12.6781 9.12032L13.3798 10.5422C13.49 10.7654 13.7029 10.9201 13.9493 10.9559L15.5184 11.1839C16.1387 11.2741 16.3864 12.0364 15.9375 12.4739L14.8021 13.5807C14.6239 13.7544 14.5425 14.0048 14.5846 14.2501L14.8526 15.8129C14.9586 16.4307 14.3101 16.9019 13.7553 16.6102L12.3518 15.8723C12.1315 15.7565 11.8683 15.7565 11.6479 15.8723L10.2445 16.6102C9.68964 16.9019 9.04116 16.4307 9.14712 15.8129L9.41516 14.2501C9.45724 14.0048 9.3759 13.7544 9.19765 13.5807L8.06223 12.4739C7.61335 12.0364 7.86105 11.2741 8.48138 11.1839L10.0505 10.9559C10.2968 10.9201 10.5098 10.7654 10.6199 10.5422L11.3217 9.12032Z',
			fill: noColor,
			stroke: iconColor,
			strokeWidth: 1.4,
		} )
	),
	pencilIcon: el(
		'svg',
		{ width: 20, height: 20, viewBox: '0 0 20 20', fill: 'none', className: 'uagb-editor-icons' },
		el( 'path', {
			d:
				'M10 18.5H18M12.5 4L16 7M3.5 13L13.3595 2.79619C14.4211 1.73461 16.1422 1.7346 17.2038 2.79619C18.2654 3.85777 18.2654 5.57894 17.2038 6.64052L7 16.5L2 18L3.5 13Z',
			stroke: '#94A3B8',
			strokeWidth: 1.8,
			strokeLinecap: 'round',
			strokeLinejoin: 'round',
		} )
	),
	trashIcon: el(
		'svg',
		{ width: 20, height: 20, xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 448 512', className: 'trash-font' },
		el( 'path', {
			d: 'M32 464a48 48 0 0 0 48 48h288a48 48 0 0 0 48-48V128H32zm272-256a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zm-96 0a16 16 0 0 1 32 0v224a16 16 0 0 1-32 0zM432 32H312l-9.4-18.7A24 24 0 0 0 281.1 0H166.8a23.72 23.72 0 0 0-21.4 13.3L136 32H16A16 16 0 0 0 0 48v32a16 16 0 0 0 16 16h416a16 16 0 0 0 16-16V48a16 16 0 0 0-16-16z',
		} )
	),
};

export const renderLegacyBlockEditorIcon = ( blockName ) => (
	<>
		{ UAGB_Block_Icons[ blockName ] }
		<div className="spectra__legacy-icon--block-inserter-label">Legacy</div>
	</>
);

export default UAGB_Block_Icons;PK�][k����Qultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateBorderRadius.jsnu�[���/* eslint-disable no-nested-ternary */
import generateCSSUnit from './generateCSSUnit';

export default function generateBorderRadius( unit, topLeft, topRight = NaN, bottomRight = NaN, bottomLeft = NaN ) {
	return ! Number.isNaN( topRight )
		? ! Number.isNaN( bottomRight )
			? ! Number.isNaN( bottomLeft )
				? `${ generateCSSUnit( topLeft, unit ) } ${ generateCSSUnit( topRight, unit ) } ${ generateCSSUnit(
						bottomRight,
						unit
				  ) } ${ generateCSSUnit( bottomLeft, unit ) }`
				: `${ generateCSSUnit( topLeft, unit ) } ${ generateCSSUnit( topRight, unit ) } ${ generateCSSUnit(
						bottomRight,
						unit
				  ) }`
			: `${ generateCSSUnit( topLeft, unit ) } ${ generateCSSUnit( topRight, unit ) }`
		: generateCSSUnit( topLeft, unit );
}
PK�][e�ݱ�Oultimate-addons-for-gutenberg/blocks-config/uagb-controls/getMatrixAlignment.jsnu�[���export default function getMatrixAlignment( attribute, position, format = '' ) {
	let requiredAlignment = attribute.split( ' ' )[ position - 1 ];
	switch ( format ) {
		case 'flex':
			switch ( requiredAlignment ) {
				case 'top':
				case 'left':
					requiredAlignment = 'flex-start';
					break;
				case 'bottom':
				case 'right':
					requiredAlignment = 'flex-end';
					break;
			}
			break;
	}
	return requiredAlignment;
}
PK�][�^���Qultimate-addons-for-gutenberg/blocks-config/uagb-controls/getPrecisePercentage.jsnu�[���export default function getPrecisePercentage( divisions ) {
	const matchedPercent = parseFloat( ( 100 / divisions ).toString().match( /^-?\d+(?:\.\d{0,2})?/ )[ 0 ] );
	return `${ matchedPercent }%`;
}
PK�][i�Qultimate-addons-for-gutenberg/blocks-config/uagb-controls/changeColorNameToHex.jsnu�[���import maybeGetColorForVariable from '@Controls/maybeGetColorForVariable';
function colourNameToHex( colour ) {
	let result;
	const colours = {
		'black': '#000000',
		'cyan-bluish-gray': '#abb8c3',
		'white': '#ffffff',
		'pale-pink': '#f78da7',
		'luminous-vivid-orange': '#ff6900',
		'luminous-vivid-amber': '#fcb900',
		'light-green-cyan': '#7bdcb5',
		'vivid-green-cyan': '#00d084',
		'pale-cyan-blue': '#8ed1fc',
		'vivid-cyan-blue': '#0693e3',
		'vivid-purple': '#9b51e0',
		'vivid-red': '#cf2e2e',
	};

	if ( typeof colours[ colour?.toLowerCase() ] !== 'undefined' ) {
		result = colours[ colour?.toLowerCase() ];
	} else {
		const colorVal = `var(--wp--preset--color--${ colour })`;
		result = maybeGetColorForVariable( colorVal );
	}
	return result;
}
export default colourNameToHex;
PK�][�0��d	d	Nultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateBorderCSS.jsnu�[���import generateCSSUnit from '@Controls/generateCSSUnit';
const generateBorderCSS = ( attributes, prefix, deviceType = 'desktop' ) => {
	if ( 'default' !== attributes[ prefix + 'BorderStyle' ] ) {
		switch ( deviceType ) {
			case 'tablet':
				deviceType = 'Tablet';
				break;
			case 'mobile':
				deviceType = 'Mobile';
				break;
			default:
				deviceType = '';
		}

		const borderCSS = {};
		const borderStyle = attributes[ prefix + 'BorderStyle' ];
		const borderColor = attributes[ prefix + 'BorderColor' ];

		const borderTopWidth = generateCSSUnit( attributes[ prefix + 'BorderTopWidth' + deviceType ], 'px' );
		const borderRightWidth = generateCSSUnit( attributes[ prefix + 'BorderRightWidth' + deviceType ], 'px' );
		const borderBottomWidth = generateCSSUnit( attributes[ prefix + 'BorderBottomWidth' + deviceType ], 'px' );
		const borderLeftWidth = generateCSSUnit( attributes[ prefix + 'BorderLeftWidth' + deviceType ], 'px' );

		const unitFallback = attributes[ prefix + 'BorderRadiusUnit' + deviceType ] || 'px';

		const borderTopLeftRadius = generateCSSUnit(
			attributes[ prefix + 'BorderTopLeftRadius' + deviceType ],
			unitFallback
		);
		const borderTopRightRadius = generateCSSUnit(
			attributes[ prefix + 'BorderTopRightRadius' + deviceType ],
			unitFallback
		);
		const borderBottomRightRadius = generateCSSUnit(
			attributes[ prefix + 'BorderBottomRightRadius' + deviceType ],
			unitFallback
		);
		const borderBottomLeftRadius = generateCSSUnit(
			attributes[ prefix + 'BorderBottomLeftRadius' + deviceType ],
			unitFallback
		);

		if ( 'none' !== attributes[ prefix + 'BorderStyle' ] && '' !== attributes[ prefix + 'BorderStyle' ] ) {
			borderCSS[ 'border-top-width' ] = borderTopWidth;
			borderCSS[ 'border-right-width' ] = borderRightWidth;
			borderCSS[ 'border-bottom-width' ] = borderBottomWidth;
			borderCSS[ 'border-left-width' ] = borderLeftWidth;
			borderCSS[ 'border-color' ] = borderColor;
		}
		borderCSS[ 'border-style' ] = borderStyle;
		borderCSS[ 'border-top-left-radius' ] = borderTopLeftRadius;
		borderCSS[ 'border-top-right-radius' ] = borderTopRightRadius;
		borderCSS[ 'border-bottom-right-radius' ] = borderBottomRightRadius;
		borderCSS[ 'border-bottom-left-radius' ] = borderBottomLeftRadius;
		return borderCSS;
	}

	// In case of 'default' border style, we return an empty object.
	return {};
};

export default generateBorderCSS;
PK�][��Ҡ��Bultimate-addons-for-gutenberg/blocks-config/uagb-controls/fonts.jsnu�[���const fonts = {"ABeeZee":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"ADLaM Display":{"v":["regular"],"subset":["adlam","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"AR One Sans":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Abel":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Abhaya Libre":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Aboreto":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Abril Fatface":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Abyssinica SIL":{"v":["regular"],"subset":["ethiopic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Aclonica":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Acme":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Actor":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Adamina":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Advent Pro":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Afacad":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Afacad Flux":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Agbalumo":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Agdasima":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Aguafina Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Akatab":{"v":["regular","500","600","700","800","900"],"subset":["latin","latin-ext","tifinagh"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Akaya Kanadaka":{"v":["regular"],"subset":["kannada","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Akaya Telivigala":{"v":["regular"],"subset":["latin","latin-ext","telugu"],"weight":["Default","400"],"i":["normal"]},"Akronim":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Akshar":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Aladin":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Alata":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Alatsi":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Albert Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Aldrich":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Alef":{"v":["regular","700"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Alegreya":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Alegreya SC":{"v":["regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","700","800","900"],"i":["normal","italic"]},"Alegreya Sans":{"v":["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","300","400","500","700","800","900"],"i":["normal","italic"]},"Alegreya Sans SC":{"v":["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","300","400","500","700","800","900"],"i":["normal","italic"]},"Aleo":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Alex Brush":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Alexandria":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Alfa Slab One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Alice":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Alike":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Alike Angular":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Alkalami":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Alkatra":{"v":["regular","500","600","700"],"subset":["bengali","devanagari","latin","latin-ext","oriya"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Allan":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Allerta":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Allerta Stencil":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Allison":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Allura":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Almarai":{"v":["300","regular","700","800"],"subset":["arabic","latin"],"weight":["Default","300","400","700","800"],"i":["normal"]},"Almendra":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Almendra Display":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Almendra SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Alumni Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Alumni Sans Collegiate One":{"v":["regular","italic"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Alumni Sans Inline One":{"v":["regular","italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Alumni Sans Pinstripe":{"v":["regular","italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Amarante":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Amaranth":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Amatic SC":{"v":["regular","700"],"subset":["cyrillic","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Amethysta":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Amiko":{"v":["regular","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","600","700"],"i":["normal"]},"Amiri":{"v":["regular","italic","700","700italic"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Amiri Quran":{"v":["regular"],"subset":["arabic","latin"],"weight":["Default","400"],"i":["normal"]},"Amita":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Anaheim":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Andada Pro":{"v":["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Andika":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Anek Bangla":{"v":["100","200","300","regular","500","600","700","800"],"subset":["bengali","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Devanagari":{"v":["100","200","300","regular","500","600","700","800"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Gujarati":{"v":["100","200","300","regular","500","600","700","800"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Gurmukhi":{"v":["100","200","300","regular","500","600","700","800"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Kannada":{"v":["100","200","300","regular","500","600","700","800"],"subset":["kannada","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Latin":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Malayalam":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","malayalam"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Odia":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","oriya"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Tamil":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","tamil"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Anek Telugu":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","telugu"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Angkor":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Annapurna SIL":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext","math","symbols"],"weight":["Default","400","700"],"i":["normal"]},"Annie Use Your Telescope":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Anonymous Pro":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","greek","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Anta":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Antic":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Antic Didone":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Antic Slab":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Anton":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Anton SC":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Antonio":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Anuphan":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Anybody":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Aoboshi One":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Arapey":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"Arbutus":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Arbutus Slab":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Architects Daughter":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Archivo":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Archivo Black":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Archivo Narrow":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Are You Serious":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Aref Ruqaa":{"v":["regular","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Aref Ruqaa Ink":{"v":["regular","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Arima":{"v":["100","200","300","regular","500","600","700"],"subset":["greek","greek-ext","latin","latin-ext","malayalam","tamil","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Arimo":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Arizonia":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Armata":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Arsenal":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Arsenal SC":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Artifika":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Arvo":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Arya":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Asap":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Asap Condensed":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Asar":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Asset":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Assistant":{"v":["200","300","regular","500","600","700","800"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Astloch":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Asul":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Athiti":{"v":["200","300","regular","500","600","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Atkinson Hyperlegible":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Atma":{"v":["300","regular","500","600","700"],"subset":["bengali","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Atomic Age":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Aubrey":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Audiowide":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Autour One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Average":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Average Sans":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Averia Gruesa Libre":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Averia Libre":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Averia Sans Libre":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Averia Serif Libre":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Azeret Mono":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"B612":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"B612 Mono":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"BIZ UDGothic":{"v":["regular","700"],"subset":["cyrillic","greek-ext","japanese","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"BIZ UDMincho":{"v":["regular","700"],"subset":["cyrillic","greek-ext","japanese","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"BIZ UDPGothic":{"v":["regular","700"],"subset":["cyrillic","greek-ext","japanese","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"BIZ UDPMincho":{"v":["regular","700"],"subset":["cyrillic","greek-ext","japanese","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Babylonica":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bacasime Antique":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bad Script":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bagel Fat One":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bahiana":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bahianita":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bai Jamjuree":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Bakbak One":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ballet":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Baloo 2":{"v":["regular","500","600","700","800"],"subset":["devanagari","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Bhai 2":{"v":["regular","500","600","700","800"],"subset":["gujarati","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Bhaijaan 2":{"v":["regular","500","600","700","800"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Bhaina 2":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","oriya","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Chettan 2":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","malayalam","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Da 2":{"v":["regular","500","600","700","800"],"subset":["bengali","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Paaji 2":{"v":["regular","500","600","700","800"],"subset":["gurmukhi","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Tamma 2":{"v":["regular","500","600","700","800"],"subset":["kannada","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Tammudu 2":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","telugu","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Baloo Thambi 2":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","tamil","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Balsamiq Sans":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Balthazar":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bangers":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Barlow":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Barlow Condensed":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Barlow Semi Condensed":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Barriecito":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Barrio":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Basic":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Baskervville":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Baskervville SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Battambang":{"v":["100","300","regular","700","900"],"subset":["khmer","latin"],"weight":["Default","100","300","400","700","900"],"i":["normal"]},"Baumans":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bayon":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Be Vietnam Pro":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Beau Rivage":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bebas Neue":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Beiruti":{"v":["200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Belanosima":{"v":["regular","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","600","700"],"i":["normal"]},"Belgrano":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bellefair":{"v":["regular"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Belleza":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bellota":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Bellota Text":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"BenchNine":{"v":["300","regular","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Benne":{"v":["regular"],"subset":["kannada","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bentham":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Berkshire Swash":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Besley":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Beth Ellen":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bevan":{"v":["regular","italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"BhuTuka Expanded One":{"v":["regular"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Big Shoulders Display":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Big Shoulders Inline Display":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Big Shoulders Inline Text":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Big Shoulders Stencil Display":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Big Shoulders Stencil Text":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Big Shoulders Text":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Bigelow Rules":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bigshot One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bilbo":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bilbo Swash Caps":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"BioRhyme":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"BioRhyme Expanded":{"v":["200","300","regular","700","800"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","700","800"],"i":["normal"]},"Birthstone":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Birthstone Bounce":{"v":["regular","500"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500"],"i":["normal"]},"Biryani":{"v":["200","300","regular","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","200","300","400","600","700","800","900"],"i":["normal"]},"Bitter":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Black And White Picture":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Black Han Sans":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Black Ops One":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Blaka":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Blaka Hollow":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Blaka Ink":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Blinker":{"v":["100","200","300","regular","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","600","700","800","900"],"i":["normal"]},"Bodoni Moda":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Bodoni Moda SC":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Bokor":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Bona Nova":{"v":["regular","italic","700"],"subset":["cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Bona Nova SC":{"v":["regular","italic","700"],"subset":["cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Bonbon":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bonheur Royale":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Boogaloo":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Borel":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bowlby One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Bowlby One SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Braah One":{"v":["regular"],"subset":["gurmukhi","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Brawler":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Bree Serif":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bricolage Grotesque":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Bruno Ace":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bruno Ace SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Brygada 1918":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Bubblegum Sans":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Bubbler One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Buda":{"v":["300"],"subset":["latin"],"weight":["Default","300","400"],"i":["normal"]},"Buenard":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Bungee":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Hairline":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Inline":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Outline":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Shade":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Spice":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Bungee Tint":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Butcherman":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Butterfly Kids":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cabin":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Cabin Condensed":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Cabin Sketch":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Cactus Classical Serif":{"v":["regular"],"subset":["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Caesar Dressing":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Cagliostro":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Cairo":{"v":["200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Cairo Play":{"v":["200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Caladea":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Calistoga":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Calligraffitti":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Cambay":{"v":["regular","italic","700","700italic"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Cambo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Candal":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Cantarell":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Cantata One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cantora One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Caprasimo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Capriola":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Caramel":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Carattere":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Cardo":{"v":["regular","italic","700"],"subset":["greek","greek-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Carlito":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Carme":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Carrois Gothic":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Carrois Gothic SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Carter One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Castoro":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Castoro Titling":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Catamaran":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","tamil"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Caudex":{"v":["regular","italic","700","700italic"],"subset":["greek","greek-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Caveat":{"v":["regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Caveat Brush":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cedarville Cursive":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ceviche One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Chakra Petch":{"v":["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Changa":{"v":["200","300","regular","500","600","700","800"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Changa One":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"Chango":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Charis SIL":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Charm":{"v":["regular","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Charmonman":{"v":["regular","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Chathura":{"v":["100","300","regular","700","800"],"subset":["latin","telugu"],"weight":["Default","100","300","400","700","800"],"i":["normal"]},"Chau Philomene One":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Chela One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Chelsea Market":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Chenla":{"v":["regular"],"subset":["khmer"],"weight":["Default","400"],"i":["normal"]},"Cherish":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Cherry Bomb One":{"v":["regular"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Cherry Cream Soda":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Cherry Swash":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Chewy":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Chicle":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Chilanka":{"v":["regular"],"subset":["latin","latin-ext","malayalam"],"weight":["Default","400"],"i":["normal"]},"Chivo":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Chivo Mono":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Chocolate Classical Sans":{"v":["regular"],"subset":["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Chokokutai":{"v":["regular"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Chonburi":{"v":["regular"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Cinzel":{"v":["regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Cinzel Decorative":{"v":["regular","700","900"],"subset":["latin","latin-ext"],"weight":["Default","400","700","900"],"i":["normal"]},"Clicker Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Climate Crisis":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Coda":{"v":["regular","800"],"subset":["latin","latin-ext"],"weight":["Default","400","800"],"i":["normal"]},"Codystar":{"v":["300","regular"],"subset":["latin","latin-ext"],"weight":["Default","300","400"],"i":["normal"]},"Coiny":{"v":["regular"],"subset":["latin","latin-ext","tamil","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Combo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Comfortaa":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Comforter":{"v":["regular"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Comforter Brush":{"v":["regular"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Comic Neue":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Coming Soon":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Comme":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Commissioner":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Concert One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Condiment":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Content":{"v":["regular","700"],"subset":["khmer"],"weight":["Default","400","700"],"i":["normal"]},"Contrail One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Convergence":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cookie":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Copse":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Corben":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Corinthia":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Cormorant":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Cormorant Garamond":{"v":["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Cormorant Infant":{"v":["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Cormorant SC":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Cormorant Unicase":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Cormorant Upright":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Courgette":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Courier Prime":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Cousine":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Coustard":{"v":["regular","900"],"subset":["latin"],"weight":["Default","400","900"],"i":["normal"]},"Covered By Your Grace":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Crafty Girls":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Creepster":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Crete Round":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Crimson Pro":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Crimson Text":{"v":["regular","italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","600","700"],"i":["normal","italic"]},"Croissant One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Crushed":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cuprum":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Cute Font":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Cutive":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Cutive Mono":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"DM Mono":{"v":["300","300italic","regular","italic","500","500italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500"],"i":["normal","italic"]},"DM Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"DM Serif Display":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"DM Serif Text":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Dai Banna SIL":{"v":["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","new-tai-lue"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Damion":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Dancing Script":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Danfo":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Dangrek":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Darker Grotesque":{"v":["300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Darumadrop One":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"David Libre":{"v":["regular","500","700"],"subset":["hebrew","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400","500","700"],"i":["normal"]},"Dawning of a New Day":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Days One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Dekko":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Dela Gothic One":{"v":["regular"],"subset":["cyrillic","greek","japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Delicious Handrawn":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Delius":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Delius Swash Caps":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Delius Unicase":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Della Respira":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Denk One":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Devonshire":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Dhurjati":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Didact Gothic":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Diphylleia":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Diplomata":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Diplomata SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Do Hyeon":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Dokdo":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Domine":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Donegal One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Dongle":{"v":["300","regular","700"],"subset":["korean","latin","latin-ext","vietnamese"],"weight":["Default","300","400","700"],"i":["normal"]},"Doppio One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Dorsa":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Dosis":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"DotGothic16":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Doto":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Dr Sugiyama":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Duru Sans":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"DynaPuff":{"v":["regular","500","600","700"],"subset":["cyrillic-ext","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Dynalight":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"EB Garamond":{"v":["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Eagle Lake":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"East Sea Dokdo":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Eater":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Economica":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Eczar":{"v":["regular","500","600","700","800"],"subset":["devanagari","greek","greek-ext","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Edu AU VIC WA NT Arrows":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu AU VIC WA NT Dots":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu AU VIC WA NT Guides":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu AU VIC WA NT Hand":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu AU VIC WA NT Pre":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu NSW ACT Foundation":{"v":["regular","500","600","700"],"subset":["latin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu QLD Beginner":{"v":["regular","500","600","700"],"subset":["latin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu SA Beginner":{"v":["regular","500","600","700"],"subset":["latin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu TAS Beginner":{"v":["regular","500","600","700"],"subset":["latin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Edu VIC WA NT Beginner":{"v":["regular","500","600","700"],"subset":["latin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"El Messiri":{"v":["regular","500","600","700"],"subset":["arabic","cyrillic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Electrolize":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Elsie":{"v":["regular","900"],"subset":["latin","latin-ext"],"weight":["Default","400","900"],"i":["normal"]},"Elsie Swash Caps":{"v":["regular","900"],"subset":["latin","latin-ext"],"weight":["Default","400","900"],"i":["normal"]},"Emblema One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Emilys Candy":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Encode Sans":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Encode Sans Condensed":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Encode Sans Expanded":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Encode Sans SC":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Encode Sans Semi Condensed":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Encode Sans Semi Expanded":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Engagement":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Englebert":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Enriqueta":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Ephesis":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Epilogue":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Erica One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Esteban":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Estonia":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Euphoria Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ewert":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Exo":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Exo 2":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Expletus Sans":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Explora":{"v":["regular"],"subset":["cherokee","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Faculty Glyphic":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fahkwang":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Familjen Grotesk":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Fanwood Text":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Farro":{"v":["300","regular","500","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","700"],"i":["normal"]},"Farsan":{"v":["regular"],"subset":["gujarati","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Fascinate":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fascinate Inline":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Faster One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fasthand":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Fauna One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Faustina":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Federant":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Federo":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Felipa":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fenix":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Festive":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Figtree":{"v":["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Finger Paint":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Finlandica":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Fira Code":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Fira Mono":{"v":["regular","500","700"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","400","500","700"],"i":["normal"]},"Fira Sans":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Fira Sans Condensed":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Fira Sans Extra Condensed":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Fjalla One":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Fjord One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Flamenco":{"v":["300","regular"],"subset":["latin"],"weight":["Default","300","400"],"i":["normal"]},"Flavors":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fleur De Leah":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Flow Block":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Flow Circular":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Flow Rounded":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Foldit":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Fondamento":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Fontdiner Swanky":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Forum":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fragment Mono":{"v":["regular","italic"],"subset":["cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Francois One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Frank Ruhl Libre":{"v":["300","regular","500","600","700","800","900"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Fraunces":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Freckle Face":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fredericka the Great":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Fredoka":{"v":["300","regular","500","600","700"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Freehand":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Freeman":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Fresca":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Frijole":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Fruktur":{"v":["regular","italic"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Fugaz One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Fuggles":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Funnel Display":{"v":["300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800"],"i":["normal"]},"Funnel Sans":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Fustat":{"v":["200","300","regular","500","600","700","800"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Fuzzy Bubbles":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"GFS Didot":{"v":["regular"],"subset":["greek"],"weight":["Default","400"],"i":["normal"]},"GFS Neohellenic":{"v":["regular","italic","700","700italic"],"subset":["greek"],"weight":["Default","400","700"],"i":["normal","italic"]},"Ga Maamli":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Gabarito":{"v":["regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Gabriela":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gaegu":{"v":["300","regular","700"],"subset":["korean","latin"],"weight":["Default","300","400","700"],"i":["normal"]},"Gafata":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gajraj One":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Galada":{"v":["regular"],"subset":["bengali","latin"],"weight":["Default","400"],"i":["normal"]},"Galdeano":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Galindo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gamja Flower":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Gantari":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Gasoek One":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gayathri":{"v":["100","regular","700"],"subset":["latin","malayalam"],"weight":["Default","100","400","700"],"i":["normal"]},"Geist":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Geist Mono":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Gelasio":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Gemunu Libre":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Genos":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cherokee","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Gentium Book Plus":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Gentium Plus":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Geo":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"Geologica":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Georama":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Geostar":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Geostar Fill":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Germania One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Gideon Roman":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Gidugu":{"v":["regular"],"subset":["latin","latin-ext","telugu"],"weight":["Default","400"],"i":["normal"]},"Gilda Display":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Girassol":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Give You Glory":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Glass Antiqua":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Glegoo":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Gloock":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gloria Hallelujah":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Glory":{"v":["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Gluten":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Goblin One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Gochi Hand":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Goldman":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Golos Text":{"v":["regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Gorditas":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Gothic A1":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","korean","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Gotu":{"v":["regular"],"subset":["devanagari","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Goudy Bookletter 1911":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Gowun Batang":{"v":["regular","700"],"subset":["korean","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Gowun Dodum":{"v":["regular"],"subset":["korean","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Graduate":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Grand Hotel":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Grandiflora One":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Grandstander":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Grape Nuts":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Gravitas One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Great Vibes":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Grechen Fuemen":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Grenze":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Grenze Gotisch":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Grey Qo":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Griffy":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gruppo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gudea":{"v":["regular","italic","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Gugi":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Gulzar":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Gupter":{"v":["regular","500","700"],"subset":["latin"],"weight":["Default","400","500","700"],"i":["normal"]},"Gurajada":{"v":["regular"],"subset":["latin","latin-ext","telugu"],"weight":["Default","400"],"i":["normal"]},"Gwendolyn":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Habibi":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hachi Maru Pop":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hahmlet":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["korean","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Halant":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hammersmith One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hanalei":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hanalei Fill":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Handjet":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["arabic","armenian","cyrillic","cyrillic-ext","greek","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Handlee":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Hanken Grotesk":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Hanuman":{"v":["100","300","regular","700","900"],"subset":["khmer","latin"],"weight":["Default","100","300","400","700","900"],"i":["normal"]},"Happy Monkey":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Harmattan":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Headland One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hedvig Letters Sans":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Hedvig Letters Serif":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Heebo":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["hebrew","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Henny Penny":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Hepta Slab":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Herr Von Muellerhoff":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hi Melody":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Hina Mincho":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Hind":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hind Guntur":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","telugu"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hind Madurai":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","tamil"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hind Mysuru":{"v":["300","regular","500","600","700"],"subset":["kannada","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hind Siliguri":{"v":["300","regular","500","600","700"],"subset":["bengali","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Hind Vadodara":{"v":["300","regular","500","600","700"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Holtwood One SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Homemade Apple":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Homenaje":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Honk":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Host Grotesk":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Hubballi":{"v":["regular"],"subset":["kannada","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Hubot Sans":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Hurricane":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"IBM Plex Mono":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"IBM Plex Sans":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"IBM Plex Sans Arabic":{"v":["100","200","300","regular","500","600","700"],"subset":["arabic","cyrillic-ext","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans Condensed":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"IBM Plex Sans Devanagari":{"v":["100","200","300","regular","500","600","700"],"subset":["cyrillic-ext","devanagari","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans Hebrew":{"v":["100","200","300","regular","500","600","700"],"subset":["cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans JP":{"v":["100","200","300","regular","500","600","700"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans KR":{"v":["100","200","300","regular","500","600","700"],"subset":["korean","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans Thai":{"v":["100","200","300","regular","500","600","700"],"subset":["cyrillic-ext","latin","latin-ext","thai"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Sans Thai Looped":{"v":["100","200","300","regular","500","600","700"],"subset":["cyrillic-ext","latin","latin-ext","thai"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"IBM Plex Serif":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"IM Fell DW Pica":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"IM Fell DW Pica SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"IM Fell Double Pica":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"IM Fell Double Pica SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"IM Fell English":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"IM Fell English SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"IM Fell French Canon":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"IM Fell French Canon SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"IM Fell Great Primer":{"v":["regular","italic"],"subset":["latin"],"weight":["Default","400"],"i":["normal","italic"]},"IM Fell Great Primer SC":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ibarra Real Nova":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Iceberg":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Iceland":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Imbue":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Imperial Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Imprima":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Inclusive Sans":{"v":["regular","italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Inconsolata":{"v":["200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Inder":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Indie Flower":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ingrid Darling":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Inika":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Inknut Antiqua":{"v":["300","regular","500","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Inria Sans":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Inria Serif":{"v":["300","300italic","regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal","italic"]},"Inspiration":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Instrument Sans":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Instrument Serif":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Inter":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Inter Tight":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Irish Grover":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Island Moments":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Istok Web":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Italiana":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Italianno":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Itim":{"v":["regular"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Jacquard 12":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Jacquard 12 Charted":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Jacquard 24":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jacquard 24 Charted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jacquarda Bastarda 9":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Jacquarda Bastarda 9 Charted":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Jacques Francois":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Jacques Francois Shadow":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Jaini":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jaini Purva":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jaldi":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Jaro":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Jersey 10":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 10 Charted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 15":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 15 Charted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 20":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 20 Charted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 25":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jersey 25 Charted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"JetBrains Mono":{"v":["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Jim Nightshade":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Joan":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jockey One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jolly Lodger":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jomhuria":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jomolhari":{"v":["regular"],"subset":["latin","tibetan"],"weight":["Default","400"],"i":["normal"]},"Josefin Sans":{"v":["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"Josefin Slab":{"v":["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"Jost":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Joti One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Jua":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Judson":{"v":["regular","italic","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Julee":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Julius Sans One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Junge":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Jura":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","kayah-li","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Just Another Hand":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Just Me Again Down Here":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"K2D":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Kablammo":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Kadwa":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Kaisei Decol":{"v":["regular","500","700"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400","500","700"],"i":["normal"]},"Kaisei HarunoUmi":{"v":["regular","500","700"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400","500","700"],"i":["normal"]},"Kaisei Opti":{"v":["regular","500","700"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400","500","700"],"i":["normal"]},"Kaisei Tokumin":{"v":["regular","500","700","800"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400","500","700","800"],"i":["normal"]},"Kalam":{"v":["300","regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Kalnia":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext","math"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Kalnia Glaze":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Kameron":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Kanit":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Kantumruy Pro":{"v":["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],"subset":["khmer","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"Karantina":{"v":["300","regular","700"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Karla":{"v":["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Karla Tamil Inclined":{"v":["regular","700"],"subset":["tamil"],"weight":["Default","400","700"],"i":["normal"]},"Karla Tamil Upright":{"v":["regular","700"],"subset":["tamil"],"weight":["Default","400","700"],"i":["normal"]},"Karma":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Katibeh":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kaushan Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kavivanar":{"v":["regular"],"subset":["latin","latin-ext","tamil"],"weight":["Default","400"],"i":["normal"]},"Kavoon":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kay Pho Du":{"v":["regular","500","600","700"],"subset":["kayah-li","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Kdam Thmor Pro":{"v":["regular"],"subset":["khmer","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Keania One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kelly Slab":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kenia":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Khand":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Khmer":{"v":["regular"],"subset":["khmer"],"weight":["Default","400"],"i":["normal"]},"Khula":{"v":["300","regular","600","700","800"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","600","700","800"],"i":["normal"]},"Kings":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Kirang Haerang":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Kite One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kiwi Maru":{"v":["300","regular","500"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","300","400","500"],"i":["normal"]},"Klee One":{"v":["regular","600"],"subset":["cyrillic","greek-ext","japanese","latin","latin-ext"],"weight":["Default","400","600"],"i":["normal"]},"Knewave":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"KoHo":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Kodchasan":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Kode Mono":{"v":["regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Koh Santepheap":{"v":["100","300","regular","700","900"],"subset":["khmer","latin"],"weight":["Default","100","300","400","700","900"],"i":["normal"]},"Kolker Brush":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Konkhmer Sleokchher":{"v":["regular"],"subset":["khmer","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kosugi":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kosugi Maru":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kotta One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Koulen":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Kranky":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Kreon":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Kristi":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Krona One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Krub":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Kufam":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Kulim Park":{"v":["200","200italic","300","300italic","regular","italic","600","600italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","600","700"],"i":["normal","italic"]},"Kumar One":{"v":["regular"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kumar One Outline":{"v":["regular"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Kumbh Sans":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Kurale":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"LXGW WenKai Mono TC":{"v":["300","regular","700"],"subset":["chinese-hongkong","cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","lisu","vietnamese"],"weight":["Default","300","400","700"],"i":["normal"]},"LXGW WenKai TC":{"v":["300","regular","700"],"subset":["chinese-hongkong","cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","lisu","vietnamese"],"weight":["Default","300","400","700"],"i":["normal"]},"La Belle Aurore":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Labrada":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Lacquer":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Laila":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Lakki Reddy":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Lalezar":{"v":["regular"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Lancelot":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Langar":{"v":["regular"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lateef":{"v":["200","300","regular","500","600","700","800"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Lato":{"v":["100","100italic","300","300italic","regular","italic","700","700italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","300","400","700","900"],"i":["normal","italic"]},"Lavishly Yours":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"League Gothic":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"League Script":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"League Spartan":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Leckerli One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ledger":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lekton":{"v":["regular","italic","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Lemon":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lemonada":{"v":["300","regular","500","600","700"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Lexend":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Deca":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Exa":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Giga":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Mega":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Peta":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Tera":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lexend Zetta":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Libre Barcode 128":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode 128 Text":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode 39":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode 39 Extended":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode 39 Extended Text":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode 39 Text":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Barcode EAN13 Text":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Libre Baskerville":{"v":["regular","italic","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Libre Bodoni":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Libre Caslon Display":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Libre Caslon Text":{"v":["regular","italic","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Libre Franklin":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Licorice":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Life Savers":{"v":["regular","700","800"],"subset":["latin","latin-ext"],"weight":["Default","400","700","800"],"i":["normal"]},"Lilita One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lily Script One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Limelight":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Linden Hill":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Linefont":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Lisu Bosa":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","lisu"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Literata":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Liu Jian Mao Cao":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"Livvic":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","900","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","900"],"i":["normal","italic"]},"Lobster":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Lobster Two":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Londrina Outline":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Londrina Shadow":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Londrina Sketch":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Londrina Solid":{"v":["100","300","regular","900"],"subset":["latin"],"weight":["Default","100","300","400","900"],"i":["normal"]},"Long Cang":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"Lora":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Love Light":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Love Ya Like A Sister":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Loved by the King":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lovers Quarrel":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Luckiest Guy":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lugrasimo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lumanosimo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Lunasima":{"v":["regular","700"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Lusitana":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Lustria":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Luxurious Roman":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Luxurious Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"M PLUS 1":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"M PLUS 1 Code":{"v":["100","200","300","regular","500","600","700"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"M PLUS 1p":{"v":["100","300","regular","500","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","300","400","500","700","800","900"],"i":["normal"]},"M PLUS 2":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"M PLUS Code Latin":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"M PLUS Rounded 1c":{"v":["100","300","regular","500","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","300","400","500","700","800","900"],"i":["normal"]},"Ma Shan Zheng":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"Macondo":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Macondo Swash Caps":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Mada":{"v":["200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Madimi One":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Magra":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Maiden Orange":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Maitree":{"v":["200","300","regular","500","600","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Major Mono Display":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mako":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mali":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Mallanna":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Maname":{"v":["regular"],"subset":["latin","latin-ext","sinhala","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mandali":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Manjari":{"v":["100","regular","700"],"subset":["latin","latin-ext","malayalam"],"weight":["Default","100","400","700"],"i":["normal"]},"Manrope":{"v":["200","300","regular","500","600","700","800"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Mansalva":{"v":["regular"],"subset":["greek","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Manuale":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Marcellus":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Marcellus SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Marck Script":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Margarine":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Marhey":{"v":["300","regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Markazi Text":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Marko One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Marmelad":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Martel":{"v":["200","300","regular","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","200","300","400","600","700","800","900"],"i":["normal"]},"Martel Sans":{"v":["200","300","regular","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","200","300","400","600","700","800","900"],"i":["normal"]},"Martian Mono":{"v":["100","200","300","regular","500","600","700","800"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Marvel":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Mate":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Mate SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Matemasie":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Material Icons":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Material Icons Outlined":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Material Icons Round":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Material Icons Sharp":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Material Icons Two Tone":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Material Symbols Outlined":{"v":["100","200","300","regular","500","600","700"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Material Symbols Rounded":{"v":["100","200","300","regular","500","600","700"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Material Symbols Sharp":{"v":["100","200","300","regular","500","600","700"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Maven Pro":{"v":["regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"McLaren":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mea Culpa":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Meddon":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"MedievalSharp":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Medula One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Meera Inimai":{"v":["regular"],"subset":["latin","tamil"],"weight":["Default","400"],"i":["normal"]},"Megrim":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Meie Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Meow Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Merienda":{"v":["300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Merriweather":{"v":["300","300italic","regular","italic","700","700italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","700","900"],"i":["normal","italic"]},"Merriweather Sans":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Metal":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Metal Mania":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Metamorphous":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Metrophobic":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Michroma":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Micro 5":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Micro 5 Charted":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Milonga":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Miltonian":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Miltonian Tattoo":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Mina":{"v":["regular","700"],"subset":["bengali","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Mingzat":{"v":["regular"],"subset":["latin","latin-ext","lepcha"],"weight":["Default","400"],"i":["normal"]},"Miniver":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Miriam Libre":{"v":["regular","500","600","700"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Mirza":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Miss Fajardose":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mitr":{"v":["200","300","regular","500","600","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Mochiy Pop One":{"v":["regular"],"subset":["japanese","latin"],"weight":["Default","400"],"i":["normal"]},"Mochiy Pop P One":{"v":["regular"],"subset":["japanese","latin"],"weight":["Default","400"],"i":["normal"]},"Modak":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Modern Antiqua":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Moderustic":{"v":["300","regular","500","600","700","800"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","300","400","500","600","700","800"],"i":["normal"]},"Mogra":{"v":["regular"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mohave":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Moirai One":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Molengo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Molle":{"v":["italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Mona Sans":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Monda":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Monofett":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Monomaniac One":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Monoton":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Monsieur La Doulaise":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Montaga":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Montagu Slab":{"v":["100","200","300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"MonteCarlo":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Montez":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Montserrat":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Montserrat Alternates":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Montserrat Subrayada":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Montserrat Underline":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Moo Lah Lah":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mooli":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Moon Dance":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Moul":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Moulpali":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Mountains of Christmas":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Mouse Memoirs":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mr Bedfort":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mr Dafoe":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mr De Haviland":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mrs Saint Delafield":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Mrs Sheppards":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ms Madi":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mukta":{"v":["200","300","regular","500","600","700","800"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Mukta Mahee":{"v":["200","300","regular","500","600","700","800"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Mukta Malar":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","tamil"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Mukta Vaani":{"v":["200","300","regular","500","600","700","800"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Mulish":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Murecho":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","japanese","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"MuseoModerno":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"My Soul":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mynerve":{"v":["regular"],"subset":["greek","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Mystery Quest":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"NTR":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Nabla":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","math","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Namdhinggo":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext","limbu"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Nanum Brush Script":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Nanum Gothic":{"v":["regular","700","800"],"subset":["korean","latin"],"weight":["Default","400","700","800"],"i":["normal"]},"Nanum Gothic Coding":{"v":["regular","700"],"subset":["korean","latin"],"weight":["Default","400","700"],"i":["normal"]},"Nanum Myeongjo":{"v":["regular","700","800"],"subset":["korean","latin"],"weight":["Default","400","700","800"],"i":["normal"]},"Nanum Pen Script":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Narnoor":{"v":["regular","500","600","700","800"],"subset":["gunjala-gondi","latin","latin-ext","math","symbols"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Neonderthaw":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Nerko One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Neucha":{"v":["regular"],"subset":["cyrillic","latin"],"weight":["Default","400"],"i":["normal"]},"Neuton":{"v":["200","300","regular","italic","700","800"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","700","800"],"i":["normal","italic"]},"New Amsterdam":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"New Rocker":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"New Tegomin":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"News Cycle":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Newsreader":{"v":["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Niconne":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Niramit":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal","italic"]},"Nixie One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Nobile":{"v":["regular","italic","500","500italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","700"],"i":["normal","italic"]},"Nokora":{"v":["100","300","regular","700","900"],"subset":["khmer","latin"],"weight":["Default","100","300","400","700","900"],"i":["normal"]},"Norican":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nosifer":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Notable":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Nothing You Could Do":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Noticia Text":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Noto Color Emoji":{"v":["regular"],"subset":["emoji"],"weight":["Default","400"],"i":["normal"]},"Noto Emoji":{"v":["300","regular","500","600","700"],"subset":["emoji"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Noto Kufi Arabic":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Music":{"v":["regular"],"subset":["latin","latin-ext","music"],"weight":["Default","400"],"i":["normal"]},"Noto Naskh Arabic":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext","math","symbols"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Nastaliq Urdu":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Rashi Hebrew":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["greek-ext","hebrew","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","devanagari","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Noto Sans Adlam":{"v":["regular","500","600","700"],"subset":["adlam","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Adlam Unjoined":{"v":["regular","500","600","700"],"subset":["adlam","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Anatolian Hieroglyphs":{"v":["regular"],"subset":["anatolian-hieroglyphs","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Arabic":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["arabic"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Armenian":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["armenian","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Avestan":{"v":["regular"],"subset":["avestan","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Balinese":{"v":["regular","500","600","700"],"subset":["balinese","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Bamum":{"v":["regular","500","600","700"],"subset":["bamum","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Bassa Vah":{"v":["regular","500","600","700"],"subset":["bassa-vah","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Batak":{"v":["regular"],"subset":["batak","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Bengali":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["bengali","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Bhaiksuki":{"v":["regular"],"subset":["bhaiksuki","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Brahmi":{"v":["regular"],"subset":["brahmi","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Buginese":{"v":["regular"],"subset":["buginese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Buhid":{"v":["regular"],"subset":["buhid","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Canadian Aboriginal":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["canadian-aboriginal","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Carian":{"v":["regular"],"subset":["carian","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Caucasian Albanian":{"v":["regular"],"subset":["caucasian-albanian","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Chakma":{"v":["regular"],"subset":["chakma","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Cham":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cham","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Cherokee":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cherokee","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Chorasmian":{"v":["regular"],"subset":["chorasmian","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Coptic":{"v":["regular"],"subset":["coptic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Cuneiform":{"v":["regular"],"subset":["cuneiform","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Cypriot":{"v":["regular"],"subset":["cypriot","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Cypro Minoan":{"v":["regular"],"subset":["cypro-minoan","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Deseret":{"v":["regular"],"subset":["deseret","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Devanagari":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Display":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Noto Sans Duployan":{"v":["regular","700"],"subset":["duployan","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Noto Sans Egyptian Hieroglyphs":{"v":["regular"],"subset":["egyptian-hieroglyphs","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Elbasan":{"v":["regular"],"subset":["elbasan","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Elymaic":{"v":["regular"],"subset":["elymaic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Ethiopic":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["ethiopic","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Georgian":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic-ext","georgian","greek-ext","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Glagolitic":{"v":["regular"],"subset":["cyrillic-ext","glagolitic","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Gothic":{"v":["regular"],"subset":["gothic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Grantha":{"v":["regular"],"subset":["grantha","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Gujarati":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["gujarati","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Gunjala Gondi":{"v":["regular","500","600","700"],"subset":["gunjala-gondi","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Gurmukhi":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans HK":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Hanifi Rohingya":{"v":["regular","500","600","700"],"subset":["hanifi-rohingya","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Hanunoo":{"v":["regular"],"subset":["hanunoo","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Hatran":{"v":["regular"],"subset":["hatran","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Hebrew":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic-ext","greek-ext","hebrew","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Imperial Aramaic":{"v":["regular"],"subset":["imperial-aramaic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Indic Siyaq Numbers":{"v":["regular"],"subset":["indic-siyaq-numbers","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Inscriptional Pahlavi":{"v":["regular"],"subset":["inscriptional-pahlavi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Inscriptional Parthian":{"v":["regular"],"subset":["inscriptional-parthian","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans JP":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","japanese","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Javanese":{"v":["regular","500","600","700"],"subset":["javanese","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans KR":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","korean","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Kaithi":{"v":["regular"],"subset":["kaithi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Kannada":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["kannada","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Kawi":{"v":["regular","500","600","700"],"subset":["kawi","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Kayah Li":{"v":["regular","500","600","700"],"subset":["kayah-li","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Kharoshthi":{"v":["regular"],"subset":["kharoshthi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Khmer":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["khmer","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Khojki":{"v":["regular"],"subset":["khojki","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Khudawadi":{"v":["regular"],"subset":["khudawadi","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Lao":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["lao","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Lao Looped":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["lao","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Lepcha":{"v":["regular"],"subset":["latin","latin-ext","lepcha"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Limbu":{"v":["regular"],"subset":["latin","latin-ext","limbu"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Linear A":{"v":["regular"],"subset":["latin","latin-ext","linear-a"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Linear B":{"v":["regular"],"subset":["latin","latin-ext","linear-b"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Lisu":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","lisu"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Lycian":{"v":["regular"],"subset":["lycian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Lydian":{"v":["regular"],"subset":["latin","latin-ext","lydian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Mahajani":{"v":["regular"],"subset":["latin","latin-ext","mahajani"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Malayalam":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","malayalam"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Mandaic":{"v":["regular"],"subset":["latin","latin-ext","mandaic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Manichaean":{"v":["regular"],"subset":["latin","latin-ext","manichaean"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Marchen":{"v":["regular"],"subset":["latin","latin-ext","marchen"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Masaram Gondi":{"v":["regular"],"subset":["latin","latin-ext","masaram-gondi"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Math":{"v":["regular"],"subset":["math"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Mayan Numerals":{"v":["regular"],"subset":["latin","latin-ext","mayan-numerals"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Medefaidrin":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","medefaidrin"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Meetei Mayek":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","meetei-mayek"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Mende Kikakui":{"v":["regular"],"subset":["latin","latin-ext","mende-kikakui"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Meroitic":{"v":["regular"],"subset":["latin","latin-ext","meroitic","meroitic-cursive","meroitic-hieroglyphs"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Miao":{"v":["regular"],"subset":["latin","latin-ext","miao"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Modi":{"v":["regular"],"subset":["latin","latin-ext","modi"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Mongolian":{"v":["regular"],"subset":["latin","latin-ext","math","mongolian","symbols"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Mono":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Mro":{"v":["regular"],"subset":["latin","latin-ext","mro"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Multani":{"v":["regular"],"subset":["latin","latin-ext","multani"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Myanmar":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["myanmar"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans NKo":{"v":["regular"],"subset":["latin","latin-ext","nko"],"weight":["Default","400"],"i":["normal"]},"Noto Sans NKo Unjoined":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","nko"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Nabataean":{"v":["regular"],"subset":["latin","latin-ext","nabataean"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Nag Mundari":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","nag-mundari"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Nandinagari":{"v":["regular"],"subset":["latin","latin-ext","nandinagari"],"weight":["Default","400"],"i":["normal"]},"Noto Sans New Tai Lue":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","new-tai-lue"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Newa":{"v":["regular"],"subset":["latin","latin-ext","newa"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Nushu":{"v":["regular"],"subset":["latin","latin-ext","nushu"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Ogham":{"v":["regular"],"subset":["latin","latin-ext","ogham"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Ol Chiki":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","ol-chiki"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Old Hungarian":{"v":["regular"],"subset":["latin","latin-ext","old-hungarian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old Italic":{"v":["regular"],"subset":["latin","latin-ext","old-italic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old North Arabian":{"v":["regular"],"subset":["latin","latin-ext","old-north-arabian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old Permic":{"v":["regular"],"subset":["cyrillic-ext","latin","latin-ext","old-permic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old Persian":{"v":["regular"],"subset":["latin","latin-ext","old-persian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old Sogdian":{"v":["regular"],"subset":["latin","latin-ext","old-sogdian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old South Arabian":{"v":["regular"],"subset":["latin","latin-ext","old-south-arabian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Old Turkic":{"v":["regular"],"subset":["latin","latin-ext","old-turkic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Oriya":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","oriya"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Osage":{"v":["regular"],"subset":["latin","latin-ext","osage"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Osmanya":{"v":["regular"],"subset":["latin","latin-ext","osmanya"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Pahawh Hmong":{"v":["regular"],"subset":["latin","latin-ext","pahawh-hmong"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Palmyrene":{"v":["regular"],"subset":["latin","latin-ext","palmyrene"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Pau Cin Hau":{"v":["regular"],"subset":["latin","latin-ext","pau-cin-hau"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Phags Pa":{"v":["regular"],"subset":["phags-pa"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Phoenician":{"v":["regular"],"subset":["latin","latin-ext","phoenician"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Psalter Pahlavi":{"v":["regular"],"subset":["latin","latin-ext","psalter-pahlavi"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Rejang":{"v":["regular"],"subset":["latin","latin-ext","rejang"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Runic":{"v":["regular"],"subset":["latin","latin-ext","runic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans SC":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["chinese-simplified","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Samaritan":{"v":["regular"],"subset":["latin","latin-ext","samaritan"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Saurashtra":{"v":["regular"],"subset":["latin","latin-ext","saurashtra"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Sharada":{"v":["regular"],"subset":["latin","latin-ext","sharada"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Shavian":{"v":["regular"],"subset":["latin","latin-ext","shavian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Siddham":{"v":["regular"],"subset":["latin","latin-ext","siddham"],"weight":["Default","400"],"i":["normal"]},"Noto Sans SignWriting":{"v":["regular"],"subset":["latin","latin-ext","signwriting"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Sinhala":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Sogdian":{"v":["regular"],"subset":["latin","latin-ext","sogdian"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Sora Sompeng":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","sora-sompeng"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Soyombo":{"v":["regular"],"subset":["latin","latin-ext","soyombo"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Sundanese":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","sundanese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Syloti Nagri":{"v":["regular"],"subset":["latin","latin-ext","syloti-nagri"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Symbols":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Symbols 2":{"v":["regular"],"subset":["braille","latin","latin-ext","math","mayan-numerals","symbols"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Syriac":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","syriac"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Syriac Eastern":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","syriac"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans TC":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["chinese-traditional","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Tagalog":{"v":["regular"],"subset":["latin","latin-ext","tagalog"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tagbanwa":{"v":["regular"],"subset":["latin","latin-ext","tagbanwa"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tai Le":{"v":["regular"],"subset":["latin","latin-ext","tai-le"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tai Tham":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","tai-tham"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Tai Viet":{"v":["regular"],"subset":["latin","latin-ext","tai-viet"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Takri":{"v":["regular"],"subset":["latin","latin-ext","takri"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tamil":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","tamil"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Tamil Supplement":{"v":["regular"],"subset":["latin","latin-ext","tamil-supplement"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tangsa":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","tangsa"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Telugu":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","telugu"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Thaana":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","thaana"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Thai":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","thai"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Thai Looped":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","thai"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Sans Tifinagh":{"v":["regular"],"subset":["latin","latin-ext","tifinagh"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Tirhuta":{"v":["regular"],"subset":["latin","latin-ext","tirhuta"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Ugaritic":{"v":["regular"],"subset":["latin","latin-ext","ugaritic"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Vai":{"v":["regular"],"subset":["latin","latin-ext","vai"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Vithkuqi":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vithkuqi"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Sans Wancho":{"v":["regular"],"subset":["latin","latin-ext","wancho"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Warang Citi":{"v":["regular"],"subset":["latin","latin-ext","warang-citi"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Yi":{"v":["regular"],"subset":["latin","latin-ext","yi"],"weight":["Default","400"],"i":["normal"]},"Noto Sans Zanabazar Square":{"v":["regular"],"subset":["latin","latin-ext","zanabazar-square"],"weight":["Default","400"],"i":["normal"]},"Noto Serif":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Noto Serif Ahom":{"v":["regular"],"subset":["ahom","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Armenian":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["armenian","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Balinese":{"v":["regular"],"subset":["balinese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Bengali":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["bengali","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Devanagari":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Display":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Noto Serif Dogra":{"v":["regular"],"subset":["dogra","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Ethiopic":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["ethiopic","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Georgian":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["georgian","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Grantha":{"v":["regular"],"subset":["grantha","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Gujarati":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["gujarati","latin","latin-ext","math","symbols"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Gurmukhi":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif HK":{"v":["200","300","regular","500","600","700","800","900"],"subset":["chinese-hongkong","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Hebrew":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif JP":{"v":["200","300","regular","500","600","700","800","900"],"subset":["cyrillic","japanese","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif KR":{"v":["200","300","regular","500","600","700","800","900"],"subset":["cyrillic","korean","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Kannada":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["kannada","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Khitan Small Script":{"v":["regular"],"subset":["khitan-small-script","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Khmer":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["khmer","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Khojki":{"v":["regular","500","600","700"],"subset":["khojki","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Serif Lao":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["lao","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Makasar":{"v":["regular"],"subset":["latin","latin-ext","makasar"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Malayalam":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","malayalam"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Myanmar":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["myanmar"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif NP Hmong":{"v":["regular","500","600","700"],"subset":["latin","nyiakeng-puachue-hmong"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Serif Old Uyghur":{"v":["regular"],"subset":["latin","latin-ext","old-uyghur"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Oriya":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","oriya"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Serif Ottoman Siyaq":{"v":["regular"],"subset":["latin","latin-ext","ottoman-siyaq-numbers"],"weight":["Default","400"],"i":["normal"]},"Noto Serif SC":{"v":["200","300","regular","500","600","700","800","900"],"subset":["chinese-simplified","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Sinhala":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif TC":{"v":["200","300","regular","500","600","700","800","900"],"subset":["chinese-traditional","cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Tamil":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","tamil"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Noto Serif Tangut":{"v":["regular"],"subset":["latin","latin-ext","tangut"],"weight":["Default","400"],"i":["normal"]},"Noto Serif Telugu":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","telugu"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Thai":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","thai"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Tibetan":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","tibetan"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Noto Serif Toto":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","toto"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Serif Vithkuqi":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","vithkuqi"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Serif Yezidi":{"v":["regular","500","600","700"],"subset":["latin","latin-ext","yezidi"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Noto Traditional Nushu":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","nushu"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Noto Znamenny Musical Notation":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","znamenny"],"weight":["Default","400"],"i":["normal"]},"Nova Cut":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Flat":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Mono":{"v":["regular"],"subset":["greek","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Oval":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Round":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Slim":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Nova Square":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Numans":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Nunito":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Nunito Sans":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Nuosu SIL":{"v":["regular"],"subset":["latin","latin-ext","yi"],"weight":["Default","400"],"i":["normal"]},"Odibee Sans":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Odor Mean Chey":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Offside":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Oi":{"v":["regular"],"subset":["arabic","cyrillic","cyrillic-ext","greek","latin","latin-ext","tamil","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Ojuju":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Old Standard TT":{"v":["regular","italic","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Oldenburg":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ole":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Oleo Script":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Oleo Script Swash Caps":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Onest":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Oooh Baby":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Open Sans":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Oranienbaum":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Orbit":{"v":["regular"],"subset":["korean","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Orbitron":{"v":["regular","500","600","700","800","900"],"subset":["latin"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Oregano":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Orelega One":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Orienta":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Original Surfer":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Oswald":{"v":["200","300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Outfit":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Over the Rainbow":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Overlock":{"v":["regular","italic","700","700italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700","900"],"i":["normal","italic"]},"Overlock SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Overpass":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Overpass Mono":{"v":["300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Ovo":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Oxanium":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Oxygen":{"v":["300","regular","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Oxygen Mono":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"PT Mono":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"PT Sans":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"PT Sans Caption":{"v":["regular","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"PT Sans Narrow":{"v":["regular","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"PT Serif":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"PT Serif Caption":{"v":["regular","italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Pacifico":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Padauk":{"v":["regular","700"],"subset":["latin","latin-ext","myanmar"],"weight":["Default","400","700"],"i":["normal"]},"Padyakke Expanded One":{"v":["regular"],"subset":["kannada","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Palanquin":{"v":["100","200","300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal"]},"Palanquin Dark":{"v":["regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Palette Mosaic":{"v":["regular"],"subset":["japanese","latin"],"weight":["Default","400"],"i":["normal"]},"Pangolin":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Paprika":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Parisienne":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Parkinsans":{"v":["300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800"],"i":["normal"]},"Passero One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Passion One":{"v":["regular","700","900"],"subset":["latin","latin-ext"],"weight":["Default","400","700","900"],"i":["normal"]},"Passions Conflict":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Pathway Extreme":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Pathway Gothic One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Patrick Hand":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Patrick Hand SC":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Pattaya":{"v":["regular"],"subset":["cyrillic","latin","latin-ext","thai","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Patua One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Pavanam":{"v":["regular"],"subset":["latin","latin-ext","tamil"],"weight":["Default","400"],"i":["normal"]},"Paytone One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Peddana":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Peralta":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Permanent Marker":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Petemoss":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Petit Formal Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Petrona":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Phetsarath":{"v":["regular","700"],"subset":["lao"],"weight":["Default","400","700"],"i":["normal"]},"Philosopher":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Phudu":{"v":["300","regular","500","600","700","800","900"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Piazzolla":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Piedra":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Pinyon Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Pirata One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Pixelify Sans":{"v":["regular","500","600","700"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Plaster":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Platypi":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Play":{"v":["regular","700"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Playball":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Playfair":{"v":["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Playfair Display":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Playfair Display SC":{"v":["regular","italic","700","700italic","900","900italic"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400","700","900"],"i":["normal","italic"]},"Playpen Sans":{"v":["100","200","300","regular","500","600","700","800"],"subset":["emoji","latin","latin-ext","math","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Playwrite AR":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite AT":{"v":["100","200","300","regular","100italic","200italic","300italic","italic"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal","italic"]},"Playwrite AU NSW":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite AU QLD":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite AU SA":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite AU TAS":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite AU VIC":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite BE VLG":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite BE WAL":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite BR":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite CA":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite CL":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite CO":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite CU":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite CZ":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DE Grund":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DE LA":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DE SAS":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DE VA":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DK Loopet":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite DK Uloopet":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite ES":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite ES Deco":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite FR Moderne":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite FR Trad":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite GB J":{"v":["100","200","300","regular","100italic","200italic","300italic","italic"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal","italic"]},"Playwrite GB S":{"v":["100","200","300","regular","100italic","200italic","300italic","italic"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal","italic"]},"Playwrite HR":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite HR Lijeva":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite HU":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite ID":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite IE":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite IN":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite IS":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite IT Moderna":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite IT Trad":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite MX":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite NG Modern":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite NL":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite NO":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite NZ":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite PE":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite PL":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite PT":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite RO":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite SK":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite TZ":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite US Modern":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite US Trad":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite VN":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Playwrite ZA":{"v":["100","200","300","regular"],"subset":["latin"],"weight":["Default","100","200","300","400"],"i":["normal"]},"Plus Jakarta Sans":{"v":["200","300","regular","500","600","700","800","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Podkova":{"v":["regular","500","600","700","800"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Poetsen One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Poiret One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Poller One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Poltawski Nowy":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Poly":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Pompiere":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ponnala":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Pontano Sans":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Poor Story":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Poppins":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Port Lligat Sans":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Port Lligat Slab":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Potta One":{"v":["regular"],"subset":["japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Pragati Narrow":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Praise":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Prata":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Preahvihear":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Press Start 2P":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Pridi":{"v":["200","300","regular","500","600","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Princess Sofia":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Prociono":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Prompt":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Prosto One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Protest Guerrilla":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Protest Revolution":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Protest Riot":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Protest Strike":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Proza Libre":{"v":["regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Public Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Puppies Play":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Puritan":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Purple Purse":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Qahiri":{"v":["regular"],"subset":["arabic","latin"],"weight":["Default","400"],"i":["normal"]},"Quando":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Quantico":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Quattrocento":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Quattrocento Sans":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Questrial":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Quicksand":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Quintessential":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Qwigley":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Qwitcher Grypen":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"REM":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Racing Sans One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Radio Canada":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["canadian-aboriginal","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Radio Canada Big":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Radley":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Rajdhani":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Rakkas":{"v":["regular"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Raleway":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Raleway Dots":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ramabhadra":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Ramaraja":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Rambla":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Rammetto One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rampart One":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ranchers":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rancho":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ranga":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Rasa":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["gujarati","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Rationale":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Ravi Prakash":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Readex Pro":{"v":["200","300","regular","500","600","700"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Recursive":{"v":["300","regular","500","600","700","800","900"],"subset":["cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Red Hat Display":{"v":["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Red Hat Mono":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Red Hat Text":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Red Rose":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Redacted":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Redacted Script":{"v":["300","regular","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Reddit Mono":{"v":["200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Reddit Sans":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Reddit Sans Condensed":{"v":["200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Redressed":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Reem Kufi":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Reem Kufi Fun":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Reem Kufi Ink":{"v":["regular"],"subset":["arabic","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Reenie Beanie":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Reggae One":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rethink Sans":{"v":["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Revalia":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rhodium Libre":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ribeye":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ribeye Marrow":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Righteous":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Risque":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Road Rage":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Roboto":{"v":["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","900","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","300","400","500","700","900"],"i":["normal","italic"]},"Roboto Condensed":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Roboto Flex":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Roboto Mono":{"v":["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"Roboto Serif":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Roboto Slab":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Rochester":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Rock 3D":{"v":["regular"],"subset":["japanese","latin"],"weight":["Default","400"],"i":["normal"]},"Rock Salt":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"RocknRoll One":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rokkitt":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Romanesco":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ropa Sans":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Rosario":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Rosarivo":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Rouge Script":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Rowdies":{"v":["300","regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","700"],"i":["normal"]},"Rozha One":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik":{"v":["300","regular","500","600","700","800","900","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["arabic","cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Rubik 80s Fade":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Beastly":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Broken Fax":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Bubbles":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Burned":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Dirt":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Distressed":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Doodle Shadow":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Doodle Triangles":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Gemstones":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Glitch":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Glitch Pop":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Iso":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Lines":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Maps":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Marker Hatch":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Maze":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Microbe":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Mono One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Moonrocks":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Pixels":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Puddles":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Scribble":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Rubik Spray Paint":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Storm":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Vinyl":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rubik Wet Paint":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ruda":{"v":["regular","500","600","700","800","900"],"subset":["cyrillic","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Rufina":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Ruge Boogie":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Ruluko":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Rum Raisin":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ruslan Display":{"v":["regular"],"subset":["cyrillic","latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Russo One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ruthie":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Ruwudu":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Rye":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"STIX Two Text":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"SUSE":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Sacramento":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sahitya":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Sail":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Saira":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Saira Condensed":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Saira Extra Condensed":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Saira Semi Condensed":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Saira Stencil One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Salsa":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Sanchez":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Sancreek":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sankofa Display":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sansita":{"v":["regular","italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700","800","900"],"i":["normal","italic"]},"Sansita Swashed":{"v":["300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800","900"],"i":["normal"]},"Sarabun":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Sarala":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Sarina":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sarpanch":{"v":["regular","500","600","700","800","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Sassy Frass":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Satisfy":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Sawarabi Gothic":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sawarabi Mincho":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Scada":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Scheherazade New":{"v":["regular","500","600","700"],"subset":["arabic","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal"]},"Schibsted Grotesk":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Schoolbell":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Scope One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Seaweed Script":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Secular One":{"v":["regular"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sedan":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Sedan SC":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sedgwick Ave":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sedgwick Ave Display":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sen":{"v":["regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Send Flowers":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sevillana":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Seymour One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Shadows Into Light":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Shadows Into Light Two":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Shalimar":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Shantell Sans":{"v":["300","regular","500","600","700","800","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700","800"],"i":["normal","italic"]},"Shanti":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Share":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Share Tech":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Share Tech Mono":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Shippori Antique":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Shippori Antique B1":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Shippori Mincho":{"v":["regular","500","600","700","800"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Shippori Mincho B1":{"v":["regular","500","600","700","800"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Shizuru":{"v":["regular"],"subset":["japanese","latin"],"weight":["Default","400"],"i":["normal"]},"Shojumaru":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Short Stack":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Shrikhand":{"v":["regular"],"subset":["gujarati","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Siemreap":{"v":["regular"],"subset":["khmer"],"weight":["Default","400"],"i":["normal"]},"Sigmar":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sigmar One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Signika":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Signika Negative":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Silkscreen":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Simonetta":{"v":["regular","italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","900"],"i":["normal","italic"]},"Single Day":{"v":["regular"],"subset":["korean"],"weight":["Default","400"],"i":["normal"]},"Sintony":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Sirin Stencil":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Six Caps":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sixtyfour":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Sixtyfour Convergence":{"v":["regular"],"subset":["latin","latin-ext","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Skranji":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Slabo 13px":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Slabo 27px":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Slackey":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Slackside One":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Smokum":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Smooch":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Smooch Sans":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Smythe":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Sniglet":{"v":["regular","800"],"subset":["latin","latin-ext"],"weight":["Default","400","800"],"i":["normal"]},"Snippet":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Snowburst One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sofadi One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Sofia":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Sofia Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Sofia Sans Condensed":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Sofia Sans Extra Condensed":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Sofia Sans Semi Condensed":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Solitreo":{"v":["regular"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Solway":{"v":["300","regular","500","700","800"],"subset":["latin"],"weight":["Default","300","400","500","700","800"],"i":["normal"]},"Sometype Mono":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Song Myung":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Sono":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Sonsie One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sora":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Sorts Mill Goudy":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Sour Gummy":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Source Code Pro":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Source Sans 3":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Source Serif 4":{"v":["200","300","regular","500","600","700","800","900","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Space Grotesk":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Space Mono":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Special Elite":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Spectral":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Spectral SC":{"v":["200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Spicy Rice":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Spinnaker":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Spirax":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Splash":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Spline Sans":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Spline Sans Mono":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Squada One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Square Peg":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Sree Krushnadevaraya":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Sriracha":{"v":["regular"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Srisakdi":{"v":["regular","700"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Staatliches":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stalemate":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stalinist One":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stardos Stencil":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Stick":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stick No Bills":{"v":["200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","200","300","400","500","600","700","800"],"i":["normal"]},"Stint Ultra Condensed":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stint Ultra Expanded":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Stoke":{"v":["300","regular"],"subset":["latin","latin-ext"],"weight":["Default","300","400"],"i":["normal"]},"Strait":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Style Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Stylish":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Sue Ellen Francisco":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Suez One":{"v":["regular"],"subset":["hebrew","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sulphur Point":{"v":["300","regular","700"],"subset":["latin","latin-ext"],"weight":["Default","300","400","700"],"i":["normal"]},"Sumana":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Sunflower":{"v":["300","500","700"],"subset":["korean","latin"],"weight":["Default","300","400","500","700"],"i":["normal"]},"Sunshiney":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Supermercado One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Sura":{"v":["regular","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Suranna":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Suravaram":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Suwannaphum":{"v":["100","300","regular","700","900"],"subset":["khmer","latin"],"weight":["Default","100","300","400","700","900"],"i":["normal"]},"Swanky and Moo Moo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Syncopate":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]},"Syne":{"v":["regular","500","600","700","800"],"subset":["greek","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Syne Mono":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Syne Tactile":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Tac One":{"v":["regular"],"subset":["latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Tai Heritage Pro":{"v":["regular","700"],"subset":["latin","latin-ext","tai-viet","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Tajawal":{"v":["200","300","regular","500","700","800","900"],"subset":["arabic","latin"],"weight":["Default","200","300","400","500","700","800","900"],"i":["normal"]},"Tangerine":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Tapestry":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Taprom":{"v":["regular"],"subset":["khmer","latin"],"weight":["Default","400"],"i":["normal"]},"Tauri":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Taviraj":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Teachers":{"v":["regular","500","600","700","800","italic","500italic","600italic","700italic","800italic"],"subset":["greek-ext","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Teko":{"v":["300","regular","500","600","700"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Tektur":{"v":["regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal"]},"Telex":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Tenali Ramakrishna":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Tenor Sans":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Text Me One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Texturina":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Thasadith":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"The Girl Next Door":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"The Nautigal":{"v":["regular","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal"]},"Tienne":{"v":["regular","700","900"],"subset":["latin"],"weight":["Default","400","700","900"],"i":["normal"]},"Tillana":{"v":["regular","500","600","700","800"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Tilt Neon":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Tilt Prism":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Tilt Warp":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Timmana":{"v":["regular"],"subset":["latin","telugu"],"weight":["Default","400"],"i":["normal"]},"Tinos":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400","700"],"i":["normal","italic"]},"Tiny5":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Tiro Bangla":{"v":["regular","italic"],"subset":["bengali","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Devanagari Hindi":{"v":["regular","italic"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Devanagari Marathi":{"v":["regular","italic"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Devanagari Sanskrit":{"v":["regular","italic"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Gurmukhi":{"v":["regular","italic"],"subset":["gurmukhi","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Kannada":{"v":["regular","italic"],"subset":["kannada","latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Tamil":{"v":["regular","italic"],"subset":["latin","latin-ext","tamil"],"weight":["Default","400"],"i":["normal","italic"]},"Tiro Telugu":{"v":["regular","italic"],"subset":["latin","latin-ext","telugu"],"weight":["Default","400"],"i":["normal","italic"]},"Titan One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Titillium Web":{"v":["200","200italic","300","300italic","regular","italic","600","600italic","700","700italic","900"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","600","700","900"],"i":["normal","italic"]},"Tomorrow":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Tourney":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Trade Winds":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Train One":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Trirong":{"v":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subset":["latin","latin-ext","thai","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Trispace":{"v":["100","200","300","regular","500","600","700","800"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal"]},"Trocchi":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Trochut":{"v":["regular","italic","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Truculenta":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Trykker":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Tsukimi Rounded":{"v":["300","regular","500","600","700"],"subset":["japanese","latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Tulpen One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Turret Road":{"v":["200","300","regular","500","700","800"],"subset":["latin","latin-ext"],"weight":["Default","200","300","400","500","700","800"],"i":["normal"]},"Twinkle Star":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Ubuntu":{"v":["300","300italic","regular","italic","500","500italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","300","400","500","700"],"i":["normal","italic"]},"Ubuntu Condensed":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Ubuntu Mono":{"v":["regular","italic","700","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Ubuntu Sans":{"v":["100","200","300","regular","500","600","700","800","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800"],"i":["normal","italic"]},"Ubuntu Sans Mono":{"v":["regular","500","600","700","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","greek-ext","latin","latin-ext"],"weight":["Default","400","500","600","700"],"i":["normal","italic"]},"Uchen":{"v":["regular"],"subset":["latin","tibetan"],"weight":["Default","400"],"i":["normal"]},"Ultra":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Unbounded":{"v":["200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","200","300","400","500","600","700","800","900"],"i":["normal"]},"Uncial Antiqua":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Underdog":{"v":["regular"],"subset":["cyrillic","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Unica One":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"UnifrakturCook":{"v":["700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"UnifrakturMaguntia":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Unkempt":{"v":["regular","700"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal"]},"Unlock":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Unna":{"v":["regular","italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal","italic"]},"Updock":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Urbanist":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"VT323":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Vampiro One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Varela":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Varela Round":{"v":["regular"],"subset":["hebrew","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Varta":{"v":["300","regular","500","600","700"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal"]},"Vast Shadow":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Vazirmatn":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["arabic","latin","latin-ext"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Vesper Libre":{"v":["regular","500","700","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400","500","700","900"],"i":["normal"]},"Viaoda Libre":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Vibes":{"v":["regular"],"subset":["arabic","latin"],"weight":["Default","400"],"i":["normal"]},"Vibur":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Victor Mono":{"v":["100","200","300","regular","500","600","700","100italic","200italic","300italic","italic","500italic","600italic","700italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700"],"i":["normal","italic"]},"Vidaloka":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Viga":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Vina Sans":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Voces":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Volkhov":{"v":["regular","italic","700","700italic"],"subset":["latin"],"weight":["Default","400","700"],"i":["normal","italic"]},"Vollkorn":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Vollkorn SC":{"v":["regular","600","700","900"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","600","700","900"],"i":["normal"]},"Voltaire":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Vujahday Script":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Waiting for the Sunrise":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Wallpoet":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Walter Turncoat":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Warnes":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Water Brush":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Waterfall":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Wavefont":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["latin"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Wellfleet":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Wendy One":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Whisper":{"v":["regular"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"WindSong":{"v":["regular","500"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400","500"],"i":["normal"]},"Wire One":{"v":["regular"],"subset":["latin"],"weight":["Default","400"],"i":["normal"]},"Wittgenstein":{"v":["regular","500","600","700","800","900","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext"],"weight":["Default","400","500","600","700","800","900"],"i":["normal","italic"]},"Wix Madefor Display":{"v":["regular","500","600","700","800"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal"]},"Wix Madefor Text":{"v":["regular","italic","500","500italic","600","600italic","700","700italic","800","800italic"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400","500","600","700","800"],"i":["normal","italic"]},"Work Sans":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Workbench":{"v":["regular"],"subset":["latin","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Xanh Mono":{"v":["regular","italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal","italic"]},"Yaldevi":{"v":["200","300","regular","500","600","700"],"subset":["latin","latin-ext","sinhala"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Yanone Kaffeesatz":{"v":["200","300","regular","500","600","700"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","200","300","400","500","600","700"],"i":["normal"]},"Yantramanav":{"v":["100","300","regular","500","700","900"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","100","300","400","500","700","900"],"i":["normal"]},"Yarndings 12":{"v":["regular"],"subset":["latin","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Yarndings 12 Charted":{"v":["regular"],"subset":["latin","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Yarndings 20":{"v":["regular"],"subset":["latin","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Yarndings 20 Charted":{"v":["regular"],"subset":["latin","math","symbols"],"weight":["Default","400"],"i":["normal"]},"Yatra One":{"v":["regular"],"subset":["devanagari","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yellowtail":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yeon Sung":{"v":["regular"],"subset":["korean","latin"],"weight":["Default","400"],"i":["normal"]},"Yeseva One":{"v":["regular"],"subset":["cyrillic","cyrillic-ext","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Yesteryear":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yomogi":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext","vietnamese"],"weight":["Default","400"],"i":["normal"]},"Young Serif":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yrsa":{"v":["300","regular","500","600","700","300italic","italic","500italic","600italic","700italic"],"subset":["latin","latin-ext","vietnamese"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Ysabeau":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Ysabeau Infant":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Ysabeau Office":{"v":["100","200","300","regular","500","600","700","800","900","100italic","200italic","300italic","italic","500italic","600italic","700italic","800italic","900italic"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal","italic"]},"Ysabeau SC":{"v":["100","200","300","regular","500","600","700","800","900"],"subset":["cyrillic","cyrillic-ext","greek","latin","latin-ext","math","symbols","vietnamese"],"weight":["Default","100","200","300","400","500","600","700","800","900"],"i":["normal"]},"Yuji Boku":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yuji Hentaigana Akari":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yuji Hentaigana Akebono":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yuji Mai":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yuji Syuku":{"v":["regular"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Yusei Magic":{"v":["regular"],"subset":["japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"ZCOOL KuaiLe":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"ZCOOL QingKe HuangYou":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"ZCOOL XiaoWei":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"Zain":{"v":["200","300","300italic","regular","italic","700","800","900"],"subset":["arabic","latin"],"weight":["Default","200","300","400","700","800","900"],"i":["normal","italic"]},"Zen Antique":{"v":["regular"],"subset":["cyrillic","greek","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zen Antique Soft":{"v":["regular"],"subset":["cyrillic","greek","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zen Dots":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zen Kaku Gothic Antique":{"v":["300","regular","500","700","900"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","300","400","500","700","900"],"i":["normal"]},"Zen Kaku Gothic New":{"v":["300","regular","500","700","900"],"subset":["cyrillic","japanese","latin","latin-ext"],"weight":["Default","300","400","500","700","900"],"i":["normal"]},"Zen Kurenaido":{"v":["regular"],"subset":["cyrillic","greek","japanese","latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zen Loop":{"v":["regular","italic"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal","italic"]},"Zen Maru Gothic":{"v":["300","regular","500","700","900"],"subset":["cyrillic","greek","japanese","latin","latin-ext"],"weight":["Default","300","400","500","700","900"],"i":["normal"]},"Zen Old Mincho":{"v":["regular","500","600","700","900"],"subset":["cyrillic","greek","japanese","latin","latin-ext"],"weight":["Default","400","500","600","700","900"],"i":["normal"]},"Zen Tokyo Zoo":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zeyada":{"v":["regular"],"subset":["latin","latin-ext"],"weight":["Default","400"],"i":["normal"]},"Zhi Mang Xing":{"v":["regular"],"subset":["chinese-simplified","latin"],"weight":["Default","400"],"i":["normal"]},"Zilla Slab":{"v":["300","300italic","regular","italic","500","500italic","600","600italic","700","700italic"],"subset":["latin","latin-ext"],"weight":["Default","300","400","500","600","700"],"i":["normal","italic"]},"Zilla Slab Highlight":{"v":["regular","700"],"subset":["latin","latin-ext"],"weight":["Default","400","700"],"i":["normal"]}}; export default fonts;PK�][���Oultimate-addons-for-gutenberg/blocks-config/uagb-controls/getGBSEditorStyles.jsnu�[���const getGBSEditorStyles = ( globalBlockStyles, globalBlockStyleId ) => {
    if ( ! globalBlockStyles || ! globalBlockStyleId ) {
        return '';
    }
    let editorStyles = '';
    for ( const style of globalBlockStyles ) {
        if ( style?.value === globalBlockStyleId ) {
            editorStyles = style?.editorStyles
            break;
        }
    }
    return editorStyles;
};

export default getGBSEditorStyles;PK�][y���Gultimate-addons-for-gutenberg/blocks-config/uagb-controls/getApiData.jsnu�[���// Import the apiFetch function from the '@wordpress/api-fetch' package
import apiFetch from '@wordpress/api-fetch';
import { __ } from '@wordpress/i18n';
import { isObjectNotEmpty } from '../utils/Helpers'

/**
 * A function to send form data via API fetch.
 *
 * @async
 * @function
 *
 * @param {Object} params - The parameters object.
 * @param {string} params.url - The URL to send the data.
 * @param {string} params.action - The action to take with the data.
 * @param {Object} params.data - The data to send.
 *
 * @return {Promise} Returns a Promise that resolves to an object containing the API response.
 */
const getApiData = async ( { url, action, data } ) => {

	if ( !isObjectNotEmpty( data ) ) { 
		return Promise.reject( new Error( __( 'data object is empty', 'ultimate-addons-for-gutenberg' ) ) );
	}
	// Create a new instance of the FormData class
	const formData = new window.FormData();
	// Append an 'action' property to the formData object
	formData.append( 'action', action );

	// If the 'data' object is not empty, iterate over its key-value pairs and append them to the formData object
	for( const dataKey in data ){
		const dataValue = data[dataKey];
		formData.append( dataKey, dataValue );
	}
	
	// Make a POST request using the apiFetch function, passing in the url, method, and body properties
	return await apiFetch( {
		url,
		method: 'POST',
		body: formData,
	} );
};


// Export the getApiData function as the default export of the module
export default getApiData;PK�][�O�FooQultimate-addons-for-gutenberg/blocks-config/uagb-controls/getAttributeFallback.jsnu�[���import { blocksAttributes } from '@Attributes/getBlocksDefaultAttributes';
import { applyFilters } from '@wordpress/hooks';

// Parameters for these methods:
// currentValue - The variable/attribute that is altered by settings.
// key          - The key of the default attribute for that setting.
// blockName    - The name of the block.

const getAttributeFallback = ( currentValue, key, blockName ) => {
	const allBlocksAttributes = applyFilters( 'uagb.blocksAttributes', blocksAttributes );
	return currentValue ? currentValue : allBlocksAttributes[ blockName ][ key ].default;
}

export const getFallbackNumber = ( currentValue, key, blockName ) => {
	const allBlocksAttributes = applyFilters( 'uagb.blocksAttributes', blocksAttributes );
	return isNaN( currentValue ) ? allBlocksAttributes[ blockName ][ key ].default : currentValue;
}

export default getAttributeFallback;
PK�]['L��@�@�Pultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-0.phpnu�[���<?php
/**
 * Font awesome icons array array file.
 *
 * @package     UAGB
 * @author      Brainstorm Force
 * @link        https://wpspectra.com/
 */

/**
 * Returns font awesome icons array
 */
return array(
	'0'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M160 32.01c-88.37 0-160 71.63-160 160v127.1c0 88.37 71.63 160 160 160s160-71.63 160-160V192C320 103.6 248.4 32.01 160 32.01zM256 320c0 52.93-43.06 96-96 96c-52.93 0-96-43.07-96-96V192c0-52.94 43.07-96 96-96c52.94 0 96 43.06 96 96V320z',
			),
		),
		'label'             => '0',
		'custom_categories' => array(),
	),
	'1'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M256 448c0 17.67-14.33 32-32 32H32c-17.67 0-32-14.33-32-32s14.33-32 32-32h64V123.8L49.75 154.6C35.02 164.5 15.19 160.4 5.375 145.8C-4.422 131.1-.4531 111.2 14.25 101.4l96-64c9.828-6.547 22.45-7.187 32.84-1.594C153.5 41.37 160 52.22 160 64.01v352h64C241.7 416 256 430.3 256 448z',
			),
		),
		'label'             => '1',
		'custom_categories' => array(),
	),
	'2'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 448c0 17.67-14.33 32-32 32H32c-13.08 0-24.83-7.953-29.7-20.09c-4.859-12.12-1.859-26 7.594-35.03l193.6-185.1c31.36-30.17 33.95-80 5.812-113.4c-14.91-17.69-35.86-28.12-58.97-29.38C127.4 95.83 105.3 103.9 88.53 119.9L53.52 151.7c-13.08 11.91-33.33 10.89-45.2-2.172C-3.563 136.5-2.594 116.2 10.48 104.3l34.45-31.3c28.67-27.34 68.39-42.11 108.9-39.88c40.33 2.188 78.39 21.16 104.4 52.03c49.8 59.05 45.2 147.3-10.45 200.8l-136 130H288C305.7 416 320 430.3 320 448z',
			),
		),
		'label'             => '2',
		'custom_categories' => array(),
	),
	'3'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 344c0 74.98-61.02 136-136 136H103.6c-46.34 0-87.31-29.53-101.1-73.48c-5.594-16.77 3.484-34.88 20.25-40.47c16.75-5.609 34.89 3.484 40.47 20.25c5.922 17.77 22.48 29.7 41.23 29.7H184c39.7 0 72-32.3 72-72s-32.3-72-72-72H80c-13.2 0-25.05-8.094-29.83-20.41C45.39 239.3 48.66 225.3 58.38 216.4l131.4-120.4H32c-17.67 0-32-14.33-32-32s14.33-32 32-32h240c13.2 0 25.05 8.094 29.83 20.41c4.781 12.3 1.516 26.27-8.203 35.19l-131.4 120.4H184C258.1 208 320 269 320 344z',
			),
		),
		'label'             => '3',
		'custom_categories' => array(),
	),
	'4'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 334.2c0 17.67-14.33 32-32 32h-32v81.78c0 17.67-14.33 32-32 32s-32-14.33-32-32v-81.78H32c-10.97 0-21.17-5.625-27.05-14.89c-5.859-9.266-6.562-20.89-1.875-30.81l128-270.2C138.6 34.33 157.8 27.56 173.7 35.09c15.97 7.562 22.78 26.66 15.22 42.63L82.56 302.2H256V160c0-17.67 14.33-32 32-32s32 14.33 32 32v142.2h32C369.7 302.2 384 316.6 384 334.2z',
			),
		),
		'label'             => '4',
		'custom_categories' => array(),
	),
	'5'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 344.6c0 74.66-60.73 135.4-135.4 135.4H104.7c-46.81 0-88.22-29.83-103-74.23c-5.594-16.77 3.469-34.89 20.23-40.48c16.83-5.625 34.91 3.469 40.48 20.23c6.078 18.23 23.08 30.48 42.3 30.48h79.95c39.36 0 71.39-32.03 71.39-71.39s-32.03-71.38-71.39-71.38H32c-9.484 0-18.47-4.203-24.56-11.48C1.359 254.5-1.172 244.9 .5156 235.6l32-177.2C35.27 43.09 48.52 32.01 64 32.01l192 .0049c17.67 0 32 14.33 32 32s-14.33 32-32 32H90.73L70.3 209.2h114.3C259.3 209.2 320 269.1 320 344.6z',
			),
		),
		'label'             => '5',
		'custom_categories' => array(),
	),
	'6'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M167.7 160.8l64.65-76.06c11.47-13.45 9.812-33.66-3.656-45.09C222.7 34.51 215.3 32.01 208 32.01c-9.062 0-18.06 3.833-24.38 11.29C38.07 214.5 0 245.5 0 320c0 88.22 71.78 160 160 160s160-71.78 160-160C320 234.4 252.3 164.9 167.7 160.8zM160 416c-52.94 0-96-43.06-96-96s43.06-95.1 96-95.1s96 43.06 96 95.1S212.9 416 160 416z',
			),
		),
		'label'             => '6',
		'custom_categories' => array(),
	),
	'7'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M315.6 80.14l-224 384c-5.953 10.19-16.66 15.88-27.67 15.88c-5.469 0-11.02-1.406-16.09-4.359c-15.27-8.906-20.42-28.5-11.52-43.77l195.9-335.9H32c-17.67 0-32-14.33-32-32s14.33-32 32-32h256c11.45 0 22.05 6.125 27.75 16.06S321.4 70.23 315.6 80.14z',
			),
		),
		'label'             => '7',
		'custom_categories' => array(),
	),
	'8'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M267.5 249.2C290 226.1 304 194.7 304 160c0-70.58-57.42-128-128-128h-32c-70.58 0-128 57.42-128 128c0 34.7 13.99 66.12 36.48 89.19C20.83 272.5 0 309.8 0 352c0 70.58 57.42 128 128 128h64c70.58 0 128-57.42 128-128C320 309.8 299.2 272.5 267.5 249.2zM144 96.01h32c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32c-35.3 0-64-28.7-64-64S108.7 96.01 144 96.01zM192 416H128c-35.3 0-64-28.7-64-64s28.7-64 64-64h64c35.3 0 64 28.7 64 64S227.3 416 192 416z',
			),
		),
		'label'             => '8',
		'custom_categories' => array(),
	),
	'9'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M160 32.01c-88.22 0-160 71.78-160 160c0 85.57 67.71 155.1 152.3 159.2l-64.65 76.06c-11.47 13.45-9.812 33.66 3.656 45.09c6 5.125 13.38 7.62 20.72 7.62c9.062 0 18.06-3.823 24.38-11.28C281.9 297.5 320 266.6 320 192C320 103.8 248.2 32.01 160 32.01zM160 288c-52.94 0-96-43.06-96-95.1s43.06-96 96-96s96 43.06 96 96S212.9 288 160 288z',
			),
		),
		'label'             => '9',
		'custom_categories' => array(),
	),
	'42-group'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 96V416C341 416 361.8 411.9 381.2 403.8C400.6 395.8 418.3 383.1 433.1 369.1C447.1 354.3 459.8 336.6 467.8 317.2C475.9 297.8 480 277 480 256C480 234.1 475.9 214.2 467.8 194.8C459.8 175.4 447.1 157.7 433.1 142.9C418.3 128 400.6 116.2 381.2 108.2C361.8 100.1 341 96 320 96zM0 256L160 416L320 256L160 96L0 256zM480 256C480 277 484.1 297.8 492.2 317.2C500.2 336.6 512 354.3 526.9 369.1C541.7 383.1 559.4 395.8 578.8 403.8C598.2 411.9 618.1 416 640 416V96C597.6 96 556.9 112.9 526.9 142.9C496.9 172.9 480 213.6 480 256z',
			),
		),
		'label'             => __( '42.group', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'500px'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M103.3 344.3c-6.5-14.2-6.9-18.3 7.4-23.1 25.6-8 8 9.2 43.2 49.2h.3v-93.9c1.2-50.2 44-92.2 97.7-92.2 53.9 0 97.7 43.5 97.7 96.8 0 63.4-60.8 113.2-128.5 93.3-10.5-4.2-2.1-31.7 8.5-28.6 53 0 89.4-10.1 89.4-64.4 0-61-77.1-89.6-116.9-44.6-23.5 26.4-17.6 42.1-17.6 157.6 50.7 31 118.3 22 160.4-20.1 24.8-24.8 38.5-58 38.5-93 0-35.2-13.8-68.2-38.8-93.3-24.8-24.8-57.8-38.5-93.3-38.5s-68.8 13.8-93.5 38.5c-.3 .3-16 16.5-21.2 23.9l-.5 .6c-3.3 4.7-6.3 9.1-20.1 6.1-6.9-1.7-14.3-5.8-14.3-11.8V20c0-5 3.9-10.5 10.5-10.5h241.3c8.3 0 8.3 11.6 8.3 15.1 0 3.9 0 15.1-8.3 15.1H130.3v132.9h.3c104.2-109.8 282.8-36 282.8 108.9 0 178.1-244.8 220.3-310.1 62.8zm63.3-260.8c-.5 4.2 4.6 24.5 14.6 20.6C306 56.6 384 144.5 390.6 144.5c4.8 0 22.8-15.3 14.3-22.8-93.2-89-234.5-57-238.3-38.2zM393 414.7C283 524.6 94 475.5 61 310.5c0-12.2-30.4-7.4-28.9 3.3 24 173.4 246 256.9 381.6 121.3 6.9-7.8-12.6-28.4-20.7-20.4zM213.6 306.6c0 4 4.3 7.3 5.5 8.5 3 3 6.1 4.4 8.5 4.4 3.8 0 2.6 .2 22.3-19.5 19.6 19.3 19.1 19.5 22.3 19.5 5.4 0 18.5-10.4 10.7-18.2L265.6 284l18.2-18.2c6.3-6.8-10.1-21.8-16.2-15.7L249.7 268c-18.6-18.8-18.4-19.5-21.5-19.5-5 0-18 11.7-12.4 17.3L234 284c-18.1 17.9-20.4 19.2-20.4 22.6z',
			),
		),
		'label'             => __( '500px', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'a'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M381.5 435.7l-160-384C216.6 39.78 204.9 32.01 192 32.01S167.4 39.78 162.5 51.7l-160 384c-6.797 16.31 .9062 35.05 17.22 41.84c16.38 6.828 35.08-.9219 41.84-17.22l31.8-76.31h197.3l31.8 76.31c5.109 12.28 17.02 19.7 29.55 19.7c4.094 0 8.266-.7969 12.3-2.484C380.6 470.7 388.3 452 381.5 435.7zM119.1 320L192 147.2l72 172.8H119.1z',
			),
		),
		'label'             => __( 'A', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'accessible-icon'                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M423.9 255.8L411 413.1c-3.3 40.7-63.9 35.1-60.6-4.9l10-122.5-41.1 2.3c10.1 20.7 15.8 43.9 15.8 68.5 0 41.2-16.1 78.7-42.3 106.5l-39.3-39.3c57.9-63.7 13.1-167.2-74-167.2-25.9 0-49.5 9.9-67.2 26L73 243.2c22-20.7 50.1-35.1 81.4-40.2l75.3-85.7-42.6-24.8-51.6 46c-30 26.8-70.6-18.5-40.5-45.4l68-60.7c9.8-8.8 24.1-10.2 35.5-3.6 0 0 139.3 80.9 139.5 81.1 16.2 10.1 20.7 36 6.1 52.6L285.7 229l106.1-5.9c18.5-1.1 33.6 14.4 32.1 32.7zm-64.9-154c28.1 0 50.9-22.8 50.9-50.9C409.9 22.8 387.1 0 359 0c-28.1 0-50.9 22.8-50.9 50.9 0 28.1 22.8 50.9 50.9 50.9zM179.6 456.5c-80.6 0-127.4-90.6-82.7-156.1l-39.7-39.7C36.4 287 24 320.3 24 356.4c0 130.7 150.7 201.4 251.4 122.5l-39.7-39.7c-16 10.9-35.3 17.3-56.1 17.3z',
			),
		),
		'label'             => __( 'Accessible Icon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology', 'travel', 'brands', 'brands', 'social' ),
	),
	'accusoft'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M322.1 252v-1l-51.2-65.8s-12 1.6-25 15.1c-9 9.3-242.1 239.1-243.4 240.9-7 10 1.6 6.8 15.7 1.7 .8 0 114.5-36.6 114.5-36.6 .5-.6-.1-.1 .6-.6-.4-5.1-.8-26.2-1-27.7-.6-5.2 2.2-6.9 7-8.9l92.6-33.8c.6-.8 88.5-81.7 90.2-83.3zm160.1 120.1c13.3 16.1 20.7 13.3 30.8 9.3 3.2-1.2 115.4-47.6 117.8-48.9 8-4.3-1.7-16.7-7.2-23.4-2.1-2.5-205.1-245.6-207.2-248.3-9.7-12.2-14.3-12.9-38.4-12.8-10.2 0-106.8 .5-116.5 .6-19.2 .1-32.9-.3-19.2 16.9C250 75 476.5 365.2 482.2 372.1zm152.7 1.6c-2.3-.3-24.6-4.7-38-7.2 0 0-115 50.4-117.5 51.6-16 7.3-26.9-3.2-36.7-14.6l-57.1-74c-5.4-.9-60.4-9.6-65.3-9.3-3.1 .2-9.6 .8-14.4 2.9-4.9 2.1-145.2 52.8-150.2 54.7-5.1 2-11.4 3.6-11.1 7.6 .2 2.5 2 2.6 4.6 3.5 2.7 .8 300.9 67.6 308 69.1 15.6 3.3 38.5 10.5 53.6 1.7 2.1-1.2 123.8-76.4 125.8-77.8 5.4-4 4.3-6.8-1.7-8.2z',
			),
		),
		'label'             => __( 'Accusoft', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'address-book'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M384 0H96C60.65 0 32 28.65 32 64v384c0 35.35 28.65 64 64 64h288c35.35 0 64-28.65 64-64V64C448 28.65 419.3 0 384 0zM240 128c35.35 0 64 28.65 64 64s-28.65 64-64 64c-35.34 0-64-28.65-64-64S204.7 128 240 128zM336 384h-192C135.2 384 128 376.8 128 368C128 323.8 163.8 288 208 288h64c44.18 0 80 35.82 80 80C352 376.8 344.8 384 336 384zM496 64H480v96h16C504.8 160 512 152.8 512 144v-64C512 71.16 504.8 64 496 64zM496 192H480v96h16C504.8 288 512 280.8 512 272v-64C512 199.2 504.8 192 496 192zM496 320H480v96h16c8.836 0 16-7.164 16-16v-64C512 327.2 504.8 320 496 320z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M272 288h-64C163.8 288 128 323.8 128 368C128 376.8 135.2 384 144 384h192c8.836 0 16-7.164 16-16C352 323.8 316.2 288 272 288zM240 256c35.35 0 64-28.65 64-64s-28.65-64-64-64c-35.34 0-64 28.65-64 64S204.7 256 240 256zM496 320H480v96h16c8.836 0 16-7.164 16-16v-64C512 327.2 504.8 320 496 320zM496 64H480v96h16C504.8 160 512 152.8 512 144v-64C512 71.16 504.8 64 496 64zM496 192H480v96h16C504.8 288 512 280.8 512 272v-64C512 199.2 504.8 192 496 192zM384 0H96C60.65 0 32 28.65 32 64v384c0 35.35 28.65 64 64 64h288c35.35 0 64-28.65 64-64V64C448 28.65 419.3 0 384 0zM400 448c0 8.836-7.164 16-16 16H96c-8.836 0-16-7.164-16-16V64c0-8.838 7.164-16 16-16h288c8.836 0 16 7.162 16 16V448z',
			),
		),
		'label'             => __( 'Address Book', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'address-card'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM176 128c35.35 0 64 28.65 64 64s-28.65 64-64 64s-64-28.65-64-64S140.7 128 176 128zM272 384h-192C71.16 384 64 376.8 64 368C64 323.8 99.82 288 144 288h64c44.18 0 80 35.82 80 80C288 376.8 280.8 384 272 384zM496 320h-128C359.2 320 352 312.8 352 304S359.2 288 368 288h128C504.8 288 512 295.2 512 304S504.8 320 496 320zM496 256h-128C359.2 256 352 248.8 352 240S359.2 224 368 224h128C504.8 224 512 231.2 512 240S504.8 256 496 256zM496 192h-128C359.2 192 352 184.8 352 176S359.2 160 368 160h128C504.8 160 512 167.2 512 176S504.8 192 496 192z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 256c35.35 0 64-28.65 64-64c0-35.35-28.65-64-64-64s-64 28.65-64 64C144 227.3 172.7 256 208 256zM464 232h-96c-13.25 0-24 10.75-24 24s10.75 24 24 24h96c13.25 0 24-10.75 24-24S477.3 232 464 232zM240 288h-64C131.8 288 96 323.8 96 368C96 376.8 103.2 384 112 384h192c8.836 0 16-7.164 16-16C320 323.8 284.2 288 240 288zM464 152h-96c-13.25 0-24 10.75-24 24s10.75 24 24 24h96c13.25 0 24-10.75 24-24S477.3 152 464 152zM512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM528 416c0 8.822-7.178 16-16 16H64c-8.822 0-16-7.178-16-16V96c0-8.822 7.178-16 16-16h448c8.822 0 16 7.178 16 16V416z',
			),
		),
		'label'             => __( 'Address Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'adn'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 167.5l64.9 98.8H183.1l64.9-98.8zM496 256c0 136.9-111.1 248-248 248S0 392.9 0 256 111.1 8 248 8s248 111.1 248 248zm-99.8 82.7L248 115.5 99.8 338.7h30.4l33.6-51.7h168.6l33.6 51.7h30.2z',
			),
		),
		'label'             => __( 'App.net', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'adversal'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M482.1 32H28.7C5.8 32 0 37.9 0 60.9v390.2C0 474.4 5.8 480 28.7 480h453.4c24.4 0 29.9-5.2 29.9-29.7V62.2c0-24.6-5.4-30.2-29.9-30.2zM178.4 220.3c-27.5-20.2-72.1-8.7-84.2 23.4-4.3 11.1-9.3 9.5-17.5 8.3-9.7-1.5-17.2-3.2-22.5-5.5-28.8-11.4 8.6-55.3 24.9-64.3 41.1-21.4 83.4-22.2 125.3-4.8 40.9 16.8 34.5 59.2 34.5 128.5 2.7 25.8-4.3 58.3 9.3 88.8 1.9 4.4 .4 7.9-2.7 10.7-8.4 6.7-39.3 2.2-46.6-7.4-1.9-2.2-1.8-3.6-3.9-6.2-3.6-3.9-7.3-2.2-11.9 1-57.4 36.4-140.3 21.4-147-43.3-3.1-29.3 12.4-57.1 39.6-71 38.2-19.5 112.2-11.8 114-30.9 1.1-10.2-1.9-20.1-11.3-27.3zm286.7 222c0 15.1-11.1 9.9-17.8 9.9H52.4c-7.4 0-18.2 4.8-17.8-10.7 .4-13.9 10.5-9.1 17.1-9.1 132.3-.4 264.5-.4 396.8 0 6.8 0 16.6-4.4 16.6 9.9zm3.8-340.5v291c0 5.7-.7 13.9-8.1 13.9-12.4-.4-27.5 7.1-36.1-5.6-5.8-8.7-7.8-4-12.4-1.2-53.4 29.7-128.1 7.1-144.4-85.2-6.1-33.4-.7-67.1 15.7-100 11.8-23.9 56.9-76.1 136.1-30.5v-71c0-26.2-.1-26.2 26-26.2 3.1 0 6.6 .4 9.7 0 10.1-.8 13.6 4.4 13.6 14.3-.1 .2-.1 .3-.1 .5zm-51.5 232.3c-19.5 47.6-72.9 43.3-90 5.2-15.1-33.3-15.5-68.2 .4-101.5 16.3-34.1 59.7-35.7 81.5-4.8 20.6 28.8 14.9 84.6 8.1 101.1zm-294.8 35.3c-7.5-1.3-33-3.3-33.7-27.8-.4-13.9 7.8-23 19.8-25.8 24.4-5.9 49.3-9.9 73.7-14.7 8.9-2 7.4 4.4 7.8 9.5 1.4 33-26.1 59.2-67.6 58.8z',
			),
		),
		'label'             => __( 'Adversal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'affiliatetheme'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M159.7 237.4C108.4 308.3 43.1 348.2 14 326.6-15.2 304.9 2.8 230 54.2 159.1c51.3-70.9 116.6-110.8 145.7-89.2 29.1 21.6 11.1 96.6-40.2 167.5zm351.2-57.3C437.1 303.5 319 367.8 246.4 323.7c-25-15.2-41.3-41.2-49-73.8-33.6 64.8-92.8 113.8-164.1 133.2 49.8 59.3 124.1 96.9 207 96.9 150 0 271.6-123.1 271.6-274.9 .1-8.5-.3-16.8-1-25z',
			),
		),
		'label'             => __( 'affiliatetheme', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'airbnb'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 373.1c-25.24-31.67-40.08-59.43-45-83.18-22.55-88 112.6-88 90.06 0-5.45 24.25-20.29 52-45 83.18zm138.1 73.23c-42.06 18.31-83.67-10.88-119.3-50.47 103.9-130.1 46.11-200-18.85-200-54.92 0-85.16 46.51-73.28 100.5 6.93 29.19 25.23 62.39 54.43 99.5-32.53 36.05-60.55 52.69-85.15 54.92-50 7.43-89.11-41.06-71.3-91.09 15.1-39.16 111.7-231.2 115.9-241.6 15.75-30.07 25.56-57.4 59.38-57.4 32.34 0 43.4 25.94 60.37 59.87 36 70.62 89.35 177.5 114.8 239.1 13.17 33.07-1.37 71.29-37.01 86.64zm47-136.1C280.3 35.93 273.1 32 224 32c-45.52 0-64.87 31.67-84.66 72.79C33.18 317.1 22.89 347.2 22 349.8-3.22 419.1 48.74 480 111.6 480c21.71 0 60.61-6.06 112.4-62.4 58.68 63.78 101.3 62.4 112.4 62.4 62.89 .05 114.8-60.86 89.61-130.2 .02-3.89-16.82-38.9-16.82-39.58z',
			),
		),
		'label'             => __( 'Airbnb', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'algolia'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M229.3 182.6c-49.3 0-89.2 39.9-89.2 89.2 0 49.3 39.9 89.2 89.2 89.2s89.2-39.9 89.2-89.2c0-49.3-40-89.2-89.2-89.2zm62.7 56.6l-58.9 30.6c-1.8 .9-3.8-.4-3.8-2.3V201c0-1.5 1.3-2.7 2.7-2.6 26.2 1 48.9 15.7 61.1 37.1 .7 1.3 .2 3-1.1 3.7zM389.1 32H58.9C26.4 32 0 58.4 0 90.9V421c0 32.6 26.4 59 58.9 59H389c32.6 0 58.9-26.4 58.9-58.9V90.9C448 58.4 421.6 32 389.1 32zm-202.6 84.7c0-10.8 8.7-19.5 19.5-19.5h45.3c10.8 0 19.5 8.7 19.5 19.5v15.4c0 1.8-1.7 3-3.3 2.5-12.3-3.4-25.1-5.1-38.1-5.1-13.5 0-26.7 1.8-39.4 5.5-1.7 .5-3.4-.8-3.4-2.5v-15.8zm-84.4 37l9.2-9.2c7.6-7.6 19.9-7.6 27.5 0l7.7 7.7c1.1 1.1 1 3-.3 4-6.2 4.5-12.1 9.4-17.6 14.9-5.4 5.4-10.4 11.3-14.8 17.4-1 1.3-2.9 1.5-4 .3l-7.7-7.7c-7.6-7.5-7.6-19.8 0-27.4zm127.2 244.8c-70 0-126.6-56.7-126.6-126.6s56.7-126.6 126.6-126.6c70 0 126.6 56.6 126.6 126.6 0 69.8-56.7 126.6-126.6 126.6z',
			),
		),
		'label'             => __( 'Algolia', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'align-center'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M320 96H128C110.3 96 96 81.67 96 64C96 46.33 110.3 32 128 32H320C337.7 32 352 46.33 352 64C352 81.67 337.7 96 320 96zM416 224H32C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224zM0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480H32C14.33 480 0 465.7 0 448zM320 352H128C110.3 352 96 337.7 96 320C96 302.3 110.3 288 128 288H320C337.7 288 352 302.3 352 320C352 337.7 337.7 352 320 352z',
			),
		),
		'label'             => __( 'Align Center', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'align-justify'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96zM416 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H416C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z',
			),
		),
		'label'             => __( 'Align Justify', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'align-left'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H256C273.7 32 288 46.33 288 64C288 81.67 273.7 96 256 96zM256 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H256C273.7 288 288 302.3 288 320C288 337.7 273.7 352 256 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z',
			),
		),
		'label'             => __( 'Align Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'align-right'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 96H192C174.3 96 160 81.67 160 64C160 46.33 174.3 32 192 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96zM416 352H192C174.3 352 160 337.7 160 320C160 302.3 174.3 288 192 288H416C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352zM0 192C0 174.3 14.33 160 32 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H32C14.33 224 0 209.7 0 192zM416 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480z',
			),
		),
		'label'             => __( 'Align Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'alipay'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M377.7 32H70.26C31.41 32 0 63.41 0 102.3v307.5C0 448.6 31.41 480 70.26 480h307.5c38.52 0 69.76-31.08 70.26-69.6-45.96-25.62-110.6-60.34-171.6-88.44-32.07 43.97-84.14 81-148.6 81-70.59 0-93.73-45.3-97.04-76.37-3.97-39.01 14.88-81.5 99.52-81.5 35.38 0 79.35 10.25 127.1 24.96 16.53-30.09 26.45-60.34 26.45-60.34h-178.2v-16.7h92.08v-31.24H88.28v-19.01h109.4V92.34h50.92v50.42h109.4v19.01H248.6v31.24h88.77s-15.21 46.62-38.35 90.92c48.93 16.7 100 36.04 148.6 52.74V102.3C447.8 63.57 416.4 32 377.7 32zM47.28 322.1c.99 20.17 10.25 53.73 69.93 53.73 52.07 0 92.58-39.68 117.9-72.9-44.63-18.68-84.48-31.41-109.4-31.41-67.45 0-79.35 33.06-78.36 50.58z',
			),
		),
		'label'             => __( 'Alipay', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'amazon'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M257.2 162.7c-48.7 1.8-169.5 15.5-169.5 117.5 0 109.5 138.3 114 183.5 43.2 6.5 10.2 35.4 37.5 45.3 46.8l56.8-56S341 288.9 341 261.4V114.3C341 89 316.5 32 228.7 32 140.7 32 94 87 94 136.3l73.5 6.8c16.3-49.5 54.2-49.5 54.2-49.5 40.7-.1 35.5 29.8 35.5 69.1zm0 86.8c0 80-84.2 68-84.2 17.2 0-47.2 50.5-56.7 84.2-57.8v40.6zm136 163.5c-7.7 10-70 67-174.5 67S34.2 408.5 9.7 379c-6.8-7.7 1-11.3 5.5-8.3C88.5 415.2 203 488.5 387.7 401c7.5-3.7 13.3 2 5.5 12zm39.8 2.2c-6.5 15.8-16 26.8-21.2 31-5.5 4.5-9.5 2.7-6.5-3.8s19.3-46.5 12.7-55c-6.5-8.3-37-4.3-48-3.2-10.8 1-13 2-14-.3-2.3-5.7 21.7-15.5 37.5-17.5 15.7-1.8 41-.8 46 5.7 3.7 5.1 0 27.1-6.5 43.1z',
			),
		),
		'label'             => __( 'Amazon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'amazon-pay'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M14 325.3c2.3-4.2 5.2-4.9 9.7-2.5 10.4 5.6 20.6 11.4 31.2 16.7a595.9 595.9 0 0 0 127.4 46.3 616.6 616.6 0 0 0 63.2 11.8 603.3 603.3 0 0 0 95 5.2c17.4-.4 34.8-1.8 52.1-3.8a603.7 603.7 0 0 0 163.3-42.8c2.9-1.2 5.9-2 9.1-1.2 6.7 1.8 9 9 4.1 13.9a70 70 0 0 1 -9.6 7.4c-30.7 21.1-64.2 36.4-99.6 47.9a473.3 473.3 0 0 1 -75.1 17.6 431 431 0 0 1 -53.2 4.8 21.3 21.3 0 0 0 -2.5 .3H308a21.3 21.3 0 0 0 -2.5-.3c-3.6-.2-7.2-.3-10.7-.4a426.3 426.3 0 0 1 -50.4-5.3A448.4 448.4 0 0 1 164 420a443.3 443.3 0 0 1 -145.6-87c-1.8-1.6-3-3.8-4.4-5.7zM172 65.1l-4.3 .6a80.92 80.92 0 0 0 -38 15.1c-2.4 1.7-4.6 3.5-7.1 5.4a4.29 4.29 0 0 1 -.4-1.4c-.4-2.7-.8-5.5-1.3-8.2-.7-4.6-3-6.6-7.6-6.6h-11.5c-6.9 0-8.2 1.3-8.2 8.2v209.3c0 1 0 2 .1 3 .2 3 2 4.9 4.9 5 7 .1 14.1 .1 21.1 0 2.9 0 4.7-2 5-5 .1-1 .1-2 .1-3v-72.4c1.1 .9 1.7 1.4 2.2 1.9 17.9 14.9 38.5 19.8 61 15.4 20.4-4 34.6-16.5 43.8-34.9 7-13.9 9.9-28.7 10.3-44.1 .5-17.1-1.2-33.9-8.1-49.8-8.5-19.6-22.6-32.5-43.9-36.9-3.2-.7-6.5-1-9.8-1.5-2.8-.1-5.5-.1-8.3-.1zM124.6 107a3.48 3.48 0 0 1 1.7-3.3c13.7-9.5 28.8-14.5 45.6-13.2 14.9 1.1 27.1 8.4 33.5 25.9 3.9 10.7 4.9 21.8 4.9 33 0 10.4-.8 20.6-4 30.6-6.8 21.3-22.4 29.4-42.6 28.5-14-.6-26.2-6-37.4-13.9a3.57 3.57 0 0 1 -1.7-3.3c.1-14.1 0-28.1 0-42.2s.1-28 0-42.1zm205.7-41.9c-1 .1-2 .3-2.9 .4a148 148 0 0 0 -28.9 4.1c-6.1 1.6-12 3.8-17.9 5.8-3.6 1.2-5.4 3.8-5.3 7.7 .1 3.3-.1 6.6 0 9.9 .1 4.8 2.1 6.1 6.8 4.9 7.8-2 15.6-4.2 23.5-5.7 12.3-2.3 24.7-3.3 37.2-1.4 6.5 1 12.6 2.9 16.8 8.4 3.7 4.8 5.1 10.5 5.3 16.4 .3 8.3 .2 16.6 .3 24.9a7.84 7.84 0 0 1 -.2 1.4c-.5-.1-.9 0-1.3-.1a180.6 180.6 0 0 0 -32-4.9c-11.3-.6-22.5 .1-33.3 3.9-12.9 4.5-23.3 12.3-29.4 24.9-4.7 9.8-5.4 20.2-3.9 30.7 2 14 9 24.8 21.4 31.7 11.9 6.6 24.8 7.4 37.9 5.4 15.1-2.3 28.5-8.7 40.3-18.4a7.36 7.36 0 0 1 1.6-1.1c.6 3.8 1.1 7.4 1.8 11 .6 3.1 2.5 5.1 5.4 5.2 5.4 .1 10.9 .1 16.3 0a4.84 4.84 0 0 0 4.8-4.7 26.2 26.2 0 0 0 .1-2.8v-106a80 80 0 0 0 -.9-12.9c-1.9-12.9-7.4-23.5-19-30.4-6.7-4-14.1-6-21.8-7.1-3.6-.5-7.2-.8-10.8-1.3-3.9 .1-7.9 .1-11.9 .1zm35 127.7a3.33 3.33 0 0 1 -1.5 3c-11.2 8.1-23.5 13.5-37.4 14.9-5.7 .6-11.4 .4-16.8-1.8a20.08 20.08 0 0 1 -12.4-13.3 32.9 32.9 0 0 1 -.1-19.4c2.5-8.3 8.4-13 16.4-15.6a61.33 61.33 0 0 1 24.8-2.2c8.4 .7 16.6 2.3 25 3.4 1.6 .2 2.1 1 2.1 2.6-.1 4.8 0 9.5 0 14.3s-.2 9.4-.1 14.1zm259.9 129.4c-1-5-4.8-6.9-9.1-8.3a88.42 88.42 0 0 0 -21-3.9 147.3 147.3 0 0 0 -39.2 1.9c-14.3 2.7-27.9 7.3-40 15.6a13.75 13.75 0 0 0 -3.7 3.5 5.11 5.11 0 0 0 -.5 4c.4 1.5 2.1 1.9 3.6 1.8a16.2 16.2 0 0 0 2.2-.1c7.8-.8 15.5-1.7 23.3-2.5 11.4-1.1 22.9-1.8 34.3-.9a71.64 71.64 0 0 1 14.4 2.7c5.1 1.4 7.4 5.2 7.6 10.4 .4 8-1.4 15.7-3.5 23.3-4.1 15.4-10 30.3-15.8 45.1a17.6 17.6 0 0 0 -1 3c-.5 2.9 1.2 4.8 4.1 4.1a10.56 10.56 0 0 0 4.8-2.5 145.9 145.9 0 0 0 12.7-13.4c12.8-16.4 20.3-35.3 24.7-55.6 .8-3.6 1.4-7.3 2.1-10.9v-17.3zM493.1 199q-19.35-53.55-38.7-107.2c-2-5.7-4.2-11.3-6.3-16.9-1.1-2.9-3.2-4.8-6.4-4.8-7.6-.1-15.2-.2-22.9-.1-2.5 0-3.7 2-3.2 4.5a43.1 43.1 0 0 0 1.9 6.1q29.4 72.75 59.1 145.5c1.7 4.1 2.1 7.6 .2 11.8-3.3 7.3-5.9 15-9.3 22.3-3 6.5-8 11.4-15.2 13.3a42.13 42.13 0 0 1 -15.4 1.1c-2.5-.2-5-.8-7.5-1-3.4-.2-5.1 1.3-5.2 4.8q-.15 5 0 9.9c.1 5.5 2 8 7.4 8.9a108.2 108.2 0 0 0 16.9 2c17.1 .4 30.7-6.5 39.5-21.4a131.6 131.6 0 0 0 9.2-18.4q35.55-89.7 70.6-179.6a26.62 26.62 0 0 0 1.6-5.5c.4-2.8-.9-4.4-3.7-4.4-6.6-.1-13.3 0-19.9 0a7.54 7.54 0 0 0 -7.7 5.2c-.5 1.4-1.1 2.7-1.6 4.1l-34.8 100c-2.5 7.2-5.1 14.5-7.7 22.2-.4-1.1-.6-1.7-.9-2.4z',
			),
		),
		'label'             => __( 'Amazon Pay', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'amilia'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M240.1 32c-61.9 0-131.5 16.9-184.2 55.4-5.1 3.1-9.1 9.2-7.2 19.4 1.1 5.1 5.1 27.4 10.2 39.6 4.1 10.2 14.2 10.2 20.3 6.1 32.5-22.3 96.5-47.7 152.3-47.7 57.9 0 58.9 28.4 58.9 73.1v38.5C203 227.7 78.2 251 46.7 264.2 11.2 280.5 16.3 357.7 16.3 376s15.2 104 124.9 104c47.8 0 113.7-20.7 153.3-42.1v25.4c0 3 2.1 8.2 6.1 9.1 3.1 1 50.7 2 59.9 2s62.5 .3 66.5-.7c4.1-1 5.1-6.1 5.1-9.1V168c-.1-80.3-57.9-136-192-136zm50.2 348c-21.4 13.2-48.7 24.4-79.1 24.4-52.8 0-58.9-33.5-59-44.7 0-12.2-3-42.7 18.3-52.9 24.3-13.2 75.1-29.4 119.8-33.5z',
			),
		),
		'label'             => __( 'Amilia', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'anchor'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352 176C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H320V448H368C421 448 464 405 464 352V345.9L456.1 352.1C447.6 362.3 432.4 362.3 423 352.1C413.7 343.6 413.7 328.4 423 319L479 263C488.4 253.7 503.6 253.7 512.1 263L568.1 319C578.3 328.4 578.3 343.6 568.1 352.1C559.6 362.3 544.4 362.3 535 352.1L528 345.9V352C528 440.4 456.4 512 368 512H208C119.6 512 48 440.4 48 352V345.9L40.97 352.1C31.6 362.3 16.4 362.3 7.029 352.1C-2.343 343.6-2.343 328.4 7.029 319L63.03 263C72.4 253.7 87.6 253.7 96.97 263L152.1 319C162.3 328.4 162.3 343.6 152.1 352.1C143.6 362.3 128.4 362.3 119 352.1L112 345.9V352C112 405 154.1 448 208 448H256V240H224C206.3 240 192 225.7 192 208C192 190.3 206.3 176 224 176H234.9C209 158.8 192 129.4 192 96C192 42.98 234.1 0 288 0C341 0 384 42.98 384 96C384 129.4 366.1 158.8 341.1 176H352zM288 128C305.7 128 320 113.7 320 96C320 78.33 305.7 64 288 64C270.3 64 256 78.33 256 96C256 113.7 270.3 128 288 128z',
			),
		),
		'label'             => __( 'Anchor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'anchor-circle-check'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 176C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H319.1V448H339.2C351.8 472.7 370 493.1 392.2 510.2C384.3 511.4 376.2 512 368 512H208C119.6 512 48 440.4 48 352V345.9L40.97 352.1C31.6 362.3 16.4 362.3 7.029 352.1C-2.343 343.6-2.343 328.4 7.029 319L63.03 263C72.4 253.7 87.6 253.7 96.97 263L152.1 319C162.3 328.4 162.3 343.6 152.1 352.1C143.6 362.3 128.4 362.3 119 352.1L112 345.9V352C112 405 154.1 448 208 448H256V240H224C206.3 240 192 225.7 192 208C192 190.3 206.3 176 224 176H234.9C209 158.8 192 129.4 192 96C192 42.98 234.1 0 288 0C341 0 384 42.98 384 96C384 129.4 366.1 158.8 341.1 176H352zM287.1 128C305.7 128 319.1 113.7 319.1 96C319.1 78.33 305.7 64 287.1 64C270.3 64 255.1 78.33 255.1 96C255.1 113.7 270.3 128 287.1 128zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'Anchor Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'anchor-circle-exclamation'      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 176C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H319.1V448H339.2C351.8 472.7 370 493.1 392.2 510.2C384.3 511.4 376.2 512 368 512H208C119.6 512 48 440.4 48 352V345.9L40.97 352.1C31.6 362.3 16.4 362.3 7.029 352.1C-2.343 343.6-2.343 328.4 7.029 319L63.03 263C72.4 253.7 87.6 253.7 96.97 263L152.1 319C162.3 328.4 162.3 343.6 152.1 352.1C143.6 362.3 128.4 362.3 119 352.1L112 345.9V352C112 405 154.1 448 208 448H256V240H224C206.3 240 192 225.7 192 208C192 190.3 206.3 176 224 176H234.9C209 158.8 192 129.4 192 96C192 42.98 234.1 0 288 0C341 0 384 42.98 384 96C384 129.4 366.1 158.8 341.1 176H352zM287.1 128C305.7 128 319.1 113.7 319.1 96C319.1 78.33 305.7 64 287.1 64C270.3 64 255.1 78.33 255.1 96C255.1 113.7 270.3 128 287.1 128zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Anchor Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'anchor-circle-xmark'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 176C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H319.1V448H339.2C351.8 472.7 370 493.1 392.2 510.2C384.3 511.4 376.2 512 368 512H208C119.6 512 48 440.4 48 352V345.9L40.97 352.1C31.6 362.3 16.4 362.3 7.029 352.1C-2.343 343.6-2.343 328.4 7.029 319L63.03 263C72.4 253.7 87.6 253.7 96.97 263L152.1 319C162.3 328.4 162.3 343.6 152.1 352.1C143.6 362.3 128.4 362.3 119 352.1L112 345.9V352C112 405 154.1 448 208 448H256V240H224C206.3 240 192 225.7 192 208C192 190.3 206.3 176 224 176H234.9C209 158.8 192 129.4 192 96C192 42.98 234.1 0 288 0C341 0 384 42.98 384 96C384 129.4 366.1 158.8 341.1 176H352zM287.1 128C305.7 128 319.1 113.7 319.1 96C319.1 78.33 305.7 64 287.1 64C270.3 64 255.1 78.33 255.1 96C255.1 113.7 270.3 128 287.1 128zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'Anchor Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'anchor-lock'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 176C369.7 176 384 190.3 384 208C384 225.7 369.7 240 352 240H319.1V448H368C373.4 448 378.8 447.5 384 446.7V480C384 490.1 386.7 501.3 391.6 510.3C383.9 511.4 376 512 368 512H208C119.6 512 48 440.4 48 352V345.9L40.97 352.1C31.6 362.3 16.4 362.3 7.029 352.1C-2.343 343.6-2.343 328.4 7.029 319L63.03 263C72.4 253.7 87.6 253.7 96.97 263L152.1 319C162.3 328.4 162.3 343.6 152.1 352.1C143.6 362.3 128.4 362.3 119 352.1L112 345.9V352C112 405 154.1 448 208 448H256V240H224C206.3 240 192 225.7 192 208C192 190.3 206.3 176 224 176H234.9C209 158.8 192 129.4 192 96C192 42.98 234.1 0 288 0C341 0 384 42.98 384 96C384 129.4 366.1 158.8 341.1 176H352zM287.1 128C305.7 128 319.1 113.7 319.1 96C319.1 78.33 305.7 64 287.1 64C270.3 64 255.1 78.33 255.1 96C255.1 113.7 270.3 128 287.1 128zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'Anchor Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'android'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M420.5 301.9a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m-265.1 0a24 24 0 1 1 24-24 24 24 0 0 1 -24 24m273.7-144.5 47.94-83a10 10 0 1 0 -17.27-10h0l-48.54 84.07a301.3 301.3 0 0 0 -246.6 0L116.2 64.45a10 10 0 1 0 -17.27 10h0l47.94 83C64.53 202.2 8.24 285.5 0 384H576c-8.24-98.45-64.54-181.8-146.9-226.6',
			),
		),
		'label'             => __( 'Android', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'angellist'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M347.1 215.4c11.7-32.6 45.4-126.9 45.4-157.1 0-26.6-15.7-48.9-43.7-48.9-44.6 0-84.6 131.7-97.1 163.1C242 144 196.6 0 156.6 0c-31.1 0-45.7 22.9-45.7 51.7 0 35.3 34.2 126.8 46.6 162-6.3-2.3-13.1-4.3-20-4.3-23.4 0-48.3 29.1-48.3 52.6 0 8.9 4.9 21.4 8 29.7-36.9 10-51.1 34.6-51.1 71.7C46 435.6 114.4 512 210.6 512c118 0 191.4-88.6 191.4-202.9 0-43.1-6.9-82-54.9-93.7zM311.7 108c4-12.3 21.1-64.3 37.1-64.3 8.6 0 10.9 8.9 10.9 16 0 19.1-38.6 124.6-47.1 148l-34-6 33.1-93.7zM142.3 48.3c0-11.9 14.5-45.7 46.3 47.1l34.6 100.3c-15.6-1.3-27.7-3-35.4 1.4-10.9-28.8-45.5-119.7-45.5-148.8zM140 244c29.3 0 67.1 94.6 67.1 107.4 0 5.1-4.9 11.4-10.6 11.4-20.9 0-76.9-76.9-76.9-97.7 .1-7.7 12.7-21.1 20.4-21.1zm184.3 186.3c-29.1 32-66.3 48.6-109.7 48.6-59.4 0-106.3-32.6-128.9-88.3-17.1-43.4 3.8-68.3 20.6-68.3 11.4 0 54.3 60.3 54.3 73.1 0 4.9-7.7 8.3-11.7 8.3-16.1 0-22.4-15.5-51.1-51.4-29.7 29.7 20.5 86.9 58.3 86.9 26.1 0 43.1-24.2 38-42 3.7 0 8.3 .3 11.7-.6 1.1 27.1 9.1 59.4 41.7 61.7 0-.9 2-7.1 2-7.4 0-17.4-10.6-32.6-10.6-50.3 0-28.3 21.7-55.7 43.7-71.7 8-6 17.7-9.7 27.1-13.1 9.7-3.7 20-8 27.4-15.4-1.1-11.2-5.7-21.1-16.9-21.1-27.7 0-120.6 4-120.6-39.7 0-6.7 .1-13.1 17.4-13.1 32.3 0 114.3 8 138.3 29.1 18.1 16.1 24.3 113.2-31 174.7zm-98.6-126c9.7 3.1 19.7 4 29.7 6-7.4 5.4-14 12-20.3 19.1-2.8-8.5-6.2-16.8-9.4-25.1z',
			),
		),
		'label'             => __( 'AngelList', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'angle-down'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z',
			),
		),
		'label'             => __( 'Angle Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angle-left'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M192 448c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L77.25 256l137.4 137.4c12.5 12.5 12.5 32.75 0 45.25C208.4 444.9 200.2 448 192 448z',
			),
		),
		'label'             => __( 'Angle Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angle-right'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M64 448c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L178.8 256L41.38 118.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25l-160 160C80.38 444.9 72.19 448 64 448z',
			),
		),
		'label'             => __( 'Angle Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angle-up'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 352c-8.188 0-16.38-3.125-22.62-9.375L192 205.3l-137.4 137.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160c12.5 12.5 12.5 32.75 0 45.25C368.4 348.9 360.2 352 352 352z',
			),
		),
		'label'             => __( 'Angle Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angles-down'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M169.4 278.6C175.6 284.9 183.8 288 192 288s16.38-3.125 22.62-9.375l160-160c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0L192 210.8L54.63 73.38c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25L169.4 278.6zM329.4 265.4L192 402.8L54.63 265.4c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25l160 160C175.6 476.9 183.8 480 192 480s16.38-3.125 22.62-9.375l160-160c12.5-12.5 12.5-32.75 0-45.25S341.9 252.9 329.4 265.4z',
			),
		),
		'label'             => __( 'Angles Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angles-left'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M77.25 256l137.4-137.4c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25l160 160C175.6 444.9 183.8 448 192 448s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25L77.25 256zM269.3 256l137.4-137.4c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25l160 160C367.6 444.9 375.8 448 384 448s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25L269.3 256z',
			),
		),
		'label'             => __( 'Angles Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angles-right'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M246.6 233.4l-160-160c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25L178.8 256l-137.4 137.4c-12.5 12.5-12.5 32.75 0 45.25C47.63 444.9 55.81 448 64 448s16.38-3.125 22.62-9.375l160-160C259.1 266.1 259.1 245.9 246.6 233.4zM438.6 233.4l-160-160c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25L370.8 256l-137.4 137.4c-12.5 12.5-12.5 32.75 0 45.25C239.6 444.9 247.8 448 256 448s16.38-3.125 22.62-9.375l160-160C451.1 266.1 451.1 245.9 438.6 233.4z',
			),
		),
		'label'             => __( 'Angles Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angles-up'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M54.63 246.6L192 109.3l137.4 137.4C335.6 252.9 343.8 256 352 256s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25l-160-160c-12.5-12.5-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25S42.13 259.1 54.63 246.6zM214.6 233.4c-12.5-12.5-32.75-12.5-45.25 0l-160 160c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0L192 301.3l137.4 137.4C335.6 444.9 343.8 448 352 448s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25L214.6 233.4z',
			),
		),
		'label'             => __( 'Angles Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'angrycreative'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 238.2l-3.2 28.2-34.5 2.3-2 18.1 34.5-2.3-3.2 28.2-34.4 2.2-2.3 20.1 34.4-2.2-3 26.1-64.7 4.1 12.7-113.2L527 365.2l-31.9 2-23.8-117.8 30.3-2 13.6 79.4 31.7-82.4 93.1-6.2zM426.8 371.5l28.3-1.8L468 249.6l-28.4 1.9-12.8 120zM162 388.1l-19.4-36-3.5 37.4-28.2 1.7 2.7-29.1c-11 18-32 34.3-56.9 35.8C23.9 399.9-3 377 .3 339.7c2.6-29.3 26.7-62.8 67.5-65.4 37.7-2.4 47.6 23.2 51.3 28.8l2.8-30.8 38.9-2.5c20.1-1.3 38.7 3.7 42.5 23.7l2.6-26.6 64.8-4.2-2.7 27.9-36.4 2.4-1.7 17.9 36.4-2.3-2.7 27.9-36.4 2.3-1.9 19.9 36.3-2.3-2.1 20.8 55-117.2 23.8-1.6L370.4 369l8.9-85.6-22.3 1.4 2.9-27.9 75-4.9-3 28-24.3 1.6-9.7 91.9-58 3.7-4.3-15.6-39.4 2.5-8 16.3-126.2 7.7zm-44.3-70.2l-26.4 1.7C84.6 307.2 76.9 303 65 303.8c-19 1.2-33.3 17.5-34.6 33.3-1.4 16 7.3 32.5 28.7 31.2 12.8-.8 21.3-8.6 28.9-18.9l27-1.7 2.7-29.8zm56.1-7.7c1.2-12.9-7.6-13.6-26.1-12.4l-2.7 28.5c14.2-.9 27.5-2.1 28.8-16.1zm21.1 70.8l5.8-60c-5 13.5-14.7 21.1-27.9 26.6l22.1 33.4zm135.4-45l-7.9-37.8-15.8 39.3 23.7-1.5zm-170.1-74.6l-4.3-17.5-39.6 2.6-8.1 18.2-31.9 2.1 57-121.9 23.9-1.6 30.7 102 9.9-104.7 27-1.8 37.8 63.6 6.5-66.6 28.5-1.9-4 41.2c7.4-13.5 22.9-44.7 63.6-47.5 40.5-2.8 52.4 29.3 53.4 30.3l3.3-32 39.3-2.7c12.7-.9 27.8 .3 36.3 9.7l-4.4-11.9 32.2-2.2 12.9 43.2 23-45.7 31-2.2-43.6 78.4-4.8 44.3-28.4 1.9 4.8-44.3-15.8-43c1 22.3-9.2 40.1-32 49.6l25.2 38.8-36.4 2.4-19.2-36.8-4 38.3-28.4 1.9 3.3-31.5c-6.7 9.3-19.7 35.4-59.6 38-26.2 1.7-45.6-10.3-55.4-39.2l-4 40.3-25 1.6-37.6-63.3-6.3 66.2-56.8 3.7zm276.6-82.1c10.2-.7 17.5-2.1 21.6-4.3 4.5-2.4 7-6.4 7.6-12.1 .6-5.3-.6-8.8-3.4-10.4-3.6-2.1-10.6-2.8-22.9-2l-2.9 28.8zM327.7 214c5.6 5.9 12.7 8.5 21.3 7.9 4.7-.3 9.1-1.8 13.3-4.1 5.5-3 10.6-8 15.1-14.3l-34.2 2.3 2.4-23.9 63.1-4.3 1.2-12-31.2 2.1c-4.1-3.7-7.8-6.6-11.1-8.1-4-1.7-8.1-2.8-12.2-2.5-8 .5-15.3 3.6-22 9.2-7.7 6.4-12 14.5-12.9 24.4-1.1 9.6 1.4 17.3 7.2 23.3zm-201.3 8.2l23.8-1.6-8.3-37.6-15.5 39.2z',
			),
		),
		'label'             => __( 'Angry Creative', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'angular'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M185.7 268.1h76.2l-38.1-91.6-38.1 91.6zM223.8 32L16 106.4l31.8 275.7 176 97.9 176-97.9 31.8-275.7zM354 373.8h-48.6l-26.2-65.4H168.6l-26.2 65.4H93.7L223.8 81.5z',
			),
		),
		'label'             => __( 'Angular', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ankh'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M296 256h-44.63C272.5 222 288 181.6 288 144C288 55.62 230.8 0 160 0S32 55.62 32 144C32 181.6 47.5 222 68.63 256H24C10.75 256 0 266.8 0 280v32c0 13.25 10.75 24 24 24h96v152C120 501.2 130.8 512 144 512h32c13.25 0 24-10.75 24-24V336h96c13.25 0 24-10.75 24-24v-32C320 266.8 309.2 256 296 256zM160 80c29.62 0 48 24.5 48 64c0 34.62-27.12 78.12-48 100.9C139.1 222.1 112 178.6 112 144C112 104.5 130.4 80 160 80z',
			),
		),
		'label'             => __( 'Ankh', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'app-store'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M255.9 120.9l9.1-15.7c5.6-9.8 18.1-13.1 27.9-7.5 9.8 5.6 13.1 18.1 7.5 27.9l-87.5 151.5h63.3c20.5 0 32 24.1 23.1 40.8H113.8c-11.3 0-20.4-9.1-20.4-20.4 0-11.3 9.1-20.4 20.4-20.4h52l66.6-115.4-20.8-36.1c-5.6-9.8-2.3-22.2 7.5-27.9 9.8-5.6 22.2-2.3 27.9 7.5l8.9 15.7zm-78.7 218l-19.6 34c-5.6 9.8-18.1 13.1-27.9 7.5-9.8-5.6-13.1-18.1-7.5-27.9l14.6-25.2c16.4-5.1 29.8-1.2 40.4 11.6zm168.9-61.7h53.1c11.3 0 20.4 9.1 20.4 20.4 0 11.3-9.1 20.4-20.4 20.4h-29.5l19.9 34.5c5.6 9.8 2.3 22.2-7.5 27.9-9.8 5.6-22.2 2.3-27.9-7.5-33.5-58.1-58.7-101.6-75.4-130.6-17.1-29.5-4.9-59.1 7.2-69.1 13.4 23 33.4 57.7 60.1 104zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm216 248c0 118.7-96.1 216-216 216-118.7 0-216-96.1-216-216 0-118.7 96.1-216 216-216 118.7 0 216 96.1 216 216z',
			),
		),
		'label'             => __( 'App Store', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'app-store-ios'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM127 384.5c-5.5 9.6-17.8 12.8-27.3 7.3-9.6-5.5-12.8-17.8-7.3-27.3l14.3-24.7c16.1-4.9 29.3-1.1 39.6 11.4L127 384.5zm138.9-53.9H84c-11 0-20-9-20-20s9-20 20-20h51l65.4-113.2-20.5-35.4c-5.5-9.6-2.2-21.8 7.3-27.3 9.6-5.5 21.8-2.2 27.3 7.3l8.9 15.4 8.9-15.4c5.5-9.6 17.8-12.8 27.3-7.3 9.6 5.5 12.8 17.8 7.3 27.3l-85.8 148.6h62.1c20.2 0 31.5 23.7 22.7 40zm98.1 0h-29l19.6 33.9c5.5 9.6 2.2 21.8-7.3 27.3-9.6 5.5-21.8 2.2-27.3-7.3-32.9-56.9-57.5-99.7-74-128.1-16.7-29-4.8-58 7.1-67.8 13.1 22.7 32.7 56.7 58.9 102h52c11 0 20 9 20 20 0 11.1-9 20-20 20z',
			),
		),
		'label'             => __( 'iOS App Store', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'apper'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M42.1 239.1c22.2 0 29 2.8 33.5 14.6h.8v-22.9c0-11.3-4.8-15.4-17.9-15.4-11.3 0-14.4 2.5-15.1 12.8H4.8c.3-13.9 1.5-19.1 5.8-24.4C17.9 195 29.5 192 56.7 192c33 0 47.1 5 53.9 18.9 2 4.3 4 15.6 4 23.7v76.3H76.3l1.3-19.1h-1c-5.3 15.6-13.6 20.4-35.5 20.4-30.3 0-41.1-10.1-41.1-37.3 0-25.2 12.3-35.8 42.1-35.8zm17.1 48.1c13.1 0 16.9-3 16.9-13.4 0-9.1-4.3-11.6-19.6-11.6-13.1 0-17.9 3-17.9 12.1-.1 10.4 3.7 12.9 20.6 12.9zm77.8-94.9h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.2 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3H137v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm57.9-60.7h38.3l-1.5 20.6h.8c9.1-17.1 15.9-20.9 37.5-20.9 14.4 0 24.7 3 31.5 9.1 9.8 8.6 12.8 20.4 12.8 48.1 0 30-3 43.1-12.1 52.9-6.8 7.3-16.4 10.1-33.3 10.1-20.4 0-29.2-5.5-33.8-21.2h-.8v70.3h-39.5v-169zm80.9 60.7c0-27.5-3.3-32.5-20.7-32.5-16.9 0-20.7 5-20.7 28.7 0 28 3.5 33.5 21.2 33.5 16.4 0 20.2-5.6 20.2-29.7zm53.8-3.8c0-25.4 3.3-37.8 12.3-45.8 8.8-8.1 22.2-11.3 45.1-11.3 42.8 0 55.7 12.8 55.7 55.7v11.1h-75.3c-.3 2-.3 4-.3 4.8 0 16.9 4.5 21.9 20.1 21.9 13.9 0 17.9-3 17.9-13.9h37.5v2.3c0 9.8-2.5 18.9-6.8 24.7-7.3 9.8-19.6 13.6-44.3 13.6-27.5 0-41.6-3.3-50.6-12.3-8.5-8.5-11.3-21.3-11.3-50.8zm76.4-11.6c-.3-1.8-.3-3.3-.3-3.8 0-12.3-3.3-14.6-19.6-14.6-14.4 0-17.1 3-18.1 15.1l-.3 3.3h38.3zm55.6-45.3h38.3l-1.8 19.9h.7c6.8-14.9 14.4-20.2 29.7-20.2 10.8 0 19.1 3.3 23.4 9.3 5.3 7.3 6.8 14.4 6.8 34 0 1.5 0 5 .2 9.3h-35c.3-1.8 .3-3.3 .3-4 0-15.4-2-19.4-10.3-19.4-6.3 0-10.8 3.3-13.1 9.3-1 3-1 4.3-1 12.3v68h-38.3V192.3z',
			),
		),
		'label'             => __( 'Apper Systems AB', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'apple'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25.2-.6 43-17.9 75.8-17.9 31.8 0 48.3 17.9 76.4 17.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.7-61.7-90-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z',
			),
		),
		'label'             => __( 'Apple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'apple-pay'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M116.9 158.5c-7.5 8.9-19.5 15.9-31.5 14.9-1.5-12 4.4-24.8 11.3-32.6 7.5-9.1 20.6-15.6 31.3-16.1 1.2 12.4-3.7 24.7-11.1 33.8m10.9 17.2c-17.4-1-32.3 9.9-40.5 9.9-8.4 0-21-9.4-34.8-9.1-17.9 .3-34.5 10.4-43.6 26.5-18.8 32.3-4.9 80 13.3 106.3 8.9 13 19.5 27.3 33.5 26.8 13.3-.5 18.5-8.6 34.5-8.6 16.1 0 20.8 8.6 34.8 8.4 14.5-.3 23.6-13 32.5-26 10.1-14.8 14.3-29.1 14.5-29.9-.3-.3-28-10.9-28.3-42.9-.3-26.8 21.9-39.5 22.9-40.3-12.5-18.6-32-20.6-38.8-21.1m100.4-36.2v194.9h30.3v-66.6h41.9c38.3 0 65.1-26.3 65.1-64.3s-26.4-64-64.1-64h-73.2zm30.3 25.5h34.9c26.3 0 41.3 14 41.3 38.6s-15 38.8-41.4 38.8h-34.8V165zm162.2 170.9c19 0 36.6-9.6 44.6-24.9h.6v23.4h28v-97c0-28.1-22.5-46.3-57.1-46.3-32.1 0-55.9 18.4-56.8 43.6h27.3c2.3-12 13.4-19.9 28.6-19.9 18.5 0 28.9 8.6 28.9 24.5v10.8l-37.8 2.3c-35.1 2.1-54.1 16.5-54.1 41.5 .1 25.2 19.7 42 47.8 42zm8.2-23.1c-16.1 0-26.4-7.8-26.4-19.6 0-12.3 9.9-19.4 28.8-20.5l33.6-2.1v11c0 18.2-15.5 31.2-36 31.2zm102.5 74.6c29.5 0 43.4-11.3 55.5-45.4L640 193h-30.8l-35.6 115.1h-.6L537.4 193h-31.6L557 334.9l-2.8 8.6c-4.6 14.6-12.1 20.3-25.5 20.3-2.4 0-7-.3-8.9-.5v23.4c1.8 .4 9.3 .7 11.6 .7z',
			),
		),
		'label'             => __( 'Apple Pay', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'apple-whole'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M336 128c-32 0-80.02 16.03-112 32.03c-32.01-16-79.1-32.02-111.1-32.03C32 128 .4134 210.5 .0033 288c-.5313 99.97 63.99 224 159.1 224c32 0 48-16 64-16c16 0 32 16 64 16c96 0 160.4-122.8 159.1-224C447.7 211.6 416 128 336 128zM320 32V0h-32C243.8 0 208 35.82 208 80v32h32C284.2 112 320 76.18 320 32z',
			),
		),
		'label'             => __( 'Apple Whole', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'archway'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 32C497.7 32 512 46.33 512 64C512 81.67 497.7 96 480 96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H480zM32 128H480V416C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H352V352C352 298.1 309 256 256 256C202.1 256 160 298.1 160 352V480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416V128z',
			),
		),
		'label'             => __( 'Archway', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'arrow-down'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M374.6 310.6l-160 160C208.4 476.9 200.2 480 192 480s-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 370.8V64c0-17.69 14.33-31.1 31.1-31.1S224 46.31 224 64v306.8l105.4-105.4c12.5-12.5 32.75-12.5 45.25 0S387.1 298.1 374.6 310.6z',
			),
		),
		'label'             => __( 'Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-1-9'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 192c0 17.69 14.31 31.1 32 31.1L416 224c17.69 0 32-14.31 32-32s-14.31-32-32-32V63.98c0-11.19-5.844-21.53-15.38-27.34c-9.531-5.781-21.41-6.188-31.34-1.062l-32 16.59c-15.69 8.125-21.81 27.44-13.69 43.13C329.3 106.3 340.4 112.6 352 112.6V160C334.3 160 320 174.3 320 192zM392 255.6c-48.6 0-88 39.4-88 88c0 36.44 22.15 67.7 53.71 81.07l-7.682 8.004c-10.72 11.16-10.34 28.88 .8125 39.56C356.3 477.4 363.3 480 370.2 480c7.344 0 14.72-2.875 20.19-8.625c69.61-72.53 89.6-85.39 89.6-127.8C480 294.1 440.6 255.6 392 255.6zM392 367.6c-13.23 0-24-10.77-24-24s10.77-24 24-24s24 10.77 24 24S405.2 367.6 392 367.6zM216 320.3c-8.672 0-17.3 3.5-23.61 10.38L160 366.1V64.03C160 46.33 145.7 32 128 32S96 46.33 96 64.03v302L63.6 330.7c-11.95-13.01-32.2-13.91-45.22-1.969c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27C231.5 323.1 223.7 320.3 216 320.3z',
			),
		),
		'label'             => __( 'Arrow Down 1 9', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-9-1'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M216 320.3c-8.672 0-17.3 3.5-23.61 10.38L160 366.1V64.03C160 46.33 145.7 32 128 32S96 46.33 96 64.03v302L63.6 330.7c-11.95-13.01-32.2-13.91-45.22-1.969c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27C231.5 323.1 223.7 320.3 216 320.3zM357.7 201.1l-7.682 8.004c-10.72 11.16-10.34 28.88 .8125 39.56c5.406 5.219 12.41 7.812 19.38 7.812c7.344 0 14.72-2.875 20.19-8.625c69.61-72.53 89.6-85.39 89.6-127.8c0-48.6-39.4-88-88-88s-88 39.4-88 88C303.1 156.4 326.1 187.7 357.7 201.1zM392 96c13.23 0 24 10.77 24 24S405.2 144 392 144S368 133.2 368 120S378.8 96 392 96zM416 416.4v-96.02c0-11.19-5.844-21.53-15.38-27.34c-9.531-5.781-21.41-6.188-31.34-1.062l-32 16.59c-15.69 8.125-21.81 27.44-13.69 43.13C329.3 362.8 340.4 369 352 369v47.41c-17.69 0-32 14.31-32 32s14.31 32 32 32h64c17.69 0 32-14.31 32-32S433.7 416.4 416 416.4z',
			),
		),
		'label'             => __( 'Arrow Down 9 1', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-a-z'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M239.6 373.1c11.94-13.05 11.06-33.31-1.969-45.27c-13.55-12.42-33.76-10.52-45.22 1.973L160 366.1V64.03c0-17.7-14.33-32.03-32-32.03S96 46.33 96 64.03v302l-32.4-35.39C51.64 317.7 31.39 316.7 18.38 328.7c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0L239.6 373.1zM448 416h-50.75l73.38-73.38c9.156-9.156 11.89-22.91 6.938-34.88S460.9 288 447.1 288H319.1C302.3 288 288 302.3 288 320s14.33 32 32 32h50.75l-73.38 73.38c-9.156 9.156-11.89 22.91-6.938 34.88S307.1 480 319.1 480h127.1C465.7 480 480 465.7 480 448S465.7 416 448 416zM492.6 209.3l-79.99-160.1c-10.84-21.81-46.4-21.81-57.24 0L275.4 209.3c-7.906 15.91-1.5 35.24 14.31 43.19c15.87 7.922 35.04 1.477 42.93-14.4l7.154-14.39h88.43l7.154 14.39c6.174 12.43 23.97 23.87 42.93 14.4C494.1 244.6 500.5 225.2 492.6 209.3zM367.8 167.4L384 134.7l16.22 32.63H367.8z',
			),
		),
		'label'             => __( 'Arrow Down A Z', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-long'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M9.375 329.4c12.51-12.51 32.76-12.49 45.25 0L128 402.8V32c0-17.69 14.31-32 32-32s32 14.31 32 32v370.8l73.38-73.38c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-128 128c-12.5 12.5-32.75 12.5-45.25 0l-128-128C-3.125 362.1-3.125 341.9 9.375 329.4z',
			),
		),
		'label'             => __( 'Arrow Down Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-short-wide'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M320 224H416c17.67 0 32-14.33 32-32s-14.33-32-32-32h-95.1c-17.67 0-32 14.33-32 32S302.3 224 320 224zM320 352H480c17.67 0 32-14.33 32-32s-14.33-32-32-32h-159.1c-17.67 0-32 14.33-32 32S302.3 352 320 352zM320 96h32c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-32c-17.67 0-32 14.33-32 32S302.3 96 320 96zM544 416h-223.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H544c17.67 0 32-14.33 32-32S561.7 416 544 416zM192.4 330.7L160 366.1V64.03C160 46.33 145.7 32 128 32S96 46.33 96 64.03v302L63.6 330.7c-6.312-6.883-14.94-10.38-23.61-10.38c-7.719 0-15.47 2.781-21.61 8.414c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27C224.6 316.8 204.4 317.7 192.4 330.7z',
			),
		),
		'label'             => __( 'Arrow Down Short Wide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-up-across-line'      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M41.37 406.6C28.88 394.1 28.88 373.9 41.37 361.4C53.87 348.9 74.13 348.9 86.63 361.4L128 402.7V287.1H32C14.33 287.1 0 273.7 0 255.1C0 238.3 14.33 223.1 32 223.1H384V109.3L342.6 150.6C330.1 163.1 309.9 163.1 297.4 150.6C284.9 138.1 284.9 117.9 297.4 105.4L393.4 9.372C405.9-3.124 426.1-3.124 438.6 9.372L534.6 105.4C547.1 117.9 547.1 138.1 534.6 150.6C522.1 163.1 501.9 163.1 489.4 150.6L448 109.3V223.1H544C561.7 223.1 576 238.3 576 255.1C576 273.7 561.7 287.1 544 287.1H192V402.7L233.4 361.4C245.9 348.9 266.1 348.9 278.6 361.4C291.1 373.9 291.1 394.1 278.6 406.6L182.6 502.6C170.1 515.1 149.9 515.1 137.4 502.6L41.37 406.6zM128 63.1C128 46.33 142.3 31.1 160 31.1C177.7 31.1 192 46.33 192 63.1V191.1H128V63.1zM448 319.1V448C448 465.7 433.7 480 416 480C398.3 480 384 465.7 384 448V319.1H448z',
			),
		),
		'label'             => __( 'Arrow Down Up Across Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-up-lock'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M105.4 502.6L9.373 406.6C-3.124 394.1-3.124 373.9 9.373 361.4C21.87 348.9 42.13 348.9 54.63 361.4L96 402.7V287.1H32C14.33 287.1 0 273.7 0 255.1C0 238.3 14.33 223.1 32 223.1H288V109.3L246.6 150.6C234.1 163.1 213.9 163.1 201.4 150.6C188.9 138.1 188.9 117.9 201.4 105.4L297.4 9.372C303.4 3.371 311.5 0 320 0C328.5 0 336.6 3.372 342.6 9.372L438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6C426.1 163.1 405.9 163.1 393.4 150.6L352 109.3V223.1H426.8C419.9 238.5 416 254.8 416 271.1V287.1H160V402.7L201.4 361.4C213.9 348.9 234.1 348.9 246.6 361.4C259.1 373.9 259.1 394.1 246.6 406.6L150.6 502.6C138.1 515.1 117.9 515.1 105.4 502.6H105.4zM96 191.1V63.1C96 46.33 110.3 31.1 128 31.1C145.7 31.1 160 46.33 160 63.1V191.1H96zM352 319.1V448C352 465.7 337.7 480 320 480C302.3 480 288 465.7 288 448V319.1H352zM528 191.1C572.2 191.1 608 227.8 608 271.1V319.1C625.7 319.1 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 319.1 448 319.1V271.1C448 227.8 483.8 191.1 528 191.1zM528 239.1C510.3 239.1 496 254.3 496 271.1V319.1H560V271.1C560 254.3 545.7 239.1 528 239.1z',
			),
		),
		'label'             => __( 'Arrow Down Up Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-wide-short'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M416 288h-95.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H416c17.67 0 32-14.33 32-32S433.7 288 416 288zM544 32h-223.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H544c17.67 0 32-14.33 32-32S561.7 32 544 32zM352 416h-32c-17.67 0-32 14.33-32 32s14.33 32 32 32h32c17.67 0 31.1-14.33 31.1-32S369.7 416 352 416zM480 160h-159.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H480c17.67 0 32-14.33 32-32S497.7 160 480 160zM192.4 330.7L160 366.1V64.03C160 46.33 145.7 32 128 32S96 46.33 96 64.03v302L63.6 330.7c-6.312-6.883-14.94-10.38-23.61-10.38c-7.719 0-15.47 2.781-21.61 8.414c-13.03 11.95-13.9 32.22-1.969 45.27l87.1 96.09c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27C224.6 316.8 204.4 317.7 192.4 330.7z',
			),
		),
		'label'             => __( 'Arrow Down Wide Short', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-down-z-a'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M104.4 470.1c12.12 13.26 35.06 13.26 47.19 0l87.1-96.09c11.94-13.05 11.06-33.31-1.969-45.27c-13.02-11.95-33.27-11.04-45.22 1.973L160 366.1V64.03c0-17.7-14.33-32.03-32-32.03S96 46.33 96 64.03v302l-32.4-35.39c-6.312-6.883-14.94-10.39-23.61-10.39c-7.719 0-15.47 2.785-21.61 8.414c-13.03 11.95-13.9 32.22-1.969 45.27L104.4 470.1zM320 96h50.75l-73.38 73.38c-9.156 9.156-11.89 22.91-6.938 34.88s16.63 19.74 29.56 19.74h127.1C465.7 223.1 480 209.7 480 192s-14.33-32-32-32h-50.75l73.38-73.38c9.156-9.156 11.89-22.91 6.938-34.88S460.9 32 447.1 32h-127.1C302.3 32 288 46.31 288 64S302.3 96 320 96zM492.6 433.3l-79.99-160.1c-10.84-21.81-46.4-21.81-57.24 0l-79.99 160.1c-7.906 15.91-1.5 35.24 14.31 43.19c15.87 7.922 35.04 1.477 42.93-14.4l7.154-14.39h88.43l7.154 14.39c6.174 12.43 23.97 23.87 42.93 14.4C494.1 468.6 500.5 449.2 492.6 433.3zM367.8 391.4L384 358.7l16.22 32.63H367.8z',
			),
		),
		'label'             => __( 'Arrow Down Z A', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-left'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M447.1 256C447.1 273.7 433.7 288 416 288H109.3l105.4 105.4c12.5 12.5 12.5 32.75 0 45.25C208.4 444.9 200.2 448 192 448s-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L109.3 224H416C433.7 224 447.1 238.3 447.1 256z',
			),
		),
		'label'             => __( 'Arrow Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-left-long'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M9.375 233.4l128-128c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L109.3 224H480c17.69 0 32 14.31 32 32s-14.31 32-32 32H109.3l73.38 73.38c12.5 12.5 12.5 32.75 0 45.25c-12.49 12.49-32.74 12.51-45.25 0l-128-128C-3.125 266.1-3.125 245.9 9.375 233.4z',
			),
		),
		'label'             => __( 'Arrow Left Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-pointer'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M318.4 304.5c-3.531 9.344-12.47 15.52-22.45 15.52h-105l45.15 94.82c9.496 19.94 1.031 43.8-18.91 53.31c-19.95 9.504-43.82 1.035-53.32-18.91L117.3 351.3l-75 88.25c-4.641 5.469-11.37 8.453-18.28 8.453c-2.781 0-5.578-.4844-8.281-1.469C6.281 443.1 0 434.1 0 423.1V56.02c0-9.438 5.531-18.03 14.12-21.91C22.75 30.26 32.83 31.77 39.87 37.99l271.1 240C319.4 284.6 321.1 295.1 318.4 304.5z',
			),
		),
		'label'             => __( 'Arrow Pointer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z',
			),
		),
		'label'             => __( 'Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right-arrow-left'         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 176h370.8l-57.38 57.38c-12.5 12.5-12.5 32.75 0 45.25C351.6 284.9 359.8 288 368 288s16.38-3.125 22.62-9.375l112-112c12.5-12.5 12.5-32.75 0-45.25l-112-112c-12.5-12.5-32.75-12.5-45.25 0s-12.5 32.75 0 45.25L402.8 112H32c-17.69 0-32 14.31-32 32S14.31 176 32 176zM480 336H109.3l57.38-57.38c12.5-12.5 12.5-32.75 0-45.25s-32.75-12.5-45.25 0l-112 112c-12.5 12.5-12.5 32.75 0 45.25l112 112C127.6 508.9 135.8 512 144 512s16.38-3.125 22.62-9.375c12.5-12.5 12.5-32.75 0-45.25L109.3 400H480c17.69 0 32-14.31 32-32S497.7 336 480 336z',
			),
		),
		'label'             => __( 'Arrow Right Arrow Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right-from-bracket'       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 416H96c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h64c17.67 0 32-14.33 32-32S177.7 32 160 32H96C42.98 32 0 74.98 0 128v256c0 53.02 42.98 96 96 96h64c17.67 0 32-14.33 32-32S177.7 416 160 416zM502.6 233.4l-128-128c-12.51-12.51-32.76-12.49-45.25 0c-12.5 12.5-12.5 32.75 0 45.25L402.8 224H192C174.3 224 160 238.3 160 256s14.31 32 32 32h210.8l-73.38 73.38c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0l128-128C515.1 266.1 515.1 245.9 502.6 233.4z',
			),
		),
		'label'             => __( 'Arrow Right From Bracket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right-long'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 278.6l-128 128c-12.51 12.51-32.76 12.49-45.25 0c-12.5-12.5-12.5-32.75 0-45.25L402.8 288H32C14.31 288 0 273.7 0 255.1S14.31 224 32 224h370.8l-73.38-73.38c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l128 128C515.1 245.9 515.1 266.1 502.6 278.6z',
			),
		),
		'label'             => __( 'Arrow Right Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right-to-bracket'         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 32h-64c-17.67 0-32 14.33-32 32s14.33 32 32 32h64c17.67 0 32 14.33 32 32v256c0 17.67-14.33 32-32 32h-64c-17.67 0-32 14.33-32 32s14.33 32 32 32h64c53.02 0 96-42.98 96-96V128C512 74.98 469 32 416 32zM342.6 233.4l-128-128c-12.51-12.51-32.76-12.49-45.25 0c-12.5 12.5-12.5 32.75 0 45.25L242.8 224H32C14.31 224 0 238.3 0 256s14.31 32 32 32h210.8l-73.38 73.38c-12.5 12.5-12.5 32.75 0 45.25s32.75 12.5 45.25 0l128-128C355.1 266.1 355.1 245.9 342.6 233.4z',
			),
		),
		'label'             => __( 'Arrow Right To Bracket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-right-to-city'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 48C288 21.49 309.5 0 336 0H432C458.5 0 480 21.49 480 48V192H520V120C520 106.7 530.7 96 544 96C557.3 96 568 106.7 568 120V192H592C618.5 192 640 213.5 640 240V464C640 490.5 618.5 512 592 512H336C309.5 512 288 490.5 288 464V48zM352 112C352 120.8 359.2 128 368 128H400C408.8 128 416 120.8 416 112V80C416 71.16 408.8 64 400 64H368C359.2 64 352 71.16 352 80V112zM368 160C359.2 160 352 167.2 352 176V208C352 216.8 359.2 224 368 224H400C408.8 224 416 216.8 416 208V176C416 167.2 408.8 160 400 160H368zM352 304C352 312.8 359.2 320 368 320H400C408.8 320 416 312.8 416 304V272C416 263.2 408.8 256 400 256H368C359.2 256 352 263.2 352 272V304zM528 256C519.2 256 512 263.2 512 272V304C512 312.8 519.2 320 528 320H560C568.8 320 576 312.8 576 304V272C576 263.2 568.8 256 560 256H528zM512 400C512 408.8 519.2 416 528 416H560C568.8 416 576 408.8 576 400V368C576 359.2 568.8 352 560 352H528C519.2 352 512 359.2 512 368V400zM246.6 233.4C259.1 245.9 259.1 266.1 246.6 278.6L166.6 358.6C154.1 371.1 133.9 371.1 121.4 358.6C108.9 346.1 108.9 325.9 121.4 313.4L146.7 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H146.7L121.4 198.6C108.9 186.1 108.9 165.9 121.4 153.4C133.9 140.9 154.1 140.9 166.6 153.4L246.6 233.4z',
			),
		),
		'label'             => __( 'Arrow Right To City', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'arrow-rotate-left'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 256c0 123.4-100.5 223.9-223.9 223.9c-48.86 0-95.19-15.58-134.2-44.86c-14.14-10.59-17-30.66-6.391-44.81c10.61-14.09 30.69-16.97 44.8-6.375c27.84 20.91 61 31.94 95.89 31.94C344.3 415.8 416 344.1 416 256s-71.67-159.8-159.8-159.8C205.9 96.22 158.6 120.3 128.6 160H192c17.67 0 32 14.31 32 32S209.7 224 192 224H48c-17.67 0-32-14.31-32-32V48c0-17.69 14.33-32 32-32s32 14.31 32 32v70.23C122.1 64.58 186.1 32.11 256.1 32.11C379.5 32.11 480 132.6 480 256z',
			),
		),
		'label'             => __( 'Arrow Rotate Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'arrow-rotate-right'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M496 48V192c0 17.69-14.31 32-32 32H320c-17.69 0-32-14.31-32-32s14.31-32 32-32h63.39c-29.97-39.7-77.25-63.78-127.6-63.78C167.7 96.22 96 167.9 96 256s71.69 159.8 159.8 159.8c34.88 0 68.03-11.03 95.88-31.94c14.22-10.53 34.22-7.75 44.81 6.375c10.59 14.16 7.75 34.22-6.375 44.81c-39.03 29.28-85.36 44.86-134.2 44.86C132.5 479.9 32 379.4 32 256s100.5-223.9 223.9-223.9c69.15 0 134 32.47 176.1 86.12V48c0-17.69 14.31-32 32-32S496 30.31 496 48z',
			),
		),
		'label'             => __( 'Arrow Rotate Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'arrow-trend-down'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M466.7 352L320 205.3L214.6 310.6C202.1 323.1 181.9 323.1 169.4 310.6L9.372 150.6C-3.124 138.1-3.124 117.9 9.372 105.4C21.87 92.88 42.13 92.88 54.63 105.4L191.1 242.7L297.4 137.4C309.9 124.9 330.1 124.9 342.6 137.4L512 306.7V223.1C512 206.3 526.3 191.1 544 191.1C561.7 191.1 576 206.3 576 223.1V384C576 401.7 561.7 416 544 416H384C366.3 416 352 401.7 352 384C352 366.3 366.3 352 384 352L466.7 352z',
			),
		),
		'label'             => __( 'Arrow Trend Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-trend-up'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M384 160C366.3 160 352 145.7 352 128C352 110.3 366.3 96 384 96H544C561.7 96 576 110.3 576 128V288C576 305.7 561.7 320 544 320C526.3 320 512 305.7 512 288V205.3L342.6 374.6C330.1 387.1 309.9 387.1 297.4 374.6L191.1 269.3L54.63 406.6C42.13 419.1 21.87 419.1 9.372 406.6C-3.124 394.1-3.124 373.9 9.372 361.4L169.4 201.4C181.9 188.9 202.1 188.9 214.6 201.4L320 306.7L466.7 159.1L384 160z',
			),
		),
		'label'             => __( 'Arrow Trend Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-turn-down'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M342.6 374.6l-128 128C208.4 508.9 200.2 512 191.1 512s-16.38-3.125-22.63-9.375l-127.1-128c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L160 402.8V80C160 71.19 152.8 64 144 64H32C14.33 64 0 49.69 0 32s14.33-32 32-32h112C188.1 0 224 35.88 224 80v322.8l73.37-73.38c12.5-12.5 32.75-12.5 45.25 0S355.1 362.1 342.6 374.6z',
			),
		),
		'label'             => __( 'Arrow Turn Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-turn-up'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M342.6 182.6C336.4 188.9 328.2 192 319.1 192s-16.38-3.125-22.62-9.375L224 109.3V432c0 44.13-35.89 80-80 80H32c-17.67 0-32-14.31-32-32s14.33-32 32-32h112C152.8 448 160 440.8 160 432V109.3L86.62 182.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l127.1-128c12.5-12.5 32.75-12.5 45.25 0l128 128C355.1 149.9 355.1 170.1 342.6 182.6z',
			),
		),
		'label'             => __( 'Arrow Turn Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M374.6 246.6C368.4 252.9 360.2 256 352 256s-16.38-3.125-22.62-9.375L224 141.3V448c0 17.69-14.33 31.1-31.1 31.1S160 465.7 160 448V141.3L54.63 246.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0l160 160C387.1 213.9 387.1 234.1 374.6 246.6z',
			),
		),
		'label'             => __( 'Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-1-9'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 192c0 17.69 14.31 31.1 32 31.1L416 224c17.69 0 32-14.31 32-32s-14.31-32-32-32V63.98c0-11.19-5.844-21.53-15.38-27.34c-9.531-5.781-21.41-6.188-31.34-1.062l-32 16.59c-15.69 8.125-21.81 27.44-13.69 43.13C329.3 106.3 340.4 112.6 352 112.6V160C334.3 160 320 174.3 320 192zM392 255.6c-48.6 0-88 39.4-88 88c0 36.44 22.15 67.7 53.71 81.07l-7.682 8.004c-10.72 11.16-10.34 28.88 .8125 39.56C356.3 477.4 363.3 480 370.2 480c7.344 0 14.72-2.875 20.19-8.625c69.61-72.53 89.6-85.39 89.6-127.8C480 294.1 440.6 255.6 392 255.6zM392 367.6c-13.23 0-24-10.77-24-24s10.77-24 24-24s24 10.77 24 24S405.2 367.6 392 367.6zM39.99 191.7c8.672 0 17.3-3.5 23.61-10.38L96 145.9v302c0 17.7 14.33 32.03 31.1 32.03s32-14.33 32-32.03V145.9L192.4 181.3C204.4 194.3 224.6 195.2 237.6 183.3c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.94c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.475 151.1 5.35 171.3 18.38 183.3C24.52 188.9 32.27 191.7 39.99 191.7z',
			),
		),
		'label'             => __( 'Arrow Up 1 9', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-9-1'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M237.6 183.3c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.94c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.475 151.1 5.35 171.3 18.38 183.3c13.02 11.95 33.27 11.04 45.22-1.969L96 145.9v302c0 17.7 14.33 32.03 31.1 32.03s32-14.33 32-32.03V145.9L192.4 181.3c6.312 6.883 14.94 10.38 23.61 10.38C223.7 191.7 231.5 188.9 237.6 183.3zM357.7 201.1l-7.682 8.004c-10.72 11.16-10.34 28.88 .8125 39.56c5.406 5.219 12.41 7.812 19.38 7.812c7.344 0 14.72-2.875 20.19-8.625c69.61-72.53 89.6-85.39 89.6-127.8c0-48.6-39.4-88-88-88s-88 39.4-88 88C303.1 156.4 326.1 187.7 357.7 201.1zM392 96c13.23 0 24 10.77 24 24S405.2 144 392 144S368 133.2 368 120S378.8 96 392 96zM416 416.4v-96.02c0-11.19-5.844-21.53-15.38-27.34c-9.531-5.781-21.41-6.188-31.34-1.062l-32 16.59c-15.69 8.125-21.81 27.44-13.69 43.13C329.3 362.8 340.4 369 352 369v47.41c-17.69 0-32 14.31-32 32s14.31 32 32 32h64c17.69 0 32-14.31 32-32S433.7 416.4 416 416.4z',
			),
		),
		'label'             => __( 'Arrow Up 9 1', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-a-z'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M151.6 41.95c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.473 151.1 5.348 171.4 18.38 183.3c13.02 11.95 33.27 11.04 45.22-1.973L96 145.9v302C96 465.7 110.3 480 128 480S160 465.7 160 447.1V145.9L192.4 181.3c11.46 12.49 31.67 14.39 45.22 1.973c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.95zM448 416h-50.75l73.38-73.38c9.156-9.156 11.89-22.91 6.938-34.88s-16.63-19.86-29.56-19.86H319.1C302.3 287.9 288 302.3 288 320s14.33 32 32 32h50.75l-73.38 73.38c-9.156 9.156-11.89 22.91-6.938 34.88S307.1 480 319.1 480h127.1C465.7 480 480 465.7 480 448S465.7 416 448 416zM492.6 209.3l-79.99-160.1c-10.84-21.81-46.4-21.81-57.24 0L275.4 209.3c-7.906 15.91-1.5 35.24 14.31 43.19c15.87 7.922 35.04 1.477 42.93-14.4l7.154-14.39h88.43l7.154 14.39c6.174 12.43 23.97 23.87 42.93 14.4C494.1 244.6 500.5 225.2 492.6 209.3zM367.8 167.4L384 134.7l16.22 32.63H367.8z',
			),
		),
		'label'             => __( 'Arrow Up A Z', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-from-bracket'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 352v64c0 17.67-14.33 32-32 32H96c-17.67 0-32-14.33-32-32v-64c0-17.67-14.33-32-32-32s-32 14.33-32 32v64c0 53.02 42.98 96 96 96h256c53.02 0 96-42.98 96-96v-64c0-17.67-14.33-32-32-32S384 334.3 384 352zM201.4 9.375l-128 128c-12.51 12.51-12.49 32.76 0 45.25c12.5 12.5 32.75 12.5 45.25 0L192 109.3V320c0 17.69 14.31 32 32 32s32-14.31 32-32V109.3l73.38 73.38c12.5 12.5 32.75 12.5 45.25 0s12.5-32.75 0-45.25l-128-128C234.1-3.125 213.9-3.125 201.4 9.375z',
			),
		),
		'label'             => __( 'Arrow Up From Bracket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-from-ground-water'     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 319.1V109.3L230.6 134.6C218.1 147.1 197.9 147.1 185.4 134.6C172.9 122.1 172.9 101.9 185.4 89.37L265.4 9.372C277.9-3.124 298.1-3.124 310.6 9.372L390.6 89.37C403.1 101.9 403.1 122.1 390.6 134.6C378.1 147.1 357.9 147.1 345.4 134.6L320 109.3V319.1C320 337.7 305.7 352 288 352C270.3 352 256 337.7 256 319.1zM269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448C410.9 448 439.4 437.2 461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515.1 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.13 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.854 504.5 .8429 487.3C-3.168 470.1 7.533 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9H269.5zM192 416.5C172.1 416.4 150.8 408.5 132.9 396.1C109.1 379.4 77.01 380.8 54.78 399.5C44.18 408.3 30.59 415.1 17.49 418.1C11.19 419.6 5.326 421.9 0 425V239.1C0 213.5 21.49 191.1 48 191.1H192V416.5zM576 239.1V424.1C570.7 421.9 564.8 419.6 558.5 418.1C545.4 415.1 531.8 408.3 521.2 399.5C499 380.8 466.9 379.4 443.2 396.1C425.2 408.5 403 416.5 384 416.5L384 191.1H528C554.5 191.1 576 213.5 576 239.1L576 239.1z',
			),
		),
		'label'             => __( 'Arrow Up From Ground Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'arrow-up-from-water-pump'       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M239.1 0C266.5 0 287.1 21.49 287.1 48V256H416V109.3L390.6 134.6C378.1 147.1 357.9 147.1 345.4 134.6C332.9 122.1 332.9 101.9 345.4 89.37L425.4 9.373C437.9-3.124 458.1-3.124 470.6 9.373L550.6 89.37C563.1 101.9 563.1 122.1 550.6 134.6C538.1 147.1 517.9 147.1 505.4 134.6L480 109.3V256H528C554.5 256 576 277.5 576 304V400C576 408 574 415.6 570.6 422.2C566.8 420.5 562.8 419.1 558.5 418.1C545.4 415.1 531.8 408.3 521.2 399.5C499 380.8 466.9 379.4 443.2 396.1C425.2 408.5 403 416.5 384 416.5C364.4 416.5 343.2 408.8 324.8 396.1C302.8 380.6 273.3 380.6 251.2 396.1C234 407.9 213.2 416.5 192 416.5C172.1 416.5 150.8 408.5 132.9 396.1C109.1 379.4 77.01 380.8 54.78 399.5C44.18 408.3 30.59 415.1 17.49 418.1C13.27 419.1 9.239 420.5 5.439 422.2C1.965 415.6 0 408 0 400V304C0 277.5 21.49 256 48 256H64V48C64 21.49 85.49 0 112 0H239.1zM384 448C410.9 448 439.4 437.2 461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448H384z',
			),
		),
		'label'             => __( 'Arrow Up From Water Pump', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'arrow-up-long'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M310.6 182.6c-12.51 12.51-32.76 12.49-45.25 0L192 109.3V480c0 17.69-14.31 32-32 32s-32-14.31-32-32V109.3L54.63 182.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l128-128c12.5-12.5 32.75-12.5 45.25 0l128 128C323.1 149.9 323.1 170.1 310.6 182.6z',
			),
		),
		'label'             => __( 'Arrow Up Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-right-dots'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M287.1 0C305.7 0 320 14.33 320 32V160C320 177.7 305.7 192 287.1 192C270.3 192 255.1 177.7 255.1 160V109.3L54.63 310.6C42.13 323.1 21.87 323.1 9.372 310.6C-3.124 298.1-3.124 277.9 9.372 265.4L210.7 64H159.1C142.3 64 127.1 49.67 127.1 32C127.1 14.33 142.3 0 159.1 0H287.1zM576 80C576 106.5 554.5 128 528 128C501.5 128 480 106.5 480 80C480 53.49 501.5 32 528 32C554.5 32 576 53.49 576 80zM448 208C448 234.5 426.5 256 400 256C373.5 256 352 234.5 352 208C352 181.5 373.5 160 400 160C426.5 160 448 181.5 448 208zM352 336C352 309.5 373.5 288 400 288C426.5 288 448 309.5 448 336C448 362.5 426.5 384 400 384C373.5 384 352 362.5 352 336zM448 464C448 490.5 426.5 512 400 512C373.5 512 352 490.5 352 464C352 437.5 373.5 416 400 416C426.5 416 448 437.5 448 464zM576 464C576 490.5 554.5 512 528 512C501.5 512 480 490.5 480 464C480 437.5 501.5 416 528 416C554.5 416 576 437.5 576 464zM223.1 336C223.1 309.5 245.5 288 271.1 288C298.5 288 320 309.5 320 336C320 362.5 298.5 384 271.1 384C245.5 384 223.1 362.5 223.1 336zM320 464C320 490.5 298.5 512 271.1 512C245.5 512 223.1 490.5 223.1 464C223.1 437.5 245.5 416 271.1 416C298.5 416 320 437.5 320 464zM95.1 464C95.1 437.5 117.5 416 143.1 416C170.5 416 191.1 437.5 191.1 464C191.1 490.5 170.5 512 143.1 512C117.5 512 95.1 490.5 95.1 464zM576 336C576 362.5 554.5 384 528 384C501.5 384 480 362.5 480 336C480 309.5 501.5 288 528 288C554.5 288 576 309.5 576 336zM480 208C480 181.5 501.5 160 528 160C554.5 160 576 181.5 576 208C576 234.5 554.5 256 528 256C501.5 256 480 234.5 480 208z',
			),
		),
		'label'             => __( 'Arrow Up Right Dots', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-right-from-square'     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 64C256 46.33 270.3 32 288 32H415.1C415.1 32 415.1 32 415.1 32C420.3 32 424.5 32.86 428.2 34.43C431.1 35.98 435.5 38.27 438.6 41.3C438.6 41.35 438.6 41.4 438.7 41.44C444.9 47.66 447.1 55.78 448 63.9C448 63.94 448 63.97 448 64V192C448 209.7 433.7 224 416 224C398.3 224 384 209.7 384 192V141.3L214.6 310.6C202.1 323.1 181.9 323.1 169.4 310.6C156.9 298.1 156.9 277.9 169.4 265.4L338.7 96H288C270.3 96 256 81.67 256 64V64zM0 128C0 92.65 28.65 64 64 64H160C177.7 64 192 78.33 192 96C192 113.7 177.7 128 160 128H64V416H352V320C352 302.3 366.3 288 384 288C401.7 288 416 302.3 416 320V416C416 451.3 387.3 480 352 480H64C28.65 480 0 451.3 0 416V128z',
			),
		),
		'label'             => __( 'Arrow Up Right From Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-short-wide'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 416h-223.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H544c17.67 0 32-14.33 32-32S561.7 416 544 416zM320 96h32c17.67 0 31.1-14.33 31.1-32s-14.33-32-31.1-32h-32c-17.67 0-32 14.33-32 32S302.3 96 320 96zM320 224H416c17.67 0 32-14.33 32-32s-14.33-32-32-32h-95.1c-17.67 0-32 14.33-32 32S302.3 224 320 224zM320 352H480c17.67 0 32-14.33 32-32s-14.33-32-32-32h-159.1c-17.67 0-32 14.33-32 32S302.3 352 320 352zM151.6 41.95c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.475 151.1 5.35 171.4 18.38 183.3c6.141 5.629 13.89 8.414 21.61 8.414c8.672 0 17.3-3.504 23.61-10.39L96 145.9v302C96 465.7 110.3 480 128 480s32-14.33 32-32.03V145.9L192.4 181.3C204.4 194.3 224.6 195.3 237.6 183.3c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.95z',
			),
		),
		'label'             => __( 'Arrow Up Short Wide', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-wide-short'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M416 288h-95.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H416c17.67 0 32-14.33 32-32S433.7 288 416 288zM352 416h-32c-17.67 0-32 14.33-32 32s14.33 32 32 32h32c17.67 0 31.1-14.33 31.1-32S369.7 416 352 416zM480 160h-159.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H480c17.67 0 32-14.33 32-32S497.7 160 480 160zM544 32h-223.1c-17.67 0-32 14.33-32 32s14.33 32 32 32H544c17.67 0 32-14.33 32-32S561.7 32 544 32zM151.6 41.95c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.475 151.1 5.35 171.4 18.38 183.3c6.141 5.629 13.89 8.414 21.61 8.414c8.672 0 17.3-3.504 23.61-10.39L96 145.9v302C96 465.7 110.3 480 128 480s32-14.33 32-32.03V145.9L192.4 181.3C204.4 194.3 224.6 195.3 237.6 183.3c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.95z',
			),
		),
		'label'             => __( 'Arrow Up Wide Short', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrow-up-z-a'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M151.6 41.95c-12.12-13.26-35.06-13.26-47.19 0l-87.1 96.09C4.473 151.1 5.348 171.4 18.38 183.3c13.02 11.95 33.27 11.04 45.22-1.973L96 145.9v302C96 465.7 110.3 480 128 480S160 465.7 160 447.1V145.9L192.4 181.3c6.312 6.883 14.94 10.39 23.61 10.39c7.719 0 15.47-2.785 21.61-8.414c13.03-11.95 13.9-32.22 1.969-45.27L151.6 41.95zM320 96h50.75l-73.38 73.38c-9.156 9.156-11.89 22.91-6.938 34.88s16.63 19.74 29.56 19.74h127.1C465.7 223.1 480 209.7 480 192s-14.33-32-32-32h-50.75l73.38-73.38c9.156-9.156 11.89-22.91 6.938-34.88S460.9 32 447.1 32h-127.1C302.3 32 288 46.31 288 64S302.3 96 320 96zM492.6 433.3l-79.99-160.1c-10.84-21.81-46.4-21.81-57.24 0l-79.99 160.1c-7.906 15.91-1.5 35.24 14.31 43.19c15.87 7.922 35.04 1.477 42.93-14.4l7.154-14.39h88.43l7.154 14.39c6.174 12.43 23.97 23.87 42.93 14.4C494.1 468.6 500.5 449.2 492.6 433.3zM367.8 391.4L384 358.7l16.22 32.63H367.8z',
			),
		),
		'label'             => __( 'Arrow Up Z A', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-down-to-line'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 416C561.7 416 576 430.3 576 448C576 465.7 561.7 480 544 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H544zM470.6 374.6C458.1 387.1 437.9 387.1 425.4 374.6L329.4 278.6C316.9 266.1 316.9 245.9 329.4 233.4C341.9 220.9 362.1 220.9 374.6 233.4L416 274.7V64C416 46.33 430.3 32 448 32C465.7 32 480 46.33 480 64V274.7L521.4 233.4C533.9 220.9 554.1 220.9 566.6 233.4C579.1 245.9 579.1 266.1 566.6 278.6L470.6 374.6zM246.6 278.6L150.6 374.6C138.1 387.1 117.9 387.1 105.4 374.6L9.373 278.6C-3.124 266.1-3.124 245.9 9.373 233.4C21.87 220.9 42.13 220.9 54.63 233.4L96 274.7V64C96 46.33 110.3 32 128 32C145.7 32 160 46.33 160 64V274.7L201.4 233.4C213.9 220.9 234.1 220.9 246.6 233.4C259.1 245.9 259.1 266.1 246.6 278.6H246.6z',
			),
		),
		'label'             => __( 'Arrows Down To Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-down-to-people'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M167.1 24V142.1L191 119C200.4 109.7 215.6 109.7 224.1 119C234.3 128.4 234.3 143.6 224.1 152.1L160.1 216.1C151.6 226.3 136.4 226.3 127 216.1L63.03 152.1C53.65 143.6 53.65 128.4 63.03 119C72.4 109.7 87.6 109.7 96.97 119L119.1 142.1V24C119.1 10.75 130.7 0 143.1 0C157.3 0 167.1 10.75 167.1 24V24zM359.1 200C359.1 222.1 342.1 240 319.1 240C297.9 240 279.1 222.1 279.1 200C279.1 177.9 297.9 160 319.1 160C342.1 160 359.1 177.9 359.1 200zM183.1 296C183.1 318.1 166.1 336 143.1 336C121.9 336 103.1 318.1 103.1 296C103.1 273.9 121.9 256 143.1 256C166.1 256 183.1 273.9 183.1 296zM455.1 296C455.1 273.9 473.9 256 495.1 256C518.1 256 535.1 273.9 535.1 296C535.1 318.1 518.1 336 495.1 336C473.9 336 455.1 318.1 455.1 296zM199.1 480C199.1 497.7 185.7 512 167.1 512H119.1C102.3 512 87.1 497.7 87.1 480V441.5L61.13 491.4C54.84 503 40.29 507.4 28.62 501.1C16.95 494.8 12.58 480.3 18.87 468.6L56.74 398.3C72.09 369.8 101.9 352 134.2 352H153.8C170.1 352 185.7 356.5 199.2 364.6L232.7 302.3C248.1 273.8 277.9 255.1 310.2 255.1H329.8C362.1 255.1 391.9 273.8 407.3 302.3L440.8 364.6C454.3 356.5 469.9 352 486.2 352H505.8C538.1 352 567.9 369.8 583.3 398.3L621.1 468.6C627.4 480.3 623 494.8 611.4 501.1C599.7 507.4 585.1 503 578.9 491.4L551.1 441.5V480C551.1 497.7 537.7 512 519.1 512H471.1C454.3 512 439.1 497.7 439.1 480V441.5L413.1 491.4C406.8 503 392.3 507.4 380.6 501.1C368.9 494.8 364.6 480.3 370.9 468.6L407.2 401.1C405.5 399.5 404 397.6 402.9 395.4L375.1 345.5V400C375.1 417.7 361.7 432 343.1 432H295.1C278.3 432 263.1 417.7 263.1 400V345.5L237.1 395.4C235.1 397.6 234.5 399.5 232.8 401.1L269.1 468.6C275.4 480.3 271 494.8 259.4 501.1C247.7 507.4 233.1 503 226.9 491.4L199.1 441.5L199.1 480zM415 152.1C405.7 143.6 405.7 128.4 415 119C424.4 109.7 439.6 109.7 448.1 119L471.1 142.1V24C471.1 10.75 482.7 0 495.1 0C509.3 0 519.1 10.75 519.1 24V142.1L543 119C552.4 109.7 567.6 109.7 576.1 119C586.3 128.4 586.3 143.6 576.1 152.1L512.1 216.1C503.6 226.3 488.4 226.3 479 216.1L415 152.1z',
			),
		),
		'label'             => __( 'Arrows Down To People', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-left-right'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 278.6l-96 96C400.4 380.9 392.2 384 384 384s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L402.8 288h-293.5l41.38 41.38c12.5 12.5 12.5 32.75 0 45.25C144.4 380.9 136.2 384 128 384s-16.38-3.125-22.62-9.375l-96-96c-12.5-12.5-12.5-32.75 0-45.25l96-96c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L109.3 224h293.5l-41.38-41.38c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l96 96C515.1 245.9 515.1 266.1 502.6 278.6z',
			),
		),
		'label'             => __( 'Arrows Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-left-right-to-line'      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 64C49.67 64 64 78.33 64 96V416C64 433.7 49.67 448 32 448C14.33 448 0 433.7 0 416V96C0 78.33 14.33 64 32 64zM246.6 137.4C259.1 149.9 259.1 170.1 246.6 182.6L205.3 224H434.7L393.4 182.6C380.9 170.1 380.9 149.9 393.4 137.4C405.9 124.9 426.1 124.9 438.6 137.4L534.6 233.4C547.1 245.9 547.1 266.1 534.6 278.6L438.6 374.6C426.1 387.1 405.9 387.1 393.4 374.6C380.9 362.1 380.9 341.9 393.4 329.4L434.7 288H205.3L246.6 329.4C259.1 341.9 259.1 362.1 246.6 374.6C234.1 387.1 213.9 387.1 201.4 374.6L105.4 278.6C92.88 266.1 92.88 245.9 105.4 233.4L201.4 137.4C213.9 124.9 234.1 124.9 246.6 137.4V137.4zM640 416C640 433.7 625.7 448 608 448C590.3 448 576 433.7 576 416V96C576 78.33 590.3 64 608 64C625.7 64 640 78.33 640 96V416z',
			),
		),
		'label'             => __( 'Arrows Left Right To Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-rotate'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 16c-17.67 0-32 14.31-32 32v74.09C392.1 66.52 327.4 32 256 32C161.5 32 78.59 92.34 49.58 182.2c-5.438 16.81 3.797 34.88 20.61 40.28c16.89 5.5 34.88-3.812 40.3-20.59C130.9 138.5 189.4 96 256 96c50.5 0 96.26 24.55 124.4 64H336c-17.67 0-32 14.31-32 32s14.33 32 32 32h128c17.67 0 32-14.31 32-32V48C496 30.31 481.7 16 464 16zM441.8 289.6c-16.92-5.438-34.88 3.812-40.3 20.59C381.1 373.5 322.6 416 256 416c-50.5 0-96.25-24.55-124.4-64H176c17.67 0 32-14.31 32-32s-14.33-32-32-32h-128c-17.67 0-32 14.31-32 32v144c0 17.69 14.33 32 32 32s32-14.31 32-32v-74.09C119.9 445.5 184.6 480 255.1 480c94.45 0 177.4-60.34 206.4-150.2C467.9 313 458.6 294.1 441.8 289.6z',
			),
		),
		'label'             => __( 'Arrows Rotate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'arrows-spin'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M257.1 95.53C245.8 95.53 234.7 96.72 223.1 98.97V33.97C234.8 32.36 245.9 31.53 257.1 31.53C315.3 31.53 368.3 53.72 408.2 90.11L437.6 60.69C447.7 50.61 464.9 57.75 464.9 72V177.4C464.9 186.2 457.7 193.4 448.9 193.4H343.5C329.3 193.4 322.1 176.1 332.2 166.1L362.9 135.4C334.7 110.6 297.7 95.53 257.1 95.53L257.1 95.53zM97.14 255.5C97.14 266.7 98.27 277.5 100.4 288H35.47C33.93 277.4 33.14 266.6 33.14 255.5C33.14 198.2 54.71 145.8 90.18 106.2L60.69 76.69C50.61 66.61 57.74 49.38 71.1 49.38H177.4C186.2 49.38 193.4 56.54 193.4 65.38V170.7C193.4 185 176.1 192.1 166.1 182.1L135.5 151.5C111.6 179.5 97.14 215.8 97.14 255.5V255.5zM182.1 348.2L153.1 377.1C181.1 401.1 217.4 415.5 257.1 415.5C267.7 415.5 278 414.5 288 412.6V477.4C277.9 478.8 267.6 479.5 257.1 479.5C199.8 479.5 147.4 457.1 107.8 422.5L76.69 453.6C66.61 463.7 49.37 456.5 49.37 442.3V336.9C49.37 328.1 56.54 320.9 65.37 320.9H170.7C184.1 320.9 192.1 338.1 182.1 348.2H182.1zM348.2 332.2L377.2 361.2C402.1 333.1 417.1 296.1 417.1 255.5C417.1 244.7 416.1 234.2 414 224H478.9C480.4 234.3 481.1 244.8 481.1 255.5C481.1 313.7 458.9 366.7 422.6 406.6L453.6 437.6C463.7 447.7 456.5 464.9 442.3 464.9H336.9C328.1 464.9 320.9 457.7 320.9 448.9V343.5C320.9 329.3 338.1 322.1 348.2 332.2L348.2 332.2z',
			),
		),
		'label'             => __( 'Arrows Spin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'arrows-split-up-and-left'       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M246.6 150.6C234.1 163.1 213.9 163.1 201.4 150.6C188.9 138.1 188.9 117.9 201.4 105.4L297.4 9.372C309.9-3.124 330.1-3.124 342.6 9.372L438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6C426.1 163.1 405.9 163.1 393.4 150.6L352 109.3V384C352 419.3 380.7 448 416 448H480C497.7 448 512 462.3 512 480C512 497.7 497.7 512 480 512H416C345.3 512 288 454.7 288 384C288 348.7 259.3 320 224 320H109.3L150.6 361.4C163.1 373.9 163.1 394.1 150.6 406.6C138.1 419.1 117.9 419.1 105.4 406.6L9.38 310.6L9.305 310.6C3.575 304.8 .0259 296.9 .0003 288.1L2.428 275.8C3.99 271.1 6.305 268.4 9.372 265.4L105.4 169.4C117.9 156.9 138.1 156.9 150.6 169.4C163.1 181.9 163.1 202.1 150.6 214.6L109.3 255.1H224C247.3 255.1 269.2 262.2 288 273.1V109.3L246.6 150.6zM0 287.9C.0125 283.6 .8749 279.5 2.428 275.8C.8214 279.6 .0122 283.8 0 287.9zM0 288.1V287.1V287.9V288.1z',
			),
		),
		'label'             => __( 'Arrows Split Up And Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-to-circle'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M9.372 9.372C21.87-3.124 42.13-3.124 54.63 9.372L159.1 114.7V95.1C159.1 78.33 174.3 63.1 191.1 63.1C209.7 63.1 223.1 78.33 223.1 95.1V191.1C223.1 196.3 223.1 200.5 221.6 204.2C220 207.1 217.7 211.5 214.7 214.6L214.6 214.7C211.5 217.7 207.1 220 204.2 221.6C200.5 223.1 196.3 223.1 191.1 223.1H95.1C78.33 223.1 63.1 209.7 63.1 191.1C63.1 174.3 78.33 159.1 95.1 159.1H114.7L9.372 54.63C-3.124 42.13-3.124 21.87 9.372 9.372V9.372zM384 256C384 291.3 355.3 320 320 320C284.7 320 256 291.3 256 256C256 220.7 284.7 192 320 192C355.3 192 384 220.7 384 256zM96 352C78.33 352 64 337.7 64 320C64 302.3 78.33 288 96 288H192H192.1C200.9 288 208.8 291.6 214.6 297.3L214.7 297.4C217.7 300.5 220 304 221.6 307.8C223.1 311.5 224 315.7 224 319.1V416C224 433.7 209.7 448 192 448C174.3 448 160 433.7 160 416V397.3L54.63 502.6C42.13 515.1 21.87 515.1 9.373 502.6C-3.124 490.1-3.124 469.9 9.373 457.4L114.7 352L96 352zM448 64C465.7 64 480 78.33 480 96V114.7L585.4 9.373C597.9-3.124 618.1-3.124 630.6 9.373C643.1 21.87 643.1 42.13 630.6 54.63L525.3 160H544C561.7 160 576 174.3 576 192C576 209.7 561.7 224 544 224H448C439.2 224 431.2 220.4 425.4 214.7L425.3 214.6C422.3 211.5 419.1 207.1 418.4 204.2C416.9 200.5 416 196.4 416 192.1V191.1V96C416 78.33 430.3 64 448 64H448zM525.3 352L630.6 457.4C643.1 469.9 643.1 490.1 630.6 502.6C618.1 515.1 597.9 515.1 585.4 502.6L480 397.3V416C480 433.7 465.7 448 448 448C430.3 448 416 433.7 416 416V320C416 319.1 416 319.9 416 319.9C416 315.6 416.9 311.5 418.4 307.8C419.1 303.1 422.3 300.4 425.4 297.4C431.1 291.6 439.1 288 447.9 288C447.9 288 447.1 288 448 288H544C561.7 288 576 302.3 576 320C576 337.7 561.7 352 544 352L525.3 352z',
			),
		),
		'label'             => __( 'Arrows To Circle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-to-dot'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 82.74L297.4 73.37C309.9 60.88 330.1 60.88 342.6 73.37C355.1 85.87 355.1 106.1 342.6 118.6L278.6 182.6C266.1 195.1 245.9 195.1 233.4 182.6L169.4 118.6C156.9 106.1 156.9 85.87 169.4 73.37C181.9 60.88 202.1 60.88 214.6 73.37L223.1 82.75V32C223.1 14.33 238.3 0 255.1 0C273.7 0 288 14.33 288 32L288 82.74zM438.6 342.6C426.1 355.1 405.9 355.1 393.4 342.6L329.4 278.6C316.9 266.1 316.9 245.9 329.4 233.4L393.4 169.4C405.9 156.9 426.1 156.9 438.6 169.4C451.1 181.9 451.1 202.1 438.6 214.6L429.3 223.1H480C497.7 223.1 512 238.3 512 255.1C512 273.7 497.7 287.1 480 287.1H429.3L438.6 297.4C451.1 309.9 451.1 330.1 438.6 342.6V342.6zM288 256C288 273.7 273.7 288 256 288C238.3 288 224 273.7 224 256C224 238.3 238.3 224 256 224C273.7 224 288 238.3 288 256zM182.6 233.4C195.1 245.9 195.1 266.1 182.6 278.6L118.6 342.6C106.1 355.1 85.87 355.1 73.37 342.6C60.88 330.1 60.88 309.9 73.37 297.4L82.75 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H82.74L73.37 214.6C60.88 202.1 60.88 181.9 73.37 169.4C85.87 156.9 106.1 156.9 118.6 169.4L182.6 233.4zM169.4 438.6C156.9 426.1 156.9 405.9 169.4 393.4L233.4 329.4C245.9 316.9 266.1 316.9 278.6 329.4L342.6 393.4C355.1 405.9 355.1 426.1 342.6 438.6C330.1 451.1 309.9 451.1 297.4 438.6L288 429.3V480C288 497.7 273.7 512 256 512C238.3 512 224 497.7 224 480V429.3L214.6 438.6C202.1 451.1 181.9 451.1 169.4 438.6H169.4z',
			),
		),
		'label'             => __( 'Arrows To Dot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'arrows-to-eye'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M15.03 15.03C24.4 5.657 39.6 5.657 48.97 15.03L112 78.06V40C112 26.75 122.7 15.1 136 15.1C149.3 15.1 160 26.75 160 40V136C160 149.3 149.3 160 136 160H40C26.75 160 15.1 149.3 15.1 136C15.1 122.7 26.75 112 40 112H78.06L15.03 48.97C5.657 39.6 5.657 24.4 15.03 15.03V15.03zM133.5 243.9C158.6 193.6 222.7 112 320 112C417.3 112 481.4 193.6 506.5 243.9C510.3 251.6 510.3 260.4 506.5 268.1C481.4 318.4 417.3 400 320 400C222.7 400 158.6 318.4 133.5 268.1C129.7 260.4 129.7 251.6 133.5 243.9V243.9zM320 320C355.3 320 384 291.3 384 256C384 220.7 355.3 192 320 192C284.7 192 256 220.7 256 256C256 291.3 284.7 320 320 320zM591 15.03C600.4 5.657 615.6 5.657 624.1 15.03C634.3 24.4 634.3 39.6 624.1 48.97L561.9 112H600C613.3 112 624 122.7 624 136C624 149.3 613.3 160 600 160H504C490.7 160 480 149.3 480 136V40C480 26.75 490.7 15.1 504 15.1C517.3 15.1 528 26.75 528 40V78.06L591 15.03zM15.03 463L78.06 400H40C26.75 400 15.1 389.3 15.1 376C15.1 362.7 26.75 352 40 352H136C149.3 352 160 362.7 160 376V472C160 485.3 149.3 496 136 496C122.7 496 112 485.3 112 472V433.9L48.97 496.1C39.6 506.3 24.4 506.3 15.03 496.1C5.657 487.6 5.657 472.4 15.03 463V463zM528 433.9V472C528 485.3 517.3 496 504 496C490.7 496 480 485.3 480 472V376C480 362.7 490.7 352 504 352H600C613.3 352 624 362.7 624 376C624 389.3 613.3 400 600 400H561.9L624.1 463C634.3 472.4 634.3 487.6 624.1 496.1C615.6 506.3 600.4 506.3 591 496.1L528 433.9z',
			),
		),
		'label'             => __( 'Arrows To Eye', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'arrows-turn-right'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M297.4 9.372C309.9-3.124 330.1-3.124 342.6 9.372L438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L342.6 246.6C330.1 259.1 309.9 259.1 297.4 246.6C284.9 234.1 284.9 213.9 297.4 201.4L338.7 160H128C92.65 160 64 188.7 64 224V256C64 273.7 49.67 288 32 288C14.33 288 0 273.7 0 256V224C0 153.3 57.31 96 128 96H338.7L297.4 54.63C284.9 42.13 284.9 21.87 297.4 9.373V9.372zM201.4 265.4C213.9 252.9 234.1 252.9 246.6 265.4L342.6 361.4C355.1 373.9 355.1 394.1 342.6 406.6L246.6 502.6C234.1 515.1 213.9 515.1 201.4 502.6C188.9 490.1 188.9 469.9 201.4 457.4L242.7 416H96C78.33 416 64 430.3 64 448V480C64 497.7 49.67 512 32 512C14.33 512 0 497.7 0 480V448C0 394.1 42.98 352 96 352H242.7L201.4 310.6C188.9 298.1 188.9 277.9 201.4 265.4V265.4z',
			),
		),
		'label'             => __( 'Arrows Turn Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-turn-to-dots'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M249.4 25.37C261.9 12.88 282.1 12.88 294.6 25.37C307.1 37.87 307.1 58.13 294.6 70.63L269.3 95.1H416C469 95.1 512 138.1 512 191.1V223.1C512 241.7 497.7 255.1 480 255.1C462.3 255.1 448 241.7 448 223.1V191.1C448 174.3 433.7 159.1 416 159.1H269.3L294.6 185.4C307.1 197.9 307.1 218.1 294.6 230.6C282.1 243.1 261.9 243.1 249.4 230.6L169.4 150.6C156.9 138.1 156.9 117.9 169.4 105.4L249.4 25.37zM342.6 361.4C355.1 373.9 355.1 394.1 342.6 406.6L262.6 486.6C250.1 499.1 229.9 499.1 217.4 486.6C204.9 474.1 204.9 453.9 217.4 441.4L242.7 416H96C78.33 416 64 430.3 64 448V480C64 497.7 49.67 512 32 512C14.33 512 0 497.7 0 480V448C0 394.1 42.98 352 96 352H242.7L217.4 326.6C204.9 314.1 204.9 293.9 217.4 281.4C229.9 268.9 250.1 268.9 262.6 281.4L342.6 361.4zM512 384C512 419.3 483.3 448 448 448C412.7 448 384 419.3 384 384C384 348.7 412.7 320 448 320C483.3 320 512 348.7 512 384zM128 128C128 163.3 99.35 192 64 192C28.65 192 0 163.3 0 128C0 92.65 28.65 64 64 64C99.35 64 128 92.65 128 128z',
			),
		),
		'label'             => __( 'Arrows Turn To Dots', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-up-down'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M246.6 361.4C252.9 367.6 256 375.8 256 384s-3.125 16.38-9.375 22.62l-96 96c-12.5 12.5-32.75 12.5-45.25 0l-96-96c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L96 402.8v-293.5L54.63 150.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l96-96c12.5-12.5 32.75-12.5 45.25 0l96 96C252.9 111.6 256 119.8 256 128s-3.125 16.38-9.375 22.62c-12.5 12.5-32.75 12.5-45.25 0L160 109.3v293.5l41.38-41.38C213.9 348.9 234.1 348.9 246.6 361.4z',
			),
		),
		'label'             => __( 'Arrows Up Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-up-down-left-right'      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 255.1c0 8.188-3.125 16.41-9.375 22.66l-72 72C424.4 356.9 416.2 360 408 360c-18.28 0-32-14.95-32-32c0-8.188 3.125-16.38 9.375-22.62L402.8 288H288v114.8l17.38-17.38C311.6 379.1 319.8 376 328 376c18.28 0 32 14.95 32 32c0 8.188-3.125 16.38-9.375 22.62l-72 72C272.4 508.9 264.2 512 256 512s-16.38-3.125-22.62-9.375l-72-72C155.1 424.4 152 416.2 152 408c0-17.05 13.73-32 32-32c8.188 0 16.38 3.125 22.62 9.375L224 402.8V288H109.3l17.38 17.38C132.9 311.6 136 319.8 136 328c0 17.05-13.73 32-32 32c-8.188 0-16.38-3.125-22.62-9.375l-72-72C3.125 272.4 0 264.2 0 255.1s3.125-16.34 9.375-22.59l72-72C87.63 155.1 95.81 152 104 152c18.28 0 32 14.95 32 32c0 8.188-3.125 16.38-9.375 22.62L109.3 224H224V109.3L206.6 126.6C200.4 132.9 192.2 136 184 136c-18.28 0-32-14.95-32-32c0-8.188 3.125-16.38 9.375-22.62l72-72C239.6 3.125 247.8 0 256 0s16.38 3.125 22.62 9.375l72 72C356.9 87.63 360 95.81 360 104c0 17.05-13.73 32-32 32c-8.188 0-16.38-3.125-22.62-9.375L288 109.3V224h114.8l-17.38-17.38C379.1 200.4 376 192.2 376 184c0-17.05 13.73-32 32-32c8.188 0 16.38 3.125 22.62 9.375l72 72C508.9 239.6 512 247.8 512 255.1z',
			),
		),
		'label'             => __( 'Arrows Up Down Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'arrows-up-to-line'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M32 96C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H544C561.7 32 576 46.33 576 64C576 81.67 561.7 96 544 96H32zM105.4 137.4C117.9 124.9 138.1 124.9 150.6 137.4L246.6 233.4C259.1 245.9 259.1 266.1 246.6 278.6C234.1 291.1 213.9 291.1 201.4 278.6L160 237.3V448C160 465.7 145.7 480 128 480C110.3 480 96 465.7 96 448V237.3L54.63 278.6C42.13 291.1 21.87 291.1 9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L105.4 137.4zM329.4 233.4L425.4 137.4C437.9 124.9 458.1 124.9 470.6 137.4L566.6 233.4C579.1 245.9 579.1 266.1 566.6 278.6C554.1 291.1 533.9 291.1 521.4 278.6L480 237.3L480 448C480 465.7 465.7 480 448 480C430.3 480 416 465.7 416 448V237.3L374.6 278.6C362.1 291.1 341.9 291.1 329.4 278.6C316.9 266.1 316.9 245.9 329.4 233.4H329.4z',
			),
		),
		'label'             => __( 'Arrows Up To Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'artstation'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M2 377.4l43 74.3A51.35 51.35 0 0 0 90.9 480h285.4l-59.2-102.6zM501.8 350L335.6 59.3A51.38 51.38 0 0 0 290.2 32h-88.4l257.3 447.6 40.7-70.5c1.9-3.2 21-29.7 2-59.1zM275 304.5l-115.5-200L44 304.5z',
			),
		),
		'label'             => __( 'Artstation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'asterisk'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M417.1 368c-5.937 10.27-16.69 16-27.75 16c-5.422 0-10.92-1.375-15.97-4.281L256 311.4V448c0 17.67-14.33 32-31.1 32S192 465.7 192 448V311.4l-118.3 68.29C68.67 382.6 63.17 384 57.75 384c-11.06 0-21.81-5.734-27.75-16c-8.828-15.31-3.594-34.88 11.72-43.72L159.1 256L41.72 187.7C26.41 178.9 21.17 159.3 29.1 144C36.63 132.5 49.26 126.7 61.65 128.2C65.78 128.7 69.88 130.1 73.72 132.3L192 200.6V64c0-17.67 14.33-32 32-32S256 46.33 256 64v136.6l118.3-68.29c3.838-2.213 7.939-3.539 12.07-4.051C398.7 126.7 411.4 132.5 417.1 144c8.828 15.31 3.594 34.88-11.72 43.72L288 256l118.3 68.28C421.6 333.1 426.8 352.7 417.1 368z',
			),
		),
		'label'             => __( 'Asterisk', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'asymmetrik'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M517.5 309.2c38.8-40 58.1-80 58.5-116.1 .8-65.5-59.4-118.2-169.4-135C277.9 38.4 118.1 73.6 0 140.5 52 114 110.6 92.3 170.7 82.3c74.5-20.5 153-25.4 221.3-14.8C544.5 91.3 588.8 195 490.8 299.2c-10.2 10.8-22 21.1-35 30.6L304.9 103.4 114.7 388.9c-65.6-29.4-76.5-90.2-19.1-151.2 20.8-22.2 48.3-41.9 79.5-58.1 20-12.2 39.7-22.6 62-30.7-65.1 20.3-122.7 52.9-161.6 92.9-27.7 28.6-41.4 57.1-41.7 82.9-.5 35.1 23.4 65.1 68.4 83l-34.5 51.7h101.6l22-34.4c22.2 1 45.3 0 68.6-2.7l-22.8 37.1h135.5L340 406.3c18.6-5.3 36.9-11.5 54.5-18.7l45.9 71.8H542L468.6 349c18.5-12.1 35-25.5 48.9-39.8zm-187.6 80.5l-25-40.6-32.7 53.3c-23.4 3.5-46.7 5.1-69.2 4.4l101.9-159.3 78.7 123c-17.2 7.4-35.3 13.9-53.7 19.2z',
			),
		),
		'label'             => __( 'Asymmetrik, Ltd.', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'at'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M207.8 20.73c-93.45 18.32-168.7 93.66-187 187.1c-27.64 140.9 68.65 266.2 199.1 285.1c19.01 2.888 36.17-12.26 36.17-31.49l.0001-.6631c0-15.74-11.44-28.88-26.84-31.24c-84.35-12.98-149.2-86.13-149.2-174.2c0-102.9 88.61-185.5 193.4-175.4c91.54 8.869 158.6 91.25 158.6 183.2l0 16.16c0 22.09-17.94 40.05-40 40.05s-40.01-17.96-40.01-40.05v-120.1c0-8.847-7.161-16.02-16.01-16.02l-31.98 .0036c-7.299 0-13.2 4.992-15.12 11.68c-24.85-12.15-54.24-16.38-86.06-5.106c-38.75 13.73-68.12 48.91-73.72 89.64c-9.483 69.01 43.81 128 110.9 128c26.44 0 50.43-9.544 69.59-24.88c24 31.3 65.23 48.69 109.4 37.49C465.2 369.3 496 324.1 495.1 277.2V256.3C495.1 107.1 361.2-9.332 207.8 20.73zM239.1 304.3c-26.47 0-48-21.56-48-48.05s21.53-48.05 48-48.05s48 21.56 48 48.05S266.5 304.3 239.1 304.3z',
			),
		),
		'label'             => __( 'At', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'atlassian'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M152.2 236.4c-7.7-8.2-19.7-7.7-24.8 2.8L1.6 490.2c-5 10 2.4 21.7 13.4 21.7h175c5.8 .1 11-3.2 13.4-8.4 37.9-77.8 15.1-196.3-51.2-267.1zM244.4 8.1c-122.3 193.4-8.5 348.6 65 495.5 2.5 5.1 7.7 8.4 13.4 8.4H497c11.2 0 18.4-11.8 13.4-21.7 0 0-234.5-470.6-240.4-482.3-5.3-10.6-18.8-10.8-25.6 .1z',
			),
		),
		'label'             => __( 'Atlassian', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'atom'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 224C238.4 224 223.1 238.4 223.1 256S238.4 288 256 288c17.63 0 32-14.38 32-32S273.6 224 256 224zM470.2 128c-10.88-19.5-40.51-50.75-116.3-41.88C332.4 34.88 299.6 0 256 0S179.6 34.88 158.1 86.12C82.34 77.38 52.71 108.5 41.83 128c-16.38 29.38-14.91 73.12 25.23 128c-40.13 54.88-41.61 98.63-25.23 128c29.13 52.38 101.6 43.63 116.3 41.88C179.6 477.1 212.4 512 256 512s76.39-34.88 97.9-86.13C368.5 427.6 441 436.4 470.2 384c16.38-29.38 14.91-73.13-25.23-128C485.1 201.1 486.5 157.4 470.2 128zM95.34 352c-4.001-7.25-.1251-24.75 15-48.25c6.876 6.5 14.13 12.87 21.88 19.12c1.625 13.75 4.001 27.13 6.751 40.13C114.3 363.9 99.09 358.6 95.34 352zM132.2 189.1C124.5 195.4 117.2 201.8 110.3 208.2C95.22 184.8 91.34 167.2 95.34 160c3.376-6.125 16.38-11.5 37.88-11.5c1.75 0 3.876 .375 5.751 .375C136.1 162.2 133.8 175.6 132.2 189.1zM256 64c9.502 0 22.25 13.5 33.88 37.25C278.6 105 267.4 109.3 256 114.1C244.6 109.3 233.4 105 222.1 101.2C233.7 77.5 246.5 64 256 64zM256 448c-9.502 0-22.25-13.5-33.88-37.25C233.4 407 244.6 402.7 256 397.9c11.38 4.875 22.63 9.135 33.88 12.89C278.3 434.5 265.5 448 256 448zM256 336c-44.13 0-80.02-35.88-80.02-80S211.9 176 256 176s80.02 35.88 80.02 80S300.1 336 256 336zM416.7 352c-3.626 6.625-19 11.88-43.63 11c2.751-12.1 5.126-26.38 6.751-40.13c7.752-6.25 15-12.63 21.88-19.12C416.8 327.2 420.7 344.8 416.7 352zM401.7 208.2c-6.876-6.5-14.13-12.87-21.88-19.12c-1.625-13.5-3.876-26.88-6.751-40.25c1.875 0 4.001-.375 5.751-.375c21.5 0 34.51 5.375 37.88 11.5C420.7 167.2 416.8 184.8 401.7 208.2z',
			),
		),
		'label'             => __( 'Atom', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'audible'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 199.9v54l-320 200L0 254v-54l320 200 320-200.1zm-194.5 72l47.1-29.4c-37.2-55.8-100.7-92.6-172.7-92.6-72 0-135.5 36.7-172.6 92.4h.3c2.5-2.3 5.1-4.5 7.7-6.7 89.7-74.4 219.4-58.1 290.2 36.3zm-220.1 18.8c16.9-11.9 36.5-18.7 57.4-18.7 34.4 0 65.2 18.4 86.4 47.6l45.4-28.4c-20.9-29.9-55.6-49.5-94.8-49.5-38.9 0-73.4 19.4-94.4 49zM103.6 161.1c131.8-104.3 318.2-76.4 417.5 62.1l.7 1 48.8-30.4C517.1 112.1 424.8 58.1 319.9 58.1c-103.5 0-196.6 53.5-250.5 135.6 9.9-10.5 22.7-23.5 34.2-32.6zm467 32.7z',
			),
		),
		'label'             => __( 'Audible', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'audio-description'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M170.8 280H213.2L192 237.7L170.8 280zM512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM274.7 349.5C271.3 351.2 267.6 352 264 352c-8.812 0-17.28-4.859-21.5-13.27L233.2 320H150.8l-9.367 18.73c-5.906 11.86-20.31 16.7-32.19 10.73c-11.88-5.938-16.69-20.34-10.75-32.2l72-144c8.125-16.25 34.81-16.25 42.94 0l72 144C291.4 329.1 286.6 343.5 274.7 349.5zM384 352h-56c-13.25 0-24-10.75-24-24v-144C304 170.8 314.8 160 328 160H384c52.94 0 96 43.06 96 96S436.9 352 384 352zM384 208h-32v96h32c26.47 0 48-21.53 48-48S410.5 208 384 208z',
			),
		),
		'label'             => __( 'Audio Description', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'austral-sign'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M325.3 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H352L365.3 320H416C433.7 320 448 334.3 448 352C448 369.7 433.7 384 416 384H392L413.5 435.7C420.3 452 412.6 470.7 396.3 477.5C379.1 484.3 361.3 476.6 354.5 460.3L322.7 384H125.3L93.54 460.3C86.74 476.6 68.01 484.3 51.69 477.5C35.38 470.7 27.66 452 34.46 435.7L56 384H32C14.33 384 0 369.7 0 352C0 334.3 14.33 320 32 320H82.67L96 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H122.7L194.5 51.69C199.4 39.77 211.1 32 224 32C236.9 32 248.6 39.77 253.5 51.69L325.3 224zM256 224L223.1 147.2L191.1 224H256zM165.3 288L151.1 320H296L282.7 288H165.3z',
			),
		),
		'label'             => __( 'Austral Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'autoprefixer'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M318.4 16l-161 480h77.5l25.4-81.4h119.5L405 496h77.5L318.4 16zm-40.3 341.9l41.2-130.4h1.5l40.9 130.4h-83.6zM640 405l-10-31.4L462.1 358l19.4 56.5L640 405zm-462.1-47L10 373.7 0 405l158.5 9.4 19.4-56.4z',
			),
		),
		'label'             => __( 'Autoprefixer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'avianex'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M453.1 32h-312c-38.9 0-76.2 31.2-83.3 69.7L1.2 410.3C-5.9 448.8 19.9 480 58.9 480h312c38.9 0 76.2-31.2 83.3-69.7l56.7-308.5c7-38.6-18.8-69.8-57.8-69.8zm-58.2 347.3l-32 13.5-115.4-110c-14.7 10-29.2 19.5-41.7 27.1l22.1 64.2-17.9 12.7-40.6-61-52.4-48.1 15.7-15.4 58 31.1c9.3-10.5 20.8-22.6 32.8-34.9L203 228.9l-68.8-99.8 18.8-28.9 8.9-4.8L265 207.8l4.9 4.5c19.4-18.8 33.8-32.4 33.8-32.4 7.7-6.5 21.5-2.9 30.7 7.9 9 10.5 10.6 24.7 2.7 31.3-1.8 1.3-15.5 11.4-35.3 25.6l4.5 7.3 94.9 119.4-6.3 7.9z',
			),
		),
		'label'             => __( 'avianex', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'aviato'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M107.2 283.5l-19-41.8H36.1l-19 41.8H0l62.2-131.4 62.2 131.4h-17.2zm-45-98.1l-19.6 42.5h39.2l-19.6-42.5zm112.7 102.4l-62.2-131.4h17.1l45.1 96 45.1-96h17l-62.1 131.4zm80.6-4.3V156.4H271v127.1h-15.5zm209.1-115.6v115.6h-17.3V167.9h-41.2v-11.5h99.6v11.5h-41.1zM640 218.8c0 9.2-1.7 17.8-5.1 25.8-3.4 8-8.2 15.1-14.2 21.1-6 6-13.1 10.8-21.1 14.2-8 3.4-16.6 5.1-25.8 5.1s-17.8-1.7-25.8-5.1c-8-3.4-15.1-8.2-21.1-14.2-6-6-10.8-13-14.2-21.1-3.4-8-5.1-16.6-5.1-25.8s1.7-17.8 5.1-25.8c3.4-8 8.2-15.1 14.2-21.1 6-6 13-8.4 21.1-11.9 8-3.4 16.6-5.1 25.8-5.1s17.8 1.7 25.8 5.1c8 3.4 15.1 5.8 21.1 11.9 6 6 10.7 13.1 14.2 21.1 3.4 8 5.1 16.6 5.1 25.8zm-15.5 0c0-7.3-1.3-14-3.9-20.3-2.6-6.3-6.2-11.7-10.8-16.3-4.6-4.6-10-8.2-16.2-10.9-6.2-2.7-12.8-4-19.8-4s-13.6 1.3-19.8 4c-6.2 2.7-11.6 6.3-16.2 10.9-4.6 4.6-8.2 10-10.8 16.3-2.6 6.3-3.9 13.1-3.9 20.3 0 7.3 1.3 14 3.9 20.3 2.6 6.3 6.2 11.7 10.8 16.3 4.6 4.6 10 8.2 16.2 10.9 6.2 2.7 12.8 4 19.8 4s13.6-1.3 19.8-4c6.2-2.7 11.6-6.3 16.2-10.9 4.6-4.6 8.2-10 10.8-16.3 2.6-6.3 3.9-13.1 3.9-20.3zm-94.8 96.7v-6.3l88.9-10-242.9 13.4c.6-2.2 1.1-4.6 1.4-7.2 .3-2 .5-4.2 .6-6.5l64.8-8.1-64.9 1.9c0-.4-.1-.7-.1-1.1-2.8-17.2-25.5-23.7-25.5-23.7l-1.1-26.3h23.8l19 41.8h17.1L348.6 152l-62.2 131.4h17.1l19-41.8h23.6L345 268s-22.7 6.5-25.5 23.7c-.1 .3-.1 .7-.1 1.1l-64.9-1.9 64.8 8.1c.1 2.3 .3 4.4 .6 6.5 .3 2.6 .8 5 1.4 7.2L78.4 299.2l88.9 10v6.3c-5.9 .9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4 0-6.2-4.6-11.3-10.5-12.2v-5.8l80.3 9v5.4c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-4.9l28.4 3.2v23.7h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9V323l38.3 4.3c8.1 11.4 19 13.6 19 13.6l-.1 6.7-5.1 .2-.1 12.1h4.1l.1-5h5.2l.1 5h4.1l-.1-12.1-5.1-.2-.1-6.7s10.9-2.1 19-13.6l38.3-4.3v23.2h-5.9V360h5.9v-6.6h5v6.6h5.9v-13.8h-5.9v-23.7l28.4-3.2v4.9c-5.7 1.1-9.9 6.2-9.9 12.1 0 6.8 5.6 10.2 12.4 10.2 6.8 0 12.4-3.4 12.4-10.2 0-6-4.3-11-9.9-12.1v-5.4l80.3-9v5.8c-5.9 .9-10.5 6-10.5 12.2 0 6.8 5.6 12.4 12.4 12.4 6.8 0 12.4-5.6 12.4-12.4-.2-6.3-4.7-11.4-10.7-12.3zm-200.8-87.6l19.6-42.5 19.6 42.5h-17.9l-1.7-40.3-1.7 40.3h-17.9z',
			),
		),
		'label'             => __( 'Aviato', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'award'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M288 358.3c13.98-8.088 17.53-30.04 28.88-41.39c11.35-11.35 33.3-14.88 41.39-28.87c7.98-13.79 .1658-34.54 4.373-50.29C366.7 222.5 383.1 208.5 383.1 192c0-16.5-17.27-30.52-21.34-45.73c-4.207-15.75 3.612-36.5-4.365-50.29c-8.086-13.98-30.03-17.52-41.38-28.87c-11.35-11.35-14.89-33.3-28.87-41.39c-13.79-7.979-34.54-.1637-50.29-4.375C222.5 17.27 208.5 0 192 0C175.5 0 161.5 17.27 146.3 21.34C130.5 25.54 109.8 17.73 95.98 25.7C82 33.79 78.46 55.74 67.11 67.08C55.77 78.43 33.81 81.97 25.72 95.95C17.74 109.7 25.56 130.5 21.35 146.2C17.27 161.5 .0008 175.5 .0008 192c0 16.5 17.27 30.52 21.34 45.73c4.207 15.75-3.615 36.5 4.361 50.29C33.8 302 55.74 305.5 67.08 316.9c11.35 11.35 14.89 33.3 28.88 41.4c13.79 7.979 34.53 .1582 50.28 4.369C161.5 366.7 175.5 384 192 384c16.5 0 30.52-17.27 45.74-21.34C253.5 358.5 274.2 366.3 288 358.3zM112 192c0-44.27 35.81-80 80-80s80 35.73 80 80c0 44.17-35.81 80-80 80S112 236.2 112 192zM1.719 433.2c-3.25 8.188-1.781 17.48 3.875 24.25c5.656 6.75 14.53 9.898 23.12 8.148l45.19-9.035l21.43 42.27C99.46 507 107.6 512 116.7 512c.3438 0 .6641-.0117 1.008-.0273c9.5-.375 17.65-6.082 21.24-14.88l33.58-82.08c-53.71-4.639-102-28.12-138.2-63.95L1.719 433.2zM349.6 351.1c-36.15 35.83-84.45 59.31-138.2 63.95l33.58 82.08c3.594 8.797 11.74 14.5 21.24 14.88C266.6 511.1 266.1 512 267.3 512c9.094 0 17.23-4.973 21.35-13.14l21.43-42.28l45.19 9.035c8.594 1.75 17.47-1.398 23.12-8.148c5.656-6.766 7.125-16.06 3.875-24.25L349.6 351.1z',
			),
		),
		'label'             => __( 'Award', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'aws'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M180.4 203c-.72 22.65 10.6 32.68 10.88 39.05a8.164 8.164 0 0 1 -4.1 6.27l-12.8 8.96a10.66 10.66 0 0 1 -5.63 1.92c-.43-.02-8.19 1.83-20.48-25.61a78.61 78.61 0 0 1 -62.61 29.45c-16.28 .89-60.4-9.24-58.13-56.21-1.59-38.28 34.06-62.06 70.93-60.05 7.1 .02 21.6 .37 46.99 6.27v-15.62c2.69-26.46-14.7-46.99-44.81-43.91-2.4 .01-19.4-.5-45.84 10.11-7.36 3.38-8.3 2.82-10.75 2.82-7.41 0-4.36-21.48-2.94-24.2 5.21-6.4 35.86-18.35 65.94-18.18a76.86 76.86 0 0 1 55.69 17.28 70.29 70.29 0 0 1 17.67 52.36l-.01 69.29zM93.99 235.4c32.43-.47 46.16-19.97 49.29-30.47 2.46-10.05 2.05-16.41 2.05-27.4-9.67-2.32-23.59-4.85-39.56-4.87-15.15-1.14-42.82 5.63-41.74 32.26-1.24 16.79 11.12 31.4 29.96 30.48zm170.9 23.05c-7.86 .72-11.52-4.86-12.68-10.37l-49.8-164.6c-.97-2.78-1.61-5.65-1.92-8.58a4.61 4.61 0 0 1 3.86-5.25c.24-.04-2.13 0 22.25 0 8.78-.88 11.64 6.03 12.55 10.37l35.72 140.8 33.16-140.8c.53-3.22 2.94-11.07 12.8-10.24h17.16c2.17-.18 11.11-.5 12.68 10.37l33.42 142.6L420.1 80.1c.48-2.18 2.72-11.37 12.68-10.37h19.72c.85-.13 6.15-.81 5.25 8.58-.43 1.85 3.41-10.66-52.75 169.9-1.15 5.51-4.82 11.09-12.68 10.37h-18.69c-10.94 1.15-12.51-9.66-12.68-10.75L328.7 110.7l-32.78 136.1c-.16 1.09-1.73 11.9-12.68 10.75h-18.3zm273.5 5.63c-5.88 .01-33.92-.3-57.36-12.29a12.8 12.8 0 0 1 -7.81-11.91v-10.75c0-8.45 6.2-6.9 8.83-5.89 10.04 4.06 16.48 7.14 28.81 9.6 36.65 7.53 52.77-2.3 56.72-4.48 13.15-7.81 14.19-25.68 5.25-34.95-10.48-8.79-15.48-9.12-53.13-21-4.64-1.29-43.7-13.61-43.79-52.36-.61-28.24 25.05-56.18 69.52-55.95 12.67-.01 46.43 4.13 55.57 15.62 1.35 2.09 2.02 4.55 1.92 7.04v10.11c0 4.44-1.62 6.66-4.87 6.66-7.71-.86-21.39-11.17-49.16-10.75-6.89-.36-39.89 .91-38.41 24.97-.43 18.96 26.61 26.07 29.7 26.89 36.46 10.97 48.65 12.79 63.12 29.58 17.14 22.25 7.9 48.3 4.35 55.44-19.08 37.49-68.42 34.44-69.26 34.42zm40.2 104.9c-70.03 51.72-171.7 79.25-258.5 79.25A469.1 469.1 0 0 1 2.83 327.5c-6.53-5.89-.77-13.96 7.17-9.47a637.4 637.4 0 0 0 316.9 84.12 630.2 630.2 0 0 0 241.6-49.55c11.78-5 21.77 7.8 10.12 16.38zm29.19-33.29c-8.96-11.52-59.28-5.38-81.81-2.69-6.79 .77-7.94-5.12-1.79-9.47 40.07-28.17 105.9-20.1 113.4-10.63 7.55 9.47-2.05 75.41-39.56 106.9-5.76 4.87-11.27 2.3-8.71-4.1 8.44-21.25 27.39-68.49 18.43-80.02z',
			),
		),
		'label'             => __( 'Amazon Web Services (AWS)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'b'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M257.1 242.4C276.1 220.1 288 191.6 288 160c0-70.58-57.42-128-128-128H32c-17.67 0-32 14.33-32 32v384c0 17.67 14.33 32 32 32l160-.0049c70.58 0 128-57.42 128-128C320 305.3 294.6 264.8 257.1 242.4zM64 96.01h96c35.3 0 64 28.7 64 64s-28.7 64-64 64H64V96.01zM192 416H64v-128h128c35.3 0 64 28.7 64 64S227.3 416 192 416z',
			),
		),
		'label'             => __( 'B', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'baby'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M156.8 411.8l31.22-31.22l-60.04-53.09l-52.29 52.28C61.63 393.8 60.07 416.1 72 432l48 64C127.9 506.5 139.9 512 152 512c8.345 0 16.78-2.609 23.97-8c17.69-13.25 21.25-38.33 8-56L156.8 411.8zM224 159.1c44.25 0 79.99-35.75 79.99-79.1S268.3 0 224 0S144 35.75 144 79.1S179.8 159.1 224 159.1zM408.7 145c-12.75-18.12-37.63-22.38-55.76-9.75l-40.63 28.5c-52.63 37-124.1 37-176.8 0l-40.63-28.5C76.84 122.6 51.97 127 39.22 145C26.59 163.1 30.97 188 48.97 200.8l40.63 28.5C101.7 237.7 114.7 244.3 128 250.2L128 288h192l.0002-37.71c13.25-5.867 26.22-12.48 38.34-21.04l40.63-28.5C417.1 188 421.4 163.1 408.7 145zM320 327.4l-60.04 53.09l31.22 31.22L264 448c-13.25 17.67-9.689 42.75 8 56C279.2 509.4 287.6 512 295.1 512c12.16 0 24.19-5.516 32.03-16l48-64c11.94-15.92 10.38-38.2-3.719-52.28L320 327.4z',
			),
		),
		'label'             => __( 'Baby', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'baby-carriage'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M255.1 192H.1398C2.741 117.9 41.34 52.95 98.98 14.1C112.2 5.175 129.8 9.784 138.9 22.92L255.1 192zM384 160C384 124.7 412.7 96 448 96H480C497.7 96 512 110.3 512 128C512 145.7 497.7 160 480 160H448V224C448 249.2 442.2 274.2 430.9 297.5C419.7 320.8 403.2 341.9 382.4 359.8C361.6 377.6 336.9 391.7 309.7 401.4C282.5 411 253.4 416 223.1 416C194.6 416 165.5 411 138.3 401.4C111.1 391.7 86.41 377.6 65.61 359.8C44.81 341.9 28.31 320.8 17.05 297.5C5.794 274.2 0 249.2 0 224H384L384 160zM31.1 464C31.1 437.5 53.49 416 79.1 416C106.5 416 127.1 437.5 127.1 464C127.1 490.5 106.5 512 79.1 512C53.49 512 31.1 490.5 31.1 464zM416 464C416 490.5 394.5 512 368 512C341.5 512 320 490.5 320 464C320 437.5 341.5 416 368 416C394.5 416 416 437.5 416 464z',
			),
		),
		'label'             => __( 'Baby Carriage', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'travel' ),
	),
	'backward'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M459.5 71.41l-171.5 142.9v83.45l171.5 142.9C480.1 457.7 512 443.3 512 415.1V96.03C512 68.66 480.1 54.28 459.5 71.41zM203.5 71.41L11.44 231.4c-15.25 12.87-15.25 36.37 0 49.24l192 159.1c20.63 17.12 52.51 2.749 52.51-24.62v-319.9C255.1 68.66 224.1 54.28 203.5 71.41z',
			),
		),
		'label'             => __( 'Backward', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'backward-fast'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 415.1V96.03c0-17.67 14.33-31.1 31.1-31.1C49.67 64.03 64 78.36 64 96.03v131.8l171.5-156.5C256.1 54.28 288 68.66 288 96.03v131.9l171.5-156.5C480.1 54.28 512 68.66 512 96.03v319.9c0 27.37-31.88 41.74-52.5 24.62L288 285.2v130.7c0 27.37-31.88 41.74-52.5 24.62L64 285.2v130.7c0 17.67-14.33 31.1-31.1 31.1C14.33 447.1 0 433.6 0 415.1z',
			),
		),
		'label'             => __( 'Backward Fast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'backward-step'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M31.1 64.03c-17.67 0-31.1 14.33-31.1 32v319.9c0 17.67 14.33 32 32 32C49.67 447.1 64 433.6 64 415.1V96.03C64 78.36 49.67 64.03 31.1 64.03zM267.5 71.41l-192 159.1C67.82 237.8 64 246.9 64 256c0 9.094 3.82 18.18 11.44 24.62l192 159.1c20.63 17.12 52.51 2.75 52.51-24.62v-319.9C319.1 68.66 288.1 54.28 267.5 71.41z',
			),
		),
		'label'             => __( 'Backward Step', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'bacon'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M29.34 432.5l-18.06-20.15c-9.406-10.47-13.25-25.3-10.31-39.65c2.813-13.71 11.23-24.74 23.09-30.23l68.88-31.94c47.95-22.25 87.64-60.2 114.8-109.8l20.66-37.76c28.77-52.59 70.98-92.93 122.1-116.6l92.75-42.99c14.84-6.812 32.41-3.078 43.69 9.518l34.08 38.01l-104.8 48.56c-55.72 25.83-101.7 69.73-133 127L261.3 266.5c-28.03 51.22-69 90.42-118.5 113.4L29.34 432.5zM564.7 99.68l-21.4-23.87l-113.6 52.68c-49.47 22.94-90.44 62.11-118.5 113.3L289.3 281.9c-31.33 57.27-77.34 101.2-133.1 127l-104.5 48.43l37.43 41.74C96.64 507.5 106.1 512 117.5 512c5.188 0 10.41-1.11 15.33-3.375l92.75-42.99c51.13-23.69 93.34-64.03 122.1-116.6l20.66-37.76c27.11-49.56 66.8-87.5 114.8-109.8l68.88-31.94c11.86-5.486 20.28-16.52 23.09-30.23C577.1 124.1 574.1 110.1 564.7 99.68z',
			),
		),
		'label'             => __( 'Bacon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bacteria'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M627.3 227.3c9.439-2.781 14.81-12.65 12-22.04c-3.039-10.21-13.57-14.52-22.14-11.95l-11.27 3.33c-8.086-15.15-20.68-27.55-36.4-35.43l2.888-11.06c1.867-7.158-1.9-22.19-17.26-22.19c-7.92 0-15.14 5.288-17.23 13.28l-2.865 10.97c-7.701-.2793-26.9-.6485-48.75 13.63L477.6 157.1c-3.777-3.873-15.44-9.779-25.19-.3691c-7.062 6.822-7.225 18.04-.3711 25.07l9.14 9.373c-11.96 18.85-10.27 28.38-15.88 46.61c-8.023-3.758-11.44-5.943-16.66-5.943c-6.689 0-13.09 3.763-16.13 10.19c-4.188 8.856-.3599 19.42 8.546 23.58l8.797 4.115c-14.91 22.05-34.42 33.57-34.83 33.83l-3.922-8.855C387.2 285.8 376.7 281.7 367.7 285.6c-9 3.959-13.08 14.42-9.115 23.39l4.041 9.127c-16.38 4.559-27.93 4.345-46.15 16.94l-9.996-9.012c-6.969-6.303-18.28-6.33-25.15 1.235c-6.609 7.26-6.053 18.47 1.24 25.04l9.713 8.756c-8.49 14.18-12.74 30.77-11.64 48.17l-11.86 3.512c-9.428 2.793-14.8 12.66-11.99 22.05c2.781 9.385 12.69 14.71 22.15 11.94l11.34-3.359c8.287 15.49 20.99 27.86 36.38 35.57l-2.839 10.85c-2.482 9.477 3.224 19.16 12.75 21.62c9.566 2.482 19.25-3.221 21.72-12.69l2.82-10.78c5.508 .1875 11.11-.1523 16.75-1.102c11.37-1.893 22.23-5.074 33.1-8.24l3.379 9.455c3.305 9.225 13.5 14.11 22.75 10.76c9.266-3.279 14.1-13.41 10.81-22.65l-3.498-9.792c15.41-6.654 30.08-14.46 43.95-23.57l6.321 8.429c5.891 7.84 17.05 9.443 24.93 3.602c7.885-5.863 9.498-16.97 3.617-24.82l-6.457-8.611c12.66-10.78 24.33-22.54 34.96-35.33l8.816 6.413c7.932 5.795 19.07 4.074 24.89-3.855c5.809-7.908 4.072-18.1-3.874-24.77l-8.885-6.465c8.893-13.88 16.54-28.52 22.99-43.91l10.47 3.59c9.334 3.186 19.43-1.719 22.64-10.99c3.211-9.258-1.739-19.35-11.04-22.53l-10.33-3.541c5.744-20.5 9.424-31.81 8.338-49.26L627.3 227.3zM416 416c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32c17.67 0 32 14.33 32 32C448 401.7 433.7 416 416 416zM272.3 226.4c9-3.959 13.08-14.42 9.115-23.39L277.4 193.9c16.38-4.561 27.93-4.345 46.15-16.94l9.996 9.012c6.969 6.301 18.28 6.326 25.15-1.236c6.609-7.26 6.053-18.47-1.24-25.04l-9.713-8.756c8.49-14.18 12.74-30.77 11.64-48.18l11.86-3.511c9.428-2.793 14.8-12.66 11.99-22.05c-2.781-9.385-12.69-14.71-22.15-11.94l-11.34 3.357C341.5 53.13 328.8 40.76 313.4 33.05l2.838-10.85C318.7 12.73 313 3.04 303.5 .5811c-9.566-2.482-19.25 3.222-21.72 12.69l-2.82 10.78C273.4 23.86 267.8 24.2 262.2 25.15C250.8 27.04 239.1 30.22 229.1 33.39L225.7 23.93C222.4 14.71 212.2 9.827 202.1 13.17C193.7 16.45 188.9 26.59 192.2 35.82l3.498 9.793C180.2 52.27 165.6 60.07 151.7 69.19L145.4 60.76C139.5 52.92 128.3 51.32 120.5 57.16C112.6 63.02 110.1 74.13 116.8 81.98l6.457 8.611C110.6 101.4 98.96 113.1 88.34 125.9L79.52 119.5c-7.932-5.795-19.08-4.074-24.89 3.855c-5.809 7.908-4.07 19 3.875 24.77l8.885 6.465C58.5 168.5 50.86 183.1 44.41 198.5L33.93 194.9c-9.334-3.186-19.44 1.721-22.64 10.99C8.086 215.2 13.04 225.3 22.34 228.4l10.33 3.541C26.93 252.5 23.25 263.8 24.33 281.2L12.75 284.7C3.309 287.4-2.061 297.3 .7441 306.7c3.041 10.21 13.57 14.52 22.14 11.95l11.27-3.33c8.086 15.15 20.68 27.55 36.39 35.43l-2.887 11.06c-1.865 7.156 1.902 22.19 17.26 22.19c7.92 0 15.14-5.287 17.23-13.28l2.863-10.97c7.701 .2773 26.9 .6465 48.76-13.63l8.59 8.809c3.777 3.873 15.44 9.779 25.19 .3691c7.062-6.822 7.225-18.04 .3711-25.07l-9.14-9.373c11.96-18.85 10.27-28.38 15.88-46.61c8.025 3.756 11.44 5.943 16.66 5.943c6.689 0 13.09-3.762 16.13-10.19C231.6 261.1 227.8 250.6 218.9 246.4L210.1 242.3C225 220.2 244.5 208.7 244.9 208.5l3.922 8.856C252.8 226.2 263.3 230.3 272.3 226.4zM128 256C110.3 256 96 241.7 96 223.1c0-17.67 14.33-32 32-32c17.67 0 32 14.33 32 32C160 241.7 145.7 256 128 256zM208 160c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16s16 7.162 16 16C224 152.8 216.8 160 208 160z',
			),
		),
		'label'             => __( 'Bacteria', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'bacterium'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M543 102.9c-3.711-12.51-16.92-19.61-29.53-15.92l-15.12 4.48c-11.05-20.65-27.98-37.14-48.5-47.43l3.783-14.46c3.309-12.64-4.299-25.55-16.99-28.83c-12.76-3.309-25.67 4.295-28.96 16.92l-3.76 14.37c-9.947-.3398-26.22 .1016-66.67 11.88l-4.301-12.03c-4.406-12.3-17.1-18.81-30.34-14.34c-12.35 4.371-18.8 17.88-14.41 30.2l4.303 12.04c-20.6 8.889-40.16 19.64-58.69 31.83L225.9 81.01C217.1 70.56 203.1 68.42 192.6 76.21C182.1 84.03 179.9 98.83 187.8 109.3l7.975 10.63C178.8 134.3 163.3 150.3 149.1 167.4L138 159.3C127.5 151.6 112.6 153.9 104.8 164.5c-7.748 10.54-5.428 25.33 5.164 33.03l11.09 8.066C109.2 224.1 98.79 243.7 90.18 264.3l-12.93-4.431c-12.45-4.248-25.92 2.293-30.18 14.65C42.78 286.9 49.38 300.3 61.78 304.6l13.05 4.474c-11.86 42.33-11.02 55.76-10.39 65.93l-15.45 4.566c-12.59 3.709-19.74 16.87-16 29.38c4.053 13.61 18.1 19.36 29.52 15.93l15.02-4.441c10.78 20.21 27.57 36.73 48.53 47.24l-3.852 14.75C119.7 491.1 124.8 512 145.2 512c10.56 0 20.19-7.049 22.98-17.7l3.816-14.63c10.2 .377 35.85 .873 65.01-18.17l11.45 11.74c5.037 5.164 20.59 13.04 33.58 .4922c9.416-9.096 9.633-24.06 .4941-33.43l-12.19-12.5c7.805-12.29 13.56-26.13 16.11-41.4c1.186-7.107 3.082-13.95 5.158-20.7c10.66 4.988 15.16 7.881 22.12 7.881c8.922 0 17.46-5.018 21.51-13.59c5.582-11.8 .4785-25.89-11.4-31.45l-11.73-5.486c20.09-29.62 45.89-44.76 46.44-45.11l5.23 11.81c5.273 11.86 19.19 17.36 31.33 12.1c11.1-5.279 17.44-19.22 12.15-31.18L401.9 258.5c5.438-1.512 10.86-3.078 16.52-4.021c16.8-2.797 31.88-9.459 45.02-18.54l13.33 12.02c9.289 8.395 24.37 8.439 33.54-1.648c8.814-9.68 8.072-24.62-1.654-33.38l-12.95-11.68c11.32-18.9 16.99-41.02 15.52-64.23l15.81-4.681C539.6 128.6 546.7 115.4 543 102.9zM192 368c-26.51 0-48.01-21.49-48.01-48s21.5-48 48.01-48S240.1 293.5 240.1 320S218.6 368 192 368zM272 232c-13.25 0-23.92-10.75-23.92-24c0-13.26 10.67-23.1 23.92-23.1c13.26 0 23.1 10.74 23.1 23.1C295.1 221.3 285.3 232 272 232z',
			),
		),
		'label'             => __( 'Bacterium', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'bag-shopping'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M112 112C112 50.14 162.1 0 224 0C285.9 0 336 50.14 336 112V160H400C426.5 160 448 181.5 448 208V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V208C0 181.5 21.49 160 48 160H112V112zM160 160H288V112C288 76.65 259.3 48 224 48C188.7 48 160 76.65 160 112V160zM136 256C149.3 256 160 245.3 160 232C160 218.7 149.3 208 136 208C122.7 208 112 218.7 112 232C112 245.3 122.7 256 136 256zM312 208C298.7 208 288 218.7 288 232C288 245.3 298.7 256 312 256C325.3 256 336 245.3 336 232C336 218.7 325.3 208 312 208z',
			),
		),
		'label'             => __( 'Bag Shopping', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'bahai'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M496.3 202.5l-110-15.38l41.88-104.4c6.625-16.63-11.63-32.25-26.63-22.63L307.5 120l-34.13-107.1C270.6 4.25 263.4 0 255.1 0C248.6 0 241.4 4.25 238.6 12.88L204.5 120L110.5 60.12c-15-9.5-33.22 5.1-26.6 22.63l41.85 104.4L15.71 202.5C-1.789 205-5.915 228.8 9.71 237.2l98.14 52.63l-74.51 83.5c-10.88 12.25-1.78 31 13.35 31c1.25 0 2.657-.25 4.032-.5l108.6-23.63l-4.126 112.5C154.7 504.4 164.1 512 173.6 512c5.125 0 10.38-2.25 14.25-7.25l68.13-88.88l68.23 88.88C327.1 509.8 333.2 512 338.4 512c9.5 0 18.88-7.625 18.38-19.25l-4.032-112.5l108.5 23.63c17.38 3.75 29.25-17.25 17.38-30.5l-74.51-83.5l98.14-52.72C517.9 228.8 513.8 205 496.3 202.5zM338.5 311.6L286.6 300.4l2 53.75l-32.63-42.5l-32.63 42.5l2-53.75L173.5 311.6l35.63-39.87L162.1 246.6L214.7 239.2L194.7 189.4l45 28.63L255.1 166.8l16.25 51.25l45-28.63L297.2 239.2l52.63 7.375l-47 25.13L338.5 311.6z',
			),
		),
		'label'             => __( 'Bahai', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'baht-sign'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M176 32V64C237.9 64 288 114.1 288 176C288 200.2 280.3 222.6 267.3 240.9C298.9 260.7 320 295.9 320 336C320 397.9 269.9 448 208 448H176V480C176 497.7 161.7 512 144 512C126.3 512 112 497.7 112 480V448H41.74C18.69 448 0 429.3 0 406.3V101.6C0 80.82 16.82 64 37.57 64H112V32C112 14.33 126.3 0 144 0C161.7 0 176 14.33 176 32V32zM112 128H64V224H112V128zM224 176C224 149.5 202.5 128 176 128V224C202.5 224 224 202.5 224 176zM112 288H64V384H112V288zM208 384C234.5 384 256 362.5 256 336C256 309.5 234.5 288 208 288H176V384H208z',
			),
		),
		'label'             => __( 'Baht Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'ban'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM99.5 144.8C77.15 176.1 64 214.5 64 256C64 362 149.1 448 256 448C297.5 448 335.9 434.9 367.2 412.5L99.5 144.8zM448 256C448 149.1 362 64 256 64C214.5 64 176.1 77.15 144.8 99.5L412.5 367.2C434.9 335.9 448 297.5 448 256V256z',
			),
		),
		'label'             => __( 'Ban', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'ban-smoking'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 304C96 312.8 103.3 320 112 320h117.5l-96-96H112C103.3 224 96 231.3 96 240V304zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 448c-105.9 0-192-86.13-192-192c0-41.38 13.25-79.75 35.75-111.1l267.4 267.4C335.8 434.8 297.4 448 256 448zM301.2 256H384v32h-50.81L301.2 256zM412.3 367.1L365.2 320H400c8.75 0 16-7.25 16-16v-64C416 231.3 408.8 224 400 224h-130.8L144.9 99.75C176.3 77.25 214.6 64 256 64C361.9 64 448 150.1 448 256C448 297.4 434.8 335.8 412.3 367.1zM320.6 128C305 128 292 116.8 289.3 102.1C288.5 98.5 285.3 96 281.5 96h-16.25c-5 0-8.625 4.5-8 9.375C261.9 136.3 288.5 160 320.6 160C336.3 160 349.3 171.3 352 185.9C352.8 189.5 356 192 359.8 192h16.17c5 0 8.708-4.5 7.958-9.375C379.3 151.7 352.8 128 320.6 128z',
			),
		),
		'label'             => __( 'Ban Smoking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'bandage'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M480 96H576C611.3 96 640 124.7 640 160V352C640 387.3 611.3 416 576 416H480V96zM448 416H192V96H448V416zM272 184C258.7 184 248 194.7 248 208C248 221.3 258.7 232 272 232C285.3 232 296 221.3 296 208C296 194.7 285.3 184 272 184zM368 232C381.3 232 392 221.3 392 208C392 194.7 381.3 184 368 184C354.7 184 344 194.7 344 208C344 221.3 354.7 232 368 232zM272 280C258.7 280 248 290.7 248 304C248 317.3 258.7 328 272 328C285.3 328 296 317.3 296 304C296 290.7 285.3 280 272 280zM368 328C381.3 328 392 317.3 392 304C392 290.7 381.3 280 368 280C354.7 280 344 290.7 344 304C344 317.3 354.7 328 368 328zM64 96H160V416H64C28.65 416 0 387.3 0 352V160C0 124.7 28.65 96 64 96z',
			),
		),
		'label'             => __( 'Bandage', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'bandcamp'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 8C119 8 8 119 8 256S119 504 256 504 504 393 504 256 393 8 256 8zm48.2 326.1h-181L207.9 178h181z',
			),
		),
		'label'             => __( 'Bandcamp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'barcode'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M40 32C53.25 32 64 42.75 64 56V456C64 469.3 53.25 480 40 480H24C10.75 480 0 469.3 0 456V56C0 42.75 10.75 32 24 32H40zM128 48V464C128 472.8 120.8 480 112 480C103.2 480 96 472.8 96 464V48C96 39.16 103.2 32 112 32C120.8 32 128 39.16 128 48zM200 32C213.3 32 224 42.75 224 56V456C224 469.3 213.3 480 200 480H184C170.7 480 160 469.3 160 456V56C160 42.75 170.7 32 184 32H200zM296 32C309.3 32 320 42.75 320 56V456C320 469.3 309.3 480 296 480H280C266.7 480 256 469.3 256 456V56C256 42.75 266.7 32 280 32H296zM448 56C448 42.75 458.7 32 472 32H488C501.3 32 512 42.75 512 56V456C512 469.3 501.3 480 488 480H472C458.7 480 448 469.3 448 456V56zM384 48C384 39.16 391.2 32 400 32C408.8 32 416 39.16 416 48V464C416 472.8 408.8 480 400 480C391.2 480 384 472.8 384 464V48z',
			),
		),
		'label'             => __( 'Barcode', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'bars'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM0 256C0 238.3 14.33 224 32 224H416C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288H32C14.33 288 0 273.7 0 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z',
			),
		),
		'label'             => __( 'Bars', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'bars-progress'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 64C490.5 64 512 85.49 512 112V176C512 202.5 490.5 224 464 224H48C21.49 224 0 202.5 0 176V112C0 85.49 21.49 64 48 64H464zM448 128H320V160H448V128zM464 288C490.5 288 512 309.5 512 336V400C512 426.5 490.5 448 464 448H48C21.49 448 0 426.5 0 400V336C0 309.5 21.49 288 48 288H464zM192 352V384H448V352H192z',
			),
		),
		'label'             => __( 'Bars Progress', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bars-staggered'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 96C0 78.33 14.33 64 32 64H416C433.7 64 448 78.33 448 96C448 113.7 433.7 128 416 128H32C14.33 128 0 113.7 0 96zM64 256C64 238.3 78.33 224 96 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H96C78.33 288 64 273.7 64 256zM416 448H32C14.33 448 0 433.7 0 416C0 398.3 14.33 384 32 384H416C433.7 384 448 398.3 448 416C448 433.7 433.7 448 416 448z',
			),
		),
		'label'             => __( 'Bars Staggered', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'baseball'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M429.6 272.9c0-16.26 16.36-16.81 29.99-16.81l2.931 .0029c16.64 0 33.14 2.056 49.2 5.834C511.7 259.9 512 258 512 256c0-141.4-114.6-256-256-256C253.9 0 251.1 .2578 249.9 .3047c3.658 15.51 6.111 31.34 6.111 47.54c0 6-.2813 12.03-.7813 18C254.6 74.19 247.6 80.5 239.3 80.5c-6.091 0-16.03-4.68-16.03-15.97c0-1.733 .7149-7.153 .7149-16.69c0-15.26-2.389-30.18-6.225-44.69C106.9 19.79 19.5 107.3 3.08 218.3c14.44 3.819 29.38 5.79 44.45 5.79c10.07 0 15.59-.811 17.42-.811c6.229 0 16.49 4.657 16.49 15.99c0 16.11-16.13 16.77-29.73 16.77L48.16 256c-16.33 0-32.25-2.445-47.85-6.109C.2578 251.1 0 253.9 0 256c0 141.4 114.6 256 256 256c2.066 0 4.062-.2578 6.117-.3086C258.5 496.2 256 480.4 256 464.2c0-5.688 .25-11.38 .7187-17.03c.6964-8.538 8.287-14.61 16.49-14.61c7.1 0 15.44 6.938 15.44 15.92c0 2.358-.6524 5.88-.6524 15.72c0 15.25 2.383 30.16 6.209 44.66c110.8-16.63 198.2-104.1 214.7-215c-14.55-3.851-29.59-5.871-44.74-5.871c-10.47 0-16.24 .895-18.13 .895C443.3 288.9 429.6 286.5 429.6 272.9zM238.2 128.9c0 27.78-78.3 108.1-108.6 108.1c-8.612 0-16.01-6.963-16.01-15.98c0-6.002 3.394-11.75 9.163-14.49c80.3-38.08 76.21-94.5 99.39-94.5C234.7 112.8 238.2 124.2 238.2 128.9zM397.5 290.6c0 5.965-3.364 11.68-9.131 14.43c-78.82 37.57-75.92 95-98.94 95c-12.58 0-16.01-11.54-16.01-16.03c0-28 78.29-109.4 108.1-109.4C390.8 274.6 397.5 282.3 397.5 290.6z',
			),
		),
		'label'             => __( 'Baseball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'baseball-bat-ball'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M57.89 397.2c-6.262-8.616-16.02-13.19-25.92-13.19c-23.33 0-31.98 20.68-31.98 32.03c0 6.522 1.987 13.1 6.115 18.78l46.52 64C58.89 507.4 68.64 512 78.55 512c23.29 0 31.97-20.66 31.97-32.03c0-6.522-1.988-13.1-6.115-18.78L57.89 397.2zM496.1 352c-44.13 0-79.72 35.75-79.72 80s35.59 80 79.72 80s79.91-35.75 79.91-80S540.2 352 496.1 352zM640 99.38c0-13.61-4.133-27.34-12.72-39.2l-23.63-32.5c-13.44-18.5-33.77-27.68-54.12-27.68c-13.89 0-27.79 4.281-39.51 12.8L307.8 159.7C262.2 192.8 220.4 230.9 183.4 273.4c-24.22 27.88-59.18 63.99-103.5 99.63l56.34 77.52c53.79-35.39 99.15-55.3 127.1-67.27c51.88-22 101.3-49.87 146.9-82.1l202.3-146.7C630.5 140.4 640 120 640 99.38z',
			),
		),
		'label'             => __( 'Baseball Bat Ball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'basket-shopping'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M171.7 191.1H404.3L322.7 35.07C316.6 23.31 321.2 8.821 332.9 2.706C344.7-3.409 359.2 1.167 365.3 12.93L458.4 191.1H544C561.7 191.1 576 206.3 576 223.1C576 241.7 561.7 255.1 544 255.1L492.1 463.5C484.1 492 459.4 512 430 512H145.1C116.6 512 91 492 83.88 463.5L32 255.1C14.33 255.1 0 241.7 0 223.1C0 206.3 14.33 191.1 32 191.1H117.6L210.7 12.93C216.8 1.167 231.3-3.409 243.1 2.706C254.8 8.821 259.4 23.31 253.3 35.07L171.7 191.1zM191.1 303.1C191.1 295.1 184.8 287.1 175.1 287.1C167.2 287.1 159.1 295.1 159.1 303.1V399.1C159.1 408.8 167.2 415.1 175.1 415.1C184.8 415.1 191.1 408.8 191.1 399.1V303.1zM271.1 303.1V399.1C271.1 408.8 279.2 415.1 287.1 415.1C296.8 415.1 304 408.8 304 399.1V303.1C304 295.1 296.8 287.1 287.1 287.1C279.2 287.1 271.1 295.1 271.1 303.1zM416 303.1C416 295.1 408.8 287.1 400 287.1C391.2 287.1 384 295.1 384 303.1V399.1C384 408.8 391.2 415.1 400 415.1C408.8 415.1 416 408.8 416 399.1V303.1z',
			),
		),
		'label'             => __( 'Basket Shopping', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'basketball'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M148.7 171.3L64.21 86.83c-28.39 32.16-48.9 71.38-58.3 114.8C19.41 205.4 33.34 208 48 208C86.34 208 121.1 193.9 148.7 171.3zM194.5 171.9L256 233.4l169.2-169.2C380 24.37 320.9 0 256 0C248.6 0 241.2 .4922 233.1 1.113C237.8 16.15 240 31.8 240 48C240 95.19 222.8 138.4 194.5 171.9zM208 48c0-14.66-2.623-28.59-6.334-42.09C158.2 15.31 118.1 35.82 86.83 64.21l84.48 84.48C193.9 121.1 208 86.34 208 48zM171.9 194.5C138.4 222.8 95.19 240 48 240c-16.2 0-31.85-2.236-46.89-6.031C.4922 241.2 0 248.6 0 256c0 64.93 24.37 124 64.21 169.2L233.4 256L171.9 194.5zM317.5 340.1L256 278.6l-169.2 169.2C131.1 487.6 191.1 512 256 512c7.438 0 14.75-.4922 22.03-1.113C274.2 495.8 272 480.2 272 464C272 416.8 289.2 373.6 317.5 340.1zM363.3 340.7l84.48 84.48c28.39-32.16 48.9-71.38 58.3-114.8C492.6 306.6 478.7 304 464 304C425.7 304 390.9 318.1 363.3 340.7zM447.8 86.83L278.6 256l61.52 61.52C373.6 289.2 416.8 272 464 272c16.2 0 31.85 2.236 46.89 6.031C511.5 270.8 512 263.4 512 256C512 191.1 487.6 131.1 447.8 86.83zM304 464c0 14.66 2.623 28.59 6.334 42.09c43.46-9.4 82.67-29.91 114.8-58.3l-84.48-84.48C318.1 390.9 304 425.7 304 464z',
			),
		),
		'label'             => __( 'Basketball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bath'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 384c0 28.32 12.49 53.52 32 71.09V496C64 504.8 71.16 512 80 512h32C120.8 512 128 504.8 128 496v-15.1h256V496c0 8.836 7.164 16 16 16h32c8.836 0 16-7.164 16-16v-40.9c19.51-17.57 32-42.77 32-71.09V352H32V384zM496 256H96V77.25C95.97 66.45 111 60.23 118.6 67.88L132.4 81.66C123.6 108.6 129.4 134.5 144.2 153.2C137.9 159.5 137.8 169.8 144 176l11.31 11.31c6.248 6.248 16.38 6.248 22.63 0l105.4-105.4c6.248-6.248 6.248-16.38 0-22.63l-11.31-11.31c-6.248-6.248-16.38-6.248-22.63 0C230.7 33.26 204.7 27.55 177.7 36.41L163.9 22.64C149.5 8.25 129.6 0 109.3 0C66.66 0 32 34.66 32 77.25v178.8L16 256C7.164 256 0 263.2 0 272v32C0 312.8 7.164 320 16 320h480c8.836 0 16-7.164 16-16v-32C512 263.2 504.8 256 496 256z',
			),
		),
		'label'             => __( 'Bath', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'battery-empty'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M464 96C508.2 96 544 131.8 544 176V192C561.7 192 576 206.3 576 224V288C576 305.7 561.7 320 544 320V336C544 380.2 508.2 416 464 416H80C35.82 416 0 380.2 0 336V176C0 131.8 35.82 96 80 96H464zM64 336C64 344.8 71.16 352 80 352H464C472.8 352 480 344.8 480 336V176C480 167.2 472.8 160 464 160H80C71.16 160 64 167.2 64 176V336z',
			),
		),
		'label'             => __( 'Battery Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'battery-full'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M448 320H96V192H448V320zM0 176C0 131.8 35.82 96 80 96H464C508.2 96 544 131.8 544 176V192C561.7 192 576 206.3 576 224V288C576 305.7 561.7 320 544 320V336C544 380.2 508.2 416 464 416H80C35.82 416 0 380.2 0 336V176zM80 160C71.16 160 64 167.2 64 176V336C64 344.8 71.16 352 80 352H464C472.8 352 480 344.8 480 336V176C480 167.2 472.8 160 464 160H80z',
			),
		),
		'label'             => __( 'Battery Full', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'battery-half'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 320H96V192H288V320zM0 176C0 131.8 35.82 96 80 96H464C508.2 96 544 131.8 544 176V192C561.7 192 576 206.3 576 224V288C576 305.7 561.7 320 544 320V336C544 380.2 508.2 416 464 416H80C35.82 416 0 380.2 0 336V176zM80 160C71.16 160 64 167.2 64 176V336C64 344.8 71.16 352 80 352H464C472.8 352 480 344.8 480 336V176C480 167.2 472.8 160 464 160H80z',
			),
		),
		'label'             => __( 'Battery Half', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'battery-quarter'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192 320H96V192H192V320zM0 176C0 131.8 35.82 96 80 96H464C508.2 96 544 131.8 544 176V192C561.7 192 576 206.3 576 224V288C576 305.7 561.7 320 544 320V336C544 380.2 508.2 416 464 416H80C35.82 416 0 380.2 0 336V176zM80 160C71.16 160 64 167.2 64 176V336C64 344.8 71.16 352 80 352H464C472.8 352 480 344.8 480 336V176C480 167.2 472.8 160 464 160H80z',
			),
		),
		'label'             => __( 'Battery Quarter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'battery-three-quarters'         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352 320H96V192H352V320zM0 176C0 131.8 35.82 96 80 96H464C508.2 96 544 131.8 544 176V192C561.7 192 576 206.3 576 224V288C576 305.7 561.7 320 544 320V336C544 380.2 508.2 416 464 416H80C35.82 416 0 380.2 0 336V176zM80 160C71.16 160 64 167.2 64 176V336C64 344.8 71.16 352 80 352H464C472.8 352 480 344.8 480 336V176C480 167.2 472.8 160 464 160H80z',
			),
		),
		'label'             => __( 'Battery Three Quarters', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'battle-net'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448.6 225.6c26.87 .18 35.57-7.43 38.92-12.37 12.47-16.32-7.06-47.6-52.85-71.33 17.76-33.58 30.11-63.68 36.34-85.3 3.38-11.83 1.09-19 .45-20.25-1.72 10.52-15.85 48.46-48.2 100.1-25-11.22-56.52-20.1-93.77-23.8-8.94-16.94-34.88-63.86-60.48-88.93C252.2 7.14 238.7 1.07 228.2 .22h-.05c-13.83-1.55-22.67 5.85-27.4 11-17.2 18.53-24.33 48.87-25 84.07-7.24-12.35-17.17-24.63-28.5-25.93h-.18c-20.66-3.48-38.39 29.22-36 81.29-38.36 1.38-71 5.75-93 11.23-9.9 2.45-16.22 7.27-17.76 9.72 1-.38 22.4-9.22 111.6-9.22 5.22 53 29.75 101.8 26 93.19-9.73 15.4-38.24 62.36-47.31 97.7-5.87 22.88-4.37 37.61 .15 47.14 5.57 12.75 16.41 16.72 23.2 18.26 25 5.71 55.38-3.63 86.7-21.14-7.53 12.84-13.9 28.51-9.06 39.34 7.31 19.65 44.49 18.66 88.44-9.45 20.18 32.18 40.07 57.94 55.7 74.12a39.79 39.79 0 0 0 8.75 7.09c5.14 3.21 8.58 3.37 8.58 3.37-8.24-6.75-34-38-62.54-91.78 22.22-16 45.65-38.87 67.47-69.27 122.8 4.6 143.3-24.76 148-31.64 14.67-19.88 3.43-57.44-57.32-93.69zm-77.85 106.2c23.81-37.71 30.34-67.77 29.45-92.33 27.86 17.57 47.18 37.58 49.06 58.83 1.14 12.93-8.1 29.12-78.51 33.5zM216.9 387.7c9.76-6.23 19.53-13.12 29.2-20.49 6.68 13.33 13.6 26.1 20.6 38.19-40.6 21.86-68.84 12.76-49.8-17.7zm215-171.4c-10.29-5.34-21.16-10.34-32.38-15.05a722.5 722.5 0 0 0 22.74-36.9c39.06 24.1 45.9 53.18 9.64 51.95zM279.2 398c-5.51-11.35-11-23.5-16.5-36.44 43.25 1.27 62.42-18.73 63.28-20.41 0 .07-25 15.64-62.53 12.25a718.8 718.8 0 0 0 85.06-84q13.06-15.31 24.93-31.11c-.36-.29-1.54-3-16.51-12-51.7 60.27-102.3 98-132.8 115.9-20.59-11.18-40.84-31.78-55.71-61.49-20-39.92-30-82.39-31.57-116.1 12.3 .91 25.27 2.17 38.85 3.88-22.29 36.8-14.39 63-13.47 64.23 0-.07-.95-29.17 20.14-59.57a695.2 695.2 0 0 0 44.67 152.8c.93-.38 1.84 .88 18.67-8.25-26.33-74.47-33.76-138.2-34-173.4 20-12.42 48.18-19.8 81.63-17.81 44.57 2.67 86.36 15.25 116.3 30.71q-10.69 15.66-23.33 32.47C365.6 152 339.1 145.8 337.5 146c.11 0 25.9 14.07 41.52 47.22a717.6 717.6 0 0 0 -115.3-31.71 646.6 646.6 0 0 0 -39.39-6.05c-.07 .45-1.81 1.85-2.16 20.33C300 190.3 358.8 215.7 389.4 233c.74 23.55-6.95 51.61-25.41 79.57-24.6 37.31-56.39 67.23-84.77 85.43zm27.4-287c-44.56-1.66-73.58 7.43-94.69 20.67 2-52.3 21.31-76.38 38.21-75.28C267 52.15 305 108.6 306.6 111zm-130.6 3.1c.48 12.11 1.59 24.62 3.21 37.28-14.55-.85-28.74-1.25-42.4-1.26-.08 3.24-.12-51 24.67-49.59h.09c5.76 1.09 10.63 6.88 14.43 13.57zm-28.06 162c20.76 39.7 43.3 60.57 65.25 72.31-46.79 24.76-77.53 20-84.92 4.51-.2-.21-11.13-15.3 19.67-76.81zm210.1 74.8',
			),
		),
		'label'             => __( 'Battle.net', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bed'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M176 288C220.1 288 256 252.1 256 208S220.1 128 176 128S96 163.9 96 208S131.9 288 176 288zM544 128H304C295.2 128 288 135.2 288 144V320H64V48C64 39.16 56.84 32 48 32h-32C7.163 32 0 39.16 0 48v416C0 472.8 7.163 480 16 480h32C56.84 480 64 472.8 64 464V416h512v48c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V224C640 170.1 597 128 544 128z',
			),
		),
		'label'             => __( 'Bed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'bed-pulse'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M96 318.3v1.689h1.689C97.12 319.4 96.56 318.9 96 318.3zM176 320c44.13 0 80-35.88 80-79.1s-35.88-79.1-80-79.1S96 195.9 96 240S131.9 320 176 320zM256 318.3C255.4 318.9 254.9 319.4 254.3 320H256V318.3zM544 160h-82.1L450.7 183.9C441.5 203.2 421.8 215.8 400 216c-21.23 0-40.97-12.31-50.3-31.35l-12.08-24.64H304c-8.836 0-16 7.161-16 15.1v175.1L64 352V80.01c0-8.834-7.164-15.1-16-15.1h-32c-8.836 0-16 7.163-16 15.1V496C0 504.8 7.164 512 16 512h32C56.84 512 64 504.8 64 496v-47.1h512V496c0 8.836 7.164 16 16 16h32c8.836 0 16-7.164 16-16V256C640 202.1 597 160 544 160zM624 48.01h-115.2l-24.88-37.31c-2.324-3.48-5.539-6.131-9.158-7.977c-1.172-.6016-2.486-.5508-3.738-.9512C468.8 1.035 466.5 0 464.1 0c-.625 0-1.25 .0254-1.875 .0781c-8.625 .6406-16.25 5.876-19.94 13.7l-42.72 90.81l-21.12-43.12c-4.027-8.223-12.39-13.44-21.54-13.44L208 48.02C199.2 48.01 192 55.18 192 64.02v15.99c0 8.836 7.163 15.1 15.1 16l133.1 .0091l36.46 74.55C382.5 178.8 390.8 184 400 184c9.219-.0781 17.78-5.438 21.72-13.78l45.91-97.52l8.406 12.62C480.5 91.1 487.1 96.01 496 96.01h128c8.836 0 16-7.164 16-16V64.01C640 55.18 632.8 48.01 624 48.01z',
			),
		),
		'label'             => __( 'Bed Pulse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'beer-mug-empty'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M432 96H384V64c0-17.67-14.33-32-32-32H64C46.33 32 32 46.33 32 64v352c0 35.35 28.65 64 64 64h224c35.35 0 64-28.65 64-64v-32.08l80.66-35.94C493.5 335.1 512 306.5 512 275V176C512 131.8 476.2 96 432 96zM160 368C160 376.9 152.9 384 144 384S128 376.9 128 368v-224C128 135.1 135.1 128 144 128S160 135.1 160 144V368zM224 368C224 376.9 216.9 384 208 384S192 376.9 192 368v-224C192 135.1 199.1 128 208 128S224 135.1 224 144V368zM288 368c0 8.875-7.125 16-16 16S256 376.9 256 368v-224C256 135.1 263.1 128 272 128S288 135.1 288 144V368zM448 275c0 6.25-3.75 12-9.5 14.62L384 313.9V160h48C440.9 160 448 167.1 448 176V275z',
			),
		),
		'label'             => __( 'Beer Mug Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'behance'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M232 237.2c31.8-15.2 48.4-38.2 48.4-74 0-70.6-52.6-87.8-113.3-87.8H0v354.4h171.8c64.4 0 124.9-30.9 124.9-102.9 0-44.5-21.1-77.4-64.7-89.7zM77.9 135.9H151c28.1 0 53.4 7.9 53.4 40.5 0 30.1-19.7 42.2-47.5 42.2h-79v-82.7zm83.3 233.7H77.9V272h84.9c34.3 0 56 14.3 56 50.6 0 35.8-25.9 47-57.6 47zm358.5-240.7H376V94h143.7v34.9zM576 305.2c0-75.9-44.4-139.2-124.9-139.2-78.2 0-131.3 58.8-131.3 135.8 0 79.9 50.3 134.7 131.3 134.7 61.3 0 101-27.6 120.1-86.3H509c-6.7 21.9-34.3 33.5-55.7 33.5-41.3 0-63-24.2-63-65.3h185.1c.3-4.2 .6-8.7 .6-13.2zM390.4 274c2.3-33.7 24.7-54.8 58.5-54.8 35.4 0 53.2 20.8 56.2 54.8H390.4z',
			),
		),
		'label'             => __( 'Behance', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'behance-square'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M186.5 293c0 19.3-14 25.4-31.2 25.4h-45.1v-52.9h46c18.6 .1 30.3 7.8 30.3 27.5zm-7.7-82.3c0-17.7-13.7-21.9-28.9-21.9h-39.6v44.8H153c15.1 0 25.8-6.6 25.8-22.9zm132.3 23.2c-18.3 0-30.5 11.4-31.7 29.7h62.2c-1.7-18.5-11.3-29.7-30.5-29.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM271.7 185h77.8v-18.9h-77.8V185zm-43 110.3c0-24.1-11.4-44.9-35-51.6 17.2-8.2 26.2-17.7 26.2-37 0-38.2-28.5-47.5-61.4-47.5H68v192h93.1c34.9-.2 67.6-16.9 67.6-55.9zM380 280.5c0-41.1-24.1-75.4-67.6-75.4-42.4 0-71.1 31.8-71.1 73.6 0 43.3 27.3 73 71.1 73 33.2 0 54.7-14.9 65.1-46.8h-33.7c-3.7 11.9-18.6 18.1-30.2 18.1-22.4 0-34.1-13.1-34.1-35.3h100.2c.1-2.3 .3-4.8 .3-7.2z',
			),
		),
		'label'             => __( 'Behance Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'bell'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 32V51.2C329 66.03 384 130.6 384 208V226.8C384 273.9 401.3 319.2 432.5 354.4L439.9 362.7C448.3 372.2 450.4 385.6 445.2 397.1C440 408.6 428.6 416 416 416H32C19.4 416 7.971 408.6 2.809 397.1C-2.353 385.6-.2883 372.2 8.084 362.7L15.5 354.4C46.74 319.2 64 273.9 64 226.8V208C64 130.6 118.1 66.03 192 51.2V32C192 14.33 206.3 0 224 0C241.7 0 256 14.33 256 32H256zM224 512C207 512 190.7 505.3 178.7 493.3C166.7 481.3 160 464.1 160 448H288C288 464.1 281.3 481.3 269.3 493.3C257.3 505.3 240.1 512 224 512z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 32V49.88C328.5 61.39 384 124.2 384 200V233.4C384 278.8 399.5 322.9 427.8 358.4L442.7 377C448.5 384.2 449.6 394.1 445.6 402.4C441.6 410.7 433.2 416 424 416H24C14.77 416 6.365 410.7 2.369 402.4C-1.628 394.1-.504 384.2 5.26 377L20.17 358.4C48.54 322.9 64 278.8 64 233.4V200C64 124.2 119.5 61.39 192 49.88V32C192 14.33 206.3 0 224 0C241.7 0 256 14.33 256 32V32zM216 96C158.6 96 112 142.6 112 200V233.4C112 281.3 98.12 328 72.31 368H375.7C349.9 328 336 281.3 336 233.4V200C336 142.6 289.4 96 232 96H216zM288 448C288 464.1 281.3 481.3 269.3 493.3C257.3 505.3 240.1 512 224 512C207 512 190.7 505.3 178.7 493.3C166.7 481.3 160 464.1 160 448H288z',
			),
		),
		'label'             => __( 'Bell', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies', 'social', 'travel' ),
	),
	'bell-concierge'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M280 145.3V112h16C309.3 112 320 101.3 320 88S309.3 64 296 64H215.1C202.7 64 192 74.75 192 87.1S202.7 112 215.1 112H232v33.32C119.6 157.3 32 252.4 32 368h448C480 252.4 392.4 157.3 280 145.3zM488 400h-464C10.75 400 0 410.7 0 423.1C0 437.3 10.75 448 23.1 448h464c13.25 0 24-10.75 24-23.1C512 410.7 501.3 400 488 400z',
			),
		),
		'label'             => __( 'Bell Concierge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'bell-slash'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M186 120.5C209 85.38 245.4 59.84 288 51.2V32C288 14.33 302.3 .0003 320 .0003C337.7 .0003 352 14.33 352 32V51.2C425 66.03 480 130.6 480 208V226.8C480 273.9 497.3 319.2 528.5 354.4L535.9 362.7C544.3 372.2 546.4 385.6 541.2 397.1C540.1 397.5 540.8 397.1 540.6 398.4L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L186 120.5zM160 226.8V222.1L406.2 416H128C115.4 416 103.1 408.6 98.81 397.1C93.65 385.6 95.71 372.2 104.1 362.7L111.5 354.4C142.7 319.2 160 273.9 160 226.8V226.8zM320 512C303 512 286.7 505.3 274.7 493.3C262.7 481.3 256 464.1 256 448H384C384 464.1 377.3 481.3 365.3 493.3C353.3 505.3 336.1 512 320 512z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M183.6 118.6C206.5 82.58 244.1 56.84 288 49.88V32C288 14.33 302.3 .0003 320 .0003C337.7 .0003 352 14.33 352 32V49.88C424.5 61.39 480 124.2 480 200V233.4C480 278.8 495.5 322.9 523.8 358.4L538.7 377C543.1 383.5 545.4 392.2 542.6 400L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L183.6 118.6zM221.7 148.4L450.7 327.1C438.4 298.2 432 266.1 432 233.4V200C432 142.6 385.4 96 328 96H312C273.3 96 239.6 117.1 221.7 148.4V148.4zM160 233.4V222.1L206.7 258.9C202.7 297.7 189.5 335.2 168.3 368H345.2L406.2 416H120C110.8 416 102.4 410.7 98.37 402.4C94.37 394.1 95.5 384.2 101.3 377L116.2 358.4C144.5 322.9 160 278.8 160 233.4V233.4zM384 448C384 464.1 377.3 481.3 365.3 493.3C353.3 505.3 336.1 512 320 512C303 512 286.7 505.3 274.7 493.3C262.7 481.3 256 464.1 256 448H384z',
			),
		),
		'label'             => __( 'Bell Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'travel' ),
	),
	'bezier-curve'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 32C378.5 32 400 53.49 400 80V84H518.4C528.8 62.69 550.7 48 576 48C611.3 48 640 76.65 640 112C640 147.3 611.3 176 576 176C550.7 176 528.8 161.3 518.4 140H451.5C510.4 179.6 550.4 244.1 555.5 320H560C586.5 320 608 341.5 608 368V432C608 458.5 586.5 480 560 480H496C469.5 480 448 458.5 448 432V368C448 341.5 469.5 320 496 320H499.3C493.4 253 450.8 196.6 391.8 170.9C383.1 183.6 368.6 192 352 192H288C271.4 192 256.9 183.6 248.2 170.9C189.2 196.6 146.6 253 140.7 320H144C170.5 320 192 341.5 192 368V432C192 458.5 170.5 480 144 480H80C53.49 480 32 458.5 32 432V368C32 341.5 53.49 320 80 320H84.53C89.56 244.1 129.6 179.6 188.5 140H121.6C111.2 161.3 89.3 176 64 176C28.65 176 0 147.3 0 112C0 76.65 28.65 48 64 48C89.3 48 111.2 62.69 121.6 84H240V80C240 53.49 261.5 32 288 32H352zM296 136H344V88H296V136zM88 376V424H136V376H88zM552 424V376H504V424H552z',
			),
		),
		'label'             => __( 'Bezier Curve', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'bicycle'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M347.2 32C358.1 32 369.8 38.44 375.4 48.78L473.3 229.1C485.5 226.1 498.5 224 512 224C582.7 224 640 281.3 640 352C640 422.7 582.7 480 512 480C441.3 480 384 422.7 384 352C384 311.1 402.4 276.3 431.1 252.8L409.4 212.7L324.7 356.2C320.3 363.5 312.5 368 304 368H255C247.1 431.1 193.3 480 128 480C57.31 480 0 422.7 0 352C0 281.3 57.31 224 128 224C138.7 224 149.2 225.3 159.2 227.8L185.8 174.7L163.7 144H120C106.7 144 96 133.3 96 120C96 106.7 106.7 96 120 96H176C183.7 96 190.1 99.71 195.5 105.1L222.9 144H372.3L337.7 80H311.1C298.7 80 287.1 69.25 287.1 56C287.1 42.75 298.7 32 311.1 32H347.2zM440 352C440 391.8 472.2 424 512 424C551.8 424 584 391.8 584 352C584 312.2 551.8 280 512 280C508.2 280 504.5 280.3 500.8 280.9L533.1 340.6C539.4 352.2 535.1 366.8 523.4 373.1C511.8 379.4 497.2 375.1 490.9 363.4L458.6 303.7C447 316.5 440 333.4 440 352V352zM108.8 328.6L133.1 280.2C131.4 280.1 129.7 280 127.1 280C88.24 280 55.1 312.2 55.1 352C55.1 391.8 88.24 424 127.1 424C162.3 424 190.9 400.1 198.2 368H133.2C112.1 368 99.81 346.7 108.8 328.6H108.8zM290.3 320L290.4 319.9L217.5 218.7L166.8 320H290.3zM257.4 192L317 274.8L365.9 192H257.4z',
			),
		),
		'label'             => __( 'Bicycle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'bilibili'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M488.6 104.1C505.3 122.2 513 143.8 511.9 169.8V372.2C511.5 398.6 502.7 420.3 485.4 437.3C468.2 454.3 446.3 463.2 419.9 464H92.02C65.57 463.2 43.81 454.2 26.74 436.8C9.682 419.4 .7667 396.5 0 368.2V169.8C.7667 143.8 9.682 122.2 26.74 104.1C43.81 87.75 65.57 78.77 92.02 78H121.4L96.05 52.19C90.3 46.46 87.42 39.19 87.42 30.4C87.42 21.6 90.3 14.34 96.05 8.603C101.8 2.868 109.1 0 117.9 0C126.7 0 134 2.868 139.8 8.603L213.1 78H301.1L375.6 8.603C381.7 2.868 389.2 0 398 0C406.8 0 414.1 2.868 419.9 8.603C425.6 14.34 428.5 21.6 428.5 30.4C428.5 39.19 425.6 46.46 419.9 52.19L394.6 78L423.9 78C450.3 78.77 471.9 87.75 488.6 104.1H488.6zM449.8 173.8C449.4 164.2 446.1 156.4 439.1 150.3C433.9 144.2 425.1 140.9 416.4 140.5H96.05C86.46 140.9 78.6 144.2 72.47 150.3C66.33 156.4 63.07 164.2 62.69 173.8V368.2C62.69 377.4 65.95 385.2 72.47 391.7C78.99 398.2 86.85 401.5 96.05 401.5H416.4C425.6 401.5 433.4 398.2 439.7 391.7C446 385.2 449.4 377.4 449.8 368.2L449.8 173.8zM185.5 216.5C191.8 222.8 195.2 230.6 195.6 239.7V273C195.2 282.2 191.9 289.9 185.8 296.2C179.6 302.5 171.8 305.7 162.2 305.7C152.6 305.7 144.7 302.5 138.6 296.2C132.5 289.9 129.2 282.2 128.8 273V239.7C129.2 230.6 132.6 222.8 138.9 216.5C145.2 210.2 152.1 206.9 162.2 206.5C171.4 206.9 179.2 210.2 185.5 216.5H185.5zM377 216.5C383.3 222.8 386.7 230.6 387.1 239.7V273C386.7 282.2 383.4 289.9 377.3 296.2C371.2 302.5 363.3 305.7 353.7 305.7C344.1 305.7 336.3 302.5 330.1 296.2C323.1 289.9 320.7 282.2 320.4 273V239.7C320.7 230.6 324.1 222.8 330.4 216.5C336.7 210.2 344.5 206.9 353.7 206.5C362.9 206.9 370.7 210.2 377 216.5H377z',
			),
		),
		'label'             => __( 'Bilibili', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bimobject'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 32H32C14.4 32 0 46.4 0 64v384c0 17.6 14.4 32 32 32h384c17.6 0 32-14.4 32-32V64c0-17.6-14.4-32-32-32zm-64 257.4c0 49.4-11.4 82.6-103.8 82.6h-16.9c-44.1 0-62.4-14.9-70.4-38.8h-.9V368H96V136h64v74.7h1.1c4.6-30.5 39.7-38.8 69.7-38.8h17.3c92.4 0 103.8 33.1 103.8 82.5v35zm-64-28.9v22.9c0 21.7-3.4 33.8-38.4 33.8h-45.3c-28.9 0-44.1-6.5-44.1-35.7v-19c0-29.3 15.2-35.7 44.1-35.7h45.3c35-.2 38.4 12 38.4 33.7z',
			),
		),
		'label'             => __( 'BIMobject', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'binoculars'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 48C416 39.13 408.9 32 400 32h-64C327.1 32 320 39.13 320 48V96h96.04L416 48zM63.88 160.1C61.34 253.9 3.5 274.3 0 404V448c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32V128H95.88C78.26 128 64.35 142.5 63.88 160.1zM448.1 160.1C447.6 142.5 433.7 128 416.1 128H320v320c0 17.6 14.4 32 32 32h128c17.6 0 32-14.4 32-32v-44C508.5 274.3 450.7 253.9 448.1 160.1zM224 288h64V128H224V288zM176 32h-64C103.1 32 96 39.13 96 48L95.96 96H192V48C192 39.13 184.9 32 176 32z',
			),
		),
		'label'             => __( 'Binoculars', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'biohazard'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M575.5 283.5c-13.13-39.11-39.5-71.98-74.13-92.35c-17.5-10.37-36.25-16.62-55.25-19.87c6-17.75 10-36.49 10-56.24c0-40.99-14.5-80.73-41-112.2c-2.5-3-6.625-3.623-10-1.75c-3.25 1.875-4.75 5.998-3.625 9.748c4.5 13.75 6.625 26.24 6.625 38.49c0 67.73-53.76 122.8-120 122.8s-120-55.11-120-122.8c0-12.12 2.25-24.74 6.625-38.49c1.125-3.75-.375-7.873-3.625-9.748c-3.375-1.873-7.502-1.25-10 1.75C134.7 34.3 120.1 74.04 120.1 115c0 19.75 3.875 38.49 10 56.24C111.2 174.5 92.32 180.8 74.82 191.1c-34.63 20.49-61.01 53.24-74.38 92.35c-1.25 3.75 .25 7.748 3.5 9.748c3.375 2 7.5 1.375 10-1.5c9.377-10.87 19-19.12 29.25-25.12c57.25-33.87 130.8-13.75 163.9 44.99c33.13 58.61 13.38 133.1-43.88 167.8c-10.25 6.123-22 10.37-35.88 13.37c-3.627 .875-6.377 4.25-6.377 8.123c.125 4 2.75 7.248 6.502 7.998c39.75 7.748 80.63 .7495 115.3-19.74c18-10.5 32.88-24.49 45.25-39.99c12.38 15.5 27.38 29.49 45.38 39.99c34.5 20.49 75.51 27.49 115.1 19.74c3.875-.75 6.375-3.998 6.5-7.998c0-3.873-2.625-7.248-6.375-8.123c-13.88-2.873-25.63-7.248-35.75-13.37c-57.38-33.87-77.01-109.2-44-167.8c33.13-58.73 106.6-78.85 164-44.99c10.12 6.123 19.75 14.25 29.13 25.12c2.5 2.875 6.752 3.5 10 1.5C575.4 291.2 576.9 287.2 575.5 283.5zM287.1 320.1c-26.5 0-48-21.49-48-47.99c0-26.49 21.5-47.99 48-47.99c26.5 0 48.01 21.49 48.01 47.99C335.1 298.6 314.5 320.1 287.1 320.1zM385 377.6c1.152 22.77 10.74 44.63 27.22 60.92c47.45-35.44 79.13-90.58 83.1-153.4c-22.58-6.173-45.69-2.743-65.57 8.76C424.7 326.9 408.5 355.1 385 377.6zM253.3 132.6c26.22-6.551 45.37-6.024 69.52 .0254c21.93-9.777 39.07-28.55 47.48-51.75C345 69.98 317.3 63.94 288.1 63.94c-29.18 0-56.96 5.986-82.16 16.84C214.3 103.1 231.4 122.8 253.3 132.6zM163.8 438.5c16.46-16.26 26.03-38.19 27.14-61.01c-23.49-21.59-39.59-50.67-44.71-83.6C126.9 282.7 103.8 278.8 80.67 285.1C84.64 347.9 116.3 403.1 163.8 438.5z',
			),
		),
		'label'             => __( 'Biohazard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'bitbucket'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M22.2 32A16 16 0 0 0 6 47.8a26.35 26.35 0 0 0 .2 2.8l67.9 412.1a21.77 21.77 0 0 0 21.3 18.2h325.7a16 16 0 0 0 16-13.4L505 50.7a16 16 0 0 0 -13.2-18.3 24.58 24.58 0 0 0 -2.8-.2L22.2 32zm285.9 297.8h-104l-28.1-147h157.3l-25.2 147z',
			),
		),
		'label'             => __( 'Bitbucket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bitcoin'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M504 256c0 136.1-111 248-248 248S8 392.1 8 256 119 8 256 8s248 111 248 248zm-141.7-35.33c4.937-32.1-20.19-50.74-54.55-62.57l11.15-44.7-27.21-6.781-10.85 43.52c-7.154-1.783-14.5-3.464-21.8-5.13l10.93-43.81-27.2-6.781-11.15 44.69c-5.922-1.349-11.73-2.682-17.38-4.084l.031-.14-37.53-9.37-7.239 29.06s20.19 4.627 19.76 4.913c11.02 2.751 13.01 10.04 12.68 15.82l-12.7 50.92c.76 .194 1.744 .473 2.829 .907-.907-.225-1.876-.473-2.876-.713l-17.8 71.34c-1.349 3.348-4.767 8.37-12.47 6.464 .271 .395-19.78-4.937-19.78-4.937l-13.51 31.15 35.41 8.827c6.588 1.651 13.05 3.379 19.4 5.006l-11.26 45.21 27.18 6.781 11.15-44.73a1038 1038 0 0 0 21.69 5.627l-11.11 44.52 27.21 6.781 11.26-45.13c46.4 8.781 81.3 5.239 95.99-36.73 11.84-33.79-.589-53.28-25-65.99 17.78-4.098 31.17-15.79 34.75-39.95zm-62.18 87.18c-8.41 33.79-65.31 15.52-83.75 10.94l14.94-59.9c18.45 4.603 77.6 13.72 68.81 48.96zm8.417-87.67c-7.673 30.74-55.03 15.12-70.39 11.29l13.55-54.33c15.36 3.828 64.84 10.97 56.85 43.03z',
			),
		),
		'label'             => __( 'Bitcoin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'bitcoin-sign'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M48 32C48 14.33 62.33 0 80 0C97.67 0 112 14.33 112 32V64H144V32C144 14.33 158.3 0 176 0C193.7 0 208 14.33 208 32V64C208 65.54 207.9 67.06 207.7 68.54C254.1 82.21 288 125.1 288 176C288 200.2 280.3 222.6 267.3 240.9C298.9 260.7 320 295.9 320 336C320 397.9 269.9 448 208 448V480C208 497.7 193.7 512 176 512C158.3 512 144 497.7 144 480V448H112V480C112 497.7 97.67 512 80 512C62.33 512 48 497.7 48 480V448H41.74C18.69 448 0 429.3 0 406.3V101.6C0 80.82 16.82 64 37.57 64H48V32zM176 224C202.5 224 224 202.5 224 176C224 149.5 202.5 128 176 128H64V224H176zM64 288V384H208C234.5 384 256 362.5 256 336C256 309.5 234.5 288 208 288H64z',
			),
		),
		'label'             => __( 'Bitcoin Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'brands', 'brands', 'social' ),
	),
	'bity'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M78.4 67.2C173.8-22 324.5-24 421.5 71c14.3 14.1-6.4 37.1-22.4 21.5-84.8-82.4-215.8-80.3-298.9-3.2-16.3 15.1-36.5-8.3-21.8-22.1zm98.9 418.6c19.3 5.7 29.3-23.6 7.9-30C73 421.9 9.4 306.1 37.7 194.8c5-19.6-24.9-28.1-30.2-7.1-32.1 127.4 41.1 259.8 169.8 298.1zm148.1-2c121.9-40.2 192.9-166.9 164.4-291-4.5-19.7-34.9-13.8-30 7.9 24.2 107.7-37.1 217.9-143.2 253.4-21.2 7-10.4 36 8.8 29.7zm-62.9-79l.2-71.8c0-8.2-6.6-14.8-14.8-14.8-8.2 0-14.8 6.7-14.8 14.8l-.2 71.8c0 8.2 6.6 14.8 14.8 14.8s14.8-6.6 14.8-14.8zm71-269c2.1 90.9 4.7 131.9-85.5 132.5-92.5-.7-86.9-44.3-85.5-132.5 0-21.8-32.5-19.6-32.5 0v71.6c0 69.3 60.7 90.9 118 90.1 57.3 .8 118-20.8 118-90.1v-71.6c0-19.6-32.5-21.8-32.5 0z',
			),
		),
		'label'             => __( 'Bity', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'black-tie'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32H0zm316.5 325.2L224 445.9l-92.5-88.7 64.5-184-64.5-86.6h184.9L252 173.2l64.5 184z',
			),
		),
		'label'             => __( 'Font Awesome Black Tie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'blackberry'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M166 116.9c0 23.4-16.4 49.1-72.5 49.1H23.4l21-88.8h67.8c42.1 0 53.8 23.3 53.8 39.7zm126.2-39.7h-67.8L205.7 166h70.1c53.8 0 70.1-25.7 70.1-49.1 .1-16.4-11.6-39.7-53.7-39.7zM88.8 208.1H21L0 296.9h70.1c56.1 0 72.5-23.4 72.5-49.1 0-16.3-11.7-39.7-53.8-39.7zm180.1 0h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 0-16.3-11.7-39.7-53.7-39.7zm189.3-53.8h-67.8l-18.7 88.8h70.1c53.8 0 70.1-23.4 70.1-49.1 .1-16.3-11.6-39.7-53.7-39.7zm-28 137.9h-67.8L343.7 381h70.1c56.1 0 70.1-23.4 70.1-49.1 0-16.3-11.6-39.7-53.7-39.7zM240.8 346H173l-18.7 88.8h70.1c56.1 0 70.1-25.7 70.1-49.1 .1-16.3-11.6-39.7-53.7-39.7z',
			),
		),
		'label'             => __( 'BlackBerry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'blender'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M336 64h158.5L512 0H48C21.49 0 0 21.49 0 48v160C0 234.5 21.49 256 48 256h103.3L160 352h256l17.49-64H336C327.2 288 320 280.8 320 272S327.2 256 336 256h106.1l17.49-64H336C327.2 192 320 184.8 320 176S327.2 160 336 160h132.4l17.49-64H336C327.2 96 320 88.8 320 80S327.2 64 336 64zM64 192V64h69.88L145.5 192H64zM416 384H160c-35.38 0-64 28.62-64 64l-.0001 32c0 17.62 14.38 32 32 32h320c17.62 0 32-14.38 32-32l.0003-32C480 412.6 451.4 384 416 384zM288 480c-17.62 0-32-14.38-32-32s14.38-32 32-32s32 14.38 32 32S305.6 480 288 480z',
			),
		),
		'label'             => __( 'Blender', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'blender-phone'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M158.7 334.1L132.1 271.7C130.2 264.1 123.2 260.7 115.7 261.5l-45 4.374c-17.25-46.87-17.63-99.74 0-147.6l45 4.374C123.2 123.4 130.2 119.1 132.1 112.4l25.75-63.25C161.9 41.76 158.1 33.26 152.1 29.01L112.9 4.887C98.49-3.863 80.12-.4886 68.99 12.01C-23.64 115.6-23.01 271.5 70.99 374.5c9.875 10.75 29.13 12.5 41.75 4.75l39.38-24.12C158.1 350.9 161.7 342.4 158.7 334.1zM479.1 384H224c-35.38 0-63.1 28.62-63.1 63.1l-.0052 32c0 17.62 14.37 31.1 31.1 31.1L511.1 512c17.63 0 32-14.38 32-31.1l.0019-31.1C543.1 412.6 515.4 384 479.1 384zM352 480c-17.63 0-31.1-14.38-31.1-31.1c0-17.62 14.37-31.1 31.1-31.1s31.1 14.38 31.1 31.1C384 465.6 369.6 480 352 480zM399.1 64h158.5L576 .008L191.1 .006l-.0023 351.1h288l17.49-64h-97.49c-8.801 0-16-7.199-16-15.1c0-8.799 7.199-15.1 16-15.1h106.1l17.49-63.1h-123.6c-8.801 0-16-7.199-16-15.1c0-8.799 7.199-15.1 16-15.1h132.4l17.49-63.1h-149.9c-8.801 0-16-7.199-16-15.1C383.1 71.2 391.2 64 399.1 64z',
			),
		),
		'label'             => __( 'Blender Phone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'blog'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M217.6 96.1c-12.95-.625-24.66 9.156-25.52 22.37C191.2 131.7 201.2 143.1 214.4 143.1c79.53 5.188 148.4 74.09 153.6 153.6c.8281 12.69 11.39 22.43 23.94 22.43c.5156 0 1.047-.0313 1.578-.0625c13.22-.8438 23.25-12.28 22.39-25.5C409.3 191.8 320.3 102.8 217.6 96.1zM224 0C206.3 0 192 14.31 192 32s14.33 32 32 32c123.5 0 224 100.5 224 224c0 17.69 14.33 32 32 32s32-14.31 32-32C512 129.2 382.8 0 224 0zM172.3 226.8C157.7 223.9 144 235.8 144 250.6v50.37c0 10.25 7.127 18.37 16.75 21.1c18.13 6.75 31.26 24.38 31.26 44.1c0 26.5-21.5 47.1-48.01 47.1c-26.5 0-48.01-21.5-48.01-47.1V120c0-13.25-10.75-23.1-24.01-23.1l-48.01 .0076C10.75 96.02 0 106.8 0 120v247.1c0 89.5 82.14 160.2 175 140.7c54.38-11.5 98.27-55.5 109.8-109.7C302.2 316.1 247.8 241.8 172.3 226.8z',
			),
		),
		'label'             => __( 'Blog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'blogger'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M162.4 196c4.8-4.9 6.2-5.1 36.4-5.1 27.2 0 28.1 .1 32.1 2.1 5.8 2.9 8.3 7 8.3 13.6 0 5.9-2.4 10-7.6 13.4-2.8 1.8-4.5 1.9-31.1 2.1-16.4 .1-29.5-.2-31.5-.8-10.3-2.9-14.1-17.7-6.6-25.3zm61.4 94.5c-53.9 0-55.8 .2-60.2 4.1-3.5 3.1-5.7 9.4-5.1 13.9 .7 4.7 4.8 10.1 9.2 12 2.2 1 14.1 1.7 56.3 1.2l47.9-.6 9.2-1.5c9-5.1 10.5-17.4 3.1-24.4-5.3-4.7-5-4.7-60.4-4.7zm223.4 130.1c-3.5 28.4-23 50.4-51.1 57.5-7.2 1.8-9.7 1.9-172.9 1.8-157.8 0-165.9-.1-172-1.8-8.4-2.2-15.6-5.5-22.3-10-5.6-3.8-13.9-11.8-17-16.4-3.8-5.6-8.2-15.3-10-22C.1 423 0 420.3 0 256.3 0 93.2 0 89.7 1.8 82.6 8.1 57.9 27.7 39 53 33.4c7.3-1.6 332.1-1.9 340-.3 21.2 4.3 37.9 17.1 47.6 36.4 7.7 15.3 7-1.5 7.3 180.6 .2 115.8 0 164.5-.7 170.5zm-85.4-185.2c-1.1-5-4.2-9.6-7.7-11.5-1.1-.6-8-1.3-15.5-1.7-12.4-.6-13.8-.8-17.8-3.1-6.2-3.6-7.9-7.6-8-18.3 0-20.4-8.5-39.4-25.3-56.5-12-12.2-25.3-20.5-40.6-25.1-3.6-1.1-11.8-1.5-39.2-1.8-42.9-.5-52.5 .4-67.1 6.2-27 10.7-46.3 33.4-53.4 62.4-1.3 5.4-1.6 14.2-1.9 64.3-.4 62.8 0 72.1 4 84.5 9.7 30.7 37.1 53.4 64.6 58.4 9.2 1.7 122.2 2.1 133.7 .5 20.1-2.7 35.9-10.8 50.7-25.9 10.7-10.9 17.4-22.8 21.8-38.5 3.2-10.9 2.9-88.4 1.7-93.9z',
			),
		),
		'label'             => __( 'Blogger', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'blogger-b'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M446.6 222.7c-1.8-8-6.8-15.4-12.5-18.5-1.8-1-13-2.2-25-2.7-20.1-.9-22.3-1.3-28.7-5-10.1-5.9-12.8-12.3-12.9-29.5-.1-33-13.8-63.7-40.9-91.3-19.3-19.7-40.9-33-65.5-40.5-5.9-1.8-19.1-2.4-63.3-2.9-69.4-.8-84.8 .6-108.4 10C45.9 59.5 14.7 96.1 3.3 142.9 1.2 151.7 .7 165.8 .2 246.8c-.6 101.5 .1 116.4 6.4 136.5 15.6 49.6 59.9 86.3 104.4 94.3 14.8 2.7 197.3 3.3 216 .8 32.5-4.4 58-17.5 81.9-41.9 17.3-17.7 28.1-36.8 35.2-62.1 4.9-17.6 4.5-142.8 2.5-151.7zm-322.1-63.6c7.8-7.9 10-8.2 58.8-8.2 43.9 0 45.4 .1 51.8 3.4 9.3 4.7 13.4 11.3 13.4 21.9 0 9.5-3.8 16.2-12.3 21.6-4.6 2.9-7.3 3.1-50.3 3.3-26.5 .2-47.7-.4-50.8-1.2-16.6-4.7-22.8-28.5-10.6-40.8zm191.8 199.8l-14.9 2.4-77.5 .9c-68.1 .8-87.3-.4-90.9-2-7.1-3.1-13.8-11.7-14.9-19.4-1.1-7.3 2.6-17.3 8.2-22.4 7.1-6.4 10.2-6.6 97.3-6.7 89.6-.1 89.1-.1 97.6 7.8 12.1 11.3 9.5 31.2-4.9 39.4z',
			),
		),
		'label'             => __( 'Blogger B', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bluetooth'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M292.6 171.1L249.7 214l-.3-86 43.2 43.1m-43.2 219.8l43.1-43.1-42.9-42.9-.2 86zM416 259.4C416 465 344.1 512 230.9 512S32 465 32 259.4 115.4 0 228.6 0 416 53.9 416 259.4zm-158.5 0l79.4-88.6L211.8 36.5v176.9L138 139.6l-27 26.9 92.7 93-92.7 93 26.9 26.9 73.8-73.8 2.3 170 127.4-127.5-83.9-88.7z',
			),
		),
		'label'             => __( 'Bluetooth', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel', 'brands', 'brands', 'social' ),
	),
	'bluetooth-b'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M196.5 260l92.63-103.3L143.1 0v206.3l-86.11-86.11-31.41 31.41 108.1 108.4L25.61 368.4l31.41 31.41 86.11-86.11L145.8 512l148.6-148.6-97.91-103.3zm40.86-102.1l-49.98 49.98-.338-100.3 50.31 50.32zM187.4 313l49.98 49.98-50.31 50.32 .338-100.3z',
			),
		),
		'label'             => __( 'Bluetooth', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'brands', 'brands', 'social' ),
	),
	'bold'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M321.1 242.4C340.1 220.1 352 191.6 352 160c0-70.59-57.42-128-128-128L32 32.01c-17.67 0-32 14.31-32 32s14.33 32 32 32h16v320H32c-17.67 0-32 14.31-32 32s14.33 32 32 32h224c70.58 0 128-57.41 128-128C384 305.3 358.6 264.8 321.1 242.4zM112 96.01H224c35.3 0 64 28.72 64 64s-28.7 64-64 64H112V96.01zM256 416H112v-128H256c35.3 0 64 28.71 64 63.1S291.3 416 256 416z',
			),
		),
		'label'             => __( 'Bold', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'bolt'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M240.5 224H352C365.3 224 377.3 232.3 381.1 244.7C386.6 257.2 383.1 271.3 373.1 280.1L117.1 504.1C105.8 513.9 89.27 514.7 77.19 505.9C65.1 497.1 60.7 481.1 66.59 467.4L143.5 288H31.1C18.67 288 6.733 279.7 2.044 267.3C-2.645 254.8 .8944 240.7 10.93 231.9L266.9 7.918C278.2-1.92 294.7-2.669 306.8 6.114C318.9 14.9 323.3 30.87 317.4 44.61L240.5 224z',
			),
		),
		'label'             => __( 'Bolt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'environment', 'science-and-technology' ),
	),
	'bolt-lightning'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M381.2 172.8C377.1 164.9 368.9 160 360 160h-156.6l50.84-127.1c2.969-7.375 2.062-15.78-2.406-22.38S239.1 0 232 0h-176C43.97 0 33.81 8.906 32.22 20.84l-32 240C-.7179 267.7 1.376 274.6 5.938 279.8C10.5 285 17.09 288 24 288h146.3l-41.78 194.1c-2.406 11.22 3.469 22.56 14 27.09C145.6 511.4 148.8 512 152 512c7.719 0 15.22-3.75 19.81-10.44l208-304C384.8 190.2 385.4 180.7 381.2 172.8z',
			),
		),
		'label'             => __( 'Bolt Lightning', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'environment' ),
	),
	'bomb'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M440.8 4.994C441.9 1.99 444.8 0 448 0C451.2 0 454.1 1.99 455.2 4.994L469.3 42.67L507 56.79C510 57.92 512 60.79 512 64C512 67.21 510 70.08 507 71.21L469.3 85.33L455.2 123C454.1 126 451.2 128 448 128C444.8 128 441.9 126 440.8 123L426.7 85.33L388.1 71.21C385.1 70.08 384 67.21 384 64C384 60.79 385.1 57.92 388.1 56.79L426.7 42.67L440.8 4.994zM289.4 97.37C301.9 84.88 322.1 84.88 334.6 97.37L363.3 126.1L380.7 108.7C386.9 102.4 397.1 102.4 403.3 108.7C409.6 114.9 409.6 125.1 403.3 131.3L385.9 148.7L414.6 177.4C427.1 189.9 427.1 210.1 414.6 222.6L403.8 233.5C411.7 255.5 416 279.3 416 304C416 418.9 322.9 512 208 512C93.12 512 0 418.9 0 304C0 189.1 93.12 96 208 96C232.7 96 256.5 100.3 278.5 108.3L289.4 97.37zM95.1 296C95.1 238.6 142.6 192 199.1 192H207.1C216.8 192 223.1 184.8 223.1 176C223.1 167.2 216.8 160 207.1 160H199.1C124.9 160 63.1 220.9 63.1 296V304C63.1 312.8 71.16 320 79.1 320C88.84 320 95.1 312.8 95.1 304V296z',
			),
		),
		'label'             => __( 'Bomb', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'bone'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M534.9 267.5C560.1 280 576 305.8 576 334v4.387c0 35.55-23.49 68.35-58.24 75.88c-38.18 8.264-74.96-13.73-86.76-49.14c-.0352-.1035-.0684-.207-.1035-.3125C425.3 347.7 409.6 336 391.6 336H184.4c-17.89 0-33.63 11.57-39.23 28.56L145 365.1c-11.8 35.41-48.58 57.4-86.76 49.14C23.49 406.7 0 373.9 0 338.4v-4.387C0 305.8 15.88 280 41.13 267.5c9.375-4.75 9.375-18.25 0-23C15.88 232 0 206.3 0 178V173.6c0-35.55 23.49-68.35 58.24-75.88c38.18-8.264 74.99 13.82 86.79 49.23C150.7 164.1 166.4 176 184.4 176h207.2c17.89 0 33.63-11.57 39.23-28.56L431 146.9c11.8-35.41 48.58-57.4 86.76-49.14C552.5 105.3 576 138.1 576 173.6v4.387C576 206.3 560.1 232 534.9 244.5C525.5 249.3 525.5 262.8 534.9 267.5z',
			),
		),
		'label'             => __( 'Bone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'bong'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M334.5 512c23.12 0 44.38-12.62 56-32.63C406.8 451.2 416 418.8 416 384c0-36.13-10.11-69.75-27.49-98.63l43.5-43.37l9.376 9.375c6.25 6.25 16.38 6.25 22.63 0L475.3 240c6.25-6.25 6.25-16.38 0-22.62l-52.63-52.75c-6.25-6.25-16.38-6.25-22.63 0L388.6 176c-6.25 6.25-6.25 16.38 0 22.62L398 208l-39.38 39.38c-11.5-11.38-24.51-21.25-38.63-29.5l.0067-154.1h16c8.75 0 16-7.25 16-16L352 16.01C352 7.14 344.9 0 336 0L111.1 .1667c-8.75 0-15.99 7.11-15.99 15.99L96 48c0 8.875 7.126 16 16 16h16L128 217.9C70.63 251.1 32 313 32 384c0 34.75 9.252 67.25 25.5 95.38C69.13 499.4 90.38 512 113.5 512H334.5zM152 259.4l23.97-13.87V64.03L272 63.75l.0168 181.8l23.97 13.87C320.7 273.8 340 295.1 352.5 320H95.51C108 295.1 127.3 273.8 152 259.4z',
			),
		),
		'label'             => __( 'Bong', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'book'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-31.1c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM143.1 128h192C344.8 128 352 135.2 352 144C352 152.8 344.8 160 336 160H143.1C135.2 160 128 152.8 128 144C128 135.2 135.2 128 143.1 128zM143.1 192h192C344.8 192 352 199.2 352 208C352 216.8 344.8 224 336 224H143.1C135.2 224 128 216.8 128 208C128 199.2 135.2 192 143.1 192zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z',
			),
		),
		'label'             => __( 'Book', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'travel' ),
	),
	'book-atlas'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M240 97.25C232.3 104.8 219.3 131.8 216.6 176h46.88C260.8 131.8 247.8 104.8 240 97.25zM334.4 176c-5.25-31.25-25.62-57.13-53.25-70.38C288.8 124.6 293.8 149 295.3 176H334.4zM334.4 208h-39.13c-1.5 27-6.5 51.38-14.12 70.38C308.8 265.1 329.1 239.3 334.4 208zM263.4 208H216.5C219.3 252.3 232.3 279.3 240 286.8C247.8 279.3 260.8 252.3 263.4 208zM198.9 105.6C171.3 118.9 150.9 144.8 145.6 176h39.13C186.3 149 191.3 124.6 198.9 105.6zM448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-32c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM240 64c70.75 0 128 57.25 128 128s-57.25 128-128 128s-128-57.25-128-128S169.3 64 240 64zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448zM198.9 278.4C191.3 259.4 186.3 235 184.8 208H145.6C150.9 239.3 171.3 265.1 198.9 278.4z',
			),
		),
		'label'             => __( 'Book Atlas', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'book-bible'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-31.1c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM144 144c0-8.875 7.125-15.1 16-15.1L208 128V80c0-8.875 7.125-15.1 16-15.1l32 .0009c8.875 0 16 7.12 16 15.1V128L320 128c8.875 0 16 7.121 16 15.1v32c0 8.875-7.125 16-16 16L272 192v112c0 8.875-7.125 16-16 16l-32-.0002c-8.875 0-16-7.127-16-16V192L160 192c-8.875 0-16-7.127-16-16V144zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z',
			),
		),
		'label'             => __( 'Book Bible', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'book-bookmark'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 336v-288C448 21.49 426.5 0 400 0H352v191.1c0 13.41-15.52 20.88-25.1 12.49L272 160L217.1 204.5C207.5 212.8 192 205.4 192 191.1V0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-32c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z',
			),
		),
		'label'             => __( 'Book Bookmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'book-journal-whills'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-31.1c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM133.1 160.4l21.25 21.25c3.125 3.125 8.125 3.125 11.25 0s3.125-8.125 0-11.25l-26.38-26.5c10-20.75 26.25-38 46.38-49.25c-17 27.12-11 62.75 14 82.63C185.5 192 180.5 213.1 186.5 232.5c5.875 19.38 22 34.13 41.88 38.25l1.375-32.75L219.4 245.1C218.8 245.5 217.9 245.8 217.1 245.8c-1 0-2-.375-2.75-1c-.75-.875-1.25-1.875-1.25-3c0-.625 .25-1.375 .5-2L222.3 225.5l-18-3.75c-1.75-.375-3.125-2.125-3.125-4s1.375-3.5 3.125-3.875l18-3.75L213.6 195.9C212.8 194.3 213 192.1 214.4 190.9s3.5-1.5 5-.375l12 8.125L236 87.88C236.1 85.63 237.9 84 240 84s3.875 1.625 4 3.875l4.75 112.3l14.12-9.625c.625-.5 1.5-.625 2.25-.75c1.5 0 2.75 .75 3.5 2s.625 2.875-.125 4.125L260 210.1l17.1 3.75c1.75 .375 3.125 2 3.125 3.875s-1.375 3.625-3.125 4L260 225.4l8.5 14.38c.75 1.25 .875 2.75 .125 4s-2 2-3.5 2c-.75 0-1.625-.25-2.25-.625L250.3 236.5l1.375 34.25c19.88-4.125 36-18.88 41.88-38.25c6-19.38 1-40.63-13.12-55.25c25-19.88 31-55.5 14-82.63c20.25 11.25 36.38 28.5 46.38 49.25l-26.38 26.5c-3.125 3.125-3.125 8.125 0 11.25s8.125 3.125 11.25 0l21.25-21.25C349.9 170.5 352 181 352 192c0 .5-.125 1-.125 1.5l-37.13 32.5C313.1 227.6 312.1 229.8 312 232c.125 1.875 .7496 3.75 1.1 5.25C315.6 238.9 317.8 239.9 320 240c1.1 0 3.875-.7499 5.25-1.1l23.62-20.63C337.3 267 293.1 304 240 304S142.8 267 131.1 217.4l23.62 20.63C156.3 239.3 158.1 239.9 160 240c3.375 0 6.25-2.125 7.5-5.125c1.125-3.125 .25-6.75-2.25-8.875L128.1 193.5C128.1 193 128 192.5 128 192C128 181 130.1 170.5 133.1 160.4zM384 448H96c-17.67 0-32-14.33-32-32s14.33-32 32-32h288V448z',
			),
		),
		'label'             => __( 'Book Journal Whills', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'book-medical'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-31.1c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM128 166c0-8.838 7.164-16 16-16h53.1V96c0-8.838 7.164-16 16-16h52c8.836 0 16 7.162 16 16v54H336c8.836 0 16 7.162 16 16v52c0 8.836-7.164 16-16 16h-54V288c0 8.836-7.164 16-16 16h-52c-8.836 0-16-7.164-16-16V234H144c-8.836 0-16-7.164-16-16V166zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448z',
			),
		),
		'label'             => __( 'Book Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'book-open'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M144.3 32.04C106.9 31.29 63.7 41.44 18.6 61.29c-11.42 5.026-18.6 16.67-18.6 29.15l0 357.6c0 11.55 11.99 19.55 22.45 14.65c126.3-59.14 219.8 11 223.8 14.01C249.1 478.9 252.5 480 256 480c12.4 0 16-11.38 16-15.98V80.04c0-5.203-2.531-10.08-6.781-13.08C263.3 65.58 216.7 33.35 144.3 32.04zM557.4 61.29c-45.11-19.79-88.48-29.61-125.7-29.26c-72.44 1.312-118.1 33.55-120.9 34.92C306.5 69.96 304 74.83 304 80.04v383.1C304 468.4 307.5 480 320 480c3.484 0 6.938-1.125 9.781-3.328c3.925-3.018 97.44-73.16 223.8-14c10.46 4.896 22.45-3.105 22.45-14.65l.0001-357.6C575.1 77.97 568.8 66.31 557.4 61.29z',
			),
		),
		'label'             => __( 'Book Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'book-open-reader'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 219.2v212.5c0 14.25 11.62 26.25 26.5 27C75.32 461.2 180.2 471.3 240 511.9V245.2C181.4 205.5 79.99 194.8 29.84 192C13.59 191.1 0 203.6 0 219.2zM482.2 192c-50.09 2.848-151.3 13.47-209.1 53.09C272.1 245.2 272 245.3 272 245.5v266.5c60.04-40.39 164.7-50.76 213.5-53.28C500.4 457.9 512 445.9 512 431.7V219.2C512 203.6 498.4 191.1 482.2 192zM352 96c0-53-43-96-96-96S160 43 160 96s43 96 96 96S352 149 352 96z',
			),
		),
		'label'             => __( 'Book Open Reader', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'book-quran'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 0H48C21.49 0 0 21.49 0 48v288c0 14.16 6.246 26.76 16 35.54v81.36C6.607 458.5 0 468.3 0 479.1C0 497.7 14.33 512 31.1 512h320c53.02 0 96-42.98 96-96V96C448 42.98 405 0 352 0zM324.8 170.4c3.006 .4297 4.295 4.154 2.004 6.301L306.2 196.9l4.869 28.5c.4297 2.434-1.576 4.439-3.725 4.439c-.5723 0-1.145-.1445-1.719-.4297L280 215.9l-25.63 13.46c-.5723 .2852-1.145 .4297-1.719 .4297c-2.146 0-4.152-2.006-3.723-4.439l4.869-28.5l-20.62-20.19c-2.291-2.146-1.002-5.871 2.006-6.301l28.64-4.152l12.89-25.92C277.3 138.9 278.7 138.2 280 138.2s2.721 .7168 3.295 2.148l12.89 25.92L324.8 170.4zM216 72c23.66 0 46.61 6.953 66.36 20.09c3.219 2.141 4.438 6.281 2.906 9.844c-1.547 3.547-5.453 5.562-9.172 4.594C268.8 104.8 262.2 104 256 104C207.5 104 168 143.5 168 192S207.5 280 256 280c6.234 0 12.81-.8281 20.09-2.531c3.719-.9687 7.625 1.047 9.172 4.594c1.531 3.562 .3125 7.703-2.906 9.844C262.6 305 239.7 312 216 312C149.8 312 96 258.2 96 192S149.8 72 216 72zM352 448H64v-64h288c17.67 0 32 14.33 32 32C384 433.7 369.7 448 352 448z',
			),
		),
		'label'             => __( 'Book Quran', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'book-skull'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M272 144C280.8 144 288 136.8 288 128s-7.25-16-16-16S256 119.3 256 128S263.3 144 272 144zM448 336v-288C448 21.49 426.5 0 400 0H96C42.98 0 0 42.98 0 96v320c0 53.02 42.98 96 96 96h320c17.67 0 32-14.33 32-31.1c0-11.72-6.607-21.52-16-27.1v-81.36C441.8 362.8 448 350.2 448 336zM240 64C284.3 64 320 92.75 320 128c0 20.88-12.75 39.25-32 50.88V192c0 8.75-7.25 16-16 16h-64C199.3 208 192 200.8 192 192V178.9C172.8 167.3 160 148.9 160 128C160 92.75 195.8 64 240 64zM121.7 238.7c-8.125-3.484-11.91-12.89-8.438-21.02c3.469-8.094 12.94-11.86 21-8.422L240 254.5l105.7-45.21c8.031-3.438 17.53 .3281 21 8.422c3.469 8.125-.3125 17.53-8.438 21.02l-77.58 33.18l77.58 33.18c8.125 3.484 11.91 12.89 8.438 21.02C364.1 332.2 358.2 335.8 352 335.8c-2.094 0-4.25-.4062-6.281-1.281L240 289.3l-105.7 45.21C132.3 335.4 130.1 335.8 128 335.8c-6.219 0-12.12-3.641-14.72-9.703C109.8 317.1 113.6 308.6 121.7 305.1l77.58-33.18L121.7 238.7zM384 448H96c-17.67 0-32-14.33-32-32c0-17.67 14.33-32 32-32h288V448zM208 144C216.8 144 224 136.8 224 128S216.8 112 208 112S192 119.3 192 128S199.3 144 208 144z',
			),
		),
		'label'             => __( 'Book Skull', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bookmark'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 48V512l-192-112L0 512V48C0 21.5 21.5 0 48 0h288C362.5 0 384 21.5 384 48z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0h-288C21.49 0 0 21.49 0 48v431.9c0 24.7 26.79 40.08 48.12 27.64L192 423.6l143.9 83.93C357.2 519.1 384 504.6 384 479.9V48C384 21.49 362.5 0 336 0zM336 452L192 368l-144 84V54C48 50.63 50.63 48 53.1 48h276C333.4 48 336 50.63 336 54V452z',
			),
		),
		'label'             => __( 'Bookmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'lifestyle-and-hobbies', 'travel' ),
	),
	'bootstrap'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M333.5 201.4c0-22.1-15.6-34.3-43-34.3h-50.4v71.2h42.5C315.4 238.2 333.5 225 333.5 201.4zM517 188.6c-9.5-30.9-10.9-68.8-9.8-98.1c1.1-30.5-22.7-58.5-54.7-58.5H123.7c-32.1 0-55.8 28.1-54.7 58.5c1 29.3-.3 67.2-9.8 98.1c-9.6 31-25.7 50.6-52.2 53.1v28.5c26.4 2.5 42.6 22.1 52.2 53.1c9.5 30.9 10.9 68.8 9.8 98.1c-1.1 30.5 22.7 58.5 54.7 58.5h328.7c32.1 0 55.8-28.1 54.7-58.5c-1-29.3 .3-67.2 9.8-98.1c9.6-31 25.7-50.6 52.1-53.1v-28.5C542.7 239.2 526.5 219.6 517 188.6zM300.2 375.1h-97.9V136.8h97.4c43.3 0 71.7 23.4 71.7 59.4c0 25.3-19.1 47.9-43.5 51.8v1.3c33.2 3.6 55.5 26.6 55.5 58.3C383.4 349.7 352.1 375.1 300.2 375.1zM290.2 266.4h-50.1v78.4h52.3c34.2 0 52.3-13.7 52.3-39.5C344.7 279.6 326.1 266.4 290.2 266.4z',
			),
		),
		'label'             => __( 'Bootstrap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'border-all'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32C419.3 32 448 60.65 448 96V416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H384zM384 96H256V224H384V96zM384 288H256V416H384V288zM192 224V96H64V224H192zM64 416H192V288H64V416z',
			),
		),
		'label'             => __( 'Border All', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'border-none'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M64 448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416C49.67 416 64 430.3 64 448zM128 480C110.3 480 96 465.7 96 448C96 430.3 110.3 416 128 416C145.7 416 160 430.3 160 448C160 465.7 145.7 480 128 480zM128 96C110.3 96 96 81.67 96 64C96 46.33 110.3 32 128 32C145.7 32 160 46.33 160 64C160 81.67 145.7 96 128 96zM160 256C160 273.7 145.7 288 128 288C110.3 288 96 273.7 96 256C96 238.3 110.3 224 128 224C145.7 224 160 238.3 160 256zM320 480C302.3 480 288 465.7 288 448C288 430.3 302.3 416 320 416C337.7 416 352 430.3 352 448C352 465.7 337.7 480 320 480zM352 64C352 81.67 337.7 96 320 96C302.3 96 288 81.67 288 64C288 46.33 302.3 32 320 32C337.7 32 352 46.33 352 64zM320 288C302.3 288 288 273.7 288 256C288 238.3 302.3 224 320 224C337.7 224 352 238.3 352 256C352 273.7 337.7 288 320 288zM256 448C256 465.7 241.7 480 224 480C206.3 480 192 465.7 192 448C192 430.3 206.3 416 224 416C241.7 416 256 430.3 256 448zM224 96C206.3 96 192 81.67 192 64C192 46.33 206.3 32 224 32C241.7 32 256 46.33 256 64C256 81.67 241.7 96 224 96zM256 256C256 273.7 241.7 288 224 288C206.3 288 192 273.7 192 256C192 238.3 206.3 224 224 224C241.7 224 256 238.3 256 256zM416 480C398.3 480 384 465.7 384 448C384 430.3 398.3 416 416 416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480zM416 96C398.3 96 384 81.67 384 64C384 46.33 398.3 32 416 32C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96zM64 64C64 81.67 49.67 96 32 96C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32C49.67 32 64 46.33 64 64zM416 288C398.3 288 384 273.7 384 256C384 238.3 398.3 224 416 224C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288zM64 256C64 273.7 49.67 288 32 288C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224C49.67 224 64 238.3 64 256zM224 384C206.3 384 192 369.7 192 352C192 334.3 206.3 320 224 320C241.7 320 256 334.3 256 352C256 369.7 241.7 384 224 384zM448 352C448 369.7 433.7 384 416 384C398.3 384 384 369.7 384 352C384 334.3 398.3 320 416 320C433.7 320 448 334.3 448 352zM32 384C14.33 384 0 369.7 0 352C0 334.3 14.33 320 32 320C49.67 320 64 334.3 64 352C64 369.7 49.67 384 32 384zM448 160C448 177.7 433.7 192 416 192C398.3 192 384 177.7 384 160C384 142.3 398.3 128 416 128C433.7 128 448 142.3 448 160zM32 192C14.33 192 0 177.7 0 160C0 142.3 14.33 128 32 128C49.67 128 64 142.3 64 160C64 177.7 49.67 192 32 192zM256 160C256 177.7 241.7 192 224 192C206.3 192 192 177.7 192 160C192 142.3 206.3 128 224 128C241.7 128 256 142.3 256 160z',
			),
		),
		'label'             => __( 'Border None', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'border-top-left'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 112C0 67.82 35.82 32 80 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H80C71.16 96 64 103.2 64 112V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448V112zM128 480C110.3 480 96 465.7 96 448C96 430.3 110.3 416 128 416C145.7 416 160 430.3 160 448C160 465.7 145.7 480 128 480zM320 480C302.3 480 288 465.7 288 448C288 430.3 302.3 416 320 416C337.7 416 352 430.3 352 448C352 465.7 337.7 480 320 480zM256 448C256 465.7 241.7 480 224 480C206.3 480 192 465.7 192 448C192 430.3 206.3 416 224 416C241.7 416 256 430.3 256 448zM416 480C398.3 480 384 465.7 384 448C384 430.3 398.3 416 416 416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480zM416 288C398.3 288 384 273.7 384 256C384 238.3 398.3 224 416 224C433.7 224 448 238.3 448 256C448 273.7 433.7 288 416 288zM448 352C448 369.7 433.7 384 416 384C398.3 384 384 369.7 384 352C384 334.3 398.3 320 416 320C433.7 320 448 334.3 448 352zM416 192C398.3 192 384 177.7 384 160C384 142.3 398.3 128 416 128C433.7 128 448 142.3 448 160C448 177.7 433.7 192 416 192z',
			),
		),
		'label'             => __( 'Border Top Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'bore-hole'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C273.7 0 288 14.33 288 32V296.6C307.1 307.6 320 328.3 320 352C320 387.3 291.3 416 256 416C220.7 416 192 387.3 192 352C192 328.3 204.9 307.6 224 296.6V32C224 14.33 238.3 0 256 0zM160 128V352C160 405 202.1 448 256 448C309 448 352 405 352 352V128H464C490.5 128 512 149.5 512 176V464C512 490.5 490.5 512 464 512H48C21.49 512 0 490.5 0 464V176C0 149.5 21.49 128 48 128H160z',
			),
		),
		'label'             => __( 'Bore Hole', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bots'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M86.34 197.8a51.77 51.77 0 0 0 -41.57 20.06V156a8.19 8.19 0 0 0 -8.19-8.19H8.19A8.19 8.19 0 0 0 0 156V333.6a8.189 8.189 0 0 0 8.19 8.189H36.58a8.189 8.189 0 0 0 8.19-8.189v-8.088c11.63 13.37 25.87 19.77 41.57 19.77 34.6 0 61.92-26.16 61.92-73.84C148.3 225.5 121.2 197.8 86.34 197.8zM71.52 305.7c-9.593 0-21.22-4.942-26.75-12.5V250.2c5.528-7.558 17.15-12.79 26.75-12.79 17.73 0 31.11 13.08 31.11 34.01C102.6 292.6 89.25 305.7 71.52 305.7zm156.4-59.03a17.4 17.4 0 1 0 17.4 17.4A17.4 17.4 0 0 0 227.9 246.7zM273.1 156.7V112a13.31 13.31 0 1 0 -10.24 0V156.7a107.5 107.5 0 1 0 10.24 0zm85.99 107.4c0 30.53-40.79 55.28-91.11 55.28s-91.11-24.75-91.11-55.28 40.79-55.28 91.11-55.28S359.9 233.5 359.9 264.1zm-50.16 17.4a17.4 17.4 0 1 0 -17.4-17.4h0A17.4 17.4 0 0 0 309.8 281.5zM580.7 250.5c-14.83-2.617-22.39-3.78-22.39-9.885 0-5.523 7.268-9.884 17.74-9.884a65.56 65.56 0 0 1 34.48 10.1 8.171 8.171 0 0 0 11.29-2.468c.07-.11 .138-.221 .2-.333l8.611-14.89a8.2 8.2 0 0 0 -2.867-11.12 99.86 99.86 0 0 0 -52.01-14.14c-38.96 0-60.18 21.51-60.18 46.22 0 36.34 33.72 41.86 57.56 45.64 13.37 2.326 24.13 4.361 24.13 11.05 0 6.4-5.523 10.76-18.9 10.76-13.55 0-30.99-6.222-42.62-13.58a8.206 8.206 0 0 0 -11.34 2.491c-.035 .054-.069 .108-.1 .164l-10.2 16.89a8.222 8.222 0 0 0 2.491 11.07c15.22 10.3 37.66 16.69 59.44 16.69 40.41 0 63.96-19.77 63.96-46.51C640 260.6 604.5 254.8 580.7 250.5zm-95.93 60.79a8.211 8.211 0 0 0 -9.521-5.938 23.17 23.17 0 0 1 -4.155 .387c-7.849 0-12.5-6.106-12.5-14.24V240.3h20.35a8.143 8.143 0 0 0 8.141-8.143V209.5a8.143 8.143 0 0 0 -8.141-8.143H458.6V171.1a8.143 8.143 0 0 0 -8.143-8.143H422.3a8.143 8.143 0 0 0 -8.143 8.143h0v30.23H399a8.143 8.143 0 0 0 -8.143 8.143h0v22.67A8.143 8.143 0 0 0 399 240.3h15.11v63.67c0 27.04 15.41 41.28 43.9 41.28 12.18 0 21.38-2.2 27.6-5.446a8.161 8.161 0 0 0 4.145-9.278z',
			),
		),
		'label'             => __( 'Bots', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bottle-droplet'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M224 0C237.3-.0003 248 10.74 248 23.1C248 37.25 237.3 47.1 224 48L216 48V140.9C258.6 161.6 288 205.4 288 256V448C288 483.3 259.3 512 224 512H96C60.65 512 32 483.3 32 448V256C32 205.4 61.37 161.6 104 140.9V48L96 48C82.75 48 72 37.26 72 24C71.1 10.75 82.74 .0045 95.1 .0042L224 0zM160 384C186.5 384 208 368 208 336C208 304 160 256 160 256C160 256 112 304 112 336C112 362.5 133.5 384 160 384z',
			),
		),
		'label'             => __( 'Bottle Droplet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bottle-water'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M200 0C213.3 0 224 10.75 224 24V64H96V24C96 10.75 106.7 0 120 0H200zM32 151.7C32 136.1 41.04 121.9 55.19 115.3L79.6 103.8C90.58 98.67 102.6 96 114.7 96H205.3C217.4 96 229.4 98.67 240.4 103.8L264.8 115.3C278.1 121.9 288 136.1 288 151.7C288 166.1 280.5 178.7 269.1 185.8C280.6 194.6 288 208.4 288 223.1C288 240.7 279.5 255.4 266.5 263.1C279.5 272.6 288 287.3 288 303.1C288 320.7 279.5 335.4 266.5 344C279.5 352.6 288 367.3 288 384C288 400.7 279.5 415.4 266.5 424C279.5 432.6 288 447.3 288 464C288 490.5 266.5 512 240 512H80C53.49 512 32 490.5 32 464C32 447.3 40.52 432.6 53.46 424C40.52 415.4 32 400.7 32 384C32 367.3 40.52 352.6 53.46 344C40.52 335.4 32 320.7 32 303.1C32 287.3 40.52 272.6 53.46 263.1C40.52 255.4 32 240.7 32 223.1C32 208.4 39.4 194.6 50.87 185.8C39.53 178.7 32 166.1 32 151.7L32 151.7zM112 256H208C216.8 256 224 248.8 224 240C224 231.2 216.8 224 208 224H112C103.2 224 96 231.2 96 240C96 248.8 103.2 256 112 256zM112 352C103.2 352 96 359.2 96 368C96 376.8 103.2 384 112 384H208C216.8 384 224 376.8 224 368C224 359.2 216.8 352 208 352H112z',
			),
		),
		'label'             => __( 'Bottle Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bowl-food'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 128C96.53 128 97.07 128 97.6 128C105 91.49 137.3 64 176 64C190.1 64 204.1 68.1 216.9 75.25C230.2 49.55 257.1 32 288 32C318.9 32 345.8 49.56 359.1 75.25C371 68.1 385 64 400 64C438.7 64 470.1 91.49 478.4 128C478.9 128 479.5 128 480 128C515.3 128 544 156.7 544 192C544 203.7 540.9 214.6 535.4 224H40.56C35.12 214.6 32 203.7 32 192C32 156.7 60.65 128 96 128H96zM16 283.4C16 268.3 28.28 256 43.43 256H532.6C547.7 256 560 268.3 560 283.4C560 356.3 512.6 418.2 446.9 439.8C447.6 442.4 448 445.2 448 448C448 465.7 433.7 480 416 480H160C142.3 480 128 465.7 128 448C128 445.2 128.4 442.4 129.1 439.8C63.4 418.2 16 356.3 16 283.4H16z',
			),
		),
		'label'             => __( 'Bowl Food', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bowl-rice'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 72C208 58.75 218.7 48 232 48H248C261.3 48 272 58.75 272 72C272 85.25 261.3 96 248 96H232C218.7 96 208 85.25 208 72zM208 152C208 138.7 218.7 128 232 128H248C261.3 128 272 138.7 272 152C272 165.3 261.3 176 248 176H232C218.7 176 208 165.3 208 152zM16 232C16 218.7 26.75 208 40 208H56C69.25 208 80 218.7 80 232C80 245.3 69.25 256 56 256H40C26.75 256 16 245.3 16 232zM532.6 288C547.7 288 560 300.3 560 315.4C560 388.3 512.6 450.2 446.9 471.8C447.6 474.4 448 477.2 448 480C448 497.7 433.7 512 416 512H160C142.3 512 128 497.7 128 480C128 477.2 128.4 474.4 129.1 471.8C63.4 450.2 16 388.3 16 315.4C16 300.3 28.28 288 43.43 288H532.6zM248 208C261.3 208 272 218.7 272 232C272 245.3 261.3 256 248 256H232C218.7 256 208 245.3 208 232C208 218.7 218.7 208 232 208H248zM152 208C165.3 208 176 218.7 176 232C176 245.3 165.3 256 152 256H136C122.7 256 112 245.3 112 232C112 218.7 122.7 208 136 208H152zM112 152C112 138.7 122.7 128 136 128H152C165.3 128 176 138.7 176 152C176 165.3 165.3 176 152 176H136C122.7 176 112 165.3 112 152zM344 208C357.3 208 368 218.7 368 232C368 245.3 357.3 256 344 256H328C314.7 256 304 245.3 304 232C304 218.7 314.7 208 328 208H344zM304 152C304 138.7 314.7 128 328 128H344C357.3 128 368 138.7 368 152C368 165.3 357.3 176 344 176H328C314.7 176 304 165.3 304 152zM440 208C453.3 208 464 218.7 464 232C464 245.3 453.3 256 440 256H424C410.7 256 400 245.3 400 232C400 218.7 410.7 208 424 208H440zM400 152C400 138.7 410.7 128 424 128H440C453.3 128 464 138.7 464 152C464 165.3 453.3 176 440 176H424C410.7 176 400 165.3 400 152zM536 208C549.3 208 560 218.7 560 232C560 245.3 549.3 256 536 256H520C506.7 256 496 245.3 496 232C496 218.7 506.7 208 520 208H536zM344 48C357.3 48 368 58.75 368 72C368 85.25 357.3 96 344 96H328C314.7 96 304 85.25 304 72C304 58.75 314.7 48 328 48H344z',
			),
		),
		'label'             => __( 'Bowl Rice', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bowling-ball'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM144 208c-17.7 0-32-14.25-32-32s14.3-32 32-32s32 14.25 32 32S161.7 208 144 208zM240 80c17.66 0 31.95 14.25 31.95 32s-14.29 32-31.95 32s-32.05-14.25-32.05-32S222.4 80 240 80zM240 240c-17.7 0-32-14.25-32-32s14.3-32 32-32s32 14.25 32 32S257.7 240 240 240z',
			),
		),
		'label'             => __( 'Bowling Ball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'box'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M50.73 58.53C58.86 42.27 75.48 32 93.67 32H208V160H0L50.73 58.53zM240 160V32H354.3C372.5 32 389.1 42.27 397.3 58.53L448 160H240zM448 416C448 451.3 419.3 480 384 480H64C28.65 480 0 451.3 0 416V192H448V416z',
			),
		),
		'label'             => __( 'Box', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'box-archive'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 432C32 458.5 53.49 480 80 480h352c26.51 0 48-21.49 48-48V160H32V432zM160 236C160 229.4 165.4 224 172 224h168C346.6 224 352 229.4 352 236v8C352 250.6 346.6 256 340 256h-168C165.4 256 160 250.6 160 244V236zM480 32H32C14.31 32 0 46.31 0 64v48C0 120.8 7.188 128 16 128h480C504.8 128 512 120.8 512 112V64C512 46.31 497.7 32 480 32z',
			),
		),
		'label'             => __( 'Box Archive', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'science-and-technology', 'travel' ),
	),
	'box-open'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M75.23 33.4L320 63.1L564.8 33.4C571.5 32.56 578 36.06 581.1 42.12L622.8 125.5C631.7 143.4 622.2 165.1 602.9 170.6L439.6 217.3C425.7 221.2 410.8 215.4 403.4 202.1L320 63.1L236.6 202.1C229.2 215.4 214.3 221.2 200.4 217.3L37.07 170.6C17.81 165.1 8.283 143.4 17.24 125.5L58.94 42.12C61.97 36.06 68.5 32.56 75.23 33.4H75.23zM321.1 128L375.9 219.4C390.8 244.2 420.5 255.1 448.4 248L576 211.6V378.5C576 400.5 561 419.7 539.6 425.1L335.5 476.1C325.3 478.7 314.7 478.7 304.5 476.1L100.4 425.1C78.99 419.7 64 400.5 64 378.5V211.6L191.6 248C219.5 255.1 249.2 244.2 264.1 219.4L318.9 128H321.1z',
			),
		),
		'label'             => __( 'Box Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'box-tissue'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M384 288l64-192h-109.4C308.4 96 281.6 76.66 272 48C262.4 19.33 235.6 0 205.4 0H64l64 288H384zM0 480c0 17.67 14.33 32 32 32h448c17.67 0 32-14.33 32-32v-64H0V480zM480 224h-40.94l-21.33 64H432C440.8 288 448 295.2 448 304S440.8 320 432 320h-352C71.16 320 64 312.8 64 304S71.16 288 80 288h15.22l-14.22-64H32C14.33 224 0 238.3 0 256v128h512V256C512 238.3 497.7 224 480 224z',
			),
		),
		'label'             => __( 'Box Tissue', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'boxes-packing'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M256 48C256 21.49 277.5 0 304 0H592C618.5 0 640 21.49 640 48V464C640 490.5 618.5 512 592 512H381.3C383 506.1 384 501.6 384 496V253.3C402.6 246.7 416 228.9 416 208V176C416 149.5 394.5 128 368 128H256V48zM571.3 347.3C577.6 341.1 577.6 330.9 571.3 324.7L507.3 260.7C501.1 254.4 490.9 254.4 484.7 260.7L420.7 324.7C414.4 330.9 414.4 341.1 420.7 347.3C426.9 353.6 437.1 353.6 443.3 347.3L480 310.6V432C480 440.8 487.2 448 496 448C504.8 448 512 440.8 512 432V310.6L548.7 347.3C554.9 353.6 565.1 353.6 571.3 347.3H571.3zM0 176C0 167.2 7.164 160 16 160H368C376.8 160 384 167.2 384 176V208C384 216.8 376.8 224 368 224H16C7.164 224 0 216.8 0 208V176zM352 480C352 497.7 337.7 512 320 512H64C46.33 512 32 497.7 32 480V256H352V480zM144 320C135.2 320 128 327.2 128 336C128 344.8 135.2 352 144 352H240C248.8 352 256 344.8 256 336C256 327.2 248.8 320 240 320H144z',
			),
		),
		'label'             => __( 'Boxes Packing', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'boxes-stacked'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M160 48C160 21.49 181.5 0 208 0H256V80C256 88.84 263.2 96 272 96H304C312.8 96 320 88.84 320 80V0H368C394.5 0 416 21.49 416 48V176C416 202.5 394.5 224 368 224H208C181.5 224 160 202.5 160 176V48zM96 288V368C96 376.8 103.2 384 112 384H144C152.8 384 160 376.8 160 368V288H208C234.5 288 256 309.5 256 336V464C256 490.5 234.5 512 208 512H48C21.49 512 0 490.5 0 464V336C0 309.5 21.49 288 48 288H96zM416 288V368C416 376.8 423.2 384 432 384H464C472.8 384 480 376.8 480 368V288H528C554.5 288 576 309.5 576 336V464C576 490.5 554.5 512 528 512H368C341.5 512 320 490.5 320 464V336C320 309.5 341.5 288 368 288H416z',
			),
		),
		'label'             => __( 'Boxes Stacked', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'braille'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M128 96C128 131.3 99.35 160 64 160C28.65 160 0 131.3 0 96C0 60.65 28.65 32 64 32C99.35 32 128 60.65 128 96zM160 256C160 220.7 188.7 192 224 192C259.3 192 288 220.7 288 256C288 291.3 259.3 320 224 320C188.7 320 160 291.3 160 256zM224 272C232.8 272 240 264.8 240 256C240 247.2 232.8 240 224 240C215.2 240 208 247.2 208 256C208 264.8 215.2 272 224 272zM128 416C128 451.3 99.35 480 64 480C28.65 480 0 451.3 0 416C0 380.7 28.65 352 64 352C99.35 352 128 380.7 128 416zM64 400C55.16 400 48 407.2 48 416C48 424.8 55.16 432 64 432C72.84 432 80 424.8 80 416C80 407.2 72.84 400 64 400zM288 416C288 451.3 259.3 480 224 480C188.7 480 160 451.3 160 416C160 380.7 188.7 352 224 352C259.3 352 288 380.7 288 416zM224 400C215.2 400 208 407.2 208 416C208 424.8 215.2 432 224 432C232.8 432 240 424.8 240 416C240 407.2 232.8 400 224 400zM0 256C0 220.7 28.65 192 64 192C99.35 192 128 220.7 128 256C128 291.3 99.35 320 64 320C28.65 320 0 291.3 0 256zM160 96C160 60.65 188.7 32 224 32C259.3 32 288 60.65 288 96C288 131.3 259.3 160 224 160C188.7 160 160 131.3 160 96zM480 96C480 131.3 451.3 160 416 160C380.7 160 352 131.3 352 96C352 60.65 380.7 32 416 32C451.3 32 480 60.65 480 96zM640 96C640 131.3 611.3 160 576 160C540.7 160 512 131.3 512 96C512 60.65 540.7 32 576 32C611.3 32 640 60.65 640 96zM576 80C567.2 80 560 87.16 560 96C560 104.8 567.2 112 576 112C584.8 112 592 104.8 592 96C592 87.16 584.8 80 576 80zM512 256C512 220.7 540.7 192 576 192C611.3 192 640 220.7 640 256C640 291.3 611.3 320 576 320C540.7 320 512 291.3 512 256zM576 272C584.8 272 592 264.8 592 256C592 247.2 584.8 240 576 240C567.2 240 560 247.2 560 256C560 264.8 567.2 272 576 272zM640 416C640 451.3 611.3 480 576 480C540.7 480 512 451.3 512 416C512 380.7 540.7 352 576 352C611.3 352 640 380.7 640 416zM576 400C567.2 400 560 407.2 560 416C560 424.8 567.2 432 576 432C584.8 432 592 424.8 592 416C592 407.2 584.8 400 576 400zM352 256C352 220.7 380.7 192 416 192C451.3 192 480 220.7 480 256C480 291.3 451.3 320 416 320C380.7 320 352 291.3 352 256zM416 272C424.8 272 432 264.8 432 256C432 247.2 424.8 240 416 240C407.2 240 400 247.2 400 256C400 264.8 407.2 272 416 272zM480 416C480 451.3 451.3 480 416 480C380.7 480 352 451.3 352 416C352 380.7 380.7 352 416 352C451.3 352 480 380.7 480 416zM416 400C407.2 400 400 407.2 400 416C400 424.8 407.2 432 416 432C424.8 432 432 424.8 432 416C432 407.2 424.8 400 416 400z',
			),
		),
		'label'             => __( 'Braille', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'brain'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M184 0C214.9 0 240 25.07 240 56V456C240 486.9 214.9 512 184 512C155.1 512 131.3 490.1 128.3 461.9C123.1 463.3 117.6 464 112 464C76.65 464 48 435.3 48 400C48 392.6 49.27 385.4 51.59 378.8C21.43 367.4 0 338.2 0 304C0 272.1 18.71 244.5 45.77 231.7C37.15 220.8 32 206.1 32 192C32 161.3 53.59 135.7 82.41 129.4C80.84 123.9 80 118 80 112C80 82.06 100.6 56.92 128.3 49.93C131.3 21.86 155.1 0 184 0zM383.7 49.93C411.4 56.92 432 82.06 432 112C432 118 431.2 123.9 429.6 129.4C458.4 135.7 480 161.3 480 192C480 206.1 474.9 220.8 466.2 231.7C493.3 244.5 512 272.1 512 304C512 338.2 490.6 367.4 460.4 378.8C462.7 385.4 464 392.6 464 400C464 435.3 435.3 464 400 464C394.4 464 388.9 463.3 383.7 461.9C380.7 490.1 356.9 512 328 512C297.1 512 272 486.9 272 456V56C272 25.07 297.1 0 328 0C356.9 0 380.7 21.86 383.7 49.93z',
			),
		),
		'label'             => __( 'Brain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'brazilian-real-sign'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M400 .0003C417.7 .0003 432 14.33 432 32V50.22C444.5 52.52 456.7 56.57 468.2 62.3L478.3 67.38C494.1 75.28 500.5 94.5 492.6 110.3C484.7 126.1 465.5 132.5 449.7 124.6L439.5 119.5C429.6 114.6 418.7 112 407.6 112H405.9C376.1 112 352 136.1 352 165.9C352 187.9 365.4 207.7 385.9 215.9L437.9 236.7C482.7 254.6 512 297.9 512 346.1V349.5C512 400.7 478.4 444.1 432 458.7V480C432 497.7 417.7 512 400 512C382.3 512 368 497.7 368 480V460.6C352.1 457.1 338.6 450.9 325.7 442.3L302.2 426.6C287.5 416.8 283.6 396.1 293.4 382.2C303.2 367.5 323 363.6 337.8 373.4L361.2 389C371.9 396.2 384.6 400 397.5 400C425.4 400 448 377.4 448 349.5V346.1C448 324.1 434.6 304.3 414.1 296.1L362.1 275.3C317.3 257.4 288 214.1 288 165.9C288 114 321.5 69.99 368 54.21V32C368 14.33 382.3 0 400 0L400 .0003zM.0003 64C.0003 46.33 14.33 32 32 32H112C191.5 32 256 96.47 256 176C256 234.8 220.8 285.3 170.3 307.7L221.7 436.1C228.3 452.5 220.3 471.1 203.9 477.7C187.5 484.3 168.9 476.3 162.3 459.9L106.3 320H64V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448L.0003 64zM64 256H112C156.2 256 192 220.2 192 176C192 131.8 156.2 96 112 96H64V256z',
			),
		),
		'label'             => __( 'Brazilian Real Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bread-slice'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 176.1C512 203 490.4 224 455.1 224H448v224c0 17.67-14.33 32-32 32H96c-17.67 0-32-14.33-32-32V224H56.89C21.56 224 0 203 0 176.1C0 112 96 32 256 32S512 112 512 176.1z',
			),
		),
		'label'             => __( 'Bread Slice', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'bridge'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 32C561.7 32 576 46.33 576 64C576 81.67 561.7 96 544 96H504V160H576V288C522.1 288 480 330.1 480 384V448C480 465.7 465.7 480 448 480H416C398.3 480 384 465.7 384 448V384C384 330.1 341 288 288 288C234.1 288 192 330.1 192 384V448C192 465.7 177.7 480 160 480H128C110.3 480 96 465.7 96 448V384C96 330.1 53.02 288 0 288V160H72V96H32C14.33 96 0 81.67 0 64C0 46.33 14.33 32 32 32H544zM456 96H376V160H456V96zM248 96V160H328V96H248zM200 96H120V160H200V96z',
			),
		),
		'label'             => __( 'Bridge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'bridge-circle-check'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M576 32C593.7 32 608 46.33 608 64C608 81.67 593.7 96 576 96H536V160H608V232.2C577.6 207.1 538.5 192 496 192C426.9 192 367.1 231.8 338.3 289.7C332.4 288.6 326.3 288 320 288C266.1 288 224 330.1 224 384V448C224 465.7 209.7 480 192 480H160C142.3 480 128 465.7 128 448V384C128 330.1 85.02 288 32 288V160H104V96H64C46.33 96 32 81.67 32 64C32 46.33 46.33 32 64 32H576zM488 96H408V160H488V96zM280 96V160H360V96H280zM232 96H152V160H232V96zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'Bridge Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bridge-circle-exclamation'      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M576 32C593.7 32 608 46.33 608 64C608 81.67 593.7 96 576 96H536V160H608V232.2C577.6 207.1 538.5 192 496 192C426.9 192 367.1 231.8 338.3 289.7C332.4 288.6 326.3 288 320 288C266.1 288 224 330.1 224 384V448C224 465.7 209.7 480 192 480H160C142.3 480 128 465.7 128 448V384C128 330.1 85.02 288 32 288V160H104V96H64C46.33 96 32 81.67 32 64C32 46.33 46.33 32 64 32H576zM488 96H408V160H488V96zM280 96V160H360V96H280zM232 96H152V160H232V96zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Bridge Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bridge-circle-xmark'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M576 32C593.7 32 608 46.33 608 64C608 81.67 593.7 96 576 96H536V160H608V232.2C577.6 207.1 538.5 192 496 192C426.9 192 367.1 231.8 338.3 289.7C332.4 288.6 326.3 288 320 288C266.1 288 224 330.1 224 384V448C224 465.7 209.7 480 192 480H160C142.3 480 128 465.7 128 448V384C128 330.1 85.02 288 32 288V160H104V96H64C46.33 96 32 81.67 32 64C32 46.33 46.33 32 64 32H576zM488 96H408V160H488V96zM280 96V160H360V96H280zM232 96H152V160H232V96zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'Bridge Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bridge-lock'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 64C32 46.33 46.33 32 64 32H576C593.7 32 608 46.33 608 64C608 81.67 593.7 96 576 96H536V160H528C466.1 160 416 210.1 416 272V296.6C406.1 302.3 397.8 310.7 392.2 320.7C374.6 300.7 348.8 287.1 320 287.1C266.1 287.1 224 330.1 224 384V448C224 465.7 209.7 480 192 480H160C142.3 480 128 465.7 128 448V384C128 330.1 85.02 287.1 32 287.1V159.1H104V95.1H64C46.33 95.1 32 81.67 32 63.1V64zM408 160H488V96H408V160zM360 160V96H280V160H360zM152 160H232V96H152V160zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'Bridge Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bridge-water'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M.0003 96C.0003 78.33 14.33 64 32 64H544C561.7 64 576 78.33 576 96V131.6C576 147.3 563.3 160 547.6 160C510.2 160 480 190.2 480 227.6V352.5C467.1 352.5 454.2 356.3 443.2 364.1C425.2 376.5 403 384.5 384 384.5L384 384V256C384 202.1 341 160 288 160C234.1 160 192 202.1 192 256V384L191.1 384.5C172.1 384.4 150.8 376.5 132.9 364.1C121.8 356.3 108.9 352.4 96 352.5V227.6C96 190.2 65.75 160 28.44 160C12.74 160 0 147.3 0 131.6L.0003 96zM384 416C410.9 416 439.4 405.2 461.4 389.9L461.5 389.9C473.4 381.4 489.5 382.1 500.7 391.6C515.1 403.5 533.2 412.6 551.3 416.8C568.5 420.8 579.2 438.1 575.2 455.3C571.2 472.5 553.1 483.2 536.7 479.2C512.2 473.4 491.9 462.6 478.5 454.2C449.5 469.7 417 480 384 480C352.1 480 323.4 470.1 303.6 461.1C297.7 458.5 292.5 455.8 288 453.4C283.5 455.8 278.3 458.5 272.4 461.1C252.6 470.1 223.9 480 192 480C158.1 480 126.5 469.7 97.5 454.2C84.13 462.6 63.79 473.4 39.27 479.2C22.06 483.2 4.854 472.5 .8429 455.3C-3.168 438.1 7.533 420.8 24.74 416.8C42.84 412.6 60.96 403.5 75.31 391.6C86.46 382.1 102.6 381.4 114.5 389.9L114.6 389.9C136.7 405.2 165.1 416 192 416C219.5 416 247 405.4 269.5 389.9C280.6 382 295.4 382 306.5 389.9C328.1 405.4 356.5 416 384 416H384z',
			),
		),
		'label'             => __( 'Bridge Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'briefcase'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 336c0 8.844-7.156 16-16 16h-96C199.2 352 192 344.8 192 336V288H0v144C0 457.6 22.41 480 48 480h416c25.59 0 48-22.41 48-48V288h-192V336zM464 96H384V48C384 22.41 361.6 0 336 0h-160C150.4 0 128 22.41 128 48V96H48C22.41 96 0 118.4 0 144V256h512V144C512 118.4 489.6 96 464 96zM336 96h-160V48h160V96z',
			),
		),
		'label'             => __( 'Briefcase', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'briefcase-medical'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 96H384V48C384 21.5 362.5 0 336 0h-160C149.5 0 128 21.5 128 48V96H48C21.5 96 0 117.5 0 144v288C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-288C512 117.5 490.5 96 464 96zM176 48h160V96h-160V48zM368 314c0 8.836-7.164 16-16 16h-54V384c0 8.836-7.164 16-15.1 16h-52c-8.835 0-16-7.164-16-16v-53.1H160c-8.836 0-16-7.164-16-16v-52c0-8.838 7.164-16 16-16h53.1V192c0-8.838 7.165-16 16-16h52c8.836 0 15.1 7.162 15.1 16v54H352c8.836 0 16 7.162 16 16V314z',
			),
		),
		'label'             => __( 'Briefcase Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'broom'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M93.13 257.7C71.25 275.1 53 313.5 38.63 355.1L99 333.1c5.75-2.125 10.62 4.749 6.625 9.499L11 454.7C3.75 486.1 0 510.2 0 510.2s206.6 13.62 266.6-34.12c60-47.87 76.63-150.1 76.63-150.1L256.5 216.7C256.5 216.7 153.1 209.1 93.13 257.7zM633.2 12.34c-10.84-13.91-30.91-16.45-44.91-5.624l-225.7 175.6l-34.99-44.06C322.5 131.9 312.5 133.1 309 140.5L283.8 194.1l86.75 109.2l58.75-12.5c8-1.625 11.38-11.12 6.375-17.5l-33.19-41.79l225.2-175.2C641.6 46.38 644.1 26.27 633.2 12.34z',
			),
		),
		'label'             => __( 'Broom', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'broom-ball'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M495.1 351.1c-44.18 0-79.1 35.72-79.1 79.91c0 44.18 35.82 80.09 79.1 80.09s79.1-35.91 79.1-80.09C575.1 387.7 540.2 351.1 495.1 351.1zM242.7 216.4c-30.16 0-102.9 4.15-149.4 41.34c-22 17.5-40.25 55.75-54.63 97.5l60.38-22.12c.7363-.2715 1.46-.3967 2.151-.3967c3.33 0 5.935 2.885 5.935 6.039c0 1.301-.4426 2.647-1.462 3.856L11 454.7C3.75 487.1 0 510.2 0 510.2S27.07 512 64.45 512c65.94 0 163.1-5.499 202.2-35.89c60-47.75 76.63-150.1 76.63-150.1l-86.75-109.2C256.5 216.7 251.4 216.4 242.7 216.4zM607.1 .0074c-6.863 0-13.78 2.192-19.62 6.719L362.7 182.3l-29.88-37.67c-3.248-4.094-7.892-6.058-12.5-6.058c-5.891 0-11.73 3.204-14.54 9.26L283.8 195.1l86.75 109.1l50.88-10.72c7.883-1.66 12.72-8.546 12.72-15.71c0-3.412-1.096-6.886-3.478-9.89l-28.16-35.5l225.2-175.2c8.102-6.312 12.35-15.75 12.35-25.29C640 14.94 626.3 .0074 607.1 .0074z',
			),
		),
		'label'             => __( 'Broom Ball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'brush'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 0H336C362.5 0 384 21.49 384 48V256H0V48C0 21.49 21.49 0 48 0H64L96 64L128 0H160L192 64L224 0zM384 288V320C384 355.3 355.3 384 320 384H256V448C256 483.3 227.3 512 192 512C156.7 512 128 483.3 128 448V384H64C28.65 384 0 355.3 0 320V288H384zM192 464C200.8 464 208 456.8 208 448C208 439.2 200.8 432 192 432C183.2 432 176 439.2 176 448C176 456.8 183.2 464 192 464z',
			),
		),
		'label'             => __( 'Brush', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'btc'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M310.2 242.6c27.73-14.18 45.38-39.39 41.28-81.3-5.358-57.35-52.46-76.57-114.8-81.93V0h-48.53v77.2c-12.6 0-25.52 .315-38.44 .63V0h-48.53v79.41c-17.84 .539-38.62 .276-97.37 0v51.68c38.31-.678 58.42-3.14 63.02 21.43v217.4c-2.925 19.49-18.52 16.68-53.26 16.07L3.765 443.7c88.48 0 97.37 .315 97.37 .315V512h48.53v-67.06c13.23 .315 26.15 .315 38.44 .315V512h48.53v-68c81.3-4.412 135.6-24.89 142.9-101.5 5.671-61.45-23.32-88.86-69.33-99.89zM150.6 134.6c27.42 0 113.1-8.507 113.1 48.53 0 54.51-85.71 48.21-113.1 48.21v-96.74zm0 251.8V279.8c32.77 0 133.1-9.138 133.1 53.26-.001 60.19-100.4 53.25-133.1 53.25z',
			),
		),
		'label'             => __( 'BTC', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'bucket'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96 160H48V152C48 68.05 116.1 0 200 0H248C331.9 0 400 68.05 400 152V160H352V152C352 94.56 305.4 48 248 48H200C142.6 48 96 94.56 96 152V160zM.0003 224C.0003 206.3 14.33 192 32 192H416C433.7 192 448 206.3 448 224C448 241.7 433.7 256 416 256H410.9L388.5 469C385.1 493.5 365.4 512 340.8 512H107.2C82.65 512 62.05 493.5 59.48 469L37.05 256H32C14.33 256 0 241.7 0 224H.0003z',
			),
		),
		'label'             => __( 'Bucket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education', 'lifestyle-and-hobbies' ),
	),
	'buffer'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M427.8 380.7l-196.5 97.82a18.6 18.6 0 0 1 -14.67 0L20.16 380.7c-4-2-4-5.28 0-7.29L67.22 350a18.65 18.65 0 0 1 14.69 0l134.8 67a18.51 18.51 0 0 0 14.67 0l134.8-67a18.62 18.62 0 0 1 14.68 0l47.06 23.43c4.05 1.96 4.05 5.24 0 7.24zm0-136.5l-47.06-23.43a18.62 18.62 0 0 0 -14.68 0l-134.8 67.08a18.68 18.68 0 0 1 -14.67 0L81.91 220.7a18.65 18.65 0 0 0 -14.69 0l-47.06 23.43c-4 2-4 5.29 0 7.31l196.5 97.8a18.6 18.6 0 0 0 14.67 0l196.5-97.8c4.05-2.02 4.05-5.3 0-7.31zM20.16 130.4l196.5 90.29a20.08 20.08 0 0 0 14.67 0l196.5-90.29c4-1.86 4-4.89 0-6.74L231.3 33.4a19.88 19.88 0 0 0 -14.67 0l-196.5 90.28c-4.05 1.85-4.05 4.88 0 6.74z',
			),
		),
		'label'             => __( 'Buffer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'bug'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 96V99.56C352 115.3 339.3 128 323.6 128H188.4C172.7 128 159.1 115.3 159.1 99.56V96C159.1 42.98 202.1 0 255.1 0C309 0 352 42.98 352 96zM41.37 105.4C53.87 92.88 74.13 92.88 86.63 105.4L150.6 169.4C151.3 170 151.9 170.7 152.5 171.4C166.8 164.1 182.9 160 199.1 160H312C329.1 160 345.2 164.1 359.5 171.4C360.1 170.7 360.7 170 361.4 169.4L425.4 105.4C437.9 92.88 458.1 92.88 470.6 105.4C483.1 117.9 483.1 138.1 470.6 150.6L406.6 214.6C405.1 215.3 405.3 215.9 404.6 216.5C410.7 228.5 414.6 241.9 415.7 256H480C497.7 256 512 270.3 512 288C512 305.7 497.7 320 480 320H416C416 344.6 410.5 367.8 400.6 388.6C402.7 389.9 404.8 391.5 406.6 393.4L470.6 457.4C483.1 469.9 483.1 490.1 470.6 502.6C458.1 515.1 437.9 515.1 425.4 502.6L362.3 439.6C337.8 461.4 306.5 475.8 272 479.2V240C272 231.2 264.8 224 255.1 224C247.2 224 239.1 231.2 239.1 240V479.2C205.5 475.8 174.2 461.4 149.7 439.6L86.63 502.6C74.13 515.1 53.87 515.1 41.37 502.6C28.88 490.1 28.88 469.9 41.37 457.4L105.4 393.4C107.2 391.5 109.3 389.9 111.4 388.6C101.5 367.8 96 344.6 96 320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H96.3C97.38 241.9 101.3 228.5 107.4 216.5C106.7 215.9 106 215.3 105.4 214.6L41.37 150.6C28.88 138.1 28.88 117.9 41.37 105.4H41.37z',
			),
		),
		'label'             => __( 'Bug', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'bug-slash'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M239.1 162.8C247.7 160.1 255.7 160 264 160H376C393.1 160 409.2 164.1 423.5 171.4C424.1 170.7 424.7 170 425.4 169.4L489.4 105.4C501.9 92.88 522.1 92.88 534.6 105.4C547.1 117.9 547.1 138.1 534.6 150.6L470.6 214.6C469.1 215.3 469.3 215.9 468.6 216.5C474.7 228.5 478.6 241.9 479.7 256H544C561.7 256 576 270.3 576 288C576 305.7 561.7 320 544 320H480C480 329.9 479.1 339.5 477.4 348.9L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L239.1 162.8zM416 96V99.56C416 115.3 403.3 128 387.6 128H252.4C236.7 128 224 115.3 224 99.56V96C224 42.98 266.1 .001 320 .001C373 .001 416 42.98 416 96V96zM160.3 256C161.1 245.1 163.3 236.3 166.7 227.3L304 335.5V479.2C269.5 475.8 238.2 461.4 213.7 439.6L150.6 502.6C138.1 515.1 117.9 515.1 105.4 502.6C92.88 490.1 92.88 469.9 105.4 457.4L169.4 393.4C171.2 391.5 173.3 389.9 175.4 388.6C165.5 367.8 160 344.6 160 320H96C78.33 320 64 305.7 64 288C64 270.3 78.33 256 96 256H160.3zM336 479.2V360.7L430.8 435.4C405.7 459.6 372.7 475.6 336 479.2V479.2z',
			),
		),
		'label'             => __( 'Bug Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'bugs'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M187.3 135.1H204.3L208.5 115.3C211.1 102.3 223.7 93.86 236.7 96.46C249.7 99.06 258.1 111.7 255.5 124.7L247.5 164.7C245.3 175.9 235.4 183.1 223.1 183.1H191.1V207.3L229.8 216.7C239.3 219.1 246.4 226.9 247.8 236.6L255.8 292.6C257.6 305.7 248.5 317.9 235.4 319.8C222.3 321.6 210.1 312.5 208.2 299.4L202.5 259.4L184.1 254.8C173.2 274.6 152.2 287.1 127.1 287.1C103.8 287.1 82.75 274.6 71.87 254.8L53.48 259.4L47.76 299.4C45.88 312.5 33.73 321.6 20.61 319.8C7.484 317.9-1.633 305.7 .2413 292.6L8.241 236.6C9.621 226.9 16.71 219.1 26.18 216.7L63.1 207.3V183.1H31.1C20.56 183.1 10.71 175.9 8.463 164.7L.4627 124.7C-2.137 111.7 6.292 99.06 19.29 96.46C32.29 93.86 44.93 102.3 47.53 115.3L51.67 135.1H68.65C73.35 124.4 81.36 114.5 91.51 107.4L58.15 33.92C52.67 21.85 58.01 7.625 70.08 2.145C82.15-3.335 96.37 2.007 101.9 14.08L128 71.66L154.1 14.08C159.6 2.007 173.9-3.335 185.9 2.145C197.1 7.625 203.3 21.85 197.9 33.92L164.5 107.4C174.6 114.5 182.6 124.4 187.3 135.1L187.3 135.1zM501.5 322.7L516.2 331.2L530.1 315.3C538.9 305.3 554 304.4 563.1 313.1C573.9 321.9 574.9 337 566.2 346.1L539.2 377.6C531.7 386.2 519.1 388.3 509.2 382.6L481.5 366.6L469.9 386.7L497.9 413.8C504.9 420.6 507.1 430.9 503.5 440L482.4 492.5C477.5 504.8 463.5 510.8 451.2 505.8C438.9 500.9 432.9 486.9 437.9 474.6L452.9 437.1L439.3 423.9C419.1 435.6 395 436.7 374.1 424.6C353.1 412.5 341.6 390.4 342.1 367.8L323.8 362.6L298.9 394.4C290.7 404.8 275.6 406.6 265.2 398.4C254.8 390.3 252.9 375.2 261.1 364.7L296 320.2C302.1 312.6 312.1 309.3 321.5 311.1L359 322.7L370.6 302.6L342.9 286.6C333 280.8 328.5 268.9 332.2 258.1L345.3 219.4C349.5 206.9 363.1 200.2 375.7 204.4C388.2 208.7 394.1 222.3 390.7 234.8L383.1 254.8L398.7 263.3C408.5 255.6 420.4 251 432.8 249.1L440.6 169.7C441.9 156.5 453.6 146.8 466.8 148.1C480 149.4 489.7 161.1 488.4 174.3L482.2 237.3L533.7 200.5C544.5 192.8 559.4 195.3 567.2 206C574.9 216.8 572.4 231.8 561.6 239.5L495.1 286.5C501.2 297.7 503.2 310.3 501.5 322.7V322.7z',
			),
		),
		'label'             => __( 'Bugs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'building'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V464C384 490.5 362.5 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M88 104C88 95.16 95.16 88 104 88H152C160.8 88 168 95.16 168 104V152C168 160.8 160.8 168 152 168H104C95.16 168 88 160.8 88 152V104zM280 88C288.8 88 296 95.16 296 104V152C296 160.8 288.8 168 280 168H232C223.2 168 216 160.8 216 152V104C216 95.16 223.2 88 232 88H280zM88 232C88 223.2 95.16 216 104 216H152C160.8 216 168 223.2 168 232V280C168 288.8 160.8 296 152 296H104C95.16 296 88 288.8 88 280V232zM280 216C288.8 216 296 223.2 296 232V280C296 288.8 288.8 296 280 296H232C223.2 296 216 288.8 216 280V232C216 223.2 223.2 216 232 216H280zM0 64C0 28.65 28.65 0 64 0H320C355.3 0 384 28.65 384 64V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V64zM48 64V448C48 456.8 55.16 464 64 464H144V400C144 373.5 165.5 352 192 352C218.5 352 240 373.5 240 400V464H320C328.8 464 336 456.8 336 448V64C336 55.16 328.8 48 320 48H64C55.16 48 48 55.16 48 64z',
			),
		),
		'label'             => __( 'Building', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'building-circle-arrow-right'    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H336C362.5 0 384 21.49 384 48V232.2C344.9 264.5 320 313.3 320 368C320 417.5 340.4 462.2 373.3 494.2C364.5 505.1 351.1 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48zM80 224C71.16 224 64 231.2 64 240V272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80zM160 272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176C167.2 224 160 231.2 160 240V272zM272 224C263.2 224 256 231.2 256 240V272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272zM64 144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80C71.16 96 64 103.2 64 112V144zM176 96C167.2 96 160 103.2 160 112V144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176zM256 144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272C263.2 96 256 103.2 256 112V144zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM492.7 323.3L521.4 352H432C423.2 352 416 359.2 416 368C416 376.8 423.2 384 432 384H521.4L492.7 412.7C486.4 418.9 486.4 429.1 492.7 435.3C498.9 441.6 509.1 441.6 515.3 435.3L571.3 379.3C577.6 373.1 577.6 362.9 571.3 356.7L515.3 300.7C509.1 294.4 498.9 294.4 492.7 300.7C486.4 306.9 486.4 317.1 492.7 323.3V323.3z',
			),
		),
		'label'             => __( 'Building Circle Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-circle-check'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V232.2C344.9 264.5 320 313.3 320 368C320 417.5 340.4 462.2 373.3 494.2C364.5 505.1 351.1 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'Building Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-circle-exclamation'    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V232.2C344.9 264.5 320 313.3 320 368C320 417.5 340.4 462.2 373.3 494.2C364.5 505.1 351.1 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Building Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-circle-xmark'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V232.2C344.9 264.5 320 313.3 320 368C320 417.5 340.4 462.2 373.3 494.2C364.5 505.1 351.1 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'Building Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-columns'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M243.4 2.587C251.4-.8625 260.6-.8625 268.6 2.587L492.6 98.59C506.6 104.6 514.4 119.6 511.3 134.4C508.3 149.3 495.2 159.1 479.1 160V168C479.1 181.3 469.3 192 455.1 192H55.1C42.74 192 31.1 181.3 31.1 168V160C16.81 159.1 3.708 149.3 .6528 134.4C-2.402 119.6 5.429 104.6 19.39 98.59L243.4 2.587zM256 128C273.7 128 288 113.7 288 96C288 78.33 273.7 64 256 64C238.3 64 224 78.33 224 96C224 113.7 238.3 128 256 128zM127.1 416H167.1V224H231.1V416H280V224H344V416H384V224H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H31.1C17.9 512 5.458 502.8 1.372 489.3C-2.715 475.8 2.515 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.41 420.6 63.1 420.3V224H127.1V416z',
			),
		),
		'label'             => __( 'Building Columns', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'building-flag'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V464C384 490.5 362.5 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM448 0C465.7 0 480 14.33 480 32H624C632.8 32 640 39.16 640 48V176C640 184.8 632.8 192 624 192H480V512H416V32C416 14.33 430.3 0 448 0z',
			),
		),
		'label'             => __( 'Building Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-lock'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V193.6C364.2 213.8 352 241.5 352 272V296.6C332.9 307.6 320 328.3 320 352V480C320 491.7 323.1 502.6 328.6 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM464 192C508.2 192 544 227.8 544 272V320C561.7 320 576 334.3 576 352V480C576 497.7 561.7 512 544 512H384C366.3 512 352 497.7 352 480V352C352 334.3 366.3 320 384 320V272C384 227.8 419.8 192 464 192zM464 240C446.3 240 432 254.3 432 272V320H496V272C496 254.3 481.7 240 464 240z',
			),
		),
		'label'             => __( 'Building Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'building-ngo'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 112V144C320 152.8 312.8 160 304 160C295.2 160 288 152.8 288 144V112C288 103.2 295.2 96 304 96C312.8 96 320 103.2 320 112zM336 0C362.5 0 384 21.49 384 48V464C384 490.5 362.5 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM168 64C159.2 64 152 71.16 152 80V168C152 181.3 162.7 192 176 192H208C221.3 192 232 181.3 232 168V144C232 135.2 224.8 128 216 128C207.2 128 200 135.2 200 144V160H184V96H216C224.8 96 232 88.84 232 80C232 71.16 224.8 64 216 64H168zM256 144C256 170.5 277.5 192 304 192C330.5 192 352 170.5 352 144V112C352 85.49 330.5 64 304 64C277.5 64 256 85.49 256 112V144zM61.31 71.12C57.4 65.26 50.11 62.64 43.36 64.69C36.62 66.73 32 72.95 32 80V176C32 184.8 39.16 192 48 192C56.84 192 64 184.8 64 176V132.8L98.69 184.9C102.6 190.7 109.9 193.4 116.6 191.3C123.4 189.3 128 183.1 128 176V80C128 71.16 120.8 64 112 64C103.2 64 96 71.16 96 80V123.2L61.31 71.12z',
			),
		),
		'label'             => __( 'Building Ngo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-shield'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H336C362.5 0 384 21.49 384 48V207L341.6 224H272C263.2 224 256 231.2 256 240V304C256 304.9 256.1 305.7 256.2 306.6C258.5 364.7 280.3 451.4 354.9 508.1C349.1 510.6 342.7 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48zM80 224C71.16 224 64 231.2 64 240V272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80zM160 272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176C167.2 224 160 231.2 160 240V272zM64 144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80C71.16 96 64 103.2 64 112V144zM176 96C167.2 96 160 103.2 160 112V144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176zM256 144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272C263.2 96 256 103.2 256 112V144zM423.1 225.7C428.8 223.4 435.2 223.4 440.9 225.7L560.9 273.7C570 277.4 576 286.2 576 296C576 359.3 550.1 464.8 441.2 510.2C435.3 512.6 428.7 512.6 422.8 510.2C313.9 464.8 288 359.3 288 296C288 286.2 293.1 277.4 303.1 273.7L423.1 225.7zM432 273.8V461.7C500.2 428.7 523.5 362.7 527.4 311.1L432 273.8z',
			),
		),
		'label'             => __( 'Building Shield', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'building-un'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V464C384 490.5 362.5 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM237.3 71.12C233.4 65.26 226.1 62.64 219.4 64.69C212.6 66.73 208 72.95 208 80V176C208 184.8 215.2 192 224 192C232.8 192 240 184.8 240 176V132.8L274.7 184.9C278.6 190.7 285.9 193.4 292.6 191.3C299.4 189.3 304 183.1 304 176V80C304 71.16 296.8 64 288 64C279.2 64 272 71.16 272 80V123.2L237.3 71.12zM112 80C112 71.16 104.8 64 96 64C87.16 64 80 71.16 80 80V144C80 170.5 101.5 192 128 192C154.5 192 176 170.5 176 144V80C176 71.16 168.8 64 160 64C151.2 64 144 71.16 144 80V144C144 152.8 136.8 160 128 160C119.2 160 112 152.8 112 144V80z',
			),
		),
		'label'             => __( 'Building Un', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-user'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M336 0C362.5 0 384 21.49 384 48V367.8C345.8 389.2 320 430 320 476.9C320 489.8 323.6 501.8 329.9 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48C0 21.49 21.49 0 48 0H336zM64 272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80C71.16 224 64 231.2 64 240V272zM176 224C167.2 224 160 231.2 160 240V272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176zM256 272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272C263.2 224 256 231.2 256 240V272zM80 96C71.16 96 64 103.2 64 112V144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80zM160 144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176C167.2 96 160 103.2 160 112V144zM272 96C263.2 96 256 103.2 256 112V144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272zM576 272C576 316.2 540.2 352 496 352C451.8 352 416 316.2 416 272C416 227.8 451.8 192 496 192C540.2 192 576 227.8 576 272zM352 477.1C352 425.7 393.7 384 445.1 384H546.9C598.3 384 640 425.7 640 477.1C640 496.4 624.4 512 605.1 512H386.9C367.6 512 352 496.4 352 477.1V477.1z',
			),
		),
		'label'             => __( 'Building User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'building-wheat'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H336C362.5 0 384 21.49 384 48V464C384 490.5 362.5 512 336 512H240V432C240 405.5 218.5 384 192 384C165.5 384 144 405.5 144 432V512H48C21.49 512 0 490.5 0 464V48zM80 224C71.16 224 64 231.2 64 240V272C64 280.8 71.16 288 80 288H112C120.8 288 128 280.8 128 272V240C128 231.2 120.8 224 112 224H80zM160 272C160 280.8 167.2 288 176 288H208C216.8 288 224 280.8 224 272V240C224 231.2 216.8 224 208 224H176C167.2 224 160 231.2 160 240V272zM272 224C263.2 224 256 231.2 256 240V272C256 280.8 263.2 288 272 288H304C312.8 288 320 280.8 320 272V240C320 231.2 312.8 224 304 224H272zM64 144C64 152.8 71.16 160 80 160H112C120.8 160 128 152.8 128 144V112C128 103.2 120.8 96 112 96H80C71.16 96 64 103.2 64 112V144zM176 96C167.2 96 160 103.2 160 112V144C160 152.8 167.2 160 176 160H208C216.8 160 224 152.8 224 144V112C224 103.2 216.8 96 208 96H176zM256 144C256 152.8 263.2 160 272 160H304C312.8 160 320 152.8 320 144V112C320 103.2 312.8 96 304 96H272C263.2 96 256 103.2 256 112V144zM640 192V208C640 252.2 604.2 288 560 288H544V272C544 227.8 579.8 192 624 192H640zM560 400H544V384C544 339.8 579.8 304 624 304H640V320C640 364.2 604.2 400 560 400zM560 512H544V496C544 451.8 579.8 416 624 416H640V432C640 476.2 604.2 512 560 512zM512 496V512H496C451.8 512 416 476.2 416 432V416H432C476.2 416 512 451.8 512 496zM496 400C451.8 400 416 364.2 416 320V304H432C476.2 304 512 339.8 512 384V400H496zM512 272V288H496C451.8 288 416 252.2 416 208V192H432C476.2 192 512 227.8 512 272zM528 32C541.3 32 552 42.75 552 56V160C552 173.3 541.3 184 528 184C514.7 184 504 173.3 504 160V56C504 42.75 514.7 32 528 32zM624 128C624 141.3 613.3 152 600 152C586.7 152 576 141.3 576 128V96C576 82.75 586.7 72 600 72C613.3 72 624 82.75 624 96V128zM456 72C469.3 72 480 82.75 480 96V128C480 141.3 469.3 152 456 152C442.7 152 432 141.3 432 128V96C432 82.75 442.7 72 456 72z',
			),
		),
		'label'             => __( 'Building Wheat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'bullhorn'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 179.6C498.6 188.4 512 212.1 512 240C512 267.9 498.6 291.6 480 300.4V448C480 460.9 472.2 472.6 460.2 477.6C448.3 482.5 434.5 479.8 425.4 470.6L381.7 426.1C333.7 378.1 268.6 352 200.7 352H192V480C192 497.7 177.7 512 160 512H96C78.33 512 64 497.7 64 480V352C28.65 352 0 323.3 0 288V192C0 156.7 28.65 128 64 128H200.7C268.6 128 333.7 101 381.7 53.02L425.4 9.373C434.5 .2215 448.3-2.516 460.2 2.437C472.2 7.39 480 19.06 480 32V179.6zM200.7 192H192V288H200.7C280.5 288 357.2 317.8 416 371.3V108.7C357.2 162.2 280.5 192 200.7 192V192z',
			),
		),
		'label'             => __( 'Bullhorn', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'lifestyle-and-hobbies' ),
	),
	'bullseye'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 256C288 273.7 273.7 288 256 288C238.3 288 224 273.7 224 256C224 238.3 238.3 224 256 224C273.7 224 288 238.3 288 256zM112 256C112 176.5 176.5 112 256 112C335.5 112 400 176.5 400 256C400 335.5 335.5 400 256 400C176.5 400 112 335.5 112 256zM256 336C300.2 336 336 300.2 336 256C336 211.8 300.2 176 256 176C211.8 176 176 211.8 176 256C176 300.2 211.8 336 256 336zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64C149.1 64 64 149.1 64 256C64 362 149.1 448 256 448C362 448 448 362 448 256C448 149.1 362 64 256 64z',
			),
		),
		'label'             => __( 'Bullseye', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'burger'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M481.9 270.1C490.9 279.1 496 291.3 496 304C496 316.7 490.9 328.9 481.9 337.9C472.9 346.9 460.7 352 448 352H64C51.27 352 39.06 346.9 30.06 337.9C21.06 328.9 16 316.7 16 304C16 291.3 21.06 279.1 30.06 270.1C39.06 261.1 51.27 256 64 256H448C460.7 256 472.9 261.1 481.9 270.1zM475.3 388.7C478.3 391.7 480 395.8 480 400V416C480 432.1 473.3 449.3 461.3 461.3C449.3 473.3 432.1 480 416 480H96C79.03 480 62.75 473.3 50.75 461.3C38.74 449.3 32 432.1 32 416V400C32 395.8 33.69 391.7 36.69 388.7C39.69 385.7 43.76 384 48 384H464C468.2 384 472.3 385.7 475.3 388.7zM50.39 220.8C45.93 218.6 42.03 215.5 38.97 211.6C35.91 207.7 33.79 203.2 32.75 198.4C31.71 193.5 31.8 188.5 32.99 183.7C54.98 97.02 146.5 32 256 32C365.5 32 457 97.02 479 183.7C480.2 188.5 480.3 193.5 479.2 198.4C478.2 203.2 476.1 207.7 473 211.6C469.1 215.5 466.1 218.6 461.6 220.8C457.2 222.9 452.3 224 447.3 224H64.67C59.73 224 54.84 222.9 50.39 220.8zM372.7 116.7C369.7 119.7 368 123.8 368 128C368 131.2 368.9 134.3 370.7 136.9C372.5 139.5 374.1 141.6 377.9 142.8C380.8 143.1 384 144.3 387.1 143.7C390.2 143.1 393.1 141.6 395.3 139.3C397.6 137.1 399.1 134.2 399.7 131.1C400.3 128 399.1 124.8 398.8 121.9C397.6 118.1 395.5 116.5 392.9 114.7C390.3 112.9 387.2 111.1 384 111.1C379.8 111.1 375.7 113.7 372.7 116.7V116.7zM244.7 84.69C241.7 87.69 240 91.76 240 96C240 99.16 240.9 102.3 242.7 104.9C244.5 107.5 246.1 109.6 249.9 110.8C252.8 111.1 256 112.3 259.1 111.7C262.2 111.1 265.1 109.6 267.3 107.3C269.6 105.1 271.1 102.2 271.7 99.12C272.3 96.02 271.1 92.8 270.8 89.88C269.6 86.95 267.5 84.45 264.9 82.7C262.3 80.94 259.2 79.1 256 79.1C251.8 79.1 247.7 81.69 244.7 84.69V84.69zM116.7 116.7C113.7 119.7 112 123.8 112 128C112 131.2 112.9 134.3 114.7 136.9C116.5 139.5 118.1 141.6 121.9 142.8C124.8 143.1 128 144.3 131.1 143.7C134.2 143.1 137.1 141.6 139.3 139.3C141.6 137.1 143.1 134.2 143.7 131.1C144.3 128 143.1 124.8 142.8 121.9C141.6 118.1 139.5 116.5 136.9 114.7C134.3 112.9 131.2 111.1 128 111.1C123.8 111.1 119.7 113.7 116.7 116.7L116.7 116.7z',
			),
		),
		'label'             => __( 'Burger', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'buromobelexperte'               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v128h128V32H0zm120 120H8V40h112v112zm40-120v128h128V32H160zm120 120H168V40h112v112zm40-120v128h128V32H320zm120 120H328V40h112v112zM0 192v128h128V192H0zm120 120H8V200h112v112zm40-120v128h128V192H160zm120 120H168V200h112v112zm40-120v128h128V192H320zm120 120H328V200h112v112zM0 352v128h128V352H0zm120 120H8V360h112v112zm40-120v128h128V352H160zm120 120H168V360h112v112zm40-120v128h128V352H320z',
			),
		),
		'label'             => __( 'Büromöbel-Experte GmbH & Co. KG.', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'burst'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200.9 116.2L233.2 16.6C236.4 6.706 245.6 .001 256 .001C266.4 .001 275.6 6.706 278.8 16.6L313.3 123.1L383.8 97.45C392.6 94.26 402.4 96.43 408.1 103C415.6 109.6 417.7 119.4 414.6 128.2L388.9 198.7L495.4 233.2C505.3 236.4 512 245.6 512 256C512 266.4 505.3 275.6 495.4 278.8L392.3 312.2L445.2 412.8C450.1 422.1 448.4 433.5 440.1 440.1C433.5 448.4 422.1 450.1 412.8 445.2L312.2 392.3L278.8 495.4C275.6 505.3 266.4 512 256 512C245.6 512 236.4 505.3 233.2 495.4L199.8 392.3L99.17 445.2C89.87 450.1 78.46 448.4 71.03 440.1C63.6 433.5 61.87 422.1 66.76 412.8L119.7 312.2L16.6 278.8C6.705 275.6 .0003 266.4 .0003 256C.0003 245.6 6.705 236.4 16.6 233.2L116.2 200.9L4.208 37.57C-2.33 28.04-1.143 15.2 7.03 7.03C15.2-1.144 28.04-2.33 37.57 4.208L200.9 116.2z',
			),
		),
		'label'             => __( 'Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'environment', 'science-and-technology' ),
	),
	'bus'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 0C422.4 0 512 35.2 512 80V128C529.7 128 544 142.3 544 160V224C544 241.7 529.7 256 512 256L512 416C512 433.7 497.7 448 480 448V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H192V480C192 497.7 177.7 512 160 512H128C110.3 512 96 497.7 96 480V448C78.33 448 64 433.7 64 416L64 256C46.33 256 32 241.7 32 224V160C32 142.3 46.33 128 64 128V80C64 35.2 153.6 0 288 0zM128 256C128 273.7 142.3 288 160 288H272V128H160C142.3 128 128 142.3 128 160V256zM304 288H416C433.7 288 448 273.7 448 256V160C448 142.3 433.7 128 416 128H304V288zM144 400C161.7 400 176 385.7 176 368C176 350.3 161.7 336 144 336C126.3 336 112 350.3 112 368C112 385.7 126.3 400 144 400zM432 400C449.7 400 464 385.7 464 368C464 350.3 449.7 336 432 336C414.3 336 400 350.3 400 368C400 385.7 414.3 400 432 400zM368 64H208C199.2 64 192 71.16 192 80C192 88.84 199.2 96 208 96H368C376.8 96 384 88.84 384 80C384 71.16 376.8 64 368 64z',
			),
		),
		'label'             => __( 'Bus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'bus-simple'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 0C348.8 0 448 35.2 448 80V416C448 433.7 433.7 448 416 448V480C416 497.7 401.7 512 384 512H352C334.3 512 320 497.7 320 480V448H128V480C128 497.7 113.7 512 96 512H64C46.33 512 32 497.7 32 480V448C14.33 448 0 433.7 0 416V80C0 35.2 99.19 0 224 0zM64 256C64 273.7 78.33 288 96 288H352C369.7 288 384 273.7 384 256V128C384 110.3 369.7 96 352 96H96C78.33 96 64 110.3 64 128V256zM80 400C97.67 400 112 385.7 112 368C112 350.3 97.67 336 80 336C62.33 336 48 350.3 48 368C48 385.7 62.33 400 80 400zM368 400C385.7 400 400 385.7 400 368C400 350.3 385.7 336 368 336C350.3 336 336 350.3 336 368C336 385.7 350.3 400 368 400z',
			),
		),
		'label'             => __( 'Bus Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'business-time'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M496 224C416.4 224 352 288.4 352 368s64.38 144 144 144s144-64.38 144-144S575.6 224 496 224zM544 384h-54.25C484.4 384 480 379.6 480 374.3V304C480 295.2 487.2 288 496 288C504.8 288 512 295.2 512 304V352h32c8.838 0 16 7.162 16 16C560 376.8 552.8 384 544 384zM320.1 352H208C199.2 352 192 344.8 192 336V288H0v144C0 457.6 22.41 480 48 480h312.2C335.1 449.6 320 410.5 320 368C320 362.6 320.5 357.3 320.1 352zM496 192c5.402 0 10.72 .3301 16 .8066V144C512 118.4 489.6 96 464 96H384V48C384 22.41 361.6 0 336 0h-160C150.4 0 128 22.41 128 48V96H48C22.41 96 0 118.4 0 144V256h360.2C392.5 216.9 441.3 192 496 192zM336 96h-160V48h160V96z',
			),
		),
		'label'             => __( 'Business Time', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'buy-n-large'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 32C133.3 32 7.79 132.3 7.79 256S133.3 480 288 480s280.2-100.3 280.2-224S442.7 32 288 32zm-85.39 357.2L64.1 390.5l77.25-290.7h133.4c63.15 0 84.93 28.65 78 72.84a60.24 60.24 0 0 1 -1.5 6.85 77.39 77.39 0 0 0 -17.21-1.93c-42.35 0-76.69 33.88-76.69 75.65 0 37.14 27.14 68 62.93 74.45-18.24 37.16-56.16 60.92-117.7 61.52zM358 207.1h32l-22.16 90.31h-35.41l-11.19-35.63-7.83 35.63h-37.83l26.63-90.31h31.34l15 36.75zm145.9 182.1H306.8L322.6 328a78.8 78.8 0 0 0 11.47 .83c42.34 0 76.69-33.87 76.69-75.65 0-32.65-21-60.46-50.38-71.06l21.33-82.35h92.5l-53.05 205.4h103.9zM211.7 269.4H187l-13.8 56.47h24.7c16.14 0 32.11-3.18 37.94-26.65 5.56-22.31-7.99-29.82-24.14-29.82zM233 170h-21.34L200 217.7h21.37c18 0 35.38-14.64 39.21-30.14C265.2 168.7 251.1 170 233 170z',
			),
		),
		'label'             => __( 'Buy n Large', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'buysellads'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 150.7l42.9 160.7h-85.8L224 150.7zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-65.3 325.3l-94.5-298.7H159.8L65.3 405.3H156l111.7-91.6 24.2 91.6h90.8z',
			),
		),
		'label'             => __( 'BuySellAds', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'c'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 359.8c22.46 0 31.1 19.53 31.1 31.99c0 23.14-66.96 88.23-164.5 88.23c-137.1 0-219.4-117.8-219.4-224c0-103.8 79.87-223.1 219.4-223.1c99.47 0 164.5 66.12 164.5 88.23c0 12.27-9.527 32.01-32.01 32.01c-31.32 0-45.8-56.25-132.5-56.25c-97.99 0-155.4 84.59-155.4 159.1c0 74.03 56.42 160 155.4 160C306.5 416 320.5 359.8 352 359.8z',
			),
		),
		'label'             => __( 'C', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'cake-candles'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M352 111.1c22.09 0 40-17.88 40-39.97S352 0 352 0s-40 49.91-40 72S329.9 111.1 352 111.1zM224 111.1c22.09 0 40-17.88 40-39.97S224 0 224 0S184 49.91 184 72S201.9 111.1 224 111.1zM383.1 223.1L384 160c0-8.836-7.164-16-16-16h-32C327.2 144 320 151.2 320 160v64h-64V160c0-8.836-7.164-16-16-16h-32C199.2 144 192 151.2 192 160v64H128V160c0-8.836-7.164-16-16-16h-32C71.16 144 64 151.2 64 160v63.97c-35.35 0-64 28.65-64 63.1v68.7c9.814 6.102 21.39 11.33 32 11.33c20.64 0 45.05-19.73 52.7-27.33c6.25-6.219 16.34-6.219 22.59 0C114.1 348.3 139.4 367.1 160 367.1s45.05-19.73 52.7-27.33c6.25-6.219 16.34-6.219 22.59 0C242.1 348.3 267.4 367.1 288 367.1s45.05-19.73 52.7-27.33c6.25-6.219 16.34-6.219 22.59 0C370.1 348.3 395.4 367.1 416 367.1c10.61 0 22.19-5.227 32-11.33V287.1C448 252.6 419.3 223.1 383.1 223.1zM352 373.3c-13.75 10.95-38.03 26.66-64 26.66s-50.25-15.7-64-26.66c-13.75 10.95-38.03 26.66-64 26.66s-50.25-15.7-64-26.66c-13.75 10.95-38.03 26.66-64 26.66c-11.27 0-22.09-3.121-32-7.377v87.38C0 497.7 14.33 512 32 512h384c17.67 0 32-14.33 32-32v-87.38c-9.91 4.256-20.73 7.377-32 7.377C390 399.1 365.8 384.3 352 373.3zM96 111.1c22.09 0 40-17.88 40-39.97S96 0 96 0S56 49.91 56 72S73.91 111.1 96 111.1z',
			),
		),
		'label'             => __( 'Cake Candles', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education', 'lifestyle-and-hobbies', 'social', 'travel' ),
	),
	'calculator'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 0h-288C22.38 0 0 22.38 0 48v416C0 489.6 22.38 512 48 512h288c25.62 0 48-22.38 48-48v-416C384 22.38 361.6 0 336 0zM64 208C64 199.2 71.2 192 80 192h32C120.8 192 128 199.2 128 208v32C128 248.8 120.8 256 112 256h-32C71.2 256 64 248.8 64 240V208zM64 304C64 295.2 71.2 288 80 288h32C120.8 288 128 295.2 128 304v32C128 344.8 120.8 352 112 352h-32C71.2 352 64 344.8 64 336V304zM224 432c0 8.801-7.199 16-16 16h-128C71.2 448 64 440.8 64 432v-32C64 391.2 71.2 384 80 384h128c8.801 0 16 7.199 16 16V432zM224 336c0 8.801-7.199 16-16 16h-32C167.2 352 160 344.8 160 336v-32C160 295.2 167.2 288 176 288h32C216.8 288 224 295.2 224 304V336zM224 240C224 248.8 216.8 256 208 256h-32C167.2 256 160 248.8 160 240v-32C160 199.2 167.2 192 176 192h32C216.8 192 224 199.2 224 208V240zM320 432c0 8.801-7.199 16-16 16h-32c-8.799 0-16-7.199-16-16v-32c0-8.801 7.201-16 16-16h32c8.801 0 16 7.199 16 16V432zM320 336c0 8.801-7.199 16-16 16h-32c-8.799 0-16-7.199-16-16v-32C256 295.2 263.2 288 272 288h32C312.8 288 320 295.2 320 304V336zM320 240C320 248.8 312.8 256 304 256h-32C263.2 256 256 248.8 256 240v-32C256 199.2 263.2 192 272 192h32C312.8 192 320 199.2 320 208V240zM320 144C320 152.8 312.8 160 304 160h-224C71.2 160 64 152.8 64 144v-64C64 71.2 71.2 64 80 64h224C312.8 64 320 71.2 320 80V144z',
			),
		),
		'label'             => __( 'Calculator', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'calendar'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96 32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32zM448 464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192H448V464z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z',
			),
		),
		'label'             => __( 'Calendar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'calendar-check'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM328.1 304.1C338.3 295.6 338.3 280.4 328.1 271C319.6 261.7 304.4 261.7 295 271L200 366.1L152.1 319C143.6 309.7 128.4 309.7 119 319C109.7 328.4 109.7 343.6 119 352.1L183 416.1C192.4 426.3 207.6 426.3 216.1 416.1L328.1 304.1z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M216.1 408.1C207.6 418.3 192.4 418.3 183 408.1L119 344.1C109.7 335.6 109.7 320.4 119 311C128.4 301.7 143.6 301.7 152.1 311L200 358.1L295 263C304.4 253.7 319.6 253.7 328.1 263C338.3 272.4 338.3 287.6 328.1 296.1L216.1 408.1zM128 0C141.3 0 152 10.75 152 24V64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0zM400 192H48V448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192z',
			),
		),
		'label'             => __( 'Calendar Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'calendar-day'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM80 256C71.16 256 64 263.2 64 272V368C64 376.8 71.16 384 80 384H176C184.8 384 192 376.8 192 368V272C192 263.2 184.8 256 176 256H80z',
			),
		),
		'label'             => __( 'Calendar Day', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'calendar-days'                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM64 304C64 312.8 71.16 320 80 320H112C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304zM192 304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304zM336 256C327.2 256 320 263.2 320 272V304C320 312.8 327.2 320 336 320H368C376.8 320 384 312.8 384 304V272C384 263.2 376.8 256 368 256H336zM64 432C64 440.8 71.16 448 80 448H112C120.8 448 128 440.8 128 432V400C128 391.2 120.8 384 112 384H80C71.16 384 64 391.2 64 400V432zM208 384C199.2 384 192 391.2 192 400V432C192 440.8 199.2 448 208 448H240C248.8 448 256 440.8 256 432V400C256 391.2 248.8 384 240 384H208zM320 432C320 440.8 327.2 448 336 448H368C376.8 448 384 440.8 384 432V400C384 391.2 376.8 384 368 384H336C327.2 384 320 391.2 320 400V432z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 248H128V192H48V248zM48 296V360H128V296H48zM176 296V360H272V296H176zM320 296V360H400V296H320zM400 192H320V248H400V192zM400 408H320V464H384C392.8 464 400 456.8 400 448V408zM272 408H176V464H272V408zM128 408H48V448C48 456.8 55.16 464 64 464H128V408zM272 192H176V248H272V192z',
			),
		),
		'label'             => __( 'Calendar Days', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'calendar-minus'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM312 376C325.3 376 336 365.3 336 352C336 338.7 325.3 328 312 328H136C122.7 328 112 338.7 112 352C112 365.3 122.7 376 136 376H312z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M152 352C138.7 352 128 341.3 128 328C128 314.7 138.7 304 152 304H296C309.3 304 320 314.7 320 328C320 341.3 309.3 352 296 352H152zM128 0C141.3 0 152 10.75 152 24V64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0zM400 192H48V448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192z',
			),
		),
		'label'             => __( 'Calendar Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'calendar-plus'                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96 32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32zM448 464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192H448V464zM200 272V328H144C130.7 328 120 338.7 120 352C120 365.3 130.7 376 144 376H200V432C200 445.3 210.7 456 224 456C237.3 456 248 445.3 248 432V376H304C317.3 376 328 365.3 328 352C328 338.7 317.3 328 304 328H248V272C248 258.7 237.3 248 224 248C210.7 248 200 258.7 200 272z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 232C237.3 232 248 242.7 248 256V304H296C309.3 304 320 314.7 320 328C320 341.3 309.3 352 296 352H248V400C248 413.3 237.3 424 224 424C210.7 424 200 413.3 200 400V352H152C138.7 352 128 341.3 128 328C128 314.7 138.7 304 152 304H200V256C200 242.7 210.7 232 224 232zM152 64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0C141.3 0 152 10.75 152 24V64zM48 448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192H48V448z',
			),
		),
		'label'             => __( 'Calendar Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'calendar-week'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM80 256C71.16 256 64 263.2 64 272V336C64 344.8 71.16 352 80 352H368C376.8 352 384 344.8 384 336V272C384 263.2 376.8 256 368 256H80z',
			),
		),
		'label'             => __( 'Calendar Week', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'calendar-xmark'                 => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 32V64H288V32C288 14.33 302.3 0 320 0C337.7 0 352 14.33 352 32V64H400C426.5 64 448 85.49 448 112V160H0V112C0 85.49 21.49 64 48 64H96V32C96 14.33 110.3 0 128 0C145.7 0 160 14.33 160 32zM0 192H448V464C448 490.5 426.5 512 400 512H48C21.49 512 0 490.5 0 464V192zM304.1 304.1C314.3 295.6 314.3 280.4 304.1 271C295.6 261.7 280.4 261.7 271 271L224 318.1L176.1 271C167.6 261.7 152.4 261.7 143 271C133.7 280.4 133.7 295.6 143 304.1L190.1 352L143 399C133.7 408.4 133.7 423.6 143 432.1C152.4 442.3 167.6 442.3 176.1 432.1L224 385.9L271 432.1C280.4 442.3 295.6 442.3 304.1 432.1C314.3 423.6 314.3 408.4 304.1 399L257.9 352L304.1 304.1z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M257.9 328L304.1 375C314.3 384.4 314.3 399.6 304.1 408.1C295.6 418.3 280.4 418.3 271 408.1L224 361.9L176.1 408.1C167.6 418.3 152.4 418.3 143 408.1C133.7 399.6 133.7 384.4 143 375L190.1 328L143 280.1C133.7 271.6 133.7 256.4 143 247C152.4 237.7 167.6 237.7 176.1 247L224 294.1L271 247C280.4 237.7 295.6 237.7 304.1 247C314.3 256.4 314.3 271.6 304.1 280.1L257.9 328zM128 0C141.3 0 152 10.75 152 24V64H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V64H384C419.3 64 448 92.65 448 128V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H104V24C104 10.75 114.7 0 128 0zM400 192H48V448C48 456.8 55.16 464 64 464H384C392.8 464 400 456.8 400 448V192z',
			),
		),
		'label'             => __( 'Calendar Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'camera'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M194.6 32H317.4C338.1 32 356.4 45.22 362.9 64.82L373.3 96H448C483.3 96 512 124.7 512 160V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V160C0 124.7 28.65 96 64 96H138.7L149.1 64.82C155.6 45.22 173.9 32 194.6 32H194.6zM256 384C309 384 352 341 352 288C352 234.1 309 192 256 192C202.1 192 160 234.1 160 288C160 341 202.1 384 256 384z',
			),
		),
		'label'             => __( 'Camera', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'lifestyle-and-hobbies', 'science-and-technology', 'social' ),
	),
	'camera-retro'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 64V48C64 39.16 71.16 32 80 32H144C152.8 32 160 39.16 160 48V64H192L242.5 38.76C251.4 34.31 261.2 32 271.1 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V128C0 92.65 28.65 64 64 64zM220.6 121.2C211.7 125.7 201.9 128 192 128H64V192H178.8C200.8 176.9 227.3 168 256 168C284.7 168 311.2 176.9 333.2 192H448V96H271.1L220.6 121.2zM256 216C207.4 216 168 255.4 168 304C168 352.6 207.4 392 256 392C304.6 392 344 352.6 344 304C344 255.4 304.6 216 256 216z',
			),
		),
		'label'             => __( 'Camera Retro', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'camera-rotate'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464 96h-88l-12.38-32.88C356.6 44.38 338.8 32 318.8 32h-125.5c-20 0-38 12.38-45 31.12L136 96H48C21.5 96 0 117.5 0 144v288C0 458.5 21.5 480 48 480h416c26.5 0 48-21.5 48-48v-288C512 117.5 490.5 96 464 96zM356.9 366.8C332.4 398.1 295.7 416 256 416c-31.78 0-61.37-11.94-84.58-32.61l-19.28 19.29C143.2 411.6 128 405.3 128 392.7V316.3c0-5.453 4.359-9.838 9.775-9.99h76.98c12.35 .3027 18.47 15.27 9.654 24.09l-19.27 19.28C219.3 361.4 237.1 368 256 368c24.8 0 47.78-11.22 63.08-30.78c8.172-10.44 23.25-12.28 33.69-4.125S365.1 356.3 356.9 366.8zM384 259.7c0 5.453-4.359 9.838-9.775 9.99h-76.98c-12.35-.3027-18.47-15.27-9.654-24.09l19.27-19.28C292.7 214.6 274.9 208 256 208c-24.8 0-47.78 11.22-63.08 30.78C184.8 249.2 169.7 251.1 159.2 242.9C148.8 234.8 146.9 219.7 155.1 209.2C179.6 177.9 216.3 160 256 160c31.78 0 61.37 11.94 84.58 32.61l19.28-19.29C368.8 164.4 384 170.7 384 183.3V259.7z',
			),
		),
		'label'             => __( 'Camera Rotate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'campground'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M328.1 112L563.7 405.4C571.7 415.4 576 427.7 576 440.4V464C576 490.5 554.5 512 528 512H48C21.49 512 0 490.5 0 464V440.4C0 427.7 4.328 415.4 12.27 405.4L247 112L199 51.99C187.1 38.19 190.2 18.05 204 7.013C217.8-4.027 237.9-1.789 248.1 12.01L288 60.78L327 12.01C338.1-1.789 358.2-4.027 371.1 7.013C385.8 18.05 388 38.19 376.1 51.99L328.1 112zM407.5 448L288 291.7L168.5 448H407.5z',
			),
		),
		'label'             => __( 'Campground', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'canadian-maple-leaf'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M383.8 351.7c2.5-2.5 105.2-92.4 105.2-92.4l-17.5-7.5c-10-4.9-7.4-11.5-5-17.4 2.4-7.6 20.1-67.3 20.1-67.3s-47.7 10-57.7 12.5c-7.5 2.4-10-2.5-12.5-7.5s-15-32.4-15-32.4-52.6 59.9-55.1 62.3c-10 7.5-20.1 0-17.6-10 0-10 27.6-129.6 27.6-129.6s-30.1 17.4-40.1 22.4c-7.5 5-12.6 5-17.6-5C293.5 72.3 255.9 0 255.9 0s-37.5 72.3-42.5 79.8c-5 10-10 10-17.6 5-10-5-40.1-22.4-40.1-22.4S183.3 182 183.3 192c2.5 10-7.5 17.5-17.6 10-2.5-2.5-55.1-62.3-55.1-62.3S98.1 167 95.6 172s-5 9.9-12.5 7.5C73 177 25.4 167 25.4 167s17.6 59.7 20.1 67.3c2.4 6 5 12.5-5 17.4L23 259.3s102.6 89.9 105.2 92.4c5.1 5 10 7.5 5.1 22.5-5.1 15-10.1 35.1-10.1 35.1s95.2-20.1 105.3-22.6c8.7-.9 18.3 2.5 18.3 12.5S241 512 241 512h30s-5.8-102.7-5.8-112.8 9.5-13.4 18.4-12.5c10 2.5 105.2 22.6 105.2 22.6s-5-20.1-10-35.1 0-17.5 5-22.5z',
			),
		),
		'label'             => __( 'Canadian Maple Leaf', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'candy-cane'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M497.5 91.1C469.6 33.13 411.8 0 352.4 0c-27.88 0-56.14 7.25-81.77 22.62L243.1 38.1C227.9 48.12 223 67.75 232.1 82.87l32.76 54.87c8.522 14.2 27.59 20.6 43.88 11.06l27.51-16.37c5.125-3.125 10.95-4.439 16.58-4.439c10.88 0 21.35 5.625 27.35 15.62c9 15.12 3.917 34.59-11.08 43.71L15.6 397.6c-15.25 9.125-20.13 28.62-11 43.87l32.76 54.87c8.522 14.2 27.59 20.66 43.88 11.12l347.4-206.5C500.2 258.1 533.2 167.5 497.5 91.1zM319.7 104.1L317.2 106.5l-20.5-61.5c9.75-4.75 19.88-8.125 30.38-10.25l20.63 61.87C337.8 97.37 328.2 99.87 319.7 104.1zM145.8 431.7l-60.5-38.5l30.88-18.25l60.5 38.5L145.8 431.7zM253.3 367.9l-60.5-38.5l30.88-18.25l60.5 38.5L253.3 367.9zM364.2 301.1L303.7 263.5l30.88-18.25l60.5 38.5L364.2 301.1zM384.7 104.7l46-45.1c8.375 6.5 16 13.1 22.5 22.5l-45.63 45.81C401.9 117.8 393.9 110.1 384.7 104.7zM466.7 212.5l-59.5-19.75c3.25-5.375 5.875-10.1 7.5-17.12c1-4.5 1.625-9.125 1.75-13.62l60.38 20.12C474.7 192.5 471.4 202.7 466.7 212.5z',
			),
		),
		'label'             => __( 'Candy Cane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'cannabis'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M544 374.4c0 6-3.25 11.38-8.5 14.12c-2.5 1.375-60.75 31.75-133.5 31.75c-6.124 0-12-.125-17.5-.25c11.38 22.25 16.5 38.25 16.75 39.13c1.875 5.75 .375 12-3.875 16.12c-4.125 4.25-10.38 5.75-16.12 4c-1.631-.4648-32.94-10.66-69.25-34.06v42.81C312 501.3 301.3 512 288 512s-24-10.75-24-23.1v-42.81c-36.31 23.4-67.62 33.59-69.25 34.06c-5.75 1.75-12 .25-16.12-4c-4.25-4.25-5.75-10.38-3.875-16.12C175 458.3 180.1 442.1 191.5 420c-5.501 .125-11.37 .25-17.5 .25c-72.75 0-130.1-30.38-133.5-31.75C35.25 385.8 32 380.4 32 374.4c0-5.875 3.25-11.38 8.5-14.12c1.625-.875 32.38-16.88 76.75-25.75c-64.25-75.13-84-161.8-84.88-165.8C31.25 163.5 32.75 157.9 36.63 154C39.75 151 43.75 149.4 48 149.4c1.125 0 2.25 .125 3.375 .375C55.38 150.6 137.1 169.3 212 229.5V225.1c0-118.9 60-213.8 62.5-217.8C277.5 2.75 282.5 0 288 0s10.5 2.75 13.5 7.375C304 11.38 364 106.3 364 225.1V229.5c73.1-60.25 156.6-79 160.5-79.75C525.8 149.5 526.9 149.4 528 149.4c4.25 0 8.25 1.625 11.38 4.625c3.75 3.875 5.375 9.5 4.25 14.75c-.875 4-20.62 90.63-84.88 165.8c44.38 8.875 75.13 24.88 76.75 25.75C540.8 363 544 368.5 544 374.4z',
			),
		),
		'label'             => __( 'Cannabis', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'capsules'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M555.3 300.1L424.3 112.8C401.9 81 366.4 64 330.4 64c-22.63 0-45.5 6.75-65.5 20.75C245.2 98.5 231.2 117.5 223.4 138.5C220.5 79.25 171.1 32 111.1 32c-61.88 0-111.1 50.08-111.1 111.1L-.0028 368c0 61.88 50.12 112 112 112s112-50.13 112-112L223.1 218.9C227.2 227.5 231.2 236 236.7 243.9l131.3 187.4C390.3 463 425.8 480 461.8 480c22.75 0 45.5-6.75 65.5-20.75C579 423.1 591.5 351.8 555.3 300.1zM159.1 256H63.99V144c0-26.5 21.5-48 48-48s48 21.5 48 48V256zM354.8 300.9l-65.5-93.63c-7.75-11-10.75-24.5-8.375-37.63c2.375-13.25 9.75-24.87 20.75-32.5C310.1 131.1 320.1 128 330.4 128c16.5 0 31.88 8 41.38 21.5l65.5 93.75L354.8 300.9z',
			),
		),
		'label'             => __( 'Capsules', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'car'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M39.61 196.8L74.8 96.29C88.27 57.78 124.6 32 165.4 32H346.6C387.4 32 423.7 57.78 437.2 96.29L472.4 196.8C495.6 206.4 512 229.3 512 256V448C512 465.7 497.7 480 480 480H448C430.3 480 416 465.7 416 448V400H96V448C96 465.7 81.67 480 64 480H32C14.33 480 0 465.7 0 448V256C0 229.3 16.36 206.4 39.61 196.8V196.8zM109.1 192H402.9L376.8 117.4C372.3 104.6 360.2 96 346.6 96H165.4C151.8 96 139.7 104.6 135.2 117.4L109.1 192zM96 256C78.33 256 64 270.3 64 288C64 305.7 78.33 320 96 320C113.7 320 128 305.7 128 288C128 270.3 113.7 256 96 256zM416 320C433.7 320 448 305.7 448 288C448 270.3 433.7 256 416 256C398.3 256 384 270.3 384 288C384 305.7 398.3 320 416 320z',
			),
		),
		'label'             => __( 'Car', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'car-battery'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M80 96C80 78.33 94.33 64 112 64H176C193.7 64 208 78.33 208 96H304C304 78.33 318.3 64 336 64H400C417.7 64 432 78.33 432 96H448C483.3 96 512 124.7 512 160V384C512 419.3 483.3 448 448 448H64C28.65 448 0 419.3 0 384V160C0 124.7 28.65 96 64 96H80zM384 192C384 183.2 376.8 176 368 176C359.2 176 352 183.2 352 192V224H320C311.2 224 304 231.2 304 240C304 248.8 311.2 256 320 256H352V288C352 296.8 359.2 304 368 304C376.8 304 384 296.8 384 288V256H416C424.8 256 432 248.8 432 240C432 231.2 424.8 224 416 224H384V192zM96 256H192C200.8 256 208 248.8 208 240C208 231.2 200.8 224 192 224H96C87.16 224 80 231.2 80 240C80 248.8 87.16 256 96 256z',
			),
		),
		'label'             => __( 'Car Battery', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'car-burst'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M176 8C182.6 8 188.4 11.1 190.9 18.09L220.3 92.05L296.4 68.93C302.7 67.03 309.5 69.14 313.6 74.27C314.1 74.85 314.5 75.45 314.9 76.08C297.8 84.32 282.7 96.93 271.4 113.3L230.4 172.5C203.1 181.4 180.6 203.5 172.6 233.4L152.7 307.4L117.4 339.9C112.6 344.4 105.5 345.4 99.64 342.6C93.73 339.7 90.16 333.6 90.62 327L96.21 247.6L17.56 235.4C11.08 234.4 5.871 229.6 4.413 223.2C2.954 216.8 5.54 210.1 10.94 206.4L76.5 161.3L37.01 92.18C33.76 86.49 34.31 79.39 38.4 74.27C42.48 69.14 49.28 67.03 55.55 68.93L131.7 92.05L161.1 18.09C163.6 11.1 169.4 8 176 8L176 8zM384.2 99.67L519.8 135.1C552.5 144.7 576.1 173.1 578.8 206.8L585.7 290.7C602.9 304.2 611.3 327 605.3 349.4L570.1 480.8C565.5 497.8 547.1 507.1 530.9 503.4L515.5 499.3C498.4 494.7 488.3 477.1 492.8 460.1L501.1 429.1L253.8 362.9L245.6 393.8C240.1 410.9 223.4 421 206.4 416.4L190.9 412.3C173.8 407.7 163.7 390.2 168.3 373.1L203.5 241.7C209.5 219.3 228.2 203.8 249.8 200.7L297.7 131.5C316.9 103.6 351.6 90.92 384.2 99.67L384.2 99.67zM367.7 161.5C361.1 159.7 354.2 162.3 350.4 167.8L318.1 214.5L519.6 268.5L515 211.1C514.5 205.2 509.8 199.6 503.2 197.8L367.7 161.5zM268.3 308.8C281.1 312.2 294.3 304.6 297.7 291.8C301.2 279 293.6 265.9 280.8 262.4C267.1 259 254.8 266.6 251.4 279.4C247.9 292.2 255.5 305.4 268.3 308.8zM528 328.7C515.2 325.3 502.1 332.9 498.6 345.7C495.2 358.5 502.8 371.6 515.6 375.1C528.4 378.5 541.6 370.9 545 358.1C548.4 345.3 540.8 332.1 528 328.7z',
			),
		),
		'label'             => __( 'Car Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'car-on'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M248 104C248 117.3 237.3 128 224 128C210.7 128 200 117.3 200 104V24C200 10.75 210.7 0 224 0C237.3 0 248 10.75 248 24V104zM153.8 160H294.2C327.1 160 358.1 181.3 369.5 213.1L397.8 292.4C417.9 300.9 432 320.8 432 344V480C432 497.7 417.7 512 400 512H384C366.3 512 352 497.7 352 480V448H96V480C96 497.7 81.67 512 64 512H48C30.33 512 16 497.7 16 480V344C16 320.8 30.08 300.9 50.16 292.4L78.49 213.1C89.86 181.3 120 160 153.8 160H153.8zM153.8 224C147.1 224 141 228.3 138.8 234.6L119.7 288H328.3L309.2 234.6C306.1 228.3 300.9 224 294.2 224H153.8zM96 392C109.3 392 120 381.3 120 368C120 354.7 109.3 344 96 344C82.75 344 72 354.7 72 368C72 381.3 82.75 392 96 392zM352 344C338.7 344 328 354.7 328 368C328 381.3 338.7 392 352 392C365.3 392 376 381.3 376 368C376 354.7 365.3 344 352 344zM7.029 39.03C16.4 29.66 31.6 29.66 40.97 39.03L88.97 87.03C98.34 96.4 98.34 111.6 88.97 120.1C79.6 130.3 64.4 130.3 55.03 120.1L7.029 72.97C-2.343 63.6-2.343 48.4 7.029 39.03V39.03zM407 39.03C416.4 29.66 431.6 29.66 440.1 39.03C450.3 48.4 450.3 63.6 440.1 72.97L392.1 120.1C383.6 130.3 368.4 130.3 359 120.1C349.7 111.6 349.7 96.4 359 87.03L407 39.03z',
			),
		),
		'label'             => __( 'Car On', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'car-rear'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M165.4 32H346.6C387.4 32 423.7 57.78 437.2 96.29L472.4 196.8C495.6 206.4 512 229.3 512 256V336C512 359.7 499.1 380.4 480 391.4V448C480 465.7 465.7 480 448 480H416C398.3 480 384 465.7 384 448V400H128V448C128 465.7 113.7 480 96 480H64C46.33 480 32 465.7 32 448V391.4C12.87 380.4 0 359.7 0 336V256C0 229.3 16.36 206.4 39.61 196.8L74.8 96.29C88.27 57.78 124.6 32 165.4 32V32zM165.4 96C151.8 96 139.7 104.6 135.2 117.4L109.1 192H402.9L376.8 117.4C372.3 104.6 360.2 96 346.6 96H165.4zM208 272C199.2 272 192 279.2 192 288V320C192 328.8 199.2 336 208 336H304C312.8 336 320 328.8 320 320V288C320 279.2 312.8 272 304 272H208zM72 304H104C117.3 304 128 293.3 128 280C128 266.7 117.3 256 104 256H72C58.75 256 48 266.7 48 280C48 293.3 58.75 304 72 304zM408 256C394.7 256 384 266.7 384 280C384 293.3 394.7 304 408 304H440C453.3 304 464 293.3 464 280C464 266.7 453.3 256 440 256H408z',
			),
		),
		'label'             => __( 'Car Rear', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'car-side'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 320V368C640 385.7 625.7 400 608 400H574.7C567.1 445.4 527.6 480 480 480C432.4 480 392.9 445.4 385.3 400H254.7C247.1 445.4 207.6 480 160 480C112.4 480 72.94 445.4 65.33 400H32C14.33 400 0 385.7 0 368V256C0 228.9 16.81 205.8 40.56 196.4L82.2 92.35C96.78 55.9 132.1 32 171.3 32H353.2C382.4 32 409.1 45.26 428.2 68.03L528.2 193C591.2 200.1 640 254.8 640 319.1V320zM171.3 96C158.2 96 146.5 103.1 141.6 116.1L111.3 192H224V96H171.3zM272 192H445.4L378.2 108C372.2 100.4 362.1 96 353.2 96H272V192zM525.3 400C527 394.1 528 389.6 528 384C528 357.5 506.5 336 480 336C453.5 336 432 357.5 432 384C432 389.6 432.1 394.1 434.7 400C441.3 418.6 459.1 432 480 432C500.9 432 518.7 418.6 525.3 400zM205.3 400C207 394.1 208 389.6 208 384C208 357.5 186.5 336 160 336C133.5 336 112 357.5 112 384C112 389.6 112.1 394.1 114.7 400C121.3 418.6 139.1 432 160 432C180.9 432 198.7 418.6 205.3 400z',
			),
		),
		'label'             => __( 'Car Side', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'car-tunnel'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M190.8 277.5C191.8 274.2 194.9 272 198.4 272H313.6C317.1 272 320.2 274.2 321.2 277.5L334.1 320H177L190.8 277.5zM144 384C144 370.7 154.7 360 168 360C181.3 360 192 370.7 192 384C192 397.3 181.3 408 168 408C154.7 408 144 397.3 144 384zM368 384C368 397.3 357.3 408 344 408C330.7 408 320 397.3 320 384C320 370.7 330.7 360 344 360C357.3 360 368 370.7 368 384zM512 256V448C512 483.3 483.3 512 448 512H384H128H64C28.65 512 0 483.3 0 448V256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM384 512C401.7 512 416 497.7 416 480V376C416 355.2 404.7 337.1 387.8 327.4L366.9 262.7C359.4 239.6 337.9 224 313.6 224H198.4C174.1 224 152.6 239.6 145.1 262.7L124.1 327.4C107.3 337.1 96 355.2 96 376V480C96 497.7 110.3 512 128 512C145.7 512 160 497.7 160 480V448H352V480C352 497.7 366.3 512 384 512H384z',
			),
		),
		'label'             => __( 'Car Tunnel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'caravan'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 112C0 67.82 35.82 32 80 32H416C504.4 32 576 103.6 576 192V352H608C625.7 352 640 366.3 640 384C640 401.7 625.7 416 608 416H288C288 469 245 512 192 512C138.1 512 96 469 96 416H80C35.82 416 0 380.2 0 336V112zM320 352H448V256H416C407.2 256 400 248.8 400 240C400 231.2 407.2 224 416 224H448V160C448 142.3 433.7 128 416 128H352C334.3 128 320 142.3 320 160V352zM96 128C78.33 128 64 142.3 64 160V224C64 241.7 78.33 256 96 256H224C241.7 256 256 241.7 256 224V160C256 142.3 241.7 128 224 128H96zM192 464C218.5 464 240 442.5 240 416C240 389.5 218.5 368 192 368C165.5 368 144 389.5 144 416C144 442.5 165.5 464 192 464z',
			),
		),
		'label'             => __( 'Caravan', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'travel' ),
	),
	'caret-down'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M310.6 246.6l-127.1 128C176.4 380.9 168.2 384 160 384s-16.38-3.125-22.63-9.375l-127.1-128C.2244 237.5-2.516 223.7 2.438 211.8S19.07 192 32 192h255.1c12.94 0 24.62 7.781 29.58 19.75S319.8 237.5 310.6 246.6z',
			),
		),
		'label'             => __( 'Caret Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'caret-left'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M137.4 406.6l-128-127.1C3.125 272.4 0 264.2 0 255.1s3.125-16.38 9.375-22.63l128-127.1c9.156-9.156 22.91-11.9 34.88-6.943S192 115.1 192 128v255.1c0 12.94-7.781 24.62-19.75 29.58S146.5 415.8 137.4 406.6z',
			),
		),
		'label'             => __( 'Caret Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'caret-right'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M118.6 105.4l128 127.1C252.9 239.6 256 247.8 256 255.1s-3.125 16.38-9.375 22.63l-128 127.1c-9.156 9.156-22.91 11.9-34.88 6.943S64 396.9 64 383.1V128c0-12.94 7.781-24.62 19.75-29.58S109.5 96.23 118.6 105.4z',
			),
		),
		'label'             => __( 'Caret Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'caret-up'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M9.39 265.4l127.1-128C143.6 131.1 151.8 128 160 128s16.38 3.125 22.63 9.375l127.1 128c9.156 9.156 11.9 22.91 6.943 34.88S300.9 320 287.1 320H32.01c-12.94 0-24.62-7.781-29.58-19.75S.2333 274.5 9.39 265.4z',
			),
		),
		'label'             => __( 'Caret Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'carrot'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M298.2 156.6C245.5 130.9 183.7 146.1 147.1 189.4l55.27 55.31c6.25 6.25 6.25 16.33 0 22.58c-3.127 3-7.266 4.605-11.39 4.605s-8.068-1.605-11.19-4.605L130.3 217l-128.1 262.8c-2.875 6-3 13.25 0 19.63c5.5 11.12 19 15.75 30 10.38l133.6-65.25L116.7 395.3c-6.377-6.125-6.377-16.38 0-22.5c6.25-6.25 16.37-6.25 22.5 0l56.98 56.98l102-49.89c24-11.63 44.5-31.26 57.13-57.13C385.5 261.1 359.9 186.8 298.2 156.6zM390.2 121.8C409.7 81 399.7 32.88 359.1 0c-50.25 41.75-52.51 107.5-7.875 151.9l8 8C404.5 204.5 470.4 202.3 512 152C479.1 112.3 430.1 102.3 390.2 121.8z',
			),
		),
		'label'             => __( 'Carrot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'cart-arrow-down'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 24C0 10.75 10.75 0 24 0H96C107.5 0 117.4 8.19 119.6 19.51L121.1 32H312V134.1L288.1 111C279.6 101.7 264.4 101.7 255 111C245.7 120.4 245.7 135.6 255 144.1L319 208.1C328.4 218.3 343.6 218.3 352.1 208.1L416.1 144.1C426.3 135.6 426.3 120.4 416.1 111C407.6 101.7 392.4 101.7 383 111L360 134.1V32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24V24zM224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464zM416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464z',
			),
		),
		'label'             => __( 'Cart Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'cart-flatbed'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M240 320h320c26.4 0 48-21.6 48-48v-192C608 53.6 586.4 32 560 32H448v128l-48-32L352 160V32H240C213.6 32 192 53.6 192 80v192C192 298.4 213.6 320 240 320zM608 384H128V64c0-35.2-28.8-64-64-64H31.1C14.4 0 0 14.4 0 32S14.4 64 31.1 64H48C56.84 64 64 71.16 64 80v335.1c0 17.6 14.4 32 32 32l66.92-.0009C161.1 453 160 458.4 160 464C160 490.5 181.5 512 208 512S256 490.5 256 464c0-5.641-1.13-10.97-2.917-16h197.9c-1.787 5.027-2.928 10.36-2.928 16C448 490.5 469.5 512 496 512c26.51 0 48.01-21.49 48.01-47.1c0-5.641-1.12-10.97-2.907-16l66.88 .0009C625.6 448 640 433.6 640 415.1C640 398.4 625.6 384 608 384z',
			),
		),
		'label'             => __( 'Cart Flatbed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'cart-flatbed-suitcase'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M541.2 448C542.1 453 544.1 458.4 544.1 464C544.1 490.5 522.6 512 496 512C469.5 512 448.1 490.5 448.1 464C448.1 458.4 449.2 453 450.1 448H253.1C254.9 453 256 458.4 256 464C256 490.5 234.5 512 208 512C181.5 512 160 490.5 160 464C160 458.4 161.1 453 162.9 448L96 448C78.4 448 64 433.6 64 416V80C64 71.16 56.84 64 48 64H32C14.4 64 0 49.6 0 32C0 14.4 14.4 0 32 0H64C99.2 0 128 28.8 128 64V384H608C625.6 384 640 398.4 640 416C640 433.6 625.6 448 608 448L541.2 448zM432 0C458.5 0 480 21.5 480 48V320H288V48C288 21.5 309.5 0 336 0H432zM336 96H432V48H336V96zM256 320H224C206.4 320 192 305.6 192 288V128C192 110.4 206.4 96 224 96H256V320zM576 128V288C576 305.6 561.6 320 544 320H512V96H544C561.6 96 576 110.4 576 128z',
			),
		),
		'label'             => __( 'Cart Flatbed Suitcase', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'cart-plus'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C107.5 0 117.4 8.19 119.6 19.51L121.1 32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24C0 10.75 10.75 0 24 0H96zM272 180H316V224C316 235 324.1 244 336 244C347 244 356 235 356 224V180H400C411 180 420 171 420 160C420 148.1 411 140 400 140H356V96C356 84.95 347 76 336 76C324.1 76 316 84.95 316 96V140H272C260.1 140 252 148.1 252 160C252 171 260.1 180 272 180zM128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464zM512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464z',
			),
		),
		'label'             => __( 'Cart Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'cart-shopping'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C107.5 0 117.4 8.19 119.6 19.51L121.1 32H541.8C562.1 32 578.3 52.25 572.6 72.66L518.6 264.7C514.7 278.5 502.1 288 487.8 288H170.7L179.9 336H488C501.3 336 512 346.7 512 360C512 373.3 501.3 384 488 384H159.1C148.5 384 138.6 375.8 136.4 364.5L76.14 48H24C10.75 48 0 37.25 0 24C0 10.75 10.75 0 24 0H96zM128 464C128 437.5 149.5 416 176 416C202.5 416 224 437.5 224 464C224 490.5 202.5 512 176 512C149.5 512 128 490.5 128 464zM512 464C512 490.5 490.5 512 464 512C437.5 512 416 490.5 416 464C416 437.5 437.5 416 464 416C490.5 416 512 437.5 512 464z',
			),
		),
		'label'             => __( 'Cart Shopping', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'cash-register'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 0C305.7 0 320 14.33 320 32V96C320 113.7 305.7 128 288 128H208V160H424.1C456.6 160 483.5 183.1 488.2 214.4L510.9 364.1C511.6 368.8 512 373.6 512 378.4V448C512 483.3 483.3 512 448 512H64C28.65 512 0 483.3 0 448V378.4C0 373.6 .3622 368.8 1.083 364.1L23.76 214.4C28.5 183.1 55.39 160 87.03 160H143.1V128H63.1C46.33 128 31.1 113.7 31.1 96V32C31.1 14.33 46.33 0 63.1 0L288 0zM96 48C87.16 48 80 55.16 80 64C80 72.84 87.16 80 96 80H256C264.8 80 272 72.84 272 64C272 55.16 264.8 48 256 48H96zM80 448H432C440.8 448 448 440.8 448 432C448 423.2 440.8 416 432 416H80C71.16 416 64 423.2 64 432C64 440.8 71.16 448 80 448zM112 216C98.75 216 88 226.7 88 240C88 253.3 98.75 264 112 264C125.3 264 136 253.3 136 240C136 226.7 125.3 216 112 216zM208 264C221.3 264 232 253.3 232 240C232 226.7 221.3 216 208 216C194.7 216 184 226.7 184 240C184 253.3 194.7 264 208 264zM160 296C146.7 296 136 306.7 136 320C136 333.3 146.7 344 160 344C173.3 344 184 333.3 184 320C184 306.7 173.3 296 160 296zM304 264C317.3 264 328 253.3 328 240C328 226.7 317.3 216 304 216C290.7 216 280 226.7 280 240C280 253.3 290.7 264 304 264zM256 296C242.7 296 232 306.7 232 320C232 333.3 242.7 344 256 344C269.3 344 280 333.3 280 320C280 306.7 269.3 296 256 296zM400 264C413.3 264 424 253.3 424 240C424 226.7 413.3 216 400 216C386.7 216 376 226.7 376 240C376 253.3 386.7 264 400 264zM352 296C338.7 296 328 306.7 328 320C328 333.3 338.7 344 352 344C365.3 344 376 333.3 376 320C376 306.7 365.3 296 352 296z',
			),
		),
		'label'             => __( 'Cash Register', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'cat'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M322.6 192C302.4 192 215.8 194 160 278V192c0-53-43-96-96-96C46.38 96 32 110.4 32 128s14.38 32 32 32s32 14.38 32 32v256c0 35.25 28.75 64 64 64h176c8.875 0 16-7.125 16-15.1V480c0-17.62-14.38-32-32-32h-32l128-96v144c0 8.875 7.125 16 16 16h32c8.875 0 16-7.125 16-16V289.9c-10.25 2.625-20.88 4.5-32 4.5C386.2 294.4 334.5 250.4 322.6 192zM480 96h-64l-64-64v134.4c0 53 43 95.1 96 95.1s96-42.1 96-95.1V32L480 96zM408 176c-8.875 0-16-7.125-16-16s7.125-16 16-16s16 7.125 16 16S416.9 176 408 176zM488 176c-8.875 0-16-7.125-16-16s7.125-16 16-16s16 7.125 16 16S496.9 176 488 176z',
			),
		),
		'label'             => __( 'Cat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cc-amazon-pay'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M124.7 201.8c.1-11.8 0-23.5 0-35.3v-35.3c0-1.3 .4-2 1.4-2.7 11.5-8 24.1-12.1 38.2-11.1 12.5 .9 22.7 7 28.1 21.7 3.3 8.9 4.1 18.2 4.1 27.7 0 8.7-.7 17.3-3.4 25.6-5.7 17.8-18.7 24.7-35.7 23.9-11.7-.5-21.9-5-31.4-11.7-.9-.8-1.4-1.6-1.3-2.8zm154.9 14.6c4.6 1.8 9.3 2 14.1 1.5 11.6-1.2 21.9-5.7 31.3-12.5 .9-.6 1.3-1.3 1.3-2.5-.1-3.9 0-7.9 0-11.8 0-4-.1-8 0-12 0-1.4-.4-2-1.8-2.2-7-.9-13.9-2.2-20.9-2.9-7-.6-14-.3-20.8 1.9-6.7 2.2-11.7 6.2-13.7 13.1-1.6 5.4-1.6 10.8 .1 16.2 1.6 5.5 5.2 9.2 10.4 11.2zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zm-207.5 23.9c.4 1.7 .9 3.4 1.6 5.1 16.5 40.6 32.9 81.3 49.5 121.9 1.4 3.5 1.7 6.4 .2 9.9-2.8 6.2-4.9 12.6-7.8 18.7-2.6 5.5-6.7 9.5-12.7 11.2-4.2 1.1-8.5 1.3-12.9 .9-2.1-.2-4.2-.7-6.3-.8-2.8-.2-4.2 1.1-4.3 4-.1 2.8-.1 5.6 0 8.3 .1 4.6 1.6 6.7 6.2 7.5 4.7 .8 9.4 1.6 14.2 1.7 14.3 .3 25.7-5.4 33.1-17.9 2.9-4.9 5.6-10.1 7.7-15.4 19.8-50.1 39.5-100.3 59.2-150.5 .6-1.5 1.1-3 1.3-4.6 .4-2.4-.7-3.6-3.1-3.7-5.6-.1-11.1 0-16.7 0-3.1 0-5.3 1.4-6.4 4.3-.4 1.1-.9 2.3-1.3 3.4l-29.1 83.7c-2.1 6.1-4.2 12.1-6.5 18.6-.4-.9-.6-1.4-.8-1.9-10.8-29.9-21.6-59.9-32.4-89.8-1.7-4.7-3.5-9.5-5.3-14.2-.9-2.5-2.7-4-5.4-4-6.4-.1-12.8-.2-19.2-.1-2.2 0-3.3 1.6-2.8 3.7zM242.4 206c1.7 11.7 7.6 20.8 18 26.6 9.9 5.5 20.7 6.2 31.7 4.6 12.7-1.9 23.9-7.3 33.8-15.5 .4-.3 .8-.6 1.4-1 .5 3.2 .9 6.2 1.5 9.2 .5 2.6 2.1 4.3 4.5 4.4 4.6 .1 9.1 .1 13.7 0 2.3-.1 3.8-1.6 4-3.9 .1-.8 .1-1.6 .1-2.3v-88.8c0-3.6-.2-7.2-.7-10.8-1.6-10.8-6.2-19.7-15.9-25.4-5.6-3.3-11.8-5-18.2-5.9-3-.4-6-.7-9.1-1.1h-10c-.8 .1-1.6 .3-2.5 .3-8.2 .4-16.3 1.4-24.2 3.5-5.1 1.3-10 3.2-15 4.9-3 1-4.5 3.2-4.4 6.5 .1 2.8-.1 5.6 0 8.3 .1 4.1 1.8 5.2 5.7 4.1 6.5-1.7 13.1-3.5 19.7-4.8 10.3-1.9 20.7-2.7 31.1-1.2 5.4 .8 10.5 2.4 14.1 7 3.1 4 4.2 8.8 4.4 13.7 .3 6.9 .2 13.9 .3 20.8 0 .4-.1 .7-.2 1.2-.4 0-.8 0-1.1-.1-8.8-2.1-17.7-3.6-26.8-4.1-9.5-.5-18.9 .1-27.9 3.2-10.8 3.8-19.5 10.3-24.6 20.8-4.1 8.3-4.6 17-3.4 25.8zM98.7 106.9v175.3c0 .8 0 1.7 .1 2.5 .2 2.5 1.7 4.1 4.1 4.2 5.9 .1 11.8 .1 17.7 0 2.5 0 4-1.7 4.1-4.1 .1-.8 .1-1.7 .1-2.5v-60.7c.9 .7 1.4 1.2 1.9 1.6 15 12.5 32.2 16.6 51.1 12.9 17.1-3.4 28.9-13.9 36.7-29.2 5.8-11.6 8.3-24.1 8.7-37 .5-14.3-1-28.4-6.8-41.7-7.1-16.4-18.9-27.3-36.7-30.9-2.7-.6-5.5-.8-8.2-1.2h-7c-1.2 .2-2.4 .3-3.6 .5-11.7 1.4-22.3 5.8-31.8 12.7-2 1.4-3.9 3-5.9 4.5-.1-.5-.3-.8-.4-1.2-.4-2.3-.7-4.6-1.1-6.9-.6-3.9-2.5-5.5-6.4-5.6h-9.7c-5.9-.1-6.9 1-6.9 6.8zM493.6 339c-2.7-.7-5.1 0-7.6 1-43.9 18.4-89.5 30.2-136.8 35.8-14.5 1.7-29.1 2.8-43.7 3.2-26.6 .7-53.2-.8-79.6-4.3-17.8-2.4-35.5-5.7-53-9.9-37-8.9-72.7-21.7-106.7-38.8-8.8-4.4-17.4-9.3-26.1-14-3.8-2.1-6.2-1.5-8.2 2.1v1.7c1.2 1.6 2.2 3.4 3.7 4.8 36 32.2 76.6 56.5 122 72.9 21.9 7.9 44.4 13.7 67.3 17.5 14 2.3 28 3.8 42.2 4.5 3 .1 6 .2 9 .4 .7 0 1.4 .2 2.1 .3h17.7c.7-.1 1.4-.3 2.1-.3 14.9-.4 29.8-1.8 44.6-4 21.4-3.2 42.4-8.1 62.9-14.7 29.6-9.6 57.7-22.4 83.4-40.1 2.8-1.9 5.7-3.8 8-6.2 4.3-4.4 2.3-10.4-3.3-11.9zm50.4-27.7c-.8-4.2-4-5.8-7.6-7-5.7-1.9-11.6-2.8-17.6-3.3-11-.9-22-.4-32.8 1.6-12 2.2-23.4 6.1-33.5 13.1-1.2 .8-2.4 1.8-3.1 3-.6 .9-.7 2.3-.5 3.4 .3 1.3 1.7 1.6 3 1.5 .6 0 1.2 0 1.8-.1l19.5-2.1c9.6-.9 19.2-1.5 28.8-.8 4.1 .3 8.1 1.2 12 2.2 4.3 1.1 6.2 4.4 6.4 8.7 .3 6.7-1.2 13.1-2.9 19.5-3.5 12.9-8.3 25.4-13.3 37.8-.3 .8-.7 1.7-.8 2.5-.4 2.5 1 4 3.4 3.5 1.4-.3 3-1.1 4-2.1 3.7-3.6 7.5-7.2 10.6-11.2 10.7-13.8 17-29.6 20.7-46.6 .7-3 1.2-6.1 1.7-9.1 .2-4.7 .2-9.6 .2-14.5z',
			),
		),
		'label'             => __( 'Amazon Pay Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-amex'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M325.1 167.8c0-16.4-14.1-18.4-27.4-18.4l-39.1-.3v69.3H275v-25.1h18c18.4 0 14.5 10.3 14.8 25.1h16.6v-13.5c0-9.2-1.5-15.1-11-18.4 7.4-3 11.8-10.7 11.7-18.7zm-29.4 11.3H275v-15.3h21c5.1 0 10.7 1 10.7 7.4 0 6.6-5.3 7.9-11 7.9zM279 268.6h-52.7l-21 22.8-20.5-22.8h-66.5l-.1 69.3h65.4l21.3-23 20.4 23h32.2l.1-23.3c18.9 0 49.3 4.6 49.3-23.3 0-17.3-12.3-22.7-27.9-22.7zm-103.8 54.7h-40.6v-13.8h36.3v-14.1h-36.3v-12.5h41.7l17.9 20.2zm65.8 8.2l-25.3-28.1L241 276zm37.8-31h-21.2v-17.6h21.5c5.6 0 10.2 2.3 10.2 8.4 0 6.4-4.6 9.2-10.5 9.2zm-31.6-136.7v-14.6h-55.5v69.3h55.5v-14.3h-38.9v-13.8h37.8v-14.1h-37.8v-12.5zM576 255.4h-.2zm-194.6 31.9c0-16.4-14.1-18.7-27.1-18.7h-39.4l-.1 69.3h16.6l.1-25.3h17.6c11 0 14.8 2 14.8 13.8l-.1 11.5h16.6l.1-13.8c0-8.9-1.8-15.1-11-18.4 7.7-3.1 11.8-10.8 11.9-18.4zm-29.2 11.2h-20.7v-15.6h21c5.1 0 10.7 1 10.7 7.4 0 6.9-5.4 8.2-11 8.2zm-172.8-80v-69.3h-27.6l-19.7 47-21.7-47H83.3v65.7l-28.1-65.7H30.7L1 218.5h17.9l6.4-15.3h34.5l6.4 15.3H100v-54.2l24 54.2h14.6l24-54.2v54.2zM31.2 188.8l11.2-27.6 11.5 27.6zm477.4 158.9v-4.5c-10.8 5.6-3.9 4.5-156.7 4.5 0-25.2 .1-23.9 0-25.2-1.7-.1-3.2-.1-9.4-.1 0 17.9-.1 6.8-.1 25.3h-39.6c0-12.1 .1-15.3 .1-29.2-10 6-22.8 6.4-34.3 6.2 0 14.7-.1 8.3-.1 23h-48.9c-5.1-5.7-2.7-3.1-15.4-17.4-3.2 3.5-12.8 13.9-16.1 17.4h-82v-92.3h83.1c5 5.6 2.8 3.1 15.5 17.2 3.2-3.5 12.2-13.4 15.7-17.2h58c9.8 0 18 1.9 24.3 5.6v-5.6c54.3 0 64.3-1.4 75.7 5.1v-5.1h78.2v5.2c11.4-6.9 19.6-5.2 64.9-5.2v5c10.3-5.9 16.6-5.2 54.3-5V80c0-26.5-21.5-48-48-48h-480c-26.5 0-48 21.5-48 48v109.8c9.4-21.9 19.7-46 23.1-53.9h39.7c4.3 10.1 1.6 3.7 9 21.1v-21.1h46c2.9 6.2 11.1 24 13.9 30 5.8-13.6 10.1-23.9 12.6-30h103c0-.1 11.5 0 11.6 0 43.7 .2 53.6-.8 64.4 5.3v-5.3H363v9.3c7.6-6.1 17.9-9.3 30.7-9.3h27.6c0 .5 1.9 .3 2.3 .3H456c4.2 9.8 2.6 6 8.8 20.6v-20.6h43.3c4.9 8-1-1.8 11.2 18.4v-18.4h39.9v92h-41.6c-5.4-9-1.4-2.2-13.2-21.9v21.9h-52.8c-6.4-14.8-.1-.3-6.6-15.3h-19c-4.2 10-2.2 5.2-6.4 15.3h-26.8c-12.3 0-22.3-3-29.7-8.9v8.9h-66.5c-.3-13.9-.1-24.8-.1-24.8-1.8-.3-3.4-.2-9.8-.2v25.1H151.2v-11.4c-2.5 5.6-2.7 5.9-5.1 11.4h-29.5c-4-8.9-2.9-6.4-5.1-11.4v11.4H58.6c-4.2-10.1-2.2-5.3-6.4-15.3H33c-4.2 10-2.2 5.2-6.4 15.3H0V432c0 26.5 21.5 48 48 48h480.1c26.5 0 48-21.5 48-48v-90.4c-12.7 8.3-32.7 6.1-67.5 6.1zm36.3-64.5H575v-14.6h-32.9c-12.8 0-23.8 6.6-23.8 20.7 0 33 42.7 12.8 42.7 27.4 0 5.1-4.3 6.4-8.4 6.4h-32l-.1 14.8h32c8.4 0 17.6-1.8 22.5-8.9v-25.8c-10.5-13.8-39.3-1.3-39.3-13.5 0-5.8 4.6-6.5 9.2-6.5zm-57 39.8h-32.2l-.1 14.8h32.2c14.8 0 26.2-5.6 26.2-22 0-33.2-42.9-11.2-42.9-26.3 0-5.6 4.9-6.4 9.2-6.4h30.4v-14.6h-33.2c-12.8 0-23.5 6.6-23.5 20.7 0 33 42.7 12.5 42.7 27.4-.1 5.4-4.7 6.4-8.8 6.4zm-42.2-40.1v-14.3h-55.2l-.1 69.3h55.2l.1-14.3-38.6-.3v-13.8H445v-14.1h-37.8v-12.5zm-56.3-108.1c-.3 .2-1.4 2.2-1.4 7.6 0 6 .9 7.7 1.1 7.9 .2 .1 1.1 .5 3.4 .5l7.3-16.9c-1.1 0-2.1-.1-3.1-.1-5.6 0-7 .7-7.3 1zm20.4-10.5h-.1zm-16.2-15.2c-23.5 0-34 12-34 35.3 0 22.2 10.2 34 33 34h19.2l6.4-15.3h34.3l6.6 15.3h33.7v-51.9l31.2 51.9h23.6v-69h-16.9v48.1l-29.1-48.1h-25.3v65.4l-27.9-65.4h-24.8l-23.5 54.5h-7.4c-13.3 0-16.1-8.1-16.1-19.9 0-23.8 15.7-20 33.1-19.7v-15.2zm42.1 12.1l11.2 27.6h-22.8zm-101.1-12v69.3h16.9v-69.3z',
			),
		),
		'label'             => __( 'American Express Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'cc-apple-pay'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M302.2 218.4c0 17.2-10.5 27.1-29 27.1h-24.3v-54.2h24.4c18.4 0 28.9 9.8 28.9 27.1zm47.5 62.6c0 8.3 7.2 13.7 18.5 13.7 14.4 0 25.2-9.1 25.2-21.9v-7.7l-23.5 1.5c-13.3 .9-20.2 5.8-20.2 14.4zM576 79v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V79c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM127.8 197.2c8.4 .7 16.8-4.2 22.1-10.4 5.2-6.4 8.6-15 7.7-23.7-7.4 .3-16.6 4.9-21.9 11.3-4.8 5.5-8.9 14.4-7.9 22.8zm60.6 74.5c-.2-.2-19.6-7.6-19.8-30-.2-18.7 15.3-27.7 16-28.2-8.8-13-22.4-14.4-27.1-14.7-12.2-.7-22.6 6.9-28.4 6.9-5.9 0-14.7-6.6-24.3-6.4-12.5 .2-24.2 7.3-30.5 18.6-13.1 22.6-3.4 56 9.3 74.4 6.2 9.1 13.7 19.1 23.5 18.7 9.3-.4 13-6 24.2-6 11.3 0 14.5 6 24.3 5.9 10.2-.2 16.5-9.1 22.8-18.2 6.9-10.4 9.8-20.4 10-21zm135.4-53.4c0-26.6-18.5-44.8-44.9-44.8h-51.2v136.4h21.2v-46.6h29.3c26.8 0 45.6-18.4 45.6-45zm90 23.7c0-19.7-15.8-32.4-40-32.4-22.5 0-39.1 12.9-39.7 30.5h19.1c1.6-8.4 9.4-13.9 20-13.9 13 0 20.2 6 20.2 17.2v7.5l-26.4 1.6c-24.6 1.5-37.9 11.6-37.9 29.1 0 17.7 13.7 29.4 33.4 29.4 13.3 0 25.6-6.7 31.2-17.4h.4V310h19.6v-68zM516 210.9h-21.5l-24.9 80.6h-.4l-24.9-80.6H422l35.9 99.3-1.9 6c-3.2 10.2-8.5 14.2-17.9 14.2-1.7 0-4.9-.2-6.2-.3v16.4c1.2 .4 6.5 .5 8.1 .5 20.7 0 30.4-7.9 38.9-31.8L516 210.9z',
			),
		),
		'label'             => __( 'Apple Pay Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-diners-club'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M239.7 79.9c-96.9 0-175.8 78.6-175.8 175.8 0 96.9 78.9 175.8 175.8 175.8 97.2 0 175.8-78.9 175.8-175.8 0-97.2-78.6-175.8-175.8-175.8zm-39.9 279.6c-41.7-15.9-71.4-56.4-71.4-103.8s29.7-87.9 71.4-104.1v207.9zm79.8 .3V151.6c41.7 16.2 71.4 56.7 71.4 104.1s-29.7 87.9-71.4 104.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM329.7 448h-90.3c-106.2 0-193.8-85.5-193.8-190.2C45.6 143.2 133.2 64 239.4 64h90.3c105 0 200.7 79.2 200.7 193.8 0 104.7-95.7 190.2-200.7 190.2z',
			),
		),
		'label'             => __( "Diner's Club Credit Card", 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-discover'                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M520.4 196.1c0-7.9-5.5-12.1-15.6-12.1h-4.9v24.9h4.7c10.3 0 15.8-4.4 15.8-12.8zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-44.1 138.9c22.6 0 52.9-4.1 52.9 24.4 0 12.6-6.6 20.7-18.7 23.2l25.8 34.4h-19.6l-22.2-32.8h-2.2v32.8h-16zm-55.9 .1h45.3v14H444v18.2h28.3V217H444v22.2h29.3V253H428zm-68.7 0l21.9 55.2 22.2-55.2h17.5l-35.5 84.2h-8.6l-35-84.2zm-55.9-3c24.7 0 44.6 20 44.6 44.6 0 24.7-20 44.6-44.6 44.6-24.7 0-44.6-20-44.6-44.6 0-24.7 20-44.6 44.6-44.6zm-49.3 6.1v19c-20.1-20.1-46.8-4.7-46.8 19 0 25 27.5 38.5 46.8 19.2v19c-29.7 14.3-63.3-5.7-63.3-38.2 0-31.2 33.1-53 63.3-38zm-97.2 66.3c11.4 0 22.4-15.3-3.3-24.4-15-5.5-20.2-11.4-20.2-22.7 0-23.2 30.6-31.4 49.7-14.3l-8.4 10.8c-10.4-11.6-24.9-6.2-24.9 2.5 0 4.4 2.7 6.9 12.3 10.3 18.2 6.6 23.6 12.5 23.6 25.6 0 29.5-38.8 37.4-56.6 11.3l10.3-9.9c3.7 7.1 9.9 10.8 17.5 10.8zM55.4 253H32v-82h23.4c26.1 0 44.1 17 44.1 41.1 0 18.5-13.2 40.9-44.1 40.9zm67.5 0h-16v-82h16zM544 433c0 8.2-6.8 15-15 15H128c189.6-35.6 382.7-139.2 416-160zM74.1 191.6c-5.2-4.9-11.6-6.6-21.9-6.6H48v54.2h4.2c10.3 0 17-2 21.9-6.4 5.7-5.2 8.9-12.8 8.9-20.7s-3.2-15.5-8.9-20.5z',
			),
		),
		'label'             => __( 'Discover Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-jcb'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M431.5 244.3V212c41.2 0 38.5 .2 38.5 .2 7.3 1.3 13.3 7.3 13.3 16 0 8.8-6 14.5-13.3 15.8-1.2 .4-3.3 .3-38.5 .3zm42.8 20.2c-2.8-.7-3.3-.5-42.8-.5v35c39.6 0 40 .2 42.8-.5 7.5-1.5 13.5-8 13.5-17 0-8.7-6-15.5-13.5-17zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM182 192.3h-57c0 67.1 10.7 109.7-35.8 109.7-19.5 0-38.8-5.7-57.2-14.8v28c30 8.3 68 8.3 68 8.3 97.9 0 82-47.7 82-131.2zm178.5 4.5c-63.4-16-165-14.9-165 59.3 0 77.1 108.2 73.6 165 59.2V287C312.9 311.7 253 309 253 256s59.8-55.6 107.5-31.2v-28zM544 286.5c0-18.5-16.5-30.5-38-32v-.8c19.5-2.7 30.3-15.5 30.3-30.2 0-19-15.7-30-37-31 0 0 6.3-.3-120.3-.3v127.5h122.7c24.3 .1 42.3-12.9 42.3-33.2z',
			),
		),
		'label'             => __( 'JCB Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-mastercard'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M482.9 410.3c0 6.8-4.6 11.7-11.2 11.7-6.8 0-11.2-5.2-11.2-11.7 0-6.5 4.4-11.7 11.2-11.7 6.6 0 11.2 5.2 11.2 11.7zm-310.8-11.7c-7.1 0-11.2 5.2-11.2 11.7 0 6.5 4.1 11.7 11.2 11.7 6.5 0 10.9-4.9 10.9-11.7-.1-6.5-4.4-11.7-10.9-11.7zm117.5-.3c-5.4 0-8.7 3.5-9.5 8.7h19.1c-.9-5.7-4.4-8.7-9.6-8.7zm107.8 .3c-6.8 0-10.9 5.2-10.9 11.7 0 6.5 4.1 11.7 10.9 11.7 6.8 0 11.2-4.9 11.2-11.7 0-6.5-4.4-11.7-11.2-11.7zm105.9 26.1c0 .3 .3 .5 .3 1.1 0 .3-.3 .5-.3 1.1-.3 .3-.3 .5-.5 .8-.3 .3-.5 .5-1.1 .5-.3 .3-.5 .3-1.1 .3-.3 0-.5 0-1.1-.3-.3 0-.5-.3-.8-.5-.3-.3-.5-.5-.5-.8-.3-.5-.3-.8-.3-1.1 0-.5 0-.8 .3-1.1 0-.5 .3-.8 .5-1.1 .3-.3 .5-.3 .8-.5 .5-.3 .8-.3 1.1-.3 .5 0 .8 0 1.1 .3 .5 .3 .8 .3 1.1 .5s.2 .6 .5 1.1zm-2.2 1.4c.5 0 .5-.3 .8-.3 .3-.3 .3-.5 .3-.8 0-.3 0-.5-.3-.8-.3 0-.5-.3-1.1-.3h-1.6v3.5h.8V426h.3l1.1 1.4h.8l-1.1-1.3zM576 81v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V81c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM64 220.6c0 76.5 62.1 138.5 138.5 138.5 27.2 0 53.9-8.2 76.5-23.1-72.9-59.3-72.4-171.2 0-230.5-22.6-15-49.3-23.1-76.5-23.1-76.4-.1-138.5 62-138.5 138.2zm224 108.8c70.5-55 70.2-162.2 0-217.5-70.2 55.3-70.5 162.6 0 217.5zm-142.3 76.3c0-8.7-5.7-14.4-14.7-14.7-4.6 0-9.5 1.4-12.8 6.5-2.4-4.1-6.5-6.5-12.2-6.5-3.8 0-7.6 1.4-10.6 5.4V392h-8.2v36.7h8.2c0-18.9-2.5-30.2 9-30.2 10.2 0 8.2 10.2 8.2 30.2h7.9c0-18.3-2.5-30.2 9-30.2 10.2 0 8.2 10 8.2 30.2h8.2v-23zm44.9-13.7h-7.9v4.4c-2.7-3.3-6.5-5.4-11.7-5.4-10.3 0-18.2 8.2-18.2 19.3 0 11.2 7.9 19.3 18.2 19.3 5.2 0 9-1.9 11.7-5.4v4.6h7.9V392zm40.5 25.6c0-15-22.9-8.2-22.9-15.2 0-5.7 11.9-4.8 18.5-1.1l3.3-6.5c-9.4-6.1-30.2-6-30.2 8.2 0 14.3 22.9 8.3 22.9 15 0 6.3-13.5 5.8-20.7 .8l-3.5 6.3c11.2 7.6 32.6 6 32.6-7.5zm35.4 9.3l-2.2-6.8c-3.8 2.1-12.2 4.4-12.2-4.1v-16.6h13.1V392h-13.1v-11.2h-8.2V392h-7.6v7.3h7.6V416c0 17.6 17.3 14.4 22.6 10.9zm13.3-13.4h27.5c0-16.2-7.4-22.6-17.4-22.6-10.6 0-18.2 7.9-18.2 19.3 0 20.5 22.6 23.9 33.8 14.2l-3.8-6c-7.8 6.4-19.6 5.8-21.9-4.9zm59.1-21.5c-4.6-2-11.6-1.8-15.2 4.4V392h-8.2v36.7h8.2V408c0-11.6 9.5-10.1 12.8-8.4l2.4-7.6zm10.6 18.3c0-11.4 11.6-15.1 20.7-8.4l3.8-6.5c-11.6-9.1-32.7-4.1-32.7 15 0 19.8 22.4 23.8 32.7 15l-3.8-6.5c-9.2 6.5-20.7 2.6-20.7-8.6zm66.7-18.3H408v4.4c-8.3-11-29.9-4.8-29.9 13.9 0 19.2 22.4 24.7 29.9 13.9v4.6h8.2V392zm33.7 0c-2.4-1.2-11-2.9-15.2 4.4V392h-7.9v36.7h7.9V408c0-11 9-10.3 12.8-8.4l2.4-7.6zm40.3-14.9h-7.9v19.3c-8.2-10.9-29.9-5.1-29.9 13.9 0 19.4 22.5 24.6 29.9 13.9v4.6h7.9v-51.7zm7.6-75.1v4.6h.8V302h1.9v-.8h-4.6v.8h1.9zm6.6 123.8c0-.5 0-1.1-.3-1.6-.3-.3-.5-.8-.8-1.1-.3-.3-.8-.5-1.1-.8-.5 0-1.1-.3-1.6-.3-.3 0-.8 .3-1.4 .3-.5 .3-.8 .5-1.1 .8-.5 .3-.8 .8-.8 1.1-.3 .5-.3 1.1-.3 1.6 0 .3 0 .8 .3 1.4 0 .3 .3 .8 .8 1.1 .3 .3 .5 .5 1.1 .8 .5 .3 1.1 .3 1.4 .3 .5 0 1.1 0 1.6-.3 .3-.3 .8-.5 1.1-.8 .3-.3 .5-.8 .8-1.1 .3-.6 .3-1.1 .3-1.4zm3.2-124.7h-1.4l-1.6 3.5-1.6-3.5h-1.4v5.4h.8v-4.1l1.6 3.5h1.1l1.4-3.5v4.1h1.1v-5.4zm4.4-80.5c0-76.2-62.1-138.3-138.5-138.3-27.2 0-53.9 8.2-76.5 23.1 72.1 59.3 73.2 171.5 0 230.5 22.6 15 49.5 23.1 76.5 23.1 76.4 .1 138.5-61.9 138.5-138.4z',
			),
		),
		'label'             => __( 'MasterCard Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-paypal'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M186.3 258.2c0 12.2-9.7 21.5-22 21.5-9.2 0-16-5.2-16-15 0-12.2 9.5-22 21.7-22 9.3 0 16.3 5.7 16.3 15.5zM80.5 209.7h-4.7c-1.5 0-3 1-3.2 2.7l-4.3 26.7 8.2-.3c11 0 19.5-1.5 21.5-14.2 2.3-13.4-6.2-14.9-17.5-14.9zm284 0H360c-1.8 0-3 1-3.2 2.7l-4.2 26.7 8-.3c13 0 22-3 22-18-.1-10.6-9.6-11.1-18.1-11.1zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM128.3 215.4c0-21-16.2-28-34.7-28h-40c-2.5 0-5 2-5.2 4.7L32 294.2c-.3 2 1.2 4 3.2 4h19c2.7 0 5.2-2.9 5.5-5.7l4.5-26.6c1-7.2 13.2-4.7 18-4.7 28.6 0 46.1-17 46.1-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.2 8.2-5.8-8.5-14.2-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9 0 20.2-4.9 26.5-11.9-.5 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H200c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm40.5 97.9l63.7-92.6c.5-.5 .5-1 .5-1.7 0-1.7-1.5-3.5-3.2-3.5h-19.2c-1.7 0-3.5 1-4.5 2.5l-26.5 39-11-37.5c-.8-2.2-3-4-5.5-4h-18.7c-1.7 0-3.2 1.8-3.2 3.5 0 1.2 19.5 56.8 21.2 62.1-2.7 3.8-20.5 28.6-20.5 31.6 0 1.8 1.5 3.2 3.2 3.2h19.2c1.8-.1 3.5-1.1 4.5-2.6zm159.3-106.7c0-21-16.2-28-34.7-28h-39.7c-2.7 0-5.2 2-5.5 4.7l-16.2 102c-.2 2 1.3 4 3.2 4h20.5c2 0 3.5-1.5 4-3.2l4.5-29c1-7.2 13.2-4.7 18-4.7 28.4 0 45.9-17 45.9-45.8zm84.2 8.8h-19c-3.8 0-4 5.5-4.3 8.2-5.5-8.5-14-10-23.7-10-24.5 0-43.2 21.5-43.2 45.2 0 19.5 12.2 32.2 31.7 32.2 9.3 0 20.5-4.9 26.5-11.9-.3 1.5-1 4.7-1 6.2 0 2.3 1 4 3.2 4H484c2.7 0 5-2.9 5.5-5.7l10.2-64.3c.3-1.9-1.2-3.9-3.2-3.9zm47.5-33.3c0-2-1.5-3.5-3.2-3.5h-18.5c-1.5 0-3 1.2-3.2 2.7l-16.2 104-.3 .5c0 1.8 1.5 3.5 3.5 3.5h16.5c2.5 0 5-2.9 5.2-5.7L544 191.2v-.3zm-90 51.8c-12.2 0-21.7 9.7-21.7 22 0 9.7 7 15 16.2 15 12 0 21.7-9.2 21.7-21.5 .1-9.8-6.9-15.5-16.2-15.5z',
			),
		),
		'label'             => __( 'Paypal Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cc-stripe'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M492.4 220.8c-8.9 0-18.7 6.7-18.7 22.7h36.7c0-16-9.3-22.7-18-22.7zM375 223.4c-8.2 0-13.3 2.9-17 7l.2 52.8c3.5 3.7 8.5 6.7 16.8 6.7 13.1 0 21.9-14.3 21.9-33.4 0-18.6-9-33.2-21.9-33.1zM528 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h480c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM122.2 281.1c0 25.6-20.3 40.1-49.9 40.3-12.2 0-25.6-2.4-38.8-8.1v-33.9c12 6.4 27.1 11.3 38.9 11.3 7.9 0 13.6-2.1 13.6-8.7 0-17-54-10.6-54-49.9 0-25.2 19.2-40.2 48-40.2 11.8 0 23.5 1.8 35.3 6.5v33.4c-10.8-5.8-24.5-9.1-35.3-9.1-7.5 0-12.1 2.2-12.1 7.7 0 16 54.3 8.4 54.3 50.7zm68.8-56.6h-27V275c0 20.9 22.5 14.4 27 12.6v28.9c-4.7 2.6-13.3 4.7-24.9 4.7-21.1 0-36.9-15.5-36.9-36.5l.2-113.9 34.7-7.4v30.8H191zm74 2.4c-4.5-1.5-18.7-3.6-27.1 7.4v84.4h-35.5V194.2h30.7l2.2 10.5c8.3-15.3 24.9-12.2 29.6-10.5h.1zm44.1 91.8h-35.7V194.2h35.7zm0-142.9l-35.7 7.6v-28.9l35.7-7.6zm74.1 145.5c-12.4 0-20-5.3-25.1-9l-.1 40.2-35.5 7.5V194.2h31.3l1.8 8.8c4.9-4.5 13.9-11.1 27.8-11.1 24.9 0 48.4 22.5 48.4 63.8 0 45.1-23.2 65.5-48.6 65.6zm160.4-51.5h-69.5c1.6 16.6 13.8 21.5 27.6 21.5 14.1 0 25.2-3 34.9-7.9V312c-9.7 5.3-22.4 9.2-39.4 9.2-34.6 0-58.8-21.7-58.8-64.5 0-36.2 20.5-64.9 54.3-64.9 33.7 0 51.3 28.7 51.3 65.1 0 3.5-.3 10.9-.4 12.9z',
			),
		),
		'label'             => __( 'Stripe Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'brands', 'brands', 'social', 'social', 'social' ),
	),
	'cc-visa'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M470.1 231.3s7.6 37.2 9.3 45H446c3.3-8.9 16-43.5 16-43.5-.2 .3 3.3-9.1 5.3-14.9l2.8 13.4zM576 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h480c26.5 0 48 21.5 48 48zM152.5 331.2L215.7 176h-42.5l-39.3 106-4.3-21.5-14-71.4c-2.3-9.9-9.4-12.7-18.2-13.1H32.7l-.7 3.1c15.8 4 29.9 9.8 42.2 17.1l35.8 135h42.5zm94.4 .2L272.1 176h-40.2l-25.1 155.4h40.1zm139.9-50.8c.2-17.7-10.6-31.2-33.7-42.3-14.1-7.1-22.7-11.9-22.7-19.2 .2-6.6 7.3-13.4 23.1-13.4 13.1-.3 22.7 2.8 29.9 5.9l3.6 1.7 5.5-33.6c-7.9-3.1-20.5-6.6-36-6.6-39.7 0-67.6 21.2-67.8 51.4-.3 22.3 20 34.7 35.2 42.2 15.5 7.6 20.8 12.6 20.8 19.3-.2 10.4-12.6 15.2-24.1 15.2-16 0-24.6-2.5-37.7-8.3l-5.3-2.5-5.6 34.9c9.4 4.3 26.8 8.1 44.8 8.3 42.2 .1 69.7-20.8 70-53zM528 331.4L495.6 176h-31.1c-9.6 0-16.9 2.8-21 12.9l-59.7 142.5H426s6.9-19.2 8.4-23.3H486c1.2 5.5 4.8 23.3 4.8 23.3H528z',
			),
		),
		'label'             => __( 'Visa Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'cedi-sign'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M224 66.66C254.9 71.84 283.2 84.39 307.2 102.4C321.4 113 324.2 133.1 313.6 147.2C302.1 161.4 282.9 164.2 268.8 153.6C255.6 143.7 240.4 136.3 224 132V379.1C240.4 375.7 255.6 368.3 268.8 358.4C282.9 347.8 302.1 350.6 313.6 364.8C324.2 378.9 321.4 398.1 307.2 409.6C283.2 427.6 254.9 440.2 224 445.3V480C224 497.7 209.7 512 192 512C174.3 512 160 497.7 160 480V445.3C69.19 430.1 0 351.1 0 256C0 160.9 69.19 81.89 160 66.65V32C160 14.33 174.3 0 192 0C209.7 0 224 14.33 224 32V66.66zM160 132C104.8 146.2 64 196.4 64 255.1C64 315.6 104.8 365.8 160 379.1V132z',
			),
		),
		'label'             => __( 'Cedi Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'cent-sign'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M192 0C209.7 0 224 14.33 224 32V66.66C254.9 71.84 283.2 84.39 307.2 102.4C321.4 113 324.2 133.1 313.6 147.2C302.1 161.4 282.9 164.2 268.8 153.6C247.4 137.5 220.9 128 192 128C121.3 128 64 185.3 64 256C64 326.7 121.3 384 192 384C220.9 384 247.4 374.5 268.8 358.4C282.9 347.8 302.1 350.6 313.6 364.8C324.2 378.9 321.4 398.1 307.2 409.6C283.2 427.6 254.9 440.2 224 445.3V480C224 497.7 209.7 512 192 512C174.3 512 160 497.7 160 480V445.3C69.19 430.1 0 351.1 0 256C0 160.9 69.19 81.89 160 66.66V32C160 14.33 174.3 .0006 192 .0006V0z',
			),
		),
		'label'             => __( 'Cent Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'centercode'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M329.2 268.6c-3.8 35.2-35.4 60.6-70.6 56.8-35.2-3.8-60.6-35.4-56.8-70.6 3.8-35.2 35.4-60.6 70.6-56.8 35.1 3.8 60.6 35.4 56.8 70.6zm-85.8 235.1C96.7 496-8.2 365.5 10.1 224.3c11.2-86.6 65.8-156.9 139.1-192 161-77.1 349.7 37.4 354.7 216.6 4.1 147-118.4 262.2-260.5 254.8zm179.9-180c27.9-118-160.5-205.9-237.2-234.2-57.5 56.3-69.1 188.6-33.8 344.4 68.8 15.8 169.1-26.4 271-110.2z',
			),
		),
		'label'             => __( 'Centercode', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'centos'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M289.6 97.5l31.6 31.7-76.3 76.5V97.5zm-162.4 31.7l76.3 76.5V97.5h-44.7zm41.5-41.6h44.7v127.9l10.8 10.8 10.8-10.8V87.6h44.7L224.2 32zm26.2 168.1l-10.8-10.8H55.5v-44.8L0 255.7l55.5 55.6v-44.8h128.6l10.8-10.8zm79.3-20.7h107.9v-44.8l-31.6-31.7zm173.3 20.7L392 200.1v44.8H264.3l-10.8 10.8 10.8 10.8H392v44.8l55.5-55.6zM65.4 176.2l32.5-31.7 90.3 90.5h15.3v-15.3l-90.3-90.5 31.6-31.7H65.4zm316.7-78.7h-78.5l31.6 31.7-90.3 90.5V235h15.3l90.3-90.5 31.6 31.7zM203.5 413.9V305.8l-76.3 76.5 31.6 31.7h44.7zM65.4 235h108.8l-76.3-76.5-32.5 31.7zm316.7 100.2l-31.6 31.7-90.3-90.5h-15.3v15.3l90.3 90.5-31.6 31.7h78.5zm0-58.8H274.2l76.3 76.5 31.6-31.7zm-60.9 105.8l-76.3-76.5v108.1h44.7zM97.9 352.9l76.3-76.5H65.4v44.8zm181.8 70.9H235V295.9l-10.8-10.8-10.8 10.8v127.9h-44.7l55.5 55.6zm-166.5-41.6l90.3-90.5v-15.3h-15.3l-90.3 90.5-32.5-31.7v78.7h79.4z',
			),
		),
		'label'             => __( 'Centos', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'certificate'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 53.46L300.1 7.261C307 1.034 315.1-1.431 324.4 .8185C332.8 3.068 339.3 9.679 341.4 18.1L357.3 80.6L419.3 63.07C427.7 60.71 436.7 63.05 442.8 69.19C448.1 75.34 451.3 84.33 448.9 92.69L431.4 154.7L493.9 170.6C502.3 172.7 508.9 179.2 511.2 187.6C513.4 196 510.1 204.1 504.7 211L458.5 256L504.7 300.1C510.1 307 513.4 315.1 511.2 324.4C508.9 332.8 502.3 339.3 493.9 341.4L431.4 357.3L448.9 419.3C451.3 427.7 448.1 436.7 442.8 442.8C436.7 448.1 427.7 451.3 419.3 448.9L357.3 431.4L341.4 493.9C339.3 502.3 332.8 508.9 324.4 511.2C315.1 513.4 307 510.1 300.1 504.7L256 458.5L211 504.7C204.1 510.1 196 513.4 187.6 511.2C179.2 508.9 172.7 502.3 170.6 493.9L154.7 431.4L92.69 448.9C84.33 451.3 75.34 448.1 69.19 442.8C63.05 436.7 60.71 427.7 63.07 419.3L80.6 357.3L18.1 341.4C9.679 339.3 3.068 332.8 .8186 324.4C-1.431 315.1 1.034 307 7.261 300.1L53.46 256L7.261 211C1.034 204.1-1.431 196 .8186 187.6C3.068 179.2 9.679 172.7 18.1 170.6L80.6 154.7L63.07 92.69C60.71 84.33 63.05 75.34 69.19 69.19C75.34 63.05 84.33 60.71 92.69 63.07L154.7 80.6L170.6 18.1C172.7 9.679 179.2 3.068 187.6 .8185C196-1.431 204.1 1.034 211 7.261L256 53.46z',
			),
		),
		'label'             => __( 'Certificate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design', 'lifestyle-and-hobbies' ),
	),
	'chair'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M445.1 338.6l-14.77-32C425.1 295.3 413.7 288 401.2 288H46.76C34.28 288 22.94 295.3 17.7 306.6l-14.77 32c-4.563 9.906-3.766 21.47 2.109 30.66S21.09 384 31.1 384l.001 112c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16V384h256v112c0 8.836 7.164 16 16 16h31.1c8.838 0 16-7.164 16-16L416 384c10.91 0 21.08-5.562 26.95-14.75S449.6 348.5 445.1 338.6zM111.1 128c0-29.48 16.2-54.1 40-68.87L151.1 256h48l.0092-208h48L247.1 256h48l.0093-196.9C319.8 73 335.1 98.52 335.1 128l-.0094 128h48.03l-.0123-128c0-70.69-57.31-128-128-128H191.1C121.3 0 63.98 57.31 63.98 128l.0158 128h47.97L111.1 128z',
			),
		),
		'label'             => __( 'Chair', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chalkboard'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 96h384v288h64V72C544 50 525.1 32 504 32H72C49.1 32 32 50 32 72V384h64V96zM560 416H416v-48c0-8.838-7.164-16-16-16h-160C231.2 352 224 359.2 224 368V416H16C7.164 416 0 423.2 0 432v32C0 472.8 7.164 480 16 480h544c8.836 0 16-7.164 16-16v-32C576 423.2 568.8 416 560 416z',
			),
		),
		'label'             => __( 'Chalkboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'education' ),
	),
	'chalkboard-user'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M592 0h-384C181.5 0 160 22.25 160 49.63V96c23.42 0 45.1 6.781 63.1 17.81V64h352v288h-64V304c0-8.838-7.164-16-16-16h-96c-8.836 0-16 7.162-16 16V352H287.3c22.07 16.48 39.54 38.5 50.76 64h253.9C618.5 416 640 393.8 640 366.4V49.63C640 22.25 618.5 0 592 0zM160 320c53.02 0 96-42.98 96-96c0-53.02-42.98-96-96-96C106.1 128 64 170.1 64 224C64 277 106.1 320 160 320zM192 352H128c-70.69 0-128 57.31-128 128c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32C320 409.3 262.7 352 192 352z',
			),
		),
		'label'             => __( 'Chalkboard User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'champagne-glasses'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M639.4 433.6c-8.374-20.37-31.75-30.12-52.12-21.62l-22.12 9.249l-38.75-101.1c47.87-34.1 64.87-100.2 34.5-152.7l-86.62-150.5c-7.999-13.87-24.1-19.75-39.1-13.62l-114.2 47.37L205.8 2.415C190.8-3.71 173.8 2.165 165.8 16.04L79.15 166.5C48.9 219 65.78 284.3 113.6 319.2l-38.75 101.9L52.78 411.9c-20.37-8.499-43.62 1.25-52.12 21.62c-1.75 4.124 .125 8.749 4.25 10.5l162.4 67.37c3.1 1.75 8.624-.125 10.37-4.249c8.374-20.37-1.25-43.87-21.62-52.37l-22.12-9.124l39.37-103.6c4.5 .4999 8.874 1.25 13.12 1.25c51.75 0 99.37-32.1 113.4-85.24l20.25-75.36l20.25 75.36c13.1 52.24 61.62 85.24 113.4 85.24c4.25 0 8.624-.7499 13.12-1.25l39.25 103.6l-22.12 9.124c-20.37 8.499-30.12 31.1-21.62 52.37c1.75 4.124 6.5 5.999 10.5 4.249l162.4-67.37C639.1 442.2 641.1 437.7 639.4 433.6zM275.9 162.1L163.8 115.6l36.5-63.37L294.8 91.4L275.9 162.1zM364.1 162.1l-18.87-70.74l94.49-39.12l36.5 63.37L364.1 162.1z',
			),
		),
		'label'             => __( 'Champagne Glasses', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'charging-station'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 0C291.3 0 320 28.65 320 64V256H336C384.6 256 424 295.4 424 344V376C424 389.3 434.7 400 448 400C461.3 400 472 389.3 472 376V252.3C439.5 242.1 416 211.8 416 176V144C416 135.2 423.2 128 432 128H448V80C448 71.16 455.2 64 464 64C472.8 64 480 71.16 480 80V128H512V80C512 71.16 519.2 64 528 64C536.8 64 544 71.16 544 80V128H560C568.8 128 576 135.2 576 144V176C576 211.8 552.5 242.1 520 252.3V376C520 415.8 487.8 448 448 448C408.2 448 376 415.8 376 376V344C376 321.9 358.1 304 336 304H320V448C337.7 448 352 462.3 352 480C352 497.7 337.7 512 320 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448V64C32 28.65 60.65 0 96 0H256zM197.6 83.85L85.59 179.9C80.5 184.2 78.67 191.3 80.99 197.6C83.32 203.8 89.3 208 95.1 208H153.8L128.8 282.9C126.5 289.8 129.1 297.3 135.1 301.3C141 305.3 148.1 304.8 154.4 300.1L266.4 204.1C271.5 199.8 273.3 192.7 271 186.4C268.7 180.2 262.7 176 256 176H198.2L223.2 101.1C225.5 94.24 222.9 86.74 216.9 82.72C210.1 78.71 203 79.17 197.6 83.85V83.85z',
			),
		),
		'label'             => __( 'Charging Station', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'chart-area'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32C49.67 32 64 46.33 64 64V400zM128 320V236C128 228.3 130.8 220.8 135.9 214.1L215.3 124.2C228.3 109.4 251.4 109.7 263.1 124.8L303.2 171.8C312.2 182.7 328.6 183.4 338.6 173.4L359.6 152.4C372.7 139.3 394.4 140.1 406.5 154.2L472.3 231C477.3 236.8 480 244.2 480 251.8V320C480 337.7 465.7 352 448 352H159.1C142.3 352 127.1 337.7 127.1 320L128 320z',
			),
		),
		'label'             => __( 'Chart Area', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chart-bar'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 32C49.67 32 64 46.33 64 64V400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32zM128 128C128 110.3 142.3 96 160 96H352C369.7 96 384 110.3 384 128C384 145.7 369.7 160 352 160H160C142.3 160 128 145.7 128 128zM288 192C305.7 192 320 206.3 320 224C320 241.7 305.7 256 288 256H160C142.3 256 128 241.7 128 224C128 206.3 142.3 192 160 192H288zM416 288C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352H160C142.3 352 128 337.7 128 320C128 302.3 142.3 288 160 288H416z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M24 32C37.25 32 48 42.75 48 56V408C48 421.3 58.75 432 72 432H488C501.3 432 512 442.7 512 456C512 469.3 501.3 480 488 480H72C32.24 480 0 447.8 0 408V56C0 42.75 10.75 32 24 32zM128 136C128 122.7 138.7 112 152 112H360C373.3 112 384 122.7 384 136C384 149.3 373.3 160 360 160H152C138.7 160 128 149.3 128 136zM296 208C309.3 208 320 218.7 320 232C320 245.3 309.3 256 296 256H152C138.7 256 128 245.3 128 232C128 218.7 138.7 208 152 208H296zM424 304C437.3 304 448 314.7 448 328C448 341.3 437.3 352 424 352H152C138.7 352 128 341.3 128 328C128 314.7 138.7 304 152 304H424z',
			),
		),
		'label'             => __( 'Chart Bar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chart-column'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 32C49.67 32 64 46.33 64 64V400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32zM160 224C177.7 224 192 238.3 192 256V320C192 337.7 177.7 352 160 352C142.3 352 128 337.7 128 320V256C128 238.3 142.3 224 160 224zM288 320C288 337.7 273.7 352 256 352C238.3 352 224 337.7 224 320V160C224 142.3 238.3 128 256 128C273.7 128 288 142.3 288 160V320zM352 192C369.7 192 384 206.3 384 224V320C384 337.7 369.7 352 352 352C334.3 352 320 337.7 320 320V224C320 206.3 334.3 192 352 192zM480 320C480 337.7 465.7 352 448 352C430.3 352 416 337.7 416 320V96C416 78.33 430.3 64 448 64C465.7 64 480 78.33 480 96V320z',
			),
		),
		'label'             => __( 'Chart Column', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chart-gantt'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 32C49.67 32 64 46.33 64 64V400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32zM128 128C128 110.3 142.3 96 160 96H256C273.7 96 288 110.3 288 128C288 145.7 273.7 160 256 160H160C142.3 160 128 145.7 128 128zM352 192C369.7 192 384 206.3 384 224C384 241.7 369.7 256 352 256H224C206.3 256 192 241.7 192 224C192 206.3 206.3 192 224 192H352zM448 288C465.7 288 480 302.3 480 320C480 337.7 465.7 352 448 352H384C366.3 352 352 337.7 352 320C352 302.3 366.3 288 384 288H448z',
			),
		),
		'label'             => __( 'Chart Gantt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chart-line'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 400C64 408.8 71.16 416 80 416H480C497.7 416 512 430.3 512 448C512 465.7 497.7 480 480 480H80C35.82 480 0 444.2 0 400V64C0 46.33 14.33 32 32 32C49.67 32 64 46.33 64 64V400zM342.6 278.6C330.1 291.1 309.9 291.1 297.4 278.6L240 221.3L150.6 310.6C138.1 323.1 117.9 323.1 105.4 310.6C92.88 298.1 92.88 277.9 105.4 265.4L217.4 153.4C229.9 140.9 250.1 140.9 262.6 153.4L320 210.7L425.4 105.4C437.9 92.88 458.1 92.88 470.6 105.4C483.1 117.9 483.1 138.1 470.6 150.6L342.6 278.6z',
			),
		),
		'label'             => __( 'Chart Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'chart-pie'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M304 16.58C304 7.555 310.1 0 320 0C443.7 0 544 100.3 544 224C544 233 536.4 240 527.4 240H304V16.58zM32 272C32 150.7 122.1 50.34 238.1 34.25C248.2 32.99 256 40.36 256 49.61V288L412.5 444.5C419.2 451.2 418.7 462.2 411 467.7C371.8 495.6 323.8 512 272 512C139.5 512 32 404.6 32 272zM558.4 288C567.6 288 575 295.8 573.8 305C566.1 360.9 539.1 410.6 499.9 447.3C493.9 452.1 484.5 452.5 478.7 446.7L320 288H558.4z',
			),
		),
		'label'             => __( 'Chart Pie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'chart-simple'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 80C160 53.49 181.5 32 208 32H240C266.5 32 288 53.49 288 80V432C288 458.5 266.5 480 240 480H208C181.5 480 160 458.5 160 432V80zM0 272C0 245.5 21.49 224 48 224H80C106.5 224 128 245.5 128 272V432C128 458.5 106.5 480 80 480H48C21.49 480 0 458.5 0 432V272zM400 96C426.5 96 448 117.5 448 144V432C448 458.5 426.5 480 400 480H368C341.5 480 320 458.5 320 432V144C320 117.5 341.5 96 368 96H400z',
			),
		),
		'label'             => __( 'Chart Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'check'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z',
			),
		),
		'label'             => __( 'Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'check-double'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M182.6 246.6C170.1 259.1 149.9 259.1 137.4 246.6L57.37 166.6C44.88 154.1 44.88 133.9 57.37 121.4C69.87 108.9 90.13 108.9 102.6 121.4L159.1 178.7L297.4 41.37C309.9 28.88 330.1 28.88 342.6 41.37C355.1 53.87 355.1 74.13 342.6 86.63L182.6 246.6zM182.6 470.6C170.1 483.1 149.9 483.1 137.4 470.6L9.372 342.6C-3.124 330.1-3.124 309.9 9.372 297.4C21.87 284.9 42.13 284.9 54.63 297.4L159.1 402.7L393.4 169.4C405.9 156.9 426.1 156.9 438.6 169.4C451.1 181.9 451.1 202.1 438.6 214.6L182.6 470.6z',
			),
		),
		'label'             => __( 'Check Double', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'check-to-slot'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M480 80C480 53.49 458.5 32 432 32h-288C117.5 32 96 53.49 96 80V384h384V80zM378.9 166.8l-88 112c-4.031 5.156-10 8.438-16.53 9.062C273.6 287.1 272.7 287.1 271.1 287.1c-5.719 0-11.21-2.019-15.58-5.769l-56-48C190.3 225.6 189.2 210.4 197.8 200.4c8.656-10.06 23.81-11.19 33.84-2.594l36.97 31.69l72.53-92.28c8.188-10.41 23.31-12.22 33.69-4.062C385.3 141.3 387.1 156.4 378.9 166.8zM528 288H512v112c0 8.836-7.164 16-16 16h-416C71.16 416 64 408.8 64 400V288H48C21.49 288 0 309.5 0 336v96C0 458.5 21.49 480 48 480h480c26.51 0 48-21.49 48-48v-96C576 309.5 554.5 288 528 288z',
			),
		),
		'label'             => __( 'Check To Slot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'cheese'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 288v159.1C0 465.6 14.38 480 32 480h448c17.62 0 32-14.38 32-31.1V288H0zM299.9 32.01c-7.75-.25-15.25 2.25-21.12 6.1L0 255.1l512-.0118C512 136.1 417.1 38.26 299.9 32.01z',
			),
		),
		'label'             => __( 'Cheese', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M74.01 208h-10c-8.875 0-16 7.125-16 16v16c0 8.875 7.122 16 15.1 16h16c-.25 43.13-5.5 86.13-16 128h128c-10.5-41.88-15.75-84.88-16-128h15.1c8.875 0 16-7.125 16-16L208 224c0-8.875-7.122-16-15.1-16h-10l33.88-90.38C216.6 115.8 216.9 113.1 216.9 112.1C216.9 103.1 209.5 96 200.9 96H144V64h16c8.844 0 16-7.156 16-16S168.9 32 160 32h-16l.0033-16c0-8.844-7.16-16-16-16s-16 7.156-16 16V32H96.01c-8.844 0-16 7.156-16 16S87.16 64 96.01 64h16v32H55.13C46.63 96 39.07 102.8 39.07 111.9c0 1.93 .3516 3.865 1.061 5.711L74.01 208zM339.9 301.8L336.6 384h126.8l-3.25-82.25l24.5-20.75C491.9 274.9 496 266 496 256.5V198C496 194.6 493.4 192 489.1 192h-26.37c-3.375 0-6 2.625-6 6V224h-24.75V198C432.9 194.6 430.3 192 426.9 192h-53.75c-3.375 0-6 2.625-6 6V224h-24.75V198C342.4 194.6 339.8 192 336.4 192h-26.38C306.6 192 304 194.6 304 198v58.62c0 9.375 4.125 18.25 11.38 24.38L339.9 301.8zM384 304C384 295.1 391.1 288 400 288S416 295.1 416 304v32h-32V304zM247.1 459.6L224 448v-16C224 423.1 216.9 416 208 416h-160C39.13 416 32 423.1 32 432V448l-23.12 11.62C3.375 462.3 0 467.9 0 473.9V496C0 504.9 7.125 512 16 512h224c8.875 0 16-7.125 16-16v-22.12C256 467.9 252.6 462.3 247.1 459.6zM503.1 459.6L480 448v-16c0-8.875-7.125-16-16-16h-128c-8.875 0-16 7.125-16 16V448l-23.12 11.62C291.4 462.3 288 467.9 288 473.9V496c0 8.875 7.125 16 16 16h192c8.875 0 16-7.125 16-16v-22.12C512 467.9 508.6 462.3 503.1 459.6z',
			),
		),
		'label'             => __( 'Chess', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-bishop'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M272 448h-224C21.49 448 0 469.5 0 496C0 504.8 7.164 512 16 512h288c8.836 0 16-7.164 16-16C320 469.5 298.5 448 272 448zM8 287.9c0 51.63 22.12 73.88 56 84.63V416h192v-43.5c33.88-10.75 56-33 56-84.63c0-30.62-10.75-67.13-26.75-102.5L185 285.6c-1.565 1.565-3.608 2.349-5.651 2.349c-2.036 0-4.071-.7787-5.63-2.339l-11.35-11.27c-1.56-1.56-2.339-3.616-2.339-5.672c0-2.063 .7839-4.128 2.349-5.693l107.9-107.9C249.5 117.3 223.8 83 199.4 62.5C213.4 59.13 224 47 224 32c0-17.62-14.38-32-32-32H128C110.4 0 96 14.38 96 32c0 15 10.62 27.12 24.62 30.5C67.75 106.8 8 214.5 8 287.9z',
			),
			'regular' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M296 464H23.1C10.75 464 0 474.7 0 487.1S10.75 512 23.1 512h272C309.3 512 320 501.3 320 488S309.3 464 296 464zM0 304c0 51.63 30.12 85.25 64 96v32h48v-67.13l-33.5-10.63C63.75 349.5 48 333.9 48 304c0-84.1 93.2-206.5 112.6-206.5c19.63 0 60.01 67.18 70.28 85.8l-66.13 66.13c-3.125 3.125-4.688 7.219-4.688 11.31S161.6 268.9 164.8 272L176 283.2c3.125 3.125 7.219 4.688 11.31 4.688s8.188-1.562 11.31-4.688L253 229C264.4 256.8 272 283.5 272 304c0 29.88-15.75 45.5-30.5 50.25L208 364.9V432H256v-32c33.88-10.75 64-44.38 64-96c0-73.38-67.75-197.2-120.6-241.5C213.4 59.12 224 47 224 32c0-17.62-14.38-32-32-32H128C110.4 0 96 14.38 96 32c0 15 10.62 27.12 24.62 30.5C67.75 106.8 0 230.6 0 304z',
			),
		),
		'label'             => __( 'Chess Bishop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-board'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M192 224H128v64h64V224zM384 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V96C448 60.65 419.3 32 384 32zM384 160h-64v64h64v64h-64v64h64v64h-64v-64h-64v64H192v-64H128v64H64v-64h64V288H64V224h64V160H64V96h64v64h64V96h64v64h64V96h64V160zM192 288v64h64V288H192zM256 224V160H192v64H256zM256 288h64V224h-64V288z',
			),
		),
		'label'             => __( 'Chess Board', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-king'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M367.1 448H79.97c-26.51 0-48.01 21.49-48.01 47.1C31.96 504.8 39.13 512 47.96 512h352c8.838 0 16-7.163 16-16C416 469.5 394.5 448 367.1 448zM416.1 160h-160V112h16.01c17.6 0 31.98-14.4 31.98-32C303.1 62.4 289.6 48 272 48h-16.01V32C256 14.4 241.6 0 223.1 0C206.4 0 191.1 14.4 191.1 32.01V48H175.1c-17.6 0-32.01 14.4-32.01 32C143.1 97.6 158.4 112 175.1 112h16.01V160h-160C17.34 160 0 171.5 0 192C0 195.2 .4735 198.4 1.437 201.5L74.46 416h299.1l73.02-214.5C447.5 198.4 448 195.2 448 192C448 171.6 430.1 160 416.1 160z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M391.9 464H55.95c-13.25 0-23.1 10.75-23.1 23.1S42.7 512 55.95 512h335.1c13.25 0 23.1-10.75 23.1-23.1S405.2 464 391.9 464zM448 216c0-11.82-3.783-23.51-11.08-33.17c-10.3-14.39-27-22.88-44.73-22.88L247.9 160V104h31.1c13.2 0 24.06-10.8 24.06-24S293.1 56 279.9 56h-31.1V23.1C247.9 10.8 237.2 0 223.1 0S199.9 10.8 199.9 23.1V56H167.9c-13.2 0-23.97 10.8-23.97 24S154.7 104 167.9 104h31.1V160H55.95C24.72 160 0 185.3 0 215.9C0 221.6 .8893 227.4 2.704 233L68.45 432h50.5L48.33 218.4C48.09 217.6 47.98 216.9 47.98 216.1C47.98 212.3 50.93 208 55.95 208h335.9c6.076 0 8.115 5.494 8.115 8.113c0 .6341-.078 1.269-.2405 1.887L328.8 432h50.62l65.1-199.2C447.2 227.3 448 221.7 448 216z',
			),
		),
		'label'             => __( 'Chess King', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-knight'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M19 272.5l40.62 18C63.78 292.3 68.25 293.3 72.72 293.3c4 0 8.001-.7543 11.78-2.289l12.75-5.125c9.125-3.625 16-11.12 18.75-20.5L125.2 234.8C127 227.9 131.5 222.2 137.9 219.1L160 208v50.38C160 276.5 149.6 293.1 133.4 301.2L76.25 329.9C49.12 343.5 32 371.1 32 401.5V416h319.9l-.0417-192c0-105.1-85.83-192-191.8-192H12C5.375 32 0 37.38 0 44c0 2.625 .625 5.25 1.75 7.625L16 80L7 89C2.5 93.5 0 99.62 0 106V243.2C0 255.9 7.5 267.4 19 272.5zM52 128C63 128 72 137 72 148S63 168 52 168S32 159 32 148S41 128 52 128zM336 448H47.1C21.49 448 0 469.5 0 495.1C0 504.8 7.163 512 16 512h352c8.837 0 16-7.163 16-16C384 469.5 362.5 448 336 448z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M44 320.6l14.5 6.5c-17.01 20.24-26.44 45.91-26.44 72.35C32.06 399.7 32.12 432 32.12 432h48v-32c0-24.75 14-47.5 36.13-58.63l38.13-23.37c13.25-6.625 21.75-20.25 21.75-35.13v-58.75l-15.37 9C155.6 235.8 151.9 240.4 150.5 245.9L143 271c-2.25 7.625-8 13.88-15.38 16.75L117.1 292C114 293.3 110.7 293.9 107.4 293.9c-3.626 0-7.263-.7514-10.66-2.254L63.5 276.9C54.12 272.6 48 263.2 48 252.9V140.5c0-5.125 2.125-10.12 5.75-13.88l7.375-7.375L49.5 96C48.5 94.12 48 92 48 89.88C48 84.38 52.38 80 57.88 80h105c86.75 0 156.1 70.38 156.1 157.1V432h48.06l-.0625-194.9C367.9 124 276 32 162.9 32H57.88C25.88 32 0 57.88 0 89.88c0 8.5 1.75 16.88 5.125 24.62C1.75 122.8 0 131.6 0 140.5v112.4C0 282.2 17.25 308.8 44 320.6zM80.12 164c0 11 8.875 20 20 20c11 0 20-9 20-20s-9-20-20-20C89 144 80.12 153 80.12 164zM360 464H23.1C10.75 464 0 474.7 0 487.1S10.75 512 23.1 512H360C373.3 512 384 501.3 384 488S373.3 464 360 464z',
			),
		),
		'label'             => __( 'Chess Knight', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-pawn'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M105.1 224H80C71.12 224 64 231.1 64 240v32c0 8.875 7.125 15.1 16 15.1L96 288v5.5C96 337.5 91.88 380.1 72 416h176C228.1 380.1 224 337.5 224 293.5V288l16-.0001c8.875 0 16-7.125 16-15.1v-32C256 231.1 248.9 224 240 224h-25.12C244.3 205.6 264 173.2 264 136C264 78.5 217.5 32 159.1 32S56 78.5 56 136C56 173.2 75.74 205.6 105.1 224zM272 448H47.1C21.49 448 0 469.5 0 495.1C0 504.8 7.163 512 16 512h288c8.837 0 16-7.163 16-16C320 469.5 298.5 448 272 448z',
			),
			'regular' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M296 463.1H23.1c-13.25 0-23.1 10.75-23.1 24s10.75 24 23.1 24h272c13.25 0 23.1-10.75 23.1-23.1S309.3 463.1 296 463.1zM55.1 287.1L80 287.1v29.5c0 40.25-3.5 81.25-23.38 114.5h53.5C125.1 394.1 128 354.6 128 317.5v-29.5h64v29.5c0 37.13 2.875 77.5 17.88 114.5h53.5C243.5 398.7 240 357.7 240 317.5V287.1l24-.0001C277.3 287.1 288 277.3 288 263.1c0-13.25-10.75-24-23.1-24H241c23.75-21.88 38.1-53.12 38.1-87.1c0-9.393-1.106-19.05-3.451-28.86C272.3 105.4 244.9 32 159.1 32C93.75 32 40 85.75 40 151.1c0 34.88 15.12 66.12 39 88H55.1C42.75 239.1 32 250.7 32 263.1C32 277.3 42.75 287.1 55.1 287.1zM160 79.1c39.75 0 72 32.25 72 72S199.8 223.1 160 223.1S88 191.7 88 151.1S120.2 79.1 160 79.1z',
			),
		),
		'label'             => __( 'Chess Pawn', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-queen'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 112c30.88 0 56-25.12 56-56S286.9 0 256 0S199.1 25.12 199.1 56S225.1 112 256 112zM399.1 448H111.1c-26.51 0-48 21.49-48 47.1C63.98 504.8 71.15 512 79.98 512h352c8.837 0 16-7.163 16-16C447.1 469.5 426.5 448 399.1 448zM511.1 197.4c0-5.178-2.509-10.2-7.096-13.26L476.4 168.2c-2.684-1.789-5.602-2.62-8.497-2.62c-17.22 0-17.39 26.37-51.92 26.37c-29.35 0-47.97-25.38-47.97-50.63C367.1 134 361.1 128 354.6 128h-38.75c-6 0-11.63 4-12.88 9.875C298.2 160.1 278.7 176 255.1 176c-22.75 0-42.25-15.88-47-38.12C207.7 132 202.2 128 196.1 128h-38.75C149.1 128 143.1 134 143.1 141.4c0 18.45-13.73 50.62-47.95 50.62c-34.58 0-34.87-26.39-51.87-26.39c-2.909 0-5.805 .8334-8.432 2.645l-28.63 16C2.509 187.2 0 192.3 0 197.4C0 199.9 .5585 202.3 1.72 204.6L104.2 416h303.5l102.5-211.4C511.4 202.3 511.1 199.8 511.1 197.4z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 112c30.88 0 56-25.12 56-56S286.9 0 256 0S199.1 25.12 199.1 56S225.1 112 256 112zM511.1 197.4c0-5.178-2.509-10.2-7.096-13.26L476.4 168.2c-2.5-1.75-5.497-2.62-8.497-2.62c-5.501 .125-10.63 2.87-13.75 7.245c-9.001 12-23.16 19.13-38.16 19.13c-3.125 0-6.089-.2528-9.089-.8778c-23.13-4.25-38.88-26.25-38.88-49.75C367.1 134 361.1 128 354.6 128h-38.75c-6.001 0-11.63 4-12.88 9.875C298.2 160.1 278.7 176 255.1 176c-22.75 0-42.25-15.88-47-38.12C207.7 132 202.2 128 196.1 128h-38.75C149.1 128 143.1 134 143.1 141.4c0 18.49-13.66 50.62-47.95 50.62c-15.13 0-29.3-7.118-38.3-19.24C54.6 168.4 49.66 165.7 44.15 165.6c-3 0-5.931 .8951-8.432 2.645l-28.63 16C2.509 187.2 0 192.3 0 197.4c0 2.438 .5583 4.901 1.72 7.185L109.9 432h53.13L69.85 236.4C78.35 238.8 87.11 240 95.98 240c2.432 0 56.83 1.503 84.76-52.5C198.1 210.5 226.6 224 255.9 224c29.38 0 57.01-13.38 75.26-36.25C336.1 197.6 360.6 240 416 240c8.751 0 17.5-1.125 26-3.5L349 432h53.13l108.1-227.4C511.4 202.3 511.1 199.8 511.1 197.4zM424 464H87.98c-13.26 0-24 10.75-24 23.1S74.72 512 87.98 512h336c13.26 0 24-10.75 24-23.1S437.3 464 424 464z',
			),
		),
		'label'             => __( 'Chess Queen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chess-rook'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M368 32h-56c-8.875 0-16 7.125-16 16V96h-48V48c0-8.875-7.125-16-16-16h-80c-8.875 0-16 7.125-16 16V96H88.12V48c0-8.875-7.25-16-16-16H16C7.125 32 0 39.12 0 48V224l64 32c0 48.38-1.5 95-13.25 160h282.5C321.5 351 320 303.8 320 256l64-32V48C384 39.12 376.9 32 368 32zM224 320H160V256c0-17.62 14.38-32 32-32s32 14.38 32 32V320zM336 448H47.1C21.49 448 0 469.5 0 495.1C0 504.8 7.163 512 16 512h352c8.837 0 16-7.163 16-16C384 469.5 362.5 448 336 448z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M360 464H23.1C10.75 464 0 474.7 0 487.1S10.75 512 23.1 512H360C373.3 512 384 501.3 384 488S373.3 464 360 464zM345.1 32h-308C17 32 0 49 0 70v139.4C0 218.8 4 227.5 11 233.6L48 265.8c0 8.885 .0504 17.64 .0504 26.46c0 39.32-1.001 79.96-11.93 139.8h49C94.95 374.3 96.11 333.3 96.11 285.5C96.11 270.7 96 255.1 96 238.2L48 196.5V80h64V128H160V80h64V128h48V80h64v116.5L288 238.2c0 16.77-.1124 32.25-.1124 47.1c0 47.79 1.164 89.15 10.99 146.7h49c-10.92-59.83-11.93-100.6-11.93-139.9C335.9 283.3 336 274.6 336 265.8l37-32.13C380 227.5 384 218.8 384 209.4V70C384 49 367 32 345.1 32zM192 224C174.4 224 160 238.4 160 256v64h64V256C224 238.4 209.6 224 192 224z',
			),
		),
		'label'             => __( 'Chess Rook', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'chevron-down'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z',
			),
		),
		'label'             => __( 'Chevron Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chevron-left'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M224 480c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25l192-192c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L77.25 256l169.4 169.4c12.5 12.5 12.5 32.75 0 45.25C240.4 476.9 232.2 480 224 480z',
			),
		),
		'label'             => __( 'Chevron Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chevron-right'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M96 480c-8.188 0-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L242.8 256L73.38 86.63c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25l-192 192C112.4 476.9 104.2 480 96 480z',
			),
		),
		'label'             => __( 'Chevron Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'chevron-up'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 352c-8.188 0-16.38-3.125-22.62-9.375L224 173.3l-169.4 169.4c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l192-192c12.5-12.5 32.75-12.5 45.25 0l192 192c12.5 12.5 12.5 32.75 0 45.25C432.4 348.9 424.2 352 416 352z',
			),
		),
		'label'             => __( 'Chevron Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'child'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M224 64C224 99.35 195.3 128 160 128C124.7 128 96 99.35 96 64C96 28.65 124.7 0 160 0C195.3 0 224 28.65 224 64zM144 384V480C144 497.7 129.7 512 112 512C94.33 512 80.01 497.7 80.01 480V287.8L59.09 321C49.67 336 29.92 340.5 14.96 331.1C.0016 321.7-4.491 301.9 4.924 286.1L44.79 223.6C69.72 184 113.2 160 160 160C206.8 160 250.3 184 275.2 223.6L315.1 286.1C324.5 301.9 320 321.7 305.1 331.1C290.1 340.5 270.3 336 260.9 321L240 287.8V480C240 497.7 225.7 512 208 512C190.3 512 176 497.7 176 480V384L144 384z',
			),
		),
		'label'             => __( 'Child', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'child-dress'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M223.1 64C223.1 99.35 195.3 128 159.1 128C124.7 128 95.1 99.35 95.1 64C95.1 28.65 124.7 0 159.1 0C195.3 0 223.1 28.65 223.1 64zM70.2 400C59.28 400 51.57 389.3 55.02 378.9L86.16 285.5L57.5 323.3C46.82 337.4 26.75 340.2 12.67 329.5C-1.415 318.8-4.175 298.7 6.503 284.7L65.4 206.1C87.84 177.4 122.9 160 160 160C197.2 160 232.2 177.4 254.6 206.1L313.5 284.7C324.2 298.7 321.4 318.8 307.3 329.5C293.3 340.2 273.2 337.4 262.5 323.3L233.9 285.6L264.1 378.9C268.4 389.3 260.7 400 249.8 400H232V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V400H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V400H70.2z',
			),
		),
		'label'             => __( 'Child Dress', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'child-reaching'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M256 64C256 99.35 227.3 128 192 128C156.7 128 128 99.35 128 64C128 28.65 156.7 0 192 0C227.3 0 256 28.65 256 64zM155.7 170.2C167.3 173.1 179.6 176 192.2 176C232.1 176 269.3 155.8 291 122.4L309.2 94.54C318.8 79.73 338.6 75.54 353.5 85.18C368.3 94.82 372.5 114.6 362.8 129.5L344.7 157.3C326.4 185.4 301.2 207.3 272 221.6V480C272 497.7 257.7 512 240 512C222.3 512 208 497.7 208 480V384H176V480C176 497.7 161.7 512 144 512C126.3 512 112 497.7 112 480V221.4C83.63 207.4 58.94 186.1 40.87 158.1L21.37 129.8C11.57 115 15.54 95.18 30.25 85.37C44.95 75.57 64.82 79.54 74.62 94.25L94.12 123.5C108.5 145 129.2 160.9 152.9 169.3C153.9 169.5 154.8 169.8 155.7 170.2V170.2z',
			),
		),
		'label'             => __( 'Child Reaching', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'child-rifle'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M79.1 64C79.1 28.65 108.7 .0003 143.1 .0003C179.3 .0003 207.1 28.65 207.1 64C207.1 99.35 179.3 128 143.1 128C108.7 128 79.1 99.35 79.1 64V64zM104 512C86.33 512 72 497.7 72 480V300.5L59.09 321C49.67 336 29.91 340.5 14.96 331.1C.0006 321.7-4.492 301.9 4.923 286.1L56.6 204.9C74.17 176.9 104.9 160 137.8 160H150.2C183.2 160 213.8 176.9 231.4 204.9L283.1 286.1C292.5 301.9 288 321.7 273 331.1C258.1 340.5 238.3 336 228.9 321L216 300.5V480C216 497.7 201.7 512 184 512C166.3 512 152 497.7 152 480V352H136V480C136 497.7 121.7 512 104 512V512zM432 16V132.3C441.6 137.8 448 148.2 448 160V269.3L464 264V208C464 199.2 471.2 192 480 192H496C504.8 192 512 199.2 512 208V292.5C512 299.4 507.6 305.5 501.1 307.6L448 325.3V352H496C504.8 352 512 359.2 512 368V384C512 392.8 504.8 400 496 400H452L475 492.1C477.6 502.2 469.9 512 459.5 512H400C391.2 512 384 504.8 384 496V400H368C350.3 400 336 385.7 336 368V224C336 206.3 350.3 192 368 192V160C368 148.2 374.4 137.8 384 132.3V32C375.2 32 368 24.84 368 16C368 7.164 375.2 0 384 0H416C424.8 0 432 7.164 432 16V16z',
			),
		),
		'label'             => __( 'Child Rifle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'children'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M95.1 64C95.1 28.65 124.7 0 159.1 0C195.3 0 223.1 28.65 223.1 64C223.1 99.35 195.3 128 159.1 128C124.7 128 95.1 99.35 95.1 64zM88 480V400H70.2C59.28 400 51.57 389.3 55.02 378.9L86.16 285.5L57.5 323.3C46.82 337.4 26.75 340.2 12.67 329.5C-1.415 318.8-4.175 298.7 6.503 284.7L65.4 206.1C87.84 177.4 122.9 160 160 160C197.2 160 232.2 177.4 254.6 206.1L313.5 284.7C324.2 298.7 321.4 318.8 307.3 329.5C293.3 340.2 273.2 337.4 262.5 323.3L233.9 285.6L264.1 378.9C268.4 389.3 260.7 400 249.8 400H232V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V400H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480H88zM416 64C416 28.65 444.7 0 480 0C515.3 0 544 28.65 544 64C544 99.35 515.3 128 480 128C444.7 128 416 99.35 416 64V64zM472 384V480C472 497.7 457.7 512 440 512C422.3 512 408 497.7 408 480V300.5L395.1 321C385.7 336 365.9 340.5 350.1 331.1C336 321.7 331.5 301.9 340.9 286.1L392.6 204.9C410.2 176.9 440.9 159.1 473.8 159.1H486.2C519.2 159.1 549.8 176.9 567.4 204.9L619.1 286.1C628.5 301.9 624 321.7 609 331.1C594.1 340.5 574.3 336 564.9 321L552 300.5V480C552 497.7 537.7 512 520 512C502.3 512 488 497.7 488 480V384L472 384z',
			),
		),
		'label'             => __( 'Children', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'chrome'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M131.5 217.5L55.1 100.1c47.6-59.2 119-91.8 192-92.1 42.3-.3 85.5 10.5 124.8 33.2 43.4 25.2 76.4 61.4 97.4 103L264 133.4c-58.1-3.4-113.4 29.3-132.5 84.1zm32.9 38.5c0 46.2 37.4 83.6 83.6 83.6s83.6-37.4 83.6-83.6-37.4-83.6-83.6-83.6-83.6 37.3-83.6 83.6zm314.9-89.2L339.6 174c37.9 44.3 38.5 108.2 6.6 157.2L234.1 503.6c46.5 2.5 94.4-7.7 137.8-32.9 107.4-62 150.9-192 107.4-303.9zM133.7 303.6L40.4 120.1C14.9 159.1 0 205.9 0 256c0 124 90.8 226.7 209.5 244.9l63.7-124.8c-57.6 10.8-113.2-20.8-139.5-72.5z',
			),
		),
		'label'             => __( 'Chrome', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'chromecast'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447.8 64H64c-23.6 0-42.7 19.1-42.7 42.7v63.9H64v-63.9h383.8v298.6H298.6V448H448c23.6 0 42.7-19.1 42.7-42.7V106.7C490.7 83.1 471.4 64 447.8 64zM21.3 383.6L21.3 383.6l0 63.9h63.9C85.2 412.2 56.6 383.6 21.3 383.6L21.3 383.6zM21.3 298.6V341c58.9 0 106.6 48.1 106.6 107h42.7C170.7 365.6 103.7 298.7 21.3 298.6zM213.4 448h42.7c-.5-129.5-105.3-234.3-234.8-234.6l0 42.4C127.3 255.6 213.3 342 213.4 448z',
			),
		),
		'label'             => __( 'Chromecast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'church'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M344 48H376C389.3 48 400 58.75 400 72C400 85.25 389.3 96 376 96H344V142.4L456.7 210C471.2 218.7 480 234.3 480 251.2V512H384V416C384 380.7 355.3 352 320 352C284.7 352 256 380.7 256 416V512H160V251.2C160 234.3 168.8 218.7 183.3 210L296 142.4V96H264C250.7 96 240 85.25 240 72C240 58.75 250.7 48 264 48H296V24C296 10.75 306.7 0 320 0C333.3 0 344 10.75 344 24V48zM24.87 330.3L128 273.6V512H48C21.49 512 0 490.5 0 464V372.4C0 354.9 9.53 338.8 24.87 330.3V330.3zM592 512H512V273.6L615.1 330.3C630.5 338.8 640 354.9 640 372.4V464C640 490.5 618.5 512 592 512V512z',
			),
		),
		'label'             => __( 'Church', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'circle'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Circle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'circle-arrow-down'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 302.6l-103.1 103.1C270.7 414.6 260.9 416 256 416c-4.881 0-14.65-1.391-22.65-9.398L129.4 302.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 306.8V128c0-17.69 14.33-32 32-32s32 14.31 32 32v178.8l49.38-49.38c12.5-12.5 32.75-12.5 45.25 0S395.1 290.1 382.6 302.6z',
			),
		),
		'label'             => __( 'Circle Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-arrow-left'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM384 288H205.3l49.38 49.38c12.5 12.5 12.5 32.75 0 45.25s-32.75 12.5-45.25 0L105.4 278.6C97.4 270.7 96 260.9 96 256c0-4.883 1.391-14.66 9.398-22.65l103.1-103.1c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L205.3 224H384c17.69 0 32 14.33 32 32S401.7 288 384 288z',
			),
		),
		'label'             => __( 'Circle Arrow Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-arrow-right'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM406.6 278.6l-103.1 103.1c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25L306.8 288H128C110.3 288 96 273.7 96 256s14.31-32 32-32h178.8l-49.38-49.38c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l103.1 103.1C414.6 241.3 416 251.1 416 256C416 260.9 414.6 270.7 406.6 278.6z',
			),
		),
		'label'             => __( 'Circle Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-arrow-up'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM382.6 254.6c-12.5 12.5-32.75 12.5-45.25 0L288 205.3V384c0 17.69-14.33 32-32 32s-32-14.31-32-32V205.3L174.6 254.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l103.1-103.1C241.3 97.4 251.1 96 256 96c4.881 0 14.65 1.391 22.65 9.398l103.1 103.1C395.1 221.9 395.1 242.1 382.6 254.6z',
			),
		),
		'label'             => __( 'Circle Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-check'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM371.8 211.8C382.7 200.9 382.7 183.1 371.8 172.2C360.9 161.3 343.1 161.3 332.2 172.2L224 280.4L179.8 236.2C168.9 225.3 151.1 225.3 140.2 236.2C129.3 247.1 129.3 264.9 140.2 275.8L204.2 339.8C215.1 350.7 232.9 350.7 243.8 339.8L371.8 211.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M243.8 339.8C232.9 350.7 215.1 350.7 204.2 339.8L140.2 275.8C129.3 264.9 129.3 247.1 140.2 236.2C151.1 225.3 168.9 225.3 179.8 236.2L224 280.4L332.2 172.2C343.1 161.3 360.9 161.3 371.8 172.2C382.7 183.1 382.7 200.9 371.8 211.8L243.8 339.8zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'circle-chevron-down'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM390.6 246.6l-112 112C272.4 364.9 264.2 368 256 368s-16.38-3.125-22.62-9.375l-112-112c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L256 290.8l89.38-89.38c12.5-12.5 32.75-12.5 45.25 0S403.1 234.1 390.6 246.6z',
			),
		),
		'label'             => __( 'Circle Chevron Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-chevron-left'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM310.6 345.4c12.5 12.5 12.5 32.75 0 45.25s-32.75 12.5-45.25 0l-112-112C147.1 272.4 144 264.2 144 256s3.125-16.38 9.375-22.62l112-112c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L221.3 256L310.6 345.4z',
			),
		),
		'label'             => __( 'Circle Chevron Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-chevron-right'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM358.6 278.6l-112 112c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25L290.8 256L201.4 166.6c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l112 112C364.9 239.6 368 247.8 368 256S364.9 272.4 358.6 278.6z',
			),
		),
		'label'             => __( 'Circle Chevron Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-chevron-up'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM390.6 310.6c-12.5 12.5-32.75 12.5-45.25 0L256 221.3L166.6 310.6c-12.5 12.5-32.75 12.5-45.25 0s-12.5-32.75 0-45.25l112-112C239.6 147.1 247.8 144 256 144s16.38 3.125 22.62 9.375l112 112C403.1 277.9 403.1 298.1 390.6 310.6z',
			),
		),
		'label'             => __( 'Circle Chevron Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-dollar-to-slot'          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M326.7 403.7C304.7 411.6 280.8 416 256 416C231.2 416 207.3 411.6 185.3 403.7C184.1 403.6 184.7 403.5 184.5 403.4C154.4 392.4 127.6 374.6 105.9 352C70.04 314.6 48 263.9 48 208C48 93.12 141.1 0 256 0C370.9 0 464 93.12 464 208C464 263.9 441.1 314.6 406.1 352C405.1 353 404.1 354.1 403.1 355.1C381.7 376.4 355.7 393.2 326.7 403.7L326.7 403.7zM235.9 111.1V118C230.3 119.2 224.1 120.9 220 123.1C205.1 129.9 192.1 142.5 188.9 160.8C187.1 171 188.1 180.9 192.3 189.8C196.5 198.6 203 204.8 209.6 209.3C221.2 217.2 236.5 221.8 248.2 225.3L250.4 225.9C264.4 230.2 273.8 233.3 279.7 237.6C282.2 239.4 283.1 240.8 283.4 241.7C283.8 242.5 284.4 244.3 283.7 248.3C283.1 251.8 281.2 254.8 275.7 257.1C269.6 259.7 259.7 261 246.9 259C240.9 258 230.2 254.4 220.7 251.2C218.5 250.4 216.3 249.7 214.3 249C203.8 245.5 192.5 251.2 189 261.7C185.5 272.2 191.2 283.5 201.7 286.1C202.9 287.4 204.4 287.9 206.1 288.5C213.1 291.2 226.4 295.4 235.9 297.6V304C235.9 315.1 244.9 324.1 255.1 324.1C267.1 324.1 276.1 315.1 276.1 304V298.5C281.4 297.5 286.6 295.1 291.4 293.9C307.2 287.2 319.8 274.2 323.1 255.2C324.9 244.8 324.1 234.8 320.1 225.7C316.2 216.7 309.9 210.1 303.2 205.3C291.1 196.4 274.9 191.6 262.8 187.9L261.1 187.7C247.8 183.4 238.2 180.4 232.1 176.2C229.5 174.4 228.7 173.2 228.5 172.7C228.3 172.3 227.7 171.1 228.3 167.7C228.7 165.7 230.2 162.4 236.5 159.6C242.1 156.7 252.9 155.1 265.1 156.1C269.5 157.7 283 160.3 286.9 161.3C297.5 164.2 308.5 157.8 311.3 147.1C314.2 136.5 307.8 125.5 297.1 122.7C292.7 121.5 282.7 119.5 276.1 118.3V112C276.1 100.9 267.1 91.9 256 91.9C244.9 91.9 235.9 100.9 235.9 112V111.1zM48 352H63.98C83.43 377.9 108 399.7 136.2 416H64V448H448V416H375.8C403.1 399.7 428.6 377.9 448 352H464C490.5 352 512 373.5 512 400V464C512 490.5 490.5 512 464 512H48C21.49 512 0 490.5 0 464V400C0 373.5 21.49 352 48 352H48z',
			),
		),
		'label'             => __( 'Circle Dollar To Slot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'circle-dot'                     => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 352C309 352 352 309 352 256C352 202.1 309 160 256 160C202.1 160 160 202.1 160 256C160 309 202.1 352 256 352z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 256C160 202.1 202.1 160 256 160C309 160 352 202.1 352 256C352 309 309 352 256 352C202.1 352 160 309 160 256zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Circle Dot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-down'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 512c141.4 0 256-114.6 256-256s-114.6-256-256-256C114.6 0 0 114.6 0 256S114.6 512 256 512zM129.2 265.9C131.7 259.9 137.5 256 144 256h64V160c0-17.67 14.33-32 32-32h32c17.67 0 32 14.33 32 32v96h64c6.469 0 12.31 3.891 14.78 9.875c2.484 5.984 1.109 12.86-3.469 17.44l-112 112c-6.248 6.248-16.38 6.248-22.62 0l-112-112C128.1 278.7 126.7 271.9 129.2 265.9z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M344 240h-56L287.1 152c0-13.25-10.75-24-24-24h-16C234.7 128 223.1 138.8 223.1 152L224 240h-56c-9.531 0-18.16 5.656-22 14.38C142.2 263.1 143.9 273.3 150.4 280.3l88.75 96C243.7 381.2 250.1 384 256.8 384c7.781-.3125 13.25-2.875 17.75-7.844l87.25-96c6.406-7.031 8.031-17.19 4.188-25.88S353.5 240 344 240zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-exclamation'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM232 152C232 138.8 242.8 128 256 128s24 10.75 24 24v128c0 13.25-10.75 24-24 24S232 293.3 232 280V152zM256 400c-17.36 0-31.44-14.08-31.44-31.44c0-17.36 14.07-31.44 31.44-31.44s31.44 14.08 31.44 31.44C287.4 385.9 273.4 400 256 400z',
			),
		),
		'label'             => __( 'Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-h'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM368 360c0 13.25-10.75 24-24 24S320 373.3 320 360v-80H192v80C192 373.3 181.3 384 168 384S144 373.3 144 360v-208C144 138.8 154.8 128 168 128S192 138.8 192 152v80h128v-80C320 138.8 330.8 128 344 128s24 10.75 24 24V360z',
			),
		),
		'label'             => __( 'Circle H', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'circle-half-stroke'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 64V448C362 448 448 362 448 256C448 149.1 362 64 256 64z',
			),
		),
		'label'             => __( 'Circle Half Stroke', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'circle-info'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 128c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S224 177.7 224 160C224 142.3 238.3 128 256 128zM296 384h-80C202.8 384 192 373.3 192 360s10.75-24 24-24h16v-64H224c-13.25 0-24-10.75-24-24S210.8 224 224 224h32c13.25 0 24 10.75 24 24v88h16c13.25 0 24 10.75 24 24S309.3 384 296 384z',
			),
		),
		'label'             => __( 'Circle Info', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'circle-left'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256c0 141.4 114.6 256 256 256s256-114.6 256-256c0-141.4-114.6-256-256-256S0 114.6 0 256zM246.1 129.2C252.1 131.7 256 137.5 256 144v64h96c17.67 0 32 14.33 32 32v32c0 17.67-14.33 32-32 32h-96v64c0 6.469-3.891 12.31-9.875 14.78c-5.984 2.484-12.86 1.109-17.44-3.469l-112-112c-6.248-6.248-6.248-16.38 0-22.62l112-112C233.3 128.1 240.1 126.7 246.1 129.2z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M360 224L272 224v-56c0-9.531-5.656-18.16-14.38-22C248.9 142.2 238.7 143.9 231.7 150.4l-96 88.75C130.8 243.7 128 250.1 128 256.8c.3125 7.781 2.875 13.25 7.844 17.75l96 87.25c7.031 6.406 17.19 8.031 25.88 4.188s14.28-12.44 14.28-21.94l-.002-56L360 288C373.3 288 384 277.3 384 264v-16C384 234.8 373.3 224 360 224zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-minus'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM168 232C154.7 232 144 242.7 144 256C144 269.3 154.7 280 168 280H344C357.3 280 368 269.3 368 256C368 242.7 357.3 232 344 232H168z',
			),
		),
		'label'             => __( 'Circle Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'circle-nodes'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M380.6 365.6C401.1 379.9 416 404.3 416 432C416 476.2 380.2 512 336 512C291.8 512 256 476.2 256 432C256 423.6 257.3 415.4 259.7 407.8L114.1 280.4C103.8 285.3 92.21 288 80 288C35.82 288 0 252.2 0 208C0 163.8 35.82 128 80 128C101.9 128 121.7 136.8 136.2 151.1L320 77.52C321.3 34.48 356.6 0 400 0C444.2 0 480 35.82 480 80C480 117.9 453.7 149.6 418.4 157.9L380.6 365.6zM156.3 232.2L301.9 359.6C306.9 357.3 312.1 355.4 317.6 354.1L355.4 146.4C351.2 143.6 347.4 140.4 343.8 136.9L159.1 210.5C159.7 218 158.5 225.3 156.3 232.2V232.2z',
			),
		),
		'label'             => __( 'Circle Nodes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology', 'travel' ),
	),
	'circle-notch'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M222.7 32.15C227.7 49.08 218.1 66.9 201.1 71.94C121.8 95.55 64 169.1 64 255.1C64 362 149.1 447.1 256 447.1C362 447.1 448 362 448 255.1C448 169.1 390.2 95.55 310.9 71.94C293.9 66.9 284.3 49.08 289.3 32.15C294.4 15.21 312.2 5.562 329.1 10.6C434.9 42.07 512 139.1 512 255.1C512 397.4 397.4 511.1 256 511.1C114.6 511.1 0 397.4 0 255.1C0 139.1 77.15 42.07 182.9 10.6C199.8 5.562 217.6 15.21 222.7 32.15V32.15z',
			),
		),
		'label'             => __( 'Circle Notch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-pause'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM224 191.1v128C224 337.7 209.7 352 192 352S160 337.7 160 320V191.1C160 174.3 174.3 160 191.1 160S224 174.3 224 191.1zM352 191.1v128C352 337.7 337.7 352 320 352S288 337.7 288 320V191.1C288 174.3 302.3 160 319.1 160S352 174.3 352 191.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200 160C186.8 160 176 170.8 176 184v144C176 341.3 186.8 352 200 352S224 341.3 224 328v-144C224 170.8 213.3 160 200 160zM312 160C298.8 160 288 170.8 288 184v144c0 13.25 10.75 24 24 24s24-10.75 24-24v-144C336 170.8 325.3 160 312 160zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Pause', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'circle-play'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM176 168V344C176 352.7 180.7 360.7 188.3 364.9C195.8 369.2 205.1 369 212.5 364.5L356.5 276.5C363.6 272.1 368 264.4 368 256C368 247.6 363.6 239.9 356.5 235.5L212.5 147.5C205.1 142.1 195.8 142.8 188.3 147.1C180.7 151.3 176 159.3 176 168V168z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M188.3 147.1C195.8 142.8 205.1 142.1 212.5 147.5L356.5 235.5C363.6 239.9 368 247.6 368 256C368 264.4 363.6 272.1 356.5 276.5L212.5 364.5C205.1 369 195.8 369.2 188.3 364.9C180.7 360.7 176 352.7 176 344V167.1C176 159.3 180.7 151.3 188.3 147.1V147.1zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Circle Play', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'circle-plus'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM256 368C269.3 368 280 357.3 280 344V280H344C357.3 280 368 269.3 368 256C368 242.7 357.3 232 344 232H280V168C280 154.7 269.3 144 256 144C242.7 144 232 154.7 232 168V232H168C154.7 232 144 242.7 144 256C144 269.3 154.7 280 168 280H232V344C232 357.3 242.7 368 256 368z',
			),
		),
		'label'             => __( 'Circle Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'circle-question'                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 400c-18 0-32-14-32-32s13.1-32 32-32c17.1 0 32 14 32 32S273.1 400 256 400zM325.1 258L280 286V288c0 13-11 24-24 24S232 301 232 288V272c0-8 4-16 12-21l57-34C308 213 312 206 312 198C312 186 301.1 176 289.1 176h-51.1C225.1 176 216 186 216 198c0 13-11 24-24 24s-24-11-24-24C168 159 199 128 237.1 128h51.1C329 128 360 159 360 198C360 222 347 245 325.1 258z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM256 336c-18 0-32 14-32 32s13.1 32 32 32c17.1 0 32-14 32-32S273.1 336 256 336zM289.1 128h-51.1C199 128 168 159 168 198c0 13 11 24 24 24s24-11 24-24C216 186 225.1 176 237.1 176h51.1C301.1 176 312 186 312 198c0 8-4 14.1-11 18.1L244 251C236 256 232 264 232 272V288c0 13 11 24 24 24S280 301 280 288V286l45.1-28c21-13 34-36 34-60C360 159 329 128 289.1 128z',
			),
		),
		'label'             => __( 'Circle Question', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'circle-radiation'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M226.4 208.6L184.8 141.9C179.6 133.7 168.3 132 160.7 138.2C130.8 162.3 110.1 197.4 105.1 237.4C103.9 247.2 111.2 256 121 256H200C200 236 210.6 218.6 226.4 208.6zM256 288c17.67 0 32-14.33 32-32s-14.33-32-32-32C238.3 224 224 238.3 224 256S238.3 288 256 288zM285.6 303.3C276.1 308.7 266.9 312 256 312c-10.89 0-20.98-3.252-29.58-8.65l-41.74 66.8c-5.211 8.338-1.613 19.07 7.27 23.29C211.4 402.7 233.1 408 256 408c22.97 0 44.64-5.334 64.12-14.59c8.883-4.219 12.48-14.95 7.262-23.29L285.6 303.3zM351.4 138.2c-7.604-6.145-18.86-4.518-24.04 3.77l-41.71 66.67C301.4 218.6 312 236 312 256h78.96c9.844 0 17.11-8.791 15.91-18.56C401.9 197.5 381.3 162.4 351.4 138.2zM256 16C123.4 16 16 123.4 16 256s107.4 240 240 240c132.6 0 240-107.4 240-240S388.6 16 256 16zM256 432c-97.05 0-176-78.99-176-176S158.1 80 256 80s176 78.95 176 176S353 432 256 432z',
			),
		),
		'label'             => __( 'Circle Radiation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'circle-right'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256c0-141.4-114.6-256-256-256S0 114.6 0 256c0 141.4 114.6 256 256 256S512 397.4 512 256zM265.9 382.8C259.9 380.3 256 374.5 256 368v-64H160c-17.67 0-32-14.33-32-32v-32c0-17.67 14.33-32 32-32h96v-64c0-6.469 3.891-12.31 9.875-14.78c5.984-2.484 12.86-1.109 17.44 3.469l112 112c6.248 6.248 6.248 16.38 0 22.62l-112 112C278.7 383.9 271.9 385.3 265.9 382.8z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M280.2 150.2C273.1 143.8 262.1 142.2 254.3 146.1S239.1 158.5 239.1 167.1l.002 56L152 224C138.8 224 128 234.8 128 248v16C128 277.3 138.8 288 152 288L240 287.1v56c0 9.531 5.656 18.16 14.38 22c8.75 3.812 18.91 2.094 25.91-4.375l96-88.75C381.2 268.3 384 261.9 384 255.2c-.3125-7.781-2.875-13.25-7.844-17.75L280.2 150.2zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-stop'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256c0 141.4 114.6 256 256 256s256-114.6 256-256C512 114.6 397.4 0 256 0zM352 328c0 13.2-10.8 24-24 24h-144C170.8 352 160 341.2 160 328v-144C160 170.8 170.8 160 184 160h144C341.2 160 352 170.8 352 184V328z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M328 160h-144C170.8 160 160 170.8 160 184v144C160 341.2 170.8 352 184 352h144c13.2 0 24-10.8 24-24v-144C352 170.8 341.2 160 328 160zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Stop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'circle-up'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256c141.4 0 256-114.6 256-256S397.4 0 256 0zM382.8 246.1C380.3 252.1 374.5 256 368 256h-64v96c0 17.67-14.33 32-32 32h-32c-17.67 0-32-14.33-32-32V256h-64C137.5 256 131.7 252.1 129.2 246.1C126.7 240.1 128.1 233.3 132.7 228.7l112-112c6.248-6.248 16.38-6.248 22.62 0l112 112C383.9 233.3 385.3 240.1 382.8 246.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M272.9 135.7C268.3 130.8 261.9 128 255.2 128C247.5 128.3 241.1 130.9 237.5 135.8l-87.25 96C143.8 238.9 142.2 249 146.1 257.7C149.9 266.4 158.5 272 167.1 272h56L224 360c0 13.25 10.75 24 24 24h16c13.25 0 23.1-10.75 23.1-24L287.1 272h56c9.531 0 18.16-5.656 22-14.38c3.811-8.75 2.092-18.91-4.377-25.91L272.9 135.7zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464z',
			),
		),
		'label'             => __( 'Circle Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'circle-user'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 128c39.77 0 72 32.24 72 72S295.8 272 256 272c-39.76 0-72-32.24-72-72S216.2 128 256 128zM256 448c-52.93 0-100.9-21.53-135.7-56.29C136.5 349.9 176.5 320 224 320h64c47.54 0 87.54 29.88 103.7 71.71C356.9 426.5 308.9 448 256 448z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 112c-48.6 0-88 39.4-88 88C168 248.6 207.4 288 256 288s88-39.4 88-88C344 151.4 304.6 112 256 112zM256 240c-22.06 0-40-17.95-40-40C216 177.9 233.9 160 256 160s40 17.94 40 40C296 222.1 278.1 240 256 240zM256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-46.73 0-89.76-15.68-124.5-41.79C148.8 389 182.4 368 220.2 368h71.69c37.75 0 71.31 21.01 88.68 54.21C345.8 448.3 302.7 464 256 464zM416.2 388.5C389.2 346.3 343.2 320 291.8 320H220.2c-51.36 0-97.35 26.25-124.4 68.48C65.96 352.5 48 306.3 48 256c0-114.7 93.31-208 208-208s208 93.31 208 208C464 306.3 446 352.5 416.2 388.5z',
			),
		),
		'label'             => __( 'Circle User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'circle-xmark'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM175 208.1L222.1 255.1L175 303C165.7 312.4 165.7 327.6 175 336.1C184.4 346.3 199.6 346.3 208.1 336.1L255.1 289.9L303 336.1C312.4 346.3 327.6 346.3 336.1 336.1C346.3 327.6 346.3 312.4 336.1 303L289.9 255.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175C327.6 165.7 312.4 165.7 303 175L255.1 222.1L208.1 175C199.6 165.7 184.4 165.7 175 175C165.7 184.4 165.7 199.6 175 208.1V208.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'city'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M480 192H592C618.5 192 640 213.5 640 240V464C640 490.5 618.5 512 592 512H48C21.49 512 0 490.5 0 464V144C0 117.5 21.49 96 48 96H64V24C64 10.75 74.75 0 88 0C101.3 0 112 10.75 112 24V96H176V24C176 10.75 186.7 0 200 0C213.3 0 224 10.75 224 24V96H288V48C288 21.49 309.5 0 336 0H432C458.5 0 480 21.49 480 48V192zM576 368C576 359.2 568.8 352 560 352H528C519.2 352 512 359.2 512 368V400C512 408.8 519.2 416 528 416H560C568.8 416 576 408.8 576 400V368zM240 416C248.8 416 256 408.8 256 400V368C256 359.2 248.8 352 240 352H208C199.2 352 192 359.2 192 368V400C192 408.8 199.2 416 208 416H240zM128 368C128 359.2 120.8 352 112 352H80C71.16 352 64 359.2 64 368V400C64 408.8 71.16 416 80 416H112C120.8 416 128 408.8 128 400V368zM528 256C519.2 256 512 263.2 512 272V304C512 312.8 519.2 320 528 320H560C568.8 320 576 312.8 576 304V272C576 263.2 568.8 256 560 256H528zM256 176C256 167.2 248.8 160 240 160H208C199.2 160 192 167.2 192 176V208C192 216.8 199.2 224 208 224H240C248.8 224 256 216.8 256 208V176zM80 160C71.16 160 64 167.2 64 176V208C64 216.8 71.16 224 80 224H112C120.8 224 128 216.8 128 208V176C128 167.2 120.8 160 112 160H80zM256 272C256 263.2 248.8 256 240 256H208C199.2 256 192 263.2 192 272V304C192 312.8 199.2 320 208 320H240C248.8 320 256 312.8 256 304V272zM112 320C120.8 320 128 312.8 128 304V272C128 263.2 120.8 256 112 256H80C71.16 256 64 263.2 64 272V304C64 312.8 71.16 320 80 320H112zM416 272C416 263.2 408.8 256 400 256H368C359.2 256 352 263.2 352 272V304C352 312.8 359.2 320 368 320H400C408.8 320 416 312.8 416 304V272zM368 64C359.2 64 352 71.16 352 80V112C352 120.8 359.2 128 368 128H400C408.8 128 416 120.8 416 112V80C416 71.16 408.8 64 400 64H368zM416 176C416 167.2 408.8 160 400 160H368C359.2 160 352 167.2 352 176V208C352 216.8 359.2 224 368 224H400C408.8 224 416 216.8 416 208V176z',
			),
		),
		'label'             => __( 'City', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'clapperboard'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M326.1 160l127.4-127.4C451.7 32.39 449.9 32 448 32h-86.06l-128 128H326.1zM166.1 160l128-128H201.9l-128 128H166.1zM497.7 56.19L393.9 160H512V96C512 80.87 506.5 67.15 497.7 56.19zM134.1 32H64C28.65 32 0 60.65 0 96v64h6.062L134.1 32zM0 416c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V192H0V416z',
			),
		),
		'label'             => __( 'Clapperboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'clipboard'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 64h-53.88C268.9 26.8 233.7 0 192 0S115.1 26.8 101.9 64H48C21.5 64 0 85.48 0 112v352C0 490.5 21.5 512 48 512h288c26.5 0 48-21.48 48-48v-352C384 85.48 362.5 64 336 64zM192 64c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S160 113.7 160 96C160 78.33 174.3 64 192 64zM272 224h-160C103.2 224 96 216.8 96 208C96 199.2 103.2 192 112 192h160C280.8 192 288 199.2 288 208S280.8 224 272 224z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 64h-49.61C262.1 27.48 230.7 0 192 0S121 27.48 113.6 64H64C28.65 64 0 92.66 0 128v320c0 35.34 28.65 64 64 64h256c35.35 0 64-28.66 64-64V128C384 92.66 355.3 64 320 64zM192 48c13.23 0 24 10.77 24 24S205.2 96 192 96S168 85.23 168 72S178.8 48 192 48zM336 448c0 8.82-7.178 16-16 16H64c-8.822 0-16-7.18-16-16V128c0-8.82 7.178-16 16-16h18.26C80.93 117.1 80 122.4 80 128v16C80 152.8 87.16 160 96 160h192c8.836 0 16-7.164 16-16V128c0-5.559-.9316-10.86-2.264-16H320c8.822 0 16 7.18 16 16V448z',
			),
		),
		'label'             => __( 'Clipboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'clipboard-check'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 64h-53.88C268.9 26.8 233.7 0 192 0S115.1 26.8 101.9 64H48C21.5 64 0 85.48 0 112v352C0 490.5 21.5 512 48 512h288c26.5 0 48-21.48 48-48v-352C384 85.48 362.5 64 336 64zM192 64c17.67 0 32 14.33 32 32s-14.33 32-32 32S160 113.7 160 96S174.3 64 192 64zM282.9 262.8l-88 112c-4.047 5.156-10.02 8.438-16.53 9.062C177.6 383.1 176.8 384 176 384c-5.703 0-11.25-2.031-15.62-5.781l-56-48c-10.06-8.625-11.22-23.78-2.594-33.84c8.609-10.06 23.77-11.22 33.84-2.594l36.98 31.69l72.52-92.28c8.188-10.44 23.3-12.22 33.7-4.062C289.3 237.3 291.1 252.4 282.9 262.8z',
			),
		),
		'label'             => __( 'Clipboard Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'clipboard-list'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 64h-53.88C268.9 26.8 233.7 0 192 0S115.1 26.8 101.9 64H48C21.5 64 0 85.48 0 112v352C0 490.5 21.5 512 48 512h288c26.5 0 48-21.48 48-48v-352C384 85.48 362.5 64 336 64zM96 392c-13.25 0-24-10.75-24-24S82.75 344 96 344s24 10.75 24 24S109.3 392 96 392zM96 296c-13.25 0-24-10.75-24-24S82.75 248 96 248S120 258.8 120 272S109.3 296 96 296zM192 64c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S160 113.7 160 96C160 78.33 174.3 64 192 64zM304 384h-128C167.2 384 160 376.8 160 368C160 359.2 167.2 352 176 352h128c8.801 0 16 7.199 16 16C320 376.8 312.8 384 304 384zM304 288h-128C167.2 288 160 280.8 160 272C160 263.2 167.2 256 176 256h128C312.8 256 320 263.2 320 272C320 280.8 312.8 288 304 288z',
			),
		),
		'label'             => __( 'Clipboard List', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'clipboard-question'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M282.5 64H320C355.3 64 384 92.65 384 128V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V128C0 92.65 28.65 64 64 64H101.5C114.6 26.71 150.2 0 192 0C233.8 0 269.4 26.71 282.5 64zM192 128C209.7 128 224 113.7 224 96C224 78.33 209.7 64 192 64C174.3 64 160 78.33 160 96C160 113.7 174.3 128 192 128zM105.4 230.5C100.9 243 107.5 256.7 119.1 261.2C132.5 265.6 146.2 259.1 150.6 246.6L151.1 245.3C152.2 242.1 155.2 240 158.6 240H216.9C225.2 240 232 246.8 232 255.1C232 260.6 229.1 265.6 224.4 268.3L180.1 293.7C172.6 298 168 305.9 168 314.5V328C168 341.3 178.7 352 192 352C205.1 352 215.8 341.5 215.1 328.4L248.3 309.9C267.9 298.7 280 277.8 280 255.1C280 220.3 251.7 192 216.9 192H158.6C134.9 192 113.8 206.9 105.8 229.3L105.4 230.5zM192 384C174.3 384 160 398.3 160 416C160 433.7 174.3 448 192 448C209.7 448 224 433.7 224 416C224 398.3 209.7 384 192 384z',
			),
		),
		'label'             => __( 'Clipboard Question', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'clipboard-user'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M336 64h-53.88C268.9 26.8 233.7 0 192 0S115.1 26.8 101.9 64H48C21.5 64 0 85.48 0 112v352C0 490.5 21.5 512 48 512h288c26.5 0 48-21.48 48-48v-352C384 85.48 362.5 64 336 64zM192 64c17.67 0 32 14.33 32 32c0 17.67-14.33 32-32 32S160 113.7 160 96C160 78.33 174.3 64 192 64zM192 192c35.35 0 64 28.65 64 64s-28.65 64-64 64S128 291.3 128 256S156.7 192 192 192zM288 448H96c-8.836 0-16-7.164-16-16C80 387.8 115.8 352 160 352h64c44.18 0 80 35.82 80 80C304 440.8 296.8 448 288 448z',
			),
		),
		'label'             => __( 'Clipboard User', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'clock'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512zM232 256C232 264 236 271.5 242.7 275.1L338.7 339.1C349.7 347.3 364.6 344.3 371.1 333.3C379.3 322.3 376.3 307.4 365.3 300L280 243.2V120C280 106.7 269.3 96 255.1 96C242.7 96 231.1 106.7 231.1 120L232 256z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M232 120C232 106.7 242.7 96 256 96C269.3 96 280 106.7 280 120V243.2L365.3 300C376.3 307.4 379.3 322.3 371.1 333.3C364.6 344.3 349.7 347.3 338.7 339.1L242.7 275.1C236 271.5 232 264 232 255.1L232 120zM256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0zM48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48C141.1 48 48 141.1 48 256z',
			),
		),
		'label'             => __( 'Clock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'clock-rotate-left'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C201.7 512 151.2 495 109.7 466.1C95.2 455.1 91.64 436 101.8 421.5C111.9 407 131.8 403.5 146.3 413.6C177.4 435.3 215.2 448 256 448C362 448 448 362 448 256C448 149.1 362 64 256 64C202.1 64 155 85.46 120.2 120.2L151 151C166.1 166.1 155.4 192 134.1 192H24C10.75 192 0 181.3 0 168V57.94C0 36.56 25.85 25.85 40.97 40.97L74.98 74.98C121.3 28.69 185.3 0 255.1 0L256 0zM256 128C269.3 128 280 138.7 280 152V246.1L344.1 311C354.3 320.4 354.3 335.6 344.1 344.1C335.6 354.3 320.4 354.3 311 344.1L239 272.1C234.5 268.5 232 262.4 232 256V152C232 138.7 242.7 128 256 128V128z',
			),
		),
		'label'             => __( 'Clock Rotate Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'clone'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 224C0 188.7 28.65 160 64 160H128V288C128 341 170.1 384 224 384H352V448C352 483.3 323.3 512 288 512H64C28.65 512 0 483.3 0 448V224zM224 352C188.7 352 160 323.3 160 288V64C160 28.65 188.7 0 224 0H448C483.3 0 512 28.65 512 64V288C512 323.3 483.3 352 448 352H224z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M64 464H288C296.8 464 304 456.8 304 448V384H352V448C352 483.3 323.3 512 288 512H64C28.65 512 0 483.3 0 448V224C0 188.7 28.65 160 64 160H128V208H64C55.16 208 48 215.2 48 224V448C48 456.8 55.16 464 64 464zM160 64C160 28.65 188.7 0 224 0H448C483.3 0 512 28.65 512 64V288C512 323.3 483.3 352 448 352H224C188.7 352 160 323.3 160 288V64zM224 304H448C456.8 304 464 296.8 464 288V64C464 55.16 456.8 48 448 48H224C215.2 48 208 55.16 208 64V288C208 296.8 215.2 304 224 304z',
			),
		),
		'label'             => __( 'Clone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'closed-captioning'              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM168.6 289.9c18.69 18.72 49.19 18.72 67.87 0c9.375-9.375 24.56-9.375 33.94 0s9.375 24.56 0 33.94c-18.72 18.72-43.28 28.08-67.87 28.08s-49.16-9.359-67.87-28.08C116.5 305.8 106.5 281.6 106.5 256s9.1-49.75 28.12-67.88c37.44-37.44 98.31-37.44 135.7 0c9.375 9.375 9.375 24.56 0 33.94s-24.56 9.375-33.94 0c-18.69-18.72-49.19-18.72-67.87 0C159.5 231.1 154.5 243.2 154.5 256S159.5 280.9 168.6 289.9zM360.6 289.9c18.69 18.72 49.19 18.72 67.87 0c9.375-9.375 24.56-9.375 33.94 0s9.375 24.56 0 33.94c-18.72 18.72-43.28 28.08-67.87 28.08s-49.16-9.359-67.87-28.08C308.5 305.8 298.5 281.6 298.5 256s9.1-49.75 28.12-67.88c37.44-37.44 98.31-37.44 135.7 0c9.375 9.375 9.375 24.56 0 33.94s-24.56 9.375-33.94 0c-18.69-18.72-49.19-18.72-67.87 0C351.5 231.1 346.5 243.2 346.5 256S351.5 280.9 360.6 289.9z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 32H64C28.65 32 0 60.65 0 96v320c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V96C576 60.65 547.3 32 512 32zM528 416c0 8.822-7.178 16-16 16H64c-8.822 0-16-7.178-16-16V96c0-8.822 7.178-16 16-16h448c8.822 0 16 7.178 16 16V416zM236.5 222.1c9.375 9.375 24.56 9.375 33.94 0c9.375-9.375 9.375-24.56 0-33.94c-37.44-37.44-98.31-37.44-135.7 0C116.5 206.2 106.5 230.4 106.5 256s9.1 49.75 28.12 67.88c18.72 18.72 43.28 28.08 67.87 28.08s49.16-9.359 67.87-28.08c9.375-9.375 9.375-24.56 0-33.94c-9.375-9.375-24.56-9.375-33.94 0c-18.69 18.72-49.19 18.72-67.87 0C159.5 280.9 154.5 268.8 154.5 256s5-24.88 14.06-33.94C187.3 203.3 217.8 203.3 236.5 222.1zM428.5 222.1c9.375 9.375 24.56 9.375 33.94 0c9.375-9.375 9.375-24.56 0-33.94c-37.44-37.44-98.31-37.44-135.7 0C308.5 206.2 298.5 230.4 298.5 256s9.1 49.75 28.12 67.88c18.72 18.72 43.28 28.08 67.87 28.08s49.16-9.359 67.87-28.08c9.375-9.375 9.375-24.56 0-33.94c-9.375-9.375-24.56-9.375-33.94 0c-18.69 18.72-49.19 18.72-67.87 0C351.5 280.9 346.5 268.8 346.5 256s5-24.88 14.06-33.94C379.3 203.3 409.8 203.3 428.5 222.1z',
			),
		),
		'label'             => __( 'Closed Captioning', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'cloud'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M96.2 200.1C96.07 197.4 96 194.7 96 192C96 103.6 167.6 32 256 32C315.3 32 367 64.25 394.7 112.2C409.9 101.1 428.3 96 448 96C501 96 544 138.1 544 192C544 204.2 541.7 215.8 537.6 226.6C596 238.4 640 290.1 640 352C640 422.7 582.7 480 512 480H144C64.47 480 0 415.5 0 336C0 273.2 40.17 219.8 96.2 200.1z',
			),
		),
		'label'             => __( 'Cloud', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'environment', 'science-and-technology', 'travel' ),
	),
	'cloud-arrow-down'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 480C64.47 480 0 415.5 0 336C0 273.2 40.17 219.8 96.2 200.1C96.07 197.4 96 194.7 96 192C96 103.6 167.6 32 256 32C315.3 32 367 64.25 394.7 112.2C409.9 101.1 428.3 96 448 96C501 96 544 138.1 544 192C544 204.2 541.7 215.8 537.6 226.6C596 238.4 640 290.1 640 352C640 422.7 582.7 480 512 480H144zM303 392.1C312.4 402.3 327.6 402.3 336.1 392.1L416.1 312.1C426.3 303.6 426.3 288.4 416.1 279C407.6 269.7 392.4 269.7 383 279L344 318.1V184C344 170.7 333.3 160 320 160C306.7 160 296 170.7 296 184V318.1L256.1 279C247.6 269.7 232.4 269.7 223 279C213.7 288.4 213.7 303.6 223 312.1L303 392.1z',
			),
		),
		'label'             => __( 'Cloud Arrow Down', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'cloud-arrow-up'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 480C64.47 480 0 415.5 0 336C0 273.2 40.17 219.8 96.2 200.1C96.07 197.4 96 194.7 96 192C96 103.6 167.6 32 256 32C315.3 32 367 64.25 394.7 112.2C409.9 101.1 428.3 96 448 96C501 96 544 138.1 544 192C544 204.2 541.7 215.8 537.6 226.6C596 238.4 640 290.1 640 352C640 422.7 582.7 480 512 480H144zM223 263C213.7 272.4 213.7 287.6 223 296.1C232.4 306.3 247.6 306.3 256.1 296.1L296 257.9V392C296 405.3 306.7 416 320 416C333.3 416 344 405.3 344 392V257.9L383 296.1C392.4 306.3 407.6 306.3 416.1 296.1C426.3 287.6 426.3 272.4 416.1 263L336.1 183C327.6 173.7 312.4 173.7 303 183L223 263z',
			),
		),
		'label'             => __( 'Cloud Arrow Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'cloud-bolt'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 351.1h-71.25l47.44-105.4c3.062-6.781 1.031-14.81-4.906-19.31c-5.969-4.469-14.22-4.312-19.94 .4687l-153.6 128c-5.156 4.312-7.094 11.41-4.781 17.72c2.281 6.344 8.281 10.56 15.03 10.56h71.25l-47.44 105.4c-3.062 6.781-1.031 14.81 4.906 19.31C191.6 510.9 194.1 512 198.4 512c3.656 0 7.281-1.25 10.25-3.719l153.6-128c5.156-4.312 7.094-11.41 4.781-17.72C364.8 356.2 358.8 351.1 352 351.1zM416 128c-.625 0-1.125 .25-1.625 .25C415.5 123 416 117.6 416 112C416 67.75 380.3 32 336 32c-24.62 0-46.25 11.25-61 28.75C256.4 24.75 219.3 0 176 0C114.1 0 64 50.13 64 112c0 7.25 .75 14.25 2.125 21.25C27.75 145.8 0 181.5 0 224c0 53 43 96 96 96h46.63l140.2-116.8c8.605-7.195 19.53-11.16 30.76-11.16c10.34 0 20.6 3.416 29.03 9.734c17.96 13.61 24.02 37.45 14.76 57.95L330.2 320H416c53 0 96-43 96-96S469 128 416 128z',
			),
		),
		'label'             => __( 'Cloud Bolt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-meatball'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M80 352C53.5 352 32 373.5 32 400S53.5 448 80 448S128 426.5 128 400S106.5 352 80 352zM496 352c-26.5 0-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48S522.5 352 496 352zM377 363.1c4.625-14.5 1.625-30.88-9.75-42.37c-11.5-11.5-27.87-14.38-42.37-9.875c-7-13.5-20.63-23-36.88-23s-29.88 9.5-36.88 23C236.6 306.2 220.2 309.2 208.8 320.8c-11.5 11.5-14.38 27.87-9.875 42.37c-13.5 7-23 20.63-23 36.88s9.5 29.88 23 36.88c-4.625 14.5-1.625 30.88 9.875 42.37c8.25 8.125 19 12.25 29.75 12.25c4.25 0 8.5-1.125 12.62-2.5C258.1 502.5 271.8 512 288 512s29.88-9.5 36.88-23c4.125 1.25 8.375 2.5 12.62 2.5c10.75 0 21.5-4.125 29.75-12.25c11.5-11.5 14.38-27.87 9.75-42.37C390.5 429.9 400 416.2 400 400S390.5 370.1 377 363.1zM544 224c0-53-43-96-96-96c-.625 0-1.125 .25-1.625 .25C447.5 123 448 117.6 448 112C448 67.75 412.2 32 368 32c-24.62 0-46.25 11.25-61 28.75C288.4 24.75 251.2 0 208 0C146.1 0 96 50.12 96 112c0 7.25 .75 14.25 2.125 21.25C59.75 145.8 32 181.5 32 224c0 53 43 96 96 96h43.38C175 312 179.8 304.6 186.2 298.2C199.8 284.8 217.8 277.1 237 276.9C250.5 263.8 268.8 256 288 256s37.5 7.75 51 20.88c19.25 .25 37.25 7.875 50.75 21.37C396.2 304.6 401.1 312 404.6 320H448C501 320 544 277 544 224z',
			),
		),
		'label'             => __( 'Cloud Meatball', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'cloud-moon'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M342.7 352.7c5.75-9.625 9.25-20.75 9.25-32.75c0-35.25-28.75-64-63.1-64c-17.25 0-32.75 6.875-44.25 17.87C227.4 244.2 196.2 223.1 159.1 223.1c-53 0-96 43.06-96 96.06c0 2 .5029 3.687 .6279 5.687c-37.5 13-64.62 48.38-64.62 90.25C-.0048 468.1 42.99 512 95.99 512h239.1c44.25 0 79.1-35.75 79.1-80C415.1 390.1 383.7 356.2 342.7 352.7zM565.2 298.4c-93 17.75-178.5-53.62-178.5-147.6c0-54.25 28.1-104 76.12-130.9c7.375-4.125 5.375-15.12-2.75-16.63C448.4 1.125 436.7 0 424.1 0c-105.9 0-191.9 85.88-191.9 192c0 8.5 .625 16.75 1.75 25c5.875 4.25 11.62 8.875 16.75 14.25C262.1 226.5 275.2 224 287.1 224c52.88 0 95.1 43.13 95.1 96c0 3.625-.25 7.25-.625 10.75c23.62 10.75 42.37 29.5 53.5 52.5c54.38-3.375 103.7-29.25 137.1-70.37C579.2 306.4 573.5 296.8 565.2 298.4z',
			),
		),
		'label'             => __( 'Cloud Moon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-moon-rain'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M350.5 225.5c-6.876-37.25-39.25-65.5-78.51-65.5c-12.25 0-23.88 2.1-34.25 7.1C220.3 143.9 192.1 128 160 128c-53.01 0-96.01 42.1-96.01 95.1c0 .5 .25 1.125 .25 1.625C27.63 232.9 0 265.3 0 304c0 44.25 35.75 79.1 80.01 79.1h256c44.25 0 80.01-35.75 80.01-79.1C416 264.8 387.8 232.3 350.5 225.5zM567.9 223.8C497.6 237.1 432.9 183.5 432.9 113c0-40.63 21.88-78 57.5-98.13c5.501-3.125 4.077-11.37-2.173-12.5C479.6 .7538 470.8 0 461.8 0c-77.88 0-141.1 61.25-144.4 137.9c26.75 11.88 48.26 33.88 58.88 61.75c37.13 14.25 64.01 47.38 70.26 86.75c5.126 .5 10.05 1.522 15.3 1.522c44.63 0 85.46-20.15 112.5-53.27C578.6 229.8 574.2 222.6 567.9 223.8zM340.1 426.7l-32 48c-7.345 11.03-4.376 25.94 6.657 33.28C318.8 510.7 323.4 512 327.1 512c7.751 0 15.38-3.75 20-10.69l32-48c7.345-11.03 4.376-25.94-6.657-33.28C362.3 412.7 347.4 415.7 340.1 426.7zM244 426.7l-32 48c-7.345 11.03-4.376 25.94 6.657 33.28C222.8 510.7 227.4 512 231.1 512c7.751 0 15.38-3.75 20-10.69l32-48c7.345-11.03 4.376-25.94-6.657-33.28C266.3 412.7 251.4 415.7 244 426.7zM148 426.7l-32 48c-7.345 11.03-4.376 25.94 6.657 33.28C126.8 510.7 131.4 512 135.1 512c7.751 0 15.38-3.75 20-10.69l32-48c7.345-11.03 4.376-25.94-6.657-33.28C170.3 412.7 155.4 415.7 148 426.7zM52.03 426.7l-32 48c-7.345 11.03-4.376 25.94 6.657 33.28C30.78 510.7 35.41 512 39.97 512c7.751 0 15.38-3.75 20-10.69l32-48c7.345-11.03 4.376-25.94-6.657-33.28C74.25 412.7 59.41 415.7 52.03 426.7z',
			),
		),
		'label'             => __( 'Cloud Moon Rain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-rain'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 128c-.625 0-1.125 .25-1.625 .25C415.5 123 416 117.6 416 112C416 67.75 380.3 32 336 32c-24.62 0-46.25 11.25-61 28.75C256.4 24.75 219.3 0 176 0C114.1 0 64 50.13 64 112c0 7.25 .75 14.25 2.125 21.25C27.75 145.8 0 181.5 0 224c0 53 43 96 96 96h320c53 0 96-43 96-96S469 128 416 128zM368 464c0 26.51 21.49 48 48 48s48-21.49 48-48s-48.01-95.1-48.01-95.1S368 437.5 368 464zM48 464C48 490.5 69.49 512 96 512s48-21.49 48-48s-48.01-95.1-48.01-95.1S48 437.5 48 464zM208 464c0 26.51 21.49 48 48 48s48-21.49 48-48s-48.01-95.1-48.01-95.1S208 437.5 208 464z',
			),
		),
		'label'             => __( 'Cloud Rain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-showers-heavy'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 128c-.625 0-1.125 .25-1.625 .25C415.5 123 416 117.6 416 112c0-44.25-35.75-80-79.1-80c-24.62 0-46.25 11.25-60.1 28.75C256.4 24.75 219.3 0 176 0C114.3 0 64 50.13 64 112c0 7.25 .7512 14.25 2.126 21.25C27.76 145.8 .0054 181.5 .0054 224c0 53 42.1 96 95.1 96h319.1C469 320 512 277 512 224S469 128 416 128zM198.8 353.9c-12.17-5.219-26.3 .4062-31.52 12.59l-47.1 112c-5.219 12.19 .4219 26.31 12.61 31.53C134.1 511.4 138.2 512 141.3 512c9.312 0 18.17-5.438 22.08-14.53l47.1-112C216.6 373.3 210.1 359.2 198.8 353.9zM81.46 353.9c-12.19-5.219-26.3 .4062-31.52 12.59l-47.1 112C-3.276 490.7 2.365 504.8 14.55 510.1C17.63 511.4 20.83 512 23.99 512c9.312 0 18.17-5.438 22.08-14.53l47.1-112C99.29 373.3 93.64 359.2 81.46 353.9zM316.1 353.9c-12.19-5.219-26.3 .4062-31.52 12.59l-47.1 112c-5.219 12.19 .4219 26.31 12.61 31.53C252.3 511.4 255.5 512 258.7 512c9.312 0 18.17-5.438 22.08-14.53l47.1-112C333.1 373.3 328.3 359.2 316.1 353.9zM433.5 353.9c-12.17-5.219-26.28 .4062-31.52 12.59l-47.1 112c-5.219 12.19 .4219 26.31 12.61 31.53C369.6 511.4 372.8 512 375.1 512c9.312 0 18.17-5.438 22.08-14.53l47.1-112C451.3 373.3 445.6 359.2 433.5 353.9z',
			),
		),
		'label'             => __( 'Cloud Showers Heavy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-showers-water'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M223.1 0C262.6 0 295.9 22.82 311.2 55.7C325.7 41.07 345.8 32 368 32C406.7 32 438.1 59.48 446.4 96H448C483.3 96 512 124.7 512 160C512 195.3 483.3 224 448 224H127.1C92.65 224 63.1 195.3 63.1 160C63.1 124.7 92.65 96 127.1 96C127.1 42.98 170.1 0 223.1 0zM92.58 372.3C85.76 383.7 71.02 387.4 59.65 380.6C48.29 373.8 44.6 359 51.42 347.7L99.42 267.7C106.2 256.3 120.1 252.6 132.3 259.4C143.7 266.2 147.4 280.1 140.6 292.3L92.58 372.3zM468.3 259.4C479.7 266.2 483.4 280.1 476.6 292.3L428.6 372.3C421.8 383.7 407 387.4 395.7 380.6C384.3 373.8 380.6 359 387.4 347.7L435.4 267.7C442.2 256.3 456.1 252.6 468.3 259.4V259.4zM204.6 372.3C197.8 383.7 183 387.4 171.7 380.6C160.3 373.8 156.6 359 163.4 347.7L211.4 267.7C218.2 256.3 232.1 252.6 244.3 259.4C255.7 266.2 259.4 280.1 252.6 292.3L204.6 372.3zM356.3 259.4C367.7 266.2 371.4 280.1 364.6 292.3L316.6 372.3C309.8 383.7 295 387.4 283.7 380.6C272.3 373.8 268.6 359 275.4 347.7L323.4 267.7C330.2 256.3 344.1 252.6 356.3 259.4V259.4zM384 448C410.9 448 439.4 437.2 461.4 421.9L461.5 421.9C473.4 413.4 489.5 414.1 500.7 423.6C515 435.5 533.2 444.6 551.3 448.8C568.5 452.8 579.2 470.1 575.2 487.3C571.2 504.5 553.1 515.2 536.7 511.2C512.2 505.4 491.9 494.6 478.5 486.2C449.5 501.7 417 512 384 512C352.1 512 323.4 502.1 303.6 493.1C297.7 490.5 292.5 487.8 288 485.4C283.5 487.8 278.3 490.5 272.4 493.1C252.6 502.1 223.9 512 192 512C158.1 512 126.5 501.7 97.5 486.2C84.12 494.6 63.79 505.4 39.27 511.2C22.06 515.2 4.853 504.5 .8422 487.3C-3.169 470.1 7.532 452.8 24.74 448.8C42.84 444.6 60.96 435.5 75.31 423.6C86.46 414.1 102.6 413.4 114.5 421.9L114.6 421.9C136.7 437.2 165.1 448 192 448C219.5 448 247 437.4 269.5 421.9C280.6 414 295.4 414 306.5 421.9C328.1 437.4 356.5 448 384 448H384z',
			),
		),
		'label'             => __( 'Cloud Showers Water', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-sun'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M96 208c0-61.86 50.14-111.1 111.1-111.1c52.65 0 96.5 36.45 108.5 85.42C334.7 173.1 354.7 168 375.1 168c4.607 0 9.152 .3809 13.68 .8203l24.13-34.76c5.145-7.414 .8965-17.67-7.984-19.27L317.2 98.78L301.2 10.21C299.6 1.325 289.4-2.919 281.9 2.226L208 53.54L134.1 2.225C126.6-2.92 116.4 1.326 114.8 10.21L98.78 98.78L10.21 114.8C1.326 116.4-2.922 126.7 2.223 134.1l51.3 73.94L2.224 281.9c-5.145 7.414-.8975 17.67 7.983 19.27L98.78 317.2l16.01 88.58c1.604 8.881 11.86 13.13 19.27 7.982l10.71-7.432c2.725-35.15 19.85-66.51 45.83-88.1C137.1 309.8 96 263.9 96 208zM128 208c0 44.18 35.82 80 80 80c9.729 0 18.93-1.996 27.56-5.176c7.002-33.65 25.53-62.85 51.57-83.44C282.8 159.3 249.2 128 208 128C163.8 128 128 163.8 128 208zM575.2 325.6c.125-2 .7453-3.744 .7453-5.619c0-35.38-28.75-64-63.1-64c-12.62 0-24.25 3.749-34.13 9.999c-17.62-38.88-56.5-65.1-101.9-65.1c-61.75 0-112 50.12-112 111.1c0 3 .7522 5.743 .8772 8.618c-49.63 3.75-88.88 44.74-88.88 95.37C175.1 469 218.1 512 271.1 512h272c53 0 96-42.99 96-95.99C639.1 373.9 612.7 338.6 575.2 325.6z',
			),
		),
		'label'             => __( 'Cloud Sun', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloud-sun-rain'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M255.7 139.1C244.8 125.5 227.6 116 208 116c-33.14 0-60 26.86-60 59.1c0 25.56 16.06 47.24 38.58 55.88C197.2 219.3 210.5 208.9 225.9 201.1C229.1 178.5 240.6 157.3 255.7 139.1zM120 175.1c0-48.6 39.4-87.1 88-87.1c27.8 0 52.29 13.14 68.42 33.27c21.24-15.67 47.22-25.3 75.58-25.3c.0098 0-.0098 0 0 0L300.4 83.58L286.9 8.637C285.9 3.346 281.3 .0003 276.5 .0003c-2.027 0-4.096 .5928-5.955 1.881l-62.57 43.42L145.4 1.882C143.6 .5925 141.5-.0003 139.5-.0003c-4.818 0-9.399 3.346-10.35 8.636l-13.54 74.95L40.64 97.13c-5.289 .9556-8.637 5.538-8.637 10.36c0 2.026 .5921 4.094 1.881 5.951l43.41 62.57L33.88 238.6C32.59 240.4 32 242.5 32 244.5c0 4.817 3.347 9.398 8.636 10.35l74.95 13.54l13.54 74.95c.9555 5.289 5.537 8.636 10.35 8.636c2.027 0 4.096-.5927 5.954-1.882l19.47-13.51c-3.16-10.34-4.934-21.28-4.934-32.64c0-17.17 4.031-33.57 11.14-48.32C141 241.7 120 211.4 120 175.1zM542.5 225.5c-6.875-37.25-39.25-65.5-78.51-65.5c-12.25 0-23.88 3-34.25 8c-17.5-24.13-45.63-40-77.76-40c-53 0-96.01 43-96.01 96c0 .5 .25 1.125 .25 1.625C219.6 232.1 191.1 265.2 191.1 303.1c0 44.25 35.75 80 80.01 80h256C572.2 383.1 608 348.2 608 303.1C608 264.7 579.7 232.2 542.5 225.5zM552 415.1c-7.753 0-15.35 3.752-19.97 10.69l-32 48c-2.731 4.093-4.037 8.719-4.037 13.29C496 501.4 506.9 512 520 512c7.75 0 15.36-3.75 19.98-10.69l32-48c2.731-4.093 4.037-8.719 4.037-13.29C576 426.6 565.1 415.1 552 415.1zM456 415.1c-7.751 0-15.34 3.752-19.98 10.69l-32 48c-2.731 4.093-4.037 8.719-4.037 13.29C400 501.4 410.9 512 423.1 512c7.75 0 15.36-3.75 19.98-10.69l32-48c2.731-4.093 4.037-8.719 4.037-13.29C480 426.6 469.1 415.1 456 415.1zM360 415.1c-7.753 0-15.34 3.752-19.97 10.69l-32 48c-2.731 4.093-4.037 8.719-4.037 13.29C304 501.4 314.9 512 327.1 512c7.75 0 15.36-3.75 19.99-10.69l32-48c2.731-4.093 4.037-8.719 4.037-13.29C384 426.6 373.1 415.1 360 415.1zM264 415.1c-7.756 0-15.35 3.752-19.97 10.69l-32 48c-2.731 4.093-4.037 8.719-4.037 13.29C208 501.4 218.9 512 231.1 512c7.75 0 15.36-3.75 19.98-10.69l32-48c2.731-4.093 4.037-8.719 4.037-13.29C288 426.6 277.1 415.1 264 415.1z',
			),
		),
		'label'             => __( 'Cloud Sun Rain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cloudflare'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M407.9 319.9l-230.8-2.928a4.58 4.58 0 0 1 -3.632-1.926 4.648 4.648 0 0 1 -.494-4.147 6.143 6.143 0 0 1 5.361-4.076L411.3 303.9c27.63-1.26 57.55-23.57 68.02-50.78l13.29-34.54a7.944 7.944 0 0 0 .524-2.936 7.735 7.735 0 0 0 -.164-1.631A151.9 151.9 0 0 0 201.3 198.4 68.12 68.12 0 0 0 94.2 269.6C41.92 271.1 0 313.7 0 366.1a96.05 96.05 0 0 0 1.029 13.96 4.508 4.508 0 0 0 4.445 3.871l426.1 .051c.043 0 .08-.019 .122-.02a5.606 5.606 0 0 0 5.271-4l3.273-11.27c3.9-13.4 2.448-25.8-4.1-34.9C430.1 325.4 420.1 320.5 407.9 319.9zM513.9 221.1c-2.141 0-4.271 .062-6.391 .164a3.771 3.771 0 0 0 -3.324 2.653l-9.077 31.19c-3.9 13.4-2.449 25.79 4.1 34.89 6.02 8.4 16.05 13.32 28.24 13.9l49.2 2.939a4.491 4.491 0 0 1 3.51 1.894 4.64 4.64 0 0 1 .514 4.169 6.153 6.153 0 0 1 -5.351 4.075l-51.13 2.939c-27.75 1.27-57.67 23.57-68.14 50.78l-3.695 9.606a2.716 2.716 0 0 0 2.427 3.68c.046 0 .088 .017 .136 .017h175.9a4.69 4.69 0 0 0 4.539-3.37 124.8 124.8 0 0 0 4.682-34C640 277.3 583.5 221.1 513.9 221.1z',
			),
		),
		'label'             => __( 'Cloudflare', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'cloudscale'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M318.1 154l-9.4 7.6c-22.5-19.3-51.5-33.6-83.3-33.6C153.8 128 96 188.8 96 260.3c0 6.6 .4 13.1 1.4 19.4-2-56 41.8-97.4 92.6-97.4 24.2 0 46.2 9.4 62.6 24.7l-25.2 20.4c-8.3-.9-16.8 1.8-23.1 8.1-11.1 11-11.1 28.9 0 40 11.1 11 28.9 11 40 0 6.3-6.3 9-14.9 8.1-23.1l75.2-88.8c6.3-6.5-3.3-15.9-9.5-9.6zm-83.8 111.5c-5.6 5.5-14.6 5.5-20.2 0-5.6-5.6-5.6-14.6 0-20.2s14.6-5.6 20.2 0 5.6 14.7 0 20.2zM224 32C100.5 32 0 132.5 0 256s100.5 224 224 224 224-100.5 224-224S347.5 32 224 32zm0 384c-88.2 0-160-71.8-160-160S135.8 96 224 96s160 71.8 160 160-71.8 160-160 160z',
			),
		),
		'label'             => __( 'cloudscale.ch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'cloudsmith'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 332,
				'height' => 512,
				'path'   => 'M332.5 419.9c0 46.4-37.6 84.1-84 84.1s-84-37.7-84-84.1 37.6-84 84-84 84 37.6 84 84zm-84-243.9c46.4 0 80-37.6 80-84s-33.6-84-80-84-88 37.6-88 84-29.6 76-76 76-84 41.6-84 88 37.6 80 84 80 84-33.6 84-80 33.6-80 80-80z',
			),
		),
		'label'             => __( 'Cloudsmith', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'cloudversify'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 616,
				'height' => 512,
				'path'   => 'M148.6 304c8.2 68.5 67.4 115.5 146 111.3 51.2 43.3 136.8 45.8 186.4-5.6 69.2 1.1 118.5-44.6 131.5-99.5 14.8-62.5-18.2-132.5-92.1-155.1-33-88.1-131.4-101.5-186.5-85-57.3 17.3-84.3 53.2-99.3 109.7-7.8 2.7-26.5 8.9-45 24.1 11.7 0 15.2 8.9 15.2 19.5v20.4c0 10.7-8.7 19.5-19.5 19.5h-20.2c-10.7 0-19.5-6-19.5-16.7V240H98.8C95 240 88 244.3 88 251.9v40.4c0 6.4 5.3 11.8 11.7 11.8h48.9zm227.4 8c-10.7 46.3 21.7 72.4 55.3 86.8C324.1 432.6 259.7 348 296 288c-33.2 21.6-33.7 71.2-29.2 92.9-17.9-12.4-53.8-32.4-57.4-79.8-3-39.9 21.5-75.7 57-93.9C297 191.4 369.9 198.7 400 248c-14.1-48-53.8-70.1-101.8-74.8 30.9-30.7 64.4-50.3 114.2-43.7 69.8 9.3 133.2 82.8 67.7 150.5 35-16.3 48.7-54.4 47.5-76.9l10.5 19.6c11.8 22 15.2 47.6 9.4 72-9.2 39-40.6 68.8-79.7 76.5-32.1 6.3-83.1-5.1-91.8-59.2zM128 208H88.2c-8.9 0-16.2-7.3-16.2-16.2v-39.6c0-8.9 7.3-16.2 16.2-16.2H128c8.9 0 16.2 7.3 16.2 16.2v39.6c0 8.9-7.3 16.2-16.2 16.2zM10.1 168C4.5 168 0 163.5 0 157.9v-27.8c0-5.6 4.5-10.1 10.1-10.1h27.7c5.5 0 10.1 4.5 10.1 10.1v27.8c0 5.6-4.5 10.1-10.1 10.1H10.1zM168 142.7v-21.4c0-5.1 4.2-9.3 9.3-9.3h21.4c5.1 0 9.3 4.2 9.3 9.3v21.4c0 5.1-4.2 9.3-9.3 9.3h-21.4c-5.1 0-9.3-4.2-9.3-9.3zM56 235.5v25c0 6.3-5.1 11.5-11.4 11.5H19.4C13.1 272 8 266.8 8 260.5v-25c0-6.3 5.1-11.5 11.4-11.5h25.1c6.4 0 11.5 5.2 11.5 11.5z',
			),
		),
		'label'             => __( 'cloudversify', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'clover'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 302.3c0 35.29-28.99 63.91-64.28 63.91c-38.82 0-88.7-22.75-122.4-40.92c18.17 33.7 40.92 83.57 40.92 122.4c0 35.29-28.61 63.91-63.91 63.91c-18.1 0-34.45-7.52-46.09-19.63C244.6 504.3 228 512 209.7 512c-35.29 0-63.91-28.99-63.91-64.28c0-38.82 22.75-88.7 40.92-122.4c-33.7 18.17-83.57 40.92-122.4 40.92c-35.29 0-63.91-28.61-63.91-63.91c0-18.1 7.52-34.45 19.63-46.09C7.676 244.6 0 228 0 209.7c0-35.29 28.99-63.91 64.28-63.91c38.82 0 88.7 22.75 122.4 40.92C168.5 152.1 145.8 103.1 145.8 64.28c0-35.29 28.61-63.91 63.91-63.91c18.1 0 34.45 7.52 46.09 19.63C267.4 7.676 283.1 0 302.3 0c35.29 0 63.91 28.99 63.91 64.28c0 38.82-22.75 88.7-40.92 122.4c33.7-18.17 83.57-40.92 122.4-40.92c35.29 0 63.91 28.61 63.91 63.91c0 18.1-7.52 34.45-19.63 46.09C504.3 267.4 512 283.1 512 302.3z',
			),
		),
		'label'             => __( 'Clover', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'environment' ),
	),
	'cmplid'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M226.1 388.2a3.816 3.816 0 0 0 -2.294-3.5 3.946 3.946 0 0 0 -1.629-.385L72.6 384.3a19.24 19.24 0 0 1 -17.92-26.02L81.58 255.7a35.72 35.72 0 0 1 32.37-26H262.5a7.07 7.07 0 0 0 6.392-5.194l10.77-41.13a3.849 3.849 0 0 0 -2.237-4.937 3.755 3.755 0 0 0 -1.377-.261c-.063 0-.126 0-.189 .005H127.4a106.8 106.8 0 0 0 -96.99 77.1L3.483 358.8A57.47 57.47 0 0 0 57.31 436q1.43 0 2.86-.072H208.7a7.131 7.131 0 0 0 6.391-5.193L225.8 389.6A3.82 3.82 0 0 0 226.1 388.2zM306.7 81.2a3.861 3.861 0 0 0 .251-1.367A3.813 3.813 0 0 0 303.1 76c-.064 0-.128 0-.192 0h-41A7.034 7.034 0 0 0 255.5 81.2l-21.35 80.92h51.13zM180.4 368.2H231.5L263.5 245.7H212.3zM511.9 79.72a3.809 3.809 0 0 0 -3.8-3.661c-.058 0-.137 0-.23 .007h-41a7.1 7.1 0 0 0 -6.584 5.129L368.9 430.6a3.54 3.54 0 0 0 -.262 1.335 3.873 3.873 0 0 0 3.864 3.863c.056 0 .112 0 .169 0h41a7.068 7.068 0 0 0 6.392-5.193L511.5 81.2A3.624 3.624 0 0 0 511.9 79.72zM324.6 384.5h-41a7.2 7.2 0 0 0 -6.392 5.194L266.5 430.8a3.662 3.662 0 0 0 -.268 1.374A3.783 3.783 0 0 0 270 436c.06 0 .166 0 .3-.012h40.9a7.036 7.036 0 0 0 6.391-5.193l10.77-41.13a3.75 3.75 0 0 0 -3.445-5.208c-.108 0-.217 0-.326 .014zm311.3-308.4h-41a7.066 7.066 0 0 0 -6.392 5.129l-91.46 349.4a4.073 4.073 0 0 0 -.229 1.347 3.872 3.872 0 0 0 3.863 3.851c.056 0 .112 0 .169 0h40.97a7.1 7.1 0 0 0 6.392-5.193L639.7 81.2a3.624 3.624 0 0 0 .32-1.475 3.841 3.841 0 0 0 -3.821-3.564c-.068 0-.137 0-.206 .006zM371.6 225.2l10.8-41.1a4.369 4.369 0 0 0 .227-1.388 3.869 3.869 0 0 0 -3.861-3.842c-.057 0-.113 0-.169 0h-41.1a7.292 7.292 0 0 0 -6.391 5.226l-10.83 41.1a4.417 4.417 0 0 0 -.26 1.493c0 .069 0 .138 0 .206a3.776 3.776 0 0 0 3.757 3.507c.076 0 .18 0 .3-.012h41.13A7.034 7.034 0 0 0 371.6 225.2z',
			),
		),
		'label'             => __( 'Cmplid', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'code'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M414.8 40.79L286.8 488.8C281.9 505.8 264.2 515.6 247.2 510.8C230.2 505.9 220.4 488.2 225.2 471.2L353.2 23.21C358.1 6.216 375.8-3.624 392.8 1.232C409.8 6.087 419.6 23.8 414.8 40.79H414.8zM518.6 121.4L630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L518.6 390.6C506.1 403.1 485.9 403.1 473.4 390.6C460.9 378.1 460.9 357.9 473.4 345.4L562.7 256L473.4 166.6C460.9 154.1 460.9 133.9 473.4 121.4C485.9 108.9 506.1 108.9 518.6 121.4V121.4zM166.6 166.6L77.25 256L166.6 345.4C179.1 357.9 179.1 378.1 166.6 390.6C154.1 403.1 133.9 403.1 121.4 390.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4L121.4 121.4C133.9 108.9 154.1 108.9 166.6 121.4C179.1 133.9 179.1 154.1 166.6 166.6V166.6z',
			),
		),
		'label'             => __( 'Code', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-branch'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 80C160 112.8 140.3 140.1 112 153.3V241.1C130.8 230.2 152.7 224 176 224H272C307.3 224 336 195.3 336 160V153.3C307.7 140.1 288 112.8 288 80C288 35.82 323.8 0 368 0C412.2 0 448 35.82 448 80C448 112.8 428.3 140.1 400 153.3V160C400 230.7 342.7 288 272 288H176C140.7 288 112 316.7 112 352V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80V80zM80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104zM368 56C354.7 56 344 66.75 344 80C344 93.25 354.7 104 368 104C381.3 104 392 93.25 392 80C392 66.75 381.3 56 368 56zM80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456z',
			),
		),
		'label'             => __( 'Code Branch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-commit'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M476.8 288C461.1 361 397.4 416 320 416C242.6 416 178 361 163.2 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H163.2C178 150.1 242.6 96 320 96C397.4 96 461.1 150.1 476.8 224H608C625.7 224 640 238.3 640 256C640 273.7 625.7 288 608 288H476.8zM320 336C364.2 336 400 300.2 400 256C400 211.8 364.2 176 320 176C275.8 176 240 211.8 240 256C240 300.2 275.8 336 320 336z',
			),
		),
		'label'             => __( 'Code Commit', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-compare'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 488C320 497.5 314.4 506.1 305.8 509.9C297.1 513.8 286.1 512.2 279.9 505.8L199.9 433.8C194.9 429.3 192 422.8 192 416C192 409.2 194.9 402.7 199.9 398.2L279.9 326.2C286.1 319.8 297.1 318.2 305.8 322.1C314.4 325.9 320 334.5 320 344V384H336C371.3 384 400 355.3 400 320V153.3C371.7 140.1 352 112.8 352 80C352 35.82 387.8 0 432 0C476.2 0 512 35.82 512 80C512 112.8 492.3 140.1 464 153.3V320C464 390.7 406.7 448 336 448H320V488zM456 79.1C456 66.74 445.3 55.1 432 55.1C418.7 55.1 408 66.74 408 79.1C408 93.25 418.7 103.1 432 103.1C445.3 103.1 456 93.25 456 79.1zM192 24C192 14.52 197.6 5.932 206.2 2.076C214.9-1.78 225-.1789 232.1 6.161L312.1 78.16C317.1 82.71 320 89.2 320 96C320 102.8 317.1 109.3 312.1 113.8L232.1 185.8C225 192.2 214.9 193.8 206.2 189.9C197.6 186.1 192 177.5 192 168V128H176C140.7 128 112 156.7 112 192V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V192C48 121.3 105.3 64 176 64H192V24zM56 432C56 445.3 66.75 456 80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432z',
			),
		),
		'label'             => __( 'Code Compare', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-fork'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M160 80C160 112.8 140.3 140.1 112 153.3V192C112 209.7 126.3 224 144 224H304C321.7 224 336 209.7 336 192V153.3C307.7 140.1 288 112.8 288 80C288 35.82 323.8 0 368 0C412.2 0 448 35.82 448 80C448 112.8 428.3 140.1 400 153.3V192C400 245 357 288 304 288H256V358.7C284.3 371 304 399.2 304 432C304 476.2 268.2 512 224 512C179.8 512 144 476.2 144 432C144 399.2 163.7 371 192 358.7V288H144C90.98 288 48 245 48 192V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80V80zM80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104zM368 104C381.3 104 392 93.25 392 80C392 66.75 381.3 56 368 56C354.7 56 344 66.75 344 80C344 93.25 354.7 104 368 104zM224 408C210.7 408 200 418.7 200 432C200 445.3 210.7 456 224 456C237.3 456 248 445.3 248 432C248 418.7 237.3 408 224 408z',
			),
		),
		'label'             => __( 'Code Fork', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-merge'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M208 239.1H294.7C307 211.7 335.2 191.1 368 191.1C412.2 191.1 448 227.8 448 271.1C448 316.2 412.2 352 368 352C335.2 352 307 332.3 294.7 303.1H208C171.1 303.1 138.7 292.1 112 272V358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 0 80 0C124.2 0 160 35.82 160 80C160 112.6 140.5 140.7 112.4 153.2C117 201.9 158.1 240 208 240V239.1zM80 103.1C93.25 103.1 104 93.25 104 79.1C104 66.74 93.25 55.1 80 55.1C66.75 55.1 56 66.74 56 79.1C56 93.25 66.75 103.1 80 103.1zM80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456zM368 247.1C354.7 247.1 344 258.7 344 271.1C344 285.3 354.7 295.1 368 295.1C381.3 295.1 392 285.3 392 271.1C392 258.7 381.3 247.1 368 247.1z',
			),
		),
		'label'             => __( 'Code Merge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'code-pull-request'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M305.8 2.076C314.4 5.932 320 14.52 320 24V64H336C406.7 64 464 121.3 464 192V358.7C492.3 371 512 399.2 512 432C512 476.2 476.2 512 432 512C387.8 512 352 476.2 352 432C352 399.2 371.7 371 400 358.7V192C400 156.7 371.3 128 336 128H320V168C320 177.5 314.4 186.1 305.8 189.9C297.1 193.8 286.1 192.2 279.9 185.8L199.9 113.8C194.9 109.3 192 102.8 192 96C192 89.2 194.9 82.71 199.9 78.16L279.9 6.161C286.1-.1791 297.1-1.779 305.8 2.077V2.076zM432 456C445.3 456 456 445.3 456 432C456 418.7 445.3 408 432 408C418.7 408 408 418.7 408 432C408 445.3 418.7 456 432 456zM112 358.7C140.3 371 160 399.2 160 432C160 476.2 124.2 512 80 512C35.82 512 0 476.2 0 432C0 399.2 19.75 371 48 358.7V153.3C19.75 140.1 0 112.8 0 80C0 35.82 35.82 .0004 80 .0004C124.2 .0004 160 35.82 160 80C160 112.8 140.3 140.1 112 153.3V358.7zM80 56C66.75 56 56 66.75 56 80C56 93.25 66.75 104 80 104C93.25 104 104 93.25 104 80C104 66.75 93.25 56 80 56zM80 408C66.75 408 56 418.7 56 432C56 445.3 66.75 456 80 456C93.25 456 104 445.3 104 432C104 418.7 93.25 408 80 408z',
			),
		),
		'label'             => __( 'Code Pull Request', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'codepen'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.3 159.7l-234-156c-7.987-4.915-16.51-4.96-24.57 0l-234 156C3.714 163.7 0 170.8 0 177.1v155.1c0 7.143 3.714 14.29 9.715 18.29l234 156c7.987 4.915 16.51 4.96 24.57 0l234-156c6-3.999 9.715-11.14 9.715-18.29V177.1c-.001-7.142-3.715-14.29-9.716-18.28zM278 63.13l172.3 114.9-76.86 51.43L278 165.7V63.13zm-44 0v102.6l-95.43 63.72-76.86-51.43L234 63.13zM44 219.1l55.14 36.86L44 292.8v-73.71zm190 229.7L61.71 333.1l76.86-51.43L234 346.3v102.6zm22-140.9l-77.71-52 77.71-52 77.71 52-77.71 52zm22 140.9V346.3l95.43-63.72 76.86 51.43L278 448.8zm190-156l-55.14-36.86L468 219.1v73.71z',
			),
		),
		'label'             => __( 'Codepen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'codiepie'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 472,
				'height' => 512,
				'path'   => 'M422.5 202.9c30.7 0 33.5 53.1-.3 53.1h-10.8v44.3h-26.6v-97.4h37.7zM472 352.6C429.9 444.5 350.4 504 248 504 111 504 0 393 0 256S111 8 248 8c97.4 0 172.8 53.7 218.2 138.4l-186 108.8L472 352.6zm-38.5 12.5l-60.3-30.7c-27.1 44.3-70.4 71.4-122.4 71.4-82.5 0-149.2-66.7-149.2-148.9 0-82.5 66.7-149.2 149.2-149.2 48.4 0 88.9 23.5 116.9 63.4l59.5-34.6c-40.7-62.6-104.7-100-179.2-100-121.2 0-219.5 98.3-219.5 219.5S126.8 475.5 248 475.5c78.6 0 146.5-42.1 185.5-110.4z',
			),
		),
		'label'             => __( 'Codie Pie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'coins'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 80C512 98.01 497.7 114.6 473.6 128C444.5 144.1 401.2 155.5 351.3 158.9C347.7 157.2 343.9 155.5 340.1 153.9C300.6 137.4 248.2 128 192 128C183.7 128 175.6 128.2 167.5 128.6L166.4 128C142.3 114.6 128 98.01 128 80C128 35.82 213.1 0 320 0C426 0 512 35.82 512 80V80zM160.7 161.1C170.9 160.4 181.3 160 192 160C254.2 160 309.4 172.3 344.5 191.4C369.3 204.9 384 221.7 384 240C384 243.1 383.3 247.9 381.9 251.7C377.3 264.9 364.1 277 346.9 287.3C346.9 287.3 346.9 287.3 346.9 287.3C346.8 287.3 346.6 287.4 346.5 287.5L346.5 287.5C346.2 287.7 345.9 287.8 345.6 288C310.6 307.4 254.8 320 192 320C132.4 320 79.06 308.7 43.84 290.9C41.97 289.9 40.15 288.1 38.39 288C14.28 274.6 0 258 0 240C0 205.2 53.43 175.5 128 164.6C138.5 163 149.4 161.8 160.7 161.1L160.7 161.1zM391.9 186.6C420.2 182.2 446.1 175.2 468.1 166.1C484.4 159.3 499.5 150.9 512 140.6V176C512 195.3 495.5 213.1 468.2 226.9C453.5 234.3 435.8 240.5 415.8 245.3C415.9 243.6 416 241.8 416 240C416 218.1 405.4 200.1 391.9 186.6V186.6zM384 336C384 354 369.7 370.6 345.6 384C343.8 384.1 342 385.9 340.2 386.9C304.9 404.7 251.6 416 192 416C129.2 416 73.42 403.4 38.39 384C14.28 370.6 .0003 354 .0003 336V300.6C12.45 310.9 27.62 319.3 43.93 326.1C83.44 342.6 135.8 352 192 352C248.2 352 300.6 342.6 340.1 326.1C347.9 322.9 355.4 319.2 362.5 315.2C368.6 311.8 374.3 308 379.7 304C381.2 302.9 382.6 301.7 384 300.6L384 336zM416 278.1C434.1 273.1 452.5 268.6 468.1 262.1C484.4 255.3 499.5 246.9 512 236.6V272C512 282.5 507 293 497.1 302.9C480.8 319.2 452.1 332.6 415.8 341.3C415.9 339.6 416 337.8 416 336V278.1zM192 448C248.2 448 300.6 438.6 340.1 422.1C356.4 415.3 371.5 406.9 384 396.6V432C384 476.2 298 512 192 512C85.96 512 .0003 476.2 .0003 432V396.6C12.45 406.9 27.62 415.3 43.93 422.1C83.44 438.6 135.8 448 192 448z',
			),
		),
		'label'             => __( 'Coins', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'colon-sign'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M216.6 65.56C226.4 66.81 235.9 68.8 245.2 71.46L256.1 24.24C261.2 7.093 278.6-3.331 295.8 .9552C312.9 5.242 323.3 22.62 319 39.76L303.1 100C305.1 100.8 306.2 101.6 307.2 102.4C321.4 113 324.2 133.1 313.6 147.2C307.5 155.3 298.4 159.7 288.1 159.1L234.8 376.7C247.1 372.3 258.5 366.1 268.8 358.4C282.9 347.8 302.1 350.6 313.6 364.8C324.2 378.9 321.4 398.1 307.2 409.6C281.5 428.9 250.8 441.9 217.4 446.3L207 487.8C202.8 504.9 185.4 515.3 168.2 511C151.1 506.8 140.7 489.4 144.1 472.2L152.1 443.8C142.4 441.8 133.1 439.1 124.1 435.6L111 487.8C106.8 504.9 89.38 515.3 72.24 511C55.09 506.8 44.67 489.4 48.96 472.2L66.65 401.4C25.84 366.2 0 314.1 0 256C0 164.4 64.09 87.85 149.9 68.64L160.1 24.24C165.2 7.093 182.6-3.331 199.8 .9552C216.9 5.242 227.3 22.62 223 39.76L216.6 65.56zM131.2 143.3C91.17 164.1 64 207.3 64 256C64 282.2 71.85 306.5 85.32 326.8L131.2 143.3zM167.6 381.7L229.6 133.6C220.4 130.8 210.8 128.1 200.9 128.3L139.8 372.9C148.6 376.8 157.9 379.8 167.6 381.7V381.7z',
			),
		),
		'label'             => __( 'Colon Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'comment'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 32C114.6 32 .0272 125.1 .0272 240c0 49.63 21.35 94.98 56.97 130.7c-12.5 50.37-54.27 95.27-54.77 95.77c-2.25 2.25-2.875 5.734-1.5 8.734C1.979 478.2 4.75 480 8 480c66.25 0 115.1-31.76 140.6-51.39C181.2 440.9 217.6 448 256 448c141.4 0 255.1-93.13 255.1-208S397.4 32 256 32z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 32C114.6 32 .0272 125.1 .0272 240c0 47.63 19.91 91.25 52.91 126.2c-14.88 39.5-45.87 72.88-46.37 73.25c-6.625 7-8.375 17.25-4.625 26C5.818 474.2 14.38 480 24 480c61.5 0 109.1-25.75 139.1-46.25C191.1 442.8 223.3 448 256 448c141.4 0 255.1-93.13 255.1-208S397.4 32 256 32zM256.1 400c-26.75 0-53.12-4.125-78.38-12.12l-22.75-7.125l-19.5 13.75c-14.25 10.12-33.88 21.38-57.5 29c7.375-12.12 14.37-25.75 19.88-40.25l10.62-28l-20.62-21.87C69.82 314.1 48.07 282.2 48.07 240c0-88.25 93.25-160 208-160s208 71.75 208 160S370.8 400 256.1 400z',
			),
		),
		'label'             => __( 'Comment', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'social' ),
	),
	'comment-dollar'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 31.1c-141.4 0-255.1 93.09-255.1 208c0 49.59 21.37 94.1 56.97 130.7c-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.5938 472.2 .6875 475.2C1.1 478.2 4.813 479.1 8 479.1c66.31 0 116-31.8 140.6-51.41c32.72 12.31 69.02 19.41 107.4 19.41c141.4 0 255.1-93.09 255.1-207.1S397.4 31.1 256 31.1zM317.8 282.3c-3.623 20.91-19.47 34.64-41.83 39.43V332c0 11.03-8.946 20-19.99 20S236 343 236 332v-10.77c-8.682-1.922-17.3-4.723-25.06-7.512l-4.266-1.5C196.3 308.5 190.8 297.1 194.5 286.7c3.688-10.41 15.11-15.81 25.52-12.22l4.469 1.625c7.844 2.812 16.72 6 23.66 7.031c13.72 2.125 28.94 .1875 30.31-7.625c.875-5.094 1.359-7.906-27.92-16.28L244.7 257.5c-17.33-5.094-57.92-17-50.52-59.84C197.8 176.8 213.6 162.8 236 157.1V148c0-11.03 8.961-20 20.01-20s19.99 8.969 19.99 20v10.63c5.453 1.195 11.34 2.789 18.56 5.273c10.44 3.625 15.95 15.03 12.33 25.47c-3.625 10.41-15.06 15.94-25.45 12.34c-5.859-2.031-12-4-17.59-4.844C250.2 194.8 234.1 196.7 233.6 204.5C232.8 208.1 232.3 212.2 255.1 219.2l5.547 1.594C283.8 227.1 325.3 239 317.8 282.3z',
			),
		),
		'label'             => __( 'Comment Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'comment-dots'                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 31.1c-141.4 0-255.1 93.12-255.1 208c0 49.62 21.35 94.98 56.97 130.7c-12.5 50.37-54.27 95.27-54.77 95.77c-2.25 2.25-2.875 5.734-1.5 8.734c1.249 3 4.021 4.766 7.271 4.766c66.25 0 115.1-31.76 140.6-51.39c32.63 12.25 69.02 19.39 107.4 19.39c141.4 0 255.1-93.13 255.1-207.1S397.4 31.1 256 31.1zM127.1 271.1c-17.75 0-32-14.25-32-31.1s14.25-32 32-32s32 14.25 32 32S145.7 271.1 127.1 271.1zM256 271.1c-17.75 0-31.1-14.25-31.1-31.1s14.25-32 31.1-32s31.1 14.25 31.1 32S273.8 271.1 256 271.1zM383.1 271.1c-17.75 0-32-14.25-32-31.1s14.25-32 32-32s32 14.25 32 32S401.7 271.1 383.1 271.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M144 208C126.3 208 112 222.2 112 239.1C112 257.7 126.3 272 144 272s31.1-14.25 31.1-32S161.8 208 144 208zM256 207.1c-17.75 0-31.1 14.25-31.1 32s14.25 31.1 31.1 31.1s31.1-14.25 31.1-31.1S273.8 207.1 256 207.1zM368 208c-17.75 0-31.1 14.25-31.1 32s14.25 32 31.1 32c17.75 0 31.99-14.25 31.99-32C400 222.2 385.8 208 368 208zM256 31.1c-141.4 0-255.1 93.12-255.1 208c0 47.62 19.91 91.25 52.91 126.3c-14.87 39.5-45.87 72.88-46.37 73.25c-6.624 7-8.373 17.25-4.624 26C5.818 474.2 14.38 480 24 480c61.49 0 109.1-25.75 139.1-46.25c28.87 9 60.16 14.25 92.9 14.25c141.4 0 255.1-93.13 255.1-207.1S397.4 31.1 256 31.1zM256 400c-26.75 0-53.12-4.125-78.36-12.12l-22.75-7.125L135.4 394.5c-14.25 10.12-33.87 21.38-57.49 29c7.374-12.12 14.37-25.75 19.87-40.25l10.62-28l-20.62-21.87C69.81 314.1 48.06 282.2 48.06 240c0-88.25 93.24-160 207.1-160s207.1 71.75 207.1 160S370.8 400 256 400z',
			),
		),
		'label'             => __( 'Comment Dots', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'comment-medical'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 31.1c-141.4 0-255.1 93.09-255.1 208c0 49.59 21.38 94.1 56.97 130.7c-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.5938 472.2 .6875 475.2c1.312 3 4.125 4.797 7.312 4.797c66.31 0 116-31.8 140.6-51.41c32.72 12.31 69.01 19.41 107.4 19.41C397.4 447.1 512 354.9 512 239.1S397.4 31.1 256 31.1zM368 266c0 8.836-7.164 16-16 16h-54V336c0 8.836-7.164 16-16 16h-52c-8.836 0-16-7.164-16-16V282H160c-8.836 0-16-7.164-16-16V214c0-8.838 7.164-16 16-16h53.1V144c0-8.838 7.164-16 16-16h52c8.836 0 16 7.162 16 16v54H352c8.836 0 16 7.162 16 16V266z',
			),
		),
		'label'             => __( 'Comment Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'comment-slash'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M64.03 239.1c0 49.59 21.38 94.1 56.97 130.7c-12.5 50.39-54.31 95.3-54.81 95.8c-2.187 2.297-2.781 5.703-1.5 8.703c1.312 3 4.125 4.797 7.312 4.797c66.31 0 116-31.8 140.6-51.41c32.72 12.31 69.02 19.41 107.4 19.41c37.39 0 72.78-6.663 104.8-18.36L82.93 161.7C70.81 185.9 64.03 212.3 64.03 239.1zM630.8 469.1l-118.1-92.59C551.1 340 576 292.4 576 240c0-114.9-114.6-207.1-255.1-207.1c-67.74 0-129.1 21.55-174.9 56.47L38.81 5.117C28.21-3.154 13.16-1.096 5.115 9.19C-3.072 19.63-1.249 34.72 9.188 42.89l591.1 463.1c10.5 8.203 25.57 6.333 33.7-4.073C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'Comment Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'comment-sms'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 32C114.6 32 .0137 125.1 .0137 240c0 49.59 21.39 95 56.99 130.7c-12.5 50.39-54.31 95.3-54.81 95.8C0 468.8-.5938 472.2 .6875 475.2C1.1 478.2 4.813 480 8 480c66.31 0 116-31.8 140.6-51.41C181.3 440.9 217.6 448 256 448C397.4 448 512 354.9 512 240S397.4 32 256 32zM167.3 271.9C163.9 291.1 146.3 304 121.1 304c-4.031 0-8.25-.3125-12.59-1C101.1 301.8 92.81 298.8 85.5 296.1c-8.312-3-14.06-12.66-11.09-20.97S85 261.1 93.38 264.9c6.979 2.498 14.53 5.449 20.88 6.438C125.7 273.1 135 271 135.8 266.4c1.053-5.912-10.84-8.396-24.56-12.34c-12.12-3.531-44.28-12.97-38.63-46c4.062-23.38 27.31-35.91 58-31.09c5.906 .9062 12.44 2.844 18.59 4.969c8.344 2.875 12.78 12 9.906 20.34C156.3 210.7 147.2 215.1 138.8 212.2c-4.344-1.5-8.938-2.938-13.09-3.594c-11.22-1.656-20.72 .4062-21.5 4.906C103.2 219.2 113.6 221.5 124.4 224.6C141.4 229.5 173.1 238.5 167.3 271.9zM320 288c0 8.844-7.156 16-16 16S288 296.8 288 288V240l-19.19 25.59c-6.062 8.062-19.55 8.062-25.62 0L224 240V288c0 8.844-7.156 16-16 16S192 296.8 192 288V192c0-6.875 4.406-12.1 10.94-15.18c6.5-2.094 13.71 .0586 17.87 5.59L256 229.3l35.19-46.93c4.156-5.531 11.4-7.652 17.87-5.59C315.6 179 320 185.1 320 192V288zM439.3 271.9C435.9 291.1 418.3 304 393.1 304c-4.031 0-8.25-.3125-12.59-1c-8.25-1.25-16.56-4.25-23.88-6.906c-8.312-3-14.06-12.66-11.09-20.97s10.59-13.16 18.97-10.19c6.979 2.498 14.53 5.449 20.88 6.438c11.44 1.719 20.78-.375 21.56-4.938c1.053-5.912-10.84-8.396-24.56-12.34c-12.12-3.531-44.28-12.97-38.63-46c4.031-23.38 27.25-35.91 58-31.09c5.906 .9062 12.44 2.844 18.59 4.969c8.344 2.875 12.78 12 9.906 20.34c-2.875 8.344-11.94 12.81-20.34 9.906c-4.344-1.5-8.938-2.938-13.09-3.594c-11.19-1.656-20.72 .4062-21.5 4.906C375.2 219.2 385.6 221.5 396.4 224.6C413.4 229.5 445.1 238.5 439.3 271.9z',
			),
		),
		'label'             => __( 'Comment Sms', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'comments'                       => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M416 176C416 78.8 322.9 0 208 0S0 78.8 0 176c0 39.57 15.62 75.96 41.67 105.4c-16.39 32.76-39.23 57.32-39.59 57.68c-2.1 2.205-2.67 5.475-1.441 8.354C1.9 350.3 4.602 352 7.66 352c38.35 0 70.76-11.12 95.74-24.04C134.2 343.1 169.8 352 208 352C322.9 352 416 273.2 416 176zM599.6 443.7C624.8 413.9 640 376.6 640 336C640 238.8 554 160 448 160c-.3145 0-.6191 .041-.9336 .043C447.5 165.3 448 170.6 448 176c0 98.62-79.68 181.2-186.1 202.5C282.7 455.1 357.1 512 448 512c33.69 0 65.32-8.008 92.85-21.98C565.2 502 596.1 512 632.3 512c3.059 0 5.76-1.725 7.02-4.605c1.229-2.879 .6582-6.148-1.441-8.354C637.6 498.7 615.9 475.3 599.6 443.7z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M208 0C322.9 0 416 78.8 416 176C416 273.2 322.9 352 208 352C189.3 352 171.2 349.7 153.9 345.8C123.3 364.8 79.13 384 24.95 384C14.97 384 5.93 378.1 2.018 368.9C-1.896 359.7-.0074 349.1 6.739 341.9C7.26 341.5 29.38 317.4 45.73 285.9C17.18 255.8 0 217.6 0 176C0 78.8 93.13 0 208 0zM164.6 298.1C179.2 302.3 193.8 304 208 304C296.2 304 368 246.6 368 176C368 105.4 296.2 48 208 48C119.8 48 48 105.4 48 176C48 211.2 65.71 237.2 80.57 252.9L104.1 277.8L88.31 308.1C84.74 314.1 80.73 321.9 76.55 328.5C94.26 323.4 111.7 315.5 128.7 304.1L145.4 294.6L164.6 298.1zM441.6 128.2C552 132.4 640 209.5 640 304C640 345.6 622.8 383.8 594.3 413.9C610.6 445.4 632.7 469.5 633.3 469.9C640 477.1 641.9 487.7 637.1 496.9C634.1 506.1 625 512 615 512C560.9 512 516.7 492.8 486.1 473.8C468.8 477.7 450.7 480 432 480C350 480 279.1 439.8 245.2 381.5C262.5 379.2 279.1 375.3 294.9 369.9C322.9 407.1 373.9 432 432 432C446.2 432 460.8 430.3 475.4 426.1L494.6 422.6L511.3 432.1C528.3 443.5 545.7 451.4 563.5 456.5C559.3 449.9 555.3 442.1 551.7 436.1L535.9 405.8L559.4 380.9C574.3 365.3 592 339.2 592 304C592 237.7 528.7 183.1 447.1 176.6L448 176C448 159.5 445.8 143.5 441.6 128.2H441.6z',
			),
		),
		'label'             => __( 'Comments', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'comments-dollar'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M416 176C416 78.8 322.9 0 208 0S0 78.8 0 176c0 39.57 15.62 75.96 41.67 105.4c-16.39 32.76-39.23 57.32-39.59 57.68c-2.1 2.205-2.67 5.475-1.441 8.354C1.9 350.3 4.602 352 7.66 352c38.35 0 70.76-11.12 95.74-24.04C134.2 343.1 169.8 352 208 352C322.9 352 416 273.2 416 176zM269.8 218.3C266.2 239.2 250.4 252.1 228 257.7V268c0 11.03-8.953 20-20 20s-20-8.969-20-20V257.2c-8.682-1.922-17.3-4.723-25.06-7.512l-4.266-1.5C148.3 244.5 142.8 233.1 146.5 222.7c3.688-10.41 15.11-15.81 25.52-12.22l4.469 1.625c7.844 2.812 16.72 6 23.66 7.031C213.8 221.3 229 219.3 230.4 211.5C231.3 206.4 231.8 203.6 202.5 195.2L196.7 193.5c-17.33-5.094-57.92-17-50.52-59.84C149.8 112.8 165.6 98.76 188 93.99V84c0-11.03 8.953-20 20-20s20 8.969 20 20v10.63c5.453 1.195 11.34 2.789 18.56 5.273C257 103.5 262.5 114.9 258.9 125.4C255.3 135.8 243.8 141.3 233.4 137.7c-5.859-2.031-12-4-17.59-4.844C202.2 130.8 186.1 132.7 185.6 140.5C184.8 144.1 184.3 148.2 207.1 155.2L213.5 156.8C235.8 163.1 277.3 175 269.8 218.3zM599.6 443.7C624.8 413.9 640 376.6 640 336C640 238.8 554 160 448 160c-.3145 0-.6191 .041-.9336 .043C447.5 165.3 448 170.6 448 176c0 98.62-79.68 181.2-186.1 202.5C282.7 455.1 357.1 512 448 512c33.69 0 65.32-8.008 92.85-21.98C565.2 502 596.1 512 632.3 512c3.059 0 5.76-1.725 7.02-4.605c1.229-2.879 .6582-6.148-1.441-8.354C637.6 498.7 615.9 475.3 599.6 443.7z',
			),
		),
		'label'             => __( 'Comments Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'compact-disc'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM80.72 256H79.63c-9.078 0-16.4-8.011-15.56-17.34C72.36 146 146.5 72.06 239.3 64.06C248.3 63.28 256 70.75 256 80.09c0 8.35-6.215 15.28-14.27 15.99C164.7 102.9 103.1 164.3 96.15 241.4C95.4 249.6 88.77 256 80.72 256zM256 351.1c-53.02 0-96-43-96-95.1s42.98-96 96-96s96 43 96 96S309 351.1 256 351.1zM256 224C238.3 224 224 238.2 224 256s14.3 32 32 32c17.7 0 32-14.25 32-32S273.7 224 256 224z',
			),
		),
		'label'             => __( 'Compact Disc', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'compass'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 256C288 273.7 273.7 288 256 288C238.3 288 224 273.7 224 256C224 238.3 238.3 224 256 224C273.7 224 288 238.3 288 256zM0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256zM325.1 306.7L380.6 162.4C388.1 142.1 369 123.9 349.6 131.4L205.3 186.9C196.8 190.1 190.1 196.8 186.9 205.3L131.4 349.6C123.9 369 142.1 388.1 162.4 380.6L306.7 325.1C315.2 321.9 321.9 315.2 325.1 306.7V306.7z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M306.7 325.1L162.4 380.6C142.1 388.1 123.9 369 131.4 349.6L186.9 205.3C190.1 196.8 196.8 190.1 205.3 186.9L349.6 131.4C369 123.9 388.1 142.1 380.6 162.4L325.1 306.7C321.9 315.2 315.2 321.9 306.7 325.1V325.1zM255.1 224C238.3 224 223.1 238.3 223.1 256C223.1 273.7 238.3 288 255.1 288C273.7 288 288 273.7 288 256C288 238.3 273.7 224 255.1 224V224zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z',
			),
		),
		'label'             => __( 'Compass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'compass-drafting'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 96C352 110.3 348.9 123.9 343.2 136.2L396 227.4C372.3 252.7 341.9 271.5 307.6 281L256 192H255.1L187.9 309.5C209.4 316.3 232.3 320 256 320C326.7 320 389.8 287.3 430.9 235.1C441.9 222.2 462.1 219.1 475.9 231C489.7 242.1 491.9 262.2 480.8 276C428.1 341.8 346.1 384 256 384C220.6 384 186.6 377.6 155.3 365.9L98.65 463.7C93.95 471.8 86.97 478.4 78.58 482.6L23.16 510.3C18.2 512.8 12.31 512.5 7.588 509.6C2.871 506.7 0 501.5 0 496V440.6C0 432.2 2.228 423.9 6.46 416.5L66.49 312.9C53.66 301.6 41.84 289.3 31.18 276C20.13 262.2 22.34 242.1 36.13 231C49.92 219.1 70.06 222.2 81.12 235.1C86.79 243.1 92.87 249.8 99.34 256.1L168.8 136.2C163.1 123.9 160 110.3 160 96C160 42.98 202.1 0 256 0C309 0 352 42.98 352 96L352 96zM256 128C273.7 128 288 113.7 288 96C288 78.33 273.7 64 256 64C238.3 64 224 78.33 224 96C224 113.7 238.3 128 256 128zM372.1 393.9C405.5 381.1 435.5 363.2 461.8 341L505.5 416.5C509.8 423.9 512 432.2 512 440.6V496C512 501.5 509.1 506.7 504.4 509.6C499.7 512.5 493.8 512.8 488.8 510.3L433.4 482.6C425 478.4 418.1 471.8 413.3 463.7L372.1 393.9z',
			),
		),
		'label'             => __( 'Compass Drafting', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'compress'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M128 320H32c-17.69 0-32 14.31-32 32s14.31 32 32 32h64v64c0 17.69 14.31 32 32 32s32-14.31 32-32v-96C160 334.3 145.7 320 128 320zM416 320h-96c-17.69 0-32 14.31-32 32v96c0 17.69 14.31 32 32 32s32-14.31 32-32v-64h64c17.69 0 32-14.31 32-32S433.7 320 416 320zM320 192h96c17.69 0 32-14.31 32-32s-14.31-32-32-32h-64V64c0-17.69-14.31-32-32-32s-32 14.31-32 32v96C288 177.7 302.3 192 320 192zM128 32C110.3 32 96 46.31 96 64v64H32C14.31 128 0 142.3 0 160s14.31 32 32 32h96c17.69 0 32-14.31 32-32V64C160 46.31 145.7 32 128 32z',
			),
		),
		'label'             => __( 'Compress', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'computer'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M400 32C426.5 32 448 53.49 448 80V336C448 362.5 426.5 384 400 384H266.7L277.3 416H352C369.7 416 384 430.3 384 448C384 465.7 369.7 480 352 480H96C78.33 480 64 465.7 64 448C64 430.3 78.33 416 96 416H170.7L181.3 384H48C21.49 384 0 362.5 0 336V80C0 53.49 21.49 32 48 32H400zM64 96V320H384V96H64zM592 32C618.5 32 640 53.49 640 80V432C640 458.5 618.5 480 592 480H528C501.5 480 480 458.5 480 432V80C480 53.49 501.5 32 528 32H592zM544 96C535.2 96 528 103.2 528 112C528 120.8 535.2 128 544 128H576C584.8 128 592 120.8 592 112C592 103.2 584.8 96 576 96H544zM544 192H576C584.8 192 592 184.8 592 176C592 167.2 584.8 160 576 160H544C535.2 160 528 167.2 528 176C528 184.8 535.2 192 544 192zM560 400C577.7 400 592 385.7 592 368C592 350.3 577.7 336 560 336C542.3 336 528 350.3 528 368C528 385.7 542.3 400 560 400z',
			),
		),
		'label'             => __( 'Computer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'computer-mouse'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M0 352c0 88.38 71.63 160 160 160h64c88.38 0 160-71.63 160-160V224H0V352zM176 0H160C71.63 0 0 71.62 0 160v32h176V0zM224 0h-16v192H384V160C384 71.62 312.4 0 224 0z',
			),
		),
		'label'             => __( 'Computer Mouse', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'confluence'                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M2.3 412.2c-4.5 7.6-2.1 17.5 5.5 22.2l105.9 65.2c7.7 4.7 17.7 2.4 22.4-5.3 0-.1 .1-.2 .1-.2 67.1-112.2 80.5-95.9 280.9-.7 8.1 3.9 17.8 .4 21.7-7.7 .1-.1 .1-.3 .2-.4l50.4-114.1c3.6-8.1-.1-17.6-8.1-21.3-22.2-10.4-66.2-31.2-105.9-50.3C127.5 179 44.6 345.3 2.3 412.2zm507.4-312.1c4.5-7.6 2.1-17.5-5.5-22.2L398.4 12.8c-7.5-5-17.6-3.1-22.6 4.4-.2 .3-.4 .6-.6 1-67.3 112.6-81.1 95.6-280.6 .9-8.1-3.9-17.8-.4-21.7 7.7-.1 .1-.1 .3-.2 .4L22.2 141.3c-3.6 8.1 .1 17.6 8.1 21.3 22.2 10.4 66.3 31.2 106 50.4 248 120 330.8-45.4 373.4-112.9z',
			),
		),
		'label'             => __( 'Confluence', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'connectdevelop'                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M550.5 241l-50.09-86.79c1.071-2.142 1.875-4.553 1.875-7.232 0-8.036-6.696-14.73-14.73-15l-55.45-95.89c.536-1.607 1.071-3.214 1.071-4.821 0-8.571-6.964-15.27-15.27-15.27-4.821 0-8.839 2.143-11.79 5.625H299.5C296.8 18.14 292.8 16 288 16s-8.839 2.143-11.52 5.625H170.4C167.5 18.14 163.4 16 158.6 16c-8.303 0-15.27 6.696-15.27 15.27 0 1.607 .536 3.482 1.072 4.821l-55.98 97.23c-5.356 2.41-9.107 7.5-9.107 13.66 0 .535 .268 1.071 .268 1.607l-53.3 92.14c-7.232 1.339-12.59 7.5-12.59 15 0 7.232 5.089 13.39 12.05 15l55.18 95.36c-.536 1.607-.804 2.946-.804 4.821 0 7.232 5.089 13.39 12.05 14.73l51.7 89.73c-.536 1.607-1.071 3.482-1.071 5.357 0 8.571 6.964 15.27 15.27 15.27 4.821 0 8.839-2.143 11.52-5.357h106.9C279.2 493.9 283.4 496 288 496s8.839-2.143 11.52-5.357h107.1c2.678 2.946 6.696 4.821 10.98 4.821 8.571 0 15.27-6.964 15.27-15.27 0-1.607-.267-2.946-.803-4.285l51.7-90.27c6.964-1.339 12.05-7.5 12.05-14.73 0-1.607-.268-3.214-.804-4.821l54.91-95.36c6.964-1.339 12.32-7.5 12.32-15-.002-7.232-5.092-13.39-11.79-14.73zM153.5 450.7l-43.66-75.8h43.66v75.8zm0-83.84h-43.66c-.268-1.071-.804-2.142-1.339-3.214l44.1-47.41v50.62zm0-62.41l-50.36 53.3c-1.339-.536-2.679-1.34-4.018-1.607L43.45 259.8c.535-1.339 .535-2.679 .535-4.018s0-2.41-.268-3.482l51.97-90c2.679-.268 5.357-1.072 7.768-2.679l50.09 51.97v92.95zm0-102.3l-45.8-47.41c1.339-2.143 2.143-4.821 2.143-7.767 0-.268-.268-.804-.268-1.072l43.93-15.8v72.05zm0-80.63l-43.66 15.8 43.66-75.54v59.73zm326.5 39.11l.804 1.339L445.5 329.1l-63.75-67.23 98.04-101.5 .268 .268zM291.8 355.1l11.52 11.79H280.5l11.25-11.79zm-.268-11.25l-83.3-85.45 79.55-84.38 83.04 87.59-79.29 82.23zm5.357 5.893l79.29-82.23 67.5 71.25-5.892 28.13H313.7l-16.88-17.14zM410.4 44.39c1.071 .536 2.142 1.072 3.482 1.34l57.86 100.7v.536c0 2.946 .803 5.624 2.143 7.767L376.4 256l-83.04-87.59L410.4 44.39zm-9.107-2.143L287.7 162.5l-57.05-60.27 166.3-60h4.287zm-123.5 0c2.678 2.678 6.16 4.285 10.18 4.285s7.5-1.607 10.18-4.285h75L224.8 95.82 173.9 42.25h103.9zm-116.2 5.625l1.071-2.142a33.83 33.83 0 0 0 2.679-.804l51.16 53.84-54.91 19.82V47.88zm0 79.29l60.8-21.96 59.73 63.21-79.55 84.11-40.98-42.05v-83.3zm0 92.68L198 257.6l-36.43 38.3v-76.07zm0 87.86l42.05-44.46 82.77 85.98-17.14 17.68H161.6v-59.2zm6.964 162.1c-1.607-1.607-3.482-2.678-5.893-3.482l-1.071-1.607v-89.73h99.91l-91.61 94.82h-1.339zm129.9 0c-2.679-2.41-6.428-4.285-10.45-4.285s-7.767 1.875-10.45 4.285h-96.43l91.61-94.82h38.3l91.61 94.82H298.4zm120-11.79l-4.286 7.5c-1.339 .268-2.41 .803-3.482 1.339l-89.2-91.88h114.4l-17.41 83.04zm12.86-22.23l12.86-60.8h21.96l-34.82 60.8zm34.82-68.84h-20.36l4.553-21.16 17.14 18.21c-.535 .803-1.071 1.874-1.339 2.946zm66.16-107.4l-55.45 96.7c-1.339 .535-2.679 1.071-4.018 1.874l-20.63-21.96 34.55-163.9 45.8 79.29c-.267 1.339-.803 2.678-.803 4.285 0 1.339 .268 2.411 .536 3.75z',
			),
		),
		'label'             => __( 'Connect Develop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'contao'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M45.4 305c14.4 67.1 26.4 129 68.2 175H34c-18.7 0-34-15.2-34-34V66c0-18.7 15.2-34 34-34h57.7C77.9 44.6 65.6 59.2 54.8 75.6c-45.4 70-27 146.8-9.4 229.4zM478 32h-90.2c21.4 21.4 39.2 49.5 52.7 84.1l-137.1 29.3c-14.9-29-37.8-53.3-82.6-43.9-24.6 5.3-41 19.3-48.3 34.6-8.8 18.7-13.2 39.8 8.2 140.3 21.1 100.2 33.7 117.7 49.5 131.2 12.9 11.1 33.4 17 58.3 11.7 44.5-9.4 55.7-40.7 57.4-73.2l137.4-29.6c3.2 71.5-18.7 125.2-57.4 163.6H478c18.7 0 34-15.2 34-34V66c0-18.8-15.2-34-34-34z',
			),
		),
		'label'             => __( 'Contao', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'cookie'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M494.5 254.8l-11.37-71.48c-4.102-25.9-16.29-49.8-34.8-68.32l-51.33-51.33c-18.52-18.52-42.3-30.7-68.2-34.8L256.9 17.53C231.2 13.42 204.7 17.64 181.5 29.48L116.7 62.53C93.23 74.36 74.36 93.35 62.41 116.7L29.51 181.2c-11.84 23.44-16.08 50.04-11.98 75.94l11.37 71.48c4.101 25.9 16.29 49.77 34.8 68.41l51.33 51.33c18.52 18.4 42.3 30.61 68.2 34.72l71.84 11.37c25.78 4.102 52.27-.1173 75.47-11.95l64.8-33.05c23.32-11.84 42.3-30.82 54.26-54.14l32.81-64.57C494.4 307.3 498.6 280.8 494.5 254.8zM176 367.1c-17.62 0-31.1-14.37-31.1-31.1c0-17.62 14.37-31.1 31.1-31.1s31.1 14.37 31.1 31.1C208 353.6 193.6 367.1 176 367.1zM208 208c-17.62 0-31.1-14.37-31.1-31.1s14.38-31.1 31.1-31.1c17.62 0 31.1 14.37 31.1 31.1S225.6 208 208 208zM368 335.1c-17.62 0-31.1-14.37-31.1-31.1c0-17.62 14.37-31.1 31.1-31.1s31.1 14.37 31.1 31.1C400 321.6 385.6 335.1 368 335.1z',
			),
		),
		'label'             => __( 'Cookie', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'cookie-bite'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M494.6 255.9c-65.63-.8203-118.6-54.14-118.6-119.9c-65.74 0-119.1-52.97-119.8-118.6c-25.66-3.867-51.8 .2346-74.77 12.07L116.7 62.41C93.35 74.36 74.36 93.35 62.41 116.7L29.6 181.2c-11.95 23.44-16.17 49.92-12.07 75.94l11.37 71.48c4.102 25.9 16.29 49.8 34.81 68.32l51.36 51.39C133.6 466.9 157.3 479 183.2 483.1l71.84 11.37c25.9 4.101 52.27-.1172 75.59-11.95l64.81-33.05c23.32-11.84 42.31-30.82 54.14-54.14l32.93-64.57C494.3 307.7 498.5 281.4 494.6 255.9zM176 367.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S193.6 367.1 176 367.1zM208 208c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S225.6 208 208 208zM368 335.1c-17.62 0-32-14.37-32-31.1s14.38-31.1 32-31.1s32 14.37 32 31.1S385.6 335.1 368 335.1z',
			),
		),
		'label'             => __( 'Cookie Bite', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'copy'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M384 96L384 0h-112c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48H464c26.51 0 48-21.49 48-48V128h-95.1C398.4 128 384 113.6 384 96zM416 0v96h96L416 0zM192 352V128h-144c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h192c26.51 0 48-21.49 48-48L288 416h-32C220.7 416 192 387.3 192 352z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 70.63l-61.25-61.25C435.4 3.371 427.2 0 418.7 0H255.1c-35.35 0-64 28.66-64 64l.0195 256C192 355.4 220.7 384 256 384h192c35.2 0 64-28.8 64-64V93.25C512 84.77 508.6 76.63 502.6 70.63zM464 320c0 8.836-7.164 16-16 16H255.1c-8.838 0-16-7.164-16-16L239.1 64.13c0-8.836 7.164-16 16-16h128L384 96c0 17.67 14.33 32 32 32h47.1V320zM272 448c0 8.836-7.164 16-16 16H63.1c-8.838 0-16-7.164-16-16L47.98 192.1c0-8.836 7.164-16 16-16H160V128H63.99c-35.35 0-64 28.65-64 64l.0098 256C.002 483.3 28.66 512 64 512h192c35.2 0 64-28.8 64-64v-32h-47.1L272 448z',
			),
		),
		'label'             => __( 'Copy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'copyright'                      => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM199.2 312.6c14.94 15.06 34.8 23.38 55.89 23.38c.0313 0 0 0 0 0c21.06 0 40.92-8.312 55.83-23.38c9.375-9.375 24.53-9.469 33.97-.1562c9.406 9.344 9.469 24.53 .1562 33.97c-24 24.22-55.95 37.56-89.95 37.56c0 0 .0313 0 0 0c-33.97 0-65.95-13.34-89.95-37.56c-49.44-49.88-49.44-131 0-180.9c24-24.22 55.98-37.56 89.95-37.56c.0313 0 0 0 0 0c34 0 65.95 13.34 89.95 37.56c9.312 9.438 9.25 24.62-.1562 33.97c-9.438 9.344-24.59 9.188-33.97-.1562c-14.91-15.06-34.77-23.38-55.83-23.38c0 0 .0313 0 0 0c-21.09 0-40.95 8.312-55.89 23.38C168.3 230.6 168.3 281.4 199.2 312.6z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM255.1 176C255.1 176 255.1 176 255.1 176c21.06 0 40.92 8.312 55.83 23.38c9.375 9.344 24.53 9.5 33.97 .1562c9.406-9.344 9.469-24.53 .1562-33.97c-24-24.22-55.95-37.56-89.95-37.56c0 0 .0313 0 0 0c-33.97 0-65.95 13.34-89.95 37.56c-49.44 49.88-49.44 131 0 180.9c24 24.22 55.98 37.56 89.95 37.56c.0313 0 0 0 0 0c34 0 65.95-13.34 89.95-37.56c9.312-9.438 9.25-24.62-.1562-33.97c-9.438-9.312-24.59-9.219-33.97 .1562c-14.91 15.06-34.77 23.38-55.83 23.38c0 0 .0313 0 0 0c-21.09 0-40.95-8.312-55.89-23.38c-30.94-31.22-30.94-82.03 0-113.3C214.2 184.3 234 176 255.1 176z',
			),
		),
		'label'             => __( 'Copyright', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'cotton-bureau'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M474.3 330.4c-23.66 91.85-94.23 144.6-201.9 148.4V429.6c0-48 26.41-74.39 74.39-74.39 62 0 99.2-37.2 99.2-99.21 0-61.37-36.53-98.28-97.38-99.06-33-69.32-146.5-64.65-177.2 0C110.5 157.7 74 194.6 74 256c0 62.13 37.27 99.41 99.4 99.41 48 0 74.55 26.23 74.55 74.39V479c-134.4-5-211.1-85.07-211.1-223 0-141.8 81.35-223.2 223.2-223.2 114.8 0 189.8 53.2 214.7 148.8H500C473.9 71.51 388.2 8 259.8 8 105 8 12 101.2 12 255.8 12 411.1 105.2 504.3 259.8 504c128.3 0 213.9-63.81 239.7-173.6zM357 182.3c41.37 3.45 64.2 29 64.2 73.67 0 48-26.43 74.41-74.4 74.41-28.61 0-49.33-9.59-61.59-27.33 83.06-16.55 75.59-99.67 71.79-120.8zm-81.68 97.36c-2.46-10.34-16.33-87 56.23-97 2.27 10.09 16.52 87.11-56.26 97zM260 132c28.61 0 49 9.67 61.44 27.61-28.36 5.48-49.36 20.59-61.59 43.45-12.23-22.86-33.23-38-61.6-43.45 12.41-17.69 33.27-27.35 61.57-27.35zm-71.52 50.72c73.17 10.57 58.91 86.81 56.49 97-72.41-9.84-59-86.95-56.25-97zM173.2 330.4c-48 0-74.4-26.4-74.4-74.41 0-44.36 22.86-70 64.22-73.67-6.75 37.2-1.38 106.5 71.65 120.8-12.14 17.63-32.84 27.3-61.14 27.3zm53.21 12.39A80.8 80.8 0 0 0 260 309.3c7.77 14.49 19.33 25.54 33.82 33.55a80.28 80.28 0 0 0 -33.58 33.83c-8-14.5-19.07-26.23-33.56-33.83z',
			),
		),
		'label'             => __( 'Cotton Bureau', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'couch'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M592 224C565.5 224 544 245.5 544 272V352H96V272C96 245.5 74.51 224 48 224S0 245.5 0 272v192C0 472.8 7.164 480 16 480h64c8.836 0 15.1-7.164 15.1-16L96 448h448v16c0 8.836 7.164 16 16 16h64c8.836 0 16-7.164 16-16v-192C640 245.5 618.5 224 592 224zM128 272V320h384V272c0-38.63 27.53-70.95 64-78.38V160c0-70.69-57.31-128-128-128H191.1c-70.69 0-128 57.31-128 128L64 193.6C100.5 201.1 128 233.4 128 272z',
			),
		),
		'label'             => __( 'Couch', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'cow'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M634 276.8l-9.999-13.88L624 185.7c0-11.88-12.5-19.49-23.12-14.11c-10.88 5.375-19.5 13.5-26.38 23l-65.75-90.92C490.6 78.71 461.8 64 431 64H112C63.37 64 24 103.4 24 152v86.38C9.5 250.1 0 267.9 0 288v32h8c35.38 0 64-28.62 64-64L72 152c0-16.88 10.5-31.12 25.38-37C96.5 119.1 96 123.5 96 128l.0002 304c0 8.875 7.126 16 16 16h63.1c8.875 0 16-7.125 16-16l.0006-112c9.375 9.375 20.25 16.5 32 21.88V368c0 8.875 7.252 16 16 16c8.875 0 15.1-7.125 15.1-16v-17.25c9.125 1 12.88 2.25 32-.125V368c0 8.875 7.25 16 16 16c8.875 0 16-7.125 16-16v-26.12C331.8 336.5 342.6 329.2 352 320l-.0012 112c0 8.875 7.125 16 15.1 16h64c8.75 0 16-7.125 16-16V256l31.1 32l.0006 41.55c0 12.62 3.752 24.95 10.75 35.45l41.25 62C540.8 440.1 555.5 448 571.4 448c22.5 0 41.88-15.88 46.25-38l21.75-108.6C641.1 292.8 639.1 283.9 634 276.8zM377.3 167.4l-22.88 22.75C332.5 211.8 302.9 224 272.1 224S211.5 211.8 189.6 190.1L166.8 167.4C151 151.8 164.4 128 188.9 128h166.2C379.6 128 393 151.8 377.3 167.4zM576 352c-8.875 0-16-7.125-16-16s7.125-16 16-16s16 7.125 16 16S584.9 352 576 352z',
			),
		),
		'label'             => __( 'Cow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'cpanel'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M210.3 220.2c-5.6-24.8-26.9-41.2-51-41.2h-37c-7.1 0-12.5 4.5-14.3 10.9L73.1 320l24.7-.1c6.8 0 12.3-4.5 14.2-10.7l25.8-95.7h19.8c8.4 0 16.2 5.6 18.3 14.8 2.5 10.9-5.9 22.6-18.3 22.6h-10.3c-7 0-12.5 4.6-14.3 10.8l-6.4 23.8h32c37.2 0 58.3-36.2 51.7-65.3zm-156.5 28h18.6c6.9 0 12.4-4.4 14.3-10.9l6.2-23.6h-40C30 213.7 9 227.8 1.7 254.8-7 288.6 18.5 320 52 320h12.4l7.1-26.1c1.2-4.4-2.2-8.3-6.4-8.3H53.8c-24.7 0-24.9-37.4 0-37.4zm247.5-34.8h-77.9l-3.5 13.4c-2.4 9.6 4.5 18.5 14.2 18.5h57.5c4 0 2.4 4.3 2.1 5.3l-8.6 31.8c-.4 1.4-.9 5.3-5.5 5.3h-34.9c-5.3 0-5.3-7.9 0-7.9h21.6c6.8 0 12.3-4.6 14.2-10.8l3.5-13.2h-48.4c-39.2 0-43.6 63.8-.7 63.8l57.5 .2c11.2 0 20.6-7.2 23.4-17.8l14-51.8c4.8-19.2-9.7-36.8-28.5-36.8zM633.1 179h-18.9c-4.9 0-9.2 3.2-10.4 7.9L568.2 320c20.7 0 39.8-13.8 44.9-34.5l26.5-98.2c1.2-4.3-2-8.3-6.5-8.3zm-236.3 34.7v.1h-48.3l-26.2 98c-1.2 4.4 2.2 8.3 6.4 8.3h18.9c4.8 0 9.2-3 10.4-7.8l17.2-64H395c12.5 0 21.4 11.8 18.1 23.4l-10.6 40c-1.2 4.3 1.9 8.3 6.4 8.3H428c4.6 0 9.1-2.9 10.3-7.8l8.8-33.1c9-33.1-15.9-65.4-50.3-65.4zm98.3 74.6c-3.6 0-6-3.4-5.1-6.7l8-30c.9-3.9 3.7-6 7.8-6h32.9c2.6 0 4.6 2.4 3.9 5.1l-.7 2.6c-.6 2-1.9 3-3.9 3h-21.6c-7 0-12.6 4.6-14.2 10.8l-3.5 13h53.4c10.5 0 20.3-6.6 23.2-17.6l3.2-12c4.9-19.1-9.3-36.8-28.3-36.8h-47.3c-17.9 0-33.8 12-38.6 29.6l-10.8 40c-5 17.7 8.3 36.7 28.3 36.7h66.7c6.8 0 12.3-4.5 14.2-10.7l5.7-21z',
			),
		),
		'label'             => __( 'cPanel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons'               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M245.8 214.9l-33.22 17.28c-9.43-19.58-25.24-19.93-27.46-19.93-22.13 0-33.22 14.61-33.22 43.84 0 23.57 9.21 43.84 33.22 43.84 14.47 0 24.65-7.09 30.57-21.26l30.55 15.5c-6.17 11.51-25.69 38.98-65.1 38.98-22.6 0-73.96-10.32-73.96-77.05 0-58.69 43-77.06 72.63-77.06 30.72-.01 52.7 11.95 65.99 35.86zm143.1 0l-32.78 17.28c-9.5-19.77-25.72-19.93-27.9-19.93-22.14 0-33.22 14.61-33.22 43.84 0 23.55 9.23 43.84 33.22 43.84 14.45 0 24.65-7.09 30.54-21.26l31 15.5c-2.1 3.75-21.39 38.98-65.09 38.98-22.69 0-73.96-9.87-73.96-77.05 0-58.67 42.97-77.06 72.63-77.06 30.71-.01 52.58 11.95 65.56 35.86zM247.6 8.05C104.7 8.05 0 123.1 0 256c0 138.5 113.6 248 247.6 248 129.9 0 248.4-100.9 248.4-248 0-137.9-106.6-248-248.4-248zm.87 450.8c-112.5 0-203.7-93.04-203.7-202.8 0-105.4 85.43-203.3 203.7-203.3 112.5 0 202.8 89.46 202.8 203.3-.01 121.7-99.68 202.8-202.8 202.8z',
			),
		),
		'label'             => __( 'Creative Commons', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-by'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M314.9 194.4v101.4h-28.3v120.5h-77.1V295.9h-28.3V194.4c0-4.4 1.6-8.2 4.6-11.3 3.1-3.1 6.9-4.7 11.3-4.7H299c4.1 0 7.8 1.6 11.1 4.7 3.1 3.2 4.8 6.9 4.8 11.3zm-101.5-63.7c0-23.3 11.5-35 34.5-35s34.5 11.7 34.5 35c0 23-11.5 34.5-34.5 34.5s-34.5-11.5-34.5-34.5zM247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3z',
			),
		),
		'label'             => __( 'Creative Commons Attribution', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-nc'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C387.4 8 496 115.9 496 256c0 147.2-118.5 248-248.4 248C113.1 504 0 393.2 0 256 0 123.1 104.7 8 247.6 8zM55.8 189.1c-7.4 20.4-11.1 42.7-11.1 66.9 0 110.9 92.1 202.4 203.7 202.4 122.4 0 177.2-101.8 178.5-104.1l-93.4-41.6c-7.7 37.1-41.2 53-68.2 55.4v38.1h-28.8V368c-27.5-.3-52.6-10.2-75.3-29.7l34.1-34.5c31.7 29.4 86.4 31.8 86.4-2.2 0-6.2-2.2-11.2-6.6-15.1-14.2-6-1.8-.1-219.3-97.4zM248.4 52.3c-38.4 0-112.4 8.7-170.5 93l94.8 42.5c10-31.3 40.4-42.9 63.8-44.3v-38.1h28.8v38.1c22.7 1.2 43.4 8.9 62 23L295 199.7c-42.7-29.9-83.5-8-70 11.1 53.4 24.1 43.8 19.8 93 41.6l127.1 56.7c4.1-17.4 6.2-35.1 6.2-53.1 0-57-19.8-105-59.3-143.9-39.3-39.9-87.2-59.8-143.6-59.8z',
			),
		),
		'label'             => __( 'Creative Commons Noncommercial', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-nc-eu'         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.7 8C103.6 8 0 124.8 0 256c0 136.3 111.7 248 247.7 248C377.9 504 496 403.1 496 256 496 117 388.4 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-23.2 3.7-45.2 10.9-66l65.7 29.1h-4.7v29.5h23.3c0 6.2-.4 3.2-.4 19.5h-22.8v29.5h27c11.4 67 67.2 101.3 124.6 101.3 26.6 0 50.6-7.9 64.8-15.8l-10-46.1c-8.7 4.6-28.2 10.8-47.3 10.8-28.2 0-58.1-10.9-67.3-50.2h90.3l128.3 56.8c-1.5 2.1-56.2 104.3-178.8 104.3zm-16.7-190.6l-.5-.4 .9 .4h-.4zm77.2-19.5h3.7v-29.5h-70.3l-28.6-12.6c2.5-5.5 5.4-10.5 8.8-14.3 12.9-15.8 31.1-22.4 51.1-22.4 18.3 0 35.3 5.4 46.1 10l11.6-47.3c-15-6.6-37-12.4-62.3-12.4-39 0-72.2 15.8-95.9 42.3-5.3 6.1-9.8 12.9-13.9 20.1l-81.6-36.1c64.6-96.8 157.7-93.6 170.7-93.6 113 0 203 90.2 203 203.4 0 18.7-2.1 36.3-6.3 52.9l-136.1-60.5z',
			),
		),
		'label'             => __( 'Creative Commons Noncommercial (Euro Sign)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-nc-jp'         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.7 8C103.6 8 0 124.8 0 256c0 136.4 111.8 248 247.7 248C377.9 504 496 403.2 496 256 496 117.2 388.5 8 247.7 8zm.6 450.7c-112 0-203.6-92.5-203.6-202.7 0-21.1 3-41.2 9-60.3l127 56.5h-27.9v38.6h58.1l5.7 11.8v18.7h-63.8V360h63.8v56h61.7v-56h64.2v-35.7l81 36.1c-1.5 2.2-57.1 98.3-175.2 98.3zm87.6-137.3h-57.6v-18.7l2.9-5.6 54.7 24.3zm6.5-51.4v-17.8h-38.6l63-116H301l-43.4 96-23-10.2-39.6-85.7h-65.8l27.3 51-81.9-36.5c27.8-44.1 82.6-98.1 173.7-98.1 112.8 0 203 90 203 203.4 0 21-2.7 40.6-7.9 59l-101-45.1z',
			),
		),
		'label'             => __( 'Creative Commons Noncommercial (Yen Sign)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-nd'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm94 144.3v42.5H162.1V197h180.3zm0 79.8v42.5H162.1v-42.5h180.3z',
			),
		),
		'label'             => __( 'Creative Commons No Derivative Works', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-pd'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm0 449.5c-139.2 0-235.8-138-190.2-267.9l78.8 35.1c-2.1 10.5-3.3 21.5-3.3 32.9 0 99 73.9 126.9 120.4 126.9 22.9 0 53.5-6.7 79.4-29.5L297 311.1c-5.5 6.3-17.6 16.7-36.3 16.7-37.8 0-53.7-39.9-53.9-71.9 230.4 102.6 216.5 96.5 217.9 96.8-34.3 62.4-100.6 104.8-176.7 104.8zm194.2-150l-224-100c18.8-34 54.9-30.7 74.7-11l40.4-41.6c-27.1-23.3-58-27.5-78.1-27.5-47.4 0-80.9 20.5-100.7 51.6l-74.9-33.4c36.1-54.9 98.1-91.2 168.5-91.2 111.1 0 201.5 90.4 201.5 201.5 0 18-2.4 35.4-6.8 52-.3-.1-.4-.2-.6-.4z',
			),
		),
		'label'             => __( 'Creative Commons Public Domain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-pd-alt'        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C104.7 8 0 123.1 0 256c0 138.5 113.6 248 247.6 248C377.5 504 496 403.1 496 256 496 118.1 389.4 8 247.6 8zm.8 450.8c-112.5 0-203.7-93-203.7-202.8 0-105.4 85.5-203.3 203.7-203.3 112.6 0 202.9 89.5 202.8 203.3 0 121.7-99.6 202.8-202.8 202.8zM316.7 186h-53.2v137.2h53.2c21.4 0 70-5.1 70-68.6 0-63.4-48.6-68.6-70-68.6zm.8 108.5h-19.9v-79.7l19.4-.1c3.8 0 35-2.1 35 39.9 0 24.6-10.5 39.9-34.5 39.9zM203.7 186h-68.2v137.3h34.6V279h27c54.1 0 57.1-37.5 57.1-46.5 0-31-16.8-46.5-50.5-46.5zm-4.9 67.3h-29.2v-41.6h28.3c30.9 0 28.8 41.6 .9 41.6z',
			),
		),
		'label'             => __( 'Alternate Creative Commons Public Domain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-remix'         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm161.7 207.7l4.9 2.2v70c-7.2 3.6-63.4 27.5-67.3 28.8-6.5-1.8-113.7-46.8-137.3-56.2l-64.2 26.6-63.3-27.5v-63.8l59.3-24.8c-.7-.7-.4 5-.4-70.4l67.3-29.7L361 178.5v61.6l49.1 20.3zm-70.4 81.5v-43.8h-.4v-1.8l-113.8-46.5V295l113.8 46.9v-.4l.4 .4zm7.5-57.6l39.9-16.4-36.8-15.5-39 16.4 35.9 15.5zm52.3 38.1v-43L355.2 298v43.4l44.3-19z',
			),
		),
		'label'             => __( 'Creative Commons Remix', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-sa'            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zM137.7 221c13-83.9 80.5-95.7 108.9-95.7 99.8 0 127.5 82.5 127.5 134.2 0 63.6-41 132.9-128.9 132.9-38.9 0-99.1-20-109.4-97h62.5c1.5 30.1 19.6 45.2 54.5 45.2 23.3 0 58-18.2 58-82.8 0-82.5-49.1-80.6-56.7-80.6-33.1 0-51.7 14.6-55.8 43.8h18.2l-49.2 49.2-49-49.2h19.4z',
			),
		),
		'label'             => __( 'Creative Commons Share Alike', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-sampling'      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm3.6 53.2c2.8-.3 11.5 1 11.5 11.5l6.6 107.2 4.9-59.3c0-6 4.7-10.6 10.6-10.6 5.9 0 10.6 4.7 10.6 10.6 0 2.5-.5-5.7 5.7 81.5l5.8-64.2c.3-2.9 2.9-9.3 10.2-9.3 3.8 0 9.9 2.3 10.6 8.9l11.5 96.5 5.3-12.8c1.8-4.4 5.2-6.6 10.2-6.6h58v21.3h-50.9l-18.2 44.3c-3.9 9.9-19.5 9.1-20.8-3.1l-4-31.9-7.5 92.6c-.3 3-3 9.3-10.2 9.3-3 0-9.8-2.1-10.6-9.3 0-1.9 .6 5.8-6.2-77.9l-5.3 72.2c-1.1 4.8-4.8 9.3-10.6 9.3-2.9 0-9.8-2-10.6-9.3 0-1.9 .5 6.7-5.8-87.7l-5.8 94.8c0 6.3-3.6 12.4-10.6 12.4-5.2 0-10.6-4.1-10.6-12l-5.8-87.7c-5.8 92.5-5.3 84-5.3 85.9-1.1 4.8-4.8 9.3-10.6 9.3-3 0-9.8-2.1-10.6-9.3 0-.7-.4-1.1-.4-2.6l-6.2-88.6L182 348c-.7 6.5-6.7 9.3-10.6 9.3-5.8 0-9.6-4.1-10.6-8.9L149.7 272c-2 4-3.5 8.4-11.1 8.4H87.2v-21.3H132l13.7-27.9c4.4-9.9 18.2-7.2 19.9 2.7l3.1 20.4 8.4-97.9c0-6 4.8-10.6 10.6-10.6 .5 0 10.6-.2 10.6 12.4l4.9 69.1 6.6-92.6c0-10.1 9.5-10.6 10.2-10.6 .6 0 10.6 .7 10.6 10.6l5.3 80.6 6.2-97.9c.1-1.1-.6-10.3 9.9-11.5z',
			),
		),
		'label'             => __( 'Creative Commons Sampling', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-sampling-plus' => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm107 205.6c-4.7 0-9 2.8-10.7 7.2l-4 9.5-11-92.8c-1.7-13.9-22-13.4-23.1 .4l-4.3 51.4-5.2-68.8c-1.1-14.3-22.1-14.2-23.2 0l-3.5 44.9-5.9-94.3c-.9-14.5-22.3-14.4-23.2 0l-5.1 83.7-4.3-66.3c-.9-14.4-22.2-14.4-23.2 0l-5.3 80.2-4.1-57c-1.1-14.3-22-14.3-23.2-.2l-7.7 89.8-1.8-12.2c-1.7-11.4-17.1-13.6-22-3.3l-13.2 27.7H87.5v23.2h51.3c4.4 0 8.4-2.5 10.4-6.4l10.7 73.1c2 13.5 21.9 13 23.1-.7l3.8-43.6 5.7 78.3c1.1 14.4 22.3 14.2 23.2-.1l4.6-70.4 4.8 73.3c.9 14.4 22.3 14.4 23.2-.1l4.9-80.5 4.5 71.8c.9 14.3 22.1 14.5 23.2 .2l4.6-58.6 4.9 64.4c1.1 14.3 22 14.2 23.1 .1l6.8-83 2.7 22.3c1.4 11.8 17.7 14.1 22.3 3.1l18-43.4h50.5V258l-58.4 .3zm-78 5.2h-21.9v21.9c0 4.1-3.3 7.5-7.5 7.5-4.1 0-7.5-3.3-7.5-7.5v-21.9h-21.9c-4.1 0-7.5-3.3-7.5-7.5 0-4.1 3.4-7.5 7.5-7.5h21.9v-21.9c0-4.1 3.4-7.5 7.5-7.5s7.5 3.3 7.5 7.5v21.9h21.9c4.1 0 7.5 3.3 7.5 7.5 0 4.1-3.4 7.5-7.5 7.5z',
			),
		),
		'label'             => __( 'Creative Commons Sampling +', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-share'         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm101 132.4c7.8 0 13.7 6.1 13.7 13.7v182.5c0 7.7-6.1 13.7-13.7 13.7H214.3c-7.7 0-13.7-6-13.7-13.7v-54h-54c-7.8 0-13.7-6-13.7-13.7V131.1c0-8.2 6.6-12.7 12.4-13.7h136.4c7.7 0 13.7 6 13.7 13.7v54h54zM159.9 300.3h40.7V198.9c0-7.4 5.8-12.6 12-13.7h55.8v-40.3H159.9v155.4zm176.2-88.1H227.6v155.4h108.5V212.2z',
			),
		),
		'label'             => __( 'Creative Commons Share', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'creative-commons-zero'          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M247.6 8C389.4 8 496 118.1 496 256c0 147.1-118.5 248-248.4 248C113.6 504 0 394.5 0 256 0 123.1 104.7 8 247.6 8zm.8 44.7C130.2 52.7 44.7 150.6 44.7 256c0 109.8 91.2 202.8 203.7 202.8 103.2 0 202.8-81.1 202.8-202.8 .1-113.8-90.2-203.3-202.8-203.3zm-.4 60.5c-81.9 0-102.5 77.3-102.5 142.8 0 65.5 20.6 142.8 102.5 142.8S350.5 321.5 350.5 256c0-65.5-20.6-142.8-102.5-142.8zm0 53.9c3.3 0 6.4 .5 9.2 1.2 5.9 5.1 8.8 12.1 3.1 21.9l-54.5 100.2c-1.7-12.7-1.9-25.1-1.9-34.4 0-28.8 2-88.9 44.1-88.9zm40.8 46.2c2.9 15.4 3.3 31.4 3.3 42.7 0 28.9-2 88.9-44.1 88.9-13.5 0-32.6-7.7-20.1-26.4l60.9-105.2z',
			),
		),
		'label'             => __( 'Creative Commons CC0', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'credit-card'                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 32C547.3 32 576 60.65 576 96V128H0V96C0 60.65 28.65 32 64 32H512zM576 416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V224H576V416zM112 352C103.2 352 96 359.2 96 368C96 376.8 103.2 384 112 384H176C184.8 384 192 376.8 192 368C192 359.2 184.8 352 176 352H112zM240 384H368C376.8 384 384 376.8 384 368C384 359.2 376.8 352 368 352H240C231.2 352 224 359.2 224 368C224 376.8 231.2 384 240 384z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M168 336C181.3 336 192 346.7 192 360C192 373.3 181.3 384 168 384H120C106.7 384 96 373.3 96 360C96 346.7 106.7 336 120 336H168zM360 336C373.3 336 384 346.7 384 360C384 373.3 373.3 384 360 384H248C234.7 384 224 373.3 224 360C224 346.7 234.7 336 248 336H360zM512 32C547.3 32 576 60.65 576 96V416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H512zM512 80H64C55.16 80 48 87.16 48 96V128H528V96C528 87.16 520.8 80 512 80zM528 224H48V416C48 424.8 55.16 432 64 432H512C520.8 432 528 424.8 528 416V224z',
			),
		),
		'label'             => __( 'Credit Card', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'critical-role'                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M225.8 0c.26 .15 216.6 124.5 217.1 124.7 3 1.18 3.7 3.46 3.7 6.56q-.11 125.2 0 250.4a5.88 5.88 0 0 1 -3.38 5.78c-21.37 12-207.9 118.3-218.9 124.6h-3C142 466.3 3.08 386.6 2.93 386.5a3.29 3.29 0 0 1 -1.88-3.24c0-.87 0-225.9-.05-253.1a5 5 0 0 1 2.93-4.93C27.19 112.1 213.2 6 224.1 0zM215.4 20.42l-.22-.16Q118.1 75.55 21 130.9c0 .12 .08 .23 .13 .35l30.86 11.64c-7.71 6-8.32 6-10.65 5.13-.1 0-24.17-9.28-26.8-10v230.4c.88-1.41 64.07-110.9 64.13-111 1.62-2.82 3-1.92 9.12-1.52 1.4 .09 1.48 .22 .78 1.42-41.19 71.33-36.4 63-67.48 116.9-.81 1.4-.61 1.13 1.25 1.13h186.5c1.44 0 1.69-.23 1.7-1.64v-8.88c0-1.34 2.36-.81-18.37-1-7.46-.07-14.14-3.22-21.38-12.7-7.38-9.66-14.62-19.43-21.85-29.21-2.28-3.08-3.45-2.38-16.76-2.38-1.75 0-1.78 0-1.76 1.82 .29 26.21 .15 25.27 1 32.66 .52 4.37 2.16 4.2 9.69 4.81 3.14 .26 3.88 4.08 .52 4.92-1.57 .39-31.6 .51-33.67-.1a2.42 2.42 0 0 1 .3-4.73c3.29-.76 6.16 .81 6.66-4.44 1.3-13.66 1.17-9 1.1-79.42 0-10.82-.35-12.58-5.36-13.55-1.22-.24-3.54-.16-4.69-.55-2.88-1-2-4.84 1.77-4.85 33.67 0 46.08-1.07 56.06 4.86 7.74 4.61 12 11.48 12.51 20.4 .88 14.59-6.51 22.35-15 32.59a1.46 1.46 0 0 0 0 2.22c2.6 3.25 5 6.63 7.71 9.83 27.56 33.23 24.11 30.54 41.28 33.06 .89 .13 1-.42 1-1.15v-11c0-1 .32-1.43 1.41-1.26a72.37 72.37 0 0 0 23.58-.3c1.08-.15 1.5 .2 1.48 1.33 0 .11 .88 26.69 .87 26.8-.05 1.52 .67 1.62 1.89 1.62h186.7Q386.5 304.6 346 234.3c2.26-.66-.4 0 6.69-1.39 2-.39 2.05-.41 3.11 1.44 7.31 12.64 77.31 134 77.37 134.1V138c-1.72 .5-103.3 38.72-105.8 39.68-1.08 .42-1.55 .2-1.91-.88-.63-1.9-1.34-3.76-2.09-5.62-.32-.79-.09-1.13 .65-1.39 .1 0 95.53-35.85 103-38.77-65.42-37.57-130.6-75-196-112.6l86.82 150.4-.28 .33c-9.57-.9-10.46-1.6-11.8-3.94-1-1.69-73.5-127.7-82-142.2-9.1 14.67-83.56 146.2-85.37 146.3-2.93 .17-5.88 .08-9.25 .08q43.25-74.74 86.18-149zm51.93 129.9a37.68 37.68 0 0 0 5.54-.85c1.69-.3 2.53 .2 2.6 1.92 0 .11 .07 19.06-.86 20.45s-1.88 1.22-2.6-.19c-5-9.69 6.22-9.66-39.12-12-.7 0-1 .23-1 .93 0 .13 3.72 122 3.73 122.1 0 .89 .52 1.2 1.21 1.51a83.92 83.92 0 0 1 8.7 4.05c7.31 4.33 11.38 10.84 12.41 19.31 1.44 11.8-2.77 35.77-32.21 37.14-2.75 .13-28.26 1.08-34.14-23.25-4.66-19.26 8.26-32.7 19.89-36.4a2.45 2.45 0 0 0 2-2.66c.1-5.63 3-107.1 3.71-121.3 .05-1.08-.62-1.16-1.35-1.15-32.35 .52-36.75-.34-40.22 8.52-2.42 6.18-4.14 1.32-3.95 .23q1.59-9 3.31-18c.4-2.11 1.43-2.61 3.43-1.86 5.59 2.11 6.72 1.7 37.25 1.92 1.73 0 1.78-.08 1.82-1.85 .68-27.49 .58-22.59 1-29.55a2.69 2.69 0 0 0 -1.63-2.8c-5.6-2.91-8.75-7.55-8.9-13.87-.35-14.81 17.72-21.67 27.38-11.51 6.84 7.19 5.8 18.91-2.45 24.15a4.35 4.35 0 0 0 -2.22 4.34c0 .59-.11-4.31 1 30.05 0 .9 .43 1.12 1.24 1.11 .1 0 23-.09 34.47-.37zM68.27 141.7c19.84-4.51 32.68-.56 52.49 1.69 2.76 .31 3.74 1.22 3.62 4-.21 5-1.16 22.33-1.24 23.15a2.65 2.65 0 0 1 -1.63 2.34c-4.06 1.7-3.61-4.45-4-7.29-3.13-22.43-73.87-32.7-74.63 25.4-.31 23.92 17 53.63 54.08 50.88 27.24-2 19-20.19 24.84-20.47a2.72 2.72 0 0 1 3 3.36c-1.83 10.85-3.42 18.95-3.45 19.15-1.54 9.17-86.7 22.09-93.35-42.06-2.71-25.85 10.44-53.37 40.27-60.15zm80 87.67h-19.49a2.57 2.57 0 0 1 -2.66-1.79c2.38-3.75 5.89 .92 5.86-6.14-.08-25.75 .21-38 .23-40.1 0-3.42-.53-4.65-3.32-4.94-7-.72-3.11-3.37-1.11-3.38 11.84-.1 22.62-.18 30.05 .72 8.77 1.07 16.71 12.63 7.93 22.62-2 2.25-4 4.42-6.14 6.73 .95 1.15 6.9 8.82 17.28 19.68 2.66 2.78 6.15 3.51 9.88 3.13a2.21 2.21 0 0 0 2.23-2.12c.3-3.42 .26 4.73 .45-40.58 0-5.65-.34-6.58-3.23-6.83-3.95-.35-4-2.26-.69-3.37l19.09-.09c.32 0 4.49 .53 1 3.38 0 .05-.16 0-.24 0-3.61 .26-3.94 1-4 4.62-.27 43.93 .07 40.23 .41 42.82 .11 .84 .27 2.23 5.1 2.14 2.49 0 3.86 3.37 0 3.4-10.37 .08-20.74 0-31.11 .07-10.67 0-13.47-6.2-24.21-20.82-1.6-2.18-8.31-2.36-8.2-.37 .88 16.47 0 17.78 4 17.67 4.75-.1 4.73 3.57 .83 3.55zm275-10.15c-1.21 7.13 .17 10.38-5.3 10.34-61.55-.42-47.82-.22-50.72-.31a18.4 18.4 0 0 1 -3.63-.73c-2.53-.6 1.48-1.23-.38-5.6-1.43-3.37-2.78-6.78-4.11-10.19a1.94 1.94 0 0 0 -2-1.44 138 138 0 0 0 -14.58 .07 2.23 2.23 0 0 0 -1.62 1.06c-1.58 3.62-3.07 7.29-4.51 11-1.27 3.23 7.86 1.32 12.19 2.16 3 .57 4.53 3.72 .66 3.73H322.9c-2.92 0-3.09-3.15-.74-3.21a6.3 6.3 0 0 0 5.92-3.47c1.5-3 2.8-6 4.11-9.09 18.18-42.14 17.06-40.17 18.42-41.61a1.83 1.83 0 0 1 3 0c2.93 3.34 18.4 44.71 23.62 51.92 2 2.7 5.74 2 6.36 2 3.61 .13 4-1.11 4.13-4.29 .09-1.87 .08 1.17 .07-41.24 0-4.46-2.36-3.74-5.55-4.27-.26 0-2.56-.63-.08-3.06 .21-.2-.89-.24 21.7-.15 2.32 0 5.32 2.75-1.21 3.45a2.56 2.56 0 0 0 -2.66 2.83c-.07 1.63-.19 38.89 .29 41.21a3.06 3.06 0 0 0 3.23 2.43c13.25 .43 14.92 .44 16-3.41 1.67-5.78 4.13-2.52 3.73-.19zm-104.7 64.37c-4.24 0-4.42-3.39-.61-3.41 35.91-.16 28.11 .38 37.19-.65 1.68-.19 2.38 .24 2.25 1.89-.26 3.39-.64 6.78-1 10.16-.25 2.16-3.2 2.61-3.4-.15-.38-5.31-2.15-4.45-15.63-5.08-1.58-.07-1.64 0-1.64 1.52V304c0 1.65 0 1.6 1.62 1.47 3.12-.25 10.31 .34 15.69-1.52 .47-.16 3.3-1.79 3.07 1.76 0 .21-.76 10.35-1.18 11.39-.53 1.29-1.88 1.51-2.58 .32-1.17-2 0-5.08-3.71-5.3-15.42-.9-12.91-2.55-12.91 6 0 12.25-.76 16.11 3.89 16.24 16.64 .48 14.4 0 16.43-5.71 .84-2.37 3.5-1.77 3.18 .58-.44 3.21-.85 6.43-1.23 9.64 0 .36-.16 2.4-4.66 2.39-37.16-.08-34.54-.19-35.21-.31-2.72-.51-2.2-3 .22-3.45 1.1-.19 4 .54 4.16-2.56 2.44-56.22-.07-51.34-3.91-51.33zm-.41-109.5c2.46 .61 3.13 1.76 2.95 4.65-.33 5.3-.34 9-.55 9.69-.66 2.23-3.15 2.12-3.34-.27-.38-4.81-3.05-7.82-7.57-9.15-26.28-7.73-32.81 15.46-27.17 30.22 5.88 15.41 22 15.92 28.86 13.78 5.92-1.85 5.88-6.5 6.91-7.58 1.23-1.3 2.25-1.84 3.12 1.1 0 .1 .57 11.89-6 12.75-1.6 .21-19.38 3.69-32.68-3.39-21-11.19-16.74-35.47-6.88-45.33 14-14.06 39.91-7.06 42.32-6.47zM289.8 280.1c3.28 0 3.66 3 .16 3.43-2.61 .32-5-.42-5 5.46 0 2-.19 29.05 .4 41.45 .11 2.29 1.15 3.52 3.44 3.65 22 1.21 14.95-1.65 18.79-6.34 1.83-2.24 2.76 .84 2.76 1.08 .35 13.62-4 12.39-5.19 12.4l-38.16-.19c-1.93-.23-2.06-3-.42-3.38 2-.48 4.94 .4 5.13-2.8 1-15.87 .57-44.65 .34-47.81-.27-3.77-2.8-3.27-5.68-3.71-2.47-.38-2-3.22 .34-3.22 1.45-.02 17.97-.03 23.09-.02zm-31.63-57.79c.07 4.08 2.86 3.46 6 3.58 2.61 .1 2.53 3.41-.07 3.43-6.48 0-13.7 0-21.61-.06-3.84 0-3.38-3.35 0-3.37 4.49 0 3.24 1.61 3.41-45.54 0-5.08-3.27-3.54-4.72-4.23-2.58-1.23-1.36-3.09 .41-3.15 1.29 0 20.19-.41 21.17 .21s1.87 1.65-.42 2.86c-1 .52-3.86-.28-4.15 2.47 0 .21-.82 1.63-.07 43.8zm-36.91 274.3a2.93 2.93 0 0 0 3.26 0c17-9.79 182-103.6 197.4-112.5-.14-.43 11.26-.18-181.5-.27-1.22 0-1.57 .37-1.53 1.56 0 .1 1.25 44.51 1.22 50.38a28.33 28.33 0 0 1 -1.36 7.71c-.55 1.83 .38-.5-13.5 32.23-.73 1.72-1 2.21-2-.08-4.19-10.34-8.28-20.72-12.57-31a23.6 23.6 0 0 1 -2-10.79c.16-2.46 .8-16.12 1.51-48 0-1.95 0-2-2-2h-183c2.58 1.63 178.3 102.6 196 112.8zm-90.9-188.8c0 2.4 .36 2.79 2.76 3 11.54 1.17 21 3.74 25.64-7.32 6-14.46 2.66-34.41-12.48-38.84-2-.59-16-2.76-15.94 1.51 .05 8.04 .01 11.61 .02 41.65zm105.8-15.05c0 2.13 1.07 38.68 1.09 39.13 .34 9.94-25.58 5.77-25.23-2.59 .08-2 1.37-37.42 1.1-39.43-14.1 7.44-14.42 40.21 6.44 48.8a17.9 17.9 0 0 0 22.39-7.07c4.91-7.76 6.84-29.47-5.43-39a2.53 2.53 0 0 1 -.36 .12zm-12.28-198c-9.83 0-9.73 14.75-.07 14.87s10.1-14.88 .07-14.91zm-80.15 103.8c0 1.8 .41 2.4 2.17 2.58 13.62 1.39 12.51-11 12.16-13.36-1.69-11.22-14.38-10.2-14.35-7.81 .05 4.5-.03 13.68 .02 18.59zm212.3 6.4l-6.1-15.84c-2.16 5.48-4.16 10.57-6.23 15.84z',
			),
		),
		'label'             => __( 'Critical Role', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'crop'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H448V480C448 497.7 433.7 512 416 512C398.3 512 384 497.7 384 480V173.3L173.3 384H352V448H128C92.65 448 64 419.3 64 384V128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H64V32C64 14.33 78.33 0 96 0C113.7 0 128 14.33 128 32V338.7L338.7 128H160V64H402.7L457.4 9.372C469.9-3.124 490.1-3.124 502.6 9.372C515.1 21.87 515.1 42.13 502.6 54.63L448 109.3V384z',
			),
		),
		'label'             => __( 'Crop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'crop-simple'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M128 384H352V448H128C92.65 448 64 419.3 64 384V128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H64V32C64 14.33 78.33 0 96 0C113.7 0 128 14.33 128 32V384zM384 128H160V64H384C419.3 64 448 92.65 448 128V384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H448V480C448 497.7 433.7 512 416 512C398.3 512 384 497.7 384 480V128z',
			),
		),
		'label'             => __( 'Crop Simple', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
);
PK�][y��ddPultimate-addons-for-gutenberg/blocks-config/uagb-controls/spectra-icons-v6-2.phpnu�[���<?php
/**
 * Font awesome icons array array file.
 *
 * @package     UAGB
 * @author      Brainstorm Force
 * @link        https://wpspectra.com/
 */

/**
 * Returns font awesome icons array
 */
return array(
	'imdb'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM21.3 229.2H21c.1-.1 .2-.3 .3-.4zM97 319.8H64V192h33zm113.2 0h-28.7v-86.4l-11.6 86.4h-20.6l-12.2-84.5v84.5h-29V192h42.8c3.3 19.8 6 39.9 8.7 59.9l7.6-59.9h43zm11.4 0V192h24.6c17.6 0 44.7-1.6 49 20.9 1.7 7.6 1.4 16.3 1.4 24.4 0 88.5 11.1 82.6-75 82.5zm160.9-29.2c0 15.7-2.4 30.9-22.2 30.9-9 0-15.2-3-20.9-9.8l-1.9 8.1h-29.8V192h31.7v41.7c6-6.5 12-9.2 20.9-9.2 21.4 0 22.2 12.8 22.2 30.1zM265 229.9c0-9.7 1.6-16-10.3-16v83.7c12.2 .3 10.3-8.7 10.3-18.4zm85.5 26.1c0-5.4 1.1-12.7-6.2-12.7-6 0-4.9 8.9-4.9 12.7 0 .6-1.1 39.6 1.1 44.7 .8 1.6 2.2 2.4 3.8 2.4 7.8 0 6.2-9 6.2-14.4z',
			),
		),
		'label'             => __( 'IMDB', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'inbox'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447 56.25C443.5 42 430.7 31.1 416 31.1H96c-14.69 0-27.47 10-31.03 24.25L3.715 304.9C1.247 314.9 0 325.2 0 335.5v96.47c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48v-96.47c0-10.32-1.247-20.6-3.715-30.61L447 56.25zM352 352H160L128 288H72.97L121 96h270l48.03 192H384L352 352z',
			),
		),
		'label'             => __( 'Inbox', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'indent'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 64C0 46.33 14.33 32 32 32H416C433.7 32 448 46.33 448 64C448 81.67 433.7 96 416 96H32C14.33 96 0 81.67 0 64zM192 192C192 174.3 206.3 160 224 160H416C433.7 160 448 174.3 448 192C448 209.7 433.7 224 416 224H224C206.3 224 192 209.7 192 192zM416 288C433.7 288 448 302.3 448 320C448 337.7 433.7 352 416 352H224C206.3 352 192 337.7 192 320C192 302.3 206.3 288 224 288H416zM0 448C0 430.3 14.33 416 32 416H416C433.7 416 448 430.3 448 448C448 465.7 433.7 480 416 480H32C14.33 480 0 465.7 0 448zM25.82 347.9C15.31 356.1 0 348.6 0 335.3V176.7C0 163.4 15.31 155.9 25.82 164.1L127.8 243.4C135.1 249.8 135.1 262.2 127.8 268.6L25.82 347.9z',
			),
		),
		'label'             => __( 'Indent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'indian-rupee-sign'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M.0022 64C.0022 46.33 14.33 32 32 32H288C305.7 32 320 46.33 320 64C320 81.67 305.7 96 288 96H231.8C241.4 110.4 248.5 126.6 252.4 144H288C305.7 144 320 158.3 320 176C320 193.7 305.7 208 288 208H252.4C239.2 266.3 190.5 311.2 130.3 318.9L274.6 421.1C288.1 432.2 292.3 452.2 282 466.6C271.8 480.1 251.8 484.3 237.4 474L13.4 314C2.083 305.1-2.716 291.5 1.529 278.2C5.774 264.1 18.09 256 32 256H112C144.8 256 173 236.3 185.3 208H32C14.33 208 .0022 193.7 .0022 176C.0022 158.3 14.33 144 32 144H185.3C173 115.7 144.8 96 112 96H32C14.33 96 .0022 81.67 .0022 64V64z',
			),
		),
		'label'             => __( 'Indian Rupee Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'industry'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M128 32C145.7 32 160 46.33 160 64V215.4L316.6 131C332.6 122.4 352 134 352 152.2V215.4L508.6 131C524.6 122.4 544 134 544 152.2V432C544 458.5 522.5 480 496 480H80C53.49 480 32 458.5 32 432V64C32 46.33 46.33 32 64 32H128z',
			),
		),
		'label'             => __( 'Industry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'infinity'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M494.9 96.01c-38.78 0-75.22 15.09-102.6 42.5L320 210.8L247.8 138.5c-27.41-27.41-63.84-42.5-102.6-42.5C65.11 96.01 0 161.1 0 241.1v29.75c0 80.03 65.11 145.1 145.1 145.1c38.78 0 75.22-15.09 102.6-42.5L320 301.3l72.23 72.25c27.41 27.41 63.84 42.5 102.6 42.5C574.9 416 640 350.9 640 270.9v-29.75C640 161.1 574.9 96.01 494.9 96.01zM202.5 328.3c-15.31 15.31-35.69 23.75-57.38 23.75C100.4 352 64 315.6 64 270.9v-29.75c0-44.72 36.41-81.13 81.14-81.13c21.69 0 42.06 8.438 57.38 23.75l72.23 72.25L202.5 328.3zM576 270.9c0 44.72-36.41 81.13-81.14 81.13c-21.69 0-42.06-8.438-57.38-23.75l-72.23-72.25l72.23-72.25c15.31-15.31 35.69-23.75 57.38-23.75C539.6 160 576 196.4 576 241.1V270.9z',
			),
		),
		'label'             => 'Infinity',
		'custom_categories' => array( 'education', 'travel' ),
	),
	'info'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 192,
				'height' => 512,
				'path'   => 'M160 448h-32V224c0-17.69-14.33-32-32-32L32 192c-17.67 0-32 14.31-32 32s14.33 31.1 32 31.1h32v192H32c-17.67 0-32 14.31-32 32s14.33 32 32 32h128c17.67 0 32-14.31 32-32S177.7 448 160 448zM96 128c26.51 0 48-21.49 48-48S122.5 32.01 96 32.01s-48 21.49-48 48S69.49 128 96 128z',
			),
		),
		'label'             => __( 'Info', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'instagram'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z',
			),
		),
		'label'             => __( 'Instagram', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'instagram-square'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 202.7A53.34 53.34 0 1 0 277.4 256 53.38 53.38 0 0 0 224 202.7zm124.7-41a54 54 0 0 0 -30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31 6.43a54 54 0 0 0 -30.41 30.41c-8.28 21-6.43 71.05-6.43 94.33S91 329.3 99.32 350.3a54 54 0 0 0 30.41 30.41c21 8.29 71 6.43 94.31 6.43s73.24 1.93 94.3-6.43a54 54 0 0 0 30.41-30.41c8.35-21 6.43-71.05 6.43-94.33S357.1 182.7 348.8 161.7zM224 338a82 82 0 1 1 82-82A81.9 81.9 0 0 1 224 338zm85.38-148.3a19.14 19.14 0 1 1 19.13-19.14A19.1 19.1 0 0 1 309.4 189.7zM400 32H48A48 48 0 0 0 0 80V432a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V80A48 48 0 0 0 400 32zM382.9 322c-1.29 25.63-7.14 48.34-25.85 67s-41.4 24.63-67 25.85c-26.41 1.49-105.6 1.49-132 0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.6 0-132 1.29-25.63 7.07-48.34 25.85-67s41.47-24.56 67-25.78c26.41-1.49 105.6-1.49 132 0 25.63 1.29 48.33 7.15 67 25.85s24.63 41.42 25.85 67.05C384.4 216.4 384.4 295.6 382.9 322z',
			),
		),
		'label'             => __( 'Instagram Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'instalod'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M153.4 480H387.1L502.6 275.8 204.2 333.2zM504.7 240.1 387.1 32H155.7L360.2 267.9zM124.4 48.81 7.274 256 123.2 461.2 225.6 165.6z',
			),
		),
		'label'             => __( 'InstaLOD', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'intercom'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M392 32H56C25.1 32 0 57.1 0 88v336c0 30.9 25.1 56 56 56h336c30.9 0 56-25.1 56-56V88c0-30.9-25.1-56-56-56zm-108.3 82.1c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zm-74.6-7.5c0-19.8 29.9-19.8 29.9 0v216.5c0 19.8-29.9 19.8-29.9 0V106.6zm-74.7 7.5c0-19.8 29.9-19.8 29.9 0v199.5c0 19.8-29.9 19.8-29.9 0V114.1zM59.7 144c0-19.8 29.9-19.8 29.9 0v134.3c0 19.8-29.9 19.8-29.9 0V144zm323.4 227.8c-72.8 63-241.7 65.4-318.1 0-15-12.8 4.4-35.5 19.4-22.7 65.9 55.3 216.1 53.9 279.3 0 14.9-12.9 34.3 9.8 19.4 22.7zm5.2-93.5c0 19.8-29.9 19.8-29.9 0V144c0-19.8 29.9-19.8 29.9 0v134.3z',
			),
		),
		'label'             => __( 'Intercom', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'internet-explorer'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M483 159.7c10.85-24.58 21.42-60.44 21.42-87.87 0-72.72-79.64-98.37-209.7-38.58-107.6-7.181-211.2 73.67-237.1 186.5 30.85-34.86 78.27-82.3 121.1-101.2C125.4 166.9 79.13 228 43.99 291.7 23.25 329.7 0 390.9 0 436.7c0 98.57 92.85 86.5 180.3 42.01 31.42 15.43 66.56 15.57 101.7 15.57 97.12 0 184.2-54.29 216.8-146H377.9c-52.51 88.59-196.8 52.1-196.8-47.44H509.9c6.407-43.58-1.655-95.71-26.85-141.2zM64.56 346.9c17.71 51.15 53.7 95.87 100.3 123.3-88.74 48.94-173.3 29.1-100.3-123.3zm115.1-108.9c2-55.15 50.28-94.87 103.1-94.87 53.42 0 101.1 39.72 103.1 94.87H180.5zm184.5-187.6c21.42-10.29 48.56-22 72.56-22 31.42 0 54.27 21.72 54.27 53.72 0 20-7.427 49.01-14.57 67.87-26.28-42.29-65.99-81.58-112.3-99.59z',
			),
		),
		'label'             => __( 'Internet-explorer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'invision'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M407.4 32H40.6C18.2 32 0 50.2 0 72.6v366.8C0 461.8 18.2 480 40.6 480h366.8c22.4 0 40.6-18.2 40.6-40.6V72.6c0-22.4-18.2-40.6-40.6-40.6zM176.1 145.6c.4 23.4-22.4 27.3-26.6 27.4-14.9 0-27.1-12-27.1-27 .1-35.2 53.1-35.5 53.7-.4zM332.8 377c-65.6 0-34.1-74-25-106.6 14.1-46.4-45.2-59-59.9 .7l-25.8 103.3H177l8.1-32.5c-31.5 51.8-94.6 44.4-94.6-4.3 .1-14.3 .9-14 23-104.1H81.7l9.7-35.6h76.4c-33.6 133.7-32.6 126.9-32.9 138.2 0 20.9 40.9 13.5 57.4-23.2l19.8-79.4h-32.3l9.7-35.6h68.8l-8.9 40.5c40.5-75.5 127.9-47.8 101.8 38-14.2 51.1-14.6 50.7-14.9 58.8 0 15.5 17.5 22.6 31.8-16.9L386 325c-10.5 36.7-29.4 52-53.2 52z',
			),
		),
		'label'             => __( 'InVision', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ioxhost'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M616 160h-67.3C511.2 70.7 422.9 8 320 8 183 8 72 119 72 256c0 16.4 1.6 32.5 4.7 48H24c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h67.3c37.5 89.3 125.8 152 228.7 152 137 0 248-111 248-248 0-16.4-1.6-32.5-4.7-48H616c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24zm-96 96c0 110.5-89.5 200-200 200-75.7 0-141.6-42-175.5-104H424c13.3 0 24-10.8 24-24 0-13.3-10.7-24-24-24H125.8c-3.8-15.4-5.8-31.4-5.8-48 0-110.5 89.5-200 200-200 75.7 0 141.6 42 175.5 104H216c-13.3 0-24 10.8-24 24 0 13.3 10.7 24 24 24h298.2c3.8 15.4 5.8 31.4 5.8 48zm-304-24h208c13.3 0 24 10.7 24 24 0 13.2-10.7 24-24 24H216c-13.3 0-24-10.7-24-24 0-13.2 10.7-24 24-24z',
			),
		),
		'label'             => __( 'ioxhost', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'italic'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 64.01c0 17.69-14.31 32-32 32h-58.67l-133.3 320H224c17.69 0 32 14.31 32 32s-14.31 32-32 32H32c-17.69 0-32-14.31-32-32s14.31-32 32-32h58.67l133.3-320H160c-17.69 0-32-14.31-32-32s14.31-32 32-32h192C369.7 32.01 384 46.33 384 64.01z',
			),
		),
		'label'             => __( 'Italic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'itch-io'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M71.92 34.77C50.2 47.67 7.4 96.84 7 109.7v21.34c0 27.06 25.29 50.84 48.25 50.84 27.57 0 50.54-22.85 50.54-50 0 27.12 22.18 50 49.76 50s49-22.85 49-50c0 27.12 23.59 50 51.16 50h.5c27.57 0 51.16-22.85 51.16-50 0 27.12 21.47 50 49 50s49.76-22.85 49.76-50c0 27.12 23 50 50.54 50 23 0 48.25-23.78 48.25-50.84v-21.34c-.4-12.9-43.2-62.07-64.92-75C372.6 32.4 325.8 32 256 32S91.14 33.1 71.92 34.77zm132.3 134.4c-22 38.4-77.9 38.71-99.85 .25-13.17 23.14-43.17 32.07-56 27.66-3.87 40.15-13.67 237.1 17.73 269.1 80 18.67 302.1 18.12 379.8 0 31.65-32.27 21.32-232 17.75-269.1-12.92 4.44-42.88-4.6-56-27.66-22 38.52-77.85 38.1-99.85-.24-7.1 12.49-23.05 28.94-51.76 28.94a57.54 57.54 0 0 1 -51.75-28.94zm-41.58 53.77c16.47 0 31.09 0 49.22 19.78a436.9 436.9 0 0 1 88.18 0C318.2 223 332.9 223 349.3 223c52.33 0 65.22 77.53 83.87 144.4 17.26 62.15-5.52 63.67-33.95 63.73-42.15-1.57-65.49-32.18-65.49-62.79-39.25 6.43-101.9 8.79-155.6 0 0 30.61-23.34 61.22-65.49 62.79-28.42-.06-51.2-1.58-33.94-63.73 18.67-67 31.56-144.4 83.88-144.4zM256 270.8s-44.38 40.77-52.35 55.21l29-1.17v25.32c0 1.55 21.34 .16 23.33 .16 11.65 .54 23.31 1 23.31-.16v-25.28l29 1.17c-8-14.48-52.35-55.24-52.35-55.24z',
			),
		),
		'label'             => __( 'itch.io', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'itunes'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M223.6 80.3C129 80.3 52.5 157 52.5 251.5S129 422.8 223.6 422.8s171.2-76.7 171.2-171.2c0-94.6-76.7-171.3-171.2-171.3zm79.4 240c-3.2 13.6-13.5 21.2-27.3 23.8-12.1 2.2-22.2 2.8-31.9-5-11.8-10-12-26.4-1.4-36.8 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 3.2-3.6 2.2-2 2.2-80.8 0-5.6-2.7-7.1-8.4-6.1-4 .7-91.9 17.1-91.9 17.1-5 1.1-6.7 2.6-6.7 8.3 0 116.1 .5 110.8-1.2 118.5-2.1 9-7.6 15.8-14.9 19.6-8.3 4.6-23.4 6.6-31.4 5.2-21.4-4-28.9-28.7-14.4-42.9 8.4-8 20.3-9.6 38-12.8 3-.5 5.6-1.2 7.7-3.7 5-5.7 .9-127 2.6-133.7 .4-2.6 1.5-4.8 3.5-6.4 2.1-1.7 5.8-2.7 6.7-2.7 101-19 113.3-21.4 115.1-21.4 5.7-.4 9 3 9 8.7-.1 170.6 .4 161.4-1 167.6zM345.2 32H102.8C45.9 32 0 77.9 0 134.8v242.4C0 434.1 45.9 480 102.8 480h242.4c57 0 102.8-45.9 102.8-102.8V134.8C448 77.9 402.1 32 345.2 32zM223.6 444c-106.3 0-192.5-86.2-192.5-192.5S117.3 59 223.6 59s192.5 86.2 192.5 192.5S329.9 444 223.6 444z',
			),
		),
		'label'             => __( 'iTunes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'itunes-note'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M381.9 388.2c-6.4 27.4-27.2 42.8-55.1 48-24.5 4.5-44.9 5.6-64.5-10.2-23.9-20.1-24.2-53.4-2.7-74.4 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 6.4-7.2 4.4-4.1 4.4-163.2 0-11.2-5.5-14.3-17-12.3-8.2 1.4-185.7 34.6-185.7 34.6-10.2 2.2-13.4 5.2-13.4 16.7 0 234.7 1.1 223.9-2.5 239.5-4.2 18.2-15.4 31.9-30.2 39.5-16.8 9.3-47.2 13.4-63.4 10.4-43.2-8.1-58.4-58-29.1-86.6 17-16.2 40.9-19.5 76.8-25.8 6-1.1 11.2-2.5 15.6-7.4 10.1-11.5 1.8-256.6 5.2-270.2 .8-5.2 3-9.6 7.1-12.9 4.2-3.5 11.8-5.5 13.4-5.5 204-38.2 228.9-43.1 232.4-43.1 11.5-.8 18.1 6 18.1 17.6 .2 344.5 1.1 326-1.8 338.5z',
			),
		),
		'label'             => __( 'Itunes Note', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'j'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 64.01v259.4c0 86.36-71.78 156.6-160 156.6s-160-70.26-160-156.6V288c0-17.67 14.31-32 32-32s32 14.33 32 32v35.38c0 51.08 43.06 92.63 96 92.63s96-41.55 96-92.63V64.01c0-17.67 14.31-32 32-32S320 46.34 320 64.01z',
			),
		),
		'label'             => __( 'J', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'jar'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M32 32C32 14.33 46.33 0 64 0H256C273.7 0 288 14.33 288 32C288 49.67 273.7 64 256 64H64C46.33 64 32 49.67 32 32zM0 160C0 124.7 28.65 96 64 96H256C291.3 96 320 124.7 320 160V448C320 483.3 291.3 512 256 512H64C28.65 512 0 483.3 0 448V160zM256 224H64V384H256V224z',
			),
		),
		'label'             => __( 'Jar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'jar-wheat'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M32 32C32 14.33 46.33 0 64 0H256C273.7 0 288 14.33 288 32C288 49.67 273.7 64 256 64H64C46.33 64 32 49.67 32 32zM0 160C0 124.7 28.65 96 64 96H256C291.3 96 320 124.7 320 160V448C320 483.3 291.3 512 256 512H64C28.65 512 0 483.3 0 448V160zM192 320C227.3 320 256 291.3 256 256H208C188.9 256 171.7 264.4 160 277.7C148.3 264.4 131.1 256 112 256H64C64 291.3 92.65 320 128 320H192zM192 224C227.3 224 256 195.3 256 160H208C188.9 160 171.7 168.4 160 181.7C148.3 168.4 131.1 160 112 160H64C64 195.3 92.65 224 128 224H192zM192 416C227.3 416 256 387.3 256 352H208C188.9 352 171.7 360.4 160 373.7C148.3 360.4 131.1 352 112 352H64C64 387.3 92.65 416 128 416H144V448C144 456.8 151.2 464 160 464C168.8 464 176 456.8 176 448V416H192z',
			),
		),
		'label'             => __( 'Jar Wheat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'java'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M277.7 312.9c9.8-6.7 23.4-12.5 23.4-12.5s-38.7 7-77.2 10.2c-47.1 3.9-97.7 4.7-123.1 1.3-60.1-8 33-30.1 33-30.1s-36.1-2.4-80.6 19c-52.5 25.4 130 37 224.5 12.1zm-85.4-32.1c-19-42.7-83.1-80.2 0-145.8C296 53.2 242.8 0 242.8 0c21.5 84.5-75.6 110.1-110.7 162.6-23.9 35.9 11.7 74.4 60.2 118.2zm114.6-176.2c.1 0-175.2 43.8-91.5 140.2 24.7 28.4-6.5 54-6.5 54s62.7-32.4 33.9-72.9c-26.9-37.8-47.5-56.6 64.1-121.3zm-6.1 270.5a12.19 12.19 0 0 1 -2 2.6c128.3-33.7 81.1-118.9 19.8-97.3a17.33 17.33 0 0 0 -8.2 6.3 70.45 70.45 0 0 1 11-3c31-6.5 75.5 41.5-20.6 91.4zM348 437.4s14.5 11.9-15.9 21.2c-57.9 17.5-240.8 22.8-291.6 .7-18.3-7.9 16-19 26.8-21.3 11.2-2.4 17.7-2 17.7-2-20.3-14.3-131.3 28.1-56.4 40.2C232.8 509.4 401 461.3 348 437.4zM124.4 396c-78.7 22 47.9 67.4 148.1 24.5a185.9 185.9 0 0 1 -28.2-13.8c-44.7 8.5-65.4 9.1-106 4.5-33.5-3.8-13.9-15.2-13.9-15.2zm179.8 97.2c-78.7 14.8-175.8 13.1-233.3 3.6 0-.1 11.8 9.7 72.4 13.6 92.2 5.9 233.8-3.3 237.1-46.9 0 0-6.4 16.5-76.2 29.7zM260.6 353c-59.2 11.4-93.5 11.1-136.8 6.6-33.5-3.5-11.6-19.7-11.6-19.7-86.8 28.8 48.2 61.4 169.5 25.9a60.37 60.37 0 0 1 -21.1-12.8z',
			),
		),
		'label'             => __( 'Java', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'jedi'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M554.9 293.1l-58.88 58.88h40C493.2 446.1 398.2 511.1 287.1 512c-110.3-.0078-205.2-65.88-247.1-160h40L21.13 293.1C17.75 275.1 16 258.6 16 241.2c0-5.75 .75-11.5 1-17.25h47L22.75 182.7C37.38 117.1 75.86 59.37 130.6 20.5c2.75-2 6.021-3.005 9.272-3.005c5.5 0 10.5 2.75 13.5 7.25c3.125 4.375 3.625 10.13 1.625 15.13C148.5 56.12 145.1 73.62 145.1 91.12c0 45.13 21.13 86.63 57.75 113.8C206.9 207.7 209.4 212.4 209.5 217.2c.25 5-1.751 9.752-5.501 13c-32.75 29.38-47.5 74-38.5 117.1c9.751 48.38 48.88 87.13 97.26 96.5l2.5-65.37l-27.13 18.5c-3.125 2-7.251 1.75-10-.75c-2.75-2.625-3.25-6.75-1.375-10l20.13-33.75l-42.13-8.627c-3.625-.875-6.375-4.125-6.375-7.875s2.75-7 6.375-7.875l42.13-8.75L226.8 285.6C224.9 282.5 225.4 278.4 228.1 275.7c2.75-2.5 6.876-2.875 10-.75l30.38 20.63l11.49-287.8C280.3 3.461 283.7 .0156 287.1 0c4.237 .0156 7.759 3.461 8.009 7.828l11.49 287.8l30.38-20.63c3.125-2.125 7.251-1.75 10 .75c2.75 2.625 3.25 6.75 1.375 9.875l-20.13 33.75l42.13 8.75c3.625 .875 6.375 4.125 6.375 7.875s-2.75 7-6.375 7.875l-42.13 8.627l20.13 33.75c1.875 3.25 1.375 7.375-1.375 10c-2.75 2.5-6.876 2.75-10 .75l-27.13-18.5l2.5 65.37c48.38-9.375 87.51-48.13 97.26-96.5c9.001-43.13-5.75-87.75-38.5-117.1c-3.75-3.25-5.751-8.002-5.501-13c.125-4.875 2.626-9.5 6.626-12.38c36.63-27.13 57.75-68.63 57.75-113.8c0-17.5-3.375-35-9.875-51.25c-2-5-1.5-10.75 1.625-15.13c3-4.5 8.001-7.25 13.5-7.25c3.25 0 6.474 .9546 9.224 2.955c54.75 38.88 93.28 96.67 107.9 162.3l-41.25 41.25h47c.2501 5.75 .9965 11.5 .9965 17.25C559.1 258.6 558.3 275.1 554.9 293.1z',
			),
		),
		'label'             => __( 'Jedi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'brands', 'brands', 'social' ),
	),
	'jedi-order'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M398.5 373.6c95.9-122.1 17.2-233.1 17.2-233.1 45.4 85.8-41.4 170.5-41.4 170.5 105-171.5-60.5-271.5-60.5-271.5 96.9 72.7-10.1 190.7-10.1 190.7 85.8 158.4-68.6 230.1-68.6 230.1s-.4-16.9-2.2-85.7c4.3 4.5 34.5 36.2 34.5 36.2l-24.2-47.4 62.6-9.1-62.6-9.1 20.2-55.5-31.4 45.9c-2.2-87.7-7.8-305.1-7.9-306.9v-2.4 1-1 2.4c0 1-5.6 219-7.9 306.9l-31.4-45.9 20.2 55.5-62.6 9.1 62.6 9.1-24.2 47.4 34.5-36.2c-1.8 68.8-2.2 85.7-2.2 85.7s-154.4-71.7-68.6-230.1c0 0-107-118.1-10.1-190.7 0 0-165.5 99.9-60.5 271.5 0 0-86.8-84.8-41.4-170.5 0 0-78.7 111 17.2 233.1 0 0-26.2-16.1-49.4-77.7 0 0 16.9 183.3 222 185.7h4.1c205-2.4 222-185.7 222-185.7-23.6 61.5-49.9 77.7-49.9 77.7z',
			),
		),
		'label'             => __( 'Jedi Order', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'brands', 'brands', 'social' ),
	),
	'jenkins'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M487.1 425c-1.4-11.2-19-23.1-28.2-31.9-5.1-5-29-23.1-30.4-29.9-1.4-6.6 9.7-21.5 13.3-28.9 5.1-10.7 8.8-23.7 11.3-32.6 18.8-66.1 20.7-156.9-6.2-211.2-10.2-20.6-38.6-49-56.4-62.5-42-31.7-119.6-35.3-170.1-16.6-14.1 5.2-27.8 9.8-40.1 17.1-33.1 19.4-68.3 32.5-78.1 71.6-24.2 10.8-31.5 41.8-30.3 77.8 .2 7 4.1 15.8 2.7 22.4-.7 3.3-5.2 7.6-6.1 9.8-11.6 27.7-2.3 64 11.1 83.7 8.1 11.9 21.5 22.4 39.2 25.2 .7 10.6 3.3 19.7 8.2 30.4 3.1 6.8 14.7 19 10.4 27.7-2.2 4.4-21 13.8-27.3 17.6C89 407.2 73.7 415 54.2 429c-12.6 9-32.3 10.2-29.2 31.1 2.1 14.1 10.1 31.6 14.7 45.8 .7 2 1.4 4.1 2.1 6h422c4.9-15.3 9.7-30.9 14.6-47.2 3.4-11.4 10.2-27.8 8.7-39.7zM205.9 33.7c1.8-.5 3.4 .7 4.9 2.4-.2 5.2-5.4 5.1-8.9 6.8-5.4 6.7-13.4 9.8-20 17.2-6.8 7.5-14.4 27.7-23.4 30-4.5 1.1-9.7-.8-13.6-.5-10.4 .7-17.7 6-28.3 7.5 13.6-29.9 56.1-54 89.3-63.4zm-104.8 93.6c13.5-14.9 32.1-24.1 54.8-25.9 11.7 29.7-8.4 65-.9 97.6 2.3 9.9 10.2 25.4-2.4 25.7 .3-28.3-34.8-46.3-61.3-29.6-1.8-21.5-4.9-51.7 9.8-67.8zm36.7 200.2c-1-4.1-2.7-12.9-2.3-15.1 1.6-8.7 17.1-12.5 11-24.7-11.3-.1-13.8 10.2-24.1 11.3-26.7 2.6-45.6-35.4-44.4-58.4 1-19.5 17.6-38.2 40.1-35.8 16 1.8 21.4 19.2 24.5 34.7 9.2 .5 22.5-.4 26.9-7.6-.6-17.5-8.8-31.6-8.2-47.7 1-30.3 17.5-57.6 4.8-87.4 13.6-30.9 53.5-55.3 83.1-70 36.6-18.3 94.9-3.7 129.3 15.8 19.7 11.1 34.4 32.7 48.3 50.7-19.5-5.8-36.1 4.2-33.1 20.3 16.3-14.9 44.2-.2 52.5 16.4 7.9 15.8 7.8 39.3 9 62.8 2.9 57-10.4 115.9-39.1 157.1-7.7 11-14.1 23-24.9 30.6-26 18.2-65.4 34.7-99.2 23.4-44.7-15-65-44.8-89.5-78.8 .7 18.7 13.8 34.1 26.8 48.4 11.3 12.5 25 26.6 39.7 32.4-12.3-2.9-31.1-3.8-36.2 7.2-28.6-1.9-55.1-4.8-68.7-24.2-10.6-15.4-21.4-41.4-26.3-61.4zm222 124.1c4.1-3 11.1-2.9 17.4-3.6-5.4-2.7-13-3.7-19.3-2.2-.1-4.2-2-6.8-3.2-10.2 10.6-3.8 35.5-28.5 49.6-20.3 6.7 3.9 9.5 26.2 10.1 37 .4 9-.8 18-4.5 22.8-18.8-.6-35.8-2.8-50.7-7 .9-6.1-1-12.1 .6-16.5zm-17.2-20c-16.8 .8-26-1.2-38.3-10.8 .2-.8 1.4-.5 1.5-1.4 18 8 40.8-3.3 59-4.9-7.9 5.1-14.6 11.6-22.2 17.1zm-12.1 33.2c-1.6-9.4-3.5-12-2.8-20.2 25-16.6 29.7 28.6 2.8 20.2zM226 438.6c-11.6-.7-48.1-14-38.5-23.7 9.4 6.5 27.5 4.9 41.3 7.3 .8 4.4-2.8 10.2-2.8 16.4zM57.7 497.1c-4.3-12.7-9.2-25.1-14.8-36.9 30.8-23.8 65.3-48.9 102.2-63.5 2.8-1.1 23.2 25.4 26.2 27.6 16.5 11.7 37 21 56.2 30.2 1.2 8.8 3.9 20.2 8.7 35.5 .7 2.3 1.4 4.7 2.2 7.2H57.7zm240.6 5.7h-.8c.3-.2 .5-.4 .8-.5v.5zm7.5-5.7c2.1-1.4 4.3-2.8 6.4-4.3 1.1 1.4 2.2 2.8 3.2 4.3h-9.6zm15.1-24.7c-10.8 7.3-20.6 18.3-33.3 25.2-6 3.3-27 11.7-33.4 10.2-3.6-.8-3.9-5.3-5.4-9.5-3.1-9-10.1-23.4-10.8-37-.8-17.2-2.5-46 16-42.4 14.9 2.9 32.3 9.7 43.9 16.1 7.1 3.9 11.1 8.6 21.9 9.5-.1 1.4-.1 2.8-.2 4.3-5.9 3.9-15.3 3.8-21.8 7.1 9.5 .4 17 2.7 23.5 5.9-.1 3.4-.3 7-.4 10.6zm53.4 24.7h-14c-.1-3.2-2.8-5.8-6.1-5.8s-5.9 2.6-6.1 5.8h-17.4c-2.8-4.4-5.7-8.6-8.9-12.5 2.1-2.2 4-4.7 6-6.9 9 3.7 14.8-4.9 21.7-4.2 7.9 .8 14.2 11.7 25.4 11l-.6 12.6zm8.7 0c.2-4 .4-7.8 .6-11.5 15.6-7.3 29 1.3 35.7 11.5H383zm83.4-37c-2.3 11.2-5.8 24-9.9 37.1-.2-.1-.4-.1-.6-.1H428c.6-1.1 1.2-2.2 1.9-3.3-2.6-6.1-9-8.7-10.9-15.5 12.1-22.7 6.5-93.4-24.2-78.5 4.3-6.3 15.6-11.5 20.8-19.3 13 10.4 20.8 20.3 33.2 31.4 6.8 6 20 13.3 21.4 23.1 .8 5.5-2.6 18.9-3.8 25.1zM222.2 130.5c5.4-14.9 27.2-34.7 45-32 7.7 1.2 18 8.2 12.2 17.7-30.2-7-45.2 12.6-54.4 33.1-8.1-2-4.9-13.1-2.8-18.8zm184.1 63.1c8.2-3.6 22.4-.7 29.6-5.3-4.2-11.5-10.3-21.4-9.3-37.7 .5 0 1 0 1.4 .1 6.8 14.2 12.7 29.2 21.4 41.7-5.7 13.5-43.6 25.4-43.1 1.2zm20.4-43zm-117.2 45.7c-6.8-10.9-19-32.5-14.5-45.3 6.5 11.9 8.6 24.4 17.8 33.3 4.1 4 12.2 9 8.2 20.2-.9 2.7-7.8 8.6-11.7 9.7-14.4 4.3-47.9 .9-36.6-17.1 11.9 .7 27.9 7.8 36.8-.8zm27.3 70c3.8 6.6 1.4 18.7 12.1 20.6 20.2 3.4 43.6-12.3 58.1-17.8 9-15.2-.8-20.7-8.9-30.5-16.6-20-38.8-44.8-38-74.7 6.7-4.9 7.3 7.4 8.2 9.7 8.7 20.3 30.4 46.2 46.3 63.5 3.9 4.3 10.3 8.4 11 11.2 2.1 8.2-5.4 18-4.5 23.5-21.7 13.9-45.8 29.1-81.4 25.6-7.4-6.7-10.3-21.4-2.9-31.1zm-201.3-9.2c-6.8-3.9-8.4-21-16.4-21.4-11.4-.7-9.3 22.2-9.3 35.5-7.8-7.1-9.2-29.1-3.5-40.3-6.6-3.2-9.5 3.6-13.1 5.9 4.7-34.1 49.8-15.8 42.3 20.3zm299.6 28.8c-10.1 19.2-24.4 40.4-54 41-.6-6.2-1.1-15.6 0-19.4 22.7-2.2 36.6-13.7 54-21.6zm-141.9 12.4c18.9 9.9 53.6 11 79.3 10.2 1.4 5.6 1.3 12.6 1.4 19.4-33 1.8-72-6.4-80.7-29.6zm92.2 46.7c-1.7 4.3-5.3 9.3-9.8 11.1-12.1 4.9-45.6 8.7-62.4-.3-10.7-5.7-17.5-18.5-23.4-26-2.8-3.6-16.9-12.9-.2-12.9 13.1 32.7 58 29 95.8 28.1z',
			),
		),
		'label'             => __( 'Jenkis', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'jet-fighter'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 24C160 10.75 170.7 0 184 0H296C309.3 0 320 10.75 320 24C320 37.25 309.3 48 296 48H280L384 192H500.4C508.1 192 515.7 193.4 522.9 196.1L625 234.4C634 237.8 640 246.4 640 256C640 265.6 634 274.2 625 277.6L522.9 315.9C515.7 318.6 508.1 320 500.4 320H384L280 464H296C309.3 464 320 474.7 320 488C320 501.3 309.3 512 296 512H184C170.7 512 160 501.3 160 488C160 474.7 170.7 464 184 464H192V320H160L105.4 374.6C99.37 380.6 91.23 384 82.75 384H64C46.33 384 32 369.7 32 352V288C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224V160C32 142.3 46.33 128 64 128H82.75C91.23 128 99.37 131.4 105.4 137.4L160 192H192V48H184C170.7 48 160 37.25 160 24V24zM80 240C71.16 240 64 247.2 64 256C64 264.8 71.16 272 80 272H144C152.8 272 160 264.8 160 256C160 247.2 152.8 240 144 240H80z',
			),
		),
		'label'             => __( 'Jet Fighter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'jet-fighter-up'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M346.8 112.6C350.2 120.6 352 129.2 352 137.9V214.8L496 298.8V280C496 266.7 506.7 256 520 256C533.3 256 544 266.7 544 280V392C544 405.3 533.3 416 520 416C506.7 416 496 405.3 496 392V384H352V416.7L410.5 467.1C414 470.1 416 475.4 416 480V496C416 504.8 408.8 512 400 512H304V448C304 439.2 296.8 432 288 432C279.2 432 272 439.2 272 448V512H176C167.2 512 160 504.8 160 496V480C160 475.4 161.1 470.1 165.5 467.1L224 416.7V384H80V392C80 405.3 69.25 416 56 416C42.75 416 32 405.3 32 392V280C32 266.7 42.75 256 56 256C69.25 256 80 266.7 80 280V298.8L224 214.8V137.9C224 129.2 225.8 120.6 229.2 112.6L273.3 9.697C275.8 3.814 281.6 0 288 0C294.4 0 300.2 3.814 302.7 9.697L346.8 112.6z',
			),
		),
		'label'             => __( 'Jet Fighter Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'jira'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M490 241.7C417.1 169 320.6 71.8 248.5 0 83 164.9 6 241.7 6 241.7c-7.9 7.9-7.9 20.7 0 28.7C138.8 402.7 67.8 331.9 248.5 512c379.4-378 15.7-16.7 241.5-241.7 8-7.9 8-20.7 0-28.6zm-241.5 90l-76-75.7 76-75.7 76 75.7-76 75.7z',
			),
		),
		'label'             => __( 'Jira', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'joget'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M378.1 45C337.6 19.9 292.6 8 248.2 8 165 8 83.8 49.9 36.9 125.9c-71.9 116.6-35.6 269.3 81 341.2s269.3 35.6 341.2-80.9c71.9-116.6 35.6-269.4-81-341.2zm51.8 323.2c-40.4 65.5-110.4 101.5-182 101.5-6.8 0-13.6-.4-20.4-1-9-13.6-19.9-33.3-23.7-42.4-5.7-13.7-27.2-45.6 31.2-67.1 51.7-19.1 176.7-16.5 208.8-17.6-4 9-8.6 17.9-13.9 26.6zm-200.8-86.3c-55.5-1.4-81.7-20.8-58.5-48.2s51.1-40.7 68.9-51.2c17.9-10.5 27.3-33.7-23.6-29.7C87.3 161.5 48.6 252.1 37.6 293c-8.8-49.7-.1-102.7 28.5-149.1C128 43.4 259.6 12.2 360.1 74.1c74.8 46.1 111.2 130.9 99.3 212.7-24.9-.5-179.3-3.6-230.3-4.9zm183.8-54.8c-22.7-6-57 11.3-86.7 27.2-29.7 15.8-31.1 8.2-31.1 8.2s40.2-28.1 50.7-34.5 31.9-14 13.4-24.6c-3.2-1.8-6.7-2.7-10.4-2.7-17.8 0-41.5 18.7-67.5 35.6-31.5 20.5-65.3 31.3-65.3 31.3l169.5-1.6 46.5-23.4s3.6-9.5-19.1-15.5z',
			),
		),
		'label'             => __( 'Joget', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'joint'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M444.4 181.1C466.8 196.8 480 222.2 480 249.8V280C480 284.4 483.6 288 488 288h48C540.4 288 544 284.4 544 280V249.8c0-43.25-21-83.5-56.38-108.1C463.9 125 448 99.38 448 70.25V8C448 3.625 444.4 0 440 0h-48C387.6 0 384 3.625 384 8v66.38C384 118.1 408.5 156 444.4 181.1zM195 359C125.1 370.1 59.75 394.8 0 432C83.62 484.2 180.2 512 279 512h88.5l-112.7-131.5C240 363.2 217.4 355.4 195 359zM553.3 87.12C547.6 83.25 544 77.12 544 70.25V8C544 3.625 540.4 0 536 0h-48C483.6 0 480 3.625 480 8v62.25c0 22.13 10.12 43.5 28.62 55.5C550.8 153 576 199.5 576 249.8V280C576 284.4 579.6 288 584 288h48C636.4 288 640 284.4 640 280V249.8C640 184.2 607.6 123.5 553.3 87.12zM360.9 352c-34.38 .125-86.75 .25-88.25 .25l117.9 137.4C402.6 503.9 420.4 512 439.1 512h88.38l-117.9-137.6C397.4 360.1 379.6 352 360.9 352zM616 352H432l117.1 137.6C562.1 503.9 579.9 512 598.6 512H616c13.25 0 24-10.75 24-24v-112C640 362.8 629.3 352 616 352z',
			),
		),
		'label'             => __( 'Joint', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'joomla'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M.6 92.1C.6 58.8 27.4 32 60.4 32c30 0 54.5 21.9 59.2 50.2 32.6-7.6 67.1 .6 96.5 30l-44.3 44.3c-20.5-20.5-42.6-16.3-55.4-3.5-14.3 14.3-14.3 37.9 0 52.2l99.5 99.5-44 44.3c-87.7-87.2-49.7-49.7-99.8-99.7-26.8-26.5-35-64.8-24.8-98.9C20.4 144.6 .6 120.7 .6 92.1zm129.5 116.4l44.3 44.3c10-10 89.7-89.7 99.7-99.8 14.3-14.3 37.6-14.3 51.9 0 12.8 12.8 17 35-3.5 55.4l44 44.3c31.2-31.2 38.5-67.6 28.9-101.2 29.2-4.1 51.9-29.2 51.9-59.5 0-33.2-26.8-60.1-59.8-60.1-30.3 0-55.4 22.5-59.5 51.6-33.8-9.9-71.7-1.5-98.3 25.1-18.3 19.1-71.1 71.5-99.6 99.9zm266.3 152.2c8.2-32.7-.9-68.5-26.3-93.9-11.8-12.2 5 4.7-99.5-99.7l-44.3 44.3 99.7 99.7c14.3 14.3 14.3 37.6 0 51.9-12.8 12.8-35 17-55.4-3.5l-44 44.3c27.6 30.2 68 38.8 102.7 28 5.5 27.4 29.7 48.1 58.9 48.1 33 0 59.8-26.8 59.8-60.1 0-30.2-22.5-55-51.6-59.1zm-84.3-53.1l-44-44.3c-87 86.4-50.4 50.4-99.7 99.8-14.3 14.3-37.6 14.3-51.9 0-13.1-13.4-16.9-35.3 3.2-55.4l-44-44.3c-30.2 30.2-38 65.2-29.5 98.3-26.7 6-46.2 29.9-46.2 58.2C0 453.2 26.8 480 59.8 480c28.6 0 52.5-19.8 58.6-46.7 32.7 8.2 68.5-.6 94.2-26 32.1-32 12.2-12.4 99.5-99.7z',
			),
		),
		'label'             => __( 'Joomla Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'js'                                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32H0zm243.8 349.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z',
			),
		),
		'label'             => __( 'JavaScript (JS)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'js-square'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM243.8 381.4c0 43.6-25.6 63.5-62.9 63.5-33.7 0-53.2-17.4-63.2-38.5l34.3-20.7c6.6 11.7 12.6 21.6 27.1 21.6 13.8 0 22.6-5.4 22.6-26.5V237.7h42.1v143.7zm99.6 63.5c-39.1 0-64.4-18.6-76.7-43l34.3-19.8c9 14.7 20.8 25.6 41.5 25.6 17.4 0 28.6-8.7 28.6-20.8 0-14.4-11.4-19.5-30.7-28l-10.5-4.5c-30.4-12.9-50.5-29.2-50.5-63.5 0-31.6 24.1-55.6 61.6-55.6 26.8 0 46 9.3 59.8 33.7L368 290c-7.2-12.9-15-18-27.1-18-12.3 0-20.1 7.8-20.1 18 0 12.6 7.8 17.7 25.9 25.6l10.5 4.5c35.8 15.3 55.9 31 55.9 66.2 0 37.8-29.8 58.6-69.7 58.6z',
			),
		),
		'label'             => __( 'Javascript (JS) Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'jsfiddle'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M510.6 237.5c-4.727-2.621-5.664-5.748-6.381-10.78-2.352-16.49-3.539-33.62-9.097-49.1-35.9-99.96-153.1-143.4-246.8-91.65-27.37 15.25-48.97 36.37-65.49 63.9-3.184-1.508-5.458-2.71-7.824-3.686-30.1-12.42-59.05-10.12-85.33 9.167-25.53 18.74-36.42 44.55-32.68 76.41 .355 3.025-1.967 7.621-4.514 9.545-39.71 29.99-56.03 78.07-41.9 124.6 13.83 45.57 57.51 79.8 105.6 81.43 30.29 1.031 60.64 .546 90.96 .539 84.04-.021 168.1 .531 252.1-.48 52.66-.634 96.11-36.87 108.2-87.29 11.54-48.07-11.14-97.3-56.83-122.6zm21.11 156.9c-18.23 22.43-42.34 35.25-71.28 35.65-56.87 .781-113.8 .23-170.7 .23 0 .7-163 .159-163.7 .154-43.86-.332-76.74-19.77-95.18-59.99-18.9-41.24-4.004-90.85 34.19-116.1 9.182-6.073 12.51-11.57 10.1-23.14-5.49-26.36 4.453-47.96 26.42-62.98 22.99-15.72 47.42-16.15 72.03-3.083 10.27 5.45 14.61 11.56 22.2-2.527 14.22-26.4 34.56-46.73 60.67-61.29 97.46-54.37 228.4 7.568 230.2 132.7 .122 8.15 2.412 12.43 9.848 15.89 57.56 26.83 74.46 96.12 35.14 144.5zm-87.79-80.5c-5.848 31.16-34.62 55.1-66.67 55.1-16.95-.001-32.06-6.545-44.08-17.7-27.7-25.71-71.14-74.98-95.94-93.39-20.06-14.89-41.99-12.33-60.27 3.782-49.1 44.07 15.86 121.8 67.06 77.19 4.548-3.96 7.84-9.543 12.74-12.84 8.184-5.509 20.77-.884 13.17 10.62-17.36 26.28-49.33 38.2-78.86 29.3-28.9-8.704-48.84-35.97-48.63-70.18 1.225-22.49 12.36-43.06 35.41-55.97 22.58-12.64 46.37-13.15 66.99 2.474C295.7 280.7 320.5 323.1 352.2 343.5c24.56 15.1 54.25 7.363 68.82-17.51 28.83-49.21-34.59-105-78.87-63.46-3.989 3.744-6.917 8.932-11.41 11.72-10.98 6.811-17.33-4.113-12.81-10.35 20.7-28.55 50.46-40.44 83.27-28.21 31.43 11.71 49.11 44.37 42.76 78.19z',
			),
		),
		'label'             => __( 'jsFiddle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'jug-detergent'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M96 24C96 10.75 106.7 0 120 0H200C213.3 0 224 10.75 224 24V48H232C245.3 48 256 58.75 256 72C256 85.25 245.3 96 232 96H88C74.75 96 64 85.25 64 72C64 58.75 74.75 48 88 48H96V24zM0 256C0 185.3 57.31 128 128 128H256C326.7 128 384 185.3 384 256V448C384 483.3 355.3 512 320 512H64C28.65 512 0 483.3 0 448V256zM256 352C256 369.7 270.3 384 288 384C305.7 384 320 369.7 320 352V256C320 238.3 305.7 224 288 224C270.3 224 256 238.3 256 256V352z',
			),
		),
		'label'             => __( 'Jug Detergent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'k'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M314.3 429.8c10.06 14.53 6.438 34.47-8.094 44.53c-5.562 3.844-11.91 5.688-18.19 5.688c-10.16 0-20.12-4.812-26.34-13.78L128.1 273.3L64 338.9v109.1c0 17.67-14.31 32-32 32s-32-14.33-32-32v-384C0 46.34 14.31 32.01 32 32.01S64 46.34 64 64.01v183.3l201.1-205.7c12.31-12.61 32.63-12.86 45.25-.5c12.62 12.34 12.88 32.61 .5 45.25l-137.2 140.3L314.3 429.8z',
			),
		),
		'label'             => __( 'K', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'kaaba'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 239.4V197.4L278.1 115.3C284.9 113.6 291.1 113.6 297 115.3L576 197.4V239.4L537.1 228.6C528.6 226.2 519.7 231.2 517.4 239.7C515 248.2 520 257.1 528.5 259.4L576 272.6V409.5C576 431.1 560.4 451.5 538.4 456.4L298.4 509.7C291.6 511.2 284.4 511.2 277.6 509.7L37.59 456.4C15.63 451.5 0 431.1 0 409.5V272.6L47.48 259.4C55.1 257.1 60.98 248.2 58.62 239.7C56.25 231.2 47.43 226.2 38.92 228.6L0 239.4zM292.3 160.6C289.5 159.8 286.5 159.8 283.7 160.6L240.5 172.6C232 174.9 227 183.8 229.4 192.3C231.7 200.8 240.6 205.8 249.1 203.4L288 192.6L326.9 203.4C335.4 205.8 344.3 200.8 346.6 192.3C348.1 183.8 343.1 174.9 335.5 172.6L292.3 160.6zM191.5 219.4C199.1 217.1 204.1 208.2 202.6 199.7C200.3 191.2 191.4 186.2 182.9 188.6L96.52 212.6C88 214.9 83.02 223.8 85.38 232.3C87.75 240.8 96.57 245.8 105.1 243.4L191.5 219.4zM393.1 188.6C384.6 186.2 375.7 191.2 373.4 199.7C371 208.2 376 217.1 384.5 219.4L470.9 243.4C479.4 245.8 488.3 240.8 490.6 232.3C492.1 223.8 487.1 214.9 479.5 212.6L393.1 188.6zM269.9 84.63L0 164V130.6C0 109.9 13.22 91.59 32.82 85.06L272.8 5.061C282.7 1.777 293.3 1.777 303.2 5.061L543.2 85.06C562.8 91.59 576 109.9 576 130.6V164L306.1 84.63C294.3 81.17 281.7 81.17 269.9 84.63V84.63z',
			),
		),
		'label'             => __( 'Kaaba', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'kaggle'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M304.2 501.5L158.4 320.3 298.2 185c2.6-2.7 1.7-10.5-5.3-10.5h-69.2c-3.5 0-7 1.8-10.5 5.3L80.9 313.5V7.5q0-7.5-7.5-7.5H21.5Q14 0 14 7.5v497q0 7.5 7.5 7.5h51.9q7.5 0 7.5-7.5v-109l30.8-29.3 110.5 140.6c3 3.5 6.5 5.3 10.5 5.3h66.9q5.25 0 6-3z',
			),
		),
		'label'             => __( 'Kaggle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'key'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M282.3 343.7L248.1 376.1C244.5 381.5 238.4 384 232 384H192V424C192 437.3 181.3 448 168 448H128V488C128 501.3 117.3 512 104 512H24C10.75 512 0 501.3 0 488V408C0 401.6 2.529 395.5 7.029 391L168.3 229.7C162.9 212.8 160 194.7 160 176C160 78.8 238.8 0 336 0C433.2 0 512 78.8 512 176C512 273.2 433.2 352 336 352C317.3 352 299.2 349.1 282.3 343.7zM376 176C398.1 176 416 158.1 416 136C416 113.9 398.1 96 376 96C353.9 96 336 113.9 336 136C336 158.1 353.9 176 376 176z',
			),
		),
		'label'             => __( 'Key', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'keybase'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M286.2 419a18 18 0 1 0 18 18 18 18 0 0 0 -18-18zm111.9-147.6c-9.5-14.62-39.37-52.45-87.26-73.71q-9.1-4.06-18.38-7.27a78.43 78.43 0 0 0 -47.88-104.1c-12.41-4.1-23.33-6-32.41-5.77-.6-2-1.89-11 9.4-35L198.7 32l-5.48 7.56c-8.69 12.06-16.92 23.55-24.34 34.89a51 51 0 0 0 -8.29-1.25c-41.53-2.45-39-2.33-41.06-2.33-50.61 0-50.75 52.12-50.75 45.88l-2.36 36.68c-1.61 27 19.75 50.21 47.63 51.85l8.93 .54a214 214 0 0 0 -46.29 35.54C14 304.7 14 374 14 429.8v33.64l23.32-29.8a148.6 148.6 0 0 0 14.56 37.56c5.78 10.13 14.87 9.45 19.64 7.33 4.21-1.87 10-6.92 3.75-20.11a178.3 178.3 0 0 1 -15.76-53.13l46.82-59.83-24.66 74.11c58.23-42.4 157.4-61.76 236.3-38.59 34.2 10.05 67.45 .69 84.74-23.84 .72-1 1.2-2.16 1.85-3.22a156.1 156.1 0 0 1 2.8 28.43c0 23.3-3.69 52.93-14.88 81.64-2.52 6.46 1.76 14.5 8.6 15.74 7.42 1.57 15.33-3.1 18.37-11.15C429 443 434 414 434 382.3c0-38.58-13-77.46-35.91-110.9zM142.4 128.6l-15.7-.93-1.39 21.79 13.13 .78a93 93 0 0 0 .32 19.57l-22.38-1.34a12.28 12.28 0 0 1 -11.76-12.79L107 119c1-12.17 13.87-11.27 13.26-11.32l29.11 1.73a144.4 144.4 0 0 0 -7 19.17zm148.4 172.2a10.51 10.51 0 0 1 -14.35-1.39l-9.68-11.49-34.42 27a8.09 8.09 0 0 1 -11.13-1.08l-15.78-18.64a7.38 7.38 0 0 1 1.34-10.34l34.57-27.18-14.14-16.74-17.09 13.45a7.75 7.75 0 0 1 -10.59-1s-3.72-4.42-3.8-4.53a7.38 7.38 0 0 1 1.37-10.34L214 225.2s-18.51-22-18.6-22.14a9.56 9.56 0 0 1 1.74-13.42 10.38 10.38 0 0 1 14.3 1.37l81.09 96.32a9.58 9.58 0 0 1 -1.74 13.44zM187.4 419a18 18 0 1 0 18 18 18 18 0 0 0 -18-18z',
			),
		),
		'label'             => __( 'Keybase', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'keyboard'                               => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 448H64c-35.35 0-64-28.65-64-64V128c0-35.35 28.65-64 64-64h448c35.35 0 64 28.65 64 64v256C576 419.3 547.3 448 512 448zM128 180v-40C128 133.4 122.6 128 116 128h-40C69.38 128 64 133.4 64 140v40C64 186.6 69.38 192 76 192h40C122.6 192 128 186.6 128 180zM224 180v-40C224 133.4 218.6 128 212 128h-40C165.4 128 160 133.4 160 140v40C160 186.6 165.4 192 172 192h40C218.6 192 224 186.6 224 180zM320 180v-40C320 133.4 314.6 128 308 128h-40C261.4 128 256 133.4 256 140v40C256 186.6 261.4 192 268 192h40C314.6 192 320 186.6 320 180zM416 180v-40C416 133.4 410.6 128 404 128h-40C357.4 128 352 133.4 352 140v40C352 186.6 357.4 192 364 192h40C410.6 192 416 186.6 416 180zM512 180v-40C512 133.4 506.6 128 500 128h-40C453.4 128 448 133.4 448 140v40C448 186.6 453.4 192 460 192h40C506.6 192 512 186.6 512 180zM128 276v-40C128 229.4 122.6 224 116 224h-40C69.38 224 64 229.4 64 236v40C64 282.6 69.38 288 76 288h40C122.6 288 128 282.6 128 276zM224 276v-40C224 229.4 218.6 224 212 224h-40C165.4 224 160 229.4 160 236v40C160 282.6 165.4 288 172 288h40C218.6 288 224 282.6 224 276zM320 276v-40C320 229.4 314.6 224 308 224h-40C261.4 224 256 229.4 256 236v40C256 282.6 261.4 288 268 288h40C314.6 288 320 282.6 320 276zM416 276v-40C416 229.4 410.6 224 404 224h-40C357.4 224 352 229.4 352 236v40C352 282.6 357.4 288 364 288h40C410.6 288 416 282.6 416 276zM512 276v-40C512 229.4 506.6 224 500 224h-40C453.4 224 448 229.4 448 236v40C448 282.6 453.4 288 460 288h40C506.6 288 512 282.6 512 276zM128 372v-40C128 325.4 122.6 320 116 320h-40C69.38 320 64 325.4 64 332v40C64 378.6 69.38 384 76 384h40C122.6 384 128 378.6 128 372zM416 372v-40C416 325.4 410.6 320 404 320h-232C165.4 320 160 325.4 160 332v40C160 378.6 165.4 384 172 384h232C410.6 384 416 378.6 416 372zM512 372v-40C512 325.4 506.6 320 500 320h-40C453.4 320 448 325.4 448 332v40C448 378.6 453.4 384 460 384h40C506.6 384 512 378.6 512 372z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 64H64C28.65 64 0 92.65 0 128v256c0 35.35 28.65 64 64 64h448c35.35 0 64-28.65 64-64V128C576 92.65 547.3 64 512 64zM528 384c0 8.822-7.178 16-16 16H64c-8.822 0-16-7.178-16-16V128c0-8.822 7.178-16 16-16h448c8.822 0 16 7.178 16 16V384zM140 152h-24c-6.656 0-12 5.344-12 12v24c0 6.656 5.344 12 12 12h24c6.656 0 12-5.344 12-12v-24C152 157.3 146.7 152 140 152zM196 200h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C184 194.7 189.3 200 196 200zM276 200h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C264 194.7 269.3 200 276 200zM356 200h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C344 194.7 349.3 200 356 200zM460 152h-24c-6.656 0-12 5.344-12 12v24c0 6.656 5.344 12 12 12h24c6.656 0 12-5.344 12-12v-24C472 157.3 466.7 152 460 152zM140 232h-24c-6.656 0-12 5.344-12 12v24c0 6.656 5.344 12 12 12h24c6.656 0 12-5.344 12-12v-24C152 237.3 146.7 232 140 232zM196 280h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C184 274.7 189.3 280 196 280zM276 280h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C264 274.7 269.3 280 276 280zM356 280h24c6.656 0 12-5.344 12-12v-24c0-6.656-5.344-12-12-12h-24c-6.656 0-12 5.344-12 12v24C344 274.7 349.3 280 356 280zM460 232h-24c-6.656 0-12 5.344-12 12v24c0 6.656 5.344 12 12 12h24c6.656 0 12-5.344 12-12v-24C472 237.3 466.7 232 460 232zM400 320h-224C167.1 320 160 327.1 160 336V352c0 8.875 7.125 16 16 16h224c8.875 0 16-7.125 16-16v-16C416 327.1 408.9 320 400 320z',
			),
		),
		'label'             => __( 'Keyboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'keycdn'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M63.8 409.3l60.5-59c32.1 42.8 71.1 66 126.6 67.4 30.5 .7 60.3-7 86.4-22.4 5.1 5.3 18.5 19.5 20.9 22-32.2 20.7-69.6 31.1-108.1 30.2-43.3-1.1-84.6-16.7-117.7-44.4 .3-.6-38.2 37.5-38.6 37.9 9.5 29.8-13.1 62.4-46.3 62.4C20.7 503.3 0 481.7 0 454.9c0-34.3 33.1-56.6 63.8-45.6zm354.9-252.4c19.1 31.3 29.6 67.4 28.7 104-1.1 44.8-19 87.5-48.6 121 .3 .3 23.8 25.2 24.1 25.5 9.6-1.3 19.2 2 25.9 9.1 11.3 12 10.9 30.9-1.1 42.4-12 11.3-30.9 10.9-42.4-1.1-6.7-7-9.4-16.8-7.6-26.3-24.9-26.6-44.4-47.2-44.4-47.2 42.7-34.1 63.3-79.6 64.4-124.2 .7-28.9-7.2-57.2-21.1-82.2l22.1-21zM104 53.1c6.7 7 9.4 16.8 7.6 26.3l45.9 48.1c-4.7 3.8-13.3 10.4-22.8 21.3-25.4 28.5-39.6 64.8-40.7 102.9-.7 28.9 6.1 57.2 20 82.4l-22 21.5C72.7 324 63.1 287.9 64.2 250.9c1-44.6 18.3-87.6 47.5-121.1l-25.3-26.4c-9.6 1.3-19.2-2-25.9-9.1-11.3-12-10.9-30.9 1.1-42.4C73.5 40.7 92.2 41 104 53.1zM464.9 8c26 0 47.1 22.4 47.1 48.3S490.9 104 464.9 104c-6.3 .1-14-1.1-15.9-1.8l-62.9 59.7c-32.7-43.6-76.7-65.9-126.9-67.2-30.5-.7-60.3 6.8-86.2 22.4l-21.1-22C184.1 74.3 221.5 64 260 64.9c43.3 1.1 84.6 16.7 117.7 44.6l41.1-38.6c-1.5-4.7-2.2-9.6-2.2-14.5C416.5 29.7 438.9 8 464.9 8zM256.7 113.4c5.5 0 10.9 .4 16.4 1.1 78.1 9.8 133.4 81.1 123.8 159.1-9.8 78.1-81.1 133.4-159.1 123.8-78.1-9.8-133.4-81.1-123.8-159.2 9.3-72.4 70.1-124.6 142.7-124.8zm-59 119.4c.6 22.7 12.2 41.8 32.4 52.2l-11 51.7h73.7l-11-51.7c20.1-10.9 32.1-29 32.4-52.2-.4-32.8-25.8-57.5-58.3-58.3-32.1 .8-57.3 24.8-58.2 58.3zM256 160',
			),
		),
		'label'             => __( 'KeyCDN', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'khanda'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M447.7 65.1c-6.25-3.5-14.29-2.351-19.29 3.024c-5.125 5.375-5.833 13.37-1.958 19.5c16.5 26.25 25.23 56.34 25.23 87.46c-.25 53.25-26.74 102.6-71.24 132.4l-76.62 53.35v-20.12l44.01-36.12c3.875-4.125 4.983-10.13 2.858-15.26L342.8 273c33.88-19.25 56.94-55.25 56.94-97c0-40.75-22.06-76.12-54.56-95.75l5.151-11.39c2.375-5.5 .9825-11.87-3.518-15.1L287.9 .0074l-59.05 52.77C224.4 57.02 222.1 63.37 225.2 68.87l5.203 11.32C197.1 99.81 175.9 135.2 175.9 175.1c0 41.75 23.08 77.75 56.95 97L224.1 290.2C222.9 295.4 223.9 301.2 227.9 305.5l43.1 36.11v19.91L195.2 308.1c-44.25-29.5-70.72-78.9-70.97-132.1c0-31.12 8.73-61.2 25.23-87.45C153.3 82.4 151.8 74.75 146.8 69.5C141.8 64.12 133.2 63.25 126.8 66.75C48.34 109.6 9.713 205.2 45.34 296c7 18 17.88 34.38 30.5 49l55.92 65.38c4.875 5.75 13.09 7.232 19.71 3.732l79.25-42.25l29.26 20.37l-47.09 32.75c-1.625-.375-3.125-1-4.1-1c-13.25 0-23.97 10.75-23.97 24s10.72 23.1 23.97 23.1c12.13 0 21.74-9.126 23.36-20.75l40.6-28.25v29.91c-9.375 5.625-15.97 15.37-15.97 27.12c0 17.62 14.37 31.1 31.1 31.1c17.63 0 31.1-14.37 31.1-31.1c0-11.75-6.656-21.52-16.03-27.14v-30.12l40.87 28.48c1.625 11.63 11.23 20.75 23.35 20.75c13.25 0 23.98-10.74 23.98-23.99s-10.73-24-23.98-24c-1.875 0-3.375 .625-5 1l-47.09-32.75l29.25-20.37l79.26 42.25c6.625 3.5 14.84 2.018 19.71-3.732l52.51-61.27c18.88-22 33.1-47.49 41.25-75.61C559.6 189.9 521.5 106.2 447.7 65.1zM351.8 176c0 22.25-11.45 41.91-28.82 53.41l-5.613-12.43c-8.75-24.5-8.811-51.11-.061-75.61l7.748-17.12C341.2 135.9 351.8 154.6 351.8 176zM223.8 176c0-21.38 10.67-40.16 26.67-51.79l7.848 17.17c8.75 24.63 8.747 51.11-.0032 75.61L252.7 229.4C235.4 217.9 223.8 198.2 223.8 176z',
			),
		),
		'label'             => __( 'Khanda', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'kickstarter'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 480H48c-26.4 0-48-21.6-48-48V80c0-26.4 21.6-48 48-48h352c26.4 0 48 21.6 48 48v352c0 26.4-21.6 48-48 48zM199.6 178.5c0-30.7-17.6-45.1-39.7-45.1-25.8 0-40 19.8-40 44.5v154.8c0 25.8 13.7 45.6 40.5 45.6 21.5 0 39.2-14 39.2-45.6v-41.8l60.6 75.7c12.3 14.9 39 16.8 55.8 0 14.6-15.1 14.8-36.8 4-50.4l-49.1-62.8 40.5-58.7c9.4-13.5 9.5-34.5-5.6-49.1-16.4-15.9-44.6-17.3-61.4 7l-44.8 64.7v-38.8z',
			),
		),
		'label'             => __( 'Kickstarter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'kickstarter-k'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M147.3 114.4c0-56.2-32.5-82.4-73.4-82.4C26.2 32 0 68.2 0 113.4v283c0 47.3 25.3 83.4 74.9 83.4 39.8 0 72.4-25.6 72.4-83.4v-76.5l112.1 138.3c22.7 27.2 72.1 30.7 103.2 0 27-27.6 27.3-67.4 7.4-92.2l-90.8-114.8 74.9-107.4c17.4-24.7 17.5-63.1-10.4-89.8-30.3-29-82.4-31.6-113.6 12.8L147.3 185v-70.6z',
			),
		),
		'label'             => __( 'Kickstarter K', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'kip-sign'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M182.5 224H352C369.7 224 384 238.3 384 256C384 273.7 369.7 288 352 288H182.5L340.8 423.7C354.2 435.2 355.8 455.4 344.3 468.8C332.8 482.2 312.6 483.8 299.2 472.3L128 325.6V448C128 465.7 113.7 480 96 480C78.33 480 64 465.7 64 448V288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H64V64C64 46.33 78.33 32 96 32C113.7 32 128 46.33 128 64V186.4L299.2 39.7C312.6 28.2 332.8 29.76 344.3 43.18C355.8 56.59 354.2 76.8 340.8 88.3L182.5 224z',
			),
		),
		'label'             => __( 'Kip Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'kit-medical'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M64 32h32v448H64c-35.35 0-64-28.66-64-64V96C0 60.66 28.65 32 64 32zM128 32h320v448H128V32zM176 282c0 8.835 7.164 16 16 16h53.1V352c0 8.836 7.165 16 16 16h52c8.836 0 16-7.164 16-16V298H384c8.836 0 16-7.165 16-16v-52c0-8.837-7.164-16-16-16h-54V160c0-8.836-7.164-16-16-16h-52c-8.835 0-16 7.164-16 16v54H192c-8.836 0-16 7.163-16 16V282zM512 32h-32v448h32c35.35 0 64-28.66 64-64V96C576 60.66 547.3 32 512 32z',
			),
		),
		'label'             => __( 'Kit Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'kitchen-set'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M80 144C80 108.7 108.7 80 144 80C179.3 80 208 108.7 208 144C208 179.3 179.3 208 144 208C108.7 208 80 179.3 80 144zM284.4 176C269.9 240.1 212.5 288 144 288C64.47 288 0 223.5 0 144C0 64.47 64.47 0 144 0C212.5 0 269.9 47.87 284.4 112H356.2C365 102.2 377.8 96 392 96H496C522.5 96 544 117.5 544 144C544 170.5 522.5 192 496 192H392C377.8 192 365 185.8 356.2 176H284.4zM144 48C90.98 48 48 90.98 48 144C48 197 90.98 240 144 240C197 240 240 197 240 144C240 90.98 197 48 144 48zM424 264V272H520C533.3 272 544 282.7 544 296C544 309.3 533.3 320 520 320H280C266.7 320 256 309.3 256 296C256 282.7 266.7 272 280 272H376V264C376 250.7 386.7 240 400 240C413.3 240 424 250.7 424 264zM288 464V352H512V464C512 490.5 490.5 512 464 512H336C309.5 512 288 490.5 288 464zM176 320C202.5 320 224 341.5 224 368C224 394.5 202.5 416 176 416H160C160 433.7 145.7 448 128 448H64C46.33 448 32 433.7 32 416V336C32 327.2 39.16 320 48 320H176zM192 368C192 359.2 184.8 352 176 352H160V384H176C184.8 384 192 376.8 192 368zM200 464C213.3 464 224 474.7 224 488C224 501.3 213.3 512 200 512H24C10.75 512 0 501.3 0 488C0 474.7 10.75 464 24 464H200z',
			),
		),
		'label'             => __( 'Kitchen Set', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'kiwi-bird'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 405.1V456C256 469.3 245.3 480 232 480C218.7 480 208 469.3 208 456V415.3C202.7 415.8 197.4 416 192 416C175.4 416 159.3 413.9 144 409.1V456C144 469.3 133.3 480 120 480C106.7 480 96 469.3 96 456V390.3C38.61 357.1 0 295.1 0 224C0 117.1 85.96 32 192 32C228.3 32 262.3 42.08 291.2 59.6C322.4 78.44 355.9 96 392.3 96H448C518.7 96 576 153.3 576 224V464C576 470.1 571.5 477.2 564.8 479.3C558.2 481.4 550.9 478.9 546.9 473.2L461.6 351.3C457.1 351.8 452.6 352 448 352H392.3C355.9 352 322.4 369.6 291.2 388.4C280.2 395.1 268.4 400.7 256 405.1zM448 248C461.3 248 472 237.3 472 224C472 210.7 461.3 200 448 200C434.7 200 424 210.7 424 224C424 237.3 434.7 248 448 248z',
			),
		),
		'label'             => __( 'Kiwi Bird', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'korvue'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 446,
				'height' => 512,
				'path'   => 'M386.5 34h-327C26.8 34 0 60.8 0 93.5v327.1C0 453.2 26.8 480 59.5 480h327.1c33 0 59.5-26.8 59.5-59.5v-327C446 60.8 419.2 34 386.5 34zM87.1 120.8h96v116l61.8-116h110.9l-81.2 132H87.1v-132zm161.8 272.1l-65.7-113.6v113.6h-96V262.1h191.5l88.6 130.8H248.9z',
			),
		),
		'label'             => __( 'KORVUE', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'l'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 448c0 17.67-14.31 32-32 32H64c-17.69 0-32-14.33-32-32v-384C32 46.34 46.31 32.01 64 32.01S96 46.34 96 64.01v352h192C305.7 416 320 430.3 320 448z',
			),
		),
		'label'             => __( 'L', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'land-mine-on'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M312 168C312 181.3 301.3 192 288 192C274.7 192 264 181.3 264 168V24C264 10.75 274.7 0 288 0C301.3 0 312 10.75 312 24V168zM160 320C160 302.3 174.3 288 192 288H384C401.7 288 416 302.3 416 320V352H160V320zM82.74 410.5C90.87 394.3 107.5 384 125.7 384H450.3C468.5 384 485.1 394.3 493.3 410.5L520.8 465.7C531.5 486.1 516 512 492.2 512H83.78C59.99 512 44.52 486.1 55.16 465.7L82.74 410.5zM4.269 138.3C11.81 127.4 26.77 124.7 37.66 132.3L141.7 204.3C152.6 211.8 155.3 226.8 147.7 237.7C140.2 248.6 125.2 251.3 114.3 243.7L10.34 171.7C-.5568 164.2-3.275 149.2 4.269 138.3V138.3zM538.3 132.3C549.2 124.7 564.2 127.4 571.7 138.3C579.3 149.2 576.6 164.2 565.7 171.7L461.7 243.7C450.8 251.3 435.8 248.6 428.3 237.7C420.7 226.8 423.4 211.8 434.3 204.3L538.3 132.3z',
			),
		),
		'label'             => __( 'Land Mine On', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'landmark'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M240.1 4.216C249.1-1.405 262-1.405 271.9 4.216L443.6 102.4L447.1 104V104.9L495.9 132.2C508.5 139.4 514.6 154.2 510.9 168.2C507.2 182.2 494.5 192 479.1 192H31.1C17.49 192 4.795 182.2 1.071 168.2C-2.653 154.2 3.524 139.4 16.12 132.2L63.1 104.9V104L68.37 102.4L240.1 4.216zM64 224H128V416H168V224H232V416H280V224H344V416H384V224H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H32C17.9 512 5.46 502.8 1.373 489.3C-2.713 475.8 2.517 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.41 420.6 64 420.3V224z',
			),
		),
		'label'             => __( 'Landmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'landmark-dome'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M264 0C277.3 0 288 10.75 288 24V34.65C368.4 48.14 431.9 111.6 445.3 192H448C465.7 192 480 206.3 480 224C480 241.7 465.7 256 448 256H63.1C46.33 256 31.1 241.7 31.1 224C31.1 206.3 46.33 192 63.1 192H66.65C80.14 111.6 143.6 48.14 223.1 34.65V24C223.1 10.75 234.7 0 247.1 0L264 0zM63.1 288H127.1V416H167.1V288H231.1V416H280V288H344V416H384V288H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H31.1C17.9 512 5.458 502.8 1.372 489.3C-2.715 475.8 2.515 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.41 420.6 63.1 420.3V288z',
			),
		),
		'label'             => __( 'Landmark Dome', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'landmark-flag'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 0C360.8 0 368 7.164 368 16V80C368 88.84 360.8 96 352 96H272V128H464C481.7 128 496 142.3 496 160C496 177.7 481.7 192 464 192H47.1C30.33 192 15.1 177.7 15.1 160C15.1 142.3 30.33 128 47.1 128H239.1V16C239.1 7.164 247.2 0 255.1 0H352zM63.1 224H127.1V416H167.1V224H231.1V416H280V224H344V416H384V224H448V420.3C448.6 420.6 449.2 420.1 449.8 421.4L497.8 453.4C509.5 461.2 514.7 475.8 510.6 489.3C506.5 502.8 494.1 512 480 512H31.1C17.9 512 5.458 502.8 1.372 489.3C-2.715 475.8 2.515 461.2 14.25 453.4L62.25 421.4C62.82 420.1 63.4 420.6 63.1 420.3V224z',
			),
		),
		'label'             => __( 'Landmark Flag', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'language'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M448 164C459 164 468 172.1 468 184V188H528C539 188 548 196.1 548 208C548 219 539 228 528 228H526L524.4 232.5C515.5 256.1 501.9 279.1 484.7 297.9C485.6 298.4 486.5 298.1 487.4 299.5L506.3 310.8C515.8 316.5 518.8 328.8 513.1 338.3C507.5 347.8 495.2 350.8 485.7 345.1L466.8 333.8C462.4 331.1 457.1 328.3 453.7 325.3C443.2 332.8 431.8 339.3 419.8 344.7L416.1 346.3C406 350.8 394.2 346.2 389.7 336.1C385.2 326 389.8 314.2 399.9 309.7L403.5 308.1C409.9 305.2 416.1 301.1 422 298.3L409.9 286.1C402 278.3 402 265.7 409.9 257.9C417.7 250 430.3 250 438.1 257.9L452.7 272.4L453.3 272.1C465.7 259.9 475.8 244.7 483.1 227.1H376C364.1 227.1 356 219 356 207.1C356 196.1 364.1 187.1 376 187.1H428V183.1C428 172.1 436.1 163.1 448 163.1L448 164zM160 233.2L179 276H140.1L160 233.2zM0 128C0 92.65 28.65 64 64 64H576C611.3 64 640 92.65 640 128V384C640 419.3 611.3 448 576 448H64C28.65 448 0 419.3 0 384V128zM320 384H576V128H320V384zM178.3 175.9C175.1 168.7 167.9 164 160 164C152.1 164 144.9 168.7 141.7 175.9L77.72 319.9C73.24 329.1 77.78 341.8 87.88 346.3C97.97 350.8 109.8 346.2 114.3 336.1L123.2 315.1H196.8L205.7 336.1C210.2 346.2 222 350.8 232.1 346.3C242.2 341.8 246.8 329.1 242.3 319.9L178.3 175.9z',
			),
		),
		'label'             => __( 'Language', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'laptop'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M128 96h384v256h64v-272c0-26.38-21.62-48-48-48h-416c-26.38 0-48 21.62-48 48V352h64V96zM624 383.1h-608c-8.75 0-16 7.25-16 16v16c0 35.25 28.75 64 64 64h512c35.25 0 64-28.75 64-64v-16C640 391.2 632.8 383.1 624 383.1z',
			),
		),
		'label'             => __( 'Laptop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'laptop-code'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M128 96h384v256h64V80C576 53.63 554.4 32 528 32h-416C85.63 32 64 53.63 64 80V352h64V96zM624 384h-608C7.25 384 0 391.3 0 400V416c0 35.25 28.75 64 64 64h512c35.25 0 64-28.75 64-64v-16C640 391.3 632.8 384 624 384zM365.9 286.2C369.8 290.1 374.9 292 380 292s10.23-1.938 14.14-5.844l48-48c7.812-7.813 7.812-20.5 0-28.31l-48-48c-7.812-7.813-20.47-7.813-28.28 0c-7.812 7.813-7.812 20.5 0 28.31l33.86 33.84l-33.86 33.84C358 265.7 358 278.4 365.9 286.2zM274.1 161.9c-7.812-7.813-20.47-7.813-28.28 0l-48 48c-7.812 7.813-7.812 20.5 0 28.31l48 48C249.8 290.1 254.9 292 260 292s10.23-1.938 14.14-5.844c7.812-7.813 7.812-20.5 0-28.31L240.3 224l33.86-33.84C281.1 182.4 281.1 169.7 274.1 161.9z',
			),
		),
		'label'             => __( 'Laptop Code', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'laptop-file'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 96C192 113.7 206.3 128 224 128H320V192H288C243.8 192 208 227.8 208 272V384C187.1 384 169.3 397.4 162.7 416H48C21.49 416 0 394.5 0 368V48C0 21.49 21.49 0 48 0H192V96zM240 272C240 245.5 261.5 224 288 224H544C570.5 224 592 245.5 592 272V416H624C632.8 416 640 423.2 640 432V448C640 483.3 611.3 512 576 512H256C220.7 512 192 483.3 192 448V432C192 423.2 199.2 416 208 416H240V272zM304 288V416H528V288H304zM320 96H224V0L320 96z',
			),
		),
		'label'             => __( 'Laptop File', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education', 'science-and-technology' ),
	),
	'laptop-medical'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M624 384h-608C7.25 384 0 391.3 0 400V416c0 35.25 28.75 64 64 64h512c35.25 0 64-28.75 64-64v-16C640 391.3 632.8 384 624 384zM128 96h384v256h64V80C576 53.63 554.4 32 528 32h-416C85.63 32 64 53.63 64 80V352h64V96zM304 336h32c8.801 0 16-7.201 16-16V272h48C408.8 272 416 264.8 416 256V224c0-8.801-7.199-16-16-16H352V160c0-8.801-7.199-16-16-16h-32C295.2 144 288 151.2 288 160v48H240C231.2 208 224 215.2 224 224v32c0 8.799 7.199 16 16 16H288V320C288 328.8 295.2 336 304 336z',
			),
		),
		'label'             => __( 'Laptop Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'laravel'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M504.4 115.8a5.72 5.72 0 0 0 -.28-.68 8.52 8.52 0 0 0 -.53-1.25 6 6 0 0 0 -.54-.71 9.36 9.36 0 0 0 -.72-.94c-.23-.22-.52-.4-.77-.6a8.84 8.84 0 0 0 -.9-.68L404.4 55.55a8 8 0 0 0 -8 0L300.1 111h0a8.07 8.07 0 0 0 -.88 .69 7.68 7.68 0 0 0 -.78 .6 8.23 8.23 0 0 0 -.72 .93c-.17 .24-.39 .45-.54 .71a9.7 9.7 0 0 0 -.52 1.25c-.08 .23-.21 .44-.28 .68a8.08 8.08 0 0 0 -.28 2.08V223.2l-80.22 46.19V63.44a7.8 7.8 0 0 0 -.28-2.09c-.06-.24-.2-.45-.28-.68a8.35 8.35 0 0 0 -.52-1.24c-.14-.26-.37-.47-.54-.72a9.36 9.36 0 0 0 -.72-.94 9.46 9.46 0 0 0 -.78-.6 9.8 9.8 0 0 0 -.88-.68h0L115.6 1.07a8 8 0 0 0 -8 0L11.34 56.49h0a6.52 6.52 0 0 0 -.88 .69 7.81 7.81 0 0 0 -.79 .6 8.15 8.15 0 0 0 -.71 .93c-.18 .25-.4 .46-.55 .72a7.88 7.88 0 0 0 -.51 1.24 6.46 6.46 0 0 0 -.29 .67 8.18 8.18 0 0 0 -.28 2.1v329.7a8 8 0 0 0 4 6.95l192.5 110.8a8.83 8.83 0 0 0 1.33 .54c.21 .08 .41 .2 .63 .26a7.92 7.92 0 0 0 4.1 0c.2-.05 .37-.16 .55-.22a8.6 8.6 0 0 0 1.4-.58L404.4 400.1a8 8 0 0 0 4-6.95V287.9l92.24-53.11a8 8 0 0 0 4-7V117.9A8.63 8.63 0 0 0 504.4 115.8zM111.6 17.28h0l80.19 46.15-80.2 46.18L31.41 63.44zm88.25 60V278.6l-46.53 26.79-33.69 19.4V123.5l46.53-26.79zm0 412.8L23.37 388.5V77.32L57.06 96.7l46.52 26.8V338.7a6.94 6.94 0 0 0 .12 .9 8 8 0 0 0 .16 1.18h0a5.92 5.92 0 0 0 .38 .9 6.38 6.38 0 0 0 .42 1v0a8.54 8.54 0 0 0 .6 .78 7.62 7.62 0 0 0 .66 .84l0 0c.23 .22 .52 .38 .77 .58a8.93 8.93 0 0 0 .86 .66l0 0 0 0 92.19 52.18zm8-106.2-80.06-45.32 84.09-48.41 92.26-53.11 80.13 46.13-58.8 33.56zm184.5 4.57L215.9 490.1V397.8L346.6 323.2l45.77-26.15zm0-119.1L358.7 250l-46.53-26.79V131.8l33.69 19.4L392.4 178zm8-105.3-80.2-46.17 80.2-46.16 80.18 46.15zm8 105.3V178L455 151.2l33.68-19.4v91.39h0z',
			),
		),
		'label'             => __( 'Laravel', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'lari-sign'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M144 32C161.7 32 176 46.33 176 64V96.66C181.3 96.22 186.6 96 192 96C197.4 96 202.7 96.22 208 96.66V64C208 46.33 222.3 32 240 32C257.7 32 272 46.33 272 64V113.4C326.9 138.6 367.8 188.9 380.2 249.6C383.7 266.1 372.5 283.8 355.2 287.4C337.8 290.9 320.1 279.7 317.4 262.4C311.4 232.5 294.9 206.4 272 188.1V256C272 273.7 257.7 288 240 288C222.3 288 208 273.7 208 256V160.1C202.8 160.3 197.4 160 192 160C186.6 160 181.2 160.3 176 160.1V256C176 273.7 161.7 288 144 288C126.3 288 112 273.7 112 256V188.1C82.74 211.5 64 247.6 64 288C64 358.7 121.3 416 192 416H352C369.7 416 384 430.3 384 448C384 465.7 369.7 480 352 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H48.89C18.49 382 0 337.2 0 288C0 210.5 45.9 143.7 112 113.4V64C112 46.33 126.3 32 144 32V32z',
			),
		),
		'label'             => __( 'Lari Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'lastfm'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M225.8 367.1l-18.8-51s-30.5 34-76.2 34c-40.5 0-69.2-35.2-69.2-91.5 0-72.1 36.4-97.9 72.1-97.9 66.5 0 74.8 53.3 100.9 134.9 18.8 56.9 54 102.6 155.4 102.6 72.7 0 122-22.3 122-80.9 0-72.9-62.7-80.6-115-92.1-25.8-5.9-33.4-16.4-33.4-34 0-19.9 15.8-31.7 41.6-31.7 28.2 0 43.4 10.6 45.7 35.8l58.6-7c-4.7-52.8-41.1-74.5-100.9-74.5-52.8 0-104.4 19.9-104.4 83.9 0 39.9 19.4 65.1 68 76.8 44.9 10.6 79.8 13.8 79.8 45.7 0 21.7-21.1 30.5-61 30.5-59.2 0-83.9-31.1-97.9-73.9-32-96.8-43.6-163-161.3-163C45.7 113.8 0 168.3 0 261c0 89.1 45.7 137.2 127.9 137.2 66.2 0 97.9-31.1 97.9-31.1z',
			),
		),
		'label'             => __( 'last.fm', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'lastfm-square'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-92.2 312.9c-63.4 0-85.4-28.6-97.1-64.1-16.3-51-21.5-84.3-63-84.3-22.4 0-45.1 16.1-45.1 61.2 0 35.2 18 57.2 43.3 57.2 28.6 0 47.6-21.3 47.6-21.3l11.7 31.9s-19.8 19.4-61.2 19.4c-51.3 0-79.9-30.1-79.9-85.8 0-57.9 28.6-92 82.5-92 73.5 0 80.8 41.4 100.8 101.9 8.8 26.8 24.2 46.2 61.2 46.2 24.9 0 38.1-5.5 38.1-19.1 0-19.9-21.8-22-49.9-28.6-30.4-7.3-42.5-23.1-42.5-48 0-40 32.3-52.4 65.2-52.4 37.4 0 60.1 13.6 63 46.6l-36.7 4.4c-1.5-15.8-11-22.4-28.6-22.4-16.1 0-26 7.3-26 19.8 0 11 4.8 17.6 20.9 21.3 32.7 7.1 71.8 12 71.8 57.5 .1 36.7-30.7 50.6-76.1 50.6z',
			),
		),
		'label'             => __( 'last.fm Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'layer-group'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M232.5 5.171C247.4-1.718 264.6-1.718 279.5 5.171L498.1 106.2C506.6 110.1 512 118.6 512 127.1C512 137.3 506.6 145.8 498.1 149.8L279.5 250.8C264.6 257.7 247.4 257.7 232.5 250.8L13.93 149.8C5.438 145.8 0 137.3 0 127.1C0 118.6 5.437 110.1 13.93 106.2L232.5 5.171zM498.1 234.2C506.6 238.1 512 246.6 512 255.1C512 265.3 506.6 273.8 498.1 277.8L279.5 378.8C264.6 385.7 247.4 385.7 232.5 378.8L13.93 277.8C5.438 273.8 0 265.3 0 255.1C0 246.6 5.437 238.1 13.93 234.2L67.13 209.6L219.1 279.8C242.5 290.7 269.5 290.7 292.9 279.8L444.9 209.6L498.1 234.2zM292.9 407.8L444.9 337.6L498.1 362.2C506.6 366.1 512 374.6 512 383.1C512 393.3 506.6 401.8 498.1 405.8L279.5 506.8C264.6 513.7 247.4 513.7 232.5 506.8L13.93 405.8C5.438 401.8 0 393.3 0 383.1C0 374.6 5.437 366.1 13.93 362.2L67.13 337.6L219.1 407.8C242.5 418.7 269.5 418.7 292.9 407.8V407.8z',
			),
		),
		'label'             => __( 'Layer Group', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'leaf'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 165.4c0 127.9-70.05 235.3-175.3 270.1c-20.04 7.938-41.83 12.46-64.69 12.46c-64.9 0-125.2-36.51-155.7-94.47c-54.13 49.93-68.71 107-68.96 108.1C44.72 472.6 34.87 480 24.02 480c-1.844 0-3.727-.2187-5.602-.6562c-12.89-3.098-20.84-16.08-17.75-28.96c9.598-39.5 90.47-226.4 335.3-226.4C344.8 224 352 216.8 352 208S344.8 192 336 192C228.6 192 151 226.6 96.29 267.6c.1934-10.82 1.242-21.84 3.535-33.05c13.47-65.81 66.04-119 131.4-134.2c28.33-6.562 55.68-6.013 80.93-.0054c56 13.32 118.2-7.412 149.3-61.24c5.664-9.828 20.02-9.516 24.66 .8282C502.7 76.76 512 121.9 512 165.4z',
			),
		),
		'label'             => __( 'Leaf', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'leanpub'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M386.5 111.5l15.1 248.1-10.98-.275c-36.23-.824-71.64 8.783-102.7 27.1-31.02-19.21-66.42-27.1-102.7-27.1-45.56 0-82.07 10.7-123.5 27.72L93.12 129.6c28.55-11.8 61.48-18.11 92.23-18.11 41.17 0 73.84 13.18 102.7 42.54 27.72-28.27 59.01-41.72 98.54-42.54zM569.1 448c-25.53 0-47.49-5.215-70.54-15.65-34.31-15.65-69.99-24.98-107.9-24.98-38.98 0-74.93 12.9-102.7 40.62-27.72-27.72-63.68-40.62-102.7-40.62-37.88 0-73.56 9.333-107.9 24.98C55.24 442.2 32.73 448 8.303 448H6.93L49.47 98.86C88.73 76.63 136.5 64 181.8 64 218.8 64 256.1 71.68 288 93.1 319 71.68 357.2 64 394.2 64c45.29 0 93.05 12.63 132.3 34.86L569.1 448zm-43.37-44.74l-34.04-280.2c-30.74-13.1-67.25-21.41-101-21.41-38.43 0-74.39 12.08-102.7 38.7-28.27-26.63-64.23-38.7-102.7-38.7-33.76 0-70.27 7.411-101 21.41L50.3 403.3c47.21-19.49 82.89-33.49 135-33.49 37.6 0 70.82 9.606 102.7 29.64 31.84-20.04 65.05-29.64 102.7-29.64 52.15 0 87.83 13.1 135 33.49z',
			),
		),
		'label'             => __( 'Leanpub', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'left-long'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 256C512 273.7 497.7 288 480 288H160.1l0 72c0 9.547-5.66 18.19-14.42 22c-8.754 3.812-18.95 2.077-25.94-4.407l-112.1-104c-10.24-9.5-10.24-25.69 0-35.19l112.1-104c6.992-6.484 17.18-8.218 25.94-4.406C154.4 133.8 160.1 142.5 160.1 151.1L160.1 224H480C497.7 224 512 238.3 512 256z',
			),
		),
		'label'             => __( 'Left Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'left-right'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M503.1 273.6l-112 104c-6.984 6.484-17.17 8.219-25.92 4.406s-14.41-12.45-14.41-22v-56l-192 .001V360c0 9.547-5.656 18.19-14.41 22c-8.75 3.812-18.94 2.078-25.92-4.406l-112-104c-9.781-9.094-9.781-26.09 0-35.19l112-104c6.984-6.484 17.17-8.219 25.92-4.406C154 133.8 159.7 142.5 159.7 152v55.1l192-.001v-56c0-9.547 5.656-18.19 14.41-22s18.94-2.078 25.92 4.406l112 104C513.8 247.5 513.8 264.5 503.1 273.6z',
			),
		),
		'label'             => __( 'Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'lemon'                                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M427.9 52.1c-20.13-20.23-47.58-25.27-65.63-14.77c-51.63 30.08-158.6-46.49-281 75.91c-122.4 122.4-45.83 229.4-75.91 281c-10.5 18.05-5.471 45.5 14.77 65.63c20.13 20.24 47.58 25.27 65.63 14.77c51.63-30.08 158.6 46.49 281-75.91c122.4-122.4 45.83-229.4 75.91-281C453.2 99.69 448.1 72.23 427.9 52.1zM211.9 127.5C167.6 138.7 106.7 199.6 95.53 243.9C93.69 251.2 87.19 255.1 79.1 255.1c-1.281 0-2.594-.1562-3.906-.4687C67.53 253.4 62.34 244.7 64.47 236.1c14.16-56.28 83.31-125.4 139.6-139.6c8.656-2.031 17.25 3.062 19.44 11.62C225.7 116.7 220.5 125.3 211.9 127.5z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M439.9 144.6c15.34-26.38 8.372-62.41-16.96-87.62c-25.21-25.32-61.22-32.26-87.61-16.95c-9.044 5.218-27.15 3.702-48.08 1.968c-50.78-4.327-127.4-10.73-207.6 69.56C-.6501 191.9 5.801 268.5 10.07 319.3c1.749 20.96 3.28 39.07-1.984 48.08c-15.35 26.4-8.357 62.45 16.92 87.57c16.26 16.37 37.05 25.09 56.83 25.09c10.89 0 21.46-2.64 30.83-8.092c9.013-5.249 27.12-3.718 48.08-1.968c50.69 4.233 127.4 10.7 207.6-69.56c80.27-80.28 73.82-156.9 69.56-207.7C436.2 171.8 434.7 153.7 439.9 144.6zM398.4 120.5c-12.87 22.09-10.67 48.41-8.326 76.25c4.155 49.3 8.841 105.2-55.67 169.7c-64.53 64.49-120.5 59.78-169.7 55.68c-27.85-2.328-54.12-4.53-76.26 8.311c-6.139 3.64-19.17 1.031-29.58-9.451c-10.39-10.33-12.95-23.35-9.372-29.49c12.87-22.09 10.67-48.41 8.326-76.25C53.72 265.1 49.04 210.1 113.5 145.5c48.27-48.27 91.71-57.8 131.2-57.8c13.28 0 26.12 1.078 38.52 2.125c27.9 2.359 54.17 4.561 76.26-8.311c6.123-3.577 19.18-1.031 29.49 9.357C399.4 101.2 402 114.4 398.4 120.5zM239.5 124.1c2.156 8.561-3.062 17.25-11.62 19.43C183.6 154.7 122.7 215.6 111.6 259.9C109.7 267.1 103.2 271.1 96.05 271.1c-1.281 0-2.593-.1562-3.905-.4687C83.58 269.3 78.4 260.6 80.52 252.1C94.67 195.8 163.8 126.7 220.1 112.5C228.8 110.4 237.3 115.5 239.5 124.1z',
			),
		),
		'label'             => __( 'Lemon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'less'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M612.7 219c0-20.5 3.2-32.6 3.2-54.6 0-34.2-12.6-45.2-40.5-45.2h-20.5v24.2h6.3c14.2 0 17.3 4.7 17.3 22.1 0 16.3-1.6 32.6-1.6 51.5 0 24.2 7.9 33.6 23.6 37.3v1.6c-15.8 3.7-23.6 13.1-23.6 37.3 0 18.9 1.6 34.2 1.6 51.5 0 17.9-3.7 22.6-17.3 22.6v.5h-6.3V393h20.5c27.8 0 40.5-11 40.5-45.2 0-22.6-3.2-34.2-3.2-54.6 0-11 6.8-22.6 27.3-23.6v-27.3c-20.5-.7-27.3-12.3-27.3-23.3zm-105.6 32c-15.8-6.3-30.5-10-30.5-20.5 0-7.9 6.3-12.6 17.9-12.6s22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-21 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51s-22.5-41-43-47.8zm-358.9 59.4c-3.7 0-8.4-3.2-8.4-13.1V119.1H65.2c-28.4 0-41 11-41 45.2 0 22.6 3.2 35.2 3.2 54.6 0 11-6.8 22.6-27.3 23.6v27.3c20.5 .5 27.3 12.1 27.3 23.1 0 19.4-3.2 31-3.2 53.6 0 34.2 12.6 45.2 40.5 45.2h20.5v-24.2h-6.3c-13.1 0-17.3-5.3-17.3-22.6s1.6-32.1 1.6-51.5c0-24.2-7.9-33.6-23.6-37.3v-1.6c15.8-3.7 23.6-13.1 23.6-37.3 0-18.9-1.6-34.2-1.6-51.5s3.7-22.1 17.3-22.1H93v150.8c0 32.1 11 53.1 43.1 53.1 10 0 17.9-1.6 23.6-3.7l-5.3-34.2c-3.1 .8-4.6 .8-6.2 .8zM379.9 251c-16.3-6.3-31-10-31-20.5 0-7.9 6.3-12.6 17.9-12.6 11.6 0 22.1 4.7 33.6 13.1l21-27.8c-13.1-10-31-20.5-55.2-20.5-35.7 0-59.9 20.5-59.9 49.4 0 25.7 22.6 38.9 41.5 46.2 16.3 6.3 32.1 11.6 32.1 22.1 0 7.9-6.3 13.1-20.5 13.1-13.1 0-26.3-5.3-40.5-16.3l-20.5 30.5c15.8 13.1 39.9 22.1 59.9 22.1 42 0 64.6-22.1 64.6-51 .1-28.9-22.5-41-43-47.8zm-155-68.8c-38.4 0-75.1 32.1-74.1 82.5 0 52 34.2 82.5 79.3 82.5 18.9 0 39.9-6.8 56.2-17.9l-15.8-27.8c-11.6 6.8-22.6 10-34.2 10-21 0-37.3-10-41.5-34.2H290c.5-3.7 1.6-11 1.6-19.4 .6-42.6-22.6-75.7-66.7-75.7zm-30 66.2c3.2-21 15.8-31 30.5-31 18.9 0 26.3 13.1 26.3 31h-56.8z',
			),
		),
		'label'             => __( 'Less', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'less-than'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M351.1 448c-4.797 0-9.688-1.094-14.28-3.375l-320-160C6.844 279.2 0 268.1 0 256c0-12.13 6.844-23.18 17.69-28.62l320-160c15.88-7.875 35.05-1.5 42.94 14.31c7.906 15.81 1.5 35.03-14.31 42.94L103.5 256l262.8 131.4c15.81 7.906 22.22 27.12 14.31 42.94C375 441.5 363.7 448 351.1 448z',
			),
		),
		'label'             => __( 'Less Than', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'less-than-equal'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M52.11 221.7l320 128C376 351.3 380 352 383.1 352c12.7 0 24.72-7.594 29.73-20.12c6.562-16.41-1.422-35.03-17.83-41.59L150.2 192l245.7-98.28c16.41-6.562 24.39-25.19 17.83-41.59S388.6 27.68 372.1 34.21l-320 128.1C39.97 167.2 32 178.9 32 192S39.97 216.8 52.11 221.7zM416 416H32c-17.67 0-32 14.31-32 31.1S14.33 480 32 480h384c17.67 0 32-14.31 32-32S433.7 416 416 416z',
			),
		),
		'label'             => __( 'Less Than Equal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'life-ring'                              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M470.6 425.4C483.1 437.9 483.1 458.1 470.6 470.6C458.1 483.1 437.9 483.1 425.4 470.6L412.1 458.2C369.6 491.9 315.2 512 255.1 512C196.8 512 142.4 491.9 99.02 458.2L86.63 470.6C74.13 483.1 53.87 483.1 41.37 470.6C28.88 458.1 28.88 437.9 41.37 425.4L53.76 412.1C20.07 369.6 0 315.2 0 255.1C0 196.8 20.07 142.4 53.76 99.02L41.37 86.63C28.88 74.13 28.88 53.87 41.37 41.37C53.87 28.88 74.13 28.88 86.63 41.37L99.02 53.76C142.4 20.07 196.8 0 255.1 0C315.2 0 369.6 20.07 412.1 53.76L425.4 41.37C437.9 28.88 458.1 28.88 470.6 41.37C483.1 53.87 483.1 74.13 470.6 86.63L458.2 99.02C491.9 142.4 512 196.8 512 255.1C512 315.2 491.9 369.6 458.2 412.1L470.6 425.4zM309.3 354.5C293.4 363.1 275.3 368 255.1 368C236.7 368 218.6 363.1 202.7 354.5L144.8 412.5C176.1 434.9 214.5 448 255.1 448C297.5 448 335.9 434.9 367.2 412.5L309.3 354.5zM448 255.1C448 214.5 434.9 176.1 412.5 144.8L354.5 202.7C363.1 218.6 368 236.7 368 256C368 275.3 363.1 293.4 354.5 309.3L412.5 367.2C434.9 335.9 448 297.5 448 256V255.1zM255.1 63.1C214.5 63.1 176.1 77.14 144.8 99.5L202.7 157.5C218.6 148.9 236.7 143.1 255.1 143.1C275.3 143.1 293.4 148.9 309.3 157.5L367.2 99.5C335.9 77.14 297.5 63.1 256 63.1H255.1zM157.5 309.3C148.9 293.4 143.1 275.3 143.1 255.1C143.1 236.7 148.9 218.6 157.5 202.7L99.5 144.8C77.14 176.1 63.1 214.5 63.1 255.1C63.1 297.5 77.14 335.9 99.5 367.2L157.5 309.3zM255.1 207.1C229.5 207.1 207.1 229.5 207.1 255.1C207.1 282.5 229.5 303.1 255.1 303.1C282.5 303.1 304 282.5 304 255.1C304 229.5 282.5 207.1 255.1 207.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M464.1 431C474.3 440.4 474.3 455.6 464.1 464.1C455.6 474.3 440.4 474.3 431 464.1L419.3 453.2C374.9 489.9 318.1 512 256 512C193.9 512 137.1 489.9 92.74 453.2L80.97 464.1C71.6 474.3 56.4 474.3 47.03 464.1C37.66 455.6 37.66 440.4 47.03 431L58.8 419.3C22.08 374.9 0 318.1 0 256C0 193.9 22.08 137.1 58.8 92.74L47.03 80.97C37.66 71.6 37.66 56.4 47.03 47.03C56.4 37.66 71.6 37.66 80.97 47.03L92.74 58.8C137.1 22.08 193.9 0 256 0C318.1 0 374.9 22.08 419.3 58.8L431 47.03C440.4 37.66 455.6 37.66 464.1 47.03C474.3 56.4 474.3 71.6 464.1 80.97L453.2 92.74C489.9 137.1 512 193.9 512 256C512 318.1 489.9 374.9 453.2 419.3L464.1 431zM304.8 338.7C290.5 347.2 273.8 352 256 352C238.2 352 221.5 347.2 207.2 338.7L126.9 419.1C162.3 447.2 207.2 464 256 464C304.8 464 349.7 447.2 385.1 419.1L304.8 338.7zM464 256C464 207.2 447.2 162.3 419.1 126.9L338.7 207.2C347.2 221.5 352 238.2 352 256C352 273.8 347.2 290.5 338.7 304.8L419.1 385.1C447.2 349.7 464 304.8 464 256V256zM256 48C207.2 48 162.3 64.8 126.9 92.93L207.2 173.3C221.5 164.8 238.2 160 256 160C273.8 160 290.5 164.8 304.8 173.3L385.1 92.93C349.7 64.8 304.8 48 256 48V48zM173.3 304.8C164.8 290.5 160 273.8 160 256C160 238.2 164.8 221.5 173.3 207.2L92.93 126.9C64.8 162.3 48 207.2 48 256C48 304.8 64.8 349.7 92.93 385.1L173.3 304.8zM256 208C229.5 208 208 229.5 208 256C208 282.5 229.5 304 256 304C282.5 304 304 282.5 304 256C304 229.5 282.5 208 256 208z',
			),
		),
		'label'             => __( 'Life Ring', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'lightbulb'                              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M112.1 454.3c0 6.297 1.816 12.44 5.284 17.69l17.14 25.69c5.25 7.875 17.17 14.28 26.64 14.28h61.67c9.438 0 21.36-6.401 26.61-14.28l17.08-25.68c2.938-4.438 5.348-12.37 5.348-17.7L272 415.1h-160L112.1 454.3zM191.4 .0132C89.44 .3257 16 82.97 16 175.1c0 44.38 16.44 84.84 43.56 115.8c16.53 18.84 42.34 58.23 52.22 91.45c.0313 .25 .0938 .5166 .125 .7823h160.2c.0313-.2656 .0938-.5166 .125-.7823c9.875-33.22 35.69-72.61 52.22-91.45C351.6 260.8 368 220.4 368 175.1C368 78.61 288.9-.2837 191.4 .0132zM192 96.01c-44.13 0-80 35.89-80 79.1C112 184.8 104.8 192 96 192S80 184.8 80 176c0-61.76 50.25-111.1 112-111.1c8.844 0 16 7.159 16 16S200.8 96.01 192 96.01z',
			),
			'regular' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M112.1 454.3c0 6.297 1.816 12.44 5.284 17.69l17.14 25.69c5.25 7.875 17.17 14.28 26.64 14.28h61.67c9.438 0 21.36-6.401 26.61-14.28l17.08-25.68c2.938-4.438 5.348-12.37 5.348-17.7L272 415.1h-160L112.1 454.3zM192 0C90.02 .3203 16 82.97 16 175.1c0 44.38 16.44 84.84 43.56 115.8c16.53 18.84 42.34 58.23 52.22 91.45c.0313 .25 .0938 .5166 .125 .7823h160.2c.0313-.2656 .0938-.5166 .125-.7823c9.875-33.22 35.69-72.61 52.22-91.45C351.6 260.8 368 220.4 368 175.1C368 78.8 289.2 .0039 192 0zM288.4 260.1c-15.66 17.85-35.04 46.3-49.05 75.89h-94.61c-14.01-29.59-33.39-58.04-49.04-75.88C75.24 236.8 64 206.1 64 175.1C64 113.3 112.1 48.25 191.1 48C262.6 48 320 105.4 320 175.1C320 206.1 308.8 236.8 288.4 260.1zM176 80C131.9 80 96 115.9 96 160c0 8.844 7.156 16 16 16S128 168.8 128 160c0-26.47 21.53-48 48-48c8.844 0 16-7.148 16-15.99S184.8 80 176 80z',
			),
		),
		'label'             => __( 'Lightbulb', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'line'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M272.1 204.2v71.1c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.1 0-2.1-.6-2.6-1.3l-32.6-44v42.2c0 1.8-1.4 3.2-3.2 3.2h-11.4c-1.8 0-3.2-1.4-3.2-3.2v-71.1c0-1.8 1.4-3.2 3.2-3.2H219c1 0 2.1 .5 2.6 1.4l32.6 44v-42.2c0-1.8 1.4-3.2 3.2-3.2h11.4c1.8-.1 3.3 1.4 3.3 3.1zm-82-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 1.8 1.4 3.2 3.2 3.2h11.4c1.8 0 3.2-1.4 3.2-3.2v-71.1c0-1.7-1.4-3.2-3.2-3.2zm-27.5 59.6h-31.1v-56.4c0-1.8-1.4-3.2-3.2-3.2h-11.4c-1.8 0-3.2 1.4-3.2 3.2v71.1c0 .9 .3 1.6 .9 2.2 .6 .5 1.3 .9 2.2 .9h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.7-1.4-3.2-3.1-3.2zM332.1 201h-45.7c-1.7 0-3.2 1.4-3.2 3.2v71.1c0 1.7 1.4 3.2 3.2 3.2h45.7c1.8 0 3.2-1.4 3.2-3.2v-11.4c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2V234c0-1.8-1.4-3.2-3.2-3.2H301v-12h31.1c1.8 0 3.2-1.4 3.2-3.2v-11.4c-.1-1.7-1.5-3.2-3.2-3.2zM448 113.7V399c-.1 44.8-36.8 81.1-81.7 81H81c-44.8-.1-81.1-36.9-81-81.7V113c.1-44.8 36.9-81.1 81.7-81H367c44.8 .1 81.1 36.8 81 81.7zm-61.6 122.6c0-73-73.2-132.4-163.1-132.4-89.9 0-163.1 59.4-163.1 132.4 0 65.4 58 120.2 136.4 130.6 19.1 4.1 16.9 11.1 12.6 36.8-.7 4.1-3.3 16.1 14.1 8.8 17.4-7.3 93.9-55.3 128.2-94.7 23.6-26 34.9-52.3 34.9-81.5z',
			),
		),
		'label'             => __( 'Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'lines-leaning'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M62.36 458.1C56.77 474.9 38.65 483.9 21.88 478.4C5.116 472.8-3.946 454.6 1.643 437.9L129.6 53.88C135.2 37.12 153.4 28.05 170.1 33.64C186.9 39.23 195.9 57.35 190.4 74.12L62.36 458.1zM261.3 32.44C278.7 35.34 290.5 51.83 287.6 69.26L223.6 453.3C220.7 470.7 204.2 482.5 186.7 479.6C169.3 476.7 157.5 460.2 160.4 442.7L224.4 58.74C227.3 41.31 243.8 29.53 261.3 32.44H261.3zM352 32C369.7 32 384 46.33 384 64V448C384 465.7 369.7 480 352 480C334.3 480 320 465.7 320 448V64C320 46.33 334.3 32 352 32V32z',
			),
		),
		'label'             => __( 'Lines Leaning', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'link'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M172.5 131.1C228.1 75.51 320.5 75.51 376.1 131.1C426.1 181.1 433.5 260.8 392.4 318.3L391.3 319.9C381 334.2 361 337.6 346.7 327.3C332.3 317 328.9 297 339.2 282.7L340.3 281.1C363.2 249 359.6 205.1 331.7 177.2C300.3 145.8 249.2 145.8 217.7 177.2L105.5 289.5C73.99 320.1 73.99 372 105.5 403.5C133.3 431.4 177.3 435 209.3 412.1L210.9 410.1C225.3 400.7 245.3 404 255.5 418.4C265.8 432.8 262.5 452.8 248.1 463.1L246.5 464.2C188.1 505.3 110.2 498.7 60.21 448.8C3.741 392.3 3.741 300.7 60.21 244.3L172.5 131.1zM467.5 380C411 436.5 319.5 436.5 263 380C213 330 206.5 251.2 247.6 193.7L248.7 192.1C258.1 177.8 278.1 174.4 293.3 184.7C307.7 194.1 311.1 214.1 300.8 229.3L299.7 230.9C276.8 262.1 280.4 306.9 308.3 334.8C339.7 366.2 390.8 366.2 422.3 334.8L534.5 222.5C566 191 566 139.1 534.5 108.5C506.7 80.63 462.7 76.99 430.7 99.9L429.1 101C414.7 111.3 394.7 107.1 384.5 93.58C374.2 79.2 377.5 59.21 391.9 48.94L393.5 47.82C451 6.731 529.8 13.25 579.8 63.24C636.3 119.7 636.3 211.3 579.8 267.7L467.5 380z',
			),
		),
		'label'             => __( 'Link', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'link-slash'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M185.7 120.3C242.5 75.82 324.7 79.73 376.1 131.1C420.1 175.1 430.9 239.6 406.7 293.5L438.6 318.4L534.5 222.5C566 191 566 139.1 534.5 108.5C506.7 80.63 462.7 76.1 430.7 99.9L429.1 101C414.7 111.3 394.7 107.1 384.5 93.58C374.2 79.2 377.5 59.21 391.9 48.94L393.5 47.82C451 6.732 529.8 13.25 579.8 63.24C636.3 119.7 636.3 211.3 579.8 267.7L489.3 358.2L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.236 28.37-3.065 38.81 5.112L185.7 120.3zM238.1 161.1L353.4 251.7C359.3 225.5 351.7 197.2 331.7 177.2C306.6 152.1 269.1 147 238.1 161.1V161.1zM263 380C233.1 350.1 218.7 309.8 220.9 270L406.6 416.4C357.4 431 301.9 418.9 263 380V380zM116.6 187.9L167.2 227.8L105.5 289.5C73.99 320.1 73.99 372 105.5 403.5C133.3 431.4 177.3 435 209.3 412.1L210.9 410.1C225.3 400.7 245.3 404 255.5 418.4C265.8 432.8 262.5 452.8 248.1 463.1L246.5 464.2C188.1 505.3 110.2 498.7 60.21 448.8C3.741 392.3 3.741 300.7 60.21 244.3L116.6 187.9z',
			),
		),
		'label'             => __( 'Link Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'linkedin'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z',
			),
		),
		'label'             => __( 'LinkedIn', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'linkedin-in'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M100.3 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.6 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.3 61.9 111.3 142.3V448z',
			),
		),
		'label'             => __( 'LinkedIn In', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'linode'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M366 186.9l-59.5 36.87-.838 36.87-29.33-19.27-39.38 24.3c2.238 55.21 2.483 59.27 2.51 59.5l-97.2 65.36L127.2 285.7l108.1-62.01L195.1 197.8l-75.42 38.55L98.72 93.01 227.8 43.57 136.4 0 10.74 39.38 38.39 174.3l41.9 32.68L48.44 222.1 69.39 323.5 98.72 351.1 77.77 363.7l16.76 78.77L160.7 512c-10.8-74.84-11.66-78.64-11.73-78.77l77.93-55.3c16.76-12.57 15.08-10.89 15.08-10.89l.838 24.3 33.52 28.49-.838-77.09 46.93-33.52 26.82-18.43-2.514 36.03 25.14 17.6 6.7-74.58 58.66-43.58z',
			),
		),
		'label'             => __( 'Linode', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'linux'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M220.8 123.3c1 .5 1.8 1.7 3 1.7 1.1 0 2.8-.4 2.9-1.5 .2-1.4-1.9-2.3-3.2-2.9-1.7-.7-3.9-1-5.5-.1-.4 .2-.8 .7-.6 1.1 .3 1.3 2.3 1.1 3.4 1.7zm-21.9 1.7c1.2 0 2-1.2 3-1.7 1.1-.6 3.1-.4 3.5-1.6 .2-.4-.2-.9-.6-1.1-1.6-.9-3.8-.6-5.5 .1-1.3 .6-3.4 1.5-3.2 2.9 .1 1 1.8 1.5 2.8 1.4zM420 403.8c-3.6-4-5.3-11.6-7.2-19.7-1.8-8.1-3.9-16.8-10.5-22.4-1.3-1.1-2.6-2.1-4-2.9-1.3-.8-2.7-1.5-4.1-2 9.2-27.3 5.6-54.5-3.7-79.1-11.4-30.1-31.3-56.4-46.5-74.4-17.1-21.5-33.7-41.9-33.4-72C311.1 85.4 315.7 .1 234.8 0 132.4-.2 158 103.4 156.9 135.2c-1.7 23.4-6.4 41.8-22.5 64.7-18.9 22.5-45.5 58.8-58.1 96.7-6 17.9-8.8 36.1-6.2 53.3-6.5 5.8-11.4 14.7-16.6 20.2-4.2 4.3-10.3 5.9-17 8.3s-14 6-18.5 14.5c-2.1 3.9-2.8 8.1-2.8 12.4 0 3.9 .6 7.9 1.2 11.8 1.2 8.1 2.5 15.7 .8 20.8-5.2 14.4-5.9 24.4-2.2 31.7 3.8 7.3 11.4 10.5 20.1 12.3 17.3 3.6 40.8 2.7 59.3 12.5 19.8 10.4 39.9 14.1 55.9 10.4 11.6-2.6 21.1-9.6 25.9-20.2 12.5-.1 26.3-5.4 48.3-6.6 14.9-1.2 33.6 5.3 55.1 4.1 .6 2.3 1.4 4.6 2.5 6.7v.1c8.3 16.7 23.8 24.3 40.3 23 16.6-1.3 34.1-11 48.3-27.9 13.6-16.4 36-23.2 50.9-32.2 7.4-4.5 13.4-10.1 13.9-18.3 .4-8.2-4.4-17.3-15.5-29.7zM223.7 87.3c9.8-22.2 34.2-21.8 44-.4 6.5 14.2 3.6 30.9-4.3 40.4-1.6-.8-5.9-2.6-12.6-4.9 1.1-1.2 3.1-2.7 3.9-4.6 4.8-11.8-.2-27-9.1-27.3-7.3-.5-13.9 10.8-11.8 23-4.1-2-9.4-3.5-13-4.4-1-6.9-.3-14.6 2.9-21.8zM183 75.8c10.1 0 20.8 14.2 19.1 33.5-3.5 1-7.1 2.5-10.2 4.6 1.2-8.9-3.3-20.1-9.6-19.6-8.4 .7-9.8 21.2-1.8 28.1 1 .8 1.9-.2-5.9 5.5-15.6-14.6-10.5-52.1 8.4-52.1zm-13.6 60.7c6.2-4.6 13.6-10 14.1-10.5 4.7-4.4 13.5-14.2 27.9-14.2 7.1 0 15.6 2.3 25.9 8.9 6.3 4.1 11.3 4.4 22.6 9.3 8.4 3.5 13.7 9.7 10.5 18.2-2.6 7.1-11 14.4-22.7 18.1-11.1 3.6-19.8 16-38.2 14.9-3.9-.2-7-1-9.6-2.1-8-3.5-12.2-10.4-20-15-8.6-4.8-13.2-10.4-14.7-15.3-1.4-4.9 0-9 4.2-12.3zm3.3 334c-2.7 35.1-43.9 34.4-75.3 18-29.9-15.8-68.6-6.5-76.5-21.9-2.4-4.7-2.4-12.7 2.6-26.4v-.2c2.4-7.6 .6-16-.6-23.9-1.2-7.8-1.8-15 .9-20 3.5-6.7 8.5-9.1 14.8-11.3 10.3-3.7 11.8-3.4 19.6-9.9 5.5-5.7 9.5-12.9 14.3-18 5.1-5.5 10-8.1 17.7-6.9 8.1 1.2 15.1 6.8 21.9 16l19.6 35.6c9.5 19.9 43.1 48.4 41 68.9zm-1.4-25.9c-4.1-6.6-9.6-13.6-14.4-19.6 7.1 0 14.2-2.2 16.7-8.9 2.3-6.2 0-14.9-7.4-24.9-13.5-18.2-38.3-32.5-38.3-32.5-13.5-8.4-21.1-18.7-24.6-29.9s-3-23.3-.3-35.2c5.2-22.9 18.6-45.2 27.2-59.2 2.3-1.7 .8 3.2-8.7 20.8-8.5 16.1-24.4 53.3-2.6 82.4 .6-20.7 5.5-41.8 13.8-61.5 12-27.4 37.3-74.9 39.3-112.7 1.1 .8 4.6 3.2 6.2 4.1 4.6 2.7 8.1 6.7 12.6 10.3 12.4 10 28.5 9.2 42.4 1.2 6.2-3.5 11.2-7.5 15.9-9 9.9-3.1 17.8-8.6 22.3-15 7.7 30.4 25.7 74.3 37.2 95.7 6.1 11.4 18.3 35.5 23.6 64.6 3.3-.1 7 .4 10.9 1.4 13.8-35.7-11.7-74.2-23.3-84.9-4.7-4.6-4.9-6.6-2.6-6.5 12.6 11.2 29.2 33.7 35.2 59 2.8 11.6 3.3 23.7 .4 35.7 16.4 6.8 35.9 17.9 30.7 34.8-2.2-.1-3.2 0-4.2 0 3.2-10.1-3.9-17.6-22.8-26.1-19.6-8.6-36-8.6-38.3 12.5-12.1 4.2-18.3 14.7-21.4 27.3-2.8 11.2-3.6 24.7-4.4 39.9-.5 7.7-3.6 18-6.8 29-32.1 22.9-76.7 32.9-114.3 7.2zm257.4-11.5c-.9 16.8-41.2 19.9-63.2 46.5-13.2 15.7-29.4 24.4-43.6 25.5s-26.5-4.8-33.7-19.3c-4.7-11.1-2.4-23.1 1.1-36.3 3.7-14.2 9.2-28.8 9.9-40.6 .8-15.2 1.7-28.5 4.2-38.7 2.6-10.3 6.6-17.2 13.7-21.1 .3-.2 .7-.3 1-.5 .8 13.2 7.3 26.6 18.8 29.5 12.6 3.3 30.7-7.5 38.4-16.3 9-.3 15.7-.9 22.6 5.1 9.9 8.5 7.1 30.3 17.1 41.6 10.6 11.6 14 19.5 13.7 24.6zM173.3 148.7c2 1.9 4.7 4.5 8 7.1 6.6 5.2 15.8 10.6 27.3 10.6 11.6 0 22.5-5.9 31.8-10.8 4.9-2.6 10.9-7 14.8-10.4s5.9-6.3 3.1-6.6-2.6 2.6-6 5.1c-4.4 3.2-9.7 7.4-13.9 9.8-7.4 4.2-19.5 10.2-29.9 10.2s-18.7-4.8-24.9-9.7c-3.1-2.5-5.7-5-7.7-6.9-1.5-1.4-1.9-4.6-4.3-4.9-1.4-.1-1.8 3.7 1.7 6.5z',
			),
		),
		'label'             => __( 'Linux', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'lira-sign'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M111.1 191.1H224C241.7 191.1 256 206.3 256 223.1C256 241.7 241.7 255.1 224 255.1H111.1V287.1H224C241.7 287.1 256 302.3 256 319.1C256 337.7 241.7 352 224 352H110.8C108.1 374.2 100.8 395.6 89.2 414.9L88.52 416H288C305.7 416 320 430.3 320 448C320 465.7 305.7 480 288 480H32C20.47 480 9.834 473.8 4.154 463.8C-1.527 453.7-1.371 441.4 4.56 431.5L34.32 381.9C39.89 372.6 43.83 362.5 46.01 352H32C14.33 352 0 337.7 0 320C0 302.3 14.33 288 32 288H48V256H32C14.33 256 0 241.7 0 224C0 206.3 14.33 192 32 192H48V160.4C48 89.47 105.5 32 176.4 32C190.2 32 203.9 34.22 216.1 38.59L298.1 65.64C314.9 71.23 323.9 89.35 318.4 106.1C312.8 122.9 294.6 131.9 277.9 126.4L196.7 99.3C190.2 97.12 183.3 96 176.4 96C140.8 96 112 124.8 112 160.4L111.1 191.1z',
			),
		),
		'label'             => __( 'Lira Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'list'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M88 48C101.3 48 112 58.75 112 72V120C112 133.3 101.3 144 88 144H40C26.75 144 16 133.3 16 120V72C16 58.75 26.75 48 40 48H88zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H480zM480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H192C174.3 288 160 273.7 160 256C160 238.3 174.3 224 192 224H480zM480 384C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416C160 398.3 174.3 384 192 384H480zM16 232C16 218.7 26.75 208 40 208H88C101.3 208 112 218.7 112 232V280C112 293.3 101.3 304 88 304H40C26.75 304 16 293.3 16 280V232zM88 368C101.3 368 112 378.7 112 392V440C112 453.3 101.3 464 88 464H40C26.75 464 16 453.3 16 440V392C16 378.7 26.75 368 40 368H88z',
			),
		),
		'label'             => __( 'List', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'list-check'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M152.1 38.16C161.9 47.03 162.7 62.2 153.8 72.06L81.84 152.1C77.43 156.9 71.21 159.8 64.63 159.1C58.05 160.2 51.69 157.6 47.03 152.1L7.029 112.1C-2.343 103.6-2.343 88.4 7.029 79.03C16.4 69.66 31.6 69.66 40.97 79.03L63.08 101.1L118.2 39.94C127 30.09 142.2 29.29 152.1 38.16V38.16zM152.1 198.2C161.9 207 162.7 222.2 153.8 232.1L81.84 312.1C77.43 316.9 71.21 319.8 64.63 319.1C58.05 320.2 51.69 317.6 47.03 312.1L7.029 272.1C-2.343 263.6-2.343 248.4 7.029 239C16.4 229.7 31.6 229.7 40.97 239L63.08 261.1L118.2 199.9C127 190.1 142.2 189.3 152.1 198.2V198.2zM224 96C224 78.33 238.3 64 256 64H480C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H256C238.3 128 224 113.7 224 96V96zM224 256C224 238.3 238.3 224 256 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H256C238.3 288 224 273.7 224 256zM160 416C160 398.3 174.3 384 192 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416zM0 416C0 389.5 21.49 368 48 368C74.51 368 96 389.5 96 416C96 442.5 74.51 464 48 464C21.49 464 0 442.5 0 416z',
			),
		),
		'label'             => __( 'List Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'list-ol'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M55.1 56.04C55.1 42.78 66.74 32.04 79.1 32.04H111.1C125.3 32.04 135.1 42.78 135.1 56.04V176H151.1C165.3 176 175.1 186.8 175.1 200C175.1 213.3 165.3 224 151.1 224H71.1C58.74 224 47.1 213.3 47.1 200C47.1 186.8 58.74 176 71.1 176H87.1V80.04H79.1C66.74 80.04 55.1 69.29 55.1 56.04V56.04zM118.7 341.2C112.1 333.8 100.4 334.3 94.65 342.4L83.53 357.9C75.83 368.7 60.84 371.2 50.05 363.5C39.26 355.8 36.77 340.8 44.47 330.1L55.59 314.5C79.33 281.2 127.9 278.8 154.8 309.6C176.1 333.1 175.6 370.5 153.7 394.3L118.8 432H152C165.3 432 176 442.7 176 456C176 469.3 165.3 480 152 480H64C54.47 480 45.84 474.4 42.02 465.6C38.19 456.9 39.9 446.7 46.36 439.7L118.4 361.7C123.7 355.9 123.8 347.1 118.7 341.2L118.7 341.2zM512 64C529.7 64 544 78.33 544 96C544 113.7 529.7 128 512 128H256C238.3 128 224 113.7 224 96C224 78.33 238.3 64 256 64H512zM512 224C529.7 224 544 238.3 544 256C544 273.7 529.7 288 512 288H256C238.3 288 224 273.7 224 256C224 238.3 238.3 224 256 224H512zM512 384C529.7 384 544 398.3 544 416C544 433.7 529.7 448 512 448H256C238.3 448 224 433.7 224 416C224 398.3 238.3 384 256 384H512z',
			),
		),
		'label'             => __( 'List Ol', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'list-ul'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M16 96C16 69.49 37.49 48 64 48C90.51 48 112 69.49 112 96C112 122.5 90.51 144 64 144C37.49 144 16 122.5 16 96zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H480zM480 224C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H192C174.3 288 160 273.7 160 256C160 238.3 174.3 224 192 224H480zM480 384C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H192C174.3 448 160 433.7 160 416C160 398.3 174.3 384 192 384H480zM16 416C16 389.5 37.49 368 64 368C90.51 368 112 389.5 112 416C112 442.5 90.51 464 64 464C37.49 464 16 442.5 16 416zM112 256C112 282.5 90.51 304 64 304C37.49 304 16 282.5 16 256C16 229.5 37.49 208 64 208C90.51 208 112 229.5 112 256z',
			),
		),
		'label'             => __( 'List Ul', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'litecoin-sign'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M128 195.3L247.2 161.2C264.2 156.4 281.9 166.2 286.8 183.2C291.6 200.2 281.8 217.9 264.8 222.8L128 261.9V416H352C369.7 416 384 430.3 384 448C384 465.7 369.7 480 352 480H96C78.33 480 64 465.7 64 448V280.1L40.79 286.8C23.8 291.6 6.087 281.8 1.232 264.8C-3.623 247.8 6.216 230.1 23.21 225.2L64 213.6V64C64 46.33 78.33 32 96 32C113.7 32 128 46.33 128 64V195.3z',
			),
		),
		'label'             => __( 'Litecoin Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'location-arrow'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M285.6 444.1C279.8 458.3 264.8 466.3 249.8 463.4C234.8 460.4 223.1 447.3 223.1 432V256H47.1C32.71 256 19.55 245.2 16.6 230.2C13.65 215.2 21.73 200.2 35.88 194.4L387.9 50.38C399.8 45.5 413.5 48.26 422.6 57.37C431.7 66.49 434.5 80.19 429.6 92.12L285.6 444.1z',
			),
		),
		'label'             => __( 'Location Arrow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'location-crosshairs'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M176 256C176 211.8 211.8 176 256 176C300.2 176 336 211.8 336 256C336 300.2 300.2 336 256 336C211.8 336 176 300.2 176 256zM256 0C273.7 0 288 14.33 288 32V66.65C368.4 80.14 431.9 143.6 445.3 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H445.3C431.9 368.4 368.4 431.9 288 445.3V480C288 497.7 273.7 512 256 512C238.3 512 224 497.7 224 480V445.3C143.6 431.9 80.14 368.4 66.65 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H66.65C80.14 143.6 143.6 80.14 224 66.65V32C224 14.33 238.3 0 256 0zM128 256C128 326.7 185.3 384 256 384C326.7 384 384 326.7 384 256C384 185.3 326.7 128 256 128C185.3 128 128 185.3 128 256z',
			),
		),
		'label'             => __( 'Location Crosshairs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'location-dot'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C298 0 384 85.96 384 192C384 279.4 267 435 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2H168.3zM192 256C227.3 256 256 227.3 256 192C256 156.7 227.3 128 192 128C156.7 128 128 156.7 128 192C128 227.3 156.7 256 192 256z',
			),
		),
		'label'             => __( 'Location Dot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social', 'travel' ),
	),
	'location-pin'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 192C384 279.4 267 435 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C298 0 384 85.96 384 192H384z',
			),
		),
		'label'             => __( 'Location Pin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'social', 'travel' ),
	),
	'location-pin-lock'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M168.3 499.2C116.1 435 0 279.4 0 192C0 85.96 85.96 0 192 0C287.7 0 366.1 69.96 381.6 161.5C328.5 170.3 288 216.4 288 272V296.6C268.9 307.6 256 328.3 256 352V446.8C240.7 467.4 226.7 485.4 215.7 499.2C203.4 514.5 180.6 514.5 168.3 499.2H168.3zM192 256C227.3 256 256 227.3 256 192C256 156.7 227.3 128 192 128C156.7 128 128 156.7 128 192C128 227.3 156.7 256 192 256zM400 192C444.2 192 480 227.8 480 272V320C497.7 320 512 334.3 512 352V480C512 497.7 497.7 512 480 512H320C302.3 512 288 497.7 288 480V352C288 334.3 302.3 320 320 320V272C320 227.8 355.8 192 400 192zM400 240C382.3 240 368 254.3 368 272V320H432V272C432 254.3 417.7 240 400 240z',
			),
		),
		'label'             => __( 'Location Pin Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'lock'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M80 192V144C80 64.47 144.5 0 224 0C303.5 0 368 64.47 368 144V192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H80zM144 192H304V144C304 99.82 268.2 64 224 64C179.8 64 144 99.82 144 144V192z',
			),
		),
		'label'             => __( 'Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'lock-open'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M352 192H384C419.3 192 448 220.7 448 256V448C448 483.3 419.3 512 384 512H64C28.65 512 0 483.3 0 448V256C0 220.7 28.65 192 64 192H288V144C288 64.47 352.5 0 432 0C511.5 0 576 64.47 576 144V192C576 209.7 561.7 224 544 224C526.3 224 512 209.7 512 192V144C512 99.82 476.2 64 432 64C387.8 64 352 99.82 352 144V192z',
			),
		),
		'label'             => __( 'Lock Open', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'locust'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M328 32C464.1 32 576 143 576 280V320C576 320.1 576 320.2 576 320.3C575.8 364.3 540.1 400 496 400H483.6L508.8 444.1C515.4 455.6 511.4 470.3 499.9 476.8C488.4 483.4 473.7 479.4 467.2 467.9L428.4 400H347.1L299.7 469.7C292.2 480.6 277.2 483.3 266.3 475.7C255.4 468.2 252.7 453.2 260.3 442.3L289.6 400H215.1L163.3 470.2C155.5 480.9 140.4 483.2 129.8 475.3C119.1 467.5 116.8 452.4 124.7 441.8L165.2 386.7L122.2 370.4L42.84 470.9C34.62 481.3 19.53 483 9.13 474.8C-1.274 466.6-3.049 451.5 5.164 441.1L245.2 137.1C250.4 130.5 258.8 127.1 267.2 128.2C275.5 129.3 282.7 134.8 286.1 142.5L307.8 193.3L348.7 137.8C353.8 130.8 362.2 127.2 370.8 128.2C379.3 129.1 386.7 134.6 390.1 142.5L431.8 240H496C506.2 240 516 241.9 525 245.4C508.6 151.4 426.7 80 328 80H312C298.7 80 288 69.26 288 56C288 42.75 298.7 32 312 32L328 32zM332.1 240H379.6L362.5 199.1L332.1 240zM257.8 198.5L225.1 240H273.3L274.8 238.1L257.8 198.5zM496 336C504.8 336 512 328.8 512 320C512 311.2 504.8 304 496 304C487.2 304 480 311.2 480 320C480 328.8 487.2 336 496 336zM88.83 240H126.7L48.9 337.3C38.31 326.8 32 312.3 32 296.8C32 265.4 57.45 240 88.83 240V240z',
			),
		),
		'label'             => __( 'Locust', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'lungs'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 419.8c0 61.25-62.5 105.5-125.3 88.63l-59.53-15.88c-42.12-11.38-71.25-47.5-71.25-88.63L384 316.4l85.88 57.25c3.625 2.375 8.625 1.375 11-2.25l8.875-13.37c2.5-3.625 1.5-8.625-2.125-11L320 235.3l-167.6 111.8c-1.75 1.125-3 3-3.375 5c-.375 2.125 0 4.25 1.25 6l8.875 13.37c1.125 1.75 3 3 5 3.375c2.125 .375 4.25 0 6-1.125L256 316.4l.0313 87.5c0 41.13-29.12 77.25-71.25 88.63l-59.53 15.88C62.5 525.3 0 481 0 419.8c0-10 1.25-19.88 3.875-29.63C25.5 308.9 59.91 231 105.9 159.1c22.12-34.63 36.12-63.13 80.12-63.13C224.7 96 256 125.4 256 161.8v60.1l32.88-21.97C293.4 196.9 296 192 296 186.6V16C296 7.125 303.1 0 312 0h16c8.875 0 16 7.125 16 16v170.6c0 5.375 2.625 10.25 7.125 13.25L384 221.8v-60.1c0-36.38 31.34-65.75 69.97-65.75c43.1 0 58 28.5 80.13 63.13c46 71.88 80.41 149.8 102 231C638.8 399.9 640 409.8 640 419.8z',
			),
		),
		'label'             => __( 'Lungs', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'lungs-virus'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M195.5 444.5c-18.71-18.72-18.71-49.16 .0033-67.87l8.576-8.576H192c-26.47 0-48-21.53-48-48c0-26.47 21.53-48 48-48l12.12-.0055L195.5 263.4c-18.71-18.72-18.71-49.16 0-67.88C204.6 186.5 216.7 181.5 229.5 181.5c9.576 0 18.72 2.799 26.52 7.986l.04-27.75c0-36.38-31.42-65.72-70.05-65.72c-44 0-57.97 28.5-80.09 63.13c-46 71.88-80.39 149.8-102 231C1.257 399.9 0 409.8 0 419.8c0 61.25 62.5 105.5 125.3 88.62l59.5-15.9c21.74-5.867 39.91-18.39 52.51-34.73c-2.553 .4141-5.137 .7591-7.774 .7591C216.7 458.5 204.6 453.5 195.5 444.5zM343.1 150.7L344 16C344 7.125 336.9 0 328 0h-16c-8.875 0-16 7.125-16 16L295.1 150.7c7.088-4.133 15.22-6.675 23.1-6.675S336.9 146.5 343.1 150.7zM421.8 421.8c6.25-6.25 6.25-16.37 0-22.62l-8.576-8.576c-20.16-20.16-5.881-54.63 22.63-54.63H448c8.844 0 16-7.156 16-16c0-8.844-7.156-16-16-16h-12.12c-28.51 0-42.79-34.47-22.63-54.63l8.576-8.577c6.25-6.25 6.25-16.37 0-22.62s-16.38-6.25-22.62 0l-8.576 8.577C370.5 246.9 336 232.6 336 204.1v-12.12c0-8.844-7.156-15.1-16-15.1s-16 7.156-16 15.1v12.12c0 28.51-34.47 42.79-54.63 22.63L240.8 218.2c-6.25-6.25-16.38-6.25-22.62 0s-6.25 16.37 0 22.62l8.576 8.577c20.16 20.16 5.881 54.63-22.63 54.63H192c-8.844 0-16 7.156-16 16c0 8.844 7.156 16 16 16h12.12c28.51 0 42.79 34.47 22.63 54.63l-8.576 8.576c-6.25 6.25-6.25 16.37 0 22.62c3.125 3.125 7.219 4.688 11.31 4.688s8.188-1.562 11.31-4.688l8.576-8.575C269.5 393.1 304 407.4 304 435.9v12.12c0 8.844 7.156 16 16 16s16-7.156 16-16v-12.12c0-28.51 34.47-42.79 54.63-22.63l8.576 8.575c3.125 3.125 7.219 4.688 11.31 4.688S418.7 424.9 421.8 421.8zM288 303.1c-8.836 0-16-7.162-16-15.1S279.2 271.1 288 271.1S304 279.2 304 287.1S296.8 303.1 288 303.1zM352 367.1c-8.836 0-16-7.166-16-16s7.164-15.1 16-15.1s16 7.166 16 16S360.8 367.1 352 367.1zM636.1 390.1c-21.62-81.25-56.02-159.1-102-231c-22.12-34.63-36.09-63.13-80.09-63.13c-38.62 0-70.01 29.35-70.01 65.73v27.74c7.795-5.188 16.94-7.986 26.52-7.986c12.82 0 24.88 4.999 33.95 14.07c18.71 18.72 18.71 49.16 0 67.88l-8.576 8.571L448 272c26.47 0 48 21.54 48 48c0 26.47-21.53 48-48 48h-12.12l8.576 8.576c18.71 18.72 18.71 49.16-.0072 67.87c-9.066 9.066-21.12 14.06-33.94 14.06c-2.637 0-5.211-.3438-7.764-.7578c12.6 16.34 30.77 28.86 52.51 34.73l59.5 15.9C577.5 525.3 640 481 640 419.8C640 409.8 638.7 399.9 636.1 390.1z',
			),
		),
		'label'             => __( 'Lungs Virus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'lyft'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 81.1h77.8v208.7c0 33.1 15 52.8 27.2 61-12.7 11.1-51.2 20.9-80.2-2.8C7.8 334 0 310.7 0 289V81.1zm485.9 173.5v-22h23.8v-76.8h-26.1c-10.1-46.3-51.2-80.7-100.3-80.7-56.6 0-102.7 46-102.7 102.7V357c16 2.3 35.4-.3 51.7-14 17.1-14 24.8-37.2 24.8-59v-6.7h38.8v-76.8h-38.8v-23.3c0-34.6 52.2-34.6 52.2 0v77.1c0 56.6 46 102.7 102.7 102.7v-76.5c-14.5 0-26.1-11.7-26.1-25.9zm-294.3-99v113c0 15.4-23.8 15.4-23.8 0v-113H91v132.7c0 23.8 8 54 45 63.9 37 9.8 58.2-10.6 58.2-10.6-2.1 13.4-14.5 23.3-34.9 25.3-15.5 1.6-35.2-3.6-45-7.8v70.3c25.1 7.5 51.5 9.8 77.6 4.7 47.1-9.1 76.8-48.4 76.8-100.8V155.1h-77.1v.5z',
			),
		),
		'label'             => __( 'lyft', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'm'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 64.01v384c0 17.67-14.31 32-32 32s-32-14.33-32-32V169.7l-133.4 200.1c-11.88 17.81-41.38 17.81-53.25 0L64 169.7v278.3c0 17.67-14.31 32-32 32s-32-14.33-32-32v-384c0-14.09 9.219-26.55 22.72-30.63c13.47-4.156 28.09 1.141 35.91 12.88L224 294.3l165.4-248.1c7.812-11.73 22.47-17.03 35.91-12.88C438.8 37.47 448 49.92 448 64.01z',
			),
		),
		'label'             => __( 'M', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'magento'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M445.7 127.9V384l-63.4 36.5V164.7L223.8 73.1 65.2 164.7l.4 255.9L2.3 384V128.1L224.2 0l221.5 127.9zM255.6 420.5L224 438.9l-31.8-18.2v-256l-63.3 36.6 .1 255.9 94.9 54.9 95.1-54.9v-256l-63.4-36.6v255.9z',
			),
		),
		'label'             => __( 'Magento', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'magnet'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M128 160V256C128 309 170.1 352 224 352C277 352 320 309 320 256V160H448V256C448 379.7 347.7 480 224 480C100.3 480 0 379.7 0 256V160H128zM0 64C0 46.33 14.33 32 32 32H96C113.7 32 128 46.33 128 64V128H0V64zM320 64C320 46.33 334.3 32 352 32H416C433.7 32 448 46.33 448 64V128H320V64z',
			),
		),
		'label'             => __( 'Magnet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'magnifying-glass'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7C401.8 87.79 326.8 13.32 235.2 1.723C99.01-15.51-15.51 99.01 1.724 235.2c11.6 91.64 86.08 166.7 177.6 178.9c53.8 7.189 104.3-6.236 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 0C515.9 484.7 515.9 459.3 500.3 443.7zM79.1 208c0-70.58 57.42-128 128-128s128 57.42 128 128c0 70.58-57.42 128-128 128S79.1 278.6 79.1 208z',
			),
		),
		'label'             => __( 'Magnifying Glass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'magnifying-glass-arrow-right'           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 208C416 253.9 401.1 296.3 375.1 330.7L502.6 457.4C515.1 469.9 515.1 490.1 502.6 502.6C490.1 515.1 469.9 515.1 457.4 502.6L330.7 375.1C296.3 401.1 253.9 416 208 416C93.12 416 0 322.9 0 208C0 93.12 93.12 0 208 0C322.9 0 416 93.12 416 208zM240.1 119C231.6 109.7 216.4 109.7 207 119C197.7 128.4 197.7 143.6 207 152.1L238.1 184H120C106.7 184 96 194.7 96 208C96 221.3 106.7 232 120 232H238.1L207 263C197.7 272.4 197.7 287.6 207 296.1C216.4 306.3 231.6 306.3 240.1 296.1L312.1 224.1C322.3 215.6 322.3 200.4 312.1 191L240.1 119z',
			),
		),
		'label'             => __( 'Magnifying Glass Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'magnifying-glass-chart'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M416 208C416 253.9 401.1 296.3 375.1 330.7L502.6 457.4C515.1 469.9 515.1 490.1 502.6 502.6C490.1 515.1 469.9 515.1 457.4 502.6L330.7 375.1C296.3 401.1 253.9 416 208 416C93.12 416 0 322.9 0 208C0 93.12 93.12 0 208 0C322.9 0 416 93.12 416 208zM104 280C104 293.3 114.7 304 128 304C141.3 304 152 293.3 152 280V216C152 202.7 141.3 192 128 192C114.7 192 104 202.7 104 216V280zM184 280C184 293.3 194.7 304 208 304C221.3 304 232 293.3 232 280V120C232 106.7 221.3 96 208 96C194.7 96 184 106.7 184 120V280zM264 280C264 293.3 274.7 304 288 304C301.3 304 312 293.3 312 280V184C312 170.7 301.3 160 288 160C274.7 160 264 170.7 264 184V280z',
			),
		),
		'label'             => __( 'Magnifying Glass Chart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'magnifying-glass-dollar'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7c-12.23-91.55-87.28-166-178.9-177.6c-136.2-17.24-250.7 97.28-233.4 233.4c11.6 91.64 86.07 166.7 177.6 178.9c53.81 7.191 104.3-6.235 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 .0004C515.9 484.7 515.9 459.3 500.3 443.7zM273.7 253.8C269.8 276.4 252.6 291.3 228 296.1V304c0 11.03-8.953 20-20 20S188 315 188 304V295.2C178.2 293.2 168.4 289.9 159.6 286.8L154.8 285.1C144.4 281.4 138.9 269.9 142.6 259.5C146.2 249.1 157.6 243.7 168.1 247.3l5.062 1.812c8.562 3.094 18.25 6.562 25.91 7.719c16.23 2.5 33.47-.0313 35.17-9.812c1.219-7.094 .4062-10.62-31.8-19.84L196.2 225.4C177.8 219.1 134.5 207.3 142.3 162.2C146.2 139.6 163.5 124.8 188 120V112c0-11.03 8.953-20 20-20S228 100.1 228 112v8.695c6.252 1.273 13.06 3.07 21.47 5.992c10.42 3.625 15.95 15.03 12.33 25.47C258.2 162.6 246.8 168.1 236.3 164.5C228.2 161.7 221.8 159.9 216.8 159.2c-16.11-2.594-33.38 .0313-35.08 9.812c-1 5.812-1.719 10 25.7 18.03l6 1.719C238.9 196 281.5 208.2 273.7 253.8z',
			),
		),
		'label'             => __( 'Magnifying Glass Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'magnifying-glass-location'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M236 176c0 15.46-12.54 28-28 28S180 191.5 180 176S192.5 148 208 148S236 160.5 236 176zM500.3 500.3c-15.62 15.62-40.95 15.62-56.57 0l-119.7-119.7c-40.41 27.22-90.9 40.65-144.7 33.46c-91.55-12.23-166-87.28-177.6-178.9c-17.24-136.2 97.29-250.7 233.4-233.4c91.64 11.6 166.7 86.07 178.9 177.6c7.19 53.8-6.236 104.3-33.46 144.7l119.7 119.7C515.9 459.3 515.9 484.7 500.3 500.3zM294.1 182.2C294.1 134.5 255.6 96 207.1 96C160.4 96 121.9 134.5 121.9 182.2c0 38.35 56.29 108.5 77.87 134C201.8 318.5 204.7 320 207.1 320c3.207 0 6.26-1.459 8.303-3.791C237.8 290.7 294.1 220.5 294.1 182.2z',
			),
		),
		'label'             => __( 'Magnifying Glass Location', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'magnifying-glass-minus'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7c-12.23-91.55-87.28-166-178.9-177.6c-136.2-17.24-250.7 97.28-233.4 233.4c11.6 91.64 86.07 166.7 177.6 178.9c53.81 7.191 104.3-6.235 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 .0003C515.9 484.7 515.9 459.3 500.3 443.7zM288 232H127.1C114.7 232 104 221.3 104 208s10.74-24 23.1-24h160C301.3 184 312 194.7 312 208S301.3 232 288 232z',
			),
		),
		'label'             => __( 'Magnifying Glass Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'magnifying-glass-plus'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M500.3 443.7l-119.7-119.7c27.22-40.41 40.65-90.9 33.46-144.7c-12.23-91.55-87.28-166-178.9-177.6c-136.2-17.24-250.7 97.28-233.4 233.4c11.6 91.64 86.07 166.7 177.6 178.9c53.81 7.191 104.3-6.235 144.7-33.46l119.7 119.7c15.62 15.62 40.95 15.62 56.57 .0003C515.9 484.7 515.9 459.3 500.3 443.7zM288 232H231.1V288c0 13.26-10.74 24-23.1 24C194.7 312 184 301.3 184 288V232H127.1C114.7 232 104 221.3 104 208s10.74-24 23.1-24H184V128c0-13.26 10.74-24 23.1-24S231.1 114.7 231.1 128v56h56C301.3 184 312 194.7 312 208S301.3 232 288 232z',
			),
		),
		'label'             => __( 'Magnifying Glass Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'mailchimp'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M330.6 243.5a36.15 36.15 0 0 1 9.3 0c1.66-3.83 1.95-10.43 .45-17.61-2.23-10.67-5.25-17.14-11.48-16.13s-6.47 8.74-4.24 19.42c1.26 6 3.49 11.14 6 14.32zM277 252c4.47 2 7.2 3.26 8.28 2.13 1.89-1.94-3.48-9.39-12.12-13.09a31.44 31.44 0 0 0 -30.61 3.68c-3 2.18-5.81 5.22-5.41 7.06 .85 3.74 10-2.71 22.6-3.48 7-.44 12.8 1.75 17.26 3.71zm-9 5.13c-9.07 1.42-15 6.53-13.47 10.1 .9 .34 1.17 .81 5.21-.81a37 37 0 0 1 18.72-1.95c2.92 .34 4.31 .52 4.94-.49 1.46-2.22-5.71-8-15.39-6.85zm54.17 17.1c3.38-6.87-10.9-13.93-14.3-7s10.92 13.88 14.32 6.97zm15.66-20.47c-7.66-.13-7.95 15.8-.26 15.93s7.98-15.81 .28-15.96zm-218.8 78.9c-1.32 .31-6 1.45-8.47-2.35-5.2-8 11.11-20.38 3-35.77-9.1-17.47-27.82-13.54-35.05-5.54-8.71 9.6-8.72 23.54-5 24.08 4.27 .57 4.08-6.47 7.38-11.63a12.83 12.83 0 0 1 17.85-3.72c11.59 7.59 1.37 17.76 2.28 28.62 1.39 16.68 18.42 16.37 21.58 9a2.08 2.08 0 0 0 -.2-2.33c.03 .89 .68-1.3-3.35-.39zm299.7-17.07c-3.35-11.73-2.57-9.22-6.78-20.52 2.45-3.67 15.29-24-3.07-43.25-10.4-10.92-33.9-16.54-41.1-18.54-1.5-11.39 4.65-58.7-21.52-83 20.79-21.55 33.76-45.29 33.73-65.65-.06-39.16-48.15-51-107.4-26.47l-12.55 5.33c-.06-.05-22.71-22.27-23.05-22.57C169.5-18-41.77 216.8 25.78 273.9l14.76 12.51a72.49 72.49 0 0 0 -4.1 33.5c3.36 33.4 36 60.42 67.53 60.38 57.73 133.1 267.9 133.3 322.3 3 1.74-4.47 9.11-24.61 9.11-42.38s-10.09-25.27-16.53-25.27zm-316 48.16c-22.82-.61-47.46-21.15-49.91-45.51-6.17-61.31 74.26-75.27 84-12.33 4.54 29.64-4.67 58.49-34.12 57.81zM84.3 249.6C69.14 252.5 55.78 261.1 47.6 273c-4.88-4.07-14-12-15.59-15-13.01-24.85 14.24-73 33.3-100.2C112.4 90.56 186.2 39.68 220.4 48.91c5.55 1.57 23.94 22.89 23.94 22.89s-34.15 18.94-65.8 45.35c-42.66 32.85-74.89 80.59-94.2 132.4zM323.2 350.7s-35.74 5.3-69.51-7.07c6.21-20.16 27 6.1 96.4-13.81 15.29-4.38 35.37-13 51-25.35a102.8 102.8 0 0 1 7.12 24.28c3.66-.66 14.25-.52 11.44 18.1-3.29 19.87-11.73 36-25.93 50.84A106.9 106.9 0 0 1 362.5 421a132.4 132.4 0 0 1 -20.34 8.58c-53.51 17.48-108.3-1.74-126-43a66.33 66.33 0 0 1 -3.55-9.74c-7.53-27.2-1.14-59.83 18.84-80.37 1.23-1.31 2.48-2.85 2.48-4.79a8.45 8.45 0 0 0 -1.92-4.54c-7-10.13-31.19-27.4-26.33-60.83 3.5-24 24.49-40.91 44.07-39.91l5 .29c8.48 .5 15.89 1.59 22.88 1.88 11.69 .5 22.2-1.19 34.64-11.56 4.2-3.5 7.57-6.54 13.26-7.51a17.45 17.45 0 0 1 13.6 2.24c10 6.64 11.4 22.73 11.92 34.49 .29 6.72 1.1 23 1.38 27.63 .63 10.67 3.43 12.17 9.11 14 3.19 1.05 6.15 1.83 10.51 3.06 13.21 3.71 21 7.48 26 12.31a16.38 16.38 0 0 1 4.74 9.29c1.56 11.37-8.82 25.4-36.31 38.16-46.71 21.68-93.68 14.45-100.5 13.68-20.15-2.71-31.63 23.32-19.55 41.15 22.64 33.41 122.4 20 151.4-21.35 .69-1 .12-1.59-.73-1-41.77 28.58-97.06 38.21-128.5 26-4.77-1.85-14.73-6.44-15.94-16.67 43.6 13.49 71 .74 71 .74s2.03-2.79-.56-2.53zm-68.47-5.7zm-83.4-187.5c16.74-19.35 37.36-36.18 55.83-45.63a.73 .73 0 0 1 1 1c-1.46 2.66-4.29 8.34-5.19 12.65a.75 .75 0 0 0 1.16 .79c11.49-7.83 31.48-16.22 49-17.3a.77 .77 0 0 1 .52 1.38 41.86 41.86 0 0 0 -7.71 7.74 .75 .75 0 0 0 .59 1.19c12.31 .09 29.66 4.4 41 10.74 .76 .43 .22 1.91-.64 1.72-69.55-15.94-123.1 18.53-134.5 26.83a.76 .76 0 0 1 -1-1.12z',
			),
		),
		'label'             => __( 'Mailchimp', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'manat-sign'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 64V98.65C314.8 113.9 384 192.9 384 288V448C384 465.7 369.7 480 352 480C334.3 480 320 465.7 320 448V288C320 228.4 279.2 178.2 224 164V448C224 465.7 209.7 480 192 480C174.3 480 160 465.7 160 448V164C104.8 178.2 64 228.4 64 288V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448V288C0 192.9 69.19 113.9 160 98.65V64C160 46.33 174.3 32 192 32C209.7 32 224 46.33 224 64z',
			),
		),
		'label'             => __( 'Manat Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'mandalorian'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M232.3 511.9c-1-3.26-1.69-15.83-1.39-24.58 .55-15.89 1-24.72 1.4-28.76 .64-6.2 2.87-20.72 3.28-21.38 .6-1 .4-27.87-.24-33.13-.31-2.58-.63-11.9-.69-20.73-.13-16.47-.53-20.12-2.73-24.76-1.1-2.32-1.23-3.84-1-11.43a92.38 92.38 0 0 0 -.34-12.71c-2-13-3.46-27.7-3.25-33.9s.43-7.15 2.06-9.67c3.05-4.71 6.51-14 8.62-23.27 2.26-9.86 3.88-17.18 4.59-20.74a109.5 109.5 0 0 1 4.42-15.05c2.27-6.25 2.49-15.39 .37-15.39-.3 0-1.38 1.22-2.41 2.71s-4.76 4.8-8.29 7.36c-8.37 6.08-11.7 9.39-12.66 12.58s-1 7.23-.16 7.76c.34 .21 1.29 2.4 2.11 4.88a28.83 28.83 0 0 1 .72 15.36c-.39 1.77-1 5.47-1.46 8.23s-1 6.46-1.25 8.22a9.85 9.85 0 0 1 -1.55 4.26c-1 1-1.14 .91-2.05-.53a14.87 14.87 0 0 1 -1.44-4.75c-.25-1.74-1.63-7.11-3.08-11.93-3.28-10.9-3.52-16.15-1-21a14.24 14.24 0 0 0 1.67-4.61c0-2.39-2.2-5.32-7.41-9.89-7-6.18-8.63-7.92-10.23-11.3-1.71-3.6-3.06-4.06-4.54-1.54-1.78 3-2.6 9.11-3 22l-.34 12.19 2 2.25c3.21 3.7 12.07 16.45 13.78 19.83 3.41 6.74 4.34 11.69 4.41 23.56s.95 22.75 2 24.71c.36 .66 .51 1.35 .34 1.52s.41 2.09 1.29 4.27a38.14 38.14 0 0 1 2.06 9 91 91 0 0 0 1.71 10.37c2.23 9.56 2.77 14.08 2.39 20.14-.2 3.27-.53 11.07-.73 17.32-1.31 41.76-1.85 58-2 61.21-.12 2-.39 11.51-.6 21.07-.36 16.3-1.3 27.37-2.42 28.65-.64 .73-8.07-4.91-12.52-9.49-3.75-3.87-4-4.79-2.83-9.95 .7-3 2.26-18.29 3.33-32.62 .36-4.78 .81-10.5 1-12.71 .83-9.37 1.66-20.35 2.61-34.78 .56-8.46 1.33-16.44 1.72-17.73s.89-9.89 1.13-19.11l.43-16.77-2.26-4.3c-1.72-3.28-4.87-6.94-13.22-15.34-6-6.07-11.84-12.3-12.91-13.85l-1.95-2.81 .75-10.9c1.09-15.71 1.1-48.57 0-59.06l-.89-8.7-3.28-4.52c-5.86-8.08-5.8-7.75-6.22-33.27-.1-6.07-.38-11.5-.63-12.06-.83-1.87-3.05-2.66-8.54-3.05-8.86-.62-11-1.9-23.85-14.55-6.15-6-12.34-12-13.75-13.19-2.81-2.42-2.79-2-.56-9.63l1.35-4.65-1.69-3a32.22 32.22 0 0 0 -2.59-4.07c-1.33-1.51-5.5-10.89-6-13.49a4.24 4.24 0 0 1 .87-3.9c2.23-2.86 3.4-5.68 4.45-10.73 2.33-11.19 7.74-26.09 10.6-29.22 3.18-3.47 7.7-1 9.41 5 1.34 4.79 1.37 9.79 .1 18.55a101.2 101.2 0 0 0 -1 11.11c0 4 .19 4.69 2.25 7.39 3.33 4.37 7.73 7.41 15.2 10.52a18.67 18.67 0 0 1 4.72 2.85c11.17 10.72 18.62 16.18 22.95 16.85 5.18 .8 8 4.54 10 13.39 1.31 5.65 4 11.14 5.46 11.14a9.38 9.38 0 0 0 3.33-1.39c2-1.22 2.25-1.73 2.25-4.18a132.9 132.9 0 0 0 -2-17.84c-.37-1.66-.78-4.06-.93-5.35s-.61-3.85-1-5.69c-2.55-11.16-3.65-15.46-4.1-16-1.55-2-4.08-10.2-4.93-15.92-1.64-11.11-4-14.23-12.91-17.39A43.15 43.15 0 0 1 165.2 78c-1.15-1-4-3.22-6.35-5.06s-4.41-3.53-4.6-3.76a22.7 22.7 0 0 0 -2.69-2c-6.24-4.22-8.84-7-11.26-12l-2.44-5-.22-13-.22-13 6.91-6.55c3.95-3.75 8.48-7.35 10.59-8.43 3.31-1.69 4.45-1.89 11.37-2 8.53-.19 10.12 0 11.66 1.56s1.36 6.4-.29 8.5a6.66 6.66 0 0 0 -1.34 2.32c0 .58-2.61 4.91-5.42 9a30.39 30.39 0 0 0 -2.37 6.82c20.44 13.39 21.55 3.77 14.07 29L194 66.92c3.11-8.66 6.47-17.26 8.61-26.22 .29-7.63-12-4.19-15.4-8.68-2.33-5.93 3.13-14.18 6.06-19.2 1.6-2.34 6.62-4.7 8.82-4.15 .88 .22 4.16-.35 7.37-1.28a45.3 45.3 0 0 1 7.55-1.68 29.57 29.57 0 0 0 6-1.29c3.65-1.11 4.5-1.17 6.35-.4a29.54 29.54 0 0 0 5.82 1.36 18.18 18.18 0 0 1 6 1.91 22.67 22.67 0 0 0 5 2.17c2.51 .68 3 .57 7.05-1.67l4.35-2.4L268.3 5c10.44-.4 10.81-.47 15.26-2.68L288.2 0l2.46 1.43c1.76 1 3.14 2.73 4.85 6 2.36 4.51 2.38 4.58 1.37 7.37-.88 2.44-.89 3.3-.1 6.39a35.76 35.76 0 0 0 2.1 5.91 13.55 13.55 0 0 1 1.31 4c.31 4.33 0 5.3-2.41 6.92-2.17 1.47-7 7.91-7 9.34a14.77 14.77 0 0 1 -1.07 3c-5 11.51-6.76 13.56-14.26 17-9.2 4.2-12.3 5.19-16.21 5.19-3.1 0-4 .25-4.54 1.26a18.33 18.33 0 0 1 -4.09 3.71 13.62 13.62 0 0 0 -4.38 4.78 5.89 5.89 0 0 1 -2.49 2.91 6.88 6.88 0 0 0 -2.45 1.71 67.62 67.62 0 0 1 -7 5.38c-3.33 2.34-6.87 5-7.87 6A7.27 7.27 0 0 1 224 100a5.76 5.76 0 0 0 -2.13 1.65c-1.31 1.39-1.49 2.11-1.14 4.6a36.45 36.45 0 0 0 1.42 5.88c1.32 3.8 1.31 7.86 0 10.57s-.89 6.65 1.35 9.59c2 2.63 2.16 4.56 .71 8.84a33.45 33.45 0 0 0 -1.06 8.91c0 4.88 .22 6.28 1.46 8.38s1.82 2.48 3.24 2.32c2-.23 2.3-1.05 4.71-12.12 2.18-10 3.71-11.92 13.76-17.08 2.94-1.51 7.46-4 10-5.44s6.79-3.69 9.37-4.91a40.09 40.09 0 0 0 15.22-11.67c7.11-8.79 10-16.22 12.85-33.3a18.37 18.37 0 0 1 2.86-7.73 20.39 20.39 0 0 0 2.89-7.31c1-5.3 2.85-9.08 5.58-11.51 4.7-4.18 6-1.09 4.59 10.87-.46 3.86-1.1 10.33-1.44 14.38l-.61 7.36 4.45 4.09 4.45 4.09 .11 8.42c.06 4.63 .47 9.53 .92 10.89l.82 2.47-6.43 6.28c-8.54 8.33-12.88 13.93-16.76 21.61-1.77 3.49-3.74 7.11-4.38 8-2.18 3.11-6.46 13-8.76 20.26l-2.29 7.22-7 6.49c-3.83 3.57-8 7.25-9.17 8.17-3.05 2.32-4.26 5.15-4.26 10a14.62 14.62 0 0 0 1.59 7.26 42 42 0 0 1 2.09 4.83 9.28 9.28 0 0 0 1.57 2.89c1.4 1.59 1.92 16.12 .83 23.22-.68 4.48-3.63 12-4.7 12-1.79 0-4.06 9.27-5.07 20.74-.18 2-.62 5.94-1 8.7s-1 10-1.35 16.05c-.77 12.22-.19 18.77 2 23.15 3.41 6.69 .52 12.69-11 22.84l-4 3.49 .07 5.19a40.81 40.81 0 0 0 1.14 8.87c4.61 16 4.73 16.92 4.38 37.13-.46 26.4-.26 40.27 .63 44.15a61.31 61.31 0 0 1 1.08 7c.17 2 .66 5.33 1.08 7.36 .47 2.26 .78 11 .79 22.74v19.06l-1.81 2.63c-2.71 3.91-15.11 13.54-15.49 12.29zm29.53-45.11c-.18-.3-.33-6.87-.33-14.59 0-14.06-.89-27.54-2.26-34.45-.4-2-.81-9.7-.9-17.06-.15-11.93-1.4-24.37-2.64-26.38-.66-1.07-3-17.66-3-21.3 0-4.23 1-6 5.28-9.13s4.86-3.14 5.48-.72c.28 1.1 1.45 5.62 2.6 10 3.93 15.12 4.14 16.27 4.05 21.74-.1 5.78-.13 6.13-1.74 17.73-1 7.07-1.17 12.39-1 28.43 .17 19.4-.64 35.73-2 41.27-.71 2.78-2.8 5.48-3.43 4.43zm-71-37.58a101 101 0 0 1 -1.73-10.79 100.5 100.5 0 0 0 -1.73-10.79 37.53 37.53 0 0 1 -1-6.49c-.31-3.19-.91-7.46-1.33-9.48-1-4.79-3.35-19.35-3.42-21.07 0-.74-.34-4.05-.7-7.36-.67-6.21-.84-27.67-.22-28.29 1-1 6.63 2.76 11.33 7.43l5.28 5.25-.45 6.47c-.25 3.56-.6 10.23-.78 14.83s-.49 9.87-.67 11.71-.61 9.36-.94 16.72c-.79 17.41-1.94 31.29-2.65 32a.62 .62 0 0 1 -1-.14zm-87.18-266.6c21.07 12.79 17.84 14.15 28.49 17.66 13 4.29 18.87 7.13 23.15 16.87C111.6 233.3 86.25 255 78.55 268c-31 52-6 101.6 62.75 87.21-14.18 29.23-78 28.63-98.68-4.9-24.68-39.95-22.09-118.3 61-187.7zm210.8 179c56.66 6.88 82.32-37.74 46.54-89.23 0 0-26.87-29.34-64.28-68 3-15.45 9.49-32.12 30.57-53.82 89.2 63.51 92 141.6 92.46 149.4 4.3 70.64-78.7 91.18-105.3 61.71z',
			),
		),
		'label'             => __( 'Mandalorian', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'map'                                    => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M384 476.1L192 421.2V35.93L384 90.79V476.1zM416 88.37L543.1 37.53C558.9 31.23 576 42.84 576 59.82V394.6C576 404.4 570 413.2 560.9 416.9L416 474.8V88.37zM15.09 95.13L160 37.17V423.6L32.91 474.5C17.15 480.8 0 469.2 0 452.2V117.4C0 107.6 5.975 98.78 15.09 95.13V95.13z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M565.6 36.24C572.1 40.72 576 48.11 576 56V392C576 401.1 569.8 410.9 560.5 414.4L392.5 478.4C387.4 480.4 381.7 480.5 376.4 478.8L192.5 417.5L32.54 478.4C25.17 481.2 16.88 480.2 10.38 475.8C3.882 471.3 0 463.9 0 456V120C0 110 6.15 101.1 15.46 97.57L183.5 33.57C188.6 31.6 194.3 31.48 199.6 33.23L383.5 94.52L543.5 33.57C550.8 30.76 559.1 31.76 565.6 36.24H565.6zM48 421.2L168 375.5V90.83L48 136.5V421.2zM360 137.3L216 89.3V374.7L360 422.7V137.3zM408 421.2L528 375.5V90.83L408 136.5V421.2z',
			),
		),
		'label'             => __( 'Map', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'map-location'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M273.2 311.1C241.1 271.9 167.1 174.6 167.1 120C167.1 53.73 221.7 0 287.1 0C354.3 0 408 53.73 408 120C408 174.6 334.9 271.9 302.8 311.1C295.1 321.6 280.9 321.6 273.2 311.1V311.1zM416 503V200.4C419.5 193.5 422.7 186.7 425.6 179.8C426.1 178.6 426.6 177.4 427.1 176.1L543.1 129.7C558.9 123.4 576 135 576 152V422.8C576 432.6 570 441.4 560.9 445.1L416 503zM15.09 187.3L137.6 138.3C140 152.5 144.9 166.6 150.4 179.8C153.3 186.7 156.5 193.5 160 200.4V451.8L32.91 502.7C17.15 508.1 0 497.4 0 480.4V209.6C0 199.8 5.975 190.1 15.09 187.3H15.09zM384 504.3L191.1 449.4V255C212.5 286.3 234.3 314.6 248.2 331.1C268.7 357.6 307.3 357.6 327.8 331.1C341.7 314.6 363.5 286.3 384 255L384 504.3z',
			),
		),
		'label'             => __( 'Map Location', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'map-location-dot'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M408 120C408 174.6 334.9 271.9 302.8 311.1C295.1 321.6 280.9 321.6 273.2 311.1C241.1 271.9 168 174.6 168 120C168 53.73 221.7 0 288 0C354.3 0 408 53.73 408 120zM288 152C310.1 152 328 134.1 328 112C328 89.91 310.1 72 288 72C265.9 72 248 89.91 248 112C248 134.1 265.9 152 288 152zM425.6 179.8C426.1 178.6 426.6 177.4 427.1 176.1L543.1 129.7C558.9 123.4 576 135 576 152V422.8C576 432.6 570 441.4 560.9 445.1L416 503V200.4C419.5 193.5 422.7 186.7 425.6 179.8zM150.4 179.8C153.3 186.7 156.5 193.5 160 200.4V451.8L32.91 502.7C17.15 508.1 0 497.4 0 480.4V209.6C0 199.8 5.975 190.1 15.09 187.3L137.6 138.3C140 152.5 144.9 166.6 150.4 179.8H150.4zM327.8 331.1C341.7 314.6 363.5 286.3 384 255V504.3L192 449.4V255C212.5 286.3 234.3 314.6 248.2 331.1C268.7 357.6 307.3 357.6 327.8 331.1L327.8 331.1z',
			),
		),
		'label'             => __( 'Map Location Dot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'map-pin'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M320 144C320 223.5 255.5 288 176 288C96.47 288 32 223.5 32 144C32 64.47 96.47 0 176 0C255.5 0 320 64.47 320 144zM192 64C192 55.16 184.8 48 176 48C122.1 48 80 90.98 80 144C80 152.8 87.16 160 96 160C104.8 160 112 152.8 112 144C112 108.7 140.7 80 176 80C184.8 80 192 72.84 192 64zM144 480V317.1C154.4 319 165.1 319.1 176 319.1C186.9 319.1 197.6 319 208 317.1V480C208 497.7 193.7 512 176 512C158.3 512 144 497.7 144 480z',
			),
		),
		'label'             => __( 'Map Pin', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'markdown'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M593.8 59.1H46.2C20.7 59.1 0 79.8 0 105.2v301.5c0 25.5 20.7 46.2 46.2 46.2h547.7c25.5 0 46.2-20.7 46.1-46.1V105.2c0-25.4-20.7-46.1-46.2-46.1zM338.5 360.6H277v-120l-61.5 76.9-61.5-76.9v120H92.3V151.4h61.5l61.5 76.9 61.5-76.9h61.5v209.2zm135.3 3.1L381.5 256H443V151.4h61.5V256H566z',
			),
		),
		'label'             => __( 'Markdown', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'marker'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480.1 160.1L316.3 325.7L186.3 195.7L302.1 80L288.1 66.91C279.6 57.54 264.4 57.54 255 66.91L168.1 152.1C159.6 162.3 144.4 162.3 135 152.1C125.7 143.6 125.7 128.4 135 119L221.1 32.97C249.2 4.853 294.8 4.853 322.9 32.97L336 46.06L351 31.03C386.9-4.849 445.1-4.849 480.1 31.03C516.9 66.91 516.9 125.1 480.1 160.1V160.1zM229.5 412.5C181.5 460.5 120.3 493.2 53.7 506.5L28.71 511.5C20.84 513.1 12.7 510.6 7.03 504.1C1.356 499.3-1.107 491.2 .4662 483.3L5.465 458.3C18.78 391.7 51.52 330.5 99.54 282.5L163.7 218.3L293.7 348.3L229.5 412.5z',
			),
		),
		'label'             => __( 'Marker', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'mars'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M431.1 31.1l-112.6 0c-21.42 0-32.15 25.85-17 40.97l29.61 29.56l-56.65 56.55c-30.03-20.66-65.04-31-100-31c-47.99-.002-95.96 19.44-131.1 58.39c-60.86 67.51-58.65 175 4.748 240.1C83.66 462.2 129.6 480 175.5 480c45.12 0 90.34-17.18 124.8-51.55c61.11-60.99 67.77-155.6 20.42-224.1l56.65-56.55l29.61 29.56C411.9 182.2 417.9 184.4 423.8 184.4C436.1 184.4 448 174.8 448 160.4V47.1C448 39.16 440.8 31.1 431.1 31.1zM243.5 371.9c-18.75 18.71-43.38 28.07-68 28.07c-24.63 0-49.25-9.355-68.01-28.07c-37.5-37.43-37.5-98.33 0-135.8c18.75-18.71 43.38-28.07 68.01-28.07c24.63 0 49.25 9.357 68 28.07C281 273.5 281 334.5 243.5 371.9z',
			),
		),
		'label'             => __( 'Mars', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'mars-and-venus'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 .0002l-112.4 .0001c-21.38 0-32.09 25.85-16.97 40.97l29.56 29.56l-27.11 27.11C326.1 76.85 292.7 64 256 64c-88.37 0-160 71.63-160 160c0 77.4 54.97 141.9 128 156.8v19.22H192c-8.836 0-16 7.162-16 16v31.1c0 8.836 7.164 16 16 16l32 .0001v32c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16v-32l32-.0001c8.838 0 16-7.164 16-16v-31.1c0-8.838-7.162-16-16-16h-32v-19.22c73.03-14.83 128-79.37 128-156.8c0-28.38-8.018-54.65-20.98-77.77l30.45-30.45l29.56 29.56C470.1 160.5 496 149.8 496 128.4V16C496 7.164 488.8 .0002 480 .0002zM256 304c-44.11 0-80-35.89-80-80c0-44.11 35.89-80 80-80c44.11 0 80 35.89 80 80C336 268.1 300.1 304 256 304z',
			),
		),
		'label'             => __( 'Mars And Venus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'mars-and-venus-burst'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M607.1 0C625.7 0 639.1 14.33 639.1 32V120C639.1 137.7 625.7 152 607.1 152C590.3 152 575.1 137.7 575.1 120V109.3L539.6 145.7C552.6 168.8 559.1 195.6 559.1 224C559.1 301.4 505 365.1 431.1 380.8V400H447.1C465.7 400 479.1 414.3 479.1 432C479.1 449.7 465.7 464 447.1 464H431.1V480C431.1 497.7 417.7 512 399.1 512C382.3 512 367.1 497.7 367.1 480V464H351.1C334.3 464 319.1 449.7 319.1 432C319.1 414.3 334.3 400 351.1 400H367.1V380.8C294.1 365.1 239.1 301.4 239.1 224C239.1 135.6 311.6 64 399.1 64C436.7 64 470.6 76.37 497.6 97.18L530.7 64H511.1C494.3 64 479.1 49.67 479.1 32C479.1 14.33 494.3 0 511.1 0L607.1 0zM399.1 128C346.1 128 303.1 170.1 303.1 224C303.1 277 346.1 320 399.1 320C453 320 495.1 277 495.1 224C495.1 170.1 453 128 399.1 128zM220.3 92.05L280.4 73.81C236.3 108.1 207.1 163.2 207.1 224C207.1 269.2 223.6 310.8 249.8 343.6C244.5 345 238.7 343.7 234.6 339.9L175.1 286.1L117.4 339.9C112.6 344.4 105.5 345.4 99.63 342.6C93.73 339.7 90.15 333.6 90.62 327L96.21 247.6L17.55 235.4C11.08 234.4 5.868 229.6 4.41 223.2C2.951 216.8 5.538 210.1 10.94 206.4L76.5 161.3L37.01 92.18C33.76 86.49 34.31 79.39 38.39 74.27C42.48 69.14 49.28 67.03 55.55 68.93L131.7 92.05L161.1 18.09C163.6 11.1 169.4 7.1 175.1 7.1C182.6 7.1 188.4 11.1 190.9 18.09L220.3 92.05z',
			),
		),
		'label'             => __( 'Mars And Venus Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'mars-double'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320.7 204.3l56.65-56.55l29.61 29.56C422.1 192.5 448 181.7 448 160.4V47.1c0-8.838-7.176-15.1-16.03-15.1H319.4c-21.42 0-32.15 25.85-17 40.97l29.61 29.56L275.4 159.1c-71.21-48.99-170.4-39.96-231.1 27.39c-60.86 67.51-58.65 175 4.748 240.1c68.7 70.57 181.8 71.19 251.3 1.847C361.4 367.5 368 272.9 320.7 204.3zM243.5 371.9c-37.5 37.43-98.51 37.43-136 0s-37.5-98.33 0-135.8c37.5-37.43 98.51-37.43 136 0C281 273.5 281 334.5 243.5 371.9zM623.1 32h-112.6c-21.42 0-32.15 25.85-17 40.97l29.61 29.56L480 146.5v13.91C480 191.3 454.8 216.4 423.8 216.4C421.2 216.4 418.6 216 416 215.6v5.862c6.922 4.049 13.58 8.691 19.51 14.61c37.5 37.43 37.5 98.33 0 135.8c-18.75 18.71-43.38 28.07-68 28.07c-2.277 0-4.523-.4883-6.795-.6484c-9.641 18.69-22.1 36.24-37.64 51.77c-6.059 6.059-12.49 11.53-19.13 16.73C324.4 475.7 345.9 480 367.5 480c45.12 0 90.34-17.18 124.8-51.55c61.11-60.99 67.77-155.6 20.42-224.1l56.65-56.55l29.61 29.56c4.898 4.889 10.92 7.075 16.83 7.075C628.1 184.4 640 174.8 640 160.4V48C640 39.16 632.8 32 623.1 32z',
			),
		),
		'label'             => __( 'Mars Double', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'mars-stroke'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M496 .0002l-112.4 .0001c-21.38 0-32.09 25.85-16.97 40.97l29.56 29.56l-24.33 24.34l-33.94-33.94c-6.248-6.25-16.38-6.248-22.63 0l-22.63 22.63c-6.25 6.25-6.25 16.38 0 22.63l33.94 33.94l-18.96 18.96C239.1 111.8 144.5 118.6 83.55 179.5c-68.73 68.73-68.73 180.2 0 248.9c68.73 68.73 180.2 68.73 248.9 0c60.99-60.99 67.73-155.6 20.47-224.1l18.96-18.96l33.94 33.94c6.248 6.248 16.38 6.25 22.63 0l22.63-22.63c6.248-6.248 6.248-16.38 0-22.63l-33.94-33.94l24.34-24.33l29.56 29.56C486.1 160.5 512 149.8 512 128.4v-112.4C512 7.162 504.8 .0002 496 .0002zM275.9 371.9c-37.43 37.43-98.33 37.43-135.8 0c-37.43-37.43-37.43-98.33 0-135.8c37.43-37.43 98.33-37.43 135.8 0C313.3 273.5 313.3 334.5 275.9 371.9z',
			),
		),
		'label'             => __( 'Mars Stroke', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'mars-stroke-right'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M619.3 244.7l-82.34-77.61c-15.12-15.12-40.97-4.41-40.97 16.97V223.1L463.1 224V176c.002-8.838-7.162-16-15.1-16h-32c-8.84 0-16 7.16-16 16V224h-19.05c-15.07-81.9-86.7-144-172.1-144C110.8 80 32 158.8 32 256c0 97.2 78.8 176 176 176c86.26 0 157.9-62.1 172.1-144h19.05V336c0 8.836 7.162 16 16 16h32c8.836 0 15.1-7.164 15.1-16V287.1L496 288v39.95c0 21.38 25.85 32.09 40.97 16.97l82.34-77.61C625.6 261.1 625.6 250.9 619.3 244.7zM208 352c-52.94 0-96-43.07-96-96c-.002-52.94 43.06-96 96-96c52.93 0 95.1 43.06 95.1 96C304 308.9 260.9 352 208 352z',
			),
		),
		'label'             => __( 'Mars Stroke Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'mars-stroke-up'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M224 163V144h24c4.418 0 8-3.578 8-7.1V120c0-4.418-3.582-7.1-8-7.1H224V96h24.63c16.41 0 24.62-19.84 13.02-31.44l-60.97-60.97c-4.795-4.793-12.57-4.793-17.36 0L122.3 64.56c-11.6 11.6-3.383 31.44 13.02 31.44H160v15.1H136c-4.418 0-8 3.582-8 7.1v15.1c0 4.422 3.582 7.1 8 7.1H160v19.05c-84.9 15.62-148.5 92.01-143.7 182.5c4.783 90.69 82.34 165.1 173.2 166.5C287.8 513.4 368 434.1 368 336C368 249.7 305.9 178.1 224 163zM192 431.1c-52.94 0-96-43.06-96-95.1s43.06-95.1 96-95.1c52.93 0 96 43.06 96 95.1S244.9 431.1 192 431.1z',
			),
		),
		'label'             => __( 'Mars Stroke Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'martini-glass'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502 57.63C523.3 36.38 508.3 0 478.3 0H33.72C3.711 0-11.29 36.38 9.962 57.63l214 214V448H175.1c-26.51 0-47.1 21.49-47.1 48c0 8.836 7.164 16 16 16h224c8.836 0 16-7.164 16-16c0-26.51-21.49-48-48-48h-47.1V271.6L502 57.63zM405.1 64l-64.01 64H170.9L106.9 64H405.1z',
			),
		),
		'label'             => __( 'Martini Glass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'martini-glass-citrus'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 464H240v-125.3l168.8-168.7C424.3 154.5 413.3 128 391.4 128H24.63C2.751 128-8.249 154.5 7.251 170l168.7 168.7V464H128c-17.67 0-32 14.33-32 32c0 8.836 7.164 16 15.1 16h191.1c8.836 0 15.1-7.164 15.1-16C320 478.3 305.7 464 288 464zM432 0c-62.63 0-115.4 40.25-135.1 96h52.5c16.62-28.5 47.25-48 82.62-48c52.88 0 95.1 43 95.1 96s-43.12 96-95.1 96c-14 0-27.25-3.25-39.37-8.625l-35.25 35.25c21.88 13.25 47.25 21.38 74.62 21.38c79.5 0 143.1-64.5 143.1-144S511.5 0 432 0z',
			),
		),
		'label'             => __( 'Martini Glass Citrus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'martini-glass-empty'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502 57.63C523.3 36.38 508.3 0 478.3 0H33.72C3.711 0-11.29 36.38 9.962 57.63l214 214V448H176c-26.51 0-48 21.49-48 48c0 8.836 7.164 16 16 16h224c8.836 0 16-7.164 16-16c0-26.51-21.49-48-47.1-48h-47.1V271.6L502 57.63zM256 213.1L106.9 64h298.3L256 213.1z',
			),
		),
		'label'             => __( 'Martini Glass Empty', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'mask'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 64C39.52 64 0 182.1 0 273.5C0 379.5 78.8 448 176 448c27.33 0 51.21-6.516 66.11-36.79l19.93-40.5C268.3 358.6 278.1 352.4 288 352.1c9.9 .3711 19.7 6.501 25.97 18.63l19.93 40.5C348.8 441.5 372.7 448 400 448c97.2 0 176-68.51 176-174.5C576 182.1 536.5 64 288 64zM160 320c-35.35 0-64-28.65-64-64s28.65-64 64-64c35.35 0 64 28.65 64 64S195.3 320 160 320zM416 320c-35.35 0-64-28.65-64-64s28.65-64 64-64c35.35 0 64 28.65 64 64S451.3 320 416 320z',
			),
		),
		'label'             => __( 'Mask', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'mask-face'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M396.4 87.12L433.5 111.9C449.3 122.4 467.8 128 486.8 128H584C614.9 128 640 153.1 640 184V269C640 324.1 602.5 372.1 549.1 385.5L441.1 412.5C406.2 434.1 364.6 448 320 448C275.4 448 233.8 434.1 198.9 412.5L90.9 385.5C37.48 372.1 0 324.1 0 269V184C0 153.1 25.07 128 56 128H153.2C172.2 128 190.7 122.4 206.5 111.9L243.6 87.12C266.2 72.05 292.8 64 320 64C347.2 64 373.8 72.05 396.4 87.12zM132.3 346.3C109.4 311.2 96 269.1 96 224V176H56C51.58 176 48 179.6 48 184V269C48 302.1 70.49 330.9 102.5 338.9L132.3 346.3zM592 269V184C592 179.6 588.4 176 584 176H544V224C544 269.1 530.6 311.2 507.7 346.3L537.5 338.9C569.5 330.9 592 302.1 592 269H592zM208 224H432C440.8 224 448 216.8 448 208C448 199.2 440.8 192 432 192H208C199.2 192 192 199.2 192 208C192 216.8 199.2 224 208 224zM208 256C199.2 256 192 263.2 192 272C192 280.8 199.2 288 208 288H432C440.8 288 448 280.8 448 272C448 263.2 440.8 256 432 256H208zM240 352H400C408.8 352 416 344.8 416 336C416 327.2 408.8 320 400 320H240C231.2 320 224 327.2 224 336C224 344.8 231.2 352 240 352z',
			),
		),
		'label'             => __( 'Mask Face', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'mask-ventilator'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 32C372.1 32 419.7 73.8 454.5 128H584C614.9 128 640 153.1 640 184V269C640 324.1 602.5 372.1 549.1 385.5L477.5 403.4C454.6 433.8 421.1 457.2 384 469.8V393.2C403.6 376.8 416 353.1 416 326.4C416 276.9 372.5 191.1 320 191.1C267 191.1 224 276.9 224 326.4C224 353 236.3 376.9 256 393.3V469.9C217.6 457.4 184.9 433.8 162.2 403.3L90.9 385.5C37.48 372.1 0 324.1 0 269V184C0 153.1 25.07 128 56 128H185.1C219.8 73.8 267.4 32 320 32V32zM56 176C51.58 176 48 179.6 48 184V269C48 302.1 70.49 330.9 102.5 338.9L134.3 346.8C130.2 332.2 127.1 316.7 127.1 300.8C127.1 264.7 139.4 219.2 159.1 176H56zM480.7 176C500.4 219.2 512 264.7 512 300.8C512 316.8 509.8 332.2 505.6 346.9L537.5 338.9C569.5 330.9 592 302.1 592 269V184C592 179.6 588.4 176 584 176H480.7zM288 320C288 302.3 302.3 288 320 288C337.7 288 352 302.3 352 320V512H288V320z',
			),
		),
		'label'             => __( 'Mask Ventilator', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'masks-theater'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M206.9 245.1C171 255.6 146.8 286.4 149.3 319.3C160.7 306.5 178.1 295.5 199.3 288.4L206.9 245.1zM95.78 294.9L64.11 115.5C63.74 113.9 64.37 112.9 64.37 112.9c57.75-32.13 123.1-48.99 189-48.99c1.625 0 3.113 .0745 4.738 .0745c13.1-13.5 31.75-22.75 51.62-26c18.87-3 38.12-4.5 57.25-5.25c-9.999-14-24.47-24.27-41.84-27.02c-23.87-3.875-47.9-5.732-71.77-5.732c-76.74 0-152.4 19.45-220.1 57.07C9.021 70.57-3.853 98.5 1.021 126.6L32.77 306c14.25 80.5 136.3 142 204.5 142c3.625 0 6.777-.2979 10.03-.6729c-13.5-17.13-28.1-40.5-39.5-67.63C160.1 366.8 101.7 328 95.78 294.9zM193.4 157.6C192.6 153.4 191.1 149.7 189.3 146.2c-8.249 8.875-20.62 15.75-35.25 18.37c-14.62 2.5-28.75 .376-39.5-5.249c-.5 4-.6249 7.998 .125 12.12c3.75 21.75 24.5 36.24 46.25 32.37C182.6 200.1 197.3 179.3 193.4 157.6zM606.8 121c-88.87-49.38-191.4-67.38-291.9-51.38C287.5 73.1 265.8 95.85 260.8 123.1L229 303.5c-15.37 87.13 95.33 196.3 158.3 207.3c62.1 11.13 204.5-53.68 219.9-140.8l31.75-179.5C643.9 162.3 631 134.4 606.8 121zM333.5 217.8c3.875-21.75 24.62-36.25 46.37-32.37c21.75 3.75 36.25 24.49 32.5 46.12c-.7499 4.125-2.25 7.873-4.125 11.5c-8.249-9-20.62-15.75-35.25-18.37c-14.75-2.625-28.75-.3759-39.5 5.124C332.1 225.9 332.9 221.9 333.5 217.8zM403.1 416.5c-55.62-9.875-93.49-59.23-88.99-112.1c20.62 25.63 56.25 46.24 99.49 53.87c43.25 7.625 83.74 .3781 111.9-16.62C512.2 392.7 459.7 426.3 403.1 416.5zM534.4 265.2c-8.249-8.875-20.75-15.75-35.37-18.37c-14.62-2.5-28.62-.3759-39.5 5.249c-.5-4-.625-7.998 .125-12.12c3.875-21.75 24.62-36.25 46.37-32.37c21.75 3.875 36.25 24.49 32.37 46.24C537.6 257.9 536.1 261.7 534.4 265.2z',
			),
		),
		'label'             => __( 'Masks Theater', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'mastodon'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M433 179.1c0-97.2-63.71-125.7-63.71-125.7-62.52-28.7-228.6-28.4-290.5 0 0 0-63.72 28.5-63.72 125.7 0 115.7-6.6 259.4 105.6 289.1 40.51 10.7 75.32 13 103.3 11.4 50.81-2.8 79.32-18.1 79.32-18.1l-1.7-36.9s-36.31 11.4-77.12 10.1c-40.41-1.4-83-4.4-89.63-54a102.5 102.5 0 0 1 -.9-13.9c85.63 20.9 158.6 9.1 178.8 6.7 56.12-6.7 105-41.3 111.2-72.9 9.8-49.8 9-121.5 9-121.5zm-75.12 125.2h-46.63v-114.2c0-49.7-64-51.6-64 6.9v62.5h-46.33V197c0-58.5-64-56.6-64-6.9v114.2H90.19c0-122.1-5.2-147.9 18.41-175 25.9-28.9 79.82-30.8 103.8 6.1l11.6 19.5 11.6-19.5c24.11-37.1 78.12-34.8 103.8-6.1 23.71 27.3 18.4 53 18.4 175z',
			),
		),
		'label'             => __( 'Mastodon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mattress-pillow'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M256 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H256V448zM64 352C64 369.7 78.33 384 96 384H160C177.7 384 192 369.7 192 352V160C192 142.3 177.7 128 160 128H96C78.33 128 64 142.3 64 160V352zM288 64H576C611.3 64 640 92.65 640 128V384C640 419.3 611.3 448 576 448H288V64z',
			),
		),
		'label'             => __( 'Mattress Pillow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'maxcdn'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M461.1 442.7h-97.4L415.6 200c2.3-10.2 .9-19.5-4.4-25.7-5-6.1-13.7-9.6-24.2-9.6h-49.3l-59.5 278h-97.4l59.5-278h-83.4l-59.5 278H0l59.5-278-44.6-95.4H387c39.4 0 75.3 16.3 98.3 44.9 23.3 28.6 31.8 67.4 23.6 105.9l-47.8 222.6z',
			),
		),
		'label'             => __( 'MaxCDN', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'maximize'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M447.1 319.1v135.1c0 13.26-10.75 23.1-23.1 23.1h-135.1c-12.94 0-24.61-7.781-29.56-19.75c-4.906-11.1-2.203-25.72 6.937-34.87l30.06-30.06L224 323.9l-71.43 71.44l30.06 30.06c9.156 9.156 11.91 22.91 6.937 34.87C184.6 472.2 172.9 479.1 160 479.1H24c-13.25 0-23.1-10.74-23.1-23.1v-135.1c0-12.94 7.781-24.61 19.75-29.56C23.72 288.8 27.88 288 32 288c8.312 0 16.5 3.242 22.63 9.367l30.06 30.06l71.44-71.44L84.69 184.6L54.63 214.6c-9.156 9.156-22.91 11.91-34.87 6.937C7.798 216.6 .0013 204.9 .0013 191.1v-135.1c0-13.26 10.75-23.1 23.1-23.1h135.1c12.94 0 24.61 7.781 29.56 19.75C191.2 55.72 191.1 59.87 191.1 63.1c0 8.312-3.237 16.5-9.362 22.63L152.6 116.7l71.44 71.44l71.43-71.44l-30.06-30.06c-9.156-9.156-11.91-22.91-6.937-34.87c4.937-11.95 16.62-19.75 29.56-19.75h135.1c13.26 0 23.1 10.75 23.1 23.1v135.1c0 12.94-7.781 24.61-19.75 29.56c-11.1 4.906-25.72 2.203-34.87-6.937l-30.06-30.06l-71.43 71.43l71.44 71.44l30.06-30.06c9.156-9.156 22.91-11.91 34.87-6.937C440.2 295.4 447.1 307.1 447.1 319.1z',
			),
		),
		'label'             => __( 'Maximize', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'mdb'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M17.37 160.4L7 352h43.91l5.59-79.83L84.43 352h44.71l25.54-77.43 4.79 77.43H205l-12.79-191.6H146.7L106 277.7 63.67 160.4zm281 0h-47.9V352h47.9s95 .8 94.2-95.79c-.78-94.21-94.18-95.78-94.18-95.78zm-1.2 146.5V204.8s46 4.27 46.8 50.57-46.78 51.54-46.78 51.54zm238.3-74.24a56.16 56.16 0 0 0 8-38.31c-5.34-35.76-55.08-34.32-55.08-34.32h-51.9v191.6H482s87 4.79 87-63.85c0-43.14-33.52-55.08-33.52-55.08zm-51.9-31.94s13.57-1.59 16 9.59c1.43 6.66-4 12-4 12h-12v-21.57zm-.1 109.5l.1-24.92V267h.08s41.58-4.73 41.19 22.43c-.33 25.65-41.35 20.74-41.35 20.74z',
			),
		),
		'label'             => __( 'Material Design for Bootstrap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'medal'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M223.7 130.8L149.1 7.77C147.1 2.949 141.9 0 136.3 0H16.03c-12.95 0-20.53 14.58-13.1 25.18l111.3 158.9C143.9 156.4 181.7 137.3 223.7 130.8zM256 160c-97.25 0-176 78.75-176 176S158.8 512 256 512s176-78.75 176-176S353.3 160 256 160zM348.5 317.3l-37.88 37l8.875 52.25c1.625 9.25-8.25 16.5-16.63 12l-46.88-24.62L209.1 418.5c-8.375 4.5-18.25-2.75-16.63-12l8.875-52.25l-37.88-37C156.6 310.6 160.5 299 169.9 297.6l52.38-7.625L245.7 242.5c2-4.25 6.125-6.375 10.25-6.375S264.2 238.3 266.2 242.5l23.5 47.5l52.38 7.625C351.6 299 355.4 310.6 348.5 317.3zM495.1 0H375.7c-5.621 0-10.83 2.949-13.72 7.77l-73.76 122.1c42 6.5 79.88 25.62 109.5 53.38l111.3-158.9C516.5 14.58 508.9 0 495.1 0z',
			),
		),
		'label'             => __( 'Medal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'medapps'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M118.3 238.4c3.5-12.5 6.9-33.6 13.2-33.6 8.3 1.8 9.6 23.4 18.6 36.6 4.6-23.5 5.3-85.1 14.1-86.7 9-.7 19.7 66.5 22 77.5 9.9 4.1 48.9 6.6 48.9 6.6 1.9 7.3-24 7.6-40 7.8-4.6 14.8-5.4 27.7-11.4 28-4.7 .2-8.2-28.8-17.5-49.6l-9.4 65.5c-4.4 13-15.5-22.5-21.9-39.3-3.3-.1-62.4-1.6-47.6-7.8l31-5zM228 448c21.2 0 21.2-32 0-32H92c-21.2 0-21.2 32 0 32h136zm-24 64c21.2 0 21.2-32 0-32h-88c-21.2 0-21.2 32 0 32h88zm34.2-141.5c3.2-18.9 5.2-36.4 11.9-48.8 7.9-14.7 16.1-28.1 24-41 24.6-40.4 45.9-75.2 45.9-125.5C320 69.6 248.2 0 160 0S0 69.6 0 155.2c0 50.2 21.3 85.1 45.9 125.5 7.9 12.9 16 26.3 24 41 6.7 12.5 8.7 29.8 11.9 48.9 3.5 21 36.1 15.7 32.6-5.1-3.6-21.7-5.6-40.7-15.3-58.6C66.5 246.5 33 211.3 33 155.2 33 87.3 90 32 160 32s127 55.3 127 123.2c0 56.1-33.5 91.3-66.1 151.6-9.7 18-11.7 37.4-15.3 58.6-3.4 20.6 29 26.4 32.6 5.1z',
			),
		),
		'label'             => __( 'MedApps', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'medium'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M180.5 74.26C80.81 74.26 0 155.6 0 256S80.82 437.7 180.5 437.7 361 356.4 361 256 280.2 74.26 180.5 74.26zm288.3 10.65c-49.85 0-90.25 76.62-90.25 171.1s40.41 171.1 90.25 171.1 90.25-76.62 90.25-171.1H559C559 161.5 518.6 84.91 468.8 84.91zm139.5 17.82c-17.53 0-31.74 68.63-31.74 153.3s14.2 153.3 31.74 153.3S640 340.6 640 256C640 171.4 625.8 102.7 608.3 102.7z',
			),
		),
		'label'             => __( 'Medium', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'medrt'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 544,
				'height' => 512,
				'path'   => 'M113.7 256c0 121.8 83.9 222.8 193.5 241.1-18.7 4.5-38.2 6.9-58.2 6.9C111.4 504 0 393 0 256S111.4 8 248.9 8c20.1 0 39.6 2.4 58.2 6.9C197.5 33.2 113.7 134.2 113.7 256m297.4 100.3c-77.7 55.4-179.6 47.5-240.4-14.6 5.5 14.1 12.7 27.7 21.7 40.5 61.6 88.2 182.4 109.3 269.7 47 87.3-62.3 108.1-184.3 46.5-272.6-9-12.9-19.3-24.3-30.5-34.2 37.4 78.8 10.7 178.5-67 233.9m-218.8-244c-1.4 1-2.7 2.1-4 3.1 64.3-17.8 135.9 4 178.9 60.5 35.7 47 42.9 106.6 24.4 158 56.7-56.2 67.6-142.1 22.3-201.8-50-65.5-149.1-74.4-221.6-19.8M296 224c-4.4 0-8-3.6-8-8v-40c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v40c0 4.4-3.6 8-8 8h-40c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h40c4.4 0 8 3.6 8 8v40c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-40c0-4.4 3.6-8 8-8h40c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-40z',
			),
		),
		'label'             => __( 'MRT', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'meetup'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M99 414.3c1.1 5.7-2.3 11.1-8 12.3-5.4 1.1-10.9-2.3-12-8-1.1-5.4 2.3-11.1 7.7-12.3 5.4-1.2 11.1 2.3 12.3 8zm143.1 71.4c-6.3 4.6-8 13.4-3.7 20 4.6 6.6 13.4 8.3 20 3.7 6.3-4.6 8-13.4 3.4-20-4.2-6.5-13.1-8.3-19.7-3.7zm-86-462.3c6.3-1.4 10.3-7.7 8.9-14-1.1-6.6-7.4-10.6-13.7-9.1-6.3 1.4-10.3 7.7-9.1 14 1.4 6.6 7.6 10.6 13.9 9.1zM34.4 226.3c-10-6.9-23.7-4.3-30.6 6-6.9 10-4.3 24 5.7 30.9 10 7.1 23.7 4.6 30.6-5.7 6.9-10.4 4.3-24.1-5.7-31.2zm272-170.9c10.6-6.3 13.7-20 7.7-30.3-6.3-10.6-19.7-14-30-7.7s-13.7 20-7.4 30.6c6 10.3 19.4 13.7 29.7 7.4zm-191.1 58c7.7-5.4 9.4-16 4.3-23.7s-15.7-9.4-23.1-4.3c-7.7 5.4-9.4 16-4.3 23.7 5.1 7.8 15.6 9.5 23.1 4.3zm372.3 156c-7.4 1.7-12.3 9.1-10.6 16.9 1.4 7.4 8.9 12.3 16.3 10.6 7.4-1.4 12.3-8.9 10.6-16.6-1.5-7.4-8.9-12.3-16.3-10.9zm39.7-56.8c-1.1-5.7-6.6-9.1-12-8-5.7 1.1-9.1 6.9-8 12.6 1.1 5.4 6.6 9.1 12.3 8 5.4-1.5 9.1-6.9 7.7-12.6zM447 138.9c-8.6 6-10.6 17.7-4.9 26.3 5.7 8.6 17.4 10.6 26 4.9 8.3-6 10.3-17.7 4.6-26.3-5.7-8.7-17.4-10.9-25.7-4.9zm-6.3 139.4c26.3 43.1 15.1 100-26.3 129.1-17.4 12.3-37.1 17.7-56.9 17.1-12 47.1-69.4 64.6-105.1 32.6-1.1 .9-2.6 1.7-3.7 2.9-39.1 27.1-92.3 17.4-119.4-22.3-9.7-14.3-14.6-30.6-15.1-46.9-65.4-10.9-90-94-41.1-139.7-28.3-46.9 .6-107.4 53.4-114.9C151.6 70 234.1 38.6 290.1 82c67.4-22.3 136.3 29.4 130.9 101.1 41.1 12.6 52.8 66.9 19.7 95.2zm-70 74.3c-3.1-20.6-40.9-4.6-43.1-27.1-3.1-32 43.7-101.1 40-128-3.4-24-19.4-29.1-33.4-29.4-13.4-.3-16.9 2-21.4 4.6-2.9 1.7-6.6 4.9-11.7-.3-6.3-6-11.1-11.7-19.4-12.9-12.3-2-17.7 2-26.6 9.7-3.4 2.9-12 12.9-20 9.1-3.4-1.7-15.4-7.7-24-11.4-16.3-7.1-40 4.6-48.6 20-12.9 22.9-38 113.1-41.7 125.1-8.6 26.6 10.9 48.6 36.9 47.1 11.1-.6 18.3-4.6 25.4-17.4 4-7.4 41.7-107.7 44.6-112.6 2-3.4 8.9-8 14.6-5.1 5.7 3.1 6.9 9.4 6 15.1-1.1 9.7-28 70.9-28.9 77.7-3.4 22.9 26.9 26.6 38.6 4 3.7-7.1 45.7-92.6 49.4-98.3 4.3-6.3 7.4-8.3 11.7-8 3.1 0 8.3 .9 7.1 10.9-1.4 9.4-35.1 72.3-38.9 87.7-4.6 20.6 6.6 41.4 24.9 50.6 11.4 5.7 62.5 15.7 58.5-11.1zm5.7 92.3c-10.3 7.4-12.9 22-5.7 32.6 7.1 10.6 21.4 13.1 32 6 10.6-7.4 13.1-22 6-32.6-7.4-10.6-21.7-13.5-32.3-6z',
			),
		),
		'label'             => __( 'Meetup', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'megaport'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M214.5 209.6v66.2l33.5 33.5 33.3-33.3v-66.4l-33.4-33.4zM248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm145.1 414.4L367 441.6l-26-19.2v-65.5l-33.4-33.4-33.4 33.4v65.5L248 441.6l-26.1-19.2v-65.5l-33.4-33.4-33.5 33.4v65.5l-26.1 19.2-26.1-19.2v-87l59.5-59.5V188l59.5-59.5V52.9l26.1-19.2L274 52.9v75.6l59.5 59.5v87.6l59.7 59.7v87.1z',
			),
		),
		'label'             => __( 'Megaport', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'memory'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 448h80v-32c0-8.838 7.164-16 16-16c8.838 0 16 7.162 16 16v32h96v-32c0-8.838 7.164-16 16-16c8.838 0 16 7.162 16 16v32h96v-32c0-8.838 7.164-16 16-16c8.838 0 16 7.162 16 16v32h96v-32c0-8.838 7.164-16 16-16c8.838 0 16 7.162 16 16v32H576v-96H0V448zM576 146.9V112C576 85.49 554.5 64 528 64h-480C21.49 64 0 85.49 0 112v34.94C18.6 153.5 32 171.1 32 192S18.6 230.5 0 237.1V320h576V237.1C557.4 230.5 544 212.9 544 192S557.4 153.5 576 146.9zM192 240C192 248.8 184.8 256 176 256h-32C135.2 256 128 248.8 128 240v-96C128 135.2 135.2 128 144 128h32C184.8 128 192 135.2 192 144V240zM320 240C320 248.8 312.8 256 304 256h-32C263.2 256 256 248.8 256 240v-96C256 135.2 263.2 128 272 128h32C312.8 128 320 135.2 320 144V240zM448 240C448 248.8 440.8 256 432 256h-32C391.2 256 384 248.8 384 240v-96C384 135.2 391.2 128 400 128h32C440.8 128 448 135.2 448 144V240z',
			),
		),
		'label'             => __( 'Memory', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'mendeley'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M624.6 325.2c-12.3-12.4-29.7-19.2-48.4-17.2-43.3-1-49.7-34.9-37.5-98.8 22.8-57.5-14.9-131.5-87.4-130.8-77.4 .7-81.7 82-130.9 82-48.1 0-54-81.3-130.9-82-72.9-.8-110.1 73.3-87.4 130.8 12.2 63.9 5.8 97.8-37.5 98.8-21.2-2.3-37 6.5-53 22.5-19.9 19.7-19.3 94.8 42.6 102.6 47.1 5.9 81.6-42.9 61.2-87.8-47.3-103.7 185.9-106.1 146.5-8.2-.1 .1-.2 .2-.3 .4-26.8 42.8 6.8 97.4 58.8 95.2 52.1 2.1 85.4-52.6 58.8-95.2-.1-.2-.2-.3-.3-.4-39.4-97.9 193.8-95.5 146.5 8.2-4.6 10-6.7 21.3-5.7 33 4.9 53.4 68.7 74.1 104.9 35.2 17.8-14.8 23.1-65.6 0-88.3zm-303.9-19.1h-.6c-43.4 0-62.8-37.5-62.8-62.8 0-34.7 28.2-62.8 62.8-62.8h.6c34.7 0 62.8 28.1 62.8 62.8 0 25-19.2 62.8-62.8 62.8z',
			),
		),
		'label'             => __( 'Mendeley', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'menorah'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M544 144C544 135.1 536.9 128 528 128h-32C487.1 128 480 135.1 480 144V288h64V144zM416 95.1c17.62 0 32-14.38 32-32s-32-63.1-32-63.1s-32 46.37-32 63.1S398.4 95.1 416 95.1zM448 144C448 135.1 440.9 128 432 128h-32C391.1 128 384 135.1 384 144V288h64V144zM608 95.1c17.62 0 32-14.38 32-32s-32-63.1-32-63.1s-32 46.37-32 63.1S590.4 95.1 608 95.1zM320 95.1c17.62 0 32-14.38 32-32s-32-63.1-32-63.1S288 46.37 288 63.1S302.4 95.1 320 95.1zM512 95.1c17.62 0 32-14.38 32-32s-32-63.1-32-63.1s-32 46.37-32 63.1S494.4 95.1 512 95.1zM624 128h-32C583.2 128 576 135.2 576 144V288c0 17.6-14.4 32-32 32h-192V144C352 135.2 344.8 128 336 128h-32C295.2 128 288 135.2 288 144V320H96c-17.6 0-32-14.4-32-32V144C64 135.2 56.84 128 48 128h-32C7.164 128 0 135.2 0 144V288c0 53.02 42.98 96 96 96h192v64H176C149.5 448 128 469.5 128 496C128 504.8 135.2 512 144 512h352c8.836 0 16-7.164 16-16c0-26.51-21.49-48-48-48H352v-64h192c53.02 0 96-42.98 96-96V144C640 135.2 632.8 128 624 128zM160 144C160 135.1 152.9 128 144 128h-32C103.1 128 96 135.1 96 144V288h64V144zM224 95.1c17.62 0 32-14.38 32-32S224 0 224 0S192 46.37 192 63.1S206.4 95.1 224 95.1zM32 95.1c17.62 0 32-14.38 32-32S32 0 32 0S0 46.37 0 63.1S14.38 95.1 32 95.1zM128 95.1c17.62 0 32-14.38 32-32S128 0 128 0S96 46.37 96 63.1S110.4 95.1 128 95.1zM256 144C256 135.1 248.9 128 240 128h-32C199.1 128 192 135.1 192 144V288h64V144z',
			),
		),
		'label'             => __( 'Menorah', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'mercury'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M368 223.1c0-55.32-25.57-104.6-65.49-136.9c20.49-17.32 37.2-39.11 48.1-64.21c4.656-10.72-2.9-22.89-14.45-22.89h-54.31c-5.256 0-9.93 2.828-12.96 7.188C251.8 31.77 223.8 47.1 192 47.1c-31.85 0-59.78-16.23-76.88-40.81C112.1 2.828 107.4 0 102.2 0H47.84c-11.55 0-19.11 12.17-14.45 22.89C44.29 47.1 60.1 69.79 81.49 87.11C41.57 119.4 16 168.7 16 223.1c0 86.26 62.1 157.9 144 172.1V416H128c-8.836 0-16 7.164-16 16v32C112 472.8 119.2 480 128 480h32v16C160 504.8 167.2 512 176 512h32c8.838 0 16-7.164 16-16V480h32c8.838 0 16-7.164 16-16v-32c0-8.836-7.162-16-16-16h-32v-19.05C305.9 381.9 368 310.3 368 223.1zM192 320c-52.93 0-96-43.07-96-96c0-52.94 43.07-95.1 96-95.1c52.94 0 96 43.06 96 95.1C288 276.9 244.9 320 192 320z',
			),
		),
		'label'             => __( 'Mercury', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'message'                                => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.1 63.1v287.1c0 35.25-28.75 63.1-64 63.1h-144l-124.9 93.68c-7.875 5.75-19.12 .0497-19.12-9.7v-83.98h-96c-35.25 0-64-28.75-64-63.1V63.1c0-35.25 28.75-63.1 64-63.1h384C483.2 0 511.1 28.75 511.1 63.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447.1 0h-384c-35.25 0-64 28.75-64 63.1v287.1c0 35.25 28.75 63.1 64 63.1h96v83.98c0 9.836 11.02 15.55 19.12 9.7l124.9-93.68h144c35.25 0 64-28.75 64-63.1V63.1C511.1 28.75 483.2 0 447.1 0zM464 352c0 8.75-7.25 16-16 16h-160l-80 60v-60H64c-8.75 0-16-7.25-16-16V64c0-8.75 7.25-16 16-16h384c8.75 0 16 7.25 16 16V352z',
			),
		),
		'label'             => __( 'Message', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'social' ),
	),
	'meteor'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.4 20.72c-11.63 38.75-34.38 111.8-61.38 187.8c7 2.125 13.38 4 18.63 5.625c4.625 1.375 8.375 4.751 10.13 9.127c1.875 4.5 1.625 9.501-.625 13.75c-22.13 42.25-82.63 152.8-142.5 214.4c-1 1.125-2.001 2.5-3.001 3.5c-76 76.13-199.4 76.13-275.5 .125c-76.13-76.13-76.13-199.5 0-275.7c1-1 2.375-2 3.5-3C122.1 116.5 232.5 55.97 274.1 33.84c4.25-2.25 9.25-2.5 13.63-.625c4.5 1.875 7.875 5.626 9.25 10.13c1.625 5.125 3.5 11.63 5.625 18.63c75.88-27 148.9-49.75 187.6-61.25c5.75-1.75 11.88-.2503 16.13 4C511.5 8.844 512.1 15.09 511.4 20.72zM319.1 319.1c0-70.63-57.38-128-128-128c-70.75 0-128 57.38-128 128c0 70.76 57.25 128 128 128C262.6 448 319.1 390.8 319.1 319.1zM191.1 287.1c0 17.63-14.37 32-32 32c-17.75 0-32-14.38-32-32s14.25-32 32-32c8.5 0 16.63 3.375 22.63 9.375S191.1 279.5 191.1 287.1zM223.9 367.1c0 8.876-7.224 16-15.97 16c-8.875 0-16-7.127-16-16c0-8.876 7.1-16 15.98-16C216.7 351.1 223.9 359.1 223.9 367.1z',
			),
		),
		'label'             => __( 'Meteor', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'microblog'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M399.4 362.2c29.49-34.69 47.1-78.34 47.1-125.8C446.5 123.5 346.9 32 224 32S1.54 123.5 1.54 236.4 101.1 440.9 224 440.9a239.3 239.3 0 0 0 79.44-13.44 7.18 7.18 0 0 1 8.12 2.56c18.58 25.09 47.61 42.74 79.89 49.92a4.42 4.42 0 0 0 5.22-3.43 4.37 4.37 0 0 0 -.85-3.62 87 87 0 0 1 3.69-110.7zM329.5 212.4l-57.3 43.49L293 324.8a6.5 6.5 0 0 1 -9.94 7.22L224 290.9 164.9 332a6.51 6.51 0 0 1 -9.95-7.22l20.79-68.86-57.3-43.49a6.5 6.5 0 0 1 3.8-11.68l71.88-1.51 23.66-67.92a6.5 6.5 0 0 1 12.28 0l23.66 67.92 71.88 1.51a6.5 6.5 0 0 1 3.88 11.68z',
			),
		),
		'label'             => __( 'Micro.blog', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'microchip'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 352h192V160H160V352zM448 176h48C504.8 176 512 168.8 512 160s-7.162-16-16-16H448V128c0-35.35-28.65-64-64-64h-16V16C368 7.164 360.8 0 352 0c-8.836 0-16 7.164-16 16V64h-64V16C272 7.164 264.8 0 256 0C247.2 0 240 7.164 240 16V64h-64V16C176 7.164 168.8 0 160 0C151.2 0 144 7.164 144 16V64H128C92.65 64 64 92.65 64 128v16H16C7.164 144 0 151.2 0 160s7.164 16 16 16H64v64H16C7.164 240 0 247.2 0 256s7.164 16 16 16H64v64H16C7.164 336 0 343.2 0 352s7.164 16 16 16H64V384c0 35.35 28.65 64 64 64h16v48C144 504.8 151.2 512 160 512c8.838 0 16-7.164 16-16V448h64v48c0 8.836 7.164 16 16 16c8.838 0 16-7.164 16-16V448h64v48c0 8.836 7.164 16 16 16c8.838 0 16-7.164 16-16V448H384c35.35 0 64-28.65 64-64v-16h48c8.838 0 16-7.164 16-16s-7.162-16-16-16H448v-64h48C504.8 272 512 264.8 512 256s-7.162-16-16-16H448V176zM384 368c0 8.836-7.162 16-16 16h-224C135.2 384 128 376.8 128 368v-224C128 135.2 135.2 128 144 128h224C376.8 128 384 135.2 384 144V368z',
			),
		),
		'label'             => __( 'Microchip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'microphone'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 352c53.03 0 96-42.97 96-96v-160c0-53.03-42.97-96-96-96s-96 42.97-96 96v160C96 309 138.1 352 192 352zM344 192C330.7 192 320 202.7 320 215.1V256c0 73.33-61.97 132.4-136.3 127.7c-66.08-4.169-119.7-66.59-119.7-132.8L64 215.1C64 202.7 53.25 192 40 192S16 202.7 16 215.1v32.15c0 89.66 63.97 169.6 152 181.7V464H128c-18.19 0-32.84 15.18-31.96 33.57C96.43 505.8 103.8 512 112 512h160c8.222 0 15.57-6.216 15.96-14.43C288.8 479.2 274.2 464 256 464h-40v-33.77C301.7 418.5 368 344.9 368 256V215.1C368 202.7 357.3 192 344 192z',
			),
		),
		'label'             => __( 'Microphone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies' ),
	),
	'microphone-lines'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 352c53.03 0 96-42.97 96-96h-80C199.2 256 192 248.8 192 240S199.2 224 208 224H288V192h-80C199.2 192 192 184.8 192 176S199.2 160 208 160H288V127.1h-80c-8.836 0-16-7.164-16-16s7.164-16 16-16L288 96c0-53.03-42.97-96-96-96s-96 42.97-96 96v160C96 309 138.1 352 192 352zM344 192C330.7 192 320 202.7 320 215.1V256c0 73.33-61.97 132.4-136.3 127.7c-66.08-4.169-119.7-66.59-119.7-132.8L64 215.1C64 202.7 53.25 192 40 192S16 202.7 16 215.1v32.15c0 89.66 63.97 169.6 152 181.7V464H128c-18.19 0-32.84 15.18-31.96 33.57C96.43 505.8 103.8 512 112 512h160c8.222 0 15.57-6.216 15.96-14.43C288.8 479.2 274.2 464 256 464h-40v-33.77C301.7 418.5 368 344.9 368 256V215.1C368 202.7 357.3 192 344 192z',
			),
		),
		'label'             => __( 'Microphone Lines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies' ),
	),
	'microphone-lines-slash'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M383.1 464l-39.1-.0001v-33.77c20.6-2.824 39.99-9.402 57.69-18.72l-43.26-33.91c-14.66 4.65-30.28 7.179-46.68 6.144C245.7 379.6 191.1 317.1 191.1 250.9v-3.777L143.1 209.5l.0001 38.61c0 89.65 63.97 169.6 151.1 181.7v34.15l-40 .0001c-17.67 0-31.1 14.33-31.1 31.1C223.1 504.8 231.2 512 239.1 512h159.1c8.838 0 15.1-7.164 15.1-15.1C415.1 478.3 401.7 464 383.1 464zM630.8 469.1l-159.3-124.9c15.37-25.94 24.53-55.91 24.53-88.21V216c0-13.25-10.75-24-23.1-24c-13.25 0-24 10.75-24 24l-.0001 39.1c0 21.12-5.557 40.77-14.77 58.24l-25.73-20.16c5.234-11.68 8.493-24.42 8.493-38.08l-57.07 .0006l-34.45-27c2.914-3.055 6.969-4.999 11.52-4.999h79.1V192L335.1 192c-8.836 0-15.1-7.164-15.1-15.1s7.164-16 15.1-16l79.1 .0013V128l-79.1-.0015c-8.836 0-15.1-7.164-15.1-15.1s7.164-15.1 15.1-15.1l80-.0003c0-54-44.56-97.57-98.93-95.95C264.5 1.614 223.1 47.45 223.1 100l.0006 50.23L38.81 5.111C34.41 1.673 29.19 0 24.03 0C16.91 0 9.84 3.158 5.121 9.189C-3.067 19.63-1.249 34.72 9.189 42.89l591.1 463.1c10.5 8.203 25.57 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'Microphone Lines Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies' ),
	),
	'microphone-slash'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M383.1 464l-39.1-.0001v-33.77c20.6-2.824 39.98-9.402 57.69-18.72l-43.26-33.91c-14.66 4.65-30.28 7.179-46.68 6.144C245.7 379.6 191.1 317.1 191.1 250.9V247.2L143.1 209.5l.0001 38.61c0 89.65 63.97 169.6 151.1 181.7v34.15l-40 .0001c-17.67 0-31.1 14.33-31.1 31.1C223.1 504.8 231.2 512 239.1 512h159.1c8.838 0 15.1-7.164 15.1-15.1C415.1 478.3 401.7 464 383.1 464zM630.8 469.1l-159.3-124.9c15.37-25.94 24.53-55.91 24.53-88.21V216c0-13.25-10.75-24-23.1-24c-13.25 0-24 10.75-24 24l-.0001 39.1c0 21.12-5.559 40.77-14.77 58.24l-25.72-20.16c5.234-11.68 8.493-24.42 8.493-38.08l-.001-155.1c0-52.57-40.52-98.41-93.07-99.97c-54.37-1.617-98.93 41.95-98.93 95.95l0 54.25L38.81 5.111C34.41 1.673 29.19 0 24.03 0C16.91 0 9.839 3.158 5.12 9.189c-8.187 10.44-6.37 25.53 4.068 33.7l591.1 463.1c10.5 8.203 25.57 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'Microphone Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'lifestyle-and-hobbies' ),
	),
	'microscope'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M160 320h12v16c0 8.875 7.125 16 16 16h40c8.875 0 16-7.125 16-16V320H256c17.62 0 32-14.38 32-32V64c0-17.62-14.38-32-32-32V16C256 7.125 248.9 0 240 0h-64C167.1 0 160 7.125 160 16V32C142.4 32 128 46.38 128 64v224C128 305.6 142.4 320 160 320zM464 448h-1.25C493.2 414 512 369.2 512 320c0-105.9-86.13-192-192-192v64c70.63 0 128 57.38 128 128s-57.38 128-128 128H48C21.5 448 0 469.5 0 496C0 504.9 7.125 512 16 512h480c8.875 0 16-7.125 16-16C512 469.5 490.5 448 464 448zM104 416h208c4.375 0 8-3.625 8-8v-16c0-4.375-3.625-8-8-8h-208C99.63 384 96 387.6 96 392v16C96 412.4 99.63 416 104 416z',
			),
		),
		'label'             => __( 'Microscope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'microsoft'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32h214.6v214.6H0V32zm233.4 0H448v214.6H233.4V32zM0 265.4h214.6V480H0V265.4zm233.4 0H448V480H233.4V265.4z',
			),
		),
		'label'             => __( 'Microsoft', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mill-sign'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M282.9 96.53C339.7 102 384 149.8 384 208V416C384 433.7 369.7 448 352 448C334.3 448 320 433.7 320 416V208C320 181.5 298.5 160 272 160C267.7 160 263.6 160.6 259.7 161.6L224 261.5V416C224 433.7 209.7 448 192 448C179.6 448 168.9 440.1 163.6 430.7L142.1 490.8C136.2 507.4 117.9 516.1 101.2 510.1C84.59 504.2 75.92 485.9 81.86 469.2L160 250.5V208C160 181.5 138.5 160 112 160C85.49 160 64 181.5 64 208V416C64 433.7 49.67 448 32 448C14.33 448 0 433.7 0 416V128C0 110.3 14.33 96 32 96C42.87 96 52.48 101.4 58.26 109.7C74.21 100.1 92.53 96 112 96C143.3 96 171.7 108.9 192 129.6C196.9 124.6 202.2 120.1 207.1 116.1L241.9 21.24C247.8 4.595 266.1-4.079 282.8 1.865C299.4 7.809 308.1 26.12 302.1 42.76L282.9 96.53z',
			),
		),
		'label'             => __( 'Mill Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'minimize'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M200 287.1H64c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.937 34.87l30.06 30.06l-62.06 62.07c-12.49 12.5-12.5 32.75-.0012 45.25l22.62 22.62c12.5 12.5 32.76 12.5 45.26 .0012l62.06-62.07l30.06 30.06c6.125 6.125 14.31 9.375 22.62 9.375c4.125 0 8.281-.7969 12.25-2.437c11.97-4.953 19.75-16.62 19.75-29.56V311.1C224 298.7 213.3 287.1 200 287.1zM312 224h135.1c12.94 0 24.62-7.797 29.56-19.75c4.969-11.97 2.219-25.72-6.937-34.87l-30.06-30.06l62.06-62.07c12.5-12.5 12.5-32.76 .0003-45.26l-22.62-22.62c-12.5-12.5-32.76-12.5-45.26-.0003l-62.06 62.07l-30.06-30.06c-9.156-9.141-22.87-11.84-34.87-6.937C295.8 39.39 288 51.06 288 64v135.1C288 213.3 298.7 224 312 224zM204.3 34.44C192.3 29.47 178.5 32.22 169.4 41.38L139.3 71.44L77.25 9.374C64.75-3.123 44.49-3.123 31.1 9.374l-22.63 22.63c-12.49 12.49-12.49 32.75 .0018 45.25l62.07 62.06L41.38 169.4C35.25 175.5 32 183.7 32 192c0 4.125 .7969 8.281 2.438 12.25C39.39 216.2 51.07 224 64 224h135.1c13.25 0 23.1-10.75 23.1-23.1V64C224 51.06 216.2 39.38 204.3 34.44zM440.6 372.7l30.06-30.06c9.141-9.156 11.84-22.88 6.938-34.87C472.6 295.8 460.9 287.1 448 287.1h-135.1c-13.25 0-23.1 10.75-23.1 23.1v135.1c0 12.94 7.797 24.62 19.75 29.56c11.97 4.969 25.72 2.219 34.87-6.937l30.06-30.06l62.06 62.06c12.5 12.5 32.76 12.5 45.26 .0002l22.62-22.62c12.5-12.5 12.5-32.76 .0002-45.26L440.6 372.7z',
			),
		),
		'label'             => __( 'Minimize', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'minus'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 288h-352c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h352c17.69 0 32 14.3 32 31.99S417.7 288 400 288z',
			),
		),
		'label'             => __( 'Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'education' ),
	),
	'mitten'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M351.1 416H63.99c-17.6 0-31.1 14.4-31.1 31.1l.0026 31.1C31.1 497.6 46.4 512 63.1 512h288c17.6 0 32-14.4 32-31.1l-.0049-31.1C383.1 430.4 369.6 416 351.1 416zM425 206.9c-27.25-22.62-67.5-19-90.13 8.25l-20.88 25L284.4 111.8c-18-77.5-95.38-125.1-172.8-108C34.26 21.63-14.25 98.88 3.754 176.4L64 384h288l81.14-86.1C455.8 269.8 452.1 229.5 425 206.9z',
			),
		),
		'label'             => __( 'Mitten', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'mix'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 64v348.9c0 56.2 88 58.1 88 0V174.3c7.9-52.9 88-50.4 88 6.5v175.3c0 57.9 96 58 96 0V240c5.3-54.7 88-52.5 88 4.3v23.8c0 59.9 88 56.6 88 0V64H0z',
			),
		),
		'label'             => __( 'Mix', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mixcloud'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M424.4 219.7C416.1 134.7 344.1 68 256.9 68c-72.27 0-136.2 46.52-159.2 114.1-54.54 8.029-96.63 54.82-96.63 111.6 0 62.3 50.67 112.1 113.2 112.1h289.6c52.33 0 94.97-42.36 94.97-94.69 0-45.13-32.12-83.06-74.48-92.2zm-20.49 144.5H114.3c-39.04 0-70.88-31.56-70.88-70.6s31.84-70.6 70.88-70.6c18.83 0 36.55 7.475 49.84 20.77 19.96 19.96 50.13-10.23 30.18-30.18-14.68-14.4-32.67-24.36-52.05-29.35 19.93-44.3 64.79-73.93 114.6-73.93 69.5 0 125.1 56.48 125.1 125.7 0 13.57-2.215 26.86-6.369 39.59-8.943 27.52 32.13 38.94 40.15 13.29 2.769-8.306 4.984-16.89 6.369-25.47 19.38 7.476 33.5 26.3 33.5 48.45 0 28.8-23.53 52.33-52.61 52.33zm235.1-52.33c0 44.02-12.74 86.39-37.1 122.7-4.153 6.092-10.8 9.414-17.72 9.414-16.32 0-27.13-18.83-17.44-32.95 19.38-29.35 29.9-63.68 29.9-99.12s-10.52-69.77-29.9-98.85c-15.65-22.83 19.36-47.24 35.16-23.53 24.37 35.99 37.1 78.36 37.1 122.4zm-70.88 0c0 31.57-9.137 62.02-26.86 88.32-4.153 6.091-10.8 9.136-17.72 9.136-17.2 0-27.02-18.98-17.44-32.95 13.01-19.1 19.66-41.26 19.66-64.51 0-22.98-6.645-45.41-19.66-64.51-15.76-22.99 19.01-47.1 35.16-23.53 17.72 26.03 26.86 56.48 26.86 88.05z',
			),
		),
		'label'             => __( 'Mixcloud', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mixer'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M114.6 76.07a45.71 45.71 0 0 0 -67.51-6.41c-17.58 16.18-19 43.52-4.75 62.77l91.78 123L41.76 379.6c-14.23 19.25-13.11 46.59 4.74 62.77A45.71 45.71 0 0 0 114 435.9L242.9 262.7a12.14 12.14 0 0 0 0-14.23zM470.2 379.6 377.9 255.4l91.78-123c14.22-19.25 12.83-46.59-4.75-62.77a45.71 45.71 0 0 0 -67.51 6.41l-128 172.1a12.14 12.14 0 0 0 0 14.23L398 435.9a45.71 45.71 0 0 0 67.51 6.41C483.4 426.2 484.5 398.8 470.2 379.6z',
			),
		),
		'label'             => __( 'Mixer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mizuni'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119.1 0 256c0 137 111 248 248 248s248-111 248-248C496 119.1 385 8 248 8zm-80 351.9c-31.4 10.6-58.8 27.3-80 48.2V136c0-22.1 17.9-40 40-40s40 17.9 40 40v223.9zm120-9.9c-12.9-2-26.2-3.1-39.8-3.1-13.8 0-27.2 1.1-40.2 3.1V136c0-22.1 17.9-40 40-40s40 17.9 40 40v214zm120 57.7c-21.2-20.8-48.6-37.4-80-48V136c0-22.1 17.9-40 40-40s40 17.9 40 40v271.7z',
			),
		),
		'label'             => __( 'Mizuni', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'mobile'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 0H64C37.5 0 16 21.5 16 48v416C16 490.5 37.5 512 64 512h256c26.5 0 48-21.5 48-48v-416C368 21.5 346.5 0 320 0zM240 447.1C240 456.8 232.8 464 224 464H159.1C151.2 464 144 456.8 144 448S151.2 432 160 432h64C232.8 432 240 439.2 240 447.1z',
			),
		),
		'label'             => __( 'Mobile', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'mobile-button'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 0H64C37.49 0 16 21.49 16 48v416C16 490.5 37.49 512 64 512h256c26.51 0 48-21.49 48-48v-416C368 21.49 346.5 0 320 0zM192 464c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S209.8 464 192 464z',
			),
		),
		'label'             => __( 'Mobile button', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'mobile-retro'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H256C291.3 0 320 28.65 320 64V448C320 483.3 291.3 512 256 512H64C28.65 512 0 483.3 0 448V64zM64 232C64 245.3 74.75 256 88 256H232C245.3 256 256 245.3 256 232V152C256 138.7 245.3 128 232 128H88C74.75 128 64 138.7 64 152V232zM80 352C93.25 352 104 341.3 104 328C104 314.7 93.25 304 80 304C66.75 304 56 314.7 56 328C56 341.3 66.75 352 80 352zM80 384C66.75 384 56 394.7 56 408C56 421.3 66.75 432 80 432C93.25 432 104 421.3 104 408C104 394.7 93.25 384 80 384zM160 352C173.3 352 184 341.3 184 328C184 314.7 173.3 304 160 304C146.7 304 136 314.7 136 328C136 341.3 146.7 352 160 352zM160 384C146.7 384 136 394.7 136 408C136 421.3 146.7 432 160 432C173.3 432 184 421.3 184 408C184 394.7 173.3 384 160 384zM240 352C253.3 352 264 341.3 264 328C264 314.7 253.3 304 240 304C226.7 304 216 314.7 216 328C216 341.3 226.7 352 240 352zM240 384C226.7 384 216 394.7 216 408C216 421.3 226.7 432 240 432C253.3 432 264 421.3 264 408C264 394.7 253.3 384 240 384zM128 48C119.2 48 112 55.16 112 64C112 72.84 119.2 80 128 80H192C200.8 80 208 72.84 208 64C208 55.16 200.8 48 192 48H128z',
			),
		),
		'label'             => __( 'Mobile Retro', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'mobile-screen'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M320 0H64C37.5 0 16 21.5 16 48v416C16 490.5 37.5 512 64 512h256c26.5 0 48-21.5 48-48v-416C368 21.5 346.5 0 320 0zM240 447.1C240 456.8 232.8 464 224 464H159.1C151.2 464 144 456.8 144 448S151.2 432 160 432h64C232.8 432 240 439.2 240 447.1zM304 384h-224V64h224V384z',
			),
		),
		'label'             => __( 'Mobile screen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'mobile-screen-button'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M304 0h-224c-35.35 0-64 28.65-64 64v384c0 35.35 28.65 64 64 64h224c35.35 0 64-28.65 64-64V64C368 28.65 339.3 0 304 0zM192 480c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S209.8 480 192 480zM304 64v320h-224V64H304z',
			),
		),
		'label'             => __( 'Mobile Screen Button', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'modx'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M356 241.8l36.7 23.7V480l-133-83.8L356 241.8zM440 75H226.3l-23 37.8 153.5 96.5L440 75zm-89 142.8L55.2 32v214.5l46 29L351 217.8zM97 294.2L8 437h213.7l125-200.5L97 294.2z',
			),
		),
		'label'             => __( 'MODX', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'monero'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M352 384h108.4C417 455.9 338.1 504 248 504S79 455.9 35.6 384H144V256.2L248 361l104-105v128zM88 336V128l159.4 159.4L408 128v208h74.8c8.5-25.1 13.2-52 13.2-80C496 119 385 8 248 8S0 119 0 256c0 28 4.6 54.9 13.2 80H88z',
			),
		),
		'label'             => __( 'Monero', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'money-bill'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512zM128 384C128 348.7 99.35 320 64 320V384H128zM64 192C99.35 192 128 163.3 128 128H64V192zM512 384V320C476.7 320 448 348.7 448 384H512zM512 128H448C448 163.3 476.7 192 512 192V128zM288 352C341 352 384 309 384 256C384 202.1 341 160 288 160C234.1 160 192 202.1 192 256C192 309 234.1 352 288 352z',
			),
		),
		'label'             => __( 'Money Bill', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'money-bill-1'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M252 208C252 196.1 260.1 188 272 188H288C299 188 308 196.1 308 208V276H312C323 276 332 284.1 332 296C332 307 323 316 312 316H264C252.1 316 244 307 244 296C244 284.1 252.1 276 264 276H268V227.6C258.9 225.7 252 217.7 252 208zM512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512zM128 384C128 348.7 99.35 320 64 320V384H128zM64 192C99.35 192 128 163.3 128 128H64V192zM512 384V320C476.7 320 448 348.7 448 384H512zM512 128H448C448 163.3 476.7 192 512 192V128zM288 144C226.1 144 176 194.1 176 256C176 317.9 226.1 368 288 368C349.9 368 400 317.9 400 256C400 194.1 349.9 144 288 144z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M400 256C400 317.9 349.9 368 288 368C226.1 368 176 317.9 176 256C176 194.1 226.1 144 288 144C349.9 144 400 194.1 400 256zM272 224V288H264C255.2 288 248 295.2 248 304C248 312.8 255.2 320 264 320H312C320.8 320 328 312.8 328 304C328 295.2 320.8 288 312 288H304V208C304 199.2 296.8 192 288 192H272C263.2 192 256 199.2 256 208C256 216.8 263.2 224 272 224zM0 128C0 92.65 28.65 64 64 64H512C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128zM48 176V336C83.35 336 112 364.7 112 400H464C464 364.7 492.7 336 528 336V176C492.7 176 464 147.3 464 112H112C112 147.3 83.35 176 48 176z',
			),
		),
		'label'             => __( 'Money Bill 1', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'money-bill-1-wave'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M251.1 207.1C251.1 196.1 260.1 187.1 271.1 187.1H287.1C299 187.1 308 196.1 308 207.1V275.1H312C323 275.1 332 284.1 332 295.1C332 307 323 315.1 312 315.1H263.1C252.1 315.1 243.1 307 243.1 295.1C243.1 284.1 252.1 275.1 263.1 275.1H267.1V227.6C258.9 225.7 251.1 217.7 251.1 207.1zM48.66 79.13C128.4 100.9 208.2 80.59 288 60.25C375 38.08 462 15.9 549 48.38C565.9 54.69 576 71.62 576 89.66V399.5C576 423.4 550.4 439.2 527.3 432.9C447.6 411.1 367.8 431.4 288 451.7C200.1 473.9 113.1 496.1 26.97 463.6C10.06 457.3 0 440.4 0 422.3V112.5C0 88.59 25.61 72.83 48.66 79.13L48.66 79.13zM127.1 416C127.1 380.7 99.35 352 63.1 352V416H127.1zM63.1 223.1C99.35 223.1 127.1 195.3 127.1 159.1H63.1V223.1zM512 352V287.1C476.7 287.1 448 316.7 448 352H512zM512 95.1H448C448 131.3 476.7 159.1 512 159.1V95.1zM287.1 143.1C234.1 143.1 191.1 194.1 191.1 255.1C191.1 317.9 234.1 368 287.1 368C341 368 384 317.9 384 255.1C384 194.1 341 143.1 287.1 143.1z',
			),
		),
		'label'             => __( 'Money Bill 1 Wave', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-bill-transfer'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M535 7.03C544.4-2.343 559.6-2.343 568.1 7.029L632.1 71.02C637.5 75.52 640 81.63 640 87.99C640 94.36 637.5 100.5 632.1 104.1L568.1 168.1C559.6 178.3 544.4 178.3 535 168.1C525.7 159.6 525.7 144.4 535 135L558.1 111.1L384 111.1C370.7 111.1 360 101.2 360 87.99C360 74.74 370.7 63.99 384 63.99L558.1 63.1L535 40.97C525.7 31.6 525.7 16.4 535 7.03V7.03zM104.1 376.1L81.94 400L255.1 399.1C269.3 399.1 279.1 410.7 279.1 423.1C279.1 437.2 269.3 447.1 255.1 447.1L81.95 448L104.1 471C114.3 480.4 114.3 495.6 104.1 504.1C95.6 514.3 80.4 514.3 71.03 504.1L7.029 440.1C2.528 436.5-.0003 430.4 0 423.1C0 417.6 2.529 411.5 7.03 407L71.03 343C80.4 333.7 95.6 333.7 104.1 343C114.3 352.4 114.3 367.6 104.1 376.1H104.1zM95.1 64H337.9C334.1 71.18 332 79.34 332 87.1C332 116.7 355.3 139.1 384 139.1L481.1 139.1C484.4 157.5 494.9 172.5 509.4 181.9C511.1 184.3 513.1 186.6 515.2 188.8C535.5 209.1 568.5 209.1 588.8 188.8L608 169.5V384C608 419.3 579.3 448 544 448H302.1C305.9 440.8 307.1 432.7 307.1 423.1C307.1 395.3 284.7 371.1 255.1 371.1L158.9 372C155.5 354.5 145.1 339.5 130.6 330.1C128.9 327.7 126.9 325.4 124.8 323.2C104.5 302.9 71.54 302.9 51.23 323.2L31.1 342.5V128C31.1 92.65 60.65 64 95.1 64V64zM95.1 192C131.3 192 159.1 163.3 159.1 128H95.1V192zM544 384V320C508.7 320 480 348.7 480 384H544zM319.1 352C373 352 416 309 416 256C416 202.1 373 160 319.1 160C266.1 160 223.1 202.1 223.1 256C223.1 309 266.1 352 319.1 352z',
			),
		),
		'label'             => __( 'Money Bill Transfer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-bill-trend-up'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M470.7 9.441C473.7 12.49 476 16 477.6 19.75C479.1 23.5 479.1 27.6 480 31.9V32V128C480 145.7 465.7 160 448 160C430.3 160 416 145.7 416 128V109.3L310.6 214.6C298.8 226.5 279.9 227.2 267.2 216.3L175.1 138.1L84.82 216.3C71.41 227.8 51.2 226.2 39.7 212.8C28.2 199.4 29.76 179.2 43.17 167.7L155.2 71.7C167.2 61.43 184.8 61.43 196.8 71.7L286.3 148.4L370.7 64H352C334.3 64 320 49.67 320 32C320 14.33 334.3 0 352 0H447.1C456.8 0 464.8 3.554 470.6 9.305L470.7 9.441zM0 304C0 277.5 21.49 256 48 256H464C490.5 256 512 277.5 512 304V464C512 490.5 490.5 512 464 512H48C21.49 512 0 490.5 0 464V304zM48 464H96C96 437.5 74.51 416 48 416V464zM48 304V352C74.51 352 96 330.5 96 304H48zM464 416C437.5 416 416 437.5 416 464H464V416zM416 304C416 330.5 437.5 352 464 352V304H416zM256 320C220.7 320 192 348.7 192 384C192 419.3 220.7 448 256 448C291.3 448 320 419.3 320 384C320 348.7 291.3 320 256 320z',
			),
		),
		'label'             => __( 'Money Bill Trend Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-bill-wave'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M48.66 79.13C128.4 100.9 208.2 80.59 288 60.25C375 38.08 462 15.9 549 48.38C565.9 54.69 576 71.62 576 89.66V399.5C576 423.4 550.4 439.2 527.3 432.9C447.6 411.1 367.8 431.4 288 451.7C200.1 473.9 113.1 496.1 26.97 463.6C10.06 457.3 0 440.4 0 422.3V112.5C0 88.59 25.61 72.83 48.66 79.13L48.66 79.13zM287.1 352C332.2 352 368 309 368 255.1C368 202.1 332.2 159.1 287.1 159.1C243.8 159.1 207.1 202.1 207.1 255.1C207.1 309 243.8 352 287.1 352zM63.1 416H127.1C127.1 380.7 99.35 352 63.1 352V416zM63.1 143.1V207.1C99.35 207.1 127.1 179.3 127.1 143.1H63.1zM512 303.1C476.7 303.1 448 332.7 448 368H512V303.1zM448 95.1C448 131.3 476.7 159.1 512 159.1V95.1H448z',
			),
		),
		'label'             => __( 'Money Bill Wave', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-bill-wheat'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 80C256 88.84 248.8 96 240 96C195.8 96 160 60.18 160 16C160 7.164 167.2 0 176 0C220.2 0 256 35.82 256 80zM104 16C117.3 16 128 26.75 128 40C128 53.25 117.3 64 104 64H56C42.75 64 32 53.25 32 40C32 26.75 42.75 16 56 16H104zM136 88C149.3 88 160 98.75 160 112C160 125.3 149.3 136 136 136H24C10.75 136 0 125.3 0 112C0 98.75 10.75 88 24 88H136zM32 184C32 170.7 42.75 160 56 160H104C117.3 160 128 170.7 128 184C128 197.3 117.3 208 104 208H56C42.75 208 32 197.3 32 184zM272 16C272 7.164 279.2 0 288 0C332.2 0 368 35.82 368 80C368 88.84 360.8 96 352 96C307.8 96 272 60.18 272 16zM480 80C480 88.84 472.8 96 464 96C419.8 96 384 60.18 384 16C384 7.164 391.2 0 400 0C444.2 0 480 35.82 480 80zM400 224C391.2 224 384 216.8 384 208C384 163.8 419.8 128 464 128C472.8 128 480 135.2 480 144C480 188.2 444.2 224 400 224zM352 128C360.8 128 368 135.2 368 144C368 188.2 332.2 224 288 224C279.2 224 272 216.8 272 208C272 163.8 307.8 128 352 128zM176 224C167.2 224 160 216.8 160 208C160 163.8 195.8 128 240 128C248.8 128 256 135.2 256 144C256 188.2 220.2 224 176 224zM0 304C0 277.5 21.49 256 48 256H464C490.5 256 512 277.5 512 304V464C512 490.5 490.5 512 464 512H48C21.49 512 0 490.5 0 464V304zM48 464H96C96 437.5 74.51 416 48 416V464zM48 304V352C74.51 352 96 330.5 96 304H48zM464 416C437.5 416 416 437.5 416 464H464V416zM416 304C416 330.5 437.5 352 464 352V304H416zM256 320C220.7 320 192 348.7 192 384C192 419.3 220.7 448 256 448C291.3 448 320 419.3 320 384C320 348.7 291.3 320 256 320z',
			),
		),
		'label'             => __( 'Money Bill Wheat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-bills'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M96 96C96 60.65 124.7 32 160 32H576C611.3 32 640 60.65 640 96V320C640 355.3 611.3 384 576 384H160C124.7 384 96 355.3 96 320V96zM160 320H224C224 284.7 195.3 256 160 256V320zM160 96V160C195.3 160 224 131.3 224 96H160zM576 256C540.7 256 512 284.7 512 320H576V256zM512 96C512 131.3 540.7 160 576 160V96H512zM368 128C323.8 128 288 163.8 288 208C288 252.2 323.8 288 368 288C412.2 288 448 252.2 448 208C448 163.8 412.2 128 368 128zM48 360C48 399.8 80.24 432 120 432H520C533.3 432 544 442.7 544 456C544 469.3 533.3 480 520 480H120C53.73 480 0 426.3 0 360V120C0 106.7 10.75 96 24 96C37.25 96 48 106.7 48 120V360z',
			),
		),
		'label'             => __( 'Money Bills', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'money-check'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512zM112 224C103.2 224 96 231.2 96 240C96 248.8 103.2 256 112 256H272C280.8 256 288 248.8 288 240C288 231.2 280.8 224 272 224H112zM112 352H464C472.8 352 480 344.8 480 336C480 327.2 472.8 320 464 320H112C103.2 320 96 327.2 96 336C96 344.8 103.2 352 112 352zM376 160C362.7 160 352 170.7 352 184V232C352 245.3 362.7 256 376 256H456C469.3 256 480 245.3 480 232V184C480 170.7 469.3 160 456 160H376z',
			),
		),
		'label'             => __( 'Money Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'money-check-dollar'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M512 64C547.3 64 576 92.65 576 128V384C576 419.3 547.3 448 512 448H64C28.65 448 0 419.3 0 384V128C0 92.65 28.65 64 64 64H512zM272 192C263.2 192 256 199.2 256 208C256 216.8 263.2 224 272 224H496C504.8 224 512 216.8 512 208C512 199.2 504.8 192 496 192H272zM272 320H496C504.8 320 512 312.8 512 304C512 295.2 504.8 288 496 288H272C263.2 288 256 295.2 256 304C256 312.8 263.2 320 272 320zM164.1 160C164.1 148.9 155.1 139.9 143.1 139.9C132.9 139.9 123.9 148.9 123.9 160V166C118.3 167.2 112.1 168.9 108 171.1C93.06 177.9 80.07 190.5 76.91 208.8C75.14 219 76.08 228.9 80.32 237.8C84.47 246.6 91 252.8 97.63 257.3C109.2 265.2 124.5 269.8 136.2 273.3L138.4 273.9C152.4 278.2 161.8 281.3 167.7 285.6C170.2 287.4 171.1 288.8 171.4 289.7C171.8 290.5 172.4 292.3 171.7 296.3C171.1 299.8 169.2 302.8 163.7 305.1C157.6 307.7 147.7 309 134.9 307C128.9 306 118.2 302.4 108.7 299.2C106.5 298.4 104.3 297.7 102.3 297C91.84 293.5 80.51 299.2 77.02 309.7C73.53 320.2 79.2 331.5 89.68 334.1C90.89 335.4 92.39 335.9 94.11 336.5C101.1 339.2 114.4 343.4 123.9 345.6V352C123.9 363.1 132.9 372.1 143.1 372.1C155.1 372.1 164.1 363.1 164.1 352V346.5C169.4 345.5 174.6 343.1 179.4 341.9C195.2 335.2 207.8 322.2 211.1 303.2C212.9 292.8 212.1 282.8 208.1 273.7C204.2 264.7 197.9 258.1 191.2 253.3C179.1 244.4 162.9 239.6 150.8 235.9L149.1 235.7C135.8 231.4 126.2 228.4 120.1 224.2C117.5 222.4 116.7 221.2 116.5 220.7C116.3 220.3 115.7 219.1 116.3 215.7C116.7 213.7 118.2 210.4 124.5 207.6C130.1 204.7 140.9 203.1 153.1 204.1C157.5 205.7 171 208.3 174.9 209.3C185.5 212.2 196.5 205.8 199.3 195.1C202.2 184.5 195.8 173.5 185.1 170.7C180.7 169.5 170.7 167.5 164.1 166.3L164.1 160z',
			),
		),
		'label'             => __( 'Money Check Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'monument'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M180.7 4.686C186.9-1.562 197.1-1.562 203.3 4.686L283.3 84.69C285.8 87.2 287.4 90.48 287.9 94.02L328.1 416H55.88L96.12 94.02C96.57 90.48 98.17 87.2 100.7 84.69L180.7 4.686zM152 272C138.7 272 128 282.7 128 296C128 309.3 138.7 320 152 320H232C245.3 320 256 309.3 256 296C256 282.7 245.3 272 232 272H152zM352 448C369.7 448 384 462.3 384 480C384 497.7 369.7 512 352 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H352z',
			),
		),
		'label'             => __( 'Monument', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'moon'                                   => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 256c0-123.8 100.3-224 223.8-224c11.36 0 29.7 1.668 40.9 3.746c9.616 1.777 11.75 14.63 3.279 19.44C245 86.5 211.2 144.6 211.2 207.8c0 109.7 99.71 193 208.3 172.3c9.561-1.805 16.28 9.324 10.11 16.95C387.9 448.6 324.8 480 255.8 480C132.1 480 32 379.6 32 256z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M421.6 379.9c-.6641 0-1.35 .0625-2.049 .1953c-11.24 2.143-22.37 3.17-33.32 3.17c-94.81 0-174.1-77.14-174.1-175.5c0-63.19 33.79-121.3 88.73-152.6c8.467-4.812 6.339-17.66-3.279-19.44c-11.2-2.078-29.53-3.746-40.9-3.746C132.3 31.1 32 132.2 32 256c0 123.6 100.1 224 223.8 224c69.04 0 132.1-31.45 173.8-82.93C435.3 389.1 429.1 379.9 421.6 379.9zM255.8 432C158.9 432 80 353 80 256c0-76.32 48.77-141.4 116.7-165.8C175.2 125 163.2 165.6 163.2 207.8c0 99.44 65.13 183.9 154.9 212.8C298.5 428.1 277.4 432 255.8 432z',
			),
		),
		'label'             => __( 'Moon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'mortar-pestle'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M501.5 60.87c17.25-17.12 12.5-46.25-9.25-57.13c-12.12-6-26.5-4.75-37.38 3.375L251.1 159.1h151.4L501.5 60.87zM496 191.1h-480c-8.875 0-16 7.125-16 16v32c0 8.875 7.125 16 16 16L31.1 256c0 81 50.25 150.1 121.1 178.4c-12.75 16.88-21.75 36.75-25 58.63C126.8 502.9 134.2 512 144.2 512h223.5c10 0 17.51-9.125 16.13-19c-3.25-21.88-12.25-41.75-25-58.63C429.8 406.1 479.1 337 479.1 256L496 255.1c8.875 0 16-7.125 16-16v-32C512 199.1 504.9 191.1 496 191.1z',
			),
		),
		'label'             => __( 'Mortar Pestle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'mosque'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M400 0C405 0 409.8 2.371 412.8 6.4C447.5 52.7 490.9 81.34 546.3 117.9C551.5 121.4 556.9 124.9 562.3 128.5C591.3 147.7 608 180.2 608 214.6C608 243.1 596.7 269 578.2 288H221.8C203.3 269 192 243.1 192 214.6C192 180.2 208.7 147.7 237.7 128.5C243.1 124.9 248.5 121.4 253.7 117.9C309.1 81.34 352.5 52.7 387.2 6.4C390.2 2.371 394.1 0 400 0V0zM288 440C288 426.7 277.3 416 264 416C250.7 416 240 426.7 240 440V512H192C174.3 512 160 497.7 160 480V352C160 334.3 174.3 320 192 320H608C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H560V440C560 426.7 549.3 416 536 416C522.7 416 512 426.7 512 440V512H448V453.1C448 434.1 439.6 416.1 424.1 404.8L400 384L375 404.8C360.4 416.1 352 434.1 352 453.1V512H288V440zM70.4 5.2C76.09 .9334 83.91 .9334 89.6 5.2L105.6 17.2C139.8 42.88 160 83.19 160 126V128H0V126C0 83.19 20.15 42.88 54.4 17.2L70.4 5.2zM0 160H160V296.6C140.9 307.6 128 328.3 128 352V480C128 489.6 130.1 498.6 133.8 506.8C127.3 510.1 119.9 512 112 512H48C21.49 512 0 490.5 0 464V160z',
			),
		),
		'label'             => __( 'Mosque', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'mosquito'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M430.3 503.8L382.3 447.8C378.4 443.4 376.3 437.7 376.3 431.7V376.3L351.1 344.7V407.8C351.1 425.4 337.7 439.8 319.1 439.8C302.3 439.8 287.1 425.4 287.1 407.8V344.7L263.7 376.3V431.7C263.7 437.7 261.6 443.4 257.7 447.8L209.7 503.8C201.1 513.8 186.1 514.8 176.3 505.9C166.5 497 165.6 481.6 174.3 471.6L216.3 422.5V367.8C216.3 362.3 218.1 357 221.5 352.7L287.1 266.3V266L154.6 387.8C97.58 447.6 .0003 405.2 0 320.6C0 272.7 34.02 232.3 79.35 226.4L232.3 202.5L191.5 161.6C183.7 153.8 182.1 141.5 187.6 131.8L211.5 90.06L173.3 39.18C165.3 28.54 167.2 13.26 177.5 5.046C187.9-3.17 202.7-1.207 210.7 9.429L258.7 73.34C264.6 81.21 265.3 91.99 260.4 100.6L237.8 140L287.1 190.3V152.1C287.1 137.2 298.2 124.7 311.1 121.1V63.93C311.1 59.51 315.6 55.93 319.1 55.93C324.4 55.93 327.1 59.51 327.1 63.93V121.1C341.8 124.7 351.1 137.2 351.1 152.1V190.3L402.2 140L379.6 100.6C374.7 91.99 375.4 81.21 381.3 73.34L429.3 9.429C437.3-1.207 452.1-3.169 462.5 5.047C472.8 13.26 474.7 28.55 466.7 39.18L428.5 90.06L452.4 131.8C457.9 141.5 456.3 153.8 448.5 161.6L407.7 202.5L560.6 226.4C605.1 232.3 640 272.7 640 320.6C640 405.2 542.4 447.6 485.4 387.8L351.1 266V266.3L418.5 352.7C421.9 357 423.7 362.3 423.7 367.8V422.5L465.7 471.6C474.4 481.6 473.5 497 463.7 505.9C453.9 514.8 438.9 513.8 430.3 503.8L430.3 503.8z',
			),
		),
		'label'             => __( 'Mosquito', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'mosquito-net'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M168.8 462.3C160.9 458.4 157.7 448.7 161.7 440.8L191.1 380.2V335.1C191.1 331.8 193.7 327.7 196.7 324.7L255.1 265.4V242.2L139.2 343.1C87.82 395.3 0 358.9 0 286.3C0 245.2 30.62 210.6 71.41 205.5L231.3 181.6L181.8 140.3C176.7 136.1 174.7 129.2 176.8 122.9L190.7 81.22L161.7 23.15C157.7 15.25 160.9 5.637 168.8 1.685C176.7-2.267 186.4 .9369 190.3 8.841L222.3 72.84C224.2 76.64 224.5 81.03 223.2 85.06L210.6 122.7L255.1 160.5V137.9C255.1 123.1 266.1 110.6 279.8 106.1V63.67C279.8 59.17 283.5 55.51 287.1 55.51C292.5 55.51 296.2 59.17 296.2 63.67V106.1C309.9 110.6 319.1 123.1 319.1 137.9V160.5L365.4 122.7L352.8 85.06C351.5 81.03 351.8 76.64 353.7 72.84L385.7 8.84C389.6 .9366 399.3-2.267 407.2 1.685C415.1 5.636 418.3 15.25 414.3 23.15L385.3 81.22L399.2 122.9C401.3 129.2 399.3 136.1 394.2 140.3L344.7 181.6L504.6 205.5C527 208.3 546.4 220 559.3 236.9C556.5 239.4 554.1 242.3 552 245.5C543.4 232.5 528.7 223.1 512 223.1C495.3 223.1 480.6 232.5 472 245.5C463.4 232.5 448.7 223.1 432 223.1C410.3 223.1 392 238.3 386.1 258.1C375.4 261.3 366.3 268.2 360.2 277.2L319.1 242.2V265.4L352.4 297.8C352.1 299.8 352 301.9 352 303.1C352 320.7 360.5 335.4 373.5 343.1C369.5 346.6 365.9 349.9 362.9 353.5L319.1 310.6V360.6C319.1 378.3 305.7 392.6 287.1 392.6C270.3 392.6 255.1 378.3 255.1 360.6V310.6L224 342.6V383.1C224 386.5 223.4 388.9 222.3 391.2L190.3 455.2C186.4 463.1 176.7 466.3 168.8 462.3V462.3zM512 255.1C520.8 255.1 528 263.2 528 271.1V287.1H576V271.1C576 263.2 583.2 255.1 592 255.1C600.8 255.1 608 263.2 608 271.1V287.1H624C632.8 287.1 640 295.2 640 303.1C640 312.8 632.8 319.1 624 319.1H608V367.1H624C632.8 367.1 640 375.2 640 383.1C640 392.8 632.8 399.1 624 399.1H608V447.1H624C632.8 447.1 640 455.2 640 463.1C640 472.8 632.8 479.1 624 479.1H608V495.1C608 504.8 600.8 511.1 592 511.1C583.2 511.1 576 504.8 576 495.1V479.1H528V495.1C528 504.8 520.8 511.1 512 511.1C503.2 511.1 496 504.8 496 495.1V479.1H448V495.1C448 504.8 440.8 511.1 432 511.1C423.2 511.1 416 504.8 416 495.1V479.1H400C391.2 479.1 384 472.8 384 463.1C384 455.2 391.2 447.1 400 447.1H416V399.1H400C391.2 399.1 384 392.8 384 383.1C384 375.2 391.2 367.1 400 367.1H416V319.1H400C391.2 319.1 384 312.8 384 303.1C384 295.2 391.2 287.1 400 287.1H416V271.1C416 263.2 423.2 255.1 432 255.1C440.8 255.1 448 263.2 448 271.1V287.1H496V271.1C496 263.2 503.2 255.1 512 255.1V255.1zM576 367.1V319.1H528V367.1H576zM576 447.1V399.1H528V447.1H576zM448 319.1V367.1H496V319.1H448zM448 399.1V447.1H496V399.1H448z',
			),
		),
		'label'             => __( 'Mosquito Net', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'motorcycle'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M342.5 32C357.2 32 370.7 40.05 377.6 52.98L391.7 78.93L439.1 39.42C444.9 34.62 452.1 32 459.6 32H480C497.7 32 512 46.33 512 64V96C512 113.7 497.7 128 480 128H418.2L473.3 229.1C485.5 226.1 498.5 224 512 224C582.7 224 640 281.3 640 352C640 422.7 582.7 480 512 480C441.3 480 384 422.7 384 352C384 311.1 402.4 276.3 431.1 252.8L415.7 224.2C376.1 253.4 352 299.8 352 352C352 362.1 353.1 373.7 355.2 384H284.8C286.9 373.7 287.1 362.1 287.1 352C287.1 263.6 216.4 192 127.1 192H31.1V160C31.1 142.3 46.33 128 63.1 128H165.5C182.5 128 198.7 134.7 210.7 146.7L255.1 192L354.1 110.3L337.7 80H279.1C266.7 80 255.1 69.25 255.1 56C255.1 42.75 266.7 32 279.1 32L342.5 32zM448 352C448 387.3 476.7 416 512 416C547.3 416 576 387.3 576 352C576 316.7 547.3 288 512 288C509.6 288 507.2 288.1 504.9 288.4L533.1 340.6C539.4 352.2 535.1 366.8 523.4 373.1C511.8 379.4 497.2 375.1 490.9 363.4L462.7 311.2C453.5 322.3 448 336.5 448 352V352zM253.8 376C242.5 435.2 190.5 480 128 480C57.31 480 0 422.7 0 352C0 281.3 57.31 224 128 224C190.5 224 242.5 268.8 253.8 328H187.3C177.9 304.5 154.9 288 128 288C92.65 288 64 316.7 64 352C64 387.3 92.65 416 128 416C154.9 416 177.9 399.5 187.3 376H253.8zM96 352C96 334.3 110.3 320 128 320C145.7 320 160 334.3 160 352C160 369.7 145.7 384 128 384C110.3 384 96 369.7 96 352z',
			),
		),
		'label'             => __( 'Motorcycle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'mound'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M144.1 179.2C173.8 127.7 228.6 96 288 96C347.4 96 402.2 127.7 431.9 179.2L540.4 368C552.7 389.4 537.3 416 512.7 416H63.31C38.7 416 23.31 389.4 35.57 368L144.1 179.2z',
			),
		),
		'label'             => __( 'Mound', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'mountain'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M503.2 393.8L280.1 44.25c-10.42-16.33-37.73-16.33-48.15 0L8.807 393.8c-11.11 17.41-11.75 39.42-1.666 57.45C17.07 468.1 35.92 480 56.31 480h399.4c20.39 0 39.24-11.03 49.18-28.77C514.9 433.2 514.3 411.2 503.2 393.8zM256 111.8L327.8 224H256L208 288L177.2 235.3L256 111.8z',
			),
		),
		'label'             => __( 'Mountain', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'mountain-city'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M432 0C458.5 0 480 21.49 480 48V192H520V120C520 106.7 530.7 96 544 96C557.3 96 568 106.7 568 120V192H592C618.5 192 640 213.5 640 240V464C640 490.5 618.5 512 592 512H470.2C470.7 511.2 471.2 510.5 471.6 509.7C483.2 488.6 482.8 462.9 470.3 442.4L396.5 320H400C408.8 320 416 312.8 416 304V272C416 263.2 408.8 256 400 256H368C364.8 256 361.9 256.9 359.4 258.5L288 140.1V48C288 21.49 309.5 0 336 0L432 0zM368 64C359.2 64 352 71.16 352 80V112C352 120.8 359.2 128 368 128H400C408.8 128 416 120.8 416 112V80C416 71.16 408.8 64 400 64H368zM352 208C352 216.8 359.2 224 368 224H400C408.8 224 416 216.8 416 208V176C416 167.2 408.8 160 400 160H368C359.2 160 352 167.2 352 176V208zM512 304C512 312.8 519.2 320 528 320H560C568.8 320 576 312.8 576 304V272C576 263.2 568.8 256 560 256H528C519.2 256 512 263.2 512 272V304zM528 352C519.2 352 512 359.2 512 368V400C512 408.8 519.2 416 528 416H560C568.8 416 576 408.8 576 400V368C576 359.2 568.8 352 560 352H528zM442.9 458.9C449.4 469.7 449.7 483.2 443.6 494.2C437.5 505.2 426 512 413.5 512H34.46C21.1 512 10.5 505.2 4.404 494.2C-1.693 483.2-1.444 469.7 5.056 458.9L194.6 144.7C200.9 134.3 211.1 128 224 128C236 128 247.1 134.3 253.4 144.7L442.9 458.9zM223.1 188.9L150.4 310.8L174.1 352L222.1 288H283.8L223.1 188.9z',
			),
		),
		'label'             => __( 'Mountain City', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'environment', 'travel' ),
	),
	'mountain-sun'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M480 80C480 35.82 515.8 0 560 0C604.2 0 640 35.82 640 80C640 124.2 604.2 160 560 160C515.8 160 480 124.2 480 80zM0 456.1C0 445.6 2.964 435.3 8.551 426.4L225.3 81.01C231.9 70.42 243.5 64 256 64C268.5 64 280.1 70.42 286.8 81.01L412.7 281.7L460.9 202.7C464.1 196.1 472.2 192 480 192C487.8 192 495 196.1 499.1 202.7L631.1 419.1C636.9 428.6 640 439.7 640 450.9C640 484.6 612.6 512 578.9 512H55.91C25.03 512 .0006 486.1 .0006 456.1L0 456.1z',
			),
		),
		'label'             => __( 'Mountain Sun', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies', 'travel' ),
	),
	'mug-hot'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M400 192H32C14.25 192 0 206.3 0 224v192c0 53 43 96 96 96h192c53 0 96-43 96-96h16c61.75 0 112-50.25 112-112S461.8 192 400 192zM400 352H384V256h16C426.5 256 448 277.5 448 304S426.5 352 400 352zM107.9 100.7C120.3 107.1 128 121.4 128 136c0 13.25 10.75 23.89 24 23.89S176 148.1 176 135.7c0-31.34-16.83-60.64-43.91-76.45C119.7 52.03 112 38.63 112 24.28c0-13.25-10.75-24.14-24-24.14S64 11.03 64 24.28C64 55.63 80.83 84.92 107.9 100.7zM219.9 100.7C232.3 107.1 240 121.4 240 136c0 13.25 10.75 23.86 24 23.86S288 148.1 288 135.7c0-31.34-16.83-60.64-43.91-76.45C231.7 52.03 224 38.63 224 24.28c0-13.25-10.75-24.18-24-24.18S176 11.03 176 24.28C176 55.63 192.8 84.92 219.9 100.7z',
			),
		),
		'label'             => __( 'Mug Hot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'mug-saucer'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M512 32H120c-13.25 0-24 10.75-24 24L96.01 288c0 53 43 96 96 96h192C437 384 480 341 480 288h32c70.63 0 128-57.38 128-128S582.6 32 512 32zM512 224h-32V96h32c35.25 0 64 28.75 64 64S547.3 224 512 224zM560 416h-544C7.164 416 0 423.2 0 432C0 458.5 21.49 480 48 480h480c26.51 0 48-21.49 48-48C576 423.2 568.8 416 560 416z',
			),
		),
		'label'             => __( 'Mug Saucer', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'music'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.1 367.1c0 44.18-42.98 80-95.1 80s-95.1-35.82-95.1-79.1c0-44.18 42.98-79.1 95.1-79.1c11.28 0 21.95 1.92 32.01 4.898V148.1L192 224l-.0023 208.1C191.1 476.2 149 512 95.1 512S0 476.2 0 432c0-44.18 42.98-79.1 95.1-79.1c11.28 0 21.95 1.92 32 4.898V126.5c0-12.97 10.06-26.63 22.41-30.52l319.1-94.49C472.1 .6615 477.3 0 480 0c17.66 0 31.97 14.34 32 31.99L511.1 367.1z',
			),
		),
		'label'             => __( 'Music', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'education', 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'n'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 64.01v384c0 13.47-8.438 25.5-21.09 30.09C359.3 479.4 355.7 480 352 480c-9.312 0-18.38-4.078-24.59-11.52L64 152.4v295.6c0 17.67-14.31 32-32 32s-32-14.33-32-32v-384c0-13.47 8.438-25.5 21.09-30.09c12.62-4.516 26.84-.75 35.5 9.609L320 359.6v-295.6c0-17.67 14.31-32 32-32S384 46.34 384 64.01z',
			),
		),
		'label'             => __( 'N', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'naira-sign'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M262.5 256H320V64C320 46.33 334.3 32 352 32C369.7 32 384 46.33 384 64V256H416C433.7 256 448 270.3 448 288C448 305.7 433.7 320 416 320H384V448C384 462.1 374.8 474.5 361.3 478.6C347.8 482.7 333.2 477.5 325.4 465.8L228.2 320H128V448C128 465.7 113.7 480 96 480C78.33 480 64 465.7 64 448V320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H64V64C64 49.9 73.23 37.46 86.73 33.37C100.2 29.29 114.8 34.52 122.6 46.25L262.5 256zM305.1 320L320 342.3V320H305.1zM185.5 256L128 169.7V256H185.5z',
			),
		),
		'label'             => __( 'Naira Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'napster'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M298.3 373.6c-14.2 13.6-31.3 24.1-50.4 30.5-19-6.4-36.2-16.9-50.3-30.5h100.7zm44-199.6c20-16.9 43.6-29.2 69.6-36.2V299c0 219.4-328 217.6-328 .3V137.7c25.9 6.9 49.6 19.6 69.5 36.4 56.8-40 132.5-39.9 188.9-.1zm-208.8-58.5c64.4-60 164.3-60.1 228.9-.2-7.1 3.5-13.9 7.3-20.6 11.5-58.7-30.5-129.2-30.4-187.9 .1-6.3-4-13.9-8.2-20.4-11.4zM43.8 93.2v69.3c-58.4 36.5-58.4 121.1 .1 158.3 26.4 245.1 381.7 240.3 407.6 1.5l.3-1.7c58.7-36.3 58.9-121.7 .2-158.2V93.2c-17.3 .5-34 3-50.1 7.4-82-91.5-225.5-91.5-307.5 .1-16.3-4.4-33.1-7-50.6-7.5zM259.2 352s36-.3 61.3-1.5c10.2-.5 21.1-4 25.5-6.5 26.3-15.1 25.4-39.2 26.2-47.4-79.5-.6-99.9-3.9-113 55.4zm-135.5-55.3c.8 8.2-.1 32.3 26.2 47.4 4.4 2.5 15.2 6 25.5 6.5 25.3 1.1 61.3 1.5 61.3 1.5-13.2-59.4-33.7-56.1-113-55.4zm169.1 123.4c-3.2-5.3-6.9-7.3-6.9-7.3-24.8 7.3-52.2 6.9-75.9 0 0 0-2.9 1.5-6.4 6.6-2.8 4.1-3.7 9.6-3.7 9.6 29.1 17.6 67.1 17.6 96.2 0-.1-.1-.3-4-3.3-8.9z',
			),
		),
		'label'             => __( 'Napster', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'neos'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M415.4 512h-95.11L212.1 357.5v91.1L125.7 512H28V29.82L68.47 0h108.1l123.7 176.1V63.45L386.7 0h97.69v461.5zM38.77 35.27V496l72-52.88V194l215.5 307.6h84.79l52.35-38.17h-78.27L69 13zm82.54 466.6l80-58.78v-101l-79.76-114.4v220.9L49 501.9h72.34zM80.63 10.77l310.6 442.6h82.37V10.77h-79.75v317.6L170.9 10.77zM311 191.6l72 102.8V15.93l-72 53v122.7z',
			),
		),
		'label'             => __( 'Neos', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'network-wired'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M400 0C426.5 0 448 21.49 448 48V144C448 170.5 426.5 192 400 192H352V224H608C625.7 224 640 238.3 640 256C640 273.7 625.7 288 608 288H512V320H560C586.5 320 608 341.5 608 368V464C608 490.5 586.5 512 560 512H400C373.5 512 352 490.5 352 464V368C352 341.5 373.5 320 400 320H448V288H192V320H240C266.5 320 288 341.5 288 368V464C288 490.5 266.5 512 240 512H80C53.49 512 32 490.5 32 464V368C32 341.5 53.49 320 80 320H128V288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H288V192H240C213.5 192 192 170.5 192 144V48C192 21.49 213.5 0 240 0H400zM256 64V128H384V64H256zM224 448V384H96V448H224zM416 384V448H544V384H416z',
			),
		),
		'label'             => __( 'Network Wired', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'neuter'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M368 176c0-97.2-78.8-176-176-176c-97.2 0-176 78.8-176 176c0 86.26 62.1 157.9 144 172.1V496C160 504.8 167.2 512 176 512h32c8.838 0 16-7.164 16-16v-147C305.9 333.9 368 262.3 368 176zM192 272c-52.93 0-96-43.07-96-96c0-52.94 43.07-95.1 96-95.1c52.94 0 96 43.06 96 95.1C288 228.9 244.9 272 192 272z',
			),
		),
		'label'             => __( 'Neuter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'newspaper'                              => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 32H128C110.3 32 96 46.33 96 64v336C96 408.8 88.84 416 80 416S64 408.8 64 400V96H32C14.33 96 0 110.3 0 128v288c0 35.35 28.65 64 64 64h384c35.35 0 64-28.65 64-64V64C512 46.33 497.7 32 480 32zM272 416h-96C167.2 416 160 408.8 160 400C160 391.2 167.2 384 176 384h96c8.836 0 16 7.162 16 16C288 408.8 280.8 416 272 416zM272 320h-96C167.2 320 160 312.8 160 304C160 295.2 167.2 288 176 288h96C280.8 288 288 295.2 288 304C288 312.8 280.8 320 272 320zM432 416h-96c-8.836 0-16-7.164-16-16c0-8.838 7.164-16 16-16h96c8.836 0 16 7.162 16 16C448 408.8 440.8 416 432 416zM432 320h-96C327.2 320 320 312.8 320 304C320 295.2 327.2 288 336 288h96C440.8 288 448 295.2 448 304C448 312.8 440.8 320 432 320zM448 208C448 216.8 440.8 224 432 224h-256C167.2 224 160 216.8 160 208v-96C160 103.2 167.2 96 176 96h256C440.8 96 448 103.2 448 112V208z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M456 32h-304C121.1 32 96 57.13 96 88v320c0 13.22-10.77 24-24 24S48 421.2 48 408V112c0-13.25-10.75-24-24-24S0 98.75 0 112v296C0 447.7 32.3 480 72 480h352c48.53 0 88-39.47 88-88v-304C512 57.13 486.9 32 456 32zM464 392c0 22.06-17.94 40-40 40H139.9C142.5 424.5 144 416.4 144 408v-320c0-4.406 3.594-8 8-8h304c4.406 0 8 3.594 8 8V392zM264 272h-64C186.8 272 176 282.8 176 296S186.8 320 200 320h64C277.3 320 288 309.3 288 296S277.3 272 264 272zM408 272h-64C330.8 272 320 282.8 320 296S330.8 320 344 320h64c13.25 0 24-10.75 24-24S421.3 272 408 272zM264 352h-64c-13.25 0-24 10.75-24 24s10.75 24 24 24h64c13.25 0 24-10.75 24-24S277.3 352 264 352zM408 352h-64C330.8 352 320 362.8 320 376s10.75 24 24 24h64c13.25 0 24-10.75 24-24S421.3 352 408 352zM400 112h-192c-17.67 0-32 14.33-32 32v64c0 17.67 14.33 32 32 32h192c17.67 0 32-14.33 32-32v-64C432 126.3 417.7 112 400 112z',
			),
		),
		'label'             => __( 'Newspaper', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'travel' ),
	),
	'nfc-directional'                        => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M211.8 488.6C213.4 491.1 213.9 494.2 213.2 497.1C212.6 500 210.8 502.6 208.3 504.2C205.7 505.8 202.7 506.3 199.7 505.7C138.3 491.8 84.1 455.8 47.53 404.5C10.97 353.2-5.395 290.3 1.57 227.7C8.536 165 38.34 107.2 85.29 65.21C132.2 23.2 193-.0131 256 0C257.5 0 258.1 .2931 260.3 .8627C261.7 1.432 262.1 2.267 264 3.319C265.1 4.371 265.9 5.619 266.5 6.993C267 8.367 267.3 9.839 267.3 11.32V112.3L291.8 86.39C292.8 85.31 294 84.44 295.4 83.84C296.7 83.23 298.2 82.9 299.7 82.86C301.2 82.81 302.6 83.06 304 83.59C305.4 84.12 306.7 84.92 307.8 85.94C308.8 86.96 309.7 88.18 310.3 89.54C310.9 90.89 311.3 92.35 311.3 93.84C311.3 95.32 311.1 96.8 310.6 98.18C310 99.57 309.2 100.8 308.2 101.9L264.2 148.5C263.1 149.6 261.9 150.5 260.5 151.1C259 151.7 257.5 152 255.1 152C254.5 152 252.9 151.7 251.5 151.1C250.1 150.5 248.8 149.6 247.8 148.5L203.7 101.9C201.7 99.74 200.6 96.83 200.7 93.84C200.7 90.84 202 87.1 204.2 85.94C206.4 83.88 209.3 82.77 212.3 82.86C215.3 82.94 218.1 84.21 220.2 86.39L244.7 112.4V22.89C188.3 25.64 134.9 48.73 94.23 87.87C53.58 127 28.49 179.6 23.61 235.8C18.73 292 34.38 348.1 67.68 393.7C100.1 439.2 149.7 471.2 204.7 483.6C207.6 484.3 210.2 486.1 211.8 488.6L211.8 488.6zM171.4 126.1C170.6 127.4 169.5 128.5 168.3 129.3C147.8 143.2 131.1 161.9 119.5 183.8C107.9 205.7 101.8 230.1 101.8 254.9C101.8 279.7 107.9 304.1 119.5 325.1C131.1 347.9 147.8 366.6 168.3 380.5C170.8 382.2 172.5 384.8 173 387.8C173.6 390.7 172.1 393.8 171.3 396.2C169.6 398.7 166.1 400.4 164 400.1C161.1 401.5 158 400.9 155.6 399.2C132 383.2 112.8 361.7 99.46 336.5C86.15 311.4 79.19 283.4 79.19 254.9C79.19 226.5 86.15 198.4 99.46 173.3C112.8 148.1 132 126.6 155.6 110.6C156.8 109.8 158.2 109.2 159.6 108.8C161.1 108.5 162.6 108.5 164.1 108.8C165.5 109 166.9 109.6 168.2 110.4C169.5 111.2 170.5 112.3 171.4 113.5C172.2 114.7 172.8 116.1 173.1 117.6C173.4 119.1 173.4 120.6 173.1 122C172.8 123.5 172.3 124.9 171.4 126.1H171.4zM340.9 383.5C341.7 382.3 342.8 381.2 343.1 380.4V380.3C364.4 366.3 381.1 347.6 392.7 325.7C404.2 303.9 410.2 279.5 410.2 254.8C410.2 230.1 404.2 205.7 392.7 183.8C381.1 161.1 364.4 143.3 343.1 129.3C342.8 128.5 341.7 127.4 340.9 126.2C340.1 124.9 339.5 123.5 339.3 122.1C338.1 120.6 339 119.1 339.3 117.7C339.6 116.2 340.2 114.8 341 113.6C341.9 112.4 342.1 111.3 344.2 110.5C345.4 109.7 346.8 109.2 348.3 108.9C349.8 108.6 351.2 108.6 352.7 108.9C354.2 109.2 355.5 109.8 356.8 110.7C380.2 126.7 399.5 148.2 412.7 173.3C426 198.4 432.1 226.4 432.1 254.8C432.1 283.3 426 311.3 412.7 336.4C399.5 361.5 380.2 383 356.8 399C355.5 399.9 354.2 400.5 352.7 400.8C351.2 401.1 349.8 401.1 348.3 400.8C346.8 400.5 345.4 399.1 344.2 399.2C342.1 398.4 341.9 397.3 341 396.1C340.2 394.9 339.6 393.5 339.3 392C339 390.6 338.1 389.1 339.3 387.6C339.5 386.2 340.1 384.8 340.9 383.5V383.5zM312.3 6.307C368.5 19.04 418.7 50.28 455 95.01C485.4 132.6 504.6 178 510.3 226C515.9 274 507.9 322.7 487.1 366.3C466.2 409.9 433.5 446.8 392.6 472.6C351.7 498.3 304.4 512 256 512C254.5 512 253.1 511.7 251.7 511.1C250.3 510.6 249.1 509.7 248 508.7C246.1 507.6 246.1 506.4 245.6 505C245 503.6 244.7 502.2 244.7 500.7V401.5L220.2 427.5C218.1 429.7 215.3 430.1 212.3 431.1C209.3 431.2 206.4 430 204.2 427.1C202 425.9 200.7 423.1 200.7 420.1C200.6 417.1 201.7 414.2 203.7 412L247.8 365.4C249.1 363.2 252.9 362 255.1 362C259.1 362 262 363.2 264.2 365.4L308.2 412C310.3 414.2 311.4 417.1 311.3 420.1C311.2 423.1 309.9 425.9 307.8 427.1C305.6 430 302.7 431.2 299.7 431.1C296.7 430.1 293.8 429.7 291.8 427.5L267.3 401.6V489.1C323.7 486.3 377.1 463.3 417.8 424.1C458.5 384.1 483.6 332.4 488.5 276.2C493.3 219.1 477.7 163.9 444.4 118.3C411.1 72.75 362.4 40.79 307.4 28.36C305.9 28.03 304.6 27.42 303.3 26.57C302.1 25.71 301.1 24.63 300.3 23.37C299.5 22.12 298.1 20.72 298.7 19.26C298.5 17.8 298.5 16.3 298.8 14.85C299.2 13.41 299.8 12.04 300.6 10.82C301.5 9.61 302.6 8.577 303.8 7.784C305.1 6.99 306.5 6.451 307.9 6.198C309.4 5.945 310.9 5.982 312.3 6.307L312.3 6.307zM353.1 256.1C353.1 287.5 335.6 317.2 303.8 339.6C301.7 341.1 299 341.9 296.4 341.6C293.7 341.4 291.2 340.3 289.4 338.4L219.3 268.6C217.1 266.5 215.1 263.6 215.9 260.6C215.9 257.6 217.1 254.7 219.2 252.6C221.4 250.5 224.2 249.3 227.2 249.3C230.2 249.3 233.1 250.5 235.2 252.6L298.3 315.4C319.1 298.3 330.5 277.5 330.5 256.1C330.5 232.2 316.4 209.1 290.8 191C288.3 189.3 286.7 186.7 286.2 183.7C285.7 180.8 286.3 177.7 288.1 175.3C289.8 172.8 292.4 171.2 295.4 170.7C298.3 170.2 301.4 170.8 303.8 172.6C335.6 195 353.1 224.7 353.1 256.1V256.1zM216.7 341.5C213.7 342 210.7 341.3 208.2 339.6C176.5 317.2 158.1 287.5 158.1 256.1C158.1 224.7 176.5 195 208.2 172.6C210.4 171 213.1 170.3 215.7 170.5C218.4 170.8 220.8 171.9 222.7 173.8L292.8 243.6C294.9 245.7 296.1 248.6 296.1 251.6C296.1 254.6 294.1 257.4 292.8 259.6C290.7 261.7 287.8 262.9 284.9 262.9C281.9 262.9 278.1 261.7 276.9 259.6L213.8 196.7C192.9 214 181.6 234.7 181.6 256.1C181.6 279.1 195.7 303.1 221.3 321.1C223.7 322.9 225.4 325.5 225.9 328.5C226.4 331.4 225.7 334.4 224 336.9C222.3 339.3 219.6 341 216.7 341.5L216.7 341.5z',
			),
		),
		'label'             => __( 'NFC Directional', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'nfc-symbol'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M392.9 32.43C400.6 31.1 408.6 32.89 414.1 37.41C498.2 96.14 544 173.7 544 255.1C544 338.2 498.2 415.9 414.1 474.6C409.3 478.6 402.4 480.5 395.5 479.9C388.5 479.3 382 476.3 377.1 471.4L193.7 288.7C188.1 283.2 185 275.7 184.1 267.8C184.1 260 188.1 252.5 193.6 246.9C199.2 241.4 206.7 238.2 214.5 238.2C222.4 238.2 229.9 241.3 235.4 246.8L400.5 411.2C455.1 366.5 484.8 312 484.8 255.1C484.8 193.5 447.9 132.9 380.9 85.76C374.5 81.24 370.1 74.35 368.8 66.62C367.4 58.89 369.2 50.94 373.8 44.53C378.3 38.12 385.2 33.77 392.9 32.43V32.43zM186.9 479.6C179.2 480.9 171.3 479.1 164.8 474.6C81.67 415.9 35.84 338.2 35.84 255.1C35.84 173.7 81.67 96.14 164.8 37.41C170.5 33.4 177.4 31.53 184.4 32.12C191.3 32.71 197.8 35.72 202.7 40.63L386.1 223.3C391.7 228.8 394.8 236.3 394.8 244.2C394.9 251.1 391.8 259.5 386.2 265.1C380.7 270.6 373.2 273.8 365.3 273.8C357.5 273.8 349.1 270.7 344.4 265.2L179.3 100.7C124.7 145.9 95.03 199.9 95.03 255.1C95.03 318.5 131.9 379.1 198.1 426.2C205.4 430.8 209.7 437.6 211.1 445.4C212.4 453.1 210.6 461.1 206.1 467.5C201.6 473.9 194.7 478.2 186.9 479.6V479.6z',
			),
		),
		'label'             => __( 'Nfc Symbol', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'nimblr'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M246.6 299.3c15.57 0 27.15 11.46 27.15 27s-11.62 27-27.15 27c-15.7 0-27.15-11.57-27.15-27s11.55-27 27.15-27zM113 326.3c0-15.61 11.68-27 27.15-27s27.15 11.46 27.15 27-11.47 27-27.15 27c-15.44 0-27.15-11.31-27.15-27M191.8 159C157 159 89.45 178.8 59.25 227L14 0v335.5C14 433.1 93.61 512 191.8 512s177.8-78.95 177.8-176.5S290.1 159 191.8 159zm0 308.1c-73.27 0-132.5-58.9-132.5-131.6s59.24-131.6 132.5-131.6 132.5 58.86 132.5 131.5S265 467.1 191.8 467.1z',
			),
		),
		'label'             => __( 'Nimblr', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'node'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M316.3 452c-2.1 0-4.2-.6-6.1-1.6L291 439c-2.9-1.6-1.5-2.2-.5-2.5 3.8-1.3 4.6-1.6 8.7-4 .4-.2 1-.1 1.4 .1l14.8 8.8c.5 .3 1.3 .3 1.8 0L375 408c.5-.3 .9-.9 .9-1.6v-66.7c0-.7-.3-1.3-.9-1.6l-57.8-33.3c-.5-.3-1.2-.3-1.8 0l-57.8 33.3c-.6 .3-.9 1-.9 1.6v66.7c0 .6 .4 1.2 .9 1.5l15.8 9.1c8.6 4.3 13.9-.8 13.9-5.8v-65.9c0-.9 .7-1.7 1.7-1.7h7.3c.9 0 1.7 .7 1.7 1.7v65.9c0 11.5-6.2 18-17.1 18-3.3 0-6 0-13.3-3.6l-15.2-8.7c-3.7-2.2-6.1-6.2-6.1-10.5v-66.7c0-4.3 2.3-8.4 6.1-10.5l57.8-33.4c3.7-2.1 8.5-2.1 12.1 0l57.8 33.4c3.7 2.2 6.1 6.2 6.1 10.5v66.7c0 4.3-2.3 8.4-6.1 10.5l-57.8 33.4c-1.7 1.1-3.8 1.7-6 1.7zm46.7-65.8c0-12.5-8.4-15.8-26.2-18.2-18-2.4-19.8-3.6-19.8-7.8 0-3.5 1.5-8.1 14.8-8.1 11.9 0 16.3 2.6 18.1 10.6 .2 .8 .8 1.3 1.6 1.3h7.5c.5 0 .9-.2 1.2-.5 .3-.4 .5-.8 .4-1.3-1.2-13.8-10.3-20.2-28.8-20.2-16.5 0-26.3 7-26.3 18.6 0 12.7 9.8 16.1 25.6 17.7 18.9 1.9 20.4 4.6 20.4 8.3 0 6.5-5.2 9.2-17.4 9.2-15.3 0-18.7-3.8-19.8-11.4-.1-.8-.8-1.4-1.7-1.4h-7.5c-.9 0-1.7 .7-1.7 1.7 0 9.7 5.3 21.3 30.6 21.3 18.5 0 29-7.2 29-19.8zm54.5-50.1c0 6.1-5 11.1-11.1 11.1s-11.1-5-11.1-11.1c0-6.3 5.2-11.1 11.1-11.1 6-.1 11.1 4.8 11.1 11.1zm-1.8 0c0-5.2-4.2-9.3-9.4-9.3-5.1 0-9.3 4.1-9.3 9.3 0 5.2 4.2 9.4 9.3 9.4 5.2-.1 9.4-4.3 9.4-9.4zm-4.5 6.2h-2.6c-.1-.6-.5-3.8-.5-3.9-.2-.7-.4-1.1-1.3-1.1h-2.2v5h-2.4v-12.5h4.3c1.5 0 4.4 0 4.4 3.3 0 2.3-1.5 2.8-2.4 3.1 1.7 .1 1.8 1.2 2.1 2.8 .1 1 .3 2.7 .6 3.3zm-2.8-8.8c0-1.7-1.2-1.7-1.8-1.7h-2v3.5h1.9c1.6 0 1.9-1.1 1.9-1.8zM137.3 191c0-2.7-1.4-5.1-3.7-6.4l-61.3-35.3c-1-.6-2.2-.9-3.4-1h-.6c-1.2 0-2.3 .4-3.4 1L3.7 184.6C1.4 185.9 0 188.4 0 191l.1 95c0 1.3 .7 2.5 1.8 3.2 1.1 .7 2.5 .7 3.7 0L42 268.3c2.3-1.4 3.7-3.8 3.7-6.4v-44.4c0-2.6 1.4-5.1 3.7-6.4l15.5-8.9c1.2-.7 2.4-1 3.7-1 1.3 0 2.6 .3 3.7 1l15.5 8.9c2.3 1.3 3.7 3.8 3.7 6.4v44.4c0 2.6 1.4 5.1 3.7 6.4l36.4 20.9c1.1 .7 2.6 .7 3.7 0 1.1-.6 1.8-1.9 1.8-3.2l.2-95zM472.5 87.3v176.4c0 2.6-1.4 5.1-3.7 6.4l-61.3 35.4c-2.3 1.3-5.1 1.3-7.4 0l-61.3-35.4c-2.3-1.3-3.7-3.8-3.7-6.4v-70.8c0-2.6 1.4-5.1 3.7-6.4l61.3-35.4c2.3-1.3 5.1-1.3 7.4 0l15.3 8.8c1.7 1 3.9-.3 3.9-2.2v-94c0-2.8 3-4.6 5.5-3.2l36.5 20.4c2.3 1.2 3.8 3.7 3.8 6.4zm-46 128.9c0-.7-.4-1.3-.9-1.6l-21-12.2c-.6-.3-1.3-.3-1.9 0l-21 12.2c-.6 .3-.9 .9-.9 1.6v24.3c0 .7 .4 1.3 .9 1.6l21 12.1c.6 .3 1.3 .3 1.8 0l21-12.1c.6-.3 .9-.9 .9-1.6v-24.3zm209.8-.7c2.3-1.3 3.7-3.8 3.7-6.4V192c0-2.6-1.4-5.1-3.7-6.4l-60.9-35.4c-2.3-1.3-5.1-1.3-7.4 0l-61.3 35.4c-2.3 1.3-3.7 3.8-3.7 6.4v70.8c0 2.7 1.4 5.1 3.7 6.4l60.9 34.7c2.2 1.3 5 1.3 7.3 0l36.8-20.5c2.5-1.4 2.5-5 0-6.4L550 241.6c-1.2-.7-1.9-1.9-1.9-3.2v-22.2c0-1.3 .7-2.5 1.9-3.2l19.2-11.1c1.1-.7 2.6-.7 3.7 0l19.2 11.1c1.1 .7 1.9 1.9 1.9 3.2v17.4c0 2.8 3.1 4.6 5.6 3.2l36.7-21.3zM559 219c-.4 .3-.7 .7-.7 1.2v13.6c0 .5 .3 1 .7 1.2l11.8 6.8c.4 .3 1 .3 1.4 0L584 235c.4-.3 .7-.7 .7-1.2v-13.6c0-.5-.3-1-.7-1.2l-11.8-6.8c-.4-.3-1-.3-1.4 0L559 219zm-254.2 43.5v-70.4c0-2.6-1.6-5.1-3.9-6.4l-61.1-35.2c-2.1-1.2-5-1.4-7.4 0l-61.1 35.2c-2.3 1.3-3.9 3.7-3.9 6.4v70.4c0 2.8 1.9 5.2 4 6.4l61.2 35.2c2.4 1.4 5.2 1.3 7.4 0l61-35.2c1.8-1 3.1-2.7 3.6-4.7 .1-.5 .2-1.1 .2-1.7zm-74.3-124.9l-.8 .5h1.1l-.3-.5zm76.2 130.2l-.4-.7v.9l.4-.2z',
			),
		),
		'label'             => __( 'Node.js', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'node-js'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 508c-6.7 0-13.5-1.8-19.4-5.2l-61.7-36.5c-9.2-5.2-4.7-7-1.7-8 12.3-4.3 14.8-5.2 27.9-12.7 1.4-.8 3.2-.5 4.6 .4l47.4 28.1c1.7 1 4.1 1 5.7 0l184.7-106.6c1.7-1 2.8-3 2.8-5V149.3c0-2.1-1.1-4-2.9-5.1L226.8 37.7c-1.7-1-4-1-5.7 0L36.6 144.3c-1.8 1-2.9 3-2.9 5.1v213.1c0 2 1.1 4 2.9 4.9l50.6 29.2c27.5 13.7 44.3-2.4 44.3-18.7V167.5c0-3 2.4-5.3 5.4-5.3h23.4c2.9 0 5.4 2.3 5.4 5.3V378c0 36.6-20 57.6-54.7 57.6-10.7 0-19.1 0-42.5-11.6l-48.4-27.9C8.1 389.2 .7 376.3 .7 362.4V149.3c0-13.8 7.4-26.8 19.4-33.7L204.6 9c11.7-6.6 27.2-6.6 38.8 0l184.7 106.7c12 6.9 19.4 19.8 19.4 33.7v213.1c0 13.8-7.4 26.7-19.4 33.7L243.4 502.8c-5.9 3.4-12.6 5.2-19.4 5.2zm149.1-210.1c0-39.9-27-50.5-83.7-58-57.4-7.6-63.2-11.5-63.2-24.9 0-11.1 4.9-25.9 47.4-25.9 37.9 0 51.9 8.2 57.7 33.8 .5 2.4 2.7 4.2 5.2 4.2h24c1.5 0 2.9-.6 3.9-1.7s1.5-2.6 1.4-4.1c-3.7-44.1-33-64.6-92.2-64.6-52.7 0-84.1 22.2-84.1 59.5 0 40.4 31.3 51.6 81.8 56.6 60.5 5.9 65.2 14.8 65.2 26.7 0 20.6-16.6 29.4-55.5 29.4-48.9 0-59.6-12.3-63.2-36.6-.4-2.6-2.6-4.5-5.3-4.5h-23.9c-3 0-5.3 2.4-5.3 5.3 0 31.1 16.9 68.2 97.8 68.2 58.4-.1 92-23.2 92-63.4z',
			),
		),
		'label'             => __( 'Node.js JS', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'not-equal'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M432 336c0 17.69-14.31 32.01-32 32.01H187.8l-65.15 97.74C116.5 474.1 106.3 480 95.97 480c-6.094 0-12.25-1.75-17.72-5.375c-14.72-9.812-18.69-29.66-8.875-44.38l41.49-62.23H48c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h105.5l63.1-96H48c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h212.2l65.18-97.77c9.781-14.69 29.62-18.66 44.37-8.875c14.72 9.812 18.69 29.66 8.875 44.38l-41.51 62.27H400c17.69 0 32 14.31 32 31.99s-14.31 32.01-32 32.01h-105.6l-63.1 96H400C417.7 304 432 318.3 432 336z',
			),
		),
		'label'             => __( 'Not Equal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'note-sticky'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 32h-352C21.49 32 0 53.49 0 80v352C0 458.5 21.49 480 48 480h245.5c16.97 0 33.25-6.744 45.26-18.75l90.51-90.51C441.3 358.7 448 342.5 448 325.5V80C448 53.49 426.5 32 400 32zM64 96h320l-.001 224H320c-17.67 0-32 14.33-32 32v64H64V96z',
			),
			'regular' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M384 32H64.01C28.66 32 .0085 60.65 .0065 96L0 415.1C-.002 451.3 28.65 480 64 480h232.1c25.46 0 49.88-10.12 67.89-28.12l55.88-55.89C437.9 377.1 448 353.6 448 328.1V96C448 60.8 419.2 32 384 32zM52.69 427.3C50.94 425.6 48 421.8 48 416l.0195-319.1C48.02 87.18 55.2 80 64.02 80H384c8.674 0 16 7.328 16 16v192h-88C281.1 288 256 313.1 256 344v88H64C58.23 432 54.44 429.1 52.69 427.3zM330.1 417.9C322.9 425.1 313.8 429.6 304 431.2V344c0-4.406 3.594-8 8-8h87.23c-1.617 9.812-6.115 18.88-13.29 26.05L330.1 417.9z',
			),
		),
		'label'             => __( 'Note Sticky', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'notes-medical'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 144V384l-96 96H144C117.5 480 96 458.5 96 432v-288C96 117.5 117.5 96 144 96h288C458.5 96 480 117.5 480 144zM384 264C384 259.6 380.4 256 376 256H320V200C320 195.6 316.4 192 312 192h-48C259.6 192 256 195.6 256 200V256H200C195.6 256 192 259.6 192 264v48C192 316.4 195.6 320 200 320H256v56c0 4.375 3.625 8 8 8h48c4.375 0 8-3.625 8-8V320h56C380.4 320 384 316.4 384 312V264zM0 360v-240C0 53.83 53.83 0 120 0h240C373.3 0 384 10.75 384 24S373.3 48 360 48h-240C80.3 48 48 80.3 48 120v240C48 373.3 37.25 384 24 384S0 373.3 0 360z',
			),
		),
		'label'             => __( 'Notes Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'npm'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M288 288h-32v-64h32v64zm288-128v192H288v32H160v-32H0V160h576zm-416 32H32v128h64v-96h32v96h32V192zm160 0H192v160h64v-32h64V192zm224 0H352v128h64v-96h32v96h32v-96h32v96h32V192z',
			),
		),
		'label'             => __( 'npm', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ns8'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M104.3 269.2h26.07V242.1H104.3zm52.47-26.18-.055-26.18v-.941a39.33 39.33 0 0 0 -78.64 .941v.166h26.4v-.166a12.98 12.98 0 0 1 25.96 0v26.18zm52.36 25.85a91.1 91.1 0 0 1 -91.1 91.1h-.609a91.1 91.1 0 0 1 -91.1-91.1H0v.166A117.3 117.3 0 0 0 117.4 386.3h.775A117.3 117.3 0 0 0 235.5 268.8V242.8H209.1zm-157.2 0a65.36 65.36 0 0 0 130.7 0H156.3a39.02 39.02 0 0 1 -78.04 0V242.9H51.97v-26.62A65.42 65.42 0 0 1 182.8 217.5v25.29h26.34V217.5a91.76 91.76 0 0 0 -183.5 0v25.4H51.91zm418.4-71.17c13.67 0 24.57 6.642 30.05 18.26l.719 1.549 23.25-11.51-.609-1.439c-8.025-19.26-28.5-31.27-53.41-31.27-23.13 0-43.61 11.4-50.97 28.45-.123 26.88-.158 23.9 0 24.85 4.7 11.01 14.56 19.37 28.67 24.24a102 102 0 0 0 19.81 3.984c5.479 .72 10.63 1.384 15.83 3.1 6.364 2.1 10.46 5.257 12.84 9.851v9.851c-3.708 7.527-13.78 12.34-25.79 12.34-14.33 0-25.96-6.918-31.93-19.04l-.72-1.494L415 280.9l.553 1.439c7.915 19.43 29.61 32.04 55.29 32.04 23.63 0 44.61-11.4 52.3-28.45l.166-25.9-.166-.664c-4.87-11.01-15.22-19.65-28.94-24.24-7.693-2.712-14.34-3.6-20.7-4.427a83.78 83.78 0 0 1 -14.83-2.878c-6.31-1.937-10.4-5.092-12.62-9.63v-8.412C449.5 202.4 458.1 197.7 470.3 197.7zM287.6 311.3h26.07v-68.4H287.6zm352.3-53.3c-2.933-6.254-8.3-12.01-15.44-16.71A37.99 37.99 0 0 0 637.4 226l.166-25.35-.166-.664C630 184 610.7 173.3 589.3 173.3S548.5 184 541.1 199.1l-.166 25.35 .166 .664a39.64 39.64 0 0 0 13.01 15.33c-7.2 4.7-12.51 10.46-15.44 16.71l-.166 28.89 .166 .72c7.582 15.99 27.89 26.73 50.58 26.73s43.06-10.74 50.58-26.73l.166-28.89zm-73.22-50.81c3.6-6.31 12.56-10.52 22.58-10.52s19.04 4.206 22.64 10.52v13.73c-3.542 6.2-12.56 10.35-22.64 10.35s-19.09-4.15-22.58-10.35zm47.32 72.17c-3.764 6.641-13.34 10.9-24.68 10.9-11.13 0-20.98-4.372-24.68-10.9V263.3c3.708-6.309 13.5-10.52 24.68-10.52 11.35 0 20.92 4.15 24.68 10.52zM376.4 265.1l-59.83-89.71h-29v40.62h26.51v.387l62.54 94.08H402.3V176.2H376.4z',
			),
		),
		'label'             => __( 'NS8', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'nutritionix'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 400,
				'height' => 512,
				'path'   => 'M88 8.1S221.4-.1 209 112.5c0 0 19.1-74.9 103-40.6 0 0-17.7 74-88 56 0 0 14.6-54.6 66.1-56.6 0 0-39.9-10.3-82.1 48.8 0 0-19.8-94.5-93.6-99.7 0 0 75.2 19.4 77.6 107.5 0 .1-106.4 7-104-119.8zm312 315.6c0 48.5-9.7 95.3-32 132.3-42.2 30.9-105 48-168 48-62.9 0-125.8-17.1-168-48C9.7 419 0 372.2 0 323.7 0 275.3 17.7 229 40 192c42.2-30.9 97.1-48.6 160-48.6 63 0 117.8 17.6 160 48.6 22.3 37 40 83.3 40 131.7zM120 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM192 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM264 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zM336 428c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm0-66.2c0-15.5-12.5-28-28-28s-28 12.5-28 28 12.5 28 28 28 28-12.5 28-28zm24-39.6c-4.8-22.3-7.4-36.9-16-56-38.8-19.9-90.5-32-144-32S94.8 180.1 56 200c-8.8 19.5-11.2 33.9-16 56 42.2-7.9 98.7-14.8 160-14.8s117.8 6.9 160 14.8z',
			),
		),
		'label'             => __( 'Nutritionix', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'o'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 32.01c-123.5 0-224 100.5-224 224s100.5 224 224 224s224-100.5 224-224S347.5 32.01 224 32.01zM224 416c-88.22 0-160-71.78-160-160s71.78-159.1 160-159.1s160 71.78 160 159.1S312.2 416 224 416z',
			),
		),
		'label'             => __( 'O', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'object-group'                           => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M128 160C128 142.3 142.3 128 160 128H288C305.7 128 320 142.3 320 160V256C320 273.7 305.7 288 288 288H160C142.3 288 128 273.7 128 256V160zM288 320C323.3 320 352 291.3 352 256V224H416C433.7 224 448 238.3 448 256V352C448 369.7 433.7 384 416 384H288C270.3 384 256 369.7 256 352V320H288zM32 119.4C12.87 108.4 0 87.69 0 64C0 28.65 28.65 0 64 0C87.69 0 108.4 12.87 119.4 32H456.6C467.6 12.87 488.3 0 512 0C547.3 0 576 28.65 576 64C576 87.69 563.1 108.4 544 119.4V392.6C563.1 403.6 576 424.3 576 448C576 483.3 547.3 512 512 512C488.3 512 467.6 499.1 456.6 480H119.4C108.4 499.1 87.69 512 64 512C28.65 512 0 483.3 0 448C0 424.3 12.87 403.6 32 392.6V119.4zM119.4 96C113.8 105.7 105.7 113.8 96 119.4V392.6C105.7 398.2 113.8 406.3 119.4 416H456.6C462.2 406.3 470.3 398.2 480 392.6V119.4C470.3 113.8 462.2 105.7 456.6 96H119.4z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M128 160C128 142.3 142.3 128 160 128H288C305.7 128 320 142.3 320 160V256C320 273.7 305.7 288 288 288H160C142.3 288 128 273.7 128 256V160zM288 320C323.3 320 352 291.3 352 256V224H416C433.7 224 448 238.3 448 256V352C448 369.7 433.7 384 416 384H288C270.3 384 256 369.7 256 352V320H288zM48 115.8C38.18 106.1 32 94.22 32 80C32 53.49 53.49 32 80 32C94.22 32 106.1 38.18 115.8 48H460.2C469 38.18 481.8 32 496 32C522.5 32 544 53.49 544 80C544 94.22 537.8 106.1 528 115.8V396.2C537.8 405 544 417.8 544 432C544 458.5 522.5 480 496 480C481.8 480 469 473.8 460.2 464H115.8C106.1 473.8 94.22 480 80 480C53.49 480 32 458.5 32 432C32 417.8 38.18 405 48 396.2V115.8zM96 125.3V386.7C109.6 391.6 120.4 402.4 125.3 416H450.7C455.6 402.4 466.4 391.6 480 386.7V125.3C466.4 120.4 455.6 109.6 450.7 96H125.3C120.4 109.6 109.6 120.4 96 125.3z',
			),
		),
		'label'             => __( 'Object Group', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'object-ungroup'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 119.4C12.87 108.4 0 87.69 0 64C0 28.65 28.65 0 64 0C87.69 0 108.4 12.87 119.4 32H328.6C339.6 12.87 360.3 0 384 0C419.3 0 448 28.65 448 64C448 87.69 435.1 108.4 416 119.4V232.6C435.1 243.6 448 264.3 448 288C448 323.3 419.3 352 384 352C360.3 352 339.6 339.1 328.6 320H119.4C108.4 339.1 87.69 352 64 352C28.65 352 0 323.3 0 288C0 264.3 12.87 243.6 32 232.6V119.4zM96 119.4V232.6C105.7 238.2 113.8 246.3 119.4 256H328.6C334.2 246.3 342.3 238.2 352 232.6V119.4C342.3 113.8 334.2 105.7 328.6 96H119.4C113.8 105.7 105.7 113.8 96 119.4V119.4zM311.4 480C300.4 499.1 279.7 512 256 512C220.7 512 192 483.3 192 448C192 424.3 204.9 403.6 224 392.6V352H288V392.6C297.7 398.2 305.8 406.3 311.4 416H520.6C526.2 406.3 534.3 398.2 544 392.6V279.4C534.3 273.8 526.2 265.7 520.6 255.1H474.5C469.1 240.6 459.9 227.1 448 216.4V191.1H520.6C531.6 172.9 552.3 159.1 576 159.1C611.3 159.1 640 188.7 640 223.1C640 247.7 627.1 268.4 608 279.4V392.6C627.1 403.6 640 424.3 640 448C640 483.3 611.3 512 576 512C552.3 512 531.6 499.1 520.6 480H311.4z',
			),
			'regular' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M64 0C90.86 0 113.9 16.55 123.3 40H324.7C334.1 16.55 357.1 0 384 0C419.3 0 448 28.65 448 64C448 90.86 431.5 113.9 408 123.3V228.7C431.5 238.1 448 261.1 448 288C448 323.3 419.3 352 384 352C357.1 352 334.1 335.5 324.7 312H123.3C113.9 335.5 90.86 352 64 352C28.65 352 0 323.3 0 288C0 261.1 16.55 238.1 40 228.7V123.3C16.55 113.9 0 90.86 0 64C0 28.65 28.65 0 64 0V0zM64 80C72.84 80 80 72.84 80 64C80 56.1 74.28 49.54 66.75 48.24C65.86 48.08 64.94 48 64 48C55.16 48 48 55.16 48 64C48 64.07 48 64.14 48 64.21C48.01 65.07 48.09 65.92 48.24 66.75C49.54 74.28 56.1 80 64 80zM384 48C383.1 48 382.1 48.08 381.2 48.24C373.7 49.54 368 56.1 368 64C368 72.84 375.2 80 384 80C391.9 80 398.5 74.28 399.8 66.75C399.9 65.86 400 64.94 400 64C400 55.16 392.8 48 384 48V48zM324.7 88H123.3C116.9 104 104 116.9 88 123.3V228.7C104 235.1 116.9 247.1 123.3 264H324.7C331.1 247.1 343.1 235.1 360 228.7V123.3C343.1 116.9 331.1 104 324.7 88zM400 288C400 287.1 399.9 286.1 399.8 285.2C398.5 277.7 391.9 272 384 272C375.2 272 368 279.2 368 288C368 295.9 373.7 302.5 381.2 303.8C382.1 303.9 383.1 304 384 304C392.8 304 400 296.8 400 288zM64 272C56.1 272 49.54 277.7 48.24 285.2C48.08 286.1 48 287.1 48 288C48 296.8 55.16 304 64 304L64.22 303.1C65.08 303.1 65.93 303.9 66.75 303.8C74.28 302.5 80 295.9 80 288C80 279.2 72.84 272 64 272zM471.3 248C465.8 235.9 457.8 225.2 448 216.4V200H516.7C526.1 176.5 549.1 160 576 160C611.3 160 640 188.7 640 224C640 250.9 623.5 273.9 600 283.3V388.7C623.5 398.1 640 421.1 640 448C640 483.3 611.3 512 576 512C549.1 512 526.1 495.5 516.7 472H315.3C305.9 495.5 282.9 512 256 512C220.7 512 192 483.3 192 448C192 421.1 208.5 398.1 232 388.7V352H280V388.7C296 395.1 308.9 407.1 315.3 424H516.7C523.1 407.1 535.1 395.1 552 388.7V283.3C535.1 276.9 523.1 264 516.7 248H471.3zM592 224C592 215.2 584.8 208 576 208C575.1 208 574.1 208.1 573.2 208.2C565.7 209.5 560 216.1 560 224C560 232.8 567.2 240 576 240C583.9 240 590.5 234.3 591.8 226.8C591.9 225.9 592 224.9 592 224zM240 448C240 456.8 247.2 464 256 464C256.9 464 257.9 463.9 258.8 463.8C266.3 462.5 272 455.9 272 448C272 439.2 264.8 432 256 432C248.1 432 241.5 437.7 240.2 445.2C240.1 446.1 240 447.1 240 448zM573.2 463.8C574.1 463.9 575.1 464 576 464C584.8 464 592 456.8 592 448C592 447.1 591.9 446.2 591.8 445.3L591.8 445.2C590.5 437.7 583.9 432 576 432C567.2 432 560 439.2 560 448C560 455.9 565.7 462.5 573.2 463.8V463.8z',
			),
		),
		'label'             => __( 'Object Ungroup', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'octopus-deploy'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M455.6 349.2c-45.89-39.09-36.67-77.88-16.09-128.1C475.2 134 415.1 34.14 329.9 8.3 237-19.6 134.3 24.34 99.68 117.1a180.9 180.9 0 0 0 -10.99 73.54c1.733 29.54 14.72 52.97 24.09 80.3 17.2 50.16-28.1 92.74-66.66 117.6-46.81 30.2-36.32 39.86-8.428 41.86 23.38 1.68 44.48-4.548 65.26-15.05 9.2-4.647 40.69-18.93 45.13-28.59C135.9 413.4 111.1 459.5 126.6 488.9c19.1 36.23 67.11-31.77 76.71-45.81 8.591-12.57 42.96-81.28 63.63-46.93 18.86 31.36 8.6 76.39 35.74 104.6 32.85 34.2 51.15-18.31 51.41-44.22 .163-16.41-6.1-95.85 29.9-59.94C405.4 418 436.9 467.8 472.6 463.6c38.74-4.516-22.12-67.97-28.26-78.69 5.393 4.279 53.67 34.13 53.82 9.52C498.2 375.7 468 359.8 455.6 349.2z',
			),
		),
		'label'             => __( 'Octopus Deploy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'odnoklassniki'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M275.1 334c-27.4 17.4-65.1 24.3-90 26.9l20.9 20.6 76.3 76.3c27.9 28.6-17.5 73.3-45.7 45.7-19.1-19.4-47.1-47.4-76.3-76.6L84 503.4c-28.2 27.5-73.6-17.6-45.4-45.7 19.4-19.4 47.1-47.4 76.3-76.3l20.6-20.6c-24.6-2.6-62.9-9.1-90.6-26.9-32.6-21-46.9-33.3-34.3-59 7.4-14.6 27.7-26.9 54.6-5.7 0 0 36.3 28.9 94.9 28.9s94.9-28.9 94.9-28.9c26.9-21.1 47.1-8.9 54.6 5.7 12.4 25.7-1.9 38-34.5 59.1zM30.3 129.7C30.3 58 88.6 0 160 0s129.7 58 129.7 129.7c0 71.4-58.3 129.4-129.7 129.4s-129.7-58-129.7-129.4zm66 0c0 35.1 28.6 63.7 63.7 63.7s63.7-28.6 63.7-63.7c0-35.4-28.6-64-63.7-64s-63.7 28.6-63.7 64z',
			),
		),
		'label'             => __( 'Odnoklassniki', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'odnoklassniki-square'                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M184.2 177.1c0-22.1 17.9-40 39.8-40s39.8 17.9 39.8 40c0 22-17.9 39.8-39.8 39.8s-39.8-17.9-39.8-39.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-305.1 97.1c0 44.6 36.4 80.9 81.1 80.9s81.1-36.2 81.1-80.9c0-44.8-36.4-81.1-81.1-81.1s-81.1 36.2-81.1 81.1zm174.5 90.7c-4.6-9.1-17.3-16.8-34.1-3.6 0 0-22.7 18-59.3 18s-59.3-18-59.3-18c-16.8-13.2-29.5-5.5-34.1 3.6-7.9 16.1 1.1 23.7 21.4 37 17.3 11.1 41.2 15.2 56.6 16.8l-12.9 12.9c-18.2 18-35.5 35.5-47.7 47.7-17.6 17.6 10.7 45.8 28.4 28.6l47.7-47.9c18.2 18.2 35.7 35.7 47.7 47.9 17.6 17.2 46-10.7 28.6-28.6l-47.7-47.7-13-12.9c15.5-1.6 39.1-5.9 56.2-16.8 20.4-13.3 29.3-21 21.5-37z',
			),
		),
		'label'             => __( 'Odnoklassniki Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'oil-can'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 128V160H368.9C378.8 160 388.6 162.3 397.5 166.8L448 192L615 156.2C633.1 152.3 645.7 173.8 633.5 187.7L451.1 394.3C438.1 408.1 421.5 416 403.1 416H144C117.5 416 96 394.5 96 368V346.7L28.51 316.7C11.17 308.1 0 291.8 0 272.8V208C0 181.5 21.49 160 48 160H224V128H192C174.3 128 160 113.7 160 96C160 78.33 174.3 64 192 64H320C337.7 64 352 78.33 352 96C352 113.7 337.7 128 320 128L288 128zM96 208H48V272.8L96 294.1V208z',
			),
		),
		'label'             => __( 'Oil Can', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'oil-well'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M569.8 215.8C581.2 258.5 555.9 302.4 513.2 313.8L497.7 317.9C480.7 322.5 463.1 312.4 458.5 295.3L433.3 201.3L95.1 288.8V448H137.3L190.4 296.3L264.1 276.1L238.7 352H305.3L277.9 273.6L340 257.5L406.7 448H544C561.7 448 576 462.3 576 480C576 497.7 561.7 512 544 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H48V184C48 170.7 58.75 160 72 160C85.25 160 96 170.7 96 184V222.6L228.2 188.4L241.8 149.4C246.3 136.6 258.4 128 272 128C285.6 128 297.7 136.6 302.2 149.4L308.5 167.5L416.8 139.5L392.3 48.04C387.7 30.97 397.8 13.42 414.9 8.848L430.4 4.707C473-6.729 516.9 18.6 528.3 61.28L569.8 215.8zM205.1 448H338.9L327.7 416H216.3L205.1 448z',
			),
		),
		'label'             => __( 'Oil Well', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology' ),
	),
	'old-republic'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M235.8 10.23c7.5-.31 15-.28 22.5-.09 3.61 .14 7.2 .4 10.79 .73 4.92 .27 9.79 1.03 14.67 1.62 2.93 .43 5.83 .98 8.75 1.46 7.9 1.33 15.67 3.28 23.39 5.4 12.24 3.47 24.19 7.92 35.76 13.21 26.56 12.24 50.94 29.21 71.63 49.88 20.03 20.09 36.72 43.55 48.89 69.19 1.13 2.59 2.44 5.1 3.47 7.74 2.81 6.43 5.39 12.97 7.58 19.63 4.14 12.33 7.34 24.99 9.42 37.83 .57 3.14 1.04 6.3 1.4 9.47 .55 3.83 .94 7.69 1.18 11.56 .83 8.34 .84 16.73 .77 25.1-.07 4.97-.26 9.94-.75 14.89-.24 3.38-.51 6.76-.98 10.12-.39 2.72-.63 5.46-1.11 8.17-.9 5.15-1.7 10.31-2.87 15.41-4.1 18.5-10.3 36.55-18.51 53.63-15.77 32.83-38.83 62.17-67.12 85.12a246.5 246.5 0 0 1 -56.91 34.86c-6.21 2.68-12.46 5.25-18.87 7.41-3.51 1.16-7.01 2.38-10.57 3.39-6.62 1.88-13.29 3.64-20.04 5-4.66 .91-9.34 1.73-14.03 2.48-5.25 .66-10.5 1.44-15.79 1.74-6.69 .66-13.41 .84-20.12 .81-6.82 .03-13.65-.12-20.45-.79-3.29-.23-6.57-.5-9.83-.95-2.72-.39-5.46-.63-8.17-1.11-4.12-.72-8.25-1.37-12.35-2.22-4.25-.94-8.49-1.89-12.69-3.02-8.63-2.17-17.08-5.01-25.41-8.13-10.49-4.12-20.79-8.75-30.64-14.25-2.14-1.15-4.28-2.29-6.35-3.57-11.22-6.58-21.86-14.1-31.92-22.34-34.68-28.41-61.41-66.43-76.35-108.7-3.09-8.74-5.71-17.65-7.8-26.68-1.48-6.16-2.52-12.42-3.58-18.66-.4-2.35-.61-4.73-.95-7.09-.6-3.96-.75-7.96-1.17-11.94-.8-9.47-.71-18.99-.51-28.49 .14-3.51 .34-7.01 .7-10.51 .31-3.17 .46-6.37 .92-9.52 .41-2.81 .65-5.65 1.16-8.44 .7-3.94 1.3-7.9 2.12-11.82 3.43-16.52 8.47-32.73 15.26-48.18 1.15-2.92 2.59-5.72 3.86-8.59 8.05-16.71 17.9-32.56 29.49-47.06 20-25.38 45.1-46.68 73.27-62.47 7.5-4.15 15.16-8.05 23.07-11.37 15.82-6.88 32.41-11.95 49.31-15.38 3.51-.67 7.04-1.24 10.56-1.85 2.62-.47 5.28-.7 7.91-1.08 3.53-.53 7.1-.68 10.65-1.04 2.46-.24 4.91-.36 7.36-.51m8.64 24.41c-9.23 .1-18.43 .99-27.57 2.23-7.3 1.08-14.53 2.6-21.71 4.3-13.91 3.5-27.48 8.34-40.46 14.42-10.46 4.99-20.59 10.7-30.18 17.22-4.18 2.92-8.4 5.8-12.34 9.03-5.08 3.97-9.98 8.17-14.68 12.59-2.51 2.24-4.81 4.7-7.22 7.06-28.22 28.79-48.44 65.39-57.5 104.7-2.04 8.44-3.54 17.02-4.44 25.65-1.1 8.89-1.44 17.85-1.41 26.8 .11 7.14 .38 14.28 1.22 21.37 .62 7.12 1.87 14.16 3.2 21.18 1.07 4.65 2.03 9.32 3.33 13.91 6.29 23.38 16.5 45.7 30.07 65.75 8.64 12.98 18.78 24.93 29.98 35.77 16.28 15.82 35.05 29.04 55.34 39.22 7.28 3.52 14.66 6.87 22.27 9.63 5.04 1.76 10.06 3.57 15.22 4.98 11.26 3.23 22.77 5.6 34.39 7.06 2.91 .29 5.81 .61 8.72 .9 13.82 1.08 27.74 1 41.54-.43 4.45-.6 8.92-.99 13.35-1.78 3.63-.67 7.28-1.25 10.87-2.1 4.13-.98 8.28-1.91 12.36-3.07 26.5-7.34 51.58-19.71 73.58-36.2 15.78-11.82 29.96-25.76 42.12-41.28 3.26-4.02 6.17-8.31 9.13-12.55 3.39-5.06 6.58-10.25 9.6-15.54 2.4-4.44 4.74-8.91 6.95-13.45 5.69-12.05 10.28-24.62 13.75-37.49 2.59-10.01 4.75-20.16 5.9-30.45 1.77-13.47 1.94-27.1 1.29-40.65-.29-3.89-.67-7.77-1-11.66-2.23-19.08-6.79-37.91-13.82-55.8-5.95-15.13-13.53-29.63-22.61-43.13-12.69-18.8-28.24-35.68-45.97-49.83-25.05-20-54.47-34.55-85.65-42.08-7.78-1.93-15.69-3.34-23.63-4.45-3.91-.59-7.85-.82-11.77-1.24-7.39-.57-14.81-.72-22.22-.58zM139.3 83.53c13.3-8.89 28.08-15.38 43.3-20.18-3.17 1.77-6.44 3.38-9.53 5.29-11.21 6.68-21.52 14.9-30.38 24.49-6.8 7.43-12.76 15.73-17.01 24.89-3.29 6.86-5.64 14.19-6.86 21.71-.93 4.85-1.3 9.81-1.17 14.75 .13 13.66 4.44 27.08 11.29 38.82 5.92 10.22 13.63 19.33 22.36 27.26 4.85 4.36 10.24 8.09 14.95 12.6 2.26 2.19 4.49 4.42 6.43 6.91 2.62 3.31 4.89 6.99 5.99 11.1 .9 3.02 .66 6.2 .69 9.31 .02 4.1-.04 8.2 .03 12.3 .14 3.54-.02 7.09 .11 10.63 .08 2.38 .02 4.76 .05 7.14 .16 5.77 .06 11.53 .15 17.3 .11 2.91 .02 5.82 .13 8.74 .03 1.63 .13 3.28-.03 4.91-.91 .12-1.82 .18-2.73 .16-10.99 0-21.88-2.63-31.95-6.93-6-2.7-11.81-5.89-17.09-9.83-5.75-4.19-11.09-8.96-15.79-14.31-6.53-7.24-11.98-15.39-16.62-23.95-1.07-2.03-2.24-4.02-3.18-6.12-1.16-2.64-2.62-5.14-3.67-7.82-4.05-9.68-6.57-19.94-8.08-30.31-.49-4.44-1.09-8.88-1.2-13.35-.7-15.73 .84-31.55 4.67-46.82 2.12-8.15 4.77-16.18 8.31-23.83 6.32-14.2 15.34-27.18 26.3-38.19 6.28-6.2 13.13-11.84 20.53-16.67zm175.4-20.12c2.74 .74 5.41 1.74 8.09 2.68 6.36 2.33 12.68 4.84 18.71 7.96 13.11 6.44 25.31 14.81 35.82 24.97 10.2 9.95 18.74 21.6 25.14 34.34 1.28 2.75 2.64 5.46 3.81 8.26 6.31 15.1 10 31.26 11.23 47.57 .41 4.54 .44 9.09 .45 13.64 .07 11.64-1.49 23.25-4.3 34.53-1.97 7.27-4.35 14.49-7.86 21.18-3.18 6.64-6.68 13.16-10.84 19.24-6.94 10.47-15.6 19.87-25.82 27.22-10.48 7.64-22.64 13.02-35.4 15.38-3.51 .69-7.08 1.08-10.66 1.21-1.85 .06-3.72 .16-5.56-.1-.28-2.15 0-4.31-.01-6.46-.03-3.73 .14-7.45 .1-11.17 .19-7.02 .02-14.05 .21-21.07 .03-2.38-.03-4.76 .03-7.14 .17-5.07-.04-10.14 .14-15.21 .1-2.99-.24-6.04 .51-8.96 .66-2.5 1.78-4.86 3.09-7.08 4.46-7.31 11.06-12.96 17.68-18.26 5.38-4.18 10.47-8.77 15.02-13.84 7.68-8.37 14.17-17.88 18.78-28.27 2.5-5.93 4.52-12.1 5.55-18.46 .86-4.37 1.06-8.83 1.01-13.27-.02-7.85-1.4-15.65-3.64-23.17-1.75-5.73-4.27-11.18-7.09-16.45-3.87-6.93-8.65-13.31-13.96-19.2-9.94-10.85-21.75-19.94-34.6-27.1-1.85-1.02-3.84-1.82-5.63-2.97zm-100.8 58.45c.98-1.18 1.99-2.33 3.12-3.38-.61 .93-1.27 1.81-1.95 2.68-3.1 3.88-5.54 8.31-7.03 13.06-.87 3.27-1.68 6.6-1.73 10-.07 2.52-.08 5.07 .32 7.57 1.13 7.63 4.33 14.85 8.77 21.12 2 2.7 4.25 5.27 6.92 7.33 1.62 1.27 3.53 2.09 5.34 3.05 3.11 1.68 6.32 3.23 9.07 5.48 2.67 2.09 4.55 5.33 4.4 8.79-.01 73.67 0 147.3-.01 221 0 1.35-.08 2.7 .04 4.04 .13 1.48 .82 2.83 1.47 4.15 .86 1.66 1.78 3.34 3.18 4.62 .85 .77 1.97 1.4 3.15 1.24 1.5-.2 2.66-1.35 3.45-2.57 .96-1.51 1.68-3.16 2.28-4.85 .76-2.13 .44-4.42 .54-6.63 .14-4.03-.02-8.06 .14-12.09 .03-5.89 .03-11.77 .06-17.66 .14-3.62 .03-7.24 .11-10.86 .15-4.03-.02-8.06 .14-12.09 .03-5.99 .03-11.98 .07-17.97 .14-3.62 .02-7.24 .11-10.86 .14-3.93-.02-7.86 .14-11.78 .03-5.99 .03-11.98 .06-17.97 .16-3.94-.01-7.88 .19-11.82 .29 1.44 .13 2.92 .22 4.38 .19 3.61 .42 7.23 .76 10.84 .32 3.44 .44 6.89 .86 10.32 .37 3.1 .51 6.22 .95 9.31 .57 4.09 .87 8.21 1.54 12.29 1.46 9.04 2.83 18.11 5.09 26.99 1.13 4.82 2.4 9.61 4 14.3 2.54 7.9 5.72 15.67 10.31 22.62 1.73 2.64 3.87 4.98 6.1 7.21 .27 .25 .55 .51 .88 .71 .6 .25 1.31-.07 1.7-.57 .71-.88 1.17-1.94 1.7-2.93 4.05-7.8 8.18-15.56 12.34-23.31 .7-1.31 1.44-2.62 2.56-3.61 1.75-1.57 3.84-2.69 5.98-3.63 2.88-1.22 5.9-2.19 9.03-2.42 6.58-.62 13.11 .75 19.56 1.85 3.69 .58 7.4 1.17 11.13 1.41 3.74 .1 7.48 .05 11.21-.28 8.55-.92 16.99-2.96 24.94-6.25 5.3-2.24 10.46-4.83 15.31-7.93 11.46-7.21 21.46-16.57 30.04-27.01 1.17-1.42 2.25-2.9 3.46-4.28-1.2 3.24-2.67 6.37-4.16 9.48-1.25 2.9-2.84 5.61-4.27 8.42-5.16 9.63-11.02 18.91-17.75 27.52-4.03 5.21-8.53 10.05-13.33 14.57-6.64 6.05-14.07 11.37-22.43 14.76-8.21 3.37-17.31 4.63-26.09 3.29-3.56-.58-7.01-1.69-10.41-2.88-2.79-.97-5.39-2.38-8.03-3.69-3.43-1.71-6.64-3.81-9.71-6.08 2.71 3.06 5.69 5.86 8.7 8.61 4.27 3.76 8.74 7.31 13.63 10.23 3.98 2.45 8.29 4.4 12.84 5.51 1.46 .37 2.96 .46 4.45 .6-1.25 1.1-2.63 2.04-3.99 2.98-9.61 6.54-20.01 11.86-30.69 16.43-20.86 8.7-43.17 13.97-65.74 15.34-4.66 .24-9.32 .36-13.98 .36-4.98-.11-9.97-.13-14.92-.65-11.2-.76-22.29-2.73-33.17-5.43-10.35-2.71-20.55-6.12-30.3-10.55-8.71-3.86-17.12-8.42-24.99-13.79-1.83-1.31-3.74-2.53-5.37-4.08 6.6-1.19 13.03-3.39 18.99-6.48 5.74-2.86 10.99-6.66 15.63-11.07 2.24-2.19 4.29-4.59 6.19-7.09-3.43 2.13-6.93 4.15-10.62 5.78-4.41 2.16-9.07 3.77-13.81 5.02-5.73 1.52-11.74 1.73-17.61 1.14-8.13-.95-15.86-4.27-22.51-8.98-4.32-2.94-8.22-6.43-11.96-10.06-9.93-10.16-18.2-21.81-25.66-33.86-3.94-6.27-7.53-12.75-11.12-19.22-1.05-2.04-2.15-4.05-3.18-6.1 2.85 2.92 5.57 5.97 8.43 8.88 8.99 8.97 18.56 17.44 29.16 24.48 7.55 4.9 15.67 9.23 24.56 11.03 3.11 .73 6.32 .47 9.47 .81 2.77 .28 5.56 .2 8.34 .3 5.05 .06 10.11 .04 15.16-.16 3.65-.16 7.27-.66 10.89-1.09 2.07-.25 4.11-.71 6.14-1.2 3.88-.95 8.11-.96 11.83 .61 4.76 1.85 8.44 5.64 11.38 9.71 2.16 3.02 4.06 6.22 5.66 9.58 1.16 2.43 2.46 4.79 3.55 7.26 1 2.24 2.15 4.42 3.42 6.52 .67 1.02 1.4 2.15 2.62 2.55 1.06-.75 1.71-1.91 2.28-3.03 2.1-4.16 3.42-8.65 4.89-13.05 2.02-6.59 3.78-13.27 5.19-20.02 2.21-9.25 3.25-18.72 4.54-28.13 .56-3.98 .83-7.99 1.31-11.97 .87-10.64 1.9-21.27 2.24-31.94 .08-1.86 .24-3.71 .25-5.57 .01-4.35 .25-8.69 .22-13.03-.01-2.38-.01-4.76 0-7.13 .05-5.07-.2-10.14-.22-15.21-.2-6.61-.71-13.2-1.29-19.78-.73-5.88-1.55-11.78-3.12-17.51-2.05-7.75-5.59-15.03-9.8-21.82-3.16-5.07-6.79-9.88-11.09-14.03-3.88-3.86-8.58-7.08-13.94-8.45-1.5-.41-3.06-.45-4.59-.64 .07-2.99 .7-5.93 1.26-8.85 1.59-7.71 3.8-15.3 6.76-22.6 1.52-4.03 3.41-7.9 5.39-11.72 3.45-6.56 7.62-12.79 12.46-18.46zm31.27 1.7c.35-.06 .71-.12 1.07-.19 .19 1.79 .09 3.58 .1 5.37v38.13c-.01 1.74 .13 3.49-.15 5.22-.36-.03-.71-.05-1.06-.05-.95-3.75-1.72-7.55-2.62-11.31-.38-1.53-.58-3.09-1.07-4.59-1.7-.24-3.43-.17-5.15-.2-5.06-.01-10.13 0-15.19-.01-1.66-.01-3.32 .09-4.98-.03-.03-.39-.26-.91 .16-1.18 1.28-.65 2.72-.88 4.06-1.35 3.43-1.14 6.88-2.16 10.31-3.31 1.39-.48 2.9-.72 4.16-1.54 .04-.56 .02-1.13-.05-1.68-1.23-.55-2.53-.87-3.81-1.28-3.13-1.03-6.29-1.96-9.41-3.02-1.79-.62-3.67-1-5.41-1.79-.03-.37-.07-.73-.11-1.09 5.09-.19 10.2 .06 15.3-.12 3.36-.13 6.73 .08 10.09-.07 .12-.39 .26-.77 .37-1.16 1.08-4.94 2.33-9.83 3.39-14.75zm5.97-.2c.36 .05 .72 .12 1.08 .2 .98 3.85 1.73 7.76 2.71 11.61 .36 1.42 .56 2.88 1.03 4.27 2.53 .18 5.07-.01 7.61 .05 5.16 .12 10.33 .12 15.49 .07 .76-.01 1.52 .03 2.28 .08-.04 .36-.07 .72-.1 1.08-1.82 .83-3.78 1.25-5.67 1.89-3.73 1.23-7.48 2.39-11.22 3.57-.57 .17-1.12 .42-1.67 .64-.15 .55-.18 1.12-.12 1.69 .87 .48 1.82 .81 2.77 1.09 4.88 1.52 9.73 3.14 14.63 4.6 .38 .13 .78 .27 1.13 .49 .4 .27 .23 .79 .15 1.18-1.66 .13-3.31 .03-4.97 .04-5.17 .01-10.33-.01-15.5 .01-1.61 .03-3.22-.02-4.82 .21-.52 1.67-.72 3.42-1.17 5.11-.94 3.57-1.52 7.24-2.54 10.78-.36 .01-.71 .02-1.06 .06-.29-1.73-.15-3.48-.15-5.22v-38.13c.02-1.78-.08-3.58 .11-5.37zM65.05 168.3c1.12-2.15 2.08-4.4 3.37-6.46-1.82 7.56-2.91 15.27-3.62 23-.8 7.71-.85 15.49-.54 23.23 1.05 19.94 5.54 39.83 14.23 57.88 2.99 5.99 6.35 11.83 10.5 17.11 6.12 7.47 12.53 14.76 19.84 21.09 4.8 4.1 9.99 7.78 15.54 10.8 3.27 1.65 6.51 3.39 9.94 4.68 5.01 2.03 10.19 3.61 15.42 4.94 3.83 .96 7.78 1.41 11.52 2.71 5 1.57 9.47 4.61 13.03 8.43 4.93 5.23 8.09 11.87 10.2 18.67 .99 2.9 1.59 5.91 2.17 8.92 .15 .75 .22 1.52 .16 2.29-6.5 2.78-13.26 5.06-20.26 6.18-4.11 .78-8.29 .99-12.46 1.08-10.25 .24-20.47-1.76-30.12-5.12-3.74-1.42-7.49-2.85-11.03-4.72-8.06-3.84-15.64-8.7-22.46-14.46-2.92-2.55-5.83-5.13-8.4-8.03-9.16-9.83-16.3-21.41-21.79-33.65-2.39-5.55-4.61-11.18-6.37-16.96-1.17-3.94-2.36-7.89-3.26-11.91-.75-2.94-1.22-5.95-1.87-8.92-.46-2.14-.69-4.32-1.03-6.48-.85-5.43-1.28-10.93-1.33-16.43 .11-6.18 .25-12.37 1.07-18.5 .4-2.86 .67-5.74 1.15-8.6 .98-5.7 2.14-11.37 3.71-16.93 3.09-11.65 7.48-22.95 12.69-33.84zm363.7-6.44c1.1 1.66 1.91 3.48 2.78 5.26 2.1 4.45 4.24 8.9 6.02 13.49 7.61 18.76 12.3 38.79 13.04 59.05 .02 1.76 .07 3.52 .11 5.29 .13 9.57-1.27 19.09-3.18 28.45-.73 3.59-1.54 7.17-2.58 10.69-4.04 14.72-10 29-18.41 41.78-8.21 12.57-19.01 23.55-31.84 31.41-5.73 3.59-11.79 6.64-18.05 9.19-5.78 2.19-11.71 4.03-17.8 5.11-6.4 1.05-12.91 1.52-19.4 1.23-7.92-.48-15.78-2.07-23.21-4.85-1.94-.8-3.94-1.46-5.84-2.33-.21-1.51 .25-2.99 .53-4.46 1.16-5.74 3.03-11.36 5.7-16.58 2.37-4.51 5.52-8.65 9.46-11.9 2.43-2.05 5.24-3.61 8.16-4.83 3.58-1.5 7.47-1.97 11.24-2.83 7.23-1.71 14.37-3.93 21.15-7 10.35-4.65 19.71-11.38 27.65-19.46 1.59-1.61 3.23-3.18 4.74-4.87 3.37-3.76 6.71-7.57 9.85-11.53 7.48-10.07 12.82-21.59 16.71-33.48 1.58-5.3 3.21-10.6 4.21-16.05 .63-2.87 1.04-5.78 1.52-8.68 .87-6.09 1.59-12.22 1.68-18.38 .12-6.65 .14-13.32-.53-19.94-.73-7.99-1.87-15.96-3.71-23.78z',
			),
		),
		'label'             => __( 'Old Republic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'om'                                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M360.6 61C362.5 62.88 365.2 64 368 64s5.375-1.125 7.375-3l21.5-21.62C398.9 37.38 400 34.75 400 32s-1.125-5.375-3.125-7.375L375.4 3c-4.125-4-10.75-4-14.75 0L339 24.62C337 26.62 336 29.25 336 32s1 5.375 3 7.375L360.6 61zM412.1 191.1c-26.75 0-51.75 10.38-70.63 29.25l-24.25 24.25c-6.75 6.75-15.75 10.5-25.37 10.5H245c10.5-22.12 14.12-48.12 7.75-75.25C242.6 138.2 206.4 104.6 163.2 97.62c-36.25-6-71 5-96 28.75c-7.375 7-7 18.87 1.125 24.87L94.5 170.9c5.75 4.375 13.62 4.375 19.12-.125C122.1 163.8 132.8 159.1 144 159.1c26.38 0 48 21.5 48 48S170.4 255.9 143.1 255.9L112 255.1c-11.88 0-19.75 12.63-14.38 23.25L113.8 311.5C116.2 316.5 121.4 319.5 126.9 320H160c35.25 0 64 28.75 64 64s-28.75 64-64 64c-96.12 0-122.4-53.1-145.2-92C10.25 348.4 0 352.4 0 361.2C-.125 416 41.12 512 160 512c70.5 0 127.1-57.44 127.1-128.1c0-23.38-6.874-45.06-17.87-63.94h21.75c26.62 0 51.75-10.38 70.63-29.25l24.25-24.25c6.75-6.75 15.75-10.5 25.37-10.5C431.9 255.1 448 272.1 448 291.9V392c0 13.25-18.75 24-32 24c-39.38 0-66.75-24.25-81.88-42.88C329.4 367.2 320 370.6 320 378.1V416c0 0 0 64 96 64c48.5 0 96-39.5 96-88V291.9C512 236.8 467.3 191.1 412.1 191.1zM454.3 67.25c-85.5 65.13-169 2.751-172.5 .125c-6-4.625-14.5-4.375-20.13 .5C255.9 72.75 254.3 81 257.9 87.63C259.5 90.63 298.2 160 376.8 160c79.88 0 98.75-31.38 101.8-37.63C479.5 120.2 480 117.9 480 115.5V80C480 66.75 464.9 59.25 454.3 67.25z',
			),
		),
		'label'             => __( 'Om', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'opencart'                               => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M423.3 440.7c0 25.3-20.3 45.6-45.6 45.6s-45.8-20.3-45.8-45.6 20.6-45.8 45.8-45.8c25.4 0 45.6 20.5 45.6 45.8zm-253.9-45.8c-25.3 0-45.6 20.6-45.6 45.8s20.3 45.6 45.6 45.6 45.8-20.3 45.8-45.6-20.5-45.8-45.8-45.8zm291.7-270C158.9 124.9 81.9 112.1 0 25.7c34.4 51.7 53.3 148.9 373.1 144.2 333.3-5 130 86.1 70.8 188.9 186.7-166.7 319.4-233.9 17.2-233.9z',
			),
		),
		'label'             => __( 'OpenCart', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'openid'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M271.5 432l-68 32C88.5 453.7 0 392.5 0 318.2c0-71.5 82.5-131 191.7-144.3v43c-71.5 12.5-124 53-124 101.3 0 51 58.5 93.3 135.7 103v-340l68-33.2v384zM448 291l-131.3-28.5 36.8-20.7c-19.5-11.5-43.5-20-70-24.8v-43c46.2 5.5 87.7 19.5 120.3 39.3l35-19.8L448 291z',
			),
		),
		'label'             => __( 'OpenID', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'opera'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M313.9 32.7c-170.2 0-252.6 223.8-147.5 355.1 36.5 45.4 88.6 75.6 147.5 75.6 36.3 0 70.3-11.1 99.4-30.4-43.8 39.2-101.9 63-165.3 63-3.9 0-8 0-11.9-.3C104.6 489.6 0 381.1 0 248 0 111 111 0 248 0h.8c63.1 .3 120.7 24.1 164.4 63.1-29-19.4-63.1-30.4-99.3-30.4zm101.8 397.7c-40.9 24.7-90.7 23.6-132-5.8 56.2-20.5 97.7-91.6 97.7-176.6 0-84.7-41.2-155.8-97.4-176.6 41.8-29.2 91.2-30.3 132.9-5 105.9 98.7 105.5 265.7-1.2 364z',
			),
		),
		'label'             => __( 'Opera', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'optin-monster'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M572.6 421.4c5.6-9.5 4.7-15.2-5.4-11.6-3-4.9-7-9.5-11.1-13.8 2.9-9.7-.7-14.2-10.8-9.2-4.6-3.2-10.3-6.5-15.9-9.2 0-15.1-11.6-11.6-17.6-5.7-10.4-1.5-18.7-.3-26.8 5.7 .3-6.5 .3-13 .3-19.7 12.6 0 40.2-11 45.9-36.2 1.4-6.8 1.6-13.8-.3-21.9-3-13.5-14.3-21.3-25.1-25.7-.8-5.9-7.6-14.3-14.9-15.9s-12.4 4.9-14.1 10.3c-8.5 0-19.2 2.8-21.1 8.4-5.4-.5-11.1-1.4-16.8-1.9 2.7-1.9 5.4-3.5 8.4-4.6 5.4-9.2 14.6-11.4 25.7-11.6V256c19.5-.5 43-5.9 53.8-18.1 12.7-13.8 14.6-37.3 12.4-55.1-2.4-17.3-9.7-37.6-24.6-48.1-8.4-5.9-21.6-.8-22.7 9.5-2.2 19.6 1.2 30-38.6 25.1-10.3-23.8-24.6-44.6-42.7-60C341 49.6 242.9 55.5 166.4 71.7c19.7 4.6 41.1 8.6 59.7 16.5-26.2 2.4-52.7 11.3-76.2 23.2-32.8 17-44 29.9-56.7 42.4 14.9-2.2 28.9-5.1 43.8-3.8-9.7 5.4-18.4 12.2-26.5 20-25.8 .9-23.8-5.3-26.2-25.9-1.1-10.5-14.3-15.4-22.7-9.7-28.1 19.9-33.5 79.9-12.2 103.5 10.8 12.2 35.1 17.3 54.9 17.8-.3 1.1-.3 1.9-.3 2.7 10.8 .5 19.5 2.7 24.6 11.6 3 1.1 5.7 2.7 8.1 4.6-5.4 .5-11.1 1.4-16.5 1.9-3.3-6.6-13.7-8.1-21.1-8.1-1.6-5.7-6.5-12.2-14.1-10.3-6.8 1.9-14.1 10-14.9 15.9-22.5 9.5-30.1 26.8-25.1 47.6 5.3 24.8 33 36.2 45.9 36.2v19.7c-6.6-5-14.3-7.5-26.8-5.7-5.5-5.5-17.3-10.1-17.3 5.7-5.9 2.7-11.4 5.9-15.9 9.2-9.8-4.9-13.6-1.7-11.1 9.2-4.1 4.3-7.8 8.6-11.1 13.8-10.2-3.7-11 2.2-5.4 11.6-1.1 3.5-1.6 7-1.9 10.8-.5 31.6 44.6 64 73.5 65.1 17.3 .5 34.6-8.4 43-23.5 113.2 4.9 226.7 4.1 340.2 0 8.1 15.1 25.4 24.3 42.7 23.5 29.2-1.1 74.3-33.5 73.5-65.1 .2-3.7-.7-7.2-1.7-10.7zm-73.8-254c1.1-3 2.4-8.4 2.4-14.6 0-5.9 6.8-8.1 14.1-.8 11.1 11.6 14.9 40.5 13.8 51.1-4.1-13.6-13-29-30.3-35.7zm-4.6 6.7c19.5 6.2 28.6 27.6 29.7 48.9-1.1 2.7-3 5.4-4.9 7.6-5.7 5.9-15.4 10-26.2 12.2 4.3-21.3 .3-47.3-12.7-63 4.9-.8 10.9-2.4 14.1-5.7zm-24.1 6.8c13.8 11.9 20 39.2 14.1 63.5-4.1 .5-8.1 .8-11.6 .8-1.9-21.9-6.8-44-14.3-64.6 3.7 .3 8.1 .3 11.8 .3zM47.5 203c-1.1-10.5 2.4-39.5 13.8-51.1 7-7.3 14.1-5.1 14.1 .8 0 6.2 1.4 11.6 2.4 14.6-17.3 6.8-26.2 22.2-30.3 35.7zm9.7 27.6c-1.9-2.2-3.5-4.9-4.9-7.6 1.4-21.3 10.3-42.7 29.7-48.9 3.2 3.2 9.2 4.9 14.1 5.7-13 15.7-17 41.6-12.7 63-10.8-2.2-20.5-6-26.2-12.2zm47.9 14.6c-4.1 0-8.1-.3-12.7-.8-4.6-18.6-1.9-38.9 5.4-53v.3l12.2-5.1c4.9-1.9 9.7-3.8 14.9-4.9-10.7 19.7-17.4 41.3-19.8 63.5zm184-162.7c41.9 0 76.2 34 76.2 75.9 0 42.2-34.3 76.2-76.2 76.2s-76.2-34-76.2-76.2c0-41.8 34.3-75.9 76.2-75.9zm115.6 174.3c-.3 17.8-7 48.9-23 57-13.2 6.6-6.5-7.5-16.5-58.1 13.3 .3 26.6 .3 39.5 1.1zm-54-1.6c.8 4.9 3.8 40.3-1.6 41.9-11.6 3.5-40 4.3-51.1-1.1-4.1-3-4.6-35.9-4.3-41.1v.3c18.9-.3 38.1-.3 57 0zM278.3 309c-13 3.5-41.6 4.1-54.6-1.6-6.5-2.7-3.8-42.4-1.9-51.6 19.2-.5 38.4-.5 57.8-.8v.3c1.1 8.3 3.3 51.2-1.3 53.7zm-106.5-51.1c12.2-.8 24.6-1.4 36.8-1.6-2.4 15.4-3 43.5-4.9 52.2-1.1 6.8-4.3 6.8-9.7 4.3-21.9-9.8-27.6-35.2-22.2-54.9zm-35.4 31.3c7.8-1.1 15.7-1.9 23.5-2.7 1.6 6.2 3.8 11.9 7 17.6 10 17 44 35.7 45.1 7 6.2 14.9 40.8 12.2 54.9 10.8 15.7-1.4 23.8-1.4 26.8-14.3 12.4 4.3 30.8 4.1 44 3 11.3-.8 20.8-.5 24.6-8.9 1.1 5.1 1.9 11.6 4.6 16.8 10.8 21.3 37.3 1.4 46.8-31.6 8.6 .8 17.6 1.9 26.5 2.7-.4 1.3-3.8 7.3 7.3 11.6-47.6 47-95.7 87.8-163.2 107-63.2-20.8-112.1-59.5-155.9-106.5 9.6-3.4 10.4-8.8 8-12.5zm-21.6 172.5c-3.8 17.8-21.9 29.7-39.7 28.9-19.2-.8-46.5-17-59.2-36.5-2.7-31.1 43.8-61.3 66.2-54.6 14.9 4.3 27.8 30.8 33.5 54 0 3-.3 5.7-.8 8.2zm-8.7-66c-.5-13.5-.5-27-.3-40.5h.3c2.7-1.6 5.7-3.8 7.8-6.5 6.5-1.6 13-5.1 15.1-9.2 3.3-7.1-7-7.5-5.4-12.4 2.7-1.1 5.7-2.2 7.8-3.5 29.2 29.2 58.6 56.5 97.3 77-36.8 11.3-72.4 27.6-105.9 47-1.2-18.6-7.7-35.9-16.7-51.9zm337.6 64.6c-103 3.5-206.2 4.1-309.4 0 0 .3 0 .3-.3 .3v-.3h.3c35.1-21.6 72.2-39.2 112.4-50.8 11.6 5.1 23 9.5 34.9 13.2 2.2 .8 2.2 .8 4.3 0 14.3-4.1 28.4-9.2 42.2-15.4 41.5 11.7 78.8 31.7 115.6 53zm10.5-12.4c-35.9-19.5-73-35.9-111.9-47.6 38.1-20 71.9-47.3 103.5-76.7 2.2 1.4 4.6 2.4 7.6 3.2 0 .8 .3 1.9 .5 2.4-4.6 2.7-7.8 6.2-5.9 10.3 2.2 3.8 8.6 7.6 15.1 8.9 2.4 2.7 5.1 5.1 8.1 6.8 0 13.8-.3 27.6-.8 41.3l.3-.3c-9.3 15.9-15.5 37-16.5 51.7zm105.9 6.2c-12.7 19.5-40 35.7-59.2 36.5-19.3 .9-40.5-13.2-40.5-37 5.7-23.2 18.9-49.7 33.5-54 22.7-6.9 69.2 23.4 66.2 54.5zM372.9 75.2c-3.8-72.1-100.8-79.7-126-23.5 44.6-24.3 90.3-15.7 126 23.5zM74.8 407.1c-15.7 1.6-49.5 25.4-49.5 43.2 0 11.6 15.7 19.5 32.2 14.9 12.2-3.2 31.1-17.6 35.9-27.3 6-11.6-3.7-32.7-18.6-30.8zm215.9-176.2c28.6 0 51.9-21.6 51.9-48.4 0-36.1-40.5-58.1-72.2-44.3 9.5 3 16.5 11.6 16.5 21.6 0 23.3-33.3 32-46.5 11.3-7.3 34.1 19.4 59.8 50.3 59.8zM68 474.1c.5 6.5 12.2 12.7 21.6 9.5 6.8-2.7 14.6-10.5 17.3-16.2 3-7-1.1-20-9.7-18.4-8.9 1.6-29.7 16.7-29.2 25.1zm433.2-67c-14.9-1.9-24.6 19.2-18.9 30.8 4.9 9.7 24.1 24.1 36.2 27.3 16.5 4.6 32.2-3.2 32.2-14.9 0-17.8-33.8-41.6-49.5-43.2zM478.8 449c-8.4-1.6-12.4 11.3-9.5 18.4 2.4 5.7 10.3 13.5 17.3 16.2 9.2 3.2 21.1-3 21.3-9.5 .9-8.4-20.2-23.5-29.1-25.1z',
			),
		),
		'label'             => __( 'Optin Monster', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'orcid'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M294.8 188.2h-45.92V342h47.47c67.62 0 83.12-51.34 83.12-76.91 0-41.64-26.54-76.9-84.67-76.9zM256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-80.79 360.8h-29.84v-207.5h29.84zm-14.92-231.1a19.57 19.57 0 1 1 19.57-19.57 19.64 19.64 0 0 1 -19.57 19.57zM300 369h-81V161.3h80.6c76.73 0 110.4 54.83 110.4 103.8C410 318.4 368.4 369 300 369z',
			),
		),
		'label'             => __( 'ORCID', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'osi'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M8 266.4C10.3 130.6 105.4 34 221.8 18.34c138.8-18.6 255.6 75.8 278 201.1 21.3 118.8-44 230-151.6 274-9.3 3.8-14.4 1.7-18-7.7q-26.7-69.45-53.4-139c-3.1-8.1-1-13.2 7-16.8 24.2-11 39.3-29.4 43.3-55.8a71.47 71.47 0 0 0 -64.5-82.2c-39-3.4-71.8 23.7-77.5 59.7-5.2 33 11.1 63.7 41.9 77.7 9.6 4.4 11.5 8.6 7.8 18.4q-26.85 69.9-53.7 139.9c-2.6 6.9-8.3 9.3-15.5 6.5-52.6-20.3-101.4-61-130.8-119-24.9-49.2-25.2-87.7-26.8-108.7zm20.9-1.9c.4 6.6 .6 14.3 1.3 22.1 6.3 71.9 49.6 143.5 131 183.1 3.2 1.5 4.4 .8 5.6-2.3q22.35-58.65 45-117.3c1.3-3.3 .6-4.8-2.4-6.7-31.6-19.9-47.3-48.5-45.6-86 1-21.6 9.3-40.5 23.8-56.3 30-32.7 77-39.8 115.5-17.6a91.64 91.64 0 0 1 45.2 90.4c-3.6 30.6-19.3 53.9-45.7 69.8-2.7 1.6-3.5 2.9-2.3 6q22.8 58.8 45.2 117.7c1.2 3.1 2.4 3.8 5.6 2.3 35.5-16.6 65.2-40.3 88.1-72 34.8-48.2 49.1-101.9 42.3-161-13.7-117.5-119.4-214.8-255.5-198-106.1 13-195.3 102.5-197.1 225.8z',
			),
		),
		'label'             => __( 'Open Source Initiative', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'otter'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M224 160c8.836 0 16-7.164 16-16C240 135.2 232.8 128 224 128S208 135.2 208 144C208 152.8 215.2 160 224 160zM96 128C87.16 128 80 135.2 80 144C80 152.8 87.16 160 96 160s16-7.164 16-16C112 135.2 104.8 128 96 128zM474.4 64.12C466.8 63.07 460 69.07 460 76.73c0 5.959 4.188 10.1 9.991 12.36C514.2 99.46 544 160 544 192v112c0 8.844-7.156 16-16 16S512 312.8 512 304V212c0-14.87-15.65-24.54-28.94-17.89c-28.96 14.48-47.83 42.99-50.51 74.88C403.7 285.6 384 316.3 384 352v32H224c17.67 0 32-14.33 32-32c0-17.67-14.33-32-32-32H132.4c-14.46 0-27.37-9.598-31.08-23.57C97.86 283.5 96 269.1 96 256V254.4C101.1 255.3 106.3 256 111.7 256c10.78 0 21.45-2.189 31.36-6.436L160 242.3l16.98 7.271C186.9 253.8 197.6 256 208.3 256c7.176 0 14.11-.9277 20.83-2.426C241.7 292 277.4 320 320 320l36.56-.0366C363.1 294.7 377.1 272.7 396.2 256H320c0-25.73 17.56-31.61 32.31-32C369.8 223.8 384 209.6 384 192c0-17.67-14.31-32-32-32c-15.09 0-32.99 4.086-49.28 13.06C303.3 168.9 304 164.7 304 160.3v-16c0-1.684-.4238-3.248-.4961-4.912C313.2 133.9 320 123.9 320 112C320 103.2 312.8 96 304 96H292.7C274.6 58.26 236.3 32 191.7 32H128.3C83.68 32 45.44 58.26 27.33 96H16C7.164 96 0 103.2 0 112c0 11.93 6.816 21.93 16.5 27.43C16.42 141.1 16 142.7 16 144.3v16c0 19.56 5.926 37.71 16 52.86V256c0 123.7 100.3 224 224 224h160c123.9-1.166 224-101.1 224-226.2C639.9 156.9 567.8 76.96 474.4 64.12zM64 160.3v-16C64 108.9 92.86 80 128.3 80h63.32C227.1 80 256 108.9 256 144.3v16C256 186.6 234.6 208 208.3 208c-4.309 0-8.502-.8608-12.46-2.558L162.1 191.4c2.586-.3066 5.207-.543 7.598-1.631l8.314-3.777C186.9 182.3 192 174.9 192 166.7V160c0-6.723-5.996-12.17-13.39-12.17H141.4C133.1 147.8 128 153.3 128 160v6.701c0 8.15 5.068 15.6 13.09 19.25l8.314 3.777c2.391 1.088 5.012 1.324 7.598 1.631l-32.88 14.08C120.2 207.1 115.1 208 111.7 208C85.38 208 64 186.6 64 160.3z',
			),
		),
		'label'             => __( 'Otter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'travel' ),
	),
	'outdent'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 64C32 46.33 46.33 32 64 32H448C465.7 32 480 46.33 480 64C480 81.67 465.7 96 448 96H64C46.33 96 32 81.67 32 64V64zM224 192C224 174.3 238.3 160 256 160H448C465.7 160 480 174.3 480 192C480 209.7 465.7 224 448 224H256C238.3 224 224 209.7 224 192zM448 288C465.7 288 480 302.3 480 320C480 337.7 465.7 352 448 352H256C238.3 352 224 337.7 224 320C224 302.3 238.3 288 256 288H448zM32 448C32 430.3 46.33 416 64 416H448C465.7 416 480 430.3 480 448C480 465.7 465.7 480 448 480H64C46.33 480 32 465.7 32 448V448zM32.24 268.6C24 262.2 24 249.8 32.24 243.4L134.2 164.1C144.7 155.9 160 163.4 160 176.7V335.3C160 348.6 144.7 356.1 134.2 347.9L32.24 268.6z',
			),
		),
		'label'             => __( 'Outdent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'p'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M160 32.01H32c-17.69 0-32 14.33-32 32v384c0 17.67 14.31 32 32 32s32-14.33 32-32v-96h96c88.22 0 160-71.78 160-159.1S248.2 32.01 160 32.01zM160 288H64V96.01h96c52.94 0 96 43.06 96 96S212.9 288 160 288z',
			),
		),
		'label'             => __( 'P', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'padlet'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M297.9 0L298 .001C305.6 .1078 312.4 4.72 315.5 11.78L447.5 320.3L447.8 320.2L448 320.6L445.2 330.6L402.3 488.6C398.6 504.8 382.6 514.9 366.5 511.2L298.1 495.6L229.6 511.2C213.5 514.9 197.5 504.8 193.8 488.6L150.9 330.6L148.2 320.6L148.3 320.2L280.4 11.78C283.4 4.797 290.3 .1837 297.9 .0006L297.9 0zM160.1 322.1L291.1 361.2L298 483.7L305.9 362.2L436.5 322.9L436.7 322.8L305.7 347.9L297.1 27.72L291.9 347.9L160.1 322.1zM426 222.6L520.4 181.6H594.2L437.2 429.2L468.8 320.2L426 222.6zM597.5 181.4L638.9 257.6C642.9 265.1 635 273.5 627.3 269.8L579.7 247.1L597.5 181.4zM127.3 318.5L158.7 430L1.61 154.5C-4.292 144.1 7.128 132.5 17.55 138.3L169.4 222.5L127.3 318.5z',
			),
		),
		'label'             => __( 'Padlet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'page4'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 504C111 504 0 393 0 256S111 8 248 8c20.9 0 41.3 2.6 60.7 7.5L42.3 392H248v112zm0-143.6V146.8L98.6 360.4H248zm96 31.6v92.7c45.7-19.2 84.5-51.7 111.4-92.7H344zm57.4-138.2l-21.2 8.4 21.2 8.3v-16.7zm-20.3 54.5c-6.7 0-8 6.3-8 12.9v7.7h16.2v-10c0-5.9-2.3-10.6-8.2-10.6zM496 256c0 37.3-8.2 72.7-23 104.4H344V27.3C433.3 64.8 496 153.1 496 256zM360.4 143.6h68.2V96h-13.9v32.6h-13.9V99h-13.9v29.6h-12.7V96h-13.9v47.6zm68.1 185.3H402v-11c0-15.4-5.6-25.2-20.9-25.2-15.4 0-20.7 10.6-20.7 25.9v25.3h68.2v-15zm0-103l-68.2 29.7V268l68.2 29.5v-16.6l-14.4-5.7v-26.5l14.4-5.9v-16.9zm-4.8-68.5h-35.6V184H402v-12.2h11c8.6 15.8 1.3 35.3-18.6 35.3-22.5 0-28.3-25.3-15.5-37.7l-11.6-10.6c-16.2 17.5-12.2 63.9 27.1 63.9 34 0 44.7-35.9 29.3-65.3z',
			),
		),
		'label'             => __( 'page4 Corporation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pagelines'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M384 312.7c-55.1 136.7-187.1 54-187.1 54-40.5 81.8-107.4 134.4-184.6 134.7-16.1 0-16.6-24.4 0-24.4 64.4-.3 120.5-42.7 157.2-110.1-41.1 15.9-118.6 27.9-161.6-82.2 109-44.9 159.1 11.2 178.3 45.5 9.9-24.4 17-50.9 21.6-79.7 0 0-139.7 21.9-149.5-98.1 119.1-47.9 152.6 76.7 152.6 76.7 1.6-16.7 3.3-52.6 3.3-53.4 0 0-106.3-73.7-38.1-165.2 124.6 43 61.4 162.4 61.4 162.4 .5 1.6 .5 23.8 0 33.4 0 0 45.2-89 136.4-57.5-4.2 134-141.9 106.4-141.9 106.4-4.4 27.4-11.2 53.4-20 77.5 0 0 83-91.8 172-20z',
			),
		),
		'label'             => __( 'Pagelines', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pager'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 64H64C28.63 64 0 92.63 0 128v256c0 35.38 28.62 64 64 64h384c35.38 0 64-28.62 64-64V128C512 92.63 483.4 64 448 64zM160 368H80C71.13 368 64 360.9 64 352v-16C64 327.1 71.13 320 80 320H160V368zM288 352c0 8.875-7.125 16-16 16H192V320h80c8.875 0 16 7.125 16 16V352zM448 224c0 17.62-14.38 32-32 32H96C78.38 256 64 241.6 64 224V160c0-17.62 14.38-32 32-32h320c17.62 0 32 14.38 32 32V224z',
			),
		),
		'label'             => __( 'Pager', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'paint-roller'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 64C0 28.65 28.65 0 64 0H352C387.3 0 416 28.65 416 64V128C416 163.3 387.3 192 352 192H64C28.65 192 0 163.3 0 128V64zM160 352C160 334.3 174.3 320 192 320V304C192 259.8 227.8 224 272 224H416C433.7 224 448 209.7 448 192V69.46C485.3 82.64 512 118.2 512 160V192C512 245 469 288 416 288H272C263.2 288 256 295.2 256 304V320C273.7 320 288 334.3 288 352V480C288 497.7 273.7 512 256 512H192C174.3 512 160 497.7 160 480V352z',
			),
		),
		'label'             => __( 'Paint Roller', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'paintbrush'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M224 263.3C224.2 233.3 238.4 205.2 262.4 187.2L499.1 9.605C517.7-4.353 543.6-2.965 560.7 12.9C577.7 28.76 580.8 54.54 568.2 74.07L406.5 324.1C391.3 347.7 366.6 363.2 339.3 367.1L224 263.3zM320 400C320 461.9 269.9 512 208 512H64C46.33 512 32 497.7 32 480C32 462.3 46.33 448 64 448H68.81C86.44 448 98.4 429.1 96.59 411.6C96.2 407.8 96 403.9 96 400C96 339.6 143.9 290.3 203.7 288.1L319.8 392.5C319.9 394.1 320 397.5 320 400V400z',
			),
		),
		'label'             => __( 'Paintbrush', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'palette'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 255.1C512 256.9 511.1 257.8 511.1 258.7C511.6 295.2 478.4 319.1 441.9 319.1H344C317.5 319.1 296 341.5 296 368C296 371.4 296.4 374.7 297 377.9C299.2 388.1 303.5 397.1 307.9 407.8C313.9 421.6 320 435.3 320 449.8C320 481.7 298.4 510.5 266.6 511.8C263.1 511.9 259.5 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256V255.1zM96 255.1C78.33 255.1 64 270.3 64 287.1C64 305.7 78.33 319.1 96 319.1C113.7 319.1 128 305.7 128 287.1C128 270.3 113.7 255.1 96 255.1zM128 191.1C145.7 191.1 160 177.7 160 159.1C160 142.3 145.7 127.1 128 127.1C110.3 127.1 96 142.3 96 159.1C96 177.7 110.3 191.1 128 191.1zM256 63.1C238.3 63.1 224 78.33 224 95.1C224 113.7 238.3 127.1 256 127.1C273.7 127.1 288 113.7 288 95.1C288 78.33 273.7 63.1 256 63.1zM384 191.1C401.7 191.1 416 177.7 416 159.1C416 142.3 401.7 127.1 384 127.1C366.3 127.1 352 142.3 352 159.1C352 177.7 366.3 191.1 384 191.1z',
			),
		),
		'label'             => __( 'Palette', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'palfed'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M384.9 193.9c0-47.4-55.2-44.2-95.4-29.8-1.3 39.4-2.5 80.7-3 119.8 .7 2.8 2.6 6.2 15.1 6.2 36.8 0 83.4-42.8 83.3-96.2zm-194.5 72.2c.2 0 6.5-2.7 11.2-2.7 26.6 0 20.7 44.1-14.4 44.1-21.5 0-37.1-18.1-37.1-43 0-42 42.9-95.6 100.7-126.5 1-12.4 3-22 10.5-28.2 11.2-9 26.6-3.5 29.5 11.1 72.2-22.2 135.2 1 135.2 72 0 77.9-79.3 152.6-140.1 138.2-.1 39.4 .9 74.4 2.7 100v.2c.2 3.4 .6 12.5-5.3 19.1-9.6 10.6-33.4 10-36.4-22.3-4.1-44.4 .2-206.1 1.4-242.5-21.5 15-58.5 50.3-58.5 75.9 .2 2.5 .4 4 .6 4.6zM8 181.1s-.1 37.4 38.4 37.4h30l22.4 217.2s0 44.3 44.7 44.3h288.9s44.7-.4 44.7-44.3l22.4-217.2h30s38.4 1.2 38.4-37.4c0 0 .1-37.4-38.4-37.4h-30.1c-7.3-25.6-30.2-74.3-119.4-74.3h-28V50.3s-2.7-18.4-21.1-18.4h-85.8s-21.1 0-21.1 18.4v19.1h-28.1s-105 4.2-120.5 74.3h-29S8 142.5 8 181.1z',
			),
		),
		'label'             => __( 'Palfed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pallet'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M624 384c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16h-608C7.25 320 0 327.3 0 336v32C0 376.8 7.25 384 16 384H64v64H16C7.25 448 0 455.3 0 464v32C0 504.8 7.25 512 16 512h608c8.75 0 16-7.25 16-16v-32c0-8.75-7.25-16-16-16H576v-64H624zM288 448H128v-64h160V448zM512 448h-160v-64h160V448z',
			),
		),
		'label'             => __( 'Pallet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'panorama'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M578.2 66.06C409.8 116.6 230.2 116.6 61.8 66.06C31 56.82 0 79.88 0 112v319.9c0 32.15 30.1 55.21 61.79 45.97c168.4-50.53 347.1-50.53 516.4-.002C608.1 487.2 640 464.1 640 431.1V112C640 79.88 609 56.82 578.2 66.06zM128 224C110.3 224 96 209.7 96 192s14.33-32 32-32c17.68 0 32 14.33 32 32S145.7 224 128 224zM474.3 388.6C423.4 380.3 371.8 376 320 376c-50.45 0-100.7 4.043-150.3 11.93c-14.14 2.246-24.11-13.19-15.78-24.84l49.18-68.56C206.1 290.4 210.9 288 216 288s9.916 2.441 12.93 6.574l32.46 44.51l93.3-139.1C357.7 194.7 362.7 192 368 192s10.35 2.672 13.31 7.125l109.1 165.1C498.1 375.9 488.1 390.8 474.3 388.6z',
			),
		),
		'label'             => __( 'Panorama', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design' ),
	),
	'paper-plane'                            => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.6 36.86l-64 415.1c-1.5 9.734-7.375 18.22-15.97 23.05c-4.844 2.719-10.27 4.097-15.68 4.097c-4.188 0-8.319-.8154-12.29-2.472l-122.6-51.1l-50.86 76.29C226.3 508.5 219.8 512 212.8 512C201.3 512 192 502.7 192 491.2v-96.18c0-7.115 2.372-14.03 6.742-19.64L416 96l-293.7 264.3L19.69 317.5C8.438 312.8 .8125 302.2 .0625 289.1s5.469-23.72 16.06-29.77l448-255.1c10.69-6.109 23.88-5.547 34 1.406S513.5 24.72 511.6 36.86z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M501.6 4.186c-7.594-5.156-17.41-5.594-25.44-1.063L12.12 267.1C4.184 271.7-.5037 280.3 .0431 289.4c.5469 9.125 6.234 17.16 14.66 20.69l153.3 64.38v113.5c0 8.781 4.797 16.84 12.5 21.06C184.1 511 188 512 191.1 512c4.516 0 9.038-1.281 12.99-3.812l111.2-71.46l98.56 41.4c2.984 1.25 6.141 1.875 9.297 1.875c4.078 0 8.141-1.031 11.78-3.094c6.453-3.625 10.88-10.06 11.95-17.38l64-432C513.1 18.44 509.1 9.373 501.6 4.186zM369.3 119.2l-187.1 208.9L78.23 284.7L369.3 119.2zM215.1 444v-49.36l46.45 19.51L215.1 444zM404.8 421.9l-176.6-74.19l224.6-249.5L404.8 421.9z',
			),
		),
		'label'             => __( 'Paper Plane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'travel' ),
	),
	'paperclip'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M364.2 83.8C339.8 59.39 300.2 59.39 275.8 83.8L91.8 267.8C49.71 309.9 49.71 378.1 91.8 420.2C133.9 462.3 202.1 462.3 244.2 420.2L396.2 268.2C407.1 257.3 424.9 257.3 435.8 268.2C446.7 279.1 446.7 296.9 435.8 307.8L283.8 459.8C219.8 523.8 116.2 523.8 52.2 459.8C-11.75 395.8-11.75 292.2 52.2 228.2L236.2 44.2C282.5-2.08 357.5-2.08 403.8 44.2C450.1 90.48 450.1 165.5 403.8 211.8L227.8 387.8C199.2 416.4 152.8 416.4 124.2 387.8C95.59 359.2 95.59 312.8 124.2 284.2L268.2 140.2C279.1 129.3 296.9 129.3 307.8 140.2C318.7 151.1 318.7 168.9 307.8 179.8L163.8 323.8C157.1 330.5 157.1 341.5 163.8 348.2C170.5 354.9 181.5 354.9 188.2 348.2L364.2 172.2C388.6 147.8 388.6 108.2 364.2 83.8V83.8z',
			),
		),
		'label'             => __( 'Paperclip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'parachute-box'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M272 192V320H304C311 320 317.7 321.5 323.7 324.2L443.8 192H415.5C415.8 186.7 416 181.4 416 176C416 112.1 393.8 54.84 358.9 16.69C450 49.27 493.4 122.6 507.8 173.6C510.5 183.1 502.1 192 493.1 192H487.1L346.8 346.3C350.1 352.8 352 360.2 352 368V464C352 490.5 330.5 512 304 512H207.1C181.5 512 159.1 490.5 159.1 464V368C159.1 360.2 161.9 352.8 165.2 346.3L24.92 192H18.89C9 192 1.483 183.1 4.181 173.6C18.64 122.6 61.97 49.27 153.1 16.69C118.2 54.84 96 112.1 96 176C96 181.4 96.16 186.7 96.47 192H68.17L188.3 324.2C194.3 321.5 200.1 320 207.1 320H239.1V192H128.5C128.2 186.7 127.1 181.4 127.1 176C127.1 125 143.9 80.01 168.2 48.43C192.5 16.89 223.8 0 255.1 0C288.2 0 319.5 16.89 343.8 48.43C368.1 80.01 384 125 384 176C384 181.4 383.8 186.7 383.5 192H272z',
			),
		),
		'label'             => __( 'Parachute Box', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'paragraph'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 63.1C448 81.67 433.7 96 416 96H384v352c0 17.67-14.33 32-31.1 32S320 465.7 320 448V96h-32v352c0 17.67-14.33 32-31.1 32S224 465.7 224 448v-96H198.9c-83.57 0-158.2-61.11-166.1-144.3C23.66 112.3 98.44 32 191.1 32h224C433.7 32 448 46.33 448 63.1z',
			),
		),
		'label'             => __( 'Paragraph', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'passport'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M129.6 208c5.25 31.25 25.62 57.13 53.25 70.38C175.3 259.4 170.3 235 168.8 208H129.6zM129.6 176h39.13c1.5-27 6.5-51.38 14.12-70.38C155.3 118.9 134.9 144.8 129.6 176zM224 286.8C231.8 279.3 244.8 252.3 247.4 208H200.5C203.3 252.3 216.3 279.3 224 286.8zM265.1 105.6C272.8 124.6 277.8 149 279.3 176h39.13C313.1 144.8 292.8 118.9 265.1 105.6zM384 0H64C28.65 0 0 28.65 0 64v384c0 35.35 28.65 64 64 64h320c35.2 0 64-28.8 64-64V64C448 28.8 419.2 0 384 0zM336 416h-224C103.3 416 96 408.8 96 400S103.3 384 112 384h224c8.75 0 16 7.25 16 16S344.8 416 336 416zM224 320c-70.75 0-128-57.25-128-128s57.25-128 128-128s128 57.25 128 128S294.8 320 224 320zM265.1 278.4c27.62-13.25 48-39.13 53.25-70.38h-39.13C277.8 235 272.8 259.4 265.1 278.4zM200.6 176h46.88C244.7 131.8 231.8 104.8 224 97.25C216.3 104.8 203.2 131.8 200.6 176z',
			),
		),
		'label'             => __( 'Passport', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'paste'                                  => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 96V80C320 53.49 298.5 32 272 32H215.4C204.3 12.89 183.6 0 160 0S115.7 12.89 104.6 32H48C21.49 32 0 53.49 0 80v320C0 426.5 21.49 448 48 448l144 .0013L192 176C192 131.8 227.8 96 272 96H320zM160 88C146.8 88 136 77.25 136 64S146.8 40 160 40S184 50.75 184 64S173.3 88 160 88zM416 128v96h96L416 128zM384 224L384 128h-112C245.5 128 224 149.5 224 176v288c0 26.51 21.49 48 48 48h192c26.51 0 48-21.49 48-48V256h-95.99C398.4 256 384 241.6 384 224z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M502.6 198.6l-61.25-61.25C435.4 131.4 427.3 128 418.8 128H256C220.7 128 191.1 156.7 192 192l.0065 255.1C192 483.3 220.7 512 256 512h192c35.2 0 64-28.8 64-64l.0098-226.7C512 212.8 508.6 204.6 502.6 198.6zM464 448c0 8.836-7.164 16-16 16h-192c-8.838 0-16-7.164-16-16L240 192.1c0-8.836 7.164-16 16-16h128L384 224c0 17.67 14.33 32 32 32h48.01V448zM317.7 96C310.6 68.45 285.8 48 256 48H215.2C211.3 20.93 188.1 0 160 0C131.9 0 108.7 20.93 104.8 48H64c-35.35 0-64 28.65-64 64V384c0 35.34 28.65 64 64 64h96v-48H64c-8.836 0-16-7.164-16-16V112C48 103.2 55.18 96 64 96h16v16c0 17.67 14.33 32 32 32h61.35C190 115.4 220.6 96 256 96H317.7zM160 72c-8.822 0-16-7.176-16-16s7.178-16 16-16s16 7.176 16 16S168.8 72 160 72z',
			),
		),
		'label'             => __( 'Paste', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'patreon'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 194.8c0 101.3-82.4 183.8-183.8 183.8-101.7 0-184.4-82.4-184.4-183.8 0-101.6 82.7-184.3 184.4-184.3C429.6 10.5 512 93.2 512 194.8zM0 501.5h90v-491H0v491z',
			),
		),
		'label'             => __( 'Patreon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pause'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M272 63.1l-32 0c-26.51 0-48 21.49-48 47.1v288c0 26.51 21.49 48 48 48L272 448c26.51 0 48-21.49 48-48v-288C320 85.49 298.5 63.1 272 63.1zM80 63.1l-32 0c-26.51 0-48 21.49-48 48v288C0 426.5 21.49 448 48 448l32 0c26.51 0 48-21.49 48-48v-288C128 85.49 106.5 63.1 80 63.1z',
			),
		),
		'label'             => __( 'Pause', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'paw'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 224c-79.37 0-191.1 122.7-191.1 200.2C64.02 459.1 90.76 480 135.8 480C184.6 480 216.9 454.9 256 454.9C295.5 454.9 327.9 480 376.2 480c44.1 0 71.74-20.88 71.74-55.75C447.1 346.8 335.4 224 256 224zM108.8 211.4c-10.37-34.62-42.5-57.12-71.62-50.12S-7.104 202 3.27 236.6C13.64 271.3 45.77 293.8 74.89 286.8S119.1 246 108.8 211.4zM193.5 190.6c30.87-8.125 46.37-49.1 34.5-93.37s-46.5-71.1-77.49-63.87c-30.87 8.125-46.37 49.1-34.5 93.37C127.9 170.1 162.5 198.8 193.5 190.6zM474.9 161.3c-29.12-6.1-61.25 15.5-71.62 50.12c-10.37 34.63 4.75 68.37 33.87 75.37c29.12 6.1 61.12-15.5 71.62-50.12C519.1 202 503.1 168.3 474.9 161.3zM318.5 190.6c30.1 8.125 65.62-20.5 77.49-63.87c11.87-43.37-3.625-85.25-34.5-93.37c-30.1-8.125-65.62 20.5-77.49 63.87C272.1 140.6 287.6 182.5 318.5 190.6z',
			),
		),
		'label'             => __( 'Paw', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'travel' ),
	),
	'paypal'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M111.4 295.9c-3.5 19.2-17.4 108.7-21.5 134-.3 1.8-1 2.5-3 2.5H12.3c-7.6 0-13.1-6.6-12.1-13.9L58.8 46.6c1.5-9.6 10.1-16.9 20-16.9 152.3 0 165.1-3.7 204 11.4 60.1 23.3 65.6 79.5 44 140.3-21.5 62.6-72.5 89.5-140.1 90.3-43.4 .7-69.5-7-75.3 24.2zM357.1 152c-1.8-1.3-2.5-1.8-3 1.3-2 11.4-5.1 22.5-8.8 33.6-39.9 113.8-150.5 103.9-204.5 103.9-6.1 0-10.1 3.3-10.9 9.4-22.6 140.4-27.1 169.7-27.1 169.7-1 7.1 3.5 12.9 10.6 12.9h63.5c8.6 0 15.7-6.3 17.4-14.9 .7-5.4-1.1 6.1 14.4-91.3 4.6-22 14.3-19.7 29.3-19.7 71 0 126.4-28.8 142.9-112.3 6.5-34.8 4.6-71.4-23.8-92.6z',
			),
		),
		'label'             => __( 'Paypal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'peace'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM224 445.1c-36.36-6.141-69.2-22.48-95.59-46.04L224 322.6V445.1zM288 322.6l95.59 76.47C357.2 422.6 324.4 438.1 288 445.1V322.6zM64 256c0-94.95 69.34-173.8 160-189.1v173.7l-135.7 108.6C72.86 321.6 64 289.8 64 256zM423.7 349.2L288 240.6V66.89C378.7 82.2 448 161.1 448 256C448 289.8 439.1 321.6 423.7 349.2z',
			),
		),
		'label'             => __( 'Peace', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'pen'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L444.3 197.7L314.3 67.72L362.7 19.32zM421.7 220.3L188.5 453.4C178.1 463.8 165.2 471.5 151.1 475.6L30.77 511C22.35 513.5 13.24 511.2 7.03 504.1C.8198 498.8-1.502 489.7 .976 481.2L36.37 360.9C40.53 346.8 48.16 333.9 58.57 323.5L291.7 90.34L421.7 220.3z',
			),
		),
		'label'             => __( 'Pen', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'pen-clip'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L440.6 201.4L310.6 71.43L362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75zM240.1 114.9C231.6 105.5 216.4 105.5 207 114.9L104.1 216.1C95.6 226.3 80.4 226.3 71.03 216.1C61.66 207.6 61.66 192.4 71.03 183L173.1 80.97C201.2 52.85 246.8 52.85 274.9 80.97L417.9 224L229.5 412.5C181.5 460.5 120.3 493.2 53.7 506.5L28.71 511.5C20.84 513.1 12.7 510.6 7.03 504.1C1.356 499.3-1.107 491.2 .4662 483.3L5.465 458.3C18.78 391.7 51.52 330.5 99.54 282.5L254.1 128L240.1 114.9z',
			),
		),
		'label'             => __( 'Pen Clip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'pen-fancy'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M373.5 27.11C388.5 9.885 410.2 0 433 0C476.6 0 512 35.36 512 78.98C512 101.8 502.1 123.5 484.9 138.5L277.7 319L192.1 234.3L373.5 27.11zM255.1 341.7L235.9 425.1C231.9 442.2 218.9 455.8 202 460.5L24.35 510.3L119.7 414.9C122.4 415.6 125.1 416 128 416C145.7 416 160 401.7 160 384C160 366.3 145.7 352 128 352C110.3 352 96 366.3 96 384C96 386.9 96.38 389.6 97.08 392.3L1.724 487.6L51.47 309.1C56.21 293.1 69.8 280.1 86.9 276.1L170.3 256.9L255.1 341.7z',
			),
		),
		'label'             => __( 'Pen Fancy', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'pen-nib'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M368.4 18.34C390.3-3.526 425.7-3.526 447.6 18.34L493.7 64.4C515.5 86.27 515.5 121.7 493.7 143.6L437.9 199.3L312.7 74.06L368.4 18.34zM417.4 224L371.4 377.3C365.4 397.2 350.2 413 330.5 419.6L66.17 508.2C54.83 512 42.32 509.2 33.74 500.9L187.3 347.3C193.6 350.3 200.6 352 207.1 352C234.5 352 255.1 330.5 255.1 304C255.1 277.5 234.5 256 207.1 256C181.5 256 159.1 277.5 159.1 304C159.1 311.4 161.7 318.4 164.7 324.7L11.11 478.3C2.809 469.7-.04 457.2 3.765 445.8L92.39 181.5C98.1 161.8 114.8 146.6 134.7 140.6L287.1 94.6L417.4 224z',
			),
		),
		'label'             => __( 'Pen Nib', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'pen-ruler'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M492.7 42.75C517.7 67.74 517.7 108.3 492.7 133.3L436.3 189.7L322.3 75.72L378.7 19.32C403.7-5.678 444.3-5.678 469.3 19.32L492.7 42.75zM44.89 353.2L299.7 98.34L413.7 212.3L158.8 467.1C152.1 473.8 143.8 478.7 134.6 481.4L30.59 511.1C22.21 513.5 13.19 511.1 7.03 504.1C.8669 498.8-1.47 489.8 .9242 481.4L30.65 377.4C33.26 368.2 38.16 359.9 44.89 353.2zM249.4 103.4L103.4 249.4L16 161.9C-2.745 143.2-2.745 112.8 16 94.06L94.06 16C112.8-2.745 143.2-2.745 161.9 16L181.7 35.76C181.4 36.05 181 36.36 180.7 36.69L116.7 100.7C110.4 106.9 110.4 117.1 116.7 123.3C122.9 129.6 133.1 129.6 139.3 123.3L203.3 59.31C203.6 58.99 203.1 58.65 204.2 58.3L249.4 103.4zM453.7 307.8C453.4 308 453 308.4 452.7 308.7L388.7 372.7C382.4 378.9 382.4 389.1 388.7 395.3C394.9 401.6 405.1 401.6 411.3 395.3L475.3 331.3C475.6 330.1 475.1 330.6 476.2 330.3L496 350.1C514.7 368.8 514.7 399.2 496 417.9L417.9 496C399.2 514.7 368.8 514.7 350.1 496L262.6 408.6L408.6 262.6L453.7 307.8z',
			),
		),
		'label'             => __( 'Pen Ruler', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'pen-to-square'                          => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M490.3 40.4C512.2 62.27 512.2 97.73 490.3 119.6L460.3 149.7L362.3 51.72L392.4 21.66C414.3-.2135 449.7-.2135 471.6 21.66L490.3 40.4zM172.4 241.7L339.7 74.34L437.7 172.3L270.3 339.6C264.2 345.8 256.7 350.4 248.4 353.2L159.6 382.8C150.1 385.6 141.5 383.4 135 376.1C128.6 370.5 126.4 361 129.2 352.4L158.8 263.6C161.6 255.3 166.2 247.8 172.4 241.7V241.7zM192 63.1C209.7 63.1 224 78.33 224 95.1C224 113.7 209.7 127.1 192 127.1H96C78.33 127.1 64 142.3 64 159.1V416C64 433.7 78.33 448 96 448H352C369.7 448 384 433.7 384 416V319.1C384 302.3 398.3 287.1 416 287.1C433.7 287.1 448 302.3 448 319.1V416C448 469 405 512 352 512H96C42.98 512 0 469 0 416V159.1C0 106.1 42.98 63.1 96 63.1H192z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M373.1 24.97C401.2-3.147 446.8-3.147 474.9 24.97L487 37.09C515.1 65.21 515.1 110.8 487 138.9L289.8 336.2C281.1 344.8 270.4 351.1 258.6 354.5L158.6 383.1C150.2 385.5 141.2 383.1 135 376.1C128.9 370.8 126.5 361.8 128.9 353.4L157.5 253.4C160.9 241.6 167.2 230.9 175.8 222.2L373.1 24.97zM440.1 58.91C431.6 49.54 416.4 49.54 407 58.91L377.9 88L424 134.1L453.1 104.1C462.5 95.6 462.5 80.4 453.1 71.03L440.1 58.91zM203.7 266.6L186.9 325.1L245.4 308.3C249.4 307.2 252.9 305.1 255.8 302.2L390.1 168L344 121.9L209.8 256.2C206.9 259.1 204.8 262.6 203.7 266.6zM200 64C213.3 64 224 74.75 224 88C224 101.3 213.3 112 200 112H88C65.91 112 48 129.9 48 152V424C48 446.1 65.91 464 88 464H360C382.1 464 400 446.1 400 424V312C400 298.7 410.7 288 424 288C437.3 288 448 298.7 448 312V424C448 472.6 408.6 512 360 512H88C39.4 512 0 472.6 0 424V152C0 103.4 39.4 64 88 64H200z',
			),
		),
		'label'             => __( 'Pen To Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'pencil'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M421.7 220.3L188.5 453.4L154.6 419.5L158.1 416H112C103.2 416 96 408.8 96 400V353.9L92.51 357.4C87.78 362.2 84.31 368 82.42 374.4L59.44 452.6L137.6 429.6C143.1 427.7 149.8 424.2 154.6 419.5L188.5 453.4C178.1 463.8 165.2 471.5 151.1 475.6L30.77 511C22.35 513.5 13.24 511.2 7.03 504.1C.8198 498.8-1.502 489.7 .976 481.2L36.37 360.9C40.53 346.8 48.16 333.9 58.57 323.5L291.7 90.34L421.7 220.3zM492.7 58.75C517.7 83.74 517.7 124.3 492.7 149.3L444.3 197.7L314.3 67.72L362.7 19.32C387.7-5.678 428.3-5.678 453.3 19.32L492.7 58.75z',
			),
		),
		'label'             => __( 'Pencil', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design' ),
	),
	'people-arrows-left-right'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 304.1c0-12.16 4.971-23.83 13.64-32.01l72.13-68.08c1.65-1.555 3.773-2.311 5.611-3.578C177.1 176.8 155 160 128 160H64C28.65 160 0 188.7 0 224v96c0 17.67 14.33 32 31.1 32L32 480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-96.39l-50.36-47.53C100.1 327.9 96 316.2 96 304.1zM480 128c35.38 0 64-28.62 64-64s-28.62-64-64-64s-64 28.62-64 64S444.6 128 480 128zM96 128c35.38 0 64-28.62 64-64S131.4 0 96 0S32 28.62 32 64S60.63 128 96 128zM444.4 295.3L372.3 227.3c-3.49-3.293-8.607-4.193-13.01-2.299C354.9 226.9 352 231.2 352 236V272H224V236c0-4.795-2.857-9.133-7.262-11.03C212.3 223.1 207.2 223.1 203.7 227.3L131.6 295.3c-4.805 4.535-4.805 12.94 0 17.47l72.12 68.07c3.49 3.291 8.607 4.191 13.01 2.297C221.1 381.3 224 376.9 224 372.1V336h128v36.14c0 4.795 2.857 9.135 7.262 11.04c4.406 1.893 9.523 .9922 13.01-2.299l72.12-68.07C449.2 308.3 449.2 299.9 444.4 295.3zM512 160h-64c-26.1 0-49.98 16.77-59.38 40.42c1.842 1.271 3.969 2.027 5.623 3.588l72.12 68.06C475 280.2 480 291.9 480 304.1c.002 12.16-4.969 23.83-13.64 32.01L416 383.6V480c0 17.67 14.33 32 32 32h64c17.67 0 32-14.33 32-32v-128c17.67 0 32-14.33 32-32V224C576 188.7 547.3 160 512 160z',
			),
		),
		'label'             => __( 'People Arrows Left Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'people-carry-box'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M128 95.1c26.5 0 47.1-21.5 47.1-47.1S154.5 0 128 0S80.01 21.5 80.01 47.1S101.5 95.1 128 95.1zM511.1 95.1c26.5 0 47.1-21.5 47.1-47.1S538.5 0 511.1 0c-26.5 0-48 21.5-48 47.1S485.5 95.1 511.1 95.1zM603.5 258.3l-18.5-80.13c-4.625-20-18.62-36.88-37.5-44.88c-18.5-8-38.1-6.75-56.12 3.25c-22.62 13.38-39.62 34.5-48.12 59.38l-11.25 33.88l-15.1 10.25L415.1 144c0-8.75-7.25-16-16-16H240c-8.75 0-16 7.25-16 16L224 239.1l-16.12-10.25l-11.25-33.88c-8.375-25-25.38-46-48.12-59.38c-17.25-10-37.63-11.25-56.12-3.25c-18.88 8-32.88 24.88-37.5 44.88l-18.37 80.13c-4.625 20 .7506 41.25 14.37 56.75l67.25 75.88l10.12 92.63C130 499.8 143.8 512 160 512c1.25 0 2.25-.125 3.5-.25c17.62-1.875 30.25-17.62 28.25-35.25l-10-92.75c-1.5-13-7-25.12-15.62-35l-43.37-49l17.62-70.38l6.876 20.38c4 12.5 11.87 23.5 24.5 32.63l51 32.5c4.623 2.875 12.12 4.625 17.25 5h159.1c5.125-.375 12.62-2.125 17.25-5l51-32.5c12.62-9.125 20.5-20 24.5-32.63l6.875-20.38l17.63 70.38l-43.37 49c-8.625 9.875-14.12 22-15.62 35l-10 92.75c-2 17.62 10.75 33.38 28.25 35.25C477.7 511.9 478.7 512 479.1 512c16.12 0 29.1-12.12 31.75-28.5l10.12-92.63L589.1 315C602.7 299.5 608.1 278.3 603.5 258.3zM46.26 358.1l-44 110c-6.5 16.38 1.5 35 17.88 41.63c16.75 6.5 35.12-1.75 41.62-17.88l27.62-69.13l-2-18.25L46.26 358.1zM637.7 468.1l-43.1-110l-41.13 46.38l-2 18.25l27.62 69.13C583.2 504.4 595.2 512 607.1 512c3.998 0 7.998-.75 11.87-2.25C636.2 503.1 644.2 484.5 637.7 468.1z',
			),
		),
		'label'             => __( 'People Carry Box', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'people-group'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M184 88C184 118.9 158.9 144 128 144C97.07 144 72 118.9 72 88C72 57.07 97.07 32 128 32C158.9 32 184 57.07 184 88zM208.4 196.3C178.7 222.7 160 261.2 160 304C160 338.3 171.1 369.8 192 394.5V416C192 433.7 177.7 448 160 448H96C78.33 448 64 433.7 64 416V389.2C26.16 371.2 0 332.7 0 288C0 226.1 50.14 176 112 176H144C167.1 176 190.2 183.5 208.4 196.3V196.3zM64 245.7C54.04 256.9 48 271.8 48 288C48 304.2 54.04 319.1 64 330.3V245.7zM448 416V394.5C468 369.8 480 338.3 480 304C480 261.2 461.3 222.7 431.6 196.3C449.8 183.5 472 176 496 176H528C589.9 176 640 226.1 640 288C640 332.7 613.8 371.2 576 389.2V416C576 433.7 561.7 448 544 448H480C462.3 448 448 433.7 448 416zM576 330.3C585.1 319.1 592 304.2 592 288C592 271.8 585.1 256.9 576 245.7V330.3zM568 88C568 118.9 542.9 144 512 144C481.1 144 456 118.9 456 88C456 57.07 481.1 32 512 32C542.9 32 568 57.07 568 88zM256 96C256 60.65 284.7 32 320 32C355.3 32 384 60.65 384 96C384 131.3 355.3 160 320 160C284.7 160 256 131.3 256 96zM448 304C448 348.7 421.8 387.2 384 405.2V448C384 465.7 369.7 480 352 480H288C270.3 480 256 465.7 256 448V405.2C218.2 387.2 192 348.7 192 304C192 242.1 242.1 192 304 192H336C397.9 192 448 242.1 448 304zM256 346.3V261.7C246 272.9 240 287.8 240 304C240 320.2 246 335.1 256 346.3zM384 261.7V346.3C393.1 335 400 320.2 400 304C400 287.8 393.1 272.9 384 261.7z',
			),
		),
		'label'             => __( 'People Group', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'people-line'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M360 72C360 94.09 342.1 112 320 112C297.9 112 280 94.09 280 72C280 49.91 297.9 32 320 32C342.1 32 360 49.91 360 72zM104 168C104 145.9 121.9 128 144 128C166.1 128 184 145.9 184 168C184 190.1 166.1 208 144 208C121.9 208 104 190.1 104 168zM608 416C625.7 416 640 430.3 640 448C640 465.7 625.7 480 608 480H32C14.33 480 0 465.7 0 448C0 430.3 14.33 416 32 416H608zM456 168C456 145.9 473.9 128 496 128C518.1 128 536 145.9 536 168C536 190.1 518.1 208 496 208C473.9 208 456 190.1 456 168zM200 352C200 369.7 185.7 384 168 384H120C102.3 384 88 369.7 88 352V313.5L61.13 363.4C54.85 375 40.29 379.4 28.62 373.1C16.95 366.8 12.58 352.3 18.87 340.6L56.75 270.3C72.09 241.8 101.9 224 134.2 224H153.8C170.1 224 185.7 228.5 199.2 236.6L232.7 174.3C248.1 145.8 277.9 128 310.2 128H329.8C362.1 128 391.9 145.8 407.3 174.3L440.8 236.6C454.3 228.5 469.9 224 486.2 224H505.8C538.1 224 567.9 241.8 583.3 270.3L621.1 340.6C627.4 352.3 623 366.8 611.4 373.1C599.7 379.4 585.2 375 578.9 363.4L552 313.5V352C552 369.7 537.7 384 520 384H472C454.3 384 440 369.7 440 352V313.5L413.1 363.4C406.8 375 392.3 379.4 380.6 373.1C368.1 366.8 364.6 352.3 370.9 340.6L407.2 273.1C405.5 271.5 404 269.6 402.9 267.4L376 217.5V272C376 289.7 361.7 304 344 304H295.1C278.3 304 263.1 289.7 263.1 272V217.5L237.1 267.4C235.1 269.6 234.5 271.5 232.8 273.1L269.1 340.6C275.4 352.3 271 366.8 259.4 373.1C247.7 379.4 233.2 375 226.9 363.4L199.1 313.5L200 352z',
			),
		),
		'label'             => __( 'People Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'people-pulling'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M32 48C32 21.49 53.49 0 80 0C106.5 0 128 21.49 128 48C128 74.51 106.5 96 80 96C53.49 96 32 74.51 32 48V48zM118.3 128C130.1 128 143.5 130.5 155.2 135.4L289.3 191.2C302.6 171.1 320.1 156.6 342.7 146.9L353.7 142C374.5 132.8 396.1 128 419.7 128C464.3 128 504.5 154.8 521.6 195.9L536.1 232.7L558.3 243.4C574.1 251.3 580.5 270.5 572.6 286.3C564.7 302.1 545.5 308.5 529.7 300.6L503 287.3C492.7 282.1 484.6 273.4 480.2 262.8L470.6 239.8L451.3 305.3L500.8 359.4C506.2 365.3 510.1 372.4 512 380.2L535 472.2C539.3 489.4 528.9 506.8 511.8 511C494.6 515.3 477.2 504.9 472.1 487.8L450.9 399.6L380.3 322.5C365.5 306.4 359.1 283.9 365.6 262.8L382.5 199.3C381.6 199.7 380.6 200.1 379.7 200.5L368.7 205.4C353.4 212.2 341.4 224.6 335.2 240.1L333.7 243.9C328.6 256.7 316.1 264.4 303 263.1C299.2 263.9 295.4 263.1 291.7 261.5L173.3 212.2L231.2 473.1C235.1 490.3 224.2 507.4 206.9 511.2C189.7 515.1 172.6 504.2 168.8 486.9L138.8 352H123.1L143.6 474.7C146.5 492.2 134.7 508.7 117.3 511.6C99.83 514.5 83.34 502.7 80.44 485.3L56.35 340.8C50.48 347.6 41.75 352 32 352C14.33 352 0 337.7 0 319.1V191.1C0 156.7 28.65 127.1 64 127.1L118.3 128zM416 48C416 21.49 437.5 0 464 0C490.5 0 512 21.49 512 48C512 74.51 490.5 96 464 96C437.5 96 416 74.51 416 48V48zM356.7 344.2L397.4 388.6L382.9 424.8C380.5 430.9 376.9 436.4 372.3 440.9L310.6 502.6C298.1 515.1 277.9 515.1 265.4 502.6C252.9 490.1 252.9 469.9 265.4 457.4L324.7 398L349.7 335.6C351.8 338.6 354.2 341.4 356.7 344.2H356.7z',
			),
		),
		'label'             => __( 'People Pulling', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'people-robbery'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M496.1 24.24C501.2 7.093 518.6-3.331 535.8 .9552C552.9 5.242 563.3 22.62 559 39.76L550.3 74.63C539.3 118.6 510.1 154.2 472 174.3V480C472 497.7 457.7 512 440 512C422.3 512 408 497.7 408 480V352H392V480C392 497.7 377.7 512 360 512C342.3 512 328 497.7 328 480V174.3C289.9 154.2 260.7 118.6 249.7 74.63L240.1 39.76C236.7 22.62 247.1 5.242 264.2 .9552C281.4-3.331 298.8 7.093 303 24.24L311.8 59.1C321.9 99.59 358.3 127.1 400 127.1C441.7 127.1 478.1 99.59 488.2 59.1L496.1 24.24zM352 47.1C352 21.49 373.5-.0006 400-.0006C426.5-.0006 448 21.49 448 47.1C448 74.51 426.5 95.1 400 95.1C373.5 95.1 352 74.51 352 47.1V47.1zM32.01 48C32.01 21.49 53.5 0 80.01 0C106.5 0 128 21.49 128 48C128 74.51 106.5 96 80.01 96C53.5 96 32.01 74.51 32.01 48V48zM104.7 128C132.1 128 157.6 142 172.2 165.1L209.6 224H240C257.7 224 272 238.3 272 256C272 273.7 257.7 288 240 288H192C181 288 170.9 282.4 164.1 273.1L152 252.7V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V352H72V480C72 497.7 57.68 512 40 512C22.33 512 8.005 497.7 8.005 480V288.6L8 287.1V191.1C8 156.7 36.65 127.1 72 127.1L104.7 128z',
			),
		),
		'label'             => __( 'People Robbery', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'people-roof'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M623.5 164C638.1 172.6 644.6 192.1 635.1 207.5C627.4 222.1 607.9 228.6 592.5 219.1L319.1 68.61L47.54 219.1C32.09 228.6 12.61 222.1 4.025 207.5C-4.558 192.1 1.008 172.6 16.46 164L304.5 4.027C314.1-1.342 325.9-1.342 335.5 4.027L623.5 164zM279.1 200C279.1 177.9 297.9 160 319.1 160C342.1 160 359.1 177.9 359.1 200C359.1 222.1 342.1 240 319.1 240C297.9 240 279.1 222.1 279.1 200zM103.1 296C103.1 273.9 121.9 256 143.1 256C166.1 256 183.1 273.9 183.1 296C183.1 318.1 166.1 336 143.1 336C121.9 336 103.1 318.1 103.1 296V296zM535.1 296C535.1 318.1 518.1 336 495.1 336C473.9 336 455.1 318.1 455.1 296C455.1 273.9 473.9 256 495.1 256C518.1 256 535.1 273.9 535.1 296zM226.9 491.4L199.1 441.5V480C199.1 497.7 185.7 512 167.1 512H119.1C102.3 512 87.1 497.7 87.1 480V441.5L61.13 491.4C54.84 503 40.29 507.4 28.62 501.1C16.95 494.8 12.58 480.3 18.87 468.6L56.74 398.3C72.09 369.8 101.9 352 134.2 352H153.8C170.1 352 185.7 356.5 199.2 364.6L232.7 302.3C248.1 273.8 277.9 255.1 310.2 255.1H329.8C362.1 255.1 391.9 273.8 407.3 302.3L440.8 364.6C454.3 356.5 469.9 352 486.2 352H505.8C538.1 352 567.9 369.8 583.3 398.3L621.1 468.6C627.4 480.3 623 494.8 611.4 501.1C599.7 507.4 585.2 503 578.9 491.4L551.1 441.5V480C551.1 497.7 537.7 512 519.1 512H471.1C454.3 512 439.1 497.7 439.1 480V441.5L413.1 491.4C406.8 503 392.3 507.4 380.6 501.1C368.1 494.8 364.6 480.3 370.9 468.6L407.2 401.1C405.5 399.5 404 397.6 402.9 395.4L375.1 345.5V400C375.1 417.7 361.7 432 343.1 432H295.1C278.3 432 263.1 417.7 263.1 400V345.5L237.1 395.4C235.1 397.6 234.5 399.5 232.8 401.1L269.1 468.6C275.4 480.3 271 494.8 259.4 501.1C247.7 507.4 233.2 503 226.9 491.4H226.9z',
			),
		),
		'label'             => __( 'People Roof', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'pepper-hot'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M465 134.2c21.46-38.38 19.87-87.17-5.65-123.1c-7.541-10.83-22.31-13.53-33.2-5.938c-10.77 7.578-13.44 22.55-5.896 33.41c14.41 20.76 15.13 47.69 4.098 69.77C407.1 100.1 388 95.1 368 95.1c-36.23 0-68.93 13.83-94.24 35.92L352 165.5V256h90.56l33.53 78.23C498.2 308.9 512 276.2 512 239.1C512 198 493.7 160.6 465 134.2zM320 288V186.6l-52.95-22.69C216.2 241.3 188.5 400 56 400C25.13 400 0 425.1 0 456S25.13 512 56 512c180.3 0 320.1-88.27 389.3-168.5L421.5 288H320z',
			),
		),
		'label'             => __( 'Pepper Hot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'perbyte'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M305.3 284.6H246.6V383.3h58.71q24.42 0 38.19-13.77t13.77-36.11q0-21.83-14.03-35.33T305.3 284.6zM149.4 128.7H90.72v98.72h58.71q24.42 0 38.19-13.77t13.77-36.11q0-21.83-14.03-35.34T149.4 128.7zM366.6 32H81.35A81.44 81.44 0 0 0 0 113.4V398.6A81.44 81.44 0 0 0 81.35 480H366.6A81.44 81.44 0 0 0 448 398.6V113.4A81.44 81.44 0 0 0 366.6 32zm63.63 366.6a63.71 63.71 0 0 1 -63.63 63.63H81.35a63.71 63.71 0 0 1 -63.63-63.63V113.4A63.71 63.71 0 0 1 81.35 49.72H366.6a63.71 63.71 0 0 1 63.63 63.63zM305.3 128.7H246.6v98.72h58.71q24.42 0 38.19-13.77t13.77-36.11q0-21.83-14.03-35.34T305.3 128.7z',
			),
		),
		'label'             => __( 'PerByte', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'percent'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M374.6 73.39c-12.5-12.5-32.75-12.5-45.25 0l-320 320c-12.5 12.5-12.5 32.75 0 45.25C15.63 444.9 23.81 448 32 448s16.38-3.125 22.62-9.375l320-320C387.1 106.1 387.1 85.89 374.6 73.39zM64 192c35.3 0 64-28.72 64-64S99.3 64.01 64 64.01S0 92.73 0 128S28.7 192 64 192zM320 320c-35.3 0-64 28.72-64 64s28.7 64 64 64s64-28.72 64-64S355.3 320 320 320z',
			),
		),
		'label'             => __( 'Percent', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'periscope'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M370 63.6C331.4 22.6 280.5 0 226.6 0 111.9 0 18.5 96.2 18.5 214.4c0 75.1 57.8 159.8 82.7 192.7C137.8 455.5 192.6 512 226.6 512c41.6 0 112.9-94.2 120.9-105 24.6-33.1 82-118.3 82-192.6 0-56.5-21.1-110.1-59.5-150.8zM226.6 493.9c-42.5 0-190-167.3-190-279.4 0-107.4 83.9-196.3 190-196.3 100.8 0 184.7 89 184.7 196.3 .1 112.1-147.4 279.4-184.7 279.4zM338 206.8c0 59.1-51.1 109.7-110.8 109.7-100.6 0-150.7-108.2-92.9-181.8v.4c0 24.5 20.1 44.4 44.8 44.4 24.7 0 44.8-19.9 44.8-44.4 0-18.2-11.1-33.8-26.9-40.7 76.6-19.2 141 39.3 141 112.4z',
			),
		),
		'label'             => __( 'Periscope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'person'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L315.4 271.5C324.5 286.7 319.6 306.3 304.5 315.4C289.3 324.5 269.7 319.6 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352z',
			),
		),
		'label'             => __( 'Person', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'person-arrow-down-to-line'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 48C144 21.49 165.5 0 192 0C218.5 0 240 21.49 240 48C240 74.51 218.5 96 192 96C165.5 96 144 74.51 144 48zM120 256.9L91.43 304.5C82.33 319.6 62.67 324.5 47.52 315.4C32.37 306.3 27.47 286.7 36.57 271.5L94.85 174.6C112.2 145.7 143.4 128 177.1 128H206.9C240.6 128 271.8 145.7 289.2 174.6L347.4 271.5C356.5 286.7 351.6 306.3 336.5 315.4C321.3 324.5 301.7 319.6 292.6 304.5L264 256.9V448H608C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H120L120 256.9zM200 448V352H184V448H200zM393.4 326.6C380.9 314.1 380.9 293.9 393.4 281.4C405.9 268.9 426.1 268.9 438.6 281.4L464 306.7V64C464 46.33 478.3 32 496 32C513.7 32 528 46.33 528 64V306.7L553.4 281.4C565.9 268.9 586.1 268.9 598.6 281.4C611.1 293.9 611.1 314.1 598.6 326.6L518.6 406.6C506.1 419.1 485.9 419.1 473.4 406.6L393.4 326.6z',
			),
		),
		'label'             => __( 'Person Arrow Down To Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-arrow-up-from-line'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 48C144 21.49 165.5 0 192 0C218.5 0 240 21.49 240 48C240 74.51 218.5 96 192 96C165.5 96 144 74.51 144 48zM120 256.9L91.43 304.5C82.33 319.6 62.67 324.5 47.52 315.4C32.37 306.3 27.47 286.7 36.57 271.5L94.85 174.6C112.2 145.7 143.4 128 177.1 128H206.9C240.6 128 271.8 145.7 289.2 174.6L347.4 271.5C356.5 286.7 351.6 306.3 336.5 315.4C321.3 324.5 301.7 319.6 292.6 304.5L264 256.9V448H608C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H120L120 256.9zM200 448V352H184V448H200zM598.6 121.4C611.1 133.9 611.1 154.1 598.6 166.6C586.1 179.1 565.9 179.1 553.4 166.6L528 141.3V384C528 401.7 513.7 416 496 416C478.3 416 464 401.7 464 384V141.3L438.6 166.6C426.1 179.1 405.9 179.1 393.4 166.6C380.9 154.1 380.9 133.9 393.4 121.4L473.4 41.37C485.9 28.88 506.1 28.88 518.6 41.37L598.6 121.4z',
			),
		),
		'label'             => __( 'Person Arrow Up From Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-biking'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 48C352 21.49 373.5 0 400 0C426.5 0 448 21.49 448 48C448 74.51 426.5 96 400 96C373.5 96 352 74.51 352 48zM480 159.1C497.7 159.1 512 174.3 512 191.1C512 209.7 497.7 223.1 480 223.1H416C408.7 223.1 401.7 221.5 396 216.1L355.3 184.4L295 232.9L337.8 261.4C346.7 267.3 352 277.3 352 288V416C352 433.7 337.7 448 320 448C302.3 448 288 433.7 288 416V305.1L227.5 266.8C194.7 245.1 192.5 198.9 223.2 175.2L306.3 110.9C323.8 97.45 348.1 97.58 365.4 111.2L427.2 159.1H480zM256 384C256 454.7 198.7 512 128 512C57.31 512 0 454.7 0 384C0 313.3 57.31 256 128 256C198.7 256 256 313.3 256 384zM128 312C88.24 312 56 344.2 56 384C56 423.8 88.24 456 128 456C167.8 456 200 423.8 200 384C200 344.2 167.8 312 128 312zM640 384C640 454.7 582.7 512 512 512C441.3 512 384 454.7 384 384C384 313.3 441.3 256 512 256C582.7 256 640 313.3 640 384zM512 312C472.2 312 440 344.2 440 384C440 423.8 472.2 456 512 456C551.8 456 584 423.8 584 384C584 344.2 551.8 312 512 312z',
			),
		),
		'label'             => __( 'Person Biking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'person-booth'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192 496C192 504.8 199.3 512 208 512h32C248.8 512 256 504.8 256 496V320H192V496zM544 0h-32v496c0 8.75 7.25 16 16 16h32c8.75 0 16-7.25 16-16V32C576 14.25 561.8 0 544 0zM64 128c26.5 0 48-21.5 48-48S90.5 32 64 32S16 53.5 16 80S37.5 128 64 128zM224 224H173.1L127.9 178.8C115.8 166.6 99.75 160 82.75 160H64C46.88 160 30.75 166.8 18.75 178.8c-12 12.12-18.72 28.22-18.72 45.35L0 480c0 17.75 14.25 32 31.88 32s32-14.25 32-32L64 379.3c.875 .5 1.625 1.375 2.5 1.75L95.63 424V480c0 17.75 14.25 32 32 32c17.62 0 32-14.25 32-32v-56.5c0-9.875-2.375-19.75-6.75-28.62l-41.13-61.25V253l20.88 20.88C141.8 283 153.8 288 166.5 288H224c17.75 0 32-14.25 32-32S241.8 224 224 224zM192 32v160h64V0H224C206.3 0 192 14.25 192 32zM288 32l31.5 223.1l-30.88 154.6C284.3 431.3 301.6 448 320 448c15.25 0 27.99-9.125 32.24-30.38C353.3 434.5 366.9 448 384 448c17.75 0 32-14.25 32-32c0 17.75 14.25 32 32 32s32-14.25 32-32V0h-192V32z',
			),
		),
		'label'             => __( 'Person Booth', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-breastfeeding'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M144 80C144 35.82 179.8 0 224 0C268.2 0 304 35.82 304 80C304 124.2 268.2 160 224 160C179.8 160 144 124.2 144 80zM436.8 382.8L373.5 461.1C356.9 482.7 326.7 486 306 469.5C288.4 455.4 283.3 431.3 292.5 411.7L291.7 411.6C252.8 406.1 217.4 386.5 192 356.8V320C192 302.3 177.7 288 160 288C142.3 288 128 302.3 128 320V368C128 368.8 128 369.6 128.1 370.4L229.5 421.1C253.2 432.9 262.8 461.8 250.9 485.5C239.1 509.2 210.2 518.8 186.5 506.9L27.21 427.3C26.11 426.7 25.02 426.2 23.95 425.5C19.04 422.7 14.79 419.1 11.3 414.1C6.732 409.5 3.492 403.3 1.683 396.6C-1.576 384.6-.1811 371.4 6.459 359.9C7.098 358.8 7.776 357.8 8.489 356.7L75.56 256.1C102.3 216.1 147.2 192 195.4 192H270.6C317.1 192 360.7 214.5 387.8 252.3L438.5 323.2C440.7 326.2 442.5 329.4 443.9 332.7C446.9 339.3 448.2 346.4 447.1 353.5C447.7 364.1 443.8 374.5 436.8 382.8V382.8zM276 288C251.7 288 232 307.7 232 332C232 356.3 251.7 376 276 376C300.3 376 320 356.3 320 332C320 307.7 300.3 288 276 288z',
			),
		),
		'label'             => __( 'Person Breastfeeding', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'person-burst'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M431.1 48C431.1 21.49 453.5 0 479.1 0C506.5 0 527.1 21.49 527.1 48C527.1 74.51 506.5 96 479.1 96C453.5 96 431.1 74.51 431.1 48zM439.1 512C422.3 512 407.1 497.7 407.1 480V256.9L379.4 304.5C370.3 319.6 350.7 324.5 335.5 315.4C320.4 306.3 315.5 286.7 324.6 271.5L382.8 174.6C400.2 145.7 431.4 128 465.1 128H494.9C528.6 128 559.8 145.7 577.2 174.6L635.4 271.5C644.5 286.7 639.6 306.3 624.5 315.4C609.3 324.5 589.7 319.6 580.6 304.5L551.1 256.9V480C551.1 497.7 537.7 512 519.1 512C502.3 512 487.1 497.7 487.1 480V352H471.1V480C471.1 497.7 457.7 512 439.1 512L439.1 512zM220.3 92.05L296.4 68.93C302.7 67.03 309.5 69.14 313.6 74.27C317.7 79.39 318.2 86.49 314.1 92.18L275.5 161.3L330.7 199.3L306.3 239.8L255.8 247.6L261.4 327C261.8 333.6 258.3 339.7 252.4 342.6C246.5 345.4 239.4 344.4 234.6 339.9L175.1 286.1L117.4 339.9C112.6 344.4 105.5 345.4 99.63 342.6C93.73 339.7 90.15 333.6 90.62 327L96.21 247.6L17.55 235.4C11.08 234.4 5.868 229.6 4.41 223.2C2.951 216.8 5.538 210.1 10.94 206.4L76.5 161.3L37.01 92.18C33.76 86.49 34.31 79.39 38.39 74.27C42.48 69.14 49.28 67.03 55.55 68.93L131.7 92.05L161.1 18.09C163.6 11.1 169.4 7.1 175.1 7.1C182.6 7.1 188.4 11.1 190.9 18.09L220.3 92.05z',
			),
		),
		'label'             => __( 'Person Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-cane'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M240 48C240 74.51 218.5 96 192 96C165.5 96 144 74.51 144 48C144 21.49 165.5 0 192 0C218.5 0 240 21.49 240 48zM232 480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H181C209.6 128 236.7 140.7 254.9 162.7L328.6 251.6C339.9 265.2 338 285.3 324.4 296.6C310.8 307.9 290.7 306 279.4 292.4L232 235.3L232 480zM320 384C320 397.3 309.3 408 296 408C282.7 408 272 397.3 272 384V376C272 345.1 297.1 320 328 320C358.9 320 384 345.1 384 376V488C384 501.3 373.3 512 360 512C346.7 512 336 501.3 336 488V376C336 371.6 332.4 368 328 368C323.6 368 320 371.6 320 376V384z',
			),
		),
		'label'             => __( 'Person Cane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'science-and-technology' ),
	),
	'person-chalkboard'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M144 48C144 21.49 165.5 0 192 0C218.5 0 240 21.49 240 48C240 74.51 218.5 96 192 96C165.5 96 144 74.51 144 48zM152 512C134.3 512 120 497.7 120 480V256.9L91.43 304.5C82.33 319.6 62.67 324.5 47.52 315.4C32.37 306.3 27.47 286.7 36.58 271.5L94.85 174.6C112.2 145.7 143.4 128 177.1 128H320V48C320 21.49 341.5 .0003 368 .0003H592C618.5 .0003 640 21.49 640 48V272C640 298.5 618.5 320 592 320H368C341.5 320 320 298.5 320 272V224H384V256H576V64H384V128H400C417.7 128 432 142.3 432 160C432 177.7 417.7 192 400 192H264V480C264 497.7 249.7 512 232 512C214.3 512 200 497.7 200 480V352H184V480C184 497.7 169.7 512 152 512L152 512z',
			),
		),
		'label'             => __( 'Person Chalkboard', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'education' ),
	),
	'person-circle-check'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7H476.7z',
			),
		),
		'label'             => __( 'Person Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-circle-exclamation'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM415.1 288V368C415.1 376.8 423.2 384 431.1 384C440.8 384 447.1 376.8 447.1 368V288C447.1 279.2 440.8 272 431.1 272C423.2 272 415.1 279.2 415.1 288z',
			),
		),
		'label'             => __( 'Person Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-circle-minus'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM496 351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1z',
			),
		),
		'label'             => __( 'Person Circle Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-circle-plus'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM448 303.1C448 295.2 440.8 287.1 432 287.1C423.2 287.1 416 295.2 416 303.1V351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H416V431.1C416 440.8 423.2 447.1 432 447.1C440.8 447.1 448 440.8 448 431.1V383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1H448V303.1z',
			),
		),
		'label'             => __( 'Person Circle Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-circle-question'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM368 328C368 336.8 375.2 344 384 344C392.8 344 400 336.8 400 328V321.6C400 316.3 404.3 312 409.6 312H450.1C457.8 312 464 318.2 464 325.9C464 331.1 461.1 335.8 456.6 338.3L424.6 355.1C419.3 357.9 416 363.3 416 369.2V384C416 392.8 423.2 400 432 400C440.8 400 448 392.8 448 384V378.9L471.5 366.6C486.5 358.6 496 342.1 496 325.9C496 300.6 475.4 280 450.1 280H409.6C386.6 280 368 298.6 368 321.6V328z',
			),
		),
		'label'             => __( 'Person Circle Question', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-circle-xmark'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48zM152 352V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H174.9C208.6 128 239.8 145.7 257.2 174.6L302.1 249.3C285.1 266.9 273.4 287.7 265.5 310.8C263.6 308.9 261.1 306.8 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352L152 352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM491.3 331.3C497.6 325.1 497.6 314.9 491.3 308.7C485.1 302.4 474.9 302.4 468.7 308.7L432 345.4L395.3 308.7C389.1 302.4 378.9 302.4 372.7 308.7C366.4 314.9 366.4 325.1 372.7 331.3L409.4 368L372.7 404.7C366.4 410.9 366.4 421.1 372.7 427.3C378.9 433.6 389.1 433.6 395.3 427.3L432 390.6L468.7 427.3C474.9 433.6 485.1 433.6 491.3 427.3C497.6 421.1 497.6 410.9 491.3 404.7L454.6 368L491.3 331.3z',
			),
		),
		'label'             => __( 'Person Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-digging'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M272 95.93c26.5 0 47.99-21.47 47.99-47.97S298.5 0 272 0C245.5 0 224 21.47 224 47.97S245.5 95.93 272 95.93zM209.7 357.3c-25.75-17.25-52.25-33.24-79.5-48.11L58.62 270.2L1.246 471.1c-4.875 16.1 4.1 34.74 22 39.62s34.63-4.998 39.5-21.99l36.63-128.1l60.63 40.37v78.86c0 17.62 14.38 31.99 32 31.99s32-14.37 32-31.99l.0022-95.93C224 373.2 218.6 363.2 209.7 357.3zM311.1 416c-13.88 0-25.95 8.863-30.33 21.86l-24.75 74.07h319.9l-101.9-206.3c-11.38-22.49-43.1-23.63-56.1-2.01l-31.89 54.21l-65.26-35.64l-24-121.2C288.1 161.3 263.2 127.7 227.1 109.7c-1-.4999-2.125-.625-3.125-1.125c-2.25-1.125-4.752-1.1-7.252-2.625C201.5 99.85 185.2 95.98 168.7 95.98H95.1c-9.25 0-18.05 4.061-24.18 10.93l-55.95 63.92c-.75 .9998-1.5 2.124-2.25 3.249c-8.875 13.1-3 32.87 11.63 40.74l336.6 184.3l-9.837 16.87H311.1zM105.9 204.1l-23.5-12.87l28.13-32.12h34.38L105.9 204.1zM199.5 256.1l34.9-41.28l13.5 67.61L199.5 256.1z',
			),
		),
		'label'             => __( 'Person Digging', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'person-dots-from-line'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M463.1 256c8.75 0 15.1-7.25 15.1-16S472.7 224 463.1 224c-8.75 0-15.1 7.25-15.1 16S455.2 256 463.1 256zM287.1 176c48.5 0 87.1-39.5 87.1-88S336.5 0 287.1 0S200 39.5 200 88S239.5 176 287.1 176zM80 256c8.75 0 15.1-7.25 15.1-16S88.75 224 80 224S64 231.3 64 240S71.25 256 80 256zM75.91 375.1c.6289-.459 41.62-29.26 100.1-50.05L176 432h223.1l-.0004-106.8c58.32 20.8 99.51 49.49 100.1 49.91C508.6 381.1 518.3 384 527.9 384c14.98 0 29.73-7 39.11-20.09c15.41-21.59 10.41-51.56-11.16-66.97c-1.955-1.391-21.1-14.83-51.83-30.85C495.5 279.2 480.7 288 463.1 288c-26.25 0-47.1-21.75-47.1-48c0-3.549 .4648-6.992 1.217-10.33C378.6 217.2 334.4 208 288 208c-59.37 0-114.1 15.01-160.1 32.67C127.6 266.6 106 288 80 288C69.02 288 58.94 284 50.8 277.7c-18.11 10.45-29.25 18.22-30.7 19.26c-21.56 15.41-26.56 45.38-11.16 66.97C24.33 385.5 54.3 390.4 75.91 375.1zM335.1 344c13.25 0 23.1 10.75 23.1 24s-10.75 24-23.1 24c-13.25 0-23.1-10.75-23.1-24S322.7 344 335.1 344zM240 248c13.25 0 23.1 10.75 23.1 24S253.3 296 240 296c-13.25 0-23.1-10.75-23.1-24S226.8 248 240 248zM559.1 464H16c-8.75 0-15.1 7.25-15.1 16l-.0016 16c0 8.75 7.25 16 15.1 16h543.1c8.75 0 15.1-7.25 15.1-16L575.1 480C575.1 471.3 568.7 464 559.1 464z',
			),
		),
		'label'             => __( 'Person Dots From Line', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-dress'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48zM88 384H70.2C59.28 384 51.57 373.3 55.02 362.9L93.28 248.1L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L58.18 182.3C78.43 148.6 114.9 128 154.2 128H165.8C205.1 128 241.6 148.6 261.8 182.3L315.4 271.5C324.5 286.7 319.6 306.3 304.5 315.4C289.3 324.5 269.7 319.6 260.6 304.5L226.7 248.1L264.1 362.9C268.4 373.3 260.7 384 249.8 384H232V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V384H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480L88 384z',
			),
		),
		'label'             => __( 'Person Dress', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-dress-burst'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M527.1 48C527.1 74.51 506.5 96 479.1 96C453.5 96 431.1 74.51 431.1 48C431.1 21.49 453.5 0 479.1 0C506.5 0 527.1 21.49 527.1 48zM375 362.9L413.3 248.1L379.4 304.5C370.3 319.6 350.7 324.5 335.5 315.4C320.4 306.3 315.5 286.7 324.6 271.5L378.2 182.3C398.4 148.6 434.9 128 474.2 128H485.8C525.1 128 561.6 148.6 581.8 182.3L635.4 271.5C644.5 286.7 639.6 306.3 624.5 315.4C609.3 324.5 589.7 319.6 580.6 304.5L546.7 248.1L584.1 362.9C588.4 373.3 580.7 384 569.8 384H551.1V480C551.1 497.7 537.7 512 519.1 512C502.3 512 487.1 497.7 487.1 480V384H471.1V480C471.1 497.7 457.7 512 439.1 512C422.3 512 407.1 497.7 407.1 480V384H390.2C379.3 384 371.6 373.3 375 362.9L375 362.9zM220.3 92.05L296.4 68.93C302.7 67.03 309.5 69.14 313.6 74.27C317.7 79.39 318.2 86.49 314.1 92.18L275.5 161.3L330.7 199.3L306.3 239.8L255.8 247.6L261.4 327C261.8 333.6 258.3 339.7 252.4 342.6C246.5 345.4 239.4 344.4 234.6 339.9L175.1 286.1L117.4 339.9C112.6 344.4 105.5 345.4 99.63 342.6C93.73 339.7 90.15 333.6 90.62 327L96.21 247.6L17.55 235.4C11.08 234.4 5.868 229.6 4.41 223.2C2.951 216.8 5.538 210.1 10.94 206.4L76.5 161.3L37.01 92.18C33.76 86.49 34.31 79.39 38.39 74.27C42.48 69.14 49.28 67.03 55.55 68.93L131.7 92.05L161.1 18.09C163.6 11.1 169.4 7.1 175.1 7.1C182.6 7.1 188.4 11.1 190.9 18.09L220.3 92.05z',
			),
		),
		'label'             => __( 'Person Dress Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-drowning'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M191.1 96.16C191.1 148.8 226.1 195.4 276.3 211.4C316.3 224.2 358.1 225.1 399.1 216.6L504.9 192.8C522.1 188.9 539.3 199.7 543.2 216.9C547.1 234.1 536.3 251.3 519.1 255.2L414.1 279.1C403.6 281.5 392.9 283.3 382.2 284.5L364.5 382.1C350.9 378.9 337.2 372.7 324.8 364.1C302.8 348.6 273.3 348.6 251.2 364.1C234 375.9 213.2 384.5 192 384.5C184.7 384.5 177 383.3 169.2 381.2L190.2 234.5C151.5 200.1 127.1 150.2 127.1 96.16V64C127.1 46.33 142.3 32 159.1 32C177.7 32 191.1 46.33 191.1 64V96.16zM255.1 127.1C255.1 92.65 284.7 63.1 320 63.1C355.3 63.1 384 92.65 384 127.1C384 163.3 355.3 191.1 320 191.1C284.7 191.1 255.1 163.3 255.1 127.1zM384 416C410.9 416 439.4 405.2 461.4 389.9L461.5 389.9C473.4 381.4 489.5 382.1 500.7 391.6C515 403.5 533.2 412.6 551.3 416.8C568.5 420.8 579.2 438.1 575.2 455.3C571.2 472.5 553.1 483.2 536.7 479.2C512.2 473.4 491.9 462.6 478.5 454.2C449.5 469.7 417 480 384 480C352.1 480 323.4 470.1 303.6 461.1C297.7 458.5 292.5 455.8 288 453.4C283.5 455.8 278.3 458.5 272.4 461.1C252.6 470.1 223.9 480 192 480C158.1 480 126.5 469.7 97.5 454.2C84.12 462.6 63.79 473.4 39.27 479.2C22.06 483.2 4.853 472.5 .8422 455.3C-3.169 438.1 7.532 420.8 24.74 416.8C42.84 412.6 60.96 403.5 75.31 391.6C86.46 382.1 102.6 381.4 114.5 389.9L114.6 389.9C136.7 405.2 165.1 416 192 416C219.5 416 247 405.4 269.5 389.9C280.6 382 295.4 382 306.5 389.9C328.1 405.4 356.5 416 384 416H384z',
			),
		),
		'label'             => __( 'Person Drowning', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'person-falling'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M256 0C273.7 0 288 14.33 288 32V41.84C288 96.45 260.1 146.5 215.5 175.4L215.7 175.8L272.5 255.1H360C375.1 255.1 389.3 263.1 398.4 275.2L441.6 332.8C452.2 346.9 449.3 366.1 435.2 377.6C421.1 388.2 401 385.3 390.4 371.2L352 319.1H254.6L346.9 462.6C356.5 477.5 352.2 497.3 337.4 506.9C322.5 516.5 302.7 512.2 293.1 497.4L132.5 249.2C129.6 258.4 127.1 268.1 127.1 278.2V351.1C127.1 369.7 113.7 383.1 95.1 383.1C78.33 383.1 63.1 369.7 63.1 351.1V278.2C63.1 213 103.6 154.5 164.1 130.3C200.3 115.8 223.1 80.79 223.1 41.84V32C223.1 14.33 238.3 .0003 256 .0003L256 0zM32 80C32 53.49 53.49 32 80 32C106.5 32 128 53.49 128 80C128 106.5 106.5 128 80 128C53.49 128 32 106.5 32 80z',
			),
		),
		'label'             => __( 'Person Falling', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-falling-burst'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M256 41.84C256 96.45 228.1 146.5 183.5 175.4L183.7 175.8L240.5 255.1H311.1C327.1 255.1 341.3 263.1 350.4 275.2L393.6 332.8C404.2 346.9 401.3 366.1 387.2 377.6C373.1 388.2 353 385.3 342.4 371.2L303.1 319.1H222.6L314.9 462.6C324.5 477.5 320.2 497.3 305.4 506.9C290.5 516.5 270.7 512.2 261.1 497.4L100.5 249.2C97.57 258.4 95.1 268.1 95.1 278.2V351.1C95.1 369.7 81.67 383.1 63.1 383.1C46.33 383.1 31.1 369.7 31.1 351.1V278.2C31.1 213 71.65 154.5 132.1 130.3C168.3 115.8 191.1 80.79 191.1 41.84V32C191.1 14.33 206.3 0 223.1 0C241.7 0 255.1 14.33 255.1 32L256 41.84zM96 79.1C96 106.5 74.51 127.1 48 127.1C21.49 127.1 0 106.5 0 79.1C0 53.49 21.49 31.1 48 31.1C74.51 31.1 96 53.49 96 79.1zM464 286.1L424.7 322.2C423.1 319.3 421.3 316.4 419.2 313.6L382.1 265.3L384.2 247.6L365.8 244.8C351.2 231.5 332.1 223.1 311.1 223.1H292.6C292.5 223.7 292.5 223.4 292.4 223.2C290.1 216.8 293.5 210.1 298.9 206.4L364.5 161.3L325 92.18C321.8 86.49 322.3 79.39 326.4 74.27C330.5 69.14 337.3 67.03 343.6 68.93L419.7 92.05L449.1 18.09C451.6 11.1 457.4 8 464 8C470.6 8 476.4 11.1 478.9 18.09L508.3 92.05L584.4 68.93C590.7 67.03 597.5 69.14 601.6 74.27C605.7 79.39 606.2 86.49 602.1 92.18L563.5 161.3L629.1 206.4C634.5 210.1 637 216.8 635.6 223.2C634.1 229.6 628.9 234.4 622.4 235.4L543.8 247.6L549.4 327C549.8 333.6 546.3 339.7 540.4 342.6C534.5 345.4 527.4 344.4 522.6 339.9L464 286.1z',
			),
		),
		'label'             => __( 'Person Falling Burst', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-half-dress'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48zM168 128H174.9C208.6 128 239.8 145.7 257.2 174.6L315.4 271.5C324.5 286.7 319.6 306.3 304.5 315.4C289.3 324.5 269.7 319.6 260.6 304.5L232 256.9V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480L168 128zM58.18 182.3C78.06 149.2 113.5 128.8 152 128V480.2C151.9 497.8 137.6 512 120 512C102.3 512 88 497.7 88 480V384H70.2C59.28 384 51.57 373.3 55.02 362.9L93.28 248.1L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L58.18 182.3z',
			),
		),
		'label'             => __( 'Person Half Dress', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-harassing'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M144 48C144 21.49 165.5 0 192 0C218.5 0 240 21.49 240 48C240 74.51 218.5 96 192 96C165.5 96 144 74.51 144 48V48zM15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C80.2 145.7 111.4 128 145.1 128H181C209.6 128 236.7 140.7 254.9 162.7L328.6 251.6C339.9 265.2 338 285.3 324.4 296.6C310.8 307.9 290.7 306 279.4 292.4L232 235.3V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V352H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480V256.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4H15.52zM480 240C480 266.5 458.5 288 432 288C405.5 288 384 266.5 384 240C384 213.5 405.5 192 432 192C458.5 192 480 213.5 480 240zM464 344C464 313.1 489.1 288 520 288C550.9 288 576 313.1 576 344V446.1C576 482.5 546.5 512 510.1 512C492.6 512 475.8 505.1 463.4 492.7L408.8 438L380.6 494.3C372.7 510.1 353.5 516.5 337.7 508.6C321.9 500.7 315.5 481.5 323.4 465.7L371.4 369.7C375.1 360.5 384.7 354.1 394.9 352.4C405 350.8 415.4 354.1 422.6 361.4L464 402.7V344zM288 48C288 39.16 295.2 32 304 32H360C368.8 32 376 39.16 376 48C376 56.84 368.8 64 360 64H304C295.2 64 288 56.84 288 48zM335.2 121.7C343.1 125.6 346.3 135.3 342.3 143.2C338.4 151.1 328.7 154.3 320.8 150.3L272.8 126.3C264.9 122.4 261.7 112.7 265.7 104.8C269.6 96.94 279.3 93.74 287.2 97.69L335.2 121.7z',
			),
		),
		'label'             => __( 'Person Harassing', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-hiking'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M240 96c26.5 0 48-21.5 48-48S266.5 0 240 0C213.5 0 192 21.5 192 48S213.5 96 240 96zM80.01 287.1c7.31 0 13.97-4.762 15.87-11.86L137 117c.3468-1.291 .5125-2.588 .5125-3.866c0-7.011-4.986-13.44-12.39-15.13C118.4 96.38 111.7 95.6 105.1 95.6c-36.65 0-70 23.84-79.32 59.53L.5119 253.3C.1636 254.6-.0025 255.9-.0025 257.2c0 7.003 4.961 13.42 12.36 15.11L76.01 287.5C77.35 287.8 78.69 287.1 80.01 287.1zM368 160h-15.1c-8.875 0-15.1 7.125-15.1 16V192h-34.75l-46.75-46.75C243.4 134.1 228.6 128 212.9 128C185.9 128 162.5 146.3 155.9 172.5L129 280.3C128.4 282.8 128 285.5 128 288.1c0 8.325 3.265 16.44 9.354 22.53l86.62 86.63V480c0 17.62 14.37 32 31.1 32s32-14.38 32-32v-82.75c0-17.12-6.625-33.13-18.75-45.25l-46.87-46.88c.25-.5 .5-.875 .625-1.375l19.1-79.5l22.37 22.38C271.4 252.6 279.5 256 288 256h47.1v240c0 8.875 7.125 16 15.1 16h15.1C376.9 512 384 504.9 384 496v-320C384 167.1 376.9 160 368 160zM81.01 472.3c-.672 2.63-.993 5.267-.993 7.86c0 14.29 9.749 27.29 24.24 30.89C106.9 511.8 109.5 512 112 512c14.37 0 27.37-9.75 30.1-24.25l25.25-101l-52.75-52.75L81.01 472.3z',
			),
		),
		'label'             => __( 'Person Hiking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'lifestyle-and-hobbies' ),
	),
	'person-military-pointing'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M366.7 1.443C376 .6658 384 8.027 384 17.39V47.1C384 56.84 376.8 63.1 368 63.1H216.1C203.2 63.1 192 52.81 192 39C192 25.1 201.1 15.17 214.9 14.09L366.7 1.443zM208 111.1C208 106.5 208.6 101.2 209.6 95.1H366.4C367.5 101.2 368 106.5 368 111.1C368 156.2 332.2 191.1 288 191.1C243.8 191.1 208 156.2 208 111.1V111.1zM313.2 223.1C327.6 223.1 341.6 226.3 354.9 230.5L192 393.4V303.1H40.01C17.92 303.1 .0077 286.1 .0077 263.1C.0077 241.9 17.92 223.1 40.01 223.1H313.2zM430.3 290.8L506.4 419.7C517.7 438.7 511.4 463.2 492.4 474.4C473.3 485.7 448.8 479.4 437.6 460.3L384 369.7V416H214.6L385.7 244.9C403.7 256.3 419.1 271.9 430.3 290.8V290.8zM384 448V480C384 497.7 369.7 512 352 512H224C206.3 512 192 497.7 192 480V448H384z',
			),
		),
		'label'             => __( 'Person Military Pointing', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-military-rifle'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M128 39C128 25.1 137.1 15.17 150.9 14.09L302.7 1.443C312 .6658 320 8.027 320 17.39V47.1C320 56.84 312.8 63.1 304 63.1H152.1C139.2 63.1 128 52.81 128 39V39zM302.4 95.1C303.5 101.2 304 106.5 304 111.1C304 156.2 268.2 191.1 224 191.1C179.8 191.1 144 156.2 144 111.1C144 106.5 144.6 101.2 145.6 95.1H302.4zM373.6 460.3L320 369.7V480C320 481.3 319.9 482.5 319.8 483.8L145.5 234.9C162.1 227.8 180.2 223.1 198.8 223.1H249.2C265.1 223.1 280.6 226.8 295 231.9L389.9 67.71C382.2 63.3 379.6 53.51 384 45.86C388.4 38.21 398.2 35.58 405.9 40L433.6 56C441.2 60.42 443.8 70.21 439.4 77.86L383.1 173.9L385.6 174.9C400.9 183.7 406.1 203.3 397.3 218.6L360.6 282C362.6 284.9 364.5 287.8 366.3 290.8L442.4 419.7C453.7 438.7 447.4 463.2 428.4 474.4C409.3 485.7 384.8 479.4 373.6 460.3V460.3zM264 319.1C277.3 319.1 288 309.3 288 295.1C288 282.7 277.3 271.1 264 271.1C250.7 271.1 240 282.7 240 295.1C240 309.3 250.7 319.1 264 319.1zM160 512C142.3 512 128 497.7 128 480V369.7L74.44 460.3C63.21 479.4 38.68 485.7 19.66 474.4C.6381 463.2-5.669 438.7 5.569 419.7L81.7 290.8C91.06 274.1 103.4 261.5 117.7 250.8L299.1 510C295.6 511.3 291.9 512 288 512L160 512z',
			),
		),
		'label'             => __( 'Person Military Rifle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-military-to-person'              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M182.2 .0998C191.7-.9534 200 6.466 200 16V30.13C200 38.91 192.9 46.05 184.1 46.13H72.74C63.48 46.04 56 38.52 56 29.24C56 20.64 62.47 13.41 71.02 12.46L182.2 .0998zM192 96C192 131.3 163.3 160 128 160C92.65 160 64 131.3 64 96C64 89.8 64.88 83.8 66.53 78.13H189.5C191.1 83.8 192 89.8 192 96V96zM32 256C32 237.2 40.09 220.3 52.97 208.6L197.2 319.6C195.5 319.9 193.8 320 192 320H64C46.33 320 32 305.7 32 288L32 256zM222.2 298.5L85.05 192.9C88.61 192.3 92.27 191.1 96 191.1H160C195.3 191.1 224 220.7 224 255.1V287.1C224 291.7 223.4 295.2 222.2 298.5V298.5zM320 96C320 60.65 348.7 31.1 384 31.1C419.3 31.1 448 60.65 448 96C448 131.3 419.3 160 384 160C348.7 160 320 131.3 320 96zM416 192C451.3 192 480 220.7 480 256V288C480 305.7 465.7 320 448 320H320C302.3 320 288 305.7 288 288V256C288 220.7 316.7 192 352 192H416zM151.8 506.1C141.8 514.8 126.7 513.8 117.9 503.8C109.2 493.8 110.2 478.7 120.2 469.9L136.1 456L23.1 455.1C10.74 455.1-.0003 445.2 0 431.1C.0003 418.7 10.75 407.1 24 407.1L136.1 408L120.2 394.1C110.2 385.3 109.2 370.2 117.9 360.2C126.7 350.2 141.8 349.2 151.8 357.9L215.8 413.9C221 418.5 224 425.1 224 431.1C224 438.9 221 445.5 215.8 450.1L151.8 506.1zM296.2 413.9L360.2 357.9C370.2 349.2 385.3 350.2 394.1 360.2C402.8 370.2 401.8 385.3 391.8 394.1L375.9 407.1L488 407.1C501.3 407.1 512 418.7 512 431.1C512 445.2 501.3 455.1 488 455.1L375.9 455.1L391.8 469.9C401.8 478.7 402.8 493.8 394.1 503.8C385.3 513.8 370.2 514.8 360.2 506.1L296.2 450.1C290.1 445.5 288 438.9 288 431.1C288 425.1 290.1 418.5 296.2 413.9H296.2z',
			),
		),
		'label'             => __( 'Person Military To Person', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-praying'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M255.1 128c35.38 0 63.1-28.62 63.1-64s-28.62-64-63.1-64S191.1 28.62 191.1 64S220.6 128 255.1 128zM225.4 297.8c14 16.75 39 19.12 56.01 5.25l88.01-72c17-14 19.5-39.25 5.625-56.38c-14-17.12-39.25-19.5-56.38-5.625L261.3 216l-39-46.25c-15.38-18.38-39.13-27.88-64.01-25.38c-24.13 2.5-45.25 16.25-56.38 37l-49.38 92C29.13 317 43.88 369.8 86.76 397.1L131.5 432H40C17.88 432 0 449.9 0 472S17.88 512 40 512h208c34.13 0 53.76-42.75 28.25-68.25L166.4 333.9L201.3 269L225.4 297.8z',
			),
		),
		'label'             => __( 'Person Praying', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-pregnant'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M112 48C112 21.49 133.5 0 160 0C186.5 0 208 21.49 208 48C208 74.51 186.5 96 160 96C133.5 96 112 74.51 112 48zM88 382.1C74.2 379.4 64 366.9 64 352V296.9L59.43 304.5C50.33 319.6 30.67 324.5 15.52 315.4C.3696 306.3-4.531 286.7 4.573 271.5L62.85 174.6C77.84 149.6 103.2 133 131.5 128.1C135.6 128.3 139.8 128 144 128H160C161.4 128 162.8 128.1 164.1 128.3C199.8 131.2 229.5 157.6 236.2 193.3L242.3 225.7C286.6 234.3 320 273.2 320 320V352C320 369.7 305.7 384 288 384H232V480C232 497.7 217.7 512 200 512C182.3 512 168 497.7 168 480V384H152V480C152 497.7 137.7 512 120 512C102.3 512 88 497.7 88 480L88 382.1z',
			),
		),
		'label'             => __( 'Person Pregnant', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'person-rays'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M304 48C304 74.51 282.5 96 256 96C229.5 96 208 74.51 208 48C208 21.49 229.5 0 256 0C282.5 0 304 21.49 304 48zM248 352V480C248 497.7 233.7 512 216 512C198.3 512 184 497.7 184 480V256.9L155.4 304.5C146.3 319.6 126.7 324.5 111.5 315.4C96.37 306.3 91.47 286.7 100.6 271.5L158.8 174.6C176.2 145.7 207.4 128 241.1 128H270.9C304.6 128 335.8 145.7 353.2 174.6L411.4 271.5C420.5 286.7 415.6 306.3 400.5 315.4C385.3 324.5 365.7 319.6 356.6 304.5L328 256.9V480C328 497.7 313.7 512 296 512C278.3 512 264 497.7 264 480V352L248 352zM7.029 7.029C16.4-2.343 31.6-2.343 40.97 7.029L120.1 87.03C130.3 96.4 130.3 111.6 120.1 120.1C111.6 130.3 96.4 130.3 87.03 120.1L7.029 40.97C-2.343 31.6-2.343 16.4 7.029 7.029V7.029zM471 7.029C480.4-2.343 495.6-2.343 504.1 7.029C514.3 16.4 514.3 31.6 504.1 40.97L424.1 120.1C415.6 130.3 400.4 130.3 391 120.1C381.7 111.6 381.7 96.4 391 87.03L471 7.029zM7.029 471L87.03 391C96.4 381.7 111.6 381.7 120.1 391C130.3 400.4 130.3 415.6 120.1 424.1L40.97 504.1C31.6 514.3 16.4 514.3 7.029 504.1C-2.343 495.6-2.343 480.4 7.029 471V471zM391 424.1C381.7 415.6 381.7 400.4 391 391C400.4 381.7 415.6 381.7 424.1 391L504.1 471C514.3 480.4 514.3 495.6 504.1 504.1C495.6 514.3 480.4 514.3 471 504.1L391 424.1z',
			),
		),
		'label'             => __( 'Person Rays', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'person-rifle'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M265.2 192C290.6 192 315 199.1 336 211.9V512H144V337.7L90.44 428.3C79.21 447.4 54.68 453.7 35.66 442.4C16.64 431.2 10.33 406.7 21.57 387.7L97.7 258.8C122.2 217.4 166.7 192 214.8 192L265.2 192zM320 80C320 124.2 284.2 160 240 160C195.8 160 160 124.2 160 80C160 35.82 195.8 .0003 240 .0003C284.2 .0003 320 35.82 320 80zM464 16V132.3C473.6 137.8 480 148.2 480 160V269.3L496 264V208C496 199.2 503.2 192 512 192H528C536.8 192 544 199.2 544 208V292.5C544 299.4 539.6 305.5 533.1 307.6L480 325.3V352H528C536.8 352 544 359.2 544 368V384C544 392.8 536.8 400 528 400H484L507 492.1C509.6 502.2 501.9 512 491.5 512H432C423.2 512 416 504.8 416 496V400H400C382.3 400 368 385.7 368 368V224C368 206.3 382.3 192 400 192V160C400 148.2 406.4 137.8 416 132.3V32C407.2 32 400 24.84 400 16C400 7.164 407.2 0 416 0H448C456.8 0 464 7.164 464 16V16z',
			),
		),
		'label'             => __( 'Person Rifle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'person-running'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M400 224h-44l-26.12-53.25c-12.5-25.5-35.38-44.25-61.75-51L197 98.63C189.5 96.84 181.1 95.97 174.5 95.97c-20.88 0-41.33 6.81-58.26 19.78L76.5 146.3C68.31 152.5 64.01 162 64.01 171.6c0 17.11 13.67 32.02 32.02 32.02c6.808 0 13.67-2.158 19.47-6.616l39.63-30.38c5.92-4.488 13.01-6.787 19.53-6.787c2.017 0 3.981 .2196 5.841 .6623l14.62 4.25l-37.5 87.5C154.1 260.3 152.5 268.8 152.5 277.2c0 22.09 11.49 43.52 31.51 55.29l85 50.13l-27.5 87.75c-.9875 3.174-1.458 6.388-1.458 9.55c0 13.65 8.757 26.31 22.46 30.58C265.6 511.5 268.9 512 272 512c13.62 0 26.25-8.75 30.5-22.5l31.75-101c1.211-4.278 1.796-8.625 1.796-12.93c0-16.57-8.661-32.51-23.55-41.44l-61.13-36.12l31.25-78.38l20.25 41.5C310.9 277.4 327.9 288 345.1 288H400c17.62 0 32-14.38 32-32C432 238.3 417.6 224 400 224zM288 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48S261.5 96 288 96zM129.8 317.5L114.9 352H48c-17.62 0-32 14.38-32 32s14.38 32 32 32h77.5c19.25 0 36.5-11.5 44-29.12l8.875-20.5l-10.75-6.25C150.4 349.9 137.6 334.8 129.8 317.5z',
			),
		),
		'label'             => __( 'Person Running', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-shelter'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M495.9 132.2C505.8 137.9 512 148.5 512 160V480C512 497.7 497.7 512 480 512C462.3 512 448 497.7 448 480V178.6L256 68.86L64 178.6V480C64 497.7 49.67 512 32 512C14.33 512 0 497.7 0 480V160C0 148.5 6.153 137.9 16.12 132.2L240.1 4.216C249.1-1.405 262-1.405 271.9 4.216L495.9 132.2zM216 168C216 145.9 233.9 128 256 128C278.1 128 296 145.9 296 168C296 190.1 278.1 208 256 208C233.9 208 216 190.1 216 168zM224 512C210.7 512 200 501.3 200 488V313.5L173.1 363.4C166.8 375 152.3 379.4 140.6 373.1C128.1 366.8 124.6 352.3 130.9 340.6L168.7 270.3C184.1 241.8 213.9 223.1 246.2 223.1H265.8C298.1 223.1 327.9 241.8 343.3 270.3L381.1 340.6C387.4 352.3 383 366.8 371.4 373.1C359.7 379.4 345.2 375 338.9 363.4L312 313.5V488C312 501.3 301.3 512 288 512C274.7 512 264 501.3 264 488V400H248V488C248 501.3 237.3 512 224 512V512z',
			),
		),
		'label'             => __( 'Person Shelter', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'person-skating'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M399.1 0c-26.5 0-48.01 21.5-48.01 48S373.5 96 399.1 96C426.5 96 448 74.5 448 48S426.5 0 399.1 0zM399.1 448c-8.751 0-16 7.25-16 16S376.7 480 367.1 480h-96.01c-8.751 0-16 7.25-16 16s7.251 16 16 16h96.01c26.5 0 48.01-21.5 48.01-48C415.1 455.2 408.7 448 399.1 448zM129.1 451.9c-11.34 0-11.19 9.36-22.65 9.36c-4.074 0-8.163-1.516-11.21-4.625l-67.98-67.89c-3.063-3.125-7.165-4.688-11.27-4.688c-4.102 0-8.204 1.562-11.27 4.688C1.562 391.8-.0001 395.9-.0001 400s1.562 8.203 4.688 11.27l67.88 67.98c9.376 9.375 21.59 14 33.96 14c13.23 0 38.57-8.992 38.57-25.36C145.1 456.7 135.2 451.9 129.1 451.9zM173.8 276.8L80.2 370.5c-6.251 6.25-9.376 14.44-9.376 22.62c0 24.75 22.57 32 31.88 32c8.251 0 16.5-3.125 22.63-9.375l91.89-92l-30.13-30.12C182.1 288.6 177.7 282.9 173.8 276.8zM127.1 160h105.5L213.3 177.3c-21.18 18.04-22.31 41.73-22.31 48.65c0 16.93 6.8 33.22 18.68 45.1l78.26 78.25V432c0 17.75 14.25 32 32 32s32-14.25 32-32v-89.38c0-12.62-5.126-25-14.13-33.88l-61.01-61c.5001-.5 1.25-.625 1.75-1.125l82.26-82.38c7.703-7.702 11.76-17.87 11.76-28.25c0-22.04-17.86-39.97-40.01-39.97L127.1 96C110.2 96 95.96 110.2 95.96 128S110.2 160 127.1 160z',
			),
		),
		'label'             => __( 'Person Skating', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-skiing'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M432.1 96.02c26.51 0 47.99-21.5 47.99-48.01S458.6 0 432.1 0s-47.98 21.5-47.98 48.01S405.6 96.02 432.1 96.02zM511.1 469.1c0-13.98-11.33-23.95-23.89-23.95c-18.89 0-19.23 19.11-46.15 19.11c-5.476 0-10.87-1.081-15.87-3.389l-135.8-70.26l49.15-73.82c5.446-8.116 8.09-17.39 8.09-26.63c0-12.4-4.776-24.73-14.09-33.9l-40.38-40.49l-106.1-53.1C185.6 165.8 185.4 169 185.4 172.2c0 16.65 6.337 32.78 18.42 44.86l75.03 75.21l-45.88 68.76L34.97 258.8C31.44 257 27.64 256.1 23.93 256.1C9.675 256.1 0 267.8 0 280.1c0 8.673 4.735 17.04 12.96 21.24l392 202.6c11.88 5.501 24.45 8.119 37.08 8.119C480.1 512 511.1 486.7 511.1 469.1zM119.1 91.65L108.5 114.2C114.2 117 120.2 118.4 126.2 118.4c9.153 0 18.1-3.2 25.06-9.102l47.26 23.51c-.125 0-.125 .125-.2501 .25l114.5 56.76l32.51-13l6.376 19.13c4.001 12.13 12.63 22.01 24 27.76l58.14 28.1c4.609 2.287 9.455 3.355 14.26 3.355c18.8 0 31.98-15.43 31.98-31.93c0-11.74-6.461-23.1-17.74-28.7l-52.03-26.1l-17.12-51.15C386.6 98.69 364.2 73.99 333.1 73.99c-7.658 0-15.82 1.504-24.43 4.934L227.4 111.3L164.9 80.33c.009-.3461 .0134-.692 .0134-1.038c0-14.13-7.468-27.7-20.89-34.53L132.9 66.45L98.17 59.43C97.83 59.36 97.53 59.35 97.19 59.35c-2.666 0-5.276 2.177-5.276 5.273c0 1.473 .648 2.936 1.81 3.961L119.1 91.65z',
			),
		),
		'label'             => __( 'Person Skiing', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-skiing-nordic'                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M336 96C362.5 96 384 74.5 384 48S362.5 0 336 0S288 21.5 288 48S309.5 96 336 96zM552 416c-13.25 0-24 10.75-24 24s-10.75 24-24 24h-69.5L460 285.6c11.75-4.75 20.04-16.31 20.04-29.69c0-17.75-14.38-31.95-32.01-31.95l-43.9-.0393l-26.11-53.22c-12.5-25.5-35.5-44.12-61.75-50.87l-71.22-21.15c-7.475-1.819-15.08-2.693-22.59-2.693c-20.86 0-41.25 6.854-58.16 19.72L124.6 146.2C116.3 152.5 111.1 161.1 111.1 171.6c0 14.71 8.712 21.23 9.031 21.6L66.88 464H24C10.75 464 0 474.8 0 488S10.75 512 24 512h480c39.75 0 72-32.25 72-72C576 426.8 565.3 416 552 416zM291.6 463.9H194.7l43.1-90.97l-21.99-12.1c-12.13-7.25-21.99-16.89-29.49-27.77l-62.48 131.7L99.5 464l52.25-261.4c4.125-1 8.112-2.846 11.74-5.596l39.81-30.45c5.821-4.485 12.86-6.771 19.38-6.771c2.021 0 4.015 .212 5.878 .6556l14.73 4.383L205.8 252.2C202.3 260.3 200.7 268.9 200.7 277.3c0 22.06 11.42 43.37 31.41 55.22l84.97 50.15L291.6 463.9zM402.1 464l-43.58-.125l23.6-75.48c1.221-4.314 1.805-8.69 1.805-13.03c0-16.53-8.558-32.43-23.41-41.34l-61.21-36.1l31.32-78.23l20.26 41.36c8 16.25 24.86 26.89 43.11 26.89L427.3 288L402.1 464z',
			),
		),
		'label'             => __( 'Person Skiing Nordic', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-snowboarding'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M460.7 249.6c5.877 4.25 12.47 6.393 19.22 6.393c10.76 0 32.05-8.404 32.05-31.97c0-9.74-4.422-19.36-12.8-25.65l-111.5-83.48c-13.75-10.25-29.04-18.42-45.42-23.79l-63.66-21.23l-26.12-52.12c-5.589-11.17-16.9-17.64-28.63-17.64c-17.8 0-31.99 14.47-31.99 32.01c0 4.803 1.086 9.674 3.374 14.25l29.12 58.12c5.75 11.38 15.55 19.85 27.67 23.98l16.45 5.522L227.3 154.6C205.5 165.5 191.9 187.4 191.9 211.8L191.9 264.9L117.8 289.6C104.4 294.1 95.95 306.5 95.95 319.9c0 12.05 6.004 19.05 10.33 23.09l-38.68-14.14C41.23 319.4 49.11 295 23.97 295c-18.67 0-23.97 17.16-23.97 24.09c0 8.553 13.68 41.32 51.13 54.88l364.1 132.8C425.7 510.2 435.7 512 445.7 512c12.5 0 24.97-2.732 36.47-8.232c8.723-3.997 13.85-12.71 13.85-21.77c0-18.67-17.15-23.96-24.06-23.96c-3.375 0-6.73 .7505-9.998 2.248c-5.111 2.486-10.64 3.702-16.21 3.702c-4.511 0-9.049-.7978-13.41-2.364l-90.68-33.12c8.625-4.125 15.53-11.76 17.78-21.89l21.88-101.1c.7086-3.335 1.05-6.668 1.05-10c0-14.91-6.906-29.31-19.17-38.4l-52.01-39l66.01-30.5L460.7 249.6zM316.3 301.3l-19.66 92c-.4205 1.997-.5923 3.976-.5923 5.911c0 4.968 1.264 9.691 3.333 14.01l-169.5-61.49c2.625-.25 5.492-.4448 8.117-1.32l85-28.38c19.63-6.5 32.77-24.73 32.77-45.48l0-20.53L316.3 301.3zM431.9 95.99c26.5 0 48-21.5 48-47.1S458.4 0 431.9 0s-48 21.5-48 47.1S405.4 95.99 431.9 95.99z',
			),
		),
		'label'             => __( 'Person Snowboarding', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-swimming'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M192.4 320c63.38 0 54.09-39.67 95.33-40.02c42.54 .3672 31.81 40.02 95.91 40.02c39.27 0 55.72-18.41 62.21-24.83l-140.4-116.1c3.292-1.689 31.66-18.2 75.25-18.2c12.57 0 25.18 1.397 37.53 4.21l38.59 8.844c2.412 .5592 4.824 .8272 7.2 .8272c15.91 0 31.96-12.81 31.96-32.04c0-14.58-10.03-27.77-24.84-31.16l-38.59-8.844c-17.06-3.904-34.46-5.837-51.81-5.837c-120.1 0-177.4 85.87-178.1 88.02L179.1 213.3C158.1 241.3 147.4 273.8 145 307.7C157.5 315.4 174.3 320 192.4 320zM576 397c0-15.14-10.82-28.59-26.25-31.42c-48.52-8.888-45.5-29.48-69.6-29.48c-25.02 0-31.19 31.79-96.18 31.79c-48.59 0-72.72-22.06-73.38-22.62c-6.141-6.157-14.26-9.188-22.42-9.188c-24.75 0-31.59 31.81-96.2 31.81c-48.59 0-72.69-22.03-73.41-22.59c-6.125-6.157-14.3-9.245-22.46-9.245c-8.072 0-16.12 3.026-22.38 8.901c-29.01 26.25-73.75 12.54-73.75 52.08c0 16.08 12.77 32.07 31.71 32.07c9.77 0 39.65-7.34 64.26-21.84C115.5 418.8 147.4 431.1 192 431.1s76.5-13.12 96-24.66c19.53 11.53 51.47 24.59 96 24.59c44.59 0 76.56-13.09 96.06-24.62c24.71 14.57 54.74 21.83 64.24 21.83C563.2 429.1 576 413.3 576 397zM95.1 224c35.35 0 64-28.65 64-64c0-35.35-28.65-64-64-64s-64 28.65-64 64C31.1 195.3 60.65 224 95.1 224z',
			),
		),
		'label'             => __( 'Person Swimming', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'person-through-window'                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M191.1 128C191.1 154.5 170.5 176 143.1 176C117.5 176 95.1 154.5 95.1 128C95.1 101.5 117.5 80 143.1 80C170.5 80 191.1 101.5 191.1 128zM385 336H310.5L394.6 462.2C404.4 476.1 400.5 496.8 385.8 506.6C371 516.4 351.2 512.5 341.4 497.8L308.2 448H48C21.49 448 0 426.5 0 400V48C0 21.49 21.49 0 48 0H592C618.5 0 640 21.49 640 48V400C640 426.5 618.5 448 592 448H421.9L379.2 384H425L385 336zM63.1 64V384H127.1C127.1 384 127.1 384 127.1 384V310.2C127.1 245 167.6 186.5 228.1 162.3C264.3 147.8 287.1 112.8 287.1 73.84V64H63.1zM352 64V73.84C352 128.5 324.1 178.5 279.5 207.4C279.8 207.9 280.1 208.4 280.4 208.9L321.4 271.1H392.5C406.8 271.1 420.3 278.3 429.4 289.3L508.3 384H576V64H352zM265.5 384L196.7 280.7C193.6 290 191.1 299.1 191.1 310.2V383.1C191.1 383.1 191.1 384 191.1 383.1L265.5 384z',
			),
		),
		'label'             => __( 'Person Through Window', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'person-walking'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M256 48C256 74.51 234.5 96 208 96C181.5 96 160 74.51 160 48C160 21.49 181.5 0 208 0C234.5 0 256 21.49 256 48zM126.5 199.3C125.6 199.7 124.6 200.1 123.7 200.5L112.7 205.4C97.41 212.2 85.42 224.6 79.22 240.1L77.71 243.9C71.15 260.3 52.53 268.3 36.12 261.7C19.71 255.1 11.73 236.5 18.29 220.1L19.8 216.3C32.19 185.4 56.18 160.5 86.66 146.9L97.66 142C118.5 132.8 140.1 128 163.7 128C208.3 128 248.5 154.8 265.6 195.9L280.1 232.7L302.3 243.4C318.1 251.3 324.5 270.5 316.6 286.3C308.7 302.1 289.5 308.5 273.7 300.6L247 287.3C236.7 282.1 228.6 273.4 224.2 262.8L214.6 239.8L195.3 305.3L244.8 359.4C250.2 365.3 254.1 372.4 256 380.2L279 472.2C283.3 489.4 272.9 506.8 255.8 511C238.6 515.3 221.2 504.9 216.1 487.8L194.9 399.6L124.3 322.5C109.5 306.4 103.1 283.9 109.6 262.8L126.5 199.3zM68.73 398L93.69 335.6C95.84 338.6 98.16 341.4 100.7 344.2L141.4 388.6L126.9 424.8C124.5 430.9 120.9 436.4 116.3 440.9L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L68.73 398z',
			),
		),
		'label'             => __( 'Person Walking', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'person-walking-arrow-loop-left'         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 48C160 21.49 181.5 0 208 0C234.5 0 256 21.49 256 48C256 74.51 234.5 96 208 96C181.5 96 160 74.51 160 48V48zM112.7 205.4C97.41 212.2 85.42 224.6 79.22 240.1L77.71 243.9C71.15 260.3 52.53 268.3 36.12 261.7C19.71 255.1 11.73 236.5 18.29 220.1L19.8 216.3C32.19 185.4 56.18 160.5 86.66 146.9L97.66 142C118.5 132.8 140.1 128 163.7 128C208.3 128 248.5 154.8 265.6 195.9L280.1 232.7L302.3 243.4C318.1 251.3 324.5 270.5 316.6 286.3C308.7 302.1 289.5 308.5 273.7 300.6L247 287.3C236.7 282.1 228.6 273.4 224.2 262.8L214.6 239.8L195.3 305.3L244.8 359.4C250.2 365.3 254.1 372.4 256 380.2L279 472.2C283.3 489.4 272.9 506.8 255.8 511C238.6 515.3 221.2 504.9 216.1 487.8L194.9 399.6L124.3 322.5C109.5 306.4 103.1 283.9 109.6 262.8L126.5 199.3C125.6 199.7 124.6 200.1 123.7 200.5L112.7 205.4zM100.7 344.2L141.4 388.6L126.9 424.8C124.5 430.9 120.9 436.4 116.3 440.9L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L68.73 398L93.69 335.6C95.84 338.6 98.17 341.4 100.7 344.2H100.7zM361.4 374.6C348.9 362.1 348.9 341.9 361.4 329.4L441.4 249.4C453.9 236.9 474.1 236.9 486.6 249.4C499.1 261.9 499.1 282.1 486.6 294.6L461.3 320H480C533 320 576 277 576 224C576 170.1 533 128 480 128H352C334.3 128 319.1 113.7 319.1 96C319.1 78.33 334.3 64 352 64H480C568.4 64 640 135.6 640 224C640 312.4 568.4 384 480 384H461.3L486.6 409.4C499.1 421.9 499.1 442.1 486.6 454.6C474.1 467.1 453.9 467.1 441.4 454.6L361.4 374.6z',
			),
		),
		'label'             => __( 'Person Walking Arrow Loop Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'person-walking-arrow-right'             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 48C160 21.49 181.5 0 208 0C234.5 0 256 21.49 256 48C256 74.51 234.5 96 208 96C181.5 96 160 74.51 160 48V48zM112.7 205.4C97.41 212.2 85.42 224.6 79.22 240.1L77.71 243.9C71.15 260.3 52.53 268.3 36.12 261.7C19.71 255.1 11.73 236.5 18.29 220.1L19.8 216.3C32.19 185.4 56.18 160.5 86.66 146.9L97.66 142C118.5 132.8 140.1 128 163.7 128C208.3 128 248.5 154.8 265.6 195.9L280.1 232.7L302.3 243.4C318.1 251.3 324.5 270.5 316.6 286.3C308.7 302.1 289.5 308.5 273.7 300.6L247 287.3C236.7 282.1 228.6 273.4 224.2 262.8L214.6 239.8L195.3 305.3L244.8 359.4C250.2 365.3 254.1 372.4 256 380.2L279 472.2C283.3 489.4 272.9 506.8 255.8 511C238.6 515.3 221.2 504.9 216.1 487.8L194.9 399.6L124.3 322.5C109.5 306.4 103.1 283.9 109.6 262.8L126.5 199.3C125.6 199.7 124.6 200.1 123.7 200.5L112.7 205.4zM100.7 344.2L141.4 388.6L126.9 424.8C124.5 430.9 120.9 436.4 116.3 440.9L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L68.73 398L93.69 335.6C95.84 338.6 98.17 341.4 100.7 344.2H100.7zM630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L550.6 358.6C538.1 371.1 517.9 371.1 505.4 358.6C492.9 346.1 492.9 325.9 505.4 313.4L530.7 288H384C366.3 288 352 273.7 352 256C352 238.3 366.3 224 384 224H530.7L505.4 198.6C492.9 186.1 492.9 165.9 505.4 153.4C517.9 140.9 538.1 140.9 550.6 153.4L630.6 233.4z',
			),
		),
		'label'             => __( 'Person Walking Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'person-walking-dashed-line-arrow-right' => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M160 48C160 21.49 181.5 0 208 0C234.5 0 256 21.49 256 48C256 74.51 234.5 96 208 96C181.5 96 160 74.51 160 48V48zM112.7 205.4C97.41 212.2 85.42 224.6 79.22 240.1L77.71 243.9C71.15 260.3 52.53 268.3 36.12 261.7C19.71 255.1 11.73 236.5 18.29 220.1L19.8 216.3C32.19 185.4 56.18 160.5 86.66 146.9L97.66 142C118.5 132.8 140.1 128 163.7 128C208.3 128 248.5 154.8 265.6 195.9L280.1 232.7L302.3 243.4C318.1 251.3 324.5 270.5 316.6 286.3C308.7 302.1 289.5 308.5 273.7 300.6L247 287.3C236.7 282.1 228.6 273.4 224.2 262.8L214.6 239.8L195.3 305.3L244.8 359.4C250.2 365.3 254.1 372.4 256 380.2L279 472.2C283.3 489.4 272.9 506.8 255.8 511C238.6 515.3 221.2 504.9 216.1 487.8L194.9 399.6L124.3 322.5C109.5 306.4 103.1 283.9 109.6 262.8L126.5 199.3C125.6 199.7 124.6 200.1 123.7 200.5L112.7 205.4zM100.7 344.2L141.4 388.6L126.9 424.8C124.5 430.9 120.9 436.4 116.3 440.9L54.63 502.6C42.13 515.1 21.87 515.1 9.372 502.6C-3.124 490.1-3.124 469.9 9.372 457.4L68.73 398L93.69 335.6C95.84 338.6 98.17 341.4 100.7 344.2H100.7zM630.6 233.4C643.1 245.9 643.1 266.1 630.6 278.6L550.6 358.6C538.1 371.1 517.9 371.1 505.4 358.6C492.9 346.1 492.9 325.9 505.4 313.4L530.7 288H384C366.3 288 352 273.7 352 256C352 238.3 366.3 224 384 224H530.7L505.4 198.6C492.9 186.1 492.9 165.9 505.4 153.4C517.9 140.9 538.1 140.9 550.6 153.4L630.6 233.4zM392 0C405.3 0 416 10.75 416 24V72C416 85.25 405.3 96 392 96C378.7 96 368 85.25 368 72V24C368 10.75 378.7 0 392 0zM416 168C416 181.3 405.3 192 392 192C378.7 192 368 181.3 368 168V152C368 138.7 378.7 128 392 128C405.3 128 416 138.7 416 152V168zM392 320C405.3 320 416 330.7 416 344V360C416 373.3 405.3 384 392 384C378.7 384 368 373.3 368 360V344C368 330.7 378.7 320 392 320zM416 488C416 501.3 405.3 512 392 512C378.7 512 368 501.3 368 488V440C368 426.7 378.7 416 392 416C405.3 416 416 426.7 416 440V488z',
			),
		),
		'label'             => __( 'Person Walking Dashed Line Arrow Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'person-walking-luggage'                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M352 48C352 21.49 373.5 0 400 0C426.5 0 448 21.49 448 48C448 74.51 426.5 96 400 96C373.5 96 352 74.51 352 48zM304.6 205.4C289.4 212.2 277.4 224.6 271.2 240.1L269.7 243.9C263.1 260.3 244.5 268.3 228.1 261.7C211.7 255.1 203.7 236.5 210.3 220.1L211.8 216.3C224.2 185.4 248.2 160.5 278.7 146.9L289.7 142C310.5 132.8 332.1 128 355.7 128C400.3 128 440.5 154.8 457.6 195.9L472.1 232.7L494.3 243.4C510.1 251.3 516.5 270.5 508.6 286.3C500.7 302.1 481.5 308.5 465.7 300.6L439 287.3C428.7 282.1 420.6 273.4 416.2 262.8L406.6 239.8L387.3 305.3L436.8 359.4C442.2 365.3 446.1 372.4 448 380.2L471 472.2C475.3 489.4 464.9 506.8 447.8 511C430.6 515.3 413.2 504.9 408.1 487.8L386.9 399.6L316.3 322.5C301.5 306.4 295.1 283.9 301.6 262.8L318.5 199.3C317.6 199.7 316.6 200.1 315.7 200.5L304.6 205.4zM292.7 344.2L333.4 388.6L318.9 424.8C316.5 430.9 312.9 436.4 308.3 440.9L246.6 502.6C234.1 515.1 213.9 515.1 201.4 502.6C188.9 490.1 188.9 469.9 201.4 457.4L260.7 398L285.7 335.6C287.8 338.6 290.2 341.4 292.7 344.2H292.7zM223.1 274.1C231.7 278.6 234.3 288.3 229.9 295.1L186.1 371.8C185.4 374.5 184.3 377.2 182.9 379.7L118.9 490.6C110 505.9 90.44 511.1 75.14 502.3L19.71 470.3C4.407 461.4-.8371 441.9 7.999 426.6L71.1 315.7C80.84 300.4 100.4 295.2 115.7 303.1L170.1 335.4L202.1 279.1C206.6 272.3 216.3 269.7 223.1 274.1H223.1z',
			),
		),
		'label'             => __( 'Person Walking Luggage', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'person-walking-with-cane'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M445.2 486.1l-117.3-172.6c-3.002 4.529-6.646 8.652-11.12 12c-4.414 3.318-9.299 5.689-14.43 7.307l116.4 171.3c3.094 4.547 8.127 7.008 13.22 7.008c3.125 0 6.247-.8984 8.997-2.773C448.3 504.2 450.2 494.3 445.2 486.1zM143.1 95.1c26.51 0 48.01-21.49 48.01-47.1S170.5 0 144 0S96 21.49 96 48S117.5 95.1 143.1 95.1zM96.01 348.1l-31.03 124.2c-4.312 17.16 6.125 34.53 23.28 38.81C90.86 511.7 93.48 512 96.04 512c14.34 0 27.38-9.703 31-24.23l22.04-88.18L96.01 346.5V348.1zM313.6 268.8l-76.78-102.4C218.8 142.3 190.1 128 160 128L135.6 127.1c-36.59 0-69.5 20.33-85.87 53.06L3.387 273.7C-4.518 289.5 1.887 308.7 17.7 316.6c4.594 2.297 9.469 3.375 14.28 3.375c11.75 0 23.03-6.469 28.66-17.69l35.38-70.76v56.45c0 8.484 3.375 16.62 9.375 22.63l86.63 86.63v82.75c0 17.67 14.31 32 32 32c17.69 0 32-14.33 32-32v-82.75c0-17.09-6.656-33.16-18.75-45.25L192 306.8V213.3l70.38 93.88c10.59 14.11 30.62 16.98 44.78 6.406C321.3 303 324.2 282.9 313.6 268.8z',
			),
		),
		'label'             => __( 'Person Walking With Cane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'travel' ),
	),
	'peseta-sign'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M192 32C269.4 32 333.1 86.97 348.8 160H352C369.7 160 384 174.3 384 192C384 209.7 369.7 224 352 224H348.8C333.1 297 269.4 352 192 352H96V448C96 465.7 81.67 480 64 480C46.33 480 32 465.7 32 448V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160V64C32 46.33 46.33 32 64 32H192zM282.5 160C269.4 122.7 233.8 96 192 96H96V160H282.5zM96 224V288H192C233.8 288 269.4 261.3 282.5 224H96z',
			),
		),
		'label'             => __( 'Peseta Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'peso-sign'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M176 32C244.4 32 303.7 71.01 332.8 128H352C369.7 128 384 142.3 384 160C384 177.7 369.7 192 352 192H351.3C351.8 197.3 352 202.6 352 208C352 213.4 351.8 218.7 351.3 224H352C369.7 224 384 238.3 384 256C384 273.7 369.7 288 352 288H332.8C303.7 344.1 244.4 384 176 384H96V448C96 465.7 81.67 480 64 480C46.33 480 32 465.7 32 448V288C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224V192C14.33 192 0 177.7 0 160C0 142.3 14.33 128 32 128V64C32 46.33 46.33 32 64 32H176zM254.4 128C234.2 108.2 206.5 96 176 96H96V128H254.4zM96 192V224H286.9C287.6 218.8 288 213.4 288 208C288 202.6 287.6 197.2 286.9 192H96zM254.4 288H96V320H176C206.5 320 234.2 307.8 254.4 288z',
			),
		),
		'label'             => __( 'Peso Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'phabricator'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M323 262.1l-.1-13s21.7-19.8 21.1-21.2l-9.5-20c-.6-1.4-29.5-.5-29.5-.5l-9.4-9.3s.2-28.5-1.2-29.1l-20.1-9.2c-1.4-.6-20.7 21-20.7 21l-13.1-.2s-20.5-21.4-21.9-20.8l-20 8.3c-1.4 .5 .2 28.9 .2 28.9l-9.1 9.1s-29.2-.9-29.7 .4l-8.1 19.8c-.6 1.4 21 21 21 21l.1 12.9s-21.7 19.8-21.1 21.2l9.5 20c.6 1.4 29.5 .5 29.5 .5l9.4 9.3s-.2 31.8 1.2 32.3l20.1 8.3c1.4 .6 20.7-23.5 20.7-23.5l13.1 .2s20.5 23.8 21.8 23.3l20-7.5c1.4-.6-.2-32.1-.2-32.1l9.1-9.1s29.2 .9 29.7-.5l8.1-19.8c.7-1.1-20.9-20.7-20.9-20.7zm-44.9-8.7c.7 17.1-12.8 31.6-30.1 32.4-17.3 .8-32.1-12.5-32.8-29.6-.7-17.1 12.8-31.6 30.1-32.3 17.3-.8 32.1 12.5 32.8 29.5zm201.2-37.9l-97-97-.1 .1c-75.1-73.3-195.4-72.8-269.8 1.6-50.9 51-27.8 27.9-95.7 95.3-22.3 22.3-22.3 58.7 0 81 69.9 69.4 46.4 46 97.4 97l.1-.1c75.1 73.3 195.4 72.9 269.8-1.6 51-50.9 27.9-27.9 95.3-95.3 22.3-22.3 22.3-58.7 0-81zM140.4 363.8c-59.6-59.5-59.6-156 0-215.5 59.5-59.6 156-59.5 215.6 0 59.5 59.5 59.6 156 0 215.6-59.6 59.5-156 59.4-215.6-.1z',
			),
		),
		'label'             => __( 'Phabricator', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'phoenix-framework'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M212.9 344.3c3.8-.1 22.8-1.4 25.6-2.2-2.4-2.6-43.6-1-68-49.6-4.3-8.6-7.5-17.6-6.4-27.6 2.9-25.5 32.9-30 52-18.5 36 21.6 63.3 91.3 113.7 97.5 37 4.5 84.6-17 108.2-45.4-.6-.1-.8-.2-1-.1-.4 .1-.8 .2-1.1 .3-33.3 12.1-94.3 9.7-134.7-14.8-37.6-22.8-53.1-58.7-51.8-74.6 1.8-21.3 22.9-23.2 35.9-19.6 14.4 3.9 24.4 17.6 38.9 27.4 15.6 10.4 32.9 13.7 51.3 10.3 14.9-2.7 34.4-12.3 36.5-14.5-1.1-.1-1.8-.1-2.5-.2-6.2-.6-12.4-.8-18.5-1.7C279.8 194.5 262.1 47.4 138.5 37.9 94.2 34.5 39.1 46 2.2 72.9c-.8 .6-1.5 1.2-2.2 1.8 .1 .2 .1 .3 .2 .5 .8 0 1.6-.1 2.4-.2 6.3-1 12.5-.8 18.7 .3 23.8 4.3 47.7 23.1 55.9 76.5 5.3 34.3-.7 50.8 8 86.1 19 77.1 91 107.6 127.7 106.4zM75.3 64.9c-.9-1-.9-1.2-1.3-2 12.1-2.6 24.2-4.1 36.6-4.8-1.1 14.7-22.2 21.3-35.3 6.8zm196.9 350.5c-42.8 1.2-92-26.7-123.5-61.4-4.6-5-16.8-20.2-18.6-23.4l.4-.4c6.6 4.1 25.7 18.6 54.8 27 24.2 7 48.1 6.3 71.6-3.3 22.7-9.3 41-.5 43.1 2.9-18.5 3.8-20.1 4.4-24 7.9-5.1 4.4-4.6 11.7 7 17.2 26.2 12.4 63-2.8 97.2 25.4 2.4 2 8.1 7.8 10.1 10.7-.1 .2-.3 .3-.4 .5-4.8-1.5-16.4-7.5-40.2-9.3-24.7-2-46.3 5.3-77.5 6.2zm174.8-252c16.4-5.2 41.3-13.4 66.5-3.3 16.1 6.5 26.2 18.7 32.1 34.6 3.5 9.4 5.1 19.7 5.1 28.7-.2 0-.4 0-.6 .1-.2-.4-.4-.9-.5-1.3-5-22-29.9-43.8-67.6-29.9-50.2 18.6-130.4 9.7-176.9-48-.7-.9-2.4-1.7-1.3-3.2 .1-.2 2.1 .6 3 1.3 18.1 13.4 38.3 21.9 60.3 26.2 30.5 6.1 54.6 2.9 79.9-5.2zm102.7 117.5c-32.4 .2-33.8 50.1-103.6 64.4-18.2 3.7-38.7 4.6-44.9 4.2v-.4c2.8-1.5 14.7-2.6 29.7-16.6 7.9-7.3 15.3-15.1 22.8-22.9 19.5-20.2 41.4-42.2 81.9-39 23.1 1.8 29.3 8.2 36.1 12.7 .3 .2 .4 .5 .7 .9-.5 0-.7 .1-.9 0-7-2.7-14.3-3.3-21.8-3.3zm-12.3-24.1c-.1 .2-.1 .4-.2 .6-28.9-4.4-48-7.9-68.5 4-17 9.9-31.4 20.5-62 24.4-27.1 3.4-45.1 2.4-66.1-8-.3-.2-.6-.4-1-.6 0-.2 .1-.3 .1-.5 24.9 3.8 36.4 5.1 55.5-5.8 22.3-12.9 40.1-26.6 71.3-31 29.6-4.1 51.3 2.5 70.9 16.9zM268.6 97.3c-.6-.6-1.1-1.2-2.1-2.3 7.6 0 29.7-1.2 53.4 8.4 19.7 8 32.2 21 50.2 32.9 11.1 7.3 23.4 9.3 36.4 8.1 4.3-.4 8.5-1.2 12.8-1.7 .4-.1 .9 0 1.5 .3-.6 .4-1.2 .9-1.8 1.2-8.1 4-16.7 6.3-25.6 7.1-26.1 2.6-50.3-3.7-73.4-15.4-19.3-9.9-36.4-22.9-51.4-38.6zM640 335.7c-3.5 3.1-22.7 11.6-42.7 5.3-12.3-3.9-19.5-14.9-31.6-24.1-10-7.6-20.9-7.9-28.1-8.4 .6-.8 .9-1.2 1.2-1.4 14.8-9.2 30.5-12.2 47.3-6.5 12.5 4.2 19.2 13.5 30.4 24.2 10.8 10.4 21 9.9 23.1 10.5 .1-.1 .2 0 .4 .4zm-212.5 137c2.2 1.2 1.6 1.5 1.5 2-18.5-1.4-33.9-7.6-46.8-22.2-21.8-24.7-41.7-27.9-48.6-29.7 .5-.2 .8-.4 1.1-.4 13.1 .1 26.1 .7 38.9 3.9 25.3 6.4 35 25.4 41.6 35.3 3.2 4.8 7.3 8.3 12.3 11.1z',
			),
		),
		'label'             => __( 'Phoenix Framework', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'phoenix-squadron'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 63.38C142.5 27.25 201.6 7.31 260.5 8.81c29.58-.38 59.11 5.37 86.91 15.33-24.13-4.63-49-6.34-73.38-2.45C231.2 27 191 48.84 162.2 80.87c5.67-1 10.78-3.67 16-5.86 18.14-7.87 37.49-13.26 57.23-14.83 19.74-2.13 39.64-.43 59.28 1.92-14.42 2.79-29.12 4.57-43 9.59-34.43 11.07-65.27 33.16-86.3 62.63-13.8 19.71-23.63 42.86-24.67 67.13-.35 16.49 5.22 34.81 19.83 44a53.27 53.27 0 0 0 37.52 6.74c15.45-2.46 30.07-8.64 43.6-16.33 11.52-6.82 22.67-14.55 32-24.25 3.79-3.22 2.53-8.45 2.62-12.79-2.12-.34-4.38-1.11-6.3 .3a203 203 0 0 1 -35.82 15.37c-20 6.17-42.16 8.46-62.1 .78 12.79 1.73 26.06 .31 37.74-5.44 20.23-9.72 36.81-25.2 54.44-38.77a526.6 526.6 0 0 1 88.9-55.31c25.71-12 52.94-22.78 81.57-24.12-15.63 13.72-32.15 26.52-46.78 41.38-14.51 14-27.46 29.5-40.11 45.18-3.52 4.6-8.95 6.94-13.58 10.16a150.7 150.7 0 0 0 -51.89 60.1c-9.33 19.68-14.5 41.85-11.77 63.65 1.94 13.69 8.71 27.59 20.9 34.91 12.9 8 29.05 8.07 43.48 5.1 32.8-7.45 61.43-28.89 81-55.84 20.44-27.52 30.52-62.2 29.16-96.35-.52-7.5-1.57-15-1.66-22.49 8 19.48 14.82 39.71 16.65 60.83 2 14.28 .75 28.76-1.62 42.9-1.91 11-5.67 21.51-7.78 32.43a165 165 0 0 0 39.34-81.07 183.6 183.6 0 0 0 -14.21-104.6c20.78 32 32.34 69.58 35.71 107.5 .49 12.73 .49 25.51 0 38.23A243.2 243.2 0 0 1 482 371.3c-26.12 47.34-68 85.63-117.2 108-78.29 36.23-174.7 31.32-248-14.68A248.3 248.3 0 0 1 25.36 366 238.3 238.3 0 0 1 0 273.1v-31.34C3.93 172 40.87 105.8 96 63.38m222 80.33a79.13 79.13 0 0 0 16-4.48c5-1.77 9.24-5.94 10.32-11.22-8.96 4.99-17.98 9.92-26.32 15.7z',
			),
		),
		'label'             => __( 'Phoenix Squadron', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'phone'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M511.2 387l-23.25 100.8c-3.266 14.25-15.79 24.22-30.46 24.22C205.2 512 0 306.8 0 54.5c0-14.66 9.969-27.2 24.22-30.45l100.8-23.25C139.7-2.602 154.7 5.018 160.8 18.92l46.52 108.5c5.438 12.78 1.77 27.67-8.98 36.45L144.5 207.1c33.98 69.22 90.26 125.5 159.5 159.5l44.08-53.8c8.688-10.78 23.69-14.51 36.47-8.975l108.5 46.51C506.1 357.2 514.6 372.4 511.2 387z',
			),
		),
		'label'             => __( 'Phone', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'travel' ),
	),
	'phone-flip'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M18.92 351.2l108.5-46.52c12.78-5.531 27.77-1.801 36.45 8.98l44.09 53.82c69.25-34 125.5-90.31 159.5-159.5l-53.81-44.04c-10.75-8.781-14.41-23.69-8.974-36.47l46.51-108.5c6.094-13.91 21.1-21.52 35.79-18.11l100.8 23.25c14.25 3.25 24.22 15.8 24.22 30.46c0 252.3-205.2 457.5-457.5 457.5c-14.67 0-27.18-9.968-30.45-24.22l-23.25-100.8C-2.571 372.4 5.018 357.2 18.92 351.2z',
			),
		),
		'label'             => __( 'Phone Flip', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'travel' ),
	),
	'phone-slash'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M271.1 367.5L227.9 313.7c-8.688-10.78-23.69-14.51-36.47-8.974l-108.5 46.51c-13.91 6-21.49 21.19-18.11 35.79l23.25 100.8C91.32 502 103.8 512 118.5 512c107.4 0 206.1-37.46 284.2-99.65l-88.75-69.56C300.6 351.9 286.6 360.3 271.1 367.5zM630.8 469.1l-159.6-125.1c65.03-78.97 104.7-179.5 104.7-289.5c0-14.66-9.969-27.2-24.22-30.45L451 .8125c-14.69-3.406-29.73 4.213-35.82 18.12l-46.52 108.5c-5.438 12.78-1.771 27.67 8.979 36.45l53.82 44.08C419.2 232.1 403.9 256.2 386.2 277.4L38.81 5.111C34.41 1.673 29.19 0 24.03 0C16.91 0 9.84 3.158 5.121 9.189c-8.188 10.44-6.37 25.53 4.068 33.7l591.1 463.1c10.5 8.203 25.57 6.328 33.69-4.078C643.1 492.4 641.2 477.3 630.8 469.1z',
			),
		),
		'label'             => __( 'Phone Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication' ),
	),
	'phone-volume'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M284.6 181.9c-10.28-8.344-25.41-6.875-33.75 3.406C242.4 195.6 243.9 210.7 254.2 219.1c11.31 9.25 17.81 22.69 17.81 36.87c0 14.19-6.5 27.62-17.81 36.87c-10.28 8.406-11.78 23.53-3.375 33.78c4.719 5.812 11.62 8.812 18.56 8.812c5.344 0 10.75-1.781 15.19-5.406c22.53-18.44 35.44-45.4 35.44-74.05S307.1 200.4 284.6 181.9zM345.1 107.1c-10.22-8.344-25.34-6.907-33.78 3.343c-8.406 10.25-6.906 25.37 3.344 33.78c33.88 27.78 53.31 68.18 53.31 110.9s-19.44 83.09-53.31 110.9c-10.25 8.406-11.75 23.53-3.344 33.78c4.75 5.781 11.62 8.781 18.56 8.781c5.375 0 10.75-1.781 15.22-5.438C390.2 367.1 416 313.1 416 255.1S390.2 144.9 345.1 107.1zM406.4 33.15c-10.22-8.344-25.34-6.875-33.78 3.344c-8.406 10.25-6.906 25.37 3.344 33.78C431.9 116.1 464 183.8 464 255.1s-32.09 139.9-88.06 185.7c-10.25 8.406-11.75 23.53-3.344 33.78c4.75 5.781 11.62 8.781 18.56 8.781c5.375 0 10.75-1.781 15.22-5.438C473.5 423.8 512 342.6 512 255.1S473.5 88.15 406.4 33.15zM151.3 174.6C161.1 175.6 172.1 169.5 176 159.6l33.75-84.38C214 64.35 209.1 51.1 200.2 45.86l-67.47-42.17C123.2-2.289 110.9-.8945 102.9 7.08C-34.32 144.3-34.31 367.7 102.9 504.9c7.982 7.984 20.22 9.379 29.75 3.402l67.48-42.19c9.775-6.104 13.9-18.47 9.598-29.3L176 352.5c-3.945-9.963-14.14-16.11-24.73-14.97l-53.24 5.314C78.89 286.7 78.89 225.4 98.06 169.3L151.3 174.6z',
			),
		),
		'label'             => __( 'Phone Volume', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'communication', 'design', 'science-and-technology', 'travel' ),
	),
	'photo-film'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 432c0 8.836-7.164 16-16 16H176c-8.838 0-16-7.164-16-16L160 128H48C21.49 128 .0003 149.5 .0003 176v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48L512 384h-160L352 432zM104 439c0 4.969-4.031 9-9 9h-30c-4.969 0-9-4.031-9-9v-30c0-4.969 4.031-9 9-9h30c4.969 0 9 4.031 9 9V439zM104 335c0 4.969-4.031 9-9 9h-30c-4.969 0-9-4.031-9-9v-30c0-4.969 4.031-9 9-9h30c4.969 0 9 4.031 9 9V335zM104 231c0 4.969-4.031 9-9 9h-30c-4.969 0-9-4.031-9-9v-30C56 196 60.03 192 65 192h30c4.969 0 9 4.031 9 9V231zM408 409c0-4.969 4.031-9 9-9h30c4.969 0 9 4.031 9 9v30c0 4.969-4.031 9-9 9h-30c-4.969 0-9-4.031-9-9V409zM591.1 0H239.1C213.5 0 191.1 21.49 191.1 48v256c0 26.51 21.49 48 48 48h352c26.51 0 48-21.49 48-48v-256C640 21.49 618.5 0 591.1 0zM303.1 64c17.68 0 32 14.33 32 32s-14.32 32-32 32C286.3 128 271.1 113.7 271.1 96S286.3 64 303.1 64zM574.1 279.6C571.3 284.8 565.9 288 560 288H271.1C265.1 288 260.5 284.6 257.7 279.3C255 273.9 255.5 267.4 259.1 262.6l70-96C332.1 162.4 336.9 160 341.1 160c5.11 0 9.914 2.441 12.93 6.574l22.35 30.66l62.74-94.11C442.1 98.67 447.1 96 453.3 96c5.348 0 10.34 2.672 13.31 7.125l106.7 160C576.6 268 576.9 274.3 574.1 279.6z',
			),
		),
		'label'             => __( 'Photo Film', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'social' ),
	),
	'php'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 104.5c171.4 0 303.2 72.2 303.2 151.5S491.3 407.5 320 407.5c-171.4 0-303.2-72.2-303.2-151.5S148.7 104.5 320 104.5m0-16.8C143.3 87.7 0 163 0 256s143.3 168.3 320 168.3S640 349 640 256 496.7 87.7 320 87.7zM218.2 242.5c-7.9 40.5-35.8 36.3-70.1 36.3l13.7-70.6c38 0 63.8-4.1 56.4 34.3zM97.4 350.3h36.7l8.7-44.8c41.1 0 66.6 3 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7h-70.7L97.4 350.3zm185.7-213.6h36.5l-8.7 44.8c31.5 0 60.7-2.3 74.8 10.7 14.8 13.6 7.7 31-8.3 113.1h-37c15.4-79.4 18.3-86 12.7-92-5.4-5.8-17.7-4.6-47.4-4.6l-18.8 96.6h-36.5l32.7-168.6zM505 242.5c-8 41.1-36.7 36.3-70.1 36.3l13.7-70.6c38.2 0 63.8-4.1 56.4 34.3zM384.2 350.3H421l8.7-44.8c43.2 0 67.1 2.5 90.2-19.1 26.1-24 32.9-66.7 14.3-88.1-9.7-11.2-25.3-16.7-46.5-16.7H417l-32.8 168.7z',
			),
		),
		'label'             => __( 'PHP', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pied-piper'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 480,
				'height' => 512,
				'path'   => 'M455.9 23.2C429.2 30 387.8 51.69 341.4 90.66A206 206 0 0 0 240 64C125.1 64 32 157.1 32 272s93.13 208 208 208 208-93.13 208-208a207.3 207.3 0 0 0 -58.75-144.8 155.4 155.4 0 0 0 -17 27.4A176.2 176.2 0 0 1 417.1 272c0 97.66-79.44 177.1-177.1 177.1a175.8 175.8 0 0 1 -87.63-23.4c82.94-107.3 150.8-37.77 184.3-226.6 5.79-32.62 28-94.26 126.2-160.2C471 33.45 465.4 20.8 455.9 23.2zM125 406.4A176.7 176.7 0 0 1 62.9 272C62.9 174.3 142.4 94.9 240 94.9a174 174 0 0 1 76.63 17.75C250.6 174.8 189.8 265.5 125 406.4z',
			),
		),
		'label'             => __( 'Pied Piper Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'pied-piper-alt'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M244 246c-3.2-2-6.3-2.9-10.1-2.9-6.6 0-12.6 3.2-19.3 3.7l1.7 4.9zm135.9 197.9c-19 0-64.1 9.5-79.9 19.8l6.9 45.1c35.7 6.1 70.1 3.6 106-9.8-4.8-10-23.5-55.1-33-55.1zM340.8 177c6.6 2.8 11.5 9.2 22.7 22.1 2-1.4 7.5-5.2 7.5-8.6 0-4.9-11.8-13.2-13.2-23 11.2-5.7 25.2-6 37.6-8.9 68.1-16.4 116.3-52.9 146.8-116.7C548.3 29.3 554 16.1 554.6 2l-2 2.6c-28.4 50-33 63.2-81.3 100-31.9 24.4-69.2 40.2-106.6 54.6l-6.3-.3v-21.8c-19.6 1.6-19.7-14.6-31.6-23-18.7 20.6-31.6 40.8-58.9 51.1-12.7 4.8-19.6 10-25.9 21.8 34.9-16.4 91.2-13.5 98.8-10zM555.5 0l-.6 1.1-.3 .9 .6-.6zm-59.2 382.1c-33.9-56.9-75.3-118.4-150-115.5l-.3-6c-1.1-13.5 32.8 3.2 35.1-31l-14.4 7.2c-19.8-45.7-8.6-54.3-65.5-54.3-14.7 0-26.7 1.7-41.4 4.6 2.9 18.6 2.2 36.7-10.9 50.3l19.5 5.5c-1.7 3.2-2.9 6.3-2.9 9.8 0 21 42.8 2.9 42.8 33.6 0 18.4-36.8 60.1-54.9 60.1-8 0-53.7-50-53.4-60.1l.3-4.6 52.3-11.5c13-2.6 12.3-22.7-2.9-22.7-3.7 0-43.1 9.2-49.4 10.6-2-5.2-7.5-14.1-13.8-14.1-3.2 0-6.3 3.2-9.5 4-9.2 2.6-31 2.9-21.5 20.1L15.9 298.5c-5.5 1.1-8.9 6.3-8.9 11.8 0 6 5.5 10.9 11.5 10.9 8 0 131.3-28.4 147.4-32.2 2.6 3.2 4.6 6.3 7.8 8.6 20.1 14.4 59.8 85.9 76.4 85.9 24.1 0 58-22.4 71.3-41.9 3.2-4.3 6.9-7.5 12.4-6.9 .6 13.8-31.6 34.2-33 43.7-1.4 10.2-1 35.2-.3 41.1 26.7 8.1 52-3.6 77.9-2.9 4.3-21 10.6-41.9 9.8-63.5l-.3-9.5c-1.4-34.2-10.9-38.5-34.8-58.6-1.1-1.1-2.6-2.6-3.7-4 2.2-1.4 1.1-1 4.6-1.7 88.5 0 56.3 183.6 111.5 229.9 33.1-15 72.5-27.9 103.5-47.2-29-25.6-52.6-45.7-72.7-79.9zm-196.2 46.1v27.2l11.8-3.4-2.9-23.8zm-68.7-150.4l24.1 61.2 21-13.8-31.3-50.9zm84.4 154.9l2 12.4c9-1.5 58.4-6.6 58.4-14.1 0-1.4-.6-3.2-.9-4.6-26.8 0-36.9 3.8-59.5 6.3z',
			),
		),
		'label'             => __( 'Alternate Pied Piper Logo (Old)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'pied-piper-hat'                         => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M640 24.9c-80.8 53.6-89.4 92.5-96.4 104.4-6.7 12.2-11.7 60.3-23.3 83.6-11.7 23.6-54.2 42.2-66.1 50-11.7 7.8-28.3 38.1-41.9 64.2-108.1-4.4-167.4 38.8-259.2 93.6 29.4-9.7 43.3-16.7 43.3-16.7 94.2-36 139.3-68.3 281.1-49.2 1.1 0 1.9 .6 2.8 .8 3.9 2.2 5.3 6.9 3.1 10.8l-53.9 95.8c-2.5 4.7-7.8 7.2-13.1 6.1-126.8-23.8-226.9 17.3-318.9 18.6C24.1 488 0 453.4 0 451.8c0-1.1 .6-1.7 1.7-1.7 0 0 38.3 0 103.1-15.3C178.4 294.5 244 245.4 315.4 245.4c0 0 71.7 0 90.6 61.9 22.8-39.7 28.3-49.2 28.3-49.2 5.3-9.4 35-77.2 86.4-141.4 51.5-64 90.4-79.9 119.3-91.8z',
			),
		),
		'label'             => __( 'Pied Piper Hat (Old)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'pied-piper-pp'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M205.3 174.6c0 21.1-14.2 38.1-31.7 38.1-7.1 0-12.8-1.2-17.2-3.7v-68c4.4-2.7 10.1-4.2 17.2-4.2 17.5 0 31.7 16.9 31.7 37.8zm52.6 67c-7.1 0-12.8 1.5-17.2 4.2v68c4.4 2.5 10.1 3.7 17.2 3.7 17.4 0 31.7-16.9 31.7-37.8 0-21.1-14.3-38.1-31.7-38.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zM185 255.1c41 0 74.2-35.6 74.2-79.6 0-44-33.2-79.6-74.2-79.6-12 0-24.1 3.2-34.6 8.8h-45.7V311l51.8-10.1v-50.6c8.6 3.1 18.1 4.8 28.5 4.8zm158.4 25.3c0-44-33.2-79.6-73.9-79.6-3.2 0-6.4 .2-9.6 .7-3.7 12.5-10.1 23.8-19.2 33.4-13.8 15-32.2 23.8-51.8 24.8V416l51.8-10.1v-50.6c8.6 3.2 18.2 4.7 28.7 4.7 40.8 0 74-35.6 74-79.6z',
			),
		),
		'label'             => __( 'Pied Piper PP Logo (Old)', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'pied-piper-square'                      => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M32 419L0 479.2l.8-328C.8 85.3 54 32 120 32h327.2c-93 28.9-189.9 94.2-253.9 168.6C122.7 282 82.6 338 32 419M448 32S305.2 98.8 261.6 199.1c-23.2 53.6-28.9 118.1-71 158.6-28.9 27.8-69.8 38.2-105.3 56.3-23.2 12-66.4 40.5-84.9 66h328.4c66 0 119.3-53.3 119.3-119.2-.1 0-.1-328.8-.1-328.8z',
			),
		),
		'label'             => __( 'Pied Piper Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'piggy-bank'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M400 96L399.1 96.66C394.7 96.22 389.4 96 384 96H256C239.5 96 223.5 98.08 208.2 102C208.1 100 208 98.02 208 96C208 42.98 250.1 0 304 0C357 0 400 42.98 400 96zM384 128C387.5 128 390.1 128.1 394.4 128.3C398.7 128.6 402.9 129 407 129.6C424.6 109.1 450.8 96 480 96H512L493.2 171.1C509.1 185.9 521.9 203.9 530.7 224H544C561.7 224 576 238.3 576 256V352C576 369.7 561.7 384 544 384H512C502.9 396.1 492.1 406.9 480 416V480C480 497.7 465.7 512 448 512H416C398.3 512 384 497.7 384 480V448H256V480C256 497.7 241.7 512 224 512H192C174.3 512 160 497.7 160 480V416C125.1 389.8 101.3 349.8 96.79 304H68C30.44 304 0 273.6 0 236C0 198.4 30.44 168 68 168H72C85.25 168 96 178.7 96 192C96 205.3 85.25 216 72 216H68C56.95 216 48 224.1 48 236C48 247 56.95 256 68 256H99.2C111.3 196.2 156.9 148.5 215.5 133.2C228.4 129.8 241.1 128 256 128H384zM424 240C410.7 240 400 250.7 400 264C400 277.3 410.7 288 424 288C437.3 288 448 277.3 448 264C448 250.7 437.3 240 424 240z',
			),
		),
		'label'             => __( 'Piggy Bank', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'pills'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M112 32C50.12 32 0 82.12 0 143.1v223.1c0 61.88 50.12 111.1 112 111.1s112-50.12 112-111.1V143.1C224 82.12 173.9 32 112 32zM160 256H64V144c0-26.5 21.5-48 48-48s48 21.5 48 48V256zM299.8 226.2c-3.5-3.5-9.5-3-12.38 .875c-45.25 62.5-40.38 150.1 15.88 206.4c56.38 56.25 144 61.25 206.5 15.88c4-2.875 4.249-8.75 .75-12.25L299.8 226.2zM529.5 207.2c-56.25-56.25-143.9-61.13-206.4-15.87c-4 2.875-4.375 8.875-.875 12.38l210.9 210.7c3.5 3.5 9.375 3.125 12.25-.75C590.8 351.1 585.9 263.6 529.5 207.2z',
			),
		),
		'label'             => __( 'Pills', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'pinterest'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M496 256c0 137-111 248-248 248-25.6 0-50.2-3.9-73.4-11.1 10.1-16.5 25.2-43.5 30.8-65 3-11.6 15.4-59 15.4-59 8.1 15.4 31.7 28.5 56.8 28.5 74.8 0 128.7-68.8 128.7-154.3 0-81.9-66.9-143.2-152.9-143.2-107 0-163.9 71.8-163.9 150.1 0 36.4 19.4 81.7 50.3 96.1 4.7 2.2 7.2 1.2 8.3-3.3 .8-3.4 5-20.3 6.9-28.1 .6-2.5 .3-4.7-1.7-7.1-10.1-12.5-18.3-35.3-18.3-56.6 0-54.7 41.4-107.6 112-107.6 60.9 0 103.6 41.5 103.6 100.9 0 67.1-33.9 113.6-78 113.6-24.3 0-42.6-20.1-36.7-44.8 7-29.5 20.5-61.3 20.5-82.6 0-19-10.2-34.9-31.4-34.9-24.9 0-44.9 25.7-44.9 60.2 0 22 7.4 36.8 7.4 36.8s-24.5 103.8-29 123.2c-5 21.4-3 51.6-.9 71.2C65.4 450.9 0 361.1 0 256 0 119 111 8 248 8s248 111 248 248z',
			),
		),
		'label'             => __( 'Pinterest', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pinterest-p'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M204 6.5C101.4 6.5 0 74.9 0 185.6 0 256 39.6 296 63.6 296c9.9 0 15.6-27.6 15.6-35.4 0-9.3-23.7-29.1-23.7-67.8 0-80.4 61.2-137.4 140.4-137.4 68.1 0 118.5 38.7 118.5 109.8 0 53.1-21.3 152.7-90.3 152.7-24.9 0-46.2-18-46.2-43.8 0-37.8 26.4-74.4 26.4-113.4 0-66.2-93.9-54.2-93.9 25.8 0 16.8 2.1 35.4 9.6 50.7-13.8 59.4-42 147.9-42 209.1 0 18.9 2.7 37.5 4.5 56.4 3.4 3.8 1.7 3.4 6.9 1.5 50.4-69 48.6-82.5 71.4-172.8 12.3 23.4 44.1 36 69.3 36 106.2 0 153.9-103.5 153.9-196.8C384 71.3 298.2 6.5 204 6.5z',
			),
		),
		'label'             => __( 'Pinterest P', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pinterest-square'                       => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M448 80v352c0 26.5-21.5 48-48 48H154.4c9.8-16.4 22.4-40 27.4-59.3 3-11.5 15.3-58.4 15.3-58.4 8 15.3 31.4 28.2 56.3 28.2 74.1 0 127.4-68.1 127.4-152.7 0-81.1-66.2-141.8-151.4-141.8-106 0-162.2 71.1-162.2 148.6 0 36 19.2 80.8 49.8 95.1 4.7 2.2 7.1 1.2 8.2-3.3 .8-3.4 5-20.1 6.8-27.8 .6-2.5 .3-4.6-1.7-7-10.1-12.3-18.3-34.9-18.3-56 0-54.2 41-106.6 110.9-106.6 60.3 0 102.6 41.1 102.6 99.9 0 66.4-33.5 112.4-77.2 112.4-24.1 0-42.1-19.9-36.4-44.4 6.9-29.2 20.3-60.7 20.3-81.8 0-53-75.5-45.7-75.5 25 0 21.7 7.3 36.5 7.3 36.5-31.4 132.8-36.1 134.5-29.6 192.6l2.2 .8H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48z',
			),
		),
		'label'             => __( 'Pinterest Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'pix'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M242.4 292.5C247.8 287.1 257.1 287.1 262.5 292.5L339.5 369.5C353.7 383.7 372.6 391.5 392.6 391.5H407.7L310.6 488.6C280.3 518.1 231.1 518.1 200.8 488.6L103.3 391.2H112.6C132.6 391.2 151.5 383.4 165.7 369.2L242.4 292.5zM262.5 218.9C256.1 224.4 247.9 224.5 242.4 218.9L165.7 142.2C151.5 127.1 132.6 120.2 112.6 120.2H103.3L200.7 22.76C231.1-7.586 280.3-7.586 310.6 22.76L407.8 119.9H392.6C372.6 119.9 353.7 127.7 339.5 141.9L262.5 218.9zM112.6 142.7C126.4 142.7 139.1 148.3 149.7 158.1L226.4 234.8C233.6 241.1 243 245.6 252.5 245.6C261.9 245.6 271.3 241.1 278.5 234.8L355.5 157.8C365.3 148.1 378.8 142.5 392.6 142.5H430.3L488.6 200.8C518.9 231.1 518.9 280.3 488.6 310.6L430.3 368.9H392.6C378.8 368.9 365.3 363.3 355.5 353.5L278.5 276.5C264.6 262.6 240.3 262.6 226.4 276.6L149.7 353.2C139.1 363 126.4 368.6 112.6 368.6H80.78L22.76 310.6C-7.586 280.3-7.586 231.1 22.76 200.8L80.78 142.7H112.6z',
			),
		),
		'label'             => __( 'Pix', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pizza-slice'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M100.4 112.3L.5101 491.7c-1.375 5.625 .1622 11.6 4.287 15.6c4.127 4.125 10.13 5.744 15.63 4.119l379.1-105.1C395.3 231.4 276.5 114.1 100.4 112.3zM127.1 416c-17.62 0-32-14.38-32-31.1c0-17.62 14.39-32 32.01-32c17.63 0 32 14.38 32 31.1C160 401.6 145.6 416 127.1 416zM175.1 271.1c-17.63 0-32-14.38-32-32c0-17.62 14.38-31.1 32-31.1c17.62 0 32 14.38 32 31.1C208 257.6 193.6 271.1 175.1 271.1zM272 367.1c-17.62 0-32-14.38-32-31.1c0-17.62 14.38-32 32-32c17.63 0 32 14.38 32 32C304 353.6 289.6 367.1 272 367.1zM158.9 .1406c-16.13-1.5-31.25 8.501-35.38 24.12L108.7 80.52c187.6 5.5 314.5 130.6 322.5 316.1l56.88-15.75c15.75-4.375 25.5-19.62 23.63-35.87C490.9 165.1 340.8 17.39 158.9 .1406z',
			),
		),
		'label'             => __( 'Pizza Slice', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'place-of-worship'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M233.4 86.63L308.7 11.32C314.9 5.067 325.1 5.067 331.3 11.32L406.6 86.63C412.6 92.63 416 100.8 416 109.3V217.6L456.7 242C471.2 250.7 480 266.3 480 283.2V512H384V416C384 380.7 355.3 352 319.1 352C284.7 352 255.1 380.7 255.1 416V512H159.1V283.2C159.1 266.3 168.8 250.7 183.3 242L223.1 217.6V109.3C223.1 100.8 227.4 92.63 233.4 86.63H233.4zM24.87 330.3L128 273.6V512H48C21.49 512 0 490.5 0 464V372.4C0 354.9 9.53 338.8 24.87 330.3V330.3zM592 512H512V273.6L615.1 330.3C630.5 338.8 640 354.9 640 372.4V464C640 490.5 618.5 512 592 512V512z',
			),
		),
		'label'             => __( 'Place Of Worship', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'plane'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M482.3 192C516.5 192 576 221 576 256C576 292 516.5 320 482.3 320H365.7L265.2 495.9C259.5 505.8 248.9 512 237.4 512H181.2C170.6 512 162.9 501.8 165.8 491.6L214.9 320H112L68.8 377.6C65.78 381.6 61.04 384 56 384H14.03C6.284 384 0 377.7 0 369.1C0 368.7 .1818 367.4 .5398 366.1L32 256L.5398 145.9C.1818 144.6 0 143.3 0 142C0 134.3 6.284 128 14.03 128H56C61.04 128 65.78 130.4 68.8 134.4L112 192H214.9L165.8 20.4C162.9 10.17 170.6 0 181.2 0H237.4C248.9 0 259.5 6.153 265.2 16.12L365.7 192H482.3z',
			),
		),
		'label'             => __( 'Plane', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'plane-arrival'                          => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M.2528 166.9L.0426 67.99C.0208 57.74 9.508 50.11 19.51 52.34L55.07 60.24C65.63 62.58 74.29 70.11 78.09 80.24L95.1 127.1L223.3 165.6L181.8 20.4C178.9 10.18 186.6 .001 197.2 .001H237.3C248.8 .001 259.5 6.236 265.2 16.31L374.2 210.2L481.5 241.8C497.4 246.5 512.2 254.3 525.2 264.7L559.6 292.2C583.7 311.4 577.7 349.5 548.9 360.5C507.7 376.1 462.7 378.5 420.1 367.4L121.7 289.8C110.6 286.9 100.5 281.1 92.4 272.9L9.536 189.4C3.606 183.4 .2707 175.3 .2528 166.9V166.9zM608 448C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480C0 462.3 14.33 448 32 448H608zM192 368C192 385.7 177.7 400 160 400C142.3 400 128 385.7 128 368C128 350.3 142.3 336 160 336C177.7 336 192 350.3 192 368zM224 384C224 366.3 238.3 352 256 352C273.7 352 288 366.3 288 384C288 401.7 273.7 416 256 416C238.3 416 224 401.7 224 384z',
			),
		),
		'label'             => __( 'Plane Arrival', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'plane-circle-check'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 93.68V178.3L397.1 222.4C350.6 254 320 307.4 320 368C320 422.2 344.5 470.7 383.1 502.1C381 508.3 375.9 512 369.1 512C368.7 512 367.4 511.8 366.1 511.5L256 480L145.9 511.5C144.6 511.8 143.3 512 142 512C134.3 512 128 505.7 128 497.1V456C128 450.1 130.4 446.2 134.4 443.2L192 400V329.1L20.4 378.2C10.17 381.1 0 373.4 0 362.8V297.3C0 291.5 3.076 286.2 8.062 283.4L192 178.3V93.68C192 59.53 221 0 256 0C292 0 320 59.53 320 93.68H320zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'Plane Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'plane-circle-exclamation'               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 93.68V178.3L397.1 222.4C350.6 254 320 307.4 320 368C320 422.2 344.5 470.7 383.1 502.1C381 508.3 375.9 512 369.1 512C368.7 512 367.4 511.8 366.1 511.5L256 480L145.9 511.5C144.6 511.8 143.3 512 142 512C134.3 512 128 505.7 128 497.1V456C128 450.1 130.4 446.2 134.4 443.2L192 400V329.1L20.4 378.2C10.17 381.1 0 373.4 0 362.8V297.3C0 291.5 3.076 286.2 8.062 283.4L192 178.3V93.68C192 59.53 221 0 256 0C292 0 320 59.53 320 93.68H320zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Plane Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'plane-circle-xmark'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M320 93.68V178.3L397.1 222.4C350.6 254 320 307.4 320 368C320 422.2 344.5 470.7 383.1 502.1C381 508.3 375.9 512 369.1 512C368.7 512 367.4 511.8 366.1 511.5L256 480L145.9 511.5C144.6 511.8 143.3 512 142 512C134.3 512 128 505.7 128 497.1V456C128 450.1 130.4 446.2 134.4 443.2L192 400V329.1L20.4 378.2C10.17 381.1 0 373.4 0 362.8V297.3C0 291.5 3.076 286.2 8.062 283.4L192 178.3V93.68C192 59.53 221 0 256 0C292 0 320 59.53 320 93.68H320zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368L555.3 331.3z',
			),
		),
		'label'             => __( 'Plane Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'plane-departure'                        => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M484.6 62C502.6 52.8 522.6 48 542.8 48H600.2C627.2 48 645.9 74.95 636.4 100.2C618.2 148.9 582.1 188.9 535.6 212.2L262.8 348.6C258.3 350.8 253.4 352 248.4 352H110.7C101.4 352 92.5 347.9 86.42 340.8L13.34 255.6C6.562 247.7 9.019 235.5 18.33 230.8L50.49 214.8C59.05 210.5 69.06 210.2 77.8 214.1L135.1 239.1L234.6 189.7L87.64 95.2C77.21 88.49 78.05 72.98 89.14 67.43L135 44.48C150.1 36.52 169.5 35.55 186.1 41.8L381 114.9L484.6 62zM0 480C0 462.3 14.33 448 32 448H608C625.7 448 640 462.3 640 480C640 497.7 625.7 512 608 512H32C14.33 512 0 497.7 0 480z',
			),
		),
		'label'             => __( 'Plane Departure', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'plane-lock'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M192 93.68C192 59.53 221 0 256 0C292 0 320 59.53 320 93.68V178.3L421.8 236.4C418 247.6 416 259.6 416 272V296.6C398.1 306.9 385.7 325.7 384.2 347.5L320 329.1V400L377.6 443.2C381.6 446.2 384 450.1 384 456V497.1C384 505.7 377.7 512 369.1 512C368.7 512 367.4 511.8 366.1 511.5L256 480L145.9 511.5C144.6 511.8 143.3 512 142 512C134.3 512 128 505.7 128 497.1V456C128 450.1 130.4 446.2 134.4 443.2L192 400V329.1L20.4 378.2C10.17 381.1 0 373.4 0 362.8V297.3C0 291.5 3.076 286.2 8.062 283.4L192 178.3L192 93.68zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'Plane Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'plane-slash'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M238.1 161.3L197.8 20.4C194.9 10.17 202.6-.0001 213.2-.0001H269.4C280.9-.0001 291.5 6.153 297.2 16.12L397.7 192H514.3C548.5 192 608 221 608 256C608 292 548.5 320 514.3 320H440.6L630.8 469.1C641.2 477.3 643.1 492.4 634.9 502.8C626.7 513.2 611.6 515.1 601.2 506.9L9.196 42.89C-1.236 34.71-3.065 19.63 5.112 9.196C13.29-1.237 28.37-3.065 38.81 5.112L238.1 161.3zM41.54 128.7L362.5 381.6L297.2 495.9C291.5 505.8 280.9 512 269.4 512H213.2C202.6 512 194.9 501.8 197.8 491.6L246.9 319.1H144L100.8 377.6C97.78 381.6 93.04 384 88 384H46.03C38.28 384 32 377.7 32 369.1C32 368.7 32.18 367.4 32.54 366.1L64 255.1L32.54 145.9C32.18 144.6 32 143.3 32 142C32 135.9 35.1 130.6 41.54 128.7V128.7z',
			),
		),
		'label'             => __( 'Plane Slash', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'plane-up'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M192 93.68C192 59.53 221 0 256 0C292 0 320 59.53 320 93.68V160L497.8 278.5C506.7 284.4 512 294.4 512 305.1V361.8C512 372.7 501.3 380.4 490.9 376.1L320 319.1V400L377.6 443.2C381.6 446.2 384 450.1 384 456V497.1C384 505.7 377.7 512 369.1 512C368.7 512 367.4 511.8 366.1 511.5L256 480L145.9 511.5C144.6 511.8 143.3 512 142 512C134.3 512 128 505.7 128 497.1V456C128 450.1 130.4 446.2 134.4 443.2L192 400V319.1L21.06 376.1C10.7 380.4 0 372.7 0 361.8V305.1C0 294.4 5.347 284.4 14.25 278.5L192 160L192 93.68z',
			),
		),
		'label'             => __( 'Plane Up', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'plant-wilt'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 512H224V248C224 217.1 198.9 192 168 192C137.1 192 112 217.1 112 248V260.1C141.3 270.9 160 295.5 160 331.1C160 359.1 124.2 410.5 80 448C35.83 410.5 0 360.4 0 331.1C0 295.5 18.67 270.9 48 260.1V248C48 181.7 101.7 128 168 128C188.2 128 207.3 133 224 141.8V120C224 53.73 277.7 0 344 0C410.3 0 464 53.73 464 120V132.1C493.3 142.9 512 167.5 512 203.1C512 231.1 476.2 282.5 432 320C387.8 282.5 352 232.4 352 203.1C352 167.5 370.7 142.9 400 132.1V120C400 89.07 374.9 64 344 64C313.1 64 288 89.07 288 120V512z',
			),
		),
		'label'             => __( 'Plant Wilt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'plate-wheat'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 112V128C256 136.8 248.8 144 240 144C195.8 144 160 108.2 160 64V48C160 39.16 167.2 32 176 32C220.2 32 256 67.82 256 112zM104 64C117.3 64 128 74.75 128 88C128 101.3 117.3 112 104 112H56C42.75 112 32 101.3 32 88C32 74.75 42.75 64 56 64H104zM136 136C149.3 136 160 146.7 160 160C160 173.3 149.3 184 136 184H24C10.75 184 0 173.3 0 160C0 146.7 10.75 136 24 136H136zM32 232C32 218.7 42.75 208 56 208H104C117.3 208 128 218.7 128 232C128 245.3 117.3 256 104 256H56C42.75 256 32 245.3 32 232zM272 48C272 39.16 279.2 32 288 32C332.2 32 368 67.82 368 112V128C368 136.8 360.8 144 352 144C307.8 144 272 108.2 272 64V48zM480 112V128C480 136.8 472.8 144 464 144C419.8 144 384 108.2 384 64V48C384 39.16 391.2 32 400 32C444.2 32 480 67.82 480 112zM480 208C480 252.2 444.2 288 400 288C391.2 288 384 280.8 384 272V256C384 211.8 419.8 176 464 176C472.8 176 480 183.2 480 192V208zM352 176C360.8 176 368 183.2 368 192V208C368 252.2 332.2 288 288 288C279.2 288 272 280.8 272 272V256C272 211.8 307.8 176 352 176zM256 208C256 252.2 220.2 288 176 288C167.2 288 160 280.8 160 272V256C160 211.8 195.8 176 240 176C248.8 176 256 183.2 256 192V208zM0 352C0 334.3 14.33 320 32 320H480C497.7 320 512 334.3 512 352C512 411.7 471.1 461.9 415.8 476C415.9 477.3 416 478.7 416 480C416 497.7 401.7 512 384 512H128C110.3 512 96 497.7 96 480C96 478.7 96.08 477.3 96.24 476C40.91 461.9 0 411.7 0 352V352z',
			),
		),
		'label'             => __( 'Plate Wheat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'play'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M361 215C375.3 223.8 384 239.3 384 256C384 272.7 375.3 288.2 361 296.1L73.03 472.1C58.21 482 39.66 482.4 24.52 473.9C9.377 465.4 0 449.4 0 432V80C0 62.64 9.377 46.63 24.52 38.13C39.66 29.64 58.21 29.99 73.03 39.04L361 215z',
			),
		),
		'label'             => __( 'Play', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'playstation'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M570.9 372.3c-11.3 14.2-38.8 24.3-38.8 24.3L327 470.2v-54.3l150.9-53.8c17.1-6.1 19.8-14.8 5.8-19.4-13.9-4.6-39.1-3.3-56.2 2.9L327 381.1v-56.4c23.2-7.8 47.1-13.6 75.7-16.8 40.9-4.5 90.9 .6 130.2 15.5 44.2 14 49.2 34.7 38 48.9zm-224.4-92.5v-139c0-16.3-3-31.3-18.3-35.6-11.7-3.8-19 7.1-19 23.4v347.9l-93.8-29.8V32c39.9 7.4 98 24.9 129.2 35.4C424.1 94.7 451 128.7 451 205.2c0 74.5-46 102.8-104.5 74.6zM43.2 410.2c-45.4-12.8-53-39.5-32.3-54.8 19.1-14.2 51.7-24.9 51.7-24.9l134.5-47.8v54.5l-96.8 34.6c-17.1 6.1-19.7 14.8-5.8 19.4 13.9 4.6 39.1 3.3 56.2-2.9l46.4-16.9v48.8c-51.6 9.3-101.4 7.3-153.9-10z',
			),
		),
		'label'             => __( 'PlayStation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'brands', 'brands', 'social' ),
	),
	'plug'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 209.7 369.7 224 352 224V256C352 333.4 297 397.1 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352z',
			),
		),
		'label'             => __( 'Plug', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'science-and-technology', 'travel' ),
	),
	'plug-circle-bolt'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM464.8 286.4L368.8 358.4C364.7 361.5 362.1 366.9 364.6 371.8C366.2 376.7 370.8 380 376 380H411.6L381.5 434.2C378.8 439.1 379.8 445.3 384.1 449C388.4 452.8 394.7 452.1 399.2 449.6L495.2 377.6C499.3 374.5 501 369.1 499.4 364.2C497.8 359.3 493.2 356 488 356H452.4L482.5 301.8C485.2 296.9 484.2 290.7 479.9 286.1C475.6 283.2 469.3 283 464.8 286.4V286.4z',
			),
		),
		'label'             => __( 'Plug Circle Bolt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plug-circle-check'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM476.7 324.7L416 385.4L387.3 356.7C381.1 350.4 370.9 350.4 364.7 356.7C358.4 362.9 358.4 373.1 364.7 379.3L404.7 419.3C410.9 425.6 421.1 425.6 427.3 419.3L499.3 347.3C505.6 341.1 505.6 330.9 499.3 324.7C493.1 318.4 482.9 318.4 476.7 324.7H476.7z',
			),
		),
		'label'             => __( 'Plug Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plug-circle-exclamation'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM432 464C445.3 464 456 453.3 456 440C456 426.7 445.3 416 432 416C418.7 416 408 426.7 408 440C408 453.3 418.7 464 432 464zM415.1 288V368C415.1 376.8 423.2 384 431.1 384C440.8 384 447.1 376.8 447.1 368V288C447.1 279.2 440.8 272 431.1 272C423.2 272 415.1 279.2 415.1 288z',
			),
		),
		'label'             => __( 'Plug Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plug-circle-minus'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368zM496 351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1z',
			),
		),
		'label'             => __( 'Plug Circle Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plug-circle-plus'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM448 303.1C448 295.2 440.8 287.1 432 287.1C423.2 287.1 416 295.2 416 303.1V351.1H368C359.2 351.1 352 359.2 352 367.1C352 376.8 359.2 383.1 368 383.1H416V431.1C416 440.8 423.2 447.1 432 447.1C440.8 447.1 448 440.8 448 431.1V383.1H496C504.8 383.1 512 376.8 512 367.1C512 359.2 504.8 351.1 496 351.1H448V303.1z',
			),
		),
		'label'             => __( 'Plug Circle Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plug-circle-xmark'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M96 0C113.7 0 128 14.33 128 32V128H64V32C64 14.33 78.33 0 96 0zM288 0C305.7 0 320 14.33 320 32V128H256V32C256 14.33 270.3 0 288 0zM352 160C369.7 160 384 174.3 384 192C384 194.3 383.7 196.6 383.3 198.8C309.8 219.1 256 287.7 256 368C256 379.4 257.1 390.5 259.1 401.3C248.1 406.4 236.3 410.3 224 412.8V512H160V412.8C86.97 397.1 32 333.4 32 256V224C14.33 224 0 209.7 0 192C0 174.3 14.33 160 32 160H352zM288 368C288 288.5 352.5 224 432 224C511.5 224 576 288.5 576 368C576 447.5 511.5 512 432 512C352.5 512 288 447.5 288 368zM491.3 331.3C497.6 325.1 497.6 314.9 491.3 308.7C485.1 302.4 474.9 302.4 468.7 308.7L432 345.4L395.3 308.7C389.1 302.4 378.9 302.4 372.7 308.7C366.4 314.9 366.4 325.1 372.7 331.3L409.4 368L372.7 404.7C366.4 410.9 366.4 421.1 372.7 427.3C378.9 433.6 389.1 433.6 395.3 427.3L432 390.6L468.7 427.3C474.9 433.6 485.1 433.6 491.3 427.3C497.6 421.1 497.6 410.9 491.3 404.7L454.6 368L491.3 331.3z',
			),
		),
		'label'             => __( 'Plug Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'plus'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z',
			),
		),
		'label'             => __( 'Plus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design', 'education', 'science-and-technology', 'travel' ),
	),
	'plus-minus'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M352 448H32c-17.69 0-32 14.31-32 32s14.31 31.1 32 31.1h320c17.69 0 32-14.31 32-31.1S369.7 448 352 448zM48 208H160v111.1c0 17.69 14.31 31.1 32 31.1s32-14.31 32-31.1V208h112c17.69 0 32-14.32 32-32.01s-14.31-31.99-32-31.99H224v-112c0-17.69-14.31-32.01-32-32.01S160 14.33 160 32.01v112H48c-17.69 0-32 14.31-32 31.99S30.31 208 48 208z',
			),
		),
		'label'             => __( 'Plus Minus', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'education', 'science-and-technology' ),
	),
	'podcast'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M224 0C100.3 0 0 100.3 0 224c0 92.22 55.77 171.4 135.4 205.7c-3.48-20.75-6.17-41.59-6.998-58.15C80.08 340.1 48 285.8 48 224c0-97.05 78.95-176 176-176s176 78.95 176 176c0 61.79-32.08 116.1-80.39 147.6c-.834 16.5-3.541 37.37-7.035 58.17C392.2 395.4 448 316.2 448 224C448 100.3 347.7 0 224 0zM224 312c-32.88 0-64 8.625-64 43.75c0 33.13 12.88 104.3 20.62 132.8C185.8 507.6 205.1 512 224 512s38.25-4.375 43.38-23.38C275.1 459.9 288 388.8 288 355.8C288 320.6 256.9 312 224 312zM224 280c30.95 0 56-25.05 56-56S254.1 168 224 168S168 193 168 224S193 280 224 280zM368 224c0-79.53-64.47-144-144-144S80 144.5 80 224c0 44.83 20.92 84.38 53.04 110.8c4.857-12.65 14.13-25.88 32.05-35.04C165.1 299.7 165.4 299.7 165.6 299.7C142.9 282.1 128 254.9 128 224c0-53.02 42.98-96 96-96s96 42.98 96 96c0 30.92-14.87 58.13-37.57 75.68c.1309 .0254 .5078 .0488 .4746 .0742c17.93 9.16 27.19 22.38 32.05 35.04C347.1 308.4 368 268.8 368 224z',
			),
		),
		'label'             => __( 'Podcast', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'poo'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M451.4 369.1C468.8 356 480 335.4 480 312c0-39.75-32.25-72-72-72h-14.12C407.3 228.2 416 211.2 416 191.1c0-35.25-28.75-63.1-64-63.1h-5.875C349.8 117.9 352 107.2 352 95.1c0-53-43-96-96-96c-5.25 0-10.25 .75-15.12 1.5C250.3 14.62 256 30.62 256 47.1c0 44.25-35.75 80-80 80H160c-35.25 0-64 28.75-64 63.1c0 19.25 8.75 36.25 22.12 48H104C64.25 239.1 32 272.3 32 312c0 23.38 11.25 44 28.62 57.13C26.25 374.6 0 404.1 0 440C0 479.8 32.25 512 72 512h368c39.75 0 72-32.25 72-72C512 404.1 485.8 374.6 451.4 369.1zM192 256c17.75 0 32 14.25 32 32s-14.25 32-32 32S160 305.8 160 288S174.3 256 192 256zM351.5 395C340.1 422.9 292.1 448 256 448c-36.99 0-84.98-25.12-95.48-53C158.5 389.8 162.5 384 168.3 384h175.5C349.5 384 353.5 389.8 351.5 395zM320 320c-17.75 0-32-14.25-32-32s14.25-32 32-32s32 14.25 32 32S337.8 320 320 320z',
			),
		),
		'label'             => __( 'Poo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'poo-storm'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M304 368H248.3l38.45-89.7c2.938-6.859 .7187-14.84-5.312-19.23c-6.096-4.422-14.35-4.031-19.94 .8906l-128 111.1c-5.033 4.391-6.783 11.44-4.439 17.67c2.346 6.25 8.314 10.38 14.97 10.38H199.7l-38.45 89.7c-2.938 6.859-.7187 14.84 5.312 19.23C169.4 510.1 172.7 512 175.1 512c3.781 0 7.531-1.328 10.53-3.953l128-111.1c5.033-4.391 6.783-11.44 4.439-17.67C316.6 372.1 310.7 368 304 368zM373.3 226.6C379.9 216.6 384 204.9 384 192c0-35.38-28.62-64-64-64h-5.875C317.8 118 320 107.3 320 96c0-53-43-96-96-96C218.9 0 213.9 .75 208.9 1.5C218.3 14.62 224 30.62 224 48C224 92.13 188.1 128 144 128H128C92.63 128 64 156.6 64 192c0 12.88 4.117 24.58 10.72 34.55C31.98 236.3 0 274.3 0 320c0 53.02 42.98 96 96 96h12.79c-4.033-4.414-7.543-9.318-9.711-15.1c-7.01-18.64-1.645-39.96 13.32-53.02l127.9-111.9C249.1 228.2 260.3 223.1 271.1 224c10.19 0 19.95 3.174 28.26 9.203c18.23 13.27 24.76 36.1 15.89 57.71l-19.33 45.1h7.195c19.89 0 37.95 12.51 44.92 31.11C355.3 384 351 402.8 339.1 416H352c53.02 0 96-42.98 96-96C448 274.3 416 236.3 373.3 226.6z',
			),
		),
		'label'             => __( 'Poo Storm', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'poop'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 440.1C512 479.9 479.7 512 439.1 512H71.92C32.17 512 0 479.8 0 440c0-35.88 26.19-65.35 60.56-70.85C43.31 356 32 335.4 32 312C32 272.2 64.25 240 104 240h13.99C104.5 228.2 96 211.2 96 192c0-35.38 28.56-64 63.94-64h16C220.1 128 256 92.12 256 48c0-17.38-5.784-33.35-15.16-46.47C245.8 .7754 250.9 0 256 0c53 0 96 43 96 96c0 11.25-2.288 22-5.913 32h5.879C387.3 128 416 156.6 416 192c0 19.25-8.59 36.25-22.09 48H408C447.8 240 480 272.2 480 312c0 23.38-11.38 44.01-28.63 57.14C485.7 374.6 512 404.3 512 440.1z',
			),
		),
		'label'             => __( 'Poop', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'power-off'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M288 256C288 273.7 273.7 288 256 288C238.3 288 224 273.7 224 256V32C224 14.33 238.3 0 256 0C273.7 0 288 14.33 288 32V256zM80 256C80 353.2 158.8 432 256 432C353.2 432 432 353.2 432 256C432 201.6 407.3 152.9 368.5 120.6C354.9 109.3 353 89.13 364.3 75.54C375.6 61.95 395.8 60.1 409.4 71.4C462.2 115.4 496 181.8 496 255.1C496 388.5 388.5 496 256 496C123.5 496 16 388.5 16 255.1C16 181.8 49.75 115.4 102.6 71.4C116.2 60.1 136.4 61.95 147.7 75.54C158.1 89.13 157.1 109.3 143.5 120.6C104.7 152.9 80 201.6 80 256z',
			),
		),
		'label'             => __( 'Power Off', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'prescription'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M440.1 448.4l-96.28-96.21l95.87-95.95c9.373-9.381 9.373-24.59 0-33.97l-22.62-22.64c-9.373-9.381-24.57-9.381-33.94 0L288.1 295.6L220.5 228c46.86-22.92 76.74-75.46 64.95-133.1C273.9 38.74 221.8 0 164.6 0H31.1C14.33 0 0 14.34 0 32.03v264.1c0 13.26 10.75 24.01 23.1 24.01l31.1 .085c13.25 0 23.1-10.75 23.1-24.02V240.2H119.4l112.1 112L135.4 448.4c-9.373 9.381-9.373 24.59 0 33.97l22.62 22.64c9.373 9.38 24.57 9.38 33.94 0l96.13-96.21l96.28 96.21c9.373 9.381 24.57 9.381 33.94 0l22.62-22.64C450.3 472.9 450.3 457.7 440.1 448.4zM79.1 80.06h87.1c22.06 0 39.1 17.95 39.1 40.03s-17.94 40.03-39.1 40.03H79.1V80.06z',
			),
		),
		'label'             => __( 'Prescription', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'prescription-bottle'                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M32 192h112C152.8 192 160 199.2 160 208C160 216.8 152.8 224 144 224H32v64h112C152.8 288 160 295.2 160 304C160 312.8 152.8 320 144 320H32v64h112C152.8 384 160 391.2 160 400C160 408.8 152.8 416 144 416H32v32c0 35.2 28.8 64 64 64h192c35.2 0 64-28.8 64-64V128H32V192zM360 0H24C10.75 0 0 10.75 0 24v48C0 85.25 10.75 96 24 96h336C373.3 96 384 85.25 384 72v-48C384 10.75 373.3 0 360 0z',
			),
		),
		'label'             => __( 'Prescription Bottle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'prescription-bottle-medical'            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M32 448c0 35.2 28.8 64 64 64h192c35.2 0 64-28.8 64-64V128H32V448zM96 304C96 295.2 103.2 288 112 288H160V240C160 231.2 167.2 224 176 224h32C216.8 224 224 231.2 224 240V288h48C280.8 288 288 295.2 288 304v32c0 8.799-7.199 16-16 16H224v48c0 8.799-7.199 16-16 16h-32C167.2 416 160 408.8 160 400V352H112C103.2 352 96 344.8 96 336V304zM360 0H24C10.75 0 0 10.75 0 24v48C0 85.25 10.75 96 24 96h336C373.3 96 384 85.25 384 72v-48C384 10.75 373.3 0 360 0z',
			),
		),
		'label'             => __( 'Prescription Bottle Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'print'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 192H64C28.65 192 0 220.7 0 256v96c0 17.67 14.33 32 32 32h32v96c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32v-96h32c17.67 0 32-14.33 32-32V256C512 220.7 483.3 192 448 192zM384 448H128v-96h256V448zM432 296c-13.25 0-24-10.75-24-24c0-13.27 10.75-24 24-24s24 10.73 24 24C456 285.3 445.3 296 432 296zM128 64h229.5L384 90.51V160h64V77.25c0-8.484-3.375-16.62-9.375-22.62l-45.25-45.25C387.4 3.375 379.2 0 370.8 0H96C78.34 0 64 14.33 64 32v128h64V64z',
			),
		),
		'label'             => __( 'Print', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'science-and-technology', 'travel' ),
	),
	'product-hunt'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M326.3 218.8c0 20.5-16.7 37.2-37.2 37.2h-70.3v-74.4h70.3c20.5 0 37.2 16.7 37.2 37.2zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-128.1-37.2c0-47.9-38.9-86.8-86.8-86.8H169.2v248h49.6v-74.4h70.3c47.9 0 86.8-38.9 86.8-86.8z',
			),
		),
		'label'             => __( 'Product Hunt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'pump-medical'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M379.3 94.06l-43.32-43.32C323.1 38.74 307.7 32 290.8 32h-66.75c0-17.67-14.33-32-32-32H127.1c-17.67 0-32 14.33-32 32L96 128h128l-.0002-32h66.75l43.31 43.31c6.248 6.248 16.38 6.248 22.63 0l22.62-22.62C385.6 110.4 385.6 100.3 379.3 94.06zM235.6 160H84.37C51.27 160 23.63 185.2 20.63 218.2l-20.36 224C-3.139 479.7 26.37 512 64.01 512h191.1c37.63 0 67.14-32.31 63.74-69.79l-20.36-224C296.4 185.2 268.7 160 235.6 160zM239.1 333.3c0 7.363-5.971 13.33-13.33 13.33h-40v40c0 7.363-5.969 13.33-13.33 13.33h-26.67c-7.363 0-13.33-5.971-13.33-13.33v-40H93.33c-7.363 0-13.33-5.971-13.33-13.33V306.7c0-7.365 5.971-13.33 13.33-13.33h40v-40C133.3 245.1 139.3 240 146.7 240h26.67c7.363 0 13.33 5.969 13.33 13.33v40h40c7.363 0 13.33 5.969 13.33 13.33V333.3z',
			),
		),
		'label'             => __( 'Pump Medical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'pump-soap'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M235.6 160H84.37C51.27 160 23.63 185.2 20.63 218.2l-20.36 224C-3.139 479.7 26.37 512 64.01 512h191.1c37.63 0 67.14-32.31 63.74-69.79l-20.36-224C296.4 185.2 268.7 160 235.6 160zM159.1 416C124.7 416 96 389.7 96 357.3c0-25 38.08-75.47 55.5-97.27c4.25-5.312 12.75-5.312 17 0C185.9 281.8 224 332.3 224 357.3C224 389.7 195.3 416 159.1 416zM379.3 94.06l-43.32-43.32C323.1 38.74 307.7 32 290.8 32h-66.75c0-17.67-14.33-32-32-32H127.1c-17.67 0-32 14.33-32 32L96 128h128l-.0002-32h66.75l43.31 43.31c6.248 6.248 16.38 6.248 22.63 0l22.62-22.62C385.6 110.4 385.6 100.3 379.3 94.06z',
			),
		),
		'label'             => __( 'Pump Soap', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'pushed'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 432,
				'height' => 512,
				'path'   => 'M407 111.9l-98.5-9 14-33.4c10.4-23.5-10.8-40.4-28.7-37L22.5 76.9c-15.1 2.7-26 18.3-21.4 36.6l105.1 348.3c6.5 21.3 36.7 24.2 47.7 7l35.3-80.8 235.2-231.3c16.4-16.8 4.3-42.9-17.4-44.8zM297.6 53.6c5.1-.7 7.5 2.5 5.2 7.4L286 100.9 108.6 84.6l189-31zM22.7 107.9c-3.1-5.1 1-10 6.1-9.1l248.7 22.7-96.9 230.7L22.7 107.9zM136 456.4c-2.6 4-7.9 3.1-9.4-1.2L43.5 179.7l127.7 197.6c-7 15-35.2 79.1-35.2 79.1zm272.8-314.5L210.1 337.3l89.7-213.7 106.4 9.7c4 1.1 5.7 5.3 2.6 8.6z',
			),
		),
		'label'             => __( 'Pushed', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'puzzle-piece'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M512 288c0 35.35-21.49 64-48 64c-32.43 0-31.72-32-55.64-32C394.9 320 384 330.9 384 344.4V480c0 17.67-14.33 32-32 32h-71.64C266.9 512 256 501.1 256 487.6C256 463.1 288 464.4 288 432c0-26.51-28.65-48-64-48s-64 21.49-64 48c0 32.43 32 31.72 32 55.64C192 501.1 181.1 512 167.6 512H32c-17.67 0-32-14.33-32-32v-135.6C0 330.9 10.91 320 24.36 320C48.05 320 47.6 352 80 352C106.5 352 128 323.3 128 288S106.5 223.1 80 223.1c-32.43 0-31.72 32-55.64 32C10.91 255.1 0 245.1 0 231.6v-71.64c0-17.67 14.33-31.1 32-31.1h135.6C181.1 127.1 192 117.1 192 103.6c0-23.69-32-23.24-32-55.64c0-26.51 28.65-47.1 64-47.1s64 21.49 64 47.1c0 32.43-32 31.72-32 55.64c0 13.45 10.91 24.36 24.36 24.36H352c17.67 0 32 14.33 32 31.1v71.64c0 13.45 10.91 24.36 24.36 24.36c23.69 0 23.24-32 55.64-32C490.5 223.1 512 252.7 512 288z',
			),
		),
		'label'             => __( 'Puzzle Piece', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'lifestyle-and-hobbies' ),
	),
	'python'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M439.8 200.5c-7.7-30.9-22.3-54.2-53.4-54.2h-40.1v47.4c0 36.8-31.2 67.8-66.8 67.8H172.7c-29.2 0-53.4 25-53.4 54.3v101.8c0 29 25.2 46 53.4 54.3 33.8 9.9 66.3 11.7 106.8 0 26.9-7.8 53.4-23.5 53.4-54.3v-40.7H226.2v-13.6h160.2c31.1 0 42.6-21.7 53.4-54.2 11.2-33.5 10.7-65.7 0-108.6zM286.2 404c11.1 0 20.1 9.1 20.1 20.3 0 11.3-9 20.4-20.1 20.4-11 0-20.1-9.2-20.1-20.4 .1-11.3 9.1-20.3 20.1-20.3zM167.8 248.1h106.8c29.7 0 53.4-24.5 53.4-54.3V91.9c0-29-24.4-50.7-53.4-55.6-35.8-5.9-74.7-5.6-106.8 .1-45.2 8-53.4 24.7-53.4 55.6v40.7h106.9v13.6h-147c-31.1 0-58.3 18.7-66.8 54.2-9.8 40.7-10.2 66.1 0 108.6 7.6 31.6 25.7 54.2 56.8 54.2H101v-48.8c0-35.3 30.5-66.4 66.8-66.4zm-6.7-142.6c-11.1 0-20.1-9.1-20.1-20.3 .1-11.3 9-20.4 20.1-20.4 11 0 20.1 9.2 20.1 20.4s-9 20.3-20.1 20.3z',
			),
		),
		'label'             => __( 'Python', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'q'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M393.1 402.5c34.12-39.32 54.93-90.48 54.93-146.5c0-123.5-100.5-224-223.1-224S.0001 132.5 .0001 256s100.5 224 223.1 224c44.45 0 85.81-13.16 120.7-35.58l46.73 56.08c6.328 7.594 15.42 11.52 24.59 11.52c21.35 0 31.98-18.26 31.98-32.01c0-7.223-2.433-14.49-7.419-20.47L393.1 402.5zM224 416c-88.22 0-160-71.78-160-160s71.78-159.1 160-159.1s160 71.78 160 159.1c0 36.21-12.55 69.28-32.92 96.12L280.6 267.5c-6.338-7.597-15.44-11.53-24.61-11.53c-21.27 0-31.96 18.22-31.96 32.02c0 7.223 2.433 14.49 7.419 20.47l71.53 85.83C279.6 407.7 252.8 416 224 416z',
			),
		),
		'label'             => __( 'Q', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'qq'                                     => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M433.8 420.4c-11.53 1.393-44.86-52.74-44.86-52.74 0 31.34-16.14 72.25-51.05 101.8 16.84 5.192 54.84 19.17 45.8 34.42-7.316 12.34-125.5 7.881-159.6 4.037-34.12 3.844-152.3 8.306-159.6-4.037-9.045-15.25 28.92-29.21 45.78-34.42-34.92-29.54-51.06-70.44-51.06-101.8 0 0-33.33 54.13-44.86 52.74-5.37-.65-12.42-29.64 9.347-99.7 10.26-33.02 21.1-60.48 40.14-105.8C60.68 98.06 108.1 .006 224 0c113.7 .006 163.2 96.13 160.3 214.1 18.12 45.22 29.91 72.85 40.14 105.8 21.77 70.06 14.72 99.05 9.346 99.7z',
			),
		),
		'label'             => __( 'QQ', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'qrcode'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M144 32C170.5 32 192 53.49 192 80V176C192 202.5 170.5 224 144 224H48C21.49 224 0 202.5 0 176V80C0 53.49 21.49 32 48 32H144zM128 96H64V160H128V96zM144 288C170.5 288 192 309.5 192 336V432C192 458.5 170.5 480 144 480H48C21.49 480 0 458.5 0 432V336C0 309.5 21.49 288 48 288H144zM128 352H64V416H128V352zM256 80C256 53.49 277.5 32 304 32H400C426.5 32 448 53.49 448 80V176C448 202.5 426.5 224 400 224H304C277.5 224 256 202.5 256 176V80zM320 160H384V96H320V160zM352 448H384V480H352V448zM448 480H416V448H448V480zM416 288H448V416H352V384H320V480H256V288H352V320H416V288z',
			),
		),
		'label'             => __( 'Qrcode', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'question'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M204.3 32.01H96c-52.94 0-96 43.06-96 96c0 17.67 14.31 31.1 32 31.1s32-14.32 32-31.1c0-17.64 14.34-32 32-32h108.3C232.8 96.01 256 119.2 256 147.8c0 19.72-10.97 37.47-30.5 47.33L127.8 252.4C117.1 258.2 112 268.7 112 280v40c0 17.67 14.31 31.99 32 31.99s32-14.32 32-31.99V298.3L256 251.3c39.47-19.75 64-59.42 64-103.5C320 83.95 268.1 32.01 204.3 32.01zM144 400c-22.09 0-40 17.91-40 40s17.91 39.1 40 39.1s40-17.9 40-39.1S166.1 400 144 400z',
			),
		),
		'label'             => __( 'Question', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'design' ),
	),
	'quinscape'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M313.6 474.6h-1a158.1 158.1 0 0 1 0-316.2c94.9 0 168.2 83.1 157 176.6 4 5.1 8.2 9.6 11.2 15.3 13.4-30.3 20.3-62.4 20.3-97.7C501.1 117.5 391.6 8 256.5 8S12 117.5 12 252.6s109.5 244.6 244.5 244.6a237.4 237.4 0 0 0 70.4-10.1c-5.2-3.5-8.9-8.1-13.3-12.5zm-.1-.1l.4 .1zm78.4-168.9a99.2 99.2 0 1 0 99.2 99.2 99.18 99.18 0 0 0 -99.2-99.2z',
			),
		),
		'label'             => __( 'QuinScape', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'quora'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M440.5 386.7h-29.3c-1.5 13.5-10.5 30.8-33 30.8-20.5 0-35.3-14.2-49.5-35.8 44.2-34.2 74.7-87.5 74.7-153C403.5 111.2 306.8 32 205 32 105.3 32 7.3 111.7 7.3 228.7c0 134.1 131.3 221.6 249 189C276 451.3 302 480 351.5 480c81.8 0 90.8-75.3 89-93.3zM297 329.2C277.5 300 253.3 277 205.5 277c-30.5 0-54.3 10-69 22.8l12.2 24.3c6.2-3 13-4 19.8-4 35.5 0 53.7 30.8 69.2 61.3-10 3-20.7 4.2-32.7 4.2-75 0-107.5-53-107.5-156.7C97.5 124.5 130 71 205 71c76.2 0 108.7 53.5 108.7 157.7 .1 41.8-5.4 75.6-16.7 100.5z',
			),
		),
		'label'             => __( 'Quora', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'quote-left'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96 224C84.72 224 74.05 226.3 64 229.9V224c0-35.3 28.7-64 64-64c17.67 0 32-14.33 32-32S145.7 96 128 96C57.42 96 0 153.4 0 224v96c0 53.02 42.98 96 96 96s96-42.98 96-96S149 224 96 224zM352 224c-11.28 0-21.95 2.305-32 5.879V224c0-35.3 28.7-64 64-64c17.67 0 32-14.33 32-32s-14.33-32-32-32c-70.58 0-128 57.42-128 128v96c0 53.02 42.98 96 96 96s96-42.98 96-96S405 224 352 224z',
			),
		),
		'label'             => __( 'Quote Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'quote-right'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M96 96C42.98 96 0 138.1 0 192s42.98 96 96 96c11.28 0 21.95-2.305 32-5.879V288c0 35.3-28.7 64-64 64c-17.67 0-32 14.33-32 32s14.33 32 32 32c70.58 0 128-57.42 128-128V192C192 138.1 149 96 96 96zM448 192c0-53.02-42.98-96-96-96s-96 42.98-96 96s42.98 96 96 96c11.28 0 21.95-2.305 32-5.879V288c0 35.3-28.7 64-64 64c-17.67 0-32 14.33-32 32s14.33 32 32 32c70.58 0 128-57.42 128-128V192z',
			),
		),
		'label'             => __( 'Quote Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication' ),
	),
	'r'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 320,
				'height' => 512,
				'path'   => 'M228.7 309.7C282 288.6 320 236.8 320 176c0-79.41-64.59-144-144-144H32c-17.67 0-32 14.33-32 32v384c0 17.67 14.33 32 32 32s32-14.33 32-32v-128h93.43l104.5 146.6c6.25 8.75 16.09 13.42 26.09 13.42c6.422 0 12.91-1.922 18.55-5.938c14.39-10.27 17.73-30.25 7.484-44.64L228.7 309.7zM64 96.01h112c44.11 0 80 35.89 80 80s-35.89 79.1-80 79.1H64V96.01z',
			),
		),
		'label'             => __( 'R', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'r-project'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 581,
				'height' => 512,
				'path'   => 'M581 226.6C581 119.1 450.9 32 290.5 32S0 119.1 0 226.6C0 322.4 103.3 402 239.4 418.1V480h99.1v-61.5c24.3-2.7 47.6-7.4 69.4-13.9L448 480h112l-67.4-113.7c54.5-35.4 88.4-84.9 88.4-139.7zm-466.8 14.5c0-73.5 98.9-133 220.8-133s211.9 40.7 211.9 133c0 50.1-26.5 85-70.3 106.4-2.4-1.6-4.7-2.9-6.4-3.7-10.2-5.2-27.8-10.5-27.8-10.5s86.6-6.4 86.6-92.7-90.6-87.9-90.6-87.9h-199V361c-74.1-21.5-125.2-67.1-125.2-119.9zm225.1 38.3v-55.6c57.8 0 87.8-6.8 87.8 27.3 0 36.5-38.2 28.3-87.8 28.3zm-.9 72.5H365c10.8 0 18.9 11.7 24 19.2-16.1 1.9-33 2.8-50.6 2.9v-22.1z',
			),
		),
		'label'             => __( 'R Project', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'radiation'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 303.1c26.5 0 48-21.5 48-48S282.5 207.1 256 207.1S208 229.5 208 255.1S229.5 303.1 256 303.1zM213.6 188L142.7 74.71C132.5 58.41 109.9 54.31 95.25 66.75c-44.94 38.1-76.19 91.82-85.17 152.8C7.266 238.7 22.67 255.8 42.01 255.8h133.8C175.8 227.2 191 202.3 213.6 188zM416.8 66.75c-14.67-12.44-37.21-8.338-47.41 7.965L298.4 188c22.6 14.3 37.8 39.2 37.8 67.8h133.8c19.34 0 34.74-17.13 31.93-36.26C492.9 158.6 461.7 104.8 416.8 66.75zM298.4 323.5C286.1 331.2 271.6 335.9 256 335.9s-30.1-4.701-42.4-12.4L142.7 436.9c-10.14 16.21-4.16 38.2 13.32 45.95C186.6 496.4 220.4 504 256 504s69.42-7.611 100-21.18c17.48-7.752 23.46-29.74 13.32-45.95L298.4 323.5z',
			),
		),
		'label'             => __( 'Radiation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment', 'science-and-technology' ),
	),
	'radio'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M447.1 128L218.5 128l276.2-80.97c12.72-3.734 19.1-17.06 16.28-29.78c-3.719-12.7-16.1-19.1-29.78-16.28L51.75 126.9c-29.07 8.512-49.55 34.8-51.39 64.78L.0007 192v255.1c0 35.31 28.69 63.1 63.1 63.1h383.1c35.31 0 63.1-28.69 63.1-63.1V192C511.1 156.7 483.3 128 447.1 128zM80 248c0-4.406 3.594-7.1 7.1-7.1h111.1c4.406 0 7.1 3.594 7.1 7.1V263.1c0 4.406-3.594 7.1-7.1 7.1h-111.1c-4.406 0-7.1-3.594-7.1-7.1V248zM208 391.1c0 4.406-3.594 7.1-7.1 7.1h-111.1c-4.406 0-7.1-3.594-7.1-7.1v-15.1c0-4.406 3.594-7.1 7.1-7.1h111.1c4.406 0 7.1 3.594 7.1 7.1V391.1zM224 327.1c0 4.406-3.594 7.1-7.1 7.1H72c-4.406 0-7.1-3.594-7.1-7.1V311.1c0-4.406 3.594-7.1 7.1-7.1h143.1c4.406 0 7.1 3.594 7.1 7.1V327.1zM367.1 399.1c-44.16 0-80-35.84-80-79.1s35.84-80 80-80s79.1 35.85 79.1 80S412.2 399.1 367.1 399.1z',
			),
		),
		'label'             => __( 'Radio', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'rainbow'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M312.3 32.09C137.6 36.22 0 183.3 0 358V464C0 472.8 7.164 480 16 480h32C56.84 480 64 472.8 64 464v-106.9c0-143.2 117.2-263.5 260.4-261.1C463.5 98.4 576 212.3 576 352v112c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16V352C640 172.1 492.3 27.84 312.3 32.09zM313.5 224.2C244.8 227.6 192 286.9 192 355.7V464C192 472.8 199.2 480 208 480h32C248.8 480 256 472.8 256 464v-109.7c0-34.06 25.65-63.85 59.64-66.11C352.9 285.7 384 315.3 384 352v112c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16V352C448 279.3 387 220.5 313.5 224.2zM313.2 128.1C191.4 131.7 96 234.9 96 356.8V464C96 472.8 103.2 480 112 480h32C152.8 480 160 472.8 160 464v-108.1c0-86.64 67.24-160.5 153.8-163.8C404.8 188.7 480 261.7 480 352v112c0 8.836 7.164 16 16 16h32c8.838 0 16-7.164 16-16V352C544 226.2 439.8 124.3 313.2 128.1z',
			),
		),
		'label'             => __( 'Rainbow', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'environment' ),
	),
	'ranking-star'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M406.1 61.65C415.4 63.09 419.4 74.59 412.6 81.41L374.6 118.1L383.6 170.1C384.1 179.5 375.3 186.7 366.7 182.4L320.2 157.9L273.3 182.7C264.7 187 255 179.8 256.4 170.5L265.4 118.4L227.4 81.41C220.6 74.59 224.6 63.09 233.9 61.65L286.2 54.11L309.8 6.332C314.1-2.289 326.3-1.93 330.2 6.332L353.8 54.11L406.1 61.65zM384 256C401.7 256 416 270.3 416 288V480C416 497.7 401.7 512 384 512H256C238.3 512 224 497.7 224 480V288C224 270.3 238.3 256 256 256H384zM160 320C177.7 320 192 334.3 192 352V480C192 497.7 177.7 512 160 512H32C14.33 512 0 497.7 0 480V352C0 334.3 14.33 320 32 320H160zM448 416C448 398.3 462.3 384 480 384H608C625.7 384 640 398.3 640 416V480C640 497.7 625.7 512 608 512H480C462.3 512 448 497.7 448 480V416z',
			),
		),
		'label'             => __( 'Ranking Star', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies' ),
	),
	'raspberry-pi'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 407,
				'height' => 512,
				'path'   => 'M372 232.5l-3.7-6.5c.1-46.4-21.4-65.3-46.5-79.7 7.6-2 15.4-3.6 17.6-13.2 13.1-3.3 15.8-9.4 17.1-15.8 3.4-2.3 14.8-8.7 13.6-19.7 6.4-4.4 10-10.1 8.1-18.1 6.9-7.5 8.7-13.7 5.8-19.4 8.3-10.3 4.6-15.6 1.1-20.9 6.2-11.2 .7-23.2-16.6-21.2-6.9-10.1-21.9-7.8-24.2-7.8-2.6-3.2-6-6-16.5-4.7-6.8-6.1-14.4-5-22.3-2.1-9.3-7.3-15.5-1.4-22.6 .8C271.6 .6 269 5.5 263.5 7.6c-12.3-2.6-16.1 3-22 8.9l-6.9-.1c-18.6 10.8-27.8 32.8-31.1 44.1-3.3-11.3-12.5-33.3-31.1-44.1l-6.9 .1c-5.9-5.9-9.7-11.5-22-8.9-5.6-2-8.1-7-19.4-3.4-4.6-1.4-8.9-4.4-13.9-4.3-2.6 .1-5.5 1-8.7 3.5-7.9-3-15.5-4-22.3 2.1-10.5-1.3-14 1.4-16.5 4.7-2.3 0-17.3-2.3-24.2 7.8C21.2 16 15.8 28 22 39.2c-3.5 5.4-7.2 10.7 1.1 20.9-2.9 5.7-1.1 11.9 5.8 19.4-1.8 8 1.8 13.7 8.1 18.1-1.2 11 10.2 17.4 13.6 19.7 1.3 6.4 4 12.4 17.1 15.8 2.2 9.5 10 11.2 17.6 13.2-25.1 14.4-46.6 33.3-46.5 79.7l-3.7 6.5c-28.8 17.2-54.7 72.7-14.2 117.7 2.6 14.1 7.1 24.2 11 35.4 5.9 45.2 44.5 66.3 54.6 68.8 14.9 11.2 30.8 21.8 52.2 29.2C159 504.2 181 512 203 512h1c22.1 0 44-7.8 64.2-28.4 21.5-7.4 37.3-18 52.2-29.2 10.2-2.5 48.7-23.6 54.6-68.8 3.9-11.2 8.4-21.3 11-35.4 40.6-45.1 14.7-100.5-14-117.7zm-22.2-8c-1.5 18.7-98.9-65.1-82.1-67.9 45.7-7.5 83.6 19.2 82.1 67.9zm-43 93.1c-24.5 15.8-59.8 5.6-78.8-22.8s-14.6-64.2 9.9-80c24.5-15.8 59.8-5.6 78.8 22.8s14.6 64.2-9.9 80zM238.9 29.3c.8 4.2 1.8 6.8 2.9 7.6 5.4-5.8 9.8-11.7 16.8-17.3 0 3.3-1.7 6.8 2.5 9.4 3.7-5 8.8-9.5 15.5-13.3-3.2 5.6-.6 7.3 1.2 9.6 5.1-4.4 10-8.8 19.4-12.3-2.6 3.1-6.2 6.2-2.4 9.8 5.3-3.3 10.6-6.6 23.1-8.9-2.8 3.1-8.7 6.3-5.1 9.4 6.6-2.5 14-4.4 22.1-5.4-3.9 3.2-7.1 6.3-3.9 8.8 7.1-2.2 16.9-5.1 26.4-2.6l-6 6.1c-.7 .8 14.1 .6 23.9 .8-3.6 5-7.2 9.7-9.3 18.2 1 1 5.8 .4 10.4 0-4.7 9.9-12.8 12.3-14.7 16.6 2.9 2.2 6.8 1.6 11.2 .1-3.4 6.9-10.4 11.7-16 17.3 1.4 1 3.9 1.6 9.7 .9-5.2 5.5-11.4 10.5-18.8 15 1.3 1.5 5.8 1.5 10 1.6-6.7 6.5-15.3 9.9-23.4 14.2 4 2.7 6.9 2.1 10 2.1-5.7 4.7-15.4 7.1-24.4 10 1.7 2.7 3.4 3.4 7.1 4.1-9.5 5.3-23.2 2.9-27 5.6 .9 2.7 3.6 4.4 6.7 5.8-15.4 .9-57.3-.6-65.4-32.3 15.7-17.3 44.4-37.5 93.7-62.6-38.4 12.8-73 30-102 53.5-34.3-15.9-10.8-55.9 5.8-71.8zm-34.4 114.6c24.2-.3 54.1 17.8 54 34.7-.1 15-21 27.1-53.8 26.9-32.1-.4-53.7-15.2-53.6-29.8 0-11.9 26.2-32.5 53.4-31.8zm-123-12.8c3.7-.7 5.4-1.5 7.1-4.1-9-2.8-18.7-5.3-24.4-10 3.1 0 6 .7 10-2.1-8.1-4.3-16.7-7.7-23.4-14.2 4.2-.1 8.7 0 10-1.6-7.4-4.5-13.6-9.5-18.8-15 5.8 .7 8.3 .1 9.7-.9-5.6-5.6-12.7-10.4-16-17.3 4.3 1.5 8.3 2 11.2-.1-1.9-4.2-10-6.7-14.7-16.6 4.6 .4 9.4 1 10.4 0-2.1-8.5-5.8-13.3-9.3-18.2 9.8-.1 24.6 0 23.9-.8l-6-6.1c9.5-2.5 19.3 .4 26.4 2.6 3.2-2.5-.1-5.6-3.9-8.8 8.1 1.1 15.4 2.9 22.1 5.4 3.5-3.1-2.3-6.3-5.1-9.4 12.5 2.3 17.8 5.6 23.1 8.9 3.8-3.6 .2-6.7-2.4-9.8 9.4 3.4 14.3 7.9 19.4 12.3 1.7-2.3 4.4-4 1.2-9.6 6.7 3.8 11.8 8.3 15.5 13.3 4.1-2.6 2.5-6.2 2.5-9.4 7 5.6 11.4 11.5 16.8 17.3 1.1-.8 2-3.4 2.9-7.6 16.6 15.9 40.1 55.9 6 71.8-29-23.5-63.6-40.7-102-53.5 49.3 25 78 45.3 93.7 62.6-8 31.8-50 33.2-65.4 32.3 3.1-1.4 5.8-3.2 6.7-5.8-4-2.8-17.6-.4-27.2-5.6zm60.1 24.1c16.8 2.8-80.6 86.5-82.1 67.9-1.5-48.7 36.5-75.5 82.1-67.9zM38.2 342c-23.7-18.8-31.3-73.7 12.6-98.3 26.5-7 9 107.8-12.6 98.3zm91 98.2c-13.3 7.9-45.8 4.7-68.8-27.9-15.5-27.4-13.5-55.2-2.6-63.4 16.3-9.8 41.5 3.4 60.9 25.6 16.9 20 24.6 55.3 10.5 65.7zm-26.4-119.7c-24.5-15.8-28.9-51.6-9.9-80s54.3-38.6 78.8-22.8 28.9 51.6 9.9 80c-19.1 28.4-54.4 38.6-78.8 22.8zM205 496c-29.4 1.2-58.2-23.7-57.8-32.3-.4-12.7 35.8-22.6 59.3-22 23.7-1 55.6 7.5 55.7 18.9 .5 11-28.8 35.9-57.2 35.4zm58.9-124.9c.2 29.7-26.2 53.8-58.8 54-32.6 .2-59.2-23.8-59.4-53.4v-.6c-.2-29.7 26.2-53.8 58.8-54 32.6-.2 59.2 23.8 59.4 53.4v.6zm82.2 42.7c-25.3 34.6-59.6 35.9-72.3 26.3-13.3-12.4-3.2-50.9 15.1-72 20.9-23.3 43.3-38.5 58.9-26.6 10.5 10.3 16.7 49.1-1.7 72.3zm22.9-73.2c-21.5 9.4-39-105.3-12.6-98.3 43.9 24.7 36.3 79.6 12.6 98.3z',
			),
		),
		'label'             => __( 'Raspberry Pi', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'ravelry'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M498.3 234.2c-1.208-10.34-1.7-20.83-3.746-31a310.3 310.3 0 0 0 -9.622-36.6 184.1 184.1 0 0 0 -30.87-57.5 251.2 251.2 0 0 0 -18.82-21.69 237.4 237.4 0 0 0 -47.11-36.12A240.8 240.8 0 0 0 331.4 26.65c-11.02-3.1-22.27-5.431-33.51-7.615-6.78-1.314-13.75-1.667-20.63-2.482-.316-.036-.6-.358-.9-.553q-16.14 .009-32.29 .006c-2.41 .389-4.808 .925-7.236 1.15a179.3 179.3 0 0 0 -34.26 7.1 221.5 221.5 0 0 0 -39.77 16.35 281.4 281.4 0 0 0 -38.08 24.16c-6.167 4.61-12.27 9.36-17.97 14.52C96.54 88.49 86.34 97.72 76.79 107.6a243.9 243.9 0 0 0 -33.65 43.95 206.5 206.5 0 0 0 -20.49 44.6 198.2 198.2 0 0 0 -7.691 34.76A201.1 201.1 0 0 0 13.4 266.4a299.7 299.7 0 0 0 4.425 40.24 226.9 226.9 0 0 0 16.73 53.3 210.5 210.5 0 0 0 24 39.53 213.6 213.6 0 0 0 26.36 28.42A251.3 251.3 0 0 0 126.7 458.5a287.8 287.8 0 0 0 55.9 25.28 269.5 269.5 0 0 0 40.64 9.835c6.071 1.01 12.27 1.253 18.41 1.873a4.149 4.149 0 0 1 1.19 .56h32.29c2.507-.389 5-.937 7.527-1.143 16.34-1.332 32.11-5.335 47.49-10.72A219.1 219.1 0 0 0 379.1 460.3c9.749-6.447 19.4-13.08 28.74-20.1 5.785-4.348 10.99-9.5 16.3-14.46 3.964-3.7 7.764-7.578 11.51-11.5a232.2 232.2 0 0 0 31.43-41.64c9.542-16.05 17.35-32.9 22.3-50.93 2.859-10.41 4.947-21.05 7.017-31.65 1.032-5.279 1.251-10.72 1.87-16.09 .036-.317 .358-.6 .552-.9V236A9.757 9.757 0 0 1 498.3 234.2zm-161.1-1.15s-16.57-2.98-28.47-2.98c-27.2 0-33.57 14.9-33.57 37.04V360.8H201.6V170.1H275.1v31.93c8.924-26.82 26.77-36.19 62.04-36.19z',
			),
		),
		'label'             => __( 'Ravelry', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'react'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M418.2 177.2c-5.4-1.8-10.8-3.5-16.2-5.1 .9-3.7 1.7-7.4 2.5-11.1 12.3-59.6 4.2-107.5-23.1-123.3-26.3-15.1-69.2 .6-112.6 38.4-4.3 3.7-8.5 7.6-12.5 11.5-2.7-2.6-5.5-5.2-8.3-7.7-45.5-40.4-91.1-57.4-118.4-41.5-26.2 15.2-34 60.3-23 116.7 1.1 5.6 2.3 11.1 3.7 16.7-6.4 1.8-12.7 3.8-18.6 5.9C38.3 196.2 0 225.4 0 255.6c0 31.2 40.8 62.5 96.3 81.5 4.5 1.5 9 3 13.6 4.3-1.5 6-2.8 11.9-4 18-10.5 55.5-2.3 99.5 23.9 114.6 27 15.6 72.4-.4 116.6-39.1 3.5-3.1 7-6.3 10.5-9.7 4.4 4.3 9 8.4 13.6 12.4 42.8 36.8 85.1 51.7 111.2 36.6 27-15.6 35.8-62.9 24.4-120.5-.9-4.4-1.9-8.9-3-13.5 3.2-.9 6.3-1.9 9.4-2.9 57.7-19.1 99.5-50 99.5-81.7 0-30.3-39.4-59.7-93.8-78.4zM282.9 92.3c37.2-32.4 71.9-45.1 87.7-36 16.9 9.7 23.4 48.9 12.8 100.4-.7 3.4-1.4 6.7-2.3 10-22.2-5-44.7-8.6-67.3-10.6-13-18.6-27.2-36.4-42.6-53.1 3.9-3.7 7.7-7.2 11.7-10.7zM167.2 307.5c5.1 8.7 10.3 17.4 15.8 25.9-15.6-1.7-31.1-4.2-46.4-7.5 4.4-14.4 9.9-29.3 16.3-44.5 4.6 8.8 9.3 17.5 14.3 26.1zm-30.3-120.3c14.4-3.2 29.7-5.8 45.6-7.8-5.3 8.3-10.5 16.8-15.4 25.4-4.9 8.5-9.7 17.2-14.2 26-6.3-14.9-11.6-29.5-16-43.6zm27.4 68.9c6.6-13.8 13.8-27.3 21.4-40.6s15.8-26.2 24.4-38.9c15-1.1 30.3-1.7 45.9-1.7s31 .6 45.9 1.7c8.5 12.6 16.6 25.5 24.3 38.7s14.9 26.7 21.7 40.4c-6.7 13.8-13.9 27.4-21.6 40.8-7.6 13.3-15.7 26.2-24.2 39-14.9 1.1-30.4 1.6-46.1 1.6s-30.9-.5-45.6-1.4c-8.7-12.7-16.9-25.7-24.6-39s-14.8-26.8-21.5-40.6zm180.6 51.2c5.1-8.8 9.9-17.7 14.6-26.7 6.4 14.5 12 29.2 16.9 44.3-15.5 3.5-31.2 6.2-47 8 5.4-8.4 10.5-17 15.5-25.6zm14.4-76.5c-4.7-8.8-9.5-17.6-14.5-26.2-4.9-8.5-10-16.9-15.3-25.2 16.1 2 31.5 4.7 45.9 8-4.6 14.8-10 29.2-16.1 43.4zM256.2 118.3c10.5 11.4 20.4 23.4 29.6 35.8-19.8-.9-39.7-.9-59.5 0 9.8-12.9 19.9-24.9 29.9-35.8zM140.2 57c16.8-9.8 54.1 4.2 93.4 39 2.5 2.2 5 4.6 7.6 7-15.5 16.7-29.8 34.5-42.9 53.1-22.6 2-45 5.5-67.2 10.4-1.3-5.1-2.4-10.3-3.5-15.5-9.4-48.4-3.2-84.9 12.6-94zm-24.5 263.6c-4.2-1.2-8.3-2.5-12.4-3.9-21.3-6.7-45.5-17.3-63-31.2-10.1-7-16.9-17.8-18.8-29.9 0-18.3 31.6-41.7 77.2-57.6 5.7-2 11.5-3.8 17.3-5.5 6.8 21.7 15 43 24.5 63.6-9.6 20.9-17.9 42.5-24.8 64.5zm116.6 98c-16.5 15.1-35.6 27.1-56.4 35.3-11.1 5.3-23.9 5.8-35.3 1.3-15.9-9.2-22.5-44.5-13.5-92 1.1-5.6 2.3-11.2 3.7-16.7 22.4 4.8 45 8.1 67.9 9.8 13.2 18.7 27.7 36.6 43.2 53.4-3.2 3.1-6.4 6.1-9.6 8.9zm24.5-24.3c-10.2-11-20.4-23.2-30.3-36.3 9.6 .4 19.5 .6 29.5 .6 10.3 0 20.4-.2 30.4-.7-9.2 12.7-19.1 24.8-29.6 36.4zm130.7 30c-.9 12.2-6.9 23.6-16.5 31.3-15.9 9.2-49.8-2.8-86.4-34.2-4.2-3.6-8.4-7.5-12.7-11.5 15.3-16.9 29.4-34.8 42.2-53.6 22.9-1.9 45.7-5.4 68.2-10.5 1 4.1 1.9 8.2 2.7 12.2 4.9 21.6 5.7 44.1 2.5 66.3zm18.2-107.5c-2.8 .9-5.6 1.8-8.5 2.6-7-21.8-15.6-43.1-25.5-63.8 9.6-20.4 17.7-41.4 24.5-62.9 5.2 1.5 10.2 3.1 15 4.7 46.6 16 79.3 39.8 79.3 58 0 19.6-34.9 44.9-84.8 61.4zm-149.7-15c25.3 0 45.8-20.5 45.8-45.8s-20.5-45.8-45.8-45.8c-25.3 0-45.8 20.5-45.8 45.8s20.5 45.8 45.8 45.8z',
			),
		),
		'label'             => __( 'React', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'reacteurope'                            => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M250.6 211.7l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1-2.3-6.8-2.3 6.8-7.2 .1 5.7 4.3zm63.7 0l5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.2-.1-2.3-6.8-2.3 6.8-7.2 .1 5.7 4.3zm-91.3 50.5h-3.4c-4.8 0-3.8 4-3.8 12.1 0 4.7-2.3 6.1-5.8 6.1s-5.8-1.4-5.8-6.1v-36.6c0-4.7 2.3-6.1 5.8-6.1s5.8 1.4 5.8 6.1c0 7.2-.7 10.5 3.8 10.5h3.4c4.7-.1 3.8-3.9 3.8-12.3 0-9.9-6.7-14.1-16.8-14.1h-.2c-10.1 0-16.8 4.2-16.8 14.1V276c0 10.4 6.7 14.1 16.8 14.1h.2c10.1 0 16.8-3.8 16.8-14.1 0-9.86 1.1-13.76-3.8-13.76zm-80.7 17.4h-14.7v-19.3H139c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-11.4v-18.3H142c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-21.7c-2.4-.1-3.7 1.3-3.7 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h21.9c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8zm-42-18.5c4.6-2 7.3-6 7.3-12.4v-11.9c0-10.1-6.7-14.1-16.8-14.1H77.4c-2.5 0-3.8 1.3-3.8 3.8v59.1c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 0 3.8-1.3 3.8-3.8v-22.9h5.6l7.4 23.5a4.1 4.1 0 0 0 4.3 3.2h3.3c2.8 0 4-1.8 3.2-4.4zm-3.8-14c0 4.8-2.5 6.1-6.1 6.1h-5.8v-20.9h5.8c3.6 0 6.1 1.3 6.1 6.1zM176 226a3.82 3.82 0 0 0 -4.2-3.4h-6.9a3.68 3.68 0 0 0 -4 3.4l-11 59.2c-.5 2.7 .9 4.1 3.4 4.1h3a3.74 3.74 0 0 0 4.1-3.5l1.8-11.3h12.2l1.8 11.3a3.74 3.74 0 0 0 4.1 3.5h3.5c2.6 0 3.9-1.4 3.4-4.1zm-12.3 39.3l4.7-29.7 4.7 29.7zm89.3 20.2v-53.2h7.5c2.5 0 3.8-1.3 3.8-3.8v-2.1c0-2.5-1.3-3.8-3.8-3.8h-25.8c-2.5 0-3.8 1.3-3.8 3.8v2.1c0 2.5 1.3 3.8 3.8 3.8h7.3v53.2c0 2.5 1.3 3.8 3.8 3.8h3.4c2.5 .04 3.8-1.3 3.8-3.76zm248-.8h-19.4V258h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0 -2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0 -2-1.9h-22.2a1.62 1.62 0 0 0 -2 1.8v63a1.81 1.81 0 0 0 2 1.9H501a1.81 1.81 0 0 0 2-1.9v-.8a1.84 1.84 0 0 0 -2-1.96zm-93.1-62.9h-.8c-10.1 0-15.3 4.7-15.3 14.1V276c0 9.3 5.2 14.1 15.3 14.1h.8c10.1 0 15.3-4.8 15.3-14.1v-40.1c0-9.36-5.2-14.06-15.3-14.06zm10.2 52.4c-.1 8-3 11.1-10.5 11.1s-10.5-3.1-10.5-11.1v-36.6c0-7.9 3-11.1 10.5-11.1s10.5 3.2 10.5 11.1zm-46.5-14.5c6.1-1.6 9.2-6.1 9.2-13.3v-9.7c0-9.4-5.2-14.1-15.3-14.1h-13.7a1.81 1.81 0 0 0 -2 1.9v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.9h11.6l10.4 27.2a2.32 2.32 0 0 0 2.3 1.5h1.5c1.4 0 2-1 1.5-2.3zm-6.4-3.9H355v-28.5h10.2c7.5 0 10.5 3.1 10.5 11.1v6.4c0 7.84-3 11.04-10.5 11.04zm85.9-33.1h-13.7a1.62 1.62 0 0 0 -2 1.8v63a1.81 1.81 0 0 0 2 1.9h1.2a1.74 1.74 0 0 0 1.9-1.9v-26.1h10.6c10.1 0 15.3-4.8 15.3-14.1v-10.5c0-9.4-5.2-14.1-15.3-14.1zm10.2 22.8c0 7.9-3 11.1-10.5 11.1h-10.2v-29.2h10.2c7.5-.1 10.5 3.1 10.5 11zM259.5 308l-2.3-6.8-2.3 6.8-7.1 .1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm227.6-136.1a364.4 364.4 0 0 0 -35.6-11.3c19.6-78 11.6-134.7-22.3-153.9C394.7-12.66 343.3 11 291 61.94q5.1 4.95 10.2 10.2c82.5-80 119.6-53.5 120.9-52.8 22.4 12.7 36 55.8 15.5 137.8a587.8 587.8 0 0 0 -84.6-13C281.1 43.64 212.4 2 170.8 2 140 2 127 23 123.2 29.74c-18.1 32-13.3 84.2 .1 133.8-70.5 20.3-120.7 54.1-120.3 95 .5 59.6 103.2 87.8 122.1 92.8-20.5 81.9-10.1 135.6 22.3 153.9 28 15.8 75.1 6 138.2-55.2q-5.1-4.95-10.2-10.2c-82.5 80-119.7 53.5-120.9 52.8-22.3-12.6-36-55.6-15.5-137.9 12.4 2.9 41.8 9.5 84.6 13 71.9 100.4 140.6 142 182.1 142 30.8 0 43.8-21 47.6-27.7 18-31.9 13.3-84.1-.1-133.8 152.3-43.8 156.2-130.2 33.9-176.3zM135.9 36.84c2.9-5.1 11.9-20.3 34.9-20.3 36.8 0 98.8 39.6 163.3 126.2a714 714 0 0 0 -93.9 .9 547.8 547.8 0 0 1 42.2-52.4Q277.3 86 272.2 81a598.3 598.3 0 0 0 -50.7 64.2 569.7 569.7 0 0 0 -84.4 14.6c-.2-1.4-24.3-82.2-1.2-123zm304.8 438.3c-2.9 5.1-11.8 20.3-34.9 20.3-36.7 0-98.7-39.4-163.3-126.2a695.4 695.4 0 0 0 93.9-.9 547.8 547.8 0 0 1 -42.2 52.4q5.1 5.25 10.2 10.2a588.5 588.5 0 0 0 50.7-64.2c47.3-4.7 80.3-13.5 84.4-14.6 22.7 84.4 4.5 117 1.2 123zm9.1-138.6c-3.6-11.9-7.7-24.1-12.4-36.4a12.67 12.67 0 0 1 -10.7-5.7l-.1 .1a19.61 19.61 0 0 1 -5.4 3.6c5.7 14.3 10.6 28.4 14.7 42.2a535.3 535.3 0 0 1 -72 13c3.5-5.3 17.2-26.2 32.2-54.2a24.6 24.6 0 0 1 -6-3.2c-1.1 1.2-3.6 4.2-10.9 4.2-6.2 11.2-17.4 30.9-33.9 55.2a711.9 711.9 0 0 1 -112.4 1c-7.9-11.2-21.5-31.1-36.8-57.8a21 21 0 0 1 -3-1.5c-1.9 1.6-3.9 3.2-12.6 3.2 6.3 11.2 17.5 30.7 33.8 54.6a548.8 548.8 0 0 1 -72.2-11.7q5.85-21 14.1-42.9c-3.2 0-5.4 .2-8.4-1a17.58 17.58 0 0 1 -6.9 1c-4.9 13.4-9.1 26.5-12.7 39.4C-31.7 297-12.1 216 126.7 175.6c3.6 11.9 7.7 24.1 12.4 36.4 10.4 0 12.9 3.4 14.4 5.3a12 12 0 0 1 2.3-2.2c-5.8-14.7-10.9-29.2-15.2-43.3 7-1.8 32.4-8.4 72-13-15.9 24.3-26.7 43.9-32.8 55.3a14.22 14.22 0 0 1 6.4 8 23.42 23.42 0 0 1 10.2-8.4c6.5-11.7 17.9-31.9 34.8-56.9a711.7 711.7 0 0 1 112.4-1c31.5 44.6 28.9 48.1 42.5 64.5a21.42 21.42 0 0 1 10.4-7.4c-6.4-11.4-17.6-31-34.3-55.5 40.4 4.1 65 10 72.2 11.7-4 14.4-8.9 29.2-14.6 44.2a20.74 20.74 0 0 1 6.8 4.3l.1 .1a12.72 12.72 0 0 1 8.9-5.6c4.9-13.4 9.2-26.6 12.8-39.5a359.7 359.7 0 0 1 34.5 11c106.1 39.9 74 87.9 72.6 90.4-19.8 35.1-80.1 55.2-105.7 62.5zm-114.4-114h-1.2a1.74 1.74 0 0 0 -1.9 1.9v49.8c0 7.9-2.6 11.1-10.1 11.1s-10.1-3.1-10.1-11.1v-49.8a1.69 1.69 0 0 0 -1.9-1.9H309a1.81 1.81 0 0 0 -2 1.9v51.5c0 9.6 5 14.1 15.1 14.1h.4c10.1 0 15.1-4.6 15.1-14.1v-51.5a2 2 0 0 0 -2.2-1.9zM321.7 308l-2.3-6.8-2.3 6.8-7.1 .1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm-31.1 7.4l-2.3-6.8-2.3 6.8-7.1 .1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3zm5.1-30.8h-19.4v-26.7h16.1a1.89 1.89 0 0 0 2-2v-.8a1.89 1.89 0 0 0 -2-2h-16.1v-25.8h19.1a1.89 1.89 0 0 0 2-2v-.8a1.77 1.77 0 0 0 -2-1.9h-22.2a1.81 1.81 0 0 0 -2 1.9v63a1.81 1.81 0 0 0 2 1.9h22.5a1.77 1.77 0 0 0 2-1.9v-.8a1.83 1.83 0 0 0 -2-2.06zm-7.4-99.4L286 192l-7.1 .1 5.7 4.3-2.1 6.8 5.8-4.1 5.8 4.1-2.1-6.8 5.7-4.3-7.1-.1z',
			),
		),
		'label'             => __( 'ReactEurope', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'readme'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M528.3 46.5H388.5c-48.1 0-89.9 33.3-100.4 80.3-10.6-47-52.3-80.3-100.4-80.3H48c-26.5 0-48 21.5-48 48v245.8c0 26.5 21.5 48 48 48h89.7c102.2 0 132.7 24.4 147.3 75 .7 2.8 5.2 2.8 6 0 14.7-50.6 45.2-75 147.3-75H528c26.5 0 48-21.5 48-48V94.6c0-26.4-21.3-47.9-47.7-48.1zM242 311.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5V289c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V251zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H78.2c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm259.3 121.7c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.9c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5V228c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5v22.9zm0-60.9c0 1.9-1.5 3.5-3.5 3.5H337.5c-1.9 0-3.5-1.5-3.5-3.5v-22.8c0-1.9 1.5-3.5 3.5-3.5h160.4c1.9 0 3.5 1.5 3.5 3.5V190z',
			),
		),
		'label'             => __( 'ReadMe', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'rebel'                                  => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256.5 504C117.2 504 9 387.8 13.2 249.9 16 170.7 56.4 97.7 129.7 49.5c.3 0 1.9-.6 1.1 .8-5.8 5.5-111.3 129.8-14.1 226.4 49.8 49.5 90 2.5 90 2.5 38.5-50.1-.6-125.9-.6-125.9-10-24.9-45.7-40.1-45.7-40.1l28.8-31.8c24.4 10.5 43.2 38.7 43.2 38.7 .8-29.6-21.9-61.4-21.9-61.4L255.1 8l44.3 50.1c-20.5 28.8-21.9 62.6-21.9 62.6 13.8-23 43.5-39.3 43.5-39.3l28.5 31.8c-27.4 8.9-45.4 39.9-45.4 39.9-15.8 28.5-27.1 89.4 .6 127.3 32.4 44.6 87.7-2.8 87.7-2.8 102.7-91.9-10.5-225-10.5-225-6.1-5.5 .8-2.8 .8-2.8 50.1 36.5 114.6 84.4 116.2 204.8C500.9 400.2 399 504 256.5 504z',
			),
		),
		'label'             => __( 'Rebel Alliance', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'receipt'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M13.97 2.196C22.49-1.72 32.5-.3214 39.62 5.778L80 40.39L120.4 5.778C129.4-1.926 142.6-1.926 151.6 5.778L192 40.39L232.4 5.778C241.4-1.926 254.6-1.926 263.6 5.778L304 40.39L344.4 5.778C351.5-.3214 361.5-1.72 370 2.196C378.5 6.113 384 14.63 384 24V488C384 497.4 378.5 505.9 370 509.8C361.5 513.7 351.5 512.3 344.4 506.2L304 471.6L263.6 506.2C254.6 513.9 241.4 513.9 232.4 506.2L192 471.6L151.6 506.2C142.6 513.9 129.4 513.9 120.4 506.2L80 471.6L39.62 506.2C32.5 512.3 22.49 513.7 13.97 509.8C5.456 505.9 0 497.4 0 488V24C0 14.63 5.456 6.112 13.97 2.196V2.196zM96 144C87.16 144 80 151.2 80 160C80 168.8 87.16 176 96 176H288C296.8 176 304 168.8 304 160C304 151.2 296.8 144 288 144H96zM96 368H288C296.8 368 304 360.8 304 352C304 343.2 296.8 336 288 336H96C87.16 336 80 343.2 80 352C80 360.8 87.16 368 96 368zM96 240C87.16 240 80 247.2 80 256C80 264.8 87.16 272 96 272H288C296.8 272 304 264.8 304 256C304 247.2 296.8 240 288 240H96z',
			),
		),
		'label'             => __( 'Receipt', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'lifestyle-and-hobbies', 'science-and-technology' ),
	),
	'record-vinyl'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 160C202.9 160 160 202.9 160 256s42.92 96 96 96c53.08 0 96-42.92 96-96S309.1 160 256 160zM256 288C238.3 288 224 273.7 224 256s14.33-32 32-32c17.67 0 32 14.33 32 32S273.7 288 256 288zM256 0c-141.4 0-256 114.6-256 256s114.6 256 256 256c141.4 0 256-114.6 256-256S397.4 0 256 0zM256 384c-70.75 0-128-57.25-128-128s57.25-128 128-128s128 57.25 128 128S326.8 384 256 384z',
			),
		),
		'label'             => __( 'Record Vinyl', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'rectangle-ad'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M208 237.7L229.2 280H186.8L208 237.7zM416 280C416 293.3 405.3 304 392 304C378.7 304 368 293.3 368 280C368 266.7 378.7 256 392 256C405.3 256 416 266.7 416 280zM512 32C547.3 32 576 60.65 576 96V416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H512zM229.5 173.3C225.4 165.1 217.1 160 208 160C198.9 160 190.6 165.1 186.5 173.3L114.5 317.3C108.6 329.1 113.4 343.5 125.3 349.5C137.1 355.4 151.5 350.6 157.5 338.7L162.8 328H253.2L258.5 338.7C264.5 350.6 278.9 355.4 290.7 349.5C302.6 343.5 307.4 329.1 301.5 317.3L229.5 173.3zM416 212.1C408.5 209.4 400.4 208 392 208C352.2 208 320 240.2 320 280C320 319.8 352.2 352 392 352C403.1 352 413.6 349.5 423 344.1C427.4 349.3 433.4 352 440 352C453.3 352 464 341.3 464 328V184C464 170.7 453.3 160 440 160C426.7 160 416 170.7 416 184V212.1z',
			),
		),
		'label'             => __( 'Rectangle Ad', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'rectangle-list'                         => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M0 96C0 60.65 28.65 32 64 32H512C547.3 32 576 60.65 576 96V416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V96zM160 256C160 238.3 145.7 224 128 224C110.3 224 96 238.3 96 256C96 273.7 110.3 288 128 288C145.7 288 160 273.7 160 256zM160 160C160 142.3 145.7 128 128 128C110.3 128 96 142.3 96 160C96 177.7 110.3 192 128 192C145.7 192 160 177.7 160 160zM160 352C160 334.3 145.7 320 128 320C110.3 320 96 334.3 96 352C96 369.7 110.3 384 128 384C145.7 384 160 369.7 160 352zM224 136C210.7 136 200 146.7 200 160C200 173.3 210.7 184 224 184H448C461.3 184 472 173.3 472 160C472 146.7 461.3 136 448 136H224zM224 232C210.7 232 200 242.7 200 256C200 269.3 210.7 280 224 280H448C461.3 280 472 269.3 472 256C472 242.7 461.3 232 448 232H224zM224 328C210.7 328 200 338.7 200 352C200 365.3 210.7 376 224 376H448C461.3 376 472 365.3 472 352C472 338.7 461.3 328 448 328H224z',
			),
			'regular' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M128 192C110.3 192 96 177.7 96 160C96 142.3 110.3 128 128 128C145.7 128 160 142.3 160 160C160 177.7 145.7 192 128 192zM200 160C200 146.7 210.7 136 224 136H448C461.3 136 472 146.7 472 160C472 173.3 461.3 184 448 184H224C210.7 184 200 173.3 200 160zM200 256C200 242.7 210.7 232 224 232H448C461.3 232 472 242.7 472 256C472 269.3 461.3 280 448 280H224C210.7 280 200 269.3 200 256zM200 352C200 338.7 210.7 328 224 328H448C461.3 328 472 338.7 472 352C472 365.3 461.3 376 448 376H224C210.7 376 200 365.3 200 352zM128 224C145.7 224 160 238.3 160 256C160 273.7 145.7 288 128 288C110.3 288 96 273.7 96 256C96 238.3 110.3 224 128 224zM128 384C110.3 384 96 369.7 96 352C96 334.3 110.3 320 128 320C145.7 320 160 334.3 160 352C160 369.7 145.7 384 128 384zM0 96C0 60.65 28.65 32 64 32H512C547.3 32 576 60.65 576 96V416C576 451.3 547.3 480 512 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H512C520.8 432 528 424.8 528 416V96C528 87.16 520.8 80 512 80H64C55.16 80 48 87.16 48 96z',
			),
		),
		'label'             => __( 'Rectangle List', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'rectangle-xmark'                        => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M448 32C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96C0 60.65 28.65 32 64 32H448zM175 208.1L222.1 255.1L175 303C165.7 312.4 165.7 327.6 175 336.1C184.4 346.3 199.6 346.3 208.1 336.1L255.1 289.9L303 336.1C312.4 346.3 327.6 346.3 336.1 336.1C346.3 327.6 346.3 312.4 336.1 303L289.9 255.1L336.1 208.1C346.3 199.6 346.3 184.4 336.1 175C327.6 165.7 312.4 165.7 303 175L255.1 222.1L208.1 175C199.6 165.7 184.4 165.7 175 175C165.7 184.4 165.7 199.6 175 208.1V208.1z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM0 96C0 60.65 28.65 32 64 32H448C483.3 32 512 60.65 512 96V416C512 451.3 483.3 480 448 480H64C28.65 480 0 451.3 0 416V96zM48 96V416C48 424.8 55.16 432 64 432H448C456.8 432 464 424.8 464 416V96C464 87.16 456.8 80 448 80H64C55.16 80 48 87.16 48 96z',
			),
		),
		'label'             => __( 'Rectangle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology' ),
	),
	'recycle'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M180.2 243.1C185 263.9 162.2 280.2 144.1 268.8L119.8 253.6l-50.9 81.43c-13.33 21.32 2.004 48.98 27.15 48.98h32.02c17.64 0 31.98 14.32 31.98 31.96c0 17.64-14.34 32.05-31.98 32.05H96.15c-75.36 0-121.3-82.84-81.47-146.8L65.51 219.8L41.15 204.5C23.04 193.1 27.66 165.5 48.48 160.7l91.43-21.15C148.5 137.7 157.2 142.9 159.2 151.6L180.2 243.1zM283.1 78.96l41.25 66.14l-24.25 15.08c-18.16 11.31-13.57 38.94 7.278 43.77l91.4 21.15c8.622 1.995 17.23-3.387 19.21-12.01l21.04-91.43c4.789-20.81-17.95-37.05-36.07-25.76l-24.36 15.2L337.4 45.14c-37.58-60.14-125.2-60.18-162.8-.0617L167.2 56.9C157.9 71.75 162.5 91.58 177.3 100.9c14.92 9.359 34.77 4.886 44.11-10.04l7.442-11.89C241.6 58.58 270.9 59.33 283.1 78.96zM497.3 301.3l-16.99-27.26c-9.336-14.98-29.06-19.56-44.04-10.21c-14.94 9.318-19.52 29.15-10.18 44.08l16.99 27.15c13.35 21.32-1.984 49-27.14 49h-95.99l.0234-28.74c0-21.38-25.85-32.09-40.97-16.97l-66.41 66.43c-6.222 6.223-6.222 16.41 .0044 22.63l66.42 66.34c15.12 15.1 40.95 4.386 40.95-16.98l-.0234-28.68h95.86C491.2 448.1 537.2 365.2 497.3 301.3z',
			),
		),
		'label'             => __( 'Recycle', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'red-river'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M353.2 32H94.8C42.4 32 0 74.4 0 126.8v258.4C0 437.6 42.4 480 94.8 480h258.4c52.4 0 94.8-42.4 94.8-94.8V126.8c0-52.4-42.4-94.8-94.8-94.8zM144.9 200.9v56.3c0 27-21.9 48.9-48.9 48.9V151.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9h-56.3c-12.3-.6-24.6 11.6-24 24zm176.3 72h-56.3c-12.3-.6-24.6 11.6-24 24v56.3c0 27-21.9 48.9-48.9 48.9V247.9c0-13.2 10.7-23.9 23.9-23.9h154.2c0 27-21.9 48.9-48.9 48.9z',
			),
		),
		'label'             => __( 'red river', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'reddit'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M201.5 305.5c-13.8 0-24.9-11.1-24.9-24.6 0-13.8 11.1-24.9 24.9-24.9 13.6 0 24.6 11.1 24.6 24.9 0 13.6-11.1 24.6-24.6 24.6zM504 256c0 137-111 248-248 248S8 393 8 256 119 8 256 8s248 111 248 248zm-132.3-41.2c-9.4 0-17.7 3.9-23.8 10-22.4-15.5-52.6-25.5-86.1-26.6l17.4-78.3 55.4 12.5c0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.3 24.9-24.9s-11.1-24.9-24.9-24.9c-9.7 0-18 5.8-22.1 13.8l-61.2-13.6c-3-.8-6.1 1.4-6.9 4.4l-19.1 86.4c-33.2 1.4-63.1 11.3-85.5 26.8-6.1-6.4-14.7-10.2-24.1-10.2-34.9 0-46.3 46.9-14.4 62.8-1.1 5-1.7 10.2-1.7 15.5 0 52.6 59.2 95.2 132 95.2 73.1 0 132.3-42.6 132.3-95.2 0-5.3-.6-10.8-1.9-15.8 31.3-16 19.8-62.5-14.9-62.5zM302.8 331c-18.2 18.2-76.1 17.9-93.6 0-2.2-2.2-6.1-2.2-8.3 0-2.5 2.5-2.5 6.4 0 8.6 22.8 22.8 87.3 22.8 110.2 0 2.5-2.2 2.5-6.1 0-8.6-2.2-2.2-6.1-2.2-8.3 0zm7.7-75c-13.6 0-24.6 11.1-24.6 24.9 0 13.6 11.1 24.6 24.6 24.6 13.8 0 24.9-11.1 24.9-24.6 0-13.8-11-24.9-24.9-24.9z',
			),
		),
		'label'             => __( 'reddit Logo', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'reddit-alien'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2 .1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z',
			),
		),
		'label'             => __( 'reddit Alien', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'brands', 'social', 'social' ),
	),
	'reddit-square'                          => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M283.2 345.5c2.7 2.7 2.7 6.8 0 9.2-24.5 24.5-93.8 24.6-118.4 0-2.7-2.4-2.7-6.5 0-9.2 2.4-2.4 6.5-2.4 8.9 0 18.7 19.2 81 19.6 100.5 0 2.4-2.3 6.6-2.3 9 0zm-91.3-53.8c0-14.9-11.9-26.8-26.5-26.8-14.9 0-26.8 11.9-26.8 26.8 0 14.6 11.9 26.5 26.8 26.5 14.6 0 26.5-11.9 26.5-26.5zm90.7-26.8c-14.6 0-26.5 11.9-26.5 26.8 0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-11.9 26.8-26.5 0-14.9-11.9-26.8-26.8-26.8zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-99.7 140.6c-10.1 0-19 4.2-25.6 10.7-24.1-16.7-56.5-27.4-92.5-28.6l18.7-84.2 59.5 13.4c0 14.6 11.9 26.5 26.5 26.5 14.9 0 26.8-12.2 26.8-26.8 0-14.6-11.9-26.8-26.8-26.8-10.4 0-19.3 6.2-23.8 14.9l-65.7-14.6c-3.3-.9-6.5 1.5-7.4 4.8l-20.5 92.8c-35.7 1.5-67.8 12.2-91.9 28.9-6.5-6.8-15.8-11-25.9-11-37.5 0-49.8 50.4-15.5 67.5-1.2 5.4-1.8 11-1.8 16.7 0 56.5 63.7 102.3 141.9 102.3 78.5 0 142.2-45.8 142.2-102.3 0-5.7-.6-11.6-2.1-17 33.6-17.2 21.2-67.2-16.1-67.2z',
			),
		),
		'label'             => __( 'Reddit Square', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'redhat'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M341.5 285.6c33.65 0 82.34-6.94 82.34-47 .22-6.74 .86-1.82-20.88-96.24-4.62-19.15-8.68-27.84-42.31-44.65-26.09-13.34-82.92-35.37-99.73-35.37-15.66 0-20.2 20.17-38.87 20.17-18 0-31.31-15.06-48.12-15.06-16.14 0-26.66 11-34.78 33.62-27.5 77.55-26.28 74.27-26.12 78.27 0 24.8 97.64 106.1 228.5 106.1M429 254.8c4.65 22 4.65 24.35 4.65 27.25 0 37.66-42.33 58.56-98 58.56-125.7 .08-235.9-73.65-235.9-122.3a49.55 49.55 0 0 1 4.06-19.72C58.56 200.9 0 208.9 0 260.6c0 84.67 200.6 189 359.5 189 121.8 0 152.5-55.08 152.5-98.58 0-34.21-29.59-73.05-82.93-96.24',
			),
		),
		'label'             => __( 'Redhat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'registered'                             => array(
		'svg'               => array(
			'solid'   => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM349.8 349.8c5.594 12.03 .4375 26.31-11.56 31.94c-3.312 1.531-6.75 2.25-10.19 2.25c-9 0-17.66-5.125-21.75-13.81l-38.46-82.19H208v72c0 13.25-10.75 24-24 24s-24-10.75-24-24V152c0-13.25 10.75-24 24-24l88 .0044c44.13 0 80 35.88 80 80c0 28.32-14.87 53.09-37.12 67.31L349.8 349.8zM272 176h-64v64h64c17.66 0 32-14.34 32-32S289.7 176 272 176z',
			),
			'regular' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 0C114.6 0 0 114.6 0 256s114.6 256 256 256s256-114.6 256-256S397.4 0 256 0zM256 464c-114.7 0-208-93.31-208-208S141.3 48 256 48s208 93.31 208 208S370.7 464 256 464zM352 208c0-44.13-35.88-80-80-80L184 128c-13.25 0-24 10.75-24 24v208c0 13.25 10.75 24 24 24s24-10.75 24-24v-72h59.79l38.46 82.19C310.3 378.9 319 384 328 384c3.438 0 6.875-.7187 10.19-2.25c12-5.625 17.16-19.91 11.56-31.94l-34.87-74.5C337.1 261.1 352 236.3 352 208zM272 240h-64v-64h64c17.66 0 32 14.34 32 32S289.7 240 272 240z',
			),
		),
		'label'             => __( 'Registered', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'renren'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M214 169.1c0 110.4-61 205.4-147.6 247.4C30 373.2 8 317.7 8 256.6 8 133.9 97.1 32.2 214 12.5v156.6zM255 504c-42.9 0-83.3-11-118.5-30.4C193.7 437.5 239.9 382.9 255 319c15.5 63.9 61.7 118.5 118.8 154.7C338.7 493 298.3 504 255 504zm190.6-87.5C359 374.5 298 279.6 298 169.1V12.5c116.9 19.7 206 121.4 206 244.1 0 61.1-22 116.6-58.4 159.9z',
			),
		),
		'label'             => __( 'Renren', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'repeat'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 256c-17.67 0-32 14.31-32 32c0 52.94-43.06 96-96 96H192L192 344c0-9.469-5.578-18.06-14.23-21.94C169.1 318.3 159 319.8 151.9 326.2l-80 72C66.89 402.7 64 409.2 64 416s2.891 13.28 7.938 17.84l80 72C156.4 509.9 162.2 512 168 512c3.312 0 6.615-.6875 9.756-2.062C186.4 506.1 192 497.5 192 488L192 448h160c88.22 0 160-71.78 160-160C512 270.3 497.7 256 480 256zM160 128h159.1L320 168c0 9.469 5.578 18.06 14.23 21.94C337.4 191.3 340.7 192 343.1 192c5.812 0 11.57-2.125 16.07-6.156l80-72C445.1 109.3 448 102.8 448 95.1s-2.891-13.28-7.938-17.84l-80-72c-7.047-6.312-17.19-7.875-25.83-4.094C325.6 5.938 319.1 14.53 319.1 24L320 64H160C71.78 64 0 135.8 0 224c0 17.69 14.33 32 32 32s32-14.31 32-32C64 171.1 107.1 128 160 128z',
			),
		),
		'label'             => __( 'Repeat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'reply'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M8.31 189.9l176-151.1c15.41-13.3 39.69-2.509 39.69 18.16v80.05C384.6 137.9 512 170.1 512 322.3c0 61.44-39.59 122.3-83.34 154.1c-13.66 9.938-33.09-2.531-28.06-18.62c45.34-145-21.5-183.5-176.6-185.8v87.92c0 20.7-24.31 31.45-39.69 18.16l-176-151.1C-2.753 216.6-2.784 199.4 8.31 189.9z',
			),
		),
		'label'             => __( 'Reply', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'reply-all'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M136.3 226.2l176 151.1c15.38 13.3 39.69 2.545 39.69-18.16V275.1c108.5 12.58 151.1 58.79 112.6 181.9c-5.031 16.09 14.41 28.56 28.06 18.62c43.75-31.81 83.34-92.69 83.34-154.1c0-131.3-94.86-173.2-224-183.5V56.02c0-20.67-24.28-31.46-39.69-18.16L136.3 189.9C125.2 199.4 125.2 216.6 136.3 226.2zM8.31 226.2l176 151.1c15.38 13.3 39.69 2.545 39.69-18.16v-15.83L66.33 208l157.7-136.2V56.02c0-20.67-24.28-31.46-39.69-18.16l-176 151.1C-2.77 199.4-2.77 216.6 8.31 226.2z',
			),
		),
		'label'             => __( 'Reply All', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'replyd'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M320 480H128C57.6 480 0 422.4 0 352V160C0 89.6 57.6 32 128 32h192c70.4 0 128 57.6 128 128v192c0 70.4-57.6 128-128 128zM193.4 273.2c-6.1-2-11.6-3.1-16.4-3.1-7.2 0-13.5 1.9-18.9 5.6-5.4 3.7-9.6 9-12.8 15.8h-1.1l-4.2-18.3h-28v138.9h36.1v-89.7c1.5-5.4 4.4-9.8 8.7-13.2 4.3-3.4 9.8-5.1 16.2-5.1 4.6 0 9.8 1 15.6 3.1l4.8-34zm115.2 103.4c-3.2 2.4-7.7 4.8-13.7 7.1-6 2.3-12.8 3.5-20.4 3.5-12.2 0-21.1-3-26.5-8.9-5.5-5.9-8.5-14.7-9-26.4h83.3c.9-4.8 1.6-9.4 2.1-13.9 .5-4.4 .7-8.6 .7-12.5 0-10.7-1.6-19.7-4.7-26.9-3.2-7.2-7.3-13-12.5-17.2-5.2-4.3-11.1-7.3-17.8-9.2-6.7-1.8-13.5-2.8-20.6-2.8-21.1 0-37.5 6.1-49.2 18.3s-17.5 30.5-17.5 55c0 22.8 5.2 40.7 15.6 53.7 10.4 13.1 26.8 19.6 49.2 19.6 10.7 0 20.9-1.5 30.4-4.6 9.5-3.1 17.1-6.8 22.6-11.2l-12-23.6zm-21.8-70.3c3.8 5.4 5.3 13.1 4.6 23.1h-51.7c.9-9.4 3.7-17 8.2-22.6 4.5-5.6 11.5-8.5 21-8.5 8.2-.1 14.1 2.6 17.9 8zm79.9 2.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4s2 11.7 6.1 15.6zm0 100.5c4.1 3.9 9.4 5.8 16.1 5.8 7 0 12.6-1.9 16.7-5.8s6.1-9.1 6.1-15.6-2-11.6-6.1-15.4c-4.1-3.8-9.6-5.7-16.7-5.7-6.7 0-12 1.9-16.1 5.7-4.1 3.8-6.1 8.9-6.1 15.4 0 6.6 2 11.7 6.1 15.6z',
			),
		),
		'label'             => __( 'replyd', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'republican'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M544 191.1c0-88.37-71.62-159.1-159.1-159.1L159.1 32C71.62 32 0 103.6 0 191.1l.025 63.98h543.1V191.1zM176.3 170.4l-19.75 19.37l4.75 27.25c.7498 4.875-4.375 8.625-8.75 6.25l-24.5-12.87L103.5 223.2C99.27 225.6 94.02 221.9 94.77 216.1l4.75-27.25l-19.75-19.37C76.15 166.9 78.15 160.9 83.02 160.2L110.4 156.2l12.25-24.87c2.125-4.5 8.625-4.375 10.62 0L145.5 156.2L172.9 160.2C177.9 160.9 179.8 166.9 176.3 170.4zM320.3 170.4l-19.75 19.37l4.75 27.25c.7498 4.875-4.375 8.625-8.75 6.25L272 210.4l-24.5 12.87C243.3 225.6 238 221.9 238.8 216.1L243.5 189.7l-19.75-19.37c-3.625-3.5-1.625-9.498 3.25-10.12L254.4 156.2l12.25-24.87c2.125-4.5 8.625-4.375 10.62 0L289.5 156.2l27.37 4C321.9 160.9 323.8 166.9 320.3 170.4zM464.3 170.4l-19.75 19.37l4.75 27.25c.7498 4.875-4.375 8.625-8.75 6.25l-24.5-12.87l-24.5 12.87c-4.25 2.375-9.5-1.375-8.75-6.25l4.75-27.25l-19.75-19.37c-3.625-3.5-1.625-9.498 3.25-10.12l27.37-4l12.25-24.87c2.125-4.5 8.625-4.375 10.62 0l12.25 24.87l27.37 4C465.9 160.9 467.8 166.9 464.3 170.4zM624 319.1L592 319.1c-8.799 0-15.1 7.199-15.1 15.1v63.99c0 8.748-7.25 15.1-15.1 15.1c-8.75 0-15.1-7.25-15.1-15.1l-.0313-111.1L.025 287.1v159.1c0 17.6 14.4 31.1 31.1 31.1L95.98 479.1c17.6 0 32.04-14.4 32.04-32v-63.98l191.1-.0169v63.99c0 17.6 14.36 32 31.96 32l64.04 .013c17.6 0 31.1-14.4 31.1-31.1l-.0417-96.01l32.04 .0006v43.25c0 41.79 29.91 80.03 71.48 84.35C599.3 484.5 640 446.9 640 399.1v-63.98C640 327.2 632.8 319.1 624 319.1z',
			),
		),
		'label'             => __( 'Republican', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'researchgate'                           => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M0 32v448h448V32H0zm262.2 334.4c-6.6 3-33.2 6-50-14.2-9.2-10.6-25.3-33.3-42.2-63.6-8.9 0-14.7 0-21.4-.6v46.4c0 23.5 6 21.2 25.8 23.9v8.1c-6.9-.3-23.1-.8-35.6-.8-13.1 0-26.1 .6-33.6 .8v-8.1c15.5-2.9 22-1.3 22-23.9V225c0-22.6-6.4-21-22-23.9V193c25.8 1 53.1-.6 70.9-.6 31.7 0 55.9 14.4 55.9 45.6 0 21.1-16.7 42.2-39.2 47.5 13.6 24.2 30 45.6 42.2 58.9 7.2 7.8 17.2 14.7 27.2 14.7v7.3zm22.9-135c-23.3 0-32.2-15.7-32.2-32.2V167c0-12.2 8.8-30.4 34-30.4s30.4 17.9 30.4 17.9l-10.7 7.2s-5.5-12.5-19.7-12.5c-7.9 0-19.7 7.3-19.7 19.7v26.8c0 13.4 6.6 23.3 17.9 23.3 14.1 0 21.5-10.9 21.5-26.8h-17.9v-10.7h30.4c0 20.5 4.7 49.9-34 49.9zm-116.5 44.7c-9.4 0-13.6-.3-20-.8v-69.7c6.4-.6 15-.6 22.5-.6 23.3 0 37.2 12.2 37.2 34.5 0 21.9-15 36.6-39.7 36.6z',
			),
		),
		'label'             => __( 'Researchgate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'resolving'                              => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M281.2 278.2c46-13.3 49.6-23.5 44-43.4L314 195.5c-6.1-20.9-18.4-28.1-71.1-12.8L54.7 236.8l28.6 98.6 197.9-57.2zM248.5 8C131.4 8 33.2 88.7 7.2 197.5l221.9-63.9c34.8-10.2 54.2-11.7 79.3-8.2 36.3 6.1 52.7 25 61.4 55.2l10.7 37.8c8.2 28.1 1 50.6-23.5 73.6-19.4 17.4-31.2 24.5-61.4 33.2L203 351.8l220.4 27.1 9.7 34.2-48.1 13.3-286.8-37.3 23 80.2c36.8 22 80.3 34.7 126.3 34.7 137 0 248.5-111.4 248.5-248.3C497 119.4 385.5 8 248.5 8zM38.3 388.6L0 256.8c0 48.5 14.3 93.4 38.3 131.8z',
			),
		),
		'label'             => __( 'Resolving', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'restroom'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M319.1 0C306.8 0 296 10.8 296 24v464c0 13.2 10.8 24 23.1 24s24-10.8 24-24V24C344 10.8 333.2 0 319.1 0zM213.7 171.8C204.9 145.6 180.5 128 152.9 128H103.1C75.47 128 51.06 145.6 42.37 171.8L1.653 293.9c-5.594 16.77 3.469 34.89 20.22 40.48c12.68 4.211 25.93 .1426 34.13-9.18V480c0 17.67 14.33 32 32 32s31.1-14.33 31.1-32l-.0003-144h16l.0003 144c0 17.67 14.33 32 32 32s31.1-14.33 31.1-32l-.0003-155.2c6.041 6.971 14.7 11.25 24 11.25c3.344 0 6.75-.5313 10.13-1.656c16.75-5.594 25.81-23.72 20.22-40.48L213.7 171.8zM128 96c26.5 0 47.1-21.5 47.1-48S154.5 0 128 0S80 21.5 80 48S101.5 96 128 96zM511.1 96c26.5 0 48-21.5 48-48S538.5 0 511.1 0s-47.1 21.5-47.1 48S485.5 96 511.1 96zM638.3 293.9l-40.69-122.1C588.9 145.6 564.5 128 536.9 128h-49.88c-27.59 0-52 17.59-60.69 43.75l-40.72 122.1c-5.594 16.77 3.469 34.89 20.22 40.48c3.422 1.137 6.856 1.273 10.25 1.264L399.1 384h40v96c0 17.67 14.32 32 31.1 32s32-14.33 32-32v-96h16v96c0 17.67 14.32 32 31.1 32s32-14.33 32-32v-96h39.1l-15.99-47.98c3.342 0 6.747-.5313 10.12-1.656C634.9 328.8 643.9 310.6 638.3 293.9z',
			),
		),
		'label'             => __( 'Restroom', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'travel' ),
	),
	'retweet'                                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M614.2 334.8C610.5 325.8 601.7 319.1 592 319.1H544V176C544 131.9 508.1 96 464 96h-128c-17.67 0-32 14.31-32 32s14.33 32 32 32h128C472.8 160 480 167.2 480 176v143.1h-48c-9.703 0-18.45 5.844-22.17 14.82s-1.656 19.29 5.203 26.16l80 80.02C499.7 445.7 505.9 448 512 448s12.28-2.344 16.97-7.031l80-80.02C615.8 354.1 617.9 343.8 614.2 334.8zM304 352h-128C167.2 352 160 344.8 160 336V192h48c9.703 0 18.45-5.844 22.17-14.82s1.656-19.29-5.203-26.16l-80-80.02C140.3 66.34 134.1 64 128 64S115.7 66.34 111 71.03l-80 80.02C24.17 157.9 22.11 168.2 25.83 177.2S38.3 192 48 192H96V336C96 380.1 131.9 416 176 416h128c17.67 0 32-14.31 32-32S321.7 352 304 352z',
			),
		),
		'label'             => __( 'Retweet', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'social' ),
	),
	'rev'                                    => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M289.7 274.9a65.57 65.57 0 1 1 -65.56-65.56 65.64 65.64 0 0 1 65.56 65.56zm139.6-5.05h-.13a204.7 204.7 0 0 0 -74.32-153l-45.38 26.2a157.1 157.1 0 0 1 71.81 131.8C381.2 361.5 310.7 432 224.1 432S67 361.5 67 274.9c0-81.88 63-149.3 143-156.4v39.12l108.8-62.79L210 32v38.32c-106.7 7.25-191 96-191 204.6 0 111.6 89.12 202.3 200.1 205v.11h210.2V269.8z',
			),
		),
		'label'             => __( 'Rev.io', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'ribbon'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M6.05 444.3c-9.626 10.87-7.501 27.62 4.5 35.75l68.76 27.87c9.876 6.75 23.38 4.1 31.38-3.75l91.76-101.9L123.2 314.3L6.05 444.3zM441.8 444.3c0 0-292-324.5-295.4-329.1c15.38-8.5 40.25-17.1 77.51-17.1s62.13 9.5 77.51 17.1c-3.25 5.5-56.01 64.5-56.01 64.5l79.13 87.75l34.13-37.1c28.75-31.87 33.38-78.62 11.5-115.5L326.5 39.52c-4.25-7.25-9.876-13.25-16.75-17.1c-40.75-27.62-127.5-29.75-171.5 0C131.3 26.27 125.7 32.27 121.4 39.52L77.81 112.8C76.31 115.3 40.68 174.9 89.31 228.8l248.1 275.2c8.001 8.875 21.38 10.5 31.25 3.75l68.88-27.87C449.5 471.9 451.6 455.1 441.8 444.3z',
			),
		),
		'label'             => __( 'Ribbon', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'right-from-bracket'                     => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M96 480h64C177.7 480 192 465.7 192 448S177.7 416 160 416H96c-17.67 0-32-14.33-32-32V128c0-17.67 14.33-32 32-32h64C177.7 96 192 81.67 192 64S177.7 32 160 32H96C42.98 32 0 74.98 0 128v256C0 437 42.98 480 96 480zM504.8 238.5l-144.1-136c-6.975-6.578-17.2-8.375-26-4.594c-8.803 3.797-14.51 12.47-14.51 22.05l-.0918 72l-128-.001c-17.69 0-32.02 14.33-32.02 32v64c0 17.67 14.34 32 32.02 32l128 .001l.0918 71.1c0 9.578 5.707 18.25 14.51 22.05c8.803 3.781 19.03 1.984 26-4.594l144.1-136C514.4 264.4 514.4 247.6 504.8 238.5z',
			),
		),
		'label'             => __( 'Right From Bracket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'right-left'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M32 160h319.9l.0791 72c0 9.547 5.652 18.19 14.41 22c8.754 3.812 18.93 2.078 25.93-4.406l112-104c10.24-9.5 10.24-25.69 0-35.19l-112-104c-6.992-6.484-17.17-8.217-25.93-4.408c-8.758 3.816-14.41 12.46-14.41 22L351.9 96H32C14.31 96 0 110.3 0 127.1S14.31 160 32 160zM480 352H160.1L160 279.1c0-9.547-5.652-18.19-14.41-22C136.9 254.2 126.7 255.9 119.7 262.4l-112 104c-10.24 9.5-10.24 25.69 0 35.19l112 104c6.992 6.484 17.17 8.219 25.93 4.406C154.4 506.2 160 497.5 160 488L160.1 416H480c17.69 0 32-14.31 32-32S497.7 352 480 352z',
			),
		),
		'label'             => __( 'Right Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'right-long'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M504.3 273.6l-112.1 104c-6.992 6.484-17.18 8.218-25.94 4.406c-8.758-3.812-14.42-12.45-14.42-21.1L351.9 288H32C14.33 288 .0002 273.7 .0002 255.1S14.33 224 32 224h319.9l0-72c0-9.547 5.66-18.19 14.42-22c8.754-3.809 18.95-2.075 25.94 4.41l112.1 104C514.6 247.9 514.6 264.1 504.3 273.6z',
			),
		),
		'label'             => __( 'Right Long', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'right-to-bracket'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M344.7 238.5l-144.1-136C193.7 95.97 183.4 94.17 174.6 97.95C165.8 101.8 160.1 110.4 160.1 120V192H32.02C14.33 192 0 206.3 0 224v64c0 17.68 14.33 32 32.02 32h128.1v72c0 9.578 5.707 18.25 14.51 22.05c8.803 3.781 19.03 1.984 26-4.594l144.1-136C354.3 264.4 354.3 247.6 344.7 238.5zM416 32h-64c-17.67 0-32 14.33-32 32s14.33 32 32 32h64c17.67 0 32 14.33 32 32v256c0 17.67-14.33 32-32 32h-64c-17.67 0-32 14.33-32 32s14.33 32 32 32h64c53.02 0 96-42.98 96-96V128C512 74.98 469 32 416 32z',
			),
		),
		'label'             => __( 'Right To Bracket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array(),
	),
	'ring'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M256 64C109.1 64 0 125.9 0 208v98.13C0 384.5 114.6 448 256 448s256-63.5 256-141.9V208C512 125.9 401.1 64 256 64zM256 288C203.1 288 155.1 279.1 120.4 264.6C155 249.9 201.6 240 256 240s101 9.875 135.6 24.62C356.9 279.1 308.9 288 256 288zM437.1 234.4C392.1 208.3 328.3 192 256 192S119.9 208.3 74.88 234.4C68 226.1 64 217.3 64 208C64 163.9 149.1 128 256 128c105.1 0 192 35.88 192 80C448 217.3 444 226.1 437.1 234.4z',
			),
		),
		'label'             => __( 'Ring', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'road'                                   => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 96C256 113.7 270.3 128 288 128C305.7 128 320 113.7 320 96V32H394.8C421.9 32 446 49.08 455.1 74.63L572.9 407.2C574.9 413 576 419.2 576 425.4C576 455.5 551.5 480 521.4 480H320V416C320 398.3 305.7 384 288 384C270.3 384 256 398.3 256 416V480H54.61C24.45 480 0 455.5 0 425.4C0 419.2 1.06 413 3.133 407.2L120.9 74.63C129.1 49.08 154.1 32 181.2 32H255.1L256 96zM320 224C320 206.3 305.7 192 288 192C270.3 192 256 206.3 256 224V288C256 305.7 270.3 320 288 320C305.7 320 320 305.7 320 288V224z',
			),
		),
		'label'             => __( 'Road', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'road-barrier'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M32 32C49.67 32 64 46.33 64 64V96H149.2L64 266.3V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448V64C0 46.33 14.33 32 32 32V32zM309.2 288H234.8L330.8 96H405.2L309.2 288zM458.8 96H533.2L437.2 288H362.8L458.8 96zM202.8 96H277.2L181.2 288H106.8L202.8 96zM576 117.7V64C576 46.33 590.3 32 608 32C625.7 32 640 46.33 640 64V448C640 465.7 625.7 480 608 480C590.3 480 576 465.7 576 448V288H490.8L576 117.7z',
			),
		),
		'label'             => __( 'Road Barrier', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'road-bridge'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M352 0H608C625.7 0 640 14.33 640 32V480C640 497.7 625.7 512 608 512H352C334.3 512 320 497.7 320 480V32C320 14.33 334.3 0 352 0zM456 224V288C456 301.3 466.7 312 480 312C493.3 312 504 301.3 504 288V224C504 210.7 493.3 200 480 200C466.7 200 456 210.7 456 224zM504 384C504 370.7 493.3 360 480 360C466.7 360 456 370.7 456 384V448C456 461.3 466.7 472 480 472C493.3 472 504 461.3 504 448V384zM456 64V128C456 141.3 466.7 152 480 152C493.3 152 504 141.3 504 128V64C504 50.75 493.3 40 480 40C466.7 40 456 50.75 456 64zM32 96H288V160H248V224H288V320C234.1 320 192 362.1 192 416V480C192 497.7 177.7 512 160 512H128C110.3 512 96 497.7 96 480V416C96 362.1 53.02 320 0 320V224H72V160H32C14.33 160 0 145.7 0 128C0 110.3 14.33 96 32 96zM200 160H120V224H200V160z',
			),
		),
		'label'             => __( 'Road Bridge', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'road-circle-check'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M213.2 32H288V96C288 113.7 302.3 128 320 128C337.7 128 352 113.7 352 96V32H426.8C453.9 32 478 49.08 487.1 74.63L529.8 195.2C518.9 193.1 507.6 192 496 192C436.5 192 383.9 221.6 352 266.8V224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224V288C288 305.7 302.3 320 320 320C322.3 320 324.6 319.7 326.8 319.3C322.4 334.7 320 351.1 320 368C320 373.4 320.2 378.7 320.7 384L320 384C302.3 384 288 398.3 288 416V480H86.61C56.45 480 32 455.5 32 425.4C32 419.2 33.06 413 35.13 407.2L152.9 74.63C161.1 49.08 186.1 32 213.2 32H213.2zM640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368zM540.7 324.7L480 385.4L451.3 356.7C445.1 350.4 434.9 350.4 428.7 356.7C422.4 362.9 422.4 373.1 428.7 379.3L468.7 419.3C474.9 425.6 485.1 425.6 491.3 419.3L563.3 347.3C569.6 341.1 569.6 330.9 563.3 324.7C557.1 318.4 546.9 318.4 540.7 324.7H540.7z',
			),
		),
		'label'             => __( 'Road Circle Check', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'road-circle-exclamation'                => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M213.2 32H288V96C288 113.7 302.3 128 320 128C337.7 128 352 113.7 352 96V32H426.8C453.9 32 478 49.08 487.1 74.63L529.8 195.2C518.9 193.1 507.6 192 496 192C436.5 192 383.9 221.6 352 266.8V224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224V288C288 305.7 302.3 320 320 320C322.3 320 324.6 319.7 326.8 319.3C322.4 334.7 320 351.1 320 368C320 373.4 320.2 378.7 320.7 384L320 384C302.3 384 288 398.3 288 416V480H86.61C56.45 480 32 455.5 32 425.4C32 419.2 33.06 413 35.13 407.2L152.9 74.63C161.1 49.08 186.1 32 213.2 32H213.2zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM496 464C509.3 464 520 453.3 520 440C520 426.7 509.3 416 496 416C482.7 416 472 426.7 472 440C472 453.3 482.7 464 496 464zM479.1 288V368C479.1 376.8 487.2 384 495.1 384C504.8 384 511.1 376.8 511.1 368V288C511.1 279.2 504.8 272 495.1 272C487.2 272 479.1 279.2 479.1 288z',
			),
		),
		'label'             => __( 'Road Circle Exclamation', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'road-circle-xmark'                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M213.2 32H288V96C288 113.7 302.3 128 320 128C337.7 128 352 113.7 352 96V32H426.8C453.9 32 478 49.08 487.1 74.63L529.8 195.2C518.9 193.1 507.6 192 496 192C436.5 192 383.9 221.6 352 266.8V224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224V288C288 305.7 302.3 320 320 320C322.3 320 324.6 319.7 326.8 319.3C322.4 334.7 320 351.1 320 368C320 373.4 320.2 378.7 320.7 384L320 384C302.3 384 288 398.3 288 416V480H86.61C56.45 480 32 455.5 32 425.4C32 419.2 33.06 413 35.13 407.2L152.9 74.63C161.1 49.08 186.1 32 213.2 32H213.2zM352 368C352 288.5 416.5 224 496 224C575.5 224 640 288.5 640 368C640 447.5 575.5 512 496 512C416.5 512 352 447.5 352 368zM518.6 368L555.3 331.3C561.6 325.1 561.6 314.9 555.3 308.7C549.1 302.4 538.9 302.4 532.7 308.7L496 345.4L459.3 308.7C453.1 302.4 442.9 302.4 436.7 308.7C430.4 314.9 430.4 325.1 436.7 331.3L473.4 368L436.7 404.7C430.4 410.9 430.4 421.1 436.7 427.3C442.9 433.6 453.1 433.6 459.3 427.3L496 390.6L532.7 427.3C538.9 433.6 549.1 433.6 555.3 427.3C561.6 421.1 561.6 410.9 555.3 404.7L518.6 368z',
			),
		),
		'label'             => __( 'Road Circle Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'road-lock'                              => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M288 96C288 113.7 302.3 128 320 128C337.7 128 352 113.7 352 96V32H426.8C453.9 32 478 49.08 487.1 74.63L517.5 160.5C460.6 165.8 416 213.7 416 272V296.6C396.9 307.6 384 328.3 384 352V480H352V416C352 398.3 337.7 384 320 384C302.3 384 288 398.3 288 416V480H86.61C56.45 480 32 455.5 32 425.4C32 419.2 33.06 413 35.13 407.2L152.9 74.63C161.1 49.08 186.1 32 213.2 32H287.1L288 96zM352 224C352 206.3 337.7 192 320 192C302.3 192 288 206.3 288 224V288C288 305.7 302.3 320 320 320C337.7 320 352 305.7 352 288V224zM528 192C572.2 192 608 227.8 608 272V320C625.7 320 640 334.3 640 352V480C640 497.7 625.7 512 608 512H448C430.3 512 416 497.7 416 480V352C416 334.3 430.3 320 448 320V272C448 227.8 483.8 192 528 192zM528 240C510.3 240 496 254.3 496 272V320H560V272C560 254.3 545.7 240 528 240z',
			),
		),
		'label'             => __( 'Road Lock', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'road-spikes'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M64 116.8C64 101 84.53 94.79 93.31 107.1L192 255.1V116.8C192 101 212.5 94.79 221.3 107.1L320 255.1V116.8C320 101 340.5 94.79 349.3 107.1L448 255.1V116.8C448 101 468.5 94.79 477.3 107.1L606.8 302.2C621 323.5 605.8 351.1 580.2 351.1H64L64 116.8zM608 383.1C625.7 383.1 640 398.3 640 415.1C640 433.7 625.7 447.1 608 447.1H32C14.33 447.1 0 433.7 0 415.1C0 398.3 14.33 383.1 32 383.1H608z',
			),
		),
		'label'             => __( 'Road Spikes', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'robot'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M9.375 233.4C3.375 239.4 0 247.5 0 256v128c0 8.5 3.375 16.62 9.375 22.62S23.5 416 32 416h32V224H32C23.5 224 15.38 227.4 9.375 233.4zM464 96H352V32c0-17.62-14.38-32-32-32S288 14.38 288 32v64H176C131.8 96 96 131.8 96 176V448c0 35.38 28.62 64 64 64h320c35.38 0 64-28.62 64-64V176C544 131.8 508.3 96 464 96zM256 416H192v-32h64V416zM224 296C201.9 296 184 278.1 184 256S201.9 216 224 216S264 233.9 264 256S246.1 296 224 296zM352 416H288v-32h64V416zM448 416h-64v-32h64V416zM416 296c-22.12 0-40-17.88-40-40S393.9 216 416 216S456 233.9 456 256S438.1 296 416 296zM630.6 233.4C624.6 227.4 616.5 224 608 224h-32v192h32c8.5 0 16.62-3.375 22.62-9.375S640 392.5 640 384V256C640 247.5 636.6 239.4 630.6 233.4z',
			),
		),
		'label'             => __( 'Robot', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education', 'science-and-technology' ),
	),
	'rocket'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M156.6 384.9L125.7 353.1C117.2 345.5 114.2 333.1 117.1 321.8C120.1 312.9 124.1 301.3 129.8 288H24C15.38 288 7.414 283.4 3.146 275.9C-1.123 268.4-1.042 259.2 3.357 251.8L55.83 163.3C68.79 141.4 92.33 127.1 117.8 127.1H200C202.4 124 204.8 120.3 207.2 116.7C289.1-4.07 411.1-8.142 483.9 5.275C495.6 7.414 504.6 16.43 506.7 28.06C520.1 100.9 516.1 222.9 395.3 304.8C391.8 307.2 387.1 309.6 384 311.1V394.2C384 419.7 370.6 443.2 348.7 456.2L260.2 508.6C252.8 513 243.6 513.1 236.1 508.9C228.6 504.6 224 496.6 224 488V380.8C209.9 385.6 197.6 389.7 188.3 392.7C177.1 396.3 164.9 393.2 156.6 384.9V384.9zM384 167.1C406.1 167.1 424 150.1 424 127.1C424 105.9 406.1 87.1 384 87.1C361.9 87.1 344 105.9 344 127.1C344 150.1 361.9 167.1 384 167.1z',
			),
		),
		'label'             => __( 'Rocket', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'science-and-technology', 'travel' ),
	),
	'rocketchat'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M284 224.8a34.11 34.11 0 1 0 34.32 34.11A34.22 34.22 0 0 0 284 224.8zm-110.4 0a34.11 34.11 0 1 0 34.32 34.11A34.22 34.22 0 0 0 173.6 224.8zm220.9 0a34.11 34.11 0 1 0 34.32 34.11A34.22 34.22 0 0 0 394.5 224.8zm153.8-55.32c-15.53-24.17-37.31-45.57-64.68-63.62-52.89-34.82-122.4-54-195.7-54a405.1 405.1 0 0 0 -72.03 6.357 238.5 238.5 0 0 0 -49.51-36.59C99.68-11.7 40.86 .711 11.14 11.42A14.29 14.29 0 0 0 5.58 34.78C26.54 56.46 61.22 99.3 52.7 138.3c-33.14 33.9-51.11 74.78-51.11 117.3 0 43.37 17.97 84.25 51.11 118.1 8.526 38.96-26.15 81.82-47.12 103.5a14.28 14.28 0 0 0 5.555 23.34c29.72 10.71 88.55 23.15 155.3-10.2a238.7 238.7 0 0 0 49.51-36.59A405.1 405.1 0 0 0 288 460.1c73.31 0 142.8-19.16 195.7-53.97 27.37-18.05 49.15-39.43 64.68-63.62 17.31-26.92 26.07-55.92 26.07-86.13C574.4 225.4 565.6 196.4 548.3 169.5zM284.1 409.9a345.6 345.6 0 0 1 -89.45-11.5l-20.13 19.39a184.4 184.4 0 0 1 -37.14 27.58 145.8 145.8 0 0 1 -52.52 14.87c.983-1.771 1.881-3.563 2.842-5.356q30.26-55.68 16.33-100.1c-32.99-25.96-52.78-59.2-52.78-95.4 0-83.1 104.3-150.5 232.8-150.5s232.9 67.37 232.9 150.5C517.9 342.5 413.6 409.9 284.1 409.9z',
			),
		),
		'label'             => __( 'Rocket.Chat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'rockrms'                                => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 496,
				'height' => 512,
				'path'   => 'M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm157.4 419.5h-90l-112-131.3c-17.9-20.4-3.9-56.1 26.6-56.1h75.3l-84.6-99.3-84.3 98.9h-90L193.5 67.2c14.4-18.4 41.3-17.3 54.5 0l157.7 185.1c19 22.8 2 57.2-27.6 56.1-.6 0-74.2 .2-74.2 .2l101.5 118.9z',
			),
		),
		'label'             => __( 'Rockrms', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'rotate'                                 => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M449.9 39.96l-48.5 48.53C362.5 53.19 311.4 32 256 32C161.5 32 78.59 92.34 49.58 182.2c-5.438 16.81 3.797 34.88 20.61 40.28c16.97 5.5 34.86-3.812 40.3-20.59C130.9 138.5 189.4 96 256 96c37.96 0 73 14.18 100.2 37.8L311.1 178C295.1 194.8 306.8 223.4 330.4 224h146.9C487.7 223.7 496 215.3 496 204.9V59.04C496 34.99 466.9 22.95 449.9 39.96zM441.8 289.6c-16.94-5.438-34.88 3.812-40.3 20.59C381.1 373.5 322.6 416 256 416c-37.96 0-73-14.18-100.2-37.8L200 334C216.9 317.2 205.2 288.6 181.6 288H34.66C24.32 288.3 16 296.7 16 307.1v145.9c0 24.04 29.07 36.08 46.07 19.07l48.5-48.53C149.5 458.8 200.6 480 255.1 480c94.45 0 177.4-60.34 206.4-150.2C467.9 313 458.6 294.1 441.8 289.6z',
			),
		),
		'label'             => __( 'Rotate', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'design', 'science-and-technology' ),
	),
	'rotate-left'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M480 256c0 123.4-100.5 223.9-223.9 223.9c-48.84 0-95.17-15.58-134.2-44.86c-14.12-10.59-16.97-30.66-6.375-44.81c10.59-14.12 30.62-16.94 44.81-6.375c27.84 20.91 61 31.94 95.88 31.94C344.3 415.8 416 344.1 416 256s-71.69-159.8-159.8-159.8c-37.46 0-73.09 13.49-101.3 36.64l45.12 45.14c17.01 17.02 4.955 46.1-19.1 46.1H35.17C24.58 224.1 16 215.5 16 204.9V59.04c0-24.04 29.07-36.08 46.07-19.07l47.6 47.63C149.9 52.71 201.5 32.11 256.1 32.11C379.5 32.11 480 132.6 480 256z',
			),
		),
		'label'             => __( 'Rotate Left', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'rotate-right'                           => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M468.9 32.11c13.87 0 27.18 10.77 27.18 27.04v145.9c0 10.59-8.584 19.17-19.17 19.17h-145.7c-16.28 0-27.06-13.32-27.06-27.2c0-6.634 2.461-13.4 7.96-18.9l45.12-45.14c-28.22-23.14-63.85-36.64-101.3-36.64c-88.09 0-159.8 71.69-159.8 159.8S167.8 415.9 255.9 415.9c73.14 0 89.44-38.31 115.1-38.31c18.48 0 31.97 15.04 31.97 31.96c0 35.04-81.59 70.41-147 70.41c-123.4 0-223.9-100.5-223.9-223.9S132.6 32.44 256 32.44c54.6 0 106.2 20.39 146.4 55.26l47.6-47.63C455.5 34.57 462.3 32.11 468.9 32.11z',
			),
		),
		'label'             => __( 'Rotate Right', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology' ),
	),
	'route'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 256C302.3 256 288 270.3 288 288C288 305.7 302.3 320 320 320H416C469 320 512 362.1 512 416C512 469 469 512 416 512H139.6C148.3 502.1 158.9 489.4 169.6 475.2C175.9 466.8 182.4 457.6 188.6 448H416C433.7 448 448 433.7 448 416C448 398.3 433.7 384 416 384H320C266.1 384 223.1 341 223.1 288C223.1 234.1 266.1 192 320 192H362.1C340.2 161.5 320 125.4 320 96C320 42.98 362.1 0 416 0C469 0 512 42.98 512 96C512 160 416 256 416 256H320zM416 128C433.7 128 448 113.7 448 96C448 78.33 433.7 64 416 64C398.3 64 384 78.33 384 96C384 113.7 398.3 128 416 128zM118.3 487.8C118.1 488 117.9 488.2 117.7 488.4C113.4 493.4 109.5 497.7 106.3 501.2C105.9 501.6 105.5 502 105.2 502.4C99.5 508.5 96 512 96 512C96 512 0 416 0 352C0 298.1 42.98 255.1 96 255.1C149 255.1 192 298.1 192 352C192 381.4 171.8 417.5 149.9 448C138.1 463.2 127.7 476.9 118.3 487.8L118.3 487.8zM95.1 384C113.7 384 127.1 369.7 127.1 352C127.1 334.3 113.7 320 95.1 320C78.33 320 63.1 334.3 63.1 352C63.1 369.7 78.33 384 95.1 384z',
			),
		),
		'label'             => __( 'Route', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies', 'travel' ),
	),
	'rss'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M25.57 176.1C12.41 175.4 .9117 185.2 .0523 198.4s9.173 24.65 22.39 25.5c120.1 7.875 225.7 112.7 233.6 233.6C256.9 470.3 267.4 480 279.1 480c.5313 0 1.062-.0313 1.594-.0625c13.22-.8438 23.25-12.28 22.39-25.5C294.6 310.3 169.7 185.4 25.57 176.1zM32 32C14.33 32 0 46.31 0 64s14.33 32 32 32c194.1 0 352 157.9 352 352c0 17.69 14.33 32 32 32s32-14.31 32-32C448 218.6 261.4 32 32 32zM63.1 351.9C28.63 351.9 0 380.6 0 416s28.63 64 63.1 64s64.08-28.62 64.08-64S99.37 351.9 63.1 351.9z',
			),
		),
		'label'             => __( 'Rss', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'communication', 'science-and-technology', 'travel' ),
	),
	'ruble-sign'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M240 32C319.5 32 384 96.47 384 176C384 255.5 319.5 320 240 320H128V352H288C305.7 352 320 366.3 320 384C320 401.7 305.7 416 288 416H128V448C128 465.7 113.7 480 96 480C78.33 480 64 465.7 64 448V416H32C14.33 416 0 401.7 0 384C0 366.3 14.33 352 32 352H64V320H32C14.33 320 0 305.7 0 288C0 270.3 14.33 256 32 256H64V64C64 46.33 78.33 32 96 32H240zM320 176C320 131.8 284.2 96 240 96H128V256H240C284.2 256 320 220.2 320 176z',
			),
		),
		'label'             => __( 'Ruble Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'rug'                                    => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M80 64V448H24C10.75 448 0 437.3 0 424C0 410.7 10.75 400 24 400H32V360H24C10.75 360 0 349.3 0 336C0 322.7 10.75 312 24 312H32V280H24C10.75 280 0 269.3 0 256C0 242.7 10.75 232 24 232H32V200H24C10.75 200 0 189.3 0 176C0 162.7 10.75 152 24 152H32V112H24C10.75 112 0 101.3 0 88C0 74.75 10.75 64 24 64H80zM112 64H528V448H112V64zM616 112H608V152H616C629.3 152 640 162.7 640 176C640 189.3 629.3 200 616 200H608V232H616C629.3 232 640 242.7 640 256C640 269.3 629.3 280 616 280H608V312H616C629.3 312 640 322.7 640 336C640 349.3 629.3 360 616 360H608V400H616C629.3 400 640 410.7 640 424C640 437.3 629.3 448 616 448H560V64H616C629.3 64 640 74.75 640 88C640 101.3 629.3 112 616 112z',
			),
		),
		'label'             => __( 'Rug', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'lifestyle-and-hobbies' ),
	),
	'ruler'                                  => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M177.9 494.1C159.2 512.8 128.8 512.8 110.1 494.1L17.94 401.9C-.8054 383.2-.8054 352.8 17.94 334.1L68.69 283.3L116.7 331.3C122.9 337.6 133.1 337.6 139.3 331.3C145.6 325.1 145.6 314.9 139.3 308.7L91.31 260.7L132.7 219.3L180.7 267.3C186.9 273.6 197.1 273.6 203.3 267.3C209.6 261.1 209.6 250.9 203.3 244.7L155.3 196.7L196.7 155.3L244.7 203.3C250.9 209.6 261.1 209.6 267.3 203.3C273.6 197.1 273.6 186.9 267.3 180.7L219.3 132.7L260.7 91.31L308.7 139.3C314.9 145.6 325.1 145.6 331.3 139.3C337.6 133.1 337.6 122.9 331.3 116.7L283.3 68.69L334.1 17.94C352.8-.8055 383.2-.8055 401.9 17.94L494.1 110.1C512.8 128.8 512.8 159.2 494.1 177.9L177.9 494.1z',
			),
		),
		'label'             => __( 'Ruler', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'ruler-combined'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M0 464V48C0 21.49 21.49 0 48 0H144C170.5 0 192 21.49 192 48V96H112C103.2 96 96 103.2 96 112C96 120.8 103.2 128 112 128H192V192H112C103.2 192 96 199.2 96 208C96 216.8 103.2 224 112 224H192V288H112C103.2 288 96 295.2 96 304C96 312.8 103.2 320 112 320H192V400C192 408.8 199.2 416 208 416C216.8 416 224 408.8 224 400V320H288V400C288 408.8 295.2 416 304 416C312.8 416 320 408.8 320 400V320H384V400C384 408.8 391.2 416 400 416C408.8 416 416 408.8 416 400V320H464C490.5 320 512 341.5 512 368V464C512 490.5 490.5 512 464 512H48C23.15 512 2.706 493.1 .2477 468.9C.0838 467.3 0 465.7 0 464z',
			),
		),
		'label'             => __( 'Ruler Combined', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'ruler-horizontal'                       => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M0 176C0 149.5 21.49 128 48 128H112V208C112 216.8 119.2 224 128 224C136.8 224 144 216.8 144 208V128H208V208C208 216.8 215.2 224 224 224C232.8 224 240 216.8 240 208V128H304V208C304 216.8 311.2 224 320 224C328.8 224 336 216.8 336 208V128H400V208C400 216.8 407.2 224 416 224C424.8 224 432 216.8 432 208V128H496V208C496 216.8 503.2 224 512 224C520.8 224 528 216.8 528 208V128H592C618.5 128 640 149.5 640 176V336C640 362.5 618.5 384 592 384H48C21.49 384 0 362.5 0 336V176z',
			),
		),
		'label'             => __( 'Ruler Horizontal', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'ruler-vertical'                         => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 256,
				'height' => 512,
				'path'   => 'M0 48C0 21.49 21.49 0 48 0H208C234.5 0 256 21.49 256 48V96H176C167.2 96 160 103.2 160 112C160 120.8 167.2 128 176 128H256V192H176C167.2 192 160 199.2 160 208C160 216.8 167.2 224 176 224H256V288H176C167.2 288 160 295.2 160 304C160 312.8 167.2 320 176 320H256V384H176C167.2 384 160 391.2 160 400C160 408.8 167.2 416 176 416H256V464C256 490.5 234.5 512 208 512H48C21.49 512 0 490.5 0 464V48z',
			),
		),
		'label'             => __( 'Ruler Vertical', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'design' ),
	),
	'rupee-sign'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 448,
				'height' => 512,
				'path'   => 'M.0003 64C.0003 46.33 14.33 32 32 32H112C191.5 32 256 96.47 256 176C256 234.8 220.8 285.3 170.3 307.7L221.7 436.1C228.3 452.5 220.3 471.1 203.9 477.7C187.5 484.3 168.9 476.3 162.3 459.9L106.3 320H64V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448L.0003 64zM64 256H112C156.2 256 192 220.2 192 176C192 131.8 156.2 96 112 96H64V256zM320.8 282.2C321.3 283.3 322.2 284.8 325 287.1C332.2 292.8 343.7 297.1 362.9 303.8L364.2 304.3C380.3 309.1 402.9 317.9 419.1 332.4C429.5 340.5 437.9 351 443 364.7C448.1 378.4 449.1 393.2 446.8 408.7C442.7 436.8 426.4 457.1 403.1 469.6C381 480.7 354.9 482.1 329.9 477.6L329.7 477.5C320.4 475.8 309.2 471.8 300.5 468.6C294.4 466.3 287.9 463.7 282.7 461.6C280.2 460.6 278.1 459.8 276.4 459.1C259.9 452.7 251.8 434.2 258.2 417.7C264.6 401.2 283.1 393.1 299.6 399.5C302.2 400.5 304.8 401.5 307.5 402.6C312.3 404.5 317.4 406.5 322.9 408.6C331.7 411.9 338.2 413.1 341.6 414.6C357.2 417.5 368.3 415.5 374.5 412.4C379.4 409.9 382.5 406.3 383.5 399.3C384.5 392.4 383.7 388.8 383.1 387.1C382.4 385.4 381.3 383.5 378.6 381.2C371.7 375.4 360.4 370.8 341.6 364.2L338.6 363.1C323.1 357.7 301.6 350.2 285.3 337.2C275.8 329.7 266.1 319.7 261.5 306.3C256.1 292.8 254.9 278.2 257.2 263.1C265.6 205.1 324.2 185.1 374.1 194.2C380.1 195.5 401.4 200 409.5 202.6C426.4 207.8 435.8 225.7 430.6 242.6C425.3 259.5 407.4 268.9 390.5 263.7C385.8 262.2 368.2 258.2 362.6 257.2C347.1 254.5 336.8 256.8 329.1 260.4C323.7 263.7 321.1 267.1 320.5 272.4C319.6 278.4 320.4 281.2 320.8 282.2H320.8z',
			),
		),
		'label'             => __( 'Rupee Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'rupiah-sign'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M.0003 64C.0003 46.33 14.33 32 32 32H112C191.5 32 256 96.47 256 176C256 234.8 220.8 285.3 170.3 307.7L221.7 436.1C228.3 452.5 220.3 471.1 203.9 477.7C187.5 484.3 168.9 476.3 162.3 459.9L106.3 320H64V448C64 465.7 49.67 480 32 480C14.33 480 0 465.7 0 448L.0003 64zM64 256H112C156.2 256 192 220.2 192 176C192 131.8 156.2 96 112 96H64V256zM400 160C461.9 160 512 210.1 512 272C512 333.9 461.9 384 400 384H352V480C352 497.7 337.7 512 320 512C302.3 512 288 497.7 288 480V192C288 174.3 302.3 160 320 160H400zM448 272C448 245.5 426.5 224 400 224H352V320H400C426.5 320 448 298.5 448 272z',
			),
		),
		'label'             => __( 'Rupiah Sign', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'rust'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M508.5 249.8 486.7 236.2c-.17-2-.34-3.93-.55-5.88l18.72-17.5a7.35 7.35 0 0 0 -2.44-12.25l-24-9c-.54-1.88-1.08-3.78-1.67-5.64l15-20.83a7.35 7.35 0 0 0 -4.79-11.54l-25.42-4.15c-.9-1.73-1.79-3.45-2.73-5.15l10.68-23.42a7.35 7.35 0 0 0 -6.95-10.39l-25.82 .91q-1.79-2.22-3.61-4.4L439 81.84A7.36 7.36 0 0 0 430.2 73L405 78.93q-2.17-1.83-4.4-3.61l.91-25.82a7.35 7.35 0 0 0 -10.39-7L367.7 53.23c-1.7-.94-3.43-1.84-5.15-2.73L358.4 25.08a7.35 7.35 0 0 0 -11.54-4.79L326 35.26c-1.86-.59-3.75-1.13-5.64-1.67l-9-24a7.35 7.35 0 0 0 -12.25-2.44l-17.5 18.72c-1.95-.21-3.91-.38-5.88-.55L262.3 3.48a7.35 7.35 0 0 0 -12.5 0L236.2 25.3c-2 .17-3.93 .34-5.88 .55L212.9 7.13a7.35 7.35 0 0 0 -12.25 2.44l-9 24c-1.89 .55-3.79 1.08-5.66 1.68l-20.82-15a7.35 7.35 0 0 0 -11.54 4.79l-4.15 25.41c-1.73 .9-3.45 1.79-5.16 2.73L120.9 42.55a7.35 7.35 0 0 0 -10.39 7l.92 25.81c-1.49 1.19-3 2.39-4.42 3.61L81.84 73A7.36 7.36 0 0 0 73 81.84L78.93 107c-1.23 1.45-2.43 2.93-3.62 4.41l-25.81-.91a7.42 7.42 0 0 0 -6.37 3.26 7.35 7.35 0 0 0 -.57 7.13l10.66 23.41c-.94 1.7-1.83 3.43-2.73 5.16L25.08 153.6a7.35 7.35 0 0 0 -4.79 11.54l15 20.82c-.59 1.87-1.13 3.77-1.68 5.66l-24 9a7.35 7.35 0 0 0 -2.44 12.25l18.72 17.5c-.21 1.95-.38 3.91-.55 5.88L3.48 249.8a7.35 7.35 0 0 0 0 12.5L25.3 275.8c.17 2 .34 3.92 .55 5.87L7.13 299.1a7.35 7.35 0 0 0 2.44 12.25l24 9c.55 1.89 1.08 3.78 1.68 5.65l-15 20.83a7.35 7.35 0 0 0 4.79 11.54l25.42 4.15c.9 1.72 1.79 3.45 2.73 5.14L42.56 391.1a7.35 7.35 0 0 0 .57 7.13 7.13 7.13 0 0 0 6.37 3.26l25.83-.91q1.77 2.22 3.6 4.4L73 430.2A7.36 7.36 0 0 0 81.84 439L107 433.1q2.18 1.83 4.41 3.61l-.92 25.82a7.35 7.35 0 0 0 10.39 6.95l23.43-10.68c1.69 .94 3.42 1.83 5.14 2.73l4.15 25.42a7.34 7.34 0 0 0 11.54 4.78l20.83-15c1.86 .6 3.76 1.13 5.65 1.68l9 24a7.36 7.36 0 0 0 12.25 2.44l17.5-18.72c1.95 .21 3.92 .38 5.88 .55l13.51 21.82a7.35 7.35 0 0 0 12.5 0l13.51-21.82c2-.17 3.93-.34 5.88-.56l17.5 18.73a7.36 7.36 0 0 0 12.25-2.44l9-24c1.89-.55 3.78-1.08 5.65-1.68l20.82 15a7.34 7.34 0 0 0 11.54-4.78l4.15-25.42c1.72-.9 3.45-1.79 5.15-2.73l23.42 10.68a7.35 7.35 0 0 0 10.39-6.95l-.91-25.82q2.22-1.79 4.4-3.61L430.2 439a7.36 7.36 0 0 0 8.84-8.84L433.1 405q1.83-2.17 3.61-4.4l25.82 .91a7.23 7.23 0 0 0 6.37-3.26 7.35 7.35 0 0 0 .58-7.13L458.8 367.7c.94-1.7 1.83-3.43 2.73-5.15l25.42-4.15a7.35 7.35 0 0 0 4.79-11.54l-15-20.83c.59-1.87 1.13-3.76 1.67-5.65l24-9a7.35 7.35 0 0 0 2.44-12.25l-18.72-17.5c.21-1.95 .38-3.91 .55-5.87l21.82-13.51a7.35 7.35 0 0 0 0-12.5zm-151 129.1A13.91 13.91 0 0 0 341 389.5l-7.64 35.67A187.5 187.5 0 0 1 177 424.4l-7.64-35.66a13.87 13.87 0 0 0 -16.46-10.68l-31.51 6.76a187.4 187.4 0 0 1 -16.26-19.21H258.3c1.72 0 2.89-.29 2.89-1.91V309.5c0-1.57-1.17-1.91-2.89-1.91H213.5l.05-34.35H262c4.41 0 23.66 1.28 29.79 25.87 1.91 7.55 6.17 32.14 9.06 40 2.89 8.82 14.6 26.46 27.1 26.46H407a187.3 187.3 0 0 1 -17.34 20.09zm25.77 34.49A15.24 15.24 0 1 1 368 398.1h.44A15.23 15.23 0 0 1 383.2 413.3zm-225.6-.68a15.24 15.24 0 1 1 -15.25-15.25h.45A15.25 15.25 0 0 1 157.6 412.6zM69.57 234.1l32.83-14.6a13.88 13.88 0 0 0 7.06-18.33L102.7 186h26.56V305.7H75.65A187.6 187.6 0 0 1 69.57 234.1zM58.31 198.1a15.24 15.24 0 0 1 15.23-15.25H74a15.24 15.24 0 1 1 -15.67 15.24zm155.2 24.49 .05-35.32h63.26c3.28 0 23.07 3.77 23.07 18.62 0 12.29-15.19 16.7-27.68 16.7zM399 306.7c-9.8 1.13-20.63-4.12-22-10.09-5.78-32.49-15.39-39.4-30.57-51.4 18.86-11.95 38.46-29.64 38.46-53.26 0-25.52-17.49-41.59-29.4-49.48-16.76-11-35.28-13.23-40.27-13.23H116.3A187.5 187.5 0 0 1 221.2 70.06l23.47 24.6a13.82 13.82 0 0 0 19.6 .44l26.26-25a187.5 187.5 0 0 1 128.4 91.43l-18 40.57A14 14 0 0 0 408 220.4l34.59 15.33a187.1 187.1 0 0 1 .4 32.54H423.7c-1.91 0-2.69 1.27-2.69 3.13v8.82C421 301 409.3 305.6 399 306.7zM240 60.21A15.24 15.24 0 0 1 255.2 45h.45A15.24 15.24 0 1 1 240 60.21zM436.8 214a15.24 15.24 0 1 1 0-30.48h.44a15.24 15.24 0 0 1 -.44 30.48z',
			),
		),
		'label'             => __( 'Rust', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	's'                                      => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 384,
				'height' => 512,
				'path'   => 'M349.9 379.1c-6.281 36.63-25.89 65.02-56.69 82.11c-24.91 13.83-54.08 18.98-83.73 18.98c-61.86 0-125.8-22.42-157.5-35.38c-16.38-6.672-24.22-25.34-17.55-41.7c6.641-16.36 25.27-24.28 41.7-17.55c77.56 31.64 150.6 39.39 186.1 19.69c13.83-7.672 21.67-19.42 24.69-36.98c7.25-42.31-18.2-56.75-103.7-81.38C112.6 266.6 15.98 238.7 34.11 133.2c5.484-32 23.64-59.36 51.14-77.02c45.59-29.33 115-31.87 206.4-7.688c17.09 4.531 27.27 22.05 22.75 39.13s-22.06 27.23-39.13 22.75C184 86.17 140.4 96.81 119.8 110c-12.55 8.062-20.17 19.5-22.66 34c-7.266 42.31 18.19 56.75 103.7 81.38C271.4 245.7 368 273.5 349.9 379.1z',
			),
		),
		'label'             => __( 'S', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'education' ),
	),
	'sack-dollar'                            => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M320 96H192L144.6 24.88C137.5 14.24 145.1 0 157.9 0H354.1C366.9 0 374.5 14.24 367.4 24.88L320 96zM192 128H320C323.8 130.5 328.1 133.3 332.1 136.4C389.7 172.7 512 250.9 512 416C512 469 469 512 416 512H96C42.98 512 0 469 0 416C0 250.9 122.3 172.7 179 136.4C183.9 133.3 188.2 130.5 192 128V128zM276.1 224C276.1 212.9 267.1 203.9 255.1 203.9C244.9 203.9 235.9 212.9 235.9 224V230C230.3 231.2 224.1 232.9 220 235.1C205.1 241.9 192.1 254.5 188.9 272.8C187.1 283 188.1 292.9 192.3 301.8C196.5 310.6 203 316.8 209.6 321.3C221.2 329.2 236.5 333.8 248.2 337.3L250.4 337.9C264.4 342.2 273.8 345.3 279.7 349.6C282.2 351.4 283.1 352.8 283.4 353.7C283.8 354.5 284.4 356.3 283.7 360.3C283.1 363.8 281.2 366.8 275.7 369.1C269.6 371.7 259.7 373 246.9 371C240.9 370 230.2 366.4 220.7 363.2C218.5 362.4 216.3 361.7 214.3 361C203.8 357.5 192.5 363.2 189 373.7C185.5 384.2 191.2 395.5 201.7 398.1C202.9 399.4 204.4 399.9 206.1 400.5C213.1 403.2 226.4 407.4 235.9 409.6V416C235.9 427.1 244.9 436.1 255.1 436.1C267.1 436.1 276.1 427.1 276.1 416V410.5C281.4 409.5 286.6 407.1 291.4 405.9C307.2 399.2 319.8 386.2 323.1 367.2C324.9 356.8 324.1 346.8 320.1 337.7C316.2 328.7 309.9 322.1 303.2 317.3C291.1 308.4 274.9 303.6 262.8 299.9L261.1 299.7C247.8 295.4 238.2 292.4 232.1 288.2C229.5 286.4 228.7 285.2 228.5 284.7C228.3 284.3 227.7 283.1 228.3 279.7C228.7 277.7 230.2 274.4 236.5 271.6C242.1 268.7 252.9 267.1 265.1 268.1C269.5 269.7 283 272.3 286.9 273.3C297.5 276.2 308.5 269.8 311.3 259.1C314.2 248.5 307.8 237.5 297.1 234.7C292.7 233.5 282.7 231.5 276.1 230.3L276.1 224z',
			),
		),
		'label'             => __( 'Sack Dollar', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'sack-xmark'                             => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M144.6 24.88C137.5 14.24 145.1 0 157.9 0H354.1C366.9 0 374.5 14.24 367.4 24.88L320 96H192L144.6 24.88zM332.1 136.4C389.7 172.7 512 250.9 512 416C512 469 469 512 416 512H96C42.98 512 0 469 0 416C0 250.9 122.3 172.7 179 136.4C183.9 133.3 188.2 130.5 192 128H320C323.8 130.5 328.1 133.3 332.1 136.4V136.4zM336.1 288.1C346.3 279.6 346.3 264.4 336.1 255C327.6 245.7 312.4 245.7 303 255L256 302.1L208.1 255C199.6 245.7 184.4 245.7 175 255C165.7 264.4 165.7 279.6 175 288.1L222.1 336L175 383C165.7 392.4 165.7 407.6 175 416.1C184.4 426.3 199.6 426.3 208.1 416.1L256 369.9L303 416.1C312.4 426.3 327.6 426.3 336.1 416.1C346.3 407.6 346.3 392.4 336.1 383L289.9 336L336.1 288.1z',
			),
		),
		'label'             => __( 'Sack Xmark', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business' ),
	),
	'safari'                                 => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 512,
				'height' => 512,
				'path'   => 'M274.7 274.7l-37.38-37.38L166 346zM256 8C119 8 8 119 8 256S119 504 256 504 504 393 504 256 393 8 256 8zM411.9 182.8l14.78-6.13A8 8 0 0 1 437.1 181h0a8 8 0 0 1 -4.33 10.46L418 197.6a8 8 0 0 1 -10.45-4.33h0A8 8 0 0 1 411.9 182.8zM314.4 94l6.12-14.78A8 8 0 0 1 331 74.92h0a8 8 0 0 1 4.33 10.45l-6.13 14.78a8 8 0 0 1 -10.45 4.33h0A8 8 0 0 1 314.4 94zM256 60h0a8 8 0 0 1 8 8V84a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V68A8 8 0 0 1 256 60zM181 74.92a8 8 0 0 1 10.46 4.33L197.6 94a8 8 0 1 1 -14.78 6.12l-6.13-14.78A8 8 0 0 1 181 74.92zm-63.58 42.49h0a8 8 0 0 1 11.31 0L140 128.7A8 8 0 0 1 140 140h0a8 8 0 0 1 -11.31 0l-11.31-11.31A8 8 0 0 1 117.4 117.4zM60 256h0a8 8 0 0 1 8-8H84a8 8 0 0 1 8 8h0a8 8 0 0 1 -8 8H68A8 8 0 0 1 60 256zm40.15 73.21-14.78 6.13A8 8 0 0 1 74.92 331h0a8 8 0 0 1 4.33-10.46L94 314.4a8 8 0 0 1 10.45 4.33h0A8 8 0 0 1 100.2 329.2zm4.33-136h0A8 8 0 0 1 94 197.6l-14.78-6.12A8 8 0 0 1 74.92 181h0a8 8 0 0 1 10.45-4.33l14.78 6.13A8 8 0 0 1 104.5 193.2zM197.6 418l-6.12 14.78a8 8 0 0 1 -14.79-6.12l6.13-14.78A8 8 0 1 1 197.6 418zM264 444a8 8 0 0 1 -8 8h0a8 8 0 0 1 -8-8V428a8 8 0 0 1 8-8h0a8 8 0 0 1 8 8zm67-6.92h0a8 8 0 0 1 -10.46-4.33L314.4 418a8 8 0 0 1 4.33-10.45h0a8 8 0 0 1 10.45 4.33l6.13 14.78A8 8 0 0 1 331 437.1zm63.58-42.49h0a8 8 0 0 1 -11.31 0L372 383.3A8 8 0 0 1 372 372h0a8 8 0 0 1 11.31 0l11.31 11.31A8 8 0 0 1 394.6 394.6zM286.3 286.3 110.3 401.7 225.8 225.8 401.7 110.3zM437.1 331h0a8 8 0 0 1 -10.45 4.33l-14.78-6.13a8 8 0 0 1 -4.33-10.45h0A8 8 0 0 1 418 314.4l14.78 6.12A8 8 0 0 1 437.1 331zM444 264H428a8 8 0 0 1 -8-8h0a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8h0A8 8 0 0 1 444 264z',
			),
		),
		'label'             => __( 'Safari', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sailboat'                               => array(
		'svg'               => array(
			'solid' => array(
				'width'  => 576,
				'height' => 512,
				'path'   => 'M256 16C256 9.018 260.5 2.841 267.2 .7414C273.9-1.358 281.1 1.105 285.1 6.826L509.1 326.8C512.5 331.7 512.9 338.1 510.2 343.4C507.4 348.7 501.1 352 496 352H272C263.2 352 256 344.8 256 336V16zM212.1 96.54C219.1 98.4 224 104.7 224 112V336C224 344.8 216.8 352 208 352H80C74.3 352 69.02 348.1 66.16 344C63.3 339.1 63.28 333 66.11 328.1L194.1 104.1C197.7 97.76 205.1 94.68 212.1 96.54V96.54zM5.718 404.3C2.848 394.1 10.52 384 21.12 384H554.9C565.5 384 573.2 394.1 570.3 404.3L566.3 418.7C550.7 473.9 500.4 512 443 512H132.1C75.62 512 25.27 473.9 9.747 418.7L5.718 404.3z',
			),
		),
		'label'             => __( 'Sailboat', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'business', 'travel' ),
	),
	'salesforce'                             => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M248.9 245.6h-26.35c.69-5.16 3.32-14.12 13.64-14.12 6.75 0 11.97 3.82 12.71 14.12zm136.7-13.88c-.47 0-14.11-1.77-14.11 20s13.63 20 14.11 20c13 0 14.11-13.54 14.11-20 0-21.76-13.66-20-14.11-20zm-243.2 23.76a8.63 8.63 0 0 0 -3.29 7.29c0 4.78 2.08 6.05 3.29 7.05 4.7 3.7 15.07 2.12 20.93 .95v-16.94c-5.32-1.07-16.73-1.96-20.93 1.65zM640 232c0 87.58-80 154.4-165.4 136.4-18.37 33-70.73 70.75-132.2 41.63-41.16 96.05-177.9 92.18-213.8-5.17C8.91 428.8-50.19 266.5 53.36 205.6 18.61 126.2 76 32 167.7 32a124.2 124.2 0 0 1 98.56 48.7c20.7-21.4 49.4-34.81 81.15-34.81 42.34 0 79 23.52 98.8 58.57C539 63.78 640 132.7 640 232zm-519.5 31.8c0-11.76-11.69-15.17-17.87-17.17-5.27-2.11-13.41-3.51-13.41-8.94 0-9.46 17-6.66 25.17-2.12 0 0 1.17 .71 1.64-.47 .24-.7 2.36-6.58 2.59-7.29a1.13 1.13 0 0 0 -.7-1.41c-12.33-7.63-40.7-8.51-40.7 12.7 0 12.46 11.49 15.44 17.88 17.17 4.72 1.58 13.17 3 13.17 8.7 0 4-3.53 7.06-9.17 7.06a31.76 31.76 0 0 1 -19-6.35c-.47-.23-1.42-.71-1.65 .71l-2.4 7.47c-.47 .94 .23 1.18 .23 1.41 1.75 1.4 10.3 6.59 22.82 6.59 13.17 0 21.4-7.06 21.4-18.11zm32-42.58c-10.13 0-18.66 3.17-21.4 5.18a1 1 0 0 0 -.24 1.41l2.59 7.06a1 1 0 0 0 1.18 .7c.65 0 6.8-4 16.93-4 4 0 7.06 .71 9.18 2.36 3.6 2.8 3.06 8.29 3.06 10.58-4.79-.3-19.11-3.44-29.41 3.76a16.92 16.92 0 0 0 -7.34 14.54c0 5.9 1.51 10.4 6.59 14.35 12.24 8.16 36.28 2 38.1 1.41 1.58-.32 3.53-.66 3.53-1.88v-33.88c.04-4.61 .32-21.64-22.78-21.64zM199 200.2a1.11 1.11 0 0 0 -1.18-1.18H188a1.11 1.11 0 0 0 -1.17 1.18v79a1.11 1.11 0 0 0 1.17 1.18h9.88a1.11 1.11 0 0 0 1.18-1.18zm55.75 28.93c-2.1-2.31-6.79-7.53-17.65-7.53-3.51 0-14.16 .23-20.7 8.94-6.35 7.63-6.58 18.11-6.58 21.41 0 3.12 .15 14.26 7.06 21.17 2.64 2.91 9.06 8.23 22.81 8.23 10.82 0 16.47-2.35 18.58-3.76 .47-.24 .71-.71 .24-1.88l-2.35-6.83a1.26 1.26 0 0 0 -1.41-.7c-2.59 .94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.94-16.7h37.17a1.23 1.23 0 0 0 1.17-.94c-.29 0 2.07-14.7-6.09-24.23zm36.69 52.69c13.17 0 21.41-7.06 21.41-18.11 0-11.76-11.7-15.17-17.88-17.17-4.14-1.66-13.41-3.38-13.41-8.94 0-3.76 3.29-6.35 8.47-6.35a38.11 38.11 0 0 1 16.7 4.23s1.18 .71 1.65-.47c.23-.7 2.35-6.58 2.58-7.29a1.13 1.13 0 0 0 -.7-1.41c-7.91-4.9-16.74-4.94-20.23-4.94-12 0-20.46 7.29-20.46 17.64 0 12.46 11.48 15.44 17.87 17.17 6.11 2 13.17 3.26 13.17 8.7 0 4-3.52 7.06-9.17 7.06a31.8 31.8 0 0 1 -19-6.35 1 1 0 0 0 -1.65 .71l-2.35 7.52c-.47 .94 .23 1.18 .23 1.41 1.72 1.4 10.33 6.59 22.79 6.59zM357.1 224c0-.71-.24-1.18-1.18-1.18h-11.76c0-.14 .94-8.94 4.47-12.47 4.16-4.15 11.76-1.64 12-1.64 1.17 .47 1.41 0 1.64-.47l2.83-7.77c.7-.94 0-1.17-.24-1.41-5.09-2-17.35-2.87-24.46 4.24-5.48 5.48-7 13.92-8 19.52h-8.47a1.28 1.28 0 0 0 -1.17 1.18l-1.42 7.76c0 .7 .24 1.17 1.18 1.17h8.23c-8.51 47.9-8.75 50.21-10.35 55.52-1.08 3.62-3.29 6.9-5.88 7.76-.09 0-3.88 1.68-9.64-.24 0 0-.94-.47-1.41 .71-.24 .71-2.59 6.82-2.83 7.53s0 1.41 .47 1.41c5.11 2 13 1.77 17.88 0 6.28-2.28 9.72-7.89 11.53-12.94 2.75-7.71 2.81-9.79 11.76-59.74h12.23a1.29 1.29 0 0 0 1.18-1.18zm53.39 16c-.56-1.68-5.1-18.11-25.17-18.11-15.25 0-23 10-25.16 18.11-1 3-3.18 14 0 23.52 .09 .3 4.41 18.12 25.16 18.12 14.95 0 22.9-9.61 25.17-18.12 3.21-9.61 1.01-20.52 0-23.52zm45.4-16.7c-5-1.65-16.62-1.9-22.11 5.41v-4.47a1.11 1.11 0 0 0 -1.18-1.17h-9.4a1.11 1.11 0 0 0 -1.18 1.17v55.28a1.12 1.12 0 0 0 1.18 1.18h9.64a1.12 1.12 0 0 0 1.18-1.18v-27.77c0-2.91 .05-11.37 4.46-15.05 4.9-4.9 12-3.36 13.41-3.06a1.57 1.57 0 0 0 1.41-.94 74 74 0 0 0 3.06-8 1.16 1.16 0 0 0 -.47-1.41zm46.81 54.1l-2.12-7.29c-.47-1.18-1.41-.71-1.41-.71-4.23 1.82-10.15 1.89-11.29 1.89-4.64 0-17.17-1.13-17.17-19.76 0-6.23 1.85-19.76 16.47-19.76a34.85 34.85 0 0 1 11.52 1.65s.94 .47 1.18-.71c.94-2.59 1.64-4.47 2.59-7.53 .23-.94-.47-1.17-.71-1.17-11.59-3.87-22.34-2.53-27.76 0-1.59 .74-16.23 6.49-16.23 27.52 0 2.9-.58 30.11 28.94 30.11a44.45 44.45 0 0 0 15.52-2.83 1.3 1.3 0 0 0 .47-1.42zm53.87-39.52c-.8-3-5.37-16.23-22.35-16.23-16 0-23.52 10.11-25.64 18.59a38.58 38.58 0 0 0 -1.65 11.76c0 25.87 18.84 29.4 29.88 29.4 10.82 0 16.46-2.35 18.58-3.76 .47-.24 .71-.71 .24-1.88l-2.36-6.83a1.26 1.26 0 0 0 -1.41-.7c-2.59 .94-6.35 2.82-15.29 2.82-17.42 0-16.85-14.74-16.93-16.7h37.16a1.25 1.25 0 0 0 1.18-.94c-.24-.01 .94-7.07-1.41-15.54zm-23.29-6.35c-10.33 0-13 9-13.64 14.12H546c-.88-11.92-7.62-14.13-12.73-14.13z',
			),
		),
		'label'             => __( 'Salesforce', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
	'sass'                                   => array(
		'svg'               => array(
			'brands' => array(
				'width'  => 640,
				'height' => 512,
				'path'   => 'M301.8 378.9c-.3 .6-.6 1.08 0 0zm249.1-87a131.2 131.2 0 0 0 -58 13.5c-5.9-11.9-12-22.3-13-30.1-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.3-6.7-24 2.5-25.29 5.9a122.8 122.8 0 0 0 -5.3 19.1c-2.3 11.7-25.79 53.5-39.09 75.3-4.4-8.5-8.1-16-8.9-22-1.2-9.1-2.5-14.5-1.1-25.3s7.7-26.1 7.6-27.2-1.4-6.6-14.29-6.7-24 2.5-25.3 5.9-2.7 11.4-5.3 19.1-33.89 77.3-42.08 95.4c-4.2 9.2-7.8 16.6-10.4 21.6-.4 .8-.7 1.3-.9 1.7 .3-.5 .5-1 .5-.8-2.2 4.3-3.5 6.7-3.5 6.7v.1c-1.7 3.2-3.6 6.1-4.5 6.1-.6 0-1.9-8.4 .3-19.9 4.7-24.2 15.8-61.8 15.7-63.1-.1-.7 2.1-7.2-7.3-10.7-9.1-3.3-12.4 2.2-13.2 2.2s-1.4 2-1.4 2 10.1-42.4-19.39-42.4c-18.4 0-44 20.2-56.58 38.5-7.9 4.3-25 13.6-43 23.5-6.9 3.8-14 7.7-20.7 11.4-.5-.5-.9-1-1.4-1.5-35.79-38.2-101.9-65.2-99.07-116.5 1-18.7 7.5-67.8 127.1-127.4 98-48.8 176.4-35.4 189.8-5.6 19.4 42.5-41.89 121.6-143.7 133-38.79 4.3-59.18-10.7-64.28-16.3-5.3-5.9-6.1-6.2-8.1-5.1-3.3 1.8-1.2 7 0 10.1 3 7.9 15.5 21.9 36.79 28.9 18.7 6.1 64.18 9.5 119.2-11.8 61.78-23.8 109.9-90.1 95.77-145.6C386.5 18.32 293-.18 204.6 31.22c-52.69 18.7-109.7 48.1-150.7 86.4-48.69 45.6-56.48 85.3-53.28 101.9 11.39 58.9 92.57 97.3 125.1 125.7-1.6 .9-3.1 1.7-4.5 2.5-16.29 8.1-78.18 40.5-93.67 74.7-17.5 38.8 2.9 66.6 16.29 70.4 41.79 11.6 84.58-9.3 107.6-43.6s20.2-79.1 9.6-99.5c-.1-.3-.3-.5-.4-.8 4.2-2.5 8.5-5 12.8-7.5 8.29-4.9 16.39-9.4 23.49-13.3-4 10.8-6.9 23.8-8.4 42.6-1.8 22 7.3 50.5 19.1 61.7 5.2 4.9 11.49 5 15.39 5 13.8 0 20-11.4 26.89-25 8.5-16.6 16-35.9 16-35.9s-9.4 52.2 16.3 52.2c9.39 0 18.79-12.1 23-18.3v.1s.2-.4 .7-1.2c1-1.5 1.5-2.4 1.5-2.4v-.3c3.8-6.5 12.1-21.4 24.59-46 16.2-31.8 31.69-71.5 31.69-71.5a201.2 201.2 0 0 0 6.2 25.8c2.8 9.5 8.7 19.9 13.4 30-3.8 5.2-6.1 8.2-6.1 8.2a.31 .31 0 0 0 .1 .2c-3 4-6.4 8.3-9.9 12.5-12.79 15.2-28 32.6-30 37.6-2.4 5.9-1.8 10.3 2.8 13.7 3.4 2.6 9.4 3 15.69 2.5 11.5-.8 19.6-3.6 23.5-5.4a82.2 82.2 0 0 0 20.19-10.6c12.5-9.2 20.1-22.4 19.4-39.8-.4-9.6-3.5-19.2-7.3-28.2 1.1-1.6 2.3-3.3 3.4-5C434.8 301.7 450.1 270 450.1 270a201.2 201.2 0 0 0 6.2 25.8c2.4 8.1 7.09 17 11.39 25.7-18.59 15.1-30.09 32.6-34.09 44.1-7.4 21.3-1.6 30.9 9.3 33.1 4.9 1 11.9-1.3 17.1-3.5a79.46 79.46 0 0 0 21.59-11.1c12.5-9.2 24.59-22.1 23.79-39.6-.3-7.9-2.5-15.8-5.4-23.4 15.7-6.6 36.09-10.2 62.09-7.2 55.68 6.5 66.58 41.3 64.48 55.8s-13.8 22.6-17.7 25-5.1 3.3-4.8 5.1c.5 2.6 2.3 2.5 5.6 1.9 4.6-.8 29.19-11.8 30.29-38.7 1.6-34-31.09-71.4-89-71.1zm-429.2 144.7c-18.39 20.1-44.19 27.7-55.28 21.3C54.61 451 59.31 421.4 82 400c13.8-13 31.59-25 43.39-32.4 2.7-1.6 6.6-4 11.4-6.9 .8-.5 1.2-.7 1.2-.7 .9-.6 1.9-1.1 2.9-1.7 8.29 30.4 .3 57.2-19.1 78.3zm134.4-91.4c-6.4 15.7-19.89 55.7-28.09 53.6-7-1.8-11.3-32.3-1.4-62.3 5-15.1 15.6-33.1 21.9-40.1 10.09-11.3 21.19-14.9 23.79-10.4 3.5 5.9-12.2 49.4-16.2 59.2zm111 53c-2.7 1.4-5.2 2.3-6.4 1.6-.9-.5 1.1-2.4 1.1-2.4s13.9-14.9 19.4-21.7c3.2-4 6.9-8.7 10.89-13.9 0 .5 .1 1 .1 1.6-.13 17.9-17.32 30-25.12 34.8zm85.58-19.5c-2-1.4-1.7-6.1 5-20.7 2.6-5.7 8.59-15.3 19-24.5a36.18 36.18 0 0 1 1.9 10.8c-.1 22.5-16.2 30.9-25.89 34.4z',
			),
		),
		'label'             => __( 'Sass', 'ultimate-addons-for-gutenberg' ),
		'custom_categories' => array( 'brands', 'brands', 'social' ),
	),
);
PK�][cyqCttZultimate-addons-for-gutenberg/blocks-config/uagb-controls/getUAGEditorStateLocalStorage.jsnu�[���const getUAGEditorStateLocalStorage = ( key = false ) => {
	if ( ! window.localStorage ) {
		return null;
	}

	if ( ! key ) {
		return localStorage;
	}

	const uagLastOpenedSettingState = localStorage.getItem( key );

	if ( uagLastOpenedSettingState ) {
		return JSON.parse( uagLastOpenedSettingState );
	}

	return null;
};

export default getUAGEditorStateLocalStorage;
PK�][�d��f!f!Rultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateBackgroundCSS.jsnu�[���import generateCSSUnit from '@Controls/generateCSSUnit';

const generateBackgroundCSS = ( backgroundAttributes, pseudoElementOverlay = {} ) => {
	const {
		backgroundType,
		backgroundImage,
		backgroundColor,
		gradientValue,
		backgroundRepeat,
		backgroundPosition,
		backgroundSize,
		backgroundAttachment,
		backgroundCustomSize,
		backgroundCustomSizeType,
		backgroundImageColor,
		overlayType,
		overlayOpacity,
		backgroundVideoColor,
		backgroundVideo,
		customPosition,
		centralizedPosition,
		xPosition,
		xPositionType,
		yPosition,
		yPositionType,
		gradientColor1,
		gradientColor2,
		gradientLocation1,
		gradientLocation2,
		gradientType,
		gradientAngle,
		selectGradient,

		//image overlay
		backgroundOverlayImage,
		backgroundOverlayRepeat,
		backgroundOverlayPosition,
		backgroundOverlaySize,
		backgroundOverlayAttachment,
		backgroundCustomOverlaySize,
		backgroundCustomOverlaySizeType,
		customOverlayPosition,
		xPositionOverlay,
		xPositionOverlayType,
		yPositionOverlay,
		yPositionOverlayType,
		blendMode,
		globalBlockStyleId,
	} = backgroundAttributes;

	const bgCSS = {};
	const bgOverlayCSS = {};
	
	const xPositionValue = isNaN( xPosition ) || '' === xPosition ? 0 : xPosition;
	const xPositionTypeValue = undefined !== xPositionType ? xPositionType : '';
	const yPositionValue = isNaN( yPosition ) || '' === yPosition ? 0 : yPosition;
	const yPositionTypeValue = undefined !== yPositionType ? yPositionType : '';

	const xPositionOverlayValue = ( 'number' !== typeof xPositionOverlay ) ? 0 : xPositionOverlay;
	const xPositionOverlayTypeValue = undefined !== xPositionOverlayType ? xPositionOverlayType : '';
	const yPositionOverlayValue = ( 'number' !== typeof yPositionOverlay ) ? 0 : yPositionOverlay;
	const yPositionOverlayTypeValue = undefined !== yPositionOverlayType ? yPositionOverlayType : '';

	const customXPosition = generateCSSUnit( xPositionValue, xPositionTypeValue );
	const customYPosition = generateCSSUnit( yPositionValue, yPositionTypeValue );

	// Handle the Overlay Opacity.
	const applyOverlayOpacity = () => {
		if ( undefined !== overlayOpacity && '' !== overlayOpacity ) {
			bgOverlayCSS.opacity = `${ overlayOpacity }`;
		}
	};

	// Handle the Gradient Properties.
	let gradient;

	switch ( selectGradient ) {
		case 'basic':
			gradient = gradientValue;
			break;
		case 'advanced':
			switch ( gradientType ) {
				case 'linear':
					gradient = `linear-gradient(${ gradientAngle }deg, ${ gradientColor1 } ${ gradientLocation1 }%, ${ gradientColor2 } ${ gradientLocation2 }%)`;
					break;
				case 'radial':
					gradient = `radial-gradient( at center center, ${ gradientColor1 } ${ gradientLocation1 }%, ${ gradientColor2 } ${ gradientLocation2 }%)`;
					break;
				default:
					gradient = '';
					break;
			}
			break;
		default:
			gradient = '';
			break;
	}

	// Handle the Background Size Properties.
	let backgroundSizeValue = backgroundSize;

	if ( 'custom' === backgroundSize ) {
		backgroundSizeValue = backgroundCustomSize + backgroundCustomSizeType;
	}

	// Handle the Background Properties along with Overlay if Needed.
	if ( undefined !== backgroundType && '' !== backgroundType ) {
		if ( 'color' === backgroundType ) {
			if (
				'' !== backgroundColor &&
				undefined !== backgroundColor &&
				'unset' !== backgroundColor &&
				backgroundImage?.url
			) {
				bgCSS[ 'background-image' ] =
					'linear-gradient(to right, ' +
					backgroundColor +
					', ' +
					backgroundColor +
					'), url(' +
					backgroundImage?.url +
					');';
			} else if ( undefined === backgroundImage || '' === backgroundImage || 'unset' === backgroundImage ) {
				bgCSS[ 'background-color' ] = backgroundColor;
			}
			// globalBlockStyleId
			if ( globalBlockStyleId ) {
				// We have added overlay for container block only that's why we are checking for pseudoElementOverlay?.blockName in future we will implement overlay for all blocks then we will remove this condition.
				bgCSS[ 'background-image' ] = `unset;`;
			} 
		} else if ( 'image' === backgroundType ) {
			if (
				'color' === overlayType &&
				'' !== backgroundImageColor &&
				undefined !== backgroundImageColor &&
				'unset' !== backgroundImageColor &&
				backgroundImage?.url
			) {
				if ( pseudoElementOverlay?.hasPseudo ) {
					bgCSS[ 'background-image' ] = `url(${ backgroundImage.url });`;
					bgOverlayCSS.background = backgroundImageColor;
					applyOverlayOpacity();
				} else if ( 'container' === pseudoElementOverlay?.blockName ) {
					// We have added overlay for container block only that's why we are checking for pseudoElementOverlay?.blockName in future we will implement overlay for all blocks then we will remove this condition.
					bgCSS[ 'background-image' ] = `url(${ backgroundImage.url });`;
				} else {
					bgCSS[ 'background-image' ] =
					'linear-gradient(to right, ' +
					backgroundImageColor +
					', ' +
					backgroundImageColor +
					'), url(' +
					backgroundImage.url +
					');';
				}
			}

			if (
				'gradient' === overlayType &&
				gradient &&
				backgroundImage?.url
			) {
				if ( pseudoElementOverlay?.hasPseudo ) {
					bgCSS[ 'background-image' ] = `url(${ backgroundImage.url });`;
					bgOverlayCSS[ 'background-image' ] = gradient;
					applyOverlayOpacity();
				} else if ( 'container' === pseudoElementOverlay?.blockName ) {
					// We have added overlay for container block only that's why we are checking for pseudoElementOverlay?.blockName in future we will implement overlay for all blocks then we will remove this condition.
					bgCSS[ 'background-image' ] = `url(${ backgroundImage.url });`;
				}  else {
					bgCSS[ 'background-image' ] = gradient + ', url(' + backgroundImage?.url + ');';
				}
			}

			if ( ['image', 'none', ''].includes( overlayType ) && backgroundImage?.url ) {
				bgCSS[ 'background-image' ] = 'url(' + backgroundImage?.url + ');';
			}

			bgCSS[ 'background-repeat' ] = backgroundRepeat;

			if ( 'custom' !== customPosition && backgroundPosition?.x && backgroundPosition?.y ) {
				bgCSS[ 'background-position' ] = `${ backgroundPosition?.x * 100 }% ${ backgroundPosition?.y * 100 }%`;
			} else if ( 'custom' === customPosition ) {
				bgCSS[
					'background-position'
				] = centralizedPosition === false ? `${ customXPosition } ${ customYPosition }` : `calc(50% + ${ customXPosition }) calc(50% + ${ customYPosition })` ;
			}

			bgCSS[ 'background-size' ] = backgroundSizeValue;
			bgCSS[ 'background-attachment' ] = backgroundAttachment;
			bgCSS[ 'background-clip' ] = 'padding-box';
		} else if ( 'gradient' === backgroundType ) {
			if ( '' !== gradient && 'unset' !== gradient ) {
				bgCSS.background = gradient;
				bgCSS[ 'background-clip' ] = 'padding-box';
			}
		} else if ( 'video' === backgroundType ) {
			if (
				'color' === overlayType &&
				'' !== backgroundVideo &&
				'' !== backgroundVideoColor &&
				undefined !== backgroundVideoColor &&
				'unset' !== backgroundVideoColor
			) {
				bgCSS.background = backgroundVideoColor;
			}
			if ( 'gradient' === overlayType && '' !== backgroundVideo && backgroundVideo && gradient ) {
				bgCSS[ 'background-image' ] = gradient + ';';
			}
		}
	}

	//Handle background overlay image css
	if ( 'image' === overlayType ) {
		if ( '' !== backgroundOverlayImage && backgroundOverlayImage?.url ) {
			bgOverlayCSS[ 'background-image' ] = `url(${ backgroundOverlayImage.url } );`;
		}

		bgOverlayCSS[ 'background-repeat' ] = backgroundOverlayRepeat;

		if ( 'custom' !== customOverlayPosition && backgroundOverlayPosition?.x && backgroundOverlayPosition?.y ) {
			bgOverlayCSS[ 'background-position' ] = `${ backgroundOverlayPosition.x * 100 }% ${
				backgroundOverlayPosition.y * 100
			}%`;
		} else if ( 'custom' === customOverlayPosition ) {
			bgOverlayCSS[
				'background-position'
			] = `${ xPositionOverlayValue }${ xPositionOverlayTypeValue } ${ yPositionOverlayValue }${ yPositionOverlayTypeValue }`;
		}

		let backgroundOverlaySizeValue = backgroundOverlaySize;

		if ( 'custom' === backgroundOverlaySize ) {
			backgroundOverlaySizeValue = backgroundCustomOverlaySize + backgroundCustomOverlaySizeType;
		}

		bgOverlayCSS[ 'background-size' ] = backgroundOverlaySizeValue;
		bgOverlayCSS[ 'background-attachment' ] = backgroundOverlayAttachment;
		bgOverlayCSS[ 'background-clip' ] = 'padding-box';
		bgOverlayCSS[ 'mix-blend-mode' ] = blendMode;
		bgOverlayCSS.opacity = overlayOpacity;
	}

	return pseudoElementOverlay?.forStyleSheet ? bgOverlayCSS : bgCSS;
}

export default generateBackgroundCSS;
PK�][�v����Lultimate-addons-for-gutenberg/blocks-config/uagb-controls/generateSpacing.jsnu�[���/* eslint-disable no-nested-ternary */
import generateCSSUnit from './generateCSSUnit';

export default function generateSpacing( unit, top, right = NaN, bottom = NaN, left = NaN ) {
	return ! Number.isNaN( right )
		? ! Number.isNaN( bottom )
			? ! Number.isNaN( left )
				? `${ generateCSSUnit( top, unit ) } ${ generateCSSUnit( right, unit ) } ${ generateCSSUnit(
						bottom,
						unit
				  ) } ${ generateCSSUnit( left, unit ) }`
				: `${ generateCSSUnit( top, unit ) } ${ generateCSSUnit( right, unit ) } ${ generateCSSUnit(
						bottom,
						unit
				  ) }`
			: `${ generateCSSUnit( top, unit ) } ${ generateCSSUnit( right, unit ) }`
		: generateCSSUnit( top, unit );
}
PK�][u$��nnGultimate-addons-for-gutenberg/blocks-config/uagb-controls/renderIcon.jsnu�[���/**
 * Set inline CSS class.
 *
 * @param {Object} props - The block object.
 * @return {Array} The inline CSS class.
 */

import parseSVG from './parseIcon';
function renderSVG( svg, setAttributes = false, extraProps = {} ) {
	svg = parseSVG( svg );
	let fontAwesome;
	// Load Polyfiller Array if needed.
	if ( 0 !== uagb_blocks_info.font_awesome_5_polyfill.length ) {
		fontAwesome = uagb_blocks_info.uagb_svg_icons[ svg ];
		if ( ! fontAwesome ) {
			fontAwesome = uagb_blocks_info.uagb_svg_icons[ uagb_blocks_info.font_awesome_5_polyfill?.[ svg ] ];
		}
	}

	if ( ! fontAwesome ) {
		return null;
	}
	
	const fontAwesomeSvg = fontAwesome.svg?.brands ? fontAwesome.svg.brands : fontAwesome.svg.solid;

	const viewBox = `0 0 ${fontAwesomeSvg.width} ${fontAwesomeSvg.height}`;
	const path = fontAwesomeSvg.path;

	let align = null;

	switch ( svg ) {
		case 'align-center':
			align = { fillRule:'evenodd', clipRule:'evenodd', d : 'M4 2H14V0H4V2ZM0 7H18V5H0V7ZM4 12H14V10H4V12Z' };
			break;
		case 'align-left':
			align = { fillRule:'evenodd', clipRule:'evenodd', d : 'M10 2H0V0H10V2ZM18 7H0V5H18V7ZM10 12H0V10H10V12Z' };
			break;
		case 'align-right':
			align = { fillRule:'evenodd', clipRule:'evenodd', d : 'M8 2H18V0H8V2ZM0 7H18V5H0V7ZM8 12H18V10H8V12Z' };
			break;
		case 'align-justify':
			align = { d : 'M0 0H18V2H0V0ZM0 5.00001H18V7.00001H0V5.00001ZM0 10H18V12H0V10Z' };
			break;
	}

	if ( align ) {
		return <svg width="18" height="12" viewBox="0 0 18 12" xmlns="http://www.w3.org/2000/svg">
			<path { ...align } />
		</svg>
	}

	return ! setAttributes || 'not_set' === setAttributes ? (
		<svg xmlns="https://www.w3.org/2000/svg" viewBox={ viewBox } {...extraProps}>
			<path d={ path }></path>
		</svg>
	) : (
		<svg width="20" height="20" xmlns="https://www.w3.org/2000/svg" viewBox={ viewBox } {...extraProps}>
			<path d={ path }></path>
		</svg>
	);
}

export default renderSVG;
PK�][�b��=ultimate-addons-for-gutenberg/blocks-config/blocks-config.phpnu�[���<?php
/**
 * Blocks config loader.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) || ! defined( 'UAGB_DIR' ) ) {
	exit; // Exit if accessed directly, or if UAGB_DIR is not defined.
}

// Require the dynamic block classes.
require_once UAGB_DIR . 'blocks-config/post/class-uagb-post.php';
require_once UAGB_DIR . 'blocks-config/post-timeline/class-uagb-post-timeline.php';
require_once UAGB_DIR . 'blocks-config/cf7-styler/class-uagb-cf7-styler.php';
require_once UAGB_DIR . 'blocks-config/gf-styler/class-uagb-gf-styler.php';
require_once UAGB_DIR . 'blocks-config/taxonomy-list/class-uagb-taxonomy-list.php';
require_once UAGB_DIR . 'blocks-config/table-of-content/class-uagb-table-of-content.php';
require_once UAGB_DIR . 'blocks-config/forms/class-uagb-forms.php';
require_once UAGB_DIR . 'blocks-config/lottie/class-uagb-lottie.php';
require_once UAGB_DIR . 'blocks-config/image/class-uagb-image.php';
require_once UAGB_DIR . 'blocks-config/image-gallery/class-spectra-image-gallery.php';
require_once UAGB_DIR . 'blocks-config/popup-builder/class-uagb-popup-builder.php';
require_once UAGB_DIR . 'blocks-config/buttons-child/class-uagb-buttons-child.php';
require_once UAGB_DIR . 'blocks-config/google-map/class-uagb-google-map.php';
require_once UAGB_DIR . 'blocks-config/icon/class-spectra-icon.php';
require_once UAGB_DIR . 'blocks-config/faq/class-uagb-faq.php';

// Require the advanced settings PHP classes.
require_once UAGB_DIR . 'blocks-config/advanced-settings/class-uagb-block-positioning.php';
PK�][�!�
�H�HFultimate-addons-for-gutenberg/blocks-config/forms/class-uagb-forms.phpnu�[���<?php
/**
 * UAGB Forms.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Forms' ) ) {

	/**
	 * Class UAGB_Forms.
	 */
	class UAGB_Forms {


		/**
		 * Member Variable
		 *
		 * @since 1.22.0
		 * @var instance
		 */
		private static $instance;

		/**
		 * Member Variable
		 *
		 * @since 1.22.0
		 * @var settings
		 */
		private static $settings;

		/**
		 *  Initiator
		 *
		 * @since 1.22.0
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 *
		 * Constructor
		 *
		 * @since 1.22.0
		 */
		public function __construct() {
			add_action( 'wp_ajax_uagb_process_forms', array( $this, 'process_forms' ) );
			add_action( 'wp_ajax_nopriv_uagb_process_forms', array( $this, 'process_forms' ) );

		}

		/**
		 * Return the blocks content for reusable block.
		 *
		 * @param int $reusable_ref_id reference id of reusable block.
		 * @since 2.6.2
		 * @return array
		 */
		public function reusable_block_content_on_page( $reusable_ref_id ) {
			if ( is_int( $reusable_ref_id ) ) {
				$content = get_post_field( 'post_content', $reusable_ref_id );
				return parse_blocks( $content );
			}
			return array();
		}

		/**
		 * Generates ids for all wp template part.
		 *
		 * @param array $block_attr attributes array.
		 * @since 2.6.2
		 * @return integer|boolean
		 */
		public function get_fse_template_part( $block_attr ) {
			if ( empty( $block_attr['slug'] ) ) {
				return false;
			}

			$id              = false;
			$slug            = $block_attr['slug'];
			$templates_parts = get_block_templates( array( 'slugs__in' => $slug ), 'wp_template_part' );
			foreach ( $templates_parts as $templates_part ) {
				if ( $slug === $templates_part->slug ) {
					$id = $templates_part->wp_id;
					break;
				}
			}
			return $id;
		}

		/**
		 * Return array of validated attributes.
		 *
		 * @param array  $block_attr of Block.
		 * @param string $block_id of Block.
		 * @since 2.6.2
		 * @return array
		 */
		public function uagb_forms_block_attr_check( $block_attr, $block_id ) {
			if ( ! empty( $block_attr['ref'] ) ) {
				$reusable_blocks_content = $this->reusable_block_content_on_page( $block_attr['ref'] );
				$block_attr              = $this->recursive_inner_forms( $reusable_blocks_content, $block_id );
			}

			if ( ! empty( $block_attr['slug'] ) ) {
				$id                      = $this->get_fse_template_part( $block_attr );
				$reusable_blocks_content = $this->reusable_block_content_on_page( $id );
				$block_attr              = $this->recursive_inner_forms( $reusable_blocks_content, $block_id );
			}

			return ( is_array( $block_attr ) && $block_attr['block_id'] === $block_id ) ? $block_attr : false;
		}

		/**
		 *  Get the Inner blocks array.
		 *
		 * @since 2.3.5
		 * @access private
		 *
		 * @param  array  $blocks_array Block Array.
		 * @param  string $block_id of Block.
		 *
		 * @return mixed $recursive_inner_forms inner blocks Array.
		 */
		private function recursive_inner_forms( $blocks_array, $block_id ) {
			if ( empty( $blocks_array ) ) {
				return;
			}

			foreach ( $blocks_array as $blocks ) {
				if ( empty( $blocks ) ) {
					continue;
				}

				if ( ! empty( $blocks['attrs'] ) && isset( $blocks['blockName'] ) && ( 'uagb/forms' === $blocks['blockName'] || 'core/block' === $blocks['blockName'] || 'core/template-part' === $blocks['blockName'] ) ) {
					$blocks_attrs = $this->uagb_forms_block_attr_check( $blocks['attrs'], $block_id );
					if ( ! $blocks_attrs ) {
						continue;
					}
					return $blocks_attrs;
				} else {
					if ( is_array( $blocks['innerBlocks'] ) && ! empty( $blocks['innerBlocks'] ) ) {
						foreach ( $blocks['innerBlocks'] as $j => $inner_block ) {
							if ( ! empty( $inner_block['attrs'] ) && isset( $inner_block['blockName'] ) && ( 'uagb/forms' === $inner_block ['blockName'] || 'core/block' === $inner_block['blockName'] || 'core/template-part' === $blocks['blockName'] ) ) {
								$inner_block_attrs = $this->uagb_forms_block_attr_check( $inner_block['attrs'], $block_id );
								if ( ! $inner_block_attrs ) {
									continue;
								}
								return $inner_block_attrs;
							} else {
								$temp_attrs = $this->recursive_inner_forms( $inner_block['innerBlocks'], $block_id );
								if ( ! empty( $temp_attrs ) && isset( $temp_attrs['block_id'] ) && $temp_attrs['block_id'] === $block_id ) {
									return $temp_attrs;
								}
							}
						}
					}
				}
			}
		}

		/**
		 *
		 * Form Process Initiated.
		 *
		 * @since 1.22.0
		 */
		public function process_forms() {
			check_ajax_referer( 'uagb_forms_ajax_nonce', 'nonce' );

			$options = array(
				'recaptcha_site_key_v2'   => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v2', '' ),
				'recaptcha_site_key_v3'   => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v3', '' ),
				'recaptcha_secret_key_v2' => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_secret_key_v2', '' ),
				'recaptcha_secret_key_v3' => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_secret_key_v3', '' ),
			);

			if ( empty( $_POST['post_id'] ) || empty( $_POST['block_id'] ) ) {
				wp_send_json_error( 400 );
			}
			$current_block_attributes = false;
			$block_id                 = sanitize_text_field( $_POST['block_id'] );

			$post_content = get_post_field( 'post_content', sanitize_text_field( $_POST['post_id'] ) );

			if ( has_block( 'uagb/forms', $post_content ) || has_block( 'core/block', $post_content ) ) {
				$blocks = parse_blocks( $post_content );
				if ( ! empty( $blocks ) && is_array( $blocks ) ) {
					$current_block_attributes = $this->recursive_inner_forms( $blocks, $block_id );
				}
			}
			if ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) {
				$wp_query_args        = array(
					'post_status' => array( 'publish' ),
					'post_type'   => array( 'wp_template', 'wp_template_part' ),
				);
				$template_query       = new WP_Query( $wp_query_args );
				$template_query_posts = $template_query->posts;
				if ( ! empty( $template_query_posts ) && is_array( $template_query_posts ) ) {
					foreach ( $template_query_posts as $post ) {
						if ( ! function_exists( '_build_block_template_result_from_post' ) ) {
							continue;
						}
						$template = _build_block_template_result_from_post( $post );
						if ( is_wp_error( $template ) ) {
							continue;
						}
						$template_post_content = $template->content . ( ! empty( $post_content ) ? $post_content : '' );
						$template_content      = parse_blocks( $template_post_content );
						if ( get_template() === $template->theme && ! empty( $template_content ) && is_array( $template_content ) ) {
							$current_block_attributes = $this->recursive_inner_forms( $template_content, $block_id );
							if ( is_array( $current_block_attributes ) && $current_block_attributes['block_id'] === $block_id ) {
								break;
							}
						}
					}
				}
			}

			$widget_content = get_option( 'widget_block' );
			if ( ! empty( $widget_content ) && is_array( $widget_content ) && empty( $current_block_attributes ) ) {
				foreach ( $widget_content as $value ) {
					if ( ! is_array( $value ) || empty( $value['content'] ) ) {
						continue;
					}
					if ( has_block( 'uagb/forms', $value['content'] ) ) {
						$current_block_attributes = $this->recursive_inner_forms( parse_blocks( $value['content'] ), $block_id );
						if ( is_array( $current_block_attributes ) && $current_block_attributes['block_id'] === $block_id ) {
							break;
						}
					}
				}
			}

			// Check for $current_block_attributes is not set and check for Advanced Hooks.
			if ( empty( $current_block_attributes ) && defined( 'ASTRA_ADVANCED_HOOKS_POST_TYPE' ) ) {

				$option = array(
					'location'  => 'ast-advanced-hook-location',
					'exclusion' => 'ast-advanced-hook-exclusion',
					'users'     => 'ast-advanced-hook-users',
				);

				$result = Astra_Target_Rules_Fields::get_instance()->get_posts_by_conditions( ASTRA_ADVANCED_HOOKS_POST_TYPE, $option );

				if ( ! empty( $result ) && is_array( $result ) ) {
					$post_ids = array_keys( $result );

					foreach ( $post_ids as $post_id ) {

						$custom_post = get_post( $post_id );

						if ( ! $custom_post instanceof WP_Post ) {
							continue;
						}

						$post_content = $custom_post->post_content;
						if ( has_block( 'uagb/forms', $post_content ) ) {
							$blocks = parse_blocks( $post_content );
							if ( ! empty( $blocks ) && is_array( $blocks ) ) {
								$current_block_attributes = $this->recursive_inner_forms( $blocks, $block_id );
								if ( is_array( $current_block_attributes ) && $current_block_attributes['block_id'] === $block_id ) {
									break;
								}
							}
						}
					}
				}
			}

			if ( empty( $current_block_attributes ) ) {
				wp_send_json_error( 400 );
			}
			$admin_email = get_option( 'admin_email' );
			if ( is_array( $current_block_attributes ) ) {
				if ( isset( $current_block_attributes['afterSubmitToEmail'] ) && empty( trim( $current_block_attributes['afterSubmitToEmail'] ) ) && is_string( $admin_email ) ) {
					$current_block_attributes['afterSubmitToEmail'] = sanitize_email( $admin_email );
				}
				if ( ! isset( $current_block_attributes['reCaptchaType'] ) ) {
					$current_block_attributes['reCaptchaType'] = 'v2';
				}
				// bail if recaptcha is enabled and recaptchaType is not set.
				if ( ! empty( $current_block_attributes['reCaptchaEnable'] ) && empty( $current_block_attributes['reCaptchaType'] ) ) {
					wp_send_json_error( 400 );
				}

				if ( 'v2' === $current_block_attributes['reCaptchaType'] ) {

					$google_recaptcha_site_key   = $options['recaptcha_site_key_v2'];
					$google_recaptcha_secret_key = $options['recaptcha_secret_key_v2'];

				} elseif ( 'v3' === $current_block_attributes['reCaptchaType'] ) {

					$google_recaptcha_site_key   = $options['recaptcha_site_key_v3'];
					$google_recaptcha_secret_key = $options['recaptcha_secret_key_v3'];

				}

				if ( ! empty( $current_block_attributes['reCaptchaEnable'] ) && ! empty( $google_recaptcha_secret_key ) && ! empty( $google_recaptcha_site_key ) ) {

					// Google recaptcha secret key verification starts.
					$google_recaptcha = isset( $_POST['captcha_response'] ) ? sanitize_text_field( $_POST['captcha_response'] ) : '';
					$remoteip         = isset( $_SERVER['REMOTE_ADDR'] ) ? sanitize_text_field( $_SERVER['REMOTE_ADDR'] ) : '';

					// calling google recaptcha api.
					$google_url = 'https://www.google.com/recaptcha/api/siteverify';

					$errors = new WP_Error();

					if ( empty( $google_recaptcha ) || empty( $remoteip ) ) {

						$errors->add( 'invalid_api', __( 'Please try logging in again to verify that you are not a robot.', 'ultimate-addons-for-gutenberg' ) );
						return $errors;

					} else {
						$google_response = wp_safe_remote_get(
							add_query_arg(
								array(
									'secret'   => $google_recaptcha_secret_key,
									'response' => $google_recaptcha,
									'remoteip' => $remoteip,
								),
								$google_url
							)
						);
						if ( is_wp_error( $google_response ) ) {

							$errors->add( 'invalid_recaptcha', __( 'Please try logging in again to verify that you are not a robot.', 'ultimate-addons-for-gutenberg' ) );
							return $errors;

						} else {
							$google_response        = wp_remote_retrieve_body( $google_response );
							$decode_google_response = json_decode( $google_response );

							if ( false === $decode_google_response->success ) {
								wp_send_json_error( 400 );
							}
						}
					}
				}
			}

			if ( empty( $google_recaptcha_secret_key ) && ! empty( $google_recaptcha_site_key ) ) {
				wp_send_json_error( 400 );
			}
			if ( ! empty( $google_recaptcha_secret_key ) && empty( $google_recaptcha_site_key ) ) {
				wp_send_json_error( 400 );
			}
			// sanitizing form_data elements in later stage.
			$form_data = isset( $_POST['form_data'] ) ? json_decode( wp_unslash( $_POST['form_data'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
			
			$body  = '';
			$body .= '<div style="border: 50px solid #f6f6f6;">';
			$body .= '<div style="padding: 15px;">';

			foreach ( $form_data as $key => $value ) {

				if ( $key ) {

					if ( is_array( $value ) && stripos( wp_json_encode( $value ), '+' ) !== false ) {

						$val   = implode( '', $value );
						$body .= '<p><strong>' . str_replace( '_', ' ', ucwords( esc_html( $key ) ) ) . '</strong> - ' . esc_html( $val ) . '</p>';

					} elseif ( is_array( $value ) ) {

						$val   = implode( ', ', $value );
						$body .= '<p><strong>' . str_replace( '_', ' ', ucwords( esc_html( $key ) ) ) . '</strong> - ' . esc_html( $val ) . '</p>';

					} else {
						$body .= '<p><strong>' . str_replace( '_', ' ', ucwords( esc_html( $key ) ) ) . '</strong> - ' . esc_html( $value ) . '</p>';
					}
				}
			}
			$body .= '<p style="text-align:center;">This e-mail was sent from a ' . get_bloginfo( 'name' ) . ' ( ' . site_url() . ' )</p>';
			$body .= '</div>';
			$body .= '</div>';
			$this->send_email( $body, $form_data, $current_block_attributes );

		}

		/**
		 * Validate emails from $to, $cc and $bcc.
		 *
		 * @param array $emails array.
		 * @since 2.7.0
		 * @return array
		 */
		public function get_valid_emails( $emails ) {
			$valid_emails = array();

			if ( is_array( $emails ) ) {
				foreach ( $emails as $email ) {
					$email = trim( $email );
					$email = sanitize_email( $email );

					if ( is_email( $email ) ) {
						$valid_emails[] = $email;
					}
				}
			}

			return $valid_emails;
		}


		/**
		 *
		 * Trigger Mail.
		 *
		 * @param object $body Email Body.
		 * @param object $form_data Email Body Array.
		 * @param object $args Extra Data.
		 *
		 * @since 1.22.0
		 */
		public function send_email( $body, $form_data, $args ) {
			$to      = isset( $args['afterSubmitToEmail'] ) ? trim( $args['afterSubmitToEmail'] ) : sanitize_email( get_option( 'admin_email' ) );
			$cc      = isset( $args['afterSubmitCcEmail'] ) ? trim( $args['afterSubmitCcEmail'] ) : '';
			$bcc     = isset( $args['afterSubmitBccEmail'] ) ? trim( $args['afterSubmitBccEmail'] ) : '';
			$subject = isset( $args['afterSubmitEmailSubject'] ) ? $args['afterSubmitEmailSubject'] : __( 'Form Submission', 'ultimate-addons-for-gutenberg' );

			if ( ! empty( $to ) && is_string( $to ) ) {
				$to_emails = $this->get_valid_emails( explode( ',', $to ) );
			}

			if ( ! empty( $cc ) && is_string( $cc ) ) {
				$cc_emails = $this->get_valid_emails( explode( ',', $cc ) );
			}

			if ( ! empty( $bcc ) && is_string( $bcc ) ) {
				$bcc_emails = $this->get_valid_emails( explode( ',', $bcc ) );
			}

			if ( empty( $to_emails ) ) {
				wp_send_json_success( 400 );
			}

			$sender_email_address = ! empty( $form_data['Email'] ) ? sanitize_email( $form_data['Email'] ) : 'example@mail.com';

			$headers = array( 'Content-Type: text/html; charset=UTF-8', 'From: Email <' . $sender_email_address . '>' );

			foreach ( $to_emails as $email ) {
				$headers[] = 'Reply-To: ' . get_bloginfo( 'name' ) . ' <' . $email . '>';
			}

			if ( ! empty( $cc_emails ) ) {
				foreach ( $cc_emails as $email ) {
					$headers[] = 'Cc: ' . $email;
				}
			}

			if ( ! empty( $bcc_emails ) ) {
				foreach ( $bcc_emails as $email ) {
					$headers[] = 'Bcc: ' . $email;
				}
			}

			$successful_mail = wp_mail( $to_emails, $subject, $body, $headers );

			if ( $successful_mail ) {
				do_action( 'uagb_form_success', $form_data );
				wp_send_json_success( 200 );
			} else {
				wp_send_json_success( 400 );
			}
		}


		/**
		 * Validates that a given URL uses the HTTPS scheme and is well-formed.
		 *
		 * This function checks that the provided URL is properly structured and
		 * uses the secure HTTPS protocol. If the URL passes validation, it returns
		 * an escaped version of the URL. Otherwise, it returns an empty string.
		 *
		 * @param string $url The URL to be validated.
		 * 
		 * @since 2.16.5
		 * @return string Escaped URL if valid and uses HTTPS; otherwise, an empty string.
		 */
		public static function validate_confirmation_url( $url ) {
			// First, we check that the URL starts with 'https://' to
			// ensure that the URL is using the secure HTTPS protocol.
			// 
			// Additionally, use the filter_var() function to validate that the URL
			// conforms to the proper URL structure. This function takes two
			// arguments: the URL to be validated and a filter constant. The
			// FILTER_VALIDATE_URL constant is used to validate that the URL is
			// well-formed.
			// 
			// If the URL is not valid, then return an empty string. This will
			// prevent the function from attempting to parse the URL and extract
			// its components.
			if ( strpos( $url, 'https://' ) !== 0 || ! filter_var( $url, FILTER_VALIDATE_URL ) ) {
				// Return an empty string if the URL is invalid.
				return '';
			}
			$parsed_url = wp_parse_url( $url );

			// Check if the URL is well-formed and uses HTTPS.
			// 
			// wp_parse_url() is a WordPress function that takes a URL and
			// breaks it down into its component parts. It returns an array
			// containing the following keys:
			// - host: The hostname of the URL (e.g. example.com)
			// - scheme: The protocol used in the URL (e.g. http or https)
			// - port: The port number used in the URL (if applicable)
			// - user: The username used in the URL (if applicable)
			// - pass: The password used in the URL (if applicable)
			// - path: The path used in the URL (e.g. /about)
			// - query: The query string used in the URL (e.g. ?name=John)
			// - fragment: The fragment used in the URL (e.g. #top)
			//
			// We need to check that $parsed_url is an array, and that it
			// contains the 'host' and 'scheme' keys. If any of these checks
			// fail, we return an empty string.
			//
			// If the URL is well-formed and uses HTTPS, we escape the URL
			// using WordPress's esc_url() function, and return the result.
			if ( is_array( $parsed_url ) 
			&& isset( $parsed_url['host'] ) 
			&& isset( $parsed_url['scheme'] ) &&
			'https' === $parsed_url['scheme']
			) {
				// If the URL is well-formed and uses HTTPS, return an escaped
				// version of the URL.
				return esc_url( $url );
			}

			// Return an empty string if validation fails.
			return '';
		}
	}

	/**
	 *  Prepare if class 'UAGB_Forms' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Forms::get_instance();
}
PK�][M#y``Vultimate-addons-for-gutenberg/blocks-config/taxonomy-list/class-uagb-taxonomy-list.phpnu�[���<?php
/**
 * UAGB - Taxonomy-List
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Taxonomy_List' ) ) {

	/**
	 * Class UAGB_Taxonomy_List.
	 *
	 * @since 1.18.1
	 */
	class UAGB_Taxonomy_List {

		/**
		 * Member Variable
		 *
		 * @since 1.18.1
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 1.18.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.18.1
		 */
		public function __construct() {

			// Activation hook.
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `uagb/taxonomy-list` block on server.
		 *
		 * @since 1.18.1
		 */
		public function register_blocks() {

			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}
			$border_attribute = array();

			if ( method_exists( 'UAGB_Block_Helper', 'uag_generate_php_border_attribute' ) ) {

				$border_attribute = UAGB_Block_Helper::uag_generate_php_border_attribute( 'overall' );

			}

			register_block_type(
				'uagb/taxonomy-list',
				array(
					'attributes'      => array_merge(
						$border_attribute,
						array(
							'block_id'                   => array(
								'type' => 'string',
							),
							'postType'                   => array(
								'type'    => 'string',
								'default' => 'post',
							),
							'taxonomyType'               => array(
								'type'    => 'string',
								'default' => 'category',
							),
							'categories'                 => array(
								'type' => 'string',
							),
							'order'                      => array(
								'type'    => 'string',
								'default' => 'desc',
							),
							'orderBy'                    => array(
								'type'    => 'string',
								'default' => 'date',
							),
							'postsToShow'                => array(
								'type'    => 'number',
								'default' => '8',
							),
							'layout'                     => array(
								'type'    => 'string',
								'default' => 'grid',
							),
							'columns'                    => array(
								'type'    => 'number',
								'default' => 3,
							),
							'tcolumns'                   => array(
								'type'    => 'number',
								'default' => 2,
							),
							'mcolumns'                   => array(
								'type'    => 'number',
								'default' => 1,
							),
							'noTaxDisplaytext'           => array(
								'type'    => 'string',
								'default' => __( 'Taxonomy Not Available.', 'ultimate-addons-for-gutenberg' ),
							),
							'boxShadowColor'             => array(
								'type'    => 'string',
								'default' => '#00000070',
							),
							'boxShadowHOffset'           => array(
								'type'    => 'number',
								'default' => 0,
							),
							'boxShadowVOffset'           => array(
								'type'    => 'number',
								'default' => 0,
							),
							'boxShadowBlur'              => array(
								'type' => 'number',
							),
							'boxShadowSpread'            => array(
								'type' => 'number',
							),
							'boxShadowPosition'          => array(
								'type'    => 'string',
								'default' => 'outset',
							),
							'showCount'                  => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'showEmptyTaxonomy'          => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'showhierarchy'              => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'titleTag'                   => array(
								'type'    => 'string',
								'default' => '',
							),
							// Color Attributes.
							'bgColor'                    => array(
								'type'    => 'string',
								'default' => '#f5f5f5',
							),
							'titleColor'                 => array(
								'type'    => 'string',
								'default' => '#3b3b3b',
							),
							'countColor'                 => array(
								'type'    => 'string',
								'default' => '#777777',
							),
							'listTextColor'              => array(
								'type'    => 'string',
								'default' => '#3b3b3b',
							),
							'hoverlistTextColor'         => array(
								'type'    => 'string',
								'default' => '#3b3b3b',
							),
							'listStyleColor'             => array(
								'type'    => 'string',
								'default' => '#3b3b3b',
							),
							'hoverlistStyleColor'        => array(
								'type'    => 'string',
								'default' => '#3b3b3b',
							),

							// Spacing Attributes.
							'rowGap'                     => array(
								'type'    => 'number',
								'default' => 20,
							),
							'columnGap'                  => array(
								'type'    => 'number',
								'default' => 20,
							),
							'contentPadding'             => array(
								'type'    => 'number',
								'default' => 20,
							),
							'contentPaddingTablet'       => array(
								'type'    => 'number',
								'default' => 15,
							),
							'contentPaddingMobile'       => array(
								'type'    => 'number',
								'default' => 15,
							),
							'titleBottomSpace'           => array(
								'type'    => 'number',
								'default' => 5,
							),
							'listBottomMargin'           => array(
								'type'    => 'number',
								'default' => 10,
							),

							// ALignment Attributes.
							'alignment'                  => array(
								'type'    => 'string',
								'default' => 'center',
							),

							// List Attributes.
							'listStyle'                  => array(
								'type'    => 'string',
								'default' => 'disc',
							),
							'listDisplayStyle'           => array(
								'type'    => 'string',
								'default' => 'list',
							),

							// Seperator Attributes.
							'seperatorStyle'             => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'seperatorWidth'             => array(
								'type'    => 'number',
								'default' => 100,
							),
							'seperatorThickness'         => array(
								'type'    => 'number',
								'default' => 1,
							),
							'seperatorColor'             => array(
								'type'    => 'string',
								'default' => '#b2b4b5',
							),
							'seperatorHoverColor'        => array(
								'type'    => 'string',
								'default' => '#b2b4b5',
							),

							// Typograpghy attributes.
							'titleFontSize'              => array(
								'type' => 'number',
							),
							'titleFontSizeType'          => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'titleFontSizeMobile'        => array(
								'type' => 'number',
							),
							'titleFontSizeTablet'        => array(
								'type' => 'number',
							),
							'titleFontFamily'            => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'titleFontWeight'            => array(
								'type' => 'string',
							),
							'titleFontStyle'             => array(
								'type' => 'string',
							),
							'titleLineHeightType'        => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'titleLineHeight'            => array(
								'type' => 'number',
							),
							'titleLineHeightTablet'      => array(
								'type' => 'number',
							),
							'titleLineHeightMobile'      => array(
								'type' => 'number',
							),
							'titleLoadGoogleFonts'       => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'countFontSize'              => array(
								'type' => 'number',
							),
							'countFontSizeType'          => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'countFontSizeMobile'        => array(
								'type' => 'number',
							),
							'countFontSizeTablet'        => array(
								'type' => 'number',
							),
							'countFontFamily'            => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'countFontWeight'            => array(
								'type' => 'string',
							),
							'countFontStyle'             => array(
								'type' => 'string',
							),
							'countLineHeightType'        => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'countLineHeight'            => array(
								'type' => 'number',
							),
							'countLineHeightTablet'      => array(
								'type' => 'number',
							),
							'countLineHeightMobile'      => array(
								'type' => 'number',
							),
							'countLoadGoogleFonts'       => array(
								'type'    => 'boolean',
								'default' => false,
							),

							'listFontSize'               => array(
								'type' => 'number',
							),
							'listFontSizeType'           => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'listFontSizeMobile'         => array(
								'type' => 'number',
							),
							'listFontSizeTablet'         => array(
								'type' => 'number',
							),
							'listFontFamily'             => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'listFontWeight'             => array(
								'type' => 'string',
							),
							'listFontStyle'              => array(
								'type' => 'string',
							),
							'listLineHeightType'         => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'listLineHeight'             => array(
								'type' => 'number',
							),
							'listLineHeightTablet'       => array(
								'type' => 'number',
							),
							'listLineHeightMobile'       => array(
								'type' => 'number',
							),
							'listLoadGoogleFonts'        => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'contentLeftPadding'         => array(
								'type' => 'number',
							),
							'contentRightPadding'        => array(
								'type' => 'number',
							),
							'contentTopPadding'          => array(
								'type' => 'number',
							),
							'contentBottomPadding'       => array(
								'type' => 'number',
							),
							'contentLeftPaddingTablet'   => array(
								'type' => 'number',
							),
							'contentRightPaddingTablet'  => array(
								'type' => 'number',
							),
							'contentTopPaddingTablet'    => array(
								'type' => 'number',
							),
							'contentBottomPaddingTablet' => array(
								'type' => 'number',
							),
							'contentLeftPaddingMobile'   => array(
								'type' => 'number',
							),
							'contentRightPaddingMobile'  => array(
								'type' => 'number',
							),
							'contentTopPaddingMobile'    => array(
								'type' => 'number',
							),
							'contentBottomPaddingMobile' => array(
								'type' => 'number',
							),
							'contentPaddingUnit'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'mobileContentPaddingUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'tabletContentPaddingUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'contentPaddingLink'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'titleTransform'             => array(
								'type' => 'string',
							),
							'countTransform'             => array(
								'type' => 'string',
							),
							'listTransform'              => array(
								'type' => 'string',
							),
							'titleDecoration'            => array(
								'type' => 'string',
							),
							'countDecoration'            => array(
								'type' => 'string',
							),
							'listDecoration'             => array(
								'type' => 'string',
							),
							'isPreview'                  => array(
								'type'    => 'boolean',
								'default' => false,
							),
							// letter spacing.
							'titleLetterSpacing'         => array(
								'type'    => 'number',
								'default' => 0,
							),
							'titleLetterSpacingTablet'   => array(
								'type' => 'number',
							),
							'titleLetterSpacingMobile'   => array(
								'type' => 'number',
							),
							'titleLetterSpacingType'     => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'countLetterSpacing'         => array(
								'type' => 'number',
							),
							'countLetterSpacingTablet'   => array(
								'type' => 'number',
							),
							'countLetterSpacingMobile'   => array(
								'type' => 'number',
							),
							'countLetterSpacingType'     => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'listLetterSpacing'          => array(
								'type' => 'number',
							),
							'listLetterSpacingTablet'    => array(
								'type' => 'number',
							),
							'listLetterSpacingMobile'    => array(
								'type' => 'number',
							),
							'listLetterSpacingType'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'borderColor'                => array(
								'type'    => 'string',
								'default' => '#E0E0E0',
							),
							'borderThickness'            => array(
								'type'    => 'number',
								'default' => 1,
							),
							'borderRadius'               => array(
								'type'    => 'number',
								'default' => 3,
							),
							'borderStyle'                => array(
								'type'    => 'string',
								'default' => 'solid',
							),
							'borderHoverColor'           => array(
								'type'    => 'string',
								'default' => '#E0E0E0',
							),
						)
					),
					'render_callback' => array( $this, 'render_html' ),
				)
			);
		}

		/**
		 * Render Grid HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.18.1
		 */
		public function grid_html( $attributes ) {
			$block_id         = $attributes['block_id'];
			$postType         = $attributes['postType'];
			$taxonomyType     = $attributes['taxonomyType'];
			$layout           = $attributes['layout'];
			$seperatorStyle   = $attributes['seperatorStyle'];
			$noTaxDisplaytext = $attributes['noTaxDisplaytext'];
			$showCount        = $attributes['showCount'];
			$titleTag         = $attributes['titleTag'];

			if ( 'grid' === $layout ) {

				$array_of_allowed_HTML = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div' );
				$title_tag             = UAGB_Helper::title_tag_allowed_html( $titleTag, $array_of_allowed_HTML, 'h4' );

				$pt = get_post_type_object( $postType );
				
				if ( $pt ) {
					$singular_name = $pt->labels->singular_name;
					$plural_name   = $pt->labels->name;
				} else {
					// Fallback if $pt or $pt->labels is null.
					$singular_name = __( 'Item', 'ultimate-addons-for-gutenberg' );
					$plural_name   = __( 'Items', 'ultimate-addons-for-gutenberg' );
				}

				$args                = array(
					'hide_empty' => ! $attributes['showEmptyTaxonomy'],
					'parent'     => 0,
				);
				$new_categories_list = get_terms( $attributes['taxonomyType'], $args );

				if ( is_array( $new_categories_list ) ) {
					foreach ( $new_categories_list as $value ) {
						$link = get_term_link( $value->slug, $attributes['taxonomyType'] );
						if ( ! is_wp_error( $link ) ) {
							?>

						<div class="uagb-taxomony-box">
							<a class="uagb-tax-link" href= "<?php echo esc_url( $link ); ?>">
								<<?php echo esc_html( $title_tag ); ?> class="uagb-tax-title"><?php echo esc_html( $value->name ); ?>
								</<?php echo esc_html( $title_tag ); ?>>
								<?php if ( $showCount ) { ?>
										<?php echo esc_attr( $value->count ); ?>
										<?php $countName = ( 1 != $value->count ) ? esc_attr( $plural_name ) : esc_attr( $singular_name ); ?>
										<?php echo esc_attr( apply_filters( 'uagb_taxonomy_count_text', $countName, $value->count ) ); ?>
								<?php } ?>
							</a>
						</div>
							<?php
						}
					}
				}
			}
		}
		/**
		 * Return link for individual category.
		 *
		 * @param string $slug of category.
		 * @param string $taxonomy_type attributes.
		 *
		 * @since 2.6.0
		 * @return string link using slug.
		 */
		public function get_link_of_individual_categories( $slug, $taxonomy_type ) {
			if ( ! is_string( $slug ) ) {
				return '#';
			}
			$link = get_term_link( $slug, $taxonomy_type );
			if ( is_wp_error( $link ) ) {
				$link = '#';
			}
			return $link;
		}

		/**
		 * Get terms hierarchical.
		 *
		 * @param string  $taxonomy_type of taxonomy type.
		 * @param integer $parent_id of parent id.
		 * @param bool    $show_empty_taxonomy of show empty taxonomy.
		 * @since 2.10.4
		 * @return array of terms.
		 */
		public function get_terms_hierarchical( $taxonomy_type, $parent_id, $show_empty_taxonomy ) {
			$args = array(
				'taxonomy'   => $taxonomy_type,
				'parent'     => $parent_id,
				'hide_empty' => ! $show_empty_taxonomy,
			);

			$terms = get_terms( $args );

			if ( is_wp_error( $terms ) || empty( $terms ) || ! is_array( $terms ) ) {
				return array();
			}

			foreach ( $terms as $term ) {
				$term->children = $this->get_terms_hierarchical( $taxonomy_type, $term->term_id, $show_empty_taxonomy );
			}

			return $terms;
		}

		/**
		 * Display terms recursive.
		 *
		 * @param object $term of terms.
		 * @param string $taxonomy_type of taxonomy type.
		 * @param bool   $showCount of show count.
		 * @param string $seperatorStyle of separator style.
		 * @param string $title_tag of title tag.
		 * @param bool   $show_hierarchy of show hierarchy.
		 * @since 2.10.4
		 * @return void
		 */
		public function display_terms_recursive( $term, $taxonomy_type, $showCount, $seperatorStyle, $title_tag, $show_hierarchy ) {
			if ( $term instanceof WP_Term ) {
				$child_link = $this->get_link_of_individual_categories( $term->slug, $taxonomy_type );
				echo sprintf(
					'<li class="uagb-tax-list"><%s class="uagb-tax-link-wrap"><a class="uagb-tax-link" href="%s">%s</a> %s</%s><div class="uagb-tax-separator"></div></li>',
					esc_html( $title_tag ),
					esc_url( $child_link ),
					esc_html( $term->name ),
					( boolval( $showCount ) ? ' (' . esc_attr( $term->count ) . ') ' : '' ),
					esc_html( $title_tag )
				);

				if ( $show_hierarchy && ! empty( $term->children ) && is_array( $term->children ) ) {
					foreach ( $term->children as $child ) {
						echo sprintf( '<ul class="uagb-taxonomy-list-children">' );
						$this->display_terms_recursive( $child, $taxonomy_type, $showCount, $seperatorStyle, $title_tag, $show_hierarchy );
						echo sprintf( '</ul>' );
					}
				}
			}
		}

		/**
		 * Render List HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.18.1
		 */
		public function list_html( $attributes ) {
			$block_id         = $attributes['block_id'];
			$postType         = $attributes['postType'];
			$taxonomyType     = $attributes['taxonomyType'];
			$layout           = $attributes['layout'];
			$seperatorStyle   = $attributes['seperatorStyle'];
			$noTaxDisplaytext = $attributes['noTaxDisplaytext'];
			$showCount        = $attributes['showCount'];
			$titleTag         = $attributes['titleTag'];

			if ( 'list' === $layout ) {

				$array_of_allowed_HTML = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div' );
				$title_tag             = UAGB_Helper::title_tag_allowed_html( $titleTag, $array_of_allowed_HTML, 'div' );

				$pt            = get_post_type_object( $postType );
				$singular_name = $pt->labels->singular_name;

				$args = array(
					'hide_empty' => ! $attributes['showEmptyTaxonomy'],
					'parent'     => 0,
				);

				$taxonomy_type       = $attributes['taxonomyType'];
				$show_empty_taxonomy = $attributes['showEmptyTaxonomy'];
				$new_categories_list = $this->get_terms_hierarchical( $taxonomy_type, 0, $show_empty_taxonomy );
				?>
				<?php if ( 'dropdown' !== $attributes['listDisplayStyle'] && ! empty( $new_categories_list ) && is_array( $new_categories_list ) ) { ?>
					<ul class="uagb-list-wrap">
						<?php
						foreach ( $new_categories_list as $term ) {
							?>
							<?php
							if ( $term instanceof WP_Term ) {
								$this->display_terms_recursive( $term, $taxonomy_type, $showCount, $seperatorStyle, $title_tag, $attributes['showhierarchy'] );
							}
							?>
						<?php } ?>
						</ul>
				<?php } else { ?>
					<select class="uagb-list-dropdown-wrap" onchange="redirectToTaxonomyLink(this)">
						<option selected value=""> -- <?php esc_html_e( 'Select', 'ultimate-addons-for-gutenberg' ); ?> -- </option>
						<?php
						if ( is_array( $new_categories_list ) ) {
							foreach ( $new_categories_list as $key => $value ) {
								$link = $this->get_link_of_individual_categories( $value->slug, $attributes['taxonomyType'] );
								?>
							<option value="<?php echo esc_url( $link ); ?>" >
								<?php echo esc_attr( $value->name ); ?>
								<?php if ( $showCount ) { ?>
									<?php echo ' (' . esc_attr( $value->count ) . ')'; ?>
								<?php } ?>
							</option>
								<?php
							}
						}
						?>
					</select>
					<script type="text/javascript">
						function redirectToTaxonomyLink( selectedOption ) {
							var selectedValue = selectedOption.value;
							if ( selectedValue ) {
								location.href = selectedValue;
							}
						}
					</script>
				<?php } ?>
				<?php
			}
		}

		/**
		 * Render Taxonomy List HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.18.1
		 */
		public function render_html( $attributes ) {

			$block_id         = $attributes['block_id'];
			$postType         = $attributes['postType'];
			$taxonomyType     = $attributes['taxonomyType'];
			$layout           = $attributes['layout'];
			$seperatorStyle   = $attributes['seperatorStyle'];
			$noTaxDisplaytext = $attributes['noTaxDisplaytext'];
			$showCount        = $attributes['showCount'];

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}

			$main_classes = array(
				'wp-block-uagb-taxonomy-list',
				'uagb-taxonomy__outer-wrap',
				'uagb-layout-' . $layout,
				'uagb-block-' . $block_id,
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
			);

			$args = array(
				'hide_empty' => ! $attributes['showEmptyTaxonomy'],
			);

			if ( $taxonomyType ) {
				$new_categories_list = get_terms( $taxonomyType, $args );
			}

			ob_start();

			?>
				<div class = "<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>" style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>">
					<?php if ( ! empty( $new_categories_list ) ) { ?>
							<?php $this->grid_html( $attributes ); ?>
							<?php $this->list_html( $attributes ); ?>
					<?php } else { ?>
							<div class="uagb-tax-not-available"><?php echo esc_html( $noTaxDisplaytext ); ?></div>
					<?php } ?>
				</div>

			<?php

			return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'UAGB_Taxonomy_List' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Taxonomy_List::get_instance();
}
PK�][`_�DBB[ultimate-addons-for-gutenberg/blocks-config/blocks-attributes/getBlocksDefaultAttributes.jsnu�[���import advancedHeadingAttribute from '@Blocks/advanced-heading/attributes';
import postGridAttribute from '@Blocks/post/post-grid/attributes';
import postCarouselAttribute from '@Blocks/post/post-carousel/attributes';
import postMasonryAttribute from '@Blocks/post/post-masonry/attributes';
import sectionAttribute from '@Blocks/section/attributes';
import buttonsAttribute from '@Blocks/buttons/attributes';
import buttonsChildAttribute from '@Blocks/buttons-child/attributes';
import infoboxAttribute from '@Blocks/info-box/attributes';
import testimonialAttribute from '@Blocks/testimonial/attributes';
import teamAttribute from '@Blocks/team/attributes';
import socialAttribute from '@Blocks/social-share/attributes';
import socialChildAttribute from '@Blocks/social-share-child/attributes';
import googleMapAttribute from '@Blocks/google-map/attributes';
import iconAttribute from '@Blocks/icon/attributes';
import iconListAttribute from '@Blocks/icon-list/attributes';
import iconListChildAttribute from '@Blocks/icon-list-child/attributes';
import priceListAttribute from '@Blocks/price-list/attributes';
import priceListChildAttribute from '@Blocks/price-list-child/attributes';
import contentAttribute from '@Blocks/timeline/content-timeline/attributes';
import contentChildAttribute from '@Blocks/timeline/content-timeline-child/attributes';
import postTimelineAttribute from '@Blocks/timeline/post-timeline/attributes';
import callToActionAttribute from '@Blocks/call-to-action/attributes';
import columnAttribute from '@Blocks/column/attributes';
import columnsAttribute from '@Blocks/columns/attributes';
import gfAttribute from '@Blocks/gf-designer/attributes';
import cf7Attribute from '@Blocks/cf7-designer/attributes';
import blockquoteAttribute from '@Blocks/blockquote/attributes';
import marketingBtnAttribute from '@Blocks/marketing-button/attributes';
import tableofContentAttribute from '@Blocks/table-of-contents/attributes';
import howToAttribute from '@Blocks/how-to/attributes';
import howToStepAttribute from '@Blocks/how-to/child-blocks/step/attributes';
import faqAttribute from '@Blocks/faq/attributes';
import faqChildAttribute from '@Blocks/faq-child/attributes';
import inlineNoticeAttribute from '@Blocks/inline-notice/attributes';
import taxonomyListAttribute from '@Blocks/taxonomy-list/attributes';
import reviewAttribute from '@Blocks/review/attributes';
import wpSearchAttribute from '@Blocks/wp-search/attributes';
import formsAttribute from '@Blocks/forms/attributes';
import formsAcceptAttribute from '@Blocks/forms/child-blocks/accept/attributes';
import formsEmailAttribute from '@Blocks/forms/child-blocks/email/attributes';
import formsHiddenAttribute from '@Blocks/forms/child-blocks/hidden/attributes';
import formsNameAttribute from '@Blocks/forms/child-blocks/name/attributes';
import formsToggleAttribute from '@Blocks/forms/child-blocks/toggle/attributes';
import formsUrlAttribute from '@Blocks/forms/child-blocks/url/attributes';
import formsTextareaAttribute from '@Blocks/forms/child-blocks/textarea/attributes';
import tabsAttribute from '@Blocks/tabs/attributes';
import lottieAttribute from '@Blocks/lottie/attributes';
import starRatingAttribute from '@Blocks/star-rating/attributes';
import containerAttribute from '@Blocks/container/attributes';
import imageAttribute from '@Blocks/image/attributes';
import modalAttribute from '@Blocks/modal/attributes';
import counterAttribute from '@Blocks/counter/attributes';
import imageGalleryAttribute from '@Blocks/image-gallery/attributes';
import separatorAttribute from '@Blocks/separator/attributes';
import countdownAttribute from '@Blocks/countdown/attributes';
import sliderAttribute from '@Blocks/slider/attributes';
import sliderChildAttribute from '@Blocks/slider-child/attributes';
import popupBuilderAttribute from '@Blocks/popup-builder/attributes';

export const blocksAttributes = {
	'advanced-heading': advancedHeadingAttribute,
	'post-grid': postGridAttribute,
	'post-carousel': postCarouselAttribute,
	'post-masonry': postMasonryAttribute,
	'section': sectionAttribute,
	'buttons': buttonsAttribute,
	'buttons-child': buttonsChildAttribute,
	'icon': iconAttribute,
	'info-box': infoboxAttribute,
	'testimonial': testimonialAttribute,
	'team': teamAttribute,
	'social-share': socialAttribute,
	'social-share-child': socialChildAttribute,
	'google-map': googleMapAttribute,
	'icon-list': iconListAttribute,
	'icon-list-child': iconListChildAttribute,
	'restaurant-menu': priceListAttribute,
	'restaurant-menu-child': priceListChildAttribute,
	'call-to-action': callToActionAttribute,
	'column': columnAttribute,
	'columns': columnsAttribute,
	'gf-styler': gfAttribute,
	'cf7-styler': cf7Attribute,
	'blockquote': blockquoteAttribute,
	'marketing-button': marketingBtnAttribute,
	'table-of-contents': tableofContentAttribute,
	'how-to': howToAttribute,
	'faq': faqAttribute,
	'faq-child': faqChildAttribute,
	'inline-notice': inlineNoticeAttribute,
	'taxonomy-list': taxonomyListAttribute,
	'review': reviewAttribute,
	'wp-search': wpSearchAttribute,
	'forms': formsAttribute,
	'forms-accept': formsAcceptAttribute,
	'forms-email': formsEmailAttribute,
	'forms-hidden': formsHiddenAttribute,
	'forms-name': formsNameAttribute,
	'forms-toggle': formsToggleAttribute,
	'forms-url': formsUrlAttribute,
	'forms-textarea': formsTextareaAttribute,
	'tabs': tabsAttribute,
	'lottie': lottieAttribute,
	'star-rating': starRatingAttribute,
	'content-timeline': contentAttribute,
	'content-timeline-child': contentChildAttribute,
	'post-timeline': postTimelineAttribute,
	'how-to-step': howToStepAttribute,
	'container': containerAttribute,
	'image': imageAttribute,
	'modal': modalAttribute,
	'counter': counterAttribute,
	'image-gallery': imageGalleryAttribute,
	'separator': separatorAttribute,
	'countdown': countdownAttribute,
	'slider': sliderAttribute,
	'slider-child': sliderChildAttribute,
	'popup-builder': popupBuilderAttribute,
};
PK�][�!�xxNultimate-addons-for-gutenberg/blocks-config/gf-styler/class-uagb-gf-styler.phpnu�[���<?php
/**
 * UAGB - Gravity Form Styler.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_GF_Styler' ) ) {

	/**
	 * Class UAGB_GF_Styler.
	 */
	class UAGB_GF_Styler {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {

			// Activation hook.
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `core/latest-posts` block on server.
		 *
		 * @since 0.0.1
		 */
		public function register_blocks() {

			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			$enable_legacy_blocks = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' );

			if ( 'yes' === $enable_legacy_blocks ) {
				register_block_type(
					'uagb/gf-styler',
					array(
						'attributes'      => array(
							'block_id'                     => array(
								'type' => 'string',
							),
							'align'                        => array(
								'type'    => 'string',
								'default' => 'left',
							),
							'className'                    => array(
								'type' => 'string',
							),
							'formId'                       => array(
								'type'    => 'string',
								'default' => '0',
							),
							'isHtml'                       => array(
								'type' => 'boolean',
							),
							'formJson'                     => array(
								'type'    => 'object',
								'default' => null,
							),
							'enableAjax'                   => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'enableTabSupport'             => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'formTabIndex'                 => array(
								'type'    => 'number',
								'default' => 0,
							),
							'titleDescStyle'               => array(
								'type'    => 'string',
								'default' => 'yes',
							),
							'titleDescAlignment'           => array(
								'type'    => 'string',
								'default' => 'left',
							),
							'fieldStyle'                   => array(
								'type'    => 'string',
								'default' => 'box',
							),
							'fieldVrPadding'               => array(
								'type'    => 'number',
								'default' => 10,
							),
							'fieldHrPadding'               => array(
								'type'    => 'number',
								'default' => 10,
							),
							'fieldBgColor'                 => array(
								'type'    => 'string',
								'default' => '#fafafa',
							),
							'fieldLabelColor'              => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'fieldInputColor'              => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'fieldBorderStyle'             => array(
								'type'    => 'string',
								'default' => 'solid',
							),
							'fieldBorderWidth'             => array(
								'type'    => 'number',
								'default' => 1,
							),
							'fieldBorderWidthTablet'       => array(
								'type' => 'number',
							),
							'fieldBorderWidthMobile'       => array(
								'type' => 'number',
							),
							'fieldBorderWidthType'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldBorderRadius'            => array(
								'type'    => 'number',
								'default' => 0,
							),
							'fieldBorderColor'             => array(
								'type'    => 'string',
								'default' => '#eeeeee',
							),
							'fieldBorderFocusColor'        => array(
								'type'    => 'string',
								'default' => '',
							),
							'buttonAlignment'              => array(
								'type'    => 'string',
								'default' => 'left',
							),
							'buttonAlignmentTablet'        => array(
								'type'    => 'string',
								'default' => '',
							),
							'buttonAlignmentMobile'        => array(
								'type'    => 'string',
								'default' => '',
							),
							'buttonVrPadding'              => array(
								'type'    => 'number',
								'default' => 10,
							),
							'buttonHrPadding'              => array(
								'type'    => 'number',
								'default' => 25,
							),
							'buttonBorderStyle'            => array(
								'type'    => 'string',
								'default' => 'solid',
							),
							'buttonBorderWidth'            => array(
								'type'    => 'number',
								'default' => 1,
							),
							'buttonBorderWidthTablet'      => array(
								'type' => 'number',
							),
							'buttonBorderWidthMobile'      => array(
								'type' => 'number',
							),
							'buttonBorderWidthType'        => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonBorderRadius'           => array(
								'type'    => 'number',
								'default' => 0,
							),
							'buttonBorderColor'            => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'buttonTextColor'              => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'buttonBgColor'                => array(
								'type' => 'string',
							),
							'buttonBorderHoverColor'       => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'buttonTextHoverColor'         => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'buttonBgHoverColor'           => array(
								'type' => 'string',
							),
							'fieldSpacing'                 => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldSpacingTablet'           => array(
								'type' => 'number',
							),
							'fieldSpacingMobile'           => array(
								'type' => 'number',
							),
							'fieldLabelSpacing'            => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldLabelSpacingTablet'      => array(
								'type' => 'number',
							),
							'fieldLabelSpacingMobile'      => array(
								'type' => 'number',
							),
							'enableLabel'                  => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'labelFontSize'                => array(
								'type'    => 'number',
								'default' => '',
							),
							'labelFontSizeType'            => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'labelFontSizeTablet'          => array(
								'type' => 'number',
							),
							'labelFontSizeMobile'          => array(
								'type' => 'number',
							),
							'labelFontFamily'              => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'labelFontWeight'              => array(
								'type' => 'string',
							),
							'labelLineHeightType'          => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'labelLineHeight'              => array(
								'type' => 'number',
							),
							'labelLineHeightTablet'        => array(
								'type' => 'number',
							),
							'labelLineHeightMobile'        => array(
								'type' => 'number',
							),
							'labelLoadGoogleFonts'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'inputFontSize'                => array(
								'type'    => 'number',
								'default' => '',
							),
							'inputFontSizeType'            => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'inputFontSizeTablet'          => array(
								'type' => 'number',
							),
							'inputFontSizeMobile'          => array(
								'type' => 'number',
							),
							'inputFontFamily'              => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'inputFontWeight'              => array(
								'type' => 'string',
							),
							'inputLineHeightType'          => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'inputLineHeight'              => array(
								'type' => 'number',
							),
							'inputLineHeightTablet'        => array(
								'type' => 'number',
							),
							'inputLineHeightMobile'        => array(
								'type' => 'number',
							),
							'inputLoadGoogleFonts'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'textAreaHeight'               => array(
								'type'    => 'number',
								'default' => 'auto',
							),
							'textAreaHeightTablet'         => array(
								'type' => 'number',
							),
							'textAreaHeightMobile'         => array(
								'type' => 'number',
							),
							'buttonFontSize'               => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonFontSizeType'           => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonFontSizeTablet'         => array(
								'type' => 'number',
							),
							'buttonFontSizeMobile'         => array(
								'type' => 'number',
							),
							'buttonFontFamily'             => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'buttonFontWeight'             => array(
								'type' => 'string',
							),
							'buttonLineHeightType'         => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'buttonLineHeight'             => array(
								'type' => 'number',
							),
							'buttonLineHeightTablet'       => array(
								'type' => 'number',
							),
							'buttonLineHeightMobile'       => array(
								'type' => 'number',
							),
							'buttonLoadGoogleFonts'        => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'enableOveride'                => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'radioCheckSize'               => array(
								'type'    => 'number',
								'default' => '20',
							),
							'radioCheckSizeTablet'         => array(
								'type' => 'number',
							),
							'radioCheckSizeMobile'         => array(
								'type' => 'number',
							),
							'radioCheckBgColor'            => array(
								'type'    => 'string',
								'default' => '#fafafa',
							),
							'radioCheckSelectColor'        => array(
								'type'    => 'string',
								'default' => '',
							),
							'radioCheckLableColor'         => array(
								'type'    => 'string',
								'default' => '',
							),
							'radioCheckBorderColor'        => array(
								'type'    => 'string',
								'default' => '#cbcbcb',
							),
							'radioCheckBorderWidth'        => array(
								'type'    => 'number',
								'default' => '1',
							),
							'radioCheckBorderWidthTablet'  => array(
								'type' => 'number',
							),
							'radioCheckBorderWidthMobile'  => array(
								'type' => 'number',
							),
							'radioCheckBorderWidthType'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'radioCheckBorderRadius'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'radioCheckFontSize'           => array(
								'type'    => 'number',
								'default' => '',
							),
							'radioCheckFontSizeType'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'radioCheckFontSizeTablet'     => array(
								'type' => 'number',
							),
							'radioCheckFontSizeMobile'     => array(
								'type' => 'number',
							),
							'radioCheckFontFamily'         => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'radioCheckFontWeight'         => array(
								'type' => 'string',
							),
							'radioCheckLineHeightType'     => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'radioCheckLineHeight'         => array(
								'type' => 'number',
							),
							'radioCheckLineHeightTablet'   => array(
								'type' => 'number',
							),
							'radioCheckLineHeightMobile'   => array(
								'type' => 'number',
							),
							'radioCheckLoadGoogleFonts'    => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'validationMsgColor'           => array(
								'type'    => 'string',
								'default' => '#ff0000',
							),
							'validationMsgBgColor'         => array(
								'type'    => 'string',
								'default' => '',
							),
							'advancedValidationSettings'   => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'highlightBorderColor'         => array(
								'type'    => 'string',
								'default' => '#ff0000',
							),
							'validationMsgFontSize'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'validationMsgFontSizeType'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'validationMsgFontSizeTablet'  => array(
								'type' => 'number',
							),
							'validationMsgFontSizeMobile'  => array(
								'type' => 'number',
							),
							'validationMsgFontFamily'      => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'validationMsgFontWeight'      => array(
								'type' => 'string',
							),
							'validationMsgLineHeightType'  => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'validationMsgLineHeight'      => array(
								'type' => 'number',
							),
							'validationMsgLineHeightTablet' => array(
								'type' => 'number',
							),
							'validationMsgLineHeightMobile' => array(
								'type' => 'number',
							),
							'validationMsgLoadGoogleFonts' => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'successMsgColor'              => array(
								'type'    => 'string',
								'default' => '',
							),
							'errorMsgColor'                => array(
								'type'    => 'string',
								'default' => '',
							),
							'errorMsgBgColor'              => array(
								'type'    => 'string',
								'default' => '',
							),
							'errorMsgBorderColor'          => array(
								'type'    => 'string',
								'default' => '',
							),
							'msgBorderSize'                => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgBorderSizeType'            => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgBorderRadius'              => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgVrPadding'                 => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgHrPadding'                 => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgFontSize'                  => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgFontSizeType'              => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgFontSizeTablet'            => array(
								'type' => 'number',
							),
							'msgFontSizeMobile'            => array(
								'type' => 'number',
							),
							'msgFontFamily'                => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'msgFontWeight'                => array(
								'type' => 'string',
							),
							'msgLineHeightType'            => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'msgLineHeight'                => array(
								'type' => 'number',
							),
							'msgLineHeightTablet'          => array(
								'type' => 'number',
							),
							'msgLineHeightMobile'          => array(
								'type' => 'number',
							),
							'msgLoadGoogleFonts'           => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'radioCheckBorderRadiusType'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgBorderRadiusType'          => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldBorderRadiusType'        => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonBorderRadiusType'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'successMsgFontSize'           => array(
								'type'    => 'number',
								'default' => '',
							),
							'successMsgFontSizeType'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'successMsgFontSizeTablet'     => array(
								'type' => 'number',
							),
							'successMsgFontSizeMobile'     => array(
								'type' => 'number',
							),
							'successMsgFontFamily'         => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'successMsgFontWeight'         => array(
								'type' => 'string',
							),
							'successMsgLineHeightType'     => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'successMsgLineHeight'         => array(
								'type' => 'number',
							),
							'successMsgLineHeightTablet'   => array(
								'type' => 'number',
							),
							'successMsgLineHeightMobile'   => array(
								'type' => 'number',
							),
							'successMsgLoadGoogleFonts'    => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'msgleftPadding'               => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgrightPadding'              => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgtopPadding'                => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgbottomPadding'             => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgleftMobilePadding'         => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgrightMobilePadding'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgtopMobilePadding'          => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgbottomMobilePadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgleftTabletPadding'         => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgrightTabletPadding'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgtopTabletPadding'          => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgbottomTabletPadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgtabletPaddingUnit'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgmobilePaddingUnit'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgpaddingUnit'               => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgpaddingLink'               => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'buttonleftPadding'            => array(
								'type' => 'number',
							),
							'buttonrightPadding'           => array(
								'type' => 'number',
							),
							'buttontopPadding'             => array(
								'type' => 'number',
							),
							'buttonbottomPadding'          => array(
								'type' => 'number',
							),
							'buttonleftMobilePadding'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonrightMobilePadding'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttontopMobilePadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonbottomMobilePadding'    => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonleftTabletPadding'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonrightTabletPadding'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttontopTabletPadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonbottomTabletPadding'    => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonpaddingLink'            => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'buttontabletPaddingUnit'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonmobilePaddingUnit'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonpaddingUnit'            => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldleftPadding'             => array(
								'type' => 'number',
							),
							'fieldrightPadding'            => array(
								'type' => 'number',
							),
							'fieldtopPadding'              => array(
								'type' => 'number',
							),
							'fieldbottomPadding'           => array(
								'type' => 'number',
							),
							'fieldleftMobilePadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldrightMobilePadding'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldtopMobilePadding'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldbottomMobilePadding'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldleftTabletPadding'       => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldrightTabletPadding'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldtopTabletPadding'        => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldbottomTabletPadding'     => array(
								'type'    => 'number',
								'default' => '',
							),
							'fieldtabletPaddingUnit'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldmobilePaddingUnit'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldpaddingUnit'             => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'fieldpaddingLink'             => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'labelTransform'               => array(
								'type' => 'string',
							),
							'labelDecoration'              => array(
								'type' => 'string',
							),
							'labelFontStyle'               => array(
								'type' => 'string',
							),
							'inputTransform'               => array(
								'type' => 'string',
							),
							'inputDecoration'              => array(
								'type' => 'string',
							),
							'inputFontStyle'               => array(
								'type' => 'string',
							),
							'buttonTransform'              => array(
								'type' => 'string',
							),
							'buttonDecoration'             => array(
								'type' => 'string',
							),
							'buttonFontStyle'              => array(
								'type' => 'string',
							),
							'radioCheckTransform'          => array(
								'type' => 'string',
							),
							'radioCheckDecoration'         => array(
								'type' => 'string',
							),
							'radioCheckFontStyle'          => array(
								'type' => 'string',
							),
							'validationMsgTransform'       => array(
								'type' => 'string',
							),
							'validationMsgDecoration'      => array(
								'type' => 'string',
							),
							'validationMsgFontStyle'       => array(
								'type' => 'string',
							),
							'msgTransform'                 => array(
								'type' => 'string',
							),
							'msgDecoration'                => array(
								'type' => 'string',
							),
							'msgFontStyle'                 => array(
								'type' => 'string',
							),
							'successMsgTransform'          => array(
								'type' => 'string',
							),
							'successMsgDecoration'         => array(
								'type' => 'string',
							),
							'successMsgFontStyle'          => array(
								'type' => 'string',
							),
							'isPreview'                    => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'labelLetterSpacing'           => array(
								'type'    => 'number',
								'default' => '',
							),
							'labelLetterSpacingType'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'labelLetterSpacingMobile'     => array(
								'type' => 'number',
							),
							'labelLetterSpacingTablet'     => array(
								'type' => 'number',
							),
							'inputLetterSpacing'           => array(
								'type'    => 'number',
								'default' => '',
							),
							'inputLetterSpacingType'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'inputLetterSpacingMobile'     => array(
								'type' => 'number',
							),
							'inputLetterSpacingTablet'     => array(
								'type' => 'number',
							),
							'buttonLetterSpacing'          => array(
								'type'    => 'number',
								'default' => '',
							),
							'buttonLetterSpacingType'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'buttonLetterSpacingMobile'    => array(
								'type' => 'number',
							),
							'buttonLetterSpacingTablet'    => array(
								'type' => 'number',
							),
							'radioCheckLetterSpacing'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'radioCheckLetterSpacingType'  => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'radioCheckLetterSpacingMobile' => array(
								'type' => 'number',
							),
							'radioCheckLetterSpacingTablet' => array(
								'type' => 'number',
							),
							'validationMsgLetterSpacing'   => array(
								'type'    => 'number',
								'default' => '',
							),
							'validationMsgLetterSpacingType' => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'validationMsgLetterSpacingMobile' => array(
								'type' => 'number',
							),
							'validationMsgLetterSpacingTablet' => array(
								'type' => 'number',
							),
							'msgLetterSpacing'             => array(
								'type'    => 'number',
								'default' => '',
							),
							'msgLetterSpacingType'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'msgLetterSpacingMobile'       => array(
								'type' => 'number',
							),
							'msgLetterSpacingTablet'       => array(
								'type' => 'number',
							),
							'successMsgLetterSpacing'      => array(
								'type'    => 'number',
								'default' => '',
							),
							'successMsgLetterSpacingType'  => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'successMsgLetterSpacingMobile' => array(
								'type' => 'number',
							),
							'successMsgLetterSpacingTablet' => array(
								'type' => 'number',
							),
						),
						'render_callback' => array( $this, 'render_html' ),
					)
				);
			}

		}

		/**
		 * Render Gravity Form HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.10.0
		 */
		public function render_html( $attributes ) {

			$form = $attributes['formId'];

			$classes = array(
				'uagb-gf-styler__align-' . $attributes['align'],
				'uagb-gf-styler__field-style-' . $attributes['fieldStyle'],
				'uagb-gf-styler__gform-heading-' . $attributes['titleDescStyle'],
				'uagb-gf-styler__btn-align-' . $attributes['buttonAlignment'],
				'uagb-gf-styler__btn-align-tablet-' . $attributes['buttonAlignmentTablet'],
				'uagb-gf-styler__btn-align-mobile-' . $attributes['buttonAlignmentMobile'],
			);

			if ( $attributes['enableOveride'] ) {
				$classes[] = 'uagb-gf-styler__check-style-enabled';
			}

			if ( $attributes['enableLabel'] ) {
				$classes[] = 'uagb-gf-styler__hide-label';
			}

			if ( $attributes['advancedValidationSettings'] ) {
				$classes[] = 'uagb-gf-styler__error-yes';
			}

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$main_classes = array(
				'wp-block-uagb-gf-styler',
				'uagb-gf-styler__outer-wrap',
				'uagb-block-' . $attributes['block_id'],
				$desktop_class,
				$tab_class,
				$mob_class,
			);

			if ( isset( $attributes['className'] ) ) {
				$main_classes[] = $attributes['className'];
			}

			ob_start();

			if ( $form && 0 !== $form && -1 !== $form ) {

				$shortcode_attrs = array(
					'id'       => $form,
					'ajax'     => ( $attributes['enableAjax'] ) ? 'true' : 'false',
					'tabindex' => ( $attributes['enableTabSupport'] ) ? $attributes['formTabIndex'] : '',
				);

				if ( isset( $attributes['titleDescStyle'] ) && 'none' === $attributes['titleDescStyle'] ) {
					$shortcode_attrs['title']       = false;
					$shortcode_attrs['description'] = false;
				}

				$attrs = array();

				foreach ( $shortcode_attrs as $key => $attr ) {
					$attrs[] = $key . '=' . $attr;
				}
				?>
				<div class = "<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>">
					<div class = "<?php echo esc_attr( implode( ' ', $classes ) ); ?>">
					<?php echo do_shortcode( '[gravityforms ' . esc_attr( implode( ' ', $attrs ) ) . '"]' ); ?>
					</div>
				</div>
				<?php
			}
			return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'UAGB_GF_Styler' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_GF_Styler::get_instance();
}
PK�][�O��>�>�Bultimate-addons-for-gutenberg/blocks-config/faq/class-uagb-faq.phpnu�[���<?php
/**
 * UAGB faq.
 *
 * @package UAGB
 * @since 2.13.5
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Faq' ) ) {

	/**
	 * Class UAGB_Faq.
	 *
	 * @since 2.13.5
	 */
	class UAGB_Faq {

		/**
		 * Member Variable
		 *
		 * @var UAGB_Faq
		 * @since 2.13.5
		 */
		private static $instance;

		/**
		 * Initiator
		 *
		 * @return UAGB_Faq
		 * @since 2.13.5
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 2.13.5
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `faq` block on server.
		 *
		 * @since 2.13.5
		 * @return void
		 */
		public function register_blocks() {

			register_block_type(
				'uagb/faq',
				array(
					'attributes'      => array(
						'block_id'                     => array(
							'type' => 'string',
						),
						'anchor'                       => array(
							'type'    => 'string',
							'default' => '',
						),
						'layout'                       => array(
							'type'    => 'string',
							'default' => 'accordion',
						),
						'inactiveOtherItems'           => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'expandFirstItem'              => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'enableSchemaSupport'          => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'align'                        => array(
							'type'         => 'string',
							'default'      => 'left',
							'UAGCopyPaste' => array(
								'styleType' => 'overall-alignment',
							),
						),
						'blockTopPadding'              => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-padding',
							),
						),
						'blockRightPadding'            => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-padding',
							),
						),
						'blockLeftPadding'             => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-padding',
							),
						),
						'blockBottomPadding'           => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-padding',
							),
						),
						'blockTopPaddingTablet'        => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-padding-tablet',
							),
						),
						'blockRightPaddingTablet'      => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-padding-tablet',
							),
						),
						'blockLeftPaddingTablet'       => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-padding-tablet',
							),
						),
						'blockBottomPaddingTablet'     => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-padding-tablet',
							),
						),
						'blockTopPaddingMobile'        => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-padding-mobile',
							),
						),
						'blockRightPaddingMobile'      => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-padding-mobile',
							),
						),
						'blockLeftPaddingMobile'       => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-padding-mobile',
							),
						),
						'blockBottomPaddingMobile'     => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-padding-mobile',
							),
						),
						'blockPaddingUnit'             => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-padding-unit',
							),
						),

						'blockPaddingUnitTablet'       => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-padding-unit-tablet',
							),
						),
						'blockPaddingUnitMobile'       => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-padding-unit-mobile',
							),
						),
						'blockPaddingLink'             => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'blockTopMargin'               => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-margin',
							),
						),
						'blockRightMargin'             => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-margin',
							),
						),
						'blockLeftMargin'              => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-margin',
							),
						),
						'blockBottomMargin'            => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-margin',
							),
						),
						'blockTopMarginTablet'         => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-margin-tablet',
							),
						),
						'blockRightMarginTablet'       => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-margin-tablet',
							),
						),
						'blockLeftMarginTablet'        => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-margin-tablet',
							),
						),
						'blockBottomMarginTablet'      => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-margin-tablet',
							),
						),
						'blockTopMarginMobile'         => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-top-margin-mobile',
							),
						),
						'blockRightMarginMobile'       => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-right-margin-mobile',
							),
						),
						'blockLeftMarginMobile'        => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-left-margin-mobile',
							),
						),
						'blockBottomMarginMobile'      => array(
							'type'         => 'number',
							'isGBSStyle'   => true,
							'UAGCopyPaste' => array(
								'styleType' => 'block-bottom-margin-mobile',
							),
						),
						'blockMarginUnit'              => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-margin-unit',
							),
						),
						'blockMarginUnitTablet'        => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-margin-unit-tablet',
							),
						),
						'blockMarginUnitMobile'        => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'block-margin-unit-mobile',
							),
						),
						'blockMarginLink'              => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'enableSeparator'              => array(
							'type'         => 'boolean',
							'default'      => false,
							'UAGCopyPaste' => array(
								'styleType' => 'enable-separator',
							),
						),
						'rowsGap'                      => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'row-gap',
							),
						),
						'rowsGapTablet'                => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'row-gap-tablet',
							),
						),
						'rowsGapMobile'                => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'row-gap-mobile',
							),
						),
						'rowsGapUnit'                  => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'row-gap-type',
							),
						),
						'columnsGap'                   => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'column-gap',
							),
						),
						'columnsGapTablet'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'column-gap-tablet',
							),
						),
						'columnsGapMobile'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'column-gap-mobile',
							),
						),
						'columnsGapUnit'               => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'column-gap-type',
							),
						),
						'boxBgType'                    => array(
							'type'         => 'string',
							'default'      => 'color',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-bg-type',
							),
						),
						'boxBgHoverType'               => array(
							'type'         => 'string',
							'default'      => 'color',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-bg-hover-type',
							),
						),
						'boxBgColor'                   => array(
							'type'         => 'string',
							'default'      => '',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-bg-color',
							),
						),
						'boxBgHoverColor'              => array(
							'type'         => 'string',
							'default'      => '',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-bg-hover-color',
							),
						),
						'boxPaddingTypeMobile'         => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-padding-type-mobile',
							),
							'default'      => 'px',
						),
						'boxPaddingTypeTablet'         => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-padding-type-tablet',
							),
						),
						'boxPaddingTypeDesktop'        => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'faq-padding-type-desktop',
							),
						),
						'vBoxPaddingMobile'            => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-vertical-padding-mobile',
							),
						),
						'hBoxPaddingMobile'            => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-horizontal-padding-mobile',
							),
						),
						'vBoxPaddingTablet'            => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-vertical-padding-tablet',
							),
						),
						'hBoxPaddingTablet'            => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-horizontal-padding-tablet',
							),
						),
						'vBoxPaddingDesktop'           => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-vertical-padding-desktop',
							),
						),
						'hBoxPaddingDesktop'           => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'faq-horizontal-padding-desktop',
							),
						),
						'borderHoverColor'             => array(
							'type' => 'string',
						),
						'borderStyle'                  => array(
							'type'    => 'string',
							'default' => 'solid',
						),
						'borderWidth'                  => array(
							'type'    => 'number',
							'default' => 1,
						),
						'borderRadius'                 => array(
							'type'    => 'number',
							'default' => 2,
						),
						'borderColor'                  => array(
							'type'    => 'string',
							'default' => '#D2D2D2',
						),
						'questionTextColor'            => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-color',
							),
						),
						'questionTextActiveColor'      => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-hover-color',
							),
						),
						'questionTextBgColor'          => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-bg-color',
							),
						),
						'questionTextActiveBgColor'    => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-hover-bg-color',
							),
						),
						'questionPaddingTypeDesktop'   => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-padding-type-desktop',
							),
							'default'      => 'px',
						),
						'questionPaddingTypeTablet'    => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-padding-type-tablet',
							),
							'default'      => 'px',
						),
						'questionPaddingTypeMobile'    => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-padding-type-mobile',
							),
							'default'      => 'px',
						),
						'vquestionPaddingMobile'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-vertical-padding-mobile',
							),
							'default'      => 10,
						),
						'vquestionPaddingTablet'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-vertical-padding-tablet',
							),
							'default'      => 10,
						),
						'vquestionPaddingDesktop'      => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-vertical-padding-desktop',
							),
							'default'      => 10,
						),
						'hquestionPaddingMobile'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-horizontal-padding-mobile',
							),
							'default'      => 10,
						),
						'hquestionPaddingTablet'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-horizontal-padding-tablet',
							),
							'default'      => 10,
						),
						'hquestionPaddingDesktop'      => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-horizontal-padding-desktop',
							),
							'default'      => 10,
						),
						'answerTextColor'              => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-color',
							),
						),
						'answerPaddingTypeDesktop'     => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-padding-type-desktop',
							),
						),
						'answerPaddingTypeTablet'      => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-padding-type-tablet',
							),
						),
						'answerPaddingTypeMobile'      => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-padding-type-mobile',
							),
						),
						'vanswerPaddingMobile'         => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-vertical-padding-mobile',
							),
							'default'      => 10,
						),
						'vanswerPaddingTablet'         => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-vertical-padding-tablet',
							),
							'default'      => 10,
						),
						'iconBgSize'                   => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-bg-size',
							),
						),
						'iconBgSizeTablet'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-bg-size-tablet',
							),
						),
						'iconBgSizeMobile'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-bg-size-mobile',
							),
						),
						'iconBgSizeType'               => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-bg-size-type',
							),
						),
						'columns'                      => array(
							'type'         => 'number',
							'default'      => 2,
							'UAGCopyPaste' => array(
								'styleType' => 'column-count',
							),
						),
						'tcolumns'                     => array(
							'type'         => 'number',
							'default'      => 2,
							'UAGCopyPaste' => array(
								'styleType' => 'column-count-tablet',
							),
						),
						'mcolumns'                     => array(
							'type'         => 'number',
							'default'      => 1,
							'UAGCopyPaste' => array(
								'styleType' => 'column-count-mobile',
							),
						),
						'schema'                       => array(
							'type'    => 'string',
							'default' => '',
						),
						'enableToggle'                 => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'equalHeight'                  => array(
							'type'         => 'boolean',
							'default'      => true,
							'UAGCopyPaste' => array(
								'styleType' => 'equal-height',
							),
						),
						'questionLeftPaddingTablet'    => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-left-padding-tablet',
							),
						),
						'questionBottomPaddingTablet'  => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-bottom-padding-tablet',
							),
						),
						'questionLeftPaddingDesktop'   => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-left-padding-desktop',
							),
						),
						'questionBottomPaddingDesktop' => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-bottom-padding-desktop',
							),
						),
						'questionLeftPaddingMobile'    => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-left-padding-mobile',
							),
						),
						'questionBottomPaddingMobile'  => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-bottom-padding-mobile',
							),
						),
						'headingTag'                   => array(
							'type'     => 'string',
							'selector' => 'span,p,h1,h2,h3,h4,h5,h6',
							'default'  => 'span',
						),
						'questionSpacingLink'          => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'answerSpacingLink'            => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'answerTopPadding'             => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-top-padding',
							),
						),
						'answerRightPadding'           => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-right-padding',
							),
						),
						'answerBottomPadding'          => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-bottom-padding',
							),
						),
						'answerLeftPadding'            => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-left-padding',
							),
						),
						'answerTopPaddingTablet'       => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-top-padding-tablet',
							),
						),
						'answerRightPaddingTablet'     => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-right-padding-tablet',
							),
						),
						'answerBottomPaddingTablet'    => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-bottom-padding-tablet',
							),
						),
						'answerLeftPaddingTablet'      => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-left-padding-tablet',
							),
						),
						'answerTopPaddingMobile'       => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-top-padding-mobile',
							),
						),
						'answerRightPaddingMobile'     => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-right-padding-mobile',
							),
						),
						'answerBottomPaddingMobile'    => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-bottom-padding-mobile',
							),
						),
						'answerLeftPaddingMobile'      => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'desc-left-padding-mobile',
							),
						),
						'isPreview'                    => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'questionLetterSpacing'        => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-letter-spacing',
							),
						),
						'questionLetterSpacingTablet'  => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-letter-spacing-tablet',
							),
						),
						'questionLetterSpacingMobile'  => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-letter-spacing-mobile',
							),
						),
						'questionLetterSpacingType'    => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-letter-spacing-type',
							),
						),
						'answerLetterSpacing'          => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-letter-spacing',
							),
						),
						'answerLetterSpacingTablet'    => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-letter-spacing-tablet',
							),
						),
						'answerLetterSpacingMobile'    => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-letter-spacing-mobile',
							),
						),
						'answerLetterSpacingType'      => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-letter-spacing-type',
							),
						),
						'iconBgColor'                  => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-bg-color',
							),
						),
						'iconColor'                    => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-color',
							),
						),
						'iconActiveColor'              => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-hover-color',
							),
						),
						'gapBtwIconQUestion'           => array(
							'type'         => 'number',
							'default'      => 10,
							'UAGCopyPaste' => array(
								'styleType' => 'icon-spacing',
							),
						),
						'gapBtwIconQUestionTablet'     => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-spacing-tablet',
							),
						),
						'gapBtwIconQUestionMobile'     => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-spacing-mobile',
							),
						),
						'questionloadGoogleFonts'      => array(
							'type'         => 'boolean',
							'default'      => false,
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-load-google-fonts',
							),
						),
						'answerloadGoogleFonts'        => array(
							'type'         => 'boolean',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-load-google-fonts',
							),
							'default'      => false,
						),
						'questionFontFamily'           => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-family',
							),
							'default'      => 'Default',
						),
						'questionFontWeight'           => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-weight',
							),
						),
						'questionFontStyle'            => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-style',
							),
							'default'      => 'normal',
						),
						'questionTransform'            => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-transform',
							),
						),
						'questionDecoration'           => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-decoration',
							),
						),
						'questionFontSize'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-size',
							),
						),
						'questionFontSizeType'         => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-size-type',
							),
							'default'      => 'px',
						),
						'questionFontSizeTablet'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-size-tablet',
							),
						),
						'questionFontSizeMobile'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-font-size-mobile',
							),
						),
						'questionLineHeight'           => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-line-height',
							),
						),
						'questionLineHeightType'       => array(
							'type'         => 'string',
							'default'      => 'em',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-line-height-type',
							),
						),
						'questionLineHeightTablet'     => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-line-height-tablet',
							),
						),
						'questionLineHeightMobile'     => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'main-title-line-height-mobile',
							),
						),
						'answerFontFamily'             => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-family',
							),
							'default'      => 'Default',
						),
						'answerFontWeight'             => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-weight',
							),
						),
						'answerFontStyle'              => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-style',
							),
							'default'      => 'normal',
						),
						'answerTransform'              => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-transform',
							),
						),
						'answerDecoration'             => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-decoration',
							),
						),
						'answerFontSize'               => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-size',
							),
						),
						'answerFontSizeType'           => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-size-type',
							),
							'default'      => 'px',
						),
						'answerFontSizeTablet'         => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-size-tablet',
							),
						),
						'answerFontSizeMobile'         => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-font-size-mobile',
							),
						),
						'answerLineHeight'             => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-line-height',
							),
						),
						'answerLineHeightType'         => array(
							'type'         => 'string',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-line-height-type',
							),
							'default'      => 'em',
						),
						'answerLineHeightTablet'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-line-height-tablet',
							),
						),
						'answerLineHeightMobile'       => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'desc-line-height-mobile',
							),
						),
						'icon'                         => array(
							'type'    => 'string',
							'default' => 'plus',
						),
						'iconActive'                   => array(
							'type'    => 'string',
							'default' => 'minus',
						),
						'iconAlign'                    => array(
							'type'         => 'string',
							'default'      => 'row',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-align',
							),
						),
						'iconSize'                     => array(
							'type'         => 'number',
							'default'      => 12,
							'UAGCopyPaste' => array(
								'styleType' => 'icon-size',
							),
						),
						'iconSizeTablet'               => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-size-tablet',
							),
						),
						'iconSizeMobile'               => array(
							'type'         => 'number',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-size-mobile',
							),
						),
						'iconSizeType'                 => array(
							'type'         => 'string',
							'default'      => 'px',
							'UAGCopyPaste' => array(
								'styleType' => 'icon-size-type',
							),
						),
						'question'                     => array(
							'type'    => 'string',
							'default' => __( 'What is FAQ?', 'ultimate-addons-for-gutenberg' ),
						),
						'answer'                       => array(
							'type'    => 'string',
							'default' => __(
								'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
								'ultimate-addons-for-gutenberg'
							),
						),
					),
					'render_callback' => array( $this, 'render_faq_block' ),
				)
			);

			register_block_type(
				'uagb/faq-child',
				array(
					'attributes'      => array(
						'isPreview'  => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'block_id'   => array(
							'type' => 'string',
						),
						'anchor'     => array(
							'type'    => 'string',
							'default' => '',
						),
						'question'   => array(
							'type'    => 'string',
							'default' => __( 'What is FAQ?', 'ultimate-addons-for-gutenberg' ),
						),
						'answer'     => array(
							'type'    => 'string',
							'default' => __(
								'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
								'ultimate-addons-for-gutenberg'
							),
						),
						'icon'       => array(
							'type'    => 'string',
							'default' => 'plus',
						),
						'iconActive' => array(
							'type'    => 'string',
							'default' => 'minus',
						),
						'layout'     => array(
							'type'    => 'string',
							'default' => 'accordion',
						),
						'headingTag' => array(
							'type'     => 'string',
							'selector' => 'span,p,h1,h2,h3,h4,h5,h6',
							'default'  => 'span',
						),
					),
					'render_callback' => array( $this, 'render_faq_child_block' ),
				) 
			);
		}

		/**
		 * Renders the UAGB FAQ block.
		 *
		 * @param  array    $attributes Block attributes.
		 * @param  string   $content    Block default content.
		 * @param  WP_Block $block      Block instance.
		 * @since 2.13.5
		 * @return string Rendered block HTML.
		 */
		public function render_faq_block( $attributes, $content, $block ) {
			global $post; // Use the global post object to get the current post.
			$block_id            = isset( $attributes['block_id'] ) ? $attributes['block_id'] : '';
			$enable_schema       = $attributes['enableSchemaSupport'];
			$equal_height        = $attributes['equalHeight'];
			$icon_align          = $attributes['iconAlign'];
			$layout              = $attributes['layout'];
			$expand_first_item   = ( true === $attributes['expandFirstItem'] ) ? 'uagb-faq-expand-first-true' : 'uagb-faq-expand-first-false';
			$inactive_other_item = ( true === $attributes['inactiveOtherItems'] ) ? 'uagb-faq-inactive-other-true' : 'uagb-faq-inactive-other-false';
			$enable_toggle       = isset( $attributes['enableToggle'] ) ? 'true' : 'false';
			$anchor              = ( isset( $attributes['anchor'] ) ) ? $attributes['anchor'] : '';
			$anchor              = empty( $anchor ) ? '' : 'id="' . esc_attr( $anchor ) . '"';
			// Get the current page URL.
			$page_url = get_permalink( $post );
			// Initialize the schema JSON structure.
			$json_data = array(
				'@context'   => 'https://schema.org',
				'@type'      => 'FAQPage',
				'@id'        => $page_url,
				'mainEntity' => array(),
			);
			// Collect data from inner blocks for the schema.
			$inner_blocks_html = '';
			foreach ( $block->inner_blocks as $inner_block ) {
				if ( is_object( $inner_block ) && method_exists( $inner_block, 'render' ) ) {
					$inner_blocks_html .= $inner_block->render();
					// Assuming inner blocks have 'question' and 'answer' attributes.
					if ( isset( $inner_block->attributes['question'] ) && isset( $inner_block->attributes['answer'] ) ) {
						$faq_data                  = array(
							'@type'          => 'Question',
							'name'           => $inner_block->attributes['question'],
							'acceptedAnswer' => array(
								'@type' => 'Answer',
								'text'  => $inner_block->attributes['answer'],
							),
						);
						$json_data['mainEntity'][] = $faq_data;
					}
				}
			}
			// Render schema if enabled.
			$schema_output = '';
			if ( $enable_schema && ! empty( $json_data['mainEntity'] ) ) {
				$schema_output = '<script type="application/ld+json">' . wp_json_encode( $json_data ) . '</script>';
			}
			// Add equal height class if enabled.
			$equal_height_class = $equal_height ? 'uagb-faq-equal-height' : '';
			$desktop_class      = '';
			$tab_class          = '';
			$mob_class          = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extension_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extension_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}
			$zindex     = $zindex_extension_enabled ? 'uag-blocks-common-selector' : '';
			$class_name = ( isset( $attributes['className'] ) ) ? $attributes['className'] : '';
			// Build the block's HTML.
			$output  = '<div class="' . esc_attr( "wp-block-uagb-faq uagb-faq__outer-wrap uagb-block-{$block_id} uagb-faq-icon-{$icon_align} uagb-faq-layout-{$layout} {$expand_first_item} {$inactive_other_item} uagb-faq__wrap uagb-buttons-layout-wrap {$equal_height_class} {$desktop_class} {$tab_class} {$mob_class} {$zindex} {$class_name}" ) . '" ' . $anchor . 'data-faqtoggle="' . esc_attr( $enable_toggle ) . '" role="tablist">';
			$output .= $schema_output;
			$output .= $inner_blocks_html;
			$output .= '</div>';

			return $output;
		}

		/**
		 * Render faq icon function.
		 *
		 * @param string $icon Icon name.
		 * @param string $class Icon class.
		 * @since 2.13.5
		 * @return string|false Rendered icon HTML.
		 */
		public function faq_render_icon( $icon, $class ) {
			ob_start();
			?>
			<span class="<?php echo esc_attr( $class ); ?> uagb-faq-icon-wrap">
				<?php	
				echo UAGB_Helper::render_svg_html( $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped & sanitize inside render_svg_html().
				?>
			</span>
			<?php
			return ob_get_clean();
		}

		/**
		 * Renders the UAGB FAQ child block.
		 *
		 * @param  array    $attributes Block attributes.
		 * @param  string   $content    Block default content.
		 * @param  WP_Block $block      Block instance.
		 * @since 2.13.5
		 * @return string Rendered block HTML.
		 */
		public function render_faq_child_block( $attributes, $content, $block ) {
			// Extract attributes.
			$block_id              = isset( $attributes['block_id'] ) ? $attributes['block_id'] : '';
			$question              = $attributes['question'];
			$answer                = $attributes['answer'];
			$icon                  = isset( $attributes['icon'] ) ? $attributes['icon'] : 'plus';
			$icon_active           = isset( $attributes['iconActive'] ) ? $attributes['iconActive'] : 'minus';
			$layout                = $attributes['layout'];
			$array_of_allowed_HTML = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'span', 'p' );
			$heading_tag           = UAGB_Helper::title_tag_allowed_html( $attributes['headingTag'], $array_of_allowed_HTML, 'span' );

			// Render icon and active icon.
			$icon_output        = $this->faq_render_icon( $icon, 'uagb-icon' );
			$icon_active_output = $this->faq_render_icon( $icon_active, 'uagb-icon-active' );
			$class_name         = ( isset( $attributes['className'] ) ) ? $attributes['className'] : '';
			$anchor             = ( isset( $attributes['anchor'] ) ) ? $attributes['anchor'] : '';
			$anchor             = empty( $anchor ) ? '' : 'id="' . esc_attr( $anchor ) . '"';

			// Build the block's HTML.
			$output  = '<div class="' . esc_attr( "wp-block-uagb-faq-child uagb-faq-child__outer-wrap uagb-faq-item uagb-block-{$block_id} {$class_name}" ) . '" ' . $anchor . 'role="tab" tabindex="0">';
			$output .= '<div class="uagb-faq-questions-button uagb-faq-questions">';
			if ( 'accordion' === $layout ) {
				$output .= $icon_output;
				$output .= $icon_active_output;
				$output .= '<' . esc_attr( $heading_tag ) . ' class="uagb-question">' . wp_kses_post( $question ) . '</' . esc_attr( $heading_tag ) . '>';
			} else {
				$output .= '<' . esc_attr( $heading_tag ) . ' class="uagb-question">' . wp_kses_post( $question ) . '</' . esc_attr( $heading_tag ) . '>';
			}
			$output .= '</div>';
			$output .= '<div class="uagb-faq-content"><p>' . wp_kses_post( $answer ) . '</p></div>';
			$output .= '</div>';

			return $output;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Faq' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Faq::get_instance();
}
PK�][,d7)�G�GGultimate-addons-for-gutenberg/blocks-config/icon/class-spectra-icon.phpnu�[���<?php
/**
 * Spectra - Icon
 *
 * @since 2.12.5
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'Spectra_Icon' ) ) {

	/**
	 * Class Spectra_Icon.
	 * 
	 * @since 2.12.5
	 */
	final class Spectra_Icon {

		/**
		 * Member Variable
		 *
		 * @since 2.12.5
		 * @var Spectra_Icon
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 2.12.5
		 * @return Spectra_Icon
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 * 
		 * @since 2.12.5
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_icon' ) );
			
		}

		/**
		 * Registers the `icon` block on server.
		 *
		 * @since 2.12.5
		 * @return void
		 */
		public function register_icon() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			$icon_border_attributes = array();
			$icon_border_attributes = UAGB_Block_Helper::uag_generate_php_border_attribute( 'icon' ); // @phpstan-ignore-line
				
			register_block_type(
				'uagb/icon',
				array(
					'attributes'      => array_merge(
						array(
							'icon'           => array(
								'type'    => 'string',
								'default' => 'circle-check',
							),
							// Size.
							'iconSize'       => array(
								'type'    => 'number',
								'default' => 40,
							),
							'iconSizeTablet' => array(
								'type' => 'number',
							),
							'iconSizeMobile' => array(
								'type' => 'number',
							),
							'iconSizeUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
						),
						// Alignment.
						array(
							'align'       => array(
								'type'    => 'string',
								'default' => 'center',
							),
							'alignTablet' => array(
								'type'    => 'string',
								'default' => '',
							),
							'alignMobile' => array(
								'type'    => 'string',
								'default' => '',
							),
						),
						// Color.
						array(
							'iconColor'                    => array(
								'type'    => 'string',
								'default' => '#333',
							),
							'iconBorderColor'              => array(
								'type'    => 'string',
								'default' => '',
							),
							'iconBackgroundColorType'      => array(
								'type'    => 'string',
								'default' => 'classic',
							),
							'iconBackgroundColor'          => array(
								'type'    => 'string',
								'default' => '',
							),
							'iconBackgroundGradientColor'  => array(
								'type'    => 'string',
								'default' => 'linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)',
							),
							'iconHoverColor'               => array(
								'type'    => 'string',
								'default' => '',
							),
							'iconHoverBackgroundColorType' => array(
								'type'    => 'string',
								'default' => 'classic',
							),
							'iconHoverBackgroundColor'     => array(
								'type' => 'string',
							),
							'iconHoverBackgroundGradientColor' => array(
								'type'    => 'string',
								'default' => 'linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)',
							),
						),
						// Rotation.
						array(
							'rotation'     => array(
								'type'    => 'number',
								'default' => 0,
							),
							'rotationUnit' => array(
								'type'    => 'string',
								'default' => 'deg',
							),
							'block_id'     => array(
								'type' => 'string',
							),
						),
						// Link related attributes.
						array(
							'link'                  => array(
								'type'    => 'string',
								'default' => '',
							),
							'target'                => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'disableLink'           => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'iconAccessabilityMode' => array(
								'type'    => 'string',
								'default' => 'svg',
							),
							'iconAccessabilityDesc' => array(
								'type'    => 'string',
								'default' => '',
							),
						),
						// Padding.
						array(
							'iconTopPadding'          => array(
								'type'    => 'number',
								'default' => 5,
							),
							'iconRightPadding'        => array(
								'type'    => 'number',
								'default' => 5,
							),
							'iconLeftPadding'         => array(
								'type'    => 'number',
								'default' => 5,
							),
							'iconBottomPadding'       => array(
								'type'    => 'number',
								'default' => 5,
							),
							'iconTopTabletPadding'    => array(
								'type' => 'number',
							),
							'iconRightTabletPadding'  => array(
								'type' => 'number',
							),
							'iconLeftTabletPadding'   => array(
								'type' => 'number',
							),
							'iconBottomTabletPadding' => array(
								'type' => 'number',
							),
							'iconTopMobilePadding'    => array(
								'type' => 'number',
							),
							'iconRightMobilePadding'  => array(
								'type' => 'number',
							),
							'iconLeftMobilePadding'   => array(
								'type' => 'number',
							),
							'iconBottomMobilePadding' => array(
								'type' => 'number',
							),
							'iconPaddingUnit'         => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconTabletPaddingUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconMobilePaddingUnit'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconPaddingLink'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
						),
						// Margin.
						array(
							'iconTopMargin'              => array(
								'type' => 'number',
							),
							'iconRightMargin'            => array(
								'type' => 'number',
							),
							'iconLeftMargin'             => array(
								'type' => 'number',
							),
							'iconBottomMargin'           => array(
								'type' => 'number',
							),
							'iconTopTabletMargin'        => array(
								'type' => 'number',
							),
							'iconRightTabletMargin'      => array(
								'type' => 'number',
							),
							'iconLeftTabletMargin'       => array(
								'type' => 'number',
							),
							'iconBottomTabletMargin'     => array(
								'type' => 'number',
							),
							'iconTopMobileMargin'        => array(
								'type' => 'number',
							),
							'iconRightMobileMargin'      => array(
								'type' => 'number',
							),
							'iconLeftMobileMargin'       => array(
								'type' => 'number',
							),
							'iconBottomMobileMargin'     => array(
								'type' => 'number',
							),
							'iconMarginUnit'             => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconTabletMarginUnit'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconMobileMarginUnit'       => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'iconMarginLink'             => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'isPreview'                  => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'iconBorderStyle'            => array(
								'type'    => 'string',
								'default' => 'default',
							),
							'useSeparateBoxShadows'      => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'iconShadowColor'            => array(
								'type'    => 'string',
								'default' => '#00000070',
							),
							'iconShadowHOffset'          => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconShadowVOffset'          => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconShadowBlur'             => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowColor'         => array(
								'type'    => 'string',
								'default' => '#00000070',
							),
							'iconBoxShadowHOffset'       => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowVOffset'       => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowBlur'          => array(
								'type' => 'number',
							),
							'iconBoxShadowSpread'        => array(
								'type' => 'number',
							),
							'iconBoxShadowPosition'      => array(
								'type'    => 'string',
								'default' => 'outset',
							),
							'iconShadowColorHover'       => array(
								'type'    => 'string',
								'default' => '#00000070',
							),
							'iconShadowHOffsetHover'     => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconShadowVOffsetHover'     => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconShadowBlurHover'        => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowColorHover'    => array(
								'type' => 'string',
							),
							'iconBoxShadowHOffsetHover'  => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowVOffsetHover'  => array(
								'type'    => 'number',
								'default' => 0,
							),
							'iconBoxShadowBlurHover'     => array(
								'type' => 'number',
							),
							'iconBoxShadowSpreadHover'   => array(
								'type' => 'number',
							),
							'iconBoxShadowPositionHover' => array(
								'type'    => 'string',
								'default' => 'outset',
							),
						),
						// Responsive Borders.
						$icon_border_attributes
					),
					'render_callback' => array( $this, 'render_uagb_icon' ),
				)
			);
	  
			
		}

		/**
		 * Check if a URL has a protocol (http/https).
		 *
		 * @since 2.12.5
		 * 
		 * @param string $url The URL to check.
		 * @return bool Whether the URL has a protocol.
		 */
		public static function get_protocol( $url ) {
			$urlParts = wp_parse_url( $url );

			if ( is_array( $urlParts ) ) {
				return isset( $urlParts['scheme'] );
			}
			return false;
		}

		/**
		 * Prepend 'http://' to a URL if it doesn't have a protocol.
		 *
		 * @since 2.12.5
		 * 
		 * @param string $url The URL to prepend 'http://' to.
		 * @return string The modified URL.
		 */
		public static function prepend_http( $url ) {
			return ( ! empty( $url ) && ! self::get_protocol( $url ) ) ? 'http://' . $url : $url;
		}


		/**
		 * Renders the icon block.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.12.5
		 * @return string|false
		 */
		public function render_uagb_icon( $attributes ) {
			
			$block_id               = 'uagb-block-' . $attributes['block_id'];
			$iconBottomMargin       = isset( $attributes['iconBottomMargin'] ) ? $attributes['iconBottomMargin'] : '';
			$iconLeftMargin         = isset( $attributes['iconLeftMargin'] ) ? $attributes['iconLeftMargin'] : '';
			$iconRightMargin        = isset( $attributes['iconRightMargin'] ) ? $attributes['iconRightMargin'] : '';
			$iconTopMargin          = isset( $attributes['iconTopMargin'] ) ? $attributes['iconTopMargin'] : '';
			$iconBottomTabletMargin = isset( $attributes['iconBottomTabletMargin'] ) ? $attributes['iconBottomTabletMargin'] : '';
			$iconLeftTabletMargin   = isset( $attributes['iconLeftTabletMargin'] ) ? $attributes['iconLeftTabletMargin'] : '';
			$iconRightTabletMargin  = isset( $attributes['iconRightTabletMargin'] ) ? $attributes['iconRightTabletMargin'] : '';
			$iconTopTabletMargin    = isset( $attributes['iconTopTabletMargin'] ) ? $attributes['iconTopTabletMargin'] : '';
			$iconBottomMobileMargin = isset( $attributes['iconBottomMobileMargin'] ) ? $attributes['iconBottomMobileMargin'] : '';
			$iconLeftMobileMargin   = isset( $attributes['iconLeftMobileMargin'] ) ? $attributes['iconLeftMobileMargin'] : '';
			$iconRightMobileMargin  = isset( $attributes['iconRightMobileMargin'] ) ? $attributes['iconRightMobileMargin'] : '';
			$iconTopMobileMargin    = isset( $attributes['iconTopMobileMargin'] ) ? $attributes['iconTopMobileMargin'] : '';
			$margin_variables       = array( $iconBottomMargin, $iconLeftMargin, $iconRightMargin, $iconTopMargin, $iconBottomTabletMargin, $iconLeftTabletMargin, $iconRightTabletMargin, $iconTopTabletMargin, $iconBottomMobileMargin, $iconLeftMobileMargin, $iconRightMobileMargin, $iconTopMobileMargin );

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}

			$has_margin = false;
			foreach ( $margin_variables as $margin ) {
				if ( is_numeric( $margin ) ) {
					$has_margin = true;
					break;
				}
			}
			$margin_class = $has_margin ? 'wp-block-uagb-icon--has-margin' : '';
			$main_classes = array(
				'uagb-icon-wrapper',
				$block_id,
				( is_array( $attributes ) && isset( $attributes['className'] ) ) ? $attributes['className'] : '',
				$margin_class,
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
			);
	
			$iconSvg     = isset( $attributes['icon'] ) ? $attributes['icon'] : 'circle-check';
			$link        = isset( $attributes['link'] ) ? $attributes['link'] : '';
			$target      = isset( $attributes['target'] ) ? $attributes['target'] : false;
			$disableLink = isset( $attributes['disableLink'] ) ? $attributes['disableLink'] : false;
			$linkUrl     = $disableLink ? $link : '#';
			$targetVal   = $target ? '_blank' : '_self';

			ob_start();
			$iconHtml = UAGB_Helper::render_svg_html( $iconSvg );
			$iconHtml = ob_get_clean();
	  
			if ( $iconHtml ) {

				$role_attr        = ( 'image' === $attributes['iconAccessabilityMode'] ) ? ' role="img"' : ( ( 'svg' === $attributes['iconAccessabilityMode'] ) ? ' role="graphics-symbol"' : '' );
				$aria_hidden_attr = ( 'presentation' === $attributes['iconAccessabilityMode'] ) ? 'true' : 'false';
				$aria_label_attr  = ( 'presentation' !== $attributes['iconAccessabilityMode'] ) ? ' aria-label="' . esc_attr( $attributes['iconAccessabilityDesc'] ) . '"' : '';
			
				$iconHtml = preg_replace(
					'/<svg(.*?)>/',
					'<svg$1' . $role_attr . ' aria-hidden="' . $aria_hidden_attr . '"' . $aria_label_attr . '>',
					$iconHtml
				);
			}
			

			$aria_label_attr = ( 'presentation' !== $attributes['iconAccessabilityMode'] ) ? ( empty( $attributes['iconAccessabilityDesc'] ) ? implode( '', str_split( $attributes['icon'] ) ) : $attributes['iconAccessabilityDesc'] ) : '';

			// Check and prepend the protocol if necessary.
			if ( '#' !== $linkUrl ) {
				$linkUrl = self::get_protocol( $linkUrl ) ? $linkUrl : self::prepend_http( $linkUrl );
			}
			
			if ( $iconHtml && $disableLink && $linkUrl ) {
				// Wrap the SVG content with an anchor tag.
				$iconHtml = preg_replace(
					'/<svg(.*?)>(.*?)<\/svg>/s',
					'<a rel="noopener noreferrer" href="' . esc_url( $linkUrl ) . '" target="' . esc_attr( $targetVal ) . '"><svg$1>$2</svg></a>',
					$iconHtml
				);
				
			}

			ob_start();
			?>      
			<div class="<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>"
			style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>" >
				<?php if ( $has_margin ) : ?>
				<div class='uagb-icon-margin-wrapper'>
				<?php endif; ?>
					<span class="uagb-svg-wrapper" 
					<?php 
					if ( $aria_label_attr ) {
						echo ' aria-label="' . esc_attr( $aria_label_attr ) . '"';
					} 
					?>
					tabindex="0">		
						<?php echo $iconHtml; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped & sanitize inside render_svg_html(). ?>
					</span>
				<?php if ( $has_margin ) : ?>
				</div>
				<?php endif; ?>
			</div>
			<?php
			return ob_get_clean();

		}

		/**
		 * Renders Front-end Click Event.
		 *
		 * @param string $id             Block ID.
		 * @since 2.15.0
		 * @return string|false                The Output Buffer.
		 */
		public static function render_icon_click( $id ) {
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', () => {
					const blockScope = document.querySelector( '.uagb-block-<?php echo esc_html( $id ); ?>' );
					if ( ! blockScope ) {
						return;
					}

					const anchorElement = blockScope.querySelector('a');
					if (!anchorElement) {
						return;
					} 

					<?php // Add event listener for Enter and Space key presses. ?> 
					blockScope.addEventListener('keydown', (event) => {
						if ( 13 === event.keyCode || 32 === event.keyCode ) {
							event.preventDefault();
							<?php // Trigger the click event on the blockScope. ?> 
							anchorElement.click();	
						}
					} );
				} );
			<?php
			return ob_get_clean();
		}

	}

		
	/**
	 *  Prepare if class 'Spectra_Icon' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	Spectra_Icon::get_instance();
}
PK�][#(|�{{<ultimate-addons-for-gutenberg/blocks-config/utils/Helpers.jsnu�[���/**
 * Get Image Sizes and return an array of Size.
 *
 * @param {Object} sizes - The sizes object.
 * @return {Object} sizeArr - The sizeArr object.
 */

export function getImageSize( sizes ) {
	const sizeArr = [];
	for ( const size in sizes ) {
		if ( sizes.hasOwnProperty( size ) ) {
			const p = { value: size, label: size };
			sizeArr.push( p );
		}
	}
	return sizeArr;
}

export function getIdFromString( label ) {
	return label
		? label
				.toLowerCase()
				.replace( /[^a-zA-Z ]/g, '' )
				.replace( /\s+/g, '-' )
		: '';
}

export function getPanelIdFromRef( ref ) {
	if ( ref.current ) {
		if ( ref.current?.parentElement?.dataset?.panelId ){
			return ref.current.parentElement.dataset.panelId;
		} 
		const parentElement = ref.current.parentElement.closest( '.components-panel__body' );
		if ( parentElement && parentElement.querySelector( '.components-panel__body-title' ) ) {
			return getIdFromString( parentElement.querySelector( '.components-panel__body-title' ).textContent );
		}
	}
	return null;
}

export function getNumber( input ) {
    if ( input.includes( '#' ) ) {
        // Handeling special case for padding controls
        return '';
    }
    const regex = /\d+(\.\d+)?/;
    const match = input.match( regex );

    if ( match ) {
        const numberString = match[0];
        const isFloat = numberString.includes( '.' );
        return isFloat ? parseFloat( numberString ) : parseInt( numberString, 10 );
    }
    return parseInt( '' );
}

export function getUnit( input ) {
    if ( typeof input !== 'string' ) {
        return 'px';
    }
    const regex = /(px|em|rem|%)/;
    const match = input.match( regex );
    if ( match ) {
        const unit = match[0];
        if ( ['px', 'em', '%'].includes( unit ) ) {
            return unit;
        } else if ( unit === 'rem' ) {
            return 'em';
        }
    }
    return 'px';
}

export function getUnitDimension( input ) {
    const regex = /(px|%)$/;
    const match = input.match( regex );
    if ( match ) {
        return match[1];
    }
    return 'px';
}

// Get 2 version strings, and do a comparison based on the operator parsed.
export function compareVersions( version1, version2, sign = '=' ) {
	// Function to normalize the given version string.
	// Split the version string at every hyphen and dot, then convert the parts to integers, then pad with zeros if necessary, and take only the first three parts.
    const normalizeVersion = ( version ) => 
        version.split( '-' )[0].split( '.' ).map( part => parseInt( part, 10 ) || 0 ).concat( 0, 0, 0 ).slice( 0, 3 );

	// Normalize both input versions and get the resulting normalized values.
    const [ v1, v2 ] = [ normalizeVersion( version1 ), normalizeVersion( version2 ) ];

	// Compare the normalized versions using reduce.
    const comparison = v1.reduce( ( acc, part, i ) => acc || ( part - ( v2[ i ] || 0 ) ), 0 );

    // Check the comparison result based on the provided operator
	switch ( sign ) {
		case '<':
			// Return true if v1 is less than v2.
			return comparison < 0;
		case '<=':
			// Return true if v1 is less than or equal to v2.
			return comparison <= 0;
		case '>':
			// Return true if v1 is greater than v2.
			return comparison > 0;
		case '>=':
			// Return true if v1 is greater than or equal to v2.
			return comparison >= 0;
		default:
			// Default: return true if v1 equals v2.
			return comparison === 0;
	}
}

export function convertToPixel( lengthString ) {
    const regex = /\bspacing\s*\|\s*(\d+)\b/;
    const noUnitSlider = lengthString.match( regex );
    if( noUnitSlider ){
        return parseInt( noUnitSlider[1] );
    }
    const match = lengthString.match( /^(\d+(\.\d+)?)\s*(px|rem|em)$/i );
    return match ? parseFloat( match[1] ) * ( match[3].toLowerCase() === 'rem' || match[3].toLowerCase() === 'em' ? 16 : 1 ) : 10;
}

export function parseHeightAttributes( value ) {
    const parts = value ? value.split( '|' ) : [];
    const variablePart = parts.length === 3 ? parts[2].trim() : '';
  
    return variablePart;
  }
  

export const uagbClassNames = ( classes ) => ( classes.filter( Boolean ).join( ' ' ) );

/**
 * Check if object is empty.
 * 
 * @param {Object} obj - The object.
 * @return {boolean} - The result.
 */
export const isEmptyObject = ( obj ) => Object.keys( obj ).length === 0 && obj.constructor === Object;

/**
 * This variable is used as a placeholder kind of value which is used to identify the attribute is a GBS style attribute.
 */
export const GBS_RANDOM_NUMBER = 0.001020304;

/**
 * A function to check if an object is not empty.
 *
 * @function
 *
 * @param {Object} obj - The object to check.
 *
 * @return {boolean} Returns true if the object is not empty, otherwise returns false.
 */
export const isObjectNotEmpty = ( obj ) => {
	return (
		obj &&
		Object.keys( obj ).length > 0 &&
		Object.getPrototypeOf( obj ) === Object.prototype
	);
}

export const uagbDeepClone = ( arrayOrObject ) => JSON.parse( JSON.stringify( arrayOrObject ) );

export const updateUAGDay = ( UAGDay, value ) => {
	const filteredArray = UAGDay.filter( ( i ) => i !== value );
	return filteredArray?.length > 0 ? filteredArray : undefined;
};

/**
 * Retrieves the value at a specified path within an object.
 *
 * This function allows you to access nested properties of an object using a dot-separated path
 * or an array of keys. If the specified path is not valid or the property does not exist,
 * the function returns a default value.
 *
 * @param {Object} getObjectValue - The object from which to retrieve the value.
 * @param {string|Array} path - The path to the desired property, specified as a dot-separated string
 *                             or an array of keys.
 * @param {*} defaultValue - The value to return if the specified path is not valid or the property
 *                          does not exist. This value is returned when the path traversal encounters
 *                          an undefined or null property.
 * @return {*} - The value at the specified path, or the default value if the path is not valid
 *               or the property does not exist.
 *
 * @example
 * const obj = { a: { b: { c: 42 } } };
 *
 * // Using a dot-separated string as the path
 * const value = get(obj, 'a.b.c'); // Returns 42
 *
 * // Using an array of keys as the path
 * const valueArray = get(obj, ['a', 'b', 'c']); // Returns 42
 *
 * // Providing a default value
 * const nonExistentValue = get(obj, 'x.y.z', 'Default'); // Returns 'Default'
 */
export const uagbGetValue = ( getObjectValue, path, defaultValue ) => {
	const keys = Array.isArray( path ) ? path : path.split( '.' );
	let result = getObjectValue;

	for ( const key of keys ) {
		if ( result?.hasOwnProperty( key ) ) {
			result = result[key];
		} else {
			return defaultValue;
		}
	}
	return result;
};

/**
 * Check if current page is customizer page.
 * 
 * @return {boolean} - The result.
 */
export const isCustomizerPage = () => {
    // We need to run this script only on customizer page.
    if ( ! window.location.href.includes( '/customize.php' ) ) {
        return false;
    }

    if ( ! window?.wp?.customize ) {
        return false;
    }

    return true;
}

/**
 * 
 * @param {Function} func function to be debounced.
 * @param {number} delay time in milliseconds.
 * @return {Function} - that will be debounced.
 */
export const debounce = ( func, delay ) => {
	let timeout;
	return ( ...args ) => {
		clearTimeout( timeout );
		timeout = setTimeout( () => {
			func( ...args );
		}, delay );
	};
};PK�][�ڧ��"�"Vultimate-addons-for-gutenberg/blocks-config/popup-builder/class-uagb-popup-builder.phpnu�[���<?php
/**
 * Spectra - Popup Builder
 *
 * @package UAGB
 *
 * @since 2.6.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Popup_Builder.
 *
 * @since 2.6.0
 */
class UAGB_Popup_Builder {

	/**
	 * Post ID Member Variable.
	 *
	 * @var int $post_id
	 *
	 * @since 2.6.0
	 */
	protected $post_id;

	/**
	 * Member Variable for all Popup IDs needed to be rendered on the given page.
	 *
	 * @var array $popup_ids
	 *
	 * @since 2.6.0
	 */
	protected $popup_ids;

	/**
	 * Constructor to Default the Current Instance's Post ID and add the Shortcode if needed.
	 * 
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function __construct() {
		$this->post_id   = 0;
		$this->popup_ids = array();

		if ( ! shortcode_exists( 'spectra_popup' ) ) {
			add_shortcode( 'spectra_popup', array( $this, 'spectra_popup_shortcode' ) );
		}
	}

	/**
	 * Create Instance for the Admin Dashboard.
	 *
	 * @return object  Initialized object of this class.
	 *
	 * @since 2.6.0
	 */
	public static function create_for_admin() {
		$instance = new self();
		add_action( 'spectra_after_menu_register', array( $instance, 'add_popup_builder_submenu' ) );
		return $instance;
	}

	/**
	 * Create Instance with Script Generation.
	 *
	 * @return object  Initialized object of this class.
	 *
	 * @since 2.6.0
	 */
	public static function generate_scripts() {
		$instance = new self();
		add_action( 'wp_enqueue_scripts', array( $instance, 'enqueue_popup_scripts_for_post' ), 1 );
		return $instance;
	}

	/**
	 * Add the Popup Builder Submenu to the Spectra Menu.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function add_popup_builder_submenu() {
		add_submenu_page(
			'spectra',
			__( 'Popup Builder', 'ultimate-addons-for-gutenberg' ),
			__( 'Popup Builder', 'ultimate-addons-for-gutenberg' ),
			'manage_options',
			'edit.php?post_type=spectra-popup'
		);
	}

	/**
	 * Enqueue all popup scripts for the current post.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function enqueue_popup_scripts_for_post() {
		if ( ! is_front_page() ) {
			$this->post_id = get_the_ID();
		}
		$elementor_preview_active = false;
		if ( defined( 'ELEMENTOR_VERSION' ) ) { // Check if elementor is active.
			$elementor_preview_active = \Elementor\Plugin::$instance->preview->is_preview_mode(); 
		}
		if ( 'spectra-popup' === get_post_type( $this->post_id ) || $elementor_preview_active ) {
			return;
		}
		$this->enqueue_popup_scripts();
	}

	/**
	 * Generate Shortcode Content.
	 *
	 * @param array $attr   The shortcode attributes.
	 * @return string|void  The output buffer or void for early return.
	 *
	 * @since 2.6.0
	 */
	public function spectra_popup_shortcode( $attr ) {
		$attr = shortcode_atts(
			array(
				'id' => 0,
			),
			$attr,
			'spectra_popup'
		);

		if ( empty( $attr['id'] ) ) {
			return;
		}

		$popup = get_post( $attr['id'] );
		if ( empty( $popup ) ) {
			return;
		}
		
		$popup_type = get_post_meta( $attr['id'], 'spectra-popup-type', true );
		if ( 'unset' === $popup_type ) {
			return;
		}

		$popup_enabled = get_post_meta( $attr['id'], 'spectra-popup-enabled', true );
		if ( ! $popup_enabled ) {
			return;
		}

		ob_start();
		echo do_shortcode( do_blocks( $popup->post_content ) );
		$output = ob_get_clean();

		return is_string( $output ) ? $output : '';
	}

	/**
	 * Enqueue all the Spectra Popup Scripts needed on the given post.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function enqueue_popup_scripts() {
		$args   = array(
			'post_type'      => 'spectra-popup',
			'posts_per_page' => -1,
			'meta_query'     => array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
				array(
					'key'     => 'spectra-popup-enabled', // The meta key.
					'value'   => true, // The meta value to compare with.
					'compare' => '=', // The comparison type.
					'type'    => 'BOOLEAN', // The meta value type.
				),
			),
		);
		$popups = new WP_Query( $args );

		while ( $popups->have_posts() ) :
			$popups->the_post();

			$popup_id = get_the_ID();

			$render_this_popup = apply_filters( 'spectra_pro_popup_display_filters', true, $this->post_id );

			if ( $render_this_popup ) {
				$current_popup_assets = new UAGB_Post_Assets( $popup_id );
				$current_popup_assets->enqueue_scripts();
				if ( is_array( $this->popup_ids ) ) {
					array_push( $this->popup_ids, $popup_id );
				}
			}
		endwhile;
		wp_reset_postdata();
		add_action( 'wp_body_open', array( $this, 'generate_popup_shortcode' ) );
	}

	/**
	 * Generate the popup shortcodes needed.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function generate_popup_shortcode() {
		if ( is_array( $this->popup_ids ) && ! empty( $this->popup_ids ) ) {
			foreach ( $this->popup_ids as $popup_id ) {
				echo do_shortcode( '[spectra_popup id=' . esc_attr( $popup_id ) . ']' );
			}
		}
	}

	/**
	 * Adds or removes list table column headings for the Popup Builder.
	 *
	 * @param array $columns  Array of columns.
	 * @return array
	 *
	 * @since 2.6.0
	 */
	public static function popup_builder_admin_headings( $columns ) {
		unset( $columns['date'] );
		unset( $columns['author'] );

		$columns['spectra_popup_type'] = __( 'Type', 'ultimate-addons-for-gutenberg' );
		$columns['author']             = __( 'Author', 'ultimate-addons-for-gutenberg' );

		$updated_columns = apply_filters( 'spectra_pro_admin_popup_list_titles', $columns );
		if ( ! is_array( $updated_columns ) || empty( $updated_columns ) ) {
			$updated_columns = $columns;
		}

		$updated_columns['spectra_popup_toggle'] = __( 'Enable/Disable', 'ultimate-addons-for-gutenberg' );

		return $updated_columns;
	}

	/**
	 * Adds the custom list table column content for the Popup Builder.
	 *
	 * @param string $column   Name of the column.
	 * @param int    $post_id  Post id.
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function popup_builder_admin_content( $column, $post_id ) {
		switch ( $column ) {
			case 'spectra_popup_type':
				$layout = get_post_meta( $post_id, 'spectra-popup-type', true );
				if ( ! is_string( $layout ) ) {
					break;
				}
				switch ( $layout ) {
					case 'banner':
						echo esc_html__( 'Info Bar', 'ultimate-addons-for-gutenberg' );
						break;
					case 'popup':
						echo esc_html__( 'Popup', 'ultimate-addons-for-gutenberg' );
						break;
					default:
						echo esc_html__( 'Unset', 'ultimate-addons-for-gutenberg' );
						break;
				}
				break;
			case 'spectra_popup_toggle':
				$layout = get_post_meta( $post_id, 'spectra-popup-type', true );
				if ( ! is_string( $layout ) ) {
					break;
				}
				$enabled      = get_post_meta( $post_id, 'spectra-popup-enabled', true );
				$toggle_class = 'spectra-popup-builder__switch';
				if ( is_rtl() ) {
					$toggle_class .= ' is-rtl-toggle';
				}

				if ( 'unset' === $layout ) {
					$toggle_class .= ' spectra-popup-builder__switch--disabled';
				} elseif ( $enabled ) {
					$toggle_class .= ' spectra-popup-builder__switch--active';
				}

				echo '<div class="' . esc_attr( $toggle_class ) . '" data-post_id="' . esc_attr( $post_id ) . '"><span></span></div>';
				break;
			default:
				do_action( 'spectra_pro_admin_popup_list_content', $column, $post_id );
				break;
		}
	}

	/**
	 * Enqueues scripts for the Toggle Button in the Popup Table.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function popup_toggle_scripts() {

		global $pagenow;

		$screen = get_current_screen();

		if ( 'spectra-popup' === $screen->post_type && 'edit.php' === $pagenow ) {
			$extension = SCRIPT_DEBUG ? '' : '.min';
			wp_register_script(
				'uagb-popup-builder-admin-js',
				UAGB_URL . 'assets/js/spectra-popup-builder-admin' . $extension . '.js',
				array(),
				UAGB_VER,
				false
			);
			wp_register_style(
				'uagb-popup-builder-admin-css',
				UAGB_URL . 'assets/css/spectra-popup-builder-admin' . $extension . '.css',
				array(),
				UAGB_VER
			);

			wp_localize_script(
				'uagb-popup-builder-admin-js',
				'uagb_popup_builder_admin',
				array(
					'ajax_url'                       => admin_url( 'admin-ajax.php' ),
					'uagb_popup_builder_admin_nonce' => wp_create_nonce( 'uagb_popup_builder_admin_nonce' ),
				)
			);
			wp_enqueue_script( 'uagb-popup-builder-admin-js' );
			wp_enqueue_style( 'uagb-popup-builder-admin-css' );
		}
	}

	/**
	 * Update the Current Popup's Meta from Admin Table.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function update_popup_status() {
		check_ajax_referer( 'uagb_popup_builder_admin_nonce', 'nonce' );

		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		if ( ! isset( $_POST['enabled'] ) || ! isset( $_POST['post_id'] ) ) {
			wp_send_json_error();
		}

		$enabled  = rest_sanitize_boolean( sanitize_text_field( $_POST['enabled'] ) );
		$popup_id = sanitize_text_field( $_POST['post_id'] );

		update_post_meta( $popup_id, 'spectra-popup-enabled', $enabled );

		wp_send_json_success();
	}
}
PK�][�-�����\ultimate-addons-for-gutenberg/blocks-config/table-of-content/class-uagb-table-of-content.phpnu�[���<?php
/**
 * UAGB Table Of Contents block.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Table_Of_Content' ) ) {


	/**
	 * Class UAGB_Table_Of_Content.
	 */
	class UAGB_Table_Of_Content {


		/**
		 * Member Variable
		 *
		 * @since 1.23.0
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 1.23.0
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_table_of_contents' ) );
			add_action( 'save_post', array( $this, 'delete_toc_meta' ), 10, 3 );
			add_filter( 'render_block_data', array( $this, 'update_toc_title' ) );
		}

		/**
		 * Update Toc tile if old title is set.
		 *
		 * @access public
		 *
		 * @since 1.23.0
		 * @param array $parsed_block Parsed Block.
		 */
		public function update_toc_title( $parsed_block ) {

			if ( 'uagb/table-of-contents' === $parsed_block['blockName'] && ! isset( $parsed_block['attrs']['headingTitle'] ) ) {

				$content = $parsed_block['innerHTML'];
				$matches = array();

				preg_match( '/<div class=\"uagb-toc__title\">([^`]*?)<\/div>/', $content, $matches );

				if ( ! empty( $matches[1] ) ) {
					$parsed_block['attrs']['headingTitle'] = $matches[1];
				}
			}

			return $parsed_block;
		}

		/**
		 * Delete toc meta.
		 *
		 * @access public
		 *
		 * @since 1.23.0
		 * @param int     $post_id Post ID.
		 * @param object  $post Post object.
		 * @param boolean $update Whether this is an existing post being updated.
		 */
		public function delete_toc_meta( $post_id, $post, $update ) {
			delete_post_meta( $post_id, '_uagb_toc_options' );
		}

		/**
		 * Extracts heading content, id, and level from the given post content.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param string $content       The post content to extract headings from.
		 *
		 * @return array The list of headings.
		 */
		public function table_of_contents_get_headings_from_content( $content ) {

			/* phpcs:disable WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase */
			// Disabled because of PHP DOMDocument and DOMXPath APIs using camelCase.

			// Create a document to load the post content into.
			$doc = new DOMDocument( '1.0', 'UTF-8' );

			// Enable user error handling for the HTML parsing. HTML5 elements aren't
			// supported (as of PHP 7.4) and There's no way to guarantee that the markup
			// is valid anyway, so we're just going to ignore all errors in parsing.
			// Nested heading elements will still be parsed.
			// The lack of HTML5 support is a libxml2 issue:
			// https://bugzilla.gnome.org/show_bug.cgi?id=761534.
			libxml_use_internal_errors( true );

			// Parse the post content into an HTML document.
			$doc->loadHTML(
				// loadHTML expects ISO-8859-1, so we need to convert the post content to
				// that format. We use htmlentities to encode Unicode characters not
				// supported by ISO-8859-1 as HTML entities. However, this function also
				// converts all special characters like < or > to HTML entities, so we use
				// htmlspecialchars_decode to decode them.
				'<html><head><meta charset="UTF-8"></head><body>' . $content . '</body></html>'
			);

			// We're done parsing, so we can disable user error handling. This also
			// clears any existing errors, which helps avoid a memory leak.
			libxml_use_internal_errors( false );

			// IE11 treats template elements like divs, so to avoid extracting heading
			// elements from them, we first have to remove them.
			// We can't use foreach directly on the $templates DOMNodeList because it's a
			// dynamic list, and removing nodes confuses the foreach iterator. So
			// instead, we convert the iterator to an array and then iterate over that.

			if ( ! isset( $doc->documentElement ) || ! is_object( $doc->documentElement ) ) {

				return array();
			}

			$templates = iterator_to_array(
				$doc->documentElement->getElementsByTagName( 'template' )
			);

			foreach ( $templates as $template ) {
				$template->parentNode->removeChild( $template );
			}

			$xpath = new DOMXPath( $doc );

			$tags = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div' );
			// Delete $tags[$s].uagb-toc-hide-heading from doc.
			foreach ( $tags as $tag ) {
				$query = sprintf( '//%s[contains(attribute::class, "uagb-toc-hide-heading")]', $tag );

				foreach ( $xpath->query( $query ) as $e ) {
					$e->parentNode->removeChild( $e );
				}
			}

			// Get all non-empty heading elements in the post content.
			$headings = iterator_to_array(
				$xpath->query(
					'//*[self::h1 or self::h2 or self::h3 or self::h4 or self::h5 or self::h6]'
				)
			);

			return array_map(
				function ( $heading ) {

					$exclude_heading = null;

					if ( isset( $heading->attributes ) ) {
						$class_name = $heading->attributes->getNamedItem( 'class' );
						if ( null !== $class_name && '' !== $class_name->value ) {
							$exclude_heading = $class_name->value;
						}
					}

					$mapping_header = 0;

					if ( 'uagb-toc-hide-heading' !== $exclude_heading ) {

						return array(
							// A little hacky, but since we know at this point that the tag will
							// be an h1-h6, we can just grab the 2nd character of the tag name
							// and convert it to an integer. Should be faster than conditionals.
							'level'   => (int) $heading->nodeName[1],
							'id'      => $this->clean( $heading->textContent ),
							'content' => wp_strip_all_tags( $heading->textContent ),
							'depth'   => intval( substr( $heading->tagName, 1 ) ),
						);
					}
				},
				$headings
			);
			/* phpcs:enable */
		}

		/**
		 * Clean up heading content.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param string $string The post content to extract headings from.
		 *
		 * @return string $string.
		 */
		public function clean( $string ) {

			$string = preg_replace( '/[\x00-\x1F\x7F]*/u', '', $string );
			$string = str_replace( array( '&amp;', '&nbsp;' ), ' ', $string );
			// Remove all except alphbets, space, `-`,`_` and latin characters.
			$string = preg_replace( '/[^a-zA-Z0-9\p{L} _-]/u', '', $string );
			// Convert space characters to an `_` (underscore).
			$string = preg_replace( '/\s+/', '_', $string );
			// Replace multiple `_` (underscore) with a single `-` (hyphen).
			$string = preg_replace( '/_+/', '-', $string );
			// Replace multiple `-` (hyphen) with a single `-` (hyphen).
			$string = preg_replace( '/-+/', '-', $string );
			// Remove trailing `-` and `_`.
			$string = trim( $string, '-_' );

			if ( empty( $string ) ) {
				$string = 'toc_' . uniqid();
			}

			return mb_strtolower( $string ); // Replaces multiple hyphens with single one.
		}

		/**
		 * Converts a flat list of heading parameters to a hierarchical nested list
		 * based on each header's immediate parent's level.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param array $heading_list Flat list of heading parameters to nest.
		 * @param int   $index        The current list index.
		 *
		 * @return array A hierarchical nested list of heading parameters.
		 */
		public function table_of_contents_linear_to_nested_heading_list(
			$heading_list,
			$index = 0
		) {
			$nested_heading_list = array();

			foreach ( $heading_list as $key => $heading ) {

				if ( ! is_null( $heading_list[ $key ] ) ) {

					$nested_heading_list[] = array(
						'heading'  => $heading,
						'index'    => $index + $key,
						'children' => null,
					);

				}
			}

			return $nested_heading_list;
		}

		/**
		 * Renders the heading list of the UAGB Table Of Contents block.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param array  $nested_heading_list Nested list of heading data.
		 * @param string $page_url URL of the page the block belongs to.
		 * @param array  $attributes array of attributes.
		 *
		 * @return string The heading list rendered as HTML.
		 */
		public function table_of_contents_render_list(
			$nested_heading_list,
			$page_url,
			$attributes
		) {
			$enable_collapsible_list = isset( $attributes['enableCollapsableList'] ) ? (bool) $attributes['enableCollapsableList'] : false;
			$nesting_level           = isset( $attributes['collapsibleListDepth'] ) ? intval( $attributes['collapsibleListDepth'] ) : 5;
		
			$toc           = '<ol class="uagb-toc__list">';
			$last_level    = '';
			$parent_level  = '';
			$first_level   = '';
			$current_depth = 0;
			$depth_array   = array(
				1 => 0,
				2 => 0,
				3 => 0,
				4 => 0,
				5 => 0,
				6 => 0,
			);
		
			if ( $enable_collapsible_list ) {
				$has_children  = array_fill( 0, count( $nested_heading_list ), false );
				$depth_mapping = array_fill( 0, count( $nested_heading_list ), 0 );
		
				// Calculate depth and children mapping.
				$stack                = array();
				$nested_heading_count = count( $nested_heading_list );

				foreach ( $nested_heading_list as $anchor => $heading ) {
					$level = $heading['heading']['level'];
				
					// Calculate depth.
					$stack_count = count( $stack );
					while ( ! empty( $stack ) && $stack[ $stack_count - 1 ]['level'] >= $level ) {
						array_pop( $stack );
						$stack_count = count( $stack );  // Update the stack count after popping an element.
					}
					$depth_mapping[ $anchor ] = $stack_count + 1;
					$stack[]                  = array(
						'level' => $level,
						'index' => $anchor,
					);
				
					// Check for children.
					for ( $i = $anchor + 1; $i < $nested_heading_count; $i++ ) {
						if ( $nested_heading_list[ $i ]['heading']['level'] > $level ) {
							$has_children[ $anchor ] = true;
							break;
						} elseif ( $nested_heading_list[ $i ]['heading']['level'] <= $level ) {
							break;
						}
					}
				}               
			}
		
			foreach ( $nested_heading_list as $anchor => $heading ) {
				$level = $heading['heading']['level'];
				$title = $heading['heading']['content'];
				$id    = $heading['heading']['id'];

				if ( 0 === $anchor ) {
					$first_level = $level;
				}

				if ( $level < $first_level ) {
					continue;
				}

				if ( empty( $parent_level ) || $level < $parent_level ) {
					$parent_level = $level;
				}

				if ( ! empty( $last_level ) ) {
					if ( $level > $last_level ) {
						$toc .= '<ul class="uagb-toc__list">';
						$current_depth ++;
						$depth_array[ $level ] = $current_depth;
					} elseif ( $level === $last_level && $level !== $parent_level ) {
						$toc                  .= '<li class="uagb-toc__list">';
						$depth_array[ $level ] = $current_depth;
					} elseif ( $level < $last_level ) {
						$closing = absint( $current_depth - $depth_array[ $level ] );

						if ( $level > $parent_level ) {
							$toc          .= str_repeat( '</li></ul>', $closing );
							$current_depth = absint( $current_depth - $closing );
						} elseif ( $level === $parent_level ) {
							$toc .= str_repeat( '</li></ul>', $closing );
							$toc .= '</li>';
						}
					}
				}

				if ( $enable_collapsible_list ) {
					$toc .= sprintf(
						'<li class="uagb-toc__list %s">%s<a href="#%s" class="uagb-toc-link__trigger">%s</a>',
						( $has_children[ $anchor ] && $depth_mapping[ $anchor ] <= $nesting_level ) ? 'uagb-toc__list--expandable' : '',
						( $has_children[ $anchor ] && $depth_mapping[ $anchor ] <= $nesting_level ) ? '<span class="list-open" role="button" tabindex="0" aria-expanded="true"></span>' : '',
						esc_attr( $id ),
						esc_html( $title )
					);
				} else {
					$toc .= sprintf( '<li class="uagb-toc__list"><a href="#%s" class="uagb-toc-link__trigger">%s</a>', esc_attr( $id ), esc_html( $title ) );
				}
				
		
				$last_level = $level;
			}

			$toc .= str_repeat( '</ul>', $current_depth );
			$toc .= '</ol>';

			return $toc;
		}

		/**
		 * Filters the Headings according to Mapping Headers Array.
		 *
		 * @since 1.24.0
		 * @access public
		 *
		 * @param  array $headings Headings.
		 * @param  array $mapping_headers_array    Mapping Headers.
		 *
		 * @return array FIltered Headings Array..
		 */
		public function filter_headings_by_mapping_headers( $headings, $mapping_headers_array ) {

			$filtered_headings = array();

			foreach ( $headings as $heading ) {

				$mapping_header = 0;

				foreach ( $mapping_headers_array as $key => $value ) {

					if ( $mapping_headers_array[ $key ] ) {

						$mapping_header = ( $key + 1 );
					}

					if ( isset( $heading ) && $mapping_header === $heading['level'] ) {

						$filtered_headings[] = $heading;
						break;
					}
				}
			}

			return $filtered_headings;

		}
		/**
		 * Get the Reusable Headings Array.
		 *
		 * @since 2.0.14
		 * @access public
		 *
		 * @param  array $blocks_array Block Array.
		 *
		 * @return array $final_reusable_array Heading Array.
		 */
		public function toc_recursive_reusable_heading( $blocks_array ) {
			$final_reusable_array = array();
			foreach ( $blocks_array as $key => $block ) {

				if ( 'core/block' === $blocks_array[ $key ]['blockName'] ) {
					if ( $blocks_array[ $key ]['attrs'] ) {
						$reusable_block   = get_post( $blocks_array[ $key ]['attrs']['ref'] );
						$reusable_heading = $this->table_of_contents_get_headings_from_content( $reusable_block->post_content );
						if ( isset( $reusable_heading[0] ) ) {
							$final_reusable_array = array_merge( $final_reusable_array, $reusable_heading );
						}
					}
				} else {
					if ( 'core/block' !== $blocks_array[ $key ]['blockName'] ) {
						$inner_block_reusable_array = $this->toc_recursive_reusable_heading( $blocks_array[ $key ]['innerBlocks'] );
						$final_reusable_array       = array_merge( $final_reusable_array, $inner_block_reusable_array );
					}
				}
			}

			return $final_reusable_array;
		}

		/**
		 * Renders the UAGB Table Of Contents block.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param  array    $attributes Block attributes.
		 * @param  string   $content    Block default content.
		 * @param  WP_Block $block      Block instance.
		 *
		 * @return string Rendered block HTML.
		 */
		public function render_table_of_contents( $attributes, $content, $block ) {

			global $post;
			$result = array();
			if ( ! isset( $post->ID ) ) {
				return '';
			}

			$uagb_toc_options         = get_post_meta( $post->ID, '_uagb_toc_options', true );
			$uagb_toc_version         = ! empty( $uagb_toc_options['_uagb_toc_version'] ) ? $uagb_toc_options['_uagb_toc_version'] : '';
			$uagb_toc_heading_content = ! empty( $uagb_toc_options['_uagb_toc_headings'] ) ? $uagb_toc_options['_uagb_toc_headings'] : '';
			$enable_collapsible_list  = isset( $attributes['enableCollapsableList'] ) ? (bool) $attributes['enableCollapsableList'] : false;
			$initialCollapse          = isset( $attributes['initialCollapse'] ) ? (bool) $attributes['initialCollapse'] : false;

			if ( empty( $uagb_toc_heading_content ) || UAGB_ASSET_VER !== $uagb_toc_version ) {
				global $_wp_current_template_content;
				$custom_post  = get_post( $post->ID );
				$post_content = '';
				if ( $custom_post instanceof WP_Post ) {
					$post_content = $custom_post->post_content;
				}
				// If the current template contents exist, use that - else get the content from the post ID.
				if ( $_wp_current_template_content && has_block( 'uagb/table-of-contents', $_wp_current_template_content ) ) {
					$content = $_wp_current_template_content . $post_content;
				} else {
					$content = $post_content;
				}
				$uagb_toc_heading_content          = $this->table_of_contents_get_headings_from_content( $content );
				$blocks                            = parse_blocks( $content );
				$uagb_toc_reusable_heading_content = $this->toc_recursive_reusable_heading( $blocks );
				$uagb_toc_heading_content          = array_merge( $uagb_toc_heading_content, $uagb_toc_reusable_heading_content );

				$meta_array = array(
					'_uagb_toc_version'  => UAGB_ASSET_VER,
					'_uagb_toc_headings' => $uagb_toc_heading_content,
				);

				update_post_meta( $post->ID, '_uagb_toc_options', $meta_array );

			}

			$uagb_toc_heading_content = $this->filter_headings_by_mapping_headers( $uagb_toc_heading_content, $attributes['mappingHeaders'] );

			$mapping_header_func = function( $value ) {
				return $value;
			};

			$has_content   = ( $uagb_toc_heading_content && count( $uagb_toc_heading_content ) > 0 && count( array_filter( $attributes['mappingHeaders'], $mapping_header_func ) ) > 0 );
			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}
			$allowed_span_attr = array(
				'span' => array(
					'class'         => true,
					'role'          => true,
					'tabindex'      => true,
					'aria-expanded' => true,
				),
			);
			$allowed_span_attr = array_merge( wp_kses_allowed_html( 'post' ), $allowed_span_attr );
			$wrap              = array(
				'wp-block-uagb-table-of-contents',
				'uagb-toc__align-' . $attributes['align'],
				'uagb-toc__columns-' . $attributes['tColumnsDesktop'],
				( ( true === $attributes['initialCollapse'] ) ? 'uagb-toc__collapse' : '' ),
				'uagb-block-' . $attributes['block_id'],
				( isset( $attributes['className'] ) ) ? $attributes['className'] : '',
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
				( ( true === $attributes['enableCollapsableList'] ) ? 'uagb-toc__collapse--list' : '' ),
			);

			ob_start();
			?>
				<div class="<?php echo esc_attr( implode( ' ', $wrap ) ); ?>"
					data-scroll= "<?php echo esc_attr( $attributes['smoothScroll'] ); ?>"
					data-offset= "<?php echo esc_attr( UAGB_Block_Helper::get_fallback_number( $attributes['smoothScrollOffset'], 'smoothScrollOffset', 'table-of-contents' ) ); ?>"
					style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>"
				>
				<div class="uagb-toc__wrap">
						<div class="uagb-toc__title">
							<?php
								echo wp_kses_post( $attributes['headingTitle'] );
							if ( $attributes['makeCollapsible'] && $attributes['icon'] ) {
								?>
									<?php UAGB_Helper::render_svg_html( $attributes['icon'] ); ?>
									<?php
							}
							?>
						</div>
						<?php
						if ( 'none' !== $attributes['separatorStyle'] ) {
							?>
								<div class='uagb-toc__separator'></div>
							<?php
						}
						?>
						<?php
						if ( $has_content && $enable_collapsible_list && ! $initialCollapse && ! is_customize_preview() ) {
							echo '<div class="uagb-toc__loader"></div>';
						}
						?>
					<?php if ( $uagb_toc_heading_content && count( $uagb_toc_heading_content ) > 0 && count( array_filter( $attributes['mappingHeaders'], $mapping_header_func ) ) > 0 ) { ?>
					<div class="uagb-toc__list-wrap <?php echo $enable_collapsible_list && $has_content && ! is_customize_preview() ? 'uagb-toc__list-hidden' : ''; ?>">
						<?php
							echo wp_kses(
								$this->table_of_contents_render_list(
									$this->table_of_contents_linear_to_nested_heading_list( $uagb_toc_heading_content ),
									get_permalink( $post->ID ),
									$attributes
								),
								$allowed_span_attr
							);
						?>
					</div>
					<?php } else { ?>
						<p class='uagb_table-of-contents-placeholder'>
						<?php echo esc_html( $attributes['emptyHeadingTeaxt'] ); ?>
						</p>
					<?php } ?>
				</div>
				</div>
			<?php

			return ob_get_clean();
		}

		/**
		 * Registers the UAGB Table Of Contents block.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @uses render_table_of_contents()
		 *
		 * @throws WP_Error An exception parsing the block definition.
		 */
		public function register_table_of_contents() {
			$mapping_headers_array = array_fill_keys( array( 0, 1, 2, 3, 4, 5 ), true );

					register_block_type(
						'uagb/table-of-contents',
						array(
							'attributes'      => array_merge(
								array(
									'block_id'             => array(
										'type'    => 'string',
										'default' => 'not_set',
									),
									'classMigrate'         => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'headingTitleString'   => array(
										'type' => 'string',
									),
									'disableBullets'       => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'makeCollapsible'      => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'initialCollapse'      => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'icon'                 => array(
										'type'    => 'string',
										'default' => 'angle-down',
									),
									'iconSize'             => array(
										'type' => 'number',
									),
									'iconColor'            => array(
										'type' => 'string',
									),
									'bulletColor'          => array(
										'type' => 'string',
									),
									'align'                => array(
										'type'    => 'string',
										'default' => 'left',
									),
									'headingAlignment'     => array(
										'type'    => 'string',
										'default' => 'left',
									),
									'heading'              => array(
										'type'     => 'string',
										'selector' => '.uagb-toc__title',
										'default'  => __( 'Table Of Contents', 'ultimate-addons-for-gutenberg' ),
									),
									'headingTitle'         => array(
										'type'    => 'string',
										'default' => __( 'Table Of Contents', 'ultimate-addons-for-gutenberg' ),
									),
									'smoothScroll'         => array(
										'type'    => 'boolean',
										'default' => true,
									),
									'smoothScrollOffset'   => array(
										'type'    => 'number',
										'default' => 30,
									),
									'scrollToTop'          => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'scrollToTopColor'     => array(
										'type' => 'string',
									),
									'scrollToTopBgColor'   => array(
										'type' => 'string',
									),
									'tColumnsDesktop'      => array(
										'type'    => 'number',
										'default' => 1,
									),
									'tColumnsTablet'       => array(
										'type'    => 'number',
										'default' => 1,
									),
									'tColumnsMobile'       => array(
										'type'    => 'number',
										'default' => 1,
									),
									'mappingHeaders'       => array(
										'type'    => 'array',
										'default' => $mapping_headers_array,
									),
									// Color.
									'backgroundColor'      => array(
										'type'    => 'string',
										'default' => '#eee',
									),
									'linkColor'            => array(
										'type'    => 'string',
										'default' => '#333',
									),
									'linkHoverColor'       => array(
										'type' => 'string',
									),
									'headingColor'         => array(
										'type' => 'string',
									),

									// Padding.
									'topPaddingTablet'     => array(
										'type'    => 'number',
										'default' => '',
									),
									'bottomPaddingTablet'  => array(
										'type'    => 'number',
										'default' => '',
									),
									'leftPaddingTablet'    => array(
										'type'    => 'number',
										'default' => '',
									),
									'rightPaddingTablet'   => array(
										'type'    => 'number',
										'default' => '',
									),
									'topPaddingMobile'     => array(
										'type'    => 'number',
										'default' => '',
									),
									'bottomPaddingMobile'  => array(
										'type'    => 'number',
										'default' => '',
									),
									'leftPaddingMobile'    => array(
										'type'    => 'number',
										'default' => '',
									),
									'rightPaddingMobile'   => array(
										'type'    => 'number',
										'default' => '',
									),
									'vPaddingDesktop'      => array(
										'type'    => 'number',
										'default' => 30,
									),
									'hPaddingDesktop'      => array(
										'type'    => 'number',
										'default' => 30,
									),
									'vPaddingTablet'       => array(
										'type' => 'number',
									),
									'hPaddingTablet'       => array(
										'type' => 'number',
									),
									'vPaddingMobile'       => array(
										'type' => 'number',
									),
									'hPaddingMobile'       => array(
										'type' => 'number',
									),
									// Margin.
									'vMarginDesktop'       => array(
										'type' => 'number',
									),
									'hMarginDesktop'       => array(
										'type' => 'number',
									),
									'vMarginTablet'        => array(
										'type' => 'number',
									),
									'hMarginTablet'        => array(
										'type' => 'number',
									),
									'vMarginMobile'        => array(
										'type' => 'number',
									),
									'hMarginMobile'        => array(
										'type' => 'number',
									),
									'marginTypeDesktop'    => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'marginTypeTablet'     => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'marginTypeMobile'     => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'headingBottom'        => array(
										'type' => 'number',
									),
									'headingBottomTablet'  => array(
										'type' => 'number',
									),
									'headingBottomMobile'  => array(
										'type' => 'number',
									),
									'paddingTypeDesktop'   => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'paddingTypeTablet'    => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'paddingTypeMobile'    => array(
										'type'    => 'string',
										'default' => 'px',
									),

									// Content Padding.
									'contentPaddingDesktop' => array(
										'type' => 'number',
									),
									'contentPaddingTablet' => array(
										'type' => 'number',
									),
									'contentPaddingMobile' => array(
										'type' => 'number',
									),
									'contentPaddingTypeDesktop' => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'contentPaddingTypeTablet' => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'contentPaddingTypeMobile' => array(
										'type'    => 'string',
										'default' => 'px',
									),

									// Border.
									'borderStyle'          => array(
										'type'    => 'string',
										'default' => 'solid',
									),
									'borderWidth'          => array(
										'type'    => 'number',
										'default' => 1,
									),
									'borderRadius'         => array(
										'type' => 'number',
									),
									'borderColor'          => array(
										'type'    => 'string',
										'default' => '#333',
									),

									// Typography.
									// Link Font Family.
									'loadGoogleFonts'      => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'fontFamily'           => array(
										'type'    => 'string',
										'default' => 'Default',
									),
									'fontWeight'           => array(
										'type' => 'string',
									),
									// Link Font Size.
									'fontSize'             => array(
										'type' => 'number',
									),
									'fontSizeType'         => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'fontSizeTablet'       => array(
										'type' => 'number',
									),
									'fontSizeMobile'       => array(
										'type' => 'number',
									),
									// Link Line Height.
									'lineHeightType'       => array(
										'type'    => 'string',
										'default' => 'em',
									),
									'lineHeight'           => array(
										'type' => 'number',
									),
									'lineHeightTablet'     => array(
										'type' => 'number',
									),
									'lineHeightMobile'     => array(
										'type' => 'number',
									),

									// Link Font Family.
									'headingLoadGoogleFonts' => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'headingFontFamily'    => array(
										'type'    => 'string',
										'default' => 'Default',
									),
									'headingFontWeight'    => array(
										'type'    => 'string',
										'default' => '500',
									),
									// Link Font Size.
									'headingFontSize'      => array(
										'type'    => 'number',
										'default' => 20,
									),
									'headingFontSizeType'  => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'headingFontSizeTablet' => array(
										'type' => 'number',
									),
									'headingFontSizeMobile' => array(
										'type' => 'number',
									),
									// Link Line Height.
									'headingLineHeightType' => array(
										'type'    => 'string',
										'default' => 'em',
									),
									'headingLineHeight'    => array(
										'type' => 'number',
									),
									'headingLineHeightTablet' => array(
										'type' => 'number',
									),
									'headingLineHeightMobile' => array(
										'type' => 'number',
									),
									'emptyHeadingTeaxt'    => array(
										'type'    => 'string',
										'default' => __( 'Add a header to begin generating the table of contents', 'ultimate-addons-for-gutenberg' ),
									),
									// Separator.
									'separatorStyle'       => array(
										'type'    => 'string',
										'default' => 'none',
									),
									'separatorHeight'      => array(
										'type'    => 'number',
										'default' => 1,
									),
									'separatorHeightType'  => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'separatorSpace'       => array(
										'type'    => 'number',
										'default' => 15,
									),
									'separatorSpaceTablet' => array(
										'type'    => 'number',
										'default' => '',
									),
									'separatorSpaceMobile' => array(
										'type'    => 'number',
										'default' => '',
									),
									'separatorSpaceType'   => array(
										'type'    => 'string',
										'default' => 'px',
									),
									'separatorColor'       => array(
										'type'    => 'string',
										'default' => '',
									),
									'separatorHColor'      => array(
										'type'    => 'string',
										'default' => '',
									),
									// Overall block alignment.
									'overallAlign'         => array(
										'type'    => 'string',
										'default' => 'left',
									),
									'collapsibleListDepth' => array(
										'type'    => 'number',
										'default' => 5,
									),
									'enableCollapsableList' => array(
										'type'    => 'boolean',
										'default' => false,
									),
									'initiallyCollapseList' => array(
										'type'    => 'boolean',
										'default' => false,
									),
								)
							),
							'render_callback' => array( $this, 'render_table_of_contents' ),
						)
					);
		}

	}

	/**
	 *  Prepare if class 'UAGB_Table_Of_Content' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Table_Of_Content::get_instance();
}
PK�][*���Hultimate-addons-for-gutenberg/blocks-config/lottie/class-uagb-lottie.phpnu�[���<?php
/**
 * UAGB - Lottie
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Lottie' ) ) {

	/**
	 * Class UAGB_Lottie.
	 *
	 * @since 1.20.0
	 */
	class UAGB_Lottie {

		/**
		 * Member Variable
		 *
		 * @since 1.20.0
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 1.20.0
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.20.0
		 */
		public function __construct() {

			// Activation hook.
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `uagb/lottie` block on server.
		 *
		 * @since 1.20.0
		 */
		public function register_blocks() {

			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			register_block_type(
				'uagb/lottie',
				array(
					'attributes'      => array(
						'block_id'         => array(
							'type' => 'string',
						),
						'align'            => array(
							'type'    => 'string',
							'default' => 'center',
						),
						'lottieURl'        => array(
							'type'    => 'string',
							'default' => '',
						),
						'lottieSource'     => array(
							'type'    => 'string',
							'default' => 'library',
						),
						'jsonLottie'       => array(
							'type' => 'object',
						),
						// Controls.
						'loop'             => array(
							'type'    => 'boolean',
							'default' => true,
						),
						'speed'            => array(
							'type'    => 'number',
							'default' => 1,
						),
						'reverse'          => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'playOnHover'      => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'playOn'           => array(
							'type'    => 'string',
							'default' => 'none',
						),
						// Style.
						'height'           => array(
							'type' => 'number',
						),
						'heightTablet'     => array(
							'type' => 'number',
						),
						'heightMob'        => array(
							'type' => 'number',
						),
						'width'            => array(
							'type' => 'number',
						),
						'widthTablet'      => array(
							'type' => 'number',
						),
						'widthMob'         => array(
							'type' => 'number',
						),
						'backgroundColor'  => array(
							'type'    => 'string',
							'default' => '',
						),
						'backgroundHColor' => array(
							'type'    => 'string',
							'default' => '',
						),
						'isPreview'        => array(
							'type'    => 'boolean',
							'default' => false,
						),
					),
					'render_callback' => array( $this, 'render_html' ),
				)
			);
		}

		/**
		 * Render Lottie HTML.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 1.20.0
		 */
		public function render_html( $attributes ) {

			$block_id = '';

			if ( isset( $attributes['block_id'] ) ) {
				$block_id = $attributes['block_id'];
			}

			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

				$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

				$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}

			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );

			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}

				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}

				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}

			$main_classes = array(
				'uagb-block-' . $block_id,
				'uagb-lottie__outer-wrap',
				'uagb-lottie__' . $attributes['align'],
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
			);

			ob_start();

			?>
				<div class = "wp-block-uagb-lottie">
					<div class = "<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>" style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>">
					</div>
				</div>
			<?php
				return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'UAGB_Lottie' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Lottie::get_instance();
}
PK�][H,�K�K�Yultimate-addons-for-gutenberg/blocks-config/image-gallery/class-spectra-image-gallery.phpnu�[���<?php
/**
 * Spectra - Image Gallery
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'Spectra_Image_Gallery' ) ) {

	/**
	 * Class Spectra_Image_Gallery.
	 */
	final class Spectra_Image_Gallery {

		/**
		 * Member Variable
		 *
		 * @since 2.1
		 * @var instance
		 */
		private static $instance;

		/**
		 * Member Variable
		 *
		 * @since 2.1
		 * @var settings
		 */
		private static $settings;

		/**
		 *  Initiator
		 *
		 * @since 2.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_image_gallery' ) );
			add_action( 'wp_ajax_uag_load_image_gallery_masonry', array( $this, 'render_masonry_pagination' ) );
			add_action( 'wp_ajax_nopriv_uag_load_image_gallery_masonry', array( $this, 'render_masonry_pagination' ) );
			add_action( 'wp_ajax_uag_load_image_gallery_grid_pagination', array( $this, 'render_grid_pagination' ) );
			add_action( 'wp_ajax_nopriv_uag_load_image_gallery_grid_pagination', array( $this, 'render_grid_pagination' ) );

			// Prevent Imagify from converting images into <picture> tags, which breaks the Spectra Lightbox.
			add_filter( 'imagify_allow_picture_tags_for_nextgen', '__return_false' );
		}

		/**
		 * Registers the `image-gallery` block on server.
		 *
		 * @since 2.1
		 */
		public function register_image_gallery() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			$arrow_border_attributes      = array();
			$btn_border_attributes        = array();
			$image_border_attributes      = array();
			$main_title_border_attributes = array();

			if ( method_exists( 'UAGB_Block_Helper', 'uag_generate_php_border_attribute' ) ) {
				$arrow_border_attributes      = UAGB_Block_Helper::uag_generate_php_border_attribute(
					'arrow',
					array(
						'borderStyle'             => 'none',
						'borderTopWidth'          => 4,
						'borderRightWidth'        => 4,
						'borderLeftWidth'         => 4,
						'borderBottomWidth'       => 4,
						'borderTopLeftRadius'     => 50,
						'borderTopRightRadius'    => 50,
						'borderBottomLeftRadius'  => 50,
						'borderBottomRightRadius' => 50,
					)
				);
				$btn_border_attributes        = UAGB_Block_Helper::uag_generate_php_border_attribute( 'btn' );
				$image_border_attributes      = UAGB_Block_Helper::uag_generate_php_border_attribute( 'image' );
				$main_title_border_attributes = UAGB_Block_Helper::uag_generate_php_border_attribute(
					'mainTitle',
					array(
						'borderTopWidth'    => 2,
						'borderRightWidth'  => 0,
						'borderBottomWidth' => 2,
						'borderLeftWidth'   => 0,
					)
				);
			}

			$pro_attributes = apply_filters( 'uagb_image_gallery_dynamic_attributes', array() );

			register_block_type(
				'uagb/image-gallery',
				array(
					'attributes'      => array_merge(
						// Block Requirements.
						array(
							'block_id'     => array(
								'type' => 'string',
							),
							'classMigrate' => array(
								'type'    => 'boolean',
								'default' => false,
							),
						),
						// Editor Requirements.
						array(
							'readyToRender'    => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'tileSize'         => array(
								'type'    => 'number',
								'default' => 0,
							),
							'tileSizeFrontEnd' => array(
								'type'    => 'number',
								'default' => 0,
							),
							'focusList'        => array(
								'type'    => 'array',
								'default' => array(),
							),
							'focusListObject'  => array(
								'type'    => 'object',
								'default' => array(),
							),
							'disableLazyLoad'  => array(
								'type'    => 'boolean',
								'default' => false,
							),
						),
						// Gallery Settings.
						array(
							'mediaGallery'           => array(
								'type'    => 'array',
								'default' => array(),
							),
							'mediaIDs'               => array(
								'type'    => 'array',
								'default' => array(),
							),
							'feedLayout'             => array(
								'type'    => 'string',
								'default' => 'grid',
							),
							'imageDisplayCaption'    => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'galleryImageSize'       => array(
								'type'    => 'string',
								'default' => 'large',
							),
							'galleryImageSizeTablet' => array(
								'type'    => 'string',
								'default' => 'large',
							),
							'galleryImageSizeMobile' => array(
								'type'    => 'string',
								'default' => 'medium',
							),
							'imageClickEvent'        => array(
								'type'    => 'string',
								'default' => 'none',
							),
						),
						// Lightbox Settings.
						array(
							'lightboxDisplayCaptions'     => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'lightboxThumbnails'          => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'lightboxDisplayCount'        => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'lightboxCloseIcon'           => array(
								'type'    => 'string',
								'default' => 'xmark',
							),
							'lightboxCaptionHeight'       => array(
								'type'    => 'number',
								'default' => 50,
							),
							'lightboxCaptionHeightTablet' => array(
								'type' => 'number',
							),
							'lightboxCaptionHeightMobile' => array(
								'type' => 'number',
							),
							'lightboxIconSize'            => array(
								'type'    => 'number',
								'default' => 24,
							),
							'lightboxIconSizeTablet'      => array(
								'type' => 'number',
							),
							'lightboxIconSizeMobile'      => array(
								'type' => 'number',
							),
						),
						// Caption Settings.
						array(
							'captionVisibility'       => array(
								'type'    => 'string',
								'default' => 'hover',
							),
							'captionDisplayType'      => array(
								'type'    => 'string',
								'default' => 'overlay',
							),
							'imageCaptionAlignment'   => array(
								'type'    => 'string',
								'default' => 'center center',
							),
							'imageCaptionAlignment01' => array(
								'type'    => 'string',
								'default' => 'center',
							),
							'imageCaptionAlignment02' => array(
								'type'    => 'string',
								'default' => 'center',
							),
							'imageDefaultCaption'     => array(
								'type'    => 'string',
								'default' => __( 'No Caption', 'ultimate-addons-for-gutenberg' ),
							),
							'captionPaddingTop'       => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingRight'     => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingBottom'    => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingLeft'      => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingTopTab'    => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingRightTab'  => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingBottomTab' => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingLeftTab'   => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingTopMob'    => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingRightMob'  => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingBottomMob' => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingLeftMob'   => array(
								'type'    => 'number',
								'default' => 8,
							),
							'captionPaddingUnit'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'captionPaddingUnitTab'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'captionPaddingUnitMob'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'captionPaddingUnitLink'  => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'captionGap'              => array(
								'type'    => 'number',
								'default' => 4,
							),
							'captionGapUnit'          => array(
								'type'    => 'string',
								'default' => 'px',
							),
						),
						// Layout Settings.
						array(
							'columnsDesk'         => array(
								'type'    => 'number',
								'default' => 3,
							),
							'columnsTab'          => array(
								'type'    => 'number',
								'default' => 3,
							),
							'columnsMob'          => array(
								'type'    => 'number',
								'default' => 2,
							),
							'gridImageGap'        => array(
								'type'    => 'number',
								'default' => 8,
							),
							'gridImageGapTab'     => array(
								'type' => 'number',
							),
							'gridImageGapMob'     => array(
								'type' => 'number',
							),
							'gridImageGapUnit'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'gridImageGapUnitTab' => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'gridImageGapUnitMob' => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'feedMarginTop'       => array(
								'type' => 'number',
							),
							'feedMarginRight'     => array(
								'type' => 'number',
							),
							'feedMarginBottom'    => array(
								'type' => 'number',
							),
							'feedMarginLeft'      => array(
								'type' => 'number',
							),
							'feedMarginTopTab'    => array(
								'type' => 'number',
							),
							'feedMarginRightTab'  => array(
								'type' => 'number',
							),
							'feedMarginBottomTab' => array(
								'type' => 'number',
							),
							'feedMarginLeftTab'   => array(
								'type' => 'number',
							),
							'feedMarginTopMob'    => array(
								'type' => 'number',
							),
							'feedMarginRightMob'  => array(
								'type' => 'number',
							),
							'feedMarginBottomMob' => array(
								'type' => 'number',
							),
							'feedMarginLeftMob'   => array(
								'type' => 'number',
							),
							'feedMarginUnit'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'feedMarginUnitTab'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'feedMarginUnitMob'   => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'feedMarginUnitLink'  => array(
								'type'    => 'boolean',
								'default' => true,
							),
						),
						// Layout Specific Settings.
						array(
							'carouselStartAt'         => array(
								'type'    => 'number',
								'default' => 0,
							),
							'carouselSquares'         => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'carouselLoop'            => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'carouselAutoplay'        => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'carouselAutoplaySpeed'   => array(
								'type'    => 'number',
								'default' => 2000,
							),
							'carouselPauseOnHover'    => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'carouselTransitionSpeed' => array(
								'type'    => 'number',
								'default' => 500,
							),
							'gridPages'               => array(
								'type'    => 'number',
								'default' => 1,
							),
							'gridPageNumber'          => array(
								'type'    => 'number',
								'default' => 1,
							),
						),
						// Pagination Settings.
						array(
							'feedPagination'               => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'paginateUseArrows'            => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'paginateUseDots'              => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'paginateUseLoader'            => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'paginateLimit'                => array(
								'type'    => 'number',
								'default' => 9,
							),
							'paginateButtonAlign'          => array(
								'type'    => 'string',
								'default' => 'center',
							),
							'paginateButtonText'           => array(
								'type'    => 'string',
								'default' => __( 'Load More Images', 'ultimate-addons-for-gutenberg' ),
							),
							'paginateButtonPaddingTop'     => array(
								'type' => 'number',
							),
							'paginateButtonPaddingRight'   => array(
								'type' => 'number',
							),
							'paginateButtonPaddingBottom'  => array(
								'type' => 'number',
							),
							'paginateButtonPaddingLeft'    => array(
								'type' => 'number',
							),
							'paginateButtonPaddingTopTab'  => array(
								'type' => 'number',
							),
							'paginateButtonPaddingRightTab' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingBottomTab' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingLeftTab' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingTopMob'  => array(
								'type' => 'number',
							),
							'paginateButtonPaddingRightMob' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingBottomMob' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingLeftMob' => array(
								'type' => 'number',
							),
							'paginateButtonPaddingUnit'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'paginateButtonPaddingUnitTab' => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'paginateButtonPaddingUnitMob' => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'paginateButtonPaddingUnitLink' => array(
								'type'    => 'boolean',
								'default' => true,
							),
						),
						// Image Styling.
						array(
							'imageEnableZoom'             => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'imageZoomType'               => array(
								'type'    => 'string',
								'default' => 'zoom-in',
							),
							'captionBackgroundEnableBlur' => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'captionBackgroundBlurAmount' => array(
								'type'    => 'number',
								'default' => 0,
							),
							'captionBackgroundBlurAmountHover' => array(
								'type'    => 'number',
								'default' => 5,
							),
						),
						// Lightbox Styling.
						array(
							'lightboxEdgeDistance'         => array(
								'type'    => 'number',
								'default' => 10,
							),
							'lightboxEdgeDistanceTablet'   => array(
								'type' => 'number',
							),
							'lightboxEdgeDistanceMobile'   => array(
								'type' => 'number',
							),
							'lightboxBackgroundEnableBlur' => array(
								'type'    => 'boolean',
								'default' => true,
							),
							'lightboxBackgroundBlurAmount' => array(
								'type'    => 'number',
								'default' => 5,
							),
							'lightboxBackgroundColor'      => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,0.75)',
							),
							'lightboxIconColor'            => array(
								'type'    => 'string',
								'default' => 'rgba(255,255,255,1)',
							),
							'lightboxCaptionColor'         => array(
								'type'    => 'string',
								'default' => 'rgba(255,255,255,1)',
							),
							'lightboxCaptionBackgroundColor' => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,1)',
							),

						),
						// Caption Typography Styling.
						array(
							'captionLoadGoogleFonts' => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'captionFontFamily'      => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'captionFontWeight'      => array(
								'type' => 'string',
							),
							'captionFontStyle'       => array(
								'type'    => 'string',
								'default' => 'normal',
							),
							'captionTransform'       => array(
								'type' => 'string',
							),
							'captionDecoration'      => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'captionFontSizeType'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'captionFontSize'        => array(
								'type' => 'number',
							),
							'captionFontSizeTab'     => array(
								'type' => 'number',
							),
							'captionFontSizeMob'     => array(
								'type' => 'number',
							),
							'captionLineHeightType'  => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'captionLineHeight'      => array(
								'type' => 'number',
							),
							'captionLineHeightTab'   => array(
								'type' => 'number',
							),
							'captionLineHeightMob'   => array(
								'type' => 'number',
							),
						),
						// Pagination Button Typography Styling.
						array(
							'loadMoreLoadGoogleFonts' => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'loadMoreFontFamily'      => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'loadMoreFontWeight'      => array(
								'type' => 'string',
							),
							'loadMoreFontStyle'       => array(
								'type'    => 'string',
								'default' => 'normal',
							),
							'loadMoreTransform'       => array(
								'type' => 'string',
							),
							'loadMoreDecoration'      => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'loadMoreFontSizeType'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'loadMoreFontSize'        => array(
								'type' => 'number',
							),
							'loadMoreFontSizeTab'     => array(
								'type' => 'number',
							),
							'loadMoreFontSizeMob'     => array(
								'type' => 'number',
							),
							'loadMoreLineHeightType'  => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'loadMoreLineHeight'      => array(
								'type' => 'number',
							),
							'loadMoreLineHeightTab'   => array(
								'type' => 'number',
							),
							'loadMoreLineHeightMob'   => array(
								'type' => 'number',
							),
						),
						// Lightbox Typography Styling.
						array(
							'lightboxLoadGoogleFonts' => array(
								'type'    => 'boolean',
								'default' => false,
							),
							'lightboxFontFamily'      => array(
								'type'    => 'string',
								'default' => 'Default',
							),
							'lightboxFontWeight'      => array(
								'type' => 'string',
							),
							'lightboxFontStyle'       => array(
								'type'    => 'string',
								'default' => 'normal',
							),
							'lightboxTransform'       => array(
								'type' => 'string',
							),
							'lightboxDecoration'      => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'lightboxFontSizeType'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'lightboxFontSize'        => array(
								'type' => 'number',
							),
							'lightboxFontSizeTab'     => array(
								'type' => 'number',
							),
							'lightboxFontSizeMob'     => array(
								'type' => 'number',
							),
							'lightboxLineHeightType'  => array(
								'type'    => 'string',
								'default' => 'em',
							),
							'lightboxLineHeight'      => array(
								'type' => 'number',
							),
							'lightboxLineHeightTab'   => array(
								'type' => 'number',
							),
							'lightboxLineHeightMob'   => array(
								'type' => 'number',
							),
						),
						// Hoverable Styling.
						array(
							'captionBackgroundEffect'      => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'captionBackgroundEffectHover' => array(
								'type'    => 'string',
								'default' => 'none',
							),
							'captionBackgroundEffectAmount' => array(
								'type'    => 'number',
								'default' => 100,
							),
							'captionBackgroundEffectAmountHover' => array(
								'type'    => 'number',
								'default' => 0,
							),
							'captionColor'                 => array(
								'type'    => 'string',
								'default' => 'rgba(255,255,255,1)',
							),
							'captionColorHover'            => array(
								'type'    => 'string',
								'default' => 'rgba(255,255,255,1)',
							),
							'captionBackgroundColor'       => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,0.75)',
							),
							'captionBackgroundColorHover'  => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,0.75)',
							),
							'overlayColor'                 => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,0)',
							),
							'overlayColorHover'            => array(
								'type'    => 'string',
								'default' => 'rgba(0,0,0,0)',
							),
							'captionSeparateColors'        => array(
								'type'    => 'boolean',
								'default' => false,
							),
						),
						// Pagination Styling.
						array(
							'paginateArrowDistance'        => array(
								'type'    => 'number',
								'default' => -24,
							),
							'paginateArrowDistanceUnit'    => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'paginateArrowSize'            => array(
								'type'    => 'number',
								'default' => 24,
							),
							'paginateDotDistance'          => array(
								'type'    => 'number',
								'default' => 8,
							),
							'paginateDotDistanceUnit'      => array(
								'type'    => 'string',
								'default' => 'px',
							),
							'paginateLoaderSize'           => array(
								'type'    => 'number',
								'default' => 18,
							),
							'paginateButtonTextColor'      => array(
								'type' => 'string',
							),
							'paginateButtonTextColorHover' => array(
								'type' => 'string',
							),
							'paginateColor'                => array(
								'type' => 'string',
							),
							'paginateColorHover'           => array(
								'type' => 'string',
							),
						),
						// Box Shadow Styling.
						array(
							'imageBoxShadowColor'         => array(
								'type' => 'string',
							),
							'imageBoxShadowHOffset'       => array(
								'type'    => 'number',
								'default' => 0,
							),
							'imageBoxShadowVOffset'       => array(
								'type'    => 'number',
								'default' => 0,
							),
							'imageBoxShadowBlur'          => array(
								'type' => 'number',
							),
							'imageBoxShadowSpread'        => array(
								'type' => 'number',
							),
							'imageBoxShadowPosition'      => array(
								'type'    => 'string',
								'default' => 'outset',
							),
							'imageBoxShadowColorHover'    => array(
								'type' => 'string',
							),
							'imageBoxShadowHOffsetHover'  => array(
								'type'    => 'number',
								'default' => 0,
							),
							'imageBoxShadowVOffsetHover'  => array(
								'type'    => 'number',
								'default' => 0,
							),
							'imageBoxShadowBlurHover'     => array(
								'type' => 'number',
							),
							'imageBoxShadowSpreadHover'   => array(
								'type' => 'number',
							),
							'imageBoxShadowPositionHover' => array(
								'type'    => 'string',
								'default' => 'outset',
							),
						),
						// Pro Attributes.
						$pro_attributes,
						// Responsive Borders.
						$arrow_border_attributes,
						$btn_border_attributes,
						$image_border_attributes,
						$main_title_border_attributes
					),
					'render_callback' => array( $this, 'render_initial_grid' ),
				)
			);
		}

		/**
		 * Renders All Images.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.1
		 */
		public function render_initial_grid( $attributes ) {
			$allMedia = '';
			if ( $attributes['readyToRender'] ) {
				$media = ( ( 'carousel' !== $attributes['feedLayout'] && 'tiled' !== $attributes['feedLayout'] ) && $attributes['feedPagination'] )
					? $this->get_gallery_images( $attributes, 'paginated' )
					: $this->get_gallery_images( $attributes, 'full' );

				if ( ! $media ) {
					ob_start();
					?>
					<!-- Configure your Spectra Image Gallery -->
					<?php
					return ob_get_clean();
				}

				foreach ( $attributes as $key => $attribute ) {
					$attributes[ $key ] = ( 'false' === $attribute ) ? false : ( ( 'true' === $attribute ) ? true : $attribute );
				}

				$desktop_class = '';
				$tab_class     = '';
				$mob_class     = '';

				$uagb_common_selector_class = ''; // Required for z-index.

				if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {

					$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';

					$tab_class = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';

					$mob_class = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
				}

				$zindex_desktop = '';
				$zindex_tablet  = '';
				$zindex_mobile  = '';
				$zindex_wrap    = array();

				if ( array_key_exists( 'zIndex', $attributes ) || array_key_exists( 'zIndexTablet', $attributes ) || array_key_exists( 'zIndexMobile', $attributes ) ) {
					$uagb_common_selector_class = 'uag-blocks-common-selector';
					$zindex_desktop             = array_key_exists( 'zIndex', $attributes ) && ( '' !== $attributes['zIndex'] ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
					$zindex_tablet              = array_key_exists( 'zIndexTablet', $attributes ) && ( '' !== $attributes['zIndexTablet'] ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
					$zindex_mobile              = array_key_exists( 'zIndexMobile', $attributes ) && ( '' !== $attributes['zIndexMobile'] ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;

					if ( $zindex_desktop ) {
						array_push( $zindex_wrap, $zindex_desktop );
					}

					if ( $zindex_tablet ) {
						array_push( $zindex_wrap, $zindex_tablet );
					}

					if ( $zindex_mobile ) {
						array_push( $zindex_wrap, $zindex_mobile );
					}
				}

				// Check if the new Object Focus List is empty and the old Array Focus List is not - if so, transfer it.
				if ( empty( $attributes['focusListObject'] ) && is_array( $attributes['focusList'] ) && ! empty( $attributes['focusList'] ) ) {
					foreach ( $attributes['focusList'] as $image_id => $focus_value ) {
						if ( true === $focus_value ) {
							$attributes['focusListObject'][ $image_id ] = $focus_value;
						}
					}
				}

				$wrap = array(
					'wp-block-uagb-image-gallery',
					'uagb-block-' . $attributes['block_id'],
					( isset( $attributes['className'] ) ) ? $attributes['className'] : '',
					$desktop_class,
					$tab_class,
					$mob_class,
					$uagb_common_selector_class,
				);

				$allMedia               = $this->render_media_markup( $media, $attributes );
				$grid_page_kses         = wp_kses_allowed_html( 'post' );
				$grid_page_args         = array(
					'div'    => array( 'class' => true ),
					'button' => array(
						'data-role'      => true,
						'class'          => true,
						'aria-label'     => true,
						'tabindex'       => true,
						'data-direction' => true,
						'disabled'       => true,
					),
					'svg'    => array(
						'width'       => true,
						'height'      => true,
						'viewbox'     => true,
						'aria-hidden' => true,
					),
					'path'   => array( 'd' => true ),
					'ul'     => array( 'class' => true ),
					'li'     => array(
						'class'      => true,
						'data-go-to' => true,
					),
				);
				$media_args             = array(
					'div'     => 'carousel' !== $attributes['feedLayout'] ? array(
						'class'                         => true,
						'data-spectra-gallery-image-id' => true,
						'tabindex'                      => true,
					) : array(
						'class'                         => true,
						'data-spectra-gallery-image-id' => true,
					), 
					'picture' => array(),
					'source'  => array(
						'media'  => true,
						'srcset' => true,
					),
				);
				$grid_page_allowed_tags = array_merge( $grid_page_kses, $grid_page_args );
				$media_allowed_tags     = array_merge( $grid_page_kses, $media_args );

				ob_start();

				?>
					<div
						class="<?php echo esc_attr( implode( ' ', $wrap ) ); ?>"
						style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>"
					>
				<?php
				switch ( $attributes['feedLayout'] ) {
					case 'grid':
						$gridLayout = ( $attributes['feedPagination'] ) ? 'isogrid' : 'grid';
						?>
							<div class="spectra-image-gallery spectra-image-gallery__layout--<?php echo esc_attr( $gridLayout ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $gridLayout ); ?>-col-<?php echo esc_attr( $attributes['columnsDesk'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $gridLayout ); ?>-col-tab-<?php echo esc_attr( $attributes['columnsTab'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $gridLayout ); ?>-col-mob-<?php echo esc_attr( $attributes['columnsMob'] ); ?>">
								<?php echo wp_kses( $allMedia, $media_allowed_tags ); ?>
							</div>
							<?php echo $attributes['feedPagination'] ? wp_kses( $this->render_grid_pagination_controls( $attributes ), $grid_page_allowed_tags ) : ''; ?>
						<?php
						break;
					case 'masonry':
						?>
							<div class="spectra-image-gallery spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-<?php echo esc_attr( $attributes['columnsDesk'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-tab-<?php echo esc_attr( $attributes['columnsTab'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-mob-<?php echo esc_attr( $attributes['columnsMob'] ); ?>">
								<?php echo wp_kses( $allMedia, $media_allowed_tags ); ?>
							</div>
							<?php echo $attributes['feedPagination'] ? wp_kses_post( $this->render_masonry_pagination_controls( $attributes ) ) : ''; ?>
						<?php
						break;
					case 'carousel':
						?>
							<div class="spectra-image-gallery spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>">
								<div class="uagb-slick-carousel uagb-block-<?php echo esc_attr( $attributes['block_id'] ); ?>">
									<?php echo wp_kses( $allMedia, $media_allowed_tags ); ?>
								</div>
							</div>
						<?php
						break;
					case 'tiled':
						?>
							<div class="spectra-image-gallery spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-<?php echo esc_attr( $attributes['columnsDesk'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-tab-<?php echo esc_attr( $attributes['columnsTab'] ); ?> spectra-image-gallery__layout--<?php echo esc_attr( $attributes['feedLayout'] ); ?>-col-mob-<?php echo esc_attr( $attributes['columnsMob'] ); ?>">
								<?php echo wp_kses( $allMedia, $media_allowed_tags ); ?>
								<div class="spectra-image-gallery__media-sizer"></div>
							</div>
						<?php
						break;
				}
				?>
					</div>
					<?php if ( 'lightbox' === $attributes['imageClickEvent'] ) : ?>
						<div class='spectra-image-gallery__control-lightbox' tabindex='0'>
							<?php $this->render_lightbox( $attributes ); ?>
							<?php
							if ( $attributes['lightboxThumbnails'] ) {
									$this->render_thumbnails( $attributes );
							}
							?>
							<?php if ( $attributes['lightboxDisplayCount'] ) : ?>
								<div class='spectra-image-gallery__control-lightbox--count'>
									<?php if ( is_rtl() ) : ?>
										<span class='spectra-image-gallery__control-lightbox--count-total'>1</span>/<span class='spectra-image-gallery__control-lightbox--count-page'>1</span>
									<?php else : ?>
										<span class='spectra-image-gallery__control-lightbox--count-page'>1</span>/<span class='spectra-image-gallery__control-lightbox--count-total'>1</span>
									<?php endif; ?>									
								</div>
							<?php endif; ?>
							<?php if ( $attributes['lightboxCloseIcon'] ) : ?>
								<button class='spectra-image-gallery__control-lightbox--close' aria-label="Close">
									<?php UAGB_Helper::render_svg_html( $attributes['lightboxCloseIcon'] ); ?>
								</button>
							<?php endif; ?>
						</div>
					<?php endif; ?>
				<?php
				// Restore Imagify's default behavior after the Lightbox has been rendered.
				remove_filter( 'imagify_allow_picture_tags_for_nextgen', '__return_false' );
				return ob_get_clean();
			}
		}

		/**
		 * Renders Lightbox.
		 *
		 * @param array $attributes Array of block attributes.
		 * @return void
		 *
		 * @since 2.4.0
		 */
		private function render_lightbox( $attributes ) {
			$total_images = count( $attributes['mediaGallery'] );
			?>
				<div class="swiper spectra-image-gallery__control-lightbox--main" dir="<?php echo is_rtl() ? 'rtl' : ''; ?>">
					<div class="swiper-wrapper">
						<?php for ( $i = 0; $i < $total_images; $i++ ) { ?>							
							<div class="swiper-slide">
								<img class="swiper-lazy" data-src="<?php echo esc_url( $attributes['mediaGallery'][ $i ]['url'] ); ?>" alt="<?php echo esc_attr( $attributes['mediaGallery'][ $i ]['alt'] ); ?>"/>
								<div class="swiper-lazy-preloader swiper-lazy-preloader-white"></div>
								<?php if ( $attributes['lightboxDisplayCaptions'] ) : ?>
									<div class="spectra-image-gallery__control-lightbox--caption" data-spectra-gallery-image-id='<?php echo esc_attr( $attributes['mediaGallery'][ $i ]['id'] ); ?>'>
										<?php echo $attributes['mediaGallery'][ $i ]['caption'] ? wp_kses_post( $attributes['mediaGallery'][ $i ]['caption'] ) : wp_kses_post( $attributes['imageDefaultCaption'] ); ?>
									</div>
								<?php endif; ?>
							</div>
						<?php } ?>
					</div>
					<div class="swiper-button-next"></div>
					<div class="swiper-button-prev"></div>
				</div>			
			<?php
		}

		/**
		 * Renders Lightbox Thumbnails.
		 *
		 * @param array $attributes Array of block attributes.
		 * @return void
		 *
		 * @since 2.4.0
		 */
		private function render_thumbnails( $attributes ) {
			$total_images = count( $attributes['mediaGallery'] );
			?>
				<div class="spectra-image-gallery__control-lightbox--thumbnails-wrapper">
					<div class="swiper spectra-image-gallery__control-lightbox--thumbnails">
						<div class="swiper-wrapper">
							<?php 
							for ( $i = 0; $i < $total_images; $i++ ) { 
								$image_url = ! empty( $attributes['mediaGallery'][ $i ]['sizes']['thumbnail']['url'] ) ? $attributes['mediaGallery'][ $i ]['sizes']['thumbnail']['url'] : $attributes['mediaGallery'][ $i ]['url'];
								?>
								<div class="swiper-slide">
									<img src="<?php echo esc_url( $image_url ); ?>" tabindex="0" alt="<?php echo esc_attr( $attributes['mediaGallery'][ $i ]['alt'] ); ?>"/>
								</div>
							<?php } ?>
						</div>
					</div>
				</div>
			<?php
		}

		/**
		 * Renders Grid Pagination Controls.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.1
		 */
		private function render_grid_pagination_controls( $attributes ) {
			ob_start();
			?>
			<div class="spectra-image-gallery__control-wrapper">
				<button data-role="none" class="spectra-image-gallery__control-arrows spectra-image-gallery__control-arrows--<?php echo esc_attr( $attributes['feedLayout'] ); ?>" aria-label="Previous" tabIndex="0" data-direction="Prev"<?php echo ( 'grid' === $attributes['feedLayout'] && 1 === $attributes['gridPageNumber'] ) ? ' disabled' : ''; ?>>
					<svg width=20 height=20 viewBox="0 0 256 512" aria-hidden="true">
						<path d="M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z">
						</path>
					</svg>
				</button>
				<ul class="spectra-image-gallery__control-dots">
					<?php
					for ( $i = 0; $i < $attributes['gridPages']; $i++ ) {
						$current_page = strval( $i + 1 );
						?>
						<li class="spectra-image-gallery__control-dot<?php echo ( ( $attributes['gridPageNumber'] - 1 ) === $i ) ? ' spectra-image-gallery__control-dot--active' : ''; ?>" data-go-to=<?php echo esc_attr( $current_page ); ?>>
							<button aria-label="Page <?php echo esc_attr( $current_page ); ?>"></button>
						</li>
						<?php
					}
					?>
				</ul>
				<button type="button" data-role="none" class="spectra-image-gallery__control-arrows spectra-image-gallery__control-arrows--<?php echo esc_attr( $attributes['feedLayout'] ); ?>" aria-label="Next" tabindex="0" data-direction="Next"<?php echo ( 'grid' === $attributes['feedLayout'] && $attributes['gridPages'] === $attributes['gridPageNumber'] ) ? ' disabled' : ''; ?>>
					<svg width=20 height=20 viewBox="0 0 256 512" aria-hidden="true">
						<path d="M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z">
						</path>
					</svg>
				</button>
			</div>
			<?php
			return ob_get_clean();
		}

		/**
		 * Renders Masonry Pagination Controls.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.1
		 */
		private function render_masonry_pagination_controls( $attributes ) {
			ob_start();
			if ( $attributes['mediaGallery'] && count( $attributes['mediaGallery'] ) > $attributes['paginateLimit'] ) {
				if ( $attributes['paginateUseLoader'] ) {
					?>
					<div class="spectra-image-gallery__control-loader wp-block-button">
						<div class="wp-block-button__link spectra-image-gallery__control-loader--1"></div>
						<div class="wp-block-button__link spectra-image-gallery__control-loader--2"></div>
						<div class="wp-block-button__link spectra-image-gallery__control-loader--3"></div>
					</div>
					<?php
				} else {
					?>
					<div class="spectra-image-gallery__control-wrapper wp-block-button">
						<div class="spectra-image-gallery__control-button wp-block-button__link" aria-label="<?php echo esc_attr( $attributes['paginateButtonText'] ); ?>" tabindex=0>
							<?php echo esc_html( $attributes['paginateButtonText'] ); ?>
						</div>
					</div>
					<?php
				}
			}
			return ob_get_clean();
		}

		/**
		 * Required attribute for query.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @return array of requred query attributes.
		 *
		 * @since 2.1
		 */
		public function required_atts( $attributes ) {
			return array(
				'mediaGallery'   => ( isset( $attributes['mediaGallery'] ) ) ? wp_json_encode( $attributes['mediaGallery'] ) : array(),
				'feedPagination' => ( isset( $attributes['feedPagination'] ) ) ? sanitize_text_field( $attributes['feedPagination'] ) : false,
				'gridPages'      => ( isset( $attributes['gridPages'] ) ) ? sanitize_text_field( $attributes['gridPages'] ) : 1,
				'gridPageNumber' => ( isset( $attributes['gridPageNumber'] ) ) ? sanitize_text_field( $attributes['gridPageNumber'] ) : 1,
				'paginateLimit'  => ( isset( $attributes['paginateLimit'] ) ) ? sanitize_text_field( $attributes['paginateLimit'] ) : 9,
			);
		}

		/**
		 * Sends the Images to Masonry AJAX.
		 *
		 * @since 2.1
		 */
		public function render_masonry_pagination() {
			check_ajax_referer( 'uagb_image_gallery_masonry_ajax_nonce', 'nonce' );
			$media_atts = array();
			// sanitizing $attr elements in later stage.
			$attr                       = isset( $_POST['attr'] ) ? json_decode( wp_unslash( $_POST['attr'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
			$attr['gridPageNumber']     = isset( $_POST['page_number'] ) ? sanitize_text_field( $_POST['page_number'] ) : '';
			$media_atts                 = $this->required_atts( $attr );
			$media_atts['mediaGallery'] = json_decode( $media_atts['mediaGallery'], true );
			$media                      = $this->get_gallery_images( $media_atts, 'paginated' );
			if ( ! $media ) {
				wp_send_json_error();
			}
			foreach ( $attr as $key => $attribute ) {
				$attr[ $key ] = ( 'false' === $attribute ) ? false : ( ( 'true' === $attribute ) ? true : $attribute );
			}
			$htmlArray = $this->render_media_markup( $media, $attr );
			wp_send_json_success( $htmlArray );
		}

		/**
		 * Sends the Imsges to Grid AJAX.
		 *
		 * @since 2.1
		 */
		public function render_grid_pagination() {
			check_ajax_referer( 'uagb_image_gallery_grid_pagination_ajax_nonce', 'nonce' );
			$media_atts = array();
			// sanitizing $attr elements in later stage.
			$attr                       = isset( $_POST['attr'] ) ? json_decode( wp_unslash( $_POST['attr'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized
			$attr['gridPageNumber']     = isset( $_POST['page_number'] ) ? sanitize_text_field( $_POST['page_number'] ) : '';
			$media_atts                 = $this->required_atts( $attr );
			$media_atts['mediaGallery'] = json_decode( $media_atts['mediaGallery'], true );
			$media                      = $this->get_gallery_images( $media_atts, 'paginated' );
			if ( ! $media ) {
				wp_send_json_error();
			}
			foreach ( $attr as $key => $attribute ) {
				$attr[ $key ] = ( 'false' === $attribute ) ? false : ( ( 'true' === $attribute ) ? true : $attribute );
			}
			$htmlArray = $this->render_media_markup( $media, $attr );
			wp_send_json_success( $htmlArray );
		}

		/**
		 * Renders Entire Gallery HTML.
		 *
		 * @param array $media      Part of Gallery Images.
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.1
		 */
		private function render_media_markup( $media, $attributes ) {
			$totalImages = count( $media );
			ob_start();
			if ( 'masonry' === $attributes['feedLayout'] || ( 'grid' === $attributes['feedLayout'] && $attributes['feedPagination'] ) ) {
				for ( $i = 0; $i < $totalImages; $i++ ) {
					$this->render_masonry_hover_handler( (array) $media[ $i ], $attributes );
				}
			} else {
				for ( $i = 0; $i < $totalImages; $i++ ) {
					$this->render_single_media( (array) $media[ $i ], $attributes );
				}
			}
			return ob_get_clean();
		}

		/**
		 * Renders the Isotope Required Hover Handler to avoid padding triggering hover effects.
		 *
		 * @param array $mediaArray Array of current image's details.
		 * @param array $atts       Array of attributes.
		 *
		 * @since 2.1
		 */
		private function render_masonry_hover_handler( $mediaArray, $atts ) {
			?>
			<div class='spectra-image-gallery__media-wrapper--isotope' >
				<?php
					$this->render_single_media( $mediaArray, $atts );
				?>
			</div>
			<?php
		}

		/**
		 * Renders an Individual Image Element with All Wrappers.
		 *
		 * @param array $mediaArray Array of current image's details.
		 * @param array $atts       Array of attributes.
		 *
		 * @since 2.1
		 */
		private function render_single_media( $mediaArray, $atts ) {
			// Check if this is part of the Tiled Layout, and if so then check if the current image is focused or not.
			$focusedClass = '';
			if ( 'tiled' === $atts['feedLayout'] && ! empty( $atts['focusListObject'][ $mediaArray['id'] ] ) ) {
				$focusedClass = ' spectra-image-gallery__media-wrapper--focus';
			}
			?>
			<div class='spectra-image-gallery__media-wrapper<?php echo esc_attr( $focusedClass ); ?>' data-spectra-gallery-image-id='<?php echo esc_attr( $mediaArray['id'] ); ?>' tabindex="0" >
				<?php
					$this->render_media_thumbnail( $mediaArray, $atts );
				?>
			</div>
			<?php
		}

		/**
		 * Renders the Image.
		 *
		 * @param array $mediaArray Array of current image's details.
		 * @param array $atts       Array of attributes.
		 *
		 * @since 2.1
		 */
		private function render_media_thumbnail( $mediaArray, $atts ) {
			// Create the SrcSet and Sizes to use in the Responsively Sized Images.
			$size     = $atts['galleryImageSize'];
			$size_tab = $atts['galleryImageSizeTablet'];
			$size_mob = $atts['galleryImageSizeMobile'];

			$image_url     = isset( $mediaArray['sizes'][ $size ]['url'] ) ? $mediaArray['sizes'][ $size ]['url'] : $mediaArray['url'];
			$image_url_tab = isset( $mediaArray['sizes'][ $size_tab ]['url'] ) ? $mediaArray['sizes'][ $size_tab ]['url'] : $mediaArray['url'];
			$image_url_mob = isset( $mediaArray['sizes'][ $size_mob ]['url'] ) ? $mediaArray['sizes'][ $size_mob ]['url'] : $mediaArray['url'];

			if ( 'bar-outside' === $atts['captionDisplayType'] && ( 'top' === UAGB_Block_Helper::get_matrix_alignment( $atts['imageCaptionAlignment'], 1 ) ) && $atts['imageDisplayCaption'] ) {
				?>
					<div class="spectra-image-gallery__media-thumbnail-caption-wrapper spectra-image-gallery__media-thumbnail-caption-wrapper--<?php echo esc_attr( $atts['captionDisplayType'] ); ?>">
						<?php $this->render_media_caption( $mediaArray, $atts ); ?>
					</div>
				<?php
			}
			?>
			<div class="spectra-image-gallery__media spectra-image-gallery__media--<?php echo esc_attr( $atts['feedLayout'] ); ?>">
				<picture>
					<source media="(min-width: 1024px)" srcset="<?php echo esc_url( $image_url ); ?>">
					<source media="(min-width: 768px)" srcset="<?php echo esc_url( $image_url_tab ); ?>">
					<img class="spectra-image-gallery__media-thumbnail spectra-image-gallery__media-thumbnail--<?php echo esc_attr( $atts['feedLayout'] ); ?>" src="<?php echo esc_url( $image_url_mob ); ?>" alt="<?php echo esc_attr( $mediaArray['alt'] ); ?>" <?php echo esc_attr( $atts['disableLazyLoad'] ) ? '' : 'loading="lazy"'; ?> />
				</picture>
				<div class="spectra-image-gallery__media-thumbnail-blurrer"></div>
				<?php
				if ( $atts['imageDisplayCaption'] ) {
					if ( 'bar-outside' !== $atts['captionDisplayType'] ) {
						?>
							<div class="spectra-image-gallery__media-thumbnail-caption-wrapper spectra-image-gallery__media-thumbnail-caption-wrapper--<?php echo esc_attr( $atts['captionDisplayType'] ); ?>">
							<?php $this->render_media_caption( $mediaArray, $atts ); ?>
							</div>
						<?php
					}
				} else {
					?>
							<div class="spectra-image-gallery__media-thumbnail-caption-wrapper spectra-image-gallery__media-thumbnail-caption-wrapper--overlay"></div>
					<?php
				}
				?>
			</div>
			<?php
			if ( 'bar-outside' === $atts['captionDisplayType'] && ( 'top' !== UAGB_Block_Helper::get_matrix_alignment( $atts['imageCaptionAlignment'], 1 ) ) && $atts['imageDisplayCaption'] ) {
				?>
					<div class="spectra-image-gallery__media-thumbnail-caption-wrapper spectra-image-gallery__media-thumbnail-caption-wrapper--<?php echo esc_attr( $atts['captionDisplayType'] ); ?>">
						<?php $this->render_media_caption( $mediaArray, $atts ); ?>
					</div>
				<?php
			}
		}

		/**
		 * Renders Image Caption.
		 *
		 * @param array $mediaArray Array of current image's details.
		 * @param array $atts       Array of attributes.
		 *
		 * @since 2.1
		 */
		private function render_media_caption( $mediaArray, $atts ) {
			$limitedCaption = ( isset( $mediaArray['caption'] ) && $mediaArray['caption'] ) ? (
				$mediaArray['caption']
			) : (
				$mediaArray['url'] ? (
					$atts['imageDefaultCaption']
				) : (
					__( 'Unable to load image', 'ultimate-addons-for-gutenberg' )
				)
			);
			?>
				<div class="spectra-image-gallery__media-thumbnail-caption spectra-image-gallery__media-thumbnail-caption--<?php echo esc_attr( $atts['captionDisplayType'] ); ?>">
					<?php echo wp_kses_post( $limitedCaption ); ?>
				</div>
			<?php
		}

		/**
		 * Renders All Images.
		 *
		 * @param array  $attributes Array of block attributes.
		 * @param string $fetchType String to identify whether paginated or full.
		 *
		 * @since 2.1
		 */
		private static function get_gallery_images( $attributes, $fetchType ) {
			$mediaRequired = array();
			switch ( $fetchType ) {
				case 'paginated':
					if ( isset( $attributes['mediaGallery'] ) && isset( $attributes['feedPagination'] ) && isset( $attributes['gridPages'] ) && isset( $attributes['gridPageNumber'] ) && isset( $attributes['paginateLimit'] ) && $attributes['feedPagination'] && $attributes['mediaGallery'] ) {
						$mediaIndex = ( $attributes['gridPageNumber'] - 1 ) * $attributes['paginateLimit'];
						for ( $i = 0; $i < $attributes['paginateLimit']; $i++ ) {
							if ( array_key_exists( $mediaIndex + $i, $attributes['mediaGallery'] ) ) {
								array_push( $mediaRequired, $attributes['mediaGallery'][ $mediaIndex + $i ] );
							}
						}
					}
					break;
				case 'full':
					if ( isset( $attributes['mediaGallery'] ) && $attributes['mediaGallery'] ) {
						$mediaIndex    = 0;
						$galleryLength = count( $attributes['mediaGallery'] );
						for ( $i = 0; $i < $galleryLength; $i++ ) {
							if ( array_key_exists( $mediaIndex + $i, $attributes['mediaGallery'] ) ) {
								array_push( $mediaRequired, $attributes['mediaGallery'][ $mediaIndex + $i ] );
							}
						}
					}
					break;
			}
			return $mediaRequired;
		}

		/**
		 * Renders the Front-end Masonry Layout.
		 *
		 * @param string $id                 The Block ID.
		 * @param array  $attr               An array of attributes.
		 * @param string $selector           The selector used to identify the carousel.
		 * @param array  $lightbox_settings  An array of Lightbox Swiper Settings.
		 * @param array  $thumbnail_settings An array of Thumbnail Swiper Settings.
		 * @since 2.1
		 * @return string   The rendered markup or an empty string.
		 */
		public static function render_frontend_masonry_layout( $id, $attr, $selector, $lightbox_settings, $thumbnail_settings ) {
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', function() {
					const scope = document.querySelector( '.uagb-block-<?php echo esc_attr( $id ); ?>' );
					if ( scope ){
						if ( scope.children[0].classList.contains( 'spectra-image-gallery__layout--masonry' ) ) {
							// Add timeout for the images to load.
							setTimeout( function() {
								const element = scope.querySelector( '.spectra-image-gallery__layout--masonry' );
								const isotope = new Isotope( element, {
									itemSelector: '.spectra-image-gallery__media-wrapper--isotope',
									percentPosition: true,
								} );
								imagesLoaded( element ).on( 'progress', function() {
									isotope.layout();
								});
								imagesLoaded( element ).on( 'always', function() {
									element.parentNode.style.visibility = 'visible';
								});
								UAGBImageGalleryMasonry.init( <?php echo wp_json_encode( $attr ); ?>, '<?php echo esc_attr( $selector ); ?>', <?php echo wp_json_encode( $lightbox_settings ); ?>, <?php echo wp_json_encode( $thumbnail_settings ); ?> );
								UAGBImageGalleryMasonry.initByOffset( element, isotope );
							}, 500 );
						}
					}
				});
			<?php
			$output = ob_get_clean();
			return is_string( $output ) ? $output : '';
		}

		/**
		 * Renders the Front-end Grid Paginated Layout.
		 *
		 * @param string $id                 The Block ID.
		 * @param array  $attr               An array of attributes.
		 * @param string $selector           The selector used to identify the carousel.
		 * @param array  $lightbox_settings  An array of Lightbox Swiper Settings.
		 * @param array  $thumbnail_settings An array of Thumbnail Swiper Settings.
		 * @since 2.1
		 * @return string   The rendered markup or an empty string.
		 */
		public static function render_frontend_grid_pagination( $id, $attr, $selector, $lightbox_settings, $thumbnail_settings ) {
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', function() {
					const scope = document.querySelector( '.uagb-block-<?php echo esc_attr( $id ); ?>' );
					if ( scope ){
						if ( scope.children[0].classList.contains( 'spectra-image-gallery__layout--isogrid' ) ) {
							setTimeout( function() {
								const element = scope.querySelector( '.spectra-image-gallery__layout--isogrid' );
								const isotope = new Isotope( element, {
									itemSelector: '.spectra-image-gallery__media-wrapper--isotope',
									layoutMode: 'fitRows',
								} );
								imagesLoaded( element ).on( 'progress', function() {
									isotope.layout();
								});
								UAGBImageGalleryMasonry.initByOffset( element, isotope );
							}, 500 );
						}
						UAGBImageGalleryPagedGrid.init( <?php echo wp_json_encode( $attr ); ?>, '<?php echo esc_attr( $selector ); ?>', <?php echo wp_json_encode( $lightbox_settings ); ?>, <?php echo wp_json_encode( $thumbnail_settings ); ?> );
					}
				});
			<?php
			$output = ob_get_clean();
			return is_string( $output ) ? $output : '';
		}

		/**
		 * Renders Front-end Carousel Layout.
		 *
		 * @param string $id       Block ID.
		 * @param array  $settings  Array of carousel settings.
		 * @param string $selector Selector to identify the carousel.
		 *
		 * @since 2.1
		 */
		public static function render_frontend_carousel_layout( $id, $settings, $selector ) {
			return 'jQuery(document).ready(function () {
				let scope = jQuery(".wp-block-uagb-image-gallery' . $selector . '");
				if ( scope.length ) { 
					scope.css("visibility", "visible");
					let getSlickCarousel = scope.find(".uagb-slick-carousel");
					if( getSlickCarousel.length ) {
						getSlickCarousel.slick(' . $settings . ');
					}
				}
			});';
		}

		/**
		 * Renders Front-end Tiled Layout.
		 *
		 * @param string $id Block ID.
		 *
		 * @since 2.1
		 */
		public static function render_frontend_tiled_layout( $id ) {
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', function() {
					const scope = document.querySelector( '.uagb-block-<?php echo esc_attr( $id ); ?>' );
					if ( scope ){
						if ( scope.children[0].classList.contains( 'spectra-image-gallery__layout--tiled' ) ) {
							const element = scope.querySelector( '.spectra-image-gallery__layout--tiled' );
							const tileSizer = scope.querySelector( '.spectra-image-gallery__media-sizer' );
							element.style.gridAutoRows = `${ tileSizer.getBoundingClientRect().width }px`;

							imagesLoaded( element ).on( 'progress', ( theInstance, theImage ) => {
								if ( theImage.isLoaded ){
									const imageElement = theImage.img;
									const imageWrapper = imageElement.parentElement.parentElement;
									const mediaWrapper = imageWrapper.parentElement;
									if( ! mediaWrapper.classList.contains( 'spectra-image-gallery__media-wrapper--focus' ) ){
										if ( imageElement.naturalWidth >= ( imageElement.naturalHeight * 2 ) - ( imageElement.naturalHeight / 2 ) ){
											mediaWrapper.classList.add( 'spectra-image-gallery__media-wrapper--wide');
											imageWrapper.classList.add( 'spectra-image-gallery__media--tiled-wide');
										}
										else if ( imageElement.naturalHeight >= ( imageElement.naturalWidth * 2 ) - ( imageElement.naturalWidth / 2 ) ){
											mediaWrapper.classList.add( 'spectra-image-gallery__media-wrapper--tall');
											imageWrapper.classList.add( 'spectra-image-gallery__media--tiled-tall');
										}
									}
								}
							} );
							tileSizer.style.display = 'none';
						}
					}
				} );
			<?php
			return ob_get_clean();
		}

		/**
		 * Renders Front-end Lightbox.
		 *
		 * @param string $id                  Block ID.
		 * @param array  $attr                Array of attributes.
		 * @param array  $lightbox_settings   Array of Lightbox Swiper Settings.
		 * @param array  $thumbnail_settings  Array of Thumbnail Swiper Settings.
		 * @param string $selector            Selector to identify the lightbox.
		 * @since 2.4.0
		 * @return string       The Output Buffer.
		 */
		public static function render_frontend_lightbox( $id, $attr, $lightbox_settings, $thumbnail_settings, $selector ) {
			$pro_clicker = apply_filters( 'uagb_image_gallery_pro_lightbox_js', '', $id, $attr );
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', () => {
					const blockScope = document.querySelector( '.uagb-block-<?php echo esc_html( $id ); ?>' );
					if ( ! blockScope ) {
						return;
					}

					<?php // Add event listener for Enter and Space key presses. ?>
					blockScope.addEventListener('keydown', (event) => {
						if ( 13 === event.keyCode || 32 === event.keyCode ) {
							<?php // Trigger the click event on the blockScope. ?>
							blockScope.click();
						}
					} );

					let lightboxSwiper = null;
					let thumbnailSwiper = null;

					<?php // First set the Thumbnail Swiper if needed. This will be used in the Lightbox Swiper. ?>
					let lightboxSettings = <?php echo wp_json_encode( $lightbox_settings ); ?>;
					<?php if ( $attr['lightboxThumbnails'] ) : ?>
						thumbnailSwiper = new Swiper( "<?php echo esc_attr( $selector . '+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails' ); ?>",
							<?php echo wp_json_encode( $thumbnail_settings ); ?>
						);
						lightboxSettings = {
							...lightboxSettings,
							thumbs: {
								swiper: thumbnailSwiper,
							},
						}
					<?php endif; ?>
					<?php // Next set the Lightbox Swiper. ?>
					lightboxSwiper = new Swiper( "<?php echo esc_attr( $selector . '+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main' ); ?>",
						<?php echo wp_json_encode( $lightbox_settings ); ?>
					);
					loadLightBoxImages( blockScope, lightboxSwiper, null, <?php echo wp_json_encode( $attr ); ?>, thumbnailSwiper );
					<?php echo $pro_clicker; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Already escaped inside pro filter. ?>
				} );
			<?php
			return ob_get_clean();
		}

		/**
		 * Renders Front-end Click Event.
		 *
		 * @param string $id             Block ID.
		 * @param array  $attr           The array of Attribute.
		 * @return string                The Output Buffer.
		 *
		 * @since 2.4.0
		 */
		public static function render_image_click( $id, $attr ) {
			ob_start();
			?>
				window.addEventListener( 'DOMContentLoaded', () => {
					const blockScope = document.querySelector( '.uagb-block-<?php echo esc_html( $id ); ?>' );
					if ( ! blockScope ) {
						return;
					}
					const attr = <?php echo wp_json_encode( $attr ); ?>;
					addClickListeners( blockScope, null, false, null, attr );

					<?php // Add event listener for Enter and Space key presses. ?> 
					blockScope.addEventListener('keydown', (event) => {
						if ( 13 === event.keyCode || 32 === event.keyCode ) {
							// Trigger the click event on the blockScope
							event.preventDefault();
							blockScope.click();
						}
		});
				} );
			<?php
			return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'Spectra_Image_Gallery' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	Spectra_Image_Gallery::get_instance();
}
PK�][iC��TTVultimate-addons-for-gutenberg/blocks-config/buttons-child/class-uagb-buttons-child.phpnu�[���<?php
/**
 * Spectra - Buttons Child
 *
 * @package UAGB
 *
 * @since 2.6.3
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Buttons_Child.
 *
 * @since 2.6.3
 */
class UAGB_Buttons_Child {

	/**
	 * Member Variable
	 *
	 * @since 2.6.3
	 * @var instance
	 */
	private static $instance;

	/**
	 * Get class instance.
	 *
	 * @since 2.6.3
	 * @return UAGB_Buttons_Child
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Class Constructor.
	 *
	 * @since 2.6.3
	 * @return void
	 */
	public function __construct() {
		add_action( 'init', array( $this, 'register_buttons_child' ) );
	}

	/**
	 * Register Buttons Child.
	 *
	 * @since 2.6.3
	 * @return void
	 */
	public function register_buttons_child() {
		register_block_type(
			'uagb/buttons-child',
			array(
				'render_callback' => array( $this, 'render_buttons_child' ),
				'uses_context'    => array(
					'queryId',
					'query',
					'queryContext',
					'attrs',
				),
			)
		);
	}

	/**
	 * Render Button Child
	 *
	 * @param array  $attributes Attributes.
	 * @param String $content Content.
	 * @param object $block Block Object.
	 * @since 2.6.3
	 * @return string $content.
	 */
	public function render_buttons_child( $attributes, $content, $block ) {
		return apply_filters( 'spectra_buttons_child_content', $content, $attributes, $block );
	}
}

/**
 *  Prepare if class 'UAGB_Buttons_Child' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Buttons_Child::get_instance();
PK�][�t�g��Pultimate-addons-for-gutenberg/blocks-config/google-map/class-uagb-google-map.phpnu�[���<?php
/**
 * UAGB Google Map.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Google_Map' ) ) {

	/**
	 * Class UAGB_Google_Map.
	 */
	class UAGB_Google_Map {


		/**
		 * Member Variable
		 *
		 * @since 2.6.4
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 2.6.4
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'init', array( $this, 'register_blocks' ) );
		}

		/**
		 * Registers the `core/latest-posts` block on server.
		 *
		 * @since 2.6.4
		 */
		public function register_blocks() {
			// Check if the register function exists.
			if ( ! function_exists( 'register_block_type' ) ) {
				return;
			}

			register_block_type(
				'uagb/google-map',
				array(
					'attributes'      => array(
						'block_id'            => array(
							'type' => 'string',
						),
						'address'             => array(
							'type'    => 'string',
							'default' => 'Brainstorm Force',
						),
						'height'              => array(
							'type'    => 'number',
							'default' => 300,
						),
						'heightTablet'        => array(
							'type'    => 'number',
							'default' => 300,
						),
						'heightMobile'        => array(
							'type'    => 'number',
							'default' => 300,
						),
						'zoom'                => array(
							'type'    => 'number',
							'default' => 12,
						),
						'language'            => array(
							'type'    => 'string',
							'default' => 'en',
						),
						'isPreview'           => array(
							'type'    => 'boolean',
							'default' => false,
						),
						'enableSatelliteView' => array(
							'type'    => 'boolean',
							'default' => false,
						),
					),
					'render_callback' => array( $this, 'google_map_callback' ),
				)
			);
		}

		/**
		 * Renders the Google Map block on server.
		 *
		 * @param array $attributes Array of block attributes.
		 *
		 * @since 2.6.4
		 */
		public function google_map_callback( $attributes ) {
			$desktop_class = '';
			$tab_class     = '';
			$mob_class     = '';

			/**
			 * Added filter to attributes to support Dynamic Content.
			 *
			 * @since 2.7.0
			 * @hooked Pro -> DynamicContent->uagb_google_map_block_attributes
			 * */
			$attributes = apply_filters( 'uagb_google_map_block_attributes', $attributes );
			
			if ( array_key_exists( 'UAGHideDesktop', $attributes ) || array_key_exists( 'UAGHideTab', $attributes ) || array_key_exists( 'UAGHideMob', $attributes ) ) {
				$desktop_class = ( isset( $attributes['UAGHideDesktop'] ) ) ? 'uag-hide-desktop' : '';
				$tab_class     = ( isset( $attributes['UAGHideTab'] ) ) ? 'uag-hide-tab' : '';
				$mob_class     = ( isset( $attributes['UAGHideMob'] ) ) ? 'uag-hide-mob' : '';
			}
			
			$zindex_desktop           = '';
			$zindex_tablet            = '';
			$zindex_mobile            = '';
			$zindex_wrap              = array();
			$zindex_extention_enabled = ( isset( $attributes['zIndex'] ) || isset( $attributes['zIndexTablet'] ) || isset( $attributes['zIndexMobile'] ) );
			
			if ( $zindex_extention_enabled ) {
				$zindex_desktop = ( isset( $attributes['zIndex'] ) ) ? '--z-index-desktop:' . $attributes['zIndex'] . ';' : false;
				$zindex_tablet  = ( isset( $attributes['zIndexTablet'] ) ) ? '--z-index-tablet:' . $attributes['zIndexTablet'] . ';' : false;
				$zindex_mobile  = ( isset( $attributes['zIndexMobile'] ) ) ? '--z-index-mobile:' . $attributes['zIndexMobile'] . ';' : false;
				
				if ( $zindex_desktop ) {
					array_push( $zindex_wrap, $zindex_desktop );
				}
				
				if ( $zindex_tablet ) {
					array_push( $zindex_wrap, $zindex_tablet );
				}
				
				if ( $zindex_mobile ) {
					array_push( $zindex_wrap, $zindex_mobile );
				}
			}
			
			$block_id     = 'uagb-block-' . $attributes['block_id'];
			$main_classes = array(
				'wp-block-uagb-google-map',
				'uagb-google-map__wrap',
				$block_id,
				$desktop_class,
				$tab_class,
				$mob_class,
				$zindex_extention_enabled ? 'uag-blocks-common-selector' : '',
				( is_array( $attributes ) && isset( $attributes['className'] ) ) ? $attributes['className'] : '',
			);

			$address  = ! empty( $attributes['address'] ) ? rawurlencode( $attributes['address'] ) : rawurlencode( 'Brainstorm Force' );
			$zoom     = ! empty( $attributes['zoom'] ) ? $attributes['zoom'] : 12;
			$language = ! empty( $attributes['language'] ) ? $attributes['language'] : 'en';
			$height   = ! empty( $attributes['height'] ) ? $attributes['height'] : 300;
			$map_type = 'm';

			if ( is_array( $attributes ) && isset( $attributes['enableSatelliteView'] ) ) {
				$map_type = $attributes['enableSatelliteView'] ? 'k' : 'm';
			}


			$updated_url = add_query_arg(
				array(
					'q'      => $address,
					'z'      => $zoom,
					'hl'     => $language,
					't'      => $map_type,
					'output' => 'embed',
					'iwloc'  => 'near',
				),
				'https://maps.google.com/maps' 
			);
			ob_start();
			?>
			<div 
			class="<?php echo esc_attr( implode( ' ', $main_classes ) ); ?>"
			style="<?php echo esc_attr( implode( '', $zindex_wrap ) ); ?>" >
				<embed
					class="uagb-google-map__iframe"
					title="<?php _e( 'Google Map for ', 'ultimate-addons-for-gutenberg' ) . $address; ?>"
					src="<?php echo esc_url_raw( $updated_url ); ?>"
					width="640"
					height="<?php echo floatval( $height ); ?>"
					loading="lazy"
				></embed>
			</div>
			<?php
			return ob_get_clean();
		}
	}

	/**
	 *  Prepare if class 'UAGB_Google_Map' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Google_Map::get_instance();
}
PK�][�rU�Z�Z(ultimate-addons-for-gutenberg/readme.txtnu�[���=== Spectra Gutenberg Blocks – Website Builder for the Block Editor ===
Contributors: brainstormforce
Donate link: https://www.paypal.me/BrainstormForce
Tags: gutenberg, blocks, gutenberg blocks, editor, block
Requires at least: 5.6
Requires PHP: 7.4
Tested up to: 6.8
Stable tag: 2.19.15
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Power-up Gutenberg with advanced blocks for faster website creation. Build your WordPress website effortlessly using powerful building blocks!

== Description ==

<strong>SPECTRA WEBSITE BUILDER – BEST GUTENBERG BLOCKS PLUGIN TO EXTEND THE WORDPRESS BLOCK EDITOR WITH PAGE EDITING FEATURES, 30+ FREE CUSTOMIZABLE BLOCKS, COMING SOON MODE, POPUP BUILDER</strong>

★★★★★

[youtube https://www.youtube.com/watch?v=-Ksf984Tcgw&list=PL1kzJGWGPrW_tpwr6g4i_wiGegpq7qibx]

Most helpful links
<ul>
 	<li><a href="https://wpspectra.com/" target="_blank" rel="">Spectra – Free Page Builder | WordPress Builder Plugin</a></li>
 	<li><a href="https://youtu.be/GLNzTxArR6Y" target="_blank" rel="">A Better Way to Build WordPress Websites with Gutenberg | Introducing Spectra</a></li>
 	<li><a href="https://youtu.be/8aniX8w4NLA" target="_blank" rel="">Spectra Flexbox Controls CRASH COURSE</a></li>
 	<li><a href="https://youtu.be/h07jB2Z9Qbk" target="_blank" rel="">Spectra Page Builder For WordPress Gets These 10 Things Right - Never Seen Before Feature Reveal!</a></li>
</ul>


<strong>DESIGN BEAUTIFUL FAST LOADING WEBSITES DIRECTLY ON THE WORDPRESS BLOCK EDITOR (GUTENBERG EDITOR) WITHOUT CODING</strong>

<a href="https://bsf.io/spectra-demo" target="_blank" rel="">Try the live demo of Spectra</a>

Our mission is to empower web designers like you with an end-to-end solution for building stunning websites.

We aim to simplify the website creation process by providing a versatile toolkit within a single plugin, eliminating the need to install multiple plugins for various functionalities.

With Spectra, we strive to make it extremely easy to use for beginners and feature-rich for experienced designers.

Spectra equips designers with a wide range of pre-designed website templates, allowing them to effortlessly create professional websites tailored to their unique requirements.

Beyond just aesthetics, we are committed to optimizing website performance. Spectra offers efficient code and performance-focused features, ensuring that the websites built with our plugin are not only visually appealing but also deliver exceptional speed and smooth functionality.

By providing an all-in-one solution for building websites, we aim to streamline their workflow and enhance their productivity. We continuously innovate and improve Spectra, integrating cutting-edge technologies and staying ahead of the evolving web design landscape. We empower our users to build websites that captivate, engage, and impress their clients or themselves.


<strong>HERE'S THE IMPORTANT THING ⭐</strong>

Finally, a website builder which allows you to design beautiful and professional-looking websites using the power of the default block editor of WordPress.

With utmost attention, the developers have ensured that Spectra is easy to use and provides everything you need to design a fully functional website.

Guess what! 🤩
Users of page builders like Elementor and Beaver Builder absolutely LOVE Spectra because of 3 reasons -

<ul>
 	<li>The code of Spectra is extremely optimized for performance and speed</li>
 	<li>Spectra designs and features make you look like an expert web designer</li>
 	<li>There's zero learning curve as Spectra works on top of the default WordPress block editor.</li>
</ul>

<strong>Introducing Spectra – the ultimate solution to revolutionize your web design experience.</strong>

With Spectra, you can power up the block editor with advanced and powerful blocks that simplify the entire process. Say goodbye to the hassle of coding and say hello to effortless website creation.

Spectra provides a wide range of unique and creative blocks on top of the default WordPress page editor, enabling you to build and design pages or posts without writing a single line of code.

It offers an easy-to-use interface, customization options, and a library of pre-built website templates to help you build awesome websites in minutes.

Whether you need to launch an online store or promote your services, Spectra empowers you to build pixel-perfect websites that captivate your audience.

Don't let coding complexities hold you back – unlock the potential of block editor with Spectra and build faster, better-performing websites today!

<strong>SOME POWERFUL FEATURES OF SPECTRA 💪</strong>

<ol>
	<li><strong>Layouts</strong> - Easily move, resize, and hide different sections, rows, columns, and blocks using convenient layout navigation to make your page designing process faster.</li>
	<li><strong>Designs powered by Starter Templates</strong> - Thinking about switching from Elementor templates to a more performance-friendly alternative? Spectra gives you the same level of design flexibility - without the bloat. Spectra offers hundreds of designs to choose from.</li>
	<li><strong>Wireframes</strong> - Before diving into the design process, it's crucial to create a structure for your website. With Spectra's Wireframe Blocks, you can quickly create page or website mockups, improving work efficiency and saving time.</li>
	<li><strong>Block patterns</strong> - Import and customize pre-designed block patterns for various sections on your website. Spectra provides a collection of these patterns that can be easily tailored to your preferences.</li>
	<li><strong>Advanced block presets</strong> - Not sure how to design blocks optimally? No worries! Our team of expert designers has created highly converting and visually appealing presets for you to use.</li>
	<li><strong>Spectra Copy Paste</strong> - If you've customized a block with specific fonts, colors, spacings, borders, shadows, and animations, you can effortlessly replicate the same design on another block using Spectra Copy Paste feature.</li>
	<li><strong>Container</strong> - Create stunning layouts using the Container block, powered by flexbox technology.</li>
	<li><strong>Global styling support</strong> - Spectra allows you to set the default content width for your website with just a single click. You can also inherit button styles from your theme, maintain consistent container padding throughout your site, and set a default gap between rows and columns.</li>
	<li><strong>Popup Builder</strong> - Grab your audience's attention or share important notices by designing beautiful popups using our intuitive popup builder.</li>
	<li><strong>Coming soon mode</strong> - Is your website still under construction? Not ready for public viewing yet? Enable the coming soon mode, and only the selected page will be visible to those not logged in.</li>
	<li><strong>Animations</strong> - Add a touch of life and interactivity to your website with Spectra's wide range of animations. Choose from fade, slide, zoom, flip, zoom in, zoom out, and more. Free users have access to a selection of animations that can be easily applied to any block.</li>
	<li><strong>Load Google Fonts locally</strong> - Optimize your website's speed and ensure GDPR compliance by enabling this option to download and save Google fonts on your server.</li>
</ol>

<strong>INCLUDES 30+ ESSENTIAL BLOCKS 🔥</strong>

<ol>
	<li><strong>Core Blocks</strong> - Spectra offers essential blocks that every website and landing page needs. You'll find blocks like Container, Heading, Image, Icon, Buttons, Info Box, Call To Action, and Countdown, which are crucial for crafting your pages.</li>
	<li><strong>Creative Blocks</strong> - Unleash your creativity with Spectra's creative blocks. These include Star Ratings, Countdown, Marketing Button, Icon List, Image Gallery, and even support for Lottie Animations. Let your imagination run wild and make your designs truly stand out.</li>
	<li><strong>Content Blocks</strong> - Showcase your content beautifully with Spectra's content blocks. From Sliders and Image blocks to Content Timelines, Google Maps, Inline Notices, Tabs, Taxonomy Lists, Price Lists, and more, these blocks offer diverse options to present your content in an engaging manner. And if you're using Spectra Pro, you'll even have access to the powerful Loop Builder.</li>
	<li><strong>Post Blocks</strong> - Enhance your blog posts with Spectra's Post Blocks. Add a Counter, Modal Popup, Post Carousel, Post Grid, or Post Timeline to make your blog visually appealing and user-friendly.</li>
	<li><strong>Social Blocks</strong> - Spectra provides blocks that help you showcase your social status. You'll find blocks like Instagram Feed, Blockquote, Social Share, Team, and Testimonials, which allow you to highlight social proof and engage with your audience effectively.</li>
	<li><strong>Form Blocks</strong> - Create interactive forms easily with Spectra's Form Blocks. Whether it's a contact form, newsletter signup, or suggestion form, you can collect valuable leads. You can even enable reCAPTCHA to ensure form security. With Spectra Pro, you can even enable user registration or login forms.</li>
	<li><strong>SEO Blocks</strong> - Boost your website's search engine optimization with Spectra's SEO Blocks. These blocks, such as FAQ, How-To, Review, and Table of Contents, are designed to improve your site's visibility and enhance the user experience.</li>
	<li><strong>Dynamic Content</strong> - Take control of your website's archive feed with Spectra's Dynamic Content blocks. You can customize the feed based on dynamic parameters like date, name, category, page, posts, and more, giving you flexibility and customization options.</li>
</ol>

<strong>WHO CAN BENEFIT FROM SPECTRA? 📈</strong>

<ul>
	<li><strong>Web designers</strong> - Want to enhance your website-building process without getting stuck in coding? Spectra's got your back! With its advanced blocks, you can create stunning layouts and customize elements like a pro, all without writing a single line of code.</li>
	<li><strong>Small business owners</strong> - Building a professional website for your business just got easier with Spectra. Choose from the pre-built WordPress Templates and customize them to match your branding and content. Say goodbye to costly web development and hello to a beautiful online presence.</li>
	<li><strong>Bloggers</strong> - Spice up your blog posts with Spectra's eye-catching elements. Add images, engaging call-to-actions, content timelines, and social sharing blocks to make your content pop. It's time to captivate your readers and take your blog to the next level.</li>
	<li><strong>SEO Specialists</strong> - Spectra has schema markup blocks like FAQ, How-To, Review, and Table of Content to boost your website rankings and improve search engine representation. Plus, its lightweight and optimized code ensures your site performs at its best. Get ready to conquer the search results!</li>
	<li><strong>eCommerce store owners</strong> - Spectra helps you create visually stunning product listings, showcase star ratings and reviews, and display pricing information that will make your customers click that "buy" button. Get ready to take your online store to new heights.</li>
	<li><strong>Marketers</strong> - Spectra is your secret weapon for creating effective landing pages and promotional materials. Use attention-grabbing blocks like call-to-actions, marketing buttons, and testimonials to drive conversions and engage your target audience. Your campaigns just got a whole lot better.</li>
	<li><strong>Freelancers</strong> - We've got something special for you! Streamline your workflow and save time with Spectra. Quickly build websites for your clients using the pre-built website templates and customize them to meet their requirements. It's the ultimate toolkit for freelancers.</li>
	<li><strong>Podcasters and YouTubers</strong> - With Spectra, you can enhance your website or blog with ease. Add a podcast player, embed videos, showcase a content timeline, and create engaging content using the various blocks offered. Let your creativity flow and captivate your audience.</li>
	<li><strong>Non-profit organizations</strong> - Create visually appealing websites to showcase your cause, share inspiring success stories, and collect donations. Spectra's image blocks, forms, testimonials, and social sharing options will help you engage your audience and promote your mission effectively.</li>
	<li><strong>Restaurant owners</strong> - Spectra's ready-to-use Starter Templates cater specifically to restaurants. Show off your menus, feature customer testimonials, and even integrate a reservation form using the forms block. It's the secret ingredient to a mouth-watering online presence.</li>
	<li><strong>Beginner WordPress users</strong> - Spectra's user-friendly interface, pre-designed WordPress Templates, and comprehensive tutorials make website creation a breeze. No coding skills are needed! You can create professional-looking websites and amaze everyone with your online presence.</li>
</ul>

Anyone thinking of moving away from traditional page builders like Elementor and Divi Builder in favor of WordPress Block Editor (also known as Gutenberg) for a better page-building experience without the need for traditional page builders like Elementor and Divi.

<strong>SOME OF THE WORDPRESS THEMES & PLUGINS SPECTRA SUPPORTS 🔗</strong>

Spectra works with any theme, including:
<ul>
	<li>Spectra One</li>
	<li>Astra</li>
	<li>Blocksy</li>
	<li>Flatsome</li>
	<li>GeneratePress</li>
	<li>Hestia</li>
	<li>Kadence</li>
	<li>Neve</li>
</ul>

Spectra is compatible with all plugins, including:
<ul>
	<li>Easy Digital Downloads</li>
	<li>FluentCRM</li>
	<li>FluentForm</li>
	<li>GiveWP</li>
	<li>Gravity Forms</li>
	<li>LearnDash</li>
	<li>LifterLMS</li>
	<li>MemberPress</li>
	<li>PrestoPlayer</li>
	<li>Restrict Content Pro</li>
	<li>SureCart</li>
	<li>SureMembers</li>
	<li>The Events Calendar</li>
	<li>TutorLMS</li>
	<li>Wishlist Member</li>
	<li>WooCommerce</li>
	<li>Yoast SEO</li>
	<li>And many more</li>
</ul>

Note: Spectra does not offer Elementor Templates.

<strong>SUPPORT THAT CARES! ⛑️</strong>

We understand the need for a quality product backed by dedicated support that cares. We are here to listen to all your queries and help you make the most out of our plugin.

<a href="https://wpspectra.com/support/" target="_blank" rel="">Need help? We are just a click away!</a>

<strong>CONNECT WITH OUR TEAM AND COMMUNITY 🌐</strong>

<ul>
	<li>Facebook Group: <a href="https://www.facebook.com/groups/wpastra" target="_blank" rel="">Web Creators by Astra</a></li>
	<li>Facebook: <a href="https://www.facebook.com/wpspectra" target="_blank" rel="">Spectra</a></li>
	<li>Twitter / X: <a href="https://twitter.com/wpspectra" target="_blank" rel="">Spectra</a></li>
</ul>

<strong>WANT TO CONTRIBUTE TO THE PLUGIN? 🙋</strong>

You may now contribute to the plugin on Github: <a href="https://github.com/brainstormforce/wp-spectra" target="_blank" rel="">Spectra on Github</a>

== Installation ==

Install the Spectra either via the WordPress plugin directory or by uploading the files to your server at wp-content/plugins.

You can refer to our <a href="https://wpspectra.com/getting-started-with-gutenberg-blocks/" target="_blank" rel="">getting started article</a> to know more.

For more information, please visit our <a href="https://wpspectra.com/docs/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank" rel="">Knowledge Base.</a>

== Frequently Asked Questions ==

= Who should use the Spectra? =


The Spectra is a complete package of unique and creative blocks that help build beautiful pages and posts on a website. Therefore, it is certainly an asset for all those who love Gutenberg.

= What are the requirements to use the Spectra? =

You only need to have the latest version of WordPress on your website, to begin with. The Spectra is basically an addon for the default WordPress editor. Therefore, the latest WordPress installation along with a theme should be enough, to begin with.

= What themes does the Spectra work with? =

The Spectra is built to work great with all the themes. But, <a href="https://wpastra.com/gutenberg-compatible/?utm_source=wp-repo&utm_medium=uagb&utm_campaign=readme" target="_blank" rel="">Astra being among the first ones to be Gutenberg ready</a>, we recommend you to try using Astra since it is lightweight, fast, simple and comes with a lot of options.

= Can I use the Spectra even while having another Page Builder? =

The basic need of the Spectra is the latest WordPress version. We have also made it compatible with all major page builders and therefore, it won't interfere in their working. Should you need help, you can <a href="https://support.brainstormforce.com/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank" rel="">get in touch with us.</a>

= Can I use the Spectra on client websites? =

Yes! You can certainly use the Spectra on yours as well as your client's websites.

= Will the Spectra slow down my website? =

Absolutely no! The Spectra is built with ease and performance in mind. Its module architecture and the clean code keep it lightweight and fast. Therefore, it will not affect your website speed and performance in any way.

= What more do I get with the Spectra? =

When you use the Spectra along with the free Astra theme, you get a huge library of ready-to-use starter sites that can be imported and used to build your own. Read an article about the <a href="https://wpspectra.com/ready-websites-for-gutenberg/?utm_source=wp-repo&utm_medium=link&utm_campaign=readme" target="_blank" rel="">Starter Sites with Gutenberg</a> to know more.

= How can I report a security bug? =

We take plugin security extremely seriously. If you discover a security vulnerability, please report it in a safe and responsible manner.

You can report the issue through our [Bug Bounty Program](https://brainstormforce.com/bug-bounty-program/).

== Credits ==

Our external packages use [Rating Star Component](https://github.com/n49/react-stars) that are distributed under the terms of the ISC. While [Slick](https://github.com/akiran/react-slick), [Lottie](https://github.com/chenqingspring/react-lottie) and [Striptags](https://github.com/ericnorris/striptags) is distributed under the terms of the MIT. Additionally, we incorporate [FontAwesome v6](https://fontawesome.com/license/free) under the CC BY 4.0 License, and [dnd kit](https://github.com/clauderic/dnd-kit) licensed under the MIT License.

== Changelog ==

= 2.19.15 - Friday, 3rd October 2025 =
* This update addressed a security bug. Props to Wordfence for reporting it responsibly to our team.
Please make sure you are using the latest version on your website.

= 2.19.14 - Wednesday, 17th September 2025 =
* Fix: Removed unused dependencies from the Block Stats Processor.

= 2.19.13 - Wednesday, 17th September 2025 =
* Improvement: Popup Builder – Improved popup creation through REST with role flexibility.

= 2.19.12 - Wednesday, 3rd September 2025 =
* Improvement: Info Box - Alignment options now hide smartly based on icon/image settings.
* Fix: Post - Corrected behavior where invalid pagination on single posts prevented expected redirects.
* Fix: Global - Resolved a conflict where editor upsell assets were interfering with the SureCart price selector block.

= 2.19.11 - Tuesday, 15th July 2025 =
* Fix: Buttons - Resolved an issue wherein the  gap between buttons would not work as intended for mobile.
* Fix: Container - Resolved an issue wherein the advanced gradient locations 1 & 2 would not be applied on mobile & tablet.

= 2.19.10 - Tuesday, 17th June 2025 =
* Updated the Zip AI Library.

= 2.19.9 - Thursday, 1st May 2025 =
* Improvement: Added a WP-CLI command for regenerate the assets.

= 2.19.8 - Monday, 28th April 2025 =
* Fix: Container - Resolved an issue where dynamic content fallback images were not being properly applied in the frontend.
* Fix: File Generation documentation link now redirects correctly instead of showing a 404 error.

= 2.19.7 - Wednesdays, 16th April 2025 =
* Improvement: Added compatibility with WordPress v6.8.
* Fix: Tabs - Resolved an issue where the tabs block headers, was not translatable.
* Global: Removed the Spectra banner from the editor based on user feedback to provide a cleaner editing experience.

= 2.19.6 - Thursday, 10th April 2025 =
* Updated the Zip AI Library.

= 2.19.5 - Monday, 31st March 2025 =
* Improvement: Improved code quality.
* Fix: Image Gallery - Resolved an issue wherein lightbox functionality was broken when Imagify's Next-Gen format option enabled.
* Fix: Global - Optimized block ID processing logic to prevent `Allowed memory size` errors when nesting patterns.
* Fix: Global - Resolved an issue where custom CSS for background images was not applying correctly on the frontend.
* Fix: Global - Resolved an issue wherein assets were not loading in SureCart's template parts.

= 2.19.4 - Tuesday, 18th March 2025 =
* Updated the Astra Notices Library.
* Fix: Popup Builder - Resolved an issue wherein the Popup Builder pattern was giving block encountered error message.

= 2.19.3 - Tuesday, 11th March 2025 =
* This update addressed a security bug. Please make sure you are using the latest version on your website.
* Fix: Resolved the asset loading conflict in the SureForms editor.

= 2.19.2 - Monday, 10th March 2025 =
* Improvement: Lottie - Added help text to inform users about the `ALLOW_UNFILTERED_UPLOADS` constant for JSON file uploads.
* Fix: Forms - Resolved an issue wherein the submit button hover background color is not working as intended on frontend.
* Fix: Popup Builder - Resolved an issue wherein the popup builder page in the admin dashboard throws a console error.
* Fix: Post Masonry - Resolved an issue wherein the Post Masonry block was getting a block recovery issue.
* Fix: Global - Resolved an issue where the Pro installation was not detected when WPML CMS was active.

The full changelog is available [here](https://wpspectra.com/whats-new/).

== Upgrade Notice ==

= 2.18.2 =
The Google Fonts library in Spectra has been updated in this version. Please check your font selections to replace any deprecated fonts and explore the new additions.

= 2.14.1 =
With WordPress 6.6 introducing the command palette and taking a place at the top of the editor, we had to retire the 'Move Title to Top' functionality in Spectra. However, there's no need for concern. After updating Spectra, the title in your editor will gracefully return to its default position.

= 2.7.4 =
With WordPress 6.3 no longer supporting older versions of PHP, the next Spectra release will also require a minimum of PHP 7.4. For websites running on older version of PHP, we strongly recommend upgrading to PHP 7.4 or above to ensure optimal performance and compatibility.

= 2.7.3 =
We've optimized the internal structure of Spectra in this update. To ensure your website's safety, We recommend that you backup your website before updating.
PK�][�02ultimate-addons-for-gutenberg/assets/css/slick.cssnu�[���.uagb-slick-carousel .slick-list,
.uagb-slick-carousel .slick-slider,
.uagb-slick-carousel.slick-slider,
.uagb-slick-carousel .slick-track {
	position: relative;
	display: block;
}

.uagb-slick-carousel .slick-loading .slick-slide,
.uagb-slick-carousel .slick-loading .slick-track {
	visibility: hidden;
}

.uagb-slick-carousel.slick-slider {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.uagb-slick-carousel .slick-list {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.uagb-slick-carousel .slick-list:focus {
	outline: 0;
}

.uagb-slick-carousel .slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.uagb-slick-carousel.slick-slider .slick-list,
.uagb-slick-carousel.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.uagb-slick-carousel .slick-track {
	top: 0;
	left: 0;
}

.uagb-slick-carousel .slick-track::after,
.uagb-slick-carousel .slick-track::before {
	display: table;
	content: "";
}

.uagb-slick-carousel .slick-track::after {
	clear: both;
}

/* For testimonial */
.uagb-slick-carousel .slick-initialized .slick-slide {
	display: block;
}

.uagb-slick-carousel .slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir="rtl"] .uagb-slick-carousel .slick-slide {
	float: right;
}

.uagb-slick-carousel .slick-slide img {
	display: block;
}

.uagb-slick-carousel .slick-slide.slick-loading img {
	display: none;
}

.uagb-slick-carousel .slick-slide.dragging img {
	pointer-events: none;
}

.uagb-slick-carousel.slick-initialized .slick-slide {
	display: block;
}

.uagb-slick-carousel .slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.uagb-slick-carousel .slick-arrow.slick-hidden {
	display: none;
}

.uagb-slick-carousel {
	padding: 30px;
}

.uagb-slick-carousel .slick-prev,
.uagb-slick-carousel .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: auto;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: #aaa;
	border-color: #aaa;
	outline: none;
	background: transparent;
}

.uagb-slick-carousel .slick-prev::before,
.uagb-slick-carousel .slick-next::before {
	font-size: 35px;
	line-height: 1;
	opacity: 0.75;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.uagb-slick-carousel .slick-prev::before,
[dir="rtl"] .uagb-slick-carousel .slick-prev::before,
.uagb-slick-carousel .slick-next::before,
[dir="rtl"] .uagb-slick-carousel .slick-next::before {
	content: "";
	font-size: 0;
	line-height: 0;
}

.uagb-slick-carousel .slick-prev {
	left: -45px;
	z-index: 1;
	border-radius: 0;
}

[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev {
	left: auto;
	right: -45px;
}

.uagb-slick-carousel button.slick-arrow {
	padding: 7px;
}

.uagb-slick-carousel .slick-prev i,
.uagb-slick-carousel .slick-next i,
.uagb-slick-carousel .slick-prev i:hover,
.uagb-slick-carousel .slick-next i:hover,
.uagb-slick-carousel .slick-prev i:focus,
.uagb-slick-carousel .slick-next i:focus {
	font-size: 20px;
	width: 1.5em;
	height: 1.5em;
	line-height: 26px;
	text-align: center;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

.uagb-slick-carousel ul.slick-dots {
	padding-top: 0;
	display: block;
	position: absolute;
	margin: 0;
	left: 0;
	width: 100%;
	bottom: 0;
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	text-align: center;
}

.uagb-slick-carousel ul.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.uagb-slick-carousel ul.slick-dots li.slick-active button::before {
	opacity: 0.75;
	color: #000f;
}

.uagb-slick-carousel ul.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.uagb-slick-carousel ul.slick-dots li button::before {
	font-family: none;
	font-size: 30px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: "•";
	text-align: center;
	opacity: 0.25;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 976px) {

	.uagb-slick-carousel {
		padding: 0;
	}
}
PK�][0��?�
�
Hultimate-addons-for-gutenberg/assets/css/spectra-popup-builder-admin.cssnu�[���/* This file contains the styles used in the Popup Builder Admin Page */


/* Page Styling ---------------------- Start */

/* Background of the Popup Builder Admin Page */
#wpwrap,
.striped > tbody > :nth-child(odd) {
	background-color: #f8fafc;
}

/* Page Styling ------------------------ End */

/* Toggle Styling -------------------- Start */

/* Toggle Styling */
.spectra-popup-builder__switch {
	position: relative;
	width: 42px;
	height: 22px;
	padding: 2px;
	margin: inherit;
	cursor: pointer;
	border: none;
	border-radius: 100px;
	box-sizing: border-box;
	background: #64748b;
	opacity: 0.7;
	transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toggle Disabled Styling */
.spectra-popup-builder__switch.spectra-popup-builder__switch--disabled {
	pointer-events: none;
	cursor: not-allowed;
	background: #e2e8f0;
}

/* Toggle Dot Styling */
.spectra-popup-builder__switch > span {
	pointer-events: none;
	-js-display: flex;
	display: flex;
	width: 16px;
	height: 16px;
	background: #fff;
	box-shadow: 0 1px 2px 0 #0000000f, 0 1px 3px 0 #0000001a;
	border-radius: inherit;
	transform: translate(2px, 1px);
	transition: background 0.15s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toggle Dot Styling - RTL */
.spectra-popup-builder__switch.is-rtl-toggle > span {
	transform: translate(-2px, 1px);
}

/* Toggle Active Styling */
.spectra-popup-builder__switch.spectra-popup-builder__switch--active {
	background: #007cba;
	opacity: 1;
}

/* Toggle Active Dot Styling */
.spectra-popup-builder__switch.spectra-popup-builder__switch--active span {
	transform: translate(20px, 1px);
}

/* Toggle Active Dot Styling - RTL */
.spectra-popup-builder__switch.spectra-popup-builder__switch--active.is-rtl-toggle span {
	transform: translate(-20px, 1px);
}

/* Toggle Styling ---------------------- End */

/* Columns Styling ------------------- Start */

/* Style for all the Headings in the Admin Table */
/* stylelint-disable selector-id-pattern */
.post-type-spectra-popup .wp-list-table #spectra_popup_type,
.post-type-spectra-popup .wp-list-table #author,
.post-type-spectra-popup .wp-list-table #spectra_popup_toggle {
	width: 150px;
}

.post-type-spectra-popup .wp-list-table #spectra_popup_trigger {
	width: 200px;
}
/* stylelint-enable selector-id-pattern */

/* Style for the Switch Column and Row in the Admin Table */
th.column-spectra_popup_toggle,
td.column-spectra_popup_toggle {
	text-align: center;
}

/* Style for the Switch Element in the Admin Table */
td.spectra_popup_toggle.column-spectra_popup_toggle .spectra-popup-builder__switch {
	margin: 0 auto;
}

/* Columns Styling --------------------- End */
PK�][3߅�;;7ultimate-addons-for-gutenberg/assets/css/visibility.cssnu�[���header.site-header,
footer.site-footer {
	display: none;
}
PK�][=Vį=ultimate-addons-for-gutenberg/assets/css/style-blocks-rtl.cssnu�[���.rtl.block-editor-page #wpwrap .wp-block-uagb-blockquote .uagb-blockquote__skin-border blockquote.uagb-blockquote,
.rtl .wp-block-uagb-blockquote .uagb-blockquote__skin-border blockquote.uagb-blockquote {
	border-left-style: none;
	border-left-width: 0;
	padding-right: 15px;
}

.rtl.block-editor-page #wpwrap .wp-block-uagb-blockquote .uagb-blockquote__content.block-editor-rich-text__editable,
.rtl .wp-block-uagb-blockquote .uagb-blockquote__content.block-editor-rich-text__editable {
	text-align: right;
}

.rtl .uagb_review_block .uagb_review_entry {
	display: unset;
}

.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after {
	border-left: 13px solid #eee;
	border-right: none;
}

.rtl .uagb-timeline__right-block .uagb-timeline__line {
	left: calc(2em / 2);
	right: auto;
}

.uagb-timeline__day-right .uagb-timeline__arrow::after {
	right: 970px;
}

.uagb-timeline__day-left .uagb-timeline__arrow::after {
	right: -970px;
}

.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after {
	border-left: none;
	border-right: 13px solid #eee;
}

.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after {
	right: -970px;
}

.rtl .uagb-timeline__center-block .uagb-timeline__line {
	right: 50% !important;
	left: auto;
}

.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after {
	border-left: 13px solid #eee;
	border-right: none;
}

.rtl .uagb-post-grid .uagb-post__text {
	text-align: right;
}

.rtl .uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap {
	margin-left: 15px;
}

.rtl .uagb-faq__outer-wrap.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap {
	margin-left: 10px;
}

.rtl .uagb-rm__content {
	text-align: right;
}

/* Spectra blocks */
.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content,
.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content,
.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content {
	text-align: right;
}

.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-left,
.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-right,
.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-center {
	text-align: right;
}

.rtl .uagb-tm__content {
	text-align: right;
}

.rtl .uagb-social-share__outer-wrap,
.uagb-social-share__wrap {
	justify-content: right;
}

.rtl .uagb-post-grid .uagb-post__inner-wrap {
	text-align: right;
}

.rtl .uagb-timeline__left,
.rtl .uagb-timeline__right,
.rtl .uagb-timeline__center {
	text-align: right;
}

.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,
.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,
.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link {
	text-align: right;
}

.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,
.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,
.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link {
	justify-content: right;
}

.rtl .uagb-infobox-icon-left.uagb-infobox__content-wrap,
.uagb-infobox-icon-right.uagb-infobox__content-wrap,
.rtl .uagb-infobox-icon-left-title .uagb-ifb-left-title-image,
.rtl .uagb-infobox-icon-right-title .uagb-ifb-right-title-image {
	flex-direction: row;
}

.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content,
.rtl .uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content { /* without image */
	text-align: right;
}

.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,
.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,
.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,
.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,
.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,
.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price {
	text-align: left;
}

.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left img,
.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left img {
	margin-left: 10px;
}

.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator,
.rtl .uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator {
	align-self: flex-start;
}

.rtl .wp-block-uagb-blockquote blockquote.uagb-blockquote {
	border-right-style: none;
}

.rtl .uagb-forms-radio-wrap input[type="radio"] + label::before {
	margin-left: 10px;
}

.rtl .uagb-forms-checkbox-wrap input[type="checkbox"] + label::before,
.rtl .uagb-forms-accept-wrap input[type="checkbox"] + label::before {
	margin-left: 10px;
}

.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__content {
	text-align: left;
}

.rtl .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button svg {
	margin-left: 10px;
	margin-right: 0;
}

.rtl .uag-star-rating__title {
	margin-left: 10px;
}

.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after {
	border-right: 13px solid #eee;
	border-left: none;
	right: 581px;
}

.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after {
	right: -585px;
}
PK�][7(3vW@W@>ultimate-addons-for-gutenberg/assets/css/swiper-bundle.min.cssnu�[���/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}PK�][�4�fttLultimate-addons-for-gutenberg/assets/css/spectra-popup-builder-admin.min.cssnu�[���#wpwrap,.striped>tbody>:nth-child(odd){background-color:#f8fafc}.spectra-popup-builder__switch{position:relative;width:42px;height:22px;padding:2px;margin:inherit;cursor:pointer;border:none;border-radius:100px;box-sizing:border-box;background:#64748b;opacity:.7;transition:background .15s cubic-bezier(.4, 0, .2, 1),border-color .15s cubic-bezier(.4, 0, .2, 1)}.spectra-popup-builder__switch.spectra-popup-builder__switch--disabled{pointer-events:none;cursor:not-allowed;background:#e2e8f0}.spectra-popup-builder__switch>span{pointer-events:none;-js-display:flex;display:flex;width:16px;height:16px;background:#fff;box-shadow:0 1px 2px 0 #0000000f,0 1px 3px 0 #0000001a;border-radius:inherit;transform:translate(2px,1px);transition:background .15s cubic-bezier(.4, 0, .2, 1),transform .15s cubic-bezier(.4, 0, .2, 1)}.spectra-popup-builder__switch.is-rtl-toggle>span{transform:translate(-2px,1px)}.spectra-popup-builder__switch.spectra-popup-builder__switch--active{background:#007cba;opacity:1}.spectra-popup-builder__switch.spectra-popup-builder__switch--active span{transform:translate(20px,1px)}.spectra-popup-builder__switch.spectra-popup-builder__switch--active.is-rtl-toggle span{transform:translate(-20px,1px)}.post-type-spectra-popup .wp-list-table #author,.post-type-spectra-popup .wp-list-table #spectra_popup_toggle,.post-type-spectra-popup .wp-list-table #spectra_popup_type{width:150px}.post-type-spectra-popup .wp-list-table #spectra_popup_trigger{width:200px}td.column-spectra_popup_toggle,th.column-spectra_popup_toggle{text-align:center}td.spectra_popup_toggle.column-spectra_popup_toggle .spectra-popup-builder__switch{margin:0 auto}PK�][M��w�V�V4ultimate-addons-for-gutenberg/assets/css/aos.min.cssnu�[���[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="100"],[data-aos][data-aos][data-aos-delay="1000"],[data-aos][data-aos][data-aos-delay="1050"],[data-aos][data-aos][data-aos-delay="1100"],[data-aos][data-aos][data-aos-delay="1150"],[data-aos][data-aos][data-aos-delay="1200"],[data-aos][data-aos][data-aos-delay="1250"],[data-aos][data-aos][data-aos-delay="1300"],[data-aos][data-aos][data-aos-delay="1350"],[data-aos][data-aos][data-aos-delay="1400"],[data-aos][data-aos][data-aos-delay="1450"],[data-aos][data-aos][data-aos-delay="150"],[data-aos][data-aos][data-aos-delay="1500"],[data-aos][data-aos][data-aos-delay="1550"],[data-aos][data-aos][data-aos-delay="1600"],[data-aos][data-aos][data-aos-delay="1650"],[data-aos][data-aos][data-aos-delay="1700"],[data-aos][data-aos][data-aos-delay="1750"],[data-aos][data-aos][data-aos-delay="1800"],[data-aos][data-aos][data-aos-delay="1850"],[data-aos][data-aos][data-aos-delay="1900"],[data-aos][data-aos][data-aos-delay="1950"],[data-aos][data-aos][data-aos-delay="200"],[data-aos][data-aos][data-aos-delay="2000"],[data-aos][data-aos][data-aos-delay="2050"],[data-aos][data-aos][data-aos-delay="2100"],[data-aos][data-aos][data-aos-delay="2150"],[data-aos][data-aos][data-aos-delay="2200"],[data-aos][data-aos][data-aos-delay="2250"],[data-aos][data-aos][data-aos-delay="2300"],[data-aos][data-aos][data-aos-delay="2350"],[data-aos][data-aos][data-aos-delay="2400"],[data-aos][data-aos][data-aos-delay="2450"],[data-aos][data-aos][data-aos-delay="250"],[data-aos][data-aos][data-aos-delay="2500"],[data-aos][data-aos][data-aos-delay="2550"],[data-aos][data-aos][data-aos-delay="2600"],[data-aos][data-aos][data-aos-delay="2650"],[data-aos][data-aos][data-aos-delay="2700"],[data-aos][data-aos][data-aos-delay="2750"],[data-aos][data-aos][data-aos-delay="2800"],[data-aos][data-aos][data-aos-delay="2850"],[data-aos][data-aos][data-aos-delay="2900"],[data-aos][data-aos][data-aos-delay="2950"],[data-aos][data-aos][data-aos-delay="300"],[data-aos][data-aos][data-aos-delay="3000"],[data-aos][data-aos][data-aos-delay="350"],[data-aos][data-aos][data-aos-delay="400"],[data-aos][data-aos][data-aos-delay="450"],[data-aos][data-aos][data-aos-delay="50"],[data-aos][data-aos][data-aos-delay="500"],[data-aos][data-aos][data-aos-delay="550"],[data-aos][data-aos][data-aos-delay="600"],[data-aos][data-aos][data-aos-delay="650"],[data-aos][data-aos][data-aos-delay="700"],[data-aos][data-aos][data-aos-delay="750"],[data-aos][data-aos][data-aos-delay="800"],[data-aos][data-aos][data-aos-delay="850"],[data-aos][data-aos][data-aos-delay="900"],[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="100"] [data-aos],body[data-aos-delay="1000"] [data-aos],body[data-aos-delay="1050"] [data-aos],body[data-aos-delay="1100"] [data-aos],body[data-aos-delay="1150"] [data-aos],body[data-aos-delay="1200"] [data-aos],body[data-aos-delay="1250"] [data-aos],body[data-aos-delay="1300"] [data-aos],body[data-aos-delay="1350"] [data-aos],body[data-aos-delay="1400"] [data-aos],body[data-aos-delay="1450"] [data-aos],body[data-aos-delay="150"] [data-aos],body[data-aos-delay="1500"] [data-aos],body[data-aos-delay="1550"] [data-aos],body[data-aos-delay="1600"] [data-aos],body[data-aos-delay="1650"] [data-aos],body[data-aos-delay="1700"] [data-aos],body[data-aos-delay="1750"] [data-aos],body[data-aos-delay="1800"] [data-aos],body[data-aos-delay="1850"] [data-aos],body[data-aos-delay="1900"] [data-aos],body[data-aos-delay="1950"] [data-aos],body[data-aos-delay="200"] [data-aos],body[data-aos-delay="2000"] [data-aos],body[data-aos-delay="2050"] [data-aos],body[data-aos-delay="2100"] [data-aos],body[data-aos-delay="2150"] [data-aos],body[data-aos-delay="2200"] [data-aos],body[data-aos-delay="2250"] [data-aos],body[data-aos-delay="2300"] [data-aos],body[data-aos-delay="2350"] [data-aos],body[data-aos-delay="2400"] [data-aos],body[data-aos-delay="2450"] [data-aos],body[data-aos-delay="250"] [data-aos],body[data-aos-delay="2500"] [data-aos],body[data-aos-delay="2550"] [data-aos],body[data-aos-delay="2600"] [data-aos],body[data-aos-delay="2650"] [data-aos],body[data-aos-delay="2700"] [data-aos],body[data-aos-delay="2750"] [data-aos],body[data-aos-delay="2800"] [data-aos],body[data-aos-delay="2850"] [data-aos],body[data-aos-delay="2900"] [data-aos],body[data-aos-delay="2950"] [data-aos],body[data-aos-delay="300"] [data-aos],body[data-aos-delay="3000"] [data-aos],body[data-aos-delay="350"] [data-aos],body[data-aos-delay="400"] [data-aos],body[data-aos-delay="450"] [data-aos],body[data-aos-delay="50"] [data-aos],body[data-aos-delay="500"] [data-aos],body[data-aos-delay="550"] [data-aos],body[data-aos-delay="600"] [data-aos],body[data-aos-delay="650"] [data-aos],body[data-aos-delay="700"] [data-aos],body[data-aos-delay="750"] [data-aos],body[data-aos-delay="800"] [data-aos],body[data-aos-delay="850"] [data-aos],body[data-aos-delay="900"] [data-aos],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:0.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:0.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:0.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:0.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:0.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:0.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:0.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:0.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:0.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:0.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:0.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:0.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:0.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:0.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:0.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:0.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:0.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:0.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(0.25,0.25,0.75,0.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos^=fade][data-aos^=fade],[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate,[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-down].aos-animate,[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}PK�][h��Fultimate-addons-for-gutenberg/assets/css/spectra-block-positioning.cssnu�[���/* The Sticky Position Class. */
body .wp-block-uagb-container.uagb-position__sticky {
	transition-property: top, bottom;
	transition-duration: 250ms;
	transition-timing-function: ease;
}

/* The Sticky Position Stuck Class. */
body .wp-block-uagb-container.uagb-position__sticky--stuck {
	position: fixed;
	margin: 0 !important; /* Margins should not exist on the sticky element. They are applied to the filler element. */
}

/* The Sticky Position Restricted Class. */
body .wp-block-uagb-container.uagb-position__sticky--restricted {
	position: absolute;
	margin: 0 !important; /* Margins should not exist on the sticky element. They are applied to the filler element. */
}
PK�][��b7OOJultimate-addons-for-gutenberg/assets/css/spectra-block-positioning.min.cssnu�[���body .wp-block-uagb-container.uagb-position__sticky{transition-property:top,bottom;transition-duration:250ms;transition-timing-function:ease}body .wp-block-uagb-container.uagb-position__sticky--stuck{position:fixed;margin:0!important}body .wp-block-uagb-container.uagb-position__sticky--restricted{position:absolute;margin:0!important}PK�][�`�zzAultimate-addons-for-gutenberg/assets/css/style-blocks-rtl.min.cssnu�[���.rtl .wp-block-uagb-blockquote .uagb-blockquote__skin-border blockquote.uagb-blockquote,.rtl.block-editor-page #wpwrap .wp-block-uagb-blockquote .uagb-blockquote__skin-border blockquote.uagb-blockquote{border-left-style:none;border-left-width:0;padding-right:15px}.rtl .wp-block-uagb-blockquote .uagb-blockquote__content.block-editor-rich-text__editable,.rtl.block-editor-page #wpwrap .wp-block-uagb-blockquote .uagb-blockquote__content.block-editor-rich-text__editable{text-align:right}.rtl .uagb_review_block .uagb_review_entry{display:unset}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee;border-right:none}.rtl .uagb-timeline__right-block .uagb-timeline__line{left:calc(2em / 2);right:auto}.uagb-timeline__day-right .uagb-timeline__arrow::after{right:970px}.uagb-timeline__day-left .uagb-timeline__arrow::after{right:-970px}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:none;border-right:13px solid #eee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{right:-970px}.rtl .uagb-timeline__center-block .uagb-timeline__line{right:50%!important;left:auto}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee;border-right:none}.rtl .uagb-post-grid .uagb-post__text{text-align:right}.rtl .uagb-icon-list__outer-wrap:not(.uagb-icon-list__no-label) .uagb-icon-list__source-wrap{margin-left:15px}.rtl .uagb-faq__outer-wrap.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap{margin-left:10px}.rtl .uagb-rm__content{text-align:right}.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content,.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content,.rtl .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-center,.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-left,.rtl .wp-block-uagb-inline-notice.uagb-inline_notice__align-right{text-align:right}.rtl .uagb-tm__content{text-align:right}.rtl .uagb-social-share__outer-wrap,.uagb-social-share__wrap{justify-content:right}.rtl .uagb-post-grid .uagb-post__inner-wrap{text-align:right}.rtl .uagb-timeline__center,.rtl .uagb-timeline__left,.rtl .uagb-timeline__right{text-align:right}.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{text-align:right}.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link,.rtl .wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{justify-content:right}.rtl .uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.rtl .uagb-infobox-icon-left.uagb-infobox__content-wrap,.rtl .uagb-infobox-icon-right-title .uagb-ifb-right-title-image,.uagb-infobox-icon-right.uagb-infobox__content-wrap{flex-direction:row}.rtl .uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content,.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content{text-align:right}.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price{text-align:left}.rtl .uagb-rest_menu__wrap .uagb-rm__image-position-left img,.rtl .wp-block-uagb-restaurant-menu .uagb-rm__image-position-left img{margin-left:10px}.rtl .uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator,.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator{align-self:flex-start}.rtl .wp-block-uagb-blockquote blockquote.uagb-blockquote{border-right-style:none}.rtl .uagb-forms-radio-wrap input[type=radio]+label::before{margin-left:10px}.rtl .uagb-forms-accept-wrap input[type=checkbox]+label::before,.rtl .uagb-forms-checkbox-wrap input[type=checkbox]+label::before{margin-left:10px}.rtl .wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__content{text-align:left}.rtl .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button svg{margin-left:10px;margin-right:0}.rtl .uag-star-rating__title{margin-left:10px}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none;right:581px}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{right:-585px}PK�][�A���<ultimate-addons-for-gutenberg/assets/css/blocks/timeline.cssnu�[���.uagb-timeline__outer-wrap{position:relative}.uagb-timeline__outer-wrap .uagb-timeline__field{position:relative;display:flex;align-items:flex-start;margin-bottom:inherit;color:inherit;font-size:inherit}.uagb-timeline__outer-wrap .uagb-timeline__field:not(:last-child){margin-bottom:20px}.uagb-timeline__outer-wrap .uagb-timeline__field a{margin-bottom:inherit;text-decoration:none}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__image img{display:inline-block;box-sizing:content-box;height:auto;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__author-link{text-transform:capitalize}.uagb-timeline__outer-wrap .uagb-timeline__field a.uagb-timeline__link{display:inline-block}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__left.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__events-inner-new,.uagb-timeline__outer-wrap .uagb-timeline__field.uagb-timeline__right.hide-events .uagb-timeline__date-new{visibility:hidden}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image a{position:relative;display:block;max-width:100%}.uagb-timeline__outer-wrap .uagb-timeline__field .uagb-timeline__image img{display:inline-block;box-sizing:content-box}.uagb-timeline__outer-wrap .uagb-timeline__line{position:absolute;transform:translateX(-50%);-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);width:3px;background-color:#eee}.uagb-timeline__outer-wrap .uagb-timeline__line .uagb-timeline__line__inner{width:100%;background-color:#0693e3}.uagb-timeline__outer-wrap svg{display:inline-block;vertical-align:middle;font-size:16px;font-style:normal;line-height:16px}.uagb-timeline__outer-wrap .uagb-timeline__field:hover .uagb-timeline__marker{transition:all 0.2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__marker{position:relative;display:flex;z-index:1;justify-content:center;align-items:center;min-width:3em;min-height:3em;background-color:#eee;border-radius:999px;line-height:48px;transition:all 0.2s ease-in-out}.uagb-timeline__outer-wrap .uagb-timeline__year{position:relative;display:flex}.uagb-timeline__outer-wrap .uagb-timeline__year span{display:inline-block;padding-bottom:6px}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__field{align-items:center}.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__field{align-items:flex-end}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__left .uagb-timeline__arrow,.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__right .uagb-timeline__arrow{top:100%;transform:translateY(-100%)}.uagb-timeline__outer-wrap.uagb-timeline__arrow-bottom .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__outer-wrap .uagb-timeline__date .uagb-timeline__inner-date-new{margin:0;white-space:nowrap}.uagb-timeline__outer-wrap .in-view i.uagb-timeline__in-view-icon{-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-in-out;-webkit-transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out;transition:background 0.25s ease-out 0.25s, width 0.25s ease-in-out, height 0.25s ease-in-out, color 0.25s ease-in-out, font-size 0.25s ease-out}.uagb-timeline__outer-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.uagb-timeline__outer-wrap p:empty{display:none}.uagb-timeline__outer-wrap.uagb-timeline__right-block .uagb-timeline__line{position:absolute;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__outer-wrap span.dashicons-admin-users.dashicons{display:inline;vertical-align:baseline;margin-right:4px}.uagb-content{word-break:break-word}.uagb-timeline__headingh1,.uagb-timeline__headingh2,.uagb-timeline__headingh3,.uagb-timeline__headingh4,.uagb-timeline__headingh5,.uagb-timeline__headingh6{margin-bottom:0}.uagb-timeline__inner-date-new p,.uagb-timeline__date-inner .uagb-timeline__inner-date-new p{margin-bottom:0}.uagb-timeline__center-block{text-align:center}.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;top:50%;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;border-left:13px solid #eee;transform:translateY(-50%);content:"";-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:1}.uagb-timeline__center-block .uagb-timeline__date-hide{display:none}.uagb-timeline__center-block .uagb-timeline__field.uagb-timeline__right{flex-direction:row-reverse}.uagb-timeline__center-block .uagb-timeline__day-new,.uagb-timeline__center-block .uagb-timeline__date-new{display:block;position:relative;flex-grow:1;flex-basis:50%;max-width:100%}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__date-new{display:flex;justify-content:flex-start}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{position:absolute;top:0;right:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__date-new{display:flex;justify-content:flex-end}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;left:-10px;width:10px;height:40px}.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block .uagb-timeline__line{right:auto;left:50%}.uagb-timeline__right-block .uagb-timeline__field{flex-direction:row-reverse}.uagb-timeline__right-block .uagb-timeline__date-new{display:flex;align-items:center;margin-left:10px}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:inherit}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;right:0;width:10px;height:40px}.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__right-block .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__right-block .uagb-timeline__marker,.uagb-timeline__right-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__right-block .uagb-timeline__day-new{flex-grow:1;margin-right:14px}.uagb-timeline__right-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0}.uagb-timeline__left-block{text-align:left}.uagb-timeline__left-block .uagb-timeline__marker,.uagb-timeline__left-block .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__left-block .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__left-block .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:14px}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__left-block .uagb-timeline__marker{flex-grow:0;flex-shrink:0;order:0}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__events-inner-new,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%)}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{position:absolute;top:0;width:10px;height:40px}.uagb-timeline__left-block .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-right:13px solid #eee;border-bottom:12px solid transparent;content:""}.uagb-timeline__day-right .uagb-timeline__events-inner{text-align:right}.uagb-timeline__day-left .uagb-timeline__events-inner{text-align:left}.uagb-timeline__arrow-top .uagb-timeline__date-new .uagb-timeline__date-new{padding-top:8px;padding-bottom:8px}.uagb-timeline__events-inner-new,.uagb-timeline__arrow{transition:background 0.2s ease-in-out}.uagb-timeline__arrow::after{transition:border-color 0.2s ease-in-out}.uagb-timeline__date-new{transition:color 0.2s ease-in-out}.uagb-timeline__day-left .uagb-timeline__arrow::after{position:absolute;left:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__right .uagb-timeline__day-left .uagb-timeline__arrow::after{right:0}.uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;right:0;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__icon{position:relative;z-index:1;vertical-align:middle;width:100px;height:100px;border-radius:50%;text-align:center;line-height:100px;-webkit-border-radius:50%}.uagb-timeline__left{text-align:left}.uagb-timeline__right{text-align:right}.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee}.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee}.uagb-timeline__day-right .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__day-left .uagb-timeline__events-inner-new{border-radius:4px 4px 4px 4px}.uagb-timeline__arrow{height:3em}.uagb-timeline__right-block .uagb-timeline__line{right:1.5em}.rtl .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.rtl .uagb-timeline__left-block .uagb-timeline__line{right:auto;left:16px}.rtl .uagb-timeline__left-block .uagb-timeline__field{flex-direction:row-reverse}.rtl .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__left-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-right:13px solid #eee;right:-3px}.rtl .uagb-timeline__right-block .uagb-timeline__line{right:auto;left:1.5em}.rtl .uagb-timeline__right-block .uagb-timeline__field{flex-direction:row}.rtl .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow::after{border-left:13px solid #eee}.rtl .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow::after{border-left:13px solid #eee;right:-17px}@media screen and (max-width: 1023px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}}@media screen and (max-width: 767px){.uagb-timeline-responsive-none .uagb-timeline__events-inner-new{padding:15px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:auto;left:20px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__marker{-webkit-box-ordinal-group:1;-webkit-order:0;-moz-box-ordinal-group:1;-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-webkit-flex-shrink:0;-ms-flex-negative:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;-webkit-box-ordinal-group:2;-webkit-order:1;-moz-box-ordinal-group:2;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__day-left .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__left-block .uagb-timeline__date-new{margin-right:10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__field.uagb-timeline__right{-webkit-box-orient:unset;-webkit-box-direction:unset;-webkit-flex-direction:unset;-moz-box-orient:unset;-moz-box-direction:unset;-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__field{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-moz-box-orient:horizontal;-moz-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__marker{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-webkit-box-flex:0;-webkit-flex-grow:0;-moz-box-flex:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__date-new{-webkit-box-flex:unset;-webkit-flex-grow:unset;-moz-box-flex:unset;-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-webkit-flex-basis:unset;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-webkit-box-ordinal-group:unset;-webkit-order:unset;-moz-box-ordinal-group:unset;-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow::after,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-left .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:none;border-left:13px solid #eee}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline-res-right .uagb-timeline__line,.rtl .uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line{right:17.5px;left:auto}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-mobile.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-mobile.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}@media (max-width: 976px){.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__line{position:absolute;right:16px;left:auto;transform:translateX(50%);-webkit-transform:translateX(50%);-ms-transform:translateX(50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-hide{display:block}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line{right:auto;left:17.5px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__marker{-ms-flex-order:0;flex-grow:0;flex-shrink:0;order:0;-ms-flex-negative:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new{flex-grow:1;order:1;margin-left:16px;-ms-flex-positive:1;-ms-flex-order:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{position:absolute;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow{left:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow{left:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right{text-align:left}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after{position:absolute;display:inline;width:0;height:0;border-top:12px solid transparent;border-bottom:12px solid transparent;content:""}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__field.uagb-timeline__right{-ms-flex-direction:unset;flex-direction:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;width:100%;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__left .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__field{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-left .uagb-timeline__events-inner-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-right .uagb-timeline__events-inner-new{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{position:absolute;right:0;left:auto;width:10px;height:40px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow{right:-12px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow{right:-10px}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{position:relative;max-width:100%}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__marker{-ms-flex-negative:0;flex-grow:0;flex-shrink:0;-ms-flex-positive:0}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new{flex-grow:1;margin-right:16px;-ms-flex-positive:1}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__arrow::after{top:50%;transform:translateY(-50%);-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%)}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right{text-align:right}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__day-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__date-new{-ms-flex-positive:unset;position:relative;flex-grow:unset;flex-basis:unset;max-width:100%;-ms-flex-preferred-size:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__day-new{-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__day-new{-ms-flex-order:unset;order:unset}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__left .uagb-timeline__date-new,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline-res-right .uagb-timeline__right .uagb-timeline__date-new{display:none}.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow::after,.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow::after{border-right:13px solid #eee;border-left:none}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__author-link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link_parent,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__link,.uagb-timeline__responsive-tablet.uagb-timeline__center-block a.uagb-timeline__image,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__image a,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__heading,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline-desc-content,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-inner,.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__inner-date-new{text-align:left}.uagb-timeline__responsive-tablet.uagb-timeline__center-block .uagb-timeline__date-hide.uagb-timeline__date-inner{text-align:left}}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content .uagb-timeline__heading{margin-top:unset}.wp-block-uagb-content-timeline .wp-block-uagb-content-timeline-child .uagb-timeline__events-inner--content p.uagb-timeline-desc-content{margin-bottom:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field{display:unset}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap .uagb-timeline__field .uagb-timeline__widget{position:relative;display:flex;align-items:flex-start;font-size:inherit;color:inherit;margin-bottom:inherit}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__left-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__date-new{display:none}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__widget.uagb-timeline__right{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__marker{order:1;flex-shrink:0;flex-grow:0}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__day-new{order:2;padding-left:0;padding-right:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__day-new{order:2;padding-right:0;padding-left:12px}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow{right:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow{left:0;top:0;width:10px;height:40px;position:absolute}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__right-block .uagb-timeline__widget{flex-direction:row-reverse}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__widget{align-items:center}.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__left .uagb-timeline__arrow,.wp-block-uagb-content-timeline .uagb-timeline__content-wrap.uagb-timeline__arrow-center .uagb-timeline__right .uagb-timeline__arrow{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.wp-block-uagb-post-timeline .uagb-timeline__link_parent .uagb-timeline__link.wp-block-button__link{width:auto}
PK�][��>��-�-<ultimate-addons-for-gutenberg/assets/css/blocks/info-box.cssnu�[���.uagb-ifb-content>svg *{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.uagb-ifb-content>svg,.uagb-ifb-content{display:inline-block}.uagb-ifb-content>svg{vertical-align:middle;width:inherit;height:inherit;font-style:initial}.uagb-ifb-content .uagb-ifb-icon-wrap svg{box-sizing:content-box;width:inherit;height:inherit}.uagb-ifb-button-wrapper:empty{display:none}div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link,div.uagb-ifb-cta a.uagb-infobox-cta-link,.entry .entry-content a.uagb-infobox-cta-link,a.uagb-infobox-link-wrap,.entry .entry-content a.uagb-infobox-link-wrap{text-decoration:none;align-items:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-middle .uagb-ifb-title-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-middle .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-middle .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-middle .uagb-ifb-content{-ms-flex-item-align:center;-webkit-align-self:center;align-self:center}.uagb-infobox-icon-left-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title.uagb-infobox-image-valign-top .uagb-ifb-title-wrap,.uagb-infobox-image-valign-top .uagb-ifb-icon-wrap,.uagb-infobox-image-valign-top .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-image-valign-top .uagb-ifb-content,.uagb-infobox-icon-right.uagb-infobox-image-valign-top .uagb-ifb-content{-webkit-align-self:self-start;align-self:self-start}.uagb-infobox-left{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-center{justify-content:center;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.uagb-infobox-right{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}.uagb-infobox-icon-above-title.uagb-infobox__content-wrap,.uagb-infobox-icon-below-title.uagb-infobox__content-wrap{display:block;width:100%}.uagb-infobox-icon-left-title .uagb-ifb-content>svg,.uagb-infobox-icon-left .uagb-ifb-content>svg{margin-right:10px}.uagb-infobox-icon-right-title .uagb-ifb-content>svg,.uagb-infobox-icon-right .uagb-ifb-content>svg{margin-left:10px}.uagb-infobox-icon-left.uagb-infobox__content-wrap,.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;-js-display:flex}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-image-content,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-image-content,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{flex-shrink:0;line-height:0}.uagb-infobox-icon-left-title .uagb-ifb-left-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image .uagb-ifb-title-wrap,.uagb-infobox-icon-left .uagb-ifb-content,.uagb-infobox-icon-right .uagb-ifb-content{flex-grow:1}.uagb-infobox-icon-right.uagb-infobox__content-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}.uagb-ifb-content img{position:relative;display:inline-block;line-height:0;width:auto;height:auto !important;max-width:100%;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.uagb-infobox-module-link{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;width:100%;height:100%}.uagb-edit-mode .uagb-infobox-module-link{z-index:2}.uagb-infobox-link-icon-after{margin-right:0;margin-left:5px}.uagb-infobox-link-icon-before{margin-right:5px;margin-left:0}.uagb-infobox-link-icon{-webkit-transition:all 200ms linear;transition:all 200ms linear}.uagb-infobox__content-wrap{box-sizing:border-box;position:relative;width:100%;word-break:break-word;z-index:1}.uagb-ifb-separator{display:inline-block;margin:0;border-top-color:#333;border-top-style:solid;border-top-width:2px;line-height:0}.uagb-ifb-button-wrapper{line-height:1}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link{background-color:unset;border:none}.uagb-ifb-button-wrapper.uagb-ifb-button-type-text .uagb-infobox-cta-link.wp-block-button__link:hover{background-color:unset;border-color:unset}.uagb-ifb-button-wrapper .uagb-infobox-cta-link{cursor:pointer}.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link{width:auto}.uagb-ifb-button-wrapper .wp-block-button__link svg,.uagb-ifb-button-wrapper .ast-outline-button svg{fill:currentColor}.uagb-infobox__content-wrap a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.uagb-ifb-title-wrap{width:100%}.uagb-ifb-title{margin-block-start:0}.uagb-ifb-title-wrap .uagb-ifb-title-prefix{display:block;padding:0;margin:0}.uagb-infobox__content-wrap.uagb-infobox__content-wrap{position:relative}.uagb-ifb-content{width:100%}.uagb-infobox__content-wrap.uagb-infobox,.uagb-ifb-content,.uagb-ifb-title-wrap,.uagb-ifb-title-prefix *,svg.dashicon.dashicons-upload{z-index:1}a.uagb-infobox-link-wrap{color:inherit}.uagb-ifb-content p:empty{display:none}.uagb-infobox__content-wrap .uagb-ifb-content img{display:inline-block;max-width:100%}.uagb-infobox__content-wrap .uagb-ifb-content svg{display:inline-block}.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-image-content,.uagb-infobox-icon-right .uagb-ifb-image-content{box-sizing:content-box}.uagb-infobox-cta-link>svg{vertical-align:middle;width:15px;height:15px;font-size:15px}.uagb-infobox-cta-link{display:inline-flex}.block-editor-page #wpwrap .uagb-infobox-cta-link svg,.uagb-infobox-cta-link svg{font-style:normal}.uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}.uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,.uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-left-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-left .uagb-ifb-icon-wrap{margin-left:10px;line-height:0}html[dir="rtl"] .uagb-infobox-icon-right-title .uagb-ifb-icon-wrap,html[dir="rtl"] .uagb-infobox-icon-right .uagb-ifb-icon-wrap{margin-right:10px;line-height:0}html[dir="rtl"] .uagb-infobox-left{justify-content:flex-end;text-align:right;-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end}html[dir="rtl"] .uagb-infobox-right{justify-content:flex-start;text-align:left;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.uagb-infobox-icon-left .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-left-title .uagb-ifb-left-title-image,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{display:-webkit-box;display:-ms-flexbox;display:flex}.uagb-infobox-icon-right .uagb-ifb-left-right-wrap,.uagb-infobox-icon-right-title .uagb-ifb-right-title-image{-webkit-box-pack:end;-ms-flex-pack:end;-webkit-justify-content:flex-end;-moz-box-pack:end;justify-content:flex-end}a.uagb-infbox__link-to-all{position:absolute;top:0;left:0;z-index:3;width:100%;height:100%;box-shadow:none;text-decoration:none;-webkit-box-shadow:none}@media only screen and (max-width: 976px){.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{padding:0;margin-bottom:20px}.uagb-infobox-stacked-tablet.uagb-reverse-order-tablet.uagb-infobox__content-wrap{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-content,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{display:block;width:100%;text-align:center}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap .uagb-ifb-image-content{margin-right:0;margin-left:0}.uagb-infobox-stacked-tablet.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-tablet .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}@media screen and (max-width: 767px){.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap{display:inline-block}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap{padding:0;margin-bottom:20px;margin-right:0;margin-left:0}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap.uagb-reverse-order-mobile{display:-webkit-inline-box;display:-ms-inline-flexbox;display:-webkit-inline-flex;display:-moz-inline-box;display:inline-flex;flex-direction:column-reverse;-js-display:inline-flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-image-content,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-icon-wrap,.uagb-infobox-stacked-mobile.uagb-infobox__content-wrap .uagb-ifb-content{display:block;width:100%;text-align:center}.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-left.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-right:0}.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right-title.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-image-content,.uagb-infobox-icon-right.uagb-infobox-stacked-mobile .uagb-ifb-icon-wrap{margin-left:0}.uagb-infobox-icon-left-title .uagb-ifb-separator{margin:10px 0}}.uagb-ifb-icon svg{width:inherit;height:inherit;vertical-align:middle}.uagb-ifb-button-icon{height:15px;width:15px;font-size:15px;vertical-align:middle}.uagb-ifb-button-icon svg{height:inherit;width:inherit;display:inline-block}.uagb-ifb-button-icon.uagb-ifb-align-icon-after{float:right}.uagb-ifb-cta-button{display:inline-block}.uagb-disable-link{pointer-events:none}@media only screen and (min-width: 977px){.uagb-infobox-margin-wrapper{display:flex}}.uagb-ifb-content .uagb-ifb-desc p:last-child{margin-bottom:0}
PK�][���7ultimate-addons-for-gutenberg/assets/css/blocks/faq.cssnu�[���.wp-block-uagb-faq{width:100%}.wp-block-uagb-faq.uagb-faq-layout-accordion .uagb-faq-child__outer-wrap .uagb-faq-questions-button{cursor:pointer}.wp-block-uagb-faq .uagb-faq-content{margin-bottom:0}.wp-block-uagb-faq .uagb-faq-content p{margin:auto}.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-child__outer-wrap,.uagb-faq-layout-grid.uagb-faq-equal-height.uagb-faq__wrap .uagb-faq-item{height:100%}body[class*="astra"] .uagb-faq-questions{line-height:normal}.uagb-faq-item{overflow:hidden}
PK�][�ʦ��>ultimate-addons-for-gutenberg/assets/css/blocks/cf7-styler.cssnu�[���.wp-block-uagb-cf7-styler input[type="text"],.wp-block-uagb-cf7-styler input[type="password"],.wp-block-uagb-cf7-styler input[type="date"],.wp-block-uagb-cf7-styler input[type="datetime"],.wp-block-uagb-cf7-styler input[type="datetime-local"],.wp-block-uagb-cf7-styler input[type="email"],.wp-block-uagb-cf7-styler input[type="month"],.wp-block-uagb-cf7-styler input[type="number"],.wp-block-uagb-cf7-styler input[type="search"],.wp-block-uagb-cf7-styler input[type="tel"],.wp-block-uagb-cf7-styler input[type="time"],.wp-block-uagb-cf7-styler input[type="url"],.wp-block-uagb-cf7-styler input[type="week"]{min-height:30px;line-height:30px}.wp-block-uagb-cf7-styler textarea{resize:vertical}.wp-block-uagb-cf7-styler .wpcf7 *,.wp-block-uagb-cf7-styler .wpcf7 ::after,.wp-block-uagb-cf7-styler .wpcf7 ::before{-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::before,.wp-block-uagb-cf7-styler span.wpcf7-list-item-label::after{content:" "}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type="checkbox"]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type="checkbox"]+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type="radio"]+span::before{display:inline-block;vertical-align:middle;width:15px;height:15px;margin-right:10px;border-color:#eaeaea;border-style:solid;border-width:1px 1px 1px 1px;text-align:center;content:""}.wp-block-uagb-cf7-styler span.wpcf7-list-item{display:inline-block;margin:0 1em 0 0}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type="checkbox"]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type="checkbox"]:checked+span::before{line-height:1.2;content:"\2714"}.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type="checkbox"]+span::before,.wp-block-uagb-cf7-styler .wpcf7-acceptance input[type="checkbox"]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type="checkbox"]+span::before,.wp-block-uagb-cf7-styler .wpcf7-checkbox input[type="checkbox"]:checked+span::before,.wp-block-uagb-cf7-styler .wpcf7-radio input[type="radio"]+span::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.wp-block-uagb-cf7-styler input[type="checkbox"]:checked+span::before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.wp-block-uagb-cf7-styler .wpcf7-radio input[type="radio"]+span::before{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-box .wpcf7-radio input[type="radio"]:checked+span::before,.wp-block-uagb-cf7-styler .uagb-cf7-styler__field-style-underline .wpcf7-radio input[type="radio"]:checked+span::before{box-shadow:inset 0 0 0 4px #fafafa;background-color:#545454}.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit,.wp-block-uagb-cf7-styler .uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;width:auto;padding:10px 25px;background:transparent;border-color:#333;border-width:1px;line-height:16px;-js-display:flex}.wp-block-uagb-cf7-styler .wpcf7 input[type="checkbox"],.wp-block-uagb-cf7-styler .wpcf7 input[type="radio"]{display:none}.wp-block-uagb-cf7-styler .wpcf7 select{height:auto;padding:10px;-webkit-appearance:menulist-button;-moz-appearance:menulist-button}.wp-block-uagb-cf7-styler select.wpcf7-form-control.wpcf7-select[multiple="multiple"]{padding:0}.wp-block-uagb-cf7-styler .wpcf7 select option{padding:10px}.wp-block-uagb-cf7-styler .uagb-cf7-styler__highlight-style-bottom_right span.wpcf7-not-valid-tip{display:block;padding:0.1em 0.5em;margin-top:5px;border-radius:2px;font-size:0.9em;-webkit-border-radius:2px;width:fit-content;margin-left:auto;margin-right:0}.wp-block-uagb-cf7-styler .wpcf7 input[type="number"]{height:auto}.wp-block-uagb-cf7-styler .wpcf7 input.wpcf7-date{-webkit-appearance:none}.wp-block-uagb-cf7-styler .wpcf7-spinner{margin-top:25px}@media (min-width: 769px){.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;flex-wrap:wrap;width:100%}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col label,.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span{-webkit-box-flex:1;-webkit-flex-grow:1;-moz-box-flex:1;-ms-flex-positive:1;flex:1;flex-grow:1}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col br{display:none}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-1{padding-right:15px;padding-left:0}.wp-block-uagb-cf7-styler .uagb-cf7_styler-col>p>span.uagb-cf7_styler-col-3{padding-right:0;padding-left:15px}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col span.wpcf7-form-control-wrap{height:100%}.wp-block-uagb-cf7-styler .wpcf7 .uagb-cf7_styler-col select{height:100%}}@media (min-width: 780px){.uagb-cf7-styler__btn-align-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100% !important}}@media (max-width: 780px){.uagb-cf7-styler__btn-align-tablet-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-tablet-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-tablet-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}}@media (min-width: 641px) and (max-width: 780px){.uagb-cf7-styler__btn-align-tablet-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100% !important}}@media (max-width: 641px){.uagb-cf7-styler__btn-align-mobile-right input.wpcf7-form-control.wpcf7-submit{margin-right:0;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-left input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:0}.uagb-cf7-styler__btn-align-mobile-center input.wpcf7-form-control.wpcf7-submit{margin-right:auto;margin-left:auto}.uagb-cf7-styler__btn-align-mobile-justify input.wpcf7-form-control.wpcf7-submit{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100% !important}}
PK�][*��VLL>ultimate-addons-for-gutenberg/assets/css/blocks/tabs-child.cssnu�[���.uagb-tabs__wrap .uagb-tabs__body-container{padding:10px 15px;display:none}
PK�][�f

;ultimate-addons-for-gutenberg/assets/css/blocks/counter.cssnu�[���.wp-block-uagb-counter .wp-block-uagb-counter__icon,.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap{display:inline-block;line-height:0}.wp-block-uagb-counter--number .wp-block-uagb-counter__number{font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--number .wp-block-uagb-counter__icon{margin-bottom:10px}.wp-block-uagb-counter--bars{display:flex;flex-direction:column}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container{width:100%;background-color:#eaeaea}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{width:0%;min-height:5px;text-align:right;line-height:1;white-space:nowrap;overflow:hidden;background:#007cba;display:flex;justify-content:flex-end;align-items:center}.rtl .wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number{flex-direction:row-reverse;justify-content:flex-start}.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number>:last-child{margin-right:5px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__title{margin-top:15px}.wp-block-uagb-counter--bars .wp-block-uagb-counter__number{color:#fff;padding-top:5px;padding-bottom:5px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container{position:relative;display:inline-block;width:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container .wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg{pointer-events:none}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg{transform:rotate(-90deg);width:100%;height:100%}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg circle{stroke:#eaeaea;stroke-width:1em;fill:transparent}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container>svg .uagb-counter-circle__progress{stroke:#007cba}.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container__content{position:absolute;left:0;right:0;top:0;bottom:0;display:flex;justify-content:center;align-items:center;flex-direction:column;z-index:1}.wp-block-uagb-counter--circle .wp-block-uagb-counter__number{margin-top:5px;font-size:52px;color:#3a3a3a}.wp-block-uagb-counter--circle .wp-block-uagb-counter__title{margin-top:5px}.wp-block-uagb-counter__icon svg{width:30px}.wp-block-uagb-counter__title{margin-top:10px;margin-bottom:17px;font-size:16px}body[class*="astra"] .wp-block-uagb-counter__title,body[class*="astra"] .wp-block-uagb-counter__number{line-height:normal}
PK�][�}w�ll:ultimate-addons-for-gutenberg/assets/css/blocks/slider.cssnu�[���.uagb-swiper{position:relative;overflow:hidden}.uagb-slider-container{position:relative;width:100%;min-width:0;transition:box-shadow 0.2s ease}.uagb-slider-container .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.uagb-slider-container .swiper-button-next.swiper-button-disabled,.uagb-slider-container .swiper-button-prev.swiper-button-disabled{pointer-events:all}.uagb-slider-container .swiper-pagination.swiper-pagination-bullets{max-width:100%}.uagb-slider-container .swiper-button-prev,.uagb-slider-container .swiper-button-next{border-style:none;background:#efefef}
PK�][��؝zzAultimate-addons-for-gutenberg/assets/css/blocks/popup-builder.cssnu�[���.uagb-popup-builder{display:none;opacity:0;position:fixed;top:0;left:0;width:100vw;height:100vh;max-width:100vw;max-height:100vh;z-index:999999999;overflow:hidden;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:250ms;-moz-transition-duration:250ms;-o-transition-duration:250ms;transition-duration:250ms}.uagb-popup-builder__banner--pusher{position:relative}.uagb-popup-builder__wrapper{position:relative;box-sizing:border-box}.uagb-popup-builder__wrapper--banner{width:100%}.uagb-popup-builder__container{display:flex;box-sizing:border-box;width:100%;height:100%;flex-direction:column;overflow-x:hidden;overflow-y:auto;-webkit-transition-property:box-shadow, border-color;-moz-transition-property:box-shadow, border-color;-o-transition-property:box-shadow, border-color;transition-property:box-shadow, border-color;-webkit-transition-duration:250ms;-moz-transition-duration:250ms;-o-transition-duration:250ms;transition-duration:250ms}.uagb-popup-builder__container .uagb-is-root-container{width:100%}.uagb-popup-builder__close{position:absolute;top:0;z-index:999999999}.uagb-popup-builder button.uagb-popup-builder__close{border:none;background:transparent;background-color:transparent;padding:0}.uagb-popup-builder button.uagb-popup-builder__close svg{-webkit-transition-property:fill;-moz-transition-property:fill;-o-transition-property:fill;transition-property:fill;-webkit-transition-duration:250ms;-moz-transition-duration:250ms;-o-transition-duration:250ms;transition-duration:250ms}.uagb-popup-builder__body--overflow-hidden{overflow:hidden}
PK�][�7�$ii8ultimate-addons-for-gutenberg/assets/css/blocks/icon.cssnu�[���.wp-block-uagb-icon svg{width:30px}.uagb-icon-wrapper .uagb-svg-wrapper{transition:box-shadow 0.2s ease}
PK�][-��"":ultimate-addons-for-gutenberg/assets/css/blocks/review.cssnu�[���.uagb_review_block{padding:25px 40px 35px 40px;margin:30px auto}.uagb_review_block a.uagb-rating-link-wrapper{color:inherit;text-decoration:none}.uagb_review_block .uagb-rating__source-wrap{padding-top:10px;padding-bottom:10px}.uagb_review_block .uagb_review_entry{display:flex;padding:10px 0 10px 0;border-bottom:1px solid #e9e9e9}.uagb_review_block .uagb_review_summary_title{margin:23px 0 13px 0;font-size:24px;font-weight:600}.uagb_review_block .uagb_review_summary .uagb_review_overall_value{flex-basis:75%}.uagb_review_block .uagb_review_average{display:inline-flex}.uagb_review_block .uagb_review_rating{text-align:right;font-size:40px}.uagb_review_block .uagb_review_average_stars{display:flex;grid-area:auto;justify-self:self-end;height:50px;line-height:60px;margin-left:10px;margin-top:25px}
PK�][�@���:ultimate-addons-for-gutenberg/assets/css/blocks/how-to.cssnu�[���.uagb-howto__cost-wrap{display:flex;align-items:center}.uagb-howto__cost-wrap .uagb-howto-estcost-text,.uagb-howto__cost-wrap .uagb-howto-estcost-value,.uagb-howto__cost-wrap .uagb-howto-estcost-type{display:inline-flex}.uagb-howto__time-wrap{display:flex;align-items:center}.uagb-howto__time-wrap .uagb-howto-timeNeeded-text,.uagb-howto__time-wrap .uagb-howto-timeNeeded-value,.uagb-howto__time-wrap .uagb-howto-timeINmin-text{display:inline-flex}.uagb-howto__time-wrap .uagb-howto-timeINmin-text{margin-left:5px}.uagb-step-link-all{height:100%;width:100%;top:0;left:0;position:absolute;z-index:3;box-shadow:none;text-decoration:none;color:inherit}.uagb-how-to-step-wrap{position:relative;margin-top:25px}.uagb-step-image-content-wrap.uag-image-position-left-title{display:flex}.uagb-step-image-content-wrap.uag-image-position-left-title .uagb-how-to-step-image{margin-right:20px}.uagb-step-image-content-wrap.uag-image-position-right-title{display:flex;flex-direction:row-reverse}.uagb-step-image-content-wrap.uag-image-position-right-title .uagb-how-to-step-image{margin-left:20px}.uagb-step-image-content-wrap.uag-image-position-above-title{display:block}.uagb-step-image-content-wrap.uag-image-position-above-title .uagb-how-to-step-image{margin-bottom:20px}.uagb-step-image-content-wrap .uagb-step-link{text-decoration:none !important}.uagb-step-image-content-wrap .uagb-step-link:hover{text-decoration:none !important}.uagb-howto-req-steps-text,.uagb-howto-req-tools-text,.uagb-howto-req-materials-text{margin-block-start:1.33em;margin-block-end:1.33em}.uagb-how-to-main-wrap{width:100%}.uagb-how-to-main-wrap .uagb-howto__source-image{height:auto;max-width:100%}
PK�][N�8���:ultimate-addons-for-gutenberg/assets/css/blocks/column.cssnu�[���.uagb-column__wrap,.uagb-column__inner-wrap{margin-left:auto;margin-right:auto;position:relative;width:100%;z-index:2}.uagb-column__wrap{position:relative;overflow:visible}.uagb-column__wrap>*{z-index:1;width:100%;position:relative}.uagb-column__wrap .aligncenter{display:block;text-align:center}.uagb-column__wrap .aligncenter figcaption{display:block;text-align:center}.uagb-column__wrap .alignright{display:block;text-align:right}.uagb-column__wrap .alignright figcaption{display:block;text-align:right}.uagb-column__wrap .wp-block-image{width:100%}.uagb-column__wrap.uagb-column__align-left{margin-left:0;margin-right:auto}.uagb-column__wrap.uagb-column__align-right{margin-left:auto;margin-right:0}.uagb-column__wrap .uagb-column__video-wrap,.uagb-column__wrap .uagb-column__overlay{height:100%;width:100%;top:0;left:0;position:absolute;border-radius:inherit}.uagb-column__wrap .uagb-column__video-wrap{overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-column__wrap .uagb-column__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-columns>.editor-inner-blocks>.editor-block-list__layout>[data-type="uagb/column"]{display:flex;flex-direction:column;flex:1;padding-left:0;padding-right:0;margin-left:-14px;margin-right:-14px;min-width:0;word-break:break-word;overflow-wrap:break-word;flex-basis:100%}@media (max-width: 976px){.uagb-column__align-tablet-left{margin-left:0;margin-right:auto}.uagb-column__align-tablet-right{margin-left:auto;margin-right:0}}@media (max-width: 767px){.uagb-column__align-mobile-left{margin-left:0;margin-right:auto}.uagb-column__align-mobile-right{margin-left:auto;margin-right:0}}@media (max-width: 449px){.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll !important}}
PK�][OCd.?ultimate-addons-for-gutenberg/assets/css/blocks/star-rating.cssnu�[���.wp-block-uagb-star-rating{display:flex}.wp-block-uagb-star-rating .uag-star-rating__title{margin:0}.wp-block-uagb-star-rating .uag-star-rating{display:flex;align-items:center}.wp-block-uagb-star-rating .uag-star{color:#ccd6df;display:inline-block;line-height:0.75em}
PK�][�N�nnn8ultimate-addons-for-gutenberg/assets/css/blocks/team.cssnu�[���.wp-block-uagb-team{display:flex}.wp-block-uagb-team .uagb-team__content{width:100%}.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team.uagb-team__outer-wrap.uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-team .uagb-team__title,.wp-block-uagb-team span.uagb-team__title{display:block;margin-block-start:0;margin-block-end:0}.wp-block-uagb-team .uagb-team__image-wrap img{display:inline;width:inherit;height:auto !important;max-width:100%;box-sizing:content-box;border-radius:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-border-radius:inherit}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-circle img{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-team img.uagb-team__image-crop-circle{-webkit-border-radius:100%;border-radius:100%}.wp-block-uagb-team .uagb-team__image-wrap.uagb-team__image-crop-square img{-webkit-border-radius:0;border-radius:0}.wp-block-uagb-team img.uagb-team__image-crop-square{-webkit-border-radius:0;border-radius:0}.wp-block-uagb-team .uagb-team__social-icon-wrap ul{display:flex;list-style:none}.wp-block-uagb-team .uagb-team__social-icon a{display:block;width:20px;height:20px;color:#333;font-size:20px}.wp-block-uagb-team .uagb-team__social-icon{margin-right:20px;margin-left:0}.wp-block-uagb-team .uagb-team__social-list{padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-above ul.uagb-team__social-list{display:flex;list-style:none}.wp-block-uagb-team.uagb-team__image-position-above .uagb-team__social-icon-wrap{display:inline-block}.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-start}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:left}.wp-block-uagb-team.uagb-team__image-position-left .uagb-team__social-icon-wrap ul{justify-content:flex-start;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-left li{margin-right:5px}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{display:flex;list-style:none;justify-content:flex-end}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:right}.wp-block-uagb-team.uagb-team__image-position-right .uagb-team__social-icon-wrap ul{justify-content:flex-end;padding:0;margin:0}.wp-block-uagb-team.uagb-team__image-position-right li{margin-left:5px}.wp-block-uagb-team .uagb-team__image-position-left .uagb-team__wrap,.wp-block-uagb-team .uagb-team__image-position-right .uagb-team__wrap{-js-display:flex;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex}.wp-block-uagb-team img{display:inline;max-width:100%;width:inherit;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-border-radius:inherit;border-radius:inherit}@media only screen and (max-width: 976px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-tablet{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__image-wrap,.wp-block-uagb-team.uagb-team__stack-tablet img{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-tablet .uagb-team__social-icon-wrap ul{justify-content:center}}@media screen and (max-width: 767px){.wp-block-uagb-team.uagb-team__image-position-left ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__image-position-right ul.uagb-team__social-list{justify-content:center}.wp-block-uagb-team.uagb-team__stack-mobile{text-align:center;display:block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__content{text-align:center}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__wrap{display:inline-block}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__image-wrap{margin-right:auto !important;margin-left:auto !important}.wp-block-uagb-team.uagb-team__stack-mobile .uagb-team__social-icon-wrap ul{justify-content:center}}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center{text-align:center}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-center .uagb-team__content{text-align:center}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left{text-align:right}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-left .uagb-team__content{text-align:right}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right{text-align:left}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-above.uagb-team__align-right .uagb-team__content{text-align:left}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-left .uagb-team__content{text-align:right}html[dir="rtl"] .wp-block-uagb-team.uagb-team__image-position-right .uagb-team__content{text-align:left}
PK�][�����3�39ultimate-addons-for-gutenberg/assets/css/blocks/forms.cssnu�[���.uagb-forms__outer-wrap .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-input::placeholder,.uagb-forms__outer-wrap .uagb-forms-input-label,.uagb-forms__outer-wrap .uagb-forms-main-submit-button,.uagb-forms__outer-wrap .uagb-forms-success-message,.uagb-forms__outer-wrap .uagb-forms-failed-message{-webkit-transition-property:color, background-color, border-color;-moz-transition-property:color, background-color, border-color;-o-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;-webkit-transition-duration:0.15s;-moz-transition-duration:0.15s;-o-transition-duration:0.15s;transition-duration:0.15s}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input,.uagb-forms__outer-wrap .uagb-forms-main-form input[type="text"]{min-height:0 !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-input::-webkit-input-placeholder,.uagb-forms__outer-wrap .uagb-forms-main-form input[type="text"]::-webkit-input-placeholder{overflow:unset}.uagb-forms__outer-wrap .uagb-forms-main-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),.uagb-forms__outer-wrap .uagb-forms-main-form textarea,.uagb-forms__outer-wrap .uagb-forms-main-form select{width:100%;box-sizing:border-box}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-checkbox-wrap .uagb-form-checkbox-option input.uagb-inner-input-view{width:33%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-wrap .uagb-forms-phone-input{width:75% !important}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%;justify-content:space-between}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%;margin-right:5px}.uagb-forms__outer-wrap .uagb-forms-main-form .required::after{color:#f00;content:" *"}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-form-hidden-data{display:none}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link{width:auto}.uagb-forms__outer-wrap .uagb-forms-submit-message-hide{display:none}.uagb-forms__outer-wrap .uagb-forms-success-message{padding:20px 20px}.uagb-forms__outer-wrap .uagb-forms-failed-message{padding:20px 20px}.uagb-forms__outer-wrap span.components-spinner{float:none}.uagb-forms__outer-wrap .uagb-forms-input.uagb-form-phone-country{background-color:#fff}.uagb-forms__outer-wrap .uag-col-2-wrap{display:grid;grid-template-columns:1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-3-wrap{display:grid;grid-template-columns:1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uag-col-4-wrap{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;column-gap:15px}.uagb-forms__outer-wrap .uagb-switch{position:relative;display:inline-block;width:50px;height:25px}.uagb-forms__outer-wrap .uagb-switch input{width:0;height:0;opacity:0}.uagb-forms__outer-wrap .uagb-slider{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#fff;cursor:pointer;transition:0.4s;-webkit-transition:0.4s}.uagb-forms__outer-wrap .uagb-switch .uagb-slider::before{position:absolute;width:20px;height:20px;background-color:#000;transition:0.4s;content:"";-webkit-transition:0.4s}.uagb-forms__outer-wrap .uagb-switch input:checked+.uagb-slider::before{background-color:#fff}.uagb-forms__outer-wrap .uagb-slider.round::before{border-radius:50% !important}.uagb-forms-select-box,.uagb-form-phone-country,.uagb-forms-phone-wrap .uagb-forms-phone-input{height:auto;-webkit-appearance:none;appearance:none}.uagb-forms-radio-wrap input[type="radio"]:checked+label::before{line-height:1.2;content:" "}.uagb-forms-radio-wrap input[type="radio"]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:""}.uagb-forms-radio-wrap input[type="radio"].round+label::before{border-radius:100% !important}select::after,select::before{padding:10px}.uagb-forms-radio-wrap input[type="radio"],.uagb-forms-checkbox-wrap input[type="checkbox"],.uagb-forms-accept-wrap input[type="checkbox"]{opacity:0}.uagb-forms-checkbox-wrap input[type="checkbox"]:checked+label::before,.uagb-forms-accept-wrap input[type="checkbox"]:checked+label::before{line-height:1.2;content:"\2714"}.uagb-forms-checkbox-wrap input[type="checkbox"]+label::before,.uagb-forms-accept-wrap input[type="checkbox"]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;margin-bottom:5px;box-sizing:content-box;text-align:center;line-height:1.2;content:" "}@media only screen and (max-width: 767px){.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex{display:flex;width:100%}.uagb-forms__outer-wrap .uagb-forms-main-form .uagb-forms-phone-flex .uagb-form-phone-country{width:25%}}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-20 .uagb-forms-main-form{column-gap:20px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-15 .uagb-forms-main-form{column-gap:15px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-10 .uagb-forms-main-form{column-gap:10px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-column-gap-5 .uagb-forms-main-form{column-gap:5px}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-desk-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-flex-start .uagb-forms-main-form{align-items:flex-start}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-align-item-center .uagb-forms-main-form{align-items:center}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form{display:flex;flex-wrap:wrap;margin:0 -5px;position:relative;text-align:left}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-desk-width-80{width:80%}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-tablet-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-tablet-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}@media (max-width: 767px){.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-20{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-25{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-33{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-40{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-50{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-60{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-66{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-75{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-80{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-100{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field .uagb-forms-main-form .uagb-forms-field-mobile-width-unset{width:auto}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-20 .uagb-forms-main-submit-button-wrap{width:20%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-25 .uagb-forms-main-submit-button-wrap{width:25%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-33 .uagb-forms-main-submit-button-wrap{width:33.33%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-40 .uagb-forms-main-submit-button-wrap{width:40%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-50 .uagb-forms-main-submit-button-wrap{width:50%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-60 .uagb-forms-main-submit-button-wrap{width:60%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-66 .uagb-forms-main-submit-button-wrap{width:66.66%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-75 .uagb-forms-main-submit-button-wrap{width:75%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-80 .uagb-forms-main-submit-button-wrap{width:80%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-100 .uagb-forms-main-submit-button-wrap{width:100%}.wp-block-uagb-forms.uagb-forms-inline-field.uagb-forms-button-mobile-width-unset .uagb-forms-main-submit-button-wrap{width:auto}}
PK�][ �>>;ultimate-addons-for-gutenberg/assets/css/blocks/section.cssnu�[���.uagb-section__wrap{position:relative}.uagb-section__wrap .uagb-section__inner-wrap{position:relative;z-index:2;margin-right:auto;margin-left:auto}.uagb-section__wrap .uagb-section__overlay{position:absolute;top:0;left:0;width:100%;height:100%}.uagb-section__wrap .uagb-section__video-wrap{position:absolute;top:0;left:0;z-index:0;width:100%;height:100%;transition:opacity 1s;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s}.uagb-section__wrap .uagb-section__video-wrap video{display:inline-block;vertical-align:baseline;width:100%;height:100%;max-width:100%;margin:0;background-size:cover;border:none;object-fit:cover;line-height:1;-o-object-fit:cover}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-section.uagb-section__wrap.uagb-section__background-image{background-attachment:scroll}}
PK�][�^I�{{?ultimate-addons-for-gutenberg/assets/css/blocks/testimonial.cssnu�[���.wp-block-uagb-testimonial.uagb-slick-carousel ul.slick-dots{margin-bottom:20px}.uagb-testimonial__wrap{box-sizing:border-box}.uagb-testimonial__wrap,.uagb-testimonial__wrap *{transition:all 0.2s}.uagb-icon-wrap .uagb-icon{display:inline-block}.uagb-tm__image-content img{height:auto !important}.uagb-tm__image,.uagb-testimonial__wrap,.uagb-tm__content,.uagb-tm__text-wrap{position:relative}.uagb-tm__imgicon-style-circle .uagb-tm__image img{border-radius:100%}.uagb-tm__imgicon-style-square .uagb-tm__image img{border-radius:0%}.uagb-tm__image img,.slick-slide .uagb-tm__image img{display:inline-block;box-sizing:content-box}.uagb-tm__content{overflow:hidden;text-align:center;word-break:break-word;border-radius:inherit;display:grid}.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm__image-position-right .uagb-tm__content{display:flex}.uagb-tm__meta-inner{display:inline;width:100%;line-height:1}.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm__image-position-bottom .uagb-testimonial-details{display:table-cell;vertical-align:middle}.uagb-tm__image-position-bottom .uagb-tm__image-content{padding-right:10px}.uagb-tm__author-name,.uagb-tm__company{display:block}.uagb-tm__image-aligned-middle .uagb-tm__image-content{align-self:center}.uagb-tm__author-name{font-size:30px;line-height:16px}.uagb-tm__company{font-size:15px;font-style:normal;line-height:16px;color:#888}.uagb-tm__overlay{height:100%;width:100%;top:0;left:0;position:absolute;background:transparent}.uagb-tm__items{visibility:hidden}.uagb-tm__items.slick-initialized{visibility:visible}.uagb-tm__image-position-top .uagb-tm__image-content{display:flex;justify-content:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-45px}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-prev{left:25px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-inside .slick-next{right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-prev{left:auto;right:25px}[dir="rtl"] .uagb-tm__arrow-inside.uagb-slick-carousel .slick-next{left:25px;right:auto}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{right:auto;left:-45px}[dir="rtl"] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-next{left:auto;right:-45px}@media (min-width: 1025px){.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset .uagb-testimonial__wrap{margin-bottom:0}}@media (max-width: 976px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-tablet .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-tablet.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-tablet.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-tablet.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-tablet.uagb-tm__image-position-right.uagb-tm-reverse-order-tablet .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-tablet.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:-10px;z-index:1}.uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{right:-10px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-prev{left:auto;right:15px}[dir="rtl"] .uagb-slick-carousel.uagb-tm__arrow-outside .slick-next{left:15px;right:auto}}@media (max-width: 768px){.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .uagb-testimonial__wrap{margin-bottom:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:last-child .uagb-testimonial__wrap{padding-right:0}.wp-block-uagb-testimonial.uagb-post__carousel_notset-mobile .slick-slide:first-child .uagb-testimonial__wrap{padding-left:0}.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-tm__image-content,.uagb-tm-stacked-mobile.uagb-tm__image-position-bottom .uagb-testimonial-details{display:block;vertical-align:middle}.uagb-tm-stacked-mobile.uagb-tm__image-position-left .uagb-tm__content,.uagb-tm-stacked-mobile.uagb-tm__image-position-right .uagb-tm__content{display:block}.uagb-tm-stacked-mobile.uagb-tm__image-position-right.uagb-tm-reverse-order-mobile .uagb-tm__content{display:inline-flex;flex-direction:column-reverse}.uagb-tm-stacked-mobile.uagb-tm__image-aligned-top .uagb-tm__image-content{display:inline-flex;align-self:center}}.entry-content .wp-block-uagb-testimonial .is-carousel ul.slick-dots{padding:unset}
PK�][�y�k�k=ultimate-addons-for-gutenberg/assets/css/blocks/gf-styler.cssnu�[���.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-multi .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single{position:relative;display:block;height:auto;padding:0;box-shadow:none;background:#fff;border:1px solid #aaa;border-radius:0;color:#444;text-decoration:none;white-space:nowrap;overflow:hidden;-webkit-border-radius:0;-webkit-box-shadow:none}.uagb-gf-styler__gform-heading-none .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading.custom_gform_heading{display:none}.uagb-gf-styler__gform-heading-no .gform_wrapper .gform_heading.custom_gform_heading,.uagb-gf-styler__gform-heading-yes .gform_wrapper .gform_heading{display:block}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single span{line-height:1}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single{background:#fff}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type="submit"]{display:inline-block}.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title,.uagb-gf-styler__check-style-enabled .gform_wrapper .gf_progressbar_wrapper .gf_progressbar_title{opacity:1}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom{position:relative}.uagb-gf-styler__check-style-enabled .uag-gf-select-custom::after{position:absolute;top:45%;right:0.5em;z-index:5;font-family:FontAwesome, serif !important;font-size:0.7em;line-height:1;transform:translateY(-45%);content:"\f078";pointer-events:none;-webkit-transform:translateY(-45%);-ms-transform:translateY(-45%)}.uagb-gf-styler__check-style-enabled span.name_prefix_select .uag-gf-select-custom{display:inline;vertical-align:middle}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked+label::before{box-shadow:inset 0 0 0 4px #fafafa}.uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label::before{font-weight:700}.uagb-gf-styler__check-style-enabled select,.uagb-gf-styler__check-style-enabled .chosen-single{-webkit-appearance:none;-moz-appearance:none;appearance:none}.uagb-gf-styler__check-style-enabled .gform_wrapper div.validation_error{border-top:none;border-bottom:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield_radio li label{margin:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_body{width:100% !important}.wp-block-uagb-gf-styler .gform_wrapper .gform_fields,.wp-block-uagb-gf-styler .gform_wrapper .gform_footer{pointer-events:auto}.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="checkbox"]+label::before,.uagb-gf-styler__check-style-enabled .gform_wrapper input[type="radio"]+label::before{-webkit-box-sizing:content-box !important;-moz-box-sizing:content-box !important;box-sizing:content-box !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gsection{margin-right:0}.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type="submit"],.uag-gf-btn-size-xs .uagb-gf-styler__check-style-enabled input[type="button"]{padding:10px 20px;border-radius:2px;font-size:13px;-webkit-border-radius:2px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:8px 10px;font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container select{padding:6px 10px;font-size:13px}.ginput_container select{height:100%;line-height:inherit}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:13px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{width:10px;height:10px}.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label::before,.uag-gf-input-size-xs .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{font-size:-webkit-calc(10px / 1.2);font-size:calc(10px / 1.2)}.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type="submit"],.uag-gf-btn-size-sm .uagb-gf-styler__check-style-enabled input[type="button"]{padding:12px 24px;border-radius:3px;font-size:15px;-webkit-border-radius:3px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:12px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container select{padding:10px 10px;font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:15px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{width:12px;height:12px}.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label::before,.uag-gf-input-size-sm .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{font-size:-webkit-calc(12px / 1.2);font-size:calc(12px / 1.2)}.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type="submit"],.uag-gf-btn-size-md .uagb-gf-styler__check-style-enabled input[type="button"]{padding:15px 30px;border-radius:4px;font-size:16px;-webkit-border-radius:4px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:15px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container select{padding:13px 10px;font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:16px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{width:15px;height:15px}.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label::before,.uag-gf-input-size-md .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{font-size:-webkit-calc(15px / 1.2);font-size:calc(15px / 1.2)}.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type="submit"],.uag-gf-btn-size-lg .uagb-gf-styler__check-style-enabled input[type="button"]{padding:20px 40px;border-radius:5px;font-size:18px;-webkit-border-radius:5px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:20px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container select{padding:18px 10px;font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:18px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{width:20px;height:20px}.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label::before,.uag-gf-input-size-lg .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{font-size:-webkit-calc(20px / 1.2);font-size:calc(20px / 1.2)}.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type="submit"],.uag-gf-btn-size-xl .uagb-gf-styler__check-style-enabled input[type="button"]{padding:25px 50px;border-radius:6px;font-size:20px;-webkit-border-radius:6px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gform_body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container textarea,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-single,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container .chosen-choices{padding:25px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container select{padding:23px 10px;font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .uag-gf-select-custom{font-size:20px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]+label::before{width:25px;height:25px}.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked+label::before,.uag-gf-input-size-xl .uagb-gf-styler__check-style-enabled .ginput_container_consent input[type="checkbox"]:checked+label::before{font-size:-webkit-calc(25px / 1.2);font-size:calc(25px / 1.2)}.uagb-gf-styler__btn-align-right .gform_next_button,.uagb-gf-styler__btn-align-right .gform_previous_button{margin-right:5px !important}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_footer:not(.top_label){width:100%;padding:0 0 0 0;margin-right:0;margin-left:0}.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.left_label,.uagb-gf-styler__check-style-enabled .gform_wrapper .gform_page_footer.right_label{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]+label::before{-webkit-border-radius:100%;border-radius:100%}.uagb-gf-styler__check-style-enabled .gform_wrapper .top_label .gfield_error{width:100% !important}.uagb-gf-styler__check-style-enabled .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half){max-width:100% !important}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="submit"],.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="submit"],.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="submit"],.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type="submit"]{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;width:auto;-js-display:flex}.uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-center .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-center .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-right .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-left .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-left .gform_page .gform_page_footer input[type="submit"]{margin-right:0;margin-left:auto}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type="checkbox"],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type="radio"],.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type="checkbox"]{display:none}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_radio .gfield_radio input[type="radio"]+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type="checkbox"]+label::before{display:inline-block;vertical-align:middle;margin-right:10px;text-align:center;content:""}.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]:checked+label::before,.uagb-gf-styler__check-style-enabled .gform_body .ginput_container_consent input[type="checkbox"]:checked+label::before{line-height:1.2;content:"\2714"}.uagb-gf-styler__check-style-enabled .gform_wrapper ul.gform_fields li.gfield:not(.gf_left_half):not(.gf_left_third):not(.gf_middle_third){padding-right:0}.uagb-gf-styler__btn-align-width-full_width .gform_footer input[type="submit"]{display:block;width:100%;text-align:center}.uagb-gf-styler__check-style-enabled .gform_body ul{margin-left:0;list-style:none}.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container select,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-single,.uagb-gf-styler__check-style-enabled .gform_wrapper .gfield .ginput_container .chosen-choices,.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"],.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input.default{height:auto}.elementor-widget-uag-gf-styler .uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-choices li.search-field input[type="text"]{padding:0 0 0 0}.uagb-gf-styler__check-style-enabled .gform_page .gform_page_footer input[type="button"]{margin-bottom:20px}.uagb-gf-styler__check-style-enabled .gform_wrapper .chosen-container-single .chosen-single div{display:none}.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_label,.uagb-gf-styler__hide-label .gform_wrapper .gform_fields .gfield_required{display:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single span{width:100%;margin-bottom:0}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .chosen-container-single.chosen-container-active .chosen-single{border:none}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_checkbox .gfield_checkbox .gchoice,.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_radio .gfield_radio .gchoice{margin-bottom:5px;line-height:0}.wp-block-uagb-gf-styler .gform_wrapper .ginput_container_select select{background:#fafafa url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;background-size:16px 16px;cursor:pointer;vertical-align:middle}@media only screen and (max-width: 976px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-tablet-gf-button-center .gform_wrapper .gform_footer input[type="submit"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-center .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:auto;margin-left:auto}.uag-tablet-gf-button-left .gform_wrapper .gform_footer input[type="submit"],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-left .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:auto;margin-left:0}.uag-tablet-gf-button-right .gform_wrapper .gform_footer input[type="submit"],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-right .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:0;margin-left:auto}.uag-tablet-gf-button-justify .gform_wrapper .gform_footer input[type="submit"],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type="button"],.uag-tablet-gf-button-justify .gform_page .gform_page_footer input[type="submit"]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media only screen and (max-width: 767px){.uagb-gf-styler__btn-align-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-right .gform_page .gform_page_footer{text-align:right}.uag-mobile-gf-button-center .gform_wrapper .gform_footer input[type="submit"],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type="button"],.uag-mobile-gf-button-center .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:auto;margin-left:auto}.uag-mobile-gf-button-left .gform_wrapper .gform_footer input[type="submit"],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type="button"],.uag-mobile-gf-button-left .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:auto;margin-left:0}.uag-mobile-gf-button-right .gform_wrapper .gform_footer input[type="submit"],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type="button"],.uag-mobile-gf-button-right .gform_page .gform_page_footer input[type="submit"]{width:auto;margin-right:0;margin-left:auto}.uag-mobile-gf-button-justify .gform_wrapper .gform_footer input[type="submit"],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type="button"],.uag-mobile-gf-button-justify .gform_page .gform_page_footer input[type="submit"]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media (min-width: 780px){.uagb-gf-styler__btn-align-justify .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-justify .gform_page .gform_page_footer input[type="submit"]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100%}}@media (max-width: 780px){.uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-center .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-tablet-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-tablet-right .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-tablet-right .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-left .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-tablet-left .gform_page .gform_page_footer input[type="submit"]{margin-right:0;margin-left:auto}}@media (min-width: 641px) and (max-width: 780px){.uagb-gf-styler__btn-align-tablet-justify .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-tablet-justify .gform_page .gform_page_footer input[type="submit"]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100% !important}}@media (max-width: 641px){.uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-center .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:auto}.uagb-gf-styler__btn-align-mobile-center .gform_page .gform_page_footer{text-align:center}.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer{text-align:right}.uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type="submit"]{margin-right:auto;margin-left:0}.uagb-gf-styler__btn-align-mobile-right .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-mobile-right .gform_page .gform_page_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-left .gform_wrapper .gform_footer input[type="submit"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type="button"],html[dir="rtl"] .uagb-gf-styler__btn-align-mobile-left .gform_page .gform_page_footer input[type="submit"]{margin-right:0;margin-left:auto}.uagb-gf-styler__btn-align-mobile-justify .gform_wrapper .gform_footer input[type="submit"],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type="button"],.uagb-gf-styler__btn-align-mobile-justify .gform_page .gform_page_footer input[type="submit"]{-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center;justify-content:center;width:100% !important}}
PK�][�V9\��Fultimate-addons-for-gutenberg/assets/css/blocks/social-share-child.cssnu�[���.wp-block-uagb-social-share .uagb-social-share__wrapper{text-decoration:none}.uagb-social-share__wrapper{box-shadow:none}.uagb-social-share__outer-wrap:not(.uagb-social-share__no-label) .uagb-social-share__source-wrap{margin-right:15px}.uagb-social-share__outer-wrap.uagb-social-share__icon-at-top .uagb-social-share__source-wrap{-ms-flex-item-align:flex-start;align-self:flex-start;margin-top:5px}
PK�][]�"�D�D8ultimate-addons-for-gutenberg/assets/css/blocks/tabs.cssnu�[���.uagb-tabs__wrap{display:flex}.uagb-tabs__wrap ul.uagb-tabs__panel{margin:0;list-style-type:none;display:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-center{justify-content:center}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-left{justify-content:flex-start}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right{justify-content:flex-end}.uagb-tabs__wrap ul.uagb-tabs__panel.uagb-tabs__align-right .uagb-tab:last-child{margin-right:0}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a{position:relative;padding:6px 12px;display:inline-flex;color:inherit}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-top .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a.uagb-tabs__icon-position-bottom .uagb-tabs__icon{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel p{margin:0}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon{vertical-align:text-top}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left{display:block;align-items:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-left .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right{display:block}.uagb-tabs__wrap ul.uagb-tabs__panel .uagb-tabs__icon-position-right .uagb-tabs__icon{display:flex;align-self:center}.uagb-tabs__wrap .uagb-tabs__body-wrap{position:relative;max-width:100%;padding:10px}.editor-styles-wrapper .uagb-editor-preview-mode-tablet.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab,.editor-styles-wrapper .uagb-editor-preview-mode-mobile.uagb-tabs__wrap li.uagb-tab.uagb-tabs__add-tab{display:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;align-items:center;flex-direction:row;max-width:100%;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-desktop .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__hstyle3-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-desktop .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop ul.uagb-tabs__panel{justify-content:space-between;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{padding:0;display:flex;flex-direction:column;flex-grow:1;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-desktop .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop ul.uagb-tabs__panel{min-width:25%;max-width:25%}.uagb-tabs__wrap.uagb-tabs__vstyle8-desktop .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle9-desktop .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-desktop .uagb-tab{margin:10px 10px 10px 10px;text-align:center}@media (max-width: 1023px){.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet{flex-direction:column}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;max-width:100%;display:flex;flex-direction:row;flex-wrap:wrap}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-tablet .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-tablet .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-tablet .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-tablet .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet{flex-direction:row}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{flex-grow:3}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap{max-width:75%}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-tablet .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-tablet .uagb-tabs__body-wrap{border:none}.uagb-tabs__wrap.uagb-tabs__vstyle8-tablet ul.uagb-tabs__panel{margin-bottom:0;min-width:25%;max-width:25%;justify-content:normal}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel{margin-bottom:0}.uagb-tabs__wrap.uagb-tabs__vstyle9-tablet ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle3-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__hstyle4-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle6-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle8-tablet .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-desktop.uagb-tabs__vstyle9-tablet .uagb-tabs__body-wrap{border-style:none}}@media (max-width: 767px){.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile{flex-direction:column;border-style:none}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:row;flex-grow:1;max-width:100%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tabs__body-wrap{flex-direction:row;max-width:100%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile{flex-direction:row;border-style:none}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{margin-bottom:0;padding:0;display:flex;flex-direction:column;flex-grow:1}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tab .uagb-tabs-list,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tab .uagb-tabs-list{width:-webkit-fill-available;justify-content:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap{flex-grow:3;max-width:75%}.uagb-tabs__wrap.uagb-tabs__hstyle1-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle2-mobile .uagb-tab{margin:10px 10px -1px 0}.uagb-tabs__wrap.uagb-tabs__hstyle3-mobile .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__hstyle4-mobile .uagb-tab{margin:10px 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile ul.uagb-tabs__panel{justify-content:flex-start;margin:0}.uagb-tabs__wrap.uagb-tabs__hstyle5-mobile .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle6-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle7-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 0 0}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle8-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%}.uagb-tabs__wrap.uagb-tabs__vstyle9-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 10px 10px 0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel{min-width:24%;max-width:24%;margin:0}.uagb-tabs__wrap.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab{margin:10px 10px 10px 10px;text-align:center}.uagb-tabs__wrap.uagb-tabs__stack1-mobile,.uagb-tabs__wrap.uagb-tabs__stack2-mobile,.uagb-tabs__wrap.uagb-tabs__stack3-mobile,.uagb-tabs__wrap.uagb-tabs__stack4-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab p,.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack2-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack3-mobile .uagb-tabs__body-wrap,.uagb-tabs__wrap.uagb-tabs__stack4-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack1-mobile{display:block}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel{margin:0;padding:0;display:flex;flex-direction:column;max-width:100%;flex-grow:unset}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile ul.uagb-tabs__panel .uagb-tab p{margin:0}.uagb-tabs__wrap.uagb-tabs__stack1-mobile .uagb-tabs__body-wrap{max-width:100%}.uagb-tabs__wrap.uagb-tabs__stack2-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0}.uagb-tabs__wrap.uagb-tabs__stack3-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;padding:6px 12px 6px 12px}.uagb-tabs__wrap.uagb-tabs__stack4-mobile{margin:auto}.uagb-tabs__wrap.uagb-tabs__stack4-mobile ul.uagb-tabs__panel .uagb-tab{margin:0 0 10px 0;text-align:center}}.uagb-tabs__wrap .uagb-tabs__body-container.uagb-tabs-body__active{display:block}
PK�][�;�H.F.F>ultimate-addons-for-gutenberg/assets/css/blocks/price-list.cssnu�[���.wp-block-uagb-restaurant-menu,.uagb-rest_menu__wrap{position:relative}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-1,.uagb-rest_menu__wrap.uagb-rm__desk-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-2,.uagb-rest_menu__wrap.uagb-rm__desk-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-3,.uagb-rest_menu__wrap.uagb-rm__desk-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__desk-column-4,.uagb-rest_menu__wrap.uagb-rm__desk-column-4{grid-template-columns:auto auto auto auto}.wp-block-uagb-restaurant-menu .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__price{min-width:fit-content}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap{position:relative;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-right .uagb-rm__price{text-align:left !important}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content{position:relative;display:table;width:100%;padding:15px;border-radius:inherit;text-align:left;word-break:break-word;overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details{display:table;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title{display:block;margin-bottom:5px;margin-block-start:0;word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__price{word-break:normal}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm__separator{display:-webkit-flex;display:-moz-flexbox;display:flex;margin-right:0;margin-bottom:10px;margin-left:0;line-height:0;-js-display:flex;width:100%;border-top-color:#b2b4b5;border-top-style:inherit;border-top-width:1px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__content img{display:inline-block;box-sizing:content-box}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__desk-column-1,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-3,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-2,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__desk-column-1{padding-right:10px;padding-left:10px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center{display:flex;flex-direction:column}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__separator{align-self:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__price{text-align:center}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-right .uagb-rm__price{display:table-cell;text-align:left}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__image-position-top .uagb-rm__content .uagb-rm__price{display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__desc,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__desc{margin-bottom:15px}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{width:20%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rest_menu__wrap.uagb-rm__align-center.uagb-rm__image-position-top .uagb-rm__price{display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image{overflow:hidden}.wp-block-uagb-restaurant-menu .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img,.uagb-rest_menu__wrap .uagb-rest_menu__wrap .uagb-rm__image .uagb-rm-aligned-middle img{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__image-content,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top img{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__align-left .uagb-rm__content span.uagb-rm__price{display:table-cell;text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__text-wrap,.uagb-rest_menu__wrap .uagb-rm__text-wrap{position:relative;display:block;width:100%}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-center.uagb-rm__align-center .uagb-rm__price{display:block;width:100%;text-align:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-left .uagb-rm__content{display:-ms-flexbox;display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm-details{flex-direction:unset}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price{text-align:right;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-left.uagb-rm__align-center img{text-align:left}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-left img{margin-right:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-middle .uagb-rm__content .uagb-rm__image-content{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content img,.wp-block-uagb-restaurant-menu .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap .uagb-rm__image-aligned-top .uagb-rm__content .uagb-rm__image-content{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-middle .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-middle .uagb-rm__content img{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-restaurant-menu.uagb-rm__image-aligned-top .uagb-rm__content img,.uagb-rest_menu__wrap.uagb-rm__image-aligned-top .uagb-rm__content img{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right .uagb-rm__content,.uagb-rest_menu__wrap .uagb-rm__image-position-right .uagb-rm__content{display:-ms-flexbox;display:flex;-js-display:flex}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm-details{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__text-wrap .uagb-rm-details{display:flex;flex-direction:row-reverse}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__price,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price{text-align:left;display:table-cell}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-left img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-right img,.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm__align-center img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-left img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right.uagb-rm__align-center img{text-align:right}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right img,.uagb-rest_menu__wrap .uagb-rm__image-position-right img{margin-left:10px}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details,.uagb-rest_menu__wrap .uagb-rm__image-position-top.uagb-rm__align-right .uagb-rm-details{display:inline-table}.wp-block-uagb-restaurant-menu{display:grid}@media (max-width: 976px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet .uagb-rm__content{display:block;display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet .uagb-rm__content{display:block;display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm-reverse-order-tablet .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-tablet.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__tablet-column-4{grid-template-columns:auto auto auto auto}}@media (max-width: 767px){.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile .uagb-rm__content{display:block;display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-left.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-start}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile .uagb-rm__content{display:block;display:block;-js-display:block}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm-reverse-order-mobile .uagb-rm__content{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-flexbox;display:flex;flex-direction:column-reverse;-js-display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;-webkit-flex-direction:column-reverse;-moz-box-orient:vertical;-moz-box-direction:reverse}.wp-block-uagb-restaurant-menu .uagb-rm__image-position-right.uagb-rm-stacked-mobile.uagb-rm__image-aligned-middle img{align-self:flex-end}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-1{grid-template-columns:auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-2{grid-template-columns:auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-3{grid-template-columns:auto auto auto}.wp-block-uagb-restaurant-menu.uagb-rm__mobile-column-4{grid-template-columns:auto auto auto auto}}.uagb-rm__title-wrap,.uagb-rm__price-wrap{display:table-cell}.uagb-rm__align-center .uagb-rm-details,.uagb-rm__align-center .uagb-rm__title-wrap,.uagb-rm__align-center .uagb-rm__price-wrap{display:block;width:100%}.uagb-rm__price-wrap,.uagb-rm__image-position-left.uagb-rm__align-center .uagb-rm__price-wrap,.uagb-rm__image-position-right.uagb-rm__align-center .uagb-rm__price-wrap{width:15%}.uagb-rm__separator-parent{line-height:0em;margin-left:0;margin-right:0;margin-bottom:10px;-js-display:flex;display:-webkit-flex;display:-moz-flexbox;display:flex}
PK�][s��8++=ultimate-addons-for-gutenberg/assets/css/blocks/container.cssnu�[���.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}
PK�][��gU4	4	Aultimate-addons-for-gutenberg/assets/css/blocks/inline-notice.cssnu�[���.uagb-inline_notice__align-right{text-align:right}.uagb-inline_notice__align-right span.uagb-notice-dismiss{left:13px}.uagb-inline_notice__align-center{text-align:center}.uagb-inline_notice__align-center span.uagb-notice-dismiss{right:13px}.uagb-inline_notice__align-left{text-align:left}.uagb-inline_notice__align-left span.uagb-notice-dismiss{right:13px}.wp-block-uagb-inline-notice{width:100%;position:relative}.wp-block-uagb-inline-notice.uagb-notice__active{display:none}.wp-block-uagb-inline-notice .uagb-notice-title{margin:0;width:-moz-available;width:-webkit-fill-available;width:fill-available;display:inline-block}.wp-block-uagb-inline-notice .uagb-notice-text{margin-top:-3px;margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:last-child{margin-bottom:0}.wp-block-uagb-inline-notice .uagb-notice-text p:first-child{margin-top:0 !important}.wp-block-uagb-inline-notice span.uagb-notice-dismiss svg{width:16px;height:16px}.wp-block-uagb-inline-notice span.uagb-notice-dismiss{position:absolute;cursor:pointer;top:13px;opacity:0.8;padding:0;background:none;transition:0.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable>svg{position:absolute;cursor:pointer;opacity:0.8;padding:0;background:none;transition:0.3s ease}.wp-block-uagb-inline-notice.uagb-dismissable button[type="button"]{position:absolute;cursor:pointer;opacity:0.8;padding:0;background:none;transition:0.3s ease}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right{text-align:right}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right svg{left:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-right button[type="button"]{left:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center{text-align:center}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-center button[type="button"]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left{text-align:left}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left svg{right:13px}.wp-block-uagb-inline-notice.uagb-inline_notice__align-left button[type="button"]{right:13px;top:13px;border:none;padding-inline:0;padding-block:0;line-height:0px}
PK�][��K�rrDultimate-addons-for-gutenberg/assets/css/blocks/advanced-heading.cssnu�[���.wp-block-uagb-advanced-heading h1,.wp-block-uagb-advanced-heading h2,.wp-block-uagb-advanced-heading h3,.wp-block-uagb-advanced-heading h4,.wp-block-uagb-advanced-heading h5,.wp-block-uagb-advanced-heading h6,.wp-block-uagb-advanced-heading p,.wp-block-uagb-advanced-heading div{word-break:break-word}.wp-block-uagb-advanced-heading .uagb-heading-text{margin:0}.wp-block-uagb-advanced-heading .uagb-desc-text{margin:0}.wp-block-uagb-advanced-heading .uagb-separator{font-size:0;border-top-style:solid;display:inline-block;margin:0 0 10px 0}.wp-block-uagb-advanced-heading .uagb-highlight{color:#f78a0c;border:0;transition:all 0.3s ease}.uag-highlight-toolbar{border-left:0;border-top:0;border-bottom:0;border-radius:0;border-right-color:#1e1e1e}.uag-highlight-toolbar .components-button{border-radius:0;outline:none}.uag-highlight-toolbar .components-button.is-primary{color:#fff}
PK�][��ee;ultimate-addons-for-gutenberg/assets/css/blocks/buttons.cssnu�[���.uagb-buttons__outer-wrap .uagb-buttons__wrap{display:inline-flex;width:100%}.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}@media (max-width: 976px){.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-tablet__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}@media (max-width: 767px){.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__small-btn .uagb-buttons-repeater.ast-outline-button{padding:5px 10px}.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__medium-btn .uagb-buttons-repeater.ast-outline-button{padding:12px 24px}.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__large-btn .uagb-buttons-repeater.ast-outline-button{padding:20px 30px}.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.wp-block-button__link:not(.is-style-outline),.uagb-buttons__outer-wrap.uagb-btn-mobile__extralarge-btn .uagb-buttons-repeater.ast-outline-button{padding:30px 65px}}
PK�][��Cultimate-addons-for-gutenberg/assets/css/blocks/icon-list-child.cssnu�[���.wp-block-uagb-icon-list-child{position:relative}.wp-block-uagb-icon-list-child>a{position:absolute;top:0;left:0;width:100%;height:100%}img.uagb-icon-list__source-image{max-width:unset}.wp-block-uagb-icon-list-child .uagb-icon-list__label{word-break:break-word}
PK�][[�_�!
!
Eultimate-addons-for-gutenberg/assets/css/blocks/table-of-contents.cssnu�[���.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block;max-width:-moz-available;max-width:-webkit-fill-available;max-width:fill-available}.wp-block-uagb-table-of-contents li.uagb-toc__list{padding-top:10px}.wp-block-uagb-table-of-contents ul.uagb-toc__list,.wp-block-uagb-table-of-contents ol.uagb-toc__list{list-style-position:inside;padding-left:0;margin-bottom:0;margin-left:2.2em}.wp-block-uagb-table-of-contents ul.uagb-toc__list li,.wp-block-uagb-table-of-contents ol.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__title{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents svg{width:20px;height:20px;display:inline-block;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{display:flex;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:2px}ol.uagb-toc__list li.uagb-toc__list ul,ol.uagb-toc__list ul.uagb-toc__list ul{list-style-type:circle}ol.uagb-toc__list>ul,ol.uagb-toc__list>li{list-style-type:disc}.uagb-toc__scroll-top{position:fixed;right:50px;bottom:50px;display:none;padding:10px;background:#ccd0d4;cursor:pointer;font-size:1rem;line-height:1.85714285714286}.uagb-toc__scroll-top svg{width:1.6em;height:0.6em;margin-left:0;transform:translate(0, -20%) rotate(180deg);fill:currentColor}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}body[class*="astra"] .uagb-toc__list{line-height:normal}.uagb-toc__list{margin-top:0}.wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable{list-style-type:none !important}ul.uagb-toc__list--child-of-closed-list{padding-top:0 !important}ul.uagb-toc__list--hidden-child{display:none !important}.list-open::before,.list-collapsed::before{content:"\25BC" / "";transition:transform 0.3s ease;transform:scale(0.7) translateX(-50%);display:inline-block}.list-collapsed::before{transform:scale(0.7) rotate(-90deg) translate(-84%, 6%)}span.list-open,span.list-collapsed{cursor:pointer;outline:none !important}.uagb-toc__list.transition{transition:max-height 300ms ease-in-out, padding-top 300ms ease-in-out}.uagb-toc__loader{border:2px solid #f3f3f3;border-top:2px solid #0073aa;border-radius:50%;width:20px;height:20px;animation:spin 1.1s linear infinite;display:block;position:absolute;margin-top:5px}.uagb-toc__list-hidden{opacity:0}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}[dir="rtl"] .list-open::before{transform:scale(0.7) translateX(50%)}[dir="rtl"] .list-collapsed::before{transform:scale(0.7) rotate(90deg) translate(84%, 6%)}[dir="rtl"] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,[dir="rtl"] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:0;padding-right:2px;margin-left:0;margin-right:2.2em}
PK�][�S�'�x�xAultimate-addons-for-gutenberg/assets/css/blocks/image-gallery.cssnu�[���.wp-block-uagb-image-gallery{display:-ms-flex;display:-moz-flex;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;flex-direction:column}.spectra-image-gallery *{box-sizing:border-box}.spectra-image-gallery__layout--grid{display:-moz-grid;display:-ms-grid;display:grid;grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--grid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--isogrid-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--isogrid+.spectra-image-gallery__control-wrapper .spectra-image-gallery__control-arrows:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__layout--masonry-col-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--carousel{width:100%}.spectra-image-gallery__layout--carousel .slick-initialized{visibility:visible}.spectra-image-gallery__layout--carousel .slick-track{display:flex;align-items:center}.spectra-image-gallery__layout--carousel .slick-dots{padding:0;position:relative !important}.spectra-image-gallery__layout--carousel .slick-dots li button{padding:0}.spectra-image-gallery__layout--carousel .uagb-slick-carousel{padding:0}.spectra-image-gallery__layout--tiled{position:relative;display:grid;grid-auto-flow:dense;min-height:0;min-width:0}.spectra-image-gallery__layout--tiled-col-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__media{position:relative;overflow:hidden;-webkit-transition:box-shadow 0.25s;-moz-transition:box-shadow 0.25s;-o-transition:box-shadow 0.25s;transition:box-shadow 0.25s}.spectra-image-gallery__media--flagged{cursor:not-allowed}.spectra-image-gallery__media--clickable{cursor:pointer}.spectra-image-gallery__media--grid{aspect-ratio:1}.spectra-image-gallery__media--masonry{width:100%}.spectra-image-gallery__media--carousel{width:100%}.spectra-image-gallery__media--tiled{aspect-ratio:1;display:flex;align-items:center;justify-content:center}.spectra-image-gallery__media--tiled-wide,.spectra-image-gallery__media--tiled-tall{aspect-ratio:unset;width:100%;height:100%}.spectra-image-gallery__media--tiled picture{width:100%;height:100%}.spectra-image-gallery__media-sizer{aspect-ratio:1}.spectra-image-gallery__media-wrapper{position:relative}.spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__control-focus{opacity:0.25}.spectra-image-gallery__media-thumbnail{vertical-align:middle;-webkit-transition:filter 0.5s, transform 0.5s;-moz-transition:filter 0.5s, transform 0.5s;-o-transition:filter 0.5s, transform 0.5s;transition:filter 0.5s, transform 0.5s}.spectra-image-gallery__media-thumbnail--grid{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail--masonry{width:100%}.spectra-image-gallery__media-thumbnail--carousel{width:100%}.spectra-image-gallery__media-thumbnail--tiled{width:100% !important;height:100% !important;-o-object-fit:cover;object-fit:cover}.spectra-image-gallery__media-thumbnail-blurrer{position:absolute;top:0;left:0;width:100% !important;height:100% !important;-webkit-transition:box-shadow 0.25s, -webkit-backdrop-filter 0.5s;-moz-transition:box-shadow 0.25s, backdrop-filter 0.5s;-o-transition:box-shadow 0.25s, backdrop-filter 0.5s;transition:box-shadow 0.25s, backdrop-filter 0.5s}.spectra-image-gallery__media-thumbnail-caption{-webkit-transition-property:color, background-color, border-color;-moz-transition-property:color, background-color, border-color;-o-transition-property:color, background-color, border-color;transition-property:color, background-color, border-color;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__media-thumbnail-caption--overlay{display:-ms-flex;display:-moz-flex;display:-webkit-flex;display:flex;width:100%;height:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption--bar-inside{width:100%;overflow:hidden;padding:1em;max-height:90%}.spectra-image-gallery__media-thumbnail-caption--bar-outside{width:100%;overflow:hidden;padding:1em}.spectra-image-gallery__media-thumbnail-caption-wrapper{-webkit-transition:background-color 0.25s;-moz-transition:background-color 0.25s;-o-transition:background-color 0.25s;transition:background-color 0.25s}.spectra-image-gallery__media-thumbnail-caption-wrapper--overlay{position:absolute;top:0;left:0;width:100%;height:100%}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-inside{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;overflow:hidden}.spectra-image-gallery__media-thumbnail-caption-wrapper--bar-outside{position:relative;width:100%;overflow:hidden}.spectra-image-gallery__control-wrapper{display:-ms-flex;display:-moz-flex;display:-webkit-flex;display:flex;width:100%;justify-content:center}.spectra-image-gallery__control-arrows{display:-ms-flex;display:-moz-flex;display:-webkit-flex;display:flex;align-items:center;background-color:transparent;padding:0;cursor:pointer;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-arrows:disabled{opacity:0.25;cursor:initial}.spectra-image-gallery__control-arrows:focus{background-color:transparent}.spectra-image-gallery__control-arrows--grid{border:none}.spectra-image-gallery__control-arrows svg{-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-dots{display:-ms-flex;display:-moz-flex;display:-webkit-flex;display:flex;align-items:center;padding:0 !important;margin:0 !important}.spectra-image-gallery__control-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0;padding:0;cursor:pointer;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-dots li:hover{transform:scale(1.5);background-color:transparent}.spectra-image-gallery__control-dots li button{font-size:0;line-height:0;display:block;box-sizing:border-box;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-dots li button::before{font-family:none;font-size:30px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:0.25;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-dots li.spectra-image-gallery__control-dot--active button::before{opacity:0.75}.spectra-image-gallery__control-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.spectra-image-gallery__control-loader div{border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.spectra-image-gallery__control-loader div.spectra-image-gallery__control-loader--2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}.spectra-image-gallery__control-button{cursor:pointer;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-button.disabled{opacity:0.25;pointer-events:none}.spectra-image-gallery__control-focus{cursor:pointer;position:absolute;box-sizing:content-box !important;top:0;right:0;width:1.5em;height:1.5em;padding:0.5em;background-color:transparent;border:none;opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-focus:hover{opacity:1 !important}.spectra-image-gallery__control-focus svg{fill:#fff;filter:drop-shadow(1px 1px 1px rgba(0,0,0,0.5))}.spectra-image-gallery__control-lightbox{position:fixed;top:0;left:0;width:100vw !important;max-width:100vw !important;height:100vh !important;max-height:100vh !important;display:flex;flex-direction:column;opacity:0;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;z-index:999999999 !important;outline:none;margin-block-start:0;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-lightbox--main{width:100%;flex:1}.spectra-image-gallery__control-lightbox--main .swiper-slide{height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.spectra-image-gallery__control-lightbox--main .swiper-slide img{display:block;max-height:70%;max-width:80%}.spectra-image-gallery__control-lightbox--caption{position:absolute;bottom:0;left:0;width:100%;display:flex;align-items:center;justify-content:center;text-align:center}.spectra-image-gallery__control-lightbox--editor-link{-webkit-transition-property:color;-moz-transition-property:color;-o-transition-property:color;transition-property:color;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-lightbox--thumbnails{width:75%}.spectra-image-gallery__control-lightbox--thumbnails-wrapper{width:100%}.spectra-image-gallery__control-lightbox--thumbnails .swiper-wrapper{height:150px}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide{cursor:pointer;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;opacity:0.5;transform:scale(75%);-webkit-transition-property:opacity, transform;-moz-transition-property:opacity, transform;-o-transition-property:opacity, transform;transition-property:opacity, transform;-webkit-transition-duration:0.25s;-moz-transition-duration:0.25s;-o-transition-duration:0.25s;transition-duration:0.25s}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide-active{opacity:1;transform:scale(100%)}.spectra-image-gallery__control-lightbox--thumbnails .swiper-slide img{border-radius:3px}.spectra-image-gallery__control-lightbox--count{position:absolute;z-index:999}.spectra-image-gallery__control-lightbox--close{position:absolute;cursor:pointer;padding:0;background-color:transparent;border:none;outline:0;line-height:0;z-index:999;transition:transform 500ms}.spectra-image-gallery__control-lightbox--close:hover,.spectra-image-gallery__control-lightbox--close:focus,.spectra-image-gallery__control-lightbox--close:focus-visible{background-color:transparent;transform:scale(1.25)}.spectra-image-gallery__iso-ref-wrapper{-ms-overflow-style:none;scrollbar-width:none}.spectra-image-gallery__iso-ref-wrapper::-webkit-scrollbar{display:none}@media (max-width: 976px){.spectra-image-gallery__layout--grid-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-tab-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-tab-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-tab-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-tab-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-tab-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-tab-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-tab-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-tab-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-tab-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-tab-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}@media (max-width: 767px){.spectra-image-gallery__layout--grid-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--grid-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--isogrid-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--isogrid-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--isogrid-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--isogrid-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--isogrid-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--isogrid-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--isogrid-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--isogrid-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--masonry-col-mob-1 .spectra-image-gallery__media-wrapper--isotope{width:100%}.spectra-image-gallery__layout--masonry-col-mob-2 .spectra-image-gallery__media-wrapper--isotope{width:50%}.spectra-image-gallery__layout--masonry-col-mob-3 .spectra-image-gallery__media-wrapper--isotope{width:33.33%}.spectra-image-gallery__layout--masonry-col-mob-4 .spectra-image-gallery__media-wrapper--isotope{width:25%}.spectra-image-gallery__layout--masonry-col-mob-5 .spectra-image-gallery__media-wrapper--isotope{width:20%}.spectra-image-gallery__layout--masonry-col-mob-6 .spectra-image-gallery__media-wrapper--isotope{width:16.66%}.spectra-image-gallery__layout--masonry-col-mob-7 .spectra-image-gallery__media-wrapper--isotope{width:14.28%}.spectra-image-gallery__layout--masonry-col-mob-8 .spectra-image-gallery__media-wrapper--isotope{width:12.5%}.spectra-image-gallery__layout--tiled-col-mob-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-2 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-3 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-4 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5{grid-template-columns:repeat(5, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-5 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6{grid-template-columns:repeat(6, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-6 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-7 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8{grid-template-columns:repeat(8, minmax(0, 1fr))}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper{position:relative;min-width:0}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--wide{grid-column:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--tall{grid-row:span 2}.spectra-image-gallery__layout--tiled-col-mob-8 .spectra-image-gallery__media-wrapper--focus{grid-row:span 2;grid-column:span 2}}.entry-content .wp-block-uagb-image-gallery .uagb-image-gallery__link{text-decoration:none}body .wp-block-post-content>.wp-block-uagb-image-gallery+.spectra-image-gallery__control-lightbox{margin-block-start:0}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
PK�][?��3��Aultimate-addons-for-gutenberg/assets/css/blocks/buttons-child.cssnu�[���.uagb-buttons__outer-wrap .uagb-buttons-repeater{display:flex;justify-content:center;align-items:center;transition:box-shadow 0.2s ease}.uagb-buttons__outer-wrap .uagb-buttons-repeater a.uagb-button__link{display:flex;justify-content:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon{font-size:inherit;display:flex;align-items:center}.uagb-buttons__outer-wrap .uagb-buttons-repeater .uagb-button__icon svg{fill:currentColor;width:inherit;height:inherit}
PK�][aT�Dultimate-addons-for-gutenberg/assets/css/blocks/marketing-button.cssnu�[���.wp-block-uagb-marketing-button{display:-webkit-box;display:-ms-flexbox;display:flex}.wp-block-uagb-marketing-button p:empty{display:none}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button p.uagb-marketing-btn__prefix{margin-bottom:0}.wp-block-uagb-marketing-button .uagb-marketing-btn__link{z-index:1;display:inline-block;position:relative;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.wp-block-uagb-marketing-button .uagb-marketing-btn__link.wp-block-button__link{width:auto}.wp-block-uagb-marketing-button svg{fill:currentColor;width:20px;height:20px;z-index:1;vertical-align:middle}.wp-block-uagb-marketing-button .uagb-marketing-btn__title,.wp-block-uagb-marketing-button svg{display:inline;vertical-align:middle}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__link{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-left,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__link{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-right,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__title-wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__link{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__link{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__prefix{text-align:center}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-left .uagb-marketing-btn__prefix{text-align:left}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-right .uagb-marketing-btn__prefix{text-align:right}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after svg{order:2}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-full .uagb-marketing-btn__wrap{width:100%}.wp-block-uagb-marketing-button.uagb-marketing-btn__align-center .uagb-marketing-btn__wrap,.wp-block-uagb-marketing-button.uagb-marketing-btn__align-text-center .uagb-marketing-btn__title-wrap{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wp-block-uagb-marketing-button .uagb-marketing-btn__title-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:self-end;-ms-flex-align:self-end;align-items:self-end}.wp-block-uagb-marketing-button.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap{order:2}.entry-content .wp-block-uagb-marketing-button .uagb-marketing-btn__link{text-decoration:none;display:inline-block}
PK�][��B*;ultimate-addons-for-gutenberg/assets/css/blocks/columns.cssnu�[���[class*="uagb-columns__columns-"],.uagb-columns__inner-wrap{position:relative;margin-left:auto;margin-right:auto;z-index:2;display:flex;flex-wrap:nowrap;width:100%}.uagb-columns__wrap{position:relative;margin-left:auto;margin-right:auto}.uagb-columns__wrap .uagb-columns__overlay,.uagb-columns__wrap .uagb-columns__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute}.uagb-columns__wrap .uagb-columns__video-wrap{overflow:hidden;z-index:0;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.uagb-columns__wrap .uagb-columns__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.uagb-columns__wrap .uagb-columns__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr;z-index:1}.uagb-columns__wrap .uagb-columns__shape-top{top:-3px}.uagb-columns__wrap .uagb-columns__shape-bottom{bottom:-3px}.uagb-columns__wrap .uagb-columns__shape[data-negative="false"].uagb-columns__shape-bottom,.uagb-columns__wrap .uagb-columns__shape[data-negative="true"].uagb-columns__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-columns__wrap .uagb-columns__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-columns__wrap .uagb-columns__shape .uagb-columns__shape-fill{fill:#333;-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-columns__wrap .uagb-columns__shape.uagb-columns__shape-above-content{z-index:9;pointer-events:none}.uagb-columns__valign-center .uagb-column__wrap,.uagb-columns__valign-middle .uagb-column__wrap{display:flex;flex-direction:column;justify-content:center}.uagb-columns__valign-top .uagb-column__wrap{-webkit-box-align:flex-start;-webkit-align-items:flex-start;-ms-flex-align:flex-start;align-items:flex-start}.uagb-columns__valign-bottom .uagb-column__wrap{display:flex;flex-direction:column;justify-content:flex-end}.uagb-columns__columns-1>.uagb-column__wrap{width:100%}.uagb-columns__columns-2>.uagb-column__wrap{width:50%}.uagb-columns__columns-3>.uagb-column__wrap{width:33.33%}.uagb-columns__columns-4>.uagb-column__wrap{width:25%}.uagb-columns__columns-5>.uagb-column__wrap{width:20%}.uagb-columns__columns-6>.uagb-column__wrap{width:16.66%}.uagb-columns__gap-nogap>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:0}.uagb-columns__gap-default>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:10px}.uagb-columns__gap-narrow>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:5px}.uagb-columns__gap-extended>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:15px}.uagb-columns__gap-wide>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:20px}.uagb-columns__gap-wider>.uagb-columns__inner-wrap>.wp-block[data-type="uagb/column"]{padding:30px}@media (max-width: 976px){.uagb-columns__stack-tablet>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-tablet>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-tablet{display:block}.uagb-columns__stack-tablet>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-tablet.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media (max-width: 767px){.uagb-columns__stack-mobile>.uagb-columns__columns-1>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-2>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-3>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-4>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-5>.uagb-column__wrap,.uagb-columns__stack-mobile>.uagb-columns__columns-6>.uagb-column__wrap{width:100% !important}.uagb-columns__stack-mobile{display:block}.uagb-columns__stack-mobile>.uagb-columns__inner-wrap{display:block}.uagb-columns__stack-mobile.uagb-columns__reverse-mobile .uagb-columns__inner-wrap,.uagb-columns__stack-mobile.uagb-columns__reverse-tablet .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__stack-tablet.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:column-reverse}.uagb-columns__reverse-mobile .uagb-columns__inner-wrap{display:flex;flex-direction:row-reverse}}@media (min-width: 768px) and (max-width: 1024px){.wp-block-uagb-columns.uagb-columns__wrap.uagb-columns__background-image{background-attachment:scroll}}@media (max-width: 449px){.uagb-columns__wrap .uagb-column__wrap.uagb-column__background-image{background-attachment:scroll !important}}
PK�][G�d�>ultimate-addons-for-gutenberg/assets/css/blocks/extensions.cssnu�[���.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
PK�][��K���=ultimate-addons-for-gutenberg/assets/css/blocks/faq-child.cssnu�[���.wp-block-uagb-faq-child .uagb-faq-questions-button{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-faq-icon-wrap{display:flex;align-items:center}.wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question{width:100%;margin-top:0;margin-bottom:0}.wp-block-uagb-faq-child .uagb-icon svg,.wp-block-uagb-faq-child .uagb-icon-active svg{width:15px;height:15px;font-size:15px}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon{display:none;width:0;padding:0;height:0;margin:0}.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:flex;width:auto;height:auto}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item .uagb-icon,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap.uagb-faq-item.uagb-faq-item-active .uagb-icon-active,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item span.uagb-icon-active.uagb-faq-icon-wrap,.uagb-faq-layout-grid .uagb-faq-child__outer-wrap .uagb-faq-item.uagb-faq-item-active .uagb-icon-active{display:none}
PK�][�U���=ultimate-addons-for-gutenberg/assets/css/blocks/separator.cssnu�[���.wp-block-uagb-separator{text-align:center;box-sizing:border-box;line-height:0}.wp-block-uagb-separator__inner{display:inline-block}.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner{border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner{display:flex;justify-content:center;align-items:center;margin:0 auto}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after,.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after{display:block;content:"";border-bottom:0;flex-grow:1;border-top-color:#333;border-top-style:solid;-webkit-mask:var(--my-background-image);-webkit-mask-size:38px 100%;-webkit-mask-repeat:repeat-x}.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg{font-size:30px;color:#333;fill:#333;width:30px;height:30px;line-height:30px;max-width:none}.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag{word-break:initial;margin:0}
PK�][�y��Bultimate-addons-for-gutenberg/assets/css/blocks/call-to-action.cssnu�[���.uagb-cta__outer-wrap .uagb-cta__content,.uagb-cta__outer-wrap a.uagb-cta__block-link span,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__button-wrapper,.uagb-cta__outer-wrap .uagb-cta-typeof-button,.uagb-cta__outer-wrap .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__outer-wrap .uagb-cta-with-svg{display:inline-block}.uagb-cta__outer-wrap{display:flex;justify-content:space-between}.wp-block-uagb-call-to-action .uagb-cta__buttons{display:inline-flex}.wp-block-uagb-call-to-action .wp-block-button__link,.wp-block-uagb-call-to-action .ast-outline-button{fill:currentColor;justify-content:center}.uagb-cta__button-link-wrapper,.uagb-cta-second__button{display:inline-flex;align-items:center;word-break:keep-all;width:100%}.uagb-cta__title{padding:0;margin:0;display:block}.uagb-cta__content-right .uagb-cta__button-wrapper{float:right}.uagb-cta__link-wrapper.uagb-cta__block-link-style:empty{display:none}a.uagb-cta__block-link,.entry .entry-content a.uagb-cta__block-link,a.uagb-cta__block-link-wrap,.entry .entry-content a.uagb-cta__block-link-wrap{text-decoration:none}a.uagb-cta__block-link:hover,.entry .entry-content a.uagb-cta__block-link:hover,a.uagb-cta__block-link-wrap:hover,.entry .entry-content a.uagb-cta__block-link-wrap:hover .entry .entry-content a.uagb-cta__block-link:hover{color:inherit}.uagb-cta__content-right{text-align:right;justify-content:flex-end}.uagb-cta__left-right-wrap{width:100%;word-break:break-word}.uagb-cta__icon-position-below-title .uagb-cta__left-right-wrap{display:block;min-width:100%;width:100%}.uagb-cta__icon-position-left .uagb-cta__left-right-wrap,.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{display:flex}.uagb-cta__icon-position-right .uagb-cta__left-right-wrap{justify-content:flex-end}.uagb-cta__block-link-icon-after{margin-left:5px;margin-right:0}.uagb-cta__block-link-icon-before{margin-left:0;margin-right:5px}.uagb-cta__block-link-icon,.uagb-cta__block svg{transition:all 200ms linear}.uagb-cta__block{position:relative}.uagb-cta-typeof-button{line-height:1;text-align:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link,.uagb-cta__content-right.uagb-cta__button-valign-middle .uagb-cta__left-right-wrap{display:flex;align-items:center}.uagb-cta__content-right .uagb-cta__button-link-wrapper,.uagb-cta__content-right .uagb-cta-second__button .uagb-cta__content-right .uagb-cta__block-link{justify-content:center}.uagb-cta__link-wrapper a{box-shadow:none;text-decoration:none}.uagb-cta__block,.uagb-cta__content,.uagb-cta__left-right-wrap{z-index:1}.uagb-cta__block-link{cursor:pointer}.uagb-cta__content-right .uagb-cta__block-link{float:right;padding:10px 14px}a.uagb-cta__block-link-wrap{color:inherit}.uagb-cta__content p:empty{display:none}.uagb-cta__button-type-none .uagb-cta__content{width:100%}.uagb-cta-with-svg{height:14px;width:14px;line-height:14px;vertical-align:middle}.uagb-cta__block svg{display:block;height:inherit;width:inherit}.uagb-cta__button-link-wrapper svg{width:20px;height:20px}.uagb-cta__align-button-after{margin-left:5px}.uagb-cta__align-button-before{margin-right:5px}.uagb-cta__block-link i{font-style:normal}a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.wp-block-uagb-call-to-action{position:relative}.wp-block-uagb-call-to-action a.uagb-cta__link-to-all{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}@media only screen and (max-width: 976px){.uagb-cta__content-stacked-tablet,.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-tablet .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-tablet.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}@media screen and (max-width: 767px){.uagb-cta__content-stacked-mobile,.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap{flex-direction:column;text-align:center}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__button-wrapper{float:none;margin:0 auto}.uagb-cta__content-stacked-mobile .uagb-cta__left-right-wrap .uagb-cta__content{margin-left:0;margin-right:0}.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content,.uagb-cta__content-stacked-mobile.uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper{width:100% !important}}.uagb-cta__desc p:last-child{margin-bottom:0}
PK�][I�"BA/A/8ultimate-addons-for-gutenberg/assets/css/blocks/post.cssnu�[���.uagb-post-grid{margin:0 auto;position:relative}.uagb-post-grid:not(.is-grid) .uagb-post__inner-wrap{background-clip:content-box !important}.uagb-post-grid .uagb-post__inner-wrap{transition:box-shadow 0.2s ease;overflow:hidden}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.default{margin:5px 5px 5px 0}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted{background:#444;color:#fff;border-radius:2px;flex-direction:row;align-items:flex-end;padding:6px 8px;line-height:1;margin-right:5px;margin-bottom:20px}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted a{color:#fff}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__taxonomy a{text-decoration:none;color:inherit}.uagb-post-grid .uagb-post__inner-wrap .uagb-post__image .uagb-post__image-equal-height{display:block;height:0;padding-bottom:66.67%;overflow:hidden}.uagb-post-grid .uagb-post__load-more-wrap{width:100%;position:absolute;bottom:-30px}.uagb-post-grid .uagb-post__load-more-wrap .uagb-post-pagination-button{cursor:pointer}.uagb-post-grid .uagb-post__load-more-wrap a{color:inherit}.uagb-post-grid.is-grid article{float:left;display:inline-block}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:nth-last-child(2){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__text:last-child{position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(3){padding-bottom:100px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__text:nth-last-child(2){position:absolute;bottom:20px}.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-top .uagb-post__inner-wrap,.uagb-post-grid.is-grid.uagb-equal_height_inline-read-more-buttons.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a{display:block;height:0;overflow:hidden;position:relative}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-2-3{padding-bottom:66%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-9-16{padding-bottom:56.25%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-2{padding-bottom:50%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-1-1{padding-bottom:67%}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit{padding-bottom:0;height:auto}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a.uagb-image-ratio-inherit img{position:unset !important}.uagb-post-grid.is-grid.uagb-post__image-position-top .uagb-post__image a[class^="uagb-image-ratio-"]>img{position:absolute;height:100%}.uagb-post-grid.uagb-post__items.is-masonry{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.uagb-post-grid.uagb-post__items.is-carousel{display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;width:100%;visibility:hidden}.uagb-post-grid.is-grid .uagb-post__inner-wrap{height:max-content}.uagb-post-grid.is-grid.uagb-post__equal-height .uagb-post__inner-wrap{height:auto}.uagb-post-grid.is-masonry .uagb-post__inner-wrap{height:auto}.uagb-post-grid .uagb-post__author span,.uagb-post-grid .uagb-post__comment span,.uagb-post-grid .uagb-post__taxonomy span,.uagb-post-grid .uagb-post__date span{font-size:inherit;line-height:inherit;width:inherit;height:inherit;margin-right:4px;vertical-align:bottom}.uagb-post-grid.uagb-post__columns-8:not(.is-grid) article{width:12.5%}.uagb-post-grid.uagb-post__columns-7:not(.is-grid) article{width:14.28%}.uagb-post-grid.uagb-post__columns-6:not(.is-grid) article{width:16.66%}.uagb-post-grid.uagb-post__columns-5:not(.is-grid) article{width:20%}.uagb-post-grid.uagb-post__columns-4:not(.is-grid) article{width:25%}.uagb-post-grid.uagb-post__columns-3:not(.is-grid) article{width:33.33%}.uagb-post-grid.uagb-post__columns-2:not(.is-grid) article{width:50%}.uagb-post-grid.uagb-post__columns-1:not(.is-grid) article{width:100%}@media only screen and (max-width: 600px){.uagb-post-grid div[class*="columns"].is-grid{grid-template-columns:1fr}}.uagb-post-grid .uagb-post__image img{display:block;width:100%;height:auto;max-width:100%}.uagb-post-grid .uagb-post__title{margin-top:0;margin-bottom:0;word-break:break-word}.uagb-post-grid .uagb-post__title a{color:inherit;box-shadow:none;transition:0.3s ease;text-decoration:none}.uagb-post-grid .uagb-post__title a:hover{text-decoration:none}.uagb-post-grid .uagb-post__title a:focus{text-decoration:none}.uagb-post-grid .uagb-post__title a:active{text-decoration:none}.uagb-post-grid .uagb-post-grid-byline>*{margin-right:10px}.uagb-post-grid .uagb-post-grid-byline,.uagb-post-grid .uagb-post__taxonomy{text-transform:capitalize;font-size:14px;font-weight:500;line-height:23px;text-decoration:none}.uagb-post-grid .uagb-post-grid-byline a,.uagb-post-grid .uagb-post-grid-byline a:focus,.uagb-post-grid .uagb-post-grid-byline a:active{color:inherit;font-size:inherit;text-decoration:none}.uagb-post-grid .uagb-post__title a,.uagb-post-grid .uagb-post__title a:focus,.uagb-post-grid .uagb-post__title a:active{color:inherit;font-size:inherit}.uagb-post-grid .uagb-post__author,.uagb-post-grid .uagb-post__date,.uagb-post-grid .uagb-post__comment{display:inline-block;word-break:break-all}.uagb-post-grid .uagb-post__author:not(:last-child)::after,.uagb-post-grid .uagb-post__date:not(:last-child)::after,.uagb-post-grid .uagb-post__comment:not(:last-child)::after{content:"\B7";vertical-align:middle;align-self:center;margin:0 5px;line-height:1}.uagb-post-grid .uagb-post__comment,.uagb-post-grid .uagb-post__taxonomy{display:inline-block}.uagb-post-grid .uagb-post__author a{box-shadow:none}.uagb-post-grid .uagb-post__author a:hover{color:inherit;box-shadow:0 -1px 0 inset}.uagb-post-grid .uagb-post__excerpt{word-break:break-word}.uagb-post-grid .uagb-post__inner-wrap p:last-of-type{margin-bottom:0}.uagb-post-grid .uagb-post__cta{border:none;display:inline-block;background:none}.uagb-post-grid .uagb-post__cta .ast-outline-button{display:inline-flex}.uagb-post-grid .uagb-post__excerpt p{color:inherit}.is-grid.uagb-post__items{display:grid}.wp-block-uagb-post-grid .uagb-post-pagination-wrap{grid-column:1 / -1}.uagb-post__image-position-background .uagb-post__link-complete-box{position:absolute;top:0;left:0;width:100%;height:100%;z-index:11}.uagb-post__image-position-background.uagb-post__image-enabled .uagb-post__text{color:#fff}.uagb-post__image-position-background .uagb-post__text{opacity:1;position:relative;z-index:10;overflow:hidden}.uagb-post__image-position-background .uagb-post__inner-wrap{position:relative;width:100%}.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted,.uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__taxonomy.default{position:relative;z-index:999}.uagb-post__image-position-background .uagb-post__image img{position:absolute;width:auto;height:auto;min-width:100%;max-width:none;left:50%;top:50%;transform:translate(-50%, -50%);min-height:100%}.uagb-post__image-position-background .uagb-post__image{background-size:cover;background-repeat:no-repeat;background-position:center;overflow:hidden;text-align:center;position:absolute;left:0;top:0;width:100%;height:100%;z-index:2}.uagb-post__image-position-background .uagb-post__image::before{content:"";position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;background-color:rgba(255,255,255,0.5)}.uagb-slick-carousel .is-carousel{padding:0}.uagb-slick-carousel ul.slick-dots{transform:unset;position:relative;padding:unset}.uagb-slick-carousel .slick-prev:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel .slick-next:not(:hover):not(:active):not(.has-background),.uagb-slick-carousel ul.slick-dots li button:not(:hover):not(:active):not(.has-background){background-color:unset}.uagb-post-grid[data-equal-height="yes"] .uagb-post__inner-wrap{display:inline-block;height:100%}.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:-45px;right:auto}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:-45px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:auto;right:-45px}.uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:25px;z-index:1}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-prev{left:auto;right:25px}.uagb-post__arrow-inside.uagb-post-grid .slick-next{right:25px}[dir="rtl"] .uagb-post__arrow-inside.uagb-post-grid .slick-next{left:25px;right:auto}.uagb-post-grid.is-grid article,.uagb-post-grid.is-masonry article,.uagb-post-grid.is-carousel article{box-sizing:border-box}@media (max-width: 976px){.uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:15px;z-index:1}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:auto;right:15px}.uagb-post__arrow-outside.uagb-post-grid .slick-next{right:15px}[dir="rtl"] .uagb-post__arrow-outside.uagb-post-grid .slick-next{left:15px;right:auto}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-tablet-8 article{width:12.5%}}@media (max-width: 767px){:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-1 article{width:100%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-2 article{width:50%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-3 article{width:33.33%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-4 article{width:25%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-5 article{width:20%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-6 article{width:16.66%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-7 article{width:14.28%}:not(.is-grid).uagb-post-grid.uagb-post__columns-mobile-8 article{width:12.5%}}.entry .entry-content .uagb-post-grid a{text-decoration:none}.uagb-post-pagination-wrap{display:flex;width:100%;flex-wrap:wrap}.uagb-post-pagination-wrap a.page-numbers,.uagb-post-pagination-wrap span.page-numbers.current{padding:5px 10px;margin:0;display:flex;margin-right:4px;margin-bottom:5px}.uagb-post-grid .uagb-post-inf-loader{margin:0 auto;min-height:58px;line-height:58px;width:160px;text-align:center}.uagb-post-grid .uagb-post-inf-loader div{width:18px;height:18px;background-color:#0085ba;-webkit-border-radius:100%;border-radius:100%;display:inline-block;-webkit-animation:sk-bouncedelay 1.4s infinite ease-in-out both;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-1{-webkit-animation-delay:-0.32s;animation-delay:-0.32s}.uagb-post-grid .uagb-post-inf-loader .uagb-post-loader-2{-webkit-animation-delay:-0.16s;animation-delay:-0.16s}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-next{right:0}.wp-site-blocks .uagb-post__arrow-outside.uagb-post-grid .slick-prev{left:0}@-webkit-keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes sk-bouncedelay{0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);transform:scale(1)}}
PK�][�s���	�	9ultimate-addons-for-gutenberg/assets/css/blocks/modal.cssnu�[���body.hide-scroll{overflow:hidden}body .uagb-modal-popup-wrap .wp-block{max-width:none !important;margin:0 !important}.uagb-modal-popup{visibility:hidden;position:fixed}.uagb-modal-popup.active{top:0;bottom:0;justify-content:center;align-items:center;background:rgba(0,0,0,0.7);left:0;right:0;display:flex;visibility:visible}.uagb-modal-popup.active .uagb-modal-popup-close{opacity:1;display:flex;align-items:center;position:absolute;text-align:center;cursor:pointer;fill:#fff}.uagb-modal-popup.active .uagb-modal-popup-close svg{-webkit-transition-property:filter, transform;-moz-transition-property:filter, transform;-o-transition-property:filter, transform;transition-property:filter, transform;-webkit-transition-duration:250ms;-moz-transition-duration:250ms;-o-transition-duration:250ms;transition-duration:250ms}.uagb-modal-popup.active .uagb-modal-popup-close:focus svg{transform:scale(1.2)}.uagb-modal-popup .uagb-modal-popup-close{display:none;border:none;background:transparent;padding:0}.uagb-modal-popup .uagb-modal-popup-content{padding:35px 35px;overflow-x:hidden;overflow-y:overlay;height:100%}.uagb-modal-popup .uagb-modal-popup-wrap{display:flex;flex-direction:column;justify-content:flex-start;width:700px;height:450px;max-width:100%;box-sizing:border-box;background:#fff;color:#333;position:relative}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar{width:5px}.uagb-modal-popup .uagb-modal-popup-wrap .uagb-modal-popup-content::-webkit-scrollbar-thumb{box-shadow:inset 0 0 6px rgba(0,0,0,0.3);border-radius:100px}.wp-block-uagb-modal{width:100%}.entry .entry-content a.uagb-modal-button-link{text-decoration:inherit;align-items:center}.entry .entry-content a.uagb-modal-button-link:hover{color:inherit}.uagb-modal-trigger:not(img){display:flex}.uagb-modal-trigger:not(img) svg{font-size:30px;width:30px;height:30px;line-height:30px;cursor:pointer}img.uagb-modal-trigger{cursor:pointer;height:auto;max-width:100%}div.uagb-spectra-button-wrapper{line-height:1}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger{display:inline-flex;align-items:center;cursor:pointer}div.uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg{fill:currentColor;font-style:normal;vertical-align:top;width:15px;height:15px;font-size:15px}.block-editor-block-popover.components-popover{z-index:99999999}.uagb-effect-default .uagb-modal-popup-wrap{opacity:0}.uagb-effect-default.active .uagb-modal-popup-wrap{opacity:1;-webkit-transition:all 0.3s;transition:all 0.3s}
PK�][�CQ�VVAultimate-addons-for-gutenberg/assets/css/blocks/taxonomy-list.cssnu�[���.uagb-tax-not-available{padding:10px;border:1px solid;text-align:center}.uagb-layout-list .uagb-list-wrap{margin-left:10px}.uagb-taxonomy__outer-wrap{margin-bottom:20px}ul.uagb-taxonomy-list-children{margin-bottom:0}.uagb-tax-link h1,.uagb-tax-link h2,.uagb-tax-link h3,.uagb-tax-link h4,.uagb-tax-link h5,.uagb-tax-link h6{margin-top:unset}
PK��][�4��9ultimate-addons-for-gutenberg/assets/css/blocks/image.cssnu�[���.wp-block-uagb-image{display:flex}.wp-block-uagb-image__figure{position:relative;display:flex;flex-direction:column;max-width:100%;height:auto;margin:0}.wp-block-uagb-image__figure img{height:auto;display:flex;max-width:100%;transition:box-shadow 0.2s ease}.wp-block-uagb-image__figure>a{display:inline-block}.wp-block-uagb-image__figure figcaption{text-align:center;margin-top:0.5em;margin-bottom:1em}.wp-block-uagb-image .components-placeholder.block-editor-media-placeholder .components-placeholder__instructions{align-self:center}.wp-block-uagb-image--align-left{text-align:left}.wp-block-uagb-image--align-right{text-align:right}.wp-block-uagb-image--align-center{text-align:center}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:100vw;height:auto}.wp-block-uagb-image--align-full .wp-block-uagb-image__figure img{height:auto;width:100% !important}.wp-block-uagb-image--align-wide .wp-block-uagb-image__figure img{height:auto;width:100%}.wp-block-uagb-image--layout-overlay__color-wrapper{position:absolute;left:0;top:0;right:0;bottom:0;opacity:0.2;background:rgba(0,0,0,0.5);transition:opacity 0.35s ease-in-out}.wp-block-uagb-image--layout-overlay-link{position:absolute;left:0;right:0;bottom:0;top:0}.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{opacity:1}.wp-block-uagb-image--layout-overlay__inner{position:absolute;left:15px;right:15px;bottom:15px;top:15px;display:flex;align-items:center;justify-content:center;flex-direction:column;border-color:#fff;transition:0.35s ease-in-out}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.top-center,.wp-block-uagb-image--layout-overlay__inner.top-right{justify-content:flex-start}.wp-block-uagb-image--layout-overlay__inner.bottom-left,.wp-block-uagb-image--layout-overlay__inner.bottom-center,.wp-block-uagb-image--layout-overlay__inner.bottom-right{justify-content:flex-end}.wp-block-uagb-image--layout-overlay__inner.top-left,.wp-block-uagb-image--layout-overlay__inner.center-left,.wp-block-uagb-image--layout-overlay__inner.bottom-left{align-items:flex-start}.wp-block-uagb-image--layout-overlay__inner.top-right,.wp-block-uagb-image--layout-overlay__inner.center-right,.wp-block-uagb-image--layout-overlay__inner.bottom-right{align-items:flex-end}.wp-block-uagb-image--layout-overlay__inner .uagb-image-heading{color:#fff;transition:transform 0.35s, opacity 0.35s ease-in-out;transform:translate3d(0, 24px, 0);margin:0;line-height:1em}.wp-block-uagb-image--layout-overlay__inner .uagb-image-separator{width:30%;border-top-width:2px;border-top-color:#fff;border-top-style:solid;margin-bottom:10px;opacity:0;transition:transform 0.4s, opacity 0.4s ease-in-out;transform:translate3d(0, 30px, 0)}.wp-block-uagb-image--layout-overlay__inner .uagb-image-caption{opacity:0;overflow:visible;color:#fff;transition:transform 0.45s, opacity 0.45s ease-in-out;transform:translate3d(0, 35px, 0)}.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-heading,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-separator,.wp-block-uagb-image--layout-overlay__inner:hover .uagb-image-caption{opacity:1;transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-zoomin .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:scale(1.05)}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure .wp-block-uagb-image--layout-overlay__color-wrapper{width:calc(100% + 40px) !important;max-width:none !important;transform:translate3d(-40px, 0, 0);transition:transform 0.35s ease-in-out}.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover img,.wp-block-uagb-image--effect-slide .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper{transform:translate3d(0, 0, 0)}.wp-block-uagb-image--effect-grayscale img{filter:grayscale(0%);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-grayscale:hover img{filter:grayscale(100%)}.wp-block-uagb-image--effect-blur img{filter:blur(0);transition:0.35s ease-in-out}.wp-block-uagb-image--effect-blur:hover img{filter:blur(3px)}
PK��][�]�hh=ultimate-addons-for-gutenberg/assets/css/blocks/countdown.cssnu�[���.wp-block-uagb-countdown{display:flex;justify-content:center;text-align:center}.wp-block-uagb-countdown .wp-block-uagb-countdown__box{transition:box-shadow 0.2s ease}.wp-block-uagb-countdown__box{position:relative;display:flex;flex-direction:column;width:155px;height:155px;aspect-ratio:1;justify-content:center}@media (max-width: 976px){.wp-block-uagb-countdown__box{width:100px;height:100px}}@media (max-width: 767px){.wp-block-uagb-countdown__box{width:65px;height:65px}}.wp-block-uagb-countdown__time{font-size:52px}@media (max-width: 976px){.wp-block-uagb-countdown__time{font-size:32px}}.wp-block-uagb-countdown__label{font-size:14px}@media (max-width: 976px){.wp-block-uagb-countdown__label{font-size:12px}}.wp-block-uagb-countdown .wp-block-uagb-countdown-innerblocks{text-align:initial}html:not([dir="rtl"]) .wp-block-uagb-countdown__box:not(:last-child){margin-right:38px}html:not([dir="rtl"]) .wp-block-uagb-countdown__box:not(:last-child) .wp-block-uagb-countdown__time::after{position:absolute;right:0}html:not([dir="rtl"]) .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds .wp-block-uagb-countdown__time-seconds::after{display:none}html:not([dir="rtl"]) .wp-block-uagb-countdown>.wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-seconds:not(:last-child){margin-right:unset}.wp-block-uagb-countdown-innerblocks{display:none}html[dir="rtl"] .wp-block-uagb-countdown__box:not(:first-child){margin-right:38px}html[dir="rtl"] .wp-block-uagb-countdown__box:not(:first-child) .wp-block-uagb-countdown__time::before{position:absolute;right:0}body[class*="astra"] .wp-block-uagb-countdown{line-height:normal}
PK��][5},���=ultimate-addons-for-gutenberg/assets/css/blocks/wp-search.cssnu�[���.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap{width:100%;min-height:20px}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button .uagb-search-submit{border:none;border-radius:0;color:#fff}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input-button svg{fill:currentColor}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input .uagb-wp-search-icon-wrap{display:flex;align-items:center}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap.uagb-layout-input svg{fill:currentColor;opacity:0.6}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container{display:flex;overflow:hidden;max-width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input{width:100%}.wp-block-uagb-wp-search.uagb-wp-search__outer-wrap .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input::-webkit-input-placeholder{overflow:unset}
PK��][��/�=ultimate-addons-for-gutenberg/assets/css/blocks/icon-list.cssnu�[���.uagb-icon-list__wrap{display:flex;align-items:flex-start;justify-content:flex-start}.wp-block-uagb-icon-list-child{padding:0;transition:all 0.2s;display:inline-flex;color:#3a3a3a;align-items:center;text-decoration:none;box-shadow:none}.wp-block-uagb-icon-list-child span.uagb-icon-list__source-wrap{display:block;align-items:center}.uagb-icon-list__source-wrap svg{display:block}.uagb-icon-list__source-image{width:40px}.uagb-icon-list__outer-wrap .uagb-icon-list__content-wrap{color:#3a3a3a;display:flex;align-items:center}
PK��][ش���@ultimate-addons-for-gutenberg/assets/css/blocks/social-share.cssnu�[���.uagb-social-share__outer-wrap,.uagb-social-share__wrap{display:flex;align-items:center;justify-content:center}.uagb-social-share__layout-vertical.uagb-social-share__outer-wrap,.uagb-social-share__layout-vertical .uagb-social-share__wrap{flex-direction:column}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-top:0 !important}.uagb-social-share__layout-vertical .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-bottom:0 !important}.uagb-social-share__outer-wrap a.uagb-button__link:focus{box-shadow:none}.uagb-social-share__outer-wrap .uagb-ss__wrapper{padding:0;margin-left:5px;margin-right:5px;transition:all 0.2s;display:inline-flex;text-align:center}.uagb-social-share__outer-wrap .uagb-ss__source-wrap{display:inline-block}.uagb-social-share__outer-wrap .uagb-ss__link{color:#3a3a3a;display:inline-table;line-height:0;cursor:pointer}.uagb-social-share__outer-wrap .uagb-ss__source-icon{font-size:40px;width:40px;height:40px}.uagb-social-share__outer-wrap .uagb-ss__source-image{width:40px}@media (max-width: 976px){.uagb-social-share__layout-horizontal .uagb-ss__wrapper{margin-left:0;margin-right:0}}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:first-child{margin-left:0 !important}.uagb-social-share__layout-horizontal .wp-block-uagb-social-share-child.uagb-ss-repeater.uagb-ss__wrapper:last-child{margin-right:0 !important}
PK��][�|!��>ultimate-addons-for-gutenberg/assets/css/blocks/google-map.cssnu�[���.uagb-google-map__wrap{display:flex}.uagb-google-map__wrap .uagb-google-map__iframe{width:100%;box-shadow:none;border:none;padding:0;margin:0}
PK��][x�O�^>^>>ultimate-addons-for-gutenberg/assets/css/blocks/blockquote.cssnu�[���.wp-block-uagb-blockquote{padding:0;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box}.wp-block-uagb-blockquote .uagb-blockquote__content,.wp-block-uagb-blockquote cite.uagb-blockquote__author{display:block;font-style:normal}.wp-block-uagb-blockquote cite.uagb-blockquote__author,.wp-block-uagb-blockquote .uagb-blockquote__author{-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation blockquote.uagb-blockquote{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;quotes:none;border-left:0 none;border-right:0 none;border-top:0 none;border-bottom:0 none;font-style:normal}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap{display:inline-flex;float:unset}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap .uagb-blockquote__icon{padding:0;margin-right:0;margin-bottom:0}.wp-block-uagb-blockquote .uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon-wrap{display:inline-block;float:left}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote .uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote .uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;text-align:center;margin:0 auto;-ms-flex-item-align:center;align-self:center}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.wp-block-uagb-blockquote .uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid 0.5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:0.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation blockquote.uagb-blockquote{vertical-align:baseline;padding:0;margin:0;background:transparent;border:0 none;outline:0;font-size:100%;font-style:normal;quotes:none}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon{position:relative;display:inline-block;z-index:1;padding:10px;margin-right:10px;border-radius:100%;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg{display:inherit;width:inherit;height:inherit}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2.uagb-blockquote__align-right .uagb-blockquote__icon{display:inline-block;float:right}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left}.wp-block-uagb-blockquote.uagb-blockquote__skin-quotation.uagb-blockquote__style-style_1 .uagb-blockquote__icon{display:inline-flex;float:unset}.wp-block-uagb-blockquote blockquote.uagb-blockquote{padding:0;margin:0}.wp-block-uagb-blockquote .uagb-blockquote__style-style_2 .uagb-blockquote__icon{display:inline-block;float:left;text-align:left}.wp-block-uagb-blockquote .uagb-blockquote__separator-parent{display:-webkit-box;display:-ms-flexbox;display:-webkit-flex;display:-moz-box;display:flex;justify-content:flex-start;-js-display:flex;-webkit-box-pack:start;-ms-flex-pack:start;-webkit-justify-content:flex-start;-moz-box-pack:start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote footer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;justify-content:space-between;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify}.wp-block-uagb-blockquote .uagb-blockquote a{-webkit-box-shadow:none;box-shadow:none;text-decoration:none}.wp-block-uagb-blockquote .uagb-blockquote a.uagb-blockquote__tweet-button{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;align-self:center;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;background-color:transparent;color:#1da1f2;line-height:1;transition:0.2s;-webkit-transition:0.2s;-o-transition:0.2s;-webkit-align-self:flex-end;-ms-flex-item-align:center}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{align-self:center;vertical-align:middle;width:15px;height:15px;fill:#fff}.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote a.uagb-blockquote__tweet-button svg{font-style:normal}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button svg{margin-right:0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon a.uagb-blockquote__tweet-button{padding:8px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-text a.uagb-blockquote__tweet-button{padding:10px 14px}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button{padding:10px 0}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button,.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button{background-color:#1da1f2;border-radius:100em;color:#fff}.wp-block-uagb-blockquote.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{position:absolute;top:50%;left:-0.8em;border:solid 0.5em transparent;border-right-color:#1da1f2;transform:translateY(-50%) scale(1, 0.65);transition:0.2s;content:"";-webkit-transform:translateY(-50%) scale(1, 0.65);-ms-transform:translateY(-50%) scale(1, 0.65);-webkit-transition:0.2s;-o-transition:0.2s}.wp-block-uagb-blockquote.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{right:-0.8em;left:auto;transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-webkit-transform:translateY(-50%) scale(1, 0.65) rotate(180deg);-ms-transform:translateY(-50%) scale(1, 0.65) rotate(180deg)}.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-center .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote footer{display:block;text-align:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote.uagb-blockquote__align-center a.uagb-blockquote__tweet-button{display:block;align-self:center;margin:0 auto;text-align:center;-ms-flex-item-align:center}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet.uagb-blockquote__align-right .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote footer{flex-direction:row-reverse}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;flex-direction:row;align-self:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap img{width:50px;height:50px;border-radius:100%;object-fit:cover}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-end;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;-webkit-justify-content:flex-end;-moz-box-pack:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-left .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{justify-content:flex-start;-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;-webkit-justify-content:flex-start;-moz-box-pack:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:unset;-webkit-box-pack:unset;-ms-flex-pack:unset;-webkit-justify-content:unset;-moz-box-pack:unset}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote.uagb-blockquote__align-center.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap{justify-content:center;-webkit-box-pack:center;-ms-flex-pack:center;-webkit-justify-content:center;-moz-box-pack:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{flex-direction:column;width:100%;-webkit-flex-direction:column;-ms-flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top .uagb-blockquote__author{width:inherit}.wp-block-uagb-blockquote.uagb-blockquote__with-tweet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{width:auto}.wp-block-uagb-blockquote.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:right;align-items:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__align-center .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top{text-align:center;align-items:center}.wp-block-uagb-blockquote .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;justify-content:flex-end}@media only screen and (max-width: 976px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-tablet.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}}@media screen and (max-width: 767px){.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author{width:100%}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;align-items:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__with-tweet .uagb-blockquote footer{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;align-self:flex-start;-ms-flex-item-align:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-start;align-self:flex-start}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__with-tweet .uagb-blockquote footer,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right a.uagb-blockquote__tweet-button{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-right.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before,.wp-block-uagb-blockquote.uagb-blockquote__stack-img-mobile.uagb-blockquote__align-left.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button::before{top:-0.8em;right:auto;left:50%;transform:translate(-50%, 10%) scale(1, 0.85) rotate(90deg);-webkit-transform:translateX(-50%) scale(1, 0.85) rotate(90deg);-ms-transform:translateX(-50%) scale(1, 0.85) rotate(90deg)}.wp-block-uagb-blockquote .uagb-blockquote__align-right.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap{-ms-flex-item-align:flex-end;align-self:flex-end}.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-mobile .uagb-blockquote__author-wrap,.wp-block-uagb-blockquote .uagb-blockquote__align-left.uagb-blockquote__stack-img-tablet .uagb-blockquote__author{-ms-flex-item-align:flex-start;align-self:flex-start}}
PK��][��;5��6ultimate-addons-for-gutenberg/assets/css/slick.min.cssnu�[���.uagb-slick-carousel .slick-list,.uagb-slick-carousel .slick-slider,.uagb-slick-carousel .slick-track,.uagb-slick-carousel.slick-slider{position:relative;display:block}.uagb-slick-carousel .slick-loading .slick-slide,.uagb-slick-carousel .slick-loading .slick-track{visibility:hidden}.uagb-slick-carousel.slick-slider{box-sizing:border-box;-webkit-tap-highlight-color:transparent}.uagb-slick-carousel .slick-list{overflow:hidden;margin:0;padding:0}.uagb-slick-carousel .slick-list:focus{outline:0}.uagb-slick-carousel .slick-list.dragging{cursor:pointer;cursor:hand}.uagb-slick-carousel.slick-slider .slick-list,.uagb-slick-carousel.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.uagb-slick-carousel .slick-track{top:0;left:0}.uagb-slick-carousel .slick-track::after,.uagb-slick-carousel .slick-track::before{display:table;content:""}.uagb-slick-carousel .slick-track::after{clear:both}.uagb-slick-carousel .slick-initialized .slick-slide{display:block}.uagb-slick-carousel .slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .uagb-slick-carousel .slick-slide{float:right}.uagb-slick-carousel .slick-slide img{display:block}.uagb-slick-carousel .slick-slide.slick-loading img{display:none}.uagb-slick-carousel .slick-slide.dragging img{pointer-events:none}.uagb-slick-carousel.slick-initialized .slick-slide{display:block}.uagb-slick-carousel .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.uagb-slick-carousel .slick-arrow.slick-hidden{display:none}.uagb-slick-carousel{padding:30px}.uagb-slick-carousel .slick-next,.uagb-slick-carousel .slick-prev{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:auto;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:#aaa;border-color:#aaa;outline:0;background:0 0}.uagb-slick-carousel .slick-next::before,.uagb-slick-carousel .slick-prev::before{font-size:35px;line-height:1;opacity:.75;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.uagb-slick-carousel .slick-next::before,.uagb-slick-carousel .slick-prev::before,[dir=rtl] .uagb-slick-carousel .slick-next::before,[dir=rtl] .uagb-slick-carousel .slick-prev::before{content:"";font-size:0;line-height:0}.uagb-slick-carousel .slick-prev{left:-45px;z-index:1;border-radius:0}[dir=rtl] .uagb-tm__arrow-outside.uagb-slick-carousel .slick-prev{left:auto;right:-45px}.uagb-slick-carousel button.slick-arrow{padding:7px}.uagb-slick-carousel .slick-next i,.uagb-slick-carousel .slick-next i:focus,.uagb-slick-carousel .slick-next i:hover,.uagb-slick-carousel .slick-prev i,.uagb-slick-carousel .slick-prev i:focus,.uagb-slick-carousel .slick-prev i:hover{font-size:20px;width:1.5em;height:1.5em;line-height:26px;text-align:center;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.uagb-slick-carousel ul.slick-dots{padding-top:0;display:block;position:absolute;margin:0;left:0;width:100%;bottom:0;-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);text-align:center}.uagb-slick-carousel ul.slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0;padding:0;cursor:pointer}.uagb-slick-carousel ul.slick-dots li.slick-active button::before{opacity:.75;color:#000f}.uagb-slick-carousel ul.slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:0;background:0 0}.uagb-slick-carousel ul.slick-dots li button::before{font-family:none;font-size:30px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media only screen and (max-width:976px){.uagb-slick-carousel{padding:0}}PK��][���:33;ultimate-addons-for-gutenberg/assets/css/visibility.min.cssnu�[���footer.site-footer,header.site-header{display:none}PK��][M��w�V�V0ultimate-addons-for-gutenberg/assets/css/aos.cssnu�[���[data-aos][data-aos][data-aos-duration="50"],body[data-aos-duration="50"] [data-aos]{transition-duration:50ms}[data-aos][data-aos][data-aos-delay="100"],[data-aos][data-aos][data-aos-delay="1000"],[data-aos][data-aos][data-aos-delay="1050"],[data-aos][data-aos][data-aos-delay="1100"],[data-aos][data-aos][data-aos-delay="1150"],[data-aos][data-aos][data-aos-delay="1200"],[data-aos][data-aos][data-aos-delay="1250"],[data-aos][data-aos][data-aos-delay="1300"],[data-aos][data-aos][data-aos-delay="1350"],[data-aos][data-aos][data-aos-delay="1400"],[data-aos][data-aos][data-aos-delay="1450"],[data-aos][data-aos][data-aos-delay="150"],[data-aos][data-aos][data-aos-delay="1500"],[data-aos][data-aos][data-aos-delay="1550"],[data-aos][data-aos][data-aos-delay="1600"],[data-aos][data-aos][data-aos-delay="1650"],[data-aos][data-aos][data-aos-delay="1700"],[data-aos][data-aos][data-aos-delay="1750"],[data-aos][data-aos][data-aos-delay="1800"],[data-aos][data-aos][data-aos-delay="1850"],[data-aos][data-aos][data-aos-delay="1900"],[data-aos][data-aos][data-aos-delay="1950"],[data-aos][data-aos][data-aos-delay="200"],[data-aos][data-aos][data-aos-delay="2000"],[data-aos][data-aos][data-aos-delay="2050"],[data-aos][data-aos][data-aos-delay="2100"],[data-aos][data-aos][data-aos-delay="2150"],[data-aos][data-aos][data-aos-delay="2200"],[data-aos][data-aos][data-aos-delay="2250"],[data-aos][data-aos][data-aos-delay="2300"],[data-aos][data-aos][data-aos-delay="2350"],[data-aos][data-aos][data-aos-delay="2400"],[data-aos][data-aos][data-aos-delay="2450"],[data-aos][data-aos][data-aos-delay="250"],[data-aos][data-aos][data-aos-delay="2500"],[data-aos][data-aos][data-aos-delay="2550"],[data-aos][data-aos][data-aos-delay="2600"],[data-aos][data-aos][data-aos-delay="2650"],[data-aos][data-aos][data-aos-delay="2700"],[data-aos][data-aos][data-aos-delay="2750"],[data-aos][data-aos][data-aos-delay="2800"],[data-aos][data-aos][data-aos-delay="2850"],[data-aos][data-aos][data-aos-delay="2900"],[data-aos][data-aos][data-aos-delay="2950"],[data-aos][data-aos][data-aos-delay="300"],[data-aos][data-aos][data-aos-delay="3000"],[data-aos][data-aos][data-aos-delay="350"],[data-aos][data-aos][data-aos-delay="400"],[data-aos][data-aos][data-aos-delay="450"],[data-aos][data-aos][data-aos-delay="50"],[data-aos][data-aos][data-aos-delay="500"],[data-aos][data-aos][data-aos-delay="550"],[data-aos][data-aos][data-aos-delay="600"],[data-aos][data-aos][data-aos-delay="650"],[data-aos][data-aos][data-aos-delay="700"],[data-aos][data-aos][data-aos-delay="750"],[data-aos][data-aos][data-aos-delay="800"],[data-aos][data-aos][data-aos-delay="850"],[data-aos][data-aos][data-aos-delay="900"],[data-aos][data-aos][data-aos-delay="950"],body[data-aos-delay="100"] [data-aos],body[data-aos-delay="1000"] [data-aos],body[data-aos-delay="1050"] [data-aos],body[data-aos-delay="1100"] [data-aos],body[data-aos-delay="1150"] [data-aos],body[data-aos-delay="1200"] [data-aos],body[data-aos-delay="1250"] [data-aos],body[data-aos-delay="1300"] [data-aos],body[data-aos-delay="1350"] [data-aos],body[data-aos-delay="1400"] [data-aos],body[data-aos-delay="1450"] [data-aos],body[data-aos-delay="150"] [data-aos],body[data-aos-delay="1500"] [data-aos],body[data-aos-delay="1550"] [data-aos],body[data-aos-delay="1600"] [data-aos],body[data-aos-delay="1650"] [data-aos],body[data-aos-delay="1700"] [data-aos],body[data-aos-delay="1750"] [data-aos],body[data-aos-delay="1800"] [data-aos],body[data-aos-delay="1850"] [data-aos],body[data-aos-delay="1900"] [data-aos],body[data-aos-delay="1950"] [data-aos],body[data-aos-delay="200"] [data-aos],body[data-aos-delay="2000"] [data-aos],body[data-aos-delay="2050"] [data-aos],body[data-aos-delay="2100"] [data-aos],body[data-aos-delay="2150"] [data-aos],body[data-aos-delay="2200"] [data-aos],body[data-aos-delay="2250"] [data-aos],body[data-aos-delay="2300"] [data-aos],body[data-aos-delay="2350"] [data-aos],body[data-aos-delay="2400"] [data-aos],body[data-aos-delay="2450"] [data-aos],body[data-aos-delay="250"] [data-aos],body[data-aos-delay="2500"] [data-aos],body[data-aos-delay="2550"] [data-aos],body[data-aos-delay="2600"] [data-aos],body[data-aos-delay="2650"] [data-aos],body[data-aos-delay="2700"] [data-aos],body[data-aos-delay="2750"] [data-aos],body[data-aos-delay="2800"] [data-aos],body[data-aos-delay="2850"] [data-aos],body[data-aos-delay="2900"] [data-aos],body[data-aos-delay="2950"] [data-aos],body[data-aos-delay="300"] [data-aos],body[data-aos-delay="3000"] [data-aos],body[data-aos-delay="350"] [data-aos],body[data-aos-delay="400"] [data-aos],body[data-aos-delay="450"] [data-aos],body[data-aos-delay="50"] [data-aos],body[data-aos-delay="500"] [data-aos],body[data-aos-delay="550"] [data-aos],body[data-aos-delay="600"] [data-aos],body[data-aos-delay="650"] [data-aos],body[data-aos-delay="700"] [data-aos],body[data-aos-delay="750"] [data-aos],body[data-aos-delay="800"] [data-aos],body[data-aos-delay="850"] [data-aos],body[data-aos-delay="900"] [data-aos],body[data-aos-delay="950"] [data-aos]{transition-delay:0}[data-aos][data-aos][data-aos-delay="50"].aos-animate,body[data-aos-delay="50"] [data-aos].aos-animate{transition-delay:50ms}[data-aos][data-aos][data-aos-duration="100"],body[data-aos-duration="100"] [data-aos]{transition-duration:.1s}[data-aos][data-aos][data-aos-delay="100"].aos-animate,body[data-aos-delay="100"] [data-aos].aos-animate{transition-delay:0.1s}[data-aos][data-aos][data-aos-duration="150"],body[data-aos-duration="150"] [data-aos]{transition-duration:.15s}[data-aos][data-aos][data-aos-delay="150"].aos-animate,body[data-aos-delay="150"] [data-aos].aos-animate{transition-delay:0.15s}[data-aos][data-aos][data-aos-duration="200"],body[data-aos-duration="200"] [data-aos]{transition-duration:.2s}[data-aos][data-aos][data-aos-delay="200"].aos-animate,body[data-aos-delay="200"] [data-aos].aos-animate{transition-delay:0.2s}[data-aos][data-aos][data-aos-duration="250"],body[data-aos-duration="250"] [data-aos]{transition-duration:.25s}[data-aos][data-aos][data-aos-delay="250"].aos-animate,body[data-aos-delay="250"] [data-aos].aos-animate{transition-delay:0.25s}[data-aos][data-aos][data-aos-duration="300"],body[data-aos-duration="300"] [data-aos]{transition-duration:.3s}[data-aos][data-aos][data-aos-delay="300"].aos-animate,body[data-aos-delay="300"] [data-aos].aos-animate{transition-delay:0.3s}[data-aos][data-aos][data-aos-duration="350"],body[data-aos-duration="350"] [data-aos]{transition-duration:.35s}[data-aos][data-aos][data-aos-delay="350"].aos-animate,body[data-aos-delay="350"] [data-aos].aos-animate{transition-delay:0.35s}[data-aos][data-aos][data-aos-duration="400"],body[data-aos-duration="400"] [data-aos]{transition-duration:.4s}[data-aos][data-aos][data-aos-delay="400"].aos-animate,body[data-aos-delay="400"] [data-aos].aos-animate{transition-delay:0.4s}[data-aos][data-aos][data-aos-duration="450"],body[data-aos-duration="450"] [data-aos]{transition-duration:.45s}[data-aos][data-aos][data-aos-delay="450"].aos-animate,body[data-aos-delay="450"] [data-aos].aos-animate{transition-delay:0.45s}[data-aos][data-aos][data-aos-duration="500"],body[data-aos-duration="500"] [data-aos]{transition-duration:.5s}[data-aos][data-aos][data-aos-delay="500"].aos-animate,body[data-aos-delay="500"] [data-aos].aos-animate{transition-delay:0.5s}[data-aos][data-aos][data-aos-duration="550"],body[data-aos-duration="550"] [data-aos]{transition-duration:.55s}[data-aos][data-aos][data-aos-delay="550"].aos-animate,body[data-aos-delay="550"] [data-aos].aos-animate{transition-delay:0.55s}[data-aos][data-aos][data-aos-duration="600"],body[data-aos-duration="600"] [data-aos]{transition-duration:.6s}[data-aos][data-aos][data-aos-delay="600"].aos-animate,body[data-aos-delay="600"] [data-aos].aos-animate{transition-delay:0.6s}[data-aos][data-aos][data-aos-duration="650"],body[data-aos-duration="650"] [data-aos]{transition-duration:.65s}[data-aos][data-aos][data-aos-delay="650"].aos-animate,body[data-aos-delay="650"] [data-aos].aos-animate{transition-delay:0.65s}[data-aos][data-aos][data-aos-duration="700"],body[data-aos-duration="700"] [data-aos]{transition-duration:.7s}[data-aos][data-aos][data-aos-delay="700"].aos-animate,body[data-aos-delay="700"] [data-aos].aos-animate{transition-delay:0.7s}[data-aos][data-aos][data-aos-duration="750"],body[data-aos-duration="750"] [data-aos]{transition-duration:.75s}[data-aos][data-aos][data-aos-delay="750"].aos-animate,body[data-aos-delay="750"] [data-aos].aos-animate{transition-delay:0.75s}[data-aos][data-aos][data-aos-duration="800"],body[data-aos-duration="800"] [data-aos]{transition-duration:.8s}[data-aos][data-aos][data-aos-delay="800"].aos-animate,body[data-aos-delay="800"] [data-aos].aos-animate{transition-delay:0.8s}[data-aos][data-aos][data-aos-duration="850"],body[data-aos-duration="850"] [data-aos]{transition-duration:.85s}[data-aos][data-aos][data-aos-delay="850"].aos-animate,body[data-aos-delay="850"] [data-aos].aos-animate{transition-delay:0.85s}[data-aos][data-aos][data-aos-duration="900"],body[data-aos-duration="900"] [data-aos]{transition-duration:.9s}[data-aos][data-aos][data-aos-delay="900"].aos-animate,body[data-aos-delay="900"] [data-aos].aos-animate{transition-delay:0.9s}[data-aos][data-aos][data-aos-duration="950"],body[data-aos-duration="950"] [data-aos]{transition-duration:.95s}[data-aos][data-aos][data-aos-delay="950"].aos-animate,body[data-aos-delay="950"] [data-aos].aos-animate{transition-delay:0.95s}[data-aos][data-aos][data-aos-duration="1000"],body[data-aos-duration="1000"] [data-aos]{transition-duration:1s}[data-aos][data-aos][data-aos-delay="1000"].aos-animate,body[data-aos-delay="1000"] [data-aos].aos-animate{transition-delay:1s}[data-aos][data-aos][data-aos-duration="1050"],body[data-aos-duration="1050"] [data-aos]{transition-duration:1.05s}[data-aos][data-aos][data-aos-delay="1050"].aos-animate,body[data-aos-delay="1050"] [data-aos].aos-animate{transition-delay:1.05s}[data-aos][data-aos][data-aos-duration="1100"],body[data-aos-duration="1100"] [data-aos]{transition-duration:1.1s}[data-aos][data-aos][data-aos-delay="1100"].aos-animate,body[data-aos-delay="1100"] [data-aos].aos-animate{transition-delay:1.1s}[data-aos][data-aos][data-aos-duration="1150"],body[data-aos-duration="1150"] [data-aos]{transition-duration:1.15s}[data-aos][data-aos][data-aos-delay="1150"].aos-animate,body[data-aos-delay="1150"] [data-aos].aos-animate{transition-delay:1.15s}[data-aos][data-aos][data-aos-duration="1200"],body[data-aos-duration="1200"] [data-aos]{transition-duration:1.2s}[data-aos][data-aos][data-aos-delay="1200"].aos-animate,body[data-aos-delay="1200"] [data-aos].aos-animate{transition-delay:1.2s}[data-aos][data-aos][data-aos-duration="1250"],body[data-aos-duration="1250"] [data-aos]{transition-duration:1.25s}[data-aos][data-aos][data-aos-delay="1250"].aos-animate,body[data-aos-delay="1250"] [data-aos].aos-animate{transition-delay:1.25s}[data-aos][data-aos][data-aos-duration="1300"],body[data-aos-duration="1300"] [data-aos]{transition-duration:1.3s}[data-aos][data-aos][data-aos-delay="1300"].aos-animate,body[data-aos-delay="1300"] [data-aos].aos-animate{transition-delay:1.3s}[data-aos][data-aos][data-aos-duration="1350"],body[data-aos-duration="1350"] [data-aos]{transition-duration:1.35s}[data-aos][data-aos][data-aos-delay="1350"].aos-animate,body[data-aos-delay="1350"] [data-aos].aos-animate{transition-delay:1.35s}[data-aos][data-aos][data-aos-duration="1400"],body[data-aos-duration="1400"] [data-aos]{transition-duration:1.4s}[data-aos][data-aos][data-aos-delay="1400"].aos-animate,body[data-aos-delay="1400"] [data-aos].aos-animate{transition-delay:1.4s}[data-aos][data-aos][data-aos-duration="1450"],body[data-aos-duration="1450"] [data-aos]{transition-duration:1.45s}[data-aos][data-aos][data-aos-delay="1450"].aos-animate,body[data-aos-delay="1450"] [data-aos].aos-animate{transition-delay:1.45s}[data-aos][data-aos][data-aos-duration="1500"],body[data-aos-duration="1500"] [data-aos]{transition-duration:1.5s}[data-aos][data-aos][data-aos-delay="1500"].aos-animate,body[data-aos-delay="1500"] [data-aos].aos-animate{transition-delay:1.5s}[data-aos][data-aos][data-aos-duration="1550"],body[data-aos-duration="1550"] [data-aos]{transition-duration:1.55s}[data-aos][data-aos][data-aos-delay="1550"].aos-animate,body[data-aos-delay="1550"] [data-aos].aos-animate{transition-delay:1.55s}[data-aos][data-aos][data-aos-duration="1600"],body[data-aos-duration="1600"] [data-aos]{transition-duration:1.6s}[data-aos][data-aos][data-aos-delay="1600"].aos-animate,body[data-aos-delay="1600"] [data-aos].aos-animate{transition-delay:1.6s}[data-aos][data-aos][data-aos-duration="1650"],body[data-aos-duration="1650"] [data-aos]{transition-duration:1.65s}[data-aos][data-aos][data-aos-delay="1650"].aos-animate,body[data-aos-delay="1650"] [data-aos].aos-animate{transition-delay:1.65s}[data-aos][data-aos][data-aos-duration="1700"],body[data-aos-duration="1700"] [data-aos]{transition-duration:1.7s}[data-aos][data-aos][data-aos-delay="1700"].aos-animate,body[data-aos-delay="1700"] [data-aos].aos-animate{transition-delay:1.7s}[data-aos][data-aos][data-aos-duration="1750"],body[data-aos-duration="1750"] [data-aos]{transition-duration:1.75s}[data-aos][data-aos][data-aos-delay="1750"].aos-animate,body[data-aos-delay="1750"] [data-aos].aos-animate{transition-delay:1.75s}[data-aos][data-aos][data-aos-duration="1800"],body[data-aos-duration="1800"] [data-aos]{transition-duration:1.8s}[data-aos][data-aos][data-aos-delay="1800"].aos-animate,body[data-aos-delay="1800"] [data-aos].aos-animate{transition-delay:1.8s}[data-aos][data-aos][data-aos-duration="1850"],body[data-aos-duration="1850"] [data-aos]{transition-duration:1.85s}[data-aos][data-aos][data-aos-delay="1850"].aos-animate,body[data-aos-delay="1850"] [data-aos].aos-animate{transition-delay:1.85s}[data-aos][data-aos][data-aos-duration="1900"],body[data-aos-duration="1900"] [data-aos]{transition-duration:1.9s}[data-aos][data-aos][data-aos-delay="1900"].aos-animate,body[data-aos-delay="1900"] [data-aos].aos-animate{transition-delay:1.9s}[data-aos][data-aos][data-aos-duration="1950"],body[data-aos-duration="1950"] [data-aos]{transition-duration:1.95s}[data-aos][data-aos][data-aos-delay="1950"].aos-animate,body[data-aos-delay="1950"] [data-aos].aos-animate{transition-delay:1.95s}[data-aos][data-aos][data-aos-duration="2000"],body[data-aos-duration="2000"] [data-aos]{transition-duration:2s}[data-aos][data-aos][data-aos-delay="2000"].aos-animate,body[data-aos-delay="2000"] [data-aos].aos-animate{transition-delay:2s}[data-aos][data-aos][data-aos-duration="2050"],body[data-aos-duration="2050"] [data-aos]{transition-duration:2.05s}[data-aos][data-aos][data-aos-delay="2050"].aos-animate,body[data-aos-delay="2050"] [data-aos].aos-animate{transition-delay:2.05s}[data-aos][data-aos][data-aos-duration="2100"],body[data-aos-duration="2100"] [data-aos]{transition-duration:2.1s}[data-aos][data-aos][data-aos-delay="2100"].aos-animate,body[data-aos-delay="2100"] [data-aos].aos-animate{transition-delay:2.1s}[data-aos][data-aos][data-aos-duration="2150"],body[data-aos-duration="2150"] [data-aos]{transition-duration:2.15s}[data-aos][data-aos][data-aos-delay="2150"].aos-animate,body[data-aos-delay="2150"] [data-aos].aos-animate{transition-delay:2.15s}[data-aos][data-aos][data-aos-duration="2200"],body[data-aos-duration="2200"] [data-aos]{transition-duration:2.2s}[data-aos][data-aos][data-aos-delay="2200"].aos-animate,body[data-aos-delay="2200"] [data-aos].aos-animate{transition-delay:2.2s}[data-aos][data-aos][data-aos-duration="2250"],body[data-aos-duration="2250"] [data-aos]{transition-duration:2.25s}[data-aos][data-aos][data-aos-delay="2250"].aos-animate,body[data-aos-delay="2250"] [data-aos].aos-animate{transition-delay:2.25s}[data-aos][data-aos][data-aos-duration="2300"],body[data-aos-duration="2300"] [data-aos]{transition-duration:2.3s}[data-aos][data-aos][data-aos-delay="2300"].aos-animate,body[data-aos-delay="2300"] [data-aos].aos-animate{transition-delay:2.3s}[data-aos][data-aos][data-aos-duration="2350"],body[data-aos-duration="2350"] [data-aos]{transition-duration:2.35s}[data-aos][data-aos][data-aos-delay="2350"].aos-animate,body[data-aos-delay="2350"] [data-aos].aos-animate{transition-delay:2.35s}[data-aos][data-aos][data-aos-duration="2400"],body[data-aos-duration="2400"] [data-aos]{transition-duration:2.4s}[data-aos][data-aos][data-aos-delay="2400"].aos-animate,body[data-aos-delay="2400"] [data-aos].aos-animate{transition-delay:2.4s}[data-aos][data-aos][data-aos-duration="2450"],body[data-aos-duration="2450"] [data-aos]{transition-duration:2.45s}[data-aos][data-aos][data-aos-delay="2450"].aos-animate,body[data-aos-delay="2450"] [data-aos].aos-animate{transition-delay:2.45s}[data-aos][data-aos][data-aos-duration="2500"],body[data-aos-duration="2500"] [data-aos]{transition-duration:2.5s}[data-aos][data-aos][data-aos-delay="2500"].aos-animate,body[data-aos-delay="2500"] [data-aos].aos-animate{transition-delay:2.5s}[data-aos][data-aos][data-aos-duration="2550"],body[data-aos-duration="2550"] [data-aos]{transition-duration:2.55s}[data-aos][data-aos][data-aos-delay="2550"].aos-animate,body[data-aos-delay="2550"] [data-aos].aos-animate{transition-delay:2.55s}[data-aos][data-aos][data-aos-duration="2600"],body[data-aos-duration="2600"] [data-aos]{transition-duration:2.6s}[data-aos][data-aos][data-aos-delay="2600"].aos-animate,body[data-aos-delay="2600"] [data-aos].aos-animate{transition-delay:2.6s}[data-aos][data-aos][data-aos-duration="2650"],body[data-aos-duration="2650"] [data-aos]{transition-duration:2.65s}[data-aos][data-aos][data-aos-delay="2650"].aos-animate,body[data-aos-delay="2650"] [data-aos].aos-animate{transition-delay:2.65s}[data-aos][data-aos][data-aos-duration="2700"],body[data-aos-duration="2700"] [data-aos]{transition-duration:2.7s}[data-aos][data-aos][data-aos-delay="2700"].aos-animate,body[data-aos-delay="2700"] [data-aos].aos-animate{transition-delay:2.7s}[data-aos][data-aos][data-aos-duration="2750"],body[data-aos-duration="2750"] [data-aos]{transition-duration:2.75s}[data-aos][data-aos][data-aos-delay="2750"].aos-animate,body[data-aos-delay="2750"] [data-aos].aos-animate{transition-delay:2.75s}[data-aos][data-aos][data-aos-duration="2800"],body[data-aos-duration="2800"] [data-aos]{transition-duration:2.8s}[data-aos][data-aos][data-aos-delay="2800"].aos-animate,body[data-aos-delay="2800"] [data-aos].aos-animate{transition-delay:2.8s}[data-aos][data-aos][data-aos-duration="2850"],body[data-aos-duration="2850"] [data-aos]{transition-duration:2.85s}[data-aos][data-aos][data-aos-delay="2850"].aos-animate,body[data-aos-delay="2850"] [data-aos].aos-animate{transition-delay:2.85s}[data-aos][data-aos][data-aos-duration="2900"],body[data-aos-duration="2900"] [data-aos]{transition-duration:2.9s}[data-aos][data-aos][data-aos-delay="2900"].aos-animate,body[data-aos-delay="2900"] [data-aos].aos-animate{transition-delay:2.9s}[data-aos][data-aos][data-aos-duration="2950"],body[data-aos-duration="2950"] [data-aos]{transition-duration:2.95s}[data-aos][data-aos][data-aos-delay="2950"].aos-animate,body[data-aos-delay="2950"] [data-aos].aos-animate{transition-delay:2.95s}[data-aos][data-aos][data-aos-duration="3000"],body[data-aos-duration="3000"] [data-aos]{transition-duration:3s}[data-aos][data-aos][data-aos-delay="3000"].aos-animate,body[data-aos-delay="3000"] [data-aos].aos-animate{transition-delay:3s}[data-aos][data-aos][data-aos-easing=linear],body[data-aos-easing=linear] [data-aos]{transition-timing-function:cubic-bezier(0.25,0.25,0.75,0.75)}[data-aos][data-aos][data-aos-easing=ease],body[data-aos-easing=ease] [data-aos]{transition-timing-function:ease}[data-aos][data-aos][data-aos-easing=ease-in],body[data-aos-easing=ease-in] [data-aos]{transition-timing-function:ease-in}[data-aos][data-aos][data-aos-easing=ease-out],body[data-aos-easing=ease-out] [data-aos]{transition-timing-function:ease-out}[data-aos][data-aos][data-aos-easing=ease-in-out],body[data-aos-easing=ease-in-out] [data-aos]{transition-timing-function:ease-in-out}[data-aos^=fade][data-aos^=fade],[data-aos^=zoom][data-aos^=zoom]{opacity:0;transition-property:opacity,transform}[data-aos^=fade][data-aos^=fade].aos-animate{opacity:1;transform:translateZ(0)}[data-aos=fade-up]{transform:translate3d(0,100px,0)}[data-aos=fade-down]{transform:translate3d(0,-100px,0)}[data-aos=fade-right]{transform:translate3d(-100px,0,0)}[data-aos=fade-left]{transform:translate3d(100px,0,0)}[data-aos^=zoom][data-aos^=zoom].aos-animate{opacity:1;transform:translateZ(0) scale(1)}[data-aos=zoom-in]{transform:scale(.6)}[data-aos=zoom-in-up]{transform:translate3d(0,100px,0) scale(.6)}[data-aos=zoom-in-down]{transform:translate3d(0,-100px,0) scale(.6)}[data-aos=zoom-in-right]{transform:translate3d(-100px,0,0) scale(.6)}[data-aos=zoom-in-left]{transform:translate3d(100px,0,0) scale(.6)}[data-aos=zoom-out]{transform:scale(1.2)}[data-aos=zoom-out-up]{transform:translate3d(0,100px,0) scale(1.2)}[data-aos=zoom-out-down]{transform:translate3d(0,-100px,0) scale(1.2)}[data-aos=zoom-out-right]{transform:translate3d(-100px,0,0) scale(1.2)}[data-aos=zoom-out-left]{transform:translate3d(100px,0,0) scale(1.2)}[data-aos^=slide][data-aos^=slide]{transition-property:transform}[data-aos^=slide][data-aos^=slide].aos-animate{transform:translateZ(0)}[data-aos=slide-up]{transform:translate3d(0,100%,0)}[data-aos=slide-down]{transform:translate3d(0,-100%,0)}[data-aos=slide-right]{transform:translate3d(-100%,0,0)}[data-aos=slide-left]{transform:translate3d(100%,0,0)}[data-aos^=flip][data-aos^=flip]{backface-visibility:hidden;transition-property:transform}[data-aos=flip-left]{transform:perspective(2500px) rotateY(-100deg)}[data-aos=flip-left].aos-animate,[data-aos=flip-right].aos-animate{transform:perspective(2500px) rotateY(0)}[data-aos=flip-right]{transform:perspective(2500px) rotateY(100deg)}[data-aos=flip-up]{transform:perspective(2500px) rotateX(-100deg)}[data-aos=flip-down].aos-animate,[data-aos=flip-up].aos-animate{transform:perspective(2500px) rotateX(0)}[data-aos=flip-down]{transform:perspective(2500px) rotateX(100deg)}PK��][���d6d6Aultimate-addons-for-gutenberg/assets/images/upsell/bannerLogo.svgnu�[���<svg width="80" height="64" viewBox="0 0 80 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_9521_95001)">
<path d="M8.63228 38.7599L6.31564 46.6777C6.31564 46.6777 4.91529 51.2616 4.91529 52.5465C4.91529 53.8314 5.45123 56.8179 5.45123 56.8179L1.40576 64.9093H16.412L18.0025 58.9189C18.0025 58.9189 21.7714 55.6025 22.048 54.1439H14.251C14.251 54.1439 14.3893 47.841 11.675 45.5664C11.675 45.5664 13.6459 40.3747 12.2455 38.2737C10.8452 36.1727 8.90889 36.9367 8.63228 38.7599Z" fill="#FFC2A7"/>
<path d="M14.0954 56.905C14.0781 56.905 14.0435 56.905 14.0262 56.8876C13.9052 56.8529 13.836 56.7313 13.8706 56.6098C14.0608 55.95 14.0262 54.1789 14.0262 54.1615C14.0262 54.04 14.1299 53.9185 14.251 53.9185C14.372 53.9185 14.493 54.0226 14.493 54.1442C14.493 54.2136 14.5276 56.0021 14.3201 56.7313C14.2855 56.8355 14.1991 56.905 14.0954 56.905Z" fill="#D88260"/>
<path d="M15.271 60.6728C15.1327 60.6728 15.0462 60.5687 15.0462 60.4297C15.0462 60.3256 15.1154 60.2388 15.2018 60.204C16.5503 59.8047 17.8124 58.7281 17.8297 58.7281C17.9161 58.6413 18.0717 58.6413 18.1581 58.7455C18.2446 58.8323 18.2446 58.9886 18.1408 59.0754L18.1236 59.0928C18.0717 59.1449 16.7751 60.2214 15.3228 60.6555C15.3228 60.6728 15.2883 60.6728 15.271 60.6728Z" fill="#D88260"/>
<path d="M5.9526 58.6932C5.86616 58.6932 5.77972 58.6411 5.74514 58.5716C5.67599 58.398 5.62412 58.207 5.58954 58.016C5.5031 57.6514 5.38208 57.1131 5.26107 56.9394C5.19191 56.8353 5.2092 56.6964 5.31293 56.6095C5.41666 56.5401 5.55497 56.5575 5.64141 56.6616C5.64141 56.6616 5.64141 56.6616 5.64141 56.679C5.797 56.9047 5.90073 57.3562 6.03904 57.8944C6.07362 58.0681 6.14277 58.2938 6.16006 58.3459C6.21192 58.4674 6.16006 58.6063 6.05633 58.6584C6.02175 58.6758 5.98718 58.6932 5.9526 58.6932Z" fill="#D88260"/>
<path d="M11.675 45.8093C11.5886 45.8093 11.5194 45.7572 11.4848 45.6877C11.1218 45.1147 10.6204 44.4376 10.4475 44.3681C10.3265 44.3334 10.2574 44.1945 10.292 44.0729C10.3265 43.9514 10.4648 43.8819 10.5859 43.9167C10.6031 43.9167 10.6031 43.9167 10.6204 43.934C11.0353 44.0903 11.7096 45.1321 11.8998 45.4446C11.9689 45.5488 11.9343 45.7051 11.8306 45.7745C11.7787 45.7919 11.7269 45.8093 11.675 45.8093Z" fill="#D88260"/>
<path d="M28.4447 54.3874H15.2019C15.0808 54.3874 14.9598 54.2832 14.9598 54.1443C14.9598 54.0054 15.0636 53.9012 15.2019 53.9012H28.4447C29.5684 53.9012 30.4847 52.9809 30.4847 51.8523V27.2135C30.4847 26.0849 29.5684 25.1646 28.4447 25.1646H12.332C11.2083 25.1646 10.292 26.0849 10.292 27.2135V37.0065C10.292 37.1281 10.1882 37.2322 10.0499 37.2322C9.92892 37.2322 9.8252 37.1281 9.8252 37.0065V27.2135C9.8252 25.8244 10.9489 24.6958 12.332 24.6958H28.4447C29.8278 24.6958 30.9515 25.8244 30.9515 27.2135V51.8523C30.9515 53.2587 29.8278 54.3874 28.4447 54.3874Z" fill="#000111"/>
<path d="M11.7096 36.1209V26.8662H16.4985C16.7751 26.8662 16.9998 27.0919 16.9998 27.3698V27.6302C16.9998 27.908 17.2246 28.1337 17.5012 28.1337C17.5012 28.1337 17.5012 28.1337 17.5185 28.1337H23.6904C23.967 28.1337 24.1918 27.908 24.1918 27.6302C24.1918 27.3524 24.4165 27.1267 24.6931 27.1267H28.5312V51.7134H15.0981C15.0981 51.7134 14.6313 45.9313 12.7296 44.4901C12.7296 44.4901 15.392 38.2046 11.7096 36.1209Z" fill="url(#paint0_linear_9521_95001)"/>
<path d="M19.5239 27.422C19.8581 27.422 20.129 27.1499 20.129 26.8143C20.129 26.4786 19.8581 26.2065 19.5239 26.2065C19.1898 26.2065 18.9189 26.4786 18.9189 26.8143C18.9189 27.1499 19.1898 27.422 19.5239 27.422Z" fill="#000111"/>
<path d="M21.1663 27.1266C21.3382 27.1266 21.4775 26.9866 21.4775 26.814C21.4775 26.6414 21.3382 26.5015 21.1663 26.5015C20.9945 26.5015 20.8551 26.6414 20.8551 26.814C20.8551 26.9866 20.9945 27.1266 21.1663 27.1266Z" fill="#000111"/>
<path d="M66.1678 53.9707H32.1444C32.0234 53.9707 31.9024 53.8665 31.9024 53.7276C31.9024 53.5887 32.0061 53.4845 32.1444 53.4845H66.1678C67.015 53.4845 67.7065 52.79 67.6892 51.9392C67.6892 51.453 67.4645 51.0016 67.0668 50.7064L57.8349 43.9173C57.783 43.8652 57.7484 43.7957 57.7484 43.7263V19.2264C57.7484 18.1846 56.9013 17.3338 55.8467 17.3338H21.4257C20.3884 17.3338 19.5412 18.1846 19.5412 19.2264V24.6438C19.5412 24.7653 19.4375 24.8869 19.3165 24.8869C19.1955 24.8869 19.0745 24.7827 19.0745 24.6612V19.2438C19.0745 17.9415 20.129 16.8823 21.4257 16.8823H55.864C57.1606 16.8823 58.2152 17.9415 58.2152 19.2611V43.6047L67.3607 50.3244C68.2597 50.9842 68.4499 52.2344 67.7929 53.1373C67.4126 53.6582 66.8075 53.9707 66.1678 53.9707Z" fill="#000111"/>
<path d="M57.9732 43.9696H30.8305C30.7095 43.9696 30.5885 43.8654 30.5885 43.7265C30.5885 43.5876 30.6922 43.4834 30.8305 43.4834H57.9904C58.1115 43.4834 58.2325 43.5876 58.2325 43.7265C58.2325 43.8654 58.1115 43.9696 57.9732 43.9696Z" fill="#000111"/>
<path d="M55.7775 41.8508H30.8997C30.7786 41.8508 30.6749 41.7467 30.6749 41.6078C30.6749 41.4862 30.7786 41.382 30.8997 41.382H55.5528V19.2957H21.028V24.4353C21.028 24.5568 20.9243 24.661 20.786 24.661C20.665 24.661 20.5612 24.5568 20.5612 24.4353V19.07C20.5612 18.9484 20.665 18.8442 20.786 18.8442H55.7603C55.8813 18.8442 56.0023 18.9484 56.0023 19.07V41.6251C56.0196 41.7467 55.9158 41.8508 55.7775 41.8508Z" fill="#000111"/>
<path d="M23.7769 22.6297C24.2161 22.6297 24.5722 22.2721 24.5722 21.8309C24.5722 21.3898 24.2161 21.0322 23.7769 21.0322C23.3377 21.0322 22.9816 21.3898 22.9816 21.8309C22.9816 22.2721 23.3377 22.6297 23.7769 22.6297Z" fill="url(#paint1_linear_9521_95001)"/>
<path d="M26.0071 22.6297C26.4463 22.6297 26.8023 22.2721 26.8023 21.8309C26.8023 21.3898 26.4463 21.0322 26.0071 21.0322C25.5679 21.0322 25.2118 21.3898 25.2118 21.8309C25.2118 22.2721 25.5679 22.6297 26.0071 22.6297Z" fill="url(#paint2_linear_9521_95001)"/>
<path d="M28.2546 22.6297C28.6938 22.6297 29.0498 22.2721 29.0498 21.8309C29.0498 21.3898 28.6938 21.0322 28.2546 21.0322C27.8153 21.0322 27.4593 21.3898 27.4593 21.8309C27.4593 22.2721 27.8153 22.6297 28.2546 22.6297Z" fill="url(#paint3_linear_9521_95001)"/>
<path d="M67.4126 51.1405H48.6721C48.5856 51.1405 48.5165 51.0885 48.4646 51.019L47.0988 48.6402H33.9078L32.4902 50.9148C32.4383 50.9843 32.3692 51.019 32.3 51.019H30.6749C30.5539 51.019 30.4329 50.9148 30.4329 50.7759C30.4329 50.637 30.5366 50.5328 30.6749 50.5328H32.1617L33.5794 48.2756C33.6139 48.2061 33.7004 48.1714 33.7695 48.1714H47.2198C47.3063 48.1714 47.3754 48.2235 47.4273 48.2929L48.7931 50.6717H67.3953C67.5163 50.6544 67.6373 50.7585 67.6546 50.8801C67.6719 51.0016 67.5682 51.1232 67.4472 51.1405C67.4299 51.1579 67.4299 51.1579 67.4126 51.1405Z" fill="#000111"/>
<path d="M48.6721 51.0189H32.2827C32.1617 51.0189 32.0407 50.9147 32.0407 50.7758C32.0407 50.6369 32.1444 50.5327 32.2827 50.5327H48.6721C48.7931 50.5327 48.9141 50.6369 48.9141 50.7758C48.9141 50.9147 48.7931 51.0189 48.6721 51.0189Z" fill="#000111"/>
<path d="M46.9777 31.7451H28.3582V41.5555H46.9777V31.7451Z" fill="url(#paint4_linear_9521_95001)"/>
<path d="M34.1843 31.7451C36.7909 31.7451 38.904 29.6228 38.904 27.0049C38.904 24.3869 36.7909 22.2646 34.1843 22.2646C31.5777 22.2646 29.4646 24.3869 29.4646 27.0049C29.4646 29.6228 31.5777 31.7451 34.1843 31.7451Z" fill="#FED490"/>
<path d="M33.0433 27.3868C32.0752 27.3868 31.2972 27.1785 31.0897 26.5707C30.8131 25.772 31.349 24.7649 32.663 23.5495C33.2853 22.9939 33.9423 22.473 34.6338 22.0041C34.7376 21.9347 34.8931 21.9694 34.9623 22.091C35.0315 22.1951 34.9969 22.3341 34.8931 22.4035C33.8213 23.098 31.107 25.1817 31.5392 26.4145C31.885 27.4216 35.7921 26.6923 38.4372 25.8241C38.5583 25.7894 38.6966 25.8588 38.7312 25.9804C38.7657 26.1019 38.6966 26.2408 38.5756 26.2756C37.8149 26.5187 35.0142 27.3868 33.0433 27.3868Z" fill="#000111"/>
<path d="M36.3972 31.3458C36.3454 31.3458 36.3108 31.3284 36.2589 31.311C36.1552 31.2416 36.1206 31.0853 36.207 30.9811C36.207 30.9811 36.622 30.3734 36.4837 29.8525C36.3799 29.5747 36.1552 29.349 35.8786 29.2622C34.7894 28.7933 32.2826 30.1998 31.4009 30.7901C31.2972 30.8596 31.1416 30.8249 31.0724 30.7207C31.0033 30.6165 31.0378 30.4776 31.1416 30.4081C31.2799 30.3213 34.5301 28.1683 36.0687 28.8454C36.5355 29.0538 36.8294 29.349 36.9332 29.7483C37.1406 30.4776 36.622 31.2416 36.6047 31.2763C36.5528 31.311 36.4837 31.3458 36.3972 31.3458Z" fill="#000111"/>
<path d="M43.3125 41.7466C43.1915 41.7466 43.0878 41.6424 43.0705 41.5209V31.9189C43.0705 31.7973 43.1742 31.6758 43.3125 31.6758C43.4508 31.6758 43.5546 31.78 43.5546 31.9189V41.5209C43.5373 41.6424 43.4335 41.7466 43.3125 41.7466Z" fill="#000111"/>
<path d="M50.9021 40.9304C53.862 40.9304 56.2615 38.5205 56.2615 35.5477C56.2615 32.5749 53.862 30.165 50.9021 30.165C47.9422 30.165 45.5427 32.5749 45.5427 35.5477C45.5427 38.5205 47.9422 40.9304 50.9021 40.9304Z" fill="url(#paint5_linear_9521_95001)"/>
<path d="M43.4163 31.8145C43.2952 31.8145 43.1742 31.7103 43.1742 31.5888C43.1742 31.5714 43.1742 31.5367 43.1915 31.5193L46.1305 21.1012C46.1651 20.9797 46.2861 20.9102 46.4244 20.945C46.459 20.9623 46.5109 20.9797 46.5282 21.0144L53.6682 29.0364C53.7547 29.1405 53.7374 29.2794 53.6509 29.3663C53.6164 29.3836 53.5818 29.4184 53.5472 29.4184L43.4681 31.8145C43.4508 31.8145 43.4336 31.8145 43.4163 31.8145ZM46.459 21.6395L43.7447 31.2589L53.0631 29.0537L46.459 21.6395Z" fill="#000111"/>
<path d="M68.5362 44.1428C68.2077 43.7781 67.862 43.4135 67.5508 43.0315C66.6518 42.0244 65.8392 40.9305 65.1131 39.7845C64.4735 38.6906 63.8857 37.562 63.367 36.416C62.468 34.4366 61.6382 32.214 61.6555 29.9915C62.9348 30.252 64.5599 32.0404 64.5599 32.0404C64.5599 32.0404 64.4389 28.8976 64.0586 27.1439C63.2806 23.4281 66.427 21.7439 67.7237 23.4976C67.7237 23.4976 68.8128 28.0468 69.4006 29.8526C69.9884 31.6584 69.6081 37.4057 68.882 41.191C68.6918 42.1633 68.5881 43.153 68.5362 44.1428Z" fill="#D88260"/>
<path d="M58.6127 42.9097C61.1022 43.2743 62.6063 40.1316 60.6873 38.482L60.6354 38.4299C58.8548 36.954 55.8293 35.4955 55.8293 35.4955C52.3198 36.711 49.1041 33.6723 51.3343 32.2833C51.3343 32.2833 55.3452 31.7276 57.4717 31.6408C58.7856 31.5887 61.4134 33.464 61.4134 33.464C61.4134 33.464 60.0131 30.6511 58.9585 29.1926C56.7283 26.1366 58.8893 23.289 60.8083 24.3482C60.8083 24.3482 63.6609 28.0466 64.9402 29.453C66.2196 30.8595 67.7582 36.381 69.1067 40.01C70.68 44.2293 78.9956 63.5549 79.5489 64.9266L60.7565 64.8224C60.7565 64.8224 59.0795 56.2101 57.0395 53.5883C54.9995 50.9664 50.4353 46.9901 50.2106 44.5766C49.7611 42.4235 50.4353 39.2287 53.5818 41.1907C55.0859 42.1805 57.1086 42.6666 58.6127 42.9097Z" fill="#FFC2A7"/>
<path d="M66.2196 39.177C66.1159 39.177 66.0294 39.1075 65.9948 39.0033C65.7528 38.2393 65.407 37.5274 64.9575 36.8676C64.266 35.8953 61.2924 33.6554 61.2578 33.638C61.1541 33.5686 61.1368 33.4123 61.206 33.3081C61.2751 33.2039 61.4307 33.1866 61.5345 33.256C61.6555 33.3428 64.6118 35.548 65.3379 36.5898C65.8047 37.2844 66.185 38.0483 66.4443 38.8644C66.4789 38.986 66.4098 39.1249 66.2887 39.1596C66.2542 39.177 66.2369 39.177 66.2196 39.177Z" fill="#D88260"/>
<path d="M61.8802 55.9324H61.8629C60.1341 55.7761 58.5781 54.8038 57.6618 54.2308C57.4371 54.0745 57.1951 53.9356 56.953 53.8141C56.832 53.762 56.7801 53.6231 56.832 53.5015C56.8839 53.38 57.0222 53.3279 57.1432 53.38C57.4025 53.5189 57.6618 53.6578 57.9212 53.8314C58.872 54.4218 60.2897 55.3247 61.9148 55.4636C62.0358 55.481 62.1395 55.6025 62.1222 55.724C62.0877 55.8456 62.0012 55.9324 61.8802 55.9324Z" fill="#D88260"/>
<path d="M72.3915 51.5224C72.3569 51.5224 72.3224 51.5224 72.2878 51.5051C72.1668 51.453 72.1322 51.3141 72.184 51.1925C72.8583 49.8208 72.3396 49.1089 72.3051 49.0915C72.2186 48.9874 72.2532 48.8485 72.3396 48.7616C72.4434 48.6748 72.5817 48.6922 72.6681 48.7964C72.7027 48.8311 73.4115 49.7514 72.599 51.4009C72.5644 51.4703 72.4779 51.5224 72.3915 51.5224Z" fill="#D88260"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 43C23.3137 43 26 40.3137 26 37C26 33.6863 23.3137 31 20 31C16.6863 31 14 33.6863 14 37C14 40.3137 16.6863 43 20 43ZM21.8451 38.758C22.192 38.5387 22.4 38.1717 22.4 37.7791C22.4 37.2334 22.0016 36.7589 21.4366 36.6315L19.7435 36.2113C19.5839 36.1753 19.5457 35.9785 19.6815 35.8919L21.0005 35.0506C21.6144 34.659 21.7741 33.8742 21.357 33.2977C21.3049 33.2256 21.2004 33.2069 21.1237 33.2558L18.144 35.2657C17.8037 35.4828 17.6 35.844 17.6 36.2303C17.6 36.7694 17.9936 37.2382 18.5519 37.364L20.2725 37.7905C20.4325 37.8266 20.4704 38.024 20.3339 38.1103L19.0053 38.9502C18.3896 39.3395 18.2265 40.1236 18.641 40.7018C18.6928 40.774 18.7972 40.7932 18.8741 40.7445L21.8451 38.758Z" fill="white"/>
</g>
<defs>
<linearGradient id="paint0_linear_9521_95001" x1="29.7835" y1="15.3382" x2="14.9942" y2="51.6874" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint1_linear_9521_95001" x1="22.2392" y1="19.2988" x2="24.7549" y2="23.3851" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint2_linear_9521_95001" x1="24.4733" y1="19.2995" x2="26.989" y2="23.3859" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint3_linear_9521_95001" x1="26.7086" y1="19.2995" x2="29.2243" y2="23.3859" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint4_linear_9521_95001" x1="43.9228" y1="18.8944" x2="34.8424" y2="44.4842" gradientUnits="userSpaceOnUse">
<stop stop-color="#0A6B5B"/>
<stop offset="0.78" stop-color="#005146"/>
<stop offset="0.91" stop-color="#005045"/>
</linearGradient>
<linearGradient id="paint5_linear_9521_95001" x1="55.1878" y1="20.7349" x2="48.9036" y2="42.2267" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<clipPath id="clip0_9521_95001">
<rect width="80" height="64" fill="white"/>
</clipPath>
</defs>
</svg>
PK��][|��M	7	7Cultimate-addons-for-gutenberg/assets/images/upsell/globalBanner.svgnu�[���<svg width="256" height="154" viewBox="0 0 256 154" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M31.488 70.3664L24.6272 93.8151C24.6272 93.8151 20.48 107.391 20.48 111.196C20.48 115.001 22.0672 123.846 22.0672 123.846L10.0864 147.809H54.528L59.2384 130.068C59.2384 130.068 70.4 120.246 71.2192 115.927H48.128C48.128 115.927 48.5376 97.2604 40.4992 90.5241C40.4992 90.5241 46.336 75.1487 42.1888 68.9266C38.0416 62.7045 32.3072 64.967 31.488 70.3664Z" fill="#FFC2A7"/>
<path d="M47.6673 124.103C47.6161 124.103 47.5137 124.103 47.4625 124.052C47.1041 123.949 46.8993 123.589 47.0017 123.229C47.5649 121.275 47.4625 116.03 47.4625 115.978C47.4625 115.618 47.7697 115.258 48.1281 115.258C48.4865 115.258 48.8449 115.567 48.8449 115.927C48.8449 116.132 48.9473 121.429 48.3329 123.589C48.2305 123.897 47.9745 124.103 47.6673 124.103Z" fill="#D88260"/>
<path d="M51.1488 135.262C50.7392 135.262 50.4832 134.953 50.4832 134.542C50.4832 134.233 50.688 133.976 50.944 133.873C54.9376 132.691 58.6752 129.503 58.7264 129.503C58.9824 129.245 59.4432 129.245 59.6992 129.554C59.9552 129.811 59.9552 130.274 59.648 130.531L59.5968 130.582C59.4432 130.737 55.6032 133.925 51.3024 135.21C51.3024 135.262 51.2 135.262 51.1488 135.262Z" fill="#D88260"/>
<path d="M23.552 129.4C23.296 129.4 23.04 129.245 22.9376 129.04C22.7328 128.525 22.5792 127.96 22.4768 127.394C22.2208 126.314 21.8624 124.72 21.504 124.206C21.2992 123.897 21.3504 123.486 21.6576 123.229C21.9648 123.023 22.3744 123.075 22.6304 123.383C22.6304 123.383 22.6304 123.383 22.6304 123.435C23.0912 124.103 23.3984 125.44 23.808 127.034C23.9104 127.548 24.1152 128.217 24.1664 128.371C24.32 128.731 24.1664 129.142 23.8592 129.297C23.7568 129.348 23.6544 129.4 23.552 129.4Z" fill="#D88260"/>
<path d="M40.4993 91.2441C40.2433 91.2441 40.0385 91.0898 39.9361 90.8841C38.8609 89.1872 37.3761 87.1817 36.8641 86.976C36.5057 86.8732 36.3009 86.4618 36.4033 86.1018C36.5057 85.7419 36.9153 85.5362 37.2737 85.639C37.3249 85.639 37.3249 85.639 37.3761 85.6904C38.6049 86.1533 40.6017 89.2386 41.1649 90.1642C41.3697 90.4728 41.2673 90.9356 40.9601 91.1412C40.8065 91.1927 40.6529 91.2441 40.4993 91.2441Z" fill="#D88260"/>
<path d="M90.1632 116.647H50.944C50.5856 116.647 50.2272 116.338 50.2272 115.927C50.2272 115.515 50.5344 115.207 50.944 115.207H90.1632C93.4912 115.207 96.2048 112.482 96.2048 109.139V36.1704C96.2048 32.8279 93.4912 30.1025 90.1632 30.1025H42.4448C39.1168 30.1025 36.4032 32.8279 36.4032 36.1704V65.1727C36.4032 65.5327 36.0959 65.8412 35.6863 65.8412C35.3279 65.8412 35.0208 65.5327 35.0208 65.1727V36.1704C35.0208 32.0566 38.3488 28.7141 42.4448 28.7141H90.1632C94.2592 28.7141 97.5872 32.0566 97.5872 36.1704V109.139C97.5872 113.304 94.2592 116.647 90.1632 116.647Z" fill="#000111"/>
<path d="M40.6016 62.5501V35.1418H54.784C55.6032 35.1418 56.2688 35.8103 56.2688 36.6331V37.4044C56.2688 38.2272 56.9344 38.8957 57.7536 38.8957C57.7536 38.8957 57.7536 38.8957 57.8048 38.8957H76.0832C76.9024 38.8957 77.568 38.2272 77.568 37.4044C77.568 36.5817 78.2336 35.9132 79.0527 35.9132H90.4192V108.728H50.6368C50.6368 108.728 49.2544 91.6039 43.6224 87.3358C43.6224 87.3358 51.5072 68.7208 40.6016 62.5501Z" fill="url(#paint0_linear_9521_94481)"/>
<path d="M63.7439 36.7876C64.7336 36.7876 65.5359 35.9818 65.5359 34.9878C65.5359 33.9938 64.7336 33.188 63.7439 33.188C62.7542 33.188 61.9519 33.9938 61.9519 34.9878C61.9519 35.9818 62.7542 36.7876 63.7439 36.7876Z" fill="#000111"/>
<path d="M68.6079 35.9132C69.1169 35.9132 69.5295 35.4988 69.5295 34.9876C69.5295 34.4764 69.1169 34.062 68.6079 34.062C68.0989 34.062 67.6863 34.4764 67.6863 34.9876C67.6863 35.4988 68.0989 35.9132 68.6079 35.9132Z" fill="#000111"/>
<path d="M201.882 115.413H101.12C100.762 115.413 100.403 115.104 100.403 114.693C100.403 114.281 100.71 113.973 101.12 113.973H201.882C204.39 113.973 206.438 111.916 206.387 109.396C206.387 107.956 205.722 106.619 204.544 105.745L177.203 85.639C177.05 85.4847 176.947 85.279 176.947 85.0733V12.516C176.947 9.43067 174.438 6.91096 171.315 6.91096H69.376C66.304 6.91096 63.7952 9.43067 63.7952 12.516V28.5599C63.7952 28.9198 63.488 29.2798 63.1296 29.2798C62.7712 29.2798 62.4128 28.9713 62.4128 28.6113V12.5674C62.4128 8.71075 65.536 5.57397 69.376 5.57397H171.366C175.206 5.57397 178.33 8.71076 178.33 12.6189V84.7134L205.414 104.614C208.077 106.568 208.64 110.27 206.694 112.944C205.568 114.487 203.776 115.413 201.882 115.413Z" fill="#000111"/>
<path d="M177.613 85.7934H97.2288C96.8704 85.7934 96.512 85.4848 96.512 85.0734C96.512 84.6621 96.8192 84.3535 97.2288 84.3535H177.664C178.022 84.3535 178.381 84.6621 178.381 85.0734C178.381 85.4848 178.022 85.7934 177.613 85.7934Z" fill="#000111"/>
<path d="M171.111 79.5197H97.4338C97.0754 79.5197 96.7682 79.2112 96.7682 78.7998C96.7682 78.4399 97.0754 78.1313 97.4338 78.1313H170.445V12.7218H68.1986V27.9429C68.1986 28.3028 67.8914 28.6113 67.4818 28.6113C67.1234 28.6113 66.8162 28.3028 66.8162 27.9429V12.0533C66.8162 11.6933 67.1234 11.3848 67.4818 11.3848H171.059C171.418 11.3848 171.776 11.6933 171.776 12.0533V78.8512C171.827 79.2112 171.52 79.5197 171.111 79.5197Z" fill="#000111"/>
<path d="M76.3393 22.5949C77.6401 22.5949 78.6945 21.5359 78.6945 20.2295C78.6945 18.9231 77.6401 17.864 76.3393 17.864C75.0386 17.864 73.9841 18.9231 73.9841 20.2295C73.9841 21.5359 75.0386 22.5949 76.3393 22.5949Z" fill="url(#paint1_linear_9521_94481)"/>
<path d="M82.9441 22.5949C84.2448 22.5949 85.2993 21.5359 85.2993 20.2295C85.2993 18.9231 84.2448 17.864 82.9441 17.864C81.6433 17.864 80.5889 18.9231 80.5889 20.2295C80.5889 21.5359 81.6433 22.5949 82.9441 22.5949Z" fill="url(#paint2_linear_9521_94481)"/>
<path d="M89.6001 22.5949C90.9008 22.5949 91.9553 21.5359 91.9553 20.2295C91.9553 18.9231 90.9008 17.864 89.6001 17.864C88.2993 17.864 87.2449 18.9231 87.2449 20.2295C87.2449 21.5359 88.2993 22.5949 89.6001 22.5949Z" fill="url(#paint3_linear_9521_94481)"/>
<path d="M205.568 107.031H150.067C149.811 107.031 149.606 106.877 149.453 106.671L145.408 99.626H106.342L102.144 106.362C101.99 106.568 101.786 106.671 101.581 106.671H96.7681C96.4097 106.671 96.0513 106.362 96.0513 105.951C96.0513 105.54 96.3585 105.231 96.7681 105.231H101.171L105.37 98.5461C105.472 98.3404 105.728 98.2375 105.933 98.2375H145.766C146.022 98.2375 146.227 98.3918 146.381 98.5975L150.426 105.642H205.517C205.875 105.591 206.234 105.9 206.285 106.259C206.336 106.619 206.029 106.979 205.67 107.031C205.619 107.082 205.619 107.082 205.568 107.031Z" fill="#000111"/>
<path d="M150.067 106.671H101.53C101.171 106.671 100.813 106.362 100.813 105.951C100.813 105.539 101.12 105.231 101.53 105.231H150.067C150.426 105.231 150.784 105.539 150.784 105.951C150.784 106.362 150.426 106.671 150.067 106.671Z" fill="#000111"/>
<path d="M145.05 49.5916H89.9072V78.6453H145.05V49.5916Z" fill="url(#paint4_linear_9521_94481)"/>
<path d="M107.162 49.5916C114.881 49.5916 121.139 43.3064 121.139 35.5533C121.139 27.8001 114.881 21.5149 107.162 21.5149C99.4421 21.5149 93.1841 27.8001 93.1841 35.5533C93.1841 43.3064 99.4421 49.5916 107.162 49.5916Z" fill="#FED490"/>
<path d="M103.782 36.6845C100.915 36.6845 98.6112 36.0674 97.9968 34.2676C97.1776 31.9022 98.7648 28.9197 102.656 25.3201C104.499 23.6746 106.445 22.1319 108.493 20.7435C108.8 20.5378 109.261 20.6407 109.466 21.0006C109.67 21.3092 109.568 21.7205 109.261 21.9262C106.086 23.9831 98.048 30.1538 99.328 33.8048C100.352 36.7874 111.923 34.6276 119.757 32.0565C120.115 31.9536 120.525 32.1593 120.627 32.5193C120.73 32.8792 120.525 33.2906 120.166 33.3935C117.914 34.1134 109.619 36.6845 103.782 36.6845Z" fill="#000111"/>
<path d="M113.715 48.409C113.562 48.409 113.459 48.3576 113.306 48.3061C112.998 48.1004 112.896 47.6376 113.152 47.3291C113.152 47.3291 114.381 45.5293 113.971 43.9866C113.664 43.1639 112.998 42.4954 112.179 42.2383C108.954 40.8499 101.53 45.0151 98.9185 46.7635C98.6113 46.9691 98.1505 46.8663 97.9457 46.5578C97.7409 46.2492 97.8433 45.8379 98.1505 45.6322C98.5601 45.375 108.186 38.9986 112.742 41.0041C114.125 41.6212 114.995 42.4954 115.302 43.6781C115.917 45.8378 114.381 48.1004 114.33 48.2033C114.176 48.3061 113.971 48.409 113.715 48.409Z" fill="#000111"/>
<path d="M134.195 79.2111C133.837 79.2111 133.53 78.9026 133.479 78.5426V50.1059C133.479 49.7459 133.786 49.386 134.195 49.386C134.605 49.386 134.912 49.6945 134.912 50.1059V78.5426C134.861 78.9026 134.554 79.2111 134.195 79.2111Z" fill="#000111"/>
<path d="M60.672 74.0175C54.3744 74.0175 49.2544 68.8752 49.2544 62.5502C49.2544 56.2253 54.3744 51.083 60.672 51.083C66.9696 51.083 72.0896 56.2253 72.0896 62.5502C72.0384 68.8752 66.9696 74.0175 60.672 74.0175ZM60.672 52.4714C55.1424 52.4714 50.6368 56.9452 50.6368 62.4988C50.6368 68.0525 55.0912 72.5777 60.6208 72.5777C66.1504 72.5777 70.656 68.1039 70.656 62.5502C70.656 56.9966 66.2016 52.5228 60.672 52.4714Z" fill="white"/>
<path d="M89.9073 79.1082H59.3921C59.0337 79.1082 58.6753 78.7996 58.6753 78.4397C58.6753 78.234 58.7777 78.0283 58.9825 77.874L89.4977 55.1967C89.8049 54.991 90.2145 55.0424 90.4705 55.3509C90.5729 55.4538 90.6241 55.608 90.6241 55.7623V78.4397C90.6241 78.7482 90.3169 79.0567 89.9073 79.1082ZM61.4913 77.7198H89.1905V57.0993L61.4913 77.7198Z" fill="#000111"/>
<path d="M156.672 76.7941C165.438 76.7941 172.544 69.6571 172.544 60.8531C172.544 52.0491 165.438 44.9121 156.672 44.9121C147.906 44.9121 140.8 52.0491 140.8 60.8531C140.8 69.6571 147.906 76.7941 156.672 76.7941Z" fill="url(#paint5_linear_9521_94481)"/>
<path d="M134.502 49.7974C134.144 49.7974 133.786 49.4888 133.786 49.1289C133.786 49.0774 133.786 48.9746 133.837 48.9232L142.541 18.0696C142.643 17.7096 143.002 17.504 143.411 17.6068C143.514 17.6582 143.667 17.7096 143.718 17.8125L164.864 41.5697C165.12 41.8783 165.069 42.2896 164.813 42.5468C164.71 42.5982 164.608 42.701 164.506 42.701L134.656 49.7974C134.605 49.7974 134.554 49.7974 134.502 49.7974ZM143.514 19.6637L135.475 48.1518L163.072 41.6212L143.514 19.6637Z" fill="#000111"/>
<path d="M208.896 86.3074C207.923 85.2275 206.899 84.1476 205.978 83.0163C203.315 80.0338 200.909 76.7942 198.758 73.4003C196.864 70.1607 195.123 66.8182 193.587 63.4243C190.925 57.5621 188.467 50.9801 188.518 44.398C192.307 45.1693 197.12 50.4658 197.12 50.4658C197.12 50.4658 196.762 41.1583 195.635 35.9646C193.331 24.9602 202.65 19.9722 206.49 25.1659C206.49 25.1659 209.715 38.6386 211.456 43.9866C213.197 49.3345 212.07 66.3554 209.92 77.5655C209.357 80.4452 209.05 83.3763 208.896 86.3074Z" fill="#D88260"/>
<path d="M179.507 82.6565C186.88 83.7363 191.334 74.4288 185.651 69.5437L185.498 69.3894C180.224 65.0185 171.264 60.699 171.264 60.699C160.87 64.2986 151.347 55.2996 157.952 51.1858C157.952 51.1858 169.83 49.5403 176.128 49.2832C180.019 49.1289 187.802 54.6826 187.802 54.6826C187.802 54.6826 183.654 46.3521 180.531 42.0326C173.926 32.9822 180.326 24.5489 186.01 27.6857C186.01 27.6857 194.458 38.6387 198.246 42.8039C202.035 46.9692 206.592 63.3216 210.586 74.0689C215.245 86.5646 239.872 143.798 241.51 147.86L185.856 147.552C185.856 147.552 180.89 122.046 174.848 114.281C168.806 106.517 155.29 94.7408 154.624 87.593C153.293 81.2166 155.29 71.7549 164.608 77.5656C169.062 80.4967 175.053 81.9366 179.507 82.6565Z" fill="#FFC2A7"/>
<path d="M202.035 71.6004C201.728 71.6004 201.472 71.3947 201.37 71.0862C200.653 68.8236 199.629 66.7153 198.298 64.7612C196.25 61.8815 187.443 55.248 187.341 55.1966C187.034 54.9909 186.983 54.5281 187.187 54.2196C187.392 53.911 187.853 53.8596 188.16 54.0653C188.519 54.3224 197.274 60.8531 199.424 63.9385C200.807 65.9954 201.933 68.2579 202.701 70.6748C202.803 71.0348 202.599 71.4461 202.24 71.549C202.138 71.6004 202.087 71.6004 202.035 71.6004Z" fill="#D88260"/>
<path d="M189.184 121.223H189.133C184.013 120.761 179.405 117.881 176.691 116.184C176.026 115.721 175.309 115.31 174.592 114.95C174.234 114.796 174.08 114.384 174.234 114.024C174.387 113.664 174.797 113.51 175.155 113.664C175.923 114.076 176.691 114.487 177.459 115.001C180.275 116.75 184.474 119.424 189.286 119.835C189.645 119.886 189.952 120.246 189.901 120.606C189.798 120.966 189.542 121.223 189.184 121.223Z" fill="#D88260"/>
<path d="M220.314 108.162C220.211 108.162 220.109 108.162 220.006 108.11C219.648 107.956 219.546 107.545 219.699 107.185C221.696 103.122 220.16 101.014 220.058 100.963C219.802 100.654 219.904 100.243 220.16 99.9857C220.467 99.7286 220.877 99.78 221.133 100.089C221.235 100.191 223.334 102.917 220.928 107.802C220.826 108.008 220.57 108.162 220.314 108.162Z" fill="#D88260"/>
<path d="M250.163 148.477H5.83667C5.47827 148.477 5.11987 148.169 5.11987 147.758C5.11987 147.346 5.42707 147.038 5.83667 147.038H250.214C250.573 147.038 250.931 147.346 250.931 147.758C250.931 148.169 250.573 148.477 250.163 148.477Z" fill="#000111"/>
<defs>
<linearGradient id="paint0_linear_9521_94481" x1="94.128" y1="1.00124" x2="50.329" y2="108.651" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint1_linear_9521_94481" x1="71.7853" y1="12.7303" x2="79.2356" y2="24.8321" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint2_linear_9521_94481" x1="78.4017" y1="12.7326" x2="85.852" y2="24.8345" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint3_linear_9521_94481" x1="85.0218" y1="12.7326" x2="92.4721" y2="24.8345" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
<linearGradient id="paint4_linear_9521_94481" x1="136.003" y1="11.5337" x2="109.111" y2="87.319" gradientUnits="userSpaceOnUse">
<stop stop-color="#0A6B5B"/>
<stop offset="0.78" stop-color="#005146"/>
<stop offset="0.91" stop-color="#005045"/>
</linearGradient>
<linearGradient id="paint5_linear_9521_94481" x1="169.364" y1="16.9844" x2="150.753" y2="80.6331" gradientUnits="userSpaceOnUse">
<stop stop-color="#F38374"/>
<stop offset="1" stop-color="#C64234"/>
</linearGradient>
</defs>
</svg>
PK��][
�_GMGMDultimate-addons-for-gutenberg/assets/images/upsell/supportBanner.svgnu�[���<svg width="224" height="154" viewBox="0 0 224 154" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<rect width="224" height="154" fill="url(#pattern0_9526_120717)"/>
<defs>
<pattern id="pattern0_9526_120717" patternContentUnits="objectBoundingBox" width="1" height="1">
<use xlink:href="#image0_9526_120717" transform="matrix(0.00122768 0 0 0.00178571 0.015067 -0.0678569)"/>
</pattern>
<image id="image0_9526_120717" width="790" height="636" preserveAspectRatio="none" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAxYAAAJ8CAYAAABjpjcvAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAADFqADAAQAAAABAAACfAAAAABo7SDfAABAAElEQVR4Aey9X4gkyZ3naVGlUUVPi8vQg9ShQVyGhp1RzrJcxcMNnfeULjhQcSx0DPcwdXBQIRidamGhUrAwtU/l/bR1T539dKXVQEfBcdTsi7LfSnAgL7iHbLSHouE4Utws7bnobrJHcyjqWE1njbor7vs1N4v0+P8/wt3ja1We7uF/zM0+/s++9vuZmTEKIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACIiACEwgEtbASVMNgwi7aJAIiIAIiIAK5InAjV6lVYkVABESgKAQ+MyGy8rPga2G9KFlSPkRABERABHabgITFbl9/5V4ERGDbBEqmtu0k6PwiIAIiIAIisAoCEharoKg4REAERGBeAiXTsYfcMJV5D9X+IiACIiACIpBFAhIWWbwqSpMIiMAuEIhtJrsSFrtwsZVHERABEdgFAhIWu3CVlUcREIHsEihJWGT34ihlIiACIiAC8xCQsJiHlvYVAREQgdURiF1UtdVFqZhEQAREQAREYHsEJCy2x15nFgER2G0Csc2+XKF2+y5Q7kVABESgQAQkLAp0MZUVERCBHBKQK1QOL5qSLAIiIAIiMIqAhMUoKlonAiKwVQLB18NG8FbYxgByta0mZI0njy7D2EVfW+NpFLUIiIAIiIAIbIyAhMXGUOtEIiACMxNgF6wlc9t0zenMx+Rxx655iTyqu9k8XjulWQREQAREYIiAhMUQEq0QARHYNgHU5reQhhcUF7BcnGw7PWs7P8eyKJm9tcWviEVABERABERggwQkLDYIW6cSARGYi0ATtfkvUfB+AJeoYK4j87NzzKQW2eUrP5dCKRUBERABEViWgITFsgR1vAiIwFoI2DYIJXPsIm8FtbB4LkNdN/r2WggqUhEQAREQARHYLAEJi83y1tlEQATmIGBdorrmQxyybz4z4RyH5mNXukIloZaPBCuVIiACIiACIjCegITFeDbaIgIikAUCr0wTybgoqEtUbBG/VgNuy0F/REAEREAEck1AwiLXl0+JF4HiE4g6IWv1my6nxXKJ8q5Q7AVLQQREQAREQARyTkDCIucXUMkXgV0gAJeoCA2530de982VOSlMnuUKVZhLqYyIgAiIgAgYI2Ghu0AERCAfBF7ZNhYXSOw9DqCXj0RPSeVr18ZCY1lMAaXNIiACIiACeSAgYZGHq6Q0ioAImD6XqJJpFaKL1q6J7aUtyRVKt7gIiIAIiED+CUhY5P8aKgcisDMEei5RyaByrdxn/KYsFrm/hsqACIiACIhAj4CERQ+FFkRABPJAIPo0PEZ7i4+R1iOMyn2chzSPTeOVupsdy0YbREAEREAEckdAwiJ3l0wJFgERMK/RSxRH5TYmzLNLlHPvMuhKV71C6bYWAREQARHIPQEJi9xfQmVABHaPQPTrsI1chyiQ72HeyjmBC4gkCYucX0QlXwREQAREQL1C6R4QARHIKQG4RJ0g6S8w5d8lKhFIOb0SSrYIiIAIiIAIJARksdCdIAIikGcC1y5RXwvrOc1IzHTn2aUrp9yVbBEQAREQgRUTkLBYMVBFJwIisDkC6CUqxtkSl6gbuXWJYh4UREAEREAERCD3BCQscn8JlQER2G0CPZeokrmNXqLoHpXXUMtrwpVuERABERABESABCQvdByIgAkUgkLhElcwDuBQFucpQ17RzlV4lVgREQAREQATGECiNWa/VIiACIpArAsHXwwaqSn6CRF+YsqlHcdjJSwYCtA9xPV3lJclKpwiIgAiIgAgMEbg5tEYrREAERCCHBOLfRue1N4Ovogva75rfmTfw+3leshH/Q3SZl7QqnSIgAiIgAiIwjoBcocaR0XoREIH8EXiFhty0WOTRJSp/tJViERABERABEegjIGHRh0M/REAE8kzAjWTddHloBbWwkuf8KO0iIAIiIAIikCcCEhZ5ulpKqwiIwFQC6II2wkjW72PHfXNl8txL1NS8agcREAEREAERyBIBCYssXQ2lRQREYDUEvEuUMfdso+7VxKpYREAEREAEREAEJhBQr1AT4GiTCIhAfgm4bmd/BuvFS7S5qLvB9PKbIaVcBERABERABDJOQBaLjF8gJU8ERGAxAj2XqJLZQwytxWLRUSIgAiIgAiIgArMSUHezs5LSfiIgArkjwC5n0QXtn8Fi8TbmL/H7LHeZUIJFQAREQAREICcE5AqVkwulZIqACCxGAC5RNbhDJaNbyyVqMYg6aiUEjoNuBaM2HiMyTrSkMbwow6L2JCq17C/9EQEREIEcE5ArVI4vnpIuAiIwnYBrWxHCaiGXqOm4tMeaCNwPurUrYwXuI3eKjzHndIT1H/wg6J6s6dSKVgREQAQ2RkDCYmOodSIREIFtEYg+DVloe4HpKPhaWN9WOnTenSYQQUDsg8D7FWNqrahU5wRrxbcwXbwy5kEz6B7vNCFlXgREIPcE5AqV+0uoDIiACMxCwLpEfWEq0a/D9iz7ax8RWBUBWCuatEpAQDyFy1NzMN6UNYObKDo6g/votwiIgAjkgYAsFnm4SkqjCIjA0gToEiVRsTRGRbAAAYiKOg/DvDXqcIiNGOtPMe39HoQF5goiIAIikEsCEha5vGxKtAiIgAiIQF4I3HJiARaLeEKa7Ta4EdQm7KNNIiACIpBpAhIWmb48SpwIiIAIiEDeCaD9RMw8vHaWi1H5gfiwVo1/NEZuUKMAaZ0IiEAuCEhY5OIyKZEiIAIiIAI5JkA3JwPRcDwqD2xjAfHxDhtxo31FNGofrRMBERCBPBCQsMjDVVIaRUAEREAEckvAiYUXyMARupU9pZDwmUFPUAGWI/c7dHPNREAERCCXBODOqSACIiACIlA0ArYXrCRTtaG8fQF3m5um48b4GNqsFasn4MSE73KWJ7jAVMHkB8p7FwIkxG8FERABEcgtAQmL3F46JVwERGDXCQS1sIKuhuoYWbxuMKq4m7OwyvESZgtd8xLHtnFsBwdEdrls2lEc8rfCiglAYLDr2SairWPqoG1FG25QJ3KBWjFoRScCIrAVAhIWW8Guk4qACIjAYgRgiQhwpJ+OBmMpl8uGU6VSMRUuV+C5PxCuOlemc3VlrjB1Oh07H9jFQGhwVGgKjVNYNqKh7VohAiIgAiIgAgMEJCwGgOinCIiACGSNgBUTXdNAupoo6HvXGSseDg5qplqtmiqEBOeVam/zzNm4unplLuNLE19emktMMZY574XEqnGKbo1Oo78LT3vrtSACIiACIiACKQISFikYWhQBERCBrBBwbk7HsBwcezFBSwTFQ71+YOoHByNFxJc+nz8Hn39p+BiKjfg8Nu3zc3OOOS0bLlxgHmEK1UbDEdFMBERABETAEpCw0I0gAiIgAhki4BpdN9OColarmeCwbg4gKMpleOW7MFJELPJW7/oYr+eDYiM+vzBn7bY5O2tf72TMU/yQwEgT0bIIiIAI7DCBRT5BO4xLWRcBERCB9RCwForPTAjrxAOegdaJIDi001gxkX6DjxAHc6d0QnxeaHQuX5rzODbPn0dpK4YExtywdYAIiIAIFI9A+jNSvNwpRyIgAiKQcQKDLk+jBEWfZcK/tQeEhC/4L5PdvvMwIn8uLrvzpc9zdvaxBAbZKIiACIiACFgC6c+GkIiACIiACGyQgOvhqYVT7k8UFP5NnRIT6QI+k+zbRFyiLQQbXrPnJzbGHhV4Lk7VKnqOQqPvGht/j2j43Sc0JqRhQGBc4Jx0j2qNOrfWiYAIiIAIFJeA/1QUN4fKmQiIgAhkjMCg2xMbYjcad3qNsXsFev+GHmEtoJA4b59b8dDGPNW4euHcepHBxuFs15HuYWooTTxLKl1MTxSdWQuGS8BTzNX+wsHQTAREQAR2gYD/bO1CXpVHERABEdg6Adc4O0JC9lmQb95tmNrBvk3XUOE9VXDnDl5MRGhAHaOdQzq8Rl+wy4Yb5kZfFL7ReFpkDKWRRyCd3oLCNhgnT1pe6FwgWcfqorYPq36IgAiIQGEJSFgU9tIqYyIgAlkjAFHB3p5O2H0srRR3mw3by9NQYX1AULBHJnb7yh6ZOKgdw5CQcMcsleeBL0JaaByiV6rDen1mEfT8+Yu09eJduEaFS6VNB4uACIiACGSewMBnJPPpVQJFQAREIJcEICpCJPwRE0+3pyB4m4vGigr/Jh4hKE7R+1LaOtETFKsQEjYFE/74dGEXLzJoZWncCUz98LY9cJIoOm//0jw7fZ5YL7rmQ/OGaUZx2BsQY8KZtUkEREAERCCHBFKfjRymXkkWAREQgRwQgKhoIZn3WCi/37xrqrW3EkHBtPu3MISCdyeihSItKHpigvtvQlDwPIPBpXOiwPB54bEuP32uUV3zMfLb0MB6g3D1WwREQASKQSD9GShGjpQLERABEcgIAdeV7AmSY0XF8f2mbRA9zkrBNhSnqOH3g9D1BMW2xMQojgMCI93wfJT1gmKJ+XrWOrXuXIjyAlMgcTEKrtaJgAiIQL4J3Mx38pV6ERABEcgugdqt4Aw19N9lV67/8i/++5GiggXv12gzHUUfmb/6q2dwe/qVbT/RZZV/lgTFAOZuiSnsmk///v810f92hq0l84d/XLN5ucF25BQgmLh848tfMvX/8p/BJeql+dWvLivY8me1rwSn8X+K5BYFGAoiIAIiUBQCru6pKNlRPkRABEQgGwS8+xNFxfFx87qRtn/rplyFWs9Oe+0orJUiw4JiiK7LD12k6Oo1zSrz7NmH3iJzgbhkuRgCqhUiIAIikF8Csljk99op5SIgAhklELwVsuenH7Cg/a/+1V+MFRVsS8GuWf/+7/8+F1aKSbhpwXjFsSxgvSiX3zD/+R9+01or7DEUH5hovfin/8XBteWia75T+1rwLO5ESVdXk06gbSIgAiIgApknIGGR+UukBIqACOSJgO39qWT+0tfef6Xy5nXPT84SQfcndsf6P8NS8fnnnyddx+bJSjHmgnj3qF+e/wfbruKP/+k/GekaRXFxDlHVedmpms/NN+ASdTomSq0WAREQARHIEQEJixxdLCVVBEQg2wSCr4cN1Mz/T15UcOTqXkNt5/rE9hR0B+Io1XR7ynpbikWIU2BcxP+3aaO72X/2T/7IfPk/KyfWC+c2RQb1+p+Yf//v/w+Oy1FHe4sSxEW0yLl0jAiIgAiIQHYIuNd8dhKklIiACGSfAGrlaygRt11KYxSmO/Y356+x/gbmxsS71POPZYI22Mj3PtsZcDTtQVHB3pGePGED7bgwVgp3DwzP6Po0rt2FE1nsivbxyRM/6N93cL+Qn4IIiIAIiEBOCUhY5PTCKdkisE0CQSWsmLI5hZioQ1TsTUnLBbbH2NeKDbfM37F5E+KjIAOmQVjEyNv+HQwed+fO0UhRcXLSMpeXl8UXFQBhwwziwrczwf3wEvdSfZfEqMekuQiIgAgUhYCERVGupPIhAlskEHwtrJubpoIk1Pqmrls3SXywQEnhQWsH5+npC9OJfh22sS7TwbarwKjatVoNPUDdk6hIX60ZxMXp6U+taxgOewFhEaQP17IIiIAIiEB+CEhY5OdaKaUikFsCdqC430J0lHpTxVk7vBjZn5i5pDa7DStJI2sWDucC9cmkdhWtJ39tB4fLXVeyEy/KHBtT4uLhw/v9vWQ5t6jHj39krTmI9XsQF605YteuIiACIiACGSEgYZGRC6FkiMCuE3AFdIywBivHDbhY0doB1xg7Tywh7LI0c64y3gXq7t2GOTy8PWStYO9Pz59Hu+P+NO5GduJinFXnMv7UtrewLlFvmFrWBOS4bGm9CIiACIjANQEJi2sWWhIBERCBuQhAVDRxwAccBO/hwx8MiQqOpn16+lyiwlN14iIIDk2j8d0hXj2XqK55P/o0PPaHaS4CIiACIpAPAuj0T0EEREAERGBBAiGPu9+8e314qscjWioUUgTAhu5g7Gr3HF3RcjwPWCh6gQ3fy+UyLVMPnAWrt00LIiACIiAC2ScgYZH9a6QUioAIZJCAs1bsHx7WTd94FS6tHFEbYzTIWjHm2rUwOCC7m7XiAvuwa95y+RZ61Ar8ES2/oLkIiIAIiEA+CEhY5OM6KZUiIALZIxAySXeCgLMkOGsF21V0OhzS43VfjbzfbafnzmpB0UU3sV6AmxTFRRC8bdgQHuEI4i3obdeCCIiACIhA5glIWGT+EimBIiACWSMw0lqBRLL2nbXwaqw95Yo5cdE+Pzccx2KUS5SLoTklJm0WAREQARHIEAEJiwxdDCVFBEQgNwRCprTPWuGS/jyK3JJmsxCgS9RgqNcPkrYWxtyzXRUP7qDfIiACIiACmSQgYZHJy6JEiYAIZJVA8PWwgbTt1w8OrttWYIW3VpydteUCNcvFc1YLuoy1zz4eamvBnqNsuDLqHWoWntpHBERABDJAQMIiAxdBSRABEcgRgRuGwgJjVtSHEi1rxRCSmVacjug9qycsuhIWM0HUTiIgAiKQAQISFhm4CEqCCIhAPgi4LlDvsXHxQf3byTgMSLqsFQtev5TVotfWAlH5HqI4mB66nt1TI+4F+eowERABEdgwAQmLDQPX6URABHJNIGDqDw5qnPUFWSv6cMz9Y6TVwluFuomVaO5IdYAIiIAIiMBGCUhYbBS3TiYCIpBrAq6Ae1gfdoM6P49znbWtJd5ZLeI4xrgfr3ptLZieg+tG3M2tpU8nFgEREAERmJmAhMXMqLSjCIjAzhMomXfoBlU72O9zg6Ibj8atWP7uYMN3H7w7VLValTuUh6K5CIiACGScgIRFxi+QkicCIpANAt7Pf5Qb1Fn7ukCcjdTmMxXt9vlQwtn1rA1dM2wmGtpbK0RABERABLZJQMJim/R1bhEQgTwRCJhY26B4INVxfDmwRj/nIjDBHYrd+tpQUjuLuZhqZxEQARHYAgEJiy1A1ylFQARySSBgqmt0zXGBvUGxXcDl5aXGrvBQlpxfpkQa3aEq1b1ksDxZLJYkq8NFQAREYP0EJCzWz1hnEAERKAIBFGzL5bKp1t7qta9gttIF4SJkc9t5iCHSBsPBdbeztcFt+i0CIiACIpAdAhIW2bkWSokIiEBGCQRfC+scT8E2JB5I46iC8MAu+jkHAVp/BkOlWvGrAr+guQiIgAiIQPYISFhk75ooRSIgAlkjcNPYkm2tdu0G5ZPI3qAUVkdgVHuVnvtZN7kOqzubYhIBERABEVglAQmLVdJUXCIgAsUk4Pz72dXsYOhcrklYlAbPtBu/r66uhjLasxSV1DPUEBytEAEREIEMEUDTQwUREAEREIGJBEpJTXl1lLAYURCeGNcsGyEqbuDf69JrY9Bj0i6FUcKCbVtcqPkFzfNL4G//tlszZRPg1q6UrvBslQ1GRzTxVdm0v/XV0pqUen55KeUikCcCEhZ5ulpKqwiIwLYI1HjiVAF3felwooK19La3qV0RF+xyFnntExZg4XuGcsBr6wOvmNdJ4JPfdCuQh8c4R7NUMvs8lzXKveHOijkXL3/T/RByuvUHXy2dui2aiYAI5IiAhEWOLpaSKgIisDUCNZ55pCvUmtpYBMGhefZMZSt/xSnq+kSH36B55gn8P7/pHsPvOmQHCExs3GZvasnE3zRIVWvoyrnO7oXNO9j3HQoMaM3jb3y1hD0VREAE8kJAwiIvV0rpFAER2CkCHHE6inbMajHhCjthYWu6J+ymTRkjAIFwAkHxgMk6g06OnhnTGW5G00s1x0NsHCcCA26A9V/9qtv45jdLkCIKIiACeSCgxtt5uEpKowiIQCYIcLA2uuasLaTcoMrlW+bgoLa2U+UiYlRZK+SXgBcVnUtjnkAsnLYSUcFnaNx0fm7M4/uJAKHL1JfeNBHERT2/FJRyEdgtAhIWu3W9lVsREIElCXC0bT8tGdXYw72g6HWzOnbP4m7wjDlXyB+Bv/1Nl65PDygqWg/h/hRfiwmsTxpYjJh7wfH8GYTIid1vj+IC8dXwS0EERCDjBPTKzvgFUvJEQASyQ+Dq6pWJz2NziXYVHL+CPv/r8Pu3I00j27VaLTuZ32BKWk/+Gr726CwIzvcUV6PatmwwOTrVnAQoAmBteHTVSUQFe2S2lj4KiRkD9z+LrEuUCe6ibUbXtHBogElBBEQgwwQkLDJ8cZQ0ERCBbBF4+PDxyAS9NqvtFrbmXKDoeuUbLe9S17Nt+sPgv0JuCYRMOdtTzCUq4PrmLVRpy8UBHKGqB+YI3dQG3/hGKWLcCiIgAtkkIGGRzeuiVImACGSAQFANa0hGC9MRJmtB4OjbrEVngZ816S303LSSbmFRm8uxK9jNLNtXsGDFQhatF7agzQQUObj8k+n95l1rCaJViNahc1iJYvrSIOCaxOYL04h+HbbtCv3JFAFnrbhHF6jo+RyWCicqYKhC2yJYK85w/7v2TM9b6KP2MbynyqaBzEaZyrASIwIi0EdAwqIPh36IgAiIQEIg+FpYh/tFBH/wPbokNe4EpnawP4SHQoPCYlXBt6/w8dF6sRPCwmcY82rtLfcr4X3nzpHpXL40z6MIBc72vrlpfhG8Ff4w+jQ8SR1WqEV7/91MBmbMU8bOz+LgT/6rmu1Sti/dEA69ABHZF5yo4EAXdykdMG+3rxt604BFt6rynmli63HfsfohAiKQKQISFpm6HEqMCIhAFghYS4UTFXcgKFiwZbB+4qkEereN1KqlF337Ch/RrjXg9u0pBlnTLezu3Xes1ej09DktGu/hOnWiy7DlWRVh/n/+L93Gv/t3z0+is48SVZWzTF388lNDYdGOUgl3wsGvsdfWi4tRouLsWlT4Y2KIi4NDs8dRu+EOFfv1mouACGSLgHqFytb1UGpEQASyQcBaKryoYEGoVxhigcgXirDoC8KrSrZvX+Hjq8IisrPBs8bcX4PDw9vWVcoy6ZoT565WCETMy6efdk4ad+/sNxp3enliG548/GOCawfJ/Yp+DXohcemDOxOsEbRKWEEOQQGLoF32lopyBZYKiIqonXreXCx0rWLolk09WdJfERCBLBKQsMjiVVGaREAEtkYAhbsQJ98/PKxbS0WfoBiRKra1WDqg4DzYvoLihedmewu2u+D2tKBZ+pwZjaBKJ/tRwYkMMqFLmi14JyM5t0btnst1XdN4/0dP9+n2FQRvm4fH961wtdeeGXKF8UzOB4DTdSkdKB4wqrZ1dfLiggKjT1RAUIwSFYzHx4fbYMwNkj6blkVABLZFQMJiW+R1XhEQgawSaDJhd4KAs6mhMquwcAVjKw4Gl91ZBttX+JOzHUcvDB6bt9+9jIxemCrUkF+KCxa8nbXoCGIwGB1bztaWTJ0N1k+etNCt8YVta3J8v3ktLnitcxh4vc7OE2sErRJsR0H9SElOwwzXsR1FdDZsqRjMLrRVZ3CdfouACGSHgIRFdq6FUiICIrBlAsHXQxR5EmtFb5TtKYW5mVyhEAdrnSf9Y9YH21d4HH79pOPzsm2a1WWqsPBQMA+CQ/8r8AtFmHtxEUUfoZZ/zzx8eN/U0VUSr/E0ftvO/yX7l0WgdaIXnBikNYKuTl5cUFRwP7o5PY8miwp0N2vD69+aOFnSXxEQgSwSUOPtLF4VpUkERGA7BEom4IlZiJs1TBUWTlQ0UU07bV+6+LB2d7DweFA/MMeV5qxJyux+7JqXheZJY3JU0d3srIHuamzIjRDMekwe9rPjoiChrpG6dclr3v9z8/z5C0xRwo8ZoWtUxkLchkpo3Ia7WmKF6CUvJS64rg5NWK0lLk64LUbe971jscB9Gb75zRLkiYIIiEBWCUhYZPXKKF0iIAKbJwBXFJ6UbRpmDWU6ic8Q2GUta58nhSFR4QpjbGcxqqvbSXHldds08WXzleJCC8fVZ1f2uuU1zyPTDdFAAUYhcRlfmrto+czeyZhfJ6YmCrSRcW5gZXTaNs3wu+zByTyHYOgLKXHBxt18zOj+hEUzsjACBmyHQZFiLSBX5sO++PRDBEQgcwRGPsuZS6USJAIiIAKbINBFw1AUfmZygxos3KKkNKkm3iffigf/Y3COOIeCO8/Q+pytsD0BzZDmeVyhGJ0VFldXkxXbDOfN5C5OXHAck/jxE8P2FmxbQte4J61nU60/G82TSyu6ATbnZxcQFvumDrnH8Sj6BLO7n9nmwo+u3rd9RKIPg2Rl95YZlCoj9tYqERCBbRJQG4tt0te5RUAEMkng6urVdZeYM6Rw3sKwdXWiiBicxp1rcL+8/R6XrxHrOTjetILmiMOKu4oFdvzz7S4u408z36j72ZPIXo879yHSYdCzohL56AXcv7zGfrLPQW+jW8D+PI6ion4HXl9dc/GNr5Zag7vptwiIQLYISFhk63ooNSIgAtslEPP0Vx06Z8wedm0Qu9nJzLgnCppsmDy3QEP0rCFHW4OXM54pn7ulxMXjkycm6426Mfq2aT+/sO5LzXC8uOgJ6/RVoQBxoqJWQ+9szd7GoLekBREQgcwSkLDI7KVRwkRABDZOoJR0Zcna4XnCrO0s5olzF/edp22L52OFhdmBnoKcuKD1gm0s2JCbbW/YqJsDOfZ6jKI1axshJQ7voqOCmtm3Y0+wNyeKC3Yv27NcOPEwajwO7sOJ7Sp4HHuQev0P5oewVsTbyJbOKQIiMB8BCYv5eGlvERCBYhOImb15hcUiBeJiY1wsdzOPCeJqtDmQnA1OEC521hwd5QrkFBds1N168tew2Lyyjbo5YKDvcnika9E6s+lEBRvesx0IR0e/xLV5ePdHJm7DdYsi4XHi1uSFw7i5HTDvvjH3sT9FRfcz8+4f/EHpZJ3JV9wiIAKrI4B6AQUREAEREAFLoAuLxQI1vjMXiIV5IoFqeiDAiXsmG1MCMJ5h9+LsQusFeozKRKNuJyooru8379qODzi4HxuX05r08O4T07gfmLvHR6ZxbExwF+alNtptn0HAO49Dign2+sSepGr15DKxTQW6i2p+4xulqDgXTjkRgeITkLAo/jVWDkVABGYl4Gq+L+d0hZLFYlbAk/ebt42Fc4NipPHkmAu41YkL36ibhXo2fKfFgCN3c/0svZQtRcaJCo77wu5w6ZrF9h+97nBhWWE4RWNudkN79zgwAca4YGNsTiMD2st0r8zJVdmcfOsbpc7IfbRSBEQgswQkLDJ7aZQwERCBLRCIec5UTfhMSajQgVxhaQLzNoLvCUBamnYxpMQFG3XTHYrd0XKk7metU2vRWIu4cFY9ul6xfQfH12A4Pf0phMUZ5EQiKPwAfkxDByNyP3l4alqPn5uDeg1tKKoQQtfPDQfW6956/f6//h//m+NdvJTKswgUhYCERVGuZM7z8f2gW/8drOTIxvWXJud5KkjyWWBrt6KdcUeIed1m7hUKBSx2mcmaWjeewvpriZnAgoaZBsdL5b1nsejuoMXCc3Digj83MlK3s1LwfF7IsJ3HkyfPTBzHiahAmvpCKo18ttrRuZ369kl+8H2jIAIikGMCEhY5vnhFSPr9oFuDm20LoiKp8ipCpgqYB1yniy9+axo//nmpXcDsXWfpCjXf8Pfu1YRfb5m6xELx5eXl1P20wwABV1ClMJtpYMLU4T3L0o0dtVh4Fq4gT8vAWkfqTl0rul5xNHg2oO+5XtFSMSgqRqTRr0rPba9W6RVaFgERyCUBCYtcXrZiJPo46FYgKiLkZp+eJPUD1vwWI29FyQWHCIhRVj6P0Xfkmyb6/p92gyKLi6gTdoK3wpeoCZ97JOcaGh5LWCx+589rreCZLuFeY8MXOy4sEgq2UE9xsZZG3U5U+J6fKAI5WF9vBPBJosKnj/NRwgNxK4iACBSDgIRFMa5jLnOBIkGIhO8f1GBSv5PLLOxEouvI5dkZFGDb7P3uTXOCn0GhM44G3AhzCws14F7urqjC4rNweBOuUL9e+OhiHYiCu23TgMbbtCSspFG3ExW1Ws3cv3/Xuv6dnX1snj07texsm4pRgqFYZJUbERCBGQhoHIsZIGmX9RCAcaLBmAN0McjASitN2WRwiGvkegI9YnsYe8GK+ydm1ujiwb72R9awcoeBsFTBeCCuXfw5b1ezZORdoaI47Owis7F5prjAP/JZaqRu90Kmm1KAF/Xx8T0rKjg4H0UFzyFRMfYqaIMI7CQBCYudvOzbz3QzcYPaZ2GVFZX8filkm4AfYuAmvNayndKlUxczhl7D4Bmjk8ViRlBjdpu3RyhG44TFxZgod3u1Excs+C80Ujdeyn7APfb81Gh81w7G9+zZh7YdR09QyFKx2/eZci8CAwTkCjUARD83QwDWCravUBCB7BFwg+Sx0Fo1b01PHwpg7BmKPufqGWo6rnF7zNzGAgVZWpLYE5ELsV/QfICAK/TP3ajbiQrez3fvNky9/m1rwWN7CrYj6omKgdPppwiIgAjIYqF7QAREQATSBNwgefNaLBjFzIXj9Pm0bAlwcDcKtFnNlxwXwYZdHcMiyf1sf531go26Hz9+YkWCHe/i+L69Z22PTBATNjhR4RtpU1SwkTbba0hUzIZbe4nALhOQsNjlq6+8i4AIjCIQc+UiXc6yZyiFOQi4QuwibmQp4RfPccbd3dWJC1rirEiAWPAjdVNEeHHBOa8HR/DmdjbSnqk72d0lq5yLgAikCEhYpGBoUQREQATg52GrwlMF15mhLFJAnjnyAu+4SMN3176CFg5nuigwoFVlLSUu0o26KSLY4xNFxeFhHY20m9a1zzfS5rMg96dVXQTFIwLFJqA2FsW+vsqdCIjAvARumDYPiTmAx5xhkQLynKco5O419jk9Z4j9YIQYtmHOQ3d7d4oLjHXBkB6pmz0+xecXdtC7ZNtPTRSdJYKCK3CcggiIgAhMIyCLxTRC2i4CIrBTBKLLMEYh6iX9ydlAeJ4uZxcpIO8U3DGZXaRHqHb7PInNCcExUWv1KAIUCc56wZG6W0/+2t7rHEmb9/zJydNrUeH2HRWN1omACIjAIAEJi0Ei+i0CIiACJXNC9w/W2M4U0FaADY/L5VvDjWFnimC3d5p5DAsUcin0WLPuXKFeWCG42/gWz70TF75RdxvtKdi4O45juT4tTlVHisBOE5Cw2OnLr8yLgAiMIdDiegqLeQfKW6T2fUwair3aNdxml6YUZPP0CNVyIz4DUKvYkDaQOycuKNTIlXO1p9gAd51CBApKQMKioBdW2RIBEVicgKsFf5dWC1+IndUlqlKtLH7iHTxypgbvzh2H14ANip214imuU2sHka0+y05cUFBIVKwer2IUgV0iIGGxS1dbeRUBEZiZAAqtIfzQP6ZbiPdB74kLV9C1DVr9sotZFouZEdsdD9INtz3LgTm5e1HBNgEIF5hCLiisiECa+YqiVDQiIAK7RwCvawUREAEREIGRBF6ZwNwyEXzQb8fwPW/cCUz98PbIXf1KdtupMDsBL8SsaBtzGNtUnEJQUOQhUFQEaltBFAoiIAIikC0CEhbZuh5KjQiIQIYIRJ2wE1RCiosQ7jcP6BZVQQE3CA4NC8RJ+4Cydc2he04HrlPOTSdDuch2Us7O2oZdx7KrXg7U5pmyVy4OUsjen5ygYEZeYGpKVGT7mip1IiACu0tAwmJ3r71yLgIiMAMBigvsdhxUw1PMKTCO2P//pCA/9Ul03Da43nA8BfZIZDhNDhQULbWpmAxJW0VABERg2wQkLLZ9BXR+ERCBXBBAoTZCQgMIjBrmLUxHVkBgYSjQX11hOgEnLkbtyFGgOZ4IWhMH0a9DDYI3CpLWiYAIiEDGCKjxdsYuiJIjAiKQbQLWDaebGu053ejVL2c7C1tLHXvZGgqeWXrudyqZtkSFh6G5CIiACGSfgIRF9q+RUigCIpA1Aijwzpuk6GzGwfbmjTjr+0MwsGE2B1+jsJjLTSwt4LKeT6VPBERABESAtmYFERABERCBuQh8MYewQMGahelFBtubK00Z35m9Os0dFhBwc59DB4iACIiACKyMgITFylAqIhEQgV0hYN1z4P9v2wGUZs+1H2xv9iNyvqezVvhB7eayVjDr8wi4nKNS8kVABESgCAQkLIpwFZUHERCBzROYpzbdWS3YbSrHZLBjNmBdoYMTFZ3LlxgtO5rdBQpCzTfc3rn2FV3DHsgUREAERCC3BCQscnvplHAREIEtE4gWOT+tFldXr3ZDXADQ82ghTES78IE8OJehZNilcRJoCduVyed5F6/5dd61JAKFICBhUYjLqEyIgAhsgUA01zmd1YID6LEGv9DBWSui6CPDAfDmdoEinHQhu9CwrjPnujR+SovNrv0DhXdd/q+BaEkERCB3BDSORe4umRIsAiKQBQIsBGFMiwsUAPc50BvGXJgeKC6wLxtyH9Rq5qD+bfOlz3EYa6aLEpyo8C5QS2QrWuLY3B6K+6qJ+4p5b+Y2E/MknO5fEJHId2uew7SvCIhANglIWGTzuihVKyQwrry36rJc0c6zwktQ5KhayNyjRTJIl6iH1fumUt0rjrhwooKuXidPWvN3L4uHkjX1CC9Q0IwX4VqEY1whu1WEvCgPIiACu0VAwmK3rvfO5ZaF/U7npWFXl+fnsS3o1KpVc3hYx3R7ZRXFRTvPzt0oi2b4C/jE35xTWOBmodWCYzqw8P3w4X1TLt8qjrgAy2etUzx3ncVcoJJr0Vr0kug4ERABERCB7RGQsNgee515zQRY2L+8/NQ8PklqTv3pztEzDycWfO7cOVpaXGzyPOfoUehJ65ktlK4rPz5ezacTYK9FcFt5gVr2o5ndoRitExe8B09wfx4fN/MvLpAn9nbFrmXb5+fzi4pra8WF3GKm33vaQwREQASySECNt7N4VZSmpQmwsJ+4YySFcDYeHfyXWDEuZnKNH5egTZ6HlpekR6Fk9OJ15GdcPrV+IoFw4tZxGyku8O/y8tKcnj63e+W2G9qUqJira9nRbKLRq7VWBERABEQg6wQkLLJ+hZS+hQm02+f97hhUAX5ysZ612wvH7w/c1HnoytXnXuLzwrkLq8iPj0vz2Qigdj3CnmzEPX8jbFw7igv2nPTs2YdWDOdKXLh70FsqViAqCD3kHwUREAEREIH8EZCwyN81U4pnJHAJN5NpgYX1ZUOWzhPHl8tmR8cvQqBrThY5zB6TEhd0i2JvSrkQF0g308np9PSn8w2CNwjr2g3q6S432h7Eot8iIAIikDcCEhZ5u2JK78wEKuXy1H2r1crUfabtkKXzVCrT8zwtP9o+O4Hga2Hddg1aMu/1jlqkuzEnLugWxQbdfeIC2zIXnKiw7oYnT233ubS8LORX2M/rHnjGmJqZy7MSJAIiIAIiMJWAhMVURNohrwSq6P1pWjis16ftMnV70c4zNcPawRJA4bcG76cIP454D9Rq/Jn8W6hHACcu6O72+OSJaZ993LMILFRgX8d1oshxoiJGRwKPHz8xMTpCWEZUeGaeIc6wj+mD4K3weB1ZUJwiIAIiIALrIwAjtoIIFI8AK0EPDvZNEBwmtakcwCwVWJipVCqmXj9IrZ1/sWjnmZ/ATh/RgoDYazTu4D5724KgpcFaHCAObC9RXMvC+KwB+/quaNlQ/xCF9jtBcD3WBePhTbfp4PJgXbRwbvb85EcPX0hUuDz457B5t2FqeF4ZLmP25PaEiyGmxV3MGIOCCIiACIjARglIWGwUt062SQIsu9xtfNeekiMdp8PBQc2wMMPxA5YtpxXtPGlOWp5I4IjilKLCjp6NXTnYXRg+6C94zzoqtz+VExcsdLNRN9sBNe4Epo5xVxj8uZa+cf35Js0HBAWtFM/QgxVdthgWFRXMG0P94MDcbSbPoc9XtfaWXY8ua/foasYufe3O+iMCO0zgOOhWfmtM7Xd4bIChdguvG3x7KqOQXBkTY72dsEP7JCp1Ru2ndSKwDgLLlqnWkSbFuQME7gfdGl5+n9TgrYTy/VrLSCwbsatWNmzmoGQsDNKawbDKB6Bo57GA3B/m7QzaLGobUzbme0+iUiu9vUjLQS2smN+aGga+q8PaUMFNgm8zfg+He3TfefjwB9eD2xEUAmv2WQin1aHXkxc3uO1cHBtwU7LgTWtbGe2EvGWA9226Zt8XxG08q76RXeK8hYJ5YffMdHtioNsXxfncvUC5vDFfdyCWvKXH5oV5AB+es/Xkr+1YGFjzAlOMKR1i++O1aQNTBzdkO4pDFZzShLScewLuG9nA+7aOb2WADO0vkamXOBZvbwzoiXkrKkWYK4jAWgjwVa4gAhsnsElhwcwNlufWdeMX7Tz+xmC+iios0FYiwA1Sh4CoI5sBppk+4KytpwA4vt+0bjy9gn6qgEzXqOdRZC0PiHe2Gn4cz3hZ8OYAjoyDAiVdqA8wcry3YDDe3rn5g2GeG3zgpvVigtEMCoq0uGEbEKZrJquFSw/zRVFCgUTrzmC6eW7ml65QrASYOXTNS+SZBaeIk+sCeObDtaMIZIFAM+gGt4xpvMKE9PS9h9jPCCfUL5gyJ+zA/kn42wffESIfnQ6mqw5cCzldYtnvhDkOu8AswrqWREYKjBZXQmCez89KTqhIRIAENi0sRH05AkUSFtYicWVFRBOCooEC6V6aji0op1eMWyYUvEHTIoC7Dta+c90ZCuGs3e9ZLwYK89ynF0bEyW2Mg65RXmAklreaCQ4PDd2H0mGwwJ7eNricFhLcxoI9x0Ph+Cze5YnnotA5dO5Y3G9mYeHyw2PS7VFGcYqijywnioqZrwPi5TUYCl3zIa7PKdZTaMRD27VCBDJAgC5OKPsfIykNTIm/IxZoza/VEjFh+yGhklgidCAuKDLi2JhzTD44kREW2Qrt86r5Zgjgla8gApsnIGGxeebLnLEIwsJZJvjxbqLA2RMTQwXYSYX+URBdwZmFb1ovJtXEe8tD75yjzuXi8xYLLxK8AKAVgQV/igwfvMg4QEmE7lmDQsPvN2pOIUGxEqNa0w/26PejdYHtO3zD6nRapgoL5IOBhX6m737zrk2XjyPZmrg+sdvaZ61T7/40mxXER8C5O1d61YDYeIptLVky0oS0vE0CKUFxjHTY95EXE7ZPkZSQGHxmFkm3f3/YY2GqoLg4P4fQgOBgkMBIOOjv8gRGvI6Xj1QxiMA0AhIW0whla3uehYUVFEkPQ0eeaq9gzxWjCvd+x1nneJOyIDut7QCjm9qjkourT1jwTe3S6QsIFATnEARpK0Y6uSzM2wn+EuWB8U0uUXVJ6wmnwUAxwfYTSRuPW3Zzr2Dj0sE0TBQWLg88mPEwL+wowcaTioPbF26LwoMnBZ7HhZTIuMCqEAKj5bdpLgKbJDAoKKgf4NmIHgqx4MRE73nzCUvdy37V3POB95x/j9Bdim6u7TiJUQJjbrI6YIAAPg8KIiACIlA8AoOCYuViIo0MH23fTeyp6zWpr5tYFAx8YYHtJjh+ytzd0rrChY+HlpHD6u2eexIL6BQal6iC5GjwdGMaJRzSyabwqMHCUYHzNq0dNQgKCgAf/LlGWQT8PkNzpNOLLFop+qwdzANYsVBDKwXdw3yPbfb6DBR+huKeZ0UqLt/1L9K1jyg+wL0RYi6BMQ9P7bs0AVaooRzfRkR7g4LCPmufu1O4Z33pE6YjGIjTP9tsrxHcgbi5Fhj2GflB0G3gkGO4SMXpaLQsAtMISFhMI6TtIiACuSKAQmMNhdcTJPodJrwnKFIFzbVkCPH7AqzvJvYuxrg4qH+7JypYQOcH3XdLe3r60+uC9azd0roCgi8Y+LywAO8L8X4dC+9XaMXpBQYtKpwYmIZRoS9ed65R+/Wt437kizlFBa0e9+/fvbZS+J2xD0UFx6qgWxjFz0auj7v2/voMCIxAbTD8BdJ8nQTggVRD/PbBg+a2jbDt80ZBwWdok8Gdzz/vaYGBR5ONv9/Bm6IOMaT2F5u8LgU414gWbwXIlbIgAiKwkwTsaM1d1AiWzDsssNpCKwuVrmC5dijuXDwvC/NPWs8MxQML05x84Zsfc04NjLPCWn1aDlgg9wXzmdLJgkFq8nGm57Q+UEB40cG2F/zNKb1fejkd5yzpYLrTaWcD7ePje9eiwhVgPAM20Ka1picqtnR97L2R9LzzibNgzJJd7SMCCxNwPTC9zwjYvqEX3DPS+73JBfcO8e8ACoxm05igbnuS2ocY+gC9VYWbTJLOlW8CEhb5vn5KvQiIAAiwpycUDiMUit/DtLdxQTF4FVBYZhr4j64+Yfi+7W2pJy64Pz7o/JjTosHuVxlsAb1rPrY/5v3jCghpYeALC6Pm6f36luc9b9J15QXT7nt98uezUYEF8802IScnTyG0ntuuZHvXaP7zLX9ESgDadBjzCPdPbK1dy8euGERgEoEQG1+y7wW2b+h7J0w6at3bBgRG/RACA68l1zzrEVyjTiEwKutOhuLPPwEJi/xfQ+VABHaaAEdnRift+Eybo6Qo/3pzFopJ5FOFV1ovwscntuG2r7n3VhQWwlMuTBco5J9MinaubSPERk9EzBXRxJ1b2BpzD7bTSAef1/P2L+3YFOx9KqvXCOnexzVpQ1w003nQsgiskgCsFh3EdwJLgEGdQ/ZCSmBUqskAthQXGFuDrqXRkLio/Zta9jKhFG2TgITFNunr3CIgAksRsIXAG3ZQtP1eDTgL9FkKSI8vTLOxMmvtWXvvC92c87cLsV/I2dymOz2oHfPFNh50BaNLWG9sCie4MpU/d40guuj/7ht3ZyqJSkyhCJygrH5xHrO9UYasFmnEEBis9LCuUXeT8TSw+TamqFL7oGFq70WYIJLe+MTUTrrudzMdhZZ3k4CExW5ed+VaBHJPwLanQCGQhcGeqMhqrlxhmulkrT3bGLC7Vha82ZsTf7vQW/ArcjK36bbjdCA/FBXM1+PHT6wrmBdW3kqTyTw5cWHvpcQ1KsxkOpWo3BOg1QIWiyYzkhqOJnv5cuLiS3ie6a3Jkb8Rbh9Wv/MT+HIeYdozn0N9cEp+fwCBcWL30p+dJSBhsbOXXhkXgfwSgKUihKB4LxcF1jRmV3ilaxQL4Q8fPu51O4vdnuZ1fAU38Ny7zBdF0vHxu7182YK6E1ZpFJlcdunsiYu3QhWSMnmh8p8o15D7BQeow3iX2WlrMYjWu0alxEW1vG8OK0H/ntcC44HERT+aXfslYbFrV1z5FYGcE7CiAjXKuSqwppk7cdETRcm2d1E4b6Z3y9sy0h8izd9jun3eeteIK/MU3DWCeH3g7rc8pV5pzQmB3/utOWZSOUAd2ollP8B/C52+2QbdB5Xb5qB8AH8pKI50SKwXFBe19Got7w4BCYvdudbKqQjknkDw9bCBTFyLirzmaLgGP85rVgbSHfV+D+extykXC15cyC0qF5crj4n88c9LsFWY96kpMm21INxUmwuKCwZaLSocLnxQXCSbW8lMf3eNgITFrl1x5VcEckoANcc1fNxaOU3+5GR38X0uRqgVIxsuF/3iolmovCkzWSEQIiEvI0iMTHU/O4qOExfsLSo4xA4YJ+ew6lRGen/f5qL2b4L0ai3vBgEJi924zsqlCOSagBUV6I0EwiL7DbUXI11b7LCMHfW6MAJpGCxGc7ddGw9v0RoRWJiA7X72MxMyAnQal/3gxEW9bkwNAoPtLUa6RNmclJvZz5BSuGoCEharJqr4REAE1kEgRKTXXcqu4wzbjLO0ggK5dz1a13wWPiVTm2W3XO3jrRbsivamOeVgjLlKvxKbeQKtj0onSOTHbMid2e5nR1A8hLhgqFcO6RA1FGqfvWyg975TVAw1XeXQ0D5aUTwCEhbFu6bKkQgUioDrVvZebhsCz3I1prlCzSAW2MXrOifbVSzTMSmsQiBNin9b27y44CB6rnZ5W0nReQtL4Jg5y5PVolqDqMBULu+ZA4iLwbYWVYrxkh1Y7wNk7ROIi8i1k8NPhaISLU1c7wAAQABJREFUGGjOX9RsKl8iIAJ5JGBrubqJm0Ae0z9zmicUyCkWZgkcE+OKveOnAgelSw9al9o0dbFcLqPAkNRDljH0bhn+1DsdKC5Kr82N0g32FHXqutjdaSTK/OoIsPtZjGr9Ao/wERty09WIA9ShYJ7pcAg90Y6R3nLdnJuzvs6t2uVbLw6vXoWolGggHw1k5MjcMEd4fi7MF6YR/TpEThWKRmDGT1bRsq38iIAI5IJA8kEqaruK0ZeA1gsUJi7hFxFFHxmODeHFweVlsux/LyMcRp98+tpKBf3AQHD4NOCIwNZCdk2M5RqmXQghMhnsQkaVx80RgIxvomqgje5n9+oHOG+WS2h4R/mRuWm1aMe30NaibtpX0Aq28TZ70C23ost/HSEnnI4hKAKIjBO8327DrfAXsEa/b94wYRSHHWxXKAiBjGvhglBWNoYI3A+6NbxAP2HjL47oqRtxCFGmVqCy1va1zp5L8PH73pOo1NpEAoMK/Nlv2UbbtwvpCoUb/wb+IVxgijEdYZop9FkUUtYFHlzhb1gZlgm0fnRg8fDBixg/9+sH54W8Tsxk/7UKYLGIB/Ou3yKwLAFYLULE8egQwuIwyLjVAh8GWlTZLuTZc8yvLszzy1Mkn6F7YeIf1uziwB8IjCZWhZj2MfHdp+cJEIoSsqyHi8J4LfmwDQg/M01EHuCDV7En6Zo2lmWiXwtxRboNAlEn7EBcBFAzbRTA9+mKYn39t5GYdZwTH2brXoO8Ifp9WgNq1aqpVCuGy1YgQCR4KwGTUKnurSMlc8fZuXzZs6bEl5fWwtI+P7dCqXDXSaJi7vtDByxM4ARHHp+dm70DiAt27ZpZlyg8F0wb21qwktBc7ps7lTum3fnFBd4IAdaMDBDlLYiLCBtDTPfwTm/D6tmM/i70qgSrFfJKALeFQp4I4GGsIb0tTEeYxoUX2NDMco2aLBbjLl0216P8uxWLhafh7vsIv4vVMxTewLRY1Go1jGgbmNoB9cXkYAsZk3fZyNZRbT8oNp5HEe6Vth19uxAi0F0j5OUlMhXIL3wjt9dOnwTfR7pEfcDCeqORYWHBq4SPA98FbBcSnfUu20vYS+uwbMe9NWMW8G4PsemR2/w9ig63rFlOCeCVqZAXAq53nBBWiT3WYAYYoeYABRLv78xaQ37Q4zj2WXoXD2nof2RtDpNvBy+fveP7coXK2rUZTA+FxelzY85ju+U7bGholzb4p3DiwhVY70BQ3LlzZEnOJBqy8tbmTTEQvNh4/vyFeY7ubQrhFuWuEzLzZ6pRHbjg+rk2Avg+Roj86O6dxCKQWasFCeBdwGYVJ61EBPE9gG/7BcRR3Y7TwX0mBLzbm9j8gdtF4mICqzxsupmHRCqN8HeqQsWXzF+W3yiX//k//69Ns/nfopbzm+Yrla+Y8lfKdv7Nb1bNITqWrlS+av7mb2I86J8Hta8Epfg/oQoxg6FeC6t4Fx3yhfnNb2YwgRlN0rLlyhHlwak5hWY1/+tZ8rH4q6h0PPWANeyA+7hTeyOI8Bz8d6VSqdwtLZKTNSRskShdYZUVBH/xF39u3QluwMsLeZs+LXK+dRwzIq3MA6c//OOazch/+JsLU4TrhILTDyEqWuvAqDhFYBQBfB9jrG/+6lconR/guWJTrGVf/qNOtKJ1r7+MRmJ/Y8z/948GzeLMh6+MeRvzP/nf43efTTsF3u1tlFUusF8Dz9p3ar8fPI//IcJXRyGPBDJ8m+YR53rSzAFm8EJ5h4WQ4/tN62M9qWaTtQV0STh50rI+0EhVJi0Xzh0KBtSkBwzrT1peD8OixAp3e1ioFv++sCjO9ripNrlT0cBt3pq5O9gTp/7ephpuj0uY7YHohvlJrmvD8ealCxSfZ7o/Zbo2ctyFmLQeNxrfQycnT60FNZfXyl0jZDOT789J+LWtGASah79pXV29vHcn2Df1wwy7RLnn/SyCyyy+F/xO4DPDCqjbmN6F1SLEfGqwXhkl8x52pMhQg+6pxLK5g4RFNq9LL1XWUoHGTVU06Dw+btq+5KcWQtxDPiAuMmle/P6fdus33zSneAnt9zKthbEE2NFP4w5M49XFxAVuDfPsFDVLl2NPMW7DSw4M5kaIHbfPxtb7D1CeC6ysKAjDB+sRFbzQy4RlvwzuHRSfX9gKjtxdJ4mKZe4eHbsCAvj21xBNhGL6/sHBsbnfvJWMP7fss7mCtA1F4Z53VkLBA5LhfXyqTjCP+G3H8swVUni3szvaBzj2BVy5A8wVckYgi7dozhCuL7n+AWMB5OHD+7OJCp8c96Bfxp+axydP6AP5Eg9rPasNutlYDUkPfPI1HyaAS1qBefkdbgnq8CE7TPaZ5yFGHAaGLHQjamuVniYxTP6LXdsVdBhwEpU6k/fc7FZ8eEOc8VFeC61sI9VofLdfWPACrSDQWrBMmGQRnRhv+mZ076AQXdVzLI7cXCfkwXUB/BTvy+bE/GqjCKyBwLWoSCrcKhjVOjj8rglQqTS1YnEN6ZkapXvWr/CFePLM7v0hrBQNVhz+7k3zC6x5+Xu/NcGPf15qT4sr3cW4dUH8FEJDIVcE0p+BXCW86In1haYh96d5rph72DnI1ilb3qoGIPe3DRr0NZCJFqY9NKcxnOZxjWK51QsLvPjnuZtwZPaCf05yU2glQldwHXKDcs/rKijTWrlMWLRL275Cj8vP6elPMdDfWT6Ehbs2KNB8HH0a4ulSEIHNEkiLCvtew+mTnuPuY8ynt2zXrn3P2WaTN/5s7nlnPSYsFBdwma1x5+bb3WMMgvce1+FnMGNPUTU8g20en+UKUZs+/RkisGS91lB8WrECAsHX7AftEXt76mtTMW8xEPvzBRQEb8NH/py+zkd4adFvMVpBMhXFFghADJzCusMCT4QOwPZpeuYAgzBqsby6cwH3csgPMT689zI/dsLABWKlQS+4j/LV1Ss7HgRr+Bku3dz/9oPWDQ5S57f34lvhQnogPp/mKsbZ8OuryAfX2wljbAwWethzHTqgTVKUZoA8Zyogbc5ScYGCUJCptCkxu0MgGZn6ultt98xcXj43Z+17plHLNgq668Ii3nu50X0WFWIcEJfuTaeY6tNyQM8KvNdPsN8jCAzOG9OO0fbsEEi/5rOTqh1OSbq24i5KjIeHt4c+1HPhcQUW7+uMY+W3OBfAbO6MF3UFPW606Bo1T7sLluWKZLHwVwdugxwcMnujc6fesK7QapPMQnhf+wr3nD5+/CNzyS645gi+sM9DfGF/8HAKgUnh8rIztDktXtLLQzu6FTz348d/ef2+cnmi9SR8zLJBf/C1sb21vDl9ILf0b79+XXOcrycqUBfDgs26TqV4RWAcAXz/m9j2wZAF1t2f1WoT7pP7hh2dDAr4cXFubL173p89Y4WIPetXURHWe7H47nPx3Xr/R9H0ngWtSxQGRkVM+5i+owrRjV3JpU8ki8XSCFceQYgY9+l/vbSoYNLwQuILiD3PsACCms0jjtodxWHvgeduCvki4F7YDbysQ9QOPWqdojRUX6zdRb5yPia1r1DDnJXRuVkodmFQTNTRbyRr8GsHNb9L35zPPYUFC+m0BDB4sZAWEIu6KvWdbIEftKjQauKFBue0qnDOdPYF9+5hWsOHxzZf53EMyynG5EUeeUw6WIuTW0Fu6d+9/dYhNpBOiYoeYS1sl0Bz0ukvO6cYq+o+3iEonme09OZfA3gb8AXWSeWngXVtWi7w3YrxDTtJbRtajDphB0IrxIYPMHEeYFLIAYHUJzAHqS14En1txVBt5rL5djUJftAqRPc9qP/WstHq+GwQwEuaL+wTvLD32d85yqYo5I12jWK5rIgWC16JtLVvqMZvHZdqzNszLSY4ovYBREQdVYzV2lt9qRiqcXTPad9OY37YY8dsW+fqaY3Ch/LExIzJFzuWoNCgyPBio5f2MsokbAk6ECZaOQb2nemnFxUaVXsmXNppfQTc++uTse8ud69WKgF6BjzKXvez7jk/PU16HcQn6FuD7SnSXcyD5EwDrYJLhH2PuL+sFqCQg7ByzYubIEC+A3xM6qgtx9fBBTbEKZlT3RgeSP/cvVRCrmW7inUE1pQ+TyIOMGsli/qbdwKu3UUbL/IITWn2UVbbyXYXeLfQLzfA9YxQuN9fW5sLfOAZ0gIiWZP89WLisI7BKlFb78OQGHDx+O14PybuDb0VExYGj52w6yo3DeVhMPJR6RqTLwqttNjy7UsSq0bNXMED4qpzgTmsG53Yzm8MiI0hqwYKNwuFrmlGv4Y7nYIIbI9AMMupO50ztLU4RIXFLUP9PVLMzxLRFvah0EBFWBOn/gkm215wUHyMSFYL6ygsQkwBJoWMExj1GZg7yXStwVv/GGLiGB/H6y/p6JgusDpUjXk/HBSIWlhz786dwNxBbcRKXxauJoEf7ocPH7MGUT2e9OMvxC+8sCnkT3gfsd1FEBiYzPstFyx3FdVigazZYDs/uIH2wngXja398zvPOk+9Ka8FRRnuhXVYh6pw64nsqPcTxUQqjllPW+j9BkRA2hriB9oayv/Vp2B9CZfOcys0Bq0afRaNgfiH4sL1sNeSo2qrS8shPFqxWQK+e/mJ7yx3z7L72UN0P3vnToaEhStnTLJYeKL4VoVYfoTP1AUs7fV0Wwy/T3oONh1btiybr8qNO00mm8tLWyxwwY85cJa96LjpWVvn/YgrtueQW+jl5FMTw9x9hm5s0DPRPlB84GoWKTDibKLZXKrAoomz3aML1MpFBbOB60KhUi6jhgM+MvBtZgFUoWAE3Mu5iZd2zHYX7GF4F9tdsOYZo3M3cd+zVmy5gGeH4VpM8DmqQVAc2rnhM4Xt9+/ftvvxT1+tvju+t1EL1wQG2HhuFBjeT9uv8wd9Xn4L22DpqDjeEBqdK1gzaNHA/Abkhg991gwUevoCzu2u6bsSFX1k9GNbBNIeHuPSgPuY9zWtFu32AVws9zPb/ewkSwS+VSG+UzU8rffQWqSF7DbGZdmuL9kKs0d4vI/xO5y4rzZuncDCwsJaKT7DDVFyA3bBsTvAiF1p0z9zxw+DN3mzMXJqNOh72BxQYOyyuED+a+AQYlqbCxTj9sEJi33/W/PiEXAvbbpGnUTokpY9dMAQ1iusFS/HwzmK/i48RaXHD2+Ubrw3t0tUqsB7LShoncD7DRPFhA98v125t2ivEJw63u+n+QwEyG1QAPCwFM8eYxcdhUYFk6m8bddY16krWDOuKDQu3V5JYaz3Aws9UYHuitPrtSwCeSHQ6aAT5wx2P+t6yJ4FI0VCnT0b0oLB79bYg64gLMq261kJi7GQsrPhxiJJsYXhK9tm4p1qtWoeHt+3I8hSVPDFn558bblfZ3sICR+gZj7gqVnAjVzhmr93MYTI9D55eH7pD+kuAlGelyeAl/QpYgloaj6PUSX0DN1zQGDsUnA10e/aQmSqcDqWAffBxP39P1onqtW7sMQe4/k8sqLCv8s4HwqznGfoIK2YmYC7RvYdieX0teByuYLe76rfRWXWD+w1q1Yb1rLkr6ef43xPUaEVznxe7SgC6ybQ7etBafzZuhDK+EfxfH7+S1gujLFuhFifhQBruUHVy8fT0oJvVAffpwa/Udj3ERp2N8cdwx6isO0Fnvs9VkaP20/rs0FgbmHhRECE5NsuUY+Pm9Yi4V/w/oXfmzOfqY+B348uP7suLsCyCTrrc4Eie4WdJUBTNN7xdQB4ny97igsOqLdLwRUeJ4sL9366LnQm1gn2GV+t3UNh9dt9giL9PvMs2aY4Sx93n668ztkodaaQ+rbwuvjvC+emvIdrd9tew1rtoRWIbBOD9R/jvmjOFL92EoHNEYjnPdVlB4PmnaHOH+/3rQaIGr7/OpdJKpAivBGnB36jvvht4gaFLJx8/0/t4K+jD+zawfVo1WyM3kFrs0JgLmGRFhUUBY3Gd1EbdMu+zHsf22k5cx8CvvgpLthvO8I+phYXdiU4liHz2+TQyZsM7FpRYScIsFYI0zEy+y6/PacR3vhYcLVEO8HAiYunFA72PeVzPVJQBM46gXcbar/7Cqq+EOuP1zx7BPw1wrzv2rEtDARipfoOr+9tuF5ErCFl95fZy4RStJMEXqPDiVkDCvK2kTdqNC4v2d4iGxUbKas4UjRb+PHPS2200/0h9t67+abtKao28shXroxYkrAYySdDK2cWFrZNBdyWkHbrtuMbGduaIb7M5w3uxU9xQncqhCPbEHzeePK7f4ikW6sPB69bmOOc+ccAeTwinvMw7Z5zAhAXIbLwHUwvYKb+EPMA084EW0ON3tB64gLvH2+hYK9Oleqdke5OvQqTKe+4gbHedoZrpjPKa+amtMiw71p8b6CvP8D0iURGpq/iziTOdnecfkfNmHM25I7OXtoO0rZtNfXC4stJWXHGHKBW+SM7WN77eB73MZ2OOrDnDsVyU9I2ddRuWpcBAjMLC9vzEy7o4WG9v+eiKR/cWfJ4v3kXlg/UoaIRsxMwsxyW232cgHIuUMH68+HMlOydy4bSbGbK9SdMZ9gkAYiLCFPwo6jUmNRjxybTtNFzcXRu+PNeCwq2n6C70w/QKBuNf531tSfy53i3SVhs9ErOf7KUyKDYSAsNRCaRMT9RHbEOAknvR7PF7K0W8IO6vHxunkezHbbOvWLnCoWkxfOex1nWX+C42z8Iuidjjo/serlDjcGTjdUzCQvbFqBkHrA71EbjzupS7l7wbLRsXaI4Bga7ri1wsH3sl8x7zCIHwutzJVtzvtHNbHIGDlaoIAI7RsDVeAW3yvsvr9tPyN0pi7cBx2FZa0gJjWki4zgZH2atyVHkIkACsKy2OM5Uz7I6DYsTF1foCe38/AJd+2/XJYrCAo/uxY8juDctFmxjbrTReABL4vGIKCK7rmTbDo7YrFVZIDBVWKTbAqyzIExhYa0WEDBFtVpYljcTMx8F2qZ7geKItjZ05/DlzMJdqjSIwAoI4EMV1A4etb5Ra+6l2094dxk7X/A8bLeikFMCU0RGB7WvaIvR4v2T0xwq2Xki8No0IS5eziwuXN7Y/exWrBbOIyI+70GOektzLsBqgcfNWpbZDvS9oWeOvZEmIXBzzTJIYKqwQJpDTOvrDtVZLVhz7xpys4eDUUo1g/hmT5K1VKTaqATB2xtrV+FTeX4eJ4vd+c2UPg7NRSBvBPhxwhQh3T/DdORrqHuCIm8ZUnrXR2CEyMDJ9qAb72H+MwgMKzLU6Ht9l2DXY7ZtLUpJGWgmcYGCve9+Nr78yLTPtmO18PWWr8e0kZj1ujo33abb/zT9rFmrMyw62LZf1AroWTlleb+JwsJZKzbWHWpPWHSLJSzAMUBL0YgPA3vT8g3fl6khXeSmusTo56wJsS+uRSLQMSKQIwKbFBTeyzBHeDKdVHjdbj84keGFKOcQGGxceg/TJ/ADPx2qUd1+qpWCAhCwLlGvzZ8hK7ZNWK8ShPfkhNC55KB52+l+lvWWdIP6t8kYShNSOX0TLBen2OtdTHuYIjxn6TdChHXG/IO1bNhF/ckWgYnCAkkNmVw33gQX1xPwsPClTatFrVZjTx6FGQQFoiIEtJ8xT1sRFajNYE8RMfwvXRuLCOlREIHCEtikoOhBRElToaAEWJhzU1pkoPj2DrZ4K0azoLlXtrZEIPq7kIXrAJPtKtt3OuHvxfTcWjZsOq8wEOo5xrbYkNXClS84PpJ7BUY2GSv4A3ERIpqniHf/Vv9wBLGNvmRqdq4/mSMwVlg41x1rrTg8vL0xt516/SCB1M134xxaKTBFyMwjth1h+5RtWSoItO1HRiuN7sqN+yiIQJ4JbEVQ5BmY0j4/gREigwUfTB84N6nm/JHqCBEYTQCWi9h2lW3Mt7DHU0y9Xu280LCiIhmb6umXy1//MwwK+fLs3Gy0IbcvXnyBQe5G52Thtcc48mOKeLzfQxuLH+9DDbgXhrruA1GXPSbcTNyR1m6tGDj9Qa3m1wRYWPVN6uNe2xxioobIQ0z3MFkLDAfA23RDbZ47HXrtK+bsXzodh5ZFIIsEKCiQrhDTEaakEoQLJf7ZTPD9t2/mbDpLJgi4+4tWDIarL9mBXj+Ai9QxNu1ml84JCv1dMQEKDETZZLS20vemqXDZhTj61G63P+/X/sUxhe5ZGzdhze+yhrmzVrAnKtfN7IsleoMamUA25oZgb2BjhDw9ong/b797am5iTc4rn0dmuCArRwoLVzjeuLWCTCtV97zkSI3aRkRXdjTIJrJgCze0UlCUsZE2g/34bLCgY0/qHvzO5Uv0c432FRgczb2g7Gb9EYE8E2CjPnxsWsjD1gRFnvllMu14R1q32HSxKZMJTSVqQGC8+pK5ja2f4P58inm4k2PGpPBocbUEprWRxP3GHsyaKOwfsdBfra23/EEBw4D2FS27sOI/fH6+/6cQF2+aX+B9f/JHf/So/X/9x3fZa1RtxadSdCsiMFJYIO6Q8W/UWuE/KGhnwfEyMEL0PtOwzeAEg//E1VxaalDKXFdDjSjnAZwLe2mloGAj9KT73FtbqT116ezNIjpcJqHlFzQXgbwS4LgCHbyj8JF5wDz4GuNNWigG2SEtCrtOAN8wBn8/woJxD4WtAAKD4qJlN+qPCGyGQIjT/Izdz2L8YdyUmFYZXKWlt1bgPr9Y5z3+45+X2s23uz80b5j3br4Jd+7SLXwCXtmeoaI4xLJClgiMu90CJjLllrTRNNeqVdOGbwEtJ5uoYe9ZHBLTGgVDHRneh2AYHdwHxG+kEGLbkPrBgakd9DRG8oEZ2Ncfs8l5u33uTxf5Bc1FIG8EnKA4xlfkGGnf8wW4bQoKz1C9QnkSmvv7kfend4+CuAhARtYL3R4bIQAXIvak9BTj69xrt42pH67HapEaNyNcd8ZaH5VOkCdaqTFY85+g8hkZu7KVu/gkKGSJwJCwCL4eNpDA/cPD+tbaBZT9sKtf2JtmLbysmPgMPosluDBdJa4U/oPAE1Is0PrAqercs3q/XV+IVQggum6xNysfeoUdrtimqHA1CuwNCtYf+iN+mPbD9OnVXATyQAAFsyY+KCHSapW7fc62+XzlAVrO04haUOOaL+QzJ7g//fdA1ot8XsI8pxrPT4h3ZgOuSnuo8zTlyorEhStbULBwYFCc5+k6rRXpawDBdAxxUcdZj+z617YSOE7vo+XtExgSFigMN5mswzqu3awBN5oNq/7Q9zdQmjU1U/eDJYTuSy3k1RZS2MVtrVa1FppELOxNjSO9g/942HXLMFgDxzM+/Qzd9fg/JpHrrwishwA+IgFi5gfSfkh6z9oyz9kakkrtrrBaAqjTsQWXXItId58yD956wVpX15XmaoEpNhFIEWDbBNxrJ3h3PqI3dHAntXHRRZRR2H39Fd53vmiBqMJFo1vwuAYKNCzY7Jd/f7+O+emC8eiwNRHoExZBJaygsP0Oa+vp0jPTC93daEzfTPvPkBGef10BoiJE3I8YP60yFFBp9yWut/ngwqxhFYWcVXJ0cbHR9lnSsurC9Yk9a460nwhslQDdnvBB5EfxHhPSeyZX8axtNWc6+U4SwH3r72EUzB6hwNeAblLPUTt5M2w00ye4z5rt2OwfxKtryE0XKForEN6lgLFLG/rDnqJcOe6DcuVP+CxFdP3a0Ol1mhkI9I9j8WU0REY4OKhxNj24AuzV1Ss7ABuVLGrGMxu8qKBw4bgSd+++0xNQfOn7CeIqcWOadb5sjh3Hy/hTQzGwKo5xHPuUtfyC5iKQdQL4ULA1XkxRMfRMZi3xrsCoNhZZuzAZTI/7nvCeRriNKYKLX40/FERgHQRYCMd79Jhx+96bFj6PK6e0Yf1g97JwAP94a5a31wafCITkxXuq52jhq7qWA/uFxQ3bZep8blBI1nPI15MnrZUVit0I0SvN8KCo8BYZ+5IfFBArPfOUyNzDet7+pXl88sScnj6fcsDsm0+vW1a1Zj9Ke4rAdghAULAHnRhnf4QpaZztn83tJGnms+LjrbBiAnSFKmTwYhSuHLhv2uhKs17IfCpTmSCAwv8pEvKCYoAD2S1Ucdmr/IQabtt2FRe4jRtby+ANLyxQE4tvBSY2Vq9sLT06cR+BfmEBNzw2UPaFbltz37f76B+dy87oDQuuXbWwgKioISm9EbD7BqtjwWVbwT2stFK0np3aVNThnrVUcHG2zz5OGm2jYdUmetZaKs06eKcJsLYJg4rxAfgZClr7fVaKnSaz25kvrLDgZXXiAkt7v0P//HgGmlytIAJrIhAy3ijCn3lrQVyZgu0qfF3la1hBNu0CxfT3wheJsOhcnfO78ZTfDVhQWr3tWtgqgZ6wsKM54uKw8fK8obNiP4Ar57yHdMTzpmXM/hHXc1yOPlExZueNrPYPK9zIaO2hmGL66vVvJ764Swqe5xHslUkI/YLmIpA1Av8DRinGR6H9yph3+gTFkvf/NvLJD+9CtYHbSKzOuRgBvLetu+8q5ojK3/N4Bj6QuFjskuio6QRcG4T3cZ/ZRtczv6d8OQXvNtZ9+nYV/zaxgkw/8br2uOksFsmYYsc4zcf8htCNdl2nVLyzE+gJC3PDBDyM4zFsO/SEStndPEskCNaKJg7f5xgTHAW75/q0RJyrPJRuZOwOlg3J79w5Wi597iXALmY10vYqr5LiWjUBuj3BStH+R2PeQ9y5cntaNQvFlwMCTkiwQLaOiQQkLnJwH+Q7iSGS/5JtLWaqBBkjKrbWrmIUewxSjPR04DXJzhAusMsjCfRRoDa7Lt0rVMBTb2tQvHS23bgLL1c0omLIuBuNO+lTbHfZPbB0V4pgWWBj8lWmj3Ha8NqcbDejOrsI9BPwo2Zj7QPUMCVCmrvk0ELBZKcDDbf4uCmsiEAlKzDd+5rZuuqw7NKBhbmzolwORfNBUHuvbq5eru0EsLh08Ly14SIbDZ1dKwpLgAVwVOic4DX1iC5NjcaErI4WFe9nSlSkkk+3LLRVahi4FSJ/J1huc7Tu1C5a3CCBa2GB0abtYHC1t5arNV9B4q2wWIEblLdWbHOwvyEc7oFluwrfuLp5t2EH2VvKmpKKt80WWlDv6mJ2iL5WbJEArRR46beQBNuOwialAILCI12xR6iPVvNtEvCi4upT9ITzLKnqXX96Hqz1FO6Zw/fxwrw2x/pOrJV2piKnMGCNPhpy71/GY7qfHS8qjjOVmYHEUEg03+7+0Lxh3rv5pmFPUcFW24EMpG+Xflph4Ro3L9S+YmWw3M3MLlddiP3CEvOQx94JAs4yFSKMWONdoOZtLD8pI89t6yy7Rzhpv1m38d5Q4+9ZaWm/UQRopfgMgoI+sBAWW6+4GJVGrROBIQJpURG3sPkKA6nWrLtwJccty+lqTFdZjHG0Dxfon+Ad/z2845lBhR0ggHdwE9n8GR0b7tZSGcb9zkBXP4oOdlDJ9zXCu1m1VCTJu/7b+qh0ggqsGtJNcX6KqX69VUubIpBYLDgsOlpbcPTpbQdnrWAy4mXS4huj80OQtQbbtFZ4F6iViB73AWS8vQHxFvxQBDUMkniFfq+76EquZPtaN/jwsMHixzSf45qEEhrL3Jm7dSwbZ3eSkVmTdhTMfoGsFOmryYaN23+DplOk5VUQsJYKvBTZuQbbwRUlsN3hkxasMF1zgvf+6Ypcj4uCp7D5gEhg16wv0JnnEUfPxhjBtrLHNuhGrjlOBbuUteEz80MW1t2vXMyQv2PkD7kyR2jHd/Ij/M5FwguUyERY3EhUXRbaV8SoSbEhKcQujvqGVeW2UfTikaznSG9VWHUvVT5epDqcN+VWUHyG466s0reFP7b94MQeq1DDdRtxcroXvBW+H30a6mGdF/IO7e/aUpygcfY9ZnspN78d4qasXhPAq2d7wVXW2DYVaE/BCqpe5xrbS9VKz3yAHgjpJozKqD289xuIvLXSEyiyzBIow2qBepBP4Dhh2F/P51jBZkNse8HxLhA4PkQDoiLijxwGNuZuI48PIDJiiI2THOYht0lOhEUXwgK1iCxEbjtcursa6YiXTEvA47Mglmw+3IeKPTbRqkDWh4e3ly9wuXiXsVbAIhHgw9LCPbDPdAXBof3glMu3bNL5h/Gfx7EdDBFWpQcQFwH2b8h60UOkBUcAvq01uD6d4udtKyi4vqBWCpdlO1MbizSNoiyjtIVwcFCzc/unCPcyvhsM/D46K3fNrtCfnSDAtgcocL+Lgvcjiosyin6c4zfDCxTKm3lunwAh0WEbC+Sljek95LVNSw2WFTZAAA5QNtT4t5qFhtv+61y2N4RN3Lx/ggrceeDGwzE5MuMG5TLhG2zTWrHKsKi1AgLhGOn4GaZ9CoqHD+/bbnkpKlgo9BM5Uggd32+ihuOABcXbMKGfrjIPiiv/BCgqkIsI7SkSUcFCWBEKYrNcGvdVnmVX7ZMvAqsetDVfuVdqC0rgBPl6eXaOF3YiKl4auj5FpUI0enbCqOmuHRtz19yyZmsmkAgLVwhf9FyrbMhmx1/omuW6mi0nrl3VDFhgLFNnVWDD9Bi1/lmxVsBSEaLQ9x57A6NgaDS+2+udque64gqGaYHRvP/n1jWA4sLGseiNo+MKRcCLCpSvk16fdkVQFOoqZigzqDbddiiXqzYJRRUWPdfj14tX5G37Gun8ixFgrT6EROiOppWinrf2FKjc7EzKPfLIys93Me1hYtuSyqT9tW01BG6gdr/OqJYphJeX7XA8VfC2L/Bl21fQtQuhljZfc8WWQ0RbI0IWrBVOEDyiyKGo8D1T9QmKNK+UwODqpItcvIq65ti2z0jvq+WdIyBRAXfBzs5d9rVmOBsdLyXlkPjaRXeted505B204LWha+JNn1vn2z4BCgl8xb+VQytFzdIrTRYW3Ad5CzF7ygqvW2pHRCRrDzcwopN9c1aqyQt0mTOmenRaKJperVB3ydoTjMbIBCwjlhbKwKiDnGjybSCyYK0Ivh42kNRH3lLR5wI3rZYZ2yk+6BpF1ylYLfZQ69EclXWt2w0CEhW7cZ13KpfuPWfYzgwO6Mt+27LK7tKr4ZvmFJVNzaymU+laH4E8t6WYg8ox9v2YXZ7DahHOcZx2XYDAjd+52n0WeLcdembZ5Rtu15gXFpyzEnwbiG1bK/DxqEEMtMjlfvPuUm1QUg3jA8ansHsE2PsTtPOp3J96DR937yYoeI7L6ESYlV6sHLJdcuKGL0qwrsdJZvYx+wDfh1gCoyhXV/nwBOj2hdIge4q6wLpHqAxr+m2ar57AjZul10vX7ntR0rM4LJjOXq3Qsq5Q8IJiEny6FkzOSg87P49tfKnC+OLx48PGD5ztqSmJlw9LNC1C57IU0cpAgePdn/B7voD9abXg8Va8YdT2+SLQ3kUh4Aa+u26oXZSMLZAP3+/EAofqkBEEslIt5CuoUoXwEanN0Sr3/fCD0bIr3fDhse0JELnYx0SB0bKVUDnKlpK6kwTiWXNNy8wXv7XdKrP3q5Pv/6kd62LWw7XfHARu4B1T4/7+5TnHsUO7Li0svL/nF9P95oZOnsUV7gV+3v5lb5TtVfZSdYbRbawYQ+9MM3X7mjTU2mff5b0+2ecVFQOcnXjjx0hhxwjQpEzTcq9dzo7lX9ldL4HMGJxdA+6e29B6s72x2P33mgPj8rt09+475uHxfV8hdw8JiSQuNnY5dKJ5CLxO3N3nOYT7/vjnpTZ7vsLi3s03jXqKmhfgjPvfuNEt2ULhMrX7qxAlTG/HV/m9WayGZK6fcHPIIS5XGHy8sDicTIsWH4gA+z3gdV7JaN/uhP7a6wM07QoUaztG1G4gR48kKq6vq3dXv16jpSIQcM0QC9fOwrse+28/n2W2t0u6HEf7ucR6EQVfSzp4WcW1VEcfq6CoOMyNxYQFybmer96n+y6mU9FcPYFkgDzEu0xNuu9udtkaHe8KFcVhZ/VZ3XCMzlpxdfXKtM/PbS3Qwq5H6aS7eNtnH/sP3dNp1gr7MucAeAjszWmZa51OipZ3kwAba+OF3NrN3CvXmyKQFYuF73K214PSpgCs+Tz+e1vDeE8+UFxwDKOk6/EyB0TdRyGO4iKIfh22/X7zzG2lljEBexCED8oefl9guY2KrlPzhWkvGu88adC+IpAmgDYXx7C417Hu6AdB9+RH+J3eruXlCEBYcNCQ5fxhfK21N60umiT3ortY9PjecezbeJksofBuwzJxuCjO2+d2qW/kVrdtmZkfaA9xhFPjucILHeqcLlArETdTT6gdikqAjbUhKiLkb0/WCneV8Z4gC29wLeq133S+ti4s3HX9vMwu8NGjyOXlphGs9Xy+C13//bYnc3nmMt1lGSAu9qy4qIb1aZVY9gD3xwmKED9tROU3YPuBxRxtVfbxfd7H+nfMTSgOCg2+U17DpffvwlMsK4jAbASmjGMxJRI25m7je/YAIiOG2DiZsr82z0jAWiy8KXTGY4Z288cvKyyGIl50hevbmEKFtfNzBYgK2/MHDlpFwanthMVK3KBc2uLzC2+teDHtRY+Xdg1ZseNVrNIFyjP113xaOvz+muebQCcRshoAb8RlxAdKoagEXJeztECzRn8V34Zto/IWC7o/9QWICwbmsU9csM1FDeJiikfBoKBg4/B6/cA2Dic7Bn7DKNT4fcSgsRQZ9yBe7uFYjo30obVmlCE0ppyLcSnsMIEZxrEYR4c9RcH6HmB7G9N7EBdtrIuwrLAkgS+hrFpbMo5ew++rTmY+rTHzlLw4+c6aMbiCexR9ZOoHBytxGTqPY8tnlZYCNtp2oeUXJsxDbmMvUOtwgbKMMVL6hPNnYpNz3wlcYlg7EWUiYTlKBLvoY+1OEQpVOcKupGaAgO1yFoZwfuPK1aRwnIFkLZUELyyePfsQrk93rgWTi9VXsFFccF+06dt3IzUfjzqxdblNOgh5wO0UFA3X+6Df3747uA09CnIKgrdh6XsFoRFbl2H2nohzvYNd3oHbFHuneorlFiquIswVRMATqPmFZebsKQqCook4foKJjbnrOzKuxzLYph7ba2Mxdc8JO/iRt5dtYzHhFPNtcq5QvcbgsxztRAVrUk5Pn5vLw0vbS8Yshw7tk4qLNfoUKUsHFydfwq7R9gVetq1J8bqao3u0KB0e3l5dLVsqLdZisXz3wJOysdQ2JyhaKBAfpSPC+gusO4bAOE2v1/JoAuSILeHorVrrCVx14KNeWY2108e5c/NSwm/rrlAp8GVcVLq6oXbd1Ku3U1tytuje3b6rWaae3xMW6I/vN/ss/PzW+MpCfsPsdwcdgOC7grvcxJhqmBhq9u9n6Ha8ZCwcut16Kz27RfeeA16s2P3dH1oxDurfthNX8RvMyjMnMu5hFS0ZF5iHGNBXVgxCUlgZAZYBIC7eRYSPMEVYrmMd73GFBQksJyxK/gNwy9bKe7eYBdOyusO6eOkhbb5GZp6Ie25dK7C+sNE2wwHMwKsKvs0G4oumxtlFb1HgsOpB+fx5L2Pnc7zsSOk+whXPXWE4QrT7mF5gOsXEUEcZgR+sn2Cf76GGosWVCuMJdMEOXcvKBWo8Im1ZNQE4QGcl9BpwF6QhTe/b2DXvg3GA37cfnzyx3/HetvHwWQAbDvjW+EAR4irA/CrbvoLfV3b2UqlW7Lmq/I2J7TySdbd61gweyK7aGQ++pXyHfwArRgiRQQtGyO0KIrAKAhASIQRFzZULWE4IVhHvrsaxnLBIUeOLYYYXUuqI4UW+YDq/6VSGt8y55ob1mcMAcnOITrwUaab1NSuraKi30kHxHALfZgM/W5Oo4OXbxPbbNEev1FqROindvGzIqMUCL4kW0scP0rt8cWDeC3iJtPDjFPucYPlUNRQ9NEML4MPxKjQI3hCZ4RUsd2aoPDycQK1ZiIAXFkUZJC/1fWM35NbK4CsGfeWan1chAnzorcO32ge/jnOWARgPvRc45+9LfIf9Mi0+Npz7o4fn/GYdH9+z32NvyaDV43kUUWTwff7Ifd/CaVb74di1RgTGEjjGljqmI37zBssMY4/ShiECKxMW/qXizZ4L+2FjVGj6ai7TaAsvmzh4K3yJgu/eUI5nWOHzslBDvW7S+JvH8iNURVd+q2zb4ArzdIOKJmaFXftBLNHHdV3BCyd2GbiucywaL0fV/F3i/vTxqBcE1tHkeYL4H2HiCyXEpDBAgFYflJU1XsUAl3E/C1KhPS57O7y+YvMeeyttzkn0rM0QFawUtAPjzdvRyQgGvmJunI2e30VW+FFoeAFC8cF1dF0erJz0bTIYLwfwYwckKYHxAb7zdfOGCZcpL4zIhlbtIAFWLuJ710DWI37zsBzLm2GxG2FlwoK1GqyM4MsCPVEulBr2p93GS8Zc2cFPsLBUiJGW24uIA3YNS/MrX75sYLZI8C9ujmq6dHBihb6nCd/JblCozQlwTmutWGWj8cF8uNq7iyz2Q/67N3umzNZguv1v1Cy3+ALB77pfp/kQgWhojVaIwIYIVPCQ0it14YqqZdPpLNmf296MlrfKL5ucVR2fbn+YuCHtJYxXdYIx8bA9RboXqnECZPB6jxIYJ09aFCIP0KA8QGVkIHExBrpWz0yADbdRKdkwb5pf4LVzguW2Ha175hi0IwncwHszXgUKbw5dxlRMH0sXAr+wxDzisextYt5AKwNDylw8bxTGuwnRrLuq0OsNCv19T4kz5HY2oFt5mFPkrPz8c0bIcskMh/RuvBn23ZldaA7Gy1XtKua44itomjXH2bTrJgkkDbhZ0/4q6ZIc78K8BvudHtWbHwoEtHSva6JAmGWy50/DdWnyx9KCwRHC7TeOrlxXU7+J6di0XBQCr2f6vs+VWyskPjM/xEF7N9+0PUXV5opAO6PnaIRB8+MiXNgIi2GZnqF6I4B2V1CD7Pz+fQF/njz5dCwjknoWi9SopvOkYdS+Pdej3x9vsYC1ooZjjyj01tW2gmnriZxZGpHzgM2HtjtlMOHUfpvfd8Kuu7WJLlDIsVygduuyK7cTCPh2FnO13ZsQ38Y3uUohCiNr+d5G27hZRcs4OCmBQesH3aNcReCRs9SPO1Lri0jgxuqFBTG1PrKD5b3PijVM7DVKlY9z3D83um7kwmVrYXwt/zIipdd7UmkFwsIVeBfxia3CfYnm4VRD6TmQJrt6awfNvtaMyxfiIsF9DNh2xbF9McXkG/I06+oJymehJ3LQ/Z9fl7E5xcJLvBTusb3FYNo4gjTWhW59VvMwmOxN/o42ebKinEttLIpyJUfko1y1K5epcBoR68ZX+UovDETX2fjJV3VCfE/tdxXx3cUYHC6EfkFzEViWANpcHCOOF5hu37ouKywb7U4cD1eoUsyc+v6qF821d2NapCBPsydfEqyBcC5VR3awnUUTg+PYgBsvzpf8CMwsmlLpoFBirQ4L9Lbv7VnM3qkaIYqAVbpB9XrTmGAhsNaKrmmszVrh8sc+0GcUOUtcweUOZUMsN5iTQXuLCDXwze+jf2oKCtQ+BBAcbUz7OMv7bMi93NmKdbRcoJa4nripFFZHINX50OoiXTCmsuvvy1caLRjN1g9z7fTo7tTeemKWSYD7XrMdISsC8b2vL1tuWCY5OnYLBF7b9rjrPHEDd9YFekV8gO8ihYbCDARgsehecL+Fa2FShXE+3MtYLJiOXruAz0yTv5cKJXQnCnHQq6GZIzI24GbwY1HYHzP+8edjf92rCinrSTQhTnYduOfTPnI/CiROS4T/n713B3IjO9MFE2xpGroyiDVmiLsRNwoyNrrWIiZiJ7rWqpSl8ljXGnqEjAnR65LXHrM9el3tUTtGgx7X2qJHWcry2DHGFK0tWZNlXbRkXNCYbVBSs/b7Tp6TlQDy/UA+8J+KrExknueXQOb5zv9y3741pefmoI17Lc78Cn27j/net/AS9e9Yovuf+PwHTSpe6lWJNna/kT6JClQjsEujHUCg86pQGuOAGH3sOLEIfWe0rcV92Fqchk7LYd8RuFcvsVALlH5Mi/eA8msuSvYd0irGd+/He/c8VlTGNsJ0hCvlnMhnlhCYgqH94WTifxpU8oBwWVkRcmD6EZrQ+/3K8N88uCeanGQokprF1JnoZpYuZpHoki8yaYlDZglMZCUIWnTtmSuuOWjrHg8GB/TuFxBlMhDUJTd8fon9L3Fthr2kEAIgXPPQRznMiQCd2knqKwIjNTDzLO7qKM3CFxaYvK0xlFx02qpvRycYGVwn2xzIXhCoAgF6ikI9hrBe6MW3KqrubR33fvrBNwQuLLEIQWNcqwYPrtC11MOBrw5FsaZWISpvjKU9ReRSzwr1gxKYXKpUepBGamMM2lPHHpdBE4GwfUVcVqUGBe8YVOGKjJuh63r16rXlON9kV+8yDerydHmrx/dSqZuZ6y3e88HwO+hLgkjY3PB5hr3b4i430jWqi6Hh41I2QY30XBrtKwIVCn2LQ6TfCRZdzg79xbPilTVfMlhE/Pk6seCCU7DoRILBrSPJ2EWiz2YC2JGeSze7gICeL3yFvjKWAmNg+asMXeh8A32kVyiP7YZWofmxUDIG3GVXdAJ1KKucOpS7dJZ40LyjfUIRKQr7QQnM9dV1LjyM1xBtL5KrbFTmgPTdJoiutbTCto+iqgjOMT5HmRR4g0p3eVumGSm7YwT0Koyz42Z71xwkPpIqRADSxValoVXA9q5VIwjUnm+0E5BLLhRxwen66o/BezKSZBiykbTf9Vg16VPxMbCoRlVg7Rlx1z2R9nqOAMiFgyG+xDP+APuLng+31PDumck3Hy5FJt/h1ku7adUPCbpJVcZY8OhT+iEBOwv2sciE2ohX87qsNStCxqA9jFGR46D923g3s6jXZt1GhYvHQcKLgC8KShuYzH0Krqcd6PKUnGgcb9w/OfLDSsOtW9clZkUF9wvrEJJ6jABjWTAFiz1dGWvoGc4ufzocj/Riwgwfb/hcfzF/hdgQz63z85eW634H28Tv1XvDkIws+yalHCHbQhtjktRnBJrzaHYGWN9hO6aTkz5DXGZsJvK2i0oeUoWpaKRpdoLiSKYqpB90l3px8YbVzbHZ2IomFwWf0VbCtj/PVocmOMbbBMuewqUdV0WyqImQpJEYZc2f1qlAlStKJxaFNflSkbYj1aB0A0aSVNT2I+SZap7WZ7neHQQ4wcB8+EmW73Z3RiU9FQRqQMAQCzzjA63+Gpqpq0qtxmr9bDihQ4uLyeEz2/O+mlr/H96x95QaET57B6FnvX6XDZXHRjokGSIcOqXxfMfxszlWnxG4rqnnCBfV1IyhijhYdd0AqbcaBAbaVfJtvcbbm52F1GKJ9+Upzrv4/TzDsQfV6vlmvn3/7BML7XaORs6FiIWeiBt3sUb6UWhiresiCXDdt9TnV7YWiUbLCXeR5ewHDt3O3qdEJm+fqA7FflAdagpJSpZE9SmjFpYlf1oetToG17nun52rmLw2z4dWbCKzmSjkuSUWuraLN66pd24OZN8LBNxejKIFg8B8U1KFCGDe2qqEabTqj5mgt6pzGTpjFpdoK4Kk/PNDJeoMxxd640LVHMdPzDuM7zOON8uYuQDHd3cT5MIsbKLvNjZJ+4DAYLfEgpDSZhOxsU4tuLEHuTjH8ZWK1r0PeGccY1hiYQUr4xkLR2Xj5JZi1bLSD9Y9e3xqnb+Y83AO/9TTlMBwzBeX5ng4flGkT1SHIrFwMaZEYrEhataqXHH9ST+v6yMZ4oM90ec4DdZAyCLVoEItGRUtksfMD37dD+rf6hdLZ4y2Q0OXwxgEsOIyw7frIPP3IaYeOS0I1IFA64iFDpJn7OjqGHOddRpyQFsRJu2f38NK7Plmuww8F15o5LuI4+b7iBvfJ9yzTsbBWuK4KrvCzb4kft5c2Pyfy0lifrkoCJREgERi9jlUoX5mff3Jzy16iqJTGK9ktb0pfo8j0d59bij+LGtnYSa3gV1AEaj0g4IPNW2MfGCCnRWpDpNursbkczsb6gNJQlZszIN7PB4V6upmocDDVpJOISKVs4+RhCFEUCj5MKtQm+2kfX4DcqXT3BzIvtsI4GE4wQicbo+iJb3XzwvMrST1EQF9f60hncLgfYBnaReTWTzcWPhysOo6Dcaj1UsMSeCiAzdK+8eTB+o9czj9TEkmTk6OrcePH1mzp/9snZ09saY43+QihZLGiwF3cCt7fOCpse1YFSqMp46T9Q0X5rBdiKeoO3QUsdA3SE2+g4nsXZ5cRybadBV2FmyYthbqATewvoCI1s7VGZN5BW9KUCUqYsDNKoynJUousqaNB3fWYlv5lLSCZ2OipNp/7/CFcJBGGMx9NS6BtxqKOhGSwpBYId0UVUmLql7ONY6Aw4dikxOBxhGouAPCKyoGtI3VYRFHrdJjBZ8GzU0aLOeFJ3ifDB8oAqB++3ChyVVXToyUvd7AerRVryZWzJ+2UXreVAocpny07ohSU52RdutD4EdtY9GAKlR4UJD0neHzJTalVhi+ts/HYWLhEogiweQUgPrBQ+NhTqq5Ol5K+qHr4yoJVaJUurUutKGy/znjf+X5isY2WE6kZ6S8L4M8xMJILKoiFqGVMS9yuJ/4D9Dp9DDysjlp6kkjICZ/eP/Gdc1HxxzIvtsIUFqBSbAYbHf7Nva+99pWulXjHA0nqj9dVIfie9lEEFeD0O9ZLjDg8wU2V53Hv4CEmBPIq0hD2t7kb2Af2A8OrEkDzUuTu0Lgk2aMt2OGdzrEoqtWKyTR2Pt0Ryz+ggdKiVX9MJKc5PKhZFbJw9dyHeuHHlV8KLnAQ+0++ngBe4tRrnqYuYQ6FMkNJTEcE20NshCTqohF6OHuRY5ZBwQKHqiRmehq1i+eli8oHpJWBC5mF8qoL8giB91FABMJTiJ2k/Bd2qe0WoYCje3TwPdmrJhGICmnGl0Ys36W032sn6Jfn8vF5TGuH5ghdWZ8psPYh967k9BpOewbAjDp0UOaND00eopCH2xs77F9Dckfj/c6BcRCrepD3YYT2SKr+mEUjZ1FYelHuDJNLqjLyck9CMLDQvYWjMJdgjidktgghWwN1OfNf8ZAmm74qkjBqpgR/W1WCvsKnoq0rwjlNf0Kec4IXY0/1CpQFPdfxOeSK11CgAbb6O/DnahA6UkNvj+SBIFeIGBW/M0ztSuDupOmj+66rH+fIBVQ73KV2vFjrSFgpNwqM3+/Wbe72nd+FJLIT3beuDS4MwR0/LX3mA+Gvsw7a36rIW24faov0Jh7spVpj04ExEKNWU8eSxleo6JDrZbD+A9VpqdPH4ftLZw8dRcmTiGpCYkNJ9pliVeeftPThko/t7zNclot7EARrs2LG5+5+sSHbl53u4GL2YF1vlGlfOwuAs5Ouq4nLVYHddHL4GN+smXqkLLtRcAQCzNRb29P13sWEAWtX2YC3i0Xv1ekgqv9Z09nMMA+VCv/lFQzKKrJl3Xf5CICY2zoNDEHsu8pAn4si4O2jA6SCxd9+QobPTy4+2zMbdzNAgekDwhGN7S+5gOFEoLcSU/CjeoQJ+EUv9KTRKnV0VC9fPA9P39BtaRnmFh7MCaeZ+4nidPAOiZx4gp/3nRiHyE6qWdxsn12+CRv8UL5jSpUpKtdGqiBGsYaZN/6KhlGBB4SEyf3RZe7evtOGSkis7iYTUasM1fxsNuNwbb+DvkroW/xHT2z/gaVwlLPgY6gLMSiuht1N0+srs7yNfmLpMbDUvn6dlODIULG1exqeYPn+xu8SxdqwY7vVtpIMpkAtc7zfOtJjcWxCM0R+J7De9O/SbuBVlppAoFbOOUZWAdcYNWeTZvoxVqbIBcO3rHKfhEXLrDZaxn25MOaxEIbOV/yAVR2Vd4YE1eiDsWboR8cfPA9nT32b8+tda69ImW7XSROSLklKbptutijh6osUgvjqi9bx+JzGWIRmWPgf2mN6llkHpw0L5RYAhJTMKT25cRkkdMdQkCLZ89232X6un+7+2alRUGgSgT0e8ACQabLWfNcrcKbvmAAAEAASURBVLKJOutaIAaFn2j/+BI2InNFKijxNqTCeHxikDuzEMV3WdbNlKlzHGl16z4cpOWT6x1HwETfbp8HML5j32E75kJex1Eu1P11iQWr0Kv6haNw624wYvXFxRsVLK+Q9CNqOPrBTmkDV0ZQ/33rE+Upys7CWEmcwG4voRZ0TBEvSUreFVR6iFLjuroqJPWIGlbqOdiGRObR9hUhvdLIbEYEnkZAVGG90kxiqY33LrNgG9mwnGwbAg46dD/vd77MIEajI0zAXEUsRuPjMlV1pixihenwY53psnQ0JwJDqBNxpb/oeyRnc5VkN8bYi8UrVR/JAiUTR0cP1Wf1XMARVZ4o5eailiIdiE+RJ+3y+RLVrzaQm6h+ybmKEfAlFk+gtTGquOZS1dGYG4t4p6jExavgGY492GDMS1XascJrEgvVd67qlzByNpIFow5VhfRjDVNNLriiojxF+V4s3ByeolzWV1SSQsLEB1dY/7R2nVLDzNeAUB+O1UpSCkEy3rnyPHDfgjjpNDcHsu8uApRW4CG3O/eyodXdoXLPiWi9UL3gpKX230t3b5P0fAMBzH1bmYydRaJEuQ091wtFdP1u+kqyQKm/43yhSAWJwCYZMNKYw8OJGoXJk2XPOUCTybzntA1ik12RtutE4NbyVPW37YtZQmPuH//TIrl4j/fu+VoAyjoxaUndW8RCq0O5fAiVVYeyMQlnKjqJj8VIT1ooCQlF5nZj869fUPmKqkORMGlCY81fXazXvMNPRgUsi/tYYwCe6hFKv4S4CicuZnd4M3fTlLObZrZbGY1sdXK1utq+2MMzYmPRw5u6OaThWJ0xUoDNy237bBaXpoeHKkI21XoNSVBEYIMMGCn32vuFebJsDQ9+PB413ANpficI3IONBZPW3NhJmzka+dd/G1xpD6YqAKVWRc5RQ3ezbhELNRTtASjwCFRwfPQOZVb3SwXLi2pfk4vT018pcS2+XA+xQjGPyho+B7UelxIZvhBy90m3SWkJJQVrthbhRnZxrAPjTfSKUlKTHCvvQ1aPUCFphZNUr1zrBgLQ87R3Kq3YgMVf3aVO+jWibnUvWvHGcNI/AmxJ/UZgqLUvzAS87aM10gqzuBRIKEgUmLCoxE1JFHFoiIhZ/WcWSYJAmxDQKto3+N5O29SvcF/m3w3O8fkbvBIOsKno9uHrfT2OJBZ68v2OE+fck28ipSfgnMhSosCHmuvWZ7wZuKGFqgfIhZN6sxAsj30yD8/U/BEZjNSiLPmKqDrq1EHESZvn1laUwpn0S8KIwNPsMMJFtbSCp9zweTnuJgJwwDhvpOf6OUBj19GIz36oQ61ALiQJAh1HwKhCBXGGWj4eQ4C23hchQmFsK54//12gZWBUotTwdF5FQlo+Xt29STe6Kb0sgYCL+eZ9zPvsEnXUWhQ2F2do4BLbQ7h9cGptrCWVRxIL1TcdqbosIdCqSvUQixCBoVcLvbpCN7R2Cr4urxdS0dJt0uCNuqqNSS00SzcrUHHjNeQp1SOUJiJUf1Mvk1vrtRhtx6HanfMQv864WhKsUDbU9eHwULW8XF411IPdNQunepLKImCe7aOyFdVVHnQdyUzY62qlqnrNe4CS9iDpZz4JBReg3ry5VK7clXqXjnVhxsc84c1IOLb2QeVyIAjsAAEacPvJ3kFrZZo4xRPj5oNlfbEPnqLiicUKAdGgMkRiUVZqQYNnSggYF4EPp0pXPPQLaMMN7QXIxSThW+DyWlk/5CYad522FuZFsDUeqH5lCXhnVpxMPQmYqEsB2dLEMi2/XG89Ak6jPQwmiAfoBv3Le/uhDtUo6NJ4bQjo77NyOYvJt3m+1tZeRRWbKOEjbX9gSAK9P5FQOM459i5ag5LX+ASS8KfqmNJrLjYpL4HIS/s7Mx8wdYT3lb7bKxq7VNNjBHQIAYzQbvMo6SlK95EePp9RPbnN/S3bN07zI5NyzfrAmYMQfEFyUcZl7IltK2Ngqg35dhcVB8rSD3u6oaWKEh6QjPIzx2Zj20pcicdE/QbShgM+JLPaHgQVhdozUgs+nMtgFNS9cUBDNGikrSUjkRmHV5/Wctx9MC+ULHlZ6vra8wsPVXAX/1j+dxKBtkgrDHhUh2I8iyWMuEfDz83p3u0hIZK0Bwgw0BwitHTC5SwJkLGzI0lgkFg+6/EO1HcKhAJOFuge2o/TYaljuoo+fzGPvZtmwYp7qiTnfpfG1iwXBIF0BEwIAeQ85rxIqfGnF2skBz1FgVCcovE/YLvA+3nKc410puZG4yUWbFgbcRdWh9ITcEoTKLXgw61wXWlA6LY4uedkH+nYfuCcJRRzea2sjuzs8al6YHNcXM0xqaqVrMB4LhwERqtBZTLc9haqS+YFYPq3tr/1xdwkWUoMfmu9i4z0vVZIPnQAAadNfTTqUCsacfc4iVeoam+ur3RUbZ1V1MZYFkzqmVlFhVXXoZ/rvpSB9k0reIT6ShEFSidIKugKWkkoJmfYHytSodQm2Rc4/GCiJymqNPMdzncrN0rL+U5hnXzXtRYDNQL512sEGHvNT3bbxwnJhYs+foWNi98uiIb/EMGHPqVYiQUHqVf2L/HwOKYa0xR2BUV1tSm1oItXTsCPptNCwemyAs/J/vPzF9bqh5UDFnsRaSugg6tw5WY8eZC16rt8A9/3N0kTH7p8UDNwXprNw10F2Y4CQhAOAqPdq20Z4kVUaVzNGhF4RJbglHftmWPXHMi+mwhQj7MNthUKPf1bGY4OMAsLqUPBqLvo86Sbd0V6XQQBzm8ZdLB13xVDLDCxPiwysB2VWVvkQp9HjCsDd7kj2j0NOb/xU0Ao9OfV0lNH1ALI+o5s3T3SY5FdjxGgOtSnloMRniGe2XnbF0VBLhyqQuGRBiavPFq52PcqJUss/KE63BX2frQxAecKR202CaG2lNcmeAtA1+fs/1bSwVXWHrpbmbKdILEgAaB9QqBKlK1oaq5AhSnsUi2j4TYr50qSEYGnPfQ95FXpVrxB+UB08z/9ZWMuNmtj733vUDQW7a/UAvNMSXuAgHE52/bVevNc9yUTX2BR7xHeV1BFBKngO8Fs0FBQHh3vbp3/RSapMHnS9qqOuwqaPfoRemqSeo+Air1G7RrO9yCU68iAvY70s1A3U4mF1lm75AS8sPG1nvBTTYkiVIpgXfe76g25CYFui7EmKLJFUrp3PFhLOrhKKVUo3Rb1SiklYeLYqkwhN7ET1muPnBHGmGy4fXun2kQiF6ojsWvGcwgM8LzEjHKx1QhgJWSGrXFPUFEgGXWoffAOFTV+OdcfBIzL2cWi3fNXs3hGmxCmMDlQRADvMbVXV+/+rVZLtWAWnDH5kvZB5uYOgvvxiRCL5u7CjlvWzoYwdzmDlspkx61LcxsIpBILnd/hvrDUQlfCnbFJoOoQPVJU7iUq1Jbx2oRTTui0OjTqUWY1Z/N65s94yPJBTcNx41o3c9kMGYcjrD0zmeiSQz8YTKr7WBQxpGmkdWVVPQn/jKG39XMhFgkwtfpSa6UV+nei1KGUdyhIx/oWLE+PEVxeUoUIZHx8VdhiSlX6PvtqRAz82G5iYbwfBvZ6HB7GEEUmUkYulwWBViKgpBac51FqcWdz0cq+7kOnMhGLsNSisKRBP4wpVqWaElfSX8xfKYPnysmFbouT/USpBdzpVnmTOa7AJqJsxXoMlIboOqGgjmTUoCD5SUvEmCmLfQXzqRckXQx7TrvflOyspDgE2mNbEdPD0egQV2hMCnLRwyS8otqb2jpiERoepRZ8bq4tkkFijOd085vup098sEA19FWaMhMKAM+yxr2sGlNo7G0/NIuHbe+n9K8aBNzv4TOZgeig0QHHPTyW1BACmYiF7tuMe0oaCj9o9GSZakpc3edDi+SicH26Y0m7JKkFvoDoQgVz6BAJoOeMqpMx0tYiPpv1m3NJbRlpTFayo4jIIAg4k1S1XGshApRWYFL7hBK0zJOHBsZBTzRMfbazUAOUf71HwNgM0W7QvMfCcR2aPqYbdL7jfDKf73Yo424UCVRk8xVvLHcl7/TGei8Nl0RghvI3eP99gfmSU7IuKV4QgZ9kLUf2Dxb4DSaf5eJa6En46emvYI+wUDYJ9Kb0+PGjrF3Jlk+3Q6kFbQxgYHcMjwGjLq7GK4nDtRq2jf8THnFcaRNII7FIJCHaHiPsKpf1S+okAk4Xeh3YWcCAe2T9qgtdzt1HqKdbdBqU9hvNXbEUaAcCZjFp9NAaIjYLDbifP3+hFsyyqp7WORB6A6QXRo82f/QEhRgVeZP/O32rnK18+eVTOAHRXtxYEcbf1qSJxU1b+yf9qg8BNU9FPAu04GJ7hjnrCJKMMxxL2iECmYmF6tMH6LDBThkuY+9T4hA8aAo+ZBhQhw9jRvfkqjqNu+t4EU+nh5C0UKdbeQxw6sR3TY+1ooYCYkA1KIj5tHpXau1mpSlLnwwJQaVeasWSoXUIdEJaoSdjf8MEhVILPwr3e+tv2jtNmycrrbvhe9QhY2bW1iGPxzNIBd5gu1Iux9vUT/7OxuPTwANUpt+Y/p3SHmq0YvypK/WePns6U27iOT71nuZBwXc/i9acvJrrl+pbisAaufAlF/gBWAye57W0y73rVi5ioaMcnmMS+qyUlME8uDDB4MOKkT2pYsUJMNWkqiYXjJvB+pFs/qsz1bFaFSISM/Y9i+E28+WJYREiFiwqqXsIOF3qsiEWS0otehyFu0v3RPqaE4EQUfZduNp45kK03AbrfbxL6QXKd5ZQXHI2Gp1gOIgujpgWzvNzZR9pFhWJVmsIhkjec355+509RC7mGOkx7IOuoBp1jvNOv0fejtHlIhaqy3TrNbRmkDIccMKeRSUncqj6ocwAc09njxW5IFk5nGCFRfvNLr0aEmojTh0qy2p+ZP93cTLUf9WcH5dDYZSleaNrmlOy5GWpW/K0B4FOSCs24ArsLBiEiz71e5ZoujUe9WxQMpxtBPQzmhcoeWsbSS488dfjonRxPHkCJyu01XirFuioYUBbQhPolmOvejGQdRZJ5p2Hsl6R8lKmPwhoCYUNdagzjMrB9gzkYsZjXJtjL6kmBPIYb6suaLdeM354BSJQKumHF4nE6emJqqouT1GHhxO/qyuLYjGTDlpNLEwvsQ/HoshqjM2HbNa8oabksHsIOJ3psv7N37md9TrTdemoIBCJAL7TXATj5Lptm1qcY/+KpNCYRuNjSMqf4n1C1ailIhi+pgEIxwLqjFyiNJ6wirRVURkhFhUB2aNqlLco313/SwzrANu3IBi0GT7HftKjobZmKLmJBXsOtudid0mDtcLuZ1kRk354HR09VGJWPhj4wDIeNqpycUdJiEraXasKNIcTXZl4G/Un9jdRoqNFwsSPKev4RBVKwdW5f12UVhiQ/QBj8GO1qjeejWlvl/slhiWpGgTwyOtGwrssmMi35bgscnocSiJBiQyidk8mXAD23ZNTxZjvaxM8NyAYZdvNWl6TGdUuylzTWJ3po3g39IGQ/0SA0gtsMxz+AttLbAf4rX6B/X+AXLiUZAjJABoVpULEQrc9w6T/PR8saysWRTqGhxcfXDTenh4eqhWRV/OLIjXFlpkYiYWxs/ipNYnNXMEFY99QQVWqCiOxCAy5UyrOGxxPiEUKoO297LS3a8k9M+pQy5WXnFGuCgKCQLMI6Hc0O6GcLmBPr1FGgkF3u69eva58QTB20CFCQVLBOCLn5y+VIxj0zBr/r//cFToaO0S5UD0CGwTj15jDvkMrx9i+xWZIhgOSYeOzpIIIFCYWvEFo0+GElA+VqtLj2alaZb+6voa49fJOxFq0Af1ADAWam6iqPoGnSyQjCVDnKvxX9UR9rJftsga7M+1nzZ9VslEhRFJVSQQorUAVdslqGituiIXVw0B5bbDfbezGSsO9RmCxdNX4xuOTOwkGXNrS9uL8vHptgwBMTSaoxUAywY2S+YuL31vPz18o17p8plBlazg6/HZm39pBWTkQBEIIaIIxh5rU1PrR+kd8p74JkYxnyPoHqEotsV3QRsP+e+STlBmBwsSCLSjdNTA++so2olD+6AulEAGgpyjaPlAa8vbtu/LkQndIrfbDAFqJvLRKVFcm1EZiYSQRaRgbXdOu2JCkjUeubyMAbZsZtgOlpoDfT9eSrwpF72Ve17qe3l9RhUrHKGsOBI2W1DACejK/WmKBF16iVGBA4yYa+8mYcS5UvCj13q6st5xP6M2QCe6pJcGFRwcBluH+HpkgpYBbXRqaW+iPTjIZNEjIPhYB98/OFWNdKJLhq0pRkvFaFRhYj6Ay9bX1ifXvimhQbUqIRiyW5gJ+oiXTR2tG0GnIfYh4ETk9EK03rslFlKconis7gQoCzX1U8SAmbNxIAtY70qJPIUzYKxNNO62HC9iqMOUe360vyUmrX643iwBW4+jen8Sie0l/p+lxRkWRYzQ5rDzyc9nfePfAkB6nIYA1JkktQcBIK8IB9/ibVd6jEM/DW7xQE32qNAceI0v0nSTCJEonrhH0z4VkRAX+UxeGIDk2tiM8S+4C+OlyE1NW9oJAFgS0Js4ceblZSiXKX4S2+RHbMYjGMea8vHaDzy62OcpxL0kjEPrZFsOEbA8AfwXVm2cvXryyzs6wYlAm6UkHH0r0FEUXtDQOW4v8iTxFUmCfMLAmKM9NqV1x34VE6YpRcUrrr8mXWyIzEGKRhm0brmOuddplaYXBcATVheXqCh9JhB+Y053fa17f+XHIAAQBSgw4UY+UVuh3sSEXnOAvF28sqjLzHR4mBkWQpO0EDbIZRZzOYsx7jdIR38bDJxSsO1iUoIQDCc/IkX8k/wWBYghowuCi9DlrUCpR90AwBsq76DFOccL7JEQyHE1OmH1vU2liQeQApAPx0ClWER7SS1TpIHd4WPEhwXr4MKHuZhWkJaQWNEG3uSV7WGKGFiUSIz6wKQZOk+CYB3CLui9dqRYBp9rqaqhNv+ATa8YEgYnqUKOhJhZZyiVW2rKLfRtPk/AKltHo6wl+9MVqzkZJKzZrHg3hjtZ6o6QW19eekpiPJyQBUFXCwph5B4cXvKi2y/cVN0ra+dnzFmq//h6jdOJIEQoT+I/tK0LBgw0MsPDi8bQkQaAqBLiQjrq4ndsTByu9IBi32KgydUcyLuGV7Nz9k3NRVbtdq6cSYqEGTZWoe5YLu4j7FIOmTXyzAkWpBR8yIC1Kp5Keo4KViayV6HzGTgEfJ/giPAx9zllTM9mHVH5B8h+2gR5pZGcWi6U6H36AR2bUJ7PmS6pDru0GARhtt9e2IjTxy7JaiamCDxrVoZCylPELdON/38bTBOpGE0qwjEc/mFwzy8YEO75Uhiv4PRP3JGmFqgVtsg9UieLkn56juCjIzcJiWKEEg3AaYw9HEyw6TCCCuJNoZhyv/1Ap1LgUEgSSEXA9h9+vOTdILCbY29gcbMeYCx9rKQYlGHOc26tUGbFQKlEPHAeT3q/pJaoqlSjabDAyN70+0Jib8SgC3c2sD1D90CPZUclnl8HqSVfuuJn882HNWBZJyaz0FCB4k6R65VorEHBa0YvNTuhJSHB69T44jD8wZBkTkEz542tq0xUPr5wlhiSpIgSw/CwpHgFG/Tap6MKbKR+1zyKtIKFh26Pxr+6qQIwavosgi+CKGM6b7S6LfzQCcRhCfQl/SorJz5+uZcpIJoIyfycSiwALOagXAa3+NEcrJBk2pBhn+D1QivEtPjvY7xXBqIxYADjlJQogUiXqmB4bykgXWN/dg+q+Ihe0tWBk7i/PnhaWiHBybjwm1eVqVvW9hn95DLH5MDdi5xq6IlU2hEBrpRWhlc3l8kqtWGaF6CPkxlzh9LzzrEXan8+DvPxt+7spPewPApyQK1Wh0cPCUv01NEK/6S1PUHGLeppcmHr+BikDje+HKuCxOZttv0YkWCSuzZjq/uIbbsVcldOCQD0IgGS4qNnFXHiCvYPtCbZv6U0K3+FTTUJwqr+pUmKhYWLgvCuqRBWSLmxirR9UlFLY9pHS3SwjEQlPtoNo3Jtttvyz8fiU1E2SJyPhSMoXJm+J+eRiKxDAet+sFR0Jd0JPQJaL1yDtV+oKyULmhPIfBznyZ65YMgoC+4PACvFgFosLa7SCvRIiZFclucgkrQjDHCIAW+QgnC/tOFRPWtaY6/7DKOainBYE6kRAE4iZkljcWheYaz1EewzC91Wd7bah7ntVd0KBeetPfkgA6CJO6cZi8lA4aXJxevorBL+ZKHsLBsUpUm9YShEmGYX7tsOCmYhCqD958+uik1AVctgiBHTAp+OqJgyVDC0gFZeKVJBQKFLB33vWjR3JmlfyCVbyHYj8DpjfHsn9clEyuCwwzmRbkfYQITkouqXVHXVd9xuX3s/dwTIqi5wTBHaJAOfEOkbGr9HuDbZnnvfNkz6p/m7iWTmxYAPKGh6RDLlqTm9OVabZ41Ol4sOgON71TW5yEZ5s01tFF5NR5drqu36o0kWfpP4hAI2CWVtH5buM1b3jxE+SICAI7BaB0O9uuYQeXgWLenfSiqPdjqV8ayKtKI+h1FAhAiAYc1RnY3tJ1UKq/mLj596lWogFUWIkQ6xCqqjcdEFbRLqwhjZWPbhSS2NkGnMz0d6Crlfz1G3sFCitKBXMb61z2x9MO9tX6j9jDLfD0pksrXZNgpNlTH3JA9uKCdSgnrRRWrFaYhEGD8pAUpEGOn7LhVcxpaxg1+fvQNpvJ+06yIX6HcJImnZLhRLq8KUVf1S/a3pmokemVj17wgMjoTLb3fkRg4jefZQjQaB5BJT0YuHMRvc/R2RvLBWu3j+D7cV58z2rtge1EQvVTQYRubXeM8hdEenC1lDxQuHDzdhbcAJNdas8ybiYNfs8ZbuS16OLP6SwdCZL34VYZEGpsTxOYy1X1bCeEN6DLz75EwQEgW0EFOGu6vemPDAVr0xJPVA8HGW7eG0VlTQEIrQnCTIbW1EEyFL67GcVtSrVCAKVIjD6ryfLyeQpCPHwPX7zX8DuwlVxMSptpbnK6jDeDkZDdmb/gzMDcP+PMrh+OivszSmoVJML2lswAI+H+BZ5gvKNxv4ihlnVD+rt0EEaAVC+wzGeINJ4vrEd5MsuuetGoJXSitCg076PKit+t5xGMTHOTVfVENUA5J8gUAMCDARLNVflyIAT59LJf9flqgbtKg0AuH5WEg/Gkhgd5JNWVNL36F6rvm1cosSUfR2qvmqPWMiD9eAZdg42SYJA+xCAi+jxf310tvgf/ze9RR1bP8CT1MSxdXyM9vU3R49qJRbsB+0taAWPB+Yz5Sr2y9/k6F5y1nB8i9SgfJqQUP2JE6FYO4XkJhu9ashQ2kSOAQWZZPLW6O2qsnGnysoqq0v/puhSkq/xe1ghjZwUaVJBCdqZXlyorA9SkSDQEwT4TiK5qCr58SCK1bZcuqrgeGTnq8AQk3ylsudWhGehiAS9YHGDPokqz/GO4WqXiVKL1U+sA6pDiRG3gkT+tRCB4egQq+Owuxha5yAXT/pCLmonFryXkFw4IBc2VtKP6c2J0oZS+pp6QkN7i5MT26KqVR7SQjezV4gGSvuMAgHkEr+eWVzBJlaQcDGRWOgHOsdEiQW9Z9VpQ5LQTblUIQKUVqA6u8Iqa6mKq4X+Sz6+ekMqqBb59uoK39NlfGa5IgjsGQKUvme2U4rDRpN4tV6PRbRc71lDCjB5V26jwxIA1JuagvIfLG/xAjN7xlIao5gOeqcC4FGKAlkC/zPAhT5WJ5RdCEmCvzGsHm23VtzWAuz5uf3/rPtQR+eehi+oY7TABuVBs4WMnGgLAu5SRfCmW9qJklysQDJa7KglC247IRaqIyvYWwytK3hzOuDKpW1/nu+htzkaPOj40GQ9V1fXSiUqa1A+tZIPYsEH+XTsr3BsVt/Gz4a0JBmGc0xMeQ23VSH510YEbLxeD3JNEBoYBScQkcRCT3SOjqaKxF+9fZfbLqqB4UiTgsDOEShNKkI9rkJawWB7RdMQ83mSAWNAvlpdF63qrhyJjjUBkcAezxvfqPz+3XUcBc9JkBwmPDsn2HnYJAkC7UaAc+RPLZeSC5AMjwvy7e5wfO92RizIyuy/d06hL+FCwqCC540n1XiaoAva5+cvLATl0/rbyfVSYvEGmFyTWBzVQyzS1JXib0n8FaO+lVS3q0XpR9Pt1Zv4mteu3Kx9kg9NI+A03YFM7auVyficJhil+X76nmvi88sVQWDvENCT4SrGXYpYrDzVhREkAbnSwJ/Y/w2SkvHkiV8ULm+NutKKggNIMcICBErht99nI1WWBIISDX8skD2g3s2kiET4JPogSRDoIgJqjjzGHBlKPtiegVy4IBc87lyq1yvUBhzun50rsLEzni7iKnajOuV2kQ8WoxLF66+gFpWWKLHgw4ySjrrS9sOyfEtGdWTLdgIvJBq1UQ2KEgtKhIqQNqNqVb6nUkMVCEANaobXcOulFRzriC4pM6S17xgnUrIJBvId8L8DGX4/mbOoSXnm3Kp9vkNWy3dK/Wg0mmIif/9OApC1Kk0u+F5Wk37aNML4ezj6DO+lz/GuPsb2KNjGk38Oju/OM88xyjxU5dgPkgpTZ3iP+YSaBwT7jX7+NMxiNq7JR0GgbQjQ4RH6NNP9mnfVU9ROiQXBAnBz7GjMrchF6cjc+kFGlSjaFXBiHRs3Q+el7QHdzXKSU4kbXA5sB4m2EyQscbYTHDsT1U6KJDXpuxV91CLY1VTGqaneGqodJdZpXCCLil4iTHJREKgEgaE1LlSPsq1AyeGw2DtENRqa7IdJQNnjgDyE6k8b5CdCLNIgkustQ0BJKRBgGt06gDG307LuZerOzokFewXgHOxecqJMw+uqkonKTZWotMB506kv5qU6VJXJqCtVVqeWRjCaNif+SfE3LjBuplxqULp+EjyVBkIsfCCa/d8ZaYUm60pNAaukyqUsX/wbaakNtZO+vxtF5KMgIAgURCCXKpR+B1grvmM8kApI9PO6mI3rZ5gElD2OayPh/At34CVclkuCQDsR+ABCgRhwINNfwISgBMtvZniNEAs11BVUohCZm+71aHSt/FPjAVco6ckNVaJs+0hNwNMIi1nVhzF5oSZ3XYgkjOnwcKL2wT/9UqBRLEmNMZLl6pBa4QkyJh+YiR/uyTI5p1zdBQJQgZrtop0q20hShzIE3thaVNmu1CUICAJAAO9BEntFKrTqUK53wNJ/F5Yx2m7FfdDvxE8tC3pdkgSB7iGgPEVpswHrE+UlqlODaIxYaOBOgdYNJQxvMTEuRS407CQWtDGgO9lINSdNQqhORNUpSgGur/5YSdvhO88+VJnSJmZGWnFi24WaVWpQfkmvUAVSqDIE4HvdRmXHeclhZR0oWlGUATde8jTU5vfLd+9c7e+iaFelnCDQXwSK/caWK09BQvetfUiQwS/7MA4Zw34ioMwGKLXAXKBrthaNEQt+VQCcZ/0IF1sA79WrC4vqPoXJRYgwUCWKyUy21YeIf6eIgcH0pkKphTGwVhVX+I9RxmlfMTkMRUHVKzNlpRXsZkiFy6uw21JVAQSGHZRWcJhpet2+jZBv3xSnMlUALikiCAgCIQSKqEGtG23njH8Rartlh27L+iPdEQTyITDQ0gpq+HQoNUosiFPYU9T5i3mqbUQitppccPJtDLk56d4iKxH5IqUbiY0lXxyOMD0smzRxYN848Y9TIzEEqqi0gt00xrUgeV7Zbkv54ggwIB7UoJ50TlqBIadNaIzUTQy4i38/pKQgkIZA2u8wqnwlRttRFTd47u8s66rB5qVpQaA8An6wPHptE2KRF00l8oGnKKpLkFyU9hSFDhhpBN3PJtVn8pnJed6+x+WP89wUlz/pPNW6mA61wbn6oEkH7VPK2FaouvDP8xb+4Q6JBfw0O/Y/KL/NphuytzroBUITdTHglq+vINA8An78hwz90O8QC5G2VSA7Bp6rymg7Q/N1Z8GqqRCLukGW+mtFQJkMWNYlbKXud8mIu3GJhbkrylMUXGxxknx+Pjen8+9D0ggaMpOsRBpoh/LRHoKuWquQWoRUivL3PaaEibcRllhQCkOdddqnsP9lpBVsVhmHQyVNSZBi+lHlaXvkjBQLH1id9dVcJR6sq8vSCoNFkjqUkViEv8emnOwFAUGgIgSGyQFiN1sx0bGTnC9slmntZ02WoC9wIx6hWnuXpGN5ELi1LlT2e5adp1iTeVtDLAiC+71Dcc8lJ7mvXr3eVmHKiZSZbJNYJEktTrStRVVSi0oMtzfUoKaHhwgapAMWaRwo3WFi/4NrIEyZk27DuLIFK97ZCo823j8nE4ev5nnmPvc4Yxc9QW3ejuFosnlKBd8SA+5tWOSMIFAZAnjuBx6hclbaRzUoPEt39i7LCbdkFwTyIWDmZQNrmq9gc7lbRSwUDCsYc2O1oZQbWi2N4GQ7i9Ti6OihWvWvQmpRtcTi7ZX/fAyrQVFaEVaBYv/L6OQbV7aQIFzs9Kvo6w/egFw8glqUvdO2W9hYV422w1AOrVH449axGHBvQSInBIEKEUj+/QUNBWpQH3qpBoVn6W7fZQGwciAIVIzASpPkWyEWhZHVOmU2KqjEDW1WqUVWT1JZBlZaYqEf+lR1IsFifYY8kFRQwlCVChTH46INlT5arn+wm//6Xs90a3utEtWZgHgpX400w1GjDiUG3ClAymVBoAACkRLDhHp6pQa1Pk53/aN8EgS6iYCaJ/luZyddGUH7JBZALnBDi2MGuivkhjan1CLsSSq3rUWICFR54ylBYTJB8YxdxYv5K3W+sAoUS4f6rNu52ZV9heq8/od77aIvr/HxwOqYS7XwOCo4diqoo7kq9O/NGt5HH4YSgbu5OyEt7zECSTZOUbAYYtGL2BX6nSb2FVF3Ws51GoEBYrJQbbwjqZXEgtipSe6t9VsaX3MizdV7Tqw5Ic6b7KMjVSTSiDtUWVkPUewr03icURwdajvq0Nh8GKkL88wR74PqViQVRoqBL1zhZMgLKnALV1K2ICNMkpHDpRpUoiZlq+ta+b5IKwzuw2H8LTQSCzHgNmjJXhCoDoE0ieFmS6vVQp3KW26znpZ9dlvWH+mOILBXCLSWWPAuwJj7HJNN5SnKrNLnujt6FXU8eRBE2Y6URuh8paQW6JghFgxkVzjpVZfNoHesj3YVJALj8RjE4riUXYXpnyEv+OyYc7veKwkV2/cZ+XzX7TfdXh+MtsMYRrq7xPdaDLjDKMmxIFARAnh/qYCTkBTS5XMeezufWLCcdgyCurqe8Dydd30M0n9BoMsItJpYENiwp6iLi98XllpklUZkzRd10yshFrpiM+E30grX/S6wq3g6exzVfPZzmryYwHsoeKkn99nrqDinJpHvUO3xPsW2mNm3NsecZzJQMfSVV5e2+ikG3JVDLhUKAqkBKgOI9POf8SuwHJa9XFBBCw/MmCzr/dwduC3soXRJENgbBFpPLNSd0J6iqMr0NiqSdtLtCkkjaATNFf9Im41QPhO1O1K6kdDWAipKTGO0Uyjph+OmtIL9oK0JJSFnT2fFXMtGdMiQF1yaR1ze/SmqRDHds87tCeJc7EHCWuGsb8NMUoXiWI06lBhw9+3Oy3iaRCCN0G/2bbXy31eREsbNzN357Hanq9JTQSAzAgfQ3uHCaydSJ4iFsor/UbmhVRPsovYWdD3LZCJZx90hI7WgPUOeZCQWZb1CmQk/pRUcq1EDe/z4tDypCJEXkiykG0gr5jxoOmlD7m/QjwPEtnCa7k/d7fchIN4aRpqciwH3GiryQRDYDQKInJ0v+TaBVoqL6Hx1NpsbCzX5XtrNdrd3rXNB0H7g7KWtZF03M4i4TQPujqROEAtiuWnMXQRf2z5SxWKNuDekFjSSvr76Y2b1q1IxLEITftZjSBCD4JGw0Fh7Ov0sl/7sFka6DZIVQ14sTdi28jZ14gMIBQ25B9YXwQ+qqb7U365TfxPNtJC0emokFmLA3cy9kVb7iUBuj1B6ntIniQWokhCLJr/eDHY7sL6mI5Ymu9GrtgfWRI3ntjtBHztDLAis0sPXkblpyJzZS5QmDEMYtlHNiRP1NDUnI7V4A/WrrGmx8AllGYmFmfAfTacWSYXxAFWVsTbH8sZ1Vb00jG/CxWwSnjq2haPyfGKdJ+Xt8jXYVozQf7vLY0jqeySxALEVA+4k1OSaIFAcgcjfXFJ12othUpZOXNMLZujra9hX+C/hTnS8X52ER0eSikcY1Y31s/5rHOzs7g30POG2Qc+dOQfbKWKhxzbjijYDxEXaSqQAYKepQ21ILagulEZCTJOBKhQifucyxtUPRhNNe3p4uOZWthJSEWqDQfeQWvvjNwQSfTymWNXg26c9RPanWF07yPU96RAAaZMcMeDu0M2UrrYXAbyv6BFK/d5yeoRq76CK9UzUoIrhVkUpkAoH9TzBdoPNdj1HCB6AqCjZqp57IrGoCM/tagLXpLiU1waCtR1OD5URtJ5cbzcQOmOkFkaKELoUeUjpQm5phZ7wUz3JqGhRVcSoQ1VJKmj4TkKmVI3a/+OfaZCdnhpyO3p8vdylEQujDiUG3L28/TKonSMw2nmLrWhQvz/Rl/cv3MG8FX3as05oUvEMw/ZJxcLx9gyC2oar4noNrIdooHHPnXkG2UWJxZpKFN2wZlKJ0pIIqkMxDkSiOpTOmymuhX6wrVYfVJ25iYW+W1RPYp+MqgilFo8fP8on+Yi687p/JBWvjDH6wDpt2r1sVFfD53T/vlKxLVb9UonqW0C88H3D/fK/s8MHOC0RuNewkQ+CQE0IpBH5mpptTbUirWjmVgipqB33mW5hXntLFTbQSWKhxx+oRHFSn4lc6IJTSC2Y0rxDMc+JNvhOy7s09hV5guPpST+lFZSgkFRQrE3i83h2yuaLJ9QNyYTCZY1UWNavlfel4jXvrqRPKLgK8gQPMHt3DdfbElSgZvW20I7ak4xCjcRCDLjbca+kF91GoBCxyPOuajk8eKbOW97F3nUvIBV0tkINCJFU1HGPZ7pSt47K66qzs8RCfYkH1jlX+ZV6Tw6EjMelq6vr1FKTw0mgOpVEYKi6xDSejFPr3Mxg3MkaUnF2NkOb+SKortWpCQXJFu02lKTC//GTVMzX8rb4gzbknukuzlvc1cxdo4tZZO5VQLy4wUdOdvDdNFI5EurReE9VOOJAk/OCQAEEkkh8XHVDRupGMvEs4vK19rx+z2EUNxIUb7d3CaRihhafKbXqj0Iq6kBfY3yAul92jbR1llioG8kVbUyYaZvASUqq1CKkDkWVJZKBWLIQyksiQgJznUBEcgfH0w9FBsOjISsT+1QVqeC4Xr16fWdT4f/456qhDv3DD8pFdy+xHegVkg71PrKrTuTZPp4cJpNsMeDu402XMTWCAFQP8zqCuCP+/qJYI/2uplGnmmqkliwI4D1sI9+3Ku+tNWubZ8ksY+hIHkf188fuqYJ3mlioFW1ILQg+bRTyJKMOlUQWTH20d2ByfW9K5vTa3kgs8tpYGMNwRSoQVbuwpAJExag+0VvW8+cvlHoVzt5A733a8R+/UnvD+DodeKd3AfHWfgHbH0bDyfbJ0BmjDiUG3CFQ5FAQyIoAFr8Cj1BZy6zl86WFq5W/sLV2qVsf3G51t7u9VbGlboNYIb92/+RcdHc07e15IK24tV53ce7WaWKhvhZaakEbhUxSC/1dmsCOgcnT0gJ9en2npRY04h5CH5UrrHESDs/zH86ZVKG0tMK4lzWkYpTXTa3pra6PEhsas5v4F7j8EtLuadfEaGZYZq/6TwI5sO7j3Nyc7+De7mCfS3TZn7jEVWDskmhTJEkQEASKIpD8O9uqVb/XLKjb0sFCJ1Wh9DsPA3gNb1De1hjlROUIYLI7AZN19Xv4K7yX55U3IhUaBBx1MOhmoMHOE4uw1MJ9+9bclNQ9A+UxXV97ap/2jxIOqkMtNIHYzO+rdUBrNc02Qj8QSYJoG1KKVKAuI6VgfefnL62LizfW6ofVe5z/LX74s774k8ZYHIz2BtuxFsXisHPJ6VyPi3Q4PHEZjtSqKr1FbSYjsRAD7k1k5LMgkB2B4WiSPfNGzqGSKq5gaPF9uirxRtmWfDxvST963Q1FKrBuGSIVTq8H3ODggDWxPcDWOdsKA1vniYUaSEhqESdRMAPmBIe6qJQOcFKfJIUIyuDATH7WvENpksA2STryrLwa1S0bXqcKSSp020ZK8fz8hcVgfkiXGONUB5nj5z6lmR7MvGuxLRBpu9cB8eK+ZJHqUPjuigF3HGJyXhDIh8DQKi7xM6RkufLyNdpkbv3uG4rR9k7uQkAq/MkuJRXOThrew0Y01s8wdC6iOl2FoBfEwkgtOLk3Qeay3BCjDmVUMpLKGAmHUXkK5zVSjFGa+z79QLy++qOyfyCxse3P8xndoY5IKQXGjsQffW/dvmFsLsb+DcZ5YK26JSKE0sGMN2jvkhhw790tlwHvFoE7I+z87Rriv1pe5y/cfAmn+S70uwdCKnZ+f13dooP5jrfz1itqsBfEQmHhxzywsriQNdgZewhKLWJTSMJh7Cw28xrDbbqmzZJeQV2J6fHpSZbsd3k0MaGUguQkkFLcWu+sH61/3IuVhA9g8b7r3GfKkOwOndYe0Wj7g2U9yuu1pbUDytGxtNVUow4lBtw5QJWsggDeSzTcpo0EbSVyP1v0e81iIEuoK65WHtSh8sWDasFNcFvQh952QWkF+IbaBxgk1XKc3g62BQOzHzhU6zNYz1vQpcJd6A2x0DEPLkkSvOubTPqiY0gMmBINuEPQmojdgZG4vmbKGwlIqMjdoSYFdC9LIkIXtofTz7K/EHR5ql1dXPzeYuwLSmi4gg+1p657fbrDKeVI32dHZfukM27Y/P6mjK2Pl9NWU420MI8aYR9xkjEJAkUQSPt9ZalzNJyqbMvl2yzZm82j34OgUy/FaLu+W6FIxQ/KpuIh5hivQSpm9bUmNUMyNIMK+xdAotMqUOZO9oZYqAF99Ceaa3YQZqQRe6PeZCY3EVnWTo11MC8joTAXjXqUkYCY88FePwxJSIx72RPbDi4nHqAsftiKKJEw0Y2sVvfiF/CXIBVnieV7eFHbj1xiaMdg+V0Yv93D25A8pGBFFEpgYsCdjJVcFQQKInBr/fAak+wbSrH5niiSRqMjFBtiwQvEojtSC6fIWKVMRgSoATKwSCreWT/bUzXejFCVzabVzRxdTy9U2ftFLP4Chg01GbqeTTXixl0cjvBIRjISB/Uh4R9tIpg2iUVWj1Bvr+ASV0srMhlsa0JhDLQDN7K0M/DdyLqqQ/v478fAxsJpsyE31KBmkCsd5FZV6NE9jVSHwndbDLh7dJNlKI0g8GH1/QUatrG9z00uQuTfJxcrn1w0MpIMjer3oUgrMmBVIotWyXmCKm5AKuy+eJYsAUndRV00cIDtqy7bVYRB6hWx0EbcF0luYdXg9QOVrmFJFjaJQhig8LFRnVr6htJKisBgdIkeofTDMOxeNpO0QpcjQWIEbbqRJWnCbOy/U0qx7z92FTSGBIuxLX6A3UVLE0jFrKVd21m30tQ1fGL+qfKqpvTG8fuUJAgIApkQ8KgS9NP/LEgudBPrUov3mVSJM/Wuhkx4ps5rqFaqBAJYPXdCKjlCKmr+Viy8Vw6aOMDcjupmPO5F6hWx0Hdkzn1WdahACgE1pawrPsq2QTdmSMlhiuG2cS9L24pUaUWIjAQRtCmSpBtZiXSpkceOhtxcVYFuIh6INo5blWi0jQ4d77O0gjckjViIATdRkiQIFEBgaF2x1L/+2+AKK/n51ULDUouxjZoQq2nxqn0qUfqdiA5ezt2Bi72kihFQpMKynqHaG2y9UMmpGKJqq0PsmNXqj8cK744GwosDpH/EYoUHrVaHiht0+LyxmwiThfD1tGMzKTJxLtbyhwgC1bNIYk5OjpMNtkNlAtUnRtCmSLLD7sfWcKnog5JQfdQv09tWGnI7FQ2109WkEQtj4yQG3J2+zdL5XSEAMqAke1hsCkuuIbmYg1z8OusCWdBdTS5Go8+xCMBAsAtI8SEhb2dy2tmtbvdKSMWO799qCRV8EHg/ddq1rBlEeN87YqHVoa5IFLJ4h6ILWaZEl7NhxDaOUw23kd9IK05O7I3SGx+jSQX17noTQXtjxKU/agkOgwI+bKEht116gF2uIFgNvY9RDP3JEM5tpkRyvplZPgsCgoBBwDMHZk9ygeOvcpMLXcF4fKokjMvllbXwfpdZim/ar2Wv34uoW6QVNQCs35vPlKq1SCpqQHi7yv+xeAUfz0uqt3+D+d18O0e3z/SOWKjb4fteBiNcpN4dowqVmjEiA+0fGO2aK62011hTeQmRBCOtODp6uJ4nXGcof0hSQVLhhLPJcSQCM/1QdLDyMonMseOTYrS9Dnik1ALfeTHgXsdJPgkCmREY+GpQm/mhKuTgXD5yESwC0NbpsSIXK058WuQlCnYk+VW9NsGRz2sI4H1JN6dfq/fnR9GKWAOnpg/A3IbThUf0ljj5xZOLmppptNp+EouBpW5WlmB5Jlr2At6a8iYTcTspuFcmaYWQirzQr+VXKmID5R7vPh6Q52sXG/ogRtvrwEcSi1AWMeAOgSGHgkAWBD5GEwsWLUcu7lvjyW+syeQMgsaNBbMs/aoyj343Qq/gJe1Iqqx63+vSAWa/VTjcWjPlEGXfQdnN+OdsZjw6xe9rwsPepV4SCzXRhJ1FFvUmowqVx8bClDEG4tPDw/UvRogoZJJW6NL0/KSMwX3xmLNeqXxKRMCPvE5D7kdcEUjMW/NFMdreBjiNWBh1qCSSvl2rnBEE9hiBW8tLGn0ZcqGk702TivXBOesf5VMZBBSpuAf3/H76tTiFKYNm9rKYmzjIfTAaTSGwOMhesGM5e0ks1D2A1IJkge5gk/RNDUnIQiyMVMNIOQL7CqhCRSWqSTFNpxvEQ53V/zQJefPm0niyutnHoHdhSIoc64jcM1123nBsC6fIGPpcZpiyMiMG3H2++zK2OhDIssJclFxggSZebbeOwUTVqd+NuPSNRNmOAqjYOUxuJ9Yn0Oqgq3Y/dsK8WE1SKg8CCnftdQuOEi7zlO1a3v4Si1tfTGxWQqu4MYZ80C4jbF8R5z7WRNm2j46imw9JNt68cf04FTCeis4sZ9MQgKTKhSrUa+Q7QGyLWVr+Gq/bNdbdrarNBGUoBtzdunHS21YigN+T8ggFQ+as/StELlg52mos6XcjVKBusLVCvbUxLCpsWE9uXVR5gE1sOCvENrWqOzVtxxqOvdT8Hc7QX2KhDdvS1KHyGG+bVVVKObxr/3uxpbqhH4iUlFCtaTKZpMatMHYYeJCfKzWuDn+hGu/6BxAKkgttZ7Pr/szsWxv2FXsdaTsO80h1KPxexIA7DjE5LwjEIHBrLWOuRJ5W5OIH67eB9B6/u44kR6QV1dwpIRXV4FikFmBPI/lHmJu8wxxvXqSOLpX5SZc6m6uvjGeBpQ6jrpRWdrFIf06biNuj8chy375VVW7ZV+iGjP0FA+JFJk1AGJGbdhhIN/jCOZF55WRmBLRK1GnmAhVnxFduBmIhKQIBEovVyou44p/iIsDh+DPlZY3HHwcfKcWTVCcCZlVacK4T5TrqdvNWOv9ucA77r+XqJ9a3LLvmxTBvZXXmx3eRBAjP0pfafW6dre1F3UIqGr/NjurBwGpsbrJLBHorsdATzJs0iUUesFkXpRV0LXt97amih9PPIh/QxiNVZOC8UKOBtMKynNBpOewgAjTaBql40toXdsOYRkosQn0yaotbUsBQHjksiAAJRMRGtRqlWhNxTeUv2JwUqxmBGFezaa1yog63rf+IfO8D6UVaoV1evyMVN2jW2WXTfW1L2Rv6LvgPMMaXsoC52zutpBW+6hmx93bbejOt9ZZYKDi1nQWlAoUfovpBR5sK2lgwZkVYzWnttum8bI8khHkj7S9C+ULSivlaXfKhiwjYXez0rvqcRiyMqqFE4K7ojoTIgiEQm3uqgnKxZPO8+RyQkYq6JNVUhMAw3tVsWgt02wppwBTbTeH3Yloj5a+LClR5DP0afoD3JwSQpYowJrazqqqVejIj4OicZp+5YFczQuDY6+RxdPTONB0/LDVQE7OCHqHeXinVJStOzclISQ4PJ4ltirQiEZ7OXYS0Yta5Tu+0w6PE1ozEIk3Kl1iJXAyMbkkOTCJZ4/Nogj3tvoYjX/JqrnPPxRM+5xhYlDZkvB/GYYVSS2MmLIpIaggBEEV1T+FK3fWcZZle0G4BElYbdVyAXDxshZRVL7ihT1+JClSZu3tXFqvlc3wiqXhn/UzeT3fI7OZoH6UVRLbfxEKLi41tRJmvkoniPcHLWUsZrLgJkLGviLO/MP3Q6lQ3UCa9MOdk300EtBrUcSte0G2DEBMi4vI3qBD6dhYb9hOYUHDiykkspX20YZJUEAEz+URxSiJs+8g6mk6V5HSzRvVdDZ2kiufk8EBtlv25uuJd36iFFPPME4IRAqypw4JqUJvdJbnAuSkcTpyDXHwRfB/wHdp50qTiU8t69zs/cvjOu9C3Bu0HzjnG9ATbDUiFXZaM9g2fHY3H0e2Y/Y6abbaZfhOLHyEu/sRSakllYTZSCL6seZzk7cnYX/AlvTXR1A/Qq7fv/GB4luXKD77s3Wm+PKQVp833ogs9+OESvTyO6yl/W2LAHYdOwnk9GeSKtiEUJBUkC0zBpDFcxcYEMiqPIRontm1RwrpGMPAsk9QAAlrFt6qW4THqDORiCXLxjHVuvbOqaiiuHv1OpGoWsshzNA6nHOexUu4g+xfYiKmQCoCw64R7YKPNA6WC9r3j7br9Jtu7k5U32Yu62v7Ed8m3Wqb76TFB7+K6YsgC1aqYttSg9MORK67GzazKGPPP9T1B8aoTk0VOdwuBWbe6u8Pe3k0cXq5+eH+R1LJRhxID7iSUNq6BIBibCJIJxzmzTk6OFangJDGYKJJIhLeNatau6XymPG3FHj9+ZH159tSiXYZSyWEeSbtHoCKJRbjjdEdLo+41uwv8bmtPd8+GG7RlaylK7c32uQGtfvMMY1SY7ovBcAvv6Uz16daat7BvtXap18TC/KCMGlMUkiQBTNQ53kr6oRcmC4ZgxKlBGeIRaV8Rqk/nuzR93GpbTnQGgX/5p9spOtsOPeV2o+Zg8nqV1EUx4E5CJ+IaJvdGSvH48al1evqraEIRUTTTKZIHbIZgjCcPrC+/fKpUrIRcZEKwjkxeHZXSqBv12theQnpR3OFJ1s4JqciKVL581NTwA8XaMr/IB12luW+V9O3G/ZNzUWm9Hais36pQ/g24ge72QZl7YcgC6zDSiEhvT7iexc1syGh7zjoldRuBv/5cjOJi7+Dd5IE+6T17BKPTCA5vyhuJRRxxN/lkDwQ0qaAE4ezp7M4DHcEhIagy6fpIMKhe5ROYofXmjSvxRqrEOUtdJTxCpVWvJQYz2Iy5yOsg5oUf7JMFq/pO4ZnARPKi1Z9EUuFDUsl/988OCeJpJZVJJYUQ0GpQ91F470gFAeu1xEJ9IxChlEah9HjCB1mcVxPqJcclo7ZkPKRsqUGFCnJixLq27Cv0BIvSD00+brCaMA8VlcOOIoBvjjzE0++dwywmvszWajd+HxKBOx3EIEccqeDkr6oJYNBY6AB1G+kF1a1OTmwlMam1zVDze3uo7ze9++zCJg8EYw6sbWzr0gtNCnC+WNLvQb6LYf3zGs/Oqag/FYNSSrUYAV9awZeaEIsW36YyXfNYOM7OwpCFLWIRIgKUWHBVkNIK7o+OHt7pLbNynZceVFhf0mor69JtuiwqqdsIUA0KFjz+ql6dE7ouwqR/F5g8KGlFaAhu6HjrkAbcXBWni9QtArKVew9P6EnmlqRiV98/toONBEPIxc6/f96uWuSEH7YXM7SnBAXyAAA3kklEQVT3S/yGVcyLYHEOv+24Rbqt/pm8+nmA6++tH6zfwvvT6bk7WG7llxOCQNcRGFhTNYT/ghgie5j6L7EY+AbcxpZi8x4bYrF53nwOq0Ep0pAQm8LEtzicHpriW/sLqA7o5JgD2XcXAVGDynTvnLVcKV5tjDqUGHCvobb1YQabijiVzK3MdZwIkQsajQsJrAPkjTpTbJQ2clfyEeTCBcmYgFz8GhW+I7kwmyIXIeIQ9dnk5Z6LDNim8+8G55V0TioRBNqJwDF+CzuRLrZx+Pip9zxBFYqra2sEgg9CnRbaeHsMSUSQQtcNETDl6XYxSKF8PGcMu6dhYqHz8KEacjG7N6HdA6x6eoCX5Gm6z7GeDj5pWPjem4nElqrDreUlqc6IAXcCsHiWcQJPFaQtdcuEYluXNp5d6jrqLprYH6p4cgFHxbqIqr9o5VLuDoGPyc4P7jJWf4Tf8Ry1zuGa1sZ+hmefTRsMHKel98hwjvzzrWdBWkm5Lgh0DAHYV0xUl/Widse6X0l3+08s9M01xICTnahkVKHC1w0RMGpQJnYFy4fz8fP11R/VS5X2F8Z3/GYeQ1KQfc4ykrqNgA6KJ2pQybfR2br8F4iHMcuIS0ZikaRSGFe21+c1qeDziCpIVEVKImiRWOgJ/+aziXlVfaZQVpKBfCzHZx4lKOcv5qYG2deBAEl5w4kSDHSBm6VJxvRTy5rgqxCszuFrtvyAtTS4sL3S3qaYXZIgsA8ITPQgvX0YbNQYY6bZUVnbfy5giuGuaokFo2/TcHozLbyFOkXisXndEAFDLOhCdjOPqe+N+1YdcjIUlYfRuJU6FsRjmAx4kX01lQ2t5S4M9Exzsi+GgATFi8ENswpOXMEdNm0rVAEacOP7f4OV94O11W2UkwjcMZiGTj8+PQl9yni4QSjozIKSIbPgwoUVupI1KRdp0eSCEhQurDCI3tp9NZXKvjQC2uNP6XqqqiBMMqqqU+oRBHqBAOeee5p6QSwQuv4M98/BRvde6wkvPXqbubh4A/P8N+vX9Cden7+6iL1GOwvmoWtFbnEpqR6W4fV7g3sPcfgfcXWo85ixcuJl/Widtu1Fktjv/bt4un9DzjViJzY37SwG8WoUEoF7Azk8x6gCRanp4fSzfNIKTfRYIx1McMGE+BpSYVriAgoXT6juGdhu8CLazppY1kTnzlpG8qUgoO89cl2m5JTLgoAgIAg0jkDniQUm4DOg+DWR5MQ9MumV0MhrPJl03Vwz+9hKUupJa2ejXq7mYh7h2hNnItKLDXBa8FGrQR3nWtltQb9r7wJ+J0nSilD7Xuh465DqUJxA04Cbk2BJPgInMJLOlfT9oBSViydhZxSbz0tKVEkKuNEYm7EqmDJ9xzH5ZT4SEpIftRgzwPMY7UuqCIE9XgGtCEGpRhCoH4EfIan4BM0M7lQD62+0XS30wSvUjJCqlyRfYlEbM0SdN+eSrptrZm/KRO3T8qRdD9WpxjOABOYHCb5G2FqY7Bb2qU1dchI7c5vshk8MuEPo6RVrJVHII63A84Qkb+F9bz0/f+FP9tWTkk8XPenfeOb4Vz5aLlQ7nz//HaQayfF/Qr0MDk9hyC2pFgTcWmqVSgUBQaA6BD7RKlC3QiyqA3XXNe3xzds11NLeHQKYj4ka1B0c/pGeyMbZVqxlv5fs3UYMuNfQUh+oppQ56XtBSQUNqqn2tEUmNivbIBmUFJ2fzzdzxX/WUgvaWtBmg6pbedSo4iuWKwqBBlzNCvKCgCCQDwEEPvawkE2DXjtfyf7k7oPEwu3P7YgYCRYPI87KqYYRgMcTu+EutLl5J61z5uG7NfnE5JYTYONMYTQepVW1N9ePptPcY90iFVlr0PeB5OLNm0vfCx6JR8a05nI7YxnJloLAMJmMp5SWy4KAILArBLgIAI2TRCc9u+pLA+10n1gMehgyXas+4PtwI8bbDfwqUprULhbvZ9I9T6kruBxaLU5U24vLF1TU0AH6pV2Yvs7sqz5lBZaTWonAfXc/x7A3yZT0vXDd7/y4EkbtKVPhUCbUQ5JHhxV5VaIYNV1SBQiYdwFWQMXWrgI8pQpBYDcIuKqZ2/3UbOg8scDKp0ux09bK526+PHW34n85625F6s+LgJ23QGx+TRQ4KS+zbZGR2AZrv3CeuQWJwJ0OlZ5YcqJOkpWHzNJOoqqUty6JQVIV8rqeFBJecWtSnSAgCJRDwFXFB/tJLDrvFUrfvAvsn6jjPv2Dl9w+DadHY7ErGYteWVZ1rb7HqjBdgC7xkfEFuF+pv3BbQ20PNhyOcHqEySYnnCPrb8O7GATMryagpiAmp7Wmu3Fcar/22ZpLmSyJAfcdjGO4gs2U9L2gW1kVBbuotGKjMXqKYlC+rElU2LIilTFfCgnPWItkEwQEgR0gwAVvqEFdoqlj+++d6b5pnvSDWHACfq9/xML9k3Oxg9+ANJEDAahBcYZX3s2sngAuvJeKUJBExCeYQ+vrCOOossEWdyMNFckYjRj5fQKicRfSJSAZdRMMP5bMRr8SP7pJV8WA+w6d4YjfgezJq8pFL76nDHZHkkJ1qFSpCb5j/L4xn6QKEUgh4RW2JFUJAoJAFQjcYl46sI7hevYM1c2qqLIrdfSDWPwFBs6fQh1qcO9+5yO+4sWs1LokGFJbf0PTKjtmiAIJgUXpg5JCjNAEJpIhcrDW5ur9nURDSTk8RU5WKw8xHzyVlZKM0ehojWTUQjA0QUKj+aQVKEADbgS33P7d6smsGHCrW6n+0dVsnrQZ/C5P2bi8q+UKX9HshIF9VlITiWcRB2me816ezJJXEBAEGkbggzXHvNQBuXgC6YWjHJY03KVdNd8LYuEunSVu3BVAO94VcDtoZ76DNqSJ/Aic5i8SUUKv7E4mX0Rc9E8FRGAjB6URQ006htZnuKq/9lCnWq5AMpZXimgsFheqJEnLaGQHUgxVb/XSC2ejm1k/esj4MC4zDbgPx59ZtDHgcecXDuIGKucFgSQExCNUEjpyTRBoHQJ6XnqOjj2DDST31cwdWjfS7Q513ng7GBLFTv1Kbr+G05vRTCsbiSYXnOhHbSoGAAnAxhaVV5EF2FmMRp9b48lvEP34DMfoKuwvliAannduLRevoVH1/s51KCQDpRLK0+AcspWbXLYV64266x/XPxl1KEbgliQI7BUC+N0r6fWt9U48Qu3VnZfB9gWBlSIUN3iHP8Lit92XYaWNoz/EgmKnrqfwi4RBViS1EYHy9hXhUW2QhjUSEc4XPo4pEyYcVKMajR9Zk/EMq/1YKDEEYzEH0fgu8EClvEmF6y527BQrhlIpuuNiwF0YWSnYHwS8/gxFRiII7A8ClFpgtDM94rk9cUb7MPreEAt9Ay974nbW3YcvX9fGqONXtLfbIcJhSAYJxnD0UBEMqkNBTwqSizeQYHyzLr3IO6qQtAJxK+Z5iwf5f0wO+mUkFuK+NEBMDvYNgRTyvW9wyHgFgS4hoEMi4IVrHVg/wOZiD1JviIW+V24v7lkfg/714sZY0C3qSNIkI0wwRuNjpSJFw24SDM97gd27O9WoYkNzihXTpf5qeZHlQVwkAnckMnJy3xD4mEy+9w0OGa8g0DkEPihCQZWoL+x/cKBC0O8kxKIt9xcTQe0N6kYx3Lb0S/oRIABbgu4QC9PrCIJBGwwlvYALWxp4LxeXd+Qii91FVdIK9FFJGqFDniRplAjc5mbKfi8RuI0h33sJhgxaEOgeAmsqUQOo7a8Wk+6NInuPe0UstMip61G43ey3T3LuEgGEjugesTAAbRAMX3rxVNteuMqw20T+zmF34ZjqS+1TVD2MOpQYcJdCWQp3FIF9C67V0dsk3RYEEhHQC8ZfQWpxf7F4fWwhLlBfU6+Ihb5J807fLIm23ebb91B5X+IkvaspRDAseJGicbcx7F54v4OK1Ic76UXUGCuUVgTVp0QVFgPuACk52BcE8DvVEuzLfRmyjFMQ6DsCIBcOFu5erxB/arl809vh/qR3I/PtE+KDA7R9wP8Fwf4ktQ6Bf/mn2+lfW9erEh3CxIUkiTExSC4Wi1c69sUcXqRmOP+puq68VEU340SfLnA2o8RCDLgLYCtFuo3ArbXs9gCk94JANxBQ7mBvoZUwQJTaOpNWbaQb+OXyP2Y7ckPrYUguiA33taf+EYsVDN26FoU7tDol/spr/84XauCvP7cmhQq2uVCIXJBMLOCK1qyk0FXtVqpDWsFG+JuFActWQnsMiCcRuLeQkRP7g4C7P0OVkQoCu0dAT+wdtHycsJBWXcfw3qVjEqZ71vsn1VWcXhPG+hK5ao8C3jtVKGUkk7ICmg5/YznmjbUsDachMEnL0MnrmlxYkFCQXBi1qOXi90kqUU6VY9WGbTdiwF0lqlJXLxDo7rusF/DLIPqNACbaM4zwD9iOOdnf1Z+yY+TC2Y7/ME4SGRfjnmBfW+odsVBIdTcKt1vbnZaKyyIwKVtBa8uHyMWdzcXbIJCeeQiaKNul4lbEg+DGX7IsMeBOQkeu9RaBobia7e29lYE1ioCeXH9rJvfmPbeTvRk5yMVO2tPtcKxIB9jmPKgr9ZNYdCkKNyZ1aqUWLjd3pf9W15ep5/V21yNUlhsTkAvaXDxGiSE8RblQU/rel1zc1eHcHVZ4JAbcFYIpVXUagbt3wntRje30nZTOtxsBJ+geJ977kDBOTS6OQazsuobcS2KhVSu6FoXbresmS72VIFCvQVclXSxZSUAuHlijsY3KVpYHo27jKQpmEDc1SSu4auMl9d5ILMSAOwkludYrBEQNqle3UwbTOgSeqEn2vpCKTfhvrdPNU1V97iWx0OC4VYG0k3ok2vZOYC7RSP+JBcHR5GI0+twaDg9BKpZhyJzwh0qP/xLjDU2vsIgBd6VoS2VdQCBFiteFIUgfBYE2IlC3jUEbx7zVp0F9cbn6Syx+tC62gGzbibDIe+G4beue9GcNgYPOx7BYG07CB00uxpN/tiaTL6EV9SmdNtUnrUBXxIA74X7Ipf1EQCQW+3nfZdSCQMcR6C2x0NFKEz3NtObeibSiNbdCOqIRCNSiPjWQOOagtn3KCq1Rh5II3LXdAam4XQh47eqO9EYQEAQEgXQEekss1NC74x3KTb9VkqMpBGb27X6oQW0CbMgFzq8sa/bUvp1sZqn4s5dUn0TgTkJHrvUOAfEI1btbKgMSBPYBgX4Ti+5IAtx9+LJ1dYxQA9pPYsEbdkcujvHJrZVc3MbYWegvjpFYiAG3BkR2/UMAv7fAS6DnrBk49W+wMiJBQBDoIwK9JhZw3+rC28z7pMBbjd1U8wKxrEtxM9vYXZCGsyCgyQWkFgfY5lmKFMpzL8ZnvxhwF4JTCnUaAa/TvZfOCwKCwN4i0Gtioe5q26UW3VHX2tsfCVysens7eDPwkOQCqmG2OV3lXhHslIWAxWIBb1WMEj72V3bRL0nbCIxH1QvZRuP7Vu8cGPD7Y7ZtGJs7I4bbzWEvLQsCgkApBPpPLKC+UQqhugt/bHn/6h6/1N9FBJzaOp0yoTLqUGLAnXwHJpNJcoasVzHppsS3svqytruLfHpsHF/rpNofY6R3u8BF2hAEBAFBoAQC/ScWqxa6ndUvNNy3G+29qsQtlKI7QuD9336ClvY1mM46yNPaDNpTPEOJAff6jdj6hGcLpQqULpAMVDVhPjqabjXV6RPmGTwcQfo1gxSsOqwqweU2OWBkJW1IJYKAICAI1IBA74lFy6NwuzXcU6myHgT2z5CSJCq86Ukrzt7HVs9MM0Vi4UEVikkMuBUMif9O7KPE66kX9eR7BLWqvuI9tMbWcHSgiEUqHjvMIAtOOwRbmhIEBIFKEeg9sVBotdeOYV7p3ZTKakMA0Ryuaqu8bRVrMkEJTXgLS2vgKWtek4coNxIO9Okj/pbLpbVafcCK/Cgym5wEApoAHk4/q0RqcXJiKwlI7+wr1JcF7giQhpBcNJ6MFAUOPRrvi3RAEBAEBIGCCOwHsWiTAbd5ecBIVXmtKnjjpNhuEfhg7YFqwgahWC1vrIX30vKuv7J4rFTBADsnmNpD1EXVKlFZDLi9a08MuDN+/WePTy1KHHKpROEZRXLCMiQVR0cP+2e0nRG/RrLdWstG2pVGBQFBQBCoAIG9IBbanWvbonC7Fdw/qWJ3CHi7a6qBlkAqjHRitfyj5XnfWIvFHNIBTuKhLhJe0cWkU61eW9ZDSC7Oa+htItYLSC2YxIBbwRD9T98j2lqcPZ2tkwtNHJQ3JFM6dI6EwpCKk5PjnpMKX2JhYGjJ3m1JP6QbgoAgIAjkRmAviIVGZZ4bnToLtEmKUuc4+1P3VX+GEhpJSEphrd4rCcVi8QoiiSXIxEQZto4nv4GuyIarUT1xxbTsCaQWTqjGKg7dpEoosWCiy1lJCQiEyIXjfKGkD4Y0mL0iF8hnPnNPCQfJSP9JBSVvLSQWKXZGCXdcLgkCgoAg0DgC9HOz82SPnQkadXba8C2iJ+MFqpLZ77QDfmN8cTNoH/piAwe7gS5IkwUQ8P7f56PJ//5lgZItLqKlFOzhcvmdtVy4OFopQjEa2cqolde0dML3988TJuF3xGuQdDw7nb6dLhdvqlLhmJgmovZiwB2FSsw5fY94lUThaDq16LL37dsrSKQWkEj5E2tloH04UdcnhweqMnXfG3xWxoyoptOjmuotUO2tdYZ3w6xASSkiCAgCWRBoyXwwS1dry3NrTfGcmVdd/1+sH91GiAUGMsP2pOoBJdanX5BqYp+YcQcXB8qrzm7Hv4Nh9bqJAawsVt9bfxs+6IdqiCEVMIReLC4wwbzG7RvCSPcEK9afq1sZSygibvRoOH20Gl6hHt9rU0SWXKdoqB02FleF0eePAzHgzgUkM+tnH+8nVaOOxg+V3URcPXnue1wdcr4EAgPrUYnSUlQQEATSEGjTfDCtr3Vdr2ke+pOP9x41Qixg8+CAKbl14SX1CgL1IPDpDPV2nxAGpOK95cGOwld7GkO16PGdyhMBzLhazYno3xANezQ6UXYZLIr0EtucB0USFgD+QBKxRS50ZVSHotcjqkNx5T0pb5H2e1kG9zMgDUkDzHjfk6qQazkRAOZamv0Ov7uznKUluyAgCAgCrUDg3r2B1wix4OjFI1IrvgPSiRwIzA6fMXe3iUUEqRiNpooUWCAHauKZdWKp64IBt/V/TCHRgTObN29GyiWsxsnG3sFvfY59rmQ/cN7dG9x7GEcYaMB9iBppwE1iISkjAlnvbcbqJFvlCLjybqwcU6lQEBAEdojAPhlv7xBWaaqPCMzdgYtxdTcCd0AqvofXpxdKUkFbitEYmhd5SAXqoSSBXqQwr7dmEHQcHX2q1GtoJEzDXx2p+QA5v4V00sutM55iwCoG3EBWUv8QSPne92/AMiJBQBDoGwJCLPp2R2U8dSMwr7uBWuoPSAXUnzwOYQUpBUmF7040s6RC1/MTkAoGdj49BSeB3SvLm43Gv48fP7KcL8+KE4zb5ICEnpZS9DUidC3fAam0Cwh4Xeik9FEQEAQEgTgEhFjEISPnBYFoBC6iT7f4bJhU0KZig1QoW4o0FRnUsSmlgIOhgEwEdaAeQzBoKFyYYMSt3KIfEoG7xd816Vo5BIbJhLpc5VJaEBAEBIH6ERBiUT/G0kKPENDqUO9UFGpOttueNkkF4lOEJRWKEKSNQdfBMW9KKQJCEa6DJCULwXjgXEBFahIuGhyv0idYVIcaQoWLBtzK8JXtShIEuoYAvrfGcNv1nGXXui/9FQQEAUEgjIAQizAaciwIZENgni1be3KZoHej0VGg/pSHVIxgof34xLK2pBRJQ+REH1uUBEMFt/Pdav4HyIWzWY27VBOsmyTCwHgMK7jLNbEYNuuQz4JAxxDwOtZf6a4gIAgIAlsICLHYgkROCAKpCMyRo/1G3FrSsFz8XsWXGA7HIBW/UhP9PKRiDBuKx6eIdD3xSYIqm0c6EEEwvvzyN1CTOoX0BJVb1jNt4I0W1pK79sl8wLioDuW6b60vv3yuvFBFxr0w+WUvCHQBgTj1vy70XfooCAgCgoBGQIiFfBUEgZwIQB2K6grnOYvtNrshFYyovXyrLKxVnIqsvdDlpxOfVBgD7UyEJK6NDYJxdPRw04PUuvQiyYBbkwsSCiEVcYDL+ewI8CfdcPqYrv7XcA+leUFAEBAEUhGA1rQkQUAQKIAAicUZ7A7uU9Wn1IS7QOOJRTQpsFbvreXCVVkn4xnIxf1s0gpd3p5C9Qmen9T4qhyjlnawXmPgPZlMEAPDpfThGWJYTIHnGRiDl4gr+ilJECiDAGLNlylebdlbfN8lCQKCgCDQcQREYtHxGyjdbwYBJbX4wXKaaT1bqyqqtvYAlZtUgFAEpEJLGrK1miMX6jX2F0Z6EbK9cOGFystRm2QVBLqHAH4D2nD7vftn56p7A5AeCwKCgCCwjoAQi3U85JMgkBmB+XcDSi0uW+UhSksblotLFQBvODzMbqyty57Yd0baiRKDzEglZNSkxUgvaHtxwg5Y1gFmXC4PJAkCdSOwAgFvNA2si0bbl8YFAUFAEKgIAVGFqghIqWZvEXAw8j+0YvSaGCgVqKWr7SrgyilLCpGKw8OQkXaWskXzoE2VQuSCn09OjuFGdmhdXLy572fQ/5lPUjcRaPu9W4WIxQ77qqQVlnWDm+p088ZKrwUBQUAQWEdAiMU6HvJJEMiFAONazOzbbyC1+ELZIuxwUhLXUV8FCl6cEFk7kwpUQ6RCSXowCIUbB6Ox42fb/txiVO0X81e+16fBR19lhPkkdQoBPXluZZ+H9EoQSg309RLNz9yF44W6IYeCgCAgCHQWASEWnb110vG2IABycQZyYWOi/LAxcqHJgVGBGo2m1nD0MN1YW5dj4LtdSipIKlz3O2uKRmnAzRRgB4LB4/HkgfIadf5irsgFstzA7uICBGR9NqhK9/bfBCM77uzobq33uF8tVvO57+M7/JQTfG9nON9aS+ICQuHurE1pSBAQBASBHSAgxGIHIEsT/UdgaFmnUKa4woR5916iNDkIVKAs+LqhtCItGVIx3aFNhW7Tu76hqhNmnG8gnThSdhWMor1JLkg6zp7OLE0uDjAZW2IydpY2tL5cR3wPG2P5Q2fH49+vWVv7Pzu8ddC34/HoaH5x9X/O29pP6ZcgIAgIAl1BQIy3u3KnpJ+tRuCFO/DQwVmTnVzSrgKJ0bVTVaD0BP8I9hRr3p9UDfX/G0/GqhHGoGCgu+fPX8A17ntLqUehbyppyYUhF0EwvQf7Qyw0ErKrGYGPFiQIkgQBQUAQEARKIyDEojSEUoEg4CMAlSiqfHy1NjmuGxxNEFbLG6gLXSmD7dH4+G7lP6p9XWYEMcuRHVJBispb9TlNFiidIFGgTjvJBeJXWM7zc6UetYZfiFw8nT1WRt2QWnytV/Kr7p3Ut38IjDjkvwix2L87LyMWBASBWhAQYlELrFLpviIAcuFg7LslF2hwsSSn0Qbb6ijmX4hUPD6NybOj05OxL7Vgc3787I9KPerNm8tIyQVtLkguVIKtBcjFxP8g/wWBwggoYlG4tBQUBAQBQUAQWENAiMUaHPJBECiPgCYXL9dW3stXu11DIK14p2NWTLIZbKOmI2pLYUoV2DRs117NGfQRBteRaTQOzel0PhIMRuC+uPh9JLmYHB74cS4G1n1lyB1Zs5wUBDIjMGFOCO887iUJAoKAICAIlENAiEU5/KS0IBCJAMjFDBfqJxdoZBHYVtj4lJA0EZlOduQBSrcXR7DCEoug1yhj7C5evXodSS4Y52IywSAG1kP7gXMelJUDQaAgAitRhSqInBQTBAQBQWAdASEW63jIJ0GgMgQ0ubhTi+KqfFVJT9pXS19a4buXPYiXQOj8yq4C0orak27v+fPfbdtN6MbHIVWotf6gLMnF27dX1ha50Bln0ONiED2Qiy/E3mINPfmQD4EJs+O3usxXTHILAoKAICAIRCEgxCIKFTknCFSEgFaLUuQibuW+TFPKYBsVDIfTTNXsTAVK94ZG2VRtikprqlDhDDDYZookFyFj7tPTEz+jRC02OMg+PwLk2jf5i0kJQUAQEAQEgSgEhFhEoSLnBIEKEVDk4gfrt6jyfdXkgq5lR+MT2EukSyvo4bXyIHiQLsTZUBBCRs9erVbWwvv+Tq1Jk4OwZyhIHvyEPT1FmQjIhlysGXTr8kdHD32VKMQhgNRipmuQnSCQB4H7+AqLtCIPYpJXEBAEBIEEBIRYJIAjlwSBqhCYfzc4x8rolKujAbngpLxoMpPz0Wdw2/p5vApUqP4TO/ShikP0n2MJxhNR5+Rwos5ee17EVctas7PQpIIqUifobJhcUOqxRi50bad3g3IiG5CTgkAMAk/t2wkvfRBiEYOQnBYEBAFBID8CQizyYyYlBIFCCDCIHoxEqbOkjLqTJuSZGtDkItGzk57802C7Ui9Qul4GtdsKbBfqPCUWTN61p/ab/6LUoU5UJO5ji6pOm+Ti7dt3PpFBRRw3vUQpQ27LOhCpxSa68jkJAfwWJ7wOsu9xL0kQEAQEAUGgPAJCLMpjKDUIApkRoJEothkmM7+uRHoBchGoESX0gipQdaQX81fW8/MXUHf6sC650KSHsSdoZJ1JYqE7eAHpBMmKbX+uSEOYXLx6dXGnVqXzh6QWszrGKHX2GwEQDK/fI5TRCQKCgCCwOwSEWOwOa2lJEAgQgPRijg82tnXpBSQBpRLLhzZKRRguYjwJ1Rq6nmQfESoRe3gIVSfaUNCDU1yKtLPQmdc8Q6FftKmgwfccBILp8Z2Bti5hWSQzRkqyIbWgrYUdZJQDQSAZgYm+vEzOJlcFAUFAEBAEsiIgxCIrUpJPEKgYAapGaenFLz61rNdr9gpm8p/UpskT2ps6zJ7FF4tL5bbVu74JbCLMde7DRGTtOKltfW2qRSFXV9exuZPsLLZUoTS58GCTwf5S4nF0NF1TiSLxILkIpCRoeTrVIplbpWoW2xe5IAiEEJjw+O9EYhGCRA4FAUFAECiHgBCLcvhJaUGgNAIkGL9zB6eo6JfYAglG4qQfE/AwOTDHKP8e2w22S6havVwtr196iyslUTh/MbfOzr6yzs9fKkNoTtzN5NyUD+8TSYZWdTI2DoYIsPymFCSSfOjy9AxFVSml7oRz4USVKCabPnJN0sRjsVisubHlZ5VuRa3FQCX7VAQmzPEXMd5OBUoyCAKCgCCQFQFOAyQJAoJACxCA9MJFN1x4q3Gg902iMcNE/WFC1y5HyHeeEtzLnjhn0DCimyXWaYMEHJAIvNEVUx1pPBpBOjBWXpo40ecxJ/0mJRmI09j6xdyzSATODp+YIsr2g+VG4/uKPAST/7sc6miEtteukTwMPlrsI8lPmLzwPIkL96771qKkhP3V5W/cPzkXG9W36iPuxcj6wZrBLmaaqWO31iiLDU2muprIhP5DPW2eqelb6wpjvXAXjpcpf/lME1YBAu5xL0kQEAQEAUGgPAJCLMpjKDUIApUiQAkGKjznRpeYIBmchIYnoktMhi50PlxKTq7nLJHjQm+W/ffO1PoE9d2CaAysR5yUq4n59fVWRZz0UxXp5OR426WtljocTj9Tk3sSAUpASEg2iQhVlWiHYYiCuq5bI6lZIxahXhiyYqMPc9QfJE0uqBal0q31DmM5Da638AATbBikWC76eZC5extSnMzl2pJxYN1HV55k6s5A5TujncyOyMWI/cr6O8o0BskkCAgCgsCeIyDEYs+/ADL8diOgJz0eekliUEly/+xcoaIr+wFWzy3rEQ2m45KJnE0DbEoONgmDKWdDasFYE5QikIRsJmOk7YHEsJ5wUnYWm5zm9k5qQbJyCGIyvBgqQ3EjtTCSC61Gdb6jyWi46/mOb60zkgoSNaqHUdKSlojXxYWRLaXlbt91jvHp7HGmjtFzGL5D/HI42GbY6k4TNEDVQUmCgCAgCAgCFSEgxKIiIKUaQaCDCNhBnzGRj0qcxHPiTi9NX375NFIawXJpxIIT6QsoX1F1iW5kwyltgn2NMlNE2SY5oVSks0mrP9FmhEbp+5B4bzeJZNy4mY/kFMnmvzrTzL4lqaY05bLOdqRuQUAQEAT2DQEx3t63Oy7jFQTuEJjcHcYcUXKAPyO52MoFVR1KMaj+RPJA17PXV3+8i2mhryfZWVAVKimZGBiB56fozF706VadVX004yFuSVurel6yM0nj5DWmhfe9f7ADm4ef/qc10Y0tTaOyFwQEAUFAECiPgBCL8hhKDYJANxEYWA+VGlSMtCIYlCYXVHNaIw1BBv+AUgumN8gXlUgMSDxoZ6G8R+lMqRKLa0/lnEBiEZt+tNo/QfxR2c2oVXlOogMMQL6gIrW+xQ60wxc2x8jPSMSBcUnoQlinuTmoa//Xn1sTXfdVXW1IvYKAICAI7CMCQiz28a7LmPceAWVIXAAFqkSZ4HSBW1lMELnqTFWWyWSi1JUC8hAiLcbOwqzYm+ZjiYUmNJSW0M6Cnqpi088tL/ZaSy4o25Zb67ckV2txOEIYtaSrO++GCnroG+J/BVuZ+Q46MNFttJ+Q7gAMaUIQEAQEgaoQEGJRFZJSjyDQJQR+hBtTk7hynLYhC6UbnBSbqNimeHhv1JWuIjxMmXgW11oCYVbsaaAcpM1+6AvLxVKpW5GEBDEvkFcdwyOU9nwVVNPWA/d75xyE7BuSpRcvghX6tna33n6BUPE78ObNpe8VjPdx4Tj1NhrUPtFHIrEIIJEDQUAQEATKIyDEojyGUoMg0D0EPvGJBSfmef44UBpQX1z83lfl2Vhtp8cjTv7pWtYE32MZSjRoZ2FiVvAapRqvXr0OvB7F9cNvEy5xPdpyDPkx6LP6MED8gw4lkIszkIt3STh2aDjFuqpJxdXbd8Zg+wbk9rRYZYVKTVnqpxIcrxB4UkgQEAQEgTgExCtUHDJyXhDoNwIehvey4BBt2FscULXpCN6alPEtpAfc04g7ykOUkU7QToLSjC+/fB5u+gYf3PCJzeO3V5/ab6+tg9Ho85vl8vfrebXtwmaZVn/2J9FuFI6t7ncVndOkgip1r4wr3R+tU6iKeVVUn7GOEfP9qzvoFCnNODbJJggIAoJAYwgIsWgMemlYEGgOAR3zYVakBwxghnJ/YHwFEgW6TlXkQle2SSyMcS7zKxWpW8QOGMDYmpGWSSh+Zs3TVJn+5b89m/7Vsv7dGh4d/G//7ej8X/+t2xNC4o9AhacIVPjvWziCpPU2aVJBidX5i7lSrcNYv1L2J7sd9MNPLQRVlCQICAKCgCBQKQKiClUpnFKZINB/BDApdkEKAiPkwJgbQzdSCxpx0x6DKlPn5y8t5/m5IRWMkD1FHROoBJ3S5iCNVBBRRSR+sH7L409+bl0wIjmPu5z22ZibZIp2Jkgv8V1wdnkf/+Wfbqds74OoQe0SdmlLEBAE9gQBIRZ7cqNlmIJAlQgoI2SsNHNyyJVnQy4onaDthJ40qkjctCUAEWGE468gnbC5Wl+kL/PvBuesY2VZB9i7OshZkapaU0bhuC/G3FpaQWNt2uAg3VhDRCPfcYKr2ZFuUnVix81Lc4KAICAI9BoBUYXq9e2VwQkC9SHAlWaoRZFEPKNEglKKBTw8UVKhEibMkE5cWIgxUZWqy9wdOCAUE7TwBG2QXNg4t6xvlPXXDHJxZj9wbBCwh5TwnJ7+ak21rP4e7KYFkk7G71DRtX11ODuLtKqG3k11nV4NdUuVgoAgIAjsNQJCLPb69svgBYFyCGhy4aEWBxPjAyWZ8L00OZgwu+Vqjy19hiucHD6Ej6hz7GfYup0ijLm7PaD13hs7myAI3sA6Kyq5Wq+50KeJLnVVqLQUEgQEAUFAEIhFQIhFLDRyQRAQBLIggAniHPm47SRRQkFJBUjFFSUXv7Fvl79zByQbnU2cZEP6M8MAlFH8IaQ/dM/bp9RAELw4+EhKxdVsHDpyXhAQBASBEgiIjUUJ8KSoICAINIOAVn8iubiBEe4XIBpOMz2prlWQi8Ao3veYhJH1JDUUBC8OPRKL9+JqNg4eOS8ICAKCQHEEhFgUx05KCgKCQIMIvHAHHppX5AL7Z70gFz2MzN1gELytbye+IyOcpCjoauuinBAEBAFBQBAojYAQi9IQSgWCgCDQFAJ9JBfwg+rAVkVF5kYAvW1o4V0J19u7hXpMQ/61IHgFPYKFqix7qNSgUMmybEVSXhAQBAQBQWAbASEW25jIGUFAEOgQAn0jF+7SWcKb1iluwY0KKBi6FzSC7sJmukxiob2ENREEz3QjvDfEwg2flGNBQBAQBASBahDoc4zXahCSWgQBQaATCOigea6Oc/EVXdN2ouMxnTQRznl5OByqLSZrK0+bWCboHIPgzdrQSahCnaMfX2D7Jb4fbhv6JH0QBAQBQaBPCAix6NPdlLEIAnuOQO/IxQPnDNKLrzt8WxkEb9pQvIot2EAsXJw8xva/aAcAW3nkhCAgCAgCgkBxBIRYFMdOSgoCgkALEQiTC3iNeglVqVkLuyldagABEItbehLDd2LSQPPSpCAgCAgCvUdAbCx6f4tlgILAfiEQtrlgnAtMJq+wjfYLBRntJgL4Dtg8h+/E1eY1+SwICAKCgCBQDQJCLKrBUWoRBASBFiFgyAW69A4bI3RfaUlGi3opXdkxAmK4vWPApTlBQBDYPwSEWOzfPZcRCwJ7gUCIXLzUBt3uv/zTrZlc7gUGMsg1BE756aeW5a6dlQ+CgCAgCAgClSEgNhaVQSkVCQKCQFsRgBqMg7490/37LQx3z9va1zb1S6sPkYyN2C9IfrwfIf3pYtRqjEXsK9r05ZK+CAKCQC8REGLRy9sqgxIEBIFNBGaf355ZPws8LHXeHe3m+Kr6fAZ7lKVlnaE+boxSHZXegWScQyo0j7rYtnOaIP0BfRZj/rbdHOmPICAI9AoBIRa9up0yGEFAEEhCgKpQn/zcutCqUZwcn2qVqaRie3NtA5/3GPgVtgtsSw3CBPtTbA/5+VPL+uZ37uCMx21OsK+Z05D/7yzrv/9f7oDjkSQICAKCgCBQAwJCLGoAVaoUBASB9iJAI25MMjm5pFH3DY5nEizNskgq/vpzZX9AKcU3I8tyzt3BMupOQgJwSokFCVoXpAC45x77irFI/IqoGyrnBAFBQBCoCAEhFhUBKdUIAoJAtxDA5NhBj43dxV6rRmmPWa6efGfCYqNMa+1WRA2qW79L6a0gIAh0GwHxCtXt+ye9FwQEgYIIQErhYLX915RaoIpnXNXWk+WCNXa6mJOHVHCkVCH78T+VWhQ/OpjAQ8jRvoT7O2OvPvpSqvZ1UHokCAgCgkCPEBBi0aObKUMRBASBfAho42Mbpd5xYo2NwfTO8tXS7dwkUxj3ExIskq08o/nXfxtcIf832Kg+NcPWqhQem9hWtOrWSGcEAUGgpwgIsejpjZVhCQKCQDYEuPKOCfUUub/Cxgny15iQzvdFegFSYYiUg7EXSRe6kF2kcM1lTJ/cmtuR6gUBQUAQEASAgBAL+RoIAoKAIAAEtGrUL7hyzxX8PZJekFQxuep/zn/ATZUDbqaenDXUmt3RtZt9rY1J5YKAICAI7DsCQiz2/Rsg4xcEBIEAAUovsE1wIiy96LvtBQnBe44d+6KJdiqtSpA4zUAOjdcqr1Wdk84IAoKAINBTBIRY9PTGyrAEAUGgOAJGeoEajO3Ff/RYPeo+4lF4xdFSJenKtW3J0R0y+7b1T/ojCAgCgkDvEBBi0btbKgMSBASBKhAwthdQ8VGeo6gehXpdroRXUX8b6jB2JB/uAuDl7hbjX7AQ8PFyF66pgEgragJWqhUEBAFBIAUBIRYpAMllQUAQ2G8EQDDmQMDG9g1Va7B9i4kr1aNmONfpZNSfQJ4mRQeCSObGtsItWkeV5c58t7eOrtPsq2xC6hIEBAFBQBCIQUCIRQwwcloQEAQEAYOAll6cYQL+C5x72TOCQWP1kRlrgb3DMsBmzn3TaQkvV7w/6M9LQ5ya7pO0LwgIAoLAviAgxGJf7rSMUxAQBEojoAnG7Kf/af0jKrvsA8GAfcUVxnJfR6jOhZFROSIWbZjEoz8T9OUZSAWNyR1skgQBQUAQEAR2iIAQix2CLU0JAoJAPxBgYDgYeNsYzS+xdZpgwL7CxRiYTv1dtv96Eu8wNybyM+6bTFoFytV9cNpAdJrEQ9oWBAQBQaAJBAZNNCptCgKCgCDQJwT0ar+DMR1zXFwx/2hZ51i5+f/bu4Pcto0wDKACii6KLqIbxDeoNkWX1Q2qG1hdFF3GN6hvUHndRXUEHUG+gX0D9QbyIijQoHC/XyETVVFiObVKCn4EGFISqRk+As58mBlq0fcGbupew6BWVe8sZwlMGU308PLz+H6RUPJDjrzKORcPn3HcI3Ids5TwqhkCNT1uab6dAAECBPYJ6LHYp+I9AgQIPEIgDetl9WCkUftuDsZf+QXvDJXaPKb2c4YZPaL4/3RoEySqUV6/On5QQMj1zCtUVIDqSai4TN0rVPyR9aBryPEWAgQIEHhiAT0WTwzq6wgQIFDDhBIqarL3pOZhlEg1eu/Tg5E/urO+9WJs9Vq8qPkjNdRr312s4UZ/ZpJ2GypyzLjra2nmefyeutzFeNR1ffa5eY8AAQLPRUCweC532nUSINCJQNPwnabwzTCpphK32c7TEO7NUKnpd/cXg68Gv1YASt0+CAzV65LP5hWUMuH7Nv95TLpuxG+FisGnAlFjbkOAAAECRxYQLI4M7OsJECBQAtWLkc24ejKy/SbrZqmGfPVkpBdgUUOqmrc72SQ8zFLwq6y3qdcmOFS9U79ZM5+i6nU1zBOXZgfOxagTjrFsh4rU9ceEnPkxyvGdBAgQIHC4gGBxuJUjCRAg8CQC1VhPwJjky2rd7sm4y+ubrIvadhE0av5Eyj6vwJM6rrK/qV/zetpFnVKHfy2p42Xe+KXeFCpKwUKAAIF+CAgW/bgPakGAwDMVaHsy0iswSa/AOAw1iXp7uc7Qo5v8sb6phv4w22P0FjRhp4Y7Va/KeVuBJlDMEygu2/e62tYcj/Xb0FVh5y7Dn8Yfmw/SVR2VS4AAgecsIFg857vv2gkQ6J3AT9/ej958PRgnTIzzB3qURv7LPZWsORrrChwJI2lrb3o51l9m/4usCQPr3fDRBJjB3/mV7Td5rGzOOcv5m+2eQHOXz5bt8KfsX2X/MuGiyupkSf2nsZil8BepTy/meHQCoVACBAj0WECw6PHNUTUCBAg0PQmjSIzSoB6lgX+W/XdzNJ5IaDMEK99fQWUxzLaCSYYcTRJSZhVuquciZdUPz82fqMyDviZ1GOfAy6zVS1FLL343421V/EuAAAEC2wKCxbaGfQIECJyIQNOzkQwwqNAxTMO/JlkPEwzqvVpq2+6vs19rzUlY5bh1jlvl5Sqvbz71dKcm2Fzm2POsdf7/EjD2BIrrFF+9Jsuqh4UAAQIE+icgWPTvnqgRAQIEeifwkYCxzNCq2W/L/b978diLaMqY5ryLrO1cE4HisZCOJ0CAQEcCgkVH8IolQIDAKQrsBoy6hqYXY5khU4uHekC2r7n5rhriNU4PyiSfvdz6XKDYwrBLgACBUxAQLE7hLqkjAQIEeiZQT2hKkJhknaZq3+9Ur52zsc5/MusaepXtsD0m54yyf5a17ZVoP7rOTs3xmO9OPm8PsCVAgACB/grkb72FAAECBAh8vkDzGNhx0/NQoaHW3dCwW0CFj1XOqadP3SRMLISJXSKvCRAgcFoCgsVp3S+1JUCAwEkIVNh4/XpwlkfnJjO8XzJUqiaMf/A43PdH2CNAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECBAgAABAgQIECDwEYF/AAclO03eu8PnAAAAAElFTkSuQmCC"/>
</defs>
</svg>
PK��][��;VVLultimate-addons-for-gutenberg/assets/images/block-previews/image-gallery.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="19" y="18" width="41.8852" height="34.7049" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip0_112_10)">
		<path d="M37.1633 31.9549C37.1633 32.4449 36.9687 32.9149 36.6222 33.2613C36.2757 33.6078 35.8058 33.8025 35.3157 33.8025C34.8257 33.8025 34.3558 33.6078 34.0093 33.2613C33.6628 32.9149 33.4681 32.4449 33.4681 31.9549C33.4681 31.4649 33.6628 30.9949 34.0093 30.6484C34.3558 30.302 34.8257 30.1073 35.3157 30.1073C35.8058 30.1073 36.2757 30.302 36.6222 30.6484C36.9687 30.9949 37.1633 31.4649 37.1633 31.9549Z" fill="#E4EBF0"/>
		<path d="M32.2364 26.4121C31.5831 26.4121 30.9565 26.6717 30.4945 27.1336C30.0325 27.5956 29.7729 28.2222 29.7729 28.8756V41.1929C29.7729 41.8462 30.0325 42.4728 30.4945 42.9348C30.9565 43.3968 31.5831 43.6564 32.2364 43.6564H47.0172C47.6705 43.6564 48.2971 43.3968 48.7591 42.9348C49.2211 42.4728 49.4807 41.8462 49.4807 41.1929V28.8756C49.4807 28.2222 49.2211 27.5956 48.7591 27.1336C48.2971 26.6717 47.6705 26.4121 47.0172 26.4121H32.2364ZM47.0172 27.6438C47.3439 27.6438 47.6572 27.7736 47.8882 28.0046C48.1192 28.2356 48.2489 28.5489 48.2489 28.8756V36.8818L43.5967 34.4836C43.4812 34.4258 43.3504 34.4057 43.2228 34.4263C43.0953 34.4468 42.9774 34.507 42.886 34.5982L38.3162 39.1679L35.0398 36.9853C34.9215 36.9065 34.7796 36.8711 34.6382 36.885C34.4968 36.899 34.3645 36.9614 34.2638 37.0617L31.0047 39.9612V28.8756C31.0047 28.5489 31.1345 28.2356 31.3654 28.0046C31.5964 27.7736 31.9097 27.6438 32.2364 27.6438H47.0172Z" fill="#E4EBF0"/>
	</g>
	<rect x="19" y="56.2952" width="41.8852" height="34.7049" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip1_112_10)">
		<path d="M37.1633 70.2501C37.1633 70.7401 36.9687 71.21 36.6222 71.5565C36.2757 71.903 35.8058 72.0977 35.3157 72.0977C34.8257 72.0977 34.3558 71.903 34.0093 71.5565C33.6628 71.21 33.4681 70.7401 33.4681 70.2501C33.4681 69.7601 33.6628 69.2901 34.0093 68.9436C34.3558 68.5971 34.8257 68.4025 35.3157 68.4025C35.8058 68.4025 36.2757 68.5971 36.6222 68.9436C36.9687 69.2901 37.1633 69.7601 37.1633 70.2501Z" fill="#E4EBF0"/>
		<path d="M32.2364 64.7073C31.5831 64.7073 30.9565 64.9668 30.4945 65.4288C30.0325 65.8908 29.7729 66.5174 29.7729 67.1707V79.4881C29.7729 80.1414 30.0325 80.768 30.4945 81.23C30.9565 81.692 31.5831 81.9515 32.2364 81.9515H47.0172C47.6705 81.9515 48.2971 81.692 48.7591 81.23C49.2211 80.768 49.4807 80.1414 49.4807 79.4881V67.1707C49.4807 66.5174 49.2211 65.8908 48.7591 65.4288C48.2971 64.9668 47.6705 64.7073 47.0172 64.7073H32.2364ZM47.0172 65.939C47.3439 65.939 47.6572 66.0688 47.8882 66.2998C48.1192 66.5308 48.2489 66.8441 48.2489 67.1707V75.177L43.5967 72.7788C43.4812 72.721 43.3504 72.7009 43.2228 72.7214C43.0953 72.742 42.9774 72.8021 42.886 72.8934L38.3162 77.4631L35.0398 75.2805C34.9215 75.2017 34.7796 75.1663 34.6382 75.1802C34.4968 75.1941 34.3645 75.2565 34.2638 75.3568L31.0047 78.2563V67.1707C31.0047 66.8441 31.1345 66.5308 31.3654 66.2998C31.5964 66.0688 31.9097 65.939 32.2364 65.939H47.0172Z" fill="#E4EBF0"/>
	</g>
	<rect x="65.6721" y="18" width="41.8852" height="34.7049" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip2_112_10)">
		<path d="M83.8355 31.9549C83.8355 32.4449 83.6408 32.9149 83.2943 33.2613C82.9478 33.6078 82.4779 33.8025 81.9879 33.8025C81.4979 33.8025 81.0279 33.6078 80.6814 33.2613C80.3349 32.9149 80.1403 32.4449 80.1403 31.9549C80.1403 31.4649 80.3349 30.9949 80.6814 30.6484C81.0279 30.302 81.4979 30.1073 81.9879 30.1073C82.4779 30.1073 82.9478 30.302 83.2943 30.6484C83.6408 30.9949 83.8355 31.4649 83.8355 31.9549Z" fill="#E4EBF0"/>
		<path d="M78.9086 26.4121C78.2552 26.4121 77.6286 26.6717 77.1666 27.1336C76.7046 27.5956 76.4451 28.2222 76.4451 28.8756V41.1929C76.4451 41.8462 76.7046 42.4728 77.1666 42.9348C77.6286 43.3968 78.2552 43.6564 78.9086 43.6564H93.6893C94.3427 43.6564 94.9693 43.3968 95.4313 42.9348C95.8933 42.4728 96.1528 41.8462 96.1528 41.1929V28.8756C96.1528 28.2222 95.8933 27.5956 95.4313 27.1336C94.9693 26.6717 94.3427 26.4121 93.6893 26.4121H78.9086ZM93.6893 27.6438C94.016 27.6438 94.3293 27.7736 94.5603 28.0046C94.7913 28.2356 94.9211 28.5489 94.9211 28.8756V36.8818L90.2688 34.4836C90.1533 34.4258 90.0225 34.4057 89.895 34.4263C89.7674 34.4468 89.6496 34.507 89.5581 34.5982L84.9884 39.1679L81.712 36.9853C81.5937 36.9065 81.4518 36.8711 81.3104 36.885C81.1689 36.899 81.0367 36.9614 80.936 37.0617L77.6768 39.9612V28.8756C77.6768 28.5489 77.8066 28.2356 78.0376 28.0046C78.2686 27.7736 78.5819 27.6438 78.9086 27.6438H93.6893Z" fill="#E4EBF0"/>
	</g>
	<rect x="65.6721" y="56.2952" width="41.8852" height="34.7049" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip3_112_10)">
		<path d="M83.8355 70.2501C83.8355 70.7401 83.6408 71.21 83.2943 71.5565C82.9478 71.903 82.4779 72.0977 81.9879 72.0977C81.4979 72.0977 81.0279 71.903 80.6814 71.5565C80.3349 71.21 80.1403 70.7401 80.1403 70.2501C80.1403 69.7601 80.3349 69.2901 80.6814 68.9436C81.0279 68.5971 81.4979 68.4025 81.9879 68.4025C82.4779 68.4025 82.9478 68.5971 83.2943 68.9436C83.6408 69.2901 83.8355 69.7601 83.8355 70.2501Z" fill="#E4EBF0"/>
		<path d="M78.9086 64.7073C78.2552 64.7073 77.6286 64.9668 77.1666 65.4288C76.7046 65.8908 76.4451 66.5174 76.4451 67.1707V79.4881C76.4451 80.1414 76.7046 80.768 77.1666 81.23C77.6286 81.692 78.2552 81.9515 78.9086 81.9515H93.6893C94.3427 81.9515 94.9693 81.692 95.4313 81.23C95.8933 80.768 96.1528 80.1414 96.1528 79.4881V67.1707C96.1528 66.5174 95.8933 65.8908 95.4313 65.4288C94.9693 64.9668 94.3427 64.7073 93.6893 64.7073H78.9086ZM93.6893 65.939C94.016 65.939 94.3293 66.0688 94.5603 66.2998C94.7913 66.5308 94.9211 66.8441 94.9211 67.1707V75.177L90.2688 72.7788C90.1533 72.721 90.0225 72.7009 89.895 72.7214C89.7674 72.742 89.6496 72.8021 89.5581 72.8934L84.9884 77.4631L81.712 75.2805C81.5937 75.2017 81.4518 75.1663 81.3104 75.1802C81.1689 75.1941 81.0367 75.2565 80.936 75.3568L77.6768 78.2563V67.1707C77.6768 66.8441 77.8066 66.5308 78.0376 66.2998C78.2686 66.0688 78.5819 65.939 78.9086 65.939H93.6893Z" fill="#E4EBF0"/>
	</g>
	<defs>
		<clipPath id="clip0_112_10">
			<rect width="19.7077" height="19.7077" fill="white" transform="translate(29.7705 25.1803)"/>
		</clipPath>
		<clipPath id="clip1_112_10">
			<rect width="19.7077" height="19.7077" fill="white" transform="translate(29.7705 63.4755)"/>
		</clipPath>
		<clipPath id="clip2_112_10">
			<rect width="19.7077" height="19.7077" fill="white" transform="translate(76.4426 25.1803)"/>
		</clipPath>
		<clipPath id="clip3_112_10">
			<rect width="19.7077" height="19.7077" fill="white" transform="translate(76.4426 63.4755)"/>
		</clipPath>
	</defs>
</svg>
PK��][�v�B66Oultimate-addons-for-gutenberg/assets/images/block-previews/marketing-button.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="15" y="42" width="91" height="26" rx="13" fill="#C8D0D7"/>
	<g clip-path="url(#clip0_40_115)">
		<path fill-rule="evenodd" clip-rule="evenodd" d="M93.2385 50.3125C93.2385 50.2628 93.2187 50.2151 93.1836 50.1799C93.1484 50.1448 93.1007 50.125 93.051 50.125H90.5625C90.4133 50.125 90.2702 50.1843 90.1648 50.2898C90.0593 50.3952 90 50.5383 90 50.6875V54.4375C90 54.5867 90.0593 54.7298 90.1648 54.8352C90.2702 54.9407 90.4133 55 90.5625 55H94.3125C94.4617 55 94.6048 54.9407 94.7102 54.8352C94.8157 54.7298 94.875 54.5867 94.875 54.4375V51.949C94.875 51.8993 94.8552 51.8516 94.8201 51.8164C94.7849 51.7813 94.7372 51.7615 94.6875 51.7615C94.6378 51.7615 94.5901 51.7813 94.5549 51.8164C94.5198 51.8516 94.5 51.8993 94.5 51.949V54.4375C94.5 54.4872 94.4802 54.5349 94.4451 54.5701C94.4099 54.6052 94.3622 54.625 94.3125 54.625H90.5625C90.5128 54.625 90.4651 54.6052 90.4299 54.5701C90.3948 54.5349 90.375 54.4872 90.375 54.4375V50.6875C90.375 50.6378 90.3948 50.5901 90.4299 50.5549C90.4651 50.5198 90.5128 50.5 90.5625 50.5H93.051C93.1007 50.5 93.1484 50.4802 93.1836 50.4451C93.2187 50.4099 93.2385 50.3622 93.2385 50.3125Z" fill="#E4EBF0"/>
		<path fill-rule="evenodd" clip-rule="evenodd" d="M93.325 50.0385C93.3977 50.1112 93.4385 50.2097 93.4385 50.3125C93.4385 50.4153 93.3977 50.5138 93.325 50.5865C93.2523 50.6592 93.1538 50.7 93.051 50.7H90.575V54.425H94.3V51.949C94.3 51.8462 94.3408 51.7477 94.4135 51.675C94.4862 51.6023 94.5847 51.5615 94.6875 51.5615C94.7903 51.5615 94.8888 51.6023 94.9615 51.675C95.0342 51.7477 95.075 51.8462 95.075 51.949V54.4375C95.075 54.6397 94.9947 54.8337 94.8517 54.9767C94.7087 55.1197 94.5147 55.2 94.3125 55.2H90.5625C90.3603 55.2 90.1663 55.1197 90.0233 54.9767C89.8803 54.8337 89.8 54.6397 89.8 54.4375V50.6875C89.8 50.4853 89.8803 50.2913 90.0233 50.1483C90.1663 50.0053 90.3603 49.925 90.5625 49.925H93.051C93.1538 49.925 93.2523 49.9658 93.325 50.0385ZM93.1836 50.1799C93.2187 50.2151 93.2385 50.2628 93.2385 50.3125C93.2385 50.3622 93.2187 50.4099 93.1836 50.4451C93.1484 50.4802 93.1007 50.5 93.051 50.5H90.5625C90.5128 50.5 90.4651 50.5197 90.4299 50.5549C90.3948 50.5901 90.375 50.6378 90.375 50.6875V54.4375C90.375 54.4872 90.3948 54.5349 90.4299 54.5701C90.4651 54.6052 90.5128 54.625 90.5625 54.625H94.3125C94.3622 54.625 94.4099 54.6052 94.4451 54.5701C94.4802 54.5349 94.5 54.4872 94.5 54.4375V51.949C94.5 51.8993 94.5198 51.8516 94.5549 51.8164C94.5901 51.7812 94.6378 51.7615 94.6875 51.7615C94.7372 51.7615 94.7849 51.7812 94.8201 51.8164C94.8552 51.8516 94.875 51.8993 94.875 51.949V54.4375C94.875 54.5867 94.8157 54.7297 94.7102 54.8352C94.6048 54.9407 94.4617 55 94.3125 55H90.5625C90.4133 55 90.2702 54.9407 90.1648 54.8352C90.0593 54.7297 90 54.5867 90 54.4375V50.6875C90 50.5383 90.0593 50.3952 90.1648 50.2897C90.2702 50.1843 90.4133 50.125 90.5625 50.125H93.051C93.1007 50.125 93.1484 50.1447 93.1836 50.1799Z" fill="#E4EBF0"/>
		<path fill-rule="evenodd" clip-rule="evenodd" d="M96 49.1875C96 49.1378 95.9802 49.0901 95.9451 49.0549C95.9099 49.0198 95.8622 49 95.8125 49H93.9375C93.8878 49 93.8401 49.0198 93.8049 49.0549C93.7698 49.0901 93.75 49.1378 93.75 49.1875C93.75 49.2372 93.7698 49.2849 93.8049 49.3201C93.8401 49.3552 93.8878 49.375 93.9375 49.375H95.3599L92.3048 52.4297C92.2873 52.4472 92.2735 52.4679 92.2641 52.4907C92.2546 52.5134 92.2498 52.5378 92.2498 52.5625C92.2498 52.5872 92.2546 52.6116 92.2641 52.6343C92.2735 52.6571 92.2873 52.6778 92.3048 52.6953C92.3222 52.7127 92.3429 52.7265 92.3657 52.7359C92.3884 52.7454 92.4128 52.7502 92.4375 52.7502C92.4622 52.7502 92.4866 52.7454 92.5093 52.7359C92.5321 52.7265 92.5528 52.7127 92.5703 52.6953L95.625 49.6401V51.0625C95.625 51.1122 95.6448 51.1599 95.6799 51.1951C95.7151 51.2302 95.7628 51.25 95.8125 51.25C95.8622 51.25 95.9099 51.2302 95.9451 51.1951C95.9802 51.1599 96 51.1122 96 51.0625V49.1875Z" fill="#E4EBF0"/>
		<path fill-rule="evenodd" clip-rule="evenodd" d="M92.3047 52.4297L95.3599 49.375H93.9375C93.8878 49.375 93.8401 49.3552 93.8049 49.3201C93.7698 49.2849 93.75 49.2372 93.75 49.1875C93.75 49.1378 93.7698 49.0901 93.8049 49.0549C93.8401 49.0197 93.8878 49 93.9375 49H95.8125C95.8622 49 95.9099 49.0197 95.9451 49.0549C95.9802 49.0901 96 49.1378 96 49.1875V51.0625C96 51.1122 95.9802 51.1599 95.9451 51.1951C95.9099 51.2302 95.8622 51.25 95.8125 51.25C95.7628 51.25 95.7151 51.2302 95.6799 51.1951C95.6448 51.1599 95.625 51.1122 95.625 51.0625V49.6401L92.5702 52.6952C92.5528 52.7127 92.5321 52.7265 92.5093 52.7359C92.4866 52.7454 92.4622 52.7502 92.4375 52.7502C92.4128 52.7502 92.3884 52.7454 92.3657 52.7359C92.3429 52.7265 92.3222 52.7127 92.3047 52.6952C92.2873 52.6778 92.2735 52.6571 92.2641 52.6343C92.2546 52.6116 92.2498 52.5871 92.2498 52.5625C92.2498 52.5378 92.2546 52.5134 92.2641 52.4906C92.2735 52.4679 92.2873 52.4472 92.3047 52.4297ZM95.425 50.123V51.0625C95.425 51.1653 95.4658 51.2638 95.5385 51.3365C95.6112 51.4092 95.7097 51.45 95.8125 51.45C95.9153 51.45 96.0138 51.4092 96.0865 51.3365C96.1592 51.2638 96.2 51.1653 96.2 51.0625V49.1875C96.2 49.0847 96.1592 48.9862 96.0865 48.9135C96.0138 48.8408 95.9153 48.8 95.8125 48.8H93.9375C93.8347 48.8 93.7362 48.8408 93.6635 48.9135C93.5908 48.9862 93.55 49.0847 93.55 49.1875C93.55 49.2903 93.5908 49.3888 93.6635 49.4615C93.7362 49.5342 93.8347 49.575 93.9375 49.575H94.877L92.1633 52.2883C92.1273 52.3243 92.0988 52.3671 92.0793 52.4141C92.0598 52.4611 92.0498 52.5116 92.0498 52.5625C92.0498 52.6134 92.0598 52.6638 92.0793 52.7109C92.0988 52.7579 92.1273 52.8007 92.1633 52.8367C92.1993 52.8727 92.2421 52.9012 92.2891 52.9207C92.3362 52.9402 92.3866 52.9502 92.4375 52.9502C92.4884 52.9502 92.5388 52.9402 92.5859 52.9207C92.6329 52.9012 92.6757 52.8727 92.7117 52.8367L95.425 50.123Z" fill="#E4EBF0"/>
	</g>
	<rect x="38" y="59" width="45" height="2" fill="#E4EBF0"/>
	<rect x="29" y="51" width="59" height="3" fill="#E4EBF0"/>
	<defs>
		<clipPath id="clip0_40_115">
			<rect width="6" height="6" fill="white" transform="translate(90 49)"/>
		</clipPath>
	</defs>
</svg>
PK��][�c֬99Hultimate-addons-for-gutenberg/assets/images/block-previews/container.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="16" y="33" width="46" height="45" fill="#C8D0D7"/>
	<rect x="65" y="33" width="46" height="45" fill="#C8D0D7"/>
</svg>
PK��][Zd�T��Sultimate-addons-for-gutenberg/assets/images/block-previews/children/form-accept.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="49.4" y="54.2" width="41.6" height="2" fill="#E4EBF0"/>
	<rect x="35.5" y="51.5" width="7" height="7" rx="0.5" stroke="#C8D0D7"/>
	<path d="M40.8445 53.0536C41.0024 53.1537 41.0475 53.3601 40.9452 53.5146L38.7382 56.8479C38.6801 56.9355 38.5836 56.9915 38.4772 56.9991C38.4689 56.9997 38.4604 57 38.4522 57C38.3546 57 38.2613 56.9591 38.1964 56.8868L37.0849 55.6506C36.9607 55.5123 36.9744 55.3018 37.1156 55.1801C37.2571 55.0584 37.4722 55.0721 37.5964 55.2102L38.4109 56.116L40.3733 53.1521C40.4758 52.9976 40.6868 52.9535 40.8445 53.0536Z" fill="#C8D0D7"/>
</svg>
PK��][ǘ?[��Uultimate-addons-for-gutenberg/assets/images/block-previews/children/form-textarea.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="40.5" width="97" height="36" rx="0.5" stroke="#C8D0D7"/>
	<rect x="14" y="34" width="26" height="2" fill="#E4EBF0"/>
	<rect x="18" y="46" width="26" height="1.2" fill="#E4EBF0"/>
</svg>
PK��][�k����Xultimate-addons-for-gutenberg/assets/images/block-previews/children/price-list-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="40" width="35" height="29" rx="1" fill="#C8D0D7"/>
	<path d="M25.0606 47.0293C24.5146 47.0293 23.991 47.2462 23.605 47.6322C23.219 48.0183 23.0021 48.5419 23.0021 49.0878V59.3804C23.0021 59.9263 23.219 60.4499 23.605 60.8359C23.991 61.222 24.5146 61.4389 25.0606 61.4389H37.4116C37.9576 61.4389 38.4812 61.222 38.8672 60.8359C39.2533 60.4499 39.4702 59.9263 39.4702 59.3804V49.0878C39.4702 48.5419 39.2533 48.0183 38.8672 47.6322C38.4812 47.2462 37.9576 47.0293 37.4116 47.0293H25.0606ZM37.4116 48.0586C37.6846 48.0586 37.9464 48.167 38.1394 48.36C38.3325 48.553 38.4409 48.8148 38.4409 49.0878V55.778L34.5534 53.774C34.4569 53.7257 34.3476 53.7089 34.241 53.7261C34.1344 53.7432 34.036 53.7935 33.9595 53.8697L30.141 57.6883L27.4032 55.8644C27.3043 55.7986 27.1858 55.769 27.0676 55.7806C26.9494 55.7923 26.8389 55.8444 26.7547 55.9282L24.0313 58.3511V49.0878C24.0313 48.8148 24.1398 48.553 24.3328 48.36C24.5258 48.167 24.7876 48.0586 25.0606 48.0586H37.4116Z" fill="#E4EBF0"/>
	<rect x="54" y="43" width="34" height="4" fill="#E4EBF0"/>
	<rect x="54" y="64" width="45" height="2" fill="#E4EBF0"/>
	<rect x="54" y="59" width="58" height="2" fill="#E4EBF0"/>
	<rect x="54" y="54" width="58" height="2" fill="#E4EBF0"/>
	<circle r="3" transform="matrix(-1 0 0 1 109 45)" fill="#E4EBF0"/>
</svg>PK��][hA�@@@Uultimate-addons-for-gutenberg/assets/images/block-previews/children/buttons-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="25" y="44" width="77" height="22" rx="11" fill="#C8D0D7"/>
	<rect x="41" y="54" width="45" height="2" fill="#E4EBF0"/>
</svg>
PK��][m���22Qultimate-addons-for-gutenberg/assets/images/block-previews/children/faq-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="37" width="98" height="35" rx="1" fill="#C8D0D7"/>
	<path d="M23.8182 45V45.9375H20V45H23.8182Z" fill="#E4EBF0"/>
	<rect x="28" y="44" width="46" height="4" fill="#E4EBF0"/>
	<rect x="28" y="65" width="56" height="2" fill="#E4EBF0"/>
	<rect x="28" y="60" width="71" height="2" fill="#E4EBF0"/>
	<rect x="28" y="55" width="71" height="2" fill="#E4EBF0"/>
</svg>
PK��][�NE�	�	Tultimate-addons-for-gutenberg/assets/images/block-previews/children/slider-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="26.5357" y="41.168" width="33.793" height="27.9999" rx="1" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_381_6)">
		<path d="M41.1899 52.4269C41.1899 52.8223 41.0328 53.2014 40.7533 53.481C40.4738 53.7605 40.0946 53.9176 39.6993 53.9176C39.3039 53.9176 38.9248 53.7605 38.6452 53.481C38.3657 53.2014 38.2086 52.8223 38.2086 52.4269C38.2086 52.0316 38.3657 51.6524 38.6452 51.3729C38.9248 51.0933 39.3039 50.9363 39.6993 50.9363C40.0946 50.9363 40.4738 51.0933 40.7533 51.3729C41.0328 51.6524 41.1899 52.0316 41.1899 52.4269Z" fill="white"/>
		<path d="M37.2149 47.9551C36.6878 47.9551 36.1822 48.1645 35.8095 48.5372C35.4368 48.9099 35.2274 49.4155 35.2274 49.9426V59.8802C35.2274 60.4073 35.4368 60.9129 35.8095 61.2856C36.1822 61.6583 36.6878 61.8677 37.2149 61.8677H49.14C49.6671 61.8677 50.1727 61.6583 50.5454 61.2856C50.9181 60.9129 51.1275 60.4073 51.1275 59.8802V49.9426C51.1275 49.4155 50.9181 48.9099 50.5454 48.5372C50.1727 48.1645 49.6671 47.9551 49.14 47.9551H37.2149ZM49.14 48.9488C49.4036 48.9488 49.6563 49.0535 49.8427 49.2399C50.0291 49.4263 50.1338 49.679 50.1338 49.9426V56.402L46.3803 54.4672C46.2871 54.4205 46.1816 54.4043 46.0787 54.4209C45.9758 54.4375 45.8807 54.486 45.8069 54.5596L42.1201 58.2465L39.4767 56.4855C39.3812 56.422 39.2668 56.3934 39.1526 56.4046C39.0385 56.4159 38.9318 56.4662 38.8506 56.5471L36.2211 58.8864V49.9426C36.2211 49.679 36.3258 49.4263 36.5122 49.2399C36.6985 49.0535 36.9513 48.9488 37.2149 48.9488H49.14Z" fill="white"/>
	</g>
	<rect x="66.3287" y="51.7651" width="10.6736" height="2.22964" fill="#E4EBF0"/>
	<rect x="66.3287" y="56.2244" width="31.2289" height="1.11482" fill="#E4EBF0"/>
	<rect x="66.3287" y="59.0117" width="24.7848" height="1.11482" fill="#E4EBF0"/>
	<circle cx="110.152" cy="55.8799" r="3" transform="rotate(-180 110.152 55.8799)" fill="#C8D0D7"/>
	<path d="M109.402 56.7405L110.33 55.8799L109.402 55.0193L109.688 54.7549L110.902 55.8799L109.688 57.0049L109.402 56.7405Z" fill="white"/>
	<circle cx="15.005" cy="55.8799" r="3" fill="#C8D0D7"/>
	<path d="M15.755 55.0193L14.8279 55.8799L15.755 56.7405L15.4696 57.0049L14.255 55.8799L15.4696 54.7549L15.755 55.0193Z" fill="white"/>
	<defs>
		<clipPath id="clip0_381_6">
			<rect width="15.9002" height="15.9002" fill="white" transform="translate(35.2253 46.9612)"/>
		</clipPath>
	</defs>
</svg>
PK��][��A��Wultimate-addons-for-gutenberg/assets/images/block-previews/children/icon-list-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="36" y="55" width="68" height="4" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_133_142)">
		<path d="M25 53C26.0609 53 27.0783 53.4214 27.8284 54.1716C28.5786 54.9217 29 55.9391 29 57C29 58.0609 28.5786 59.0783 27.8284 59.8284C27.0783 60.5786 26.0609 61 25 61C23.9391 61 22.9217 60.5786 22.1716 59.8284C21.4214 59.0783 21 58.0609 21 57C21 55.9391 21.4214 54.9217 22.1716 54.1716C22.9217 53.4214 23.9391 53 25 53V53ZM23.25 56.75C23.1837 56.75 23.1201 56.7763 23.0732 56.8232C23.0263 56.8701 23 56.9337 23 57C23 57.0663 23.0263 57.1299 23.0732 57.1768C23.1201 57.2237 23.1837 57.25 23.25 57.25H26.1465L25.073 58.323C25.0498 58.3462 25.0313 58.3738 25.0187 58.4042C25.0062 58.4346 24.9997 58.4671 24.9997 58.5C24.9997 58.5329 25.0062 58.5654 25.0187 58.5958C25.0313 58.6262 25.0498 58.6538 25.073 58.677C25.0962 58.7002 25.1238 58.7187 25.1542 58.7313C25.1846 58.7438 25.2171 58.7503 25.25 58.7503C25.2829 58.7503 25.3154 58.7438 25.3458 58.7313C25.3762 58.7187 25.4038 58.7002 25.427 58.677L26.927 57.177C26.9503 57.1538 26.9688 57.1262 26.9814 57.0958C26.994 57.0654 27.0004 57.0329 27.0004 57C27.0004 56.9671 26.994 56.9346 26.9814 56.9042C26.9688 56.8738 26.9503 56.8462 26.927 56.823L25.427 55.323C25.4038 55.2998 25.3762 55.2813 25.3458 55.2687C25.3154 55.2562 25.2829 55.2497 25.25 55.2497C25.2171 55.2497 25.1846 55.2562 25.1542 55.2687C25.1238 55.2813 25.0962 55.2998 25.073 55.323C25.0498 55.3462 25.0313 55.3738 25.0187 55.4042C25.0062 55.4346 24.9997 55.4671 24.9997 55.5C24.9997 55.5329 25.0062 55.5654 25.0187 55.5958C25.0313 55.6262 25.0498 55.6538 25.073 55.677L26.1465 56.75H23.25Z" fill="#C8D0D7"/>
	</g>
	<defs>
		<clipPath id="clip0_133_142">
			<rect width="8" height="8" fill="white" transform="translate(21 53)"/>
		</clipPath>
	</defs>
</svg>PK��][6`;SKKRultimate-addons-for-gutenberg/assets/images/block-previews/children/form-radio.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="49.4" y="54.2" width="41.6" height="2" fill="#E4EBF0"/>
	<rect x="35.5" y="51.5" width="7" height="7" rx="3.5" stroke="#C8D0D7"/>
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
</svg>
PK��][�i켒�^ultimate-addons-for-gutenberg/assets/images/block-previews/children/content-timeline-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M42 41C40.8954 41 40 41.8954 40 43V66C40 67.1046 40.8954 68 42 68H78C79.1046 68 80 67.1046 80 66V57.3868L85 54.5L80 51.6132V43C80 41.8954 79.1046 41 78 41H42Z" fill="#C8D0D7"/>
	<rect x="46" y="48" width="20" height="3" fill="#E4EBF0"/>
	<rect x="46" y="61" width="21" height="1" fill="#E4EBF0"/>
	<rect x="46" y="59" width="27" height="1" fill="#E4EBF0"/>
	<rect x="46" y="57" width="27" height="1" fill="#E4EBF0"/>
</svg>
PK��][���x��Zultimate-addons-for-gutenberg/assets/images/block-previews/children/social-share-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M55.1997 44C52.8732 44 51 45.8732 51 48.1997V62.8003C51 65.1267 52.8732 67 55.1997 67H63.1131V58.0084H60.7355V54.7712H63.1131V52.0054C63.1131 49.8325 64.5179 47.8374 67.7541 47.8374C69.0643 47.8374 70.0332 47.9632 70.0332 47.9632L69.957 50.9863C69.957 50.9863 68.9689 50.9769 67.8906 50.9769C66.7236 50.9769 66.5365 51.5146 66.5365 52.4072V54.7712H70.0497L69.8967 58.0084H66.5365V67H69.8003C72.1268 67 74 65.1268 74 62.8003V48.1997C74 45.8733 72.1268 44 69.8003 44L55.1997 44Z" fill="#C8D0D7"/>
</svg>
PK��][M�Ve��Rultimate-addons-for-gutenberg/assets/images/block-previews/children/form-field.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="51.5" width="97" height="12" rx="0.5" stroke="#C8D0D7"/>
	<rect x="14" y="45" width="26" height="2" fill="#E4EBF0"/>
	<rect x="18" y="57" width="26" height="1.2" fill="#E4EBF0"/>
</svg>
PK��][�%�vvSultimate-addons-for-gutenberg/assets/images/block-previews/children/form-toggle.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="50.5" y="53.5" width="21" height="9" rx="4.5" stroke="#C8D0D7"/>
	<circle cx="55" cy="58" r="3" fill="#E4EBF0"/>
	<rect x="50" y="47" width="26" height="2" fill="#C8D0D7"/>
</svg>
PK��][�ۀyy^ultimate-addons-for-gutenberg/assets/images/block-previews/children/advanced-columns-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="13" y="48" width="31.8462" height="13" fill="#C8D0D7"/>
	<rect x="46.9231" y="48" width="31.8462" height="13" fill="#E4EBF0"/>
	<path d="M81 48H113V61H81V48Z" fill="#E4EBF0"/>
</svg>
PK��][Q"��Sultimate-addons-for-gutenberg/assets/images/block-previews/children/form-hidden.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M50.7097 43L55.4114 47.7855M74.2891 67L69.5879 62.2149M64.9554 64.0995C64.1601 64.253 63.3393 64.3333 62.5 64.3333C56.6344 64.3333 51.6692 60.4095 50 55C50.4544 53.5273 51.1531 52.1648 52.0477 50.9616M59.7205 52.1716C60.4317 51.4477 61.4142 51 62.4994 51C64.6698 51 66.4293 52.7909 66.4293 55C66.4293 56.1046 65.9895 57.1046 65.2783 57.8284M59.7205 52.1716L65.2783 57.8284M59.7205 52.1716L55.4114 47.7855M65.2783 57.8284L55.4114 47.7855M65.2783 57.8284L69.5879 62.2149M55.4114 47.7855C57.4547 46.4447 59.8881 45.6667 62.5 45.6667C68.3656 45.6667 73.3308 49.5906 75 55C74.074 58.001 72.1336 60.5447 69.5879 62.2149" stroke="#C8D0D7" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
PK��][����KKUultimate-addons-for-gutenberg/assets/images/block-previews/children/form-checkbox.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="47.4" y="54.2" width="41.6" height="2" fill="#E4EBF0"/>
	<rect x="33.5" y="51.5" width="7" height="7" rx="0.5" stroke="#C8D0D7"/>
</svg>
PK��][0�n���Rultimate-addons-for-gutenberg/assets/images/block-previews/children/form-phone.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="16" y="55" width="9" height="1" fill="#E4EBF0"/>
	<rect x="40" y="55" width="19" height="1" fill="#E4EBF0"/>
	<rect x="13.5" y="49.5" width="19" height="12" rx="0.5" stroke="#C8D0D7"/>
	<rect x="36.5" y="49.5" width="76" height="12" rx="0.5" stroke="#C8D0D7"/>
</svg>
PK��][�W��77Sultimate-addons-for-gutenberg/assets/images/block-previews/children/how-to-step.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="50" width="19" height="2" fill="#C8D0D7"/>
	<rect x="14" y="57" width="97" height="2" fill="#E4EBF0"/>
</svg>
PK��][5_AE��Rultimate-addons-for-gutenberg/assets/images/block-previews/children/tabs-child.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M14.5 43C14.5 42.7239 14.7239 42.5 15 42.5H24C24.2761 42.5 24.5 42.7239 24.5 43V47C24.5 47.2761 24.2761 47.5 24 47.5H15C14.7239 47.5 14.5 47.2761 14.5 47V43Z" stroke="#E4EBF0"/>
	<rect x="27.5" y="42.5" width="10" height="5" rx="0.5" stroke="#E4EBF0"/>
	<rect x="40.5" y="42.5" width="10" height="5" rx="0.5" stroke="#C8D0D7"/>
	<rect x="19" y="57" width="66" height="1" fill="#C8D0D7"/>
	<rect x="14.5" y="51.5" width="97" height="12" rx="0.5" stroke="#C8D0D7"/>
</svg>
PK��][��Hultimate-addons-for-gutenberg/assets/images/block-previews/post-grid.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="22" y="14" width="39.3792" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="25.2816" y="21.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="25.2816" y="28.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="31.5018" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="34.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="41.3467" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="22" y="56.6208" width="39.3792" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="25.2816" y="64.2778" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="25.2816" y="70.8411" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="74.1227" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="77.4043" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="83.9675" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="64.6208" y="14" width="39.3792" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="67.9024" y="21.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="67.9024" y="28.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="31.5018" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="34.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="41.3467" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="64.6208" y="56.6208" width="39.3792" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="67.9024" y="64.2778" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="67.9024" y="70.8411" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="74.1227" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="77.4043" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="67.9024" y="83.9675" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
</svg>
PK��][t�����Kultimate-addons-for-gutenberg/assets/images/block-previews/product-list.svgnu�[���<svg width="125" height="110" viewBox="0 0 125 110" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="124" height="109" rx="4.5" stroke="#E4EBF0"/>
<rect x="13" y="86" width="98" height="10" rx="1.94628" fill="#C8D0D7"/>
<rect x="28" y="15.5" width="83" height="3" fill="#E4EBF0"/>
<rect x="28" y="20.5" width="20" height="2" fill="#E4EBF0"/>
<rect x="13" y="14" width="12" height="10" rx="1" fill="#C8D0D7"/>
<rect x="28" y="31.5" width="83" height="3" fill="#E4EBF0"/>
<rect x="28" y="36.5" width="20" height="2" fill="#E4EBF0"/>
<rect x="13" y="30" width="12" height="10" rx="1" fill="#C8D0D7"/>
<rect x="28" y="48" width="83" height="3" fill="#E4EBF0"/>
<rect x="28" y="53" width="20" height="1" fill="#E4EBF0"/>
<rect x="13" y="46" width="12" height="10" rx="1" fill="#C8D0D7"/>
<rect x="28" y="64" width="83" height="3" fill="#E4EBF0"/>
<rect x="28" y="69" width="20" height="1" fill="#E4EBF0"/>
<rect x="13" y="62" width="12" height="10" rx="1" fill="#C8D0D7"/>
</svg>
PK��][I�!UiiCultimate-addons-for-gutenberg/assets/images/block-previews/icon.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
<ellipse cx="62.5787" cy="55.1681" rx="15.989" ry="15.9835" fill="#E4EBF0"/>
<path d="M56.3608 55.1691L61.6904 59.609L68.7967 50.7292" stroke="#C8D0D7" stroke-width="3"/>
</svg>
PK��][ć�%bbLultimate-addons-for-gutenberg/assets/images/block-previews/checkout-form.svgnu�[���<svg width="125" height="110" viewBox="0 0 125 110" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="124" height="109" rx="4.5" stroke="#E4EBF0"/>
<rect x="13" y="86" width="98" height="10" rx="1.94628" fill="#C8D0D7"/>
<rect x="13" y="13" width="17.8571" height="3.125" rx="0.389256" fill="#C8D0D7"/>
<rect x="13" y="17.9107" width="98" height="10.7143" rx="1.94628" fill="#E4EBF0"/>
<rect x="13" y="34" width="17.8571" height="3.125" rx="0.389256" fill="#C8D0D7"/>
<rect x="13" y="38.9107" width="98" height="10.7143" rx="1.94628" fill="#E4EBF0"/>
<rect x="30.5284" y="58.125" width="15.935" height="3.125" rx="0.389256" fill="#E4EBF0"/>
<rect x="95.0651" y="58.125" width="15.935" height="3.125" rx="0.389256" fill="#E4EBF0"/>
<rect x="13" y="54.5536" width="14.3415" height="10.7143" rx="1.94628" fill="#E4EBF0"/>
<rect x="30.5284" y="72.4107" width="15.935" height="3.125" rx="0.389256" fill="#E4EBF0"/>
<rect x="95.065" y="72.4107" width="15.935" height="3.125" rx="0.389256" fill="#E4EBF0"/>
<rect x="13" y="68.8393" width="14.3415" height="10.7143" rx="1.94628" fill="#E4EBF0"/>
</svg>
PK��][v�X"��Qultimate-addons-for-gutenberg/assets/images/block-previews/frame-product-list.pngnu�[����PNG


IHDR�ge��4	pHYs��sRGB���gAMA���aIDATx�mlUU��W��܌Ck�i�D|�����Q�D��F���р�
��h�(����_(j��F@L�ĂN�1
Ō
�h[n�[�ɥF&���9���}^z��KN�9k���׽��<k�݆�'�B�qB!D��"B�k&�:�q�7n�ֽ���'7�{��p���ƺS!D����X��W����-<���_��ӛ����a����u�ssw|�^��B�4�Ⱥ��U��t+�:+�zPd^�e]G��ЄB�,�G6�@�o�	!�xa�n>1�/ߺgX8��ųNs�&�o�
��E�߇������ą�Nv��u~{�m��-|B���Vd?�I>	a�,w�{��%q~�Td��[X��}�n���
x����w�w�M�Aq-T^3��T���_�kH�j^�X!F3��8`׊+�{�C~�,�o��@���ǃ֦�>�o�i��XY!�q�W�&��ݽ�Ҥ]�ӚȎÚOr���>w�Ʌp+۱�GJ��\2{jxY�I���d���q,��/N'�y`\(2SL�olmv�wp��2�j��ğõe�Os���W�L���'|?&c���‚,��^PV��A�{����k�o�4��.Ȃ��:�tg����?��&������CzK���:�0�Q��a�U���|��mX�����PV!��uWd�L�5�뵆��4�w�wK��Y�Wn�;�J���in�O��Ų�w.�僿�C)�0p�UJ{�������[D�e��d�첖�`���M݂
����b�(n��PlsZO��N���`�R����"o�]�e�N���ׂ̮��|޷u��u���;f܇()X�-�%�C8	H�-����g\tf!��.A��*a��߇w�J�'�Q.K�����9�+>�[aӛ�"C��̲���w���~�'��#�WdE~'V�wd�Rd���6�p^Aa����d
�����0�f�IQ��W����A�V��U��x+���C�BB�����#c�Z�',�b��f�{��l�*>laa�so�����v�����Z���������������6{��\���N� L1&�,���a��_��%CZ܊|��ۧ¢"��Y��}��f��+����0�Đ���rOu}�r�^�4��y�%h�B����e�Z�A�r�6�23��;|$�+�OL!n_��b4�'{����8������C�G��쀇"7��J(�8�@����]ṓ1XD���{n�?�9`b�Ns;r�ĔR�`�
<�7��l^�-(1�=�9����f��C'�yc�.�qr�~$q�����J��`l��k�O�����{��
��<q�p��+��;�v-��r9�nO�{B���!��6e�>')�)$���Li���X>2�x%f��fẬ1!Di���ƚY歋��gd^�z�����8!��uUd�x�j��ɉ@!�ヺ*2�*\k=���H�]V�A
!�㋺*2!����ԢB�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��8����	1���syg,�!��M������ov3f�p�\s�{���\�馛�x�A�T$|?7����	�z�~�J��O?
e��b�E�>���3�\r��F^� �j�LǕ��o�)S��~�d;<�����Gu��c����1�9�T��(2(fҤIr---��lP2�l�7�7�$��z��7]�!���o����v�m���@.��7p-�x��w�I6
��]�����=��c�y�{b#�j�d,%�q�\y����w\pA��lWڱ�J�c����>������k�b��՘믿����a������g�}v��޻woPs��	����MMM4�3�<�z�0�b�5V;�M^c{��g�L4ʵ��qX��xL�ċ��O8����5���}�]���l��I���o�I��t���Yu$=��y�F9���d��<�JY��E�SO=�!�&'�yQV�ӇFZ=hK�g�Xm�z�e���"hϞ=>
��v�|IǸ!��%7�FY^}�Ր�~�I����NK�ق���_<��)'\�Y�/e�<���<�7e#^9�,����<_{���|(��1k�&_��sd�/�����8�yby�;��?�]mq�wY�mVŘ�bc4�Zּ�g�3�r���n�vG.y��3nG�֖�.Y㚲�_&�4q��Ss�,�I��>А6q0`c�+3:�k�㚙äaEa��T[eq��k����`\K�C�^x!�\�\Q�{��ǫI�����5\�d%�l��0�A� �|�x��!>���V���rZ�H{�=��`�q�G�<�A�MF��.V��O9�ߔ����J���P�x���2����=nw+�yLn<�ʅ���~�����P�<�C\��a�Hk����菬q�Y��c�k|�ċ�5��S��Ȋ�_���r�,�6*fuX�6F���Y�����!��0%d�`��b��*��9s�	�6mڐŢ����i�Hָ��,�����e˖�'�xb�8~@�8����;�|��}t���C���W_}�G	��
)�7��pn�����@^ooo(���!���X���V�p?��S>˃�Y�Ő.�S�l���Eܸ����2I\F�7�Y\'ﴸI���|�r�}U�N1���K|��'�ge��&e�GZ]Hk��LB�����~�S���d9��a2�i��'}��g���c�tVǴ��=����xџ�?�s/�K��d�&��F昌�;eK�g�����[�@|_Rf��㶊�dy)S<G�AV\�x#Ί+��xK�/�ϲƵ�#�{,Qs�,v�"�ҷ
d��k|feb���
>�*��.�X��
1�?>�`��4�;��Wʗ|�u�>c��<VC��X��B9XY}YyY��e���Q�^N��>��ܸ]*�Ē���r���_�����Y�4Y�H�����i�V�����ml�S��:�m��O��i�r�L���
���@����|�^��{�WQ;���4���RVP�?�VWڀ��m�1mi�%?�W�	��Qvkw��`̽��K�3�K|/�.Kڛv�{�d��1t����I�Nf"{�WJ�H�H�q�IJl��nN��}I��?�����O杼1�5��XlC;�q9�͇O�H6W�D�TeLS&�&�jI�L!K��������O�&�v2�H��&/#�b(�,��&mF�,���&ഃ>�Vdo�<�=�V4p?�~���R�%��e{J��\��A{�g�
�ڀ��ާ���Y�޽{�\s��67c�	il_+V���N6�ݷ�X����<S��7_/
NG� �N�؍�p�	'�m��*)>�D:�P۫!-�.�)�۷oߐ�m��F'^�#��m��Z�	�L�̧�$f�)�#u�37��c�Ey�:�Fx9�ulm���:�֚d�>N��W\qE�n��q���'���b�5k����e���U���Moi�[�Y�'ۣ���h�[o�uX�����˭_V<��b�%�}X��#9�h��Ln��6^L��A&ꍅ{�����2�Kڂ9ɱ[���H��v����y����Y����a�#�PR�d%����	�o�?��������䞄��	CF�7'�]ㅿ��Z:�7��_ٮe�q���E�#��H9,ޓO>Y��+��SV+���-��gX��+���OK�sK���}��[}�u(�K'-�z�����S��%�O�fյ�x���8��gf}����x��Mۇ��#3yq��xܦa�<mO%�=b��6��G;%�,�x�,y��m�-��m�|N��3�2X����I�Ż���x���6^lX���_#��,<�+��b�1��E]4l?����b�O�܀���۴����j��"3���J[�k�KűI/�I�(6P��'�Jɨ��Siߖ�+��*;����R}]Jn��T^5}Tn�#�c��v=dV2^Fr�ڵr�J�1+~���tV�J��+
�q�b��������kf�C���9F�Cqj~�c�`O,����!��Cw���E&�"���B!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�Lp5f��oܲ�{]_�ON���i�[uՙn��\5�ݏ/��7!D�4��2��?���N�OS���y�h��;&XQ��a�&�������*������]J�A[ע߄գ=2!��F�L!D��"B�k�ȄB�)2!��F�L!D��"B�k�ȄB�)2!��&7�����d�in�9��<�b攓�Kԇm]?���_��s����?�S-�?��9)�_�B�-�l��\���ݦ߶�g
Μ:������iN���o���'n��q�������p
e1�]�l��
钏1۸��O�e��w]�%�_���k�n������6�a�~r��k����[����f7wzsx&��/�/�����r�[8�{�8Y���(�罗����[��W��+�ųNm��+���|�V^uVh��;�	O�o�m����!l��=n����-�}�[�-&ҭ_HG��t�<��~6@�o��@��x�顏ň����!�פ�2��$���z�lṧ���~"eRbr]��.���=Q���j;#Lt;wi�
�q�~"m�[K��G1v�q�[��Z|�ȇ�-�ÿ�+�5�&_Ҏ&
*��_�E����V\��a�(��BIu�{��Z����gaQ�w��
������K�}�A���	�|FN���,�O�u�܀u����2�\&!��d�[d�j����,vO�2_�rgP^����v&<,���^�O
�s �L�˼���x��!��s��a�ܸ�[n�?��A���&�
(mI[������sJ����n��z%���l[woP- �d�OXe\_�_3�Yc�v��aQѼf[p_�@���?��x%xpP��7J?�6}�?�n�#��H�ڄ��zEf
���>3���c�
�)�T���l�ϤL��lR3�wT{�7!͂s�=L��o�/���[��B>4M<��n,C[���Fi',b܋K/k�����Y�1�
,�b�xfN�ehsʀE��
���C�2�|�PH�e=<�yi�B�F�k�)�kN,���6��I��_���V�&[�~���}2,��~/g�w%.z�S����'T,�����������uؗ�j�%ljŴ�3G8mJm���z-�4�b�S�yaM!���@Xt�L��̘�M���Vy���b�P��µph���!�Ș��'a2�"0�-ߺ�h:��9g�\X�s�n��ضu����3)��Gq��?�-Y10an<���YȻk�o
rƃ�ʬ�e���~��p	�6�'i�n�r���24������t��u�����U�UF>�k:��@b��3*�������}Aކ�>�	!�&
G=��4<�'W/�L�E����p�[}����;��ծh�je��B�W���pS\�,Wf��K��%�psgQI�*�^m.���Qo�ŌD�d��4|��Ȣ����+Q�Oڵ,���Y/%&�=�UB!r��B�\#E&�"�H�	!��5RdB!r��B�\#E&�"�H�	!��55Wd�dQ>�F
�>^��s0�Đ�MQ=5������=dV'�ϳ2�[ڝ�ݏ�ٓ�g8!���?��6�^tIEND�B`�PK��][�
L�Kultimate-addons-for-gutenberg/assets/images/block-previews/advanced-row.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="22.5" y="48.5" width="80" height="12" rx="0.5" stroke="#C8D0D7"/>
</svg>
PK��][P�ZciiBultimate-addons-for-gutenberg/assets/images/block-previews/faq.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="25" width="98" height="35" rx="1" fill="#C8D0D7"/>
	<rect x="14" y="67" width="98" height="18" rx="1" fill="#C8D0D7"/>
	<path d="M23.8182 33V33.9375H20V33H23.8182Z" fill="#E4EBF0"/>
	<path d="M23.8182 75.4404V76.3779H20V75.4404H23.8182Z" fill="#E4EBF0"/>
	<path d="M21.4403 74.0001L22.3778 74.0001L22.3778 77.8182L21.4403 77.8182L21.4403 74.0001Z" fill="#E4EBF0"/>
	<rect x="28" y="32" width="46" height="4" fill="#E4EBF0"/>
	<rect x="28" y="74" width="46" height="4" fill="#E4EBF0"/>
	<rect x="28" y="53" width="56" height="2" fill="#E4EBF0"/>
	<rect x="28" y="48" width="71" height="2" fill="#E4EBF0"/>
	<rect x="28" y="43" width="71" height="2" fill="#E4EBF0"/>
</svg>
PK��]["9�==Hultimate-addons-for-gutenberg/assets/images/block-previews/icon-list.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="36" y="38" width="68" height="4" fill="#E4EBF0"/>
	<rect x="36" y="53" width="68" height="5" fill="#E4EBF0"/>
	<rect x="36" y="68" width="68" height="4" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_40_95)">
		<path d="M25 36C26.0609 36 27.0783 36.4214 27.8284 37.1716C28.5786 37.9217 29 38.9391 29 40C29 41.0609 28.5786 42.0783 27.8284 42.8284C27.0783 43.5786 26.0609 44 25 44C23.9391 44 22.9217 43.5786 22.1716 42.8284C21.4214 42.0783 21 41.0609 21 40C21 38.9391 21.4214 37.9217 22.1716 37.1716C22.9217 36.4214 23.9391 36 25 36V36ZM23.25 39.75C23.1837 39.75 23.1201 39.7763 23.0732 39.8232C23.0263 39.8701 23 39.9337 23 40C23 40.0663 23.0263 40.1299 23.0732 40.1768C23.1201 40.2237 23.1837 40.25 23.25 40.25H26.1465L25.073 41.323C25.0498 41.3462 25.0313 41.3738 25.0187 41.4042C25.0062 41.4346 24.9997 41.4671 24.9997 41.5C24.9997 41.5329 25.0062 41.5654 25.0187 41.5958C25.0313 41.6262 25.0498 41.6538 25.073 41.677C25.0962 41.7002 25.1238 41.7187 25.1542 41.7313C25.1846 41.7438 25.2171 41.7503 25.25 41.7503C25.2829 41.7503 25.3154 41.7438 25.3458 41.7313C25.3762 41.7187 25.4038 41.7002 25.427 41.677L26.927 40.177C26.9503 40.1538 26.9688 40.1262 26.9814 40.0958C26.994 40.0654 27.0004 40.0329 27.0004 40C27.0004 39.9671 26.994 39.9346 26.9814 39.9042C26.9688 39.8738 26.9503 39.8462 26.927 39.823L25.427 38.323C25.4038 38.2998 25.3762 38.2813 25.3458 38.2687C25.3154 38.2562 25.2829 38.2497 25.25 38.2497C25.2171 38.2497 25.1846 38.2562 25.1542 38.2687C25.1238 38.2813 25.0962 38.2998 25.073 38.323C25.0498 38.3462 25.0313 38.3738 25.0187 38.4042C25.0062 38.4346 24.9997 38.4671 24.9997 38.5C24.9997 38.5329 25.0062 38.5654 25.0187 38.5958C25.0313 38.6262 25.0498 38.6538 25.073 38.677L26.1465 39.75H23.25Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip1_40_95)">
		<path d="M25 51C26.0609 51 27.0783 51.4214 27.8284 52.1716C28.5786 52.9217 29 53.9391 29 55C29 56.0609 28.5786 57.0783 27.8284 57.8284C27.0783 58.5786 26.0609 59 25 59C23.9391 59 22.9217 58.5786 22.1716 57.8284C21.4214 57.0783 21 56.0609 21 55C21 53.9391 21.4214 52.9217 22.1716 52.1716C22.9217 51.4214 23.9391 51 25 51V51ZM23.25 54.75C23.1837 54.75 23.1201 54.7763 23.0732 54.8232C23.0263 54.8701 23 54.9337 23 55C23 55.0663 23.0263 55.1299 23.0732 55.1768C23.1201 55.2237 23.1837 55.25 23.25 55.25H26.1465L25.073 56.323C25.0498 56.3462 25.0313 56.3738 25.0187 56.4042C25.0062 56.4346 24.9997 56.4671 24.9997 56.5C24.9997 56.5329 25.0062 56.5654 25.0187 56.5958C25.0313 56.6262 25.0498 56.6538 25.073 56.677C25.0962 56.7002 25.1238 56.7187 25.1542 56.7313C25.1846 56.7438 25.2171 56.7503 25.25 56.7503C25.2829 56.7503 25.3154 56.7438 25.3458 56.7313C25.3762 56.7187 25.4038 56.7002 25.427 56.677L26.927 55.177C26.9503 55.1538 26.9688 55.1262 26.9814 55.0958C26.994 55.0654 27.0004 55.0329 27.0004 55C27.0004 54.9671 26.994 54.9346 26.9814 54.9042C26.9688 54.8738 26.9503 54.8462 26.927 54.823L25.427 53.323C25.4038 53.2998 25.3762 53.2813 25.3458 53.2687C25.3154 53.2562 25.2829 53.2497 25.25 53.2497C25.2171 53.2497 25.1846 53.2562 25.1542 53.2687C25.1238 53.2813 25.0962 53.2998 25.073 53.323C25.0498 53.3462 25.0313 53.3738 25.0187 53.4042C25.0062 53.4346 24.9997 53.4671 24.9997 53.5C24.9997 53.5329 25.0062 53.5654 25.0187 53.5958C25.0313 53.6262 25.0498 53.6538 25.073 53.677L26.1465 54.75H23.25Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip2_40_95)">
		<path d="M25 66C26.0609 66 27.0783 66.4214 27.8284 67.1716C28.5786 67.9217 29 68.9391 29 70C29 71.0609 28.5786 72.0783 27.8284 72.8284C27.0783 73.5786 26.0609 74 25 74C23.9391 74 22.9217 73.5786 22.1716 72.8284C21.4214 72.0783 21 71.0609 21 70C21 68.9391 21.4214 67.9217 22.1716 67.1716C22.9217 66.4214 23.9391 66 25 66V66ZM23.25 69.75C23.1837 69.75 23.1201 69.7763 23.0732 69.8232C23.0263 69.8701 23 69.9337 23 70C23 70.0663 23.0263 70.1299 23.0732 70.1768C23.1201 70.2237 23.1837 70.25 23.25 70.25H26.1465L25.073 71.323C25.0498 71.3462 25.0313 71.3738 25.0187 71.4042C25.0062 71.4346 24.9997 71.4671 24.9997 71.5C24.9997 71.5329 25.0062 71.5654 25.0187 71.5958C25.0313 71.6262 25.0498 71.6538 25.073 71.677C25.0962 71.7002 25.1238 71.7187 25.1542 71.7313C25.1846 71.7438 25.2171 71.7503 25.25 71.7503C25.2829 71.7503 25.3154 71.7438 25.3458 71.7313C25.3762 71.7187 25.4038 71.7002 25.427 71.677L26.927 70.177C26.9503 70.1538 26.9688 70.1262 26.9814 70.0958C26.994 70.0654 27.0004 70.0329 27.0004 70C27.0004 69.9671 26.994 69.9346 26.9814 69.9042C26.9688 69.8738 26.9503 69.8462 26.927 69.823L25.427 68.323C25.4038 68.2998 25.3762 68.2813 25.3458 68.2687C25.3154 68.2562 25.2829 68.2497 25.25 68.2497C25.2171 68.2497 25.1846 68.2562 25.1542 68.2687C25.1238 68.2813 25.0962 68.2998 25.073 68.323C25.0498 68.3462 25.0313 68.3738 25.0187 68.4042C25.0062 68.4346 24.9997 68.4671 24.9997 68.5C24.9997 68.5329 25.0062 68.5654 25.0187 68.5958C25.0313 68.6262 25.0498 68.6538 25.073 68.677L26.1465 69.75H23.25Z" fill="#C8D0D7"/>
	</g>
	<defs>
		<clipPath id="clip0_40_95">
			<rect width="8" height="8" fill="white" transform="translate(21 36)"/>
		</clipPath>
		<clipPath id="clip1_40_95">
			<rect width="8" height="8" fill="white" transform="translate(21 51)"/>
		</clipPath>
		<clipPath id="clip2_40_95">
			<rect width="8" height="8" fill="white" transform="translate(21 66)"/>
		</clipPath>
	</defs>
</svg>
PK��][:�/T��Hultimate-addons-for-gutenberg/assets/images/block-previews/wp-search.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="27" y="57" width="44" height="1" fill="#E4EBF0"/>
	<rect x="22.5" y="51.5" width="80" height="12" rx="0.5" stroke="#C8D0D7"/>
	<rect x="91" y="51" width="11" height="12" fill="#C8D0D7"/>
</svg>
PK��][���n��Kultimate-addons-for-gutenberg/assets/images/block-previews/post-masonry.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="22" y="10" width="39" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="25.2816" y="17.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="25.2816" y="24.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="27.5019" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="30.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="37.3467" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="65" y="60" width="39" height="38.8323" rx="2.50705" fill="#C8D0D7"/>
	<rect x="68.2816" y="67.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="68.2816" y="74.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="77.5019" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="80.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="87.3467" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="22" y="53" width="39" height="46" rx="2.50705" fill="#C8D0D7"/>
	<rect x="25.2816" y="60.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="25.2816" y="67.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="70.5019" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="73.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="77" width="30" height="1.6408" fill="#E4EBF0"/>
	<rect x="25.2816" y="83.5634" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
	<rect x="65" y="10" width="39" height="46" rx="2.50705" fill="#C8D0D7"/>
	<rect x="68.2816" y="17.657" width="19.6896" height="3.2816" fill="#E4EBF0"/>
	<rect x="68.2816" y="24.2202" width="27.3467" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="27.5019" width="32.816" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="30.7834" width="21.3304" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="34" width="30" height="1.6408" fill="#E4EBF0"/>
	<rect x="68.2816" y="40.5634" width="12.0325" height="4.37547" rx="2.18773" fill="#E4EBF0"/>
</svg>
PK��][WYlFFJultimate-addons-for-gutenberg/assets/images/block-previews/google-maps.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="16" y="24" width="93" height="63" rx="2" fill="#C8D0D7"/>
	<path d="M72.5 47.2188C71.559 47.2188 70.6565 47.5926 69.9911 48.258C69.3256 48.9234 68.9518 49.8259 68.9518 50.7669C68.9518 53.5438 71.6607 56.8853 72.3705 57.7062C72.4086 57.7499 72.4625 57.7767 72.5203 57.7808C72.5781 57.7848 72.6352 57.7658 72.679 57.7279L72.7007 57.7062C73.4011 56.8821 76.0479 53.5438 76.0479 50.7667C76.0478 49.8257 75.674 48.9233 75.0087 48.258C74.3433 47.5926 73.4409 47.2188 72.5 47.2188V47.2188ZM72.5 51.7298C72.262 51.7298 72.0294 51.6592 71.8315 51.527C71.6336 51.3947 71.4794 51.2068 71.3883 50.9869C71.2972 50.767 71.2734 50.5251 71.3198 50.2917C71.3662 50.0583 71.4808 49.8439 71.6491 49.6756C71.8174 49.5073 72.0318 49.3927 72.2652 49.3462C72.4987 49.2998 72.7406 49.3236 72.9605 49.4147C73.1804 49.5058 73.3683 49.66 73.5005 49.8579C73.6327 50.0558 73.7033 50.2884 73.7033 50.5264V50.5294C73.7025 50.848 73.5754 51.1533 73.3498 51.3784C73.1242 51.6034 72.8186 51.7298 72.5 51.7298V51.7298Z" stroke="#E4EBF0" stroke-width="0.7" stroke-linecap="round" stroke-linejoin="round"/>
	<path d="M72 24V37.608H98V58.272H82.1961V87" stroke="#E4EBF0" stroke-width="0.5"/>
	<path d="M31 24V37.608H57V58.272H41.1961V87" stroke="#E4EBF0" stroke-width="0.5"/>
	<path d="M20 24V37.608H28V58.272H23.1373V87" stroke="#E4EBF0" stroke-width="0.5"/>
	<path d="M109 46L88.912 46L88.912 72L58.408 72L58.408 56.1961L16 56.1961" stroke="#E4EBF0" stroke-width="0.5"/>
	<path d="M109 26L88.912 26L88.912 34L58.408 34L58.408 29.1373L16 29.1373" stroke="#E4EBF0" stroke-width="0.5"/>
	<path d="M16 74L36.088 74L36.088 84L66.592 84L66.592 77.9216L109 77.9216" stroke="#E4EBF0" stroke-width="0.5"/>
</svg>
PK��][�sXr��Multimate-addons-for-gutenberg/assets/images/block-previews/call-to-action.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="85" y="55" width="27" height="10" rx="2.50705" fill="#C8D0D7"/>
	<rect x="14" y="44" width="38" height="6" fill="#E4EBF0"/>
	<rect x="14" y="56" width="52" height="3" fill="#E4EBF0"/>
	<rect x="14" y="62" width="63" height="3" fill="#E4EBF0"/>
	<rect x="14" y="68" width="41" height="3" fill="#E4EBF0"/>
</svg>
PK��][bR����Cultimate-addons-for-gutenberg/assets/images/block-previews/form.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="27.5" width="97" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="50.5" width="97" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="73.5" width="97" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14" y="21" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="44" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="67" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="92" width="22" height="8" rx="4" fill="#C8D0D7"/>
	<rect x="14" y="10" width="46" height="5" fill="#E4EBF0"/>
</svg>
PK��][�����Iultimate-addons-for-gutenberg/assets/images/block-previews/blockquote.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="88" y="59" width="22" height="8" rx="4" fill="#C8D0D7"/>
	<rect x="22" y="45" width="88" height="3" fill="#E4EBF0"/>
	<rect x="22" y="51" width="54" height="3" fill="#E4EBF0"/>
	<rect x="22" y="64" width="28" height="2" fill="#E4EBF0"/>
	<rect x="16" y="41" width="1" height="28" fill="#E4EBF0"/>
</svg>
PK��][\��'�'Jultimate-addons-for-gutenberg/assets/images/block-previews/star-rating.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="38" width="53" height="5" fill="#E4EBF0"/>
	<rect x="14" y="52" width="53" height="5" fill="#E4EBF0"/>
	<rect x="14" y="67" width="53" height="5" fill="#E4EBF0"/>
	<path d="M71.9055 38.7586L73.889 38.4703L74.7758 36.6727C74.8 36.6234 74.8398 36.5836 74.889 36.5594C75.0125 36.4984 75.1625 36.5492 75.2242 36.6727L76.1109 38.4703L78.0945 38.7586C78.1492 38.7664 78.1992 38.7922 78.2375 38.8313C78.2838 38.8788 78.3093 38.9428 78.3084 39.0092C78.3075 39.0755 78.2803 39.1388 78.2328 39.1852L76.7976 40.5844L77.1367 42.5602C77.1447 42.6061 77.1396 42.6534 77.122 42.6966C77.1045 42.7398 77.0752 42.7773 77.0374 42.8047C76.9997 42.8321 76.955 42.8484 76.9085 42.8517C76.862 42.855 76.8155 42.8452 76.7742 42.8234L75 41.8906L73.2258 42.8234C73.1773 42.8492 73.1211 42.8578 73.0672 42.8484C72.9312 42.825 72.8398 42.6961 72.8633 42.5602L73.2023 40.5844L71.7672 39.1852C71.7281 39.1469 71.7023 39.0969 71.6945 39.0422C71.6734 38.9055 71.7687 38.7789 71.9055 38.7586Z" fill="#C8D0D7"/>
	<path d="M82.9055 38.7586L84.889 38.4703L85.7758 36.6727C85.8 36.6234 85.8398 36.5836 85.889 36.5594C86.0125 36.4984 86.1625 36.5492 86.2242 36.6727L87.1109 38.4703L89.0945 38.7586C89.1492 38.7664 89.1992 38.7922 89.2375 38.8313C89.2838 38.8788 89.3093 38.9428 89.3084 39.0092C89.3075 39.0755 89.2803 39.1388 89.2328 39.1852L87.7976 40.5844L88.1367 42.5602C88.1447 42.6061 88.1396 42.6534 88.122 42.6966C88.1045 42.7398 88.0752 42.7773 88.0374 42.8047C87.9997 42.8321 87.955 42.8484 87.9085 42.8517C87.862 42.855 87.8155 42.8452 87.7742 42.8234L86 41.8906L84.2258 42.8234C84.1773 42.8492 84.1211 42.8578 84.0672 42.8484C83.9312 42.825 83.8398 42.6961 83.8633 42.5602L84.2023 40.5844L82.7672 39.1852C82.7281 39.1469 82.7023 39.0969 82.6945 39.0422C82.6734 38.9055 82.7687 38.7789 82.9055 38.7586Z" fill="#C8D0D7"/>
	<path d="M93.9055 38.7586L95.889 38.4703L96.7758 36.6727C96.8 36.6234 96.8398 36.5836 96.889 36.5594C97.0125 36.4984 97.1625 36.5492 97.2242 36.6727L98.1109 38.4703L100.095 38.7586C100.149 38.7664 100.199 38.7922 100.237 38.8313C100.284 38.8788 100.309 38.9428 100.308 39.0092C100.308 39.0755 100.28 39.1388 100.233 39.1852L98.7976 40.5844L99.1367 42.5602C99.1447 42.6061 99.1396 42.6534 99.122 42.6966C99.1045 42.7398 99.0752 42.7773 99.0374 42.8047C98.9997 42.8321 98.955 42.8484 98.9085 42.8517C98.862 42.855 98.8155 42.8452 98.7742 42.8234L97 41.8906L95.2258 42.8234C95.1773 42.8492 95.1211 42.8578 95.0672 42.8484C94.9312 42.825 94.8398 42.6961 94.8633 42.5602L95.2023 40.5844L93.7672 39.1852C93.7281 39.1469 93.7023 39.0969 93.6945 39.0422C93.6734 38.9055 93.7687 38.7789 93.9055 38.7586Z" fill="#C8D0D7"/>
	<path d="M104.905 38.7586L106.889 38.4703L107.776 36.6727C107.8 36.6234 107.84 36.5836 107.889 36.5594C108.012 36.4984 108.162 36.5492 108.224 36.6727L109.111 38.4703L111.095 38.7586C111.149 38.7664 111.199 38.7922 111.237 38.8313C111.284 38.8788 111.309 38.9428 111.308 39.0092C111.308 39.0755 111.28 39.1388 111.233 39.1852L109.798 40.5844L110.137 42.5602C110.145 42.6061 110.14 42.6534 110.122 42.6966C110.104 42.7398 110.075 42.7773 110.037 42.8047C110 42.8321 109.955 42.8484 109.909 42.8517C109.862 42.855 109.815 42.8452 109.774 42.8234L108 41.8906L106.226 42.8234C106.177 42.8492 106.121 42.8578 106.067 42.8484C105.931 42.825 105.84 42.6961 105.863 42.5602L106.202 40.5844L104.767 39.1852C104.728 39.1469 104.702 39.0969 104.695 39.0422C104.673 38.9055 104.769 38.7789 104.905 38.7586Z" fill="#C8D0D7"/>
	<path d="M71.9055 52.7586L73.889 52.4703L74.7758 50.6727C74.8 50.6234 74.8398 50.5836 74.889 50.5594C75.0125 50.4984 75.1625 50.5492 75.2242 50.6727L76.1109 52.4703L78.0945 52.7586C78.1492 52.7664 78.1992 52.7922 78.2375 52.8313C78.2838 52.8788 78.3093 52.9428 78.3084 53.0092C78.3075 53.0755 78.2803 53.1388 78.2328 53.1852L76.7976 54.5844L77.1367 56.5602C77.1447 56.6061 77.1396 56.6534 77.122 56.6966C77.1045 56.7398 77.0752 56.7773 77.0374 56.8047C76.9997 56.8321 76.955 56.8484 76.9085 56.8517C76.862 56.855 76.8155 56.8452 76.7742 56.8234L75 55.8906L73.2258 56.8234C73.1773 56.8492 73.1211 56.8578 73.0672 56.8484C72.9312 56.825 72.8398 56.6961 72.8633 56.5602L73.2023 54.5844L71.7672 53.1852C71.7281 53.1469 71.7023 53.0969 71.6945 53.0422C71.6734 52.9055 71.7687 52.7789 71.9055 52.7586Z" fill="#C8D0D7"/>
	<path d="M82.9055 52.7586L84.889 52.4703L85.7758 50.6727C85.8 50.6234 85.8398 50.5836 85.889 50.5594C86.0125 50.4984 86.1625 50.5492 86.2242 50.6727L87.1109 52.4703L89.0945 52.7586C89.1492 52.7664 89.1992 52.7922 89.2375 52.8313C89.2838 52.8788 89.3093 52.9428 89.3084 53.0092C89.3075 53.0755 89.2803 53.1388 89.2328 53.1852L87.7976 54.5844L88.1367 56.5602C88.1447 56.6061 88.1396 56.6534 88.122 56.6966C88.1045 56.7398 88.0752 56.7773 88.0374 56.8047C87.9997 56.8321 87.955 56.8484 87.9085 56.8517C87.862 56.855 87.8155 56.8452 87.7742 56.8234L86 55.8906L84.2258 56.8234C84.1773 56.8492 84.1211 56.8578 84.0672 56.8484C83.9312 56.825 83.8398 56.6961 83.8633 56.5602L84.2023 54.5844L82.7672 53.1852C82.7281 53.1469 82.7023 53.0969 82.6945 53.0422C82.6734 52.9055 82.7687 52.7789 82.9055 52.7586Z" fill="#C8D0D7"/>
	<path d="M93.9055 52.7586L95.889 52.4703L96.7758 50.6727C96.8 50.6234 96.8398 50.5836 96.889 50.5594C97.0125 50.4984 97.1625 50.5492 97.2242 50.6727L98.1109 52.4703L100.095 52.7586C100.149 52.7664 100.199 52.7922 100.237 52.8313C100.284 52.8788 100.309 52.9428 100.308 53.0092C100.308 53.0755 100.28 53.1388 100.233 53.1852L98.7976 54.5844L99.1367 56.5602C99.1447 56.6061 99.1396 56.6534 99.122 56.6966C99.1045 56.7398 99.0752 56.7773 99.0374 56.8047C98.9997 56.8321 98.955 56.8484 98.9085 56.8517C98.862 56.855 98.8155 56.8452 98.7742 56.8234L97 55.8906L95.2258 56.8234C95.1773 56.8492 95.1211 56.8578 95.0672 56.8484C94.9312 56.825 94.8398 56.6961 94.8633 56.5602L95.2023 54.5844L93.7672 53.1852C93.7281 53.1469 93.7023 53.0969 93.6945 53.0422C93.6734 52.9055 93.7687 52.7789 93.9055 52.7586Z" fill="#C8D0D7"/>
	<path d="M104.905 52.7586L106.889 52.4703L107.776 50.6727C107.8 50.6234 107.84 50.5836 107.889 50.5594C108.012 50.4984 108.162 50.5492 108.224 50.6727L109.111 52.4703L111.095 52.7586C111.149 52.7664 111.199 52.7922 111.237 52.8313C111.284 52.8788 111.309 52.9428 111.308 53.0092C111.308 53.0755 111.28 53.1388 111.233 53.1852L109.798 54.5844L110.137 56.5602C110.145 56.6061 110.14 56.6534 110.122 56.6966C110.104 56.7398 110.075 56.7773 110.037 56.8047C110 56.8321 109.955 56.8484 109.909 56.8517C109.862 56.855 109.815 56.8452 109.774 56.8234L108 55.8906L106.226 56.8234C106.177 56.8492 106.121 56.8578 106.067 56.8484C105.931 56.825 105.84 56.6961 105.863 56.5602L106.202 54.5844L104.767 53.1852C104.728 53.1469 104.702 53.0969 104.695 53.0422C104.673 52.9055 104.769 52.7789 104.905 52.7586Z" fill="#C8D0D7"/>
	<path d="M71.9055 67.7586L73.889 67.4703L74.7758 65.6727C74.8 65.6234 74.8398 65.5836 74.889 65.5594C75.0125 65.4984 75.1625 65.5492 75.2242 65.6727L76.1109 67.4703L78.0945 67.7586C78.1492 67.7664 78.1992 67.7922 78.2375 67.8313C78.2838 67.8788 78.3093 67.9428 78.3084 68.0092C78.3075 68.0755 78.2803 68.1388 78.2328 68.1852L76.7976 69.5844L77.1367 71.5602C77.1447 71.6061 77.1396 71.6534 77.122 71.6966C77.1045 71.7398 77.0752 71.7773 77.0374 71.8047C76.9997 71.8321 76.955 71.8484 76.9085 71.8517C76.862 71.855 76.8155 71.8452 76.7742 71.8234L75 70.8906L73.2258 71.8234C73.1773 71.8492 73.1211 71.8578 73.0672 71.8484C72.9312 71.825 72.8398 71.6961 72.8633 71.5602L73.2023 69.5844L71.7672 68.1852C71.7281 68.1469 71.7023 68.0969 71.6945 68.0422C71.6734 67.9055 71.7687 67.7789 71.9055 67.7586Z" fill="#C8D0D7"/>
	<path d="M82.9055 67.7586L84.889 67.4703L85.7758 65.6727C85.8 65.6234 85.8398 65.5836 85.889 65.5594C86.0125 65.4984 86.1625 65.5492 86.2242 65.6727L87.1109 67.4703L89.0945 67.7586C89.1492 67.7664 89.1992 67.7922 89.2375 67.8313C89.2838 67.8788 89.3093 67.9428 89.3084 68.0092C89.3075 68.0755 89.2803 68.1388 89.2328 68.1852L87.7976 69.5844L88.1367 71.5602C88.1447 71.6061 88.1396 71.6534 88.122 71.6966C88.1045 71.7398 88.0752 71.7773 88.0374 71.8047C87.9997 71.8321 87.955 71.8484 87.9085 71.8517C87.862 71.855 87.8155 71.8452 87.7742 71.8234L86 70.8906L84.2258 71.8234C84.1773 71.8492 84.1211 71.8578 84.0672 71.8484C83.9312 71.825 83.8398 71.6961 83.8633 71.5602L84.2023 69.5844L82.7672 68.1852C82.7281 68.1469 82.7023 68.0969 82.6945 68.0422C82.6734 67.9055 82.7687 67.7789 82.9055 67.7586Z" fill="#C8D0D7"/>
	<path d="M93.9055 67.7586L95.889 67.4703L96.7758 65.6727C96.8 65.6234 96.8398 65.5836 96.889 65.5594C97.0125 65.4984 97.1625 65.5492 97.2242 65.6727L98.1109 67.4703L100.095 67.7586C100.149 67.7664 100.199 67.7922 100.237 67.8313C100.284 67.8788 100.309 67.9428 100.308 68.0092C100.308 68.0755 100.28 68.1388 100.233 68.1852L98.7976 69.5844L99.1367 71.5602C99.1447 71.6061 99.1396 71.6534 99.122 71.6966C99.1045 71.7398 99.0752 71.7773 99.0374 71.8047C98.9997 71.8321 98.955 71.8484 98.9085 71.8517C98.862 71.855 98.8155 71.8452 98.7742 71.8234L97 70.8906L95.2258 71.8234C95.1773 71.8492 95.1211 71.8578 95.0672 71.8484C94.9312 71.825 94.8398 71.6961 94.8633 71.5602L95.2023 69.5844L93.7672 68.1852C93.7281 68.1469 93.7023 68.0969 93.6945 68.0422C93.6734 67.9055 93.7687 67.7789 93.9055 67.7586Z" fill="#C8D0D7"/>
	<path d="M104.905 67.7586L106.889 67.4703L107.776 65.6727C107.8 65.6234 107.84 65.5836 107.889 65.5594C108.012 65.4984 108.162 65.5492 108.224 65.6727L109.111 67.4703L111.095 67.7586C111.149 67.7664 111.199 67.7922 111.237 67.8313C111.284 67.8788 111.309 67.9428 111.308 68.0092C111.308 68.0755 111.28 68.1388 111.233 68.1852L109.798 69.5844L110.137 71.5602C110.145 71.6061 110.14 71.6534 110.122 71.6966C110.104 71.7398 110.075 71.7773 110.037 71.8047C110 71.8321 109.955 71.8484 109.909 71.8517C109.862 71.855 109.815 71.8452 109.774 71.8234L108 70.8906L106.226 71.8234C106.177 71.8492 106.121 71.8578 106.067 71.8484C105.931 71.825 105.84 71.6961 105.863 71.5602L106.202 69.5844L104.767 68.1852C104.728 68.1469 104.702 68.0969 104.695 68.0422C104.673 67.9055 104.769 67.7789 104.905 67.7586Z" fill="#C8D0D7"/>
</svg>
PK��][�����Oultimate-addons-for-gutenberg/assets/images/block-previews/table-of-content.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="19" y="20" width="55" height="6" fill="#E4EBF0"/>
	<rect x="28" y="40" width="79" height="3" fill="#E4EBF0"/>
	<rect x="28" y="61" width="79" height="3" fill="#E4EBF0"/>
	<rect x="28" y="82" width="79" height="3" fill="#E4EBF0"/>
	<rect x="28" y="46" width="72" height="3" fill="#E4EBF0"/>
	<rect x="28" y="67" width="72" height="3" fill="#E4EBF0"/>
	<rect x="28" y="88" width="72" height="3" fill="#E4EBF0"/>
	<circle cx="21" cy="42" r="2" fill="#E4EBF0"/>
	<circle cx="21" cy="63" r="2" fill="#E4EBF0"/>
	<circle cx="21" cy="84" r="2" fill="#E4EBF0"/>
</svg>
PK��][֧�ffHultimate-addons-for-gutenberg/assets/images/block-previews/sure-form.svgnu�[���<svg width="125" height="110" viewBox="0 0 125 110" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.5" y="0.5" width="124" height="109" rx="4.5" stroke="#E4EBF0"/>
<rect x="14" y="75" width="98" height="10" rx="1.94628" fill="#C8D0D7"/>
<rect x="14.5" y="31.5" width="47" height="12" rx="0.5" stroke="#C8D0D7"/>
<rect x="14" y="25" width="12.7347" height="2" fill="#E4EBF0"/>
<rect x="15.9592" y="37" width="12.7347" height="1.2" fill="#E4EBF0"/>
<rect x="14.5" y="54.5" width="97" height="12" rx="0.5" stroke="#C8D0D7"/>
<rect x="14" y="48" width="26" height="2" fill="#E4EBF0"/>
<rect x="18" y="60" width="26" height="1.2" fill="#E4EBF0"/>
<rect x="64.5" y="31.5" width="47" height="12" rx="0.5" stroke="#C8D0D7"/>
<rect x="64" y="25" width="12.7347" height="2" fill="#E4EBF0"/>
<rect x="65.9592" y="37" width="12.7347" height="1.2" fill="#E4EBF0"/>
</svg>
PK��][L�/��Gultimate-addons-for-gutenberg/assets/images/block-previews/info-box.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="42" y="79" width="43" height="12" rx="2.50705" fill="#C8D0D7"/>
	<rect x="33" y="50.5694" width="61.5234" height="5.59304" fill="#E4EBF0"/>
	<rect x="19" y="61.7555" width="88.0903" height="2.79652" fill="#E4EBF0"/>
	<rect x="29" y="68.7468" width="69.9129" height="2.79652" fill="#E4EBF0"/>
	<ellipse cx="63.6812" cy="30.6776" rx="10.6813" ry="10.6776" fill="#E4EBF0"/>
	<path d="M59.5274 30.6779L63.0878 33.6439L67.8351 27.7119" stroke="#C8D0D7" stroke-width="1.39826"/>
</svg>
PK��][�`6�llDultimate-addons-for-gutenberg/assets/images/block-previews/modal.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="12.5787" y="12.6594" width="100" height="85.0171" rx="0.5" fill="#E4EBF0" stroke="#E4EBF0"/>
	<rect x="24.1648" y="33.5579" width="76.8278" height="43.2207" rx="1" fill="white"/>
	<rect x="54.1892" y="64.5361" width="17.1418" height="4.78375" rx="2.39188" fill="#E4EBF0"/>
	<rect x="50.6013" y="53.2029" width="24.526" height="2.22964" fill="#E4EBF0"/>
	<rect x="45.0203" y="57.6619" width="35.1168" height="1.11482" fill="#E4EBF0"/>
	<rect x="49.0068" y="60.4492" width="27.8705" height="1.11482" fill="#E4EBF0"/>
	<ellipse cx="62.8323" cy="45.2729" rx="4.25804" ry="4.25659" fill="#E4EBF0"/>
	<path d="M61.1764 45.2732L62.5957 46.4556L64.4882 44.0908" stroke="#C8D0D7" stroke-width="1.39826"/>
	<path d="M101.665 29.0187L102.072 28.6111L103.688 30.227L105.304 28.6111L105.712 29.0187L104.096 30.6346L105.712 32.2505L105.304 32.6581L103.688 31.0422L102.072 32.6581L101.665 32.2505L103.281 30.6346L101.665 29.0187Z" fill="white"/>
</svg>
PK��][v��}yyOultimate-addons-for-gutenberg/assets/images/block-previews/advanced-columns.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="13" y="48" width="31.8462" height="13" fill="#C8D0D7"/>
	<rect x="46.9231" y="48" width="31.8462" height="13" fill="#C8D0D7"/>
	<path d="M81 48H113V61H81V48Z" fill="#C8D0D7"/>
</svg>
PK��][8��h��Eultimate-addons-for-gutenberg/assets/images/block-previews/lottie.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<circle cx="57.5" cy="59.5" r="24.5" fill="#C8D0D7"/>
	<rect x="28" y="30.9594" width="50" height="7" transform="rotate(-5.69235 28 30.9594)" fill="#E4EBF0"/>
	<rect x="82" y="67.3646" width="13" height="13" transform="rotate(-15 82 67.3646)" fill="#E4EBF0"/>
</svg>
PK��][�i�88Lultimate-addons-for-gutenberg/assets/images/block-previews/post-timeline.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="61" y="37" width="2" height="35" fill="#E4EBF0"/>
	<circle r="4.5" transform="matrix(-1 0 0 1 62.5 39.5)" fill="#E4EBF0"/>
	<circle r="4.5" transform="matrix(-1 0 0 1 62.5 69.5)" fill="#E4EBF0"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M13 26C11.8954 26 11 26.8954 11 28V51C11 52.1046 11.8954 53 13 53H49C50.1046 53 51 52.1046 51 51V42.3868L56 39.5L51 36.6132V28C51 26.8954 50.1046 26 49 26H13Z" fill="#C8D0D7"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M76 56C74.8954 56 74 56.8954 74 58V66.6132L69 69.5L74 72.3868V81C74 82.1046 74.8954 83 76 83H112C113.105 83 114 82.1046 114 81V58C114 56.8954 113.105 56 112 56H76Z" fill="#C8D0D7"/>
	<rect x="17" y="33" width="20" height="3" fill="#E4EBF0"/>
	<rect x="82" y="63" width="20" height="3" fill="#E4EBF0"/>
	<rect x="17" y="46" width="21" height="1" fill="#E4EBF0"/>
	<rect x="82" y="76" width="21" height="1" fill="#E4EBF0"/>
	<rect x="17" y="44" width="27" height="1" fill="#E4EBF0"/>
	<rect x="82" y="74" width="27" height="1" fill="#E4EBF0"/>
	<rect x="17" y="42" width="27" height="1" fill="#E4EBF0"/>
	<rect x="82" y="72" width="27" height="1" fill="#E4EBF0"/>
</svg>
PK��][gj����Fultimate-addons-for-gutenberg/assets/images/block-previews/buttons.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="18" y="49" width="43" height="12" rx="2.50705" fill="#C8D0D7"/>
	<rect x="65" y="49" width="43" height="12" rx="2.50705" fill="#C8D0D7"/>
	<rect x="26" y="55" width="27" height="1" fill="#E4EBF0"/>
	<rect x="73" y="55" width="27" height="1" fill="#E4EBF0"/>
</svg>
PK��][]�C$$Lultimate-addons-for-gutenberg/assets/images/block-previews/taxonomy-list.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="9" y="23" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="9" y="45" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="9" y="67" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="64" y="23" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="64" y="45" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="64" y="67" width="52" height="19" rx="2" fill="#C8D0D7"/>
	<rect x="15" y="29" width="41" height="3" fill="#E4EBF0"/>
	<rect x="15" y="51" width="41" height="3" fill="#E4EBF0"/>
	<rect x="15" y="73" width="41" height="3" fill="#E4EBF0"/>
	<rect x="70" y="29" width="41" height="3" fill="#E4EBF0"/>
	<rect x="70" y="51" width="41" height="3" fill="#E4EBF0"/>
	<rect x="70" y="73" width="41" height="3" fill="#E4EBF0"/>
	<rect x="20" y="35" width="31" height="2" fill="#E4EBF0"/>
	<rect x="20" y="57" width="31" height="2" fill="#E4EBF0"/>
	<rect x="20" y="79" width="31" height="2" fill="#E4EBF0"/>
	<rect x="75" y="35" width="31" height="2" fill="#E4EBF0"/>
	<rect x="75" y="57" width="31" height="2" fill="#E4EBF0"/>
	<rect x="75" y="79" width="31" height="2" fill="#E4EBF0"/>
</svg>
PK��][�Z
K��Tultimate-addons-for-gutenberg/assets/images/block-previews/contact-form-7-styler.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="10.5" y="17.5" width="103" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="10.5" y="40.5" width="103" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="10.5" y="63.5" width="103" height="27" rx="0.5" stroke="#E4EBF0"/>
	<rect x="10" y="11" width="26" height="2" fill="#E4EBF0"/>
	<rect x="10" y="34" width="26" height="2" fill="#E4EBF0"/>
	<rect x="10" y="57" width="26" height="2" fill="#E4EBF0"/>
	<rect x="10" y="94" width="22" height="8" rx="4" fill="#C8D0D7"/>
</svg>
PK��][���		Dultimate-addons-for-gutenberg/assets/images/block-previews/image.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="18" y="25" width="90" height="61" fill="#C8D0D7"/>
	<g clip-path="url(#clip0_7_624)">
		<path d="M61.1776 52.6609C61.1776 53.0704 61.0149 53.4631 60.7254 53.7526C60.4359 54.0422 60.0432 54.2048 59.6337 54.2048C59.2242 54.2048 58.8316 54.0422 58.542 53.7526C58.2525 53.4631 58.0898 53.0704 58.0898 52.6609C58.0898 52.2515 58.2525 51.8588 58.542 51.5693C58.8316 51.2797 59.2242 51.1171 59.6337 51.1171C60.0432 51.1171 60.4359 51.2797 60.7254 51.5693C61.0149 51.8588 61.1776 52.2515 61.1776 52.6609Z" fill="#E4EBF0"/>
		<path d="M57.0606 48.0293C56.5146 48.0293 55.991 48.2462 55.605 48.6322C55.2189 49.0183 55.0021 49.5419 55.0021 50.0878V60.3804C55.0021 60.9263 55.2189 61.4499 55.605 61.8359C55.991 62.222 56.5146 62.4389 57.0606 62.4389H69.4116C69.9576 62.4389 70.4812 62.222 70.8672 61.8359C71.2533 61.4499 71.4701 60.9263 71.4701 60.3804V50.0878C71.4701 49.5419 71.2533 49.0183 70.8672 48.6322C70.4812 48.2462 69.9576 48.0293 69.4116 48.0293H57.0606ZM69.4116 49.0586C69.6846 49.0586 69.9464 49.167 70.1394 49.36C70.3324 49.553 70.4409 49.8148 70.4409 50.0878V56.778L66.5534 54.774C66.4569 54.7257 66.3476 54.7089 66.241 54.7261C66.1344 54.7432 66.036 54.7935 65.9595 54.8697L62.141 58.6883L59.4032 56.8644C59.3043 56.7986 59.1857 56.769 59.0676 56.7806C58.9494 56.7923 58.8388 56.8444 58.7547 56.9282L56.0313 59.3511V50.0878C56.0313 49.8148 56.1398 49.553 56.3328 49.36C56.5258 49.167 56.7876 49.0586 57.0606 49.0586H69.4116Z" fill="#E4EBF0"/>
	</g>
	<defs>
		<clipPath id="clip0_7_624">
			<rect width="16.4681" height="16.4681" fill="white" transform="translate(55 47)"/>
		</clipPath>
	</defs>
</svg>
PK��][)����Oultimate-addons-for-gutenberg/assets/images/block-previews/frame-sure-forms.pngnu�[����PNG


IHDRS�]i
	pHYs��sRGB���gAMA���abIDATx��Ml�y���%W��tT)Z�R���&^^��%*��"s�ɎV�I�@$�j�$��$4r���CH��B6�u��r.\���$��B�@�,z�Ar��y�>�|,���准�������ɵ��g�wfHۥ:�3݆v�UU'N�2@�,�G�0H� Sh�q�N&�d�A�L�Em���t�N�"��_��]����٫t�Wi���9m����w�����X�t�J�z���2��k�'-R3Օ����eu��˳^Y8�l��g�G@.?(��x9����Ӆx*����)�R��w�R�6��"�<��%�-��%��/�/(R�29nr�5��f׿�6���.�5.����l�s����R�)���E��~z�7l��Y��,�+��ja�!L�&�9���ի��QM�J��R�C�
�����a�(s��dz�6Y��~��c��T�@*�ӭL�0�f�C�U6M�3/�Mg9�&9���Յѵ5�:��6R*u�J�6�˂Cz*�7Sw:���~�a+e���ې�s��㐻�i�㟩ϣ}_��e�Y�U�9��H�?X~0�?o>��3��G�kS���ʰףC���]�s�fSdO�Wx;����q�����GŸ�+����G�zP���k9#v��TJ��|���o\-O+6ۜ���.�)�C��ڲh:�%C��=�����}��J��7���h�k�2��dg�-�v���
�O��զռ�Y*�|�3)2e�R�������a�A�����[��O.���m9O���19���r�K���~�h��P��(r����w}3SUz`}�
�W��v��+E�$ߠ��m��LR~ڣ�Յ�nz*�3�����U=FM~��W�������,�殃J��j6��9K-�Y>�C�Ɵ�:�3h��p7�%����}�x������{.�f���_R�Ý��2fN����R��nQTlK����C���//c�I8rr�
��S;lVE	��y��ժ[��>���Kʚ�_��7�`�ʗT-<��f��7V�������k414�w�{�L�	�����i9]B�w/=E��+�q�X�Ko��p���K��M�����4�"e���i�4�:��HYI���0���L6[��<6�/���s�]n��	N�|�O&8�.R;f��42��HY3�q8K���朔��<���ۏ'��ծ����n��i�΁0�5\�<�d���*U~�s�(9/�MO���>Ɩ��,[7�S/㹣Ue9��jz��K����I�Y1�$�E�3YC:M*���Os[��2I%�u�+�2Q��K���Y�R��W���~T�J�?;^�|4D�Q���*�%�:ٚ+@+�sR%quU�4J�D�S��͛˴\�<o5E)	�vK��W�\�,�p?o�y���^��X��o���W�
��
NH���8����`7�Lu����~gA��#��t�A���j�g�A ��S���8��?������Y7�S�OY���{�[ڴ�B�㳕�VMF�մR��	a����9ˡ�q��m[��X�Š6�6�����g_�Oђ`�����}�����w�A'y��G��J#e���߇�)MM��;�T�rN�&?;���UK�� j�Ҧþʀ�7ΓR�P�[8/���ڴU��x�,h�X�ղ�V�C.h�u��Q�
j��xG����>!P�ׯ�~�����w^�$ɉ�<�4�,htEG!�ޖ+���*S��YwX.a�}{Wi�TpҺ1z*ݧ�>X�?��Q�
\�������at|ɬ���9쉡�ͪM���*q��状�Bj�UR5�S�50"6��T��h(����9���PÇ�os�6̡2Ͽ�E��-“��d��W[���~���8P��<�׎��	��2��t'��z*3�M����<�7KD~uG}rZQ��'��˩R��Z=Qw)�Q���wGگM��'Fe�Ʊ���
W9Փ����d ��|хQ0s��σNM��Xj����2�9�R�J"e6�啅���P���N �W�AR��.+��xe�RpeӪ�K�J��y/׳��_����`������_qw\�UW9�$��&�QDC�-�*�Ӭ��B��ٕ�훍���'��������;��aZ�i?��qJ;��-�;��I���;�;����Co�����NN+;�%�c�~��*��m�~Z��d�b�V�G��ښ����'9�`�}�=�0�0��%���0H� 85�ìr�&�^���I�o@�j�z�V�E�Ô-c}��/�ㄉ���t���0��	��(2�Z�S�r�nĞ�k�����5��9����)@�	@�$a
��)@�	@�$a
���/'ݮ�����l�2����f��|�f��`�5I�>��2�VzoJ)�����}|m��`���V�hx�����6	�h����lӞU�����7d�ɘ��(#JY�<.ӣ�1Ϗ�_��,6[ϓ��8�T��)�j֥�9E�g[�p����,�M���G^���*Z�(��y�\�,�����6٥��J�k�󕥎X�v8x
q۵��.p��s��8ps�����3'G뗻V�9�)ȁ�J�C���OB/l��!r�ݑv	m^�C���-����,�:���FpE-_�e�p�8��+w��>�W��eyxƻ��'WiE�!�?��BoW��w�}"��۳���6�F�1�Z����R����iZ3���<߈T��Ry��QC<�<�.Jȭ��gs����>�\�)	�2�=�l�z��`|�T���X��l��	�ƀzTyF�G}<�/~��u^ɾr����mV�[{�	>�,L�p���S�(k2j�J)}�a�rH�S�xV��
�Y�u�\��*,�c�6#���Nȃ+S�r�r��E�(6����O���*6P������̞�)�cP
rf��h)U��.�j\�L�2��`�h��uX�J�H�\N�� ���<m�/�U�����-e=/�Wˆ,�@K{��$��r�/#�r�-�(a&��<� ��|�=k5�	��Z��T�Qʌ5�_+�ؐ�d.E����-l%\9��$й�t�(%����z��_���Prk���ި�S�F�$�ۤݯ��.�m���@�E��x�j��h[�����h4?W���͉�o|_���8'��ݜ���%���gK:� S� L�0H� S� L�aj�ƻ�t�0�T�W&&?S��2rK=\F	(�U�%lW�M��Y'��{f$N$�普a�T�`S��UJO]�m6/>��m��A�&��3I�=J�?��w��d�\�ᕊ�#HLW�w�X���O���a�R�0�%ؾ�>7�nH]�-ze�D]?�����ɱ� S� L�0H� S� L�0H�t�;t��m�'�l�|���<���3��v�o�3ٽ�'H´�}��O��۔}�J�|��W��Ǟ�[����@݂�/tM.=\�X��*�r�J�q8_����V�pq����_�P.n�)3���$�pm~;��W�y�e��ƫ��W�J����m��6���!�ZW?�EKsk�R�ڇ�>����[�ڻ8�e[mo������amLA���?�����#�o>�)y�����r��,MK0z�^?*�|�+��i�n[��TX~�4�Ӌ'�]W�_R�%��'���8x�rC����7��(K�d��r��wd�7���R���o�W�]^�v	�´�I�����W�����
�VO*����_�6�Wޠc�}������{A�?�~��%������r���"-L��6�J����?�u�n��=R�����e�h?���3���[�H�R)]?�	^-I8��4U�*e\�������VjJ�X��<t�oyi5�����spn��.��:����h�1��8/p�;��+q�M�|C��Zo�%����bz��w��YmtV�j���뙾�J���<Ǔ�U3��z}�h�Vj���N�=��&A�9��I�Z_������s��T�=�}���
����A�.���w����o�C�*A��?���u��0�MZ�e�*8�_
����A��|���+�Q�7��`�b]�Ɂ8z�͕���<��*�ϐ��9	\cTYY�����8;���,��d\RV�2�G�+A��:nU��3Ώ��	J���JxP�	������d
����f�(5͓�PyY�0�E:o��sȖ[T��P�v0	Ȯc�D�Z�C�z�|R����5�b���g^�������.�Б D%h�}����+�x=ʕj�:|��#���f�&�&����A`�2V�C�L��:�$���E�X��j]�\^�k W�<��NW�+G�^���*�i�Wo-��8�9k)3Y;҈n�gso?�Ѱ2t|��ҩ.����x�xkT�y�gp�"A�@e��~V���P��0<�gZ.��gx�*x�
s�w%j�jS�z�NqH�7W�R�J�8����rh/��� ���p(NH%ɇ܃2r��c:����k����d���*��S�.�)5m�?�H�}��W�L�m��]	ne�K�|��64�r�Rt����-O�]Y���CSM��+Q���)p�y��e�sJ����0�`������c�Z0r/��jr�ފ�iJ�I���ӷ�>O9��.��o|?XW8���A{�X��Gߡ�?]	��l��je��.�?���h?Z�z�giI���9?r�9����vZ�󡳻�piޯ�Y�G=NQZg�O����sX��g^o�2N|�~��y�)ז��rx�˟��G�S��v^�'�Ǵ
+a��V�D�>��b�D�쁃��$!<�1��j��r�HN�6����J2<r�x���R˅T�RU�ӛ-�'�����o՞
m~�a?'=��/�s<�����z����/}�<��~�Rjl;x�P�~a׾�H{0���<�Ώr�z�mo��e�ɸ�>���F���k���L�l!�0M�n��'�O��F�l���|� L�0H� S� L�0H� ӄ�u�ۦ6�܂�Ui�{7���mbpר�T�+�����Y�"hMn!�l5�n��s�
�W�ĩ�%H.'M�\CM�%۹��k���~�G�G�T8�a:IEND�B`�PK��][�oCƙ�Cultimate-addons-for-gutenberg/assets/images/block-previews/tabs.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M14.5 43C14.5 42.7239 14.7239 42.5 15 42.5H24C24.2761 42.5 24.5 42.7239 24.5 43V47C24.5 47.2761 24.2761 47.5 24 47.5H15C14.7239 47.5 14.5 47.2761 14.5 47V43Z" stroke="#C8D0D7"/>
	<rect x="27.5" y="42.5" width="10" height="5" rx="0.5" stroke="#C8D0D7"/>
	<rect x="40.5" y="42.5" width="10" height="5" rx="0.5" stroke="#C8D0D7"/>
	<rect x="19" y="57" width="66" height="1" fill="#C8D0D7"/>
	<rect x="14.5" y="51.5" width="97" height="12" rx="0.5" stroke="#C8D0D7"/>
</svg>
PK��][5�ĂffLultimate-addons-for-gutenberg/assets/images/block-previews/inline-notice.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M18 34C18 32.8954 18.8954 32 20 32H106C107.105 32 108 32.8954 108 34V48H18V34Z" fill="#C8D0D7"/>
	<rect x="18.5" y="32.5" width="89" height="44" rx="1.5" stroke="#C8D0D7"/>
	<rect x="25" y="38" width="50" height="4" fill="#E4EBF0"/>
	<rect x="25" y="55" width="76" height="2" fill="#E4EBF0"/>
	<rect x="25" y="60" width="76" height="2" fill="#E4EBF0"/>
	<rect x="25" y="65" width="61" height="2" fill="#E4EBF0"/>
</svg>
PK��][t颎��Jultimate-addons-for-gutenberg/assets/images/block-previews/testimonial.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="44" y="59" width="38" height="5" fill="#C8D0D7"/>
	<rect x="14" y="39" width="98" height="3" fill="#E4EBF0"/>
	<rect x="14" y="32" width="98" height="3" fill="#E4EBF0"/>
	<rect x="24" y="47" width="78" height="3" fill="#E4EBF0"/>
	<rect x="51" y="68" width="24" height="2" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_40_503)">
		<path d="M112.295 57.295L114.585 55L112.295 52.705L113 52L116 55L113 58L112.295 57.295Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip1_40_503)">
		<path d="M13.705 57.295L11.415 55L13.705 52.705L13 52L9.99999 55L13 58L13.705 57.295Z" fill="#C8D0D7"/>
	</g>
	<circle cx="58.5" cy="77.5" r="1.5" fill="#C8D0D7"/>
	<circle cx="63.5" cy="77.5" r="1.5" fill="#E4EBF0"/>
	<circle cx="68.5" cy="77.5" r="1.5" fill="#E4EBF0"/>
	<defs>
		<clipPath id="clip0_40_503">
			<rect width="12" height="12" fill="white" transform="translate(108 49)"/>
		</clipPath>
		<clipPath id="clip1_40_503">
			<rect width="12" height="12" fill="white" transform="matrix(-1 0 0 1 18 49)"/>
		</clipPath>
	</defs>
</svg>
PK��][����Kultimate-addons-for-gutenberg/assets/images/block-previews/social-share.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<path d="M23.1997 44C20.8732 44 19 45.8732 19 48.1997V62.8004C19 65.1268 20.8732 67 23.1997 67H31.1131V58.0084H28.7355V54.7712H31.1131V52.0054C31.1131 49.8325 32.5179 47.8374 35.7541 47.8374C37.0643 47.8374 38.0332 47.9632 38.0332 47.9632L37.957 50.9863C37.957 50.9863 36.9689 50.9769 35.8906 50.9769C34.7236 50.9769 34.5365 51.5146 34.5365 52.4073V54.7712H38.0497L37.8967 58.0085H34.5365V67H37.8003C40.1268 67 42 65.1268 42 62.8004V48.1997C42 45.8733 40.1268 44 37.8003 44H23.1996L23.1997 44Z" fill="#C8D0D7"/>
	<g clip-path="url(#clip0_40_196)">
		<path d="M70.1667 51.2174C69.6076 51.467 69.0037 51.6367 68.3548 51.7266C69.0336 51.3273 69.4978 50.7433 69.7474 49.9746C69.0985 50.3539 68.4297 50.6085 67.7409 50.7383C67.1319 50.0794 66.3683 49.75 65.4499 49.75C64.5814 49.75 63.8402 50.057 63.2262 50.6709C62.6123 51.2848 62.3053 52.026 62.3053 52.8945C62.3053 53.184 62.3303 53.4236 62.3802 53.6133C61.0924 53.5434 59.8845 53.219 58.7565 52.64C57.6285 52.061 56.6701 51.2873 55.8815 50.319C55.592 50.8181 55.4473 51.3472 55.4473 51.9062C55.4473 53.0443 55.9015 53.9178 56.8099 54.5267C56.3407 54.5167 55.8416 54.3869 55.3125 54.1374V54.1673C55.3125 54.916 55.5621 55.5824 56.0612 56.1663C56.5603 56.7503 57.1743 57.1122 57.903 57.252C57.6135 57.3318 57.3589 57.3717 57.1393 57.3717C57.0095 57.3717 56.8149 57.3518 56.5553 57.3118C56.765 57.9408 57.1368 58.4599 57.6709 58.8691C58.205 59.2784 58.8114 59.4881 59.4902 59.498C58.3322 60.3965 57.0295 60.8457 55.582 60.8457C55.3225 60.8457 55.0729 60.8307 54.8333 60.8008C56.3108 61.7391 57.918 62.2083 59.6549 62.2083C60.773 62.2083 61.8212 62.0311 62.7995 61.6768C63.7778 61.3224 64.6163 60.8482 65.3151 60.2542C66.0139 59.6603 66.6153 58.9765 67.1195 58.2028C67.6236 57.4291 67.9979 56.6206 68.2425 55.777C68.4871 54.9335 68.6094 54.0924 68.6094 53.2539C68.6094 53.0742 68.6044 52.9395 68.5944 52.8496C69.2233 52.4004 69.7474 51.8563 70.1667 51.2174ZM74 48.3125V62.6875C74 63.8754 73.5782 64.8912 72.7347 65.7347C71.8912 66.5782 70.8754 67 69.6875 67H55.3125C54.1246 67 53.1088 66.5782 52.2653 65.7347C51.4218 64.8912 51 63.8754 51 62.6875V48.3125C51 47.1246 51.4218 46.1088 52.2653 45.2653C53.1088 44.4218 54.1246 44 55.3125 44H69.6875C70.8754 44 71.8912 44.4218 72.7347 45.2653C73.5782 46.1088 74 47.1246 74 48.3125Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip1_40_196)">
		<path d="M101.688 44C102.875 44 103.891 44.4218 104.735 45.2653C105.578 46.1088 106 47.1246 106 48.3125V62.6875C106 63.8754 105.578 64.8912 104.735 65.7347C103.891 66.5782 102.875 67 101.688 67H90.8314C91.6799 65.7821 92.219 64.7339 92.4486 63.8555C92.5384 63.5161 92.803 62.4729 93.2422 60.7259C93.4518 61.1152 93.8187 61.4497 94.3428 61.7292C94.8669 62.0087 95.4284 62.1484 96.0273 62.1484C97.8342 62.1484 99.3091 61.4122 100.452 59.9398C101.595 58.4673 102.167 56.6031 102.167 54.347C102.167 53.5085 101.992 52.6974 101.643 51.9137C101.293 51.1301 100.812 50.4363 100.198 49.8324C99.5837 49.2284 98.8225 48.7442 97.9141 48.3799C97.0056 48.0155 96.0224 47.8333 94.9642 47.8333C93.926 47.8333 92.9552 47.9756 92.0518 48.2601C91.1483 48.5446 90.3847 48.9264 89.7607 49.4056C89.1368 49.8848 88.6003 50.4313 88.151 51.0452C87.7018 51.6592 87.3699 52.2981 87.1553 52.9619C86.9406 53.6258 86.8333 54.2871 86.8333 54.946C86.8333 55.9642 87.0305 56.8626 87.4248 57.6413C87.8191 58.4199 88.4006 58.969 89.1693 59.2884C89.299 59.3383 89.4163 59.3383 89.5212 59.2884C89.626 59.2385 89.6984 59.1437 89.7383 59.0039C89.8381 58.5647 89.913 58.2602 89.9629 58.0905C90.0228 57.8609 89.9679 57.6513 89.7982 57.4616C89.299 56.8427 89.0495 56.094 89.0495 55.2155C89.0495 53.7181 89.5661 52.4378 90.5993 51.3747C91.6325 50.3115 92.9826 49.7799 94.6497 49.7799C96.1372 49.7799 97.2976 50.1842 98.1312 50.9928C98.9647 51.8014 99.3815 52.8496 99.3815 54.1374C99.3815 55.8145 99.0446 57.242 98.3708 58.4199C97.6969 59.5979 96.8309 60.1868 95.7728 60.1868C95.1738 60.1868 94.6897 59.9697 94.3203 59.5355C93.951 59.1012 93.8362 58.5846 93.9759 57.9857C94.0558 57.6463 94.188 57.1846 94.3727 56.6006C94.5574 56.0166 94.7046 55.5075 94.8145 55.0732C94.9243 54.639 94.9792 54.2671 94.9792 53.9577C94.9792 53.4685 94.8469 53.0617 94.5824 52.7373C94.3178 52.4129 93.941 52.2507 93.4518 52.2507C92.8429 52.2507 92.3263 52.5327 91.902 53.0967C91.4778 53.6607 91.2656 54.357 91.2656 55.1855C91.2656 55.9043 91.3854 56.5082 91.625 56.9974L90.1576 63.1966C89.918 64.1949 89.883 65.4627 90.0527 67H87.3125C86.1246 67 85.1088 66.5782 84.2653 65.7347C83.4218 64.8912 83 63.8754 83 62.6875V48.3125C83 47.1246 83.4218 46.1088 84.2653 45.2653C85.1088 44.4218 86.1246 44 87.3125 44H101.688Z" fill="#C8D0D7"/>
	</g>
	<defs>
		<clipPath id="clip0_40_196">
			<rect width="23" height="23" fill="white" transform="translate(51 44)"/>
		</clipPath>
		<clipPath id="clip1_40_196">
			<rect width="23" height="23" fill="white" transform="translate(83 44)"/>
		</clipPath>
	</defs>
</svg>
PK��][!�'�__Lultimate-addons-for-gutenberg/assets/images/block-previews/post-carousel.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="27" y="20" width="72" height="71" rx="2.50705" fill="#C8D0D7"/>
	<rect x="33" y="34" width="36" height="6" fill="#E4EBF0"/>
	<rect x="33" y="46" width="50" height="3" fill="#E4EBF0"/>
	<rect x="33" y="52" width="60" height="3" fill="#E4EBF0"/>
	<rect x="33" y="58" width="39" height="3" fill="#E4EBF0"/>
	<rect x="33" y="70" width="22" height="8" rx="4" fill="#E4EBF0"/>
	<path d="M21.5 57.5H14.207L16.8535 54.8535L16.1465 54.1465L12.293 58L16.1465 61.8535L16.8535 61.1465L14.207 58.5H21.5V57.5Z" fill="#E4EBF0"/>
	<path d="M104.5 57.5H111.793L109.147 54.8535L109.854 54.1465L113.707 58L109.854 61.8535L109.147 61.1465L111.793 58.5H104.5V57.5Z" fill="#E4EBF0"/>
</svg>
PK��][S\�W��Rultimate-addons-for-gutenberg/assets/images/block-previews/gravity-form-styler.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="21.5" width="47" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="64.5" y="21.5" width="47" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="44.5" width="97" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14.5" y="67.5" width="97" height="12" rx="0.5" stroke="#E4EBF0"/>
	<rect x="14" y="15" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="38" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="61" width="26" height="2" fill="#E4EBF0"/>
	<rect x="14" y="86" width="22" height="8" rx="4" fill="#C8D0D7"/>
</svg>
PK��][X��t��Hultimate-addons-for-gutenberg/assets/images/block-previews/separator.svgnu�[���<svg width="276" height="243" viewBox="0 0 276 243" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="1" y="1" width="274" height="241" rx="7" fill="white"/>
<rect x="40" y="120" width="88" height="3" fill="#C8D0D7"/>
<rect x="148" y="120" width="88" height="3" fill="#C8D0D7"/>
<path d="M137.049 115.927C137.348 115.006 138.652 115.006 138.951 115.927L139.572 117.837C139.705 118.249 140.089 118.528 140.523 118.528H142.531C143.499 118.528 143.902 119.767 143.119 120.337L141.494 121.517C141.143 121.772 140.997 122.223 141.131 122.635L141.751 124.545C142.051 125.466 140.996 126.233 140.212 125.663L138.588 124.483C138.237 124.228 137.763 124.228 137.412 124.483L135.788 125.663C135.004 126.233 133.949 125.466 134.249 124.545L134.869 122.635C135.003 122.223 134.857 121.772 134.506 121.517L132.881 120.337C132.098 119.767 132.501 118.528 133.469 118.528H135.477C135.911 118.528 136.295 118.249 136.428 117.837L137.049 115.927Z" fill="#C8D0D7"/>
<rect x="40" y="65" width="196" height="8" fill="#E4EBF0"/>
<rect x="90" y="41" width="96" height="12" fill="#E4EBF0"/>
<rect x="66" y="81" width="144" height="8" fill="#E4EBF0"/>
<rect x="40" y="153" width="56" height="56" fill="#E4EBF0"/>
<rect x="110" y="153" width="56" height="56" fill="#E4EBF0"/>
<rect x="180" y="153" width="56" height="56" fill="#E4EBF0"/>
<rect x="1" y="1" width="274" height="241" rx="7" stroke="#E4EBF0" stroke-width="2"/>
</svg>
PK��][N"�7�7Eultimate-addons-for-gutenberg/assets/images/block-previews/review.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="74" width="33" height="3" fill="#E4EBF0"/>
	<rect x="14" y="83" width="33" height="3" fill="#E4EBF0"/>
	<rect x="14" y="92" width="33" height="3" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_40_185)">
		<path d="M49.9953 74.7148L51.2283 74.5356L51.7795 73.4181C51.7946 73.3875 51.8194 73.3627 51.85 73.3477C51.9267 73.3098 52.0199 73.3414 52.0583 73.4181L52.6095 74.5356L53.8425 74.7148C53.8765 74.7196 53.9076 74.7357 53.9314 74.7599C53.9602 74.7895 53.976 74.8293 53.9755 74.8705C53.9749 74.9118 53.958 74.9511 53.9285 74.9799L53.0364 75.8497L53.2471 77.0779C53.2521 77.1065 53.2489 77.1359 53.238 77.1627C53.2271 77.1896 53.2089 77.2129 53.1854 77.2299C53.162 77.2469 53.1342 77.2571 53.1053 77.2591C53.0764 77.2612 53.0475 77.2551 53.0218 77.2416L51.9189 76.6617L50.816 77.2416C50.7859 77.2576 50.751 77.2629 50.7174 77.2571C50.6329 77.2425 50.5761 77.1624 50.5907 77.0779L50.8015 75.8497L49.9093 74.9799C49.8851 74.9561 49.869 74.9251 49.8642 74.8911C49.8511 74.8061 49.9103 74.7274 49.9953 74.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip1_40_185)">
		<path d="M56.8331 74.7148L58.0662 74.5356L58.6174 73.4181C58.6324 73.3875 58.6572 73.3627 58.6878 73.3477C58.7645 73.3098 58.8578 73.3414 58.8961 73.4181L59.4473 74.5356L60.6804 74.7148C60.7144 74.7196 60.7455 74.7357 60.7693 74.7599C60.798 74.7895 60.8139 74.8293 60.8133 74.8705C60.8128 74.9118 60.7959 74.9511 60.7663 74.9799L59.8742 75.8497L60.085 77.0779C60.0899 77.1065 60.0868 77.1359 60.0759 77.1627C60.065 77.1896 60.0467 77.2129 60.0233 77.2299C59.9998 77.2469 59.9721 77.2571 59.9431 77.2591C59.9142 77.2612 59.8853 77.2551 59.8597 77.2416L58.7568 76.6617L57.6539 77.2416C57.6238 77.2576 57.5888 77.2629 57.5553 77.2571C57.4708 77.2425 57.414 77.1624 57.4285 77.0779L57.6393 75.8497L56.7472 74.9799C56.7229 74.9561 56.7069 74.9251 56.702 74.8911C56.6889 74.8061 56.7481 74.7274 56.8331 74.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip2_40_185)">
		<path d="M63.671 74.7148L64.904 74.5356L65.4552 73.4181C65.4703 73.3875 65.495 73.3627 65.5256 73.3477C65.6024 73.3098 65.6956 73.3414 65.734 73.4181L66.2852 74.5356L67.5182 74.7148C67.5522 74.7196 67.5833 74.7357 67.6071 74.7599C67.6359 74.7895 67.6517 74.8293 67.6512 74.8705C67.6506 74.9118 67.6337 74.9511 67.6042 74.9799L66.7121 75.8497L66.9228 77.0779C66.9278 77.1065 66.9246 77.1359 66.9137 77.1627C66.9028 77.1896 66.8846 77.2129 66.8611 77.2299C66.8377 77.2469 66.8099 77.2571 66.781 77.2591C66.752 77.2612 66.7231 77.2551 66.6975 77.2416L65.5946 76.6617L64.4917 77.2416C64.4616 77.2576 64.4266 77.2629 64.3931 77.2571C64.3086 77.2425 64.2518 77.1624 64.2664 77.0779L64.4771 75.8497L63.585 74.9799C63.5607 74.9561 63.5447 74.9251 63.5398 74.8911C63.5267 74.8061 63.586 74.7274 63.671 74.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip3_40_185)">
		<path d="M70.5088 74.7148L71.7419 74.5356L72.2931 73.4181C72.3081 73.3875 72.3329 73.3627 72.3635 73.3477C72.4402 73.3098 72.5335 73.3414 72.5718 73.4181L73.123 74.5356L74.3561 74.7148C74.3901 74.7196 74.4211 74.7357 74.4449 74.7599C74.4737 74.7895 74.4896 74.8293 74.489 74.8705C74.4885 74.9118 74.4716 74.9511 74.442 74.9799L73.5499 75.8497L73.7607 77.0779C73.7656 77.1065 73.7624 77.1359 73.7515 77.1627C73.7406 77.1896 73.7224 77.2129 73.699 77.2299C73.6755 77.2469 73.6477 77.2571 73.6188 77.2591C73.5899 77.2612 73.561 77.2551 73.5353 77.2416L72.4324 76.6617L71.3295 77.2416C71.2994 77.2576 71.2645 77.2629 71.231 77.2571C71.1465 77.2425 71.0896 77.1624 71.1042 77.0779L71.315 75.8497L70.4229 74.9799C70.3986 74.9561 70.3825 74.9251 70.3777 74.8911C70.3646 74.8061 70.4238 74.7274 70.5088 74.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip4_40_185)">
		<path d="M49.9953 83.7148L51.2283 83.5356L51.7795 82.4181C51.7946 82.3875 51.8194 82.3627 51.85 82.3477C51.9267 82.3098 52.0199 82.3414 52.0583 82.4181L52.6095 83.5356L53.8425 83.7148C53.8765 83.7196 53.9076 83.7357 53.9314 83.7599C53.9602 83.7895 53.976 83.8293 53.9755 83.8705C53.9749 83.9118 53.958 83.9511 53.9285 83.9799L53.0364 84.8497L53.2471 86.0779C53.2521 86.1065 53.2489 86.1359 53.238 86.1627C53.2271 86.1896 53.2089 86.2129 53.1854 86.2299C53.162 86.2469 53.1342 86.2571 53.1053 86.2591C53.0764 86.2612 53.0475 86.2551 53.0218 86.2416L51.9189 85.6617L50.816 86.2416C50.7859 86.2576 50.751 86.2629 50.7174 86.2571C50.6329 86.2425 50.5761 86.1624 50.5907 86.0779L50.8015 84.8497L49.9093 83.9799C49.8851 83.9561 49.869 83.9251 49.8642 83.8911C49.8511 83.8061 49.9103 83.7274 49.9953 83.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip5_40_185)">
		<path d="M56.8331 83.7148L58.0662 83.5356L58.6174 82.4181C58.6324 82.3875 58.6572 82.3627 58.6878 82.3477C58.7645 82.3098 58.8578 82.3414 58.8961 82.4181L59.4473 83.5356L60.6804 83.7148C60.7144 83.7196 60.7455 83.7357 60.7693 83.7599C60.798 83.7895 60.8139 83.8293 60.8133 83.8705C60.8128 83.9118 60.7959 83.9511 60.7663 83.9799L59.8742 84.8497L60.085 86.0779C60.0899 86.1065 60.0868 86.1359 60.0759 86.1627C60.065 86.1896 60.0467 86.2129 60.0233 86.2299C59.9998 86.2469 59.9721 86.2571 59.9431 86.2591C59.9142 86.2612 59.8853 86.2551 59.8597 86.2416L58.7568 85.6617L57.6539 86.2416C57.6238 86.2576 57.5888 86.2629 57.5553 86.2571C57.4708 86.2425 57.414 86.1624 57.4285 86.0779L57.6393 84.8497L56.7472 83.9799C56.7229 83.9561 56.7069 83.9251 56.702 83.8911C56.6889 83.8061 56.7481 83.7274 56.8331 83.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip6_40_185)">
		<path d="M63.671 83.7148L64.904 83.5356L65.4552 82.4181C65.4703 82.3875 65.495 82.3627 65.5256 82.3477C65.6024 82.3098 65.6956 82.3414 65.734 82.4181L66.2852 83.5356L67.5182 83.7148C67.5522 83.7196 67.5833 83.7357 67.6071 83.7599C67.6359 83.7895 67.6517 83.8293 67.6512 83.8705C67.6506 83.9118 67.6337 83.9511 67.6042 83.9799L66.7121 84.8497L66.9228 86.0779C66.9278 86.1065 66.9246 86.1359 66.9137 86.1627C66.9028 86.1896 66.8846 86.2129 66.8611 86.2299C66.8377 86.2469 66.8099 86.2571 66.781 86.2591C66.752 86.2612 66.7231 86.2551 66.6975 86.2416L65.5946 85.6617L64.4917 86.2416C64.4616 86.2576 64.4266 86.2629 64.3931 86.2571C64.3086 86.2425 64.2518 86.1624 64.2664 86.0779L64.4771 84.8497L63.585 83.9799C63.5607 83.9561 63.5447 83.9251 63.5398 83.8911C63.5267 83.8061 63.586 83.7274 63.671 83.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip7_40_185)">
		<path d="M70.5088 83.7148L71.7419 83.5356L72.2931 82.4181C72.3081 82.3875 72.3329 82.3627 72.3635 82.3477C72.4402 82.3098 72.5335 82.3414 72.5718 82.4181L73.123 83.5356L74.3561 83.7148C74.3901 83.7196 74.4211 83.7357 74.4449 83.7599C74.4737 83.7895 74.4896 83.8293 74.489 83.8705C74.4885 83.9118 74.4716 83.9511 74.442 83.9799L73.5499 84.8497L73.7607 86.0779C73.7656 86.1065 73.7624 86.1359 73.7515 86.1627C73.7406 86.1896 73.7224 86.2129 73.699 86.2299C73.6755 86.2469 73.6477 86.2571 73.6188 86.2591C73.5899 86.2612 73.561 86.2551 73.5353 86.2416L72.4324 85.6617L71.3295 86.2416C71.2994 86.2576 71.2645 86.2629 71.231 86.2571C71.1465 86.2425 71.0896 86.1624 71.1042 86.0779L71.315 84.8497L70.4229 83.9799C70.3986 83.9561 70.3825 83.9251 70.3777 83.8911C70.3646 83.8061 70.4238 83.7274 70.5088 83.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip8_40_185)">
		<path d="M49.9953 92.7148L51.2283 92.5356L51.7795 91.4181C51.7946 91.3875 51.8194 91.3627 51.85 91.3477C51.9267 91.3098 52.0199 91.3414 52.0583 91.4181L52.6095 92.5356L53.8425 92.7148C53.8765 92.7196 53.9076 92.7357 53.9314 92.7599C53.9602 92.7895 53.976 92.8293 53.9755 92.8705C53.9749 92.9118 53.958 92.9511 53.9285 92.9799L53.0364 93.8497L53.2471 95.0779C53.2521 95.1065 53.2489 95.1359 53.238 95.1627C53.2271 95.1896 53.2089 95.2129 53.1854 95.2299C53.162 95.2469 53.1342 95.2571 53.1053 95.2591C53.0764 95.2612 53.0475 95.2551 53.0218 95.2416L51.9189 94.6617L50.816 95.2416C50.7859 95.2576 50.751 95.2629 50.7174 95.2571C50.6329 95.2425 50.5761 95.1624 50.5907 95.0779L50.8015 93.8497L49.9093 92.9799C49.8851 92.9561 49.869 92.9251 49.8642 92.8911C49.8511 92.8061 49.9103 92.7274 49.9953 92.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip9_40_185)">
		<path d="M56.8331 92.7148L58.0662 92.5356L58.6174 91.4181C58.6324 91.3875 58.6572 91.3627 58.6878 91.3477C58.7645 91.3098 58.8578 91.3414 58.8961 91.4181L59.4473 92.5356L60.6804 92.7148C60.7144 92.7196 60.7455 92.7357 60.7693 92.7599C60.798 92.7895 60.8139 92.8293 60.8133 92.8705C60.8128 92.9118 60.7959 92.9511 60.7663 92.9799L59.8742 93.8497L60.085 95.0779C60.0899 95.1065 60.0868 95.1359 60.0759 95.1627C60.065 95.1896 60.0467 95.2129 60.0233 95.2299C59.9998 95.2469 59.9721 95.2571 59.9431 95.2591C59.9142 95.2612 59.8853 95.2551 59.8597 95.2416L58.7568 94.6617L57.6539 95.2416C57.6238 95.2576 57.5888 95.2629 57.5553 95.2571C57.4708 95.2425 57.414 95.1624 57.4285 95.0779L57.6393 93.8497L56.7472 92.9799C56.7229 92.9561 56.7069 92.9251 56.702 92.8911C56.6889 92.8061 56.7481 92.7274 56.8331 92.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip10_40_185)">
		<path d="M63.671 92.7148L64.904 92.5356L65.4552 91.4181C65.4703 91.3875 65.495 91.3627 65.5256 91.3477C65.6024 91.3098 65.6956 91.3414 65.734 91.4181L66.2852 92.5356L67.5182 92.7148C67.5522 92.7196 67.5833 92.7357 67.6071 92.7599C67.6359 92.7895 67.6517 92.8293 67.6512 92.8705C67.6506 92.9118 67.6337 92.9511 67.6042 92.9799L66.7121 93.8497L66.9228 95.0779C66.9278 95.1065 66.9246 95.1359 66.9137 95.1627C66.9028 95.1896 66.8846 95.2129 66.8611 95.2299C66.8377 95.2469 66.8099 95.2571 66.781 95.2591C66.752 95.2612 66.7231 95.2551 66.6975 95.2416L65.5946 94.6617L64.4917 95.2416C64.4616 95.2576 64.4266 95.2629 64.3931 95.2571C64.3086 95.2425 64.2518 95.1624 64.2664 95.0779L64.4771 93.8497L63.585 92.9799C63.5607 92.9561 63.5447 92.9251 63.5398 92.8911C63.5267 92.8061 63.586 92.7274 63.671 92.7148Z" fill="#C8D0D7"/>
	</g>
	<g clip-path="url(#clip11_40_185)">
		<path d="M70.5088 92.7148L71.7419 92.5356L72.2931 91.4181C72.3081 91.3875 72.3329 91.3627 72.3635 91.3477C72.4402 91.3098 72.5335 91.3414 72.5718 91.4181L73.123 92.5356L74.3561 92.7148C74.3901 92.7196 74.4211 92.7357 74.4449 92.7599C74.4737 92.7895 74.4896 92.8293 74.489 92.8705C74.4885 92.9118 74.4716 92.9511 74.442 92.9799L73.5499 93.8497L73.7607 95.0779C73.7656 95.1065 73.7624 95.1359 73.7515 95.1627C73.7406 95.1896 73.7224 95.2129 73.699 95.2299C73.6755 95.2469 73.6477 95.2571 73.6188 95.2591C73.5899 95.2612 73.561 95.2551 73.5353 95.2416L72.4324 94.6617L71.3295 95.2416C71.2994 95.2576 71.2645 95.2629 71.231 95.2571C71.1465 95.2425 71.0896 95.1624 71.1042 95.0779L71.315 93.8497L70.4229 92.9799C70.3986 92.9561 70.3825 92.9251 70.3777 92.8911C70.3646 92.8061 70.4238 92.7274 70.5088 92.7148Z" fill="#C8D0D7"/>
	</g>
	<rect x="14" y="36" width="35" height="29" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip12_40_185)">
		<path d="M29.1776 47.6609C29.1776 48.0704 29.0149 48.4631 28.7254 48.7526C28.4359 49.0422 28.0432 49.2048 27.6337 49.2048C27.2242 49.2048 26.8316 49.0422 26.542 48.7526C26.2525 48.4631 26.0898 48.0704 26.0898 47.6609C26.0898 47.2515 26.2525 46.8588 26.542 46.5693C26.8316 46.2797 27.2242 46.1171 27.6337 46.1171C28.0432 46.1171 28.4359 46.2797 28.7254 46.5693C29.0149 46.8588 29.1776 47.2515 29.1776 47.6609Z" fill="#E4EBF0"/>
		<path d="M25.0606 43.0293C24.5146 43.0293 23.991 43.2462 23.605 43.6322C23.2189 44.0183 23.0021 44.5419 23.0021 45.0878V55.3804C23.0021 55.9263 23.2189 56.4499 23.605 56.8359C23.991 57.222 24.5146 57.4389 25.0606 57.4389H37.4116C37.9576 57.4389 38.4812 57.222 38.8672 56.8359C39.2533 56.4499 39.4701 55.9263 39.4701 55.3804V45.0878C39.4701 44.5419 39.2533 44.0183 38.8672 43.6322C38.4812 43.2462 37.9576 43.0293 37.4116 43.0293H25.0606ZM37.4116 44.0586C37.6846 44.0586 37.9464 44.167 38.1394 44.36C38.3325 44.553 38.4409 44.8148 38.4409 45.0878V51.778L34.5534 49.774C34.4569 49.7257 34.3476 49.7089 34.241 49.7261C34.1344 49.7432 34.036 49.7935 33.9595 49.8697L30.141 53.6883L27.4032 51.8644C27.3043 51.7986 27.1857 51.769 27.0676 51.7806C26.9494 51.7923 26.8388 51.8444 26.7547 51.9282L24.0313 54.3511V45.0878C24.0313 44.8148 24.1398 44.553 24.3328 44.36C24.5258 44.167 24.7876 44.0586 25.0606 44.0586H37.4116Z" fill="#E4EBF0"/>
	</g>
	<rect x="14" y="15" width="34" height="4" fill="#E4EBF0"/>
	<rect x="14" y="24" width="97" height="2" fill="#E4EBF0"/>
	<rect x="14" y="29" width="85" height="2" fill="#E4EBF0"/>
	<defs>
		<clipPath id="clip0_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 54.4054 73)"/>
		</clipPath>
		<clipPath id="clip1_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 61.2432 73)"/>
		</clipPath>
		<clipPath id="clip2_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 68.0811 73)"/>
		</clipPath>
		<clipPath id="clip3_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 74.9189 73)"/>
		</clipPath>
		<clipPath id="clip4_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 54.4054 82)"/>
		</clipPath>
		<clipPath id="clip5_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 61.2432 82)"/>
		</clipPath>
		<clipPath id="clip6_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 68.0811 82)"/>
		</clipPath>
		<clipPath id="clip7_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 74.9189 82)"/>
		</clipPath>
		<clipPath id="clip8_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 54.4054 91)"/>
		</clipPath>
		<clipPath id="clip9_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 61.2432 91)"/>
		</clipPath>
		<clipPath id="clip10_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 68.0811 91)"/>
		</clipPath>
		<clipPath id="clip11_40_185">
			<rect width="4.97297" height="4.97297" fill="white" transform="matrix(-1 0 0 1 74.9189 91)"/>
		</clipPath>
		<clipPath id="clip12_40_185">
			<rect width="16.4681" height="16.4681" fill="white" transform="translate(23 42)"/>
		</clipPath>
	</defs>
</svg>
PK��][����Rultimate-addons-for-gutenberg/assets/images/block-previews/frame-checkout-form.pngnu�[����PNG


IHDR�ge��4	pHYs��sRGB���gAMA���aPIDATx�kl�ř��%��46U��-I��8�妥M�h��JB��VݶIJa��D�'@I|�(A\v,8��X  �H�@�M�8h�q�H���,1�;�9~�9�{|l_^�I'~/��<�̼���̜��^�B!
�לBQ`dȄB�InXx��n�9���4�ͻ����Es�wK���ۻ��!���[�-�7����������9!�"���X#k���~�m-ӂ���>Z���x�[���WL�u8!�"�Q��`�����佰oy/�9\۱��{^�{O��5��f�u��{j�9!���f�Z����O�w
�e��tSB���ޔ!B1 �fȌ����I����WO:}�n~�@)�`(O𙕏��n\27x�)�F�l����w\=@N�wtv�2ͨ�>F��,�o{+x�˽�N4Fk�����nչ'9!��Q7d�_~ǭ�V�u�O��܆F���@�:wv�q����lC�Y9M=�
lE���h��cT�]f;:�a_�,�2�
	�y�V��!B�nȖ�qBXˣ����0(J0�t �O���4�\�0NS+�>ϵ�F���K5#���n�����g>�zĭ��[�0�+�;��9������E9���k�mc^�@�S&zF�&W|-<�u�_>qڔG� �1�<�2s�t�"�nu0����Q7d�5�O���ǎ}��A�����^�؞#�!��w�5��.#��z��G^/�Y�j��E��3�g6�dnEڛ�����sӒ��~m�5�m��R&������V�l�[i�/�ǻ[������߸�T���b8W>�j��q�¨k��6={ ��gg>��&6.����^����W�#�8�,_8+��3k��;a��F.˨�m����%���#?z�w�?�=A��:�˥�,�M^g�Α�'�xgԿ�7� ���~]��u(�e��J7fކ
^Ԅ6�_>�/���T�008��׏T-׌$�1�i��������]:��畍�����U`l ����p���	�f��/�Ƀ0����%�Ng�S7�"���
�z,��t
���?�a�@]���1�@����/�7�B��C�C���~��YaB�ږB�&|h���}�1h\��yl�@̀M�/q;}z���à|y`�0�x<�6kj(w���e�	!�
��jrX=�1 �8cV8��˱��-��������@'�#���;����>��S6�<�i�a{�7�@�@'�Sn�ۀ3Кh�Vf�0N��~�^�����I%����B8�z#�y��S�TB��Ʉ-�F����‹�|�͐�%�AW9D���m��A^~�d�4��n�g��Նɚ�rX��f(��g�OZ߬�#��ʰ���4~��ò�oGj��7�X��ٺ�t�_/��u����m3�۪iJI�N��h#�b|1�w-ZX1䛔i���DŽ�x�%o&��׫
؄�ؠ֦� \�x�{��Pfz�5~фPu�7H,��`��5�Z(�E�_s� u��/�e#�C(�z�+�g�����–1���r�}
 n+�p4M�!�Ą-b �fkD��g�X���z���$�e�h�h�}�C�<l͋����}ݹ��7=�v0X=��|�p��4	���[:f0�Ȱ�yJ�2����C�����Q'փX�[t�m�����8|�߸O���yӅ�)w�se}����0��R���Ĵz�'aG��_߷��6 ���0�,I�$[�+m��T�&�@�n�ŵ����O*_i�#�f�
ȧ��)oM�a ���/�U�U�������#m}�V0V�OX������e���}VߒǺ{��2��!޲�"e��8�v�u�{��l�6����[?����_��k1��y�o�A=�|�=D!��u7¬�a=�#��߰c�u�`�im�R��'r��^ź!J<?�{#�zzKEH�A{��� �'��H��:�}�ЧL�Z�Oh���?��7��a�vs���{Z����3�j_˴������C�Q�k閝6#�J�e��ϥ�]���}��ɕw�W��R�uތ��ȇ�Wx��|��Y�Xl���'d
r��RF0>����������?uA?�
�@�<��<��½P�����?�!O�����O�zT��׶\I�&N#�ߌɯ��5j��Y$	�������BTcTB����W�Y��K�����/l��G�o���l?xf�pB!D5F�#B!F�Q�e!���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ�B��~'�XB���vb�1C���O�_��n�ܹ�G?����j~��1�2����3@^r�%�'���Nݯ��*7��4R�Үg�u�h��[o�����j�)�J�#����r��}�Wr˸����1e�U�m�+}��?��cψ��<t��ӧ�k��Ɲt�Ia@�?t����C}��e�s�w֠�`�{�n7��4R��x��3P�>��>|�]v�e�ȘQ�1�=˛�����܃>�N?��p^����O{\}��n��.n����O�^x����uWg.��Bw�嗻�n��-X� �cԮ����ٙ����.w�w���3g�#�������w�u?��*����(򷥥%<���_�\����xI��ŀ��K�yb|�9���������H���8��@Z�4YHo�ݻwoـ�9��4^��z�B��8o�Z,�Q�4]��X��=b]��/��b(+�}b�LGyu3Y�Y�Y^�8-�e�mLz���:#;��(����v̒���Ӿt�g�{.�qmÆ
Ao�L�'MK|���tLɃ�z�}�駮�����a���]��Y9+�ҘN�c��1����f�gm�;N�M��#ǹ�}ꩧ��J���ժ�4
�PgڶZ?��2���c�����Ȕ�<l��:��n���	�3Y�%k�Sw�����a�e�N�L��{�-wz�k�hhB[��1h�|��t�����ZZ�q�2�A��4�����Y�9~�_�X-/(x�xx>�v��HC:��,d����A��f���8����Ƅ�{��yzE~s|饗���L��y��Đۼ�,�xc�VK0�(�|,��@Jy68e\y�!o+�x6n�,���R[_��,-b܇R�FZ�&_�dz�n2�B��;��x��m��N���O�<�#�w����ʶ~��;�/��G�@��ڠ��3�sl�P�M.�O���!;�y���%,o�f�yX?2=�wޭ�r���^�8%j���lٲ�w����󮮮�뮻����w�Ν�~��{����?�O�E�^>'?�'}���7.�� ��e W,;�|�����ɓ{~��O�Yb(3Nk�P^|lr]q�y�� ���c��� PN����"SZN^��<�2K�#gz�֕���m��e0�?�y�R���hz��vl�Oub}7�3`m�8n����>kep�aZ^\�]2ݥ����LY}���ʎ��:����ԃ՝�����y����{�oV=��d�J��}���{�5��d���<�]L�4��K����kZ���|^�ME6�\�1��م�3Wf��ĸ�.ײV@h�!E�"x~��g0b&h�*6+6R�'���&�u3
��s\-��z��f���Y.�����7�.�Bz����l�m�nhh��l�o�L/|�p�`֟R=̰c}g��
[w�L��ӟ�4x-V_�gɛ���B��)ؚ��؃�k{��`���<G�)��c�מ�Cܦ�G-�=XL�X�����Т+Y�G�>,�ZKyq:�K׿�.�%��y�z��}�Z[���l�7׭o�zʓU��2:��ihD���82���4$�&&k�I�9�d����g
�2b]d��ٹ!�<x���nl@N�a�j��^|��8u��(���KM��.k��g/m��o��!;�Kf���7Q�,�cM����Z�PhZF-}�V�&g��@C���n�1PҖ)L�賦�
�T��ZH�0�HO��6f����N���5��u@�g��c!�j���>��9��=�FF��ih1\��!��$tL[��A��a�~V�u�a�c����ۑ9��/L��CN�l`1��=^F��۬.�8-/	i���<O����/y�,��-�GV��^J�9�l����X�?^�wf�c$_[����w��]�m0��)��V��g���M�X���y����Y��Jckv�Ck�Z���K���R)����[�Բ��}����^Yٖ_�}���3�������^��}d9��¹���b��X;��yFd�=�3�/�y6�q��a�E<&�8t,^�y��U��=^��>�B8t|�ё��i2N�$ށH��%	/p�zb4lwR���P��ح���0�<\G'��f����[��t���X�..�{�|Ե�^k�t�.�^�,�Ƃ7ef�8���s&[��	�c:6�0H�b��ˎ��f�8숧F�چ�Բ�����yn�W�C�l�w����յx��ޚ��1<c�F���&#i�Ѽ�����`����w;=��>�I���;+�!F��&]��z<�n����|��l�y��/�V�-���t]K���G�ƀ���4���U=���8��|i~�-�6�T�Z�J}���_���̴�j���#��E%
��Ęaaf�|7%+�TT�k�$�jF����`�k<��_��b�+����Z� t5��P/���/��/!�� �2bb��#BQh�	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B#C&���Ȑ	!�(42dB!
��B�B3�ՙͻ��[�p�=�9Q_Z���u��/<�
���S��B8���qudΆ����N�M��\�Ջ�p���_��0����wd�m��-�#Z�Y�{>wÅ6�[�=�R�52!�G�L!D��!BQhdȄB2!��F�L!D��!BQhdȄB2!���Xo��um-Sݎή򵶖i�o���p��c:�{�%C`Ǿ���h��Yߨ���Ї���n���ڶ��!�'�ސ-�?����M�pk��7\{���ή�n��u�#�����~ۛn����
��z)1�?F��]|J�3=��-�s|h����\k���ɑ��aQksE�
!&�ސ�ϝ��y�Ϻ�*�3;��nǡ��c>͢9�a���������#��Gn�����|�R�5� /�]õѯ��~+�7�ny��}�!�4e�[6o���<{�Mtv��cHv�����k���!�S��u����w������.���{V�����H��67�~µ�w�
����]zڷ|{5������}�"���Z~Ɖ��w��ー��-�Ɛ1�0{_x���?��a�c�Zu�I�u�7*�?���c�vw0w���C���������}�;apc ���
y��;�>��8���}�s|�[������g�7���z�Ţ�^�t�M�M�<k�<$����x��>�pcƄ�뛖���:6�E�Y?�K?�ck���1ypo�sܮ?��y��VUs΄���=o<9�HS��h
!�����^
�('����	bTJ���;b�c�b��13z��6c㒹!ŧm���Ⅽ|�?ޖ=�7l��ݛ�󅷿��1p�ٺ�OƩn��n0N���lx&0���8c�7L��_t [W���v%��������LT%o��\w��-qS�1!݊/�g	1����^�#y�'^���ذ�s�i�`�
�}�=��B�O
���U?��Y����`�b`d�,����10�/�W���ih�k��rY�ڔI}��{6͏�Q��3�X���>�Hx�
]���Aj|x{����2��Z�N	!�*?���4��d�B���#6��g��ƯN;
QT
������}kU@ȎA���'xN��K}8/�pRQ�m�OS¥���[zڌp����������m�giG��A1���*]��8ص���4��s�]�7��#?�3P<]#Lj���ȟuJ�"/X���BL(
�=��[��g�dk��2�F�{�><u��}�d�0zP��]l@�R+}-��	-�Xxb�1�-�ٰ.���z������C߄�`����F��M!xp�!���,�٭���}�n����K������ֺ��X4�z\i��)7�2W�|�{��G���@
7�,�X�Ag)�
��Z��B��\������{O�‘j!�jL���0b#��D����2P��ɺ>X���.!&.��*!��F�L!D��!BQhdȄB2!��F�L!D��!BQhdȄB������fC����H_�[J�V2��B��/{l\rj��s�.a�	������B��,��rc�#��sٍ�/ףIEND�B`�PK��][Ք����Iultimate-addons-for-gutenberg/assets/images/block-previews/price-list.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="14" y="22" width="35" height="29" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip0_40_171)">
		<path d="M29.1776 33.6609C29.1776 34.0704 29.0149 34.4631 28.7254 34.7526C28.4359 35.0422 28.0432 35.2048 27.6337 35.2048C27.2242 35.2048 26.8316 35.0422 26.542 34.7526C26.2525 34.4631 26.0898 34.0704 26.0898 33.6609C26.0898 33.2515 26.2525 32.8588 26.542 32.5693C26.8316 32.2797 27.2242 32.1171 27.6337 32.1171C28.0432 32.1171 28.4359 32.2797 28.7254 32.5693C29.0149 32.8588 29.1776 33.2515 29.1776 33.6609Z" fill="#E4EBF0"/>
		<path d="M25.0606 29.0293C24.5146 29.0293 23.991 29.2462 23.605 29.6322C23.2189 30.0183 23.0021 30.5419 23.0021 31.0878V41.3804C23.0021 41.9263 23.2189 42.4499 23.605 42.8359C23.991 43.222 24.5146 43.4389 25.0606 43.4389H37.4116C37.9576 43.4389 38.4812 43.222 38.8672 42.8359C39.2533 42.4499 39.4701 41.9263 39.4701 41.3804V31.0878C39.4701 30.5419 39.2533 30.0183 38.8672 29.6322C38.4812 29.2462 37.9576 29.0293 37.4116 29.0293H25.0606ZM37.4116 30.0586C37.6846 30.0586 37.9464 30.167 38.1394 30.36C38.3325 30.553 38.4409 30.8148 38.4409 31.0878V37.778L34.5534 35.774C34.4569 35.7257 34.3476 35.7089 34.241 35.7261C34.1344 35.7432 34.036 35.7935 33.9595 35.8697L30.141 39.6883L27.4032 37.8644C27.3043 37.7986 27.1857 37.769 27.0676 37.7806C26.9494 37.7923 26.8388 37.8444 26.7547 37.9282L24.0313 40.3511V31.0878C24.0313 30.8148 24.1398 30.553 24.3328 30.36C24.5258 30.167 24.7876 30.0586 25.0606 30.0586H37.4116Z" fill="#E4EBF0"/>
	</g>
	<rect x="14" y="58" width="35" height="29" rx="1" fill="#C8D0D7"/>
	<g clip-path="url(#clip1_40_171)">
		<path d="M29.1776 69.6609C29.1776 70.0704 29.0149 70.4631 28.7254 70.7526C28.4359 71.0422 28.0432 71.2048 27.6337 71.2048C27.2242 71.2048 26.8316 71.0422 26.542 70.7526C26.2525 70.4631 26.0898 70.0704 26.0898 69.6609C26.0898 69.2515 26.2525 68.8588 26.542 68.5693C26.8316 68.2797 27.2242 68.1171 27.6337 68.1171C28.0432 68.1171 28.4359 68.2797 28.7254 68.5693C29.0149 68.8588 29.1776 69.2515 29.1776 69.6609Z" fill="#E4EBF0"/>
		<path d="M25.0606 65.0293C24.5146 65.0293 23.991 65.2462 23.605 65.6322C23.2189 66.0183 23.0021 66.5419 23.0021 67.0878V77.3804C23.0021 77.9263 23.2189 78.4499 23.605 78.8359C23.991 79.222 24.5146 79.4389 25.0606 79.4389H37.4116C37.9576 79.4389 38.4812 79.222 38.8672 78.8359C39.2533 78.4499 39.4701 77.9263 39.4701 77.3804V67.0878C39.4701 66.5419 39.2533 66.0183 38.8672 65.6322C38.4812 65.2462 37.9576 65.0293 37.4116 65.0293H25.0606ZM37.4116 66.0586C37.6846 66.0586 37.9464 66.167 38.1394 66.36C38.3325 66.553 38.4409 66.8148 38.4409 67.0878V73.778L34.5534 71.774C34.4569 71.7257 34.3476 71.7089 34.241 71.7261C34.1344 71.7432 34.036 71.7935 33.9595 71.8697L30.141 75.6883L27.4032 73.8644C27.3043 73.7986 27.1857 73.769 27.0676 73.7806C26.9494 73.7923 26.8388 73.8444 26.7547 73.9282L24.0313 76.3511V67.0878C24.0313 66.8148 24.1398 66.553 24.3328 66.36C24.5258 66.167 24.7876 66.0586 25.0606 66.0586H37.4116Z" fill="#E4EBF0"/>
	</g>
	<rect x="54" y="25" width="34" height="4" fill="#E4EBF0"/>
	<rect x="54" y="61" width="34" height="4" fill="#E4EBF0"/>
	<rect x="54" y="46" width="45" height="2" fill="#E4EBF0"/>
	<rect x="54" y="82" width="45" height="2" fill="#E4EBF0"/>
	<rect x="54" y="41" width="58" height="2" fill="#E4EBF0"/>
	<rect x="54" y="77" width="58" height="2" fill="#E4EBF0"/>
	<rect x="54" y="36" width="58" height="2" fill="#E4EBF0"/>
	<rect x="54" y="72" width="58" height="2" fill="#E4EBF0"/>
	<circle r="3" transform="matrix(-1 0 0 1 109 27)" fill="#E4EBF0"/>
	<circle r="3" transform="matrix(-1 0 0 1 109 63)" fill="#E4EBF0"/>
	<defs>
		<clipPath id="clip0_40_171">
			<rect width="16.4681" height="16.4681" fill="white" transform="translate(23 28)"/>
		</clipPath>
		<clipPath id="clip1_40_171">
			<rect width="16.4681" height="16.4681" fill="white" transform="translate(23 64)"/>
		</clipPath>
	</defs>
</svg>
PK��][��D��Oultimate-addons-for-gutenberg/assets/images/block-previews/advanced-heading.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="15" y="38" width="96" height="8" fill="#C8D0D7"/>
	<rect x="15" y="54" width="96" height="3" fill="#E4EBF0"/>
	<rect x="15" y="62" width="96" height="3" fill="#E4EBF0"/>
	<rect x="28" y="70" width="68" height="3" fill="#E4EBF0"/>
</svg>
PK��][ԌD��Hultimate-addons-for-gutenberg/assets/images/block-previews/countdown.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="0.568497" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
<rect x="20.7136" y="67.1094" width="18" height="4" rx="1" fill="#E4EBF0"/>
<rect x="53.2289" y="67.1094" width="18" height="4" rx="1" fill="#E4EBF0"/>
<rect x="85.7445" y="67.1094" width="18" height="4" rx="1" fill="#E4EBF0"/>
<rect x="20.7136" y="39.2266" width="18" height="22" rx="1" fill="#C8D0D7"/>
<rect x="53.2289" y="39.2266" width="18" height="22" rx="1" fill="#C8D0D7"/>
<rect x="85.7445" y="39.2266" width="18" height="22" rx="1" fill="#C8D0D7"/>
<circle cx="45.9712" cy="48.4113" r="1.03578" fill="#C8D0D7"/>
<circle cx="45.9712" cy="53.0416" r="1.03578" fill="#C8D0D7"/>
<circle cx="78.4867" cy="48.4113" r="1.03578" fill="#C8D0D7"/>
<circle cx="78.4867" cy="53.0416" r="1.03578" fill="#C8D0D7"/>
</svg>
PK��][&��&HHCultimate-addons-for-gutenberg/assets/images/block-previews/team.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="34" y="25" width="58" height="8" fill="#C8D0D7"/>
	<rect x="15" y="51" width="96" height="3" fill="#E4EBF0"/>
	<rect x="15" y="59" width="96" height="3" fill="#E4EBF0"/>
	<rect x="28" y="67" width="68" height="3" fill="#E4EBF0"/>
	<rect x="49" y="37" width="28" height="3" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_40_467)">
		<path d="M47.6433 77C46.733 77 46 77.733 46 78.6433V84.3567C46 85.267 46.733 86 47.6433 86H50.7399V82.4816H49.8095V81.2148H50.7399V80.1326C50.7399 79.2823 51.2896 78.5016 52.5559 78.5016C53.0687 78.5016 53.4478 78.5508 53.4478 78.5508L53.418 79.7338C53.418 79.7338 53.0313 79.7301 52.6094 79.7301C52.1527 79.7301 52.0795 79.9405 52.0795 80.2898V81.2148H53.4542L53.3943 82.4816H52.0795V86H53.3567C54.267 86 55 85.267 55 84.3567V78.6434C55 77.733 54.267 77 53.3567 77H47.6433L47.6433 77Z" fill="#E4EBF0"/>
	</g>
	<g clip-path="url(#clip1_40_467)">
		<path d="M66.5 79.8242C66.2813 79.9219 66.0449 79.9883 65.791 80.0234C66.0566 79.8672 66.2383 79.6387 66.3359 79.3379C66.082 79.4863 65.8203 79.5859 65.5508 79.6367C65.3125 79.3789 65.0137 79.25 64.6543 79.25C64.3145 79.25 64.0244 79.3701 63.7842 79.6104C63.5439 79.8506 63.4238 80.1406 63.4238 80.4805C63.4238 80.5938 63.4336 80.6875 63.4531 80.7617C62.9492 80.7344 62.4766 80.6074 62.0352 80.3809C61.5937 80.1543 61.2188 79.8516 60.9102 79.4727C60.7969 79.668 60.7402 79.875 60.7402 80.0938C60.7402 80.5391 60.918 80.8809 61.2734 81.1191C61.0898 81.1152 60.8945 81.0645 60.6875 80.9668V80.9785C60.6875 81.2715 60.7852 81.5322 60.9805 81.7607C61.1758 81.9893 61.416 82.1309 61.7012 82.1855C61.5879 82.2168 61.4883 82.2324 61.4023 82.2324C61.3516 82.2324 61.2754 82.2246 61.1738 82.209C61.2559 82.4551 61.4014 82.6582 61.6104 82.8184C61.8193 82.9785 62.0566 83.0605 62.3223 83.0645C61.8691 83.416 61.3594 83.5918 60.793 83.5918C60.6914 83.5918 60.5938 83.5859 60.5 83.5742C61.0781 83.9414 61.707 84.125 62.3867 84.125C62.8242 84.125 63.2344 84.0557 63.6172 83.917C64 83.7783 64.3281 83.5928 64.6016 83.3604C64.875 83.1279 65.1104 82.8604 65.3076 82.5576C65.5049 82.2549 65.6514 81.9385 65.7471 81.6084C65.8428 81.2783 65.8906 80.9492 65.8906 80.6211C65.8906 80.5508 65.8887 80.498 65.8848 80.4629C66.1309 80.2871 66.3359 80.0742 66.5 79.8242ZM68 78.6875V84.3125C68 84.7773 67.835 85.1748 67.5049 85.5049C67.1748 85.835 66.7773 86 66.3125 86H60.6875C60.2227 86 59.8252 85.835 59.4951 85.5049C59.165 85.1748 59 84.7773 59 84.3125V78.6875C59 78.2227 59.165 77.8252 59.4951 77.4951C59.8252 77.165 60.2227 77 60.6875 77H66.3125C66.7773 77 67.1748 77.165 67.5049 77.4951C67.835 77.8252 68 78.2227 68 78.6875Z" fill="#E4EBF0"/>
	</g>
	<g clip-path="url(#clip2_40_467)">
		<path d="M79.3125 77C79.7773 77 80.1748 77.165 80.5049 77.4951C80.835 77.8252 81 78.2227 81 78.6875V84.3125C81 84.7773 80.835 85.1748 80.5049 85.5049C80.1748 85.835 79.7773 86 79.3125 86H75.0645C75.3965 85.5234 75.6074 85.1133 75.6973 84.7695C75.7324 84.6367 75.8359 84.2285 76.0078 83.5449C76.0898 83.6973 76.2334 83.8281 76.4385 83.9375C76.6436 84.0469 76.8633 84.1016 77.0977 84.1016C77.8047 84.1016 78.3818 83.8135 78.8291 83.2373C79.2764 82.6611 79.5 81.9316 79.5 81.0488C79.5 80.7207 79.4316 80.4033 79.2949 80.0967C79.1582 79.79 78.9697 79.5186 78.7295 79.2822C78.4893 79.0459 78.1914 78.8564 77.8359 78.7139C77.4805 78.5713 77.0957 78.5 76.6816 78.5C76.2754 78.5 75.8955 78.5557 75.542 78.667C75.1885 78.7783 74.8896 78.9277 74.6455 79.1152C74.4014 79.3027 74.1914 79.5166 74.0156 79.7568C73.8398 79.9971 73.71 80.2471 73.626 80.5068C73.542 80.7666 73.5 81.0254 73.5 81.2832C73.5 81.6816 73.5771 82.0332 73.7314 82.3379C73.8857 82.6426 74.1133 82.8574 74.4141 82.9824C74.4648 83.002 74.5107 83.002 74.5518 82.9824C74.5928 82.9629 74.6211 82.9258 74.6367 82.8711C74.6758 82.6992 74.7051 82.5801 74.7246 82.5137C74.748 82.4238 74.7266 82.3418 74.6602 82.2676C74.4648 82.0254 74.3672 81.7324 74.3672 81.3887C74.3672 80.8027 74.5693 80.3018 74.9736 79.8857C75.3779 79.4697 75.9062 79.2617 76.5586 79.2617C77.1406 79.2617 77.5947 79.4199 77.9209 79.7363C78.2471 80.0527 78.4102 80.4629 78.4102 80.9668C78.4102 81.623 78.2783 82.1816 78.0146 82.6426C77.751 83.1035 77.4121 83.334 76.998 83.334C76.7637 83.334 76.5742 83.249 76.4297 83.0791C76.2852 82.9092 76.2402 82.707 76.2949 82.4727C76.3262 82.3398 76.3779 82.1592 76.4502 81.9307C76.5225 81.7021 76.5801 81.5029 76.623 81.333C76.666 81.1631 76.6875 81.0176 76.6875 80.8965C76.6875 80.7051 76.6357 80.5459 76.5322 80.4189C76.4287 80.292 76.2813 80.2285 76.0898 80.2285C75.8516 80.2285 75.6494 80.3389 75.4834 80.5596C75.3174 80.7803 75.2344 81.0527 75.2344 81.377C75.2344 81.6582 75.2812 81.8945 75.375 82.0859L74.8008 84.5117C74.707 84.9023 74.6934 85.3984 74.7598 86H73.6875C73.2227 86 72.8252 85.835 72.4951 85.5049C72.165 85.1748 72 84.7773 72 84.3125V78.6875C72 78.2227 72.165 77.8252 72.4951 77.4951C72.8252 77.165 73.2227 77 73.6875 77H79.3125Z" fill="#E4EBF0"/>
	</g>
	<defs>
		<clipPath id="clip0_40_467">
			<rect width="9" height="9" fill="white" transform="translate(46 77)"/>
		</clipPath>
		<clipPath id="clip1_40_467">
			<rect width="9" height="9" fill="white" transform="translate(59 77)"/>
		</clipPath>
		<clipPath id="clip2_40_467">
			<rect width="9" height="9" fill="white" transform="translate(72 77)"/>
		</clipPath>
	</defs>
</svg>
PK��][�Z�E==Fultimate-addons-for-gutenberg/assets/images/block-previews/counter.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<circle cx="63" cy="58" r="26.5" stroke="#E4EBF0" stroke-width="3"/>
	<mask id="path-3-inside-1_112_3" fill="white">
		<path d="M53.6338 84.387C49.3593 82.8697 45.5173 80.3368 42.4385 77.0059C39.3597 73.6751 37.1361 69.6462 35.9591 65.2657C34.7821 60.8853 34.6869 56.2844 35.6817 51.8591C36.6765 47.4337 38.7315 43.3162 41.6699 39.8609C44.6083 36.4055 48.3422 33.7158 52.5503 32.023C56.7584 30.3302 61.3148 29.6851 65.8274 30.1431C70.34 30.6011 74.6739 32.1486 78.456 34.6524C82.2382 37.1561 85.3555 40.5413 87.5397 44.5165L84.9162 45.9581C82.9655 42.4078 80.1814 39.3845 76.8036 37.1484C73.4258 34.9123 69.5553 33.5303 65.5251 33.1213C61.4949 32.7122 57.4257 33.2884 53.6675 34.8002C49.9093 36.312 46.5746 38.7142 43.9503 41.8001C41.326 44.886 39.4907 48.5633 38.6023 52.5156C37.7138 56.4679 37.7989 60.5768 38.85 64.4889C39.9012 68.4011 41.887 71.9993 44.6367 74.974C47.3864 77.9487 50.8176 80.2109 54.6351 81.566L53.6338 84.387Z"/>
	</mask>
	<path d="M53.6338 84.387C49.3593 82.8697 45.5173 80.3368 42.4385 77.0059C39.3597 73.6751 37.1361 69.6462 35.9591 65.2657C34.7821 60.8853 34.6869 56.2844 35.6817 51.8591C36.6765 47.4337 38.7315 43.3162 41.6699 39.8609C44.6083 36.4055 48.3422 33.7158 52.5503 32.023C56.7584 30.3302 61.3148 29.6851 65.8274 30.1431C70.34 30.6011 74.6739 32.1486 78.456 34.6524C82.2382 37.1561 85.3555 40.5413 87.5397 44.5165L84.9162 45.9581C82.9655 42.4078 80.1814 39.3845 76.8036 37.1484C73.4258 34.9123 69.5553 33.5303 65.5251 33.1213C61.4949 32.7122 57.4257 33.2884 53.6675 34.8002C49.9093 36.312 46.5746 38.7142 43.9503 41.8001C41.326 44.886 39.4907 48.5633 38.6023 52.5156C37.7138 56.4679 37.7989 60.5768 38.85 64.4889C39.9012 68.4011 41.887 71.9993 44.6367 74.974C47.3864 77.9487 50.8176 80.2109 54.6351 81.566L53.6338 84.387Z" stroke="#C8D0D7" stroke-width="6" stroke-linejoin="round" mask="url(#path-3-inside-1_112_3)"/>
	<path d="M53.6338 84.387C49.3593 82.8697 45.5173 80.3368 42.4385 77.0059C39.3597 73.6751 37.1361 69.6462 35.9591 65.2657C34.7821 60.8853 34.6869 56.2844 35.6817 51.8591C36.6765 47.4337 38.7315 43.3162 41.6699 39.8609C44.6083 36.4055 48.3422 33.7158 52.5503 32.023C56.7584 30.3302 61.3148 29.6851 65.8274 30.1431C70.34 30.6011 74.6739 32.1486 78.456 34.6524C82.2382 37.1561 85.3555 40.5413 87.5397 44.5165L84.9162 45.9581C82.9655 42.4078 80.1814 39.3845 76.8036 37.1484C73.4258 34.9123 69.5553 33.5303 65.5251 33.1213C61.4949 32.7122 57.4257 33.2884 53.6675 34.8002C49.9093 36.312 46.5746 38.7142 43.9503 41.8001C41.326 44.886 39.4907 48.5633 38.6023 52.5156C37.7138 56.4679 37.7989 60.5768 38.85 64.4889C39.9012 68.4011 41.887 71.9993 44.6367 74.974C47.3864 77.9487 50.8176 80.2109 54.6351 81.566L53.6338 84.387Z" stroke="#C8D0D7" stroke-width="6" stroke-linejoin="round" mask="url(#path-3-inside-1_112_3)"/>
	<rect x="54" y="53" width="19" height="11" fill="#C8D0D7"/>
	<circle cx="63.5" cy="45.5" r="3.5" fill="#E4EBF0"/>
	<rect x="50" y="69" width="26" height="1.2" fill="#E4EBF0"/>
</svg>
PK��][��z�B
B
Eultimate-addons-for-gutenberg/assets/images/block-previews/slider.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="26.5358" y="36.9302" width="33.793" height="27.9999" rx="1" fill="#E4EBF0"/>
	<g clip-path="url(#clip0_291_2)">
		<path d="M41.19 48.1891C41.19 48.5845 41.0329 48.9636 40.7534 49.2432C40.4738 49.5227 40.0947 49.6798 39.6993 49.6798C39.304 49.6798 38.9248 49.5227 38.6453 49.2432C38.3657 48.9636 38.2087 48.5845 38.2087 48.1891C38.2087 47.7938 38.3657 47.4146 38.6453 47.1351C38.9248 46.8555 39.304 46.6985 39.6993 46.6985C40.0947 46.6985 40.4738 46.8555 40.7534 47.1351C41.0329 47.4146 41.19 47.7938 41.19 48.1891Z" fill="white"/>
		<path d="M37.2149 43.7173C36.6878 43.7173 36.1822 43.9267 35.8095 44.2994C35.4368 44.6721 35.2274 45.1777 35.2274 45.7048V55.6424C35.2274 56.1695 35.4368 56.6751 35.8095 57.0478C36.1822 57.4205 36.6878 57.6299 37.2149 57.6299H49.14C49.6671 57.6299 50.1727 57.4205 50.5454 57.0478C50.9181 56.6751 51.1275 56.1695 51.1275 55.6424V45.7048C51.1275 45.1777 50.9181 44.6721 50.5454 44.2994C50.1727 43.9267 49.6671 43.7173 49.14 43.7173H37.2149ZM49.14 44.711C49.4036 44.711 49.6564 44.8157 49.8427 45.0021C50.0291 45.1885 50.1338 45.4412 50.1338 45.7048V52.1642L46.3804 50.2294C46.2872 50.1827 46.1816 50.1665 46.0787 50.1831C45.9758 50.1997 45.8808 50.2482 45.807 50.3218L42.1201 54.0087L39.4767 52.2477C39.3813 52.1842 39.2668 52.1556 39.1527 52.1668C39.0386 52.1781 38.9319 52.2284 38.8506 52.3093L36.2211 54.6486V45.7048C36.2211 45.4412 36.3258 45.1885 36.5122 45.0021C36.6986 44.8157 36.9513 44.711 37.2149 44.711H49.14Z" fill="white"/>
	</g>
	<rect x="66.3288" y="47.5273" width="10.6736" height="2.22964" fill="#E4EBF0"/>
	<rect x="66.3288" y="51.9866" width="31.2289" height="1.11482" fill="#E4EBF0"/>
	<rect x="66.3288" y="54.7739" width="24.7848" height="1.11482" fill="#E4EBF0"/>
	<circle cx="64.8287" cy="71.9062" r="1.5" fill="#E4EBF0"/>
	<circle cx="60.3287" cy="71.9062" r="1.5" fill="#C8D0D7"/>
	<circle cx="110.152" cy="51.6421" r="3" transform="rotate(-180 110.152 51.6421)" fill="#C8D0D7"/>
	<path d="M109.402 52.5027L110.33 51.6421L109.402 50.7815L109.688 50.5171L110.902 51.6421L109.688 52.7671L109.402 52.5027Z" fill="white"/>
	<circle cx="15.005" cy="51.6421" r="3" fill="#C8D0D7"/>
	<path d="M15.755 50.7815L14.8279 51.6421L15.755 52.5027L15.4696 52.7671L14.255 51.6421L15.4696 50.5171L15.755 50.7815Z" fill="white"/>
	<defs>
		<clipPath id="clip0_291_2">
			<rect width="15.9002" height="15.9002" fill="white" transform="translate(35.2254 42.7234)"/>
		</clipPath>
	</defs>
</svg>
PK��][QG��WWOultimate-addons-for-gutenberg/assets/images/block-previews/content-timeline.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="61" y="22" width="2" height="69" fill="#E4EBF0"/>
	<circle r="4.5" transform="matrix(-1 0 0 1 62.5 24.5)" fill="#E4EBF0"/>
	<circle r="4.5" transform="matrix(-1 0 0 1 62.5 54.5)" fill="#E4EBF0"/>
	<circle r="4.5" transform="matrix(-1 0 0 1 62.5 86.5)" fill="#E4EBF0"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M13 11C11.8954 11 11 11.8954 11 13V36C11 37.1046 11.8954 38 13 38H49C50.1046 38 51 37.1046 51 36V27.3868L56 24.5L51 21.6132V13C51 11.8954 50.1046 11 49 11H13Z" fill="#C8D0D7"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M13 73C11.8954 73 11 73.8954 11 75V98C11 99.1046 11.8954 100 13 100H49C50.1046 100 51 99.1046 51 98V89.3867L56 86.5L51 83.6132V75C51 73.8954 50.1046 73 49 73H13Z" fill="#C8D0D7"/>
	<path fill-rule="evenodd" clip-rule="evenodd" d="M76 41C74.8954 41 74 41.8954 74 43V51.6133L69 54.5L74 57.3867V66C74 67.1046 74.8954 68 76 68H112C113.105 68 114 67.1046 114 66V43C114 41.8954 113.105 41 112 41H76Z" fill="#C8D0D7"/>
	<rect x="17" y="18" width="20" height="3" fill="#E4EBF0"/>
	<rect x="17" y="80" width="20" height="3" fill="#E4EBF0"/>
	<rect x="82" y="48" width="20" height="3" fill="#E4EBF0"/>
	<rect x="17" y="31" width="21" height="1" fill="#E4EBF0"/>
	<rect x="17" y="93" width="21" height="1" fill="#E4EBF0"/>
	<rect x="82" y="61" width="21" height="1" fill="#E4EBF0"/>
	<rect x="17" y="29" width="27" height="1" fill="#E4EBF0"/>
	<rect x="17" y="91" width="27" height="1" fill="#E4EBF0"/>
	<rect x="82" y="59" width="27" height="1" fill="#E4EBF0"/>
	<rect x="17" y="27" width="27" height="1" fill="#E4EBF0"/>
	<rect x="17" y="89" width="27" height="1" fill="#E4EBF0"/>
	<rect x="82" y="57" width="27" height="1" fill="#E4EBF0"/>
</svg>
PK��][6A��SSEultimate-addons-for-gutenberg/assets/images/block-previews/how-to.svgnu�[���<svg width="126" height="111" viewBox="0 0 126 111" fill="none" xmlns="http://www.w3.org/2000/svg">
	<rect x="0.5" y="0.5" width="124.157" height="109.336" rx="4.5" stroke="#E4EBF0"/>
	<rect x="15" y="26" width="96" height="7" fill="#C8D0D7"/>
	<rect x="15" y="38" width="96" height="3" fill="#E4EBF0"/>
	<rect x="15" y="46" width="79" height="3" fill="#E4EBF0"/>
	<rect x="15" y="58" width="23" height="3" fill="#E4EBF0"/>
	<rect x="46" y="58" width="65" height="3" fill="#E4EBF0"/>
	<rect x="15" y="66" width="23" height="3" fill="#E4EBF0"/>
	<rect x="46" y="66" width="65" height="3" fill="#E4EBF0"/>
	<rect x="15" y="74" width="23" height="3" fill="#E4EBF0"/>
	<rect x="46" y="74" width="65" height="3" fill="#E4EBF0"/>
	<rect x="15" y="82" width="23" height="3" fill="#E4EBF0"/>
	<rect x="46" y="82" width="65" height="3" fill="#E4EBF0"/>
</svg>
PK��][��3^^;ultimate-addons-for-gutenberg/assets/images/masks/blob2.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<path d="M393.879,31.896c96.935,41.811,41.553,265.103-29.118,320.414c-74.443,58.259-320.428,32.36-330.586-185.032
	C29.551,68.561,183.588-58.822,393.879,31.896z"/>
</svg>
PK��][F�*�??=ultimate-addons-for-gutenberg/assets/images/masks/diamond.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<rect x="106.001" y="56.001" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 275.3553 494.0559)" width="267.998" height="267.999"/>
</svg>
PK��][4��==ultimate-addons-for-gutenberg/assets/images/masks/hexagon.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<polygon points="79.386,97.269 240,4.538 400.614,97.269 400.614,282.73 240,375.462 79.386,282.73 "/>
</svg>
PK��][I����<ultimate-addons-for-gutenberg/assets/images/masks/circle.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<circle cx="240" cy="190" r="184"/>
</svg>
PK��][h?��<<;ultimate-addons-for-gutenberg/assets/images/masks/blob4.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<g>
	<path d="M69.19,26.334C54.496,39.876,42.91,57.185,35.302,75.221c-10.718,25.408-15.268,52.962-18.384,80.363
		c-10.069,88.57,17.375,190.72,112.557,217.96c63.844,18.273,133.074-0.437,191.492-27.517
		c85.828-39.789,206.786-163.646,105.685-255.719C372.3,40.81,284.499,59.485,220.248,32.528
		c-30.103-12.63-58.445-35.896-92.778-33.125C105.078,1.21,85.272,11.517,69.19,26.334z"/>
</g>
</svg>
PK��][��^^;ultimate-addons-for-gutenberg/assets/images/masks/blob1.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<path d="M47.846,184.442c-87.942,134.709,80.073,196.702,186.331,196.702c104.494,0,222.582-39.417,222.582-160.557
	C456.758-91.25,198.783-46.776,47.846,184.442z"/>
</svg>
PK��][{��__;ultimate-addons-for-gutenberg/assets/images/masks/blob3.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<path d="M141.699,9.958c37.611-41.211,253.977,90.988,263.995,181.115c10.016,90.134-215.692,232.896-280.453,172.106
	C69.045,310.428,39.531,121.932,141.699,9.958z"/>
</svg>
PK��][�+�Vww=ultimate-addons-for-gutenberg/assets/images/masks/rounded.svgnu�[���<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 480 380" enable-background="new 0 0 480 380" xml:space="preserve">
<path d="M421,309.436C421,343.437,393.437,371,359.436,371H120.564C86.563,371,59,343.437,59,309.436V70.564
	C59,36.563,86.563,9,120.564,9h238.871C393.437,9,421,36.563,421,70.564V309.436z"/>
</svg>
PK��]['MI!��=ultimate-addons-for-gutenberg/assets/images/logos/spectra.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 82 82" style="enable-background:new 0 0 82 82;" xml:space="preserve" color="#6104ff">
<g>
	<path class="st0" d="M41,1C18.9,1,1,18.9,1,41s17.9,40,40,40c22.1,0,40-17.9,40-40S63.1,1,41,1z M56.1,47.1c0,0.1,0,0.2,0,0.3
		c0,0.1,0,0.2,0,0.3l0,0.2c-0.2,1.2-0.6,2.3-1.3,3.3c-0.1,0.2-0.2,0.4-0.4,0.5c0,0,0,0.1-0.5,0.6c-0.4,0.5-0.5,0.6-0.6,0.7
		c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1l-0.1,0c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l-0.1,0
		c-0.1,0.1-0.2,0.1-0.3,0.2L33.6,66.1c-0.2,0.1-0.3,0.2-0.5,0.2c-0.1,0-0.1,0-0.2,0c-0.2-0.1-0.5-0.2-0.6-0.4c0,0-0.4-0.8-0.5-0.8
		c0-0.1-0.1-0.1-0.1-0.2l0-0.1c0,0,0-0.1,0-0.1l0-0.1c0,0,0-0.1-0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1l0,0c-0.7-1.9-0.8-4-0.2-5.9
		c0.6-2,1.9-3.7,3.6-4.8l8.6-5.7c0.3-0.2,0.4-0.6,0.4-0.8c-0.1-0.3-0.2-0.6-0.6-0.6L33,44.3c-0.1,0-0.2,0-0.3-0.1l-0.1,0
		c-0.1,0-0.2,0-0.3-0.1l0,0c-0.1,0-0.2-0.1-0.3-0.1L32,44c-0.1,0-0.1,0-0.2-0.1l-0.1,0c-0.1,0-0.2-0.1-0.3-0.1l-0.1,0
		c-0.1,0-0.1,0-0.2-0.1l-0.1,0c-0.1,0-0.2-0.1-0.3-0.1l0,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1l0,0
		c-0.1-0.1-0.2-0.1-0.3-0.2c-0.8-0.5-1.5-1.1-2.1-1.9l-0.2-0.3l-0.3-0.4c-1.3-2-1.8-4.4-1.3-6.7c0.2-0.7,0.4-1.5,0.8-2.3
		c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.1,0.1-0.2,0.1-0.2c0.1-0.2,0.2-0.4,0.4-0.5c0-0.1,0.1-0.1,0.1-0.2l0,0c0.1-0.1,0.1-0.2,0.2-0.2
		c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1c0,0,0.1-0.1,0.1-0.1l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1
		c0.1-0.1,0.1-0.1,0.2-0.2l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1c0,0,0.1-0.1,0.1-0.1l0.1-0.1c0.1-0.1,0.2-0.1,0.2-0.2L48.4,16
		c0.2-0.2,0.5-0.2,0.8-0.2c0.3,0.1,0.5,0.2,0.7,0.5c0,0,0.1,0.2,0.2,0.3l0,0.1c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0.1,0.1,0.1,0.1,0.2
		l0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0.1,0.1l0,0c0,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0,0,0.1,0,0.1l0,0.1
		c0.7,1.8,0.7,3.9,0.1,5.8c-0.6,1.9-1.9,3.5-3.5,4.7l-8.6,5.7c-0.3,0.2-0.4,0.6-0.4,0.8c0.1,0.3,0.2,0.6,0.6,0.6l10.1,2
		c4.2,0.8,7.1,4.5,7.1,8.7C56.1,46.5,56.1,47.1,56.1,47.1z" fill="currentColor"/>
</g>
</svg>
PK��][z�BB>ultimate-addons-for-gutenberg/assets/js/spectra-counter.min.jsnu�[���UAGBCounter={elements:{},init(e,t={}){this.elements=this.getDefaultElements(e);e=document.querySelectorAll(".wp-block-uagb-counter"+e);if(e&&1<e.length)for(const r of e)this.elements.counterWrapper=r,this.handleCounterWrapper(t);else this.handleCounterWrapper(t)},handleCounterWrapper(e){var t;(e=this._getCounterData(this.elements.counterWrapper,e)).isFrontend||this.elements.counterWrapper.removeAttribute("played"),void 0!==this.elements.counterWrapper&&this.elements.counterWrapper&&(t=this._numberCount(e),this._inViewInit(t,e))},getDefaultElements(e){return{counterWrapper:this.getElement(e)}},getElement(e,t=null){let r=document.querySelector(e);if(r){if(t)return r.querySelector(t)}else{const a=document.querySelector('iframe[name="editor-canvas"]');if(a&&a.contentDocument&&(r=a.contentDocument.querySelector(e),t))return r=r.querySelector(t)}return r},_inViewInit(a,n){const o=this;const e=new IntersectionObserver(e=>{e.forEach(e=>{const t=e.target;var r=t.hasAttribute("played");e.isIntersecting&&!r&&(a.error||("bars"===n.layout?o._triggerBar(t,n):"circle"===n.layout&&o._triggerCircle(t,n),a.start()))})},{threshold:.75});e.observe(o.elements.counterWrapper)},_numberCount(e){var t=this,r=this.elements.counterWrapper.querySelector(".uagb-counter-block-number");if(void 0!==r&&r)return new window.countUp.CountUp(r,t._getEndNumber(e),{startVal:t._getStartNumber(e),duration:t._getAnimationDuration(e),separator:e.thousandSeparator,useEasing:!1,decimalPlaces:e.decimalPlaces})},_triggerBar(e,t){var r=this;const a=e.querySelector(".wp-block-uagb-counter__number");var n=r._getAnimationDurationForCSS(t),r=[{width:(r._getStartNumber(t)<r._getTotalNumber(t)?Math.ceil(r._getStartNumber(t)/r._getTotalNumber(t)*100):100)+"%"},{width:(r._getEndNumber(t)<=r._getTotalNumber(t)?Math.ceil(r._getEndNumber(t)/r._getTotalNumber(t)*100):100)+"%"}],t={duration:n,fill:"forwards"};e.classList.contains("wp-block-uagb-counter--bars")&&a?.animate(r,t),e.setAttribute("played",!0)},_triggerCircle(e,t){var r=this;const a=e.querySelector(".wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress");var n=t.circleSize-t.circleStokeSize,n=Math.PI*n,o=r._getTotalNumber(t);let u=r._getStartNumber(t)/o*100,i=(u=(u=100-(u=u<100?u:100))/100*n,r._getEndNumber(t)/o*100);i=(i=100-(i=i<100?i:100))/100*n;o=r._getAnimationDurationForCSS(t),n=[{strokeDashoffset:u+"px"},{strokeDashoffset:i+"px"}];a?.animate(n,{duration:o,fill:"forwards"}),e.setAttribute("played",!0)},_getAnimationDuration(e){return e.animationDuration/1e3},_getAnimationDurationForCSS(e){return e.animationDuration},_getStartNumber(e){return!isNaN(e.startNumber)&&(e.startNumber||parseFloat(e.startNumber)===parseFloat(0))?parseFloat(e.startNumber):parseFloat(0)},_getEndNumber(e){return!isNaN(e.endNumber)&&(e.endNumber||parseFloat(e.startNumber)===parseFloat(0))?parseFloat(e.endNumber):parseFloat(80)},_getTotalNumber(e){return isNaN(e.startNumber)?parseFloat(0):e.totalNumber||parseFloat(e.startNumber)===parseFloat(0)?parseFloat(e.totalNumber):parseFloat(100)},_getCounterData(e,t){e=e?.getAttribute("data-counter");return(e=e&&JSON.parse(e))?{...t,...e}:t}};PK��][�X�:":"9ultimate-addons-for-gutenberg/assets/js/uagb-countdown.jsnu�[���// Global uagb_countdown_data.
UAGBCountdown = {
	elements: {},
	countdownInterval: {},
	cookie_slug: uagb_countdown_data.site_name_slug,
	cache: {},

	editorInit( mainSelector, data = {}, countdownRef ) {
		// When a new Countdown timer block is added, the timeModified value received is 'false',
		// even though it's attribute has been set to 'true'.
		// Hence, we need to ensure here that the dynamic defaults are followed.
		if ( ! data.timeModified ) {
			const d = new Date();

			// Set the default end time to 7 days later.
			d.setMilliseconds( d.getMilliseconds() + 7 * 24 * 60 * 60 * 1000 );

			data.endDateTime = d;
		}

		this.elements[ mainSelector ] = this.getElement( mainSelector );

		this.countdownInterval[ mainSelector ] = setInterval( () => {
			this.updateCountdown( mainSelector, data, countdownRef );
		}, 1000 );
	},

	createCookie( name, value, expire_days, unit ) {
		let expires = '';
		if ( expire_days ) {
			const date = new Date();
			if ( 'minutes' === unit ) {
				date.setTime( date.getTime() + expire_days * 60 * 1000 );
			} else if ( 'hours' === unit ) {
				date.setTime( date.getTime() + expire_days * 60 * 60 * 1000 );
			} else {
				date.setTime( date.getTime() + expire_days * 24 * 60 * 60 * 1000 );
			}
			expires = '; expires=' + date.toGMTString();
		}

		document.cookie = this.cookie_slug + '-' + name + '=' + value + expires + '; path=/';
	},

	getCookie( name ) {
		const value = '; ' + document.cookie;
		const parts = value.split( '; ' + this.cookie_slug + '-' + name + '=' );
		if ( parts.length === 2 ) {
			return parts.pop().split( ';' ).shift();
		}
		return '';
	},

	init( mainSelector, data = {} ) {
		this.elements[ mainSelector ] = this.getElement( mainSelector );

		// If global flag variable does not exists, create it.
		// This is used like a signal for usage in Pro code.
		if( ! window?.UAGBCountdownTimeSignal ) {
			window.UAGBCountdownTimeSignal = {};
		}

		// Set flag variable to false, till it's overtime.
		window.UAGBCountdownTimeSignal[ mainSelector ] = false;

		if ( typeof this.elements[ mainSelector ] !== 'undefined' ) {
			if ( 'evergreen' === data?.timerType ) {
				const CampaignID =
					'' !== data?.campaignID && null !== data?.campaignID ? data.campaignID : data.block_id;
				this.cache.cookie = this.getCookie( CampaignID );
				//Check for saved cookie.
				if ( '' !== this.cache.cookie ) {
					const currentTimeStamp = new Date();
					const diff = Math.floor( this.cache.cookie - currentTimeStamp.getTime() );
					const endTimeStamp = currentTimeStamp.getTime() + diff;
					const totalDate = new Date( endTimeStamp );

					// Setting enddate as per cookie timestamp.
					data.endDateTime = totalDate.toISOString().replace( /\.\d{3}Z$/, 'Z' );
				} else {
					data.endDateTime = this.getEvergreenEndDate(
						data.evergreenDays,
						data.evergreenHrs,
						data.evergreenMinutes
					);

					/**
					 * Setting timestamp and cookie after initial load.
					 * We are getting values of Hrs. and Minutes. and adding to the current timestamp to get endtime.
					 */
					const newDate = new Date();
					newDate.setTime( newDate.getTime() + Math.floor( data.evergreenDays ) * 24 * 60 * 60 * 1000 );
					newDate.setTime( newDate.getTime() + Math.floor( data.evergreenHrs ) * 60 * 60 * 1000 );
					newDate.setTime( newDate.getTime() + Math.floor( data.evergreenMinutes ) * 60 * 1000 );

					// Setting value for cache.
					this.cache.evergreen = newDate.getTime() + 100;
					const resetDays = '' !== data?.resetDays && 0 < data.resetDays ? data.resetDays : 30;
					// Create the cookie for evergreen time.
					this.createCookie( CampaignID, this.cache.evergreen, resetDays, 'days' );
				}
			}

			// Slider block may create duplicate instances of it's slides, which may contain instances of the same countdowns.
			const allSameCountdownInstances = document.querySelectorAll( mainSelector );

			for( let i = 0; i < allSameCountdownInstances.length; i++ ) {

				// Ensures instantaneous load/firing of countdown functionality.
				this.updateCountdown( mainSelector, data, allSameCountdownInstances[i] );

				this.countdownInterval[ mainSelector ] = setInterval( () => {
					this.updateCountdown( mainSelector, data, allSameCountdownInstances[i] );
				}, 1000 );
			}

		}
	},

	changeEndTime( mainSelector, data = {}, ref ) {
		clearInterval( this.countdownInterval[ mainSelector ] );

		if ( typeof this.elements[ mainSelector ] !== 'undefined' ) {
			// Ensures instantaneous refresh of value.
			this.updateCountdown( mainSelector, data, ref );

            this.countdownInterval[ mainSelector ] = setInterval( () => {
                this.updateCountdown( mainSelector, data, ref );
            }, 1000 );
		}
	},

	getElement( selector ) {
		let domElement = document.querySelector( selector );

		const editorCanvas = document.querySelector( 'iframe[name="editor-canvas"]' );

		if ( editorCanvas && editorCanvas.contentDocument ) {
			domElement = editorCanvas.contentDocument.querySelector( selector );
		}

		return domElement;
	},

    updateCountdown( mainSelector, data, ref = null ) {
		
		if( ! ref ){
			return;
		}

		// Wrappers.
		let daysWrap;
		let hoursWrap;
		let minutesWrap;
		const secondsWrap = ref.querySelector( '.wp-block-uagb-countdown__time-seconds' );

		if ( data?.showDays ) {
			daysWrap = ref.querySelector( '.wp-block-uagb-countdown__time-days' );
		}

		if ( data?.showHours ) {
			hoursWrap = ref.querySelector( '.wp-block-uagb-countdown__time-hours' );
		}

		if ( data?.showMinutes ) {
			minutesWrap = ref.querySelector( '.wp-block-uagb-countdown__time-minutes' );
		}

		// Calculations.
		const currentTime = new Date();
		const endDateTime = new Date( data.endDateTime );
		const diff = endDateTime - currentTime;
		const isOvertime = diff < 0;

		// Calculations for each unit.
		const days = Math.floor( diff / 1000 / 60 / 60 / 24 );
		let hours = Math.floor( diff / 1000 / 60 / 60 ) % 24;
		let minutes = Math.floor( diff / 1000 / 60 ) % 60;
		let seconds = Math.floor( diff / 1000 ) % 60;

		if ( ! data?.showDays ) {
			hours = hours + days * 24;
		}

		if ( ! data?.showHours ) {
			minutes = minutes + hours * 60;
		}

		if ( ! data?.showMinutes ) {
			seconds = seconds + minutes * 60;
		}

		// Update the markup - Also, we check if the wrappers exist to avoid potential console errors.
		if ( data?.showDays && daysWrap ) {
			daysWrap.innerHTML = ! isOvertime ? days : 0;
		}

		if ( data?.showHours && hoursWrap ) {
			hoursWrap.innerHTML = ! isOvertime ? hours : 0;
		}

		if ( data?.showMinutes && minutesWrap ) {
			minutesWrap.innerHTML = ! isOvertime ? minutes : 0;
		}

		if ( secondsWrap ) {
			secondsWrap.innerHTML = ! isOvertime ? seconds : 0;
		}

		// If it's overtime, stop updating the markup and clear the interval.
		if ( isOvertime ) {
			clearInterval( this.countdownInterval[ mainSelector ] );

			// Set flag variable to true, for usage in Countdown Pro code (like a signal).
			if( ( 'redirect' === data?.timerEndAction || 'hide' === data?.timerEndAction ) && data?.isFrontend ) {
				window.UAGBCountdownTimeSignal[ mainSelector ] = true;
			}
		}
		
		// Check if the page is reloaded by checking the presence of a specific cookie
		const reloadCookieName = 'spectraPageReloaded_' + mainSelector;
		const isPageReloaded = this.getCookie( reloadCookieName ) === 'true';
		const resetDays = '' !== data?.resetDays && 0 < data.resetDays ? data.resetDays : 30;
		
		
		if ( data?.isFrontend ) {
			// Execute the code only in front-end.
			if( isPageReloaded && ! isOvertime && this.getCookie( reloadCookieName ) !== 'false' ) {
				this.createCookie( reloadCookieName, 'false',  0, 'days' );
			}

			if ( !isPageReloaded && isOvertime && 'content' === data?.timerEndAction && data?.reloadOnExpire && data?.autoReload ) {
			  location.reload();
			  	this.createCookie( reloadCookieName, 'true', resetDays, 'days' );
			}

			if ( isOvertime && 'content' === data?.timerEndAction && ! data?.reloadOnExpire && ! data?.autoReload ) {
				
				const timeUnits = [ 'days', 'hours', 'minutes', 'seconds' ];
				const countdownSelectors = timeUnits.map( unit => ref.querySelector( `.wp-block-uagb-countdown__box-${unit}` ) );
				const innerBlocksWrapper = ref.querySelector( `.uagb-block-countdown-innerblocks-${data.block_id}` );
				innerBlocksWrapper.style.display = 'block';
				countdownSelectors.forEach( selector => {
					if ( selector ) {
						selector.style.display = 'none';
					}
				} );

			}
		  }
	},

	getEvergreenEndDate( days, hours, minutes ) {
		const now = new Date();
		const newDate = new Date( now.getTime() + ( days * 24 * 60 + hours * 60 + minutes ) * 60 * 1000 );
		return newDate.toISOString().replace( /\.\d{3}Z$/, 'Z' );
	},
};
PK��][+��(�(�=ultimate-addons-for-gutenberg/assets/js/uagb-bodymovin.min.jsnu�[���(typeof navigator !== "undefined") && (function(root, factory) {
    if (typeof define === "function" && define.amd) {
        define(function() {
            return factory(root);
        });
    } else if (typeof module === "object" && module.exports) {
        module.exports = factory(root);
    } else {
        root.lottie = factory(root);
        root.bodymovin = root.lottie;
    }
}((window || {}), function(window) {
	"use strict";var svgNS="http://www.w3.org/2000/svg",locationHref="",initialDefaultFrame=-999999,subframeEnabled=!0,expressionsPlugin,isSafari=/^((?!chrome|android).)*safari/i.test(navigator.userAgent),cachedColors={},bm_rounder=Math.round,bm_rnd,bm_pow=Math.pow,bm_sqrt=Math.sqrt,bm_abs=Math.abs,bm_floor=Math.floor,bm_max=Math.max,bm_min=Math.min,blitter=10,BMMath={};function ProjectInterface(){return{}}!function(){var t,e=["abs","acos","acosh","asin","asinh","atan","atanh","atan2","ceil","cbrt","expm1","clz32","cos","cosh","exp","floor","fround","hypot","imul","log","log1p","log2","log10","max","min","pow","random","round","sign","sin","sinh","sqrt","tan","tanh","trunc","E","LN10","LN2","LOG10E","LOG2E","PI","SQRT1_2","SQRT2"],r=e.length;for(t=0;t<r;t+=1)BMMath[e[t]]=Math[e[t]]}(),BMMath.random=Math.random,BMMath.abs=function(t){if("object"===typeof t&&t.length){var e,r=createSizedArray(t.length),i=t.length;for(e=0;e<i;e+=1)r[e]=Math.abs(t[e]);return r}return Math.abs(t)};var defaultCurveSegments=150,degToRads=Math.PI/180,roundCorner=.5519;function roundValues(t){bm_rnd=t?Math.round:function(t){return t}}function styleDiv(t){t.style.position="absolute",t.style.top=0,t.style.left=0,t.style.display="block",t.style.transformOrigin=t.style.webkitTransformOrigin="0 0",t.style.backfaceVisibility=t.style.webkitBackfaceVisibility="visible",t.style.transformStyle=t.style.webkitTransformStyle=t.style.mozTransformStyle="preserve-3d"}function BMEnterFrameEvent(t,e,r,i){this.type=t,this.currentTime=e,this.totalTime=r,this.direction=i<0?-1:1}function BMCompleteEvent(t,e){this.type=t,this.direction=e<0?-1:1}function BMCompleteLoopEvent(t,e,r,i){this.type=t,this.currentLoop=r,this.totalLoops=e,this.direction=i<0?-1:1}function BMSegmentStartEvent(t,e,r){this.type=t,this.firstFrame=e,this.totalFrames=r}function BMDestroyEvent(t,e){this.type=t,this.target=e}function BMRenderFrameErrorEvent(t,e){this.type="renderFrameError",this.nativeError=t,this.currentTime=e}function BMConfigErrorEvent(t){this.type="configError",this.nativeError=t}function BMAnimationConfigErrorEvent(t,e){this.type=t,this.nativeError=e,this.currentTime=currentTime}roundValues(!1);var createElementID=(G=0,function(){return"__lottie_element_"+ ++G}),G;function HSVtoRGB(t,e,r){var i,s,a,n,o,h,l,p;switch(h=r*(1-e),l=r*(1-(o=6*t-(n=Math.floor(6*t)))*e),p=r*(1-(1-o)*e),n%6){case 0:i=r,s=p,a=h;break;case 1:i=l,s=r,a=h;break;case 2:i=h,s=r,a=p;break;case 3:i=h,s=l,a=r;break;case 4:i=p,s=h,a=r;break;case 5:i=r,s=h,a=l}return[i,s,a]}function RGBtoHSV(t,e,r){var i,s=Math.max(t,e,r),a=Math.min(t,e,r),n=s-a,o=0===s?0:n/s,h=s/255;switch(s){case a:i=0;break;case t:i=e-r+n*(e<r?6:0),i/=6*n;break;case e:i=r-t+2*n,i/=6*n;break;case r:i=t-e+4*n,i/=6*n}return[i,o,h]}function addSaturationToRGB(t,e){var r=RGBtoHSV(255*t[0],255*t[1],255*t[2]);return r[1]+=e,1<r[1]?r[1]=1:r[1]<=0&&(r[1]=0),HSVtoRGB(r[0],r[1],r[2])}function addBrightnessToRGB(t,e){var r=RGBtoHSV(255*t[0],255*t[1],255*t[2]);return r[2]+=e,1<r[2]?r[2]=1:r[2]<0&&(r[2]=0),HSVtoRGB(r[0],r[1],r[2])}function addHueToRGB(t,e){var r=RGBtoHSV(255*t[0],255*t[1],255*t[2]);return r[0]+=e/360,1<r[0]?r[0]-=1:r[0]<0&&(r[0]+=1),HSVtoRGB(r[0],r[1],r[2])}var rgbToHex=function(){var t,e,i=[];for(t=0;t<256;t+=1)e=t.toString(16),i[t]=1==e.length?"0"+e:e;return function(t,e,r){return t<0&&(t=0),e<0&&(e=0),r<0&&(r=0),"#"+i[t]+i[e]+i[r]}}();function BaseEvent(){}BaseEvent.prototype={triggerEvent:function(t,e){if(this._cbs[t])for(var r=this._cbs[t].length,i=0;i<r;i++)this._cbs[t][i](e)},addEventListener:function(t,e){return this._cbs[t]||(this._cbs[t]=[]),this._cbs[t].push(e),function(){this.removeEventListener(t,e)}.bind(this)},removeEventListener:function(t,e){if(e){if(this._cbs[t]){for(var r=0,i=this._cbs[t].length;r<i;)this._cbs[t][r]===e&&(this._cbs[t].splice(r,1),r-=1,i-=1),r+=1;this._cbs[t].length||(this._cbs[t]=null)}}else this._cbs[t]=null}};var createTypedArray="function"==typeof Uint8ClampedArray&&"function"==typeof Float32Array?function(t,e){return"float32"===t?new Float32Array(e):"int16"===t?new Int16Array(e):"uint8c"===t?new Uint8ClampedArray(e):void 0}:function(t,e){var r,i=0,s=[];switch(t){case"int16":case"uint8c":r=1;break;default:r=1.1}for(i=0;i<e;i+=1)s.push(r);return s};function createSizedArray(t){return Array.apply(null,{length:t})}function createNS(t){return document.createElementNS(svgNS,t)}function createTag(t){return document.createElement(t)}function DynamicPropertyContainer(){}DynamicPropertyContainer.prototype={addDynamicProperty:function(t){-1===this.dynamicProperties.indexOf(t)&&(this.dynamicProperties.push(t),this.container.addDynamicProperty(this),this._isAnimated=!0)},iterateDynamicProperties:function(){this._mdf=!1;var t,e=this.dynamicProperties.length;for(t=0;t<e;t+=1)this.dynamicProperties[t].getValue(),this.dynamicProperties[t]._mdf&&(this._mdf=!0)},initDynamicPropertyContainer:function(t){this.container=t,this.dynamicProperties=[],this._mdf=!1,this._isAnimated=!1}};var getBlendMode=(Pa={0:"source-over",1:"multiply",2:"screen",3:"overlay",4:"darken",5:"lighten",6:"color-dodge",7:"color-burn",8:"hard-light",9:"soft-light",10:"difference",11:"exclusion",12:"hue",13:"saturation",14:"color",15:"luminosity"},function(t){return Pa[t]||""}),Pa,Matrix=function(){var s=Math.cos,a=Math.sin,n=Math.tan,i=Math.round;function t(){return this.props[0]=1,this.props[1]=0,this.props[2]=0,this.props[3]=0,this.props[4]=0,this.props[5]=1,this.props[6]=0,this.props[7]=0,this.props[8]=0,this.props[9]=0,this.props[10]=1,this.props[11]=0,this.props[12]=0,this.props[13]=0,this.props[14]=0,this.props[15]=1,this}function e(t){if(0===t)return this;var e=s(t),r=a(t);return this._t(e,-r,0,0,r,e,0,0,0,0,1,0,0,0,0,1)}function r(t){if(0===t)return this;var e=s(t),r=a(t);return this._t(1,0,0,0,0,e,-r,0,0,r,e,0,0,0,0,1)}function o(t){if(0===t)return this;var e=s(t),r=a(t);return this._t(e,0,r,0,0,1,0,0,-r,0,e,0,0,0,0,1)}function h(t){if(0===t)return this;var e=s(t),r=a(t);return this._t(e,-r,0,0,r,e,0,0,0,0,1,0,0,0,0,1)}function l(t,e){return this._t(1,e,t,1,0,0)}function p(t,e){return this.shear(n(t),n(e))}function m(t,e){var r=s(e),i=a(e);return this._t(r,i,0,0,-i,r,0,0,0,0,1,0,0,0,0,1)._t(1,0,0,0,n(t),1,0,0,0,0,1,0,0,0,0,1)._t(r,-i,0,0,i,r,0,0,0,0,1,0,0,0,0,1)}function f(t,e,r){return r||0===r||(r=1),1===t&&1===e&&1===r?this:this._t(t,0,0,0,0,e,0,0,0,0,r,0,0,0,0,1)}function c(t,e,r,i,s,a,n,o,h,l,p,m,f,c,d,u){return this.props[0]=t,this.props[1]=e,this.props[2]=r,this.props[3]=i,this.props[4]=s,this.props[5]=a,this.props[6]=n,this.props[7]=o,this.props[8]=h,this.props[9]=l,this.props[10]=p,this.props[11]=m,this.props[12]=f,this.props[13]=c,this.props[14]=d,this.props[15]=u,this}function d(t,e,r){return r=r||0,0!==t||0!==e||0!==r?this._t(1,0,0,0,0,1,0,0,0,0,1,0,t,e,r,1):this}function u(t,e,r,i,s,a,n,o,h,l,p,m,f,c,d,u){var y=this.props;if(1===t&&0===e&&0===r&&0===i&&0===s&&1===a&&0===n&&0===o&&0===h&&0===l&&1===p&&0===m)return y[12]=y[12]*t+y[15]*f,y[13]=y[13]*a+y[15]*c,y[14]=y[14]*p+y[15]*d,y[15]=y[15]*u,this._identityCalculated=!1,this;var g=y[0],v=y[1],b=y[2],E=y[3],x=y[4],P=y[5],S=y[6],_=y[7],A=y[8],C=y[9],T=y[10],k=y[11],M=y[12],D=y[13],w=y[14],F=y[15];return y[0]=g*t+v*s+b*h+E*f,y[1]=g*e+v*a+b*l+E*c,y[2]=g*r+v*n+b*p+E*d,y[3]=g*i+v*o+b*m+E*u,y[4]=x*t+P*s+S*h+_*f,y[5]=x*e+P*a+S*l+_*c,y[6]=x*r+P*n+S*p+_*d,y[7]=x*i+P*o+S*m+_*u,y[8]=A*t+C*s+T*h+k*f,y[9]=A*e+C*a+T*l+k*c,y[10]=A*r+C*n+T*p+k*d,y[11]=A*i+C*o+T*m+k*u,y[12]=M*t+D*s+w*h+F*f,y[13]=M*e+D*a+w*l+F*c,y[14]=M*r+D*n+w*p+F*d,y[15]=M*i+D*o+w*m+F*u,this._identityCalculated=!1,this}function y(){return this._identityCalculated||(this._identity=!(1!==this.props[0]||0!==this.props[1]||0!==this.props[2]||0!==this.props[3]||0!==this.props[4]||1!==this.props[5]||0!==this.props[6]||0!==this.props[7]||0!==this.props[8]||0!==this.props[9]||1!==this.props[10]||0!==this.props[11]||0!==this.props[12]||0!==this.props[13]||0!==this.props[14]||1!==this.props[15]),this._identityCalculated=!0),this._identity}function g(t){for(var e=0;e<16;){if(t.props[e]!==this.props[e])return!1;e+=1}return!0}function v(t){var e;for(e=0;e<16;e+=1)t.props[e]=this.props[e]}function b(t){var e;for(e=0;e<16;e+=1)this.props[e]=t[e]}function E(t,e,r){return{x:t*this.props[0]+e*this.props[4]+r*this.props[8]+this.props[12],y:t*this.props[1]+e*this.props[5]+r*this.props[9]+this.props[13],z:t*this.props[2]+e*this.props[6]+r*this.props[10]+this.props[14]}}function x(t,e,r){return t*this.props[0]+e*this.props[4]+r*this.props[8]+this.props[12]}function P(t,e,r){return t*this.props[1]+e*this.props[5]+r*this.props[9]+this.props[13]}function S(t,e,r){return t*this.props[2]+e*this.props[6]+r*this.props[10]+this.props[14]}function _(){var t=this.props[0]*this.props[5]-this.props[1]*this.props[4],e=this.props[5]/t,r=-this.props[1]/t,i=-this.props[4]/t,s=this.props[0]/t,a=(this.props[4]*this.props[13]-this.props[5]*this.props[12])/t,n=-(this.props[0]*this.props[13]-this.props[1]*this.props[12])/t,o=new Matrix;return o.props[0]=e,o.props[1]=r,o.props[4]=i,o.props[5]=s,o.props[12]=a,o.props[13]=n,o}function A(t){return this.getInverseMatrix().applyToPointArray(t[0],t[1],t[2]||0)}function C(t){var e,r=t.length,i=[];for(e=0;e<r;e+=1)i[e]=A(t[e]);return i}function T(t,e,r){var i=createTypedArray("float32",6);if(this.isIdentity())i[0]=t[0],i[1]=t[1],i[2]=e[0],i[3]=e[1],i[4]=r[0],i[5]=r[1];else{var s=this.props[0],a=this.props[1],n=this.props[4],o=this.props[5],h=this.props[12],l=this.props[13];i[0]=t[0]*s+t[1]*n+h,i[1]=t[0]*a+t[1]*o+l,i[2]=e[0]*s+e[1]*n+h,i[3]=e[0]*a+e[1]*o+l,i[4]=r[0]*s+r[1]*n+h,i[5]=r[0]*a+r[1]*o+l}return i}function k(t,e,r){return this.isIdentity()?[t,e,r]:[t*this.props[0]+e*this.props[4]+r*this.props[8]+this.props[12],t*this.props[1]+e*this.props[5]+r*this.props[9]+this.props[13],t*this.props[2]+e*this.props[6]+r*this.props[10]+this.props[14]]}function M(t,e){if(this.isIdentity())return t+","+e;var r=this.props;return Math.round(100*(t*r[0]+e*r[4]+r[12]))/100+","+Math.round(100*(t*r[1]+e*r[5]+r[13]))/100}function D(){for(var t=0,e=this.props,r="matrix3d(";t<16;)r+=i(1e4*e[t])/1e4,r+=15===t?")":",",t+=1;return r}function w(t){return t<1e-6&&0<t||-1e-6<t&&t<0?i(1e4*t)/1e4:t}function F(){var t=this.props;return"matrix("+w(t[0])+","+w(t[1])+","+w(t[4])+","+w(t[5])+","+w(t[12])+","+w(t[13])+")"}return function(){this.reset=t,this.rotate=e,this.rotateX=r,this.rotateY=o,this.rotateZ=h,this.skew=p,this.skewFromAxis=m,this.shear=l,this.scale=f,this.setTransform=c,this.translate=d,this.transform=u,this.applyToPoint=E,this.applyToX=x,this.applyToY=P,this.applyToZ=S,this.applyToPointArray=k,this.applyToTriplePoints=T,this.applyToPointStringified=M,this.toCSS=D,this.to2dCSS=F,this.clone=v,this.cloneFromProps=b,this.equals=g,this.inversePoints=C,this.inversePoint=A,this.getInverseMatrix=_,this._t=this.transform,this.isIdentity=y,this._identity=!0,this._identityCalculated=!1,this.props=createTypedArray("float32",16),this.reset()}}();!function(o,h){var l,p=this,m=256,f=6,c="random",d=h.pow(m,f),u=h.pow(2,52),y=2*u,g=m-1;function v(t){var e,r=t.length,n=this,i=0,s=n.i=n.j=0,a=n.S=[];for(r||(t=[r++]);i<m;)a[i]=i++;for(i=0;i<m;i++)a[i]=a[s=g&s+t[i%r]+(e=a[i])],a[s]=e;n.g=function(t){for(var e,r=0,i=n.i,s=n.j,a=n.S;t--;)e=a[i=g&i+1],r=r*m+a[g&(a[i]=a[s=g&s+e])+(a[s]=e)];return n.i=i,n.j=s,r}}function b(t,e){return e.i=t.i,e.j=t.j,e.S=t.S.slice(),e}function E(t,e){for(var r,i=t+"",s=0;s<i.length;)e[g&s]=g&(r^=19*e[g&s])+i.charCodeAt(s++);return x(e)}function x(t){return String.fromCharCode.apply(0,t)}h["seed"+c]=function(t,e,r){var i=[],s=E(function t(e,r){var i,s=[],a=typeof e;if(r&&"object"==a)for(i in e)try{s.push(t(e[i],r-1))}catch(t){}return s.length?s:"string"==a?e:e+"\0"}((e=!0===e?{entropy:!0}:e||{}).entropy?[t,x(o)]:null===t?function(){try{if(l)return x(l.randomBytes(m));var t=new Uint8Array(m);return(p.crypto||p.msCrypto).getRandomValues(t),x(t)}catch(t){var e=p.navigator,r=e&&e.plugins;return[+new Date,p,r,p.screen,x(o)]}}():t,3),i),a=new v(i),n=function(){for(var t=a.g(f),e=d,r=0;t<u;)t=(t+r)*m,e*=m,r=a.g(1);for(;y<=t;)t/=2,e/=2,r>>>=1;return(t+r)/e};return n.int32=function(){return 0|a.g(4)},n.quick=function(){return a.g(4)/4294967296},n.double=n,E(x(a.S),o),(e.pass||r||function(t,e,r,i){return i&&(i.S&&b(i,a),t.state=function(){return b(a,{})}),r?(h[c]=t,e):t})(n,s,"global"in e?e.global:this==h,e.state)},E(h.random(),o)}([],BMMath);var BezierFactory=function(){var t={getBezierEasing:function(t,e,r,i,s){var a=s||("bez_"+t+"_"+e+"_"+r+"_"+i).replace(/\./g,"p");if(o[a])return o[a];var n=new h([t,e,r,i]);return o[a]=n}},o={};var l=11,p=1/(l-1),e="function"==typeof Float32Array;function i(t,e){return 1-3*e+3*t}function s(t,e){return 3*e-6*t}function a(t){return 3*t}function m(t,e,r){return((i(e,r)*t+s(e,r))*t+a(e))*t}function f(t,e,r){return 3*i(e,r)*t*t+2*s(e,r)*t+a(e)}function h(t){this._p=t,this._mSampleValues=e?new Float32Array(l):new Array(l),this._precomputed=!1,this.get=this.get.bind(this)}return h.prototype={get:function(t){var e=this._p[0],r=this._p[1],i=this._p[2],s=this._p[3];return this._precomputed||this._precompute(),e===r&&i===s?t:0===t?0:1===t?1:m(this._getTForX(t),r,s)},_precompute:function(){var t=this._p[0],e=this._p[1],r=this._p[2],i=this._p[3];this._precomputed=!0,t===e&&r===i||this._calcSampleValues()},_calcSampleValues:function(){for(var t=this._p[0],e=this._p[2],r=0;r<l;++r)this._mSampleValues[r]=m(r*p,t,e)},_getTForX:function(t){for(var e=this._p[0],r=this._p[2],i=this._mSampleValues,s=0,a=1,n=l-1;a!==n&&i[a]<=t;++a)s+=p;var o=s+(t-i[--a])/(i[a+1]-i[a])*p,h=f(o,e,r);return.001<=h?function(t,e,r,i){for(var s=0;s<4;++s){var a=f(e,r,i);if(0===a)return e;e-=(m(e,r,i)-t)/a}return e}(t,o,e,r):0===h?o:function(t,e,r,i,s){for(var a,n,o=0;0<(a=m(n=e+(r-e)/2,i,s)-t)?r=n:e=n,1e-7<Math.abs(a)&&++o<10;);return n}(t,s,s+p,e,r)}},t}();function extendPrototype(t,e){var r,i,s=t.length;for(r=0;r<s;r+=1)for(var a in i=t[r].prototype)i.hasOwnProperty(a)&&(e.prototype[a]=i[a])}function getDescriptor(t,e){return Object.getOwnPropertyDescriptor(t,e)}function createProxyFunction(t){function e(){}return e.prototype=t,e}function bezFunction(){Math;function y(t,e,r,i,s,a){var n=t*i+e*s+r*a-s*i-a*t-r*e;return-.001<n&&n<.001}var p=function(t,e,r,i){var s,a,n,o,h,l,p=defaultCurveSegments,m=0,f=[],c=[],d=bezier_length_pool.newElement();for(n=r.length,s=0;s<p;s+=1){for(h=s/(p-1),a=l=0;a<n;a+=1)o=bm_pow(1-h,3)*t[a]+3*bm_pow(1-h,2)*h*r[a]+3*(1-h)*bm_pow(h,2)*i[a]+bm_pow(h,3)*e[a],f[a]=o,null!==c[a]&&(l+=bm_pow(f[a]-c[a],2)),c[a]=f[a];l&&(m+=l=bm_sqrt(l)),d.percents[s]=h,d.lengths[s]=m}return d.addedLength=m,d};function g(t){this.segmentLength=0,this.points=new Array(t)}function v(t,e){this.partialLength=t,this.point=e}var b,t=(b={},function(t,e,r,i){var s=(t[0]+"_"+t[1]+"_"+e[0]+"_"+e[1]+"_"+r[0]+"_"+r[1]+"_"+i[0]+"_"+i[1]).replace(/\./g,"p");if(!b[s]){var a,n,o,h,l,p,m,f=defaultCurveSegments,c=0,d=null;2===t.length&&(t[0]!=e[0]||t[1]!=e[1])&&y(t[0],t[1],e[0],e[1],t[0]+r[0],t[1]+r[1])&&y(t[0],t[1],e[0],e[1],e[0]+i[0],e[1]+i[1])&&(f=2);var u=new g(f);for(o=r.length,a=0;a<f;a+=1){for(m=createSizedArray(o),l=a/(f-1),n=p=0;n<o;n+=1)h=bm_pow(1-l,3)*t[n]+3*bm_pow(1-l,2)*l*(t[n]+r[n])+3*(1-l)*bm_pow(l,2)*(e[n]+i[n])+bm_pow(l,3)*e[n],m[n]=h,null!==d&&(p+=bm_pow(m[n]-d[n],2));c+=p=bm_sqrt(p),u.points[a]=new v(p,m),d=m}u.segmentLength=c,b[s]=u}return b[s]});function M(t,e){var r=e.percents,i=e.lengths,s=r.length,a=bm_floor((s-1)*t),n=t*e.addedLength,o=0;if(a===s-1||0===a||n===i[a])return r[a];for(var h=i[a]>n?-1:1,l=!0;l;)if(i[a]<=n&&i[a+1]>n?(o=(n-i[a])/(i[a+1]-i[a]),l=!1):a+=h,a<0||s-1<=a){if(a===s-1)return r[a];l=!1}return r[a]+(r[a+1]-r[a])*o}var D=createTypedArray("float32",8);return{getSegmentsLength:function(t){var e,r=segments_length_pool.newElement(),i=t.c,s=t.v,a=t.o,n=t.i,o=t._length,h=r.lengths,l=0;for(e=0;e<o-1;e+=1)h[e]=p(s[e],s[e+1],a[e],n[e+1]),l+=h[e].addedLength;return i&&o&&(h[e]=p(s[e],s[0],a[e],n[0]),l+=h[e].addedLength),r.totalLength=l,r},getNewSegment:function(t,e,r,i,s,a,n){var o,h=M(s=s<0?0:1<s?1:s,n),l=M(a=1<a?1:a,n),p=t.length,m=1-h,f=1-l,c=m*m*m,d=h*m*m*3,u=h*h*m*3,y=h*h*h,g=m*m*f,v=h*m*f+m*h*f+m*m*l,b=h*h*f+m*h*l+h*m*l,E=h*h*l,x=m*f*f,P=h*f*f+m*l*f+m*f*l,S=h*l*f+m*l*l+h*f*l,_=h*l*l,A=f*f*f,C=l*f*f+f*l*f+f*f*l,T=l*l*f+f*l*l+l*f*l,k=l*l*l;for(o=0;o<p;o+=1)D[4*o]=Math.round(1e3*(c*t[o]+d*r[o]+u*i[o]+y*e[o]))/1e3,D[4*o+1]=Math.round(1e3*(g*t[o]+v*r[o]+b*i[o]+E*e[o]))/1e3,D[4*o+2]=Math.round(1e3*(x*t[o]+P*r[o]+S*i[o]+_*e[o]))/1e3,D[4*o+3]=Math.round(1e3*(A*t[o]+C*r[o]+T*i[o]+k*e[o]))/1e3;return D},getPointInSegment:function(t,e,r,i,s,a){var n=M(s,a),o=1-n;return[Math.round(1e3*(o*o*o*t[0]+(n*o*o+o*n*o+o*o*n)*r[0]+(n*n*o+o*n*n+n*o*n)*i[0]+n*n*n*e[0]))/1e3,Math.round(1e3*(o*o*o*t[1]+(n*o*o+o*n*o+o*o*n)*r[1]+(n*n*o+o*n*n+n*o*n)*i[1]+n*n*n*e[1]))/1e3]},buildBezierData:t,pointOnLine2D:y,pointOnLine3D:function(t,e,r,i,s,a,n,o,h){if(0===r&&0===a&&0===h)return y(t,e,i,s,n,o);var l,p=Math.sqrt(Math.pow(i-t,2)+Math.pow(s-e,2)+Math.pow(a-r,2)),m=Math.sqrt(Math.pow(n-t,2)+Math.pow(o-e,2)+Math.pow(h-r,2)),f=Math.sqrt(Math.pow(n-i,2)+Math.pow(o-s,2)+Math.pow(h-a,2));return-1e-4<(l=m<p?f<p?p-m-f:f-m-p:m<f?f-m-p:m-p-f)&&l<1e-4}}}!function(){for(var a=0,t=["ms","moz","webkit","o"],e=0;e<t.length&&!window.requestAnimationFrame;++e)window.requestAnimationFrame=window[t[e]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[t[e]+"CancelAnimationFrame"]||window[t[e]+"CancelRequestAnimationFrame"];window.requestAnimationFrame||(window.requestAnimationFrame=function(t,e){var r=(new Date).getTime(),i=Math.max(0,16-(r-a)),s=setTimeout(function(){t(r+i)},i);return a=r+i,s}),window.cancelAnimationFrame||(window.cancelAnimationFrame=function(t){clearTimeout(t)})}();var bez=bezFunction();function dataFunctionManager(){function m(t,e,r){var i,s,a,n,o,h,l=t.length;for(s=0;s<l;s+=1)if("ks"in(i=t[s])&&!i.completed){if(i.completed=!0,i.tt&&(t[s-1].td=i.tt),[],-1,i.hasMask){var p=i.masksProperties;for(n=p.length,a=0;a<n;a+=1)if(p[a].pt.k.i)d(p[a].pt.k);else for(h=p[a].pt.k.length,o=0;o<h;o+=1)p[a].pt.k[o].s&&d(p[a].pt.k[o].s[0]),p[a].pt.k[o].e&&d(p[a].pt.k[o].e[0])}0===i.ty?(i.layers=f(i.refId,e),m(i.layers,e,r)):4===i.ty?c(i.shapes):5==i.ty&&u(i,r)}}function f(t,e){for(var r=0,i=e.length;r<i;){if(e[r].id===t)return e[r].layers.__used?JSON.parse(JSON.stringify(e[r].layers)):(e[r].layers.__used=!0,e[r].layers);r+=1}}function c(t){var e,r,i;for(e=t.length-1;0<=e;e-=1)if("sh"==t[e].ty){if(t[e].ks.k.i)d(t[e].ks.k);else for(i=t[e].ks.k.length,r=0;r<i;r+=1)t[e].ks.k[r].s&&d(t[e].ks.k[r].s[0]),t[e].ks.k[r].e&&d(t[e].ks.k[r].e[0]);!0}else"gr"==t[e].ty&&c(t[e].it)}function d(t){var e,r=t.i.length;for(e=0;e<r;e+=1)t.i[e][0]+=t.v[e][0],t.i[e][1]+=t.v[e][1],t.o[e][0]+=t.v[e][0],t.o[e][1]+=t.v[e][1]}function o(t,e){var r=e?e.split("."):[100,100,100];return t[0]>r[0]||!(r[0]>t[0])&&(t[1]>r[1]||!(r[1]>t[1])&&(t[2]>r[2]||!(r[2]>t[2])&&void 0))}var h,r=function(){var i=[4,4,14];function s(t){var e,r,i,s=t.length;for(e=0;e<s;e+=1)5===t[e].ty&&(r=t[e],void 0,i=r.t.d,r.t.d={k:[{s:i,t:0}]})}return function(t){if(o(i,t.v)&&(s(t.layers),t.assets)){var e,r=t.assets.length;for(e=0;e<r;e+=1)t.assets[e].layers&&s(t.assets[e].layers)}}}(),i=(h=[4,7,99],function(t){if(t.chars&&!o(h,t.v)){var e,r,i,s,a,n=t.chars.length;for(e=0;e<n;e+=1)if(t.chars[e].data&&t.chars[e].data.shapes)for(i=(a=t.chars[e].data.shapes[0].it).length,r=0;r<i;r+=1)(s=a[r].ks.k).__converted||(d(a[r].ks.k),s.__converted=!0)}}),s=function(){var i=[4,1,9];function a(t){var e,r,i,s=t.length;for(e=0;e<s;e+=1)if("gr"===t[e].ty)a(t[e].it);else if("fl"===t[e].ty||"st"===t[e].ty)if(t[e].c.k&&t[e].c.k[0].i)for(i=t[e].c.k.length,r=0;r<i;r+=1)t[e].c.k[r].s&&(t[e].c.k[r].s[0]/=255,t[e].c.k[r].s[1]/=255,t[e].c.k[r].s[2]/=255,t[e].c.k[r].s[3]/=255),t[e].c.k[r].e&&(t[e].c.k[r].e[0]/=255,t[e].c.k[r].e[1]/=255,t[e].c.k[r].e[2]/=255,t[e].c.k[r].e[3]/=255);else t[e].c.k[0]/=255,t[e].c.k[1]/=255,t[e].c.k[2]/=255,t[e].c.k[3]/=255}function s(t){var e,r=t.length;for(e=0;e<r;e+=1)4===t[e].ty&&a(t[e].shapes)}return function(t){if(o(i,t.v)&&(s(t.layers),t.assets)){var e,r=t.assets.length;for(e=0;e<r;e+=1)t.assets[e].layers&&s(t.assets[e].layers)}}}(),a=function(){var i=[4,4,18];function l(t){var e,r,i;for(e=t.length-1;0<=e;e-=1)if("sh"==t[e].ty){if(t[e].ks.k.i)t[e].ks.k.c=t[e].closed;else for(i=t[e].ks.k.length,r=0;r<i;r+=1)t[e].ks.k[r].s&&(t[e].ks.k[r].s[0].c=t[e].closed),t[e].ks.k[r].e&&(t[e].ks.k[r].e[0].c=t[e].closed);!0}else"gr"==t[e].ty&&l(t[e].it)}function s(t){var e,r,i,s,a,n,o=t.length;for(r=0;r<o;r+=1){if((e=t[r]).hasMask){var h=e.masksProperties;for(s=h.length,i=0;i<s;i+=1)if(h[i].pt.k.i)h[i].pt.k.c=h[i].cl;else for(n=h[i].pt.k.length,a=0;a<n;a+=1)h[i].pt.k[a].s&&(h[i].pt.k[a].s[0].c=h[i].cl),h[i].pt.k[a].e&&(h[i].pt.k[a].e[0].c=h[i].cl)}4===e.ty&&l(e.shapes)}}return function(t){if(o(i,t.v)&&(s(t.layers),t.assets)){var e,r=t.assets.length;for(e=0;e<r;e+=1)t.assets[e].layers&&s(t.assets[e].layers)}}}();function u(t,e){0!==t.t.a.length||"m"in t.t.p||(t.singleShape=!0)}var t={completeData:function(t,e){t.__complete||(s(t),r(t),i(t),a(t),m(t.layers,t.assets,e),t.__complete=!0)}};return t.checkColors=s,t.checkChars=i,t.checkShapes=a,t.completeLayers=m,t}var dataManager=dataFunctionManager(),FontManager=function(){var a={w:0,size:0,shapes:[]},t=[];function u(t,e){var r=createTag("span");r.style.fontFamily=e;var i=createTag("span");i.innerHTML="giItT1WQy@!-/#",r.style.position="absolute",r.style.left="-10000px",r.style.top="-10000px",r.style.fontSize="300px",r.style.fontVariant="normal",r.style.fontStyle="normal",r.style.fontWeight="normal",r.style.letterSpacing="0",r.appendChild(i),document.body.appendChild(r);var s=i.offsetWidth;return i.style.fontFamily=t+", "+e,{node:i,w:s,parent:r}}t=t.concat([2304,2305,2306,2307,2362,2363,2364,2364,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2387,2388,2389,2390,2391,2402,2403]);var e=function(){this.fonts=[],this.chars=null,this.typekitLoaded=0,this.isLoaded=!1,this.initTime=Date.now()};return e.getCombinedCharacterCodes=function(){return t},e.prototype.addChars=function(t){if(t){this.chars||(this.chars=[]);var e,r,i,s=t.length,a=this.chars.length;for(e=0;e<s;e+=1){for(r=0,i=!1;r<a;)this.chars[r].style===t[e].style&&this.chars[r].fFamily===t[e].fFamily&&this.chars[r].ch===t[e].ch&&(i=!0),r+=1;i||(this.chars.push(t[e]),a+=1)}}},e.prototype.addFonts=function(t,e){if(t){if(this.chars)return this.isLoaded=!0,void(this.fonts=t.list);var r,i,s,a,n=t.list,o=n.length,h=o;for(r=0;r<o;r+=1){var l,p,m=!0;if(n[r].loaded=!1,n[r].monoCase=u(n[r].fFamily,"monospace"),n[r].sansCase=u(n[r].fFamily,"sans-serif"),n[r].fPath){if("p"===n[r].fOrigin||3===n[r].origin){if(0<(l=document.querySelectorAll('style[f-forigin="p"][f-family="'+n[r].fFamily+'"], style[f-origin="3"][f-family="'+n[r].fFamily+'"]')).length&&(m=!1),m){var f=createTag("style");f.setAttribute("f-forigin",n[r].fOrigin),f.setAttribute("f-origin",n[r].origin),f.setAttribute("f-family",n[r].fFamily),f.type="text/css",f.innerHTML="@font-face {font-family: "+n[r].fFamily+"; font-style: normal; src: url('"+n[r].fPath+"');}",e.appendChild(f)}}else if("g"===n[r].fOrigin||1===n[r].origin){for(l=document.querySelectorAll('link[f-forigin="g"], link[f-origin="1"]'),p=0;p<l.length;p++)-1!==l[p].href.indexOf(n[r].fPath)&&(m=!1);if(m){var c=createTag("link");c.setAttribute("f-forigin",n[r].fOrigin),c.setAttribute("f-origin",n[r].origin),c.type="text/css",c.rel="stylesheet",c.href=n[r].fPath,document.body.appendChild(c)}}else if("t"===n[r].fOrigin||2===n[r].origin){for(l=document.querySelectorAll('script[f-forigin="t"], script[f-origin="2"]'),p=0;p<l.length;p++)n[r].fPath===l[p].src&&(m=!1);if(m){var d=createTag("link");d.setAttribute("f-forigin",n[r].fOrigin),d.setAttribute("f-origin",n[r].origin),d.setAttribute("rel","stylesheet"),d.setAttribute("href",n[r].fPath),e.appendChild(d)}}}else n[r].loaded=!0,h-=1;n[r].helper=(i=e,s=n[r],a=void 0,(a=createNS("text")).style.fontSize="100px",a.setAttribute("font-family",s.fFamily),a.setAttribute("font-style",s.fStyle),a.setAttribute("font-weight",s.fWeight),a.textContent="1",s.fClass?(a.style.fontFamily="inherit",a.setAttribute("class",s.fClass)):a.style.fontFamily=s.fFamily,i.appendChild(a),createTag("canvas").getContext("2d").font=s.fWeight+" "+s.fStyle+" 100px "+s.fFamily,a),n[r].cache={},this.fonts.push(n[r])}0===h?this.isLoaded=!0:setTimeout(this.checkLoadedFonts.bind(this),100)}else this.isLoaded=!0},e.prototype.getCharData=function(t,e,r){for(var i=0,s=this.chars.length;i<s;){if(this.chars[i].ch===t&&this.chars[i].style===e&&this.chars[i].fFamily===r)return this.chars[i];i+=1}return("string"==typeof t&&13!==t.charCodeAt(0)||!t)&&console&&console.warn&&console.warn("Missing character from exported characters list: ",t,e,r),a},e.prototype.getFontByName=function(t){for(var e=0,r=this.fonts.length;e<r;){if(this.fonts[e].fName===t)return this.fonts[e];e+=1}return this.fonts[0]},e.prototype.measureText=function(t,e,r){var i=this.getFontByName(e),s=t.charCodeAt(0);if(!i.cache[s+1]){var a=i.helper;if(" "===t){a.textContent="|"+t+"|";var n=a.getComputedTextLength();a.textContent="||";var o=a.getComputedTextLength();i.cache[s+1]=(n-o)/100}else a.textContent=t,i.cache[s+1]=a.getComputedTextLength()/100}return i.cache[s+1]*r},e.prototype.checkLoadedFonts=function(){var t,e,r,i=this.fonts.length,s=i;for(t=0;t<i;t+=1)this.fonts[t].loaded?s-=1:"n"===this.fonts[t].fOrigin||0===this.fonts[t].origin?this.fonts[t].loaded=!0:(e=this.fonts[t].monoCase.node,r=this.fonts[t].monoCase.w,e.offsetWidth!==r?(s-=1,this.fonts[t].loaded=!0):(e=this.fonts[t].sansCase.node,r=this.fonts[t].sansCase.w,e.offsetWidth!==r&&(s-=1,this.fonts[t].loaded=!0)),this.fonts[t].loaded&&(this.fonts[t].sansCase.parent.parentNode.removeChild(this.fonts[t].sansCase.parent),this.fonts[t].monoCase.parent.parentNode.removeChild(this.fonts[t].monoCase.parent)));0!==s&&Date.now()-this.initTime<5e3?setTimeout(this.checkLoadedFonts.bind(this),20):setTimeout(function(){this.isLoaded=!0}.bind(this),0)},e.prototype.loaded=function(){return this.isLoaded},e}(),PropertyFactory=function(){var m=initialDefaultFrame,s=Math.abs;function f(t,e){var r,i=this.offsetTime;"multidimensional"===this.propType&&(r=createTypedArray("float32",this.pv.length));for(var s,a,n,o,h,l,p,m,f=e.lastIndex,c=f,d=this.keyframes.length-1,u=!0;u;){if(s=this.keyframes[c],a=this.keyframes[c+1],c===d-1&&t>=a.t-i){s.h&&(s=a),f=0;break}if(a.t-i>t){f=c;break}c<d-1?c+=1:(f=0,u=!1)}var y,g,v,b,E,x,P,S,_,A,C=a.t-i,T=s.t-i;if(s.to){s.bezierData||(s.bezierData=bez.buildBezierData(s.s,a.s||s.e,s.to,s.ti));var k=s.bezierData;if(C<=t||t<T){var M=C<=t?k.points.length-1:0;for(o=k.points[M].point.length,n=0;n<o;n+=1)r[n]=k.points[M].point[n]}else{s.__fnct?m=s.__fnct:(m=BezierFactory.getBezierEasing(s.o.x,s.o.y,s.i.x,s.i.y,s.n).get,s.__fnct=m),h=m((t-T)/(C-T));var D,w=k.segmentLength*h,F=e.lastFrame<t&&e._lastKeyframeIndex===c?e._lastAddedLength:0;for(p=e.lastFrame<t&&e._lastKeyframeIndex===c?e._lastPoint:0,u=!0,l=k.points.length;u;){if(F+=k.points[p].partialLength,0===w||0===h||p===k.points.length-1){for(o=k.points[p].point.length,n=0;n<o;n+=1)r[n]=k.points[p].point[n];break}if(F<=w&&w<F+k.points[p+1].partialLength){for(D=(w-F)/k.points[p+1].partialLength,o=k.points[p].point.length,n=0;n<o;n+=1)r[n]=k.points[p].point[n]+(k.points[p+1].point[n]-k.points[p].point[n])*D;break}p<l-1?p+=1:u=!1}e._lastPoint=p,e._lastAddedLength=F-k.points[p].partialLength,e._lastKeyframeIndex=c}}else{var I,V,R,B,L;if(d=s.s.length,y=a.s||s.e,this.sh&&1!==s.h)if(C<=t)r[0]=y[0],r[1]=y[1],r[2]=y[2];else if(t<=T)r[0]=s.s[0],r[1]=s.s[1],r[2]=s.s[2];else{var G=N(s.s),z=N(y);g=r,v=function(t,e,r){var i,s,a,n,o,h=[],l=t[0],p=t[1],m=t[2],f=t[3],c=e[0],d=e[1],u=e[2],y=e[3];(s=l*c+p*d+m*u+f*y)<0&&(s=-s,c=-c,d=-d,u=-u,y=-y);o=1e-6<1-s?(i=Math.acos(s),a=Math.sin(i),n=Math.sin((1-r)*i)/a,Math.sin(r*i)/a):(n=1-r,r);return h[0]=n*l+o*c,h[1]=n*p+o*d,h[2]=n*m+o*u,h[3]=n*f+o*y,h}(G,z,(t-T)/(C-T)),b=v[0],E=v[1],x=v[2],P=v[3],S=Math.atan2(2*E*P-2*b*x,1-2*E*E-2*x*x),_=Math.asin(2*b*E+2*x*P),A=Math.atan2(2*b*P-2*E*x,1-2*b*b-2*x*x),g[0]=S/degToRads,g[1]=_/degToRads,g[2]=A/degToRads}else for(c=0;c<d;c+=1)1!==s.h&&(h=C<=t?1:t<T?0:(s.o.x.constructor===Array?(s.__fnct||(s.__fnct=[]),s.__fnct[c]?m=s.__fnct[c]:(I=void 0===s.o.x[c]?s.o.x[0]:s.o.x[c],V=void 0===s.o.y[c]?s.o.y[0]:s.o.y[c],R=void 0===s.i.x[c]?s.i.x[0]:s.i.x[c],B=void 0===s.i.y[c]?s.i.y[0]:s.i.y[c],m=BezierFactory.getBezierEasing(I,V,R,B).get,s.__fnct[c]=m)):s.__fnct?m=s.__fnct:(I=s.o.x,V=s.o.y,R=s.i.x,B=s.i.y,m=BezierFactory.getBezierEasing(I,V,R,B).get,s.__fnct=m),m((t-T)/(C-T)))),y=a.s||s.e,L=1===s.h?s.s[c]:s.s[c]+(y[c]-s.s[c])*h,"multidimensional"===this.propType?r[c]=L:r=L}return e.lastIndex=f,r}function N(t){var e=t[0]*degToRads,r=t[1]*degToRads,i=t[2]*degToRads,s=Math.cos(e/2),a=Math.cos(r/2),n=Math.cos(i/2),o=Math.sin(e/2),h=Math.sin(r/2),l=Math.sin(i/2);return[o*h*n+s*a*l,o*a*n+s*h*l,s*h*n-o*a*l,s*a*n-o*h*l]}function c(){var t=this.comp.renderedFrame-this.offsetTime,e=this.keyframes[0].t-this.offsetTime,r=this.keyframes[this.keyframes.length-1].t-this.offsetTime;if(!(t===this._caching.lastFrame||this._caching.lastFrame!==m&&(this._caching.lastFrame>=r&&r<=t||this._caching.lastFrame<e&&t<e))){this._caching.lastFrame>=t&&(this._caching._lastKeyframeIndex=-1,this._caching.lastIndex=0);var i=this.interpolateValue(t,this._caching);this.pv=i}return this._caching.lastFrame=t,this.pv}function d(t){var e;if("unidimensional"===this.propType)e=t*this.mult,1e-5<s(this.v-e)&&(this.v=e,this._mdf=!0);else for(var r=0,i=this.v.length;r<i;)e=t[r]*this.mult,1e-5<s(this.v[r]-e)&&(this.v[r]=e,this._mdf=!0),r+=1}function u(){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length)if(this.lock)this.setVValue(this.pv);else{this.lock=!0,this._mdf=this._isFirstFrame;var t,e=this.effectsSequence.length,r=this.kf?this.pv:this.data.k;for(t=0;t<e;t+=1)r=this.effectsSequence[t](r);this.setVValue(r),this._isFirstFrame=!1,this.lock=!1,this.frameId=this.elem.globalData.frameId}}function y(t){this.effectsSequence.push(t),this.container.addDynamicProperty(this)}function n(t,e,r,i){this.propType="unidimensional",this.mult=r||1,this.data=e,this.v=r?e.k*r:e.k,this.pv=e.k,this._mdf=!1,this.elem=t,this.container=i,this.comp=t.comp,this.k=!1,this.kf=!1,this.vel=0,this.effectsSequence=[],this._isFirstFrame=!0,this.getValue=u,this.setVValue=d,this.addEffect=y}function o(t,e,r,i){this.propType="multidimensional",this.mult=r||1,this.data=e,this._mdf=!1,this.elem=t,this.container=i,this.comp=t.comp,this.k=!1,this.kf=!1,this.frameId=-1;var s,a=e.k.length;this.v=createTypedArray("float32",a),this.pv=createTypedArray("float32",a);createTypedArray("float32",a);for(this.vel=createTypedArray("float32",a),s=0;s<a;s+=1)this.v[s]=e.k[s]*this.mult,this.pv[s]=e.k[s];this._isFirstFrame=!0,this.effectsSequence=[],this.getValue=u,this.setVValue=d,this.addEffect=y}function h(t,e,r,i){this.propType="unidimensional",this.keyframes=e.k,this.offsetTime=t.data.st,this.frameId=-1,this._caching={lastFrame:m,lastIndex:0,value:0,_lastKeyframeIndex:-1},this.k=!0,this.kf=!0,this.data=e,this.mult=r||1,this.elem=t,this.container=i,this.comp=t.comp,this.v=m,this.pv=m,this._isFirstFrame=!0,this.getValue=u,this.setVValue=d,this.interpolateValue=f,this.effectsSequence=[c.bind(this)],this.addEffect=y}function l(t,e,r,i){this.propType="multidimensional";var s,a,n,o,h,l=e.k.length;for(s=0;s<l-1;s+=1)e.k[s].to&&e.k[s].s&&e.k[s+1]&&e.k[s+1].s&&(a=e.k[s].s,n=e.k[s+1].s,o=e.k[s].to,h=e.k[s].ti,(2===a.length&&(a[0]!==n[0]||a[1]!==n[1])&&bez.pointOnLine2D(a[0],a[1],n[0],n[1],a[0]+o[0],a[1]+o[1])&&bez.pointOnLine2D(a[0],a[1],n[0],n[1],n[0]+h[0],n[1]+h[1])||3===a.length&&(a[0]!==n[0]||a[1]!==n[1]||a[2]!==n[2])&&bez.pointOnLine3D(a[0],a[1],a[2],n[0],n[1],n[2],a[0]+o[0],a[1]+o[1],a[2]+o[2])&&bez.pointOnLine3D(a[0],a[1],a[2],n[0],n[1],n[2],n[0]+h[0],n[1]+h[1],n[2]+h[2]))&&(e.k[s].to=null,e.k[s].ti=null),a[0]===n[0]&&a[1]===n[1]&&0===o[0]&&0===o[1]&&0===h[0]&&0===h[1]&&(2===a.length||a[2]===n[2]&&0===o[2]&&0===h[2])&&(e.k[s].to=null,e.k[s].ti=null));this.effectsSequence=[c.bind(this)],this.keyframes=e.k,this.offsetTime=t.data.st,this.k=!0,this.kf=!0,this._isFirstFrame=!0,this.mult=r||1,this.elem=t,this.container=i,this.comp=t.comp,this.getValue=u,this.setVValue=d,this.interpolateValue=f,this.frameId=-1;var p=e.k[0].s.length;for(this.v=createTypedArray("float32",p),this.pv=createTypedArray("float32",p),s=0;s<p;s+=1)this.v[s]=m,this.pv[s]=m;this._caching={lastFrame:m,lastIndex:0,value:createTypedArray("float32",p)},this.addEffect=y}return{getProp:function(t,e,r,i,s){var a;if(e.k.length)if("number"==typeof e.k[0])a=new o(t,e,i,s);else switch(r){case 0:a=new h(t,e,i,s);break;case 1:a=new l(t,e,i,s)}else a=new n(t,e,i,s);return a.effectsSequence.length&&s.addDynamicProperty(a),a}}}(),TransformPropertyFactory=function(){var n=[0,0];function i(t,e,r){if(this.elem=t,this.frameId=-1,this.propType="transform",this.data=e,this.v=new Matrix,this.pre=new Matrix,this.appliedTransformations=0,this.initDynamicPropertyContainer(r||t),e.p&&e.p.s?(this.px=PropertyFactory.getProp(t,e.p.x,0,0,this),this.py=PropertyFactory.getProp(t,e.p.y,0,0,this),e.p.z&&(this.pz=PropertyFactory.getProp(t,e.p.z,0,0,this))):this.p=PropertyFactory.getProp(t,e.p||{k:[0,0,0]},1,0,this),e.rx){if(this.rx=PropertyFactory.getProp(t,e.rx,0,degToRads,this),this.ry=PropertyFactory.getProp(t,e.ry,0,degToRads,this),this.rz=PropertyFactory.getProp(t,e.rz,0,degToRads,this),e.or.k[0].ti){var i,s=e.or.k.length;for(i=0;i<s;i+=1)e.or.k[i].to=e.or.k[i].ti=null}this.or=PropertyFactory.getProp(t,e.or,1,degToRads,this),this.or.sh=!0}else this.r=PropertyFactory.getProp(t,e.r||{k:0},0,degToRads,this);e.sk&&(this.sk=PropertyFactory.getProp(t,e.sk,0,degToRads,this),this.sa=PropertyFactory.getProp(t,e.sa,0,degToRads,this)),this.a=PropertyFactory.getProp(t,e.a||{k:[0,0,0]},1,0,this),this.s=PropertyFactory.getProp(t,e.s||{k:[100,100,100]},1,.01,this),e.o?this.o=PropertyFactory.getProp(t,e.o,0,.01,t):this.o={_mdf:!1,v:1},this._isDirty=!0,this.dynamicProperties.length||this.getValue(!0)}return i.prototype={applyToMatrix:function(t){var e=this._mdf;this.iterateDynamicProperties(),this._mdf=this._mdf||e,this.a&&t.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.s&&t.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.sk&&t.skewFromAxis(-this.sk.v,this.sa.v),this.r?t.rotate(-this.r.v):t.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.data.p.s?this.data.p.z?t.translate(this.px.v,this.py.v,-this.pz.v):t.translate(this.px.v,this.py.v,0):t.translate(this.p.v[0],this.p.v[1],-this.p.v[2])},getValue:function(t){if(this.elem.globalData.frameId!==this.frameId){if(this._isDirty&&(this.precalculateMatrix(),this._isDirty=!1),this.iterateDynamicProperties(),this._mdf||t){if(this.v.cloneFromProps(this.pre.props),this.appliedTransformations<1&&this.v.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations<2&&this.v.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.sk&&this.appliedTransformations<3&&this.v.skewFromAxis(-this.sk.v,this.sa.v),this.r&&this.appliedTransformations<4?this.v.rotate(-this.r.v):!this.r&&this.appliedTransformations<4&&this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.autoOriented){var e,r,i=this.elem.globalData.frameRate;if(this.p&&this.p.keyframes&&this.p.getValueAtTime)r=this.p._caching.lastFrame+this.p.offsetTime<=this.p.keyframes[0].t?(e=this.p.getValueAtTime((this.p.keyframes[0].t+.01)/i,0),this.p.getValueAtTime(this.p.keyframes[0].t/i,0)):this.p._caching.lastFrame+this.p.offsetTime>=this.p.keyframes[this.p.keyframes.length-1].t?(e=this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length-1].t/i,0),this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length-1].t-.05)/i,0)):(e=this.p.pv,this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime-.01)/i,this.p.offsetTime));else if(this.px&&this.px.keyframes&&this.py.keyframes&&this.px.getValueAtTime&&this.py.getValueAtTime){e=[],r=[];var s=this.px,a=this.py;s._caching.lastFrame+s.offsetTime<=s.keyframes[0].t?(e[0]=s.getValueAtTime((s.keyframes[0].t+.01)/i,0),e[1]=a.getValueAtTime((a.keyframes[0].t+.01)/i,0),r[0]=s.getValueAtTime(s.keyframes[0].t/i,0),r[1]=a.getValueAtTime(a.keyframes[0].t/i,0)):s._caching.lastFrame+s.offsetTime>=s.keyframes[s.keyframes.length-1].t?(e[0]=s.getValueAtTime(s.keyframes[s.keyframes.length-1].t/i,0),e[1]=a.getValueAtTime(a.keyframes[a.keyframes.length-1].t/i,0),r[0]=s.getValueAtTime((s.keyframes[s.keyframes.length-1].t-.01)/i,0),r[1]=a.getValueAtTime((a.keyframes[a.keyframes.length-1].t-.01)/i,0)):(e=[s.pv,a.pv],r[0]=s.getValueAtTime((s._caching.lastFrame+s.offsetTime-.01)/i,s.offsetTime),r[1]=a.getValueAtTime((a._caching.lastFrame+a.offsetTime-.01)/i,a.offsetTime))}else e=r=n;this.v.rotate(-Math.atan2(e[1]-r[1],e[0]-r[0]))}this.data.p&&this.data.p.s?this.data.p.z?this.v.translate(this.px.v,this.py.v,-this.pz.v):this.v.translate(this.px.v,this.py.v,0):this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2])}this.frameId=this.elem.globalData.frameId}},precalculateMatrix:function(){if(!this.a.k&&(this.pre.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations=1,!this.s.effectsSequence.length)){if(this.pre.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.appliedTransformations=2,this.sk){if(this.sk.effectsSequence.length||this.sa.effectsSequence.length)return;this.pre.skewFromAxis(-this.sk.v,this.sa.v),this.appliedTransformations=3}if(this.r){if(this.r.effectsSequence.length)return;this.pre.rotate(-this.r.v),this.appliedTransformations=4}else this.rz.effectsSequence.length||this.ry.effectsSequence.length||this.rx.effectsSequence.length||this.or.effectsSequence.length||(this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.appliedTransformations=4)}},autoOrient:function(){}},extendPrototype([DynamicPropertyContainer],i),i.prototype.addDynamicProperty=function(t){this._addDynamicProperty(t),this.elem.addDynamicProperty(t),this._isDirty=!0},i.prototype._addDynamicProperty=DynamicPropertyContainer.prototype.addDynamicProperty,{getTransformProperty:function(t,e,r){return new i(t,e,r)}}}();function ShapePath(){this.c=!1,this._length=0,this._maxLength=8,this.v=createSizedArray(this._maxLength),this.o=createSizedArray(this._maxLength),this.i=createSizedArray(this._maxLength)}ShapePath.prototype.setPathData=function(t,e){this.c=t,this.setLength(e);for(var r=0;r<e;)this.v[r]=point_pool.newElement(),this.o[r]=point_pool.newElement(),this.i[r]=point_pool.newElement(),r+=1},ShapePath.prototype.setLength=function(t){for(;this._maxLength<t;)this.doubleArrayLength();this._length=t},ShapePath.prototype.doubleArrayLength=function(){this.v=this.v.concat(createSizedArray(this._maxLength)),this.i=this.i.concat(createSizedArray(this._maxLength)),this.o=this.o.concat(createSizedArray(this._maxLength)),this._maxLength*=2},ShapePath.prototype.setXYAt=function(t,e,r,i,s){var a;switch(this._length=Math.max(this._length,i+1),this._length>=this._maxLength&&this.doubleArrayLength(),r){case"v":a=this.v;break;case"i":a=this.i;break;case"o":a=this.o}(!a[i]||a[i]&&!s)&&(a[i]=point_pool.newElement()),a[i][0]=t,a[i][1]=e},ShapePath.prototype.setTripleAt=function(t,e,r,i,s,a,n,o){this.setXYAt(t,e,"v",n,o),this.setXYAt(r,i,"o",n,o),this.setXYAt(s,a,"i",n,o)},ShapePath.prototype.reverse=function(){var t=new ShapePath;t.setPathData(this.c,this._length);var e=this.v,r=this.o,i=this.i,s=0;this.c&&(t.setTripleAt(e[0][0],e[0][1],i[0][0],i[0][1],r[0][0],r[0][1],0,!1),s=1);var a,n=this._length-1,o=this._length;for(a=s;a<o;a+=1)t.setTripleAt(e[n][0],e[n][1],i[n][0],i[n][1],r[n][0],r[n][1],a,!1),n-=1;return t};var ShapePropertyFactory=function(){var s=-999999;function t(t,e,r){var i,s,a,n,o,h,l,p,m,f=r.lastIndex,c=this.keyframes;if(t<c[0].t-this.offsetTime)i=c[0].s[0],a=!0,f=0;else if(t>=c[c.length-1].t-this.offsetTime)i=c[c.length-1].s?c[c.length-1].s[0]:c[c.length-2].e[0],a=!0;else{for(var d,u,y=f,g=c.length-1,v=!0;v&&(d=c[y],!((u=c[y+1]).t-this.offsetTime>t));)y<g-1?y+=1:v=!1;if(f=y,!(a=1===d.h)){if(t>=u.t-this.offsetTime)p=1;else if(t<d.t-this.offsetTime)p=0;else{var b;d.__fnct?b=d.__fnct:(b=BezierFactory.getBezierEasing(d.o.x,d.o.y,d.i.x,d.i.y).get,d.__fnct=b),p=b((t-(d.t-this.offsetTime))/(u.t-this.offsetTime-(d.t-this.offsetTime)))}s=u.s?u.s[0]:d.e[0]}i=d.s[0]}for(h=e._length,l=i.i[0].length,r.lastIndex=f,n=0;n<h;n+=1)for(o=0;o<l;o+=1)m=a?i.i[n][o]:i.i[n][o]+(s.i[n][o]-i.i[n][o])*p,e.i[n][o]=m,m=a?i.o[n][o]:i.o[n][o]+(s.o[n][o]-i.o[n][o])*p,e.o[n][o]=m,m=a?i.v[n][o]:i.v[n][o]+(s.v[n][o]-i.v[n][o])*p,e.v[n][o]=m}function a(){this.paths=this.localShapeCollection}function e(t){(function(t,e){if(t._length!==e._length||t.c!==e.c)return!1;var r,i=t._length;for(r=0;r<i;r+=1)if(t.v[r][0]!==e.v[r][0]||t.v[r][1]!==e.v[r][1]||t.o[r][0]!==e.o[r][0]||t.o[r][1]!==e.o[r][1]||t.i[r][0]!==e.i[r][0]||t.i[r][1]!==e.i[r][1])return!1;return!0})(this.v,t)||(this.v=shape_pool.clone(t),this.localShapeCollection.releaseShapes(),this.localShapeCollection.addShape(this.v),this._mdf=!0,this.paths=this.localShapeCollection)}function r(){if(this.elem.globalData.frameId!==this.frameId)if(this.effectsSequence.length)if(this.lock)this.setVValue(this.pv);else{this.lock=!0,this._mdf=!1;var t,e=this.kf?this.pv:this.data.ks?this.data.ks.k:this.data.pt.k,r=this.effectsSequence.length;for(t=0;t<r;t+=1)e=this.effectsSequence[t](e);this.setVValue(e),this.lock=!1,this.frameId=this.elem.globalData.frameId}else this._mdf=!1}function n(t,e,r){this.propType="shape",this.comp=t.comp,this.container=t,this.elem=t,this.data=e,this.k=!1,this.kf=!1,this._mdf=!1;var i=3===r?e.pt.k:e.ks.k;this.v=shape_pool.clone(i),this.pv=shape_pool.clone(this.v),this.localShapeCollection=shapeCollection_pool.newShapeCollection(),this.paths=this.localShapeCollection,this.paths.addShape(this.v),this.reset=a,this.effectsSequence=[]}function i(t){this.effectsSequence.push(t),this.container.addDynamicProperty(this)}function o(t,e,r){this.propType="shape",this.comp=t.comp,this.elem=t,this.container=t,this.offsetTime=t.data.st,this.keyframes=3===r?e.pt.k:e.ks.k,this.k=!0,this.kf=!0;var i=this.keyframes[0].s[0].i.length;this.keyframes[0].s[0].i[0].length;this.v=shape_pool.newElement(),this.v.setPathData(this.keyframes[0].s[0].c,i),this.pv=shape_pool.clone(this.v),this.localShapeCollection=shapeCollection_pool.newShapeCollection(),this.paths=this.localShapeCollection,this.paths.addShape(this.v),this.lastFrame=s,this.reset=a,this._caching={lastFrame:s,lastIndex:0},this.effectsSequence=[function(){var t=this.comp.renderedFrame-this.offsetTime,e=this.keyframes[0].t-this.offsetTime,r=this.keyframes[this.keyframes.length-1].t-this.offsetTime,i=this._caching.lastFrame;return i!==s&&(i<e&&t<e||r<i&&r<t)||(this._caching.lastIndex=i<t?this._caching.lastIndex:0,this.interpolateShape(t,this.pv,this._caching)),this._caching.lastFrame=t,this.pv}.bind(this)]}n.prototype.interpolateShape=t,n.prototype.getValue=r,n.prototype.setVValue=e,n.prototype.addEffect=i,o.prototype.getValue=r,o.prototype.interpolateShape=t,o.prototype.setVValue=e,o.prototype.addEffect=i;var h=function(){var n=roundCorner;function t(t,e){this.v=shape_pool.newElement(),this.v.setPathData(!0,4),this.localShapeCollection=shapeCollection_pool.newShapeCollection(),this.paths=this.localShapeCollection,this.localShapeCollection.addShape(this.v),this.d=e.d,this.elem=t,this.comp=t.comp,this.frameId=-1,this.initDynamicPropertyContainer(t),this.p=PropertyFactory.getProp(t,e.p,1,0,this),this.s=PropertyFactory.getProp(t,e.s,1,0,this),this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertEllToPath())}return t.prototype={reset:a,getValue:function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertEllToPath())},convertEllToPath:function(){var t=this.p.v[0],e=this.p.v[1],r=this.s.v[0]/2,i=this.s.v[1]/2,s=3!==this.d,a=this.v;a.v[0][0]=t,a.v[0][1]=e-i,a.v[1][0]=s?t+r:t-r,a.v[1][1]=e,a.v[2][0]=t,a.v[2][1]=e+i,a.v[3][0]=s?t-r:t+r,a.v[3][1]=e,a.i[0][0]=s?t-r*n:t+r*n,a.i[0][1]=e-i,a.i[1][0]=s?t+r:t-r,a.i[1][1]=e-i*n,a.i[2][0]=s?t+r*n:t-r*n,a.i[2][1]=e+i,a.i[3][0]=s?t-r:t+r,a.i[3][1]=e+i*n,a.o[0][0]=s?t+r*n:t-r*n,a.o[0][1]=e-i,a.o[1][0]=s?t+r:t-r,a.o[1][1]=e+i*n,a.o[2][0]=s?t-r*n:t+r*n,a.o[2][1]=e+i,a.o[3][0]=s?t-r:t+r,a.o[3][1]=e-i*n}},extendPrototype([DynamicPropertyContainer],t),t}(),l=function(){function t(t,e){this.v=shape_pool.newElement(),this.v.setPathData(!0,0),this.elem=t,this.comp=t.comp,this.data=e,this.frameId=-1,this.d=e.d,this.initDynamicPropertyContainer(t),1===e.sy?(this.ir=PropertyFactory.getProp(t,e.ir,0,0,this),this.is=PropertyFactory.getProp(t,e.is,0,.01,this),this.convertToPath=this.convertStarToPath):this.convertToPath=this.convertPolygonToPath,this.pt=PropertyFactory.getProp(t,e.pt,0,0,this),this.p=PropertyFactory.getProp(t,e.p,1,0,this),this.r=PropertyFactory.getProp(t,e.r,0,degToRads,this),this.or=PropertyFactory.getProp(t,e.or,0,0,this),this.os=PropertyFactory.getProp(t,e.os,0,.01,this),this.localShapeCollection=shapeCollection_pool.newShapeCollection(),this.localShapeCollection.addShape(this.v),this.paths=this.localShapeCollection,this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertToPath())}return t.prototype={reset:a,getValue:function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertToPath())},convertStarToPath:function(){var t,e,r,i,s=2*Math.floor(this.pt.v),a=2*Math.PI/s,n=!0,o=this.or.v,h=this.ir.v,l=this.os.v,p=this.is.v,m=2*Math.PI*o/(2*s),f=2*Math.PI*h/(2*s),c=-Math.PI/2;c+=this.r.v;var d=3===this.data.d?-1:1;for(t=this.v._length=0;t<s;t+=1){r=n?l:p,i=n?m:f;var u=(e=n?o:h)*Math.cos(c),y=e*Math.sin(c),g=0===u&&0===y?0:y/Math.sqrt(u*u+y*y),v=0===u&&0===y?0:-u/Math.sqrt(u*u+y*y);u+=+this.p.v[0],y+=+this.p.v[1],this.v.setTripleAt(u,y,u-g*i*r*d,y-v*i*r*d,u+g*i*r*d,y+v*i*r*d,t,!0),n=!n,c+=a*d}},convertPolygonToPath:function(){var t,e=Math.floor(this.pt.v),r=2*Math.PI/e,i=this.or.v,s=this.os.v,a=2*Math.PI*i/(4*e),n=-Math.PI/2,o=3===this.data.d?-1:1;for(n+=this.r.v,t=this.v._length=0;t<e;t+=1){var h=i*Math.cos(n),l=i*Math.sin(n),p=0===h&&0===l?0:l/Math.sqrt(h*h+l*l),m=0===h&&0===l?0:-h/Math.sqrt(h*h+l*l);h+=+this.p.v[0],l+=+this.p.v[1],this.v.setTripleAt(h,l,h-p*a*s*o,l-m*a*s*o,h+p*a*s*o,l+m*a*s*o,t,!0),n+=r*o}this.paths.length=0,this.paths[0]=this.v}},extendPrototype([DynamicPropertyContainer],t),t}(),p=function(){function t(t,e){this.v=shape_pool.newElement(),this.v.c=!0,this.localShapeCollection=shapeCollection_pool.newShapeCollection(),this.localShapeCollection.addShape(this.v),this.paths=this.localShapeCollection,this.elem=t,this.comp=t.comp,this.frameId=-1,this.d=e.d,this.initDynamicPropertyContainer(t),this.p=PropertyFactory.getProp(t,e.p,1,0,this),this.s=PropertyFactory.getProp(t,e.s,1,0,this),this.r=PropertyFactory.getProp(t,e.r,0,0,this),this.dynamicProperties.length?this.k=!0:(this.k=!1,this.convertRectToPath())}return t.prototype={convertRectToPath:function(){var t=this.p.v[0],e=this.p.v[1],r=this.s.v[0]/2,i=this.s.v[1]/2,s=bm_min(r,i,this.r.v),a=s*(1-roundCorner);this.v._length=0,2===this.d||1===this.d?(this.v.setTripleAt(t+r,e-i+s,t+r,e-i+s,t+r,e-i+a,0,!0),this.v.setTripleAt(t+r,e+i-s,t+r,e+i-a,t+r,e+i-s,1,!0),0!==s?(this.v.setTripleAt(t+r-s,e+i,t+r-s,e+i,t+r-a,e+i,2,!0),this.v.setTripleAt(t-r+s,e+i,t-r+a,e+i,t-r+s,e+i,3,!0),this.v.setTripleAt(t-r,e+i-s,t-r,e+i-s,t-r,e+i-a,4,!0),this.v.setTripleAt(t-r,e-i+s,t-r,e-i+a,t-r,e-i+s,5,!0),this.v.setTripleAt(t-r+s,e-i,t-r+s,e-i,t-r+a,e-i,6,!0),this.v.setTripleAt(t+r-s,e-i,t+r-a,e-i,t+r-s,e-i,7,!0)):(this.v.setTripleAt(t-r,e+i,t-r+a,e+i,t-r,e+i,2),this.v.setTripleAt(t-r,e-i,t-r,e-i+a,t-r,e-i,3))):(this.v.setTripleAt(t+r,e-i+s,t+r,e-i+a,t+r,e-i+s,0,!0),0!==s?(this.v.setTripleAt(t+r-s,e-i,t+r-s,e-i,t+r-a,e-i,1,!0),this.v.setTripleAt(t-r+s,e-i,t-r+a,e-i,t-r+s,e-i,2,!0),this.v.setTripleAt(t-r,e-i+s,t-r,e-i+s,t-r,e-i+a,3,!0),this.v.setTripleAt(t-r,e+i-s,t-r,e+i-a,t-r,e+i-s,4,!0),this.v.setTripleAt(t-r+s,e+i,t-r+s,e+i,t-r+a,e+i,5,!0),this.v.setTripleAt(t+r-s,e+i,t+r-a,e+i,t+r-s,e+i,6,!0),this.v.setTripleAt(t+r,e+i-s,t+r,e+i-s,t+r,e+i-a,7,!0)):(this.v.setTripleAt(t-r,e-i,t-r+a,e-i,t-r,e-i,1,!0),this.v.setTripleAt(t-r,e+i,t-r,e+i-a,t-r,e+i,2,!0),this.v.setTripleAt(t+r,e+i,t+r-a,e+i,t+r,e+i,3,!0)))},getValue:function(t){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf&&this.convertRectToPath())},reset:a},extendPrototype([DynamicPropertyContainer],t),t}();var m={getShapeProp:function(t,e,r){var i;return 3===r||4===r?i=(3===r?e.pt:e.ks).k.length?new o(t,e,r):new n(t,e,r):5===r?i=new p(t,e):6===r?i=new h(t,e):7===r&&(i=new l(t,e)),i.k&&t.addDynamicProperty(i),i},getConstructorFunction:function(){return n},getKeyframedConstructorFunction:function(){return o}};return m}(),ShapeModifiers=($r={},_r={},$r.registerModifier=function(t,e){_r[t]||(_r[t]=e)},$r.getModifier=function(t,e,r){return new _r[t](e,r)},$r),$r,_r;function ShapeModifier(){}function TrimModifier(){}function RoundCornersModifier(){}function RepeaterModifier(){}function ShapeCollection(){this._length=0,this._maxLength=4,this.shapes=createSizedArray(this._maxLength)}function DashProperty(t,e,r,i){this.elem=t,this.frameId=-1,this.dataProps=createSizedArray(e.length),this.renderer=r,this.k=!1,this.dashStr="",this.dashArray=createTypedArray("float32",e.length?e.length-1:0),this.dashoffset=createTypedArray("float32",1),this.initDynamicPropertyContainer(i);var s,a,n=e.length||0;for(s=0;s<n;s+=1)a=PropertyFactory.getProp(t,e[s].v,0,0,this),this.k=a.k||this.k,this.dataProps[s]={n:e[s].n,p:a};this.k||this.getValue(!0),this._isAnimated=this.k}function GradientProperty(t,e,r){this.data=e,this.c=createTypedArray("uint8c",4*e.p);var i=e.k.k[0].s?e.k.k[0].s.length-4*e.p:e.k.k.length-4*e.p;this.o=createTypedArray("float32",i),this._cmdf=!1,this._omdf=!1,this._collapsable=this.checkCollapsable(),this._hasOpacity=i,this.initDynamicPropertyContainer(r),this.prop=PropertyFactory.getProp(t,e.k,1,null,this),this.k=this.prop.k,this.getValue(!0)}ShapeModifier.prototype.initModifierProperties=function(){},ShapeModifier.prototype.addShapeToModifier=function(){},ShapeModifier.prototype.addShape=function(t){if(!this.closed){t.sh.container.addDynamicProperty(t.sh);var e={shape:t.sh,data:t,localShapeCollection:shapeCollection_pool.newShapeCollection()};this.shapes.push(e),this.addShapeToModifier(e),this._isAnimated&&t.setAsAnimated()}},ShapeModifier.prototype.init=function(t,e){this.shapes=[],this.elem=t,this.initDynamicPropertyContainer(t),this.initModifierProperties(t,e),this.frameId=initialDefaultFrame,this.closed=!1,this.k=!1,this.dynamicProperties.length?this.k=!0:this.getValue(!0)},ShapeModifier.prototype.processKeys=function(){this.elem.globalData.frameId!==this.frameId&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties())},extendPrototype([DynamicPropertyContainer],ShapeModifier),extendPrototype([ShapeModifier],TrimModifier),TrimModifier.prototype.initModifierProperties=function(t,e){this.s=PropertyFactory.getProp(t,e.s,0,.01,this),this.e=PropertyFactory.getProp(t,e.e,0,.01,this),this.o=PropertyFactory.getProp(t,e.o,0,0,this),this.sValue=0,this.eValue=0,this.getValue=this.processKeys,this.m=e.m,this._isAnimated=!!this.s.effectsSequence.length||!!this.e.effectsSequence.length||!!this.o.effectsSequence.length},TrimModifier.prototype.addShapeToModifier=function(t){t.pathsData=[]},TrimModifier.prototype.calculateShapeEdges=function(t,e,r,i,s){var a=[];e<=1?a.push({s:t,e:e}):1<=t?a.push({s:t-1,e:e-1}):(a.push({s:t,e:1}),a.push({s:0,e:e-1}));var n,o,h=[],l=a.length;for(n=0;n<l;n+=1){var p,m;if((o=a[n]).e*s<i||o.s*s>i+r);else p=o.s*s<=i?0:(o.s*s-i)/r,m=o.e*s>=i+r?1:(o.e*s-i)/r,h.push([p,m])}return h.length||h.push([0,0]),h},TrimModifier.prototype.releasePathsData=function(t){var e,r=t.length;for(e=0;e<r;e+=1)segments_length_pool.release(t[e]);return t.length=0,t},TrimModifier.prototype.processShapes=function(t){var e,r,i;if(this._mdf||t){var s=this.o.v%360/360;if(s<0&&(s+=1),e=(1<this.s.v?1:this.s.v<0?0:this.s.v)+s,(r=(1<this.e.v?1:this.e.v<0?0:this.e.v)+s)<e){var a=e;e=r,r=a}e=1e-4*Math.round(1e4*e),r=1e-4*Math.round(1e4*r),this.sValue=e,this.eValue=r}else e=this.sValue,r=this.eValue;var n,o,h,l,p,m,f=this.shapes.length,c=0;if(r===e)for(n=0;n<f;n+=1)this.shapes[n].localShapeCollection.releaseShapes(),this.shapes[n].shape._mdf=!0,this.shapes[n].shape.paths=this.shapes[n].localShapeCollection;else if(1===r&&0===e||0===r&&1===e){if(this._mdf)for(n=0;n<f;n+=1)this.shapes[n].pathsData.length=0,this.shapes[n].shape._mdf=!0}else{var d,u,y=[];for(n=0;n<f;n+=1)if((d=this.shapes[n]).shape._mdf||this._mdf||t||2===this.m){if(h=(i=d.shape.paths)._length,m=0,!d.shape._mdf&&d.pathsData.length)m=d.totalShapeLength;else{for(l=this.releasePathsData(d.pathsData),o=0;o<h;o+=1)p=bez.getSegmentsLength(i.shapes[o]),l.push(p),m+=p.totalLength;d.totalShapeLength=m,d.pathsData=l}c+=m,d.shape._mdf=!0}else d.shape.paths=d.localShapeCollection;var g,v=e,b=r,E=0;for(n=f-1;0<=n;n-=1)if((d=this.shapes[n]).shape._mdf){for((u=d.localShapeCollection).releaseShapes(),2===this.m&&1<f?(g=this.calculateShapeEdges(e,r,d.totalShapeLength,E,c),E+=d.totalShapeLength):g=[[v,b]],h=g.length,o=0;o<h;o+=1){v=g[o][0],b=g[o][1],y.length=0,b<=1?y.push({s:d.totalShapeLength*v,e:d.totalShapeLength*b}):1<=v?y.push({s:d.totalShapeLength*(v-1),e:d.totalShapeLength*(b-1)}):(y.push({s:d.totalShapeLength*v,e:d.totalShapeLength}),y.push({s:0,e:d.totalShapeLength*(b-1)}));var x=this.addShapes(d,y[0]);if(y[0].s!==y[0].e){if(1<y.length)if(d.shape.paths.shapes[d.shape.paths._length-1].c){var P=x.pop();this.addPaths(x,u),x=this.addShapes(d,y[1],P)}else this.addPaths(x,u),x=this.addShapes(d,y[1]);this.addPaths(x,u)}}d.shape.paths=u}}},TrimModifier.prototype.addPaths=function(t,e){var r,i=t.length;for(r=0;r<i;r+=1)e.addShape(t[r])},TrimModifier.prototype.addSegment=function(t,e,r,i,s,a,n){s.setXYAt(e[0],e[1],"o",a),s.setXYAt(r[0],r[1],"i",a+1),n&&s.setXYAt(t[0],t[1],"v",a),s.setXYAt(i[0],i[1],"v",a+1)},TrimModifier.prototype.addSegmentFromArray=function(t,e,r,i){e.setXYAt(t[1],t[5],"o",r),e.setXYAt(t[2],t[6],"i",r+1),i&&e.setXYAt(t[0],t[4],"v",r),e.setXYAt(t[3],t[7],"v",r+1)},TrimModifier.prototype.addShapes=function(t,e,r){var i,s,a,n,o,h,l,p,m=t.pathsData,f=t.shape.paths.shapes,c=t.shape.paths._length,d=0,u=[],y=!0;for(p=r?(o=r._length,r._length):(r=shape_pool.newElement(),o=0),u.push(r),i=0;i<c;i+=1){for(h=m[i].lengths,r.c=f[i].c,a=f[i].c?h.length:h.length+1,s=1;s<a;s+=1)if(d+(n=h[s-1]).addedLength<e.s)d+=n.addedLength,r.c=!1;else{if(d>e.e){r.c=!1;break}e.s<=d&&e.e>=d+n.addedLength?(this.addSegment(f[i].v[s-1],f[i].o[s-1],f[i].i[s],f[i].v[s],r,o,y),y=!1):(l=bez.getNewSegment(f[i].v[s-1],f[i].v[s],f[i].o[s-1],f[i].i[s],(e.s-d)/n.addedLength,(e.e-d)/n.addedLength,h[s-1]),this.addSegmentFromArray(l,r,o,y),y=!1,r.c=!1),d+=n.addedLength,o+=1}if(f[i].c&&h.length){if(n=h[s-1],d<=e.e){var g=h[s-1].addedLength;e.s<=d&&e.e>=d+g?(this.addSegment(f[i].v[s-1],f[i].o[s-1],f[i].i[0],f[i].v[0],r,o,y),y=!1):(l=bez.getNewSegment(f[i].v[s-1],f[i].v[0],f[i].o[s-1],f[i].i[0],(e.s-d)/g,(e.e-d)/g,h[s-1]),this.addSegmentFromArray(l,r,o,y),y=!1,r.c=!1)}else r.c=!1;d+=n.addedLength,o+=1}if(r._length&&(r.setXYAt(r.v[p][0],r.v[p][1],"i",p),r.setXYAt(r.v[r._length-1][0],r.v[r._length-1][1],"o",r._length-1)),d>e.e)break;i<c-1&&(r=shape_pool.newElement(),y=!0,u.push(r),o=0)}return u},ShapeModifiers.registerModifier("tm",TrimModifier),extendPrototype([ShapeModifier],RoundCornersModifier),RoundCornersModifier.prototype.initModifierProperties=function(t,e){this.getValue=this.processKeys,this.rd=PropertyFactory.getProp(t,e.r,0,null,this),this._isAnimated=!!this.rd.effectsSequence.length},RoundCornersModifier.prototype.processPath=function(t,e){var r=shape_pool.newElement();r.c=t.c;var i,s,a,n,o,h,l,p,m,f,c,d,u,y=t._length,g=0;for(i=0;i<y;i+=1)s=t.v[i],n=t.o[i],a=t.i[i],s[0]===n[0]&&s[1]===n[1]&&s[0]===a[0]&&s[1]===a[1]?0!==i&&i!==y-1||t.c?(o=0===i?t.v[y-1]:t.v[i-1],l=(h=Math.sqrt(Math.pow(s[0]-o[0],2)+Math.pow(s[1]-o[1],2)))?Math.min(h/2,e)/h:0,p=d=s[0]+(o[0]-s[0])*l,m=u=s[1]-(s[1]-o[1])*l,f=p-(p-s[0])*roundCorner,c=m-(m-s[1])*roundCorner,r.setTripleAt(p,m,f,c,d,u,g),g+=1,o=i===y-1?t.v[0]:t.v[i+1],l=(h=Math.sqrt(Math.pow(s[0]-o[0],2)+Math.pow(s[1]-o[1],2)))?Math.min(h/2,e)/h:0,p=f=s[0]+(o[0]-s[0])*l,m=c=s[1]+(o[1]-s[1])*l,d=p-(p-s[0])*roundCorner,u=m-(m-s[1])*roundCorner,r.setTripleAt(p,m,f,c,d,u,g)):r.setTripleAt(s[0],s[1],n[0],n[1],a[0],a[1],g):r.setTripleAt(t.v[i][0],t.v[i][1],t.o[i][0],t.o[i][1],t.i[i][0],t.i[i][1],g),g+=1;return r},RoundCornersModifier.prototype.processShapes=function(t){var e,r,i,s,a,n,o=this.shapes.length,h=this.rd.v;if(0!==h)for(r=0;r<o;r+=1){if((a=this.shapes[r]).shape.paths,n=a.localShapeCollection,a.shape._mdf||this._mdf||t)for(n.releaseShapes(),a.shape._mdf=!0,e=a.shape.paths.shapes,s=a.shape.paths._length,i=0;i<s;i+=1)n.addShape(this.processPath(e[i],h));a.shape.paths=a.localShapeCollection}this.dynamicProperties.length||(this._mdf=!1)},ShapeModifiers.registerModifier("rd",RoundCornersModifier),extendPrototype([ShapeModifier],RepeaterModifier),RepeaterModifier.prototype.initModifierProperties=function(t,e){this.getValue=this.processKeys,this.c=PropertyFactory.getProp(t,e.c,0,null,this),this.o=PropertyFactory.getProp(t,e.o,0,null,this),this.tr=TransformPropertyFactory.getTransformProperty(t,e.tr,this),this.so=PropertyFactory.getProp(t,e.tr.so,0,.01,this),this.eo=PropertyFactory.getProp(t,e.tr.eo,0,.01,this),this.data=e,this.dynamicProperties.length||this.getValue(!0),this._isAnimated=!!this.dynamicProperties.length,this.pMatrix=new Matrix,this.rMatrix=new Matrix,this.sMatrix=new Matrix,this.tMatrix=new Matrix,this.matrix=new Matrix},RepeaterModifier.prototype.applyTransforms=function(t,e,r,i,s,a){var n=a?-1:1,o=i.s.v[0]+(1-i.s.v[0])*(1-s),h=i.s.v[1]+(1-i.s.v[1])*(1-s);t.translate(i.p.v[0]*n*s,i.p.v[1]*n*s,i.p.v[2]),e.translate(-i.a.v[0],-i.a.v[1],i.a.v[2]),e.rotate(-i.r.v*n*s),e.translate(i.a.v[0],i.a.v[1],i.a.v[2]),r.translate(-i.a.v[0],-i.a.v[1],i.a.v[2]),r.scale(a?1/o:o,a?1/h:h),r.translate(i.a.v[0],i.a.v[1],i.a.v[2])},RepeaterModifier.prototype.init=function(t,e,r,i){this.elem=t,this.arr=e,this.pos=r,this.elemsData=i,this._currentCopies=0,this._elements=[],this._groups=[],this.frameId=-1,this.initDynamicPropertyContainer(t),this.initModifierProperties(t,e[r]);for(;0<r;)r-=1,this._elements.unshift(e[r]),1;this.dynamicProperties.length?this.k=!0:this.getValue(!0)},RepeaterModifier.prototype.resetElements=function(t){var e,r=t.length;for(e=0;e<r;e+=1)t[e]._processed=!1,"gr"===t[e].ty&&this.resetElements(t[e].it)},RepeaterModifier.prototype.cloneElements=function(t){t.length;var e=JSON.parse(JSON.stringify(t));return this.resetElements(e),e},RepeaterModifier.prototype.changeGroupRender=function(t,e){var r,i=t.length;for(r=0;r<i;r+=1)t[r]._render=e,"gr"===t[r].ty&&this.changeGroupRender(t[r].it,e)},RepeaterModifier.prototype.processShapes=function(t){var e,r,i,s,a;if(this._mdf||t){var n,o=Math.ceil(this.c.v);if(this._groups.length<o){for(;this._groups.length<o;){var h={it:this.cloneElements(this._elements),ty:"gr"};h.it.push({a:{a:0,ix:1,k:[0,0]},nm:"Transform",o:{a:0,ix:7,k:100},p:{a:0,ix:2,k:[0,0]},r:{a:1,ix:6,k:[{s:0,e:0,t:0},{s:0,e:0,t:1}]},s:{a:0,ix:3,k:[100,100]},sa:{a:0,ix:5,k:0},sk:{a:0,ix:4,k:0},ty:"tr"}),this.arr.splice(0,0,h),this._groups.splice(0,0,h),this._currentCopies+=1}this.elem.reloadShapes()}for(i=a=0;i<=this._groups.length-1;i+=1)n=a<o,this._groups[i]._render=n,this.changeGroupRender(this._groups[i].it,n),a+=1;this._currentCopies=o;var l=this.o.v,p=l%1,m=0<l?Math.floor(l):Math.ceil(l),f=(this.tr.v.props,this.pMatrix.props),c=this.rMatrix.props,d=this.sMatrix.props;this.pMatrix.reset(),this.rMatrix.reset(),this.sMatrix.reset(),this.tMatrix.reset(),this.matrix.reset();var u,y,g=0;if(0<l){for(;g<m;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),g+=1;p&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,p,!1),g+=p)}else if(l<0){for(;m<g;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!0),g-=1;p&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,-p,!0),g-=p)}for(i=1===this.data.m?0:this._currentCopies-1,s=1===this.data.m?1:-1,a=this._currentCopies;a;){if(y=(r=(e=this.elemsData[i].it)[e.length-1].transform.mProps.v.props).length,e[e.length-1].transform.mProps._mdf=!0,e[e.length-1].transform.op._mdf=!0,e[e.length-1].transform.op.v=this.so.v+(this.eo.v-this.so.v)*(i/(this._currentCopies-1)),0!==g){for((0!==i&&1===s||i!==this._currentCopies-1&&-1===s)&&this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),this.matrix.transform(c[0],c[1],c[2],c[3],c[4],c[5],c[6],c[7],c[8],c[9],c[10],c[11],c[12],c[13],c[14],c[15]),this.matrix.transform(d[0],d[1],d[2],d[3],d[4],d[5],d[6],d[7],d[8],d[9],d[10],d[11],d[12],d[13],d[14],d[15]),this.matrix.transform(f[0],f[1],f[2],f[3],f[4],f[5],f[6],f[7],f[8],f[9],f[10],f[11],f[12],f[13],f[14],f[15]),u=0;u<y;u+=1)r[u]=this.matrix.props[u];this.matrix.reset()}else for(this.matrix.reset(),u=0;u<y;u+=1)r[u]=this.matrix.props[u];g+=1,a-=1,i+=s}}else for(a=this._currentCopies,i=0,s=1;a;)r=(e=this.elemsData[i].it)[e.length-1].transform.mProps.v.props,e[e.length-1].transform.mProps._mdf=!1,e[e.length-1].transform.op._mdf=!1,a-=1,i+=s},RepeaterModifier.prototype.addShape=function(){},ShapeModifiers.registerModifier("rp",RepeaterModifier),ShapeCollection.prototype.addShape=function(t){this._length===this._maxLength&&(this.shapes=this.shapes.concat(createSizedArray(this._maxLength)),this._maxLength*=2),this.shapes[this._length]=t,this._length+=1},ShapeCollection.prototype.releaseShapes=function(){var t;for(t=0;t<this._length;t+=1)shape_pool.release(this.shapes[t]);this._length=0},DashProperty.prototype.getValue=function(t){if((this.elem.globalData.frameId!==this.frameId||t)&&(this.frameId=this.elem.globalData.frameId,this.iterateDynamicProperties(),this._mdf=this._mdf||t,this._mdf)){var e=0,r=this.dataProps.length;for("svg"===this.renderer&&(this.dashStr=""),e=0;e<r;e+=1)"o"!=this.dataProps[e].n?"svg"===this.renderer?this.dashStr+=" "+this.dataProps[e].p.v:this.dashArray[e]=this.dataProps[e].p.v:this.dashoffset[0]=this.dataProps[e].p.v}},extendPrototype([DynamicPropertyContainer],DashProperty),GradientProperty.prototype.comparePoints=function(t,e){for(var r=0,i=this.o.length/2;r<i;){if(.01<Math.abs(t[4*r]-t[4*e+2*r]))return!1;r+=1}return!0},GradientProperty.prototype.checkCollapsable=function(){if(this.o.length/2!=this.c.length/4)return!1;if(this.data.k.k[0].s)for(var t=0,e=this.data.k.k.length;t<e;){if(!this.comparePoints(this.data.k.k[t].s,this.data.p))return!1;t+=1}else if(!this.comparePoints(this.data.k.k,this.data.p))return!1;return!0},GradientProperty.prototype.getValue=function(t){if(this.prop.getValue(),this._mdf=!1,this._cmdf=!1,this._omdf=!1,this.prop._mdf||t){var e,r,i,s=4*this.data.p;for(e=0;e<s;e+=1)r=e%4==0?100:255,i=Math.round(this.prop.v[e]*r),this.c[e]!==i&&(this.c[e]=i,this._cmdf=!t);if(this.o.length)for(s=this.prop.v.length,e=4*this.data.p;e<s;e+=1)r=e%2==0?100:1,i=e%2==0?Math.round(100*this.prop.v[e]):this.prop.v[e],this.o[e-4*this.data.p]!==i&&(this.o[e-4*this.data.p]=i,this._omdf=!t);this._mdf=!t}},extendPrototype([DynamicPropertyContainer],GradientProperty);var buildShapeString=function(t,e,r,i){if(0===e)return"";var s,a=t.o,n=t.i,o=t.v,h=" M"+i.applyToPointStringified(o[0][0],o[0][1]);for(s=1;s<e;s+=1)h+=" C"+i.applyToPointStringified(a[s-1][0],a[s-1][1])+" "+i.applyToPointStringified(n[s][0],n[s][1])+" "+i.applyToPointStringified(o[s][0],o[s][1]);return r&&e&&(h+=" C"+i.applyToPointStringified(a[s-1][0],a[s-1][1])+" "+i.applyToPointStringified(n[0][0],n[0][1])+" "+i.applyToPointStringified(o[0][0],o[0][1]),h+="z"),h},ImagePreloader=function(){var s=function(){var t=createTag("canvas");t.width=1,t.height=1;var e=t.getContext("2d");return e.fillStyle="rgba(0,0,0,0)",e.fillRect(0,0,1,1),t}();function t(){this.loadedAssets+=1,this.loadedAssets===this.totalImages&&this.imagesLoadedCb&&this.imagesLoadedCb(null)}function e(t){var e=function(t,e,r){var i="";if(t.e)i=t.p;else if(e){var s=t.p;-1!==s.indexOf("images/")&&(s=s.split("/")[1]),i=e+s}else i=r,i+=t.u?t.u:"",i+=t.p;return i}(t,this.assetsPath,this.path),r=createTag("img");r.crossOrigin="anonymous",r.addEventListener("load",this._imageLoaded.bind(this),!1),r.addEventListener("error",function(){i.img=s,this._imageLoaded()}.bind(this),!1),r.src=e;var i={img:r,assetData:t};return i}function r(t,e){this.imagesLoadedCb=e;var r,i=t.length;for(r=0;r<i;r+=1)t[r].layers||(this.totalImages+=1,this.images.push(this._createImageData(t[r])))}function i(t){this.path=t||""}function a(t){this.assetsPath=t||""}function n(t){for(var e=0,r=this.images.length;e<r;){if(this.images[e].assetData===t)return this.images[e].img;e+=1}}function o(){this.imagesLoadedCb=null,this.images.length=0}function h(){return this.totalImages===this.loadedAssets}return function(){this.loadAssets=r,this.setAssetsPath=a,this.setPath=i,this.loaded=h,this.destroy=o,this.getImage=n,this._createImageData=e,this._imageLoaded=t,this.assetsPath="",this.path="",this.totalImages=0,this.loadedAssets=0,this.imagesLoadedCb=null,this.images=[]}}(),featureSupport=(sw={maskType:!0},(/MSIE 10/i.test(navigator.userAgent)||/MSIE 9/i.test(navigator.userAgent)||/rv:11.0/i.test(navigator.userAgent)||/Edge\/\d./i.test(navigator.userAgent))&&(sw.maskType=!1),sw),sw,filtersFactory=(tw={},tw.createFilter=function(t){var e=createNS("filter");return e.setAttribute("id",t),e.setAttribute("filterUnits","objectBoundingBox"),e.setAttribute("x","0%"),e.setAttribute("y","0%"),e.setAttribute("width","100%"),e.setAttribute("height","100%"),e},tw.createAlphaToLuminanceFilter=function(){var t=createNS("feColorMatrix");return t.setAttribute("type","matrix"),t.setAttribute("color-interpolation-filters","sRGB"),t.setAttribute("values","0 0 0 1 0  0 0 0 1 0  0 0 0 1 0  0 0 0 1 1"),t},tw),tw,assetLoader=function(){function a(t){return t.response&&"object"==typeof t.response?t.response:t.response&&"string"==typeof t.response?JSON.parse(t.response):t.responseText?JSON.parse(t.responseText):void 0}return{load:function(t,e,r){var i,s=new XMLHttpRequest;s.open("GET",t,!0);try{s.responseType="json"}catch(t){}s.send(),s.onreadystatechange=function(){if(4==s.readyState)if(200==s.status)i=a(s),e(i);else try{i=a(s),e(i)}catch(t){r&&r(t)}}}}}();function TextAnimatorProperty(t,e,r){this._isFirstFrame=!0,this._hasMaskedPath=!1,this._frameId=-1,this._textData=t,this._renderType=e,this._elem=r,this._animatorsData=createSizedArray(this._textData.a.length),this._pathData={},this._moreOptions={alignment:{}},this.renderedLetters=[],this.lettersChangedFlag=!1,this.initDynamicPropertyContainer(r)}function TextAnimatorDataProperty(t,e,r){var i={propType:!1},s=PropertyFactory.getProp,a=e.a;this.a={r:a.r?s(t,a.r,0,degToRads,r):i,rx:a.rx?s(t,a.rx,0,degToRads,r):i,ry:a.ry?s(t,a.ry,0,degToRads,r):i,sk:a.sk?s(t,a.sk,0,degToRads,r):i,sa:a.sa?s(t,a.sa,0,degToRads,r):i,s:a.s?s(t,a.s,1,.01,r):i,a:a.a?s(t,a.a,1,0,r):i,o:a.o?s(t,a.o,0,.01,r):i,p:a.p?s(t,a.p,1,0,r):i,sw:a.sw?s(t,a.sw,0,0,r):i,sc:a.sc?s(t,a.sc,1,0,r):i,fc:a.fc?s(t,a.fc,1,0,r):i,fh:a.fh?s(t,a.fh,0,0,r):i,fs:a.fs?s(t,a.fs,0,.01,r):i,fb:a.fb?s(t,a.fb,0,.01,r):i,t:a.t?s(t,a.t,0,0,r):i},this.s=TextSelectorProp.getTextSelectorProp(t,e.s,r),this.s.t=e.s.t}function LetterProps(t,e,r,i,s,a){this.o=t,this.sw=e,this.sc=r,this.fc=i,this.m=s,this.p=a,this._mdf={o:!0,sw:!!e,sc:!!r,fc:!!i,m:!0,p:!0}}function TextProperty(t,e){this._frameId=initialDefaultFrame,this.pv="",this.v="",this.kf=!1,this._isFirstFrame=!0,this._mdf=!1,this.data=e,this.elem=t,this.comp=this.elem.comp,this.keysIndex=0,this.canResize=!1,this.minimumFontSize=1,this.effectsSequence=[],this.currentData={ascent:0,boxWidth:this.defaultBoxWidth,f:"",fStyle:"",fWeight:"",fc:"",j:"",justifyOffset:"",l:[],lh:0,lineWidths:[],ls:"",of:"",s:"",sc:"",sw:0,t:0,tr:0,sz:0,ps:null,fillColorAnim:!1,strokeColorAnim:!1,strokeWidthAnim:!1,yOffset:0,finalSize:0,finalText:[],finalLineHeight:0,__complete:!1},this.copyData(this.currentData,this.data.d.k[0].s),this.searchProperty()||this.completeTextData(this.currentData)}TextAnimatorProperty.prototype.searchProperties=function(){var t,e,r=this._textData.a.length,i=PropertyFactory.getProp;for(t=0;t<r;t+=1)e=this._textData.a[t],this._animatorsData[t]=new TextAnimatorDataProperty(this._elem,e,this);this._textData.p&&"m"in this._textData.p?(this._pathData={f:i(this._elem,this._textData.p.f,0,0,this),l:i(this._elem,this._textData.p.l,0,0,this),r:this._textData.p.r,m:this._elem.maskManager.getMaskProperty(this._textData.p.m)},this._hasMaskedPath=!0):this._hasMaskedPath=!1,this._moreOptions.alignment=i(this._elem,this._textData.m.a,1,0,this)},TextAnimatorProperty.prototype.getMeasures=function(t,e){if(this.lettersChangedFlag=e,this._mdf||this._isFirstFrame||e||this._hasMaskedPath&&this._pathData.m._mdf){this._isFirstFrame=!1;var r,i,s,a,n,o,h,l,p,m,f,c,d,u,y,g,v,b,E,x=this._moreOptions.alignment.v,P=this._animatorsData,S=this._textData,_=this.mHelper,A=this._renderType,C=this.renderedLetters.length,T=(this.data,t.l);if(this._hasMaskedPath){if(E=this._pathData.m,!this._pathData.n||this._pathData._mdf){var k,M=E.v;for(this._pathData.r&&(M=M.reverse()),n={tLength:0,segments:[]},a=M._length-1,s=g=0;s<a;s+=1)k=bez.buildBezierData(M.v[s],M.v[s+1],[M.o[s][0]-M.v[s][0],M.o[s][1]-M.v[s][1]],[M.i[s+1][0]-M.v[s+1][0],M.i[s+1][1]-M.v[s+1][1]]),n.tLength+=k.segmentLength,n.segments.push(k),g+=k.segmentLength;s=a,E.v.c&&(k=bez.buildBezierData(M.v[s],M.v[0],[M.o[s][0]-M.v[s][0],M.o[s][1]-M.v[s][1]],[M.i[0][0]-M.v[0][0],M.i[0][1]-M.v[0][1]]),n.tLength+=k.segmentLength,n.segments.push(k),g+=k.segmentLength),this._pathData.pi=n}if(n=this._pathData.pi,o=this._pathData.f.v,m=1,p=!(l=f=0),u=n.segments,o<0&&E.v.c)for(n.tLength<Math.abs(o)&&(o=-Math.abs(o)%n.tLength),m=(d=u[f=u.length-1].points).length-1;o<0;)o+=d[m].partialLength,(m-=1)<0&&(m=(d=u[f-=1].points).length-1);c=(d=u[f].points)[m-1],y=(h=d[m]).partialLength}a=T.length,i=r=0;var D,w,F,I,V=1.2*t.finalSize*.714,R=!0;F=P.length;var B,L,G,z,N,O,H,j,q,W,Y,X,$,K=-1,U=o,J=f,Z=m,Q=-1,tt="",et=this.defaultPropsArray;if(2===t.j||1===t.j){var rt=0,it=0,st=2===t.j?-.5:-1,at=0,nt=!0;for(s=0;s<a;s+=1)if(T[s].n){for(rt&&(rt+=it);at<s;)T[at].animatorJustifyOffset=rt,at+=1;nt=!(rt=0)}else{for(w=0;w<F;w+=1)(D=P[w].a).t.propType&&(nt&&2===t.j&&(it+=D.t.v*st),(B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars)).length?rt+=D.t.v*B[0]*st:rt+=D.t.v*B*st);nt=!1}for(rt&&(rt+=it);at<s;)T[at].animatorJustifyOffset=rt,at+=1}for(s=0;s<a;s+=1){if(_.reset(),N=1,T[s].n)r=0,i+=t.yOffset,i+=R?1:0,o=U,R=!1,0,this._hasMaskedPath&&(m=Z,c=(d=u[f=J].points)[m-1],y=(h=d[m]).partialLength,l=0),$=W=X=tt="",et=this.defaultPropsArray;else{if(this._hasMaskedPath){if(Q!==T[s].line){switch(t.j){case 1:o+=g-t.lineWidths[T[s].line];break;case 2:o+=(g-t.lineWidths[T[s].line])/2}Q=T[s].line}K!==T[s].ind&&(T[K]&&(o+=T[K].extra),o+=T[s].an/2,K=T[s].ind),o+=x[0]*T[s].an/200;var ot=0;for(w=0;w<F;w+=1)(D=P[w].a).p.propType&&((B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars)).length?ot+=D.p.v[0]*B[0]:ot+=D.p.v[0]*B),D.a.propType&&((B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars)).length?ot+=D.a.v[0]*B[0]:ot+=D.a.v[0]*B);for(p=!0;p;)o+ot<=l+y||!d?(v=(o+ot-l)/h.partialLength,G=c.point[0]+(h.point[0]-c.point[0])*v,z=c.point[1]+(h.point[1]-c.point[1])*v,_.translate(-x[0]*T[s].an/200,-x[1]*V/100),p=!1):d&&(l+=h.partialLength,(m+=1)>=d.length&&(m=0,d=u[f+=1]?u[f].points:E.v.c?u[f=m=0].points:(l-=h.partialLength,null)),d&&(c=h,y=(h=d[m]).partialLength));L=T[s].an/2-T[s].add,_.translate(-L,0,0)}else L=T[s].an/2-T[s].add,_.translate(-L,0,0),_.translate(-x[0]*T[s].an/200,-x[1]*V/100,0);for(T[s].l/2,w=0;w<F;w+=1)(D=P[w].a).t.propType&&(B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars),0===r&&0===t.j||(this._hasMaskedPath?B.length?o+=D.t.v*B[0]:o+=D.t.v*B:B.length?r+=D.t.v*B[0]:r+=D.t.v*B));for(T[s].l/2,t.strokeWidthAnim&&(H=t.sw||0),t.strokeColorAnim&&(O=t.sc?[t.sc[0],t.sc[1],t.sc[2]]:[0,0,0]),t.fillColorAnim&&t.fc&&(j=[t.fc[0],t.fc[1],t.fc[2]]),w=0;w<F;w+=1)(D=P[w].a).a.propType&&((B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars)).length?_.translate(-D.a.v[0]*B[0],-D.a.v[1]*B[1],D.a.v[2]*B[2]):_.translate(-D.a.v[0]*B,-D.a.v[1]*B,D.a.v[2]*B));for(w=0;w<F;w+=1)(D=P[w].a).s.propType&&((B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars)).length?_.scale(1+(D.s.v[0]-1)*B[0],1+(D.s.v[1]-1)*B[1],1):_.scale(1+(D.s.v[0]-1)*B,1+(D.s.v[1]-1)*B,1));for(w=0;w<F;w+=1){if(D=P[w].a,B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars),D.sk.propType&&(B.length?_.skewFromAxis(-D.sk.v*B[0],D.sa.v*B[1]):_.skewFromAxis(-D.sk.v*B,D.sa.v*B)),D.r.propType&&(B.length?_.rotateZ(-D.r.v*B[2]):_.rotateZ(-D.r.v*B)),D.ry.propType&&(B.length?_.rotateY(D.ry.v*B[1]):_.rotateY(D.ry.v*B)),D.rx.propType&&(B.length?_.rotateX(D.rx.v*B[0]):_.rotateX(D.rx.v*B)),D.o.propType&&(B.length?N+=(D.o.v*B[0]-N)*B[0]:N+=(D.o.v*B-N)*B),t.strokeWidthAnim&&D.sw.propType&&(B.length?H+=D.sw.v*B[0]:H+=D.sw.v*B),t.strokeColorAnim&&D.sc.propType)for(q=0;q<3;q+=1)B.length?O[q]=O[q]+(D.sc.v[q]-O[q])*B[0]:O[q]=O[q]+(D.sc.v[q]-O[q])*B;if(t.fillColorAnim&&t.fc){if(D.fc.propType)for(q=0;q<3;q+=1)B.length?j[q]=j[q]+(D.fc.v[q]-j[q])*B[0]:j[q]=j[q]+(D.fc.v[q]-j[q])*B;D.fh.propType&&(j=B.length?addHueToRGB(j,D.fh.v*B[0]):addHueToRGB(j,D.fh.v*B)),D.fs.propType&&(j=B.length?addSaturationToRGB(j,D.fs.v*B[0]):addSaturationToRGB(j,D.fs.v*B)),D.fb.propType&&(j=B.length?addBrightnessToRGB(j,D.fb.v*B[0]):addBrightnessToRGB(j,D.fb.v*B))}}for(w=0;w<F;w+=1)(D=P[w].a).p.propType&&(B=P[w].s.getMult(T[s].anIndexes[w],S.a[w].s.totalChars),this._hasMaskedPath?B.length?_.translate(0,D.p.v[1]*B[0],-D.p.v[2]*B[1]):_.translate(0,D.p.v[1]*B,-D.p.v[2]*B):B.length?_.translate(D.p.v[0]*B[0],D.p.v[1]*B[1],-D.p.v[2]*B[2]):_.translate(D.p.v[0]*B,D.p.v[1]*B,-D.p.v[2]*B));if(t.strokeWidthAnim&&(W=H<0?0:H),t.strokeColorAnim&&(Y="rgb("+Math.round(255*O[0])+","+Math.round(255*O[1])+","+Math.round(255*O[2])+")"),t.fillColorAnim&&t.fc&&(X="rgb("+Math.round(255*j[0])+","+Math.round(255*j[1])+","+Math.round(255*j[2])+")"),this._hasMaskedPath){if(_.translate(0,-t.ls),_.translate(0,x[1]*V/100+i,0),S.p.p){b=(h.point[1]-c.point[1])/(h.point[0]-c.point[0]);var ht=180*Math.atan(b)/Math.PI;h.point[0]<c.point[0]&&(ht+=180),_.rotate(-ht*Math.PI/180)}_.translate(G,z,0),o-=x[0]*T[s].an/200,T[s+1]&&K!==T[s+1].ind&&(o+=T[s].an/2,o+=t.tr/1e3*t.finalSize)}else{switch(_.translate(r,i,0),t.ps&&_.translate(t.ps[0],t.ps[1]+t.ascent,0),t.j){case 1:_.translate(T[s].animatorJustifyOffset+t.justifyOffset+(t.boxWidth-t.lineWidths[T[s].line]),0,0);break;case 2:_.translate(T[s].animatorJustifyOffset+t.justifyOffset+(t.boxWidth-t.lineWidths[T[s].line])/2,0,0)}_.translate(0,-t.ls),_.translate(L,0,0),_.translate(x[0]*T[s].an/200,x[1]*V/100,0),r+=T[s].l+t.tr/1e3*t.finalSize}"html"===A?tt=_.toCSS():"svg"===A?tt=_.to2dCSS():et=[_.props[0],_.props[1],_.props[2],_.props[3],_.props[4],_.props[5],_.props[6],_.props[7],_.props[8],_.props[9],_.props[10],_.props[11],_.props[12],_.props[13],_.props[14],_.props[15]],$=N}this.lettersChangedFlag=C<=s?(I=new LetterProps($,W,Y,X,tt,et),this.renderedLetters.push(I),C+=1,!0):(I=this.renderedLetters[s]).update($,W,Y,X,tt,et)||this.lettersChangedFlag}}},TextAnimatorProperty.prototype.getValue=function(){this._elem.globalData.frameId!==this._frameId&&(this._frameId=this._elem.globalData.frameId,this.iterateDynamicProperties())},TextAnimatorProperty.prototype.mHelper=new Matrix,TextAnimatorProperty.prototype.defaultPropsArray=[],extendPrototype([DynamicPropertyContainer],TextAnimatorProperty),LetterProps.prototype.update=function(t,e,r,i,s,a){this._mdf.o=!1,this._mdf.sw=!1,this._mdf.sc=!1,this._mdf.fc=!1,this._mdf.m=!1;var n=this._mdf.p=!1;return this.o!==t&&(this.o=t,n=this._mdf.o=!0),this.sw!==e&&(this.sw=e,n=this._mdf.sw=!0),this.sc!==r&&(this.sc=r,n=this._mdf.sc=!0),this.fc!==i&&(this.fc=i,n=this._mdf.fc=!0),this.m!==s&&(this.m=s,n=this._mdf.m=!0),!a.length||this.p[0]===a[0]&&this.p[1]===a[1]&&this.p[4]===a[4]&&this.p[5]===a[5]&&this.p[12]===a[12]&&this.p[13]===a[13]||(this.p=a,n=this._mdf.p=!0),n},TextProperty.prototype.defaultBoxWidth=[0,0],TextProperty.prototype.copyData=function(t,e){for(var r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return t},TextProperty.prototype.setCurrentData=function(t){t.__complete||this.completeTextData(t),this.currentData=t,this.currentData.boxWidth=this.currentData.boxWidth||this.defaultBoxWidth,this._mdf=!0},TextProperty.prototype.searchProperty=function(){return this.searchKeyframes()},TextProperty.prototype.searchKeyframes=function(){return this.kf=1<this.data.d.k.length,this.kf&&this.addEffect(this.getKeyframeValue.bind(this)),this.kf},TextProperty.prototype.addEffect=function(t){this.effectsSequence.push(t),this.elem.addDynamicProperty(this)},TextProperty.prototype.getValue=function(t){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length||t){this.currentData.t=this.data.d.k[this.keysIndex].s.t;var e=this.currentData,r=this.keysIndex;if(this.lock)this.setCurrentData(this.currentData);else{this.lock=!0,this._mdf=!1;var i,s=this.effectsSequence.length,a=t||this.data.d.k[this.keysIndex].s;for(i=0;i<s;i+=1)a=r!==this.keysIndex?this.effectsSequence[i](a,a.t):this.effectsSequence[i](this.currentData,a.t);e!==a&&this.setCurrentData(a),this.pv=this.v=this.currentData,this.lock=!1,this.frameId=this.elem.globalData.frameId}}},TextProperty.prototype.getKeyframeValue=function(){for(var t=this.data.d.k,e=this.elem.comp.renderedFrame,r=0,i=t.length;r<=i-1&&(t[r].s,!(r===i-1||t[r+1].t>e));)r+=1;return this.keysIndex!==r&&(this.keysIndex=r),this.data.d.k[this.keysIndex].s},TextProperty.prototype.buildFinalText=function(t){for(var e,r=FontManager.getCombinedCharacterCodes(),i=[],s=0,a=t.length;s<a;)e=t.charCodeAt(s),-1!==r.indexOf(e)?i[i.length-1]+=t.charAt(s):55296<=e&&e<=56319&&56320<=(e=t.charCodeAt(s+1))&&e<=57343?(i.push(t.substr(s,2)),++s):i.push(t.charAt(s)),s+=1;return i},TextProperty.prototype.completeTextData=function(t){t.__complete=!0;var e,r,i,s,a,n,o,h=this.elem.globalData.fontManager,l=this.data,p=[],m=0,f=l.m.g,c=0,d=0,u=0,y=[],g=0,v=0,b=h.getFontByName(t.f),E=0,x=b.fStyle?b.fStyle.split(" "):[],P="normal",S="normal";for(r=x.length,e=0;e<r;e+=1)switch(x[e].toLowerCase()){case"italic":S="italic";break;case"bold":P="700";break;case"black":P="900";break;case"medium":P="500";break;case"regular":case"normal":P="400";break;case"light":case"thin":P="200"}t.fWeight=b.fWeight||P,t.fStyle=S,t.finalSize=t.s,t.finalText=this.buildFinalText(t.t),r=t.finalText.length,t.finalLineHeight=t.lh;var _,A=t.tr/1e3*t.finalSize;if(t.sz)for(var C,T,k=!0,M=t.sz[0],D=t.sz[1];k;){g=C=0,r=(T=this.buildFinalText(t.t)).length,A=t.tr/1e3*t.finalSize;var w=-1;for(e=0;e<r;e+=1)_=T[e].charCodeAt(0),i=!1," "===T[e]?w=e:13!==_&&3!==_||(i=!(g=0),C+=t.finalLineHeight||1.2*t.finalSize),M<g+(E=h.chars?(o=h.getCharData(T[e],b.fStyle,b.fFamily),i?0:o.w*t.finalSize/100):h.measureText(T[e],t.f,t.finalSize))&&" "!==T[e]?(-1===w?r+=1:e=w,C+=t.finalLineHeight||1.2*t.finalSize,T.splice(e,w===e?1:0,"\r"),w=-1,g=0):(g+=E,g+=A);C+=b.ascent*t.finalSize/100,this.canResize&&t.finalSize>this.minimumFontSize&&D<C?(t.finalSize-=1,t.finalLineHeight=t.finalSize*t.lh/t.s):(t.finalText=T,r=t.finalText.length,k=!1)}g=-A;var F,I=E=0;for(e=0;e<r;e+=1)if(i=!1,_=(F=t.finalText[e]).charCodeAt(0)," "===F?s="\xa0":13===_||3===_?(I=0,y.push(g),v=v<g?g:v,g=-2*A,i=!(s=""),u+=1):s=t.finalText[e],E=h.chars?(o=h.getCharData(F,b.fStyle,h.getFontByName(t.f).fFamily),i?0:o.w*t.finalSize/100):h.measureText(s,t.f,t.finalSize)," "===F?I+=E+A:(g+=E+A+I,I=0),p.push({l:E,an:E,add:c,n:i,anIndexes:[],val:s,line:u,animatorJustifyOffset:0}),2==f){if(c+=E,""===s||"\xa0"===s||e===r-1){for(""!==s&&"\xa0"!==s||(c-=E);d<=e;)p[d].an=c,p[d].ind=m,p[d].extra=E,d+=1;m+=1,c=0}}else if(3==f){if(c+=E,""===s||e===r-1){for(""===s&&(c-=E);d<=e;)p[d].an=c,p[d].ind=m,p[d].extra=E,d+=1;c=0,m+=1}}else p[m].ind=m,p[m].extra=0,m+=1;if(t.l=p,v=v<g?g:v,y.push(g),t.sz)t.boxWidth=t.sz[0],t.justifyOffset=0;else switch(t.boxWidth=v,t.j){case 1:t.justifyOffset=-t.boxWidth;break;case 2:t.justifyOffset=-t.boxWidth/2;break;default:t.justifyOffset=0}t.lineWidths=y;var V,R,B=l.a;n=B.length;var L,G,z=[];for(a=0;a<n;a+=1){for((V=B[a]).a.sc&&(t.strokeColorAnim=!0),V.a.sw&&(t.strokeWidthAnim=!0),(V.a.fc||V.a.fh||V.a.fs||V.a.fb)&&(t.fillColorAnim=!0),G=0,L=V.s.b,e=0;e<r;e+=1)(R=p[e]).anIndexes[a]=G,(1==L&&""!==R.val||2==L&&""!==R.val&&"\xa0"!==R.val||3==L&&(R.n||"\xa0"==R.val||e==r-1)||4==L&&(R.n||e==r-1))&&(1===V.s.rn&&z.push(G),G+=1);l.a[a].s.totalChars=G;var N,O=-1;if(1===V.s.rn)for(e=0;e<r;e+=1)O!=(R=p[e]).anIndexes[a]&&(O=R.anIndexes[a],N=z.splice(Math.floor(Math.random()*z.length),1)[0]),R.anIndexes[a]=N}t.yOffset=t.finalLineHeight||1.2*t.finalSize,t.ls=t.ls||0,t.ascent=b.ascent*t.finalSize/100},TextProperty.prototype.updateDocumentData=function(t,e){e=void 0===e?this.keysIndex:e;var r=this.copyData({},this.data.d.k[e].s);r=this.copyData(r,t),this.data.d.k[e].s=r,this.recalculate(e),this.elem.addDynamicProperty(this)},TextProperty.prototype.recalculate=function(t){var e=this.data.d.k[t].s;e.__complete=!1,this.keysIndex=0,this._isFirstFrame=!0,this.getValue(e)},TextProperty.prototype.canResizeFont=function(t){this.canResize=t,this.recalculate(this.keysIndex),this.elem.addDynamicProperty(this)},TextProperty.prototype.setMinimumFontSize=function(t){this.minimumFontSize=Math.floor(t)||1,this.recalculate(this.keysIndex),this.elem.addDynamicProperty(this)};var TextSelectorProp=function(){var c=Math.max,d=Math.min,u=Math.floor;function i(t,e){this._currentTextLength=-1,this.k=!1,this.data=e,this.elem=t,this.comp=t.comp,this.finalS=0,this.finalE=0,this.initDynamicPropertyContainer(t),this.s=PropertyFactory.getProp(t,e.s||{k:0},0,0,this),this.e="e"in e?PropertyFactory.getProp(t,e.e,0,0,this):{v:100},this.o=PropertyFactory.getProp(t,e.o||{k:0},0,0,this),this.xe=PropertyFactory.getProp(t,e.xe||{k:0},0,0,this),this.ne=PropertyFactory.getProp(t,e.ne||{k:0},0,0,this),this.a=PropertyFactory.getProp(t,e.a,0,.01,this),this.dynamicProperties.length||this.getValue()}return i.prototype={getMult:function(t){this._currentTextLength!==this.elem.textProperty.currentData.l.length&&this.getValue();var e=0,r=0,i=1,s=1;0<this.ne.v?e=this.ne.v/100:r=-this.ne.v/100,0<this.xe.v?i=1-this.xe.v/100:s=1+this.xe.v/100;var a=BezierFactory.getBezierEasing(e,r,i,s).get,n=0,o=this.finalS,h=this.finalE,l=this.data.sh;if(2===l)n=a(n=h===o?h<=t?1:0:c(0,d(.5/(h-o)+(t-o)/(h-o),1)));else if(3===l)n=a(n=h===o?h<=t?0:1:1-c(0,d(.5/(h-o)+(t-o)/(h-o),1)));else if(4===l)h===o?n=0:(n=c(0,d(.5/(h-o)+(t-o)/(h-o),1)))<.5?n*=2:n=1-2*(n-.5),n=a(n);else if(5===l){if(h===o)n=0;else{var p=h-o,m=-p/2+(t=d(c(0,t+.5-o),h-o)),f=p/2;n=Math.sqrt(1-m*m/(f*f))}n=a(n)}else n=6===l?a(n=h===o?0:(t=d(c(0,t+.5-o),h-o),(1+Math.cos(Math.PI+2*Math.PI*t/(h-o)))/2)):(t>=u(o)&&(n=c(0,d(t-o<0?d(h,1)-(o-t):h-t,1))),a(n));return n*this.a.v},getValue:function(t){this.iterateDynamicProperties(),this._mdf=t||this._mdf,this._currentTextLength=this.elem.textProperty.currentData.l.length||0,t&&2===this.data.r&&(this.e.v=this._currentTextLength);var e=2===this.data.r?1:100/this.data.totalChars,r=this.o.v/e,i=this.s.v/e+r,s=this.e.v/e+r;if(s<i){var a=i;i=s,s=a}this.finalS=i,this.finalE=s}},extendPrototype([DynamicPropertyContainer],i),{getTextSelectorProp:function(t,e,r){return new i(t,e,r)}}}(),pool_factory=function(t,e,r,i){var s=0,a=t,n=createSizedArray(a);function o(){return s?n[s-=1]:e()}return{newElement:o,release:function(t){s===a&&(n=pooling.double(n),a*=2),r&&r(t),n[s]=t,s+=1}}},pooling={double:function(t){return t.concat(createSizedArray(t.length))}},point_pool=pool_factory(8,function(){return createTypedArray("float32",2)}),shape_pool=(KA=pool_factory(4,function(){return new ShapePath},function(t){var e,r=t._length;for(e=0;e<r;e+=1)point_pool.release(t.v[e]),point_pool.release(t.i[e]),point_pool.release(t.o[e]),t.v[e]=null,t.i[e]=null,t.o[e]=null;t._length=0,t.c=!1}),KA.clone=function(t){var e,r=KA.newElement(),i=void 0===t._length?t.v.length:t._length;for(r.setLength(i),r.c=t.c,e=0;e<i;e+=1)r.setTripleAt(t.v[e][0],t.v[e][1],t.o[e][0],t.o[e][1],t.i[e][0],t.i[e][1],e);return r},KA),KA,shapeCollection_pool=(TA={newShapeCollection:function(){var t;t=UA?WA[UA-=1]:new ShapeCollection;return t},release:function(t){var e,r=t._length;for(e=0;e<r;e+=1)shape_pool.release(t.shapes[e]);t._length=0,UA===VA&&(WA=pooling.double(WA),VA*=2);WA[UA]=t,UA+=1}},UA=0,VA=4,WA=createSizedArray(VA),TA),TA,UA,VA,WA,segments_length_pool=pool_factory(8,function(){return{lengths:[],totalLength:0}},function(t){var e,r=t.lengths.length;for(e=0;e<r;e+=1)bezier_length_pool.release(t.lengths[e]);t.lengths.length=0}),bezier_length_pool=pool_factory(8,function(){return{addedLength:0,percents:createTypedArray("float32",defaultCurveSegments),lengths:createTypedArray("float32",defaultCurveSegments)}});function BaseRenderer(){}function SVGRenderer(t,e){this.animationItem=t,this.layers=null,this.renderedFrame=-1,this.svgElement=createNS("svg");var r="";if(e&&e.title){var i=createNS("title"),s=createElementID();i.setAttribute("id",s),i.textContent=e.title,this.svgElement.appendChild(i),r+=s}if(e&&e.description){var a=createNS("desc"),n=createElementID();a.setAttribute("id",n),a.textContent=e.description,this.svgElement.appendChild(a),r+=" "+n}r&&this.svgElement.setAttribute("aria-labelledby",r);var o=createNS("defs");this.svgElement.appendChild(o);var h=createNS("g");this.svgElement.appendChild(h),this.layerElement=h,this.renderConfig={preserveAspectRatio:e&&e.preserveAspectRatio||"xMidYMid meet",imagePreserveAspectRatio:e&&e.imagePreserveAspectRatio||"xMidYMid slice",progressiveLoad:e&&e.progressiveLoad||!1,hideOnTransparent:!e||!1!==e.hideOnTransparent,viewBoxOnly:e&&e.viewBoxOnly||!1,viewBoxSize:e&&e.viewBoxSize||!1,className:e&&e.className||"",id:e&&e.id||"",focusable:e&&e.focusable},this.globalData={_mdf:!1,frameNum:-1,defs:o,renderConfig:this.renderConfig},this.elements=[],this.pendingElements=[],this.destroyed=!1,this.rendererType="svg"}function CanvasRenderer(t,e){this.animationItem=t,this.renderConfig={clearCanvas:!e||void 0===e.clearCanvas||e.clearCanvas,context:e&&e.context||null,progressiveLoad:e&&e.progressiveLoad||!1,preserveAspectRatio:e&&e.preserveAspectRatio||"xMidYMid meet",imagePreserveAspectRatio:e&&e.imagePreserveAspectRatio||"xMidYMid slice",className:e&&e.className||"",id:e&&e.id||""},this.renderConfig.dpr=e&&e.dpr||1,this.animationItem.wrapper&&(this.renderConfig.dpr=e&&e.dpr||window.devicePixelRatio||1),this.renderedFrame=-1,this.globalData={frameNum:-1,_mdf:!1,renderConfig:this.renderConfig,currentGlobalAlpha:-1},this.contextData=new CVContextData,this.elements=[],this.pendingElements=[],this.transformMat=new Matrix,this.completeLayers=!1,this.rendererType="canvas"}function HybridRenderer(t,e){this.animationItem=t,this.layers=null,this.renderedFrame=-1,this.renderConfig={className:e&&e.className||"",imagePreserveAspectRatio:e&&e.imagePreserveAspectRatio||"xMidYMid slice",hideOnTransparent:!e||!1!==e.hideOnTransparent},this.globalData={_mdf:!1,frameNum:-1,renderConfig:this.renderConfig},this.pendingElements=[],this.elements=[],this.threeDElements=[],this.destroyed=!1,this.camera=null,this.supports3d=!0,this.rendererType="html"}function MaskElement(t,e,r){this.data=t,this.element=e,this.globalData=r,this.storedData=[],this.masksProperties=this.data.masksProperties||[],this.maskElement=null;var i,s=this.globalData.defs,a=this.masksProperties?this.masksProperties.length:0;this.viewData=createSizedArray(a),this.solidPath="";var n,o,h,l,p,m,f,c=this.masksProperties,d=0,u=[],y=createElementID(),g="clipPath",v="clip-path";for(i=0;i<a;i++)if(("a"!==c[i].mode&&"n"!==c[i].mode||c[i].inv||100!==c[i].o.k||c[i].o.x)&&(v=g="mask"),"s"!=c[i].mode&&"i"!=c[i].mode||0!==d?l=null:((l=createNS("rect")).setAttribute("fill","#ffffff"),l.setAttribute("width",this.element.comp.data.w||0),l.setAttribute("height",this.element.comp.data.h||0),u.push(l)),n=createNS("path"),"n"!=c[i].mode){var b;if(d+=1,n.setAttribute("fill","s"===c[i].mode?"#000000":"#ffffff"),n.setAttribute("clip-rule","nonzero"),0!==c[i].x.k?(v=g="mask",f=PropertyFactory.getProp(this.element,c[i].x,0,null,this.element),b=createElementID(),(p=createNS("filter")).setAttribute("id",b),(m=createNS("feMorphology")).setAttribute("operator","erode"),m.setAttribute("in","SourceGraphic"),m.setAttribute("radius","0"),p.appendChild(m),s.appendChild(p),n.setAttribute("stroke","s"===c[i].mode?"#000000":"#ffffff")):f=m=null,this.storedData[i]={elem:n,x:f,expan:m,lastPath:"",lastOperator:"",filterId:b,lastRadius:0},"i"==c[i].mode){h=u.length;var E=createNS("g");for(o=0;o<h;o+=1)E.appendChild(u[o]);var x=createNS("mask");x.setAttribute("mask-type","alpha"),x.setAttribute("id",y+"_"+d),x.appendChild(n),s.appendChild(x),E.setAttribute("mask","url("+locationHref+"#"+y+"_"+d+")"),u.length=0,u.push(E)}else u.push(n);c[i].inv&&!this.solidPath&&(this.solidPath=this.createLayerSolidPath()),this.viewData[i]={elem:n,lastPath:"",op:PropertyFactory.getProp(this.element,c[i].o,0,.01,this.element),prop:ShapePropertyFactory.getShapeProp(this.element,c[i],3),invRect:l},this.viewData[i].prop.k||this.drawPath(c[i],this.viewData[i].prop.v,this.viewData[i])}else this.viewData[i]={op:PropertyFactory.getProp(this.element,c[i].o,0,.01,this.element),prop:ShapePropertyFactory.getShapeProp(this.element,c[i],3),elem:n,lastPath:""},s.appendChild(n);for(this.maskElement=createNS(g),a=u.length,i=0;i<a;i+=1)this.maskElement.appendChild(u[i]);0<d&&(this.maskElement.setAttribute("id",y),this.element.maskedElement.setAttribute(v,"url("+locationHref+"#"+y+")"),s.appendChild(this.maskElement)),this.viewData.length&&this.element.addRenderableComponent(this)}function HierarchyElement(){}function FrameElement(){}function TransformElement(){}function RenderableElement(){}function RenderableDOMElement(){}function ProcessedElement(t,e){this.elem=t,this.pos=e}function SVGStyleData(t,e){this.data=t,this.type=t.ty,this.d="",this.lvl=e,this._mdf=!1,this.closed=!0===t.hd,this.pElem=createNS("path"),this.msElem=null}function SVGShapeData(t,e,r){this.caches=[],this.styles=[],this.transformers=t,this.lStr="",this.sh=r,this.lvl=e,this._isAnimated=!!r.k;for(var i=0,s=t.length;i<s;){if(t[i].mProps.dynamicProperties.length){this._isAnimated=!0;break}i+=1}}function SVGTransformData(t,e,r){this.transform={mProps:t,op:e,container:r},this.elements=[],this._isAnimated=this.transform.mProps.dynamicProperties.length||this.transform.op.effectsSequence.length}function SVGStrokeStyleData(t,e,r){this.initDynamicPropertyContainer(t),this.getValue=this.iterateDynamicProperties,this.o=PropertyFactory.getProp(t,e.o,0,.01,this),this.w=PropertyFactory.getProp(t,e.w,0,null,this),this.d=new DashProperty(t,e.d||{},"svg",this),this.c=PropertyFactory.getProp(t,e.c,1,255,this),this.style=r,this._isAnimated=!!this._isAnimated}function SVGFillStyleData(t,e,r){this.initDynamicPropertyContainer(t),this.getValue=this.iterateDynamicProperties,this.o=PropertyFactory.getProp(t,e.o,0,.01,this),this.c=PropertyFactory.getProp(t,e.c,1,255,this),this.style=r}function SVGGradientFillStyleData(t,e,r){this.initDynamicPropertyContainer(t),this.getValue=this.iterateDynamicProperties,this.initGradientData(t,e,r)}function SVGGradientStrokeStyleData(t,e,r){this.initDynamicPropertyContainer(t),this.getValue=this.iterateDynamicProperties,this.w=PropertyFactory.getProp(t,e.w,0,null,this),this.d=new DashProperty(t,e.d||{},"svg",this),this.initGradientData(t,e,r),this._isAnimated=!!this._isAnimated}function ShapeGroupData(){this.it=[],this.prevViewData=[],this.gr=createNS("g")}BaseRenderer.prototype.checkLayers=function(t){var e,r,i=this.layers.length;for(this.completeLayers=!0,e=i-1;0<=e;e--)this.elements[e]||(r=this.layers[e]).ip-r.st<=t-this.layers[e].st&&r.op-r.st>t-this.layers[e].st&&this.buildItem(e),this.completeLayers=!!this.elements[e]&&this.completeLayers;this.checkPendingElements()},BaseRenderer.prototype.createItem=function(t){switch(t.ty){case 2:return this.createImage(t);case 0:return this.createComp(t);case 1:return this.createSolid(t);case 3:return this.createNull(t);case 4:return this.createShape(t);case 5:return this.createText(t);case 13:return this.createCamera(t)}return this.createNull(t)},BaseRenderer.prototype.createCamera=function(){throw new Error("You're using a 3d camera. Try the html renderer.")},BaseRenderer.prototype.buildAllItems=function(){var t,e=this.layers.length;for(t=0;t<e;t+=1)this.buildItem(t);this.checkPendingElements()},BaseRenderer.prototype.includeLayers=function(t){this.completeLayers=!1;var e,r,i=t.length,s=this.layers.length;for(e=0;e<i;e+=1)for(r=0;r<s;){if(this.layers[r].id==t[e].id){this.layers[r]=t[e];break}r+=1}},BaseRenderer.prototype.setProjectInterface=function(t){this.globalData.projectInterface=t},BaseRenderer.prototype.initItems=function(){this.globalData.progressiveLoad||this.buildAllItems()},BaseRenderer.prototype.buildElementParenting=function(t,e,r){for(var i=this.elements,s=this.layers,a=0,n=s.length;a<n;)s[a].ind==e&&(i[a]&&!0!==i[a]?(r.push(i[a]),i[a].setAsParent(),void 0!==s[a].parent?this.buildElementParenting(t,s[a].parent,r):t.setHierarchy(r)):(this.buildItem(a),this.addPendingElement(t))),a+=1},BaseRenderer.prototype.addPendingElement=function(t){this.pendingElements.push(t)},BaseRenderer.prototype.searchExtraCompositions=function(t){var e,r=t.length;for(e=0;e<r;e+=1)if(t[e].xt){var i=this.createComp(t[e]);i.initExpressions(),this.globalData.projectInterface.registerComposition(i)}},BaseRenderer.prototype.setupGlobalData=function(t,e){this.globalData.fontManager=new FontManager,this.globalData.fontManager.addChars(t.chars),this.globalData.fontManager.addFonts(t.fonts,e),this.globalData.getAssetData=this.animationItem.getAssetData.bind(this.animationItem),this.globalData.getAssetsPath=this.animationItem.getAssetsPath.bind(this.animationItem),this.globalData.imageLoader=this.animationItem.imagePreloader,this.globalData.frameId=0,this.globalData.frameRate=t.fr,this.globalData.nm=t.nm,this.globalData.compSize={w:t.w,h:t.h}},extendPrototype([BaseRenderer],SVGRenderer),SVGRenderer.prototype.createNull=function(t){return new NullElement(t,this.globalData,this)},SVGRenderer.prototype.createShape=function(t){return new SVGShapeElement(t,this.globalData,this)},SVGRenderer.prototype.createText=function(t){return new SVGTextElement(t,this.globalData,this)},SVGRenderer.prototype.createImage=function(t){return new IImageElement(t,this.globalData,this)},SVGRenderer.prototype.createComp=function(t){return new SVGCompElement(t,this.globalData,this)},SVGRenderer.prototype.createSolid=function(t){return new ISolidElement(t,this.globalData,this)},SVGRenderer.prototype.configAnimation=function(t){this.svgElement.setAttribute("xmlns","http://www.w3.org/2000/svg"),this.renderConfig.viewBoxSize?this.svgElement.setAttribute("viewBox",this.renderConfig.viewBoxSize):this.svgElement.setAttribute("viewBox","0 0 "+t.w+" "+t.h),this.renderConfig.viewBoxOnly||(this.svgElement.setAttribute("width",t.w),this.svgElement.setAttribute("height",t.h),this.svgElement.style.width="100%",this.svgElement.style.height="100%",this.svgElement.style.transform="translate3d(0,0,0)"),this.renderConfig.className&&this.svgElement.setAttribute("class",this.renderConfig.className),this.renderConfig.id&&this.svgElement.setAttribute("id",this.renderConfig.id),void 0!==this.renderConfig.focusable&&this.svgElement.setAttribute("focusable",this.renderConfig.focusable),this.svgElement.setAttribute("preserveAspectRatio",this.renderConfig.preserveAspectRatio),this.animationItem.wrapper.appendChild(this.svgElement);var e=this.globalData.defs;this.setupGlobalData(t,e),this.globalData.progressiveLoad=this.renderConfig.progressiveLoad,this.data=t;var r=createNS("clipPath"),i=createNS("rect");i.setAttribute("width",t.w),i.setAttribute("height",t.h),i.setAttribute("x",0),i.setAttribute("y",0);var s=createElementID();r.setAttribute("id",s),r.appendChild(i),this.layerElement.setAttribute("clip-path","url("+locationHref+"#"+s+")"),e.appendChild(r),this.layers=t.layers,this.elements=createSizedArray(t.layers.length)},SVGRenderer.prototype.destroy=function(){this.animationItem.wrapper.innerHTML="",this.layerElement=null,this.globalData.defs=null;var t,e=this.layers?this.layers.length:0;for(t=0;t<e;t++)this.elements[t]&&this.elements[t].destroy();this.elements.length=0,this.destroyed=!0,this.animationItem=null},SVGRenderer.prototype.updateContainerSize=function(){},SVGRenderer.prototype.buildItem=function(t){var e=this.elements;if(!e[t]&&99!=this.layers[t].ty){e[t]=!0;var r=this.createItem(this.layers[t]);e[t]=r,expressionsPlugin&&(0===this.layers[t].ty&&this.globalData.projectInterface.registerComposition(r),r.initExpressions()),this.appendElementInPos(r,t),this.layers[t].tt&&(this.elements[t-1]&&!0!==this.elements[t-1]?r.setMatte(e[t-1].layerId):(this.buildItem(t-1),this.addPendingElement(r)))}},SVGRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;){var t=this.pendingElements.pop();if(t.checkParenting(),t.data.tt)for(var e=0,r=this.elements.length;e<r;){if(this.elements[e]===t){t.setMatte(this.elements[e-1].layerId);break}e+=1}}},SVGRenderer.prototype.renderFrame=function(t){if(this.renderedFrame!==t&&!this.destroyed){null===t?t=this.renderedFrame:this.renderedFrame=t,this.globalData.frameNum=t,this.globalData.frameId+=1,this.globalData.projectInterface.currentFrame=t,this.globalData._mdf=!1;var e,r=this.layers.length;for(this.completeLayers||this.checkLayers(t),e=r-1;0<=e;e--)(this.completeLayers||this.elements[e])&&this.elements[e].prepareFrame(t-this.layers[e].st);if(this.globalData._mdf)for(e=0;e<r;e+=1)(this.completeLayers||this.elements[e])&&this.elements[e].renderFrame()}},SVGRenderer.prototype.appendElementInPos=function(t,e){var r=t.getBaseElement();if(r){for(var i,s=0;s<e;)this.elements[s]&&!0!==this.elements[s]&&this.elements[s].getBaseElement()&&(i=this.elements[s].getBaseElement()),s+=1;i?this.layerElement.insertBefore(r,i):this.layerElement.appendChild(r)}},SVGRenderer.prototype.hide=function(){this.layerElement.style.display="none"},SVGRenderer.prototype.show=function(){this.layerElement.style.display="block"},extendPrototype([BaseRenderer],CanvasRenderer),CanvasRenderer.prototype.createShape=function(t){return new CVShapeElement(t,this.globalData,this)},CanvasRenderer.prototype.createText=function(t){return new CVTextElement(t,this.globalData,this)},CanvasRenderer.prototype.createImage=function(t){return new CVImageElement(t,this.globalData,this)},CanvasRenderer.prototype.createComp=function(t){return new CVCompElement(t,this.globalData,this)},CanvasRenderer.prototype.createSolid=function(t){return new CVSolidElement(t,this.globalData,this)},CanvasRenderer.prototype.createNull=SVGRenderer.prototype.createNull,CanvasRenderer.prototype.ctxTransform=function(t){if(1!==t[0]||0!==t[1]||0!==t[4]||1!==t[5]||0!==t[12]||0!==t[13])if(this.renderConfig.clearCanvas){this.transformMat.cloneFromProps(t);var e=this.contextData.cTr.props;this.transformMat.transform(e[0],e[1],e[2],e[3],e[4],e[5],e[6],e[7],e[8],e[9],e[10],e[11],e[12],e[13],e[14],e[15]),this.contextData.cTr.cloneFromProps(this.transformMat.props);var r=this.contextData.cTr.props;this.canvasContext.setTransform(r[0],r[1],r[4],r[5],r[12],r[13])}else this.canvasContext.transform(t[0],t[1],t[4],t[5],t[12],t[13])},CanvasRenderer.prototype.ctxOpacity=function(t){if(!this.renderConfig.clearCanvas)return this.canvasContext.globalAlpha*=t<0?0:t,void(this.globalData.currentGlobalAlpha=this.contextData.cO);this.contextData.cO*=t<0?0:t,this.globalData.currentGlobalAlpha!==this.contextData.cO&&(this.canvasContext.globalAlpha=this.contextData.cO,this.globalData.currentGlobalAlpha=this.contextData.cO)},CanvasRenderer.prototype.reset=function(){this.renderConfig.clearCanvas?this.contextData.reset():this.canvasContext.restore()},CanvasRenderer.prototype.save=function(t){if(this.renderConfig.clearCanvas){t&&this.canvasContext.save();var e=this.contextData.cTr.props;this.contextData._length<=this.contextData.cArrPos&&this.contextData.duplicate();var r,i=this.contextData.saved[this.contextData.cArrPos];for(r=0;r<16;r+=1)i[r]=e[r];this.contextData.savedOp[this.contextData.cArrPos]=this.contextData.cO,this.contextData.cArrPos+=1}else this.canvasContext.save()},CanvasRenderer.prototype.restore=function(t){if(this.renderConfig.clearCanvas){t&&(this.canvasContext.restore(),this.globalData.blendMode="source-over"),this.contextData.cArrPos-=1;var e,r=this.contextData.saved[this.contextData.cArrPos],i=this.contextData.cTr.props;for(e=0;e<16;e+=1)i[e]=r[e];this.canvasContext.setTransform(r[0],r[1],r[4],r[5],r[12],r[13]),r=this.contextData.savedOp[this.contextData.cArrPos],this.contextData.cO=r,this.globalData.currentGlobalAlpha!==r&&(this.canvasContext.globalAlpha=r,this.globalData.currentGlobalAlpha=r)}else this.canvasContext.restore()},CanvasRenderer.prototype.configAnimation=function(t){this.animationItem.wrapper?(this.animationItem.container=createTag("canvas"),this.animationItem.container.style.width="100%",this.animationItem.container.style.height="100%",this.animationItem.container.style.transformOrigin=this.animationItem.container.style.mozTransformOrigin=this.animationItem.container.style.webkitTransformOrigin=this.animationItem.container.style["-webkit-transform"]="0px 0px 0px",this.animationItem.wrapper.appendChild(this.animationItem.container),this.canvasContext=this.animationItem.container.getContext("2d"),this.renderConfig.className&&this.animationItem.container.setAttribute("class",this.renderConfig.className),this.renderConfig.id&&this.animationItem.container.setAttribute("id",this.renderConfig.id)):this.canvasContext=this.renderConfig.context,this.data=t,this.layers=t.layers,this.transformCanvas={w:t.w,h:t.h,sx:0,sy:0,tx:0,ty:0},this.setupGlobalData(t,document.body),this.globalData.canvasContext=this.canvasContext,(this.globalData.renderer=this).globalData.isDashed=!1,this.globalData.progressiveLoad=this.renderConfig.progressiveLoad,this.globalData.transformCanvas=this.transformCanvas,this.elements=createSizedArray(t.layers.length),this.updateContainerSize()},CanvasRenderer.prototype.updateContainerSize=function(){var t,e,r,i;if(this.reset(),this.animationItem.wrapper&&this.animationItem.container?(t=this.animationItem.wrapper.offsetWidth,e=this.animationItem.wrapper.offsetHeight,this.animationItem.container.setAttribute("width",t*this.renderConfig.dpr),this.animationItem.container.setAttribute("height",e*this.renderConfig.dpr)):(t=this.canvasContext.canvas.width*this.renderConfig.dpr,e=this.canvasContext.canvas.height*this.renderConfig.dpr),-1!==this.renderConfig.preserveAspectRatio.indexOf("meet")||-1!==this.renderConfig.preserveAspectRatio.indexOf("slice")){var s=this.renderConfig.preserveAspectRatio.split(" "),a=s[1]||"meet",n=s[0]||"xMidYMid",o=n.substr(0,4),h=n.substr(4);r=t/e,i=this.transformCanvas.w/this.transformCanvas.h,this.transformCanvas.sy=r<i&&"meet"===a||i<r&&"slice"===a?(this.transformCanvas.sx=t/(this.transformCanvas.w/this.renderConfig.dpr),t/(this.transformCanvas.w/this.renderConfig.dpr)):(this.transformCanvas.sx=e/(this.transformCanvas.h/this.renderConfig.dpr),e/(this.transformCanvas.h/this.renderConfig.dpr)),this.transformCanvas.tx="xMid"===o&&(i<r&&"meet"===a||r<i&&"slice"===a)?(t-this.transformCanvas.w*(e/this.transformCanvas.h))/2*this.renderConfig.dpr:"xMax"===o&&(i<r&&"meet"===a||r<i&&"slice"===a)?(t-this.transformCanvas.w*(e/this.transformCanvas.h))*this.renderConfig.dpr:0,this.transformCanvas.ty="YMid"===h&&(r<i&&"meet"===a||i<r&&"slice"===a)?(e-this.transformCanvas.h*(t/this.transformCanvas.w))/2*this.renderConfig.dpr:"YMax"===h&&(r<i&&"meet"===a||i<r&&"slice"===a)?(e-this.transformCanvas.h*(t/this.transformCanvas.w))*this.renderConfig.dpr:0}else"none"==this.renderConfig.preserveAspectRatio?(this.transformCanvas.sx=t/(this.transformCanvas.w/this.renderConfig.dpr),this.transformCanvas.sy=e/(this.transformCanvas.h/this.renderConfig.dpr)):(this.transformCanvas.sx=this.renderConfig.dpr,this.transformCanvas.sy=this.renderConfig.dpr),this.transformCanvas.tx=0,this.transformCanvas.ty=0;this.transformCanvas.props=[this.transformCanvas.sx,0,0,0,0,this.transformCanvas.sy,0,0,0,0,1,0,this.transformCanvas.tx,this.transformCanvas.ty,0,1],this.ctxTransform(this.transformCanvas.props),this.canvasContext.beginPath(),this.canvasContext.rect(0,0,this.transformCanvas.w,this.transformCanvas.h),this.canvasContext.closePath(),this.canvasContext.clip(),this.renderFrame(this.renderedFrame,!0)},CanvasRenderer.prototype.destroy=function(){var t;for(this.renderConfig.clearCanvas&&(this.animationItem.wrapper.innerHTML=""),t=(this.layers?this.layers.length:0)-1;0<=t;t-=1)this.elements[t]&&this.elements[t].destroy();this.elements.length=0,this.globalData.canvasContext=null,this.animationItem.container=null,this.destroyed=!0},CanvasRenderer.prototype.renderFrame=function(t,e){if((this.renderedFrame!==t||!0!==this.renderConfig.clearCanvas||e)&&!this.destroyed&&-1!==t){this.renderedFrame=t,this.globalData.frameNum=t-this.animationItem._isFirstFrame,this.globalData.frameId+=1,this.globalData._mdf=!this.renderConfig.clearCanvas||e,this.globalData.projectInterface.currentFrame=t;var r,i=this.layers.length;for(this.completeLayers||this.checkLayers(t),r=0;r<i;r++)(this.completeLayers||this.elements[r])&&this.elements[r].prepareFrame(t-this.layers[r].st);if(this.globalData._mdf){for(!0===this.renderConfig.clearCanvas?this.canvasContext.clearRect(0,0,this.transformCanvas.w,this.transformCanvas.h):this.save(),r=i-1;0<=r;r-=1)(this.completeLayers||this.elements[r])&&this.elements[r].renderFrame();!0!==this.renderConfig.clearCanvas&&this.restore()}}},CanvasRenderer.prototype.buildItem=function(t){var e=this.elements;if(!e[t]&&99!=this.layers[t].ty){var r=this.createItem(this.layers[t],this,this.globalData);(e[t]=r).initExpressions()}},CanvasRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;){this.pendingElements.pop().checkParenting()}},CanvasRenderer.prototype.hide=function(){this.animationItem.container.style.display="none"},CanvasRenderer.prototype.show=function(){this.animationItem.container.style.display="block"},extendPrototype([BaseRenderer],HybridRenderer),HybridRenderer.prototype.buildItem=SVGRenderer.prototype.buildItem,HybridRenderer.prototype.checkPendingElements=function(){for(;this.pendingElements.length;){this.pendingElements.pop().checkParenting()}},HybridRenderer.prototype.appendElementInPos=function(t,e){var r=t.getBaseElement();if(r){var i=this.layers[e];if(i.ddd&&this.supports3d)this.addTo3dContainer(r,e);else if(this.threeDElements)this.addTo3dContainer(r,e);else{for(var s,a,n=0;n<e;)this.elements[n]&&!0!==this.elements[n]&&this.elements[n].getBaseElement&&(a=this.elements[n],s=(this.layers[n].ddd?this.getThreeDContainerByPos(n):a.getBaseElement())||s),n+=1;s?i.ddd&&this.supports3d||this.layerElement.insertBefore(r,s):i.ddd&&this.supports3d||this.layerElement.appendChild(r)}}},HybridRenderer.prototype.createShape=function(t){return this.supports3d?new HShapeElement(t,this.globalData,this):new SVGShapeElement(t,this.globalData,this)},HybridRenderer.prototype.createText=function(t){return this.supports3d?new HTextElement(t,this.globalData,this):new SVGTextElement(t,this.globalData,this)},HybridRenderer.prototype.createCamera=function(t){return this.camera=new HCameraElement(t,this.globalData,this),this.camera},HybridRenderer.prototype.createImage=function(t){return this.supports3d?new HImageElement(t,this.globalData,this):new IImageElement(t,this.globalData,this)},HybridRenderer.prototype.createComp=function(t){return this.supports3d?new HCompElement(t,this.globalData,this):new SVGCompElement(t,this.globalData,this)},HybridRenderer.prototype.createSolid=function(t){return this.supports3d?new HSolidElement(t,this.globalData,this):new ISolidElement(t,this.globalData,this)},HybridRenderer.prototype.createNull=SVGRenderer.prototype.createNull,HybridRenderer.prototype.getThreeDContainerByPos=function(t){for(var e=0,r=this.threeDElements.length;e<r;){if(this.threeDElements[e].startPos<=t&&this.threeDElements[e].endPos>=t)return this.threeDElements[e].perspectiveElem;e+=1}},HybridRenderer.prototype.createThreeDContainer=function(t,e){var r=createTag("div");styleDiv(r);var i=createTag("div");styleDiv(i),"3d"===e&&(r.style.width=this.globalData.compSize.w+"px",r.style.height=this.globalData.compSize.h+"px",r.style.transformOrigin=r.style.mozTransformOrigin=r.style.webkitTransformOrigin="50% 50%",i.style.transform=i.style.webkitTransform="matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)"),r.appendChild(i);var s={container:i,perspectiveElem:r,startPos:t,endPos:t,type:e};return this.threeDElements.push(s),s},HybridRenderer.prototype.build3dContainers=function(){var t,e,r=this.layers.length,i="";for(t=0;t<r;t+=1)this.layers[t].ddd&&3!==this.layers[t].ty?"3d"!==i&&(i="3d",e=this.createThreeDContainer(t,"3d")):"2d"!==i&&(i="2d",e=this.createThreeDContainer(t,"2d")),e.endPos=Math.max(e.endPos,t);for(t=(r=this.threeDElements.length)-1;0<=t;t--)this.resizerElem.appendChild(this.threeDElements[t].perspectiveElem)},HybridRenderer.prototype.addTo3dContainer=function(t,e){for(var r=0,i=this.threeDElements.length;r<i;){if(e<=this.threeDElements[r].endPos){for(var s,a=this.threeDElements[r].startPos;a<e;)this.elements[a]&&this.elements[a].getBaseElement&&(s=this.elements[a].getBaseElement()),a+=1;s?this.threeDElements[r].container.insertBefore(t,s):this.threeDElements[r].container.appendChild(t);break}r+=1}},HybridRenderer.prototype.configAnimation=function(t){var e=createTag("div"),r=this.animationItem.wrapper;e.style.width=t.w+"px",e.style.height=t.h+"px",styleDiv(this.resizerElem=e),e.style.transformStyle=e.style.webkitTransformStyle=e.style.mozTransformStyle="flat",this.renderConfig.className&&e.setAttribute("class",this.renderConfig.className),r.appendChild(e),e.style.overflow="hidden";var i=createNS("svg");i.setAttribute("width","1"),i.setAttribute("height","1"),styleDiv(i),this.resizerElem.appendChild(i);var s=createNS("defs");i.appendChild(s),this.data=t,this.setupGlobalData(t,i),this.globalData.defs=s,this.layers=t.layers,this.layerElement=this.resizerElem,this.build3dContainers(),this.updateContainerSize()},HybridRenderer.prototype.destroy=function(){this.animationItem.wrapper.innerHTML="",this.animationItem.container=null,this.globalData.defs=null;var t,e=this.layers?this.layers.length:0;for(t=0;t<e;t++)this.elements[t].destroy();this.elements.length=0,this.destroyed=!0,this.animationItem=null},HybridRenderer.prototype.updateContainerSize=function(){var t,e,r,i,s=this.animationItem.wrapper.offsetWidth,a=this.animationItem.wrapper.offsetHeight;i=s/a<this.globalData.compSize.w/this.globalData.compSize.h?(t=s/this.globalData.compSize.w,e=s/this.globalData.compSize.w,r=0,(a-this.globalData.compSize.h*(s/this.globalData.compSize.w))/2):(t=a/this.globalData.compSize.h,e=a/this.globalData.compSize.h,r=(s-this.globalData.compSize.w*(a/this.globalData.compSize.h))/2,0),this.resizerElem.style.transform=this.resizerElem.style.webkitTransform="matrix3d("+t+",0,0,0,0,"+e+",0,0,0,0,1,0,"+r+","+i+",0,1)"},HybridRenderer.prototype.renderFrame=SVGRenderer.prototype.renderFrame,HybridRenderer.prototype.hide=function(){this.resizerElem.style.display="none"},HybridRenderer.prototype.show=function(){this.resizerElem.style.display="block"},HybridRenderer.prototype.initItems=function(){if(this.buildAllItems(),this.camera)this.camera.setup();else{var t,e=this.globalData.compSize.w,r=this.globalData.compSize.h,i=this.threeDElements.length;for(t=0;t<i;t+=1)this.threeDElements[t].perspectiveElem.style.perspective=this.threeDElements[t].perspectiveElem.style.webkitPerspective=Math.sqrt(Math.pow(e,2)+Math.pow(r,2))+"px"}},HybridRenderer.prototype.searchExtraCompositions=function(t){var e,r=t.length,i=createTag("div");for(e=0;e<r;e+=1)if(t[e].xt){var s=this.createComp(t[e],i,this.globalData.comp,null);s.initExpressions(),this.globalData.projectInterface.registerComposition(s)}},MaskElement.prototype.getMaskProperty=function(t){return this.viewData[t].prop},MaskElement.prototype.renderFrame=function(t){var e,r=this.element.finalTransform.mat,i=this.masksProperties.length;for(e=0;e<i;e++)if((this.viewData[e].prop._mdf||t)&&this.drawPath(this.masksProperties[e],this.viewData[e].prop.v,this.viewData[e]),(this.viewData[e].op._mdf||t)&&this.viewData[e].elem.setAttribute("fill-opacity",this.viewData[e].op.v),"n"!==this.masksProperties[e].mode&&(this.viewData[e].invRect&&(this.element.finalTransform.mProp._mdf||t)&&this.viewData[e].invRect.setAttribute("transform",r.getInverseMatrix().to2dCSS()),this.storedData[e].x&&(this.storedData[e].x._mdf||t))){var s=this.storedData[e].expan;this.storedData[e].x.v<0?("erode"!==this.storedData[e].lastOperator&&(this.storedData[e].lastOperator="erode",this.storedData[e].elem.setAttribute("filter","url("+locationHref+"#"+this.storedData[e].filterId+")")),s.setAttribute("radius",-this.storedData[e].x.v)):("dilate"!==this.storedData[e].lastOperator&&(this.storedData[e].lastOperator="dilate",this.storedData[e].elem.setAttribute("filter",null)),this.storedData[e].elem.setAttribute("stroke-width",2*this.storedData[e].x.v))}},MaskElement.prototype.getMaskelement=function(){return this.maskElement},MaskElement.prototype.createLayerSolidPath=function(){var t="M0,0 ";return t+=" h"+this.globalData.compSize.w,t+=" v"+this.globalData.compSize.h,t+=" h-"+this.globalData.compSize.w,t+=" v-"+this.globalData.compSize.h+" "},MaskElement.prototype.drawPath=function(t,e,r){var i,s,a=" M"+e.v[0][0]+","+e.v[0][1];for(s=e._length,i=1;i<s;i+=1)a+=" C"+e.o[i-1][0]+","+e.o[i-1][1]+" "+e.i[i][0]+","+e.i[i][1]+" "+e.v[i][0]+","+e.v[i][1];if(e.c&&1<s&&(a+=" C"+e.o[i-1][0]+","+e.o[i-1][1]+" "+e.i[0][0]+","+e.i[0][1]+" "+e.v[0][0]+","+e.v[0][1]),r.lastPath!==a){var n="";r.elem&&(e.c&&(n=t.inv?this.solidPath+a:a),r.elem.setAttribute("d",n)),r.lastPath=a}},MaskElement.prototype.destroy=function(){this.element=null,this.globalData=null,this.maskElement=null,this.data=null,this.masksProperties=null},HierarchyElement.prototype={initHierarchy:function(){this.hierarchy=[],this._isParent=!1,this.checkParenting()},setHierarchy:function(t){this.hierarchy=t},setAsParent:function(){this._isParent=!0},checkParenting:function(){void 0!==this.data.parent&&this.comp.buildElementParenting(this,this.data.parent,[])}},FrameElement.prototype={initFrame:function(){this._isFirstFrame=!1,this.dynamicProperties=[],this._mdf=!1},prepareProperties:function(t,e){var r,i=this.dynamicProperties.length;for(r=0;r<i;r+=1)(e||this._isParent&&"transform"===this.dynamicProperties[r].propType)&&(this.dynamicProperties[r].getValue(),this.dynamicProperties[r]._mdf&&(this.globalData._mdf=!0,this._mdf=!0))},addDynamicProperty:function(t){-1===this.dynamicProperties.indexOf(t)&&this.dynamicProperties.push(t)}},TransformElement.prototype={initTransform:function(){this.finalTransform={mProp:this.data.ks?TransformPropertyFactory.getTransformProperty(this,this.data.ks,this):{o:0},_matMdf:!1,_opMdf:!1,mat:new Matrix},this.data.ao&&(this.finalTransform.mProp.autoOriented=!0),this.data.ty},renderTransform:function(){if(this.finalTransform._opMdf=this.finalTransform.mProp.o._mdf||this._isFirstFrame,this.finalTransform._matMdf=this.finalTransform.mProp._mdf||this._isFirstFrame,this.hierarchy){var t,e=this.finalTransform.mat,r=0,i=this.hierarchy.length;if(!this.finalTransform._matMdf)for(;r<i;){if(this.hierarchy[r].finalTransform.mProp._mdf){this.finalTransform._matMdf=!0;break}r+=1}if(this.finalTransform._matMdf)for(t=this.finalTransform.mProp.v.props,e.cloneFromProps(t),r=0;r<i;r+=1)t=this.hierarchy[r].finalTransform.mProp.v.props,e.transform(t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9],t[10],t[11],t[12],t[13],t[14],t[15])}},globalToLocal:function(t){var e=[];e.push(this.finalTransform);for(var r=!0,i=this.comp;r;)i.finalTransform?(i.data.hasMask&&e.splice(0,0,i.finalTransform),i=i.comp):r=!1;var s,a,n=e.length;for(s=0;s<n;s+=1)a=e[s].mat.applyToPointArray(0,0,0),t=[t[0]-a[0],t[1]-a[1],0];return t},mHelper:new Matrix},RenderableElement.prototype={initRenderable:function(){this.isInRange=!1,this.hidden=!1,this.isTransparent=!1,this.renderableComponents=[]},addRenderableComponent:function(t){-1===this.renderableComponents.indexOf(t)&&this.renderableComponents.push(t)},removeRenderableComponent:function(t){-1!==this.renderableComponents.indexOf(t)&&this.renderableComponents.splice(this.renderableComponents.indexOf(t),1)},prepareRenderableFrame:function(t){this.checkLayerLimits(t)},checkTransparency:function(){this.finalTransform.mProp.o.v<=0?!this.isTransparent&&this.globalData.renderConfig.hideOnTransparent&&(this.isTransparent=!0,this.hide()):this.isTransparent&&(this.isTransparent=!1,this.show())},checkLayerLimits:function(t){this.data.ip-this.data.st<=t&&this.data.op-this.data.st>t?!0!==this.isInRange&&(this.globalData._mdf=!0,this._mdf=!0,this.isInRange=!0,this.show()):!1!==this.isInRange&&(this.globalData._mdf=!0,this.isInRange=!1,this.hide())},renderRenderable:function(){var t,e=this.renderableComponents.length;for(t=0;t<e;t+=1)this.renderableComponents[t].renderFrame(this._isFirstFrame)},sourceRectAtTime:function(){return{top:0,left:0,width:100,height:100}},getLayerSize:function(){return 5===this.data.ty?{w:this.data.textData.width,h:this.data.textData.height}:{w:this.data.width,h:this.data.height}}},extendPrototype([RenderableElement,createProxyFunction({initElement:function(t,e,r){this.initFrame(),this.initBaseData(t,e,r),this.initTransform(t,e,r),this.initHierarchy(),this.initRenderable(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),this.createContent(),this.hide()},hide:function(){this.hidden||this.isInRange&&!this.isTransparent||((this.baseElement||this.layerElement).style.display="none",this.hidden=!0)},show:function(){this.isInRange&&!this.isTransparent&&(this.data.hd||((this.baseElement||this.layerElement).style.display="block"),this.hidden=!1,this._isFirstFrame=!0)},renderFrame:function(){this.data.hd||this.hidden||(this.renderTransform(),this.renderRenderable(),this.renderElement(),this.renderInnerContent(),this._isFirstFrame&&(this._isFirstFrame=!1))},renderInnerContent:function(){},prepareFrame:function(t){this._mdf=!1,this.prepareRenderableFrame(t),this.prepareProperties(t,this.isInRange),this.checkTransparency()},destroy:function(){this.innerElem=null,this.destroyBaseElement()}})],RenderableDOMElement),SVGStyleData.prototype.reset=function(){this.d="",this._mdf=!1},SVGShapeData.prototype.setAsAnimated=function(){this._isAnimated=!0},extendPrototype([DynamicPropertyContainer],SVGStrokeStyleData),extendPrototype([DynamicPropertyContainer],SVGFillStyleData),SVGGradientFillStyleData.prototype.initGradientData=function(t,e,r){this.o=PropertyFactory.getProp(t,e.o,0,.01,this),this.s=PropertyFactory.getProp(t,e.s,1,null,this),this.e=PropertyFactory.getProp(t,e.e,1,null,this),this.h=PropertyFactory.getProp(t,e.h||{k:0},0,.01,this),this.a=PropertyFactory.getProp(t,e.a||{k:0},0,degToRads,this),this.g=new GradientProperty(t,e.g,this),this.style=r,this.stops=[],this.setGradientData(r.pElem,e),this.setGradientOpacity(e,r),this._isAnimated=!!this._isAnimated},SVGGradientFillStyleData.prototype.setGradientData=function(t,e){var r=createElementID(),i=createNS(1===e.t?"linearGradient":"radialGradient");i.setAttribute("id",r),i.setAttribute("spreadMethod","pad"),i.setAttribute("gradientUnits","userSpaceOnUse");var s,a,n,o=[];for(n=4*e.g.p,a=0;a<n;a+=4)s=createNS("stop"),i.appendChild(s),o.push(s);t.setAttribute("gf"===e.ty?"fill":"stroke","url("+locationHref+"#"+r+")"),this.gf=i,this.cst=o},SVGGradientFillStyleData.prototype.setGradientOpacity=function(t,e){if(this.g._hasOpacity&&!this.g._collapsable){var r,i,s,a=createNS("mask"),n=createNS("path");a.appendChild(n);var o=createElementID(),h=createElementID();a.setAttribute("id",h);var l=createNS(1===t.t?"linearGradient":"radialGradient");l.setAttribute("id",o),l.setAttribute("spreadMethod","pad"),l.setAttribute("gradientUnits","userSpaceOnUse"),s=t.g.k.k[0].s?t.g.k.k[0].s.length:t.g.k.k.length;var p=this.stops;for(i=4*t.g.p;i<s;i+=2)(r=createNS("stop")).setAttribute("stop-color","rgb(255,255,255)"),l.appendChild(r),p.push(r);n.setAttribute("gf"===t.ty?"fill":"stroke","url("+locationHref+"#"+o+")"),this.of=l,this.ms=a,this.ost=p,this.maskId=h,e.msElem=n}},extendPrototype([DynamicPropertyContainer],SVGGradientFillStyleData),extendPrototype([SVGGradientFillStyleData,DynamicPropertyContainer],SVGGradientStrokeStyleData);var SVGElementsRenderer=function(){var y=new Matrix,g=new Matrix;function e(t,e,r){(r||e.transform.op._mdf)&&e.transform.container.setAttribute("opacity",e.transform.op.v),(r||e.transform.mProps._mdf)&&e.transform.container.setAttribute("transform",e.transform.mProps.v.to2dCSS())}function r(t,e,r){var i,s,a,n,o,h,l,p,m,f,c,d=e.styles.length,u=e.lvl;for(h=0;h<d;h+=1){if(n=e.sh._mdf||r,e.styles[h].lvl<u){for(p=g.reset(),f=u-e.styles[h].lvl,c=e.transformers.length-1;!n&&0<f;)n=e.transformers[c].mProps._mdf||n,f--,c--;if(n)for(f=u-e.styles[h].lvl,c=e.transformers.length-1;0<f;)m=e.transformers[c].mProps.v.props,p.transform(m[0],m[1],m[2],m[3],m[4],m[5],m[6],m[7],m[8],m[9],m[10],m[11],m[12],m[13],m[14],m[15]),f--,c--}else p=y;if(s=(l=e.sh.paths)._length,n){for(a="",i=0;i<s;i+=1)(o=l.shapes[i])&&o._length&&(a+=buildShapeString(o,o._length,o.c,p));e.caches[h]=a}else a=e.caches[h];e.styles[h].d+=!0===t.hd?"":a,e.styles[h]._mdf=n||e.styles[h]._mdf}}function i(t,e,r){var i=e.style;(e.c._mdf||r)&&i.pElem.setAttribute("fill","rgb("+bm_floor(e.c.v[0])+","+bm_floor(e.c.v[1])+","+bm_floor(e.c.v[2])+")"),(e.o._mdf||r)&&i.pElem.setAttribute("fill-opacity",e.o.v)}function s(t,e,r){a(t,e,r),n(t,e,r)}function a(t,e,r){var i,s,a,n,o,h=e.gf,l=e.g._hasOpacity,p=e.s.v,m=e.e.v;if(e.o._mdf||r){var f="gf"===t.ty?"fill-opacity":"stroke-opacity";e.style.pElem.setAttribute(f,e.o.v)}if(e.s._mdf||r){var c=1===t.t?"x1":"cx",d="x1"===c?"y1":"cy";h.setAttribute(c,p[0]),h.setAttribute(d,p[1]),l&&!e.g._collapsable&&(e.of.setAttribute(c,p[0]),e.of.setAttribute(d,p[1]))}if(e.g._cmdf||r){i=e.cst;var u=e.g.c;for(a=i.length,s=0;s<a;s+=1)(n=i[s]).setAttribute("offset",u[4*s]+"%"),n.setAttribute("stop-color","rgb("+u[4*s+1]+","+u[4*s+2]+","+u[4*s+3]+")")}if(l&&(e.g._omdf||r)){var y=e.g.o;for(a=(i=e.g._collapsable?e.cst:e.ost).length,s=0;s<a;s+=1)n=i[s],e.g._collapsable||n.setAttribute("offset",y[2*s]+"%"),n.setAttribute("stop-opacity",y[2*s+1])}if(1===t.t)(e.e._mdf||r)&&(h.setAttribute("x2",m[0]),h.setAttribute("y2",m[1]),l&&!e.g._collapsable&&(e.of.setAttribute("x2",m[0]),e.of.setAttribute("y2",m[1])));else if((e.s._mdf||e.e._mdf||r)&&(o=Math.sqrt(Math.pow(p[0]-m[0],2)+Math.pow(p[1]-m[1],2)),h.setAttribute("r",o),l&&!e.g._collapsable&&e.of.setAttribute("r",o)),e.e._mdf||e.h._mdf||e.a._mdf||r){o||(o=Math.sqrt(Math.pow(p[0]-m[0],2)+Math.pow(p[1]-m[1],2)));var g=Math.atan2(m[1]-p[1],m[0]-p[0]),v=o*(1<=e.h.v?.99:e.h.v<=-1?-.99:e.h.v),b=Math.cos(g+e.a.v)*v+p[0],E=Math.sin(g+e.a.v)*v+p[1];h.setAttribute("fx",b),h.setAttribute("fy",E),l&&!e.g._collapsable&&(e.of.setAttribute("fx",b),e.of.setAttribute("fy",E))}}function n(t,e,r){var i=e.style,s=e.d;s&&(s._mdf||r)&&s.dashStr&&(i.pElem.setAttribute("stroke-dasharray",s.dashStr),i.pElem.setAttribute("stroke-dashoffset",s.dashoffset[0])),e.c&&(e.c._mdf||r)&&i.pElem.setAttribute("stroke","rgb("+bm_floor(e.c.v[0])+","+bm_floor(e.c.v[1])+","+bm_floor(e.c.v[2])+")"),(e.o._mdf||r)&&i.pElem.setAttribute("stroke-opacity",e.o.v),(e.w._mdf||r)&&(i.pElem.setAttribute("stroke-width",e.w.v),i.msElem&&i.msElem.setAttribute("stroke-width",e.w.v))}return{createRenderFunction:function(t){t.ty;switch(t.ty){case"fl":return i;case"gf":return a;case"gs":return s;case"st":return n;case"sh":case"el":case"rc":case"sr":return r;case"tr":return e}}}}();function ShapeTransformManager(){this.sequences={},this.sequenceList=[],this.transform_key_count=0}function CVShapeData(t,e,r,i){this.styledShapes=[],this.tr=[0,0,0,0,0,0];var s=4;"rc"==e.ty?s=5:"el"==e.ty?s=6:"sr"==e.ty&&(s=7),this.sh=ShapePropertyFactory.getShapeProp(t,e,s,t);var a,n,o=r.length;for(a=0;a<o;a+=1)r[a].closed||(n={transforms:i.addTransformSequence(r[a].transforms),trNodes:[]},this.styledShapes.push(n),r[a].elements.push(n))}function BaseElement(){}function NullElement(t,e,r){this.initFrame(),this.initBaseData(t,e,r),this.initFrame(),this.initTransform(t,e,r),this.initHierarchy()}function SVGBaseElement(){}function IShapeElement(){}function ITextElement(){}function ICompElement(){}function IImageElement(t,e,r){this.assetData=e.getAssetData(t.refId),this.initElement(t,e,r),this.sourceRect={top:0,left:0,width:this.assetData.w,height:this.assetData.h}}function ISolidElement(t,e,r){this.initElement(t,e,r)}function SVGCompElement(t,e,r){this.layers=t.layers,this.supports3d=!0,this.completeLayers=!1,this.pendingElements=[],this.elements=this.layers?createSizedArray(this.layers.length):[],this.initElement(t,e,r),this.tm=t.tm?PropertyFactory.getProp(this,t.tm,0,e.frameRate,this):{_placeholder:!0}}function SVGTextElement(t,e,r){this.textSpans=[],this.renderType="svg",this.initElement(t,e,r)}function SVGShapeElement(t,e,r){this.shapes=[],this.shapesData=t.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.initElement(t,e,r),this.prevViewData=[]}function SVGTintFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");if(r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","linearRGB"),r.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),r.setAttribute("result","f1"),t.appendChild(r),(r=createNS("feColorMatrix")).setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","sRGB"),r.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),r.setAttribute("result","f2"),t.appendChild(r),this.matrixFilter=r,100!==e.effectElements[2].p.v||e.effectElements[2].p.k){var i,s=createNS("feMerge");t.appendChild(s),(i=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),s.appendChild(i),(i=createNS("feMergeNode")).setAttribute("in","f2"),s.appendChild(i)}}function SVGFillFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","sRGB"),r.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),t.appendChild(r),this.matrixFilter=r}function SVGGaussianBlurEffect(t,e){t.setAttribute("x","-100%"),t.setAttribute("y","-100%"),t.setAttribute("width","300%"),t.setAttribute("height","300%"),this.filterManager=e;var r=createNS("feGaussianBlur");t.appendChild(r),this.feGaussianBlur=r}function SVGStrokeEffect(t,e){this.initialized=!1,this.filterManager=e,this.elem=t,this.paths=[]}function SVGTritoneFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","linearRGB"),r.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),r.setAttribute("result","f1"),t.appendChild(r);var i=createNS("feComponentTransfer");i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),this.matrixFilter=i;var s=createNS("feFuncR");s.setAttribute("type","table"),i.appendChild(s),this.feFuncR=s;var a=createNS("feFuncG");a.setAttribute("type","table"),i.appendChild(a),this.feFuncG=a;var n=createNS("feFuncB");n.setAttribute("type","table"),i.appendChild(n),this.feFuncB=n}function SVGProLevelsFilter(t,e){this.filterManager=e;var r=this.filterManager.effectElements,i=createNS("feComponentTransfer");(r[10].p.k||0!==r[10].p.v||r[11].p.k||1!==r[11].p.v||r[12].p.k||1!==r[12].p.v||r[13].p.k||0!==r[13].p.v||r[14].p.k||1!==r[14].p.v)&&(this.feFuncR=this.createFeFunc("feFuncR",i)),(r[17].p.k||0!==r[17].p.v||r[18].p.k||1!==r[18].p.v||r[19].p.k||1!==r[19].p.v||r[20].p.k||0!==r[20].p.v||r[21].p.k||1!==r[21].p.v)&&(this.feFuncG=this.createFeFunc("feFuncG",i)),(r[24].p.k||0!==r[24].p.v||r[25].p.k||1!==r[25].p.v||r[26].p.k||1!==r[26].p.v||r[27].p.k||0!==r[27].p.v||r[28].p.k||1!==r[28].p.v)&&(this.feFuncB=this.createFeFunc("feFuncB",i)),(r[31].p.k||0!==r[31].p.v||r[32].p.k||1!==r[32].p.v||r[33].p.k||1!==r[33].p.v||r[34].p.k||0!==r[34].p.v||r[35].p.k||1!==r[35].p.v)&&(this.feFuncA=this.createFeFunc("feFuncA",i)),(this.feFuncR||this.feFuncG||this.feFuncB||this.feFuncA)&&(i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),i=createNS("feComponentTransfer")),(r[3].p.k||0!==r[3].p.v||r[4].p.k||1!==r[4].p.v||r[5].p.k||1!==r[5].p.v||r[6].p.k||0!==r[6].p.v||r[7].p.k||1!==r[7].p.v)&&(i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),this.feFuncRComposed=this.createFeFunc("feFuncR",i),this.feFuncGComposed=this.createFeFunc("feFuncG",i),this.feFuncBComposed=this.createFeFunc("feFuncB",i))}function SVGDropShadowEffect(t,e){t.setAttribute("x","-100%"),t.setAttribute("y","-100%"),t.setAttribute("width","400%"),t.setAttribute("height","400%"),this.filterManager=e;var r=createNS("feGaussianBlur");r.setAttribute("in","SourceAlpha"),r.setAttribute("result","drop_shadow_1"),r.setAttribute("stdDeviation","0"),this.feGaussianBlur=r,t.appendChild(r);var i=createNS("feOffset");i.setAttribute("dx","25"),i.setAttribute("dy","0"),i.setAttribute("in","drop_shadow_1"),i.setAttribute("result","drop_shadow_2"),this.feOffset=i,t.appendChild(i);var s=createNS("feFlood");s.setAttribute("flood-color","#00ff00"),s.setAttribute("flood-opacity","1"),s.setAttribute("result","drop_shadow_3"),this.feFlood=s,t.appendChild(s);var a=createNS("feComposite");a.setAttribute("in","drop_shadow_3"),a.setAttribute("in2","drop_shadow_2"),a.setAttribute("operator","in"),a.setAttribute("result","drop_shadow_4"),t.appendChild(a);var n,o=createNS("feMerge");t.appendChild(o),n=createNS("feMergeNode"),o.appendChild(n),(n=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),this.feMergeNode=n,this.feMerge=o,this.originalNodeAdded=!1,o.appendChild(n)}ShapeTransformManager.prototype={addTransformSequence:function(t){var e,r=t.length,i="_";for(e=0;e<r;e+=1)i+=t[e].transform.key+"_";var s=this.sequences[i];return s||(s={transforms:[].concat(t),finalTransform:new Matrix,_mdf:!1},this.sequences[i]=s,this.sequenceList.push(s)),s},processSequence:function(t,e){for(var r,i=0,s=t.transforms.length,a=e;i<s&&!e;){if(t.transforms[i].transform.mProps._mdf){a=!0;break}i+=1}if(a)for(t.finalTransform.reset(),i=s-1;0<=i;i-=1)r=t.transforms[i].transform.mProps.v.props,t.finalTransform.transform(r[0],r[1],r[2],r[3],r[4],r[5],r[6],r[7],r[8],r[9],r[10],r[11],r[12],r[13],r[14],r[15]);t._mdf=a},processSequences:function(t){var e,r=this.sequenceList.length;for(e=0;e<r;e+=1)this.processSequence(this.sequenceList[e],t)},getNewKey:function(){return"_"+this.transform_key_count++}},CVShapeData.prototype.setAsAnimated=SVGShapeData.prototype.setAsAnimated,BaseElement.prototype={checkMasks:function(){if(!this.data.hasMask)return!1;for(var t=0,e=this.data.masksProperties.length;t<e;){if("n"!==this.data.masksProperties[t].mode&&!1!==this.data.masksProperties[t].cl)return!0;t+=1}return!1},initExpressions:function(){this.layerInterface=LayerExpressionInterface(this),this.data.hasMask&&this.maskManager&&this.layerInterface.registerMaskInterface(this.maskManager);var t=EffectsExpressionInterface.createEffectsInterface(this,this.layerInterface);this.layerInterface.registerEffectsInterface(t),0===this.data.ty||this.data.xt?this.compInterface=CompExpressionInterface(this):4===this.data.ty?(this.layerInterface.shapeInterface=ShapeExpressionInterface(this.shapesData,this.itemsData,this.layerInterface),this.layerInterface.content=this.layerInterface.shapeInterface):5===this.data.ty&&(this.layerInterface.textInterface=TextExpressionInterface(this),this.layerInterface.text=this.layerInterface.textInterface)},setBlendMode:function(){var t=getBlendMode(this.data.bm);(this.baseElement||this.layerElement).style["mix-blend-mode"]=t},initBaseData:function(t,e,r){this.globalData=e,this.comp=r,this.data=t,this.layerId=createElementID(),this.data.sr||(this.data.sr=1),this.effectsManager=new EffectsManager(this.data,this,this.dynamicProperties)},getType:function(){return this.type},sourceRectAtTime:function(){}},NullElement.prototype.prepareFrame=function(t){this.prepareProperties(t,!0)},NullElement.prototype.renderFrame=function(){},NullElement.prototype.getBaseElement=function(){return null},NullElement.prototype.destroy=function(){},NullElement.prototype.sourceRectAtTime=function(){},NullElement.prototype.hide=function(){},extendPrototype([BaseElement,TransformElement,HierarchyElement,FrameElement],NullElement),SVGBaseElement.prototype={initRendererElement:function(){this.layerElement=createNS("g")},createContainerElements:function(){this.matteElement=createNS("g"),this.transformedElement=this.layerElement,this.maskedElement=this.layerElement,this._sizeChanged=!1;var t,e,r,i=null;if(this.data.td){if(3==this.data.td||1==this.data.td){var s=createNS("mask");s.setAttribute("id",this.layerId),s.setAttribute("mask-type",3==this.data.td?"luminance":"alpha"),s.appendChild(this.layerElement),i=s,this.globalData.defs.appendChild(s),featureSupport.maskType||1!=this.data.td||(s.setAttribute("mask-type","luminance"),t=createElementID(),e=filtersFactory.createFilter(t),this.globalData.defs.appendChild(e),e.appendChild(filtersFactory.createAlphaToLuminanceFilter()),(r=createNS("g")).appendChild(this.layerElement),i=r,s.appendChild(r),r.setAttribute("filter","url("+locationHref+"#"+t+")"))}else if(2==this.data.td){var a=createNS("mask");a.setAttribute("id",this.layerId),a.setAttribute("mask-type","alpha");var n=createNS("g");a.appendChild(n),t=createElementID(),e=filtersFactory.createFilter(t);var o=createNS("feComponentTransfer");o.setAttribute("in","SourceGraphic"),e.appendChild(o);var h=createNS("feFuncA");h.setAttribute("type","table"),h.setAttribute("tableValues","1.0 0.0"),o.appendChild(h),this.globalData.defs.appendChild(e);var l=createNS("rect");l.setAttribute("width",this.comp.data.w),l.setAttribute("height",this.comp.data.h),l.setAttribute("x","0"),l.setAttribute("y","0"),l.setAttribute("fill","#ffffff"),l.setAttribute("opacity","0"),n.setAttribute("filter","url("+locationHref+"#"+t+")"),n.appendChild(l),n.appendChild(this.layerElement),i=n,featureSupport.maskType||(a.setAttribute("mask-type","luminance"),e.appendChild(filtersFactory.createAlphaToLuminanceFilter()),r=createNS("g"),n.appendChild(l),r.appendChild(this.layerElement),i=r,n.appendChild(r)),this.globalData.defs.appendChild(a)}}else this.data.tt?(this.matteElement.appendChild(this.layerElement),i=this.matteElement,this.baseElement=this.matteElement):this.baseElement=this.layerElement;if(this.data.ln&&this.layerElement.setAttribute("id",this.data.ln),this.data.cl&&this.layerElement.setAttribute("class",this.data.cl),0===this.data.ty&&!this.data.hd){var p=createNS("clipPath"),m=createNS("path");m.setAttribute("d","M0,0 L"+this.data.w+",0 L"+this.data.w+","+this.data.h+" L0,"+this.data.h+"z");var f=createElementID();if(p.setAttribute("id",f),p.appendChild(m),this.globalData.defs.appendChild(p),this.checkMasks()){var c=createNS("g");c.setAttribute("clip-path","url("+locationHref+"#"+f+")"),c.appendChild(this.layerElement),this.transformedElement=c,i?i.appendChild(this.transformedElement):this.baseElement=this.transformedElement}else this.layerElement.setAttribute("clip-path","url("+locationHref+"#"+f+")")}0!==this.data.bm&&this.setBlendMode()},renderElement:function(){this.finalTransform._matMdf&&this.transformedElement.setAttribute("transform",this.finalTransform.mat.to2dCSS()),this.finalTransform._opMdf&&this.transformedElement.setAttribute("opacity",this.finalTransform.mProp.o.v)},destroyBaseElement:function(){this.layerElement=null,this.matteElement=null,this.maskManager.destroy()},getBaseElement:function(){return this.data.hd?null:this.baseElement},createRenderableComponents:function(){this.maskManager=new MaskElement(this.data,this,this.globalData),this.renderableEffectsManager=new SVGEffects(this)},setMatte:function(t){this.matteElement&&this.matteElement.setAttribute("mask","url("+locationHref+"#"+t+")")}},IShapeElement.prototype={addShapeToModifiers:function(t){var e,r=this.shapeModifiers.length;for(e=0;e<r;e+=1)this.shapeModifiers[e].addShape(t)},isShapeInAnimatedModifiers:function(t){for(var e=this.shapeModifiers.length;0<e;)if(this.shapeModifiers[0].isAnimatedWithShape(t))return!0;return!1},renderModifiers:function(){if(this.shapeModifiers.length){var t,e=this.shapes.length;for(t=0;t<e;t+=1)this.shapes[t].sh.reset();for(t=(e=this.shapeModifiers.length)-1;0<=t;t-=1)this.shapeModifiers[t].processShapes(this._isFirstFrame)}},lcEnum:{1:"butt",2:"round",3:"square"},ljEnum:{1:"miter",2:"round",3:"bevel"},searchProcessedElement:function(t){for(var e=this.processedElements,r=0,i=e.length;r<i;){if(e[r].elem===t)return e[r].pos;r+=1}return 0},addProcessedElement:function(t,e){for(var r=this.processedElements,i=r.length;i;)if(r[i-=1].elem===t)return void(r[i].pos=e);r.push(new ProcessedElement(t,e))},prepareFrame:function(t){this.prepareRenderableFrame(t),this.prepareProperties(t,this.isInRange)}},ITextElement.prototype.initElement=function(t,e,r){this.lettersChangedFlag=!0,this.initFrame(),this.initBaseData(t,e,r),this.textProperty=new TextProperty(this,t.t,this.dynamicProperties),this.textAnimator=new TextAnimatorProperty(t.t,this.renderType,this),this.initTransform(t,e,r),this.initHierarchy(),this.initRenderable(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),this.createContent(),this.hide(),this.textAnimator.searchProperties(this.dynamicProperties)},ITextElement.prototype.prepareFrame=function(t){this._mdf=!1,this.prepareRenderableFrame(t),this.prepareProperties(t,this.isInRange),(this.textProperty._mdf||this.textProperty._isFirstFrame)&&(this.buildNewText(),this.textProperty._isFirstFrame=!1,this.textProperty._mdf=!1)},ITextElement.prototype.createPathShape=function(t,e){var r,i,s=e.length,a="";for(r=0;r<s;r+=1)i=e[r].ks.k,a+=buildShapeString(i,i.i.length,!0,t);return a},ITextElement.prototype.updateDocumentData=function(t,e){this.textProperty.updateDocumentData(t,e)},ITextElement.prototype.canResizeFont=function(t){this.textProperty.canResizeFont(t)},ITextElement.prototype.setMinimumFontSize=function(t){this.textProperty.setMinimumFontSize(t)},ITextElement.prototype.applyTextPropertiesToMatrix=function(t,e,r,i,s){switch(t.ps&&e.translate(t.ps[0],t.ps[1]+t.ascent,0),e.translate(0,-t.ls,0),t.j){case 1:e.translate(t.justifyOffset+(t.boxWidth-t.lineWidths[r]),0,0);break;case 2:e.translate(t.justifyOffset+(t.boxWidth-t.lineWidths[r])/2,0,0)}e.translate(i,s,0)},ITextElement.prototype.buildColor=function(t){return"rgb("+Math.round(255*t[0])+","+Math.round(255*t[1])+","+Math.round(255*t[2])+")"},ITextElement.prototype.emptyProp=new LetterProps,ITextElement.prototype.destroy=function(){},extendPrototype([BaseElement,TransformElement,HierarchyElement,FrameElement,RenderableDOMElement],ICompElement),ICompElement.prototype.initElement=function(t,e,r){this.initFrame(),this.initBaseData(t,e,r),this.initTransform(t,e,r),this.initRenderable(),this.initHierarchy(),this.initRendererElement(),this.createContainerElements(),this.createRenderableComponents(),!this.data.xt&&e.progressiveLoad||this.buildAllItems(),this.hide()},ICompElement.prototype.prepareFrame=function(t){if(this._mdf=!1,this.prepareRenderableFrame(t),this.prepareProperties(t,this.isInRange),this.isInRange||this.data.xt){if(this.tm._placeholder)this.renderedFrame=t/this.data.sr;else{var e=this.tm.v;e===this.data.op&&(e=this.data.op-1),this.renderedFrame=e}var r,i=this.elements.length;for(this.completeLayers||this.checkLayers(this.renderedFrame),r=i-1;0<=r;r-=1)(this.completeLayers||this.elements[r])&&(this.elements[r].prepareFrame(this.renderedFrame-this.layers[r].st),this.elements[r]._mdf&&(this._mdf=!0))}},ICompElement.prototype.renderInnerContent=function(){var t,e=this.layers.length;for(t=0;t<e;t+=1)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()},ICompElement.prototype.setElements=function(t){this.elements=t},ICompElement.prototype.getElements=function(){return this.elements},ICompElement.prototype.destroyElements=function(){var t,e=this.layers.length;for(t=0;t<e;t+=1)this.elements[t]&&this.elements[t].destroy()},ICompElement.prototype.destroy=function(){this.destroyElements(),this.destroyBaseElement()},extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement],IImageElement),IImageElement.prototype.createContent=function(){var t=this.globalData.getAssetsPath(this.assetData);this.innerElem=createNS("image"),this.innerElem.setAttribute("width",this.assetData.w+"px"),this.innerElem.setAttribute("height",this.assetData.h+"px"),this.innerElem.setAttribute("preserveAspectRatio",this.assetData.pr||this.globalData.renderConfig.imagePreserveAspectRatio),this.innerElem.setAttributeNS("http://www.w3.org/1999/xlink","href",t),this.layerElement.appendChild(this.innerElem)},IImageElement.prototype.sourceRectAtTime=function(){return this.sourceRect},extendPrototype([IImageElement],ISolidElement),ISolidElement.prototype.createContent=function(){var t=createNS("rect");t.setAttribute("width",this.data.sw),t.setAttribute("height",this.data.sh),t.setAttribute("fill",this.data.sc),this.layerElement.appendChild(t)},extendPrototype([SVGRenderer,ICompElement,SVGBaseElement],SVGCompElement),extendPrototype([BaseElement,TransformElement,SVGBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement],SVGTextElement),SVGTextElement.prototype.createContent=function(){this.data.singleShape&&!this.globalData.fontManager.chars&&(this.textContainer=createNS("text"))},SVGTextElement.prototype.buildTextContents=function(t){for(var e=0,r=t.length,i=[],s="";e<r;)t[e]===String.fromCharCode(13)||t[e]===String.fromCharCode(3)?(i.push(s),s=""):s+=t[e],e+=1;return i.push(s),i},SVGTextElement.prototype.buildNewText=function(){var t,e,r=this.textProperty.currentData;this.renderedLetters=createSizedArray(r?r.l.length:0),r.fc?this.layerElement.setAttribute("fill",this.buildColor(r.fc)):this.layerElement.setAttribute("fill","rgba(0,0,0,0)"),r.sc&&(this.layerElement.setAttribute("stroke",this.buildColor(r.sc)),this.layerElement.setAttribute("stroke-width",r.sw)),this.layerElement.setAttribute("font-size",r.finalSize);var i=this.globalData.fontManager.getFontByName(r.f);if(i.fClass)this.layerElement.setAttribute("class",i.fClass);else{this.layerElement.setAttribute("font-family",i.fFamily);var s=r.fWeight,a=r.fStyle;this.layerElement.setAttribute("font-style",a),this.layerElement.setAttribute("font-weight",s)}this.layerElement.setAttribute("aria-label",r.t);var n,o=r.l||[],h=!!this.globalData.fontManager.chars;e=o.length;var l,p=this.mHelper,m="",f=this.data.singleShape,c=0,d=0,u=!0,y=r.tr/1e3*r.finalSize;if(!f||h||r.sz){var g,v,b=this.textSpans.length;for(t=0;t<e;t+=1)h&&f&&0!==t||(n=t<b?this.textSpans[t]:createNS(h?"path":"text"),b<=t&&(n.setAttribute("stroke-linecap","butt"),n.setAttribute("stroke-linejoin","round"),n.setAttribute("stroke-miterlimit","4"),this.textSpans[t]=n,this.layerElement.appendChild(n)),n.style.display="inherit"),p.reset(),p.scale(r.finalSize/100,r.finalSize/100),f&&(o[t].n&&(c=-y,d+=r.yOffset,d+=u?1:0,u=!1),this.applyTextPropertiesToMatrix(r,p,o[t].line,c,d),c+=o[t].l||0,c+=y),h?(l=(g=(v=this.globalData.fontManager.getCharData(r.finalText[t],i.fStyle,this.globalData.fontManager.getFontByName(r.f).fFamily))&&v.data||{}).shapes?g.shapes[0].it:[],f?m+=this.createPathShape(p,l):n.setAttribute("d",this.createPathShape(p,l))):(f&&n.setAttribute("transform","translate("+p.props[12]+","+p.props[13]+")"),n.textContent=o[t].val,n.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"));f&&n&&n.setAttribute("d",m)}else{var E=this.textContainer,x="start";switch(r.j){case 1:x="end";break;case 2:x="middle"}E.setAttribute("text-anchor",x),E.setAttribute("letter-spacing",y);var P=this.buildTextContents(r.finalText);for(e=P.length,d=r.ps?r.ps[1]+r.ascent:0,t=0;t<e;t+=1)(n=this.textSpans[t]||createNS("tspan")).textContent=P[t],n.setAttribute("x",0),n.setAttribute("y",d),n.style.display="inherit",E.appendChild(n),this.textSpans[t]=n,d+=r.finalLineHeight;this.layerElement.appendChild(E)}for(;t<this.textSpans.length;)this.textSpans[t].style.display="none",t+=1;this._sizeChanged=!0},SVGTextElement.prototype.sourceRectAtTime=function(t){if(this.prepareFrame(this.comp.renderedFrame-this.data.st),this.renderInnerContent(),this._sizeChanged){this._sizeChanged=!1;var e=this.layerElement.getBBox();this.bbox={top:e.y,left:e.x,width:e.width,height:e.height}}return this.bbox},SVGTextElement.prototype.renderInnerContent=function(){if(!this.data.singleShape&&(this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag),this.lettersChangedFlag||this.textAnimator.lettersChangedFlag)){var t,e;this._sizeChanged=!0;var r,i,s=this.textAnimator.renderedLetters,a=this.textProperty.currentData.l;for(e=a.length,t=0;t<e;t+=1)a[t].n||(r=s[t],i=this.textSpans[t],r._mdf.m&&i.setAttribute("transform",r.m),r._mdf.o&&i.setAttribute("opacity",r.o),r._mdf.sw&&i.setAttribute("stroke-width",r.sw),r._mdf.sc&&i.setAttribute("stroke",r.sc),r._mdf.fc&&i.setAttribute("fill",r.fc))}},extendPrototype([BaseElement,TransformElement,SVGBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableDOMElement],SVGShapeElement),SVGShapeElement.prototype.initSecondaryElement=function(){},SVGShapeElement.prototype.identityMatrix=new Matrix,SVGShapeElement.prototype.buildExpressionInterface=function(){},SVGShapeElement.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes()},SVGShapeElement.prototype.filterUniqueShapes=function(){var t,e,r,i,s=this.shapes.length,a=this.stylesList.length,n=[],o=!1;for(r=0;r<a;r+=1){for(i=this.stylesList[r],o=!1,t=n.length=0;t<s;t+=1)-1!==(e=this.shapes[t]).styles.indexOf(i)&&(n.push(e),o=e._isAnimated||o);1<n.length&&o&&this.setShapesAsAnimated(n)}},SVGShapeElement.prototype.setShapesAsAnimated=function(t){var e,r=t.length;for(e=0;e<r;e+=1)t[e].setAsAnimated()},SVGShapeElement.prototype.createStyleElement=function(t,e){var r,i=new SVGStyleData(t,e),s=i.pElem;if("st"===t.ty)r=new SVGStrokeStyleData(this,t,i);else if("fl"===t.ty)r=new SVGFillStyleData(this,t,i);else if("gf"===t.ty||"gs"===t.ty){r=new("gf"===t.ty?SVGGradientFillStyleData:SVGGradientStrokeStyleData)(this,t,i),this.globalData.defs.appendChild(r.gf),r.maskId&&(this.globalData.defs.appendChild(r.ms),this.globalData.defs.appendChild(r.of),s.setAttribute("mask","url("+locationHref+"#"+r.maskId+")"))}return"st"!==t.ty&&"gs"!==t.ty||(s.setAttribute("stroke-linecap",this.lcEnum[t.lc]||"round"),s.setAttribute("stroke-linejoin",this.ljEnum[t.lj]||"round"),s.setAttribute("fill-opacity","0"),1===t.lj&&s.setAttribute("stroke-miterlimit",t.ml)),2===t.r&&s.setAttribute("fill-rule","evenodd"),t.ln&&s.setAttribute("id",t.ln),t.cl&&s.setAttribute("class",t.cl),t.bm&&(s.style["mix-blend-mode"]=getBlendMode(t.bm)),this.stylesList.push(i),this.addToAnimatedContents(t,r),r},SVGShapeElement.prototype.createGroupElement=function(t){var e=new ShapeGroupData;return t.ln&&e.gr.setAttribute("id",t.ln),t.cl&&e.gr.setAttribute("class",t.cl),t.bm&&(e.gr.style["mix-blend-mode"]=getBlendMode(t.bm)),e},SVGShapeElement.prototype.createTransformElement=function(t,e){var r=TransformPropertyFactory.getTransformProperty(this,t,this),i=new SVGTransformData(r,r.o,e);return this.addToAnimatedContents(t,i),i},SVGShapeElement.prototype.createShapeElement=function(t,e,r){var i=4;"rc"===t.ty?i=5:"el"===t.ty?i=6:"sr"===t.ty&&(i=7);var s=new SVGShapeData(e,r,ShapePropertyFactory.getShapeProp(this,t,i,this));return this.shapes.push(s),this.addShapeToModifiers(s),this.addToAnimatedContents(t,s),s},SVGShapeElement.prototype.addToAnimatedContents=function(t,e){for(var r=0,i=this.animatedContents.length;r<i;){if(this.animatedContents[r].element===e)return;r+=1}this.animatedContents.push({fn:SVGElementsRenderer.createRenderFunction(t),element:e,data:t})},SVGShapeElement.prototype.setElementStyles=function(t){var e,r=t.styles,i=this.stylesList.length;for(e=0;e<i;e+=1)this.stylesList[e].closed||r.push(this.stylesList[e])},SVGShapeElement.prototype.reloadShapes=function(){this._isFirstFrame=!0;var t,e=this.itemsData.length;for(t=0;t<e;t+=1)this.prevViewData[t]=this.itemsData[t];for(this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes(),e=this.dynamicProperties.length,t=0;t<e;t+=1)this.dynamicProperties[t].getValue();this.renderModifiers()},SVGShapeElement.prototype.searchShapes=function(t,e,r,i,s,a,n){var o,h,l,p,m,f,c=[].concat(a),d=t.length-1,u=[],y=[];for(o=d;0<=o;o-=1){if((f=this.searchProcessedElement(t[o]))?e[o]=r[f-1]:t[o]._render=n,"fl"==t[o].ty||"st"==t[o].ty||"gf"==t[o].ty||"gs"==t[o].ty)f?e[o].style.closed=!1:e[o]=this.createStyleElement(t[o],s),t[o]._render&&i.appendChild(e[o].style.pElem),u.push(e[o].style);else if("gr"==t[o].ty){if(f)for(l=e[o].it.length,h=0;h<l;h+=1)e[o].prevViewData[h]=e[o].it[h];else e[o]=this.createGroupElement(t[o]);this.searchShapes(t[o].it,e[o].it,e[o].prevViewData,e[o].gr,s+1,c,n),t[o]._render&&i.appendChild(e[o].gr)}else"tr"==t[o].ty?(f||(e[o]=this.createTransformElement(t[o],i)),p=e[o].transform,c.push(p)):"sh"==t[o].ty||"rc"==t[o].ty||"el"==t[o].ty||"sr"==t[o].ty?(f||(e[o]=this.createShapeElement(t[o],c,s)),this.setElementStyles(e[o])):"tm"==t[o].ty||"rd"==t[o].ty||"ms"==t[o].ty?(f?(m=e[o]).closed=!1:((m=ShapeModifiers.getModifier(t[o].ty)).init(this,t[o]),e[o]=m,this.shapeModifiers.push(m)),y.push(m)):"rp"==t[o].ty&&(f?(m=e[o]).closed=!0:(m=ShapeModifiers.getModifier(t[o].ty),(e[o]=m).init(this,t,o,e),this.shapeModifiers.push(m),n=!1),y.push(m));this.addProcessedElement(t[o],o+1)}for(d=u.length,o=0;o<d;o+=1)u[o].closed=!0;for(d=y.length,o=0;o<d;o+=1)y[o].closed=!0},SVGShapeElement.prototype.renderInnerContent=function(){this.renderModifiers();var t,e=this.stylesList.length;for(t=0;t<e;t+=1)this.stylesList[t].reset();for(this.renderShape(),t=0;t<e;t+=1)(this.stylesList[t]._mdf||this._isFirstFrame)&&(this.stylesList[t].msElem&&(this.stylesList[t].msElem.setAttribute("d",this.stylesList[t].d),this.stylesList[t].d="M0 0"+this.stylesList[t].d),this.stylesList[t].pElem.setAttribute("d",this.stylesList[t].d||"M0 0"))},SVGShapeElement.prototype.renderShape=function(){var t,e,r=this.animatedContents.length;for(t=0;t<r;t+=1)e=this.animatedContents[t],(this._isFirstFrame||e.element._isAnimated)&&!0!==e.data&&e.fn(e.data,e.element,this._isFirstFrame)},SVGShapeElement.prototype.destroy=function(){this.destroyBaseElement(),this.shapesData=null,this.itemsData=null},SVGTintFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=this.filterManager.effectElements[0].p.v,r=this.filterManager.effectElements[1].p.v,i=this.filterManager.effectElements[2].p.v/100;this.matrixFilter.setAttribute("values",r[0]-e[0]+" 0 0 0 "+e[0]+" "+(r[1]-e[1])+" 0 0 0 "+e[1]+" "+(r[2]-e[2])+" 0 0 0 "+e[2]+" 0 0 0 "+i+" 0")}},SVGFillFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=this.filterManager.effectElements[2].p.v,r=this.filterManager.effectElements[6].p.v;this.matrixFilter.setAttribute("values","0 0 0 0 "+e[0]+" 0 0 0 0 "+e[1]+" 0 0 0 0 "+e[2]+" 0 0 0 "+r+" 0")}},SVGGaussianBlurEffect.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=.3*this.filterManager.effectElements[0].p.v,r=this.filterManager.effectElements[1].p.v,i=3==r?0:e,s=2==r?0:e;this.feGaussianBlur.setAttribute("stdDeviation",i+" "+s);var a=1==this.filterManager.effectElements[2].p.v?"wrap":"duplicate";this.feGaussianBlur.setAttribute("edgeMode",a)}},SVGStrokeEffect.prototype.initialize=function(){var t,e,r,i,s=this.elem.layerElement.children||this.elem.layerElement.childNodes;for(1===this.filterManager.effectElements[1].p.v?(i=this.elem.maskManager.masksProperties.length,r=0):i=(r=this.filterManager.effectElements[0].p.v-1)+1,(e=createNS("g")).setAttribute("fill","none"),e.setAttribute("stroke-linecap","round"),e.setAttribute("stroke-dashoffset",1);r<i;r+=1)t=createNS("path"),e.appendChild(t),this.paths.push({p:t,m:r});if(3===this.filterManager.effectElements[10].p.v){var a=createNS("mask"),n=createElementID();a.setAttribute("id",n),a.setAttribute("mask-type","alpha"),a.appendChild(e),this.elem.globalData.defs.appendChild(a);var o=createNS("g");for(o.setAttribute("mask","url("+locationHref+"#"+n+")");s[0];)o.appendChild(s[0]);this.elem.layerElement.appendChild(o),this.masker=a,e.setAttribute("stroke","#fff")}else if(1===this.filterManager.effectElements[10].p.v||2===this.filterManager.effectElements[10].p.v){if(2===this.filterManager.effectElements[10].p.v)for(s=this.elem.layerElement.children||this.elem.layerElement.childNodes;s.length;)this.elem.layerElement.removeChild(s[0]);this.elem.layerElement.appendChild(e),this.elem.layerElement.removeAttribute("mask"),e.setAttribute("stroke","#fff")}this.initialized=!0,this.pathMasker=e},SVGStrokeEffect.prototype.renderFrame=function(t){this.initialized||this.initialize();var e,r,i,s=this.paths.length;for(e=0;e<s;e+=1)if(-1!==this.paths[e].m&&(r=this.elem.maskManager.viewData[this.paths[e].m],i=this.paths[e].p,(t||this.filterManager._mdf||r.prop._mdf)&&i.setAttribute("d",r.lastPath),t||this.filterManager.effectElements[9].p._mdf||this.filterManager.effectElements[4].p._mdf||this.filterManager.effectElements[7].p._mdf||this.filterManager.effectElements[8].p._mdf||r.prop._mdf)){var a;if(0!==this.filterManager.effectElements[7].p.v||100!==this.filterManager.effectElements[8].p.v){var n=Math.min(this.filterManager.effectElements[7].p.v,this.filterManager.effectElements[8].p.v)/100,o=Math.max(this.filterManager.effectElements[7].p.v,this.filterManager.effectElements[8].p.v)/100,h=i.getTotalLength();a="0 0 0 "+h*n+" ";var l,p=h*(o-n),m=1+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v/100,f=Math.floor(p/m);for(l=0;l<f;l+=1)a+="1 "+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v/100+" ";a+="0 "+10*h+" 0 0"}else a="1 "+2*this.filterManager.effectElements[4].p.v*this.filterManager.effectElements[9].p.v/100;i.setAttribute("stroke-dasharray",a)}if((t||this.filterManager.effectElements[4].p._mdf)&&this.pathMasker.setAttribute("stroke-width",2*this.filterManager.effectElements[4].p.v),(t||this.filterManager.effectElements[6].p._mdf)&&this.pathMasker.setAttribute("opacity",this.filterManager.effectElements[6].p.v),(1===this.filterManager.effectElements[10].p.v||2===this.filterManager.effectElements[10].p.v)&&(t||this.filterManager.effectElements[3].p._mdf)){var c=this.filterManager.effectElements[3].p.v;this.pathMasker.setAttribute("stroke","rgb("+bm_floor(255*c[0])+","+bm_floor(255*c[1])+","+bm_floor(255*c[2])+")")}},SVGTritoneFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=this.filterManager.effectElements[0].p.v,r=this.filterManager.effectElements[1].p.v,i=this.filterManager.effectElements[2].p.v,s=i[0]+" "+r[0]+" "+e[0],a=i[1]+" "+r[1]+" "+e[1],n=i[2]+" "+r[2]+" "+e[2];this.feFuncR.setAttribute("tableValues",s),this.feFuncG.setAttribute("tableValues",a),this.feFuncB.setAttribute("tableValues",n)}},SVGProLevelsFilter.prototype.createFeFunc=function(t,e){var r=createNS(t);return r.setAttribute("type","table"),e.appendChild(r),r},SVGProLevelsFilter.prototype.getTableValue=function(t,e,r,i,s){for(var a,n,o=0,h=Math.min(t,e),l=Math.max(t,e),p=Array.call(null,{length:256}),m=0,f=s-i,c=e-t;o<=256;)n=(a=o/256)<=h?c<0?s:i:l<=a?c<0?i:s:i+f*Math.pow((a-t)/c,1/r),p[m++]=n,o+=256/255;return p.join(" ")},SVGProLevelsFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e,r=this.filterManager.effectElements;this.feFuncRComposed&&(t||r[3].p._mdf||r[4].p._mdf||r[5].p._mdf||r[6].p._mdf||r[7].p._mdf)&&(e=this.getTableValue(r[3].p.v,r[4].p.v,r[5].p.v,r[6].p.v,r[7].p.v),this.feFuncRComposed.setAttribute("tableValues",e),this.feFuncGComposed.setAttribute("tableValues",e),this.feFuncBComposed.setAttribute("tableValues",e)),this.feFuncR&&(t||r[10].p._mdf||r[11].p._mdf||r[12].p._mdf||r[13].p._mdf||r[14].p._mdf)&&(e=this.getTableValue(r[10].p.v,r[11].p.v,r[12].p.v,r[13].p.v,r[14].p.v),this.feFuncR.setAttribute("tableValues",e)),this.feFuncG&&(t||r[17].p._mdf||r[18].p._mdf||r[19].p._mdf||r[20].p._mdf||r[21].p._mdf)&&(e=this.getTableValue(r[17].p.v,r[18].p.v,r[19].p.v,r[20].p.v,r[21].p.v),this.feFuncG.setAttribute("tableValues",e)),this.feFuncB&&(t||r[24].p._mdf||r[25].p._mdf||r[26].p._mdf||r[27].p._mdf||r[28].p._mdf)&&(e=this.getTableValue(r[24].p.v,r[25].p.v,r[26].p.v,r[27].p.v,r[28].p.v),this.feFuncB.setAttribute("tableValues",e)),this.feFuncA&&(t||r[31].p._mdf||r[32].p._mdf||r[33].p._mdf||r[34].p._mdf||r[35].p._mdf)&&(e=this.getTableValue(r[31].p.v,r[32].p.v,r[33].p.v,r[34].p.v,r[35].p.v),this.feFuncA.setAttribute("tableValues",e))}},SVGDropShadowEffect.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){if((t||this.filterManager.effectElements[4].p._mdf)&&this.feGaussianBlur.setAttribute("stdDeviation",this.filterManager.effectElements[4].p.v/4),t||this.filterManager.effectElements[0].p._mdf){var e=this.filterManager.effectElements[0].p.v;this.feFlood.setAttribute("flood-color",rgbToHex(Math.round(255*e[0]),Math.round(255*e[1]),Math.round(255*e[2])))}if((t||this.filterManager.effectElements[1].p._mdf)&&this.feFlood.setAttribute("flood-opacity",this.filterManager.effectElements[1].p.v/255),t||this.filterManager.effectElements[2].p._mdf||this.filterManager.effectElements[3].p._mdf){var r=this.filterManager.effectElements[3].p.v,i=(this.filterManager.effectElements[2].p.v-90)*degToRads,s=r*Math.cos(i),a=r*Math.sin(i);this.feOffset.setAttribute("dx",s),this.feOffset.setAttribute("dy",a)}}};var _svgMatteSymbols=[];function SVGMatte3Effect(t,e,r){this.initialized=!1,this.filterManager=e,this.filterElem=t,(this.elem=r).matteElement=createNS("g"),r.matteElement.appendChild(r.layerElement),r.matteElement.appendChild(r.transformedElement),r.baseElement=r.matteElement}function SVGEffects(t){var e,r,i=t.data.ef?t.data.ef.length:0,s=createElementID(),a=filtersFactory.createFilter(s),n=0;for(this.filters=[],e=0;e<i;e+=1)r=null,20===t.data.ef[e].ty?(n+=1,r=new SVGTintFilter(a,t.effectsManager.effectElements[e])):21===t.data.ef[e].ty?(n+=1,r=new SVGFillFilter(a,t.effectsManager.effectElements[e])):22===t.data.ef[e].ty?r=new SVGStrokeEffect(t,t.effectsManager.effectElements[e]):23===t.data.ef[e].ty?(n+=1,r=new SVGTritoneFilter(a,t.effectsManager.effectElements[e])):24===t.data.ef[e].ty?(n+=1,r=new SVGProLevelsFilter(a,t.effectsManager.effectElements[e])):25===t.data.ef[e].ty?(n+=1,r=new SVGDropShadowEffect(a,t.effectsManager.effectElements[e])):28===t.data.ef[e].ty?r=new SVGMatte3Effect(a,t.effectsManager.effectElements[e],t):29===t.data.ef[e].ty&&(n+=1,r=new SVGGaussianBlurEffect(a,t.effectsManager.effectElements[e])),r&&this.filters.push(r);n&&(t.globalData.defs.appendChild(a),t.layerElement.setAttribute("filter","url("+locationHref+"#"+s+")")),this.filters.length&&t.addRenderableComponent(this)}function CVContextData(){this.saved=[],this.cArrPos=0,this.cTr=new Matrix,this.cO=1;var t;for(this.savedOp=createTypedArray("float32",15),t=0;t<15;t+=1)this.saved[t]=createTypedArray("float32",16);this._length=15}function CVBaseElement(){}function CVImageElement(t,e,r){this.assetData=e.getAssetData(t.refId),this.img=e.imageLoader.getImage(this.assetData),this.initElement(t,e,r)}function CVCompElement(t,e,r){this.completeLayers=!1,this.layers=t.layers,this.pendingElements=[],this.elements=createSizedArray(this.layers.length),this.initElement(t,e,r),this.tm=t.tm?PropertyFactory.getProp(this,t.tm,0,e.frameRate,this):{_placeholder:!0}}function CVMaskElement(t,e){this.data=t,this.element=e,this.masksProperties=this.data.masksProperties||[],this.viewData=createSizedArray(this.masksProperties.length);var r,i=this.masksProperties.length,s=!1;for(r=0;r<i;r++)"n"!==this.masksProperties[r].mode&&(s=!0),this.viewData[r]=ShapePropertyFactory.getShapeProp(this.element,this.masksProperties[r],3);(this.hasMasks=s)&&this.element.addRenderableComponent(this)}function CVShapeElement(t,e,r){this.shapes=[],this.shapesData=t.shapes,this.stylesList=[],this.itemsData=[],this.prevViewData=[],this.shapeModifiers=[],this.processedElements=[],this.transformsManager=new ShapeTransformManager,this.initElement(t,e,r)}function CVSolidElement(t,e,r){this.initElement(t,e,r)}function CVTextElement(t,e,r){this.textSpans=[],this.yOffset=0,this.fillColorAnim=!1,this.strokeColorAnim=!1,this.strokeWidthAnim=!1,this.stroke=!1,this.fill=!1,this.justifyOffset=0,this.currentRender=null,this.renderType="canvas",this.values={fill:"rgba(0,0,0,0)",stroke:"rgba(0,0,0,0)",sWidth:0,fValue:""},this.initElement(t,e,r)}function CVEffects(){}function HBaseElement(t,e,r){}function HSolidElement(t,e,r){this.initElement(t,e,r)}function HCompElement(t,e,r){this.layers=t.layers,this.supports3d=!t.hasMask,this.completeLayers=!1,this.pendingElements=[],this.elements=this.layers?createSizedArray(this.layers.length):[],this.initElement(t,e,r),this.tm=t.tm?PropertyFactory.getProp(this,t.tm,0,e.frameRate,this):{_placeholder:!0}}function HShapeElement(t,e,r){this.shapes=[],this.shapesData=t.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.shapesContainer=createNS("g"),this.initElement(t,e,r),this.prevViewData=[],this.currentBBox={x:999999,y:-999999,h:0,w:0}}function HTextElement(t,e,r){this.textSpans=[],this.textPaths=[],this.currentBBox={x:999999,y:-999999,h:0,w:0},this.renderType="svg",this.isMasked=!1,this.initElement(t,e,r)}function HImageElement(t,e,r){this.assetData=e.getAssetData(t.refId),this.initElement(t,e,r)}function HCameraElement(t,e,r){this.initFrame(),this.initBaseData(t,e,r),this.initHierarchy();var i=PropertyFactory.getProp;if(this.pe=i(this,t.pe,0,0,this),t.ks.p.s?(this.px=i(this,t.ks.p.x,1,0,this),this.py=i(this,t.ks.p.y,1,0,this),this.pz=i(this,t.ks.p.z,1,0,this)):this.p=i(this,t.ks.p,1,0,this),t.ks.a&&(this.a=i(this,t.ks.a,1,0,this)),t.ks.or.k.length&&t.ks.or.k[0].to){var s,a=t.ks.or.k.length;for(s=0;s<a;s+=1)t.ks.or.k[s].to=null,t.ks.or.k[s].ti=null}this.or=i(this,t.ks.or,1,degToRads,this),this.or.sh=!0,this.rx=i(this,t.ks.rx,0,degToRads,this),this.ry=i(this,t.ks.ry,0,degToRads,this),this.rz=i(this,t.ks.rz,0,degToRads,this),this.mat=new Matrix,this._prevMat=new Matrix,this._isFirstFrame=!0,this.finalTransform={mProp:this}}function HEffects(){}SVGMatte3Effect.prototype.findSymbol=function(t){for(var e=0,r=_svgMatteSymbols.length;e<r;){if(_svgMatteSymbols[e]===t)return _svgMatteSymbols[e];e+=1}return null},SVGMatte3Effect.prototype.replaceInParent=function(t,e){var r=t.layerElement.parentNode;if(r){for(var i,s=r.children,a=0,n=s.length;a<n&&s[a]!==t.layerElement;)a+=1;a<=n-2&&(i=s[a+1]);var o=createNS("use");o.setAttribute("href","#"+e),i?r.insertBefore(o,i):r.appendChild(o)}},SVGMatte3Effect.prototype.setElementAsMask=function(t,e){if(!this.findSymbol(e)){var r=createElementID(),i=createNS("mask");i.setAttribute("id",e.layerId),i.setAttribute("mask-type","alpha"),_svgMatteSymbols.push(e);var s=t.globalData.defs;s.appendChild(i);var a=createNS("symbol");a.setAttribute("id",r),this.replaceInParent(e,r),a.appendChild(e.layerElement),s.appendChild(a);var n=createNS("use");n.setAttribute("href","#"+r),i.appendChild(n),e.data.hd=!1,e.show()}t.setMatte(e.layerId)},SVGMatte3Effect.prototype.initialize=function(){for(var t=this.filterManager.effectElements[0].p.v,e=this.elem.comp.elements,r=0,i=e.length;r<i;)e[r]&&e[r].data.ind===t&&this.setElementAsMask(this.elem,e[r]),r+=1;this.initialized=!0},SVGMatte3Effect.prototype.renderFrame=function(){this.initialized||this.initialize()},SVGEffects.prototype.renderFrame=function(t){var e,r=this.filters.length;for(e=0;e<r;e+=1)this.filters[e].renderFrame(t)},CVContextData.prototype.duplicate=function(){var t=2*this._length,e=this.savedOp;this.savedOp=createTypedArray("float32",t),this.savedOp.set(e);var r=0;for(r=this._length;r<t;r+=1)this.saved[r]=createTypedArray("float32",16);this._length=t},CVContextData.prototype.reset=function(){this.cArrPos=0,this.cTr.reset(),this.cO=1},CVBaseElement.prototype={createElements:function(){},initRendererElement:function(){},createContainerElements:function(){this.canvasContext=this.globalData.canvasContext,this.renderableEffectsManager=new CVEffects(this)},createContent:function(){},setBlendMode:function(){var t=this.globalData;if(t.blendMode!==this.data.bm){t.blendMode=this.data.bm;var e=getBlendMode(this.data.bm);t.canvasContext.globalCompositeOperation=e}},createRenderableComponents:function(){this.maskManager=new CVMaskElement(this.data,this)},hideElement:function(){this.hidden||this.isInRange&&!this.isTransparent||(this.hidden=!0)},showElement:function(){this.isInRange&&!this.isTransparent&&(this.hidden=!1,this._isFirstFrame=!0,this.maskManager._isFirstFrame=!0)},renderFrame:function(){if(!this.hidden&&!this.data.hd){this.renderTransform(),this.renderRenderable(),this.setBlendMode();var t=0===this.data.ty;this.globalData.renderer.save(t),this.globalData.renderer.ctxTransform(this.finalTransform.mat.props),this.globalData.renderer.ctxOpacity(this.finalTransform.mProp.o.v),this.renderInnerContent(),this.globalData.renderer.restore(t),this.maskManager.hasMasks&&this.globalData.renderer.restore(!0),this._isFirstFrame&&(this._isFirstFrame=!1)}},destroy:function(){this.canvasContext=null,this.data=null,this.globalData=null,this.maskManager.destroy()},mHelper:new Matrix},CVBaseElement.prototype.hide=CVBaseElement.prototype.hideElement,CVBaseElement.prototype.show=CVBaseElement.prototype.showElement,extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement],CVImageElement),CVImageElement.prototype.initElement=SVGShapeElement.prototype.initElement,CVImageElement.prototype.prepareFrame=IImageElement.prototype.prepareFrame,CVImageElement.prototype.createContent=function(){if(this.img.width&&(this.assetData.w!==this.img.width||this.assetData.h!==this.img.height)){var t=createTag("canvas");t.width=this.assetData.w,t.height=this.assetData.h;var e,r,i=t.getContext("2d"),s=this.img.width,a=this.img.height,n=s/a,o=this.assetData.w/this.assetData.h,h=this.assetData.pr||this.globalData.renderConfig.imagePreserveAspectRatio;o<n&&"xMidYMid slice"===h||n<o&&"xMidYMid slice"!==h?e=(r=a)*o:r=(e=s)/o,i.drawImage(this.img,(s-e)/2,(a-r)/2,e,r,0,0,this.assetData.w,this.assetData.h),this.img=t}},CVImageElement.prototype.renderInnerContent=function(t){this.canvasContext.drawImage(this.img,0,0)},CVImageElement.prototype.destroy=function(){this.img=null},extendPrototype([CanvasRenderer,ICompElement,CVBaseElement],CVCompElement),CVCompElement.prototype.renderInnerContent=function(){var t,e=this.canvasContext;for(e.beginPath(),e.moveTo(0,0),e.lineTo(this.data.w,0),e.lineTo(this.data.w,this.data.h),e.lineTo(0,this.data.h),e.lineTo(0,0),e.clip(),t=this.layers.length-1;0<=t;t-=1)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()},CVCompElement.prototype.destroy=function(){var t;for(t=this.layers.length-1;0<=t;t-=1)this.elements[t]&&this.elements[t].destroy();this.layers=null,this.elements=null},CVMaskElement.prototype.renderFrame=function(){if(this.hasMasks){var t,e,r,i,s=this.element.finalTransform.mat,a=this.element.canvasContext,n=this.masksProperties.length;for(a.beginPath(),t=0;t<n;t++)if("n"!==this.masksProperties[t].mode){this.masksProperties[t].inv&&(a.moveTo(0,0),a.lineTo(this.element.globalData.compSize.w,0),a.lineTo(this.element.globalData.compSize.w,this.element.globalData.compSize.h),a.lineTo(0,this.element.globalData.compSize.h),a.lineTo(0,0)),i=this.viewData[t].v,e=s.applyToPointArray(i.v[0][0],i.v[0][1],0),a.moveTo(e[0],e[1]);var o,h=i._length;for(o=1;o<h;o++)r=s.applyToTriplePoints(i.o[o-1],i.i[o],i.v[o]),a.bezierCurveTo(r[0],r[1],r[2],r[3],r[4],r[5]);r=s.applyToTriplePoints(i.o[o-1],i.i[0],i.v[0]),a.bezierCurveTo(r[0],r[1],r[2],r[3],r[4],r[5])}this.element.globalData.renderer.save(!0),a.clip()}},CVMaskElement.prototype.getMaskProperty=MaskElement.prototype.getMaskProperty,CVMaskElement.prototype.destroy=function(){this.element=null},extendPrototype([BaseElement,TransformElement,CVBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableElement],CVShapeElement),CVShapeElement.prototype.initElement=RenderableDOMElement.prototype.initElement,CVShapeElement.prototype.transformHelper={opacity:1,_opMdf:!1},CVShapeElement.prototype.dashResetter=[],CVShapeElement.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,!0,[])},CVShapeElement.prototype.createStyleElement=function(t,e){var r={data:t,type:t.ty,preTransforms:this.transformsManager.addTransformSequence(e),transforms:[],elements:[],closed:!0===t.hd},i={};if("fl"==t.ty||"st"==t.ty?(i.c=PropertyFactory.getProp(this,t.c,1,255,this),i.c.k||(r.co="rgb("+bm_floor(i.c.v[0])+","+bm_floor(i.c.v[1])+","+bm_floor(i.c.v[2])+")")):"gf"!==t.ty&&"gs"!==t.ty||(i.s=PropertyFactory.getProp(this,t.s,1,null,this),i.e=PropertyFactory.getProp(this,t.e,1,null,this),i.h=PropertyFactory.getProp(this,t.h||{k:0},0,.01,this),i.a=PropertyFactory.getProp(this,t.a||{k:0},0,degToRads,this),i.g=new GradientProperty(this,t.g,this)),i.o=PropertyFactory.getProp(this,t.o,0,.01,this),"st"==t.ty||"gs"==t.ty){if(r.lc=this.lcEnum[t.lc]||"round",r.lj=this.ljEnum[t.lj]||"round",1==t.lj&&(r.ml=t.ml),i.w=PropertyFactory.getProp(this,t.w,0,null,this),i.w.k||(r.wi=i.w.v),t.d){var s=new DashProperty(this,t.d,"canvas",this);i.d=s,i.d.k||(r.da=i.d.dashArray,r.do=i.d.dashoffset[0])}}else r.r=2===t.r?"evenodd":"nonzero";return this.stylesList.push(r),i.style=r,i},CVShapeElement.prototype.createGroupElement=function(t){return{it:[],prevViewData:[]}},CVShapeElement.prototype.createTransformElement=function(t){return{transform:{opacity:1,_opMdf:!1,key:this.transformsManager.getNewKey(),op:PropertyFactory.getProp(this,t.o,0,.01,this),mProps:TransformPropertyFactory.getTransformProperty(this,t,this)}}},CVShapeElement.prototype.createShapeElement=function(t){var e=new CVShapeData(this,t,this.stylesList,this.transformsManager);return this.shapes.push(e),this.addShapeToModifiers(e),e},CVShapeElement.prototype.reloadShapes=function(){this._isFirstFrame=!0;var t,e=this.itemsData.length;for(t=0;t<e;t+=1)this.prevViewData[t]=this.itemsData[t];for(this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,!0,[]),e=this.dynamicProperties.length,t=0;t<e;t+=1)this.dynamicProperties[t].getValue();this.renderModifiers(),this.transformsManager.processSequences(this._isFirstFrame)},CVShapeElement.prototype.addTransformToStyleList=function(t){var e,r=this.stylesList.length;for(e=0;e<r;e+=1)this.stylesList[e].closed||this.stylesList[e].transforms.push(t)},CVShapeElement.prototype.removeTransformFromStyleList=function(){var t,e=this.stylesList.length;for(t=0;t<e;t+=1)this.stylesList[t].closed||this.stylesList[t].transforms.pop()},CVShapeElement.prototype.closeStyles=function(t){var e,r=t.length;for(e=0;e<r;e+=1)t[e].closed=!0},CVShapeElement.prototype.searchShapes=function(t,e,r,i,s){var a,n,o,h,l,p,m=t.length-1,f=[],c=[],d=[].concat(s);for(a=m;0<=a;a-=1){if((h=this.searchProcessedElement(t[a]))?e[a]=r[h-1]:t[a]._shouldRender=i,"fl"==t[a].ty||"st"==t[a].ty||"gf"==t[a].ty||"gs"==t[a].ty)h?e[a].style.closed=!1:e[a]=this.createStyleElement(t[a],d),f.push(e[a].style);else if("gr"==t[a].ty){if(h)for(o=e[a].it.length,n=0;n<o;n+=1)e[a].prevViewData[n]=e[a].it[n];else e[a]=this.createGroupElement(t[a]);this.searchShapes(t[a].it,e[a].it,e[a].prevViewData,i,d)}else"tr"==t[a].ty?(h||(p=this.createTransformElement(t[a]),e[a]=p),d.push(e[a]),this.addTransformToStyleList(e[a])):"sh"==t[a].ty||"rc"==t[a].ty||"el"==t[a].ty||"sr"==t[a].ty?h||(e[a]=this.createShapeElement(t[a])):"tm"==t[a].ty||"rd"==t[a].ty?(h?(l=e[a]).closed=!1:((l=ShapeModifiers.getModifier(t[a].ty)).init(this,t[a]),e[a]=l,this.shapeModifiers.push(l)),c.push(l)):"rp"==t[a].ty&&(h?(l=e[a]).closed=!0:(l=ShapeModifiers.getModifier(t[a].ty),(e[a]=l).init(this,t,a,e),this.shapeModifiers.push(l),i=!1),c.push(l));this.addProcessedElement(t[a],a+1)}for(this.removeTransformFromStyleList(),this.closeStyles(f),m=c.length,a=0;a<m;a+=1)c[a].closed=!0},CVShapeElement.prototype.renderInnerContent=function(){this.transformHelper.opacity=1,this.transformHelper._opMdf=!1,this.renderModifiers(),this.transformsManager.processSequences(this._isFirstFrame),this.renderShape(this.transformHelper,this.shapesData,this.itemsData,!0)},CVShapeElement.prototype.renderShapeTransform=function(t,e){(t._opMdf||e.op._mdf||this._isFirstFrame)&&(e.opacity=t.opacity,e.opacity*=e.op.v,e._opMdf=!0)},CVShapeElement.prototype.drawLayer=function(){var t,e,r,i,s,a,n,o,h,l=this.stylesList.length,p=this.globalData.renderer,m=this.globalData.canvasContext;for(t=0;t<l;t+=1)if(("st"!==(o=(h=this.stylesList[t]).type)&&"gs"!==o||0!==h.wi)&&h.data._shouldRender&&0!==h.coOp&&0!==this.globalData.currentGlobalAlpha){for(p.save(),a=h.elements,"st"===o||"gs"===o?(m.strokeStyle="st"===o?h.co:h.grd,m.lineWidth=h.wi,m.lineCap=h.lc,m.lineJoin=h.lj,m.miterLimit=h.ml||0):m.fillStyle="fl"===o?h.co:h.grd,p.ctxOpacity(h.coOp),"st"!==o&&"gs"!==o&&m.beginPath(),p.ctxTransform(h.preTransforms.finalTransform.props),r=a.length,e=0;e<r;e+=1){for("st"!==o&&"gs"!==o||(m.beginPath(),h.da&&(m.setLineDash(h.da),m.lineDashOffset=h.do)),s=(n=a[e].trNodes).length,i=0;i<s;i+=1)"m"==n[i].t?m.moveTo(n[i].p[0],n[i].p[1]):"c"==n[i].t?m.bezierCurveTo(n[i].pts[0],n[i].pts[1],n[i].pts[2],n[i].pts[3],n[i].pts[4],n[i].pts[5]):m.closePath();"st"!==o&&"gs"!==o||(m.stroke(),h.da&&m.setLineDash(this.dashResetter))}"st"!==o&&"gs"!==o&&m.fill(h.r),p.restore()}},CVShapeElement.prototype.renderShape=function(t,e,r,i){var s,a;for(a=t,s=e.length-1;0<=s;s-=1)"tr"==e[s].ty?(a=r[s].transform,this.renderShapeTransform(t,a)):"sh"==e[s].ty||"el"==e[s].ty||"rc"==e[s].ty||"sr"==e[s].ty?this.renderPath(e[s],r[s]):"fl"==e[s].ty?this.renderFill(e[s],r[s],a):"st"==e[s].ty?this.renderStroke(e[s],r[s],a):"gf"==e[s].ty||"gs"==e[s].ty?this.renderGradientFill(e[s],r[s],a):"gr"==e[s].ty?this.renderShape(a,e[s].it,r[s].it):e[s].ty;i&&this.drawLayer()},CVShapeElement.prototype.renderStyledShape=function(t,e){if(this._isFirstFrame||e._mdf||t.transforms._mdf){var r,i,s,a=t.trNodes,n=e.paths,o=n._length;a.length=0;var h=t.transforms.finalTransform;for(s=0;s<o;s+=1){var l=n.shapes[s];if(l&&l.v){for(i=l._length,r=1;r<i;r+=1)1===r&&a.push({t:"m",p:h.applyToPointArray(l.v[0][0],l.v[0][1],0)}),a.push({t:"c",pts:h.applyToTriplePoints(l.o[r-1],l.i[r],l.v[r])});1===i&&a.push({t:"m",p:h.applyToPointArray(l.v[0][0],l.v[0][1],0)}),l.c&&i&&(a.push({t:"c",pts:h.applyToTriplePoints(l.o[r-1],l.i[0],l.v[0])}),a.push({t:"z"}))}}t.trNodes=a}},CVShapeElement.prototype.renderPath=function(t,e){if(!0!==t.hd&&t._shouldRender){var r,i=e.styledShapes.length;for(r=0;r<i;r+=1)this.renderStyledShape(e.styledShapes[r],e.sh)}},CVShapeElement.prototype.renderFill=function(t,e,r){var i=e.style;(e.c._mdf||this._isFirstFrame)&&(i.co="rgb("+bm_floor(e.c.v[0])+","+bm_floor(e.c.v[1])+","+bm_floor(e.c.v[2])+")"),(e.o._mdf||r._opMdf||this._isFirstFrame)&&(i.coOp=e.o.v*r.opacity)},CVShapeElement.prototype.renderGradientFill=function(t,e,r){var i=e.style;if(!i.grd||e.g._mdf||e.s._mdf||e.e._mdf||1!==t.t&&(e.h._mdf||e.a._mdf)){var s=this.globalData.canvasContext,a=e.s.v,n=e.e.v;if(1===t.t)f=s.createLinearGradient(a[0],a[1],n[0],n[1]);else var o=Math.sqrt(Math.pow(a[0]-n[0],2)+Math.pow(a[1]-n[1],2)),h=Math.atan2(n[1]-a[1],n[0]-a[0]),l=o*(1<=e.h.v?.99:e.h.v<=-1?-.99:e.h.v),p=Math.cos(h+e.a.v)*l+a[0],m=Math.sin(h+e.a.v)*l+a[1],f=s.createRadialGradient(p,m,0,a[0],a[1],o);var c,d=t.g.p,u=e.g.c,y=1;for(c=0;c<d;c+=1)e.g._hasOpacity&&e.g._collapsable&&(y=e.g.o[2*c+1]),f.addColorStop(u[4*c]/100,"rgba("+u[4*c+1]+","+u[4*c+2]+","+u[4*c+3]+","+y+")");i.grd=f}i.coOp=e.o.v*r.opacity},CVShapeElement.prototype.renderStroke=function(t,e,r){var i=e.style,s=e.d;s&&(s._mdf||this._isFirstFrame)&&(i.da=s.dashArray,i.do=s.dashoffset[0]),(e.c._mdf||this._isFirstFrame)&&(i.co="rgb("+bm_floor(e.c.v[0])+","+bm_floor(e.c.v[1])+","+bm_floor(e.c.v[2])+")"),(e.o._mdf||r._opMdf||this._isFirstFrame)&&(i.coOp=e.o.v*r.opacity),(e.w._mdf||this._isFirstFrame)&&(i.wi=e.w.v)},CVShapeElement.prototype.destroy=function(){this.shapesData=null,this.globalData=null,this.canvasContext=null,this.stylesList.length=0,this.itemsData.length=0},extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement],CVSolidElement),CVSolidElement.prototype.initElement=SVGShapeElement.prototype.initElement,CVSolidElement.prototype.prepareFrame=IImageElement.prototype.prepareFrame,CVSolidElement.prototype.renderInnerContent=function(){var t=this.canvasContext;t.fillStyle=this.data.sc,t.fillRect(0,0,this.data.sw,this.data.sh)},extendPrototype([BaseElement,TransformElement,CVBaseElement,HierarchyElement,FrameElement,RenderableElement,ITextElement],CVTextElement),CVTextElement.prototype.tHelper=createTag("canvas").getContext("2d"),CVTextElement.prototype.buildNewText=function(){var t=this.textProperty.currentData;this.renderedLetters=createSizedArray(t.l?t.l.length:0);var e=!1;t.fc?(e=!0,this.values.fill=this.buildColor(t.fc)):this.values.fill="rgba(0,0,0,0)",this.fill=e;var r=!1;t.sc&&(r=!0,this.values.stroke=this.buildColor(t.sc),this.values.sWidth=t.sw);var i,s,a=this.globalData.fontManager.getFontByName(t.f),n=t.l,o=this.mHelper;this.stroke=r,this.values.fValue=t.finalSize+"px "+this.globalData.fontManager.getFontByName(t.f).fFamily,s=t.finalText.length;var h,l,p,m,f,c,d,u,y,g,v=this.data.singleShape,b=t.tr/1e3*t.finalSize,E=0,x=0,P=!0,S=0;for(i=0;i<s;i+=1){for(l=(h=this.globalData.fontManager.getCharData(t.finalText[i],a.fStyle,this.globalData.fontManager.getFontByName(t.f).fFamily))&&h.data||{},o.reset(),v&&n[i].n&&(E=-b,x+=t.yOffset,x+=P?1:0,P=!1),d=(f=l.shapes?l.shapes[0].it:[]).length,o.scale(t.finalSize/100,t.finalSize/100),v&&this.applyTextPropertiesToMatrix(t,o,n[i].line,E,x),y=createSizedArray(d),c=0;c<d;c+=1){for(m=f[c].ks.k.i.length,u=f[c].ks.k,g=[],p=1;p<m;p+=1)1==p&&g.push(o.applyToX(u.v[0][0],u.v[0][1],0),o.applyToY(u.v[0][0],u.v[0][1],0)),g.push(o.applyToX(u.o[p-1][0],u.o[p-1][1],0),o.applyToY(u.o[p-1][0],u.o[p-1][1],0),o.applyToX(u.i[p][0],u.i[p][1],0),o.applyToY(u.i[p][0],u.i[p][1],0),o.applyToX(u.v[p][0],u.v[p][1],0),o.applyToY(u.v[p][0],u.v[p][1],0));g.push(o.applyToX(u.o[p-1][0],u.o[p-1][1],0),o.applyToY(u.o[p-1][0],u.o[p-1][1],0),o.applyToX(u.i[0][0],u.i[0][1],0),o.applyToY(u.i[0][0],u.i[0][1],0),o.applyToX(u.v[0][0],u.v[0][1],0),o.applyToY(u.v[0][0],u.v[0][1],0)),y[c]=g}v&&(E+=n[i].l,E+=b),this.textSpans[S]?this.textSpans[S].elem=y:this.textSpans[S]={elem:y},S+=1}},CVTextElement.prototype.renderInnerContent=function(){var t,e,r,i,s,a,n=this.canvasContext;this.finalTransform.mat.props;n.font=this.values.fValue,n.lineCap="butt",n.lineJoin="miter",n.miterLimit=4,this.data.singleShape||this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag);var o,h=this.textAnimator.renderedLetters,l=this.textProperty.currentData.l;e=l.length;var p,m,f=null,c=null,d=null;for(t=0;t<e;t+=1)if(!l[t].n){if((o=h[t])&&(this.globalData.renderer.save(),this.globalData.renderer.ctxTransform(o.p),this.globalData.renderer.ctxOpacity(o.o)),this.fill){for(o&&o.fc?f!==o.fc&&(f=o.fc,n.fillStyle=o.fc):f!==this.values.fill&&(f=this.values.fill,n.fillStyle=this.values.fill),i=(p=this.textSpans[t].elem).length,this.globalData.canvasContext.beginPath(),r=0;r<i;r+=1)for(a=(m=p[r]).length,this.globalData.canvasContext.moveTo(m[0],m[1]),s=2;s<a;s+=6)this.globalData.canvasContext.bezierCurveTo(m[s],m[s+1],m[s+2],m[s+3],m[s+4],m[s+5]);this.globalData.canvasContext.closePath(),this.globalData.canvasContext.fill()}if(this.stroke){for(o&&o.sw?d!==o.sw&&(d=o.sw,n.lineWidth=o.sw):d!==this.values.sWidth&&(d=this.values.sWidth,n.lineWidth=this.values.sWidth),o&&o.sc?c!==o.sc&&(c=o.sc,n.strokeStyle=o.sc):c!==this.values.stroke&&(c=this.values.stroke,n.strokeStyle=this.values.stroke),i=(p=this.textSpans[t].elem).length,this.globalData.canvasContext.beginPath(),r=0;r<i;r+=1)for(a=(m=p[r]).length,this.globalData.canvasContext.moveTo(m[0],m[1]),s=2;s<a;s+=6)this.globalData.canvasContext.bezierCurveTo(m[s],m[s+1],m[s+2],m[s+3],m[s+4],m[s+5]);this.globalData.canvasContext.closePath(),this.globalData.canvasContext.stroke()}o&&this.globalData.renderer.restore()}},CVEffects.prototype.renderFrame=function(){},HBaseElement.prototype={checkBlendMode:function(){},initRendererElement:function(){this.baseElement=createTag(this.data.tg||"div"),this.data.hasMask?(this.svgElement=createNS("svg"),this.layerElement=createNS("g"),this.maskedElement=this.layerElement,this.svgElement.appendChild(this.layerElement),this.baseElement.appendChild(this.svgElement)):this.layerElement=this.baseElement,styleDiv(this.baseElement)},createContainerElements:function(){this.renderableEffectsManager=new CVEffects(this),this.transformedElement=this.baseElement,this.maskedElement=this.layerElement,this.data.ln&&this.layerElement.setAttribute("id",this.data.ln),this.data.cl&&this.layerElement.setAttribute("class",this.data.cl),0!==this.data.bm&&this.setBlendMode()},renderElement:function(){this.finalTransform._matMdf&&(this.transformedElement.style.transform=this.transformedElement.style.webkitTransform=this.finalTransform.mat.toCSS()),this.finalTransform._opMdf&&(this.transformedElement.style.opacity=this.finalTransform.mProp.o.v)},renderFrame:function(){this.data.hd||this.hidden||(this.renderTransform(),this.renderRenderable(),this.renderElement(),this.renderInnerContent(),this._isFirstFrame&&(this._isFirstFrame=!1))},destroy:function(){this.layerElement=null,this.transformedElement=null,this.matteElement&&(this.matteElement=null),this.maskManager&&(this.maskManager.destroy(),this.maskManager=null)},createRenderableComponents:function(){this.maskManager=new MaskElement(this.data,this,this.globalData)},addEffects:function(){},setMatte:function(){}},HBaseElement.prototype.getBaseElement=SVGBaseElement.prototype.getBaseElement,HBaseElement.prototype.destroyBaseElement=HBaseElement.prototype.destroy,HBaseElement.prototype.buildElementParenting=HybridRenderer.prototype.buildElementParenting,extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement],HSolidElement),HSolidElement.prototype.createContent=function(){var t;this.data.hasMask?((t=createNS("rect")).setAttribute("width",this.data.sw),t.setAttribute("height",this.data.sh),t.setAttribute("fill",this.data.sc),this.svgElement.setAttribute("width",this.data.sw),this.svgElement.setAttribute("height",this.data.sh)):((t=createTag("div")).style.width=this.data.sw+"px",t.style.height=this.data.sh+"px",t.style.backgroundColor=this.data.sc),this.layerElement.appendChild(t)},extendPrototype([HybridRenderer,ICompElement,HBaseElement],HCompElement),HCompElement.prototype._createBaseContainerElements=HCompElement.prototype.createContainerElements,HCompElement.prototype.createContainerElements=function(){this._createBaseContainerElements(),this.data.hasMask?(this.svgElement.setAttribute("width",this.data.w),this.svgElement.setAttribute("height",this.data.h),this.transformedElement=this.baseElement):this.transformedElement=this.layerElement},HCompElement.prototype.addTo3dContainer=function(t,e){for(var r,i=0;i<e;)this.elements[i]&&this.elements[i].getBaseElement&&(r=this.elements[i].getBaseElement()),i+=1;r?this.layerElement.insertBefore(t,r):this.layerElement.appendChild(t)},extendPrototype([BaseElement,TransformElement,HSolidElement,SVGShapeElement,HBaseElement,HierarchyElement,FrameElement,RenderableElement],HShapeElement),HShapeElement.prototype._renderShapeFrame=HShapeElement.prototype.renderInnerContent,HShapeElement.prototype.createContent=function(){var t;if(this.baseElement.style.fontSize=0,this.data.hasMask)this.layerElement.appendChild(this.shapesContainer),t=this.svgElement;else{t=createNS("svg");var e=this.comp.data?this.comp.data:this.globalData.compSize;t.setAttribute("width",e.w),t.setAttribute("height",e.h),t.appendChild(this.shapesContainer),this.layerElement.appendChild(t)}this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.shapesContainer,0,[],!0),this.filterUniqueShapes(),this.shapeCont=t},HShapeElement.prototype.getTransformedPoint=function(t,e){var r,i=t.length;for(r=0;r<i;r+=1)e=t[r].mProps.v.applyToPointArray(e[0],e[1],0);return e},HShapeElement.prototype.calculateShapeBoundingBox=function(t,e){var r,i,s,a,n,o=t.sh.v,h=t.transformers,l=o._length;if(!(l<=1)){for(r=0;r<l-1;r+=1)i=this.getTransformedPoint(h,o.v[r]),s=this.getTransformedPoint(h,o.o[r]),a=this.getTransformedPoint(h,o.i[r+1]),n=this.getTransformedPoint(h,o.v[r+1]),this.checkBounds(i,s,a,n,e);o.c&&(i=this.getTransformedPoint(h,o.v[r]),s=this.getTransformedPoint(h,o.o[r]),a=this.getTransformedPoint(h,o.i[0]),n=this.getTransformedPoint(h,o.v[0]),this.checkBounds(i,s,a,n,e))}},HShapeElement.prototype.checkBounds=function(t,e,r,i,s){this.getBoundsOfCurve(t,e,r,i);var a=this.shapeBoundingBox;s.x=bm_min(a.left,s.x),s.xMax=bm_max(a.right,s.xMax),s.y=bm_min(a.top,s.y),s.yMax=bm_max(a.bottom,s.yMax)},HShapeElement.prototype.shapeBoundingBox={left:0,right:0,top:0,bottom:0},HShapeElement.prototype.tempBoundingBox={x:0,xMax:0,y:0,yMax:0,width:0,height:0},HShapeElement.prototype.getBoundsOfCurve=function(t,e,r,i){for(var s,a,n,o,h,l,p,m=[[t[0],i[0]],[t[1],i[1]]],f=0;f<2;++f)if(a=6*t[f]-12*e[f]+6*r[f],s=-3*t[f]+9*e[f]-9*r[f]+3*i[f],n=3*e[f]-3*t[f],a|=0,n|=0,0!==(s|=0))(h=a*a-4*n*s)<0||(0<(l=(-a+bm_sqrt(h))/(2*s))&&l<1&&m[f].push(this.calculateF(l,t,e,r,i,f)),0<(p=(-a-bm_sqrt(h))/(2*s))&&p<1&&m[f].push(this.calculateF(p,t,e,r,i,f)));else{if(0===a)continue;0<(o=-n/a)&&o<1&&m[f].push(this.calculateF(o,t,e,r,i,f))}this.shapeBoundingBox.left=bm_min.apply(null,m[0]),this.shapeBoundingBox.top=bm_min.apply(null,m[1]),this.shapeBoundingBox.right=bm_max.apply(null,m[0]),this.shapeBoundingBox.bottom=bm_max.apply(null,m[1])},HShapeElement.prototype.calculateF=function(t,e,r,i,s,a){return bm_pow(1-t,3)*e[a]+3*bm_pow(1-t,2)*t*r[a]+3*(1-t)*bm_pow(t,2)*i[a]+bm_pow(t,3)*s[a]},HShapeElement.prototype.calculateBoundingBox=function(t,e){var r,i=t.length;for(r=0;r<i;r+=1)t[r]&&t[r].sh?this.calculateShapeBoundingBox(t[r],e):t[r]&&t[r].it&&this.calculateBoundingBox(t[r].it,e)},HShapeElement.prototype.currentBoxContains=function(t){return this.currentBBox.x<=t.x&&this.currentBBox.y<=t.y&&this.currentBBox.width+this.currentBBox.x>=t.x+t.width&&this.currentBBox.height+this.currentBBox.y>=t.y+t.height},HShapeElement.prototype.renderInnerContent=function(){if(this._renderShapeFrame(),!this.hidden&&(this._isFirstFrame||this._mdf)){var t=this.tempBoundingBox,e=999999;if(t.x=e,t.xMax=-e,t.y=e,t.yMax=-e,this.calculateBoundingBox(this.itemsData,t),t.width=t.xMax<t.x?0:t.xMax-t.x,t.height=t.yMax<t.y?0:t.yMax-t.y,this.currentBoxContains(t))return;var r=!1;this.currentBBox.w!==t.width&&(this.currentBBox.w=t.width,this.shapeCont.setAttribute("width",t.width),r=!0),this.currentBBox.h!==t.height&&(this.currentBBox.h=t.height,this.shapeCont.setAttribute("height",t.height),r=!0),(r||this.currentBBox.x!==t.x||this.currentBBox.y!==t.y)&&(this.currentBBox.w=t.width,this.currentBBox.h=t.height,this.currentBBox.x=t.x,this.currentBBox.y=t.y,this.shapeCont.setAttribute("viewBox",this.currentBBox.x+" "+this.currentBBox.y+" "+this.currentBBox.w+" "+this.currentBBox.h),this.shapeCont.style.transform=this.shapeCont.style.webkitTransform="translate("+this.currentBBox.x+"px,"+this.currentBBox.y+"px)")}},extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement,ITextElement],HTextElement),HTextElement.prototype.createContent=function(){if(this.isMasked=this.checkMasks(),this.isMasked){this.renderType="svg",this.compW=this.comp.data.w,this.compH=this.comp.data.h,this.svgElement.setAttribute("width",this.compW),this.svgElement.setAttribute("height",this.compH);var t=createNS("g");this.maskedElement.appendChild(t),this.innerElem=t}else this.renderType="html",this.innerElem=this.layerElement;this.checkParenting()},HTextElement.prototype.buildNewText=function(){var t=this.textProperty.currentData;this.renderedLetters=createSizedArray(t.l?t.l.length:0);var e=this.innerElem.style;e.color=e.fill=t.fc?this.buildColor(t.fc):"rgba(0,0,0,0)",t.sc&&(e.stroke=this.buildColor(t.sc),e.strokeWidth=t.sw+"px");var r,i,s=this.globalData.fontManager.getFontByName(t.f);if(!this.globalData.fontManager.chars)if(e.fontSize=t.finalSize+"px",e.lineHeight=t.finalSize+"px",s.fClass)this.innerElem.className=s.fClass;else{e.fontFamily=s.fFamily;var a=t.fWeight,n=t.fStyle;e.fontStyle=n,e.fontWeight=a}var o,h,l,p=t.l;i=p.length;var m,f=this.mHelper,c="",d=0;for(r=0;r<i;r+=1){if(this.globalData.fontManager.chars?(this.textPaths[d]?o=this.textPaths[d]:((o=createNS("path")).setAttribute("stroke-linecap","butt"),o.setAttribute("stroke-linejoin","round"),o.setAttribute("stroke-miterlimit","4")),this.isMasked||(this.textSpans[d]?l=(h=this.textSpans[d]).children[0]:((h=createTag("div")).style.lineHeight=0,(l=createNS("svg")).appendChild(o),styleDiv(h)))):this.isMasked?o=this.textPaths[d]?this.textPaths[d]:createNS("text"):this.textSpans[d]?(h=this.textSpans[d],o=this.textPaths[d]):(styleDiv(h=createTag("span")),styleDiv(o=createTag("span")),h.appendChild(o)),this.globalData.fontManager.chars){var u,y=this.globalData.fontManager.getCharData(t.finalText[r],s.fStyle,this.globalData.fontManager.getFontByName(t.f).fFamily);if(u=y?y.data:null,f.reset(),u&&u.shapes&&(m=u.shapes[0].it,f.scale(t.finalSize/100,t.finalSize/100),c=this.createPathShape(f,m),o.setAttribute("d",c)),this.isMasked)this.innerElem.appendChild(o);else{if(this.innerElem.appendChild(h),u&&u.shapes){document.body.appendChild(l);var g=l.getBBox();l.setAttribute("width",g.width+2),l.setAttribute("height",g.height+2),l.setAttribute("viewBox",g.x-1+" "+(g.y-1)+" "+(g.width+2)+" "+(g.height+2)),l.style.transform=l.style.webkitTransform="translate("+(g.x-1)+"px,"+(g.y-1)+"px)",p[r].yOffset=g.y-1}else l.setAttribute("width",1),l.setAttribute("height",1);h.appendChild(l)}}else o.textContent=p[r].val,o.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve"),this.isMasked?this.innerElem.appendChild(o):(this.innerElem.appendChild(h),o.style.transform=o.style.webkitTransform="translate3d(0,"+-t.finalSize/1.2+"px,0)");this.isMasked?this.textSpans[d]=o:this.textSpans[d]=h,this.textSpans[d].style.display="block",this.textPaths[d]=o,d+=1}for(;d<this.textSpans.length;)this.textSpans[d].style.display="none",d+=1},HTextElement.prototype.renderInnerContent=function(){if(this.data.singleShape){if(!this._isFirstFrame&&!this.lettersChangedFlag)return;this.isMasked&&this.finalTransform._matMdf&&(this.svgElement.setAttribute("viewBox",-this.finalTransform.mProp.p.v[0]+" "+-this.finalTransform.mProp.p.v[1]+" "+this.compW+" "+this.compH),this.svgElement.style.transform=this.svgElement.style.webkitTransform="translate("+-this.finalTransform.mProp.p.v[0]+"px,"+-this.finalTransform.mProp.p.v[1]+"px)")}if(this.textAnimator.getMeasures(this.textProperty.currentData,this.lettersChangedFlag),this.lettersChangedFlag||this.textAnimator.lettersChangedFlag){var t,e,r,i,s,a=0,n=this.textAnimator.renderedLetters,o=this.textProperty.currentData.l;for(e=o.length,t=0;t<e;t+=1)o[t].n?a+=1:(i=this.textSpans[t],s=this.textPaths[t],r=n[a],a+=1,r._mdf.m&&(this.isMasked?i.setAttribute("transform",r.m):i.style.transform=i.style.webkitTransform=r.m),i.style.opacity=r.o,r.sw&&r._mdf.sw&&s.setAttribute("stroke-width",r.sw),r.sc&&r._mdf.sc&&s.setAttribute("stroke",r.sc),r.fc&&r._mdf.fc&&(s.setAttribute("fill",r.fc),s.style.color=r.fc));if(this.innerElem.getBBox&&!this.hidden&&(this._isFirstFrame||this._mdf)){var h=this.innerElem.getBBox();this.currentBBox.w!==h.width&&(this.currentBBox.w=h.width,this.svgElement.setAttribute("width",h.width)),this.currentBBox.h!==h.height&&(this.currentBBox.h=h.height,this.svgElement.setAttribute("height",h.height));this.currentBBox.w===h.width+2&&this.currentBBox.h===h.height+2&&this.currentBBox.x===h.x-1&&this.currentBBox.y===h.y-1||(this.currentBBox.w=h.width+2,this.currentBBox.h=h.height+2,this.currentBBox.x=h.x-1,this.currentBBox.y=h.y-1,this.svgElement.setAttribute("viewBox",this.currentBBox.x+" "+this.currentBBox.y+" "+this.currentBBox.w+" "+this.currentBBox.h),this.svgElement.style.transform=this.svgElement.style.webkitTransform="translate("+this.currentBBox.x+"px,"+this.currentBBox.y+"px)")}}},extendPrototype([BaseElement,TransformElement,HBaseElement,HSolidElement,HierarchyElement,FrameElement,RenderableElement],HImageElement),HImageElement.prototype.createContent=function(){var t=this.globalData.getAssetsPath(this.assetData),e=new Image;this.data.hasMask?(this.imageElem=createNS("image"),this.imageElem.setAttribute("width",this.assetData.w+"px"),this.imageElem.setAttribute("height",this.assetData.h+"px"),this.imageElem.setAttributeNS("http://www.w3.org/1999/xlink","href",t),this.layerElement.appendChild(this.imageElem),this.baseElement.setAttribute("width",this.assetData.w),this.baseElement.setAttribute("height",this.assetData.h)):this.layerElement.appendChild(e),e.src=t,this.data.ln&&this.baseElement.setAttribute("id",this.data.ln)},extendPrototype([BaseElement,FrameElement,HierarchyElement],HCameraElement),HCameraElement.prototype.setup=function(){var t,e,r=this.comp.threeDElements.length;for(t=0;t<r;t+=1)"3d"===(e=this.comp.threeDElements[t]).type&&(e.perspectiveElem.style.perspective=e.perspectiveElem.style.webkitPerspective=this.pe.v+"px",e.container.style.transformOrigin=e.container.style.mozTransformOrigin=e.container.style.webkitTransformOrigin="0px 0px 0px",e.perspectiveElem.style.transform=e.perspectiveElem.style.webkitTransform="matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)")},HCameraElement.prototype.createElements=function(){},HCameraElement.prototype.hide=function(){},HCameraElement.prototype.renderFrame=function(){var t,e,r=this._isFirstFrame;if(this.hierarchy)for(e=this.hierarchy.length,t=0;t<e;t+=1)r=this.hierarchy[t].finalTransform.mProp._mdf||r;if(r||this.pe._mdf||this.p&&this.p._mdf||this.px&&(this.px._mdf||this.py._mdf||this.pz._mdf)||this.rx._mdf||this.ry._mdf||this.rz._mdf||this.or._mdf||this.a&&this.a._mdf){if(this.mat.reset(),this.hierarchy)for(t=e=this.hierarchy.length-1;0<=t;t-=1){var i=this.hierarchy[t].finalTransform.mProp;this.mat.translate(-i.p.v[0],-i.p.v[1],i.p.v[2]),this.mat.rotateX(-i.or.v[0]).rotateY(-i.or.v[1]).rotateZ(i.or.v[2]),this.mat.rotateX(-i.rx.v).rotateY(-i.ry.v).rotateZ(i.rz.v),this.mat.scale(1/i.s.v[0],1/i.s.v[1],1/i.s.v[2]),this.mat.translate(i.a.v[0],i.a.v[1],i.a.v[2])}if(this.p?this.mat.translate(-this.p.v[0],-this.p.v[1],this.p.v[2]):this.mat.translate(-this.px.v,-this.py.v,this.pz.v),this.a){var s;s=this.p?[this.p.v[0]-this.a.v[0],this.p.v[1]-this.a.v[1],this.p.v[2]-this.a.v[2]]:[this.px.v-this.a.v[0],this.py.v-this.a.v[1],this.pz.v-this.a.v[2]];var a=Math.sqrt(Math.pow(s[0],2)+Math.pow(s[1],2)+Math.pow(s[2],2)),n=[s[0]/a,s[1]/a,s[2]/a],o=Math.sqrt(n[2]*n[2]+n[0]*n[0]),h=Math.atan2(n[1],o),l=Math.atan2(n[0],-n[2]);this.mat.rotateY(l).rotateX(-h)}this.mat.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v),this.mat.rotateX(-this.or.v[0]).rotateY(-this.or.v[1]).rotateZ(this.or.v[2]),this.mat.translate(this.globalData.compSize.w/2,this.globalData.compSize.h/2,0),this.mat.translate(0,0,this.pe.v);var p=!this._prevMat.equals(this.mat);if((p||this.pe._mdf)&&this.comp.threeDElements){var m;for(e=this.comp.threeDElements.length,t=0;t<e;t+=1)"3d"===(m=this.comp.threeDElements[t]).type&&(p&&(m.container.style.transform=m.container.style.webkitTransform=this.mat.toCSS()),this.pe._mdf&&(m.perspectiveElem.style.perspective=m.perspectiveElem.style.webkitPerspective=this.pe.v+"px"));this.mat.clone(this._prevMat)}}this._isFirstFrame=!1},HCameraElement.prototype.prepareFrame=function(t){this.prepareProperties(t,!0)},HCameraElement.prototype.destroy=function(){},HCameraElement.prototype.getBaseElement=function(){return null},HEffects.prototype.renderFrame=function(){};var animationManager=function(){var t={},s=[],i=0,a=0,n=0,o=!0,h=!1;function r(t){for(var e=0,r=t.target;e<a;)s[e].animation===r&&(s.splice(e,1),e-=1,a-=1,r.isPaused||m()),e+=1}function l(t,e){if(!t)return null;for(var r=0;r<a;){if(s[r].elem==t&&null!==s[r].elem)return s[r].animation;r+=1}var i=new AnimationItem;return f(i,t),i.setData(t,e),i}function p(){n+=1,d()}function m(){n-=1}function f(t,e){t.addEventListener("destroy",r),t.addEventListener("_active",p),t.addEventListener("_idle",m),s.push({elem:e,animation:t}),a+=1}function c(t){var e,r=t-i;for(e=0;e<a;e+=1)s[e].animation.advanceTime(r);i=t,n&&!h?window.requestAnimationFrame(c):o=!0}function e(t){i=t,window.requestAnimationFrame(c)}function d(){!h&&n&&o&&(window.requestAnimationFrame(e),o=!1)}return t.registerAnimation=l,t.loadAnimation=function(t){var e=new AnimationItem;return f(e,null),e.setParams(t),e},t.setSpeed=function(t,e){var r;for(r=0;r<a;r+=1)s[r].animation.setSpeed(t,e)},t.setDirection=function(t,e){var r;for(r=0;r<a;r+=1)s[r].animation.setDirection(t,e)},t.play=function(t){var e;for(e=0;e<a;e+=1)s[e].animation.play(t)},t.pause=function(t){var e;for(e=0;e<a;e+=1)s[e].animation.pause(t)},t.stop=function(t){var e;for(e=0;e<a;e+=1)s[e].animation.stop(t)},t.togglePause=function(t){var e;for(e=0;e<a;e+=1)s[e].animation.togglePause(t)},t.searchAnimations=function(t,e,r){var i,s=[].concat([].slice.call(document.getElementsByClassName("lottie")),[].slice.call(document.getElementsByClassName("bodymovin"))),a=s.length;for(i=0;i<a;i+=1)r&&s[i].setAttribute("data-bm-type",r),l(s[i],t);if(e&&0===a){r||(r="svg");var n=document.getElementsByTagName("body")[0];n.innerHTML="";var o=createTag("div");o.style.width="100%",o.style.height="100%",o.setAttribute("data-bm-type",r),n.appendChild(o),l(o,t)}},t.resize=function(){var t;for(t=0;t<a;t+=1)s[t].animation.resize()},t.goToAndStop=function(t,e,r){var i;for(i=0;i<a;i+=1)s[i].animation.goToAndStop(t,e,r)},t.destroy=function(t){var e;for(e=a-1;0<=e;e-=1)s[e].animation.destroy(t)},t.freeze=function(){h=!0},t.unfreeze=function(){h=!1,d()},t.getRegisteredAnimations=function(){var t,e=s.length,r=[];for(t=0;t<e;t+=1)r.push(s[t].animation);return r},t}(),AnimationItem=function(){this._cbs=[],this.name="",this.path="",this.isLoaded=!1,this.currentFrame=0,this.currentRawFrame=0,this.firstFrame=0,this.totalFrames=0,this.frameRate=0,this.frameMult=0,this.playSpeed=1,this.playDirection=1,this.playCount=0,this.animationData={},this.assets=[],this.isPaused=!0,this.autoplay=!1,this.loop=!0,this.renderer=null,this.animationID=createElementID(),this.assetsPath="",this.timeCompleted=0,this.segmentPos=0,this.subframeEnabled=subframeEnabled,this.segments=[],this._idle=!0,this._completedLoop=!1,this.projectInterface=ProjectInterface(),this.imagePreloader=new ImagePreloader};extendPrototype([BaseEvent],AnimationItem),AnimationItem.prototype.setParams=function(t){t.context&&(this.context=t.context),(t.wrapper||t.container)&&(this.wrapper=t.wrapper||t.container);var e=t.animType?t.animType:t.renderer?t.renderer:"svg";switch(e){case"canvas":this.renderer=new CanvasRenderer(this,t.rendererSettings);break;case"svg":this.renderer=new SVGRenderer(this,t.rendererSettings);break;default:this.renderer=new HybridRenderer(this,t.rendererSettings)}this.renderer.setProjectInterface(this.projectInterface),this.animType=e,""===t.loop||null===t.loop||(!1===t.loop?this.loop=!1:!0===t.loop?this.loop=!0:this.loop=parseInt(t.loop)),this.autoplay=!("autoplay"in t)||t.autoplay,this.name=t.name?t.name:"",this.autoloadSegments=!t.hasOwnProperty("autoloadSegments")||t.autoloadSegments,this.assetsPath=t.assetsPath,t.animationData?this.configAnimation(t.animationData):t.path&&(-1!==t.path.lastIndexOf("\\")?this.path=t.path.substr(0,t.path.lastIndexOf("\\")+1):this.path=t.path.substr(0,t.path.lastIndexOf("/")+1),this.fileName=t.path.substr(t.path.lastIndexOf("/")+1),this.fileName=this.fileName.substr(0,this.fileName.lastIndexOf(".json")),assetLoader.load(t.path,this.configAnimation.bind(this),function(){this.trigger("data_failed")}.bind(this))),this.initialSegment=t.initialSegment},AnimationItem.prototype.setData=function(t,e){var r={wrapper:t,animationData:e?"object"==typeof e?e:JSON.parse(e):null},i=t.attributes;r.path=i.getNamedItem("data-animation-path")?i.getNamedItem("data-animation-path").value:i.getNamedItem("data-bm-path")?i.getNamedItem("data-bm-path").value:i.getNamedItem("bm-path")?i.getNamedItem("bm-path").value:"",r.animType=i.getNamedItem("data-anim-type")?i.getNamedItem("data-anim-type").value:i.getNamedItem("data-bm-type")?i.getNamedItem("data-bm-type").value:i.getNamedItem("bm-type")?i.getNamedItem("bm-type").value:i.getNamedItem("data-bm-renderer")?i.getNamedItem("data-bm-renderer").value:i.getNamedItem("bm-renderer")?i.getNamedItem("bm-renderer").value:"canvas";var s=i.getNamedItem("data-anim-loop")?i.getNamedItem("data-anim-loop").value:i.getNamedItem("data-bm-loop")?i.getNamedItem("data-bm-loop").value:i.getNamedItem("bm-loop")?i.getNamedItem("bm-loop").value:"";""===s||(r.loop="false"!==s&&("true"===s||parseInt(s)));var a=i.getNamedItem("data-anim-autoplay")?i.getNamedItem("data-anim-autoplay").value:i.getNamedItem("data-bm-autoplay")?i.getNamedItem("data-bm-autoplay").value:!i.getNamedItem("bm-autoplay")||i.getNamedItem("bm-autoplay").value;r.autoplay="false"!==a,r.name=i.getNamedItem("data-name")?i.getNamedItem("data-name").value:i.getNamedItem("data-bm-name")?i.getNamedItem("data-bm-name").value:i.getNamedItem("bm-name")?i.getNamedItem("bm-name").value:"","false"===(i.getNamedItem("data-anim-prerender")?i.getNamedItem("data-anim-prerender").value:i.getNamedItem("data-bm-prerender")?i.getNamedItem("data-bm-prerender").value:i.getNamedItem("bm-prerender")?i.getNamedItem("bm-prerender").value:"")&&(r.prerender=!1),this.setParams(r)},AnimationItem.prototype.includeLayers=function(t){t.op>this.animationData.op&&(this.animationData.op=t.op,this.totalFrames=Math.floor(t.op-this.animationData.ip));var e,r,i=this.animationData.layers,s=i.length,a=t.layers,n=a.length;for(r=0;r<n;r+=1)for(e=0;e<s;){if(i[e].id==a[r].id){i[e]=a[r];break}e+=1}if((t.chars||t.fonts)&&(this.renderer.globalData.fontManager.addChars(t.chars),this.renderer.globalData.fontManager.addFonts(t.fonts,this.renderer.globalData.defs)),t.assets)for(s=t.assets.length,e=0;e<s;e+=1)this.animationData.assets.push(t.assets[e]);this.animationData.__complete=!1,dataManager.completeData(this.animationData,this.renderer.globalData.fontManager),this.renderer.includeLayers(t.layers),expressionsPlugin&&expressionsPlugin.initExpressions(this),this.loadNextSegment()},AnimationItem.prototype.loadNextSegment=function(){var t=this.animationData.segments;if(!t||0===t.length||!this.autoloadSegments)return this.trigger("data_ready"),void(this.timeCompleted=this.totalFrames);var e=t.shift();this.timeCompleted=e.time*this.frameRate;var r=this.path+this.fileName+"_"+this.segmentPos+".json";this.segmentPos+=1,assetLoader.load(r,this.includeLayers.bind(this),function(){this.trigger("data_failed")}.bind(this))},AnimationItem.prototype.loadSegments=function(){this.animationData.segments||(this.timeCompleted=this.totalFrames),this.loadNextSegment()},AnimationItem.prototype.imagesLoaded=function(){this.trigger("loaded_images"),this.checkLoaded()},AnimationItem.prototype.preloadImages=function(){this.imagePreloader.setAssetsPath(this.assetsPath),this.imagePreloader.setPath(this.path),this.imagePreloader.loadAssets(this.animationData.assets,this.imagesLoaded.bind(this))},AnimationItem.prototype.configAnimation=function(t){if(this.renderer)try{this.animationData=t,this.initialSegment?(this.totalFrames=Math.floor(this.initialSegment[1]-this.initialSegment[0]),this.firstFrame=Math.round(this.initialSegment[0])):(this.totalFrames=Math.floor(this.animationData.op-this.animationData.ip),this.firstFrame=Math.round(this.animationData.ip)),this.renderer.configAnimation(t),t.assets||(t.assets=[]),this.assets=this.animationData.assets,this.frameRate=this.animationData.fr,this.frameMult=this.animationData.fr/1e3,this.renderer.searchExtraCompositions(t.assets),this.trigger("config_ready"),this.preloadImages(),this.loadSegments(),this.updaFrameModifier(),this.waitForFontsLoaded()}catch(t){this.triggerConfigError(t)}},AnimationItem.prototype.waitForFontsLoaded=function(){this.renderer&&(this.renderer.globalData.fontManager.loaded()?this.checkLoaded():setTimeout(this.waitForFontsLoaded.bind(this),20))},AnimationItem.prototype.checkLoaded=function(){this.isLoaded||!this.renderer.globalData.fontManager.loaded()||!this.imagePreloader.loaded()&&"canvas"===this.renderer.rendererType||(this.isLoaded=!0,dataManager.completeData(this.animationData,this.renderer.globalData.fontManager),expressionsPlugin&&expressionsPlugin.initExpressions(this),this.renderer.initItems(),setTimeout(function(){this.trigger("DOMLoaded")}.bind(this),0),this.gotoFrame(),this.autoplay&&this.play())},AnimationItem.prototype.resize=function(){this.renderer.updateContainerSize()},AnimationItem.prototype.setSubframe=function(t){this.subframeEnabled=!!t},AnimationItem.prototype.gotoFrame=function(){this.currentFrame=this.subframeEnabled?this.currentRawFrame:~~this.currentRawFrame,this.timeCompleted!==this.totalFrames&&this.currentFrame>this.timeCompleted&&(this.currentFrame=this.timeCompleted),this.trigger("enterFrame"),this.renderFrame()},AnimationItem.prototype.renderFrame=function(){if(!1!==this.isLoaded)try{this.renderer.renderFrame(this.currentFrame+this.firstFrame)}catch(t){this.triggerRenderFrameError(t)}},AnimationItem.prototype.play=function(t){t&&this.name!=t||!0===this.isPaused&&(this.isPaused=!1,this._idle&&(this._idle=!1,this.trigger("_active")))},AnimationItem.prototype.pause=function(t){t&&this.name!=t||!1===this.isPaused&&(this.isPaused=!0,this._idle=!0,this.trigger("_idle"))},AnimationItem.prototype.togglePause=function(t){t&&this.name!=t||(!0===this.isPaused?this.play():this.pause())},AnimationItem.prototype.stop=function(t){t&&this.name!=t||(this.pause(),this.playCount=0,this._completedLoop=!1,this.setCurrentRawFrameValue(0))},AnimationItem.prototype.goToAndStop=function(t,e,r){r&&this.name!=r||(e?this.setCurrentRawFrameValue(t):this.setCurrentRawFrameValue(t*this.frameModifier),this.pause())},AnimationItem.prototype.goToAndPlay=function(t,e,r){this.goToAndStop(t,e,r),this.play()},AnimationItem.prototype.advanceTime=function(t){if(!0!==this.isPaused&&!1!==this.isLoaded){var e=this.currentRawFrame+t*this.frameModifier,r=!1;e>=this.totalFrames-1&&0<this.frameModifier?this.loop&&this.playCount!==this.loop?e>=this.totalFrames?(this.playCount+=1,this.checkSegments(e%this.totalFrames)||(this.setCurrentRawFrameValue(e%this.totalFrames),this._completedLoop=!0,this.trigger("loopComplete"))):this.setCurrentRawFrameValue(e):this.checkSegments(e>this.totalFrames?e%this.totalFrames:0)||(r=!0,e=this.totalFrames-1):e<0?this.checkSegments(e%this.totalFrames)||(!this.loop||this.playCount--<=0&&!0!==this.loop?(r=!0,e=0):(this.setCurrentRawFrameValue(this.totalFrames+e%this.totalFrames),this._completedLoop?this.trigger("loopComplete"):this._completedLoop=!0)):this.setCurrentRawFrameValue(e),r&&(this.setCurrentRawFrameValue(e),this.pause(),this.trigger("complete"))}},AnimationItem.prototype.adjustSegment=function(t,e){this.playCount=0,t[1]<t[0]?(0<this.frameModifier&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(-1)),this.timeCompleted=this.totalFrames=t[0]-t[1],this.firstFrame=t[1],this.setCurrentRawFrameValue(this.totalFrames-.001-e)):t[1]>t[0]&&(this.frameModifier<0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(1)),this.timeCompleted=this.totalFrames=t[1]-t[0],this.firstFrame=t[0],this.setCurrentRawFrameValue(.001+e)),this.trigger("segmentStart")},AnimationItem.prototype.setSegment=function(t,e){var r=-1;this.isPaused&&(this.currentRawFrame+this.firstFrame<t?r=t:this.currentRawFrame+this.firstFrame>e&&(r=e-t)),this.firstFrame=t,this.timeCompleted=this.totalFrames=e-t,-1!==r&&this.goToAndStop(r,!0)},AnimationItem.prototype.playSegments=function(t,e){if(e&&(this.segments.length=0),"object"==typeof t[0]){var r,i=t.length;for(r=0;r<i;r+=1)this.segments.push(t[r])}else this.segments.push(t);this.segments.length&&e&&this.adjustSegment(this.segments.shift(),0),this.isPaused&&this.play()},AnimationItem.prototype.resetSegments=function(t){this.segments.length=0,this.segments.push([this.animationData.ip,this.animationData.op]),t&&this.checkSegments(0)},AnimationItem.prototype.checkSegments=function(t){return!!this.segments.length&&(this.adjustSegment(this.segments.shift(),t),!0)},AnimationItem.prototype.destroy=function(t){t&&this.name!=t||!this.renderer||(this.renderer.destroy(),this.imagePreloader.destroy(),this.trigger("destroy"),this._cbs=null,this.onEnterFrame=this.onLoopComplete=this.onComplete=this.onSegmentStart=this.onDestroy=null,this.renderer=null)},AnimationItem.prototype.setCurrentRawFrameValue=function(t){this.currentRawFrame=t,this.gotoFrame()},AnimationItem.prototype.setSpeed=function(t){this.playSpeed=t,this.updaFrameModifier()},AnimationItem.prototype.setDirection=function(t){this.playDirection=t<0?-1:1,this.updaFrameModifier()},AnimationItem.prototype.updaFrameModifier=function(){this.frameModifier=this.frameMult*this.playSpeed*this.playDirection},AnimationItem.prototype.getPath=function(){return this.path},AnimationItem.prototype.getAssetsPath=function(t){var e="";if(t.e)e=t.p;else if(this.assetsPath){var r=t.p;-1!==r.indexOf("images/")&&(r=r.split("/")[1]),e=this.assetsPath+r}else e=this.path,e+=t.u?t.u:"",e+=t.p;return e},AnimationItem.prototype.getAssetData=function(t){for(var e=0,r=this.assets.length;e<r;){if(t==this.assets[e].id)return this.assets[e];e+=1}},AnimationItem.prototype.hide=function(){this.renderer.hide()},AnimationItem.prototype.show=function(){this.renderer.show()},AnimationItem.prototype.getDuration=function(t){return t?this.totalFrames:this.totalFrames/this.frameRate},AnimationItem.prototype.trigger=function(t){if(this._cbs&&this._cbs[t])switch(t){case"enterFrame":this.triggerEvent(t,new BMEnterFrameEvent(t,this.currentFrame,this.totalFrames,this.frameModifier));break;case"loopComplete":this.triggerEvent(t,new BMCompleteLoopEvent(t,this.loop,this.playCount,this.frameMult));break;case"complete":this.triggerEvent(t,new BMCompleteEvent(t,this.frameMult));break;case"segmentStart":this.triggerEvent(t,new BMSegmentStartEvent(t,this.firstFrame,this.totalFrames));break;case"destroy":this.triggerEvent(t,new BMDestroyEvent(t,this));break;default:this.triggerEvent(t)}"enterFrame"===t&&this.onEnterFrame&&this.onEnterFrame.call(this,new BMEnterFrameEvent(t,this.currentFrame,this.totalFrames,this.frameMult)),"loopComplete"===t&&this.onLoopComplete&&this.onLoopComplete.call(this,new BMCompleteLoopEvent(t,this.loop,this.playCount,this.frameMult)),"complete"===t&&this.onComplete&&this.onComplete.call(this,new BMCompleteEvent(t,this.frameMult)),"segmentStart"===t&&this.onSegmentStart&&this.onSegmentStart.call(this,new BMSegmentStartEvent(t,this.firstFrame,this.totalFrames)),"destroy"===t&&this.onDestroy&&this.onDestroy.call(this,new BMDestroyEvent(t,this))},AnimationItem.prototype.triggerRenderFrameError=function(t){var e=new BMRenderFrameErrorEvent(t,this.currentFrame);this.triggerEvent("error",e),this.onError&&this.onError.call(this,e)},AnimationItem.prototype.triggerConfigError=function(t){var e=new BMConfigErrorEvent(t,this.currentFrame);this.triggerEvent("error",e),this.onError&&this.onError.call(this,e)};var Expressions=(HW={},HW.initExpressions=function(t){var e=0,r=[];function i(){var t,e=r.length;for(t=0;t<e;t+=1)r[t].release();r.length=0}t.renderer.compInterface=CompExpressionInterface(t.renderer),t.renderer.globalData.projectInterface.registerComposition(t.renderer),t.renderer.globalData.pushExpression=function(){e+=1},t.renderer.globalData.popExpression=function(){0==(e-=1)&&i()},t.renderer.globalData.registerExpressionProperty=function(t){-1===r.indexOf(t)&&r.push(t)}},HW),HW;expressionsPlugin=Expressions;var ExpressionManager=function(){var ob={},Math=BMMath,window=null,document=null;function $bm_isInstanceOfArray(t){return t.constructor===Array||t.constructor===Float32Array}function isNumerable(t,e){return"number"===t||"boolean"===t||"string"===t||e instanceof Number}function $bm_neg(t){var e=typeof t;if("number"===e||"boolean"===e||t instanceof Number)return-t;if($bm_isInstanceOfArray(t)){var r,i=t.length,s=[];for(r=0;r<i;r+=1)s[r]=-t[r];return s}return t.propType?t.v:void 0}var easeInBez=BezierFactory.getBezierEasing(.333,0,.833,.833,"easeIn").get,easeOutBez=BezierFactory.getBezierEasing(.167,.167,.667,1,"easeOut").get,easeInOutBez=BezierFactory.getBezierEasing(.33,0,.667,1,"easeInOut").get;function sum(t,e){var r=typeof t,i=typeof e;if("string"===r||"string"===i)return t+e;if(isNumerable(r,t)&&isNumerable(i,e))return t+e;if($bm_isInstanceOfArray(t)&&isNumerable(i,e))return(t=t.slice(0))[0]=t[0]+e,t;if(isNumerable(r,t)&&$bm_isInstanceOfArray(e))return(e=e.slice(0))[0]=t+e[0],e;if($bm_isInstanceOfArray(t)&&$bm_isInstanceOfArray(e)){for(var s=0,a=t.length,n=e.length,o=[];s<a||s<n;)("number"==typeof t[s]||t[s]instanceof Number)&&("number"==typeof e[s]||e[s]instanceof Number)?o[s]=t[s]+e[s]:o[s]=void 0===e[s]?t[s]:t[s]||e[s],s+=1;return o}return 0}var add=sum;function sub(t,e){var r=typeof t,i=typeof e;if(isNumerable(r,t)&&isNumerable(i,e))return"string"===r&&(t=parseInt(t)),"string"===i&&(e=parseInt(e)),t-e;if($bm_isInstanceOfArray(t)&&isNumerable(i,e))return(t=t.slice(0))[0]=t[0]-e,t;if(isNumerable(r,t)&&$bm_isInstanceOfArray(e))return(e=e.slice(0))[0]=t-e[0],e;if($bm_isInstanceOfArray(t)&&$bm_isInstanceOfArray(e)){for(var s=0,a=t.length,n=e.length,o=[];s<a||s<n;)("number"==typeof t[s]||t[s]instanceof Number)&&("number"==typeof e[s]||e[s]instanceof Number)?o[s]=t[s]-e[s]:o[s]=void 0===e[s]?t[s]:t[s]||e[s],s+=1;return o}return 0}function mul(t,e){var r,i,s,a=typeof t,n=typeof e;if(isNumerable(a,t)&&isNumerable(n,e))return t*e;if($bm_isInstanceOfArray(t)&&isNumerable(n,e)){for(s=t.length,r=createTypedArray("float32",s),i=0;i<s;i+=1)r[i]=t[i]*e;return r}if(isNumerable(a,t)&&$bm_isInstanceOfArray(e)){for(s=e.length,r=createTypedArray("float32",s),i=0;i<s;i+=1)r[i]=t*e[i];return r}return 0}function div(t,e){var r,i,s,a=typeof t,n=typeof e;if(isNumerable(a,t)&&isNumerable(n,e))return t/e;if($bm_isInstanceOfArray(t)&&isNumerable(n,e)){for(s=t.length,r=createTypedArray("float32",s),i=0;i<s;i+=1)r[i]=t[i]/e;return r}if(isNumerable(a,t)&&$bm_isInstanceOfArray(e)){for(s=e.length,r=createTypedArray("float32",s),i=0;i<s;i+=1)r[i]=t/e[i];return r}return 0}function mod(t,e){return"string"==typeof t&&(t=parseInt(t)),"string"==typeof e&&(e=parseInt(e)),t%e}var $bm_sum=sum,$bm_sub=sub,$bm_mul=mul,$bm_div=div,$bm_mod=mod;function clamp(t,e,r){if(r<e){var i=r;r=e,e=i}return Math.min(Math.max(t,e),r)}function radiansToDegrees(t){return t/degToRads}var radians_to_degrees=radiansToDegrees;function degreesToRadians(t){return t*degToRads}var degrees_to_radians=radiansToDegrees,helperLengthArray=[0,0,0,0,0,0];function length(t,e){if("number"==typeof t||t instanceof Number)return e=e||0,Math.abs(t-e);e||(e=helperLengthArray);var r,i=Math.min(t.length,e.length),s=0;for(r=0;r<i;r+=1)s+=Math.pow(e[r]-t[r],2);return Math.sqrt(s)}function normalize(t){return div(t,length(t))}function rgbToHsl(t){var e,r,i=t[0],s=t[1],a=t[2],n=Math.max(i,s,a),o=Math.min(i,s,a),h=(n+o)/2;if(n==o)e=r=0;else{var l=n-o;switch(r=.5<h?l/(2-n-o):l/(n+o),n){case i:e=(s-a)/l+(s<a?6:0);break;case s:e=(a-i)/l+2;break;case a:e=(i-s)/l+4}e/=6}return[e,r,h,t[3]]}function hue2rgb(t,e,r){return r<0&&(r+=1),1<r&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}function hslToRgb(t){var e,r,i,s=t[0],a=t[1],n=t[2];if(0===a)e=r=i=n;else{var o=n<.5?n*(1+a):n+a-n*a,h=2*n-o;e=hue2rgb(h,o,s+1/3),r=hue2rgb(h,o,s),i=hue2rgb(h,o,s-1/3)}return[e,r,i,t[3]]}function linear(t,e,r,i,s){if(void 0!==i&&void 0!==s||(i=e,s=r,e=0,r=1),r<e){var a=r;r=e,e=a}if(t<=e)return i;if(r<=t)return s;var n=r===e?0:(t-e)/(r-e);if(!i.length)return i+(s-i)*n;var o,h=i.length,l=createTypedArray("float32",h);for(o=0;o<h;o+=1)l[o]=i[o]+(s[o]-i[o])*n;return l}function random(t,e){if(void 0===e&&(void 0===t?(t=0,e=1):(e=t,t=void 0)),e.length){var r,i=e.length;t||(t=createTypedArray("float32",i));var s=createTypedArray("float32",i),a=BMMath.random();for(r=0;r<i;r+=1)s[r]=t[r]+a*(e[r]-t[r]);return s}return void 0===t&&(t=0),t+BMMath.random()*(e-t)}function createPath(t,e,r,i){var s,a=t.length,n=shape_pool.newElement();n.setPathData(!!i,a);var o,h,l=[0,0];for(s=0;s<a;s+=1)o=e&&e[s]?e[s]:l,h=r&&r[s]?r[s]:l,n.setTripleAt(t[s][0],t[s][1],h[0]+t[s][0],h[1]+t[s][1],o[0]+t[s][0],o[1]+t[s][1],s,!0);return n}function initiateExpression(elem,data,property){var val=data.x,needsVelocity=/velocity(?![\w\d])/.test(val),_needsRandom=-1!==val.indexOf("random"),elemType=elem.data.ty,transform,$bm_transform,content,effect,thisProperty=property;thisProperty.valueAtTime=thisProperty.getValueAtTime,Object.defineProperty(thisProperty,"value",{get:function(){return thisProperty.v}}),elem.comp.frameDuration=1/elem.comp.globalData.frameRate,elem.comp.displayStartTime=0;var inPoint=elem.data.ip/elem.comp.globalData.frameRate,outPoint=elem.data.op/elem.comp.globalData.frameRate,width=elem.data.sw?elem.data.sw:0,height=elem.data.sh?elem.data.sh:0,name=elem.data.nm,loopIn,loop_in,loopOut,loop_out,smooth,toWorld,fromWorld,fromComp,toComp,fromCompToSurface,position,rotation,anchorPoint,scale,thisLayer,thisComp,mask,valueAtTime,velocityAtTime,__expression_functions=[],scoped_bm_rt;if(data.xf){var i,len=data.xf.length;for(i=0;i<len;i+=1)__expression_functions[i]=eval("(function(){ return "+data.xf[i]+"}())")}var expression_function=eval("[function _expression_function(){"+val+";scoped_bm_rt=$bm_rt}]")[0],numKeys=property.kf?data.k.length:0,active=!this.data||!0!==this.data.hd,wiggle=function(t,e){var r,i,s=this.pv.length?this.pv.length:1,a=createTypedArray("float32",s);var n=Math.floor(5*time);for(i=r=0;r<n;){for(i=0;i<s;i+=1)a[i]+=-e+2*e*BMMath.random();r+=1}var o=5*time,h=o-Math.floor(o),l=createTypedArray("float32",s);if(1<s){for(i=0;i<s;i+=1)l[i]=this.pv[i]+a[i]+(-e+2*e*BMMath.random())*h;return l}return this.pv+a[0]+(-e+2*e*BMMath.random())*h}.bind(this);function loopInDuration(t,e){return loopIn(t,e,!0)}function loopOutDuration(t,e){return loopOut(t,e,!0)}thisProperty.loopIn&&(loopIn=thisProperty.loopIn.bind(thisProperty),loop_in=loopIn),thisProperty.loopOut&&(loopOut=thisProperty.loopOut.bind(thisProperty),loop_out=loopOut),thisProperty.smooth&&(smooth=thisProperty.smooth.bind(thisProperty)),this.getValueAtTime&&(valueAtTime=this.getValueAtTime.bind(this)),this.getVelocityAtTime&&(velocityAtTime=this.getVelocityAtTime.bind(this));var comp=elem.comp.globalData.projectInterface.bind(elem.comp.globalData.projectInterface),time,velocity,value,text,textIndex,textTotal,selectorValue;function lookAt(t,e){var r=[e[0]-t[0],e[1]-t[1],e[2]-t[2]],i=Math.atan2(r[0],Math.sqrt(r[1]*r[1]+r[2]*r[2]))/degToRads;return[-Math.atan2(r[1],r[2])/degToRads,i,0]}function easeOut(t,e,r,i,s){return applyEase(easeOutBez,t,e,r,i,s)}function easeIn(t,e,r,i,s){return applyEase(easeInBez,t,e,r,i,s)}function ease(t,e,r,i,s){return applyEase(easeInOutBez,t,e,r,i,s)}function applyEase(t,e,r,i,s,a){void 0===s?(s=r,a=i):e=(e-r)/(i-r);var n=t(e=1<e?1:e<0?0:e);if($bm_isInstanceOfArray(s)){var o,h=s.length,l=createTypedArray("float32",h);for(o=0;o<h;o+=1)l[o]=(a[o]-s[o])*n+s[o];return l}return(a-s)*n+s}function nearestKey(t){var e,r,i,s=data.k.length;if(data.k.length&&"number"!=typeof data.k[0])if(r=-1,(t*=elem.comp.globalData.frameRate)<data.k[0].t)r=1,i=data.k[0].t;else{for(e=0;e<s-1;e+=1){if(t===data.k[e].t){r=e+1,i=data.k[e].t;break}if(t>data.k[e].t&&t<data.k[e+1].t){i=t-data.k[e].t>data.k[e+1].t-t?(r=e+2,data.k[e+1].t):(r=e+1,data.k[e].t);break}}-1===r&&(r=e+1,i=data.k[e].t)}else i=r=0;var a={};return a.index=r,a.time=i/elem.comp.globalData.frameRate,a}function key(t){var e,r,i;if(!data.k.length||"number"==typeof data.k[0])throw new Error("The property has no keyframe at index "+t);t-=1,e={time:data.k[t].t/elem.comp.globalData.frameRate,value:[]};var s=data.k[t].hasOwnProperty("s")?data.k[t].s:data.k[t-1].e;for(i=s.length,r=0;r<i;r+=1)e[r]=s[r],e.value[r]=s[r];return e}function framesToTime(t,e){return e||(e=elem.comp.globalData.frameRate),t/e}function timeToFrames(t,e){return t||0===t||(t=time),e||(e=elem.comp.globalData.frameRate),t*e}function seedRandom(t){BMMath.seedrandom(randSeed+t)}function sourceRectAtTime(){return elem.sourceRectAtTime()}function substring(t,e){return"string"==typeof value?void 0===e?value.substring(t):value.substring(t,e):""}function substr(t,e){return"string"==typeof value?void 0===e?value.substr(t):value.substr(t,e):""}function posterizeTime(t){time=0===t?0:Math.floor(time*t)/t,value=valueAtTime(time)}var index=elem.data.ind,hasParent=!(!elem.hierarchy||!elem.hierarchy.length),parent,randSeed=Math.floor(1e6*Math.random()),globalData=elem.globalData;function executeExpression(t){return value=t,_needsRandom&&seedRandom(randSeed),this.frameExpressionId===elem.globalData.frameId&&"textSelector"!==this.propType?value:("textSelector"===this.propType&&(textIndex=this.textIndex,textTotal=this.textTotal,selectorValue=this.selectorValue),thisLayer||(text=elem.layerInterface.text,thisLayer=elem.layerInterface,thisComp=elem.comp.compInterface,toWorld=thisLayer.toWorld.bind(thisLayer),fromWorld=thisLayer.fromWorld.bind(thisLayer),fromComp=thisLayer.fromComp.bind(thisLayer),toComp=thisLayer.toComp.bind(thisLayer),mask=thisLayer.mask?thisLayer.mask.bind(thisLayer):null,fromCompToSurface=fromComp),transform||(transform=elem.layerInterface("ADBE Transform Group"),($bm_transform=transform)&&(anchorPoint=transform.anchorPoint)),4!==elemType||content||(content=thisLayer("ADBE Root Vectors Group")),effect||(effect=thisLayer(4)),(hasParent=!(!elem.hierarchy||!elem.hierarchy.length))&&!parent&&(parent=elem.hierarchy[0].layerInterface),time=this.comp.renderedFrame/this.comp.globalData.frameRate,needsVelocity&&(velocity=velocityAtTime(time)),expression_function(),this.frameExpressionId=elem.globalData.frameId,"shape"===scoped_bm_rt.propType&&(scoped_bm_rt=scoped_bm_rt.v),scoped_bm_rt)}return executeExpression}return ob.initiateExpression=initiateExpression,ob}(),expressionHelpers={searchExpressions:function(t,e,r){e.x&&(r.k=!0,r.x=!0,r.initiateExpression=ExpressionManager.initiateExpression,r.effectsSequence.push(r.initiateExpression(t,e,r).bind(r)))},getSpeedAtTime:function(t){var e=this.getValueAtTime(t),r=this.getValueAtTime(t+-.01),i=0;if(e.length){var s;for(s=0;s<e.length;s+=1)i+=Math.pow(r[s]-e[s],2);i=100*Math.sqrt(i)}else i=0;return i},getVelocityAtTime:function(t){if(void 0!==this.vel)return this.vel;var e,r,i=this.getValueAtTime(t),s=this.getValueAtTime(t+-.001);if(i.length)for(e=createTypedArray("float32",i.length),r=0;r<i.length;r+=1)e[r]=(s[r]-i[r])/-.001;else e=(s-i)/-.001;return e},getValueAtTime:function(t){return t*=this.elem.globalData.frameRate,(t-=this.offsetTime)!==this._cachingAtTime.lastFrame&&(this._cachingAtTime.lastIndex=this._cachingAtTime.lastFrame<t?this._cachingAtTime.lastIndex:0,this._cachingAtTime.value=this.interpolateValue(t,this._cachingAtTime),this._cachingAtTime.lastFrame=t),this._cachingAtTime.value},getStaticValueAtTime:function(){return this.pv},setGroupProperty:function(t){this.propertyGroup=t}};!function(){function o(t,e,r){if(!this.k||!this.keyframes)return this.pv;t=t?t.toLowerCase():"";var i,s,a,n,o,h=this.comp.renderedFrame,l=this.keyframes,p=l[l.length-1].t;if(h<=p)return this.pv;if(r?s=p-(i=e?Math.abs(p-elem.comp.globalData.frameRate*e):Math.max(0,p-this.elem.data.ip)):((!e||e>l.length-1)&&(e=l.length-1),i=p-(s=l[l.length-1-e].t)),"pingpong"===t){if(Math.floor((h-s)/i)%2!=0)return this.getValueAtTime((i-(h-s)%i+s)/this.comp.globalData.frameRate,0)}else{if("offset"===t){var m=this.getValueAtTime(s/this.comp.globalData.frameRate,0),f=this.getValueAtTime(p/this.comp.globalData.frameRate,0),c=this.getValueAtTime(((h-s)%i+s)/this.comp.globalData.frameRate,0),d=Math.floor((h-s)/i);if(this.pv.length){for(n=(o=new Array(m.length)).length,a=0;a<n;a+=1)o[a]=(f[a]-m[a])*d+c[a];return o}return(f-m)*d+c}if("continue"===t){var u=this.getValueAtTime(p/this.comp.globalData.frameRate,0),y=this.getValueAtTime((p-.001)/this.comp.globalData.frameRate,0);if(this.pv.length){for(n=(o=new Array(u.length)).length,a=0;a<n;a+=1)o[a]=u[a]+(u[a]-y[a])*((h-p)/this.comp.globalData.frameRate)/5e-4;return o}return u+(h-p)/.001*(u-y)}}return this.getValueAtTime(((h-s)%i+s)/this.comp.globalData.frameRate,0)}function h(t,e,r){if(!this.k)return this.pv;t=t?t.toLowerCase():"";var i,s,a,n,o,h=this.comp.renderedFrame,l=this.keyframes,p=l[0].t;if(p<=h)return this.pv;if(r?s=p+(i=e?Math.abs(elem.comp.globalData.frameRate*e):Math.max(0,this.elem.data.op-p)):((!e||e>l.length-1)&&(e=l.length-1),i=(s=l[e].t)-p),"pingpong"===t){if(Math.floor((p-h)/i)%2==0)return this.getValueAtTime(((p-h)%i+p)/this.comp.globalData.frameRate,0)}else{if("offset"===t){var m=this.getValueAtTime(p/this.comp.globalData.frameRate,0),f=this.getValueAtTime(s/this.comp.globalData.frameRate,0),c=this.getValueAtTime((i-(p-h)%i+p)/this.comp.globalData.frameRate,0),d=Math.floor((p-h)/i)+1;if(this.pv.length){for(n=(o=new Array(m.length)).length,a=0;a<n;a+=1)o[a]=c[a]-(f[a]-m[a])*d;return o}return c-(f-m)*d}if("continue"===t){var u=this.getValueAtTime(p/this.comp.globalData.frameRate,0),y=this.getValueAtTime((p+.001)/this.comp.globalData.frameRate,0);if(this.pv.length){for(n=(o=new Array(u.length)).length,a=0;a<n;a+=1)o[a]=u[a]+(u[a]-y[a])*(p-h)/.001;return o}return u+(u-y)*(p-h)/.001}}return this.getValueAtTime((i-(p-h)%i+p)/this.comp.globalData.frameRate,0)}function l(t,e){if(!this.k)return this.pv;if(t=.5*(t||.4),(e=Math.floor(e||5))<=1)return this.pv;var r,i,s=this.comp.renderedFrame/this.comp.globalData.frameRate,a=s-t,n=1<e?(s+t-a)/(e-1):1,o=0,h=0;for(r=this.pv.length?createTypedArray("float32",this.pv.length):0;o<e;){if(i=this.getValueAtTime(a+o*n),this.pv.length)for(h=0;h<this.pv.length;h+=1)r[h]+=i[h];else r+=i;o+=1}if(this.pv.length)for(h=0;h<this.pv.length;h+=1)r[h]/=e;else r/=e;return r}var s=TransformPropertyFactory.getTransformProperty;TransformPropertyFactory.getTransformProperty=function(t,e,r){var i=s(t,e,r);return i.dynamicProperties.length?i.getValueAtTime=function(t){console.warn("Transform at time not supported")}.bind(i):i.getValueAtTime=function(t){}.bind(i),i.setGroupProperty=expressionHelpers.setGroupProperty,i};var p=PropertyFactory.getProp;PropertyFactory.getProp=function(t,e,r,i,s){var a=p(t,e,r,i,s);a.kf?a.getValueAtTime=expressionHelpers.getValueAtTime.bind(a):a.getValueAtTime=expressionHelpers.getStaticValueAtTime.bind(a),a.setGroupProperty=expressionHelpers.setGroupProperty,a.loopOut=o,a.loopIn=h,a.smooth=l,a.getVelocityAtTime=expressionHelpers.getVelocityAtTime.bind(a),a.getSpeedAtTime=expressionHelpers.getSpeedAtTime.bind(a),a.numKeys=1===e.a?e.k.length:0,a.propertyIndex=e.ix;var n=0;return 0!==r&&(n=createTypedArray("float32",1===e.a?e.k[0].s.length:e.k.length)),a._cachingAtTime={lastFrame:initialDefaultFrame,lastIndex:0,value:n},expressionHelpers.searchExpressions(t,e,a),a.k&&s.addDynamicProperty(a),a};var t=ShapePropertyFactory.getConstructorFunction(),e=ShapePropertyFactory.getKeyframedConstructorFunction();function r(){}r.prototype={vertices:function(t,e){this.k&&this.getValue();var r=this.v;void 0!==e&&(r=this.getValueAtTime(e,0));var i,s=r._length,a=r[t],n=r.v,o=createSizedArray(s);for(i=0;i<s;i+=1)o[i]="i"===t||"o"===t?[a[i][0]-n[i][0],a[i][1]-n[i][1]]:[a[i][0],a[i][1]];return o},points:function(t){return this.vertices("v",t)},inTangents:function(t){return this.vertices("i",t)},outTangents:function(t){return this.vertices("o",t)},isClosed:function(){return this.v.c},pointOnPath:function(t,e){var r=this.v;void 0!==e&&(r=this.getValueAtTime(e,0)),this._segmentsLength||(this._segmentsLength=bez.getSegmentsLength(r));for(var i,s=this._segmentsLength,a=s.lengths,n=s.totalLength*t,o=0,h=a.length,l=0;o<h;){if(l+a[o].addedLength>n){var p=o,m=r.c&&o===h-1?0:o+1,f=(n-l)/a[o].addedLength;i=bez.getPointInSegment(r.v[p],r.v[m],r.o[p],r.i[m],f,a[o]);break}l+=a[o].addedLength,o+=1}return i||(i=r.c?[r.v[0][0],r.v[0][1]]:[r.v[r._length-1][0],r.v[r._length-1][1]]),i},vectorOnPath:function(t,e,r){t=1==t?this.v.c?0:.999:t;var i=this.pointOnPath(t,e),s=this.pointOnPath(t+.001,e),a=s[0]-i[0],n=s[1]-i[1],o=Math.sqrt(Math.pow(a,2)+Math.pow(n,2));return 0===o?[0,0]:"tangent"===r?[a/o,n/o]:[-n/o,a/o]},tangentOnPath:function(t,e){return this.vectorOnPath(t,e,"tangent")},normalOnPath:function(t,e){return this.vectorOnPath(t,e,"normal")},setGroupProperty:expressionHelpers.setGroupProperty,getValueAtTime:expressionHelpers.getStaticValueAtTime},extendPrototype([r],t),extendPrototype([r],e),e.prototype.getValueAtTime=function(t){return this._cachingAtTime||(this._cachingAtTime={shapeValue:shape_pool.clone(this.pv),lastIndex:0,lastTime:initialDefaultFrame}),t*=this.elem.globalData.frameRate,(t-=this.offsetTime)!==this._cachingAtTime.lastTime&&(this._cachingAtTime.lastIndex=this._cachingAtTime.lastTime<t?this._caching.lastIndex:0,this._cachingAtTime.lastTime=t,this.interpolateShape(t,this._cachingAtTime.shapeValue,this._cachingAtTime)),this._cachingAtTime.shapeValue},e.prototype.initiateExpression=ExpressionManager.initiateExpression;var n=ShapePropertyFactory.getShapeProp;ShapePropertyFactory.getShapeProp=function(t,e,r,i,s){var a=n(t,e,r,i,s);return a.propertyIndex=e.ix,a.lock=!1,3===r?expressionHelpers.searchExpressions(t,e.pt,a):4===r&&expressionHelpers.searchExpressions(t,e.ks,a),a.k&&t.addDynamicProperty(a),a}}(),TextProperty.prototype.getExpressionValue=function(t,e){var r=this.calculateExpression(e);if(t.t===r)return t;var i={};return this.copyData(i,t),i.t=r.toString(),i.__complete=!1,i},TextProperty.prototype.searchProperty=function(){var t=this.searchKeyframes(),e=this.searchExpressions();return this.kf=t||e,this.kf},TextProperty.prototype.searchExpressions=function(){if(this.data.d.x)return this.calculateExpression=ExpressionManager.initiateExpression.bind(this)(this.elem,this.data.d,this),this.addEffect(this.getExpressionValue.bind(this)),!0};var ShapeExpressionInterface=function(){function m(t,e,r){var i,s=[],a=t?t.length:0;for(i=0;i<a;i+=1)"gr"==t[i].ty?s.push(n(t[i],e[i],r)):"fl"==t[i].ty?s.push(o(t[i],e[i],r)):"st"==t[i].ty?s.push(h(t[i],e[i],r)):"tm"==t[i].ty?s.push(l(t[i],e[i],r)):"tr"==t[i].ty||("el"==t[i].ty?s.push(p(t[i],e[i],r)):"sr"==t[i].ty?s.push(f(t[i],e[i],r)):"sh"==t[i].ty?s.push(y(t[i],e[i],r)):"rc"==t[i].ty?s.push(c(t[i],e[i],r)):"rd"==t[i].ty?s.push(d(t[i],e[i],r)):"rp"==t[i].ty&&s.push(u(t[i],e[i],r)));return s}function n(t,e,r){var i=function(t){switch(t){case"ADBE Vectors Group":case"Contents":case 2:return i.content;default:return i.transform}};i.propertyGroup=function(t){return 1===t?i:r(t-1)};var s,a,n,o,h,l=(s=t,a=e,n=i.propertyGroup,(h=function(t){for(var e=0,r=o.length;e<r;){if(o[e]._name===t||o[e].mn===t||o[e].propertyIndex===t||o[e].ix===t||o[e].ind===t)return o[e];e+=1}if("number"==typeof t)return o[t-1]}).propertyGroup=function(t){return 1===t?h:n(t-1)},o=m(s.it,a.it,h.propertyGroup),h.numProperties=o.length,h.propertyIndex=s.cix,h._name=s.nm,h),p=function(e,t,r){function i(t){return 1==t?s:r(--t)}t.transform.mProps.o.setGroupProperty(i),t.transform.mProps.p.setGroupProperty(i),t.transform.mProps.a.setGroupProperty(i),t.transform.mProps.s.setGroupProperty(i),t.transform.mProps.r.setGroupProperty(i),t.transform.mProps.sk&&(t.transform.mProps.sk.setGroupProperty(i),t.transform.mProps.sa.setGroupProperty(i));function s(t){return e.a.ix===t||"Anchor Point"===t?s.anchorPoint:e.o.ix===t||"Opacity"===t?s.opacity:e.p.ix===t||"Position"===t?s.position:e.r.ix===t||"Rotation"===t||"ADBE Vector Rotation"===t?s.rotation:e.s.ix===t||"Scale"===t?s.scale:e.sk&&e.sk.ix===t||"Skew"===t?s.skew:e.sa&&e.sa.ix===t||"Skew Axis"===t?s.skewAxis:void 0}return t.transform.op.setGroupProperty(i),Object.defineProperties(s,{opacity:{get:ExpressionPropertyInterface(t.transform.mProps.o)},position:{get:ExpressionPropertyInterface(t.transform.mProps.p)},anchorPoint:{get:ExpressionPropertyInterface(t.transform.mProps.a)},scale:{get:ExpressionPropertyInterface(t.transform.mProps.s)},rotation:{get:ExpressionPropertyInterface(t.transform.mProps.r)},skew:{get:ExpressionPropertyInterface(t.transform.mProps.sk)},skewAxis:{get:ExpressionPropertyInterface(t.transform.mProps.sa)},_name:{value:e.nm}}),s.ty="tr",s.mn=e.mn,s.propertyGroup=r,s}(t.it[t.it.length-1],e.it[e.it.length-1],i.propertyGroup);return i.content=l,i.transform=p,Object.defineProperty(i,"_name",{get:function(){return t.nm}}),i.numProperties=t.np,i.propertyIndex=t.ix,i.nm=t.nm,i.mn=t.mn,i}function o(t,e,r){function i(t){return"Color"===t||"color"===t?i.color:"Opacity"===t||"opacity"===t?i.opacity:void 0}return Object.defineProperties(i,{color:{get:ExpressionPropertyInterface(e.c)},opacity:{get:ExpressionPropertyInterface(e.o)},_name:{value:t.nm},mn:{value:t.mn}}),e.c.setGroupProperty(r),e.o.setGroupProperty(r),i}function h(t,e,r){function i(t){return 1===t?ob:r(t-1)}function s(t){return 1===t?h:i(t-1)}var a,n,o=t.d?t.d.length:0,h={};for(a=0;a<o;a+=1)n=a,Object.defineProperty(h,t.d[n].nm,{get:ExpressionPropertyInterface(e.d.dataProps[n].p)}),e.d.dataProps[a].p.setGroupProperty(s);function l(t){return"Color"===t||"color"===t?l.color:"Opacity"===t||"opacity"===t?l.opacity:"Stroke Width"===t||"stroke width"===t?l.strokeWidth:void 0}return Object.defineProperties(l,{color:{get:ExpressionPropertyInterface(e.c)},opacity:{get:ExpressionPropertyInterface(e.o)},strokeWidth:{get:ExpressionPropertyInterface(e.w)},dash:{get:function(){return h}},_name:{value:t.nm},mn:{value:t.mn}}),e.c.setGroupProperty(i),e.o.setGroupProperty(i),e.w.setGroupProperty(i),l}function l(e,t,r){function i(t){return 1==t?s:r(--t)}function s(t){return t===e.e.ix||"End"===t||"end"===t?s.end:t===e.s.ix?s.start:t===e.o.ix?s.offset:void 0}return s.propertyIndex=e.ix,t.s.setGroupProperty(i),t.e.setGroupProperty(i),t.o.setGroupProperty(i),s.propertyIndex=e.ix,s.propertyGroup=r,Object.defineProperties(s,{start:{get:ExpressionPropertyInterface(t.s)},end:{get:ExpressionPropertyInterface(t.e)},offset:{get:ExpressionPropertyInterface(t.o)},_name:{value:e.nm}}),s.mn=e.mn,s}function p(e,t,r){function i(t){return 1==t?a:r(--t)}a.propertyIndex=e.ix;var s="tm"===t.sh.ty?t.sh.prop:t.sh;function a(t){return e.p.ix===t?a.position:e.s.ix===t?a.size:void 0}return s.s.setGroupProperty(i),s.p.setGroupProperty(i),Object.defineProperties(a,{size:{get:ExpressionPropertyInterface(s.s)},position:{get:ExpressionPropertyInterface(s.p)},_name:{value:e.nm}}),a.mn=e.mn,a}function f(e,t,r){function i(t){return 1==t?a:r(--t)}var s="tm"===t.sh.ty?t.sh.prop:t.sh;function a(t){return e.p.ix===t?a.position:e.r.ix===t?a.rotation:e.pt.ix===t?a.points:e.or.ix===t||"ADBE Vector Star Outer Radius"===t?a.outerRadius:e.os.ix===t?a.outerRoundness:!e.ir||e.ir.ix!==t&&"ADBE Vector Star Inner Radius"!==t?e.is&&e.is.ix===t?a.innerRoundness:void 0:a.innerRadius}return a.propertyIndex=e.ix,s.or.setGroupProperty(i),s.os.setGroupProperty(i),s.pt.setGroupProperty(i),s.p.setGroupProperty(i),s.r.setGroupProperty(i),e.ir&&(s.ir.setGroupProperty(i),s.is.setGroupProperty(i)),Object.defineProperties(a,{position:{get:ExpressionPropertyInterface(s.p)},rotation:{get:ExpressionPropertyInterface(s.r)},points:{get:ExpressionPropertyInterface(s.pt)},outerRadius:{get:ExpressionPropertyInterface(s.or)},outerRoundness:{get:ExpressionPropertyInterface(s.os)},innerRadius:{get:ExpressionPropertyInterface(s.ir)},innerRoundness:{get:ExpressionPropertyInterface(s.is)},_name:{value:e.nm}}),a.mn=e.mn,a}function c(e,t,r){function i(t){return 1==t?a:r(--t)}var s="tm"===t.sh.ty?t.sh.prop:t.sh;function a(t){return e.p.ix===t?a.position:e.r.ix===t?a.roundness:e.s.ix===t||"Size"===t||"ADBE Vector Rect Size"===t?a.size:void 0}return a.propertyIndex=e.ix,s.p.setGroupProperty(i),s.s.setGroupProperty(i),s.r.setGroupProperty(i),Object.defineProperties(a,{position:{get:ExpressionPropertyInterface(s.p)},roundness:{get:ExpressionPropertyInterface(s.r)},size:{get:ExpressionPropertyInterface(s.s)},_name:{value:e.nm}}),a.mn=e.mn,a}function d(e,t,r){var i=t;function s(t){if(e.r.ix===t||"Round Corners 1"===t)return s.radius}return s.propertyIndex=e.ix,i.rd.setGroupProperty(function(t){return 1==t?s:r(--t)}),Object.defineProperties(s,{radius:{get:ExpressionPropertyInterface(i.rd)},_name:{value:e.nm}}),s.mn=e.mn,s}function u(e,t,r){function i(t){return 1==t?a:r(--t)}var s=t;function a(t){return e.c.ix===t||"Copies"===t?a.copies:e.o.ix===t||"Offset"===t?a.offset:void 0}return a.propertyIndex=e.ix,s.c.setGroupProperty(i),s.o.setGroupProperty(i),Object.defineProperties(a,{copies:{get:ExpressionPropertyInterface(s.c)},offset:{get:ExpressionPropertyInterface(s.o)},_name:{value:e.nm}}),a.mn=e.mn,a}function y(t,e,r){var i=e.sh;function s(t){if("Shape"===t||"shape"===t||"Path"===t||"path"===t||"ADBE Vector Shape"===t||2===t)return s.path}return i.setGroupProperty(function(t){return 1==t?s:r(--t)}),Object.defineProperties(s,{path:{get:function(){return i.k&&i.getValue(),i}},shape:{get:function(){return i.k&&i.getValue(),i}},_name:{value:t.nm},ix:{value:t.ix},propertyIndex:{value:t.ix},mn:{value:t.mn}}),s}return function(t,e,r){var i;function s(t){if("number"==typeof t)return i[t-1];for(var e=0,r=i.length;e<r;){if(i[e]._name===t)return i[e];e+=1}}return s.propertyGroup=r,i=m(t,e,s),s.numProperties=i.length,s}}(),TextExpressionInterface=function(e){var r;function t(){}return Object.defineProperty(t,"sourceText",{get:function(){e.textProperty.getValue();var t=e.textProperty.currentData.t;return void 0!==t&&(e.textProperty.currentData.t=void 0,(r=new String(t)).value=t||new String(t)),r}}),t},LayerExpressionInterface=function(){function s(t,e){var r=new Matrix;if(r.reset(),this._elem.finalTransform.mProp.applyToMatrix(r),this._elem.hierarchy&&this._elem.hierarchy.length){var i,s=this._elem.hierarchy.length;for(i=0;i<s;i+=1)this._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(r);return r.applyToPointArray(t[0],t[1],t[2]||0)}return r.applyToPointArray(t[0],t[1],t[2]||0)}function a(t,e){var r=new Matrix;if(r.reset(),this._elem.finalTransform.mProp.applyToMatrix(r),this._elem.hierarchy&&this._elem.hierarchy.length){var i,s=this._elem.hierarchy.length;for(i=0;i<s;i+=1)this._elem.hierarchy[i].finalTransform.mProp.applyToMatrix(r);return r.inversePoint(t)}return r.inversePoint(t)}function n(t){var e=new Matrix;if(e.reset(),this._elem.finalTransform.mProp.applyToMatrix(e),this._elem.hierarchy&&this._elem.hierarchy.length){var r,i=this._elem.hierarchy.length;for(r=0;r<i;r+=1)this._elem.hierarchy[r].finalTransform.mProp.applyToMatrix(e);return e.inversePoint(t)}return e.inversePoint(t)}function o(){return[1,1,1,1]}return function(e){var r;function i(t){switch(t){case"ADBE Root Vectors Group":case"Contents":case 2:return i.shapeInterface;case 1:case 6:case"Transform":case"transform":case"ADBE Transform Group":return r;case 4:case"ADBE Effect Parade":case"effects":case"Effects":return i.effect}}i.toWorld=s,i.fromWorld=a,i.toComp=s,i.fromComp=n,i.sampleImage=o,i.sourceRectAtTime=e.sourceRectAtTime.bind(e);var t=getDescriptor(r=TransformExpressionInterface((i._elem=e).finalTransform.mProp),"anchorPoint");return Object.defineProperties(i,{hasParent:{get:function(){return e.hierarchy.length}},parent:{get:function(){return e.hierarchy[0].layerInterface}},rotation:getDescriptor(r,"rotation"),scale:getDescriptor(r,"scale"),position:getDescriptor(r,"position"),opacity:getDescriptor(r,"opacity"),anchorPoint:t,anchor_point:t,transform:{get:function(){return r}},active:{get:function(){return e.isInRange}}}),i.startTime=e.data.st,i.index=e.data.ind,i.source=e.data.refId,i.height=0===e.data.ty?e.data.h:100,i.width=0===e.data.ty?e.data.w:100,i.inPoint=e.data.ip/e.comp.globalData.frameRate,i.outPoint=e.data.op/e.comp.globalData.frameRate,i._name=e.data.nm,i.registerMaskInterface=function(t){i.mask=new MaskManagerInterface(t,e)},i.registerEffectsInterface=function(t){i.effect=t},i}}(),CompExpressionInterface=function(i){function t(t){for(var e=0,r=i.layers.length;e<r;){if(i.layers[e].nm===t||i.layers[e].ind===t)return i.elements[e].layerInterface;e+=1}return null}return Object.defineProperty(t,"_name",{value:i.data.nm}),(t.layer=t).pixelAspect=1,t.height=i.data.h||i.globalData.compSize.h,t.width=i.data.w||i.globalData.compSize.w,t.pixelAspect=1,t.frameDuration=1/i.globalData.frameRate,t.displayStartTime=0,t.numLayers=i.layers.length,t},TransformExpressionInterface=function(t){function e(t){switch(t){case"scale":case"Scale":case"ADBE Scale":case 6:return e.scale;case"rotation":case"Rotation":case"ADBE Rotation":case"ADBE Rotate Z":case 10:return e.rotation;case"ADBE Rotate X":return e.xRotation;case"ADBE Rotate Y":return e.yRotation;case"position":case"Position":case"ADBE Position":case 2:return e.position;case"ADBE Position_0":return e.xPosition;case"ADBE Position_1":return e.yPosition;case"ADBE Position_2":return e.zPosition;case"anchorPoint":case"AnchorPoint":case"Anchor Point":case"ADBE AnchorPoint":case 1:return e.anchorPoint;case"opacity":case"Opacity":case 11:return e.opacity}}if(Object.defineProperty(e,"rotation",{get:ExpressionPropertyInterface(t.r||t.rz)}),Object.defineProperty(e,"zRotation",{get:ExpressionPropertyInterface(t.rz||t.r)}),Object.defineProperty(e,"xRotation",{get:ExpressionPropertyInterface(t.rx)}),Object.defineProperty(e,"yRotation",{get:ExpressionPropertyInterface(t.ry)}),Object.defineProperty(e,"scale",{get:ExpressionPropertyInterface(t.s)}),t.p)var r=ExpressionPropertyInterface(t.p);return Object.defineProperty(e,"position",{get:function(){return t.p?r():[t.px.v,t.py.v,t.pz?t.pz.v:0]}}),Object.defineProperty(e,"xPosition",{get:ExpressionPropertyInterface(t.px)}),Object.defineProperty(e,"yPosition",{get:ExpressionPropertyInterface(t.py)}),Object.defineProperty(e,"zPosition",{get:ExpressionPropertyInterface(t.pz)}),Object.defineProperty(e,"anchorPoint",{get:ExpressionPropertyInterface(t.a)}),Object.defineProperty(e,"opacity",{get:ExpressionPropertyInterface(t.o)}),Object.defineProperty(e,"skew",{get:ExpressionPropertyInterface(t.sk)}),Object.defineProperty(e,"skewAxis",{get:ExpressionPropertyInterface(t.sa)}),Object.defineProperty(e,"orientation",{get:ExpressionPropertyInterface(t.or)}),e},ProjectInterface=function(){function e(t){this.compositions.push(t)}return function(){function t(t){for(var e=0,r=this.compositions.length;e<r;){if(this.compositions[e].data&&this.compositions[e].data.nm===t)return this.compositions[e].prepareFrame&&this.compositions[e].data.xt&&this.compositions[e].prepareFrame(this.currentFrame),this.compositions[e].compInterface;e+=1}}return t.compositions=[],t.currentFrame=0,t.registerComposition=e,t}}(),EffectsExpressionInterface=function(){function l(s,t,e,r){var i,a=[],n=s.ef.length;for(i=0;i<n;i+=1)5===s.ef[i].ty?a.push(l(s.ef[i],t.effectElements[i],t.effectElements[i].propertyGroup,r)):a.push(p(t.effectElements[i],s.ef[i].ty,r,o));function o(t){return 1===t?h:e(t-1)}var h=function(t){for(var e=s.ef,r=0,i=e.length;r<i;){if(t===e[r].nm||t===e[r].mn||t===e[r].ix)return 5===e[r].ty?a[r]:a[r]();r+=1}return a[0]()};return h.propertyGroup=o,"ADBE Color Control"===s.mn&&Object.defineProperty(h,"color",{get:function(){return a[0]()}}),Object.defineProperty(h,"numProperties",{get:function(){return s.np}}),h.active=h.enabled=0!==s.en,h}function p(t,e,r,i){var s=ExpressionPropertyInterface(t.p);return t.p.setGroupProperty&&t.p.setGroupProperty(i),function(){return 10===e?r.comp.compInterface(t.p.v):s()}}return{createEffectsInterface:function(s,t){if(s.effectsManager){var e,a=[],r=s.data.ef,i=s.effectsManager.effectElements.length;for(e=0;e<i;e+=1)a.push(l(r[e],s.effectsManager.effectElements[e],t,s));return function(t){for(var e=s.data.ef||[],r=0,i=e.length;r<i;){if(t===e[r].nm||t===e[r].mn||t===e[r].ix)return a[r];r+=1}}}}}}(),MaskManagerInterface=function(){function a(t,e){this._mask=t,this._data=e}Object.defineProperty(a.prototype,"maskPath",{get:function(){return this._mask.prop.k&&this._mask.prop.getValue(),this._mask.prop}}),Object.defineProperty(a.prototype,"maskOpacity",{get:function(){return this._mask.op.k&&this._mask.op.getValue(),100*this._mask.op.v}});return function(e,t){var r,i=createSizedArray(e.viewData.length),s=e.viewData.length;for(r=0;r<s;r+=1)i[r]=new a(e.viewData[r],e.masksProperties[r]);return function(t){for(r=0;r<s;){if(e.masksProperties[r].nm===t)return i[r];r+=1}}}}(),ExpressionPropertyInterface=function(){var s={pv:0,v:0,mult:1},n={pv:[0,0,0],v:[0,0,0],mult:1};function o(i,s,a){Object.defineProperty(i,"velocity",{get:function(){return s.getVelocityAtTime(s.comp.currentFrame)}}),i.numKeys=s.keyframes?s.keyframes.length:0,i.key=function(t){if(i.numKeys){var e="";e="s"in s.keyframes[t-1]?s.keyframes[t-1].s:"e"in s.keyframes[t-2]?s.keyframes[t-2].e:s.keyframes[t-2].s;var r="unidimensional"===a?new Number(e):Object.assign({},e);return r.time=s.keyframes[t-1].t/s.elem.comp.globalData.frameRate,r}return 0},i.valueAtTime=s.getValueAtTime,i.speedAtTime=s.getSpeedAtTime,i.velocityAtTime=s.getVelocityAtTime,i.propertyGroup=s.propertyGroup}function e(){return s}return function(t){return t?"unidimensional"===t.propType?function(t){t&&"pv"in t||(t=s);var e=1/t.mult,r=t.pv*e,i=new Number(r);return i.value=r,o(i,t,"unidimensional"),function(){return t.k&&t.getValue(),r=t.v*e,i.value!==r&&((i=new Number(r)).value=r,o(i,t,"unidimensional")),i}}(t):function(e){e&&"pv"in e||(e=n);var r=1/e.mult,i=e.pv.length,s=createTypedArray("float32",i),a=createTypedArray("float32",i);return s.value=a,o(s,e,"multidimensional"),function(){e.k&&e.getValue();for(var t=0;t<i;t+=1)s[t]=a[t]=e.v[t]*r;return s}}(t):e}}(),q5,r5;function SliderEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,0,0,r)}function AngleEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,0,0,r)}function ColorEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,1,0,r)}function PointEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,1,0,r)}function LayerIndexEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,0,0,r)}function MaskIndexEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,0,0,r)}function CheckboxEffect(t,e,r){this.p=PropertyFactory.getProp(e,t.v,0,0,r)}function NoValueEffect(){this.p={}}function EffectsManager(){}function EffectsManager(t,e){var r=t.ef||[];this.effectElements=[];var i,s,a=r.length;for(i=0;i<a;i++)s=new GroupEffect(r[i],e),this.effectElements.push(s)}function GroupEffect(t,e){this.init(t,e)}q5=function(){function r(t,e){return this.textIndex=t+1,this.textTotal=e,this.v=this.getValue()*this.mult,this.v}return function(t,e){this.pv=1,this.comp=t.comp,this.elem=t,this.mult=.01,this.propType="textSelector",this.textTotal=e.totalChars,this.selectorValue=100,this.lastValue=[1,1,1],this.k=!0,this.x=!0,this.getValue=ExpressionManager.initiateExpression.bind(this)(t,e,this),this.getMult=r,this.getVelocityAtTime=expressionHelpers.getVelocityAtTime,this.kf?this.getValueAtTime=expressionHelpers.getValueAtTime.bind(this):this.getValueAtTime=expressionHelpers.getStaticValueAtTime.bind(this),this.setGroupProperty=expressionHelpers.setGroupProperty}}(),r5=TextSelectorProp.getTextSelectorProp,TextSelectorProp.getTextSelectorProp=function(t,e,r){return 1===e.t?new q5(t,e,r):r5(t,e,r)},extendPrototype([DynamicPropertyContainer],GroupEffect),GroupEffect.prototype.getValue=GroupEffect.prototype.iterateDynamicProperties,GroupEffect.prototype.init=function(t,e){this.data=t,this.effectElements=[],this.initDynamicPropertyContainer(e);var r,i,s=this.data.ef.length,a=this.data.ef;for(r=0;r<s;r+=1){switch(i=null,a[r].ty){case 0:i=new SliderEffect(a[r],e,this);break;case 1:i=new AngleEffect(a[r],e,this);break;case 2:i=new ColorEffect(a[r],e,this);break;case 3:i=new PointEffect(a[r],e,this);break;case 4:case 7:i=new CheckboxEffect(a[r],e,this);break;case 10:i=new LayerIndexEffect(a[r],e,this);break;case 11:i=new MaskIndexEffect(a[r],e,this);break;case 5:i=new EffectsManager(a[r],e,this);break;default:i=new NoValueEffect(a[r],e,this)}i&&this.effectElements.push(i)}};var lottie={},_isFrozen=!1;function setLocationHref(t){locationHref=t}function searchAnimations(){!0===standalone?animationManager.searchAnimations(animationData,standalone,renderer):animationManager.searchAnimations()}function setSubframeRendering(t){subframeEnabled=t}function loadAnimation(t){return!0===standalone&&(t.animationData=JSON.parse(animationData)),animationManager.loadAnimation(t)}function setQuality(t){if("string"==typeof t)switch(t){case"high":defaultCurveSegments=200;break;case"medium":defaultCurveSegments=50;break;case"low":defaultCurveSegments=10}else!isNaN(t)&&1<t&&(defaultCurveSegments=t);roundValues(!(50<=defaultCurveSegments))}function inBrowser(){return"undefined"!=typeof navigator}function installPlugin(t,e){"expressions"===t&&(expressionsPlugin=e)}function getFactory(t){switch(t){case"propertyFactory":return PropertyFactory;case"shapePropertyFactory":return ShapePropertyFactory;case"matrix":return Matrix}}function checkReady(){"complete"===document.readyState&&(clearInterval(readyStateCheckInterval),searchAnimations())}function getQueryVariable(t){for(var e=queryString.split("&"),r=0;r<e.length;r++){var i=e[r].split("=");if(decodeURIComponent(i[0])==t)return decodeURIComponent(i[1])}}lottie.play=animationManager.play,lottie.pause=animationManager.pause,lottie.setLocationHref=setLocationHref,lottie.togglePause=animationManager.togglePause,lottie.setSpeed=animationManager.setSpeed,lottie.setDirection=animationManager.setDirection,lottie.stop=animationManager.stop,lottie.searchAnimations=searchAnimations,lottie.registerAnimation=animationManager.registerAnimation,lottie.loadAnimation=loadAnimation,lottie.setSubframeRendering=setSubframeRendering,lottie.resize=animationManager.resize,lottie.goToAndStop=animationManager.goToAndStop,lottie.destroy=animationManager.destroy,lottie.setQuality=setQuality,lottie.inBrowser=inBrowser,lottie.installPlugin=installPlugin,lottie.freeze=animationManager.freeze,lottie.unfreeze=animationManager.unfreeze,lottie.getRegisteredAnimations=animationManager.getRegisteredAnimations,lottie.__getFactory=getFactory,lottie.version="5.6.5";var standalone="__[STANDALONE]__",animationData="__[ANIMATIONDATA]__",renderer="";if(standalone){var scripts=document.getElementsByTagName("script"),index=scripts.length-1,myScript=scripts[index]||{src:""},queryString=myScript.src.replace(/^[^\?]+\??/,"");renderer=getQueryVariable("renderer")}var readyStateCheckInterval=setInterval(checkReady,100);
return lottie;
}));PK��][,|F���4ultimate-addons-for-gutenberg/assets/js/modal.min.jsnu�[���document.addEventListener("UAGModalEditor",function(e){UAGBModal.init(".uagb-block-"+e.detail.block_id,!0)}),document.addEventListener("AstraQuickViewForModal",function(e){UAGBModal.init(e.detail.class_name,!1)}),window.UAGBModal={init(e,t){const o=UAGBModal._getDocumentElement();var l=o.querySelectorAll(e);const r=o.getElementsByClassName("edit-site"),u=o.getElementsByClassName("block-editor-iframe__body");if(l?.length)for(const s of l){const c=s.querySelector(".uagb-modal-trigger"),a=s.dataset.overlayclick;if(c){c.style.pointerEvents="auto";const n=s?.querySelector(".uagb-modal-popup");if(n){t||o.body?.appendChild(n);const i=o.querySelector("body");if(i){c.addEventListener("click",function(e){if(e.preventDefault(),!n.classList.contains("active")){n.classList.add("active");const t=document.createElement("button"),o=(t.style.position="absolute",t.style.opacity="0",n.insertBefore(t,n.firstChild));o.focus(),o.remove(),i.classList.contains("hide-scroll")||r?.length||u?.length||i.classList.contains("wp-admin")||i.classList.add("hide-scroll")}}),".uagb-modal-wrapper"===e&&(e=".uagb-modal-popup");const d=n.querySelector(e+" .uagb-modal-popup-close");d&&d.addEventListener("click",function(){n.classList.contains("active")&&(n.classList.remove("active"),c?.focus()),i.classList.contains("hide-scroll")&&UAGBModal.closeModalScrollCheck(i,o)}),"disable"!==a&&n.addEventListener("click",function(e){"enable"===a&&n.classList.contains("active")&&!n.querySelector(".uagb-modal-popup-wrap").contains(e.target)&&n.classList.remove("active"),i.classList.contains("hide-scroll")&&UAGBModal.closeModalScrollCheck(i,o)}),document.addEventListener("keyup",function(e){var t=s.dataset.escpress;27===e.keyCode&&"enable"===t&&(n.classList.contains("active")&&(n.classList.remove("active"),c?.focus()),i.classList.contains("hide-scroll")&&UAGBModal.closeModalScrollCheck(i,o))})}}}}},_getDocumentElement(){let e=document;var t=document.querySelectorAll('iframe[name="editor-canvas"]');return!t?.length||(t=t[0]?.contentWindow?.document||t[0]?.contentDocument)&&(e=t),e},closeModalScrollCheck(e,t){t.querySelectorAll(".uagb-modal-popup.active")?.length||e.classList.remove("hide-scroll")}};PK��][L>�b.b.0ultimate-addons-for-gutenberg/assets/js/forms.jsnu�[���UAGBForms = {
	getElement: ( id ) => {
		// Check if the script has run once already on the given element (required for homepage sidebar usage case).
		const getJsELement = document.querySelector( `${ id }:not(.uagb-activated-script)` );
		if ( ! getJsELement ) return null;

		// Ensures that the script only runs once on the given element (required for homepage sidebar usage case).
		getJsELement.classList.add( 'uagb-activated-script' );
		return getJsELement;
	},

	init( attr, id, post_id ) {
		const scope = UAGBForms.getElement( id );
		if ( ! scope ) {
			return;
		}

		const form = scope.querySelector( '.uagb-forms-main-form' );

		const phoneinput = form.querySelectorAll( '.uagb-forms-phone-input' );

		if ( phoneinput.length !== 0 ) {
			for ( let i = 0; i < phoneinput.length; i++ ) {
				phoneinput[ i ].addEventListener( 'keypress', function ( e ) {
					const charCode = e.which ? e.which : e.keyCode;
					if ( charCode === 45 ) {
						return true;
					}
					if ( charCode > 31 && ( charCode < 48 || charCode > 57 ) ) {
						return false;
					}
					return true;
				} );
			}
		}
		const toggleinput = form.querySelectorAll( '.uagb-forms-toggle-input' );

		if ( toggleinput.length !== 0 ) {
			for ( let j = 0; j < toggleinput.length; j++ ) {
				toggleinput[ j ].addEventListener( 'change', function () {
					if ( toggleinput[ j ].checked ) {
						const truestate = toggleinput[ j ].getAttribute( 'data-truestate' );
						toggleinput[ j ].setAttribute( 'value', truestate );
					} else {
						const falsestate = toggleinput[ j ].getAttribute( 'data-falsestate' );
						toggleinput[ j ].setAttribute( 'value', falsestate );
					}
				} );
			}
		}

		// validation for checkbox if required.
		const requiredCheckboxes = scope.querySelectorAll( '.uagb-forms-checkbox-wrap' );
		if ( requiredCheckboxes.length !== 0 ) {
			for ( let k = 0; k < requiredCheckboxes.length; k++ ) {
				const checkboxes = requiredCheckboxes[ k ].querySelectorAll( 'input[type=checkbox]' );

				if ( checkboxes.length > 0 ) {
					for ( let l = 0; l < checkboxes.length; l++ ) {
						checkboxes[ l ].addEventListener( 'change', function () {
							const isChecked = checkboxes[ l ].checked;
							const name = checkboxes[ l ].getAttribute( 'name' );

							const check = document.querySelectorAll( '[name="' + name + '"]' );
							for ( let i = 0; i < check.length; i++ ) {
								if ( isChecked ) {
									check[ i ].required = false;
								} else {
									check[ i ].required = true;
								}
							}
						} );
					}
				}
			}
		}

		let reCaptchaSiteKeyV2 = '',
			reCaptchaSiteKeyV3 = '';

		//append recaptcha js when enabled.
		if ( attr.reCaptchaEnable === true && attr.reCaptchaType === 'v2' ) {
			reCaptchaSiteKeyV2 = uagb_forms_data.recaptcha_site_key_v2;

			if ( reCaptchaSiteKeyV2 ) {
				if ( null === document.querySelector( '.uagb-forms-field-set' ).getAttribute( 'data-sitekey' ) ) {
					document.querySelector( '.g-recaptcha ' ).setAttribute( 'data-sitekey', reCaptchaSiteKeyV2 );
				}

				const recaptchaLink = document.createElement( 'script' );
				recaptchaLink.type = 'text/javascript';
				recaptchaLink.src = 'https://www.google.com/recaptcha/api.js';
				document.head.appendChild( recaptchaLink );
			}
		} else if ( attr.reCaptchaEnable === true && attr.reCaptchaType === 'v3' ) {
			reCaptchaSiteKeyV3 = uagb_forms_data.recaptcha_site_key_v3;

			if ( reCaptchaSiteKeyV3 ) {
				if ( attr.hidereCaptchaBatch ) {
					setTimeout( function(){
						const badge = document.getElementsByClassName( 'grecaptcha-badge' )[0];
						if( badge ){
							badge.style.visibility = 'hidden';
						}
					}, 500 );
				}
				const api = document.createElement( 'script' );
				api.type = 'text/javascript';
				api.src = 'https://www.google.com/recaptcha/api.js?render=' + reCaptchaSiteKeyV3;
				document.head.appendChild( api );
			}
		}

		//Ready Classes.
		const formscope = document.getElementsByClassName( 'uagb-block-' + attr.block_id );
		if ( formscope?.[ 0 ] ) {
			const formWrapper = formscope[ 0 ].children;
			const sibling = formWrapper[ 0 ].children;

			for ( let index = 0; index < sibling.length; index++ ) {
				if (
					sibling[ index ].classList.contains( 'uag-col-2' ) &&
					sibling[ index + 1 ].classList.contains( 'uag-col-2' )
				) {
					const div = document.createElement( 'div' );
					div.className = 'uag-col-2-wrap uag-col-wrap-' + index;
					sibling[ index + 1 ].after( div );
					const wrapper_div = formscope[ 0 ].getElementsByClassName( 'uag-col-wrap-' + index );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
				}

				if (
					sibling[ index ].classList.contains( 'uag-col-3' ) &&
					sibling[ index + 1 ].classList.contains( 'uag-col-3' ) &&
					sibling[ index + 2 ].classList.contains( 'uag-col-3' )
				) {
					const div = document.createElement( 'div' );
					div.className = 'uag-col-3-wrap uag-col-wrap-' + index;
					sibling[ index + 2 ].after( div );
					const wrapper_div = formscope[ 0 ].getElementsByClassName( 'uag-col-wrap-' + index );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
				}

				if (
					sibling[ index ].classList.contains( 'uag-col-4' ) &&
					sibling[ index + 1 ].classList.contains( 'uag-col-4' ) &&
					sibling[ index + 2 ].classList.contains( 'uag-col-4' ) &&
					sibling[ index + 3 ].classList.contains( 'uag-col-4' )
				) {
					const div = document.createElement( 'div' );
					div.className = 'uag-col-4-wrap uag-col-wrap-' + index;
					sibling[ index + 3 ].after( div );
					const wrapper_div = formscope[ 0 ].getElementsByClassName( 'uag-col-wrap-' + index );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
					wrapper_div[ 0 ].appendChild( sibling[ index ] );
				}
			}
		}

		form.addEventListener( 'submit', function ( e ) {
			e.preventDefault();
			if ( attr.reCaptchaEnable === true && attr.reCaptchaType === 'v3' && reCaptchaSiteKeyV3 ) {
				if ( document.getElementsByClassName( 'grecaptcha-logo' ).length === 0 ) {
					document.querySelector( '.uagb-form-reacaptcha-error-' + attr.block_id ).innerHTML =
						'<p style="color:red !important" class="error-captcha">Invalid Google reCAPTCHA Site Key.</p>';
					return false;
				}

				// eslint-disable-next-line no-undef
				grecaptcha.ready( function () {
					// eslint-disable-next-line no-undef
					grecaptcha.execute( reCaptchaSiteKeyV3, { action: 'submit' } ).then( function ( token ) {
						if ( token ) {
							if ( document.getElementsByClassName( 'uagb-forms-recaptcha' ).length !== 0 ) {
								document.getElementById( 'g-recaptcha-response' ).value = token;

								window.UAGBForms._formSubmit(
									e,
									form,
									attr,
									reCaptchaSiteKeyV2,
									reCaptchaSiteKeyV3,
									post_id
								);
							} else {
								document.querySelector( '.uagb-form-reacaptcha-error-' + attr.block_id ).innerHTML =
									'<p style="color:red !important" class="error-captcha">Google reCAPTCHA Response not found.</p>';
								return false;
							}
						}
					} );
				} );
			} else {
				window.UAGBForms._formSubmit( e, this, attr, reCaptchaSiteKeyV2, reCaptchaSiteKeyV3, post_id );
			}
		} );
	},

	_formSubmit( e, form, attr, reCaptchaSiteKeyV2, reCaptchaSiteKeyV3, post_id ) {
		e.preventDefault();

		let captcha_response;

		if ( '' === attr.afterSubmitToEmail || null === attr.afterSubmitToEmail ) {
			const hideForm = document.querySelector( '[name="uagb-form-' + attr.block_id + '"]' );
			hideForm.style.display = 'none';

			const errorMsg = document.querySelector( '.uagb-forms-failed-message-' + attr.block_id );
			errorMsg?.classList?.remove( 'uagb-forms-submit-message-hide' );
			errorMsg?.classList?.add( 'uagb-forms-failed-message' );
			return false;
		}

		if ( attr.reCaptchaEnable === true ) {
			if ( attr.reCaptchaType === 'v2' && reCaptchaSiteKeyV2 ) {
				if ( document.getElementsByClassName( 'uagb-forms-recaptcha' ).length !== 0 ) {
					captcha_response = document.getElementById( 'g-recaptcha-response' ).value;

					if ( ! captcha_response ) {
						document.querySelector( '.uagb-form-reacaptcha-error-' + attr.block_id ).innerHTML =
							'<p style="color:red !important" class="error-captcha">' + attr.captchaMessage + '</p>';
						return false;
					}
					document.querySelector( '.uagb-form-reacaptcha-error-' + attr.block_id ).innerHTML = '';
				} else {
					document.querySelector( '.uagb-form-reacaptcha-error-' + attr.block_id ).innerHTML =
						'<p style="color:red !important" class="error-captcha"> Google reCAPTCHA Response not found.</p>';
					return false;
				}
			} else if ( attr.reCaptchaType === 'v3' && reCaptchaSiteKeyV3 ) {
				captcha_response = document.getElementById( 'g-recaptcha-response' ).value;
			}
		}

		const originalSerialized = window.UAGBForms._serializeIt( form );

		const postData = {};
		postData.id = attr.block_id;
		for ( let i = 0; i < originalSerialized.length; i++ ) {
			const inputname = document.getElementById( originalSerialized[ i ].name );

			if ( originalSerialized[ i ].name.endsWith( '[]' ) ) {
				const name = originalSerialized[ i ].name.replace( /[\[\]']+/g, '' );
				//For checkbox element
				if ( ! ( name in postData ) ) {
					postData[ name ] = [];
				}
				postData[ name ].push( originalSerialized[ i ].value );
			} else if ( inputname !== null ) {
				postData[ inputname.innerHTML ] = originalSerialized[ i ].value;
			}

			const hiddenField = document.getElementById( 'hidden' );

			if ( hiddenField !== null && hiddenField !== undefined ) {
				postData[ hiddenField.getAttribute( 'name' ) ] = hiddenField.getAttribute( 'value' );
			}
		}

		// eslint-disable-next-line no-undef
		fetch( uagb_forms_data.ajax_url, {
			method: 'POST',
			headers: new Headers( { 'Content-Type': 'application/x-www-form-urlencoded' } ), // eslint-disable-line no-undef
			body: new URLSearchParams( {
				action: 'uagb_process_forms',
				nonce: uagb_forms_data.uagb_forms_ajax_nonce,
				form_data: JSON.stringify( postData ),
				sendAfterSubmitEmail: attr.sendAfterSubmitEmail,
				captcha_version: attr.reCaptchaType,
				captcha_response,
				post_id,
				block_id: attr.block_id,
			} ),
		} )
			.then( ( resp ) => resp.json() )
			.then( function ( data ) {
				const hideForm = document.querySelector( '[name="uagb-form-' + attr.block_id + '"]' );
				hideForm.style.display = 'none';
				if ( 200 === data.data ) {
					if ( 'message' === attr.confirmationType ) {
						const errorMsg = document.querySelector( '.uagb-forms-success-message-' + attr.block_id );
						errorMsg.classList.remove( 'uagb-forms-submit-message-hide' );
						errorMsg.classList.add( 'uagb-forms-success-message' );
					}

					if ( 'url' === attr.confirmationType ) {
						window.location.replace( attr.confirmationUrl );
					}
				} else if ( 400 === data.data ) {
					if ( 'message' === attr.confirmationType ) {
						const successMsg = document.querySelector( '.uagb-forms-failed-message-' + attr.block_id );
						successMsg.classList.remove( 'uagb-forms-submit-message-hide' );
						successMsg.classList.add( 'uagb-forms-failed-message' );
					}
				}
			} )
			.catch( function ( error ) {
				console.log( JSON.stringify( error ) ); // eslint-disable-line no-console
			} );
	},

	_serializeIt( form ) {
		return Array.apply( 0, form.elements )
			.map( ( x ) =>
				( ( obj ) =>
					// eslint-disable-next-line no-nested-ternary
					x.type === 'radio' || x.type === 'checkbox' ? ( x.checked ? obj : null ) : obj )( {
					name: x.name,
					value: x.value,
				} )
			)
			.filter( ( x ) => x );
	},
};
PK��][&���3ultimate-addons-for-gutenberg/assets/js/tabs.min.jsnu�[���UAGBTabs={init(e){var a=document.querySelectorAll(e);if(a)for(let t=0;t<a.length;t++)UAGBTabs.addEvents(a[t],e)},addEvents(t,e){const a=t.children;if(2===a.length){t=t.getAttribute("data-tab-active");const s=a[0].querySelectorAll("li.uagb-tab"),b=a[1].children;for(let t=0;t<b.length;t++)b[t].setAttribute("tabindex","0"),b[t].setAttribute("role","tabpanel");b[t].classList.add("uagb-tabs-body__active"),s[t].classList.add("uagb-tabs__active");for(let t=0;t<s.length;t++){const r=s[t].getElementsByTagName("a")[0];s[t].setAttribute("id","uagb-tabs__tab"+t),r.setAttribute("aria-selected",!0),r.setAttribute("tabindex","0"),s[t].classList.contains("uagb-tabs__active")||(r.setAttribute("aria-selected",!1),r.setAttribute("tabindex","-1")),r.setAttribute("data-tab",t),r.mainWrapClass=e,r.addEventListener("click",function(t){UAGBTabs.tabClickEvent(t,this,this.parentElement)})}const i=a[0].querySelectorAll('.uagb-tab a[role="tab"]');i.forEach(t=>{t.addEventListener("keydown",function(t){let e;var a=Array.prototype.indexOf.call(i,t.target);"ArrowRight"===t.key?(e=(a+1)%i.length,i[e].focus(),i[a].setAttribute("aria-selected","false"),i[e].setAttribute("aria-selected","true"),UAGBTabs.tabClickEvent(t,i[e],i[e].parentElement),t.preventDefault()):"ArrowLeft"===t.key&&(e=(a-1+i.length)%i.length,i[e].focus(),i[a].setAttribute("aria-selected","false"),i[e].setAttribute("aria-selected","true"),UAGBTabs.tabClickEvent(t,i[e],i[e].parentElement),t.preventDefault())})})}},tabClickEvent(t,e,a){t.preventDefault();var s=e.getAttribute("data-tab");const b=a.closest(".uagb-tabs__panel"),i=e.closest(".uagb-tabs__wrap"),r=i.querySelector(".uagb-tabs__body-wrap").children,l=UAGBTabs.getChildrenWithClass(r,"uagb-inner-tab-"+s),n=b.querySelectorAll("a.uagb-tabs-list");b.querySelector(".uagb-tabs__active")?.classList.remove("uagb-tabs__active"),UAGBTabs.getChildrenWithClass(r,"uagb-tabs-body__active")?.classList.remove("uagb-tabs-body__active");for(let t=0;t<n.length;t++)n[t].setAttribute("aria-selected",!1),n[t].setAttribute("tabindex","-1");a.classList.add("uagb-tabs__active"),e.setAttribute("aria-selected",!0),e.setAttribute("tabindex","0"),l?.classList.add("uagb-tabs-body__active"),l?.setAttribute("aria-hidden",!1);for(let t=0;t<r.length;t++)r[t].classList.contains("uagb-inner-tab-"+s)||r[t].setAttribute("aria-hidden",!0)},anchorTabId(t){const e=window.location.hash;if(""!==e&&/^#uagb-tabs__tab\d$/.test(e)){var a=escape(e.substring(1));const s=document.querySelector("#"+a);a=s.getBoundingClientRect().top+window.pageYOffset,a=(window.scrollTo({top:a,behavior:"smooth"}),s.querySelector("a.uagb-tabs-list").getAttribute("data-tab"));const b=s.closest(".uagb-tabs__panel"),i=document.querySelector(t+" > .uagb-tabs__body-wrap > .uagb-inner-tab-"+a),r=document.querySelectorAll(t+" > .uagb-tabs__body-wrap > .uagb-tabs__body-container:not(.uagb-inner-tab-"+a+")"),l=s.querySelectorAll("a.uagb-tabs-list"),n=s.querySelector("a.uagb-tabs-list");b.querySelector(".uagb-tabs__active").classList.remove("uagb-tabs__active"),document.querySelector(t+" > .uagb-tabs__body-wrap > .uagb-tabs-body__active").classList.remove("uagb-tabs-body__active");for(let t=0;t<l.length;t++)l[t].setAttribute("tabindex","-1"),l[t].setAttribute("aria-selected",!1);s.classList.add("uagb-tabs__active"),n.setAttribute("aria-selected",!0),n.setAttribute("tabindex","0"),i.classList.add("uagb-tabs-body__active"),i.setAttribute("aria-hidden",!1);for(let t=0;t<r.length;t++)r[t].setAttribute("aria-hidden",!0)}},getChildrenWithClass(e,a){let s=null;for(let t=0;t<e.length;t++)if(e[t].classList.contains(a)){s=e[t];break}return s}};PK��][CdŜ�8ultimate-addons-for-gutenberg/assets/js/container.min.jsnu�[���UAGBContainer={init(t){const n=document.querySelector(t+".uagb-is-root-container:not(.alignwide)");var e;n&&(t=n.clientWidth,e=getComputedStyle(n).getPropertyValue("--inner-content-custom-width"),n.style.setProperty("--inner-content-custom-width-final",`min(${t}px,${e})`),n.style.setProperty("--root-container-full-width",t+"px"),t<=parseInt(e)?(n.style.setProperty("padding-left","calc( ( var(--root-container-full-width) - var( --inner-content-custom-width-final ) ) / 2 + var(--padding-left) )"),n.style.setProperty("padding-right","calc( ( var(--root-container-full-width) - var( --inner-content-custom-width-final ) ) / 2 + var(--padding-right) )")):(n.style.setProperty("padding-left","calc( ( var(--root-container-full-width) - var( --inner-content-custom-width-final ) ) / 2 )"),n.style.setProperty("padding-right","calc( ( var(--root-container-full-width) - var( --inner-content-custom-width-final ) ) / 2 )")))}};PK��][�9
�?#?#/ultimate-addons-for-gutenberg/assets/js/post.jsnu�[���let loadStatus = true;

window.UAGBPostCarousel = {
	_setHeight( scope ) {
		if ( scope.length > 0 ) {
			const postWrapper = scope[ 0 ].querySelectorAll( '.slick-slide' ),
				postActive = scope[ 0 ].querySelectorAll( '.slick-slide.slick-active' );
			let maxHeight = -1,
				wrapperHeight = -1,
				postActiveHeight = -1;
			Object.keys( postActive ).forEach( ( key ) => {
				const thisHeight = postActive[ key ].offsetHeight,
					blogPost = postActive[ key ].querySelector( '.uagb-post__inner-wrap' ),
					blogPostHeight = blogPost?.offsetHeight;

				if ( maxHeight < blogPostHeight ) {
					maxHeight = blogPostHeight;
					postActiveHeight = maxHeight + 15;
				}

				if ( wrapperHeight < thisHeight ) {
					wrapperHeight = thisHeight;
				}
			} );

			Object.keys( postActive ).forEach( ( key ) => {
				const selector = postActive[ key ].querySelector( '.uagb-post__inner-wrap' );
				if ( selector ) {
					selector.style.height = maxHeight + 'px';
				}
			} );

			let selector = scope[ 0 ].querySelector( '.slick-list' );
			if ( selector ) {
				selector.style.height = postActiveHeight + 'px';
			}
			maxHeight = -1;
			wrapperHeight = -1;
			Object.keys( postWrapper ).forEach( ( key ) => {
				const $this = postWrapper[ key ];
				if ( $this.classList.contains( 'slick-active' ) ) {
					return true;
				}

				selector = $this.querySelector( '.uagb-post__inner-wrap' );
				const blogPostHeight = selector?.offsetHeight;
				if ( blogPostHeight ) {
					selector.style.height = blogPostHeight + 'px';
				}
			} );
		}
	},
	_unSetHeight( scope ) {
		if ( scope.length > 0 ) {
			const postWrapper = scope[ 0 ].querySelectorAll( '.slick-slide' ),
				postActive = scope[ 0 ].querySelectorAll( '.slick-slide.slick-active' );

			Object.keys( postActive ).forEach( ( key ) => {
				const selector = postActive[ key ].querySelector( '.uagb-post__inner-wrap' );
				selector.style.height = 'auto';
			} );

			Object.keys( postActive ).forEach( ( key ) => {
				const $this = postWrapper[ key ];
				if ( $this.classList.contains( 'slick-active' ) ) {
					return true;
				}
				const selector = $this.querySelector( '.uagb-post__inner-wrap' );
				selector.style.height = 'auto';
			} );
		}
	},
};

window.UAGBPostMasonry = {
	_init( $attr, $selector ) {
		let count = 2;
		const windowHeight50 = window.innerHeight / 1.25;
		let $scope = document.querySelector( $selector );
		const loader = $scope?.querySelectorAll( '.uagb-post-inf-loader' );
		if ( 'none' !== $attr.paginationType && 'scroll' === $attr.paginationEventType ) {
			window.addEventListener( 'scroll', function () {
				let postItems = $scope.querySelector( '.uagb-post__items' );

				if ( ! postItems ) {
					postItems = $scope;
				}

				const boundingClientRect = postItems.lastElementChild.getBoundingClientRect();

				const offsetTop = boundingClientRect.top + window.scrollY;

				if ( window.pageYOffset + windowHeight50 >= offsetTop ) {
					const $args = {
						page_number: count,
					};
					const total = $scope.getAttribute( 'data-total' );
					if ( true === loadStatus ) {
						if ( count <= total ) {
							if ( loader.length > 0 ) {
								loader[ 0 ].style.display = 'none';
							}
							window.UAGBPostMasonry._callAjax( $scope, $args, $attr, loader, false, count );
							count++;
							loadStatus = false;
						}
					}
				}
			} );
		}

		if ( 'button' === $attr.paginationEventType ) {
			if ( $scope?.querySelector( '.uagb-post-pagination-button' ) ) {
				$scope.style.marginBottom = '40px';

				$scope.querySelector( '.uagb-post-pagination-button' ).onclick = function () {
					$scope = this.closest( '.uagb-post-grid' );
					const total = $scope.getAttribute( 'data-total' );
					const $args = {
						total,
						page_number: count,
					};
					$scope.querySelector( '.uagb-post__load-more-wrap' ).style.display = 'none';
					if ( true === loadStatus ) {
						if ( count <= total ) {
							if ( loader.length > 0 ) {
								loader[ 0 ].style.display = 'none';
							}
							$scope.querySelector( '.uagb-post__load-more-wrap' ).style.display = 'block';
							window.UAGBPostMasonry._callAjax( $scope, $args, $attr, loader, true, count );
							count++;
							loadStatus = false;
						}
					}
				};
			}
		}
	},
	createElementFromHTML( htmlString ) {
		const HTMLElement = document.createElement( 'div' );
		HTMLElement.innerHTML = htmlString.trim();

		// Change this to div.childNodes to support multiple top-level nodes
		return HTMLElement;
	},
	_callAjax( $scope, $obj, $attr, loader, append = false, count ) {
		const PostData = new FormData(); // eslint-disable-line no-undef

		PostData.append( 'action', 'uagb_get_posts' );
		PostData.append( 'nonce', uagb_data.uagb_masonry_ajax_nonce );
		PostData.append( 'page_number', $obj.page_number );
		PostData.append( 'attr', JSON.stringify( $attr ) );

		// eslint-disable-next-line no-undef
		fetch( uagb_data.ajax_url, {
			method: 'POST',
			credentials: 'same-origin',
			body: PostData,
		} )
			.then( ( resp ) => resp.json() )
			.then( function ( data ) {
				let element = $scope.querySelector( '.is-masonry' );

				if ( ! element ) {
					element = $scope;
				}

				setTimeout( function () {
					// eslint-disable-next-line no-undef
					const isotope = new Isotope( element, {
						itemSelector: 'article',
					} );

					isotope.insert( window.UAGBPostMasonry.createElementFromHTML( data.data ) );
					loadStatus = true;

					if ( loader.length > 0 ) {
						loader[ 0 ].style.display = 'none';
					}

					if ( true === append ) {
						$scope.querySelector( '.uagb-post__load-more-wrap' ).style.display = 'block';
					}

					if ( count === parseInt( $obj.total ) ) {
						$scope.querySelector( '.uagb-post__load-more-wrap' ).style.display = 'none';
					}
					// This CSS is for Post BG Image Spacing
					const articles = document.querySelectorAll(
						'.uagb-post__image-position-background .uagb-post__inner-wrap'
					);

					for ( const article of articles ) {
						const articleWidth = article.offsetWidth;
						const rowGap = $attr.rowGap;
						const imageWidth = 100 - ( rowGap / articleWidth ) * 100;
						const image = article.getElementsByClassName( 'uagb-post__image' );
						if ( image[ 0 ] ) {
							image[ 0 ].style.width = imageWidth + '%';
							image[ 0 ].style.marginLeft = rowGap / 2 + 'px';
						}
					}
				}, 500 );
			} )
			.catch( function ( error ) {
				console.log( JSON.stringify( error ) ); // eslint-disable-line no-console
			} );
	},
};
window.UAGBPostGrid = {
	_callAjax( $attr, $page_number, block_id ) {

		// Create new FormData object with necessary data to send in AJAX call.
		const PostData = new FormData();
		PostData.append( 'action', 'uagb_post_pagination_grid' );
		PostData.append( 'nonce', uagb_data.uagb_grid_ajax_nonce );
		PostData.append( 'page_number', $page_number );
		PostData.append( 'attr', JSON.stringify( $attr ) );

		// Send AJAX call with PostData object.
		fetch( uagb_data.ajax_url, {
			method: 'POST',
			credentials: 'same-origin',
			body: PostData,
		  } )
		  .then( ( resp ) => resp.json() )
		  .then( function( data ) { 

			// Get the relevant DOM elements to replace.
			const grid_element = document.querySelector( '.uagb-block-'+ block_id );
			if( ! grid_element ) {	
				return;
			}

			// Remove the old elements and replace them with the updated markup received from the AJAX response.
			const html = data.data.replace( /\n|\t/g, '' );
			grid_element.outerHTML = html;

			// Get the new block ID to use for future pagination requests.
			const new_blockId = html.match( /uagb-block-([\w-]+)/ )?.[1] || '';
			addClickListeners( new_blockId );
			
		} );

		function addClickListeners( new_blockId ) {

			// Add click event listener to each pagination link in the updated markup.
			const elements = document.querySelectorAll( `.uagb-post-grid.uagb-block-${new_blockId} .uagb-post-pagination-wrap a` );
			elements.forEach( element => {
				element.addEventListener( 'click', event => {

					// Prevent default link behavior and extract the new page number to send in the next AJAX call
					event.preventDefault();
					const link = event.target.getAttribute( 'href' ).match( /admin-ajax.*/ )?.[0] || '';
					const pageNumber = link.match( /\d+/ )?.[0] || 1;
					
					// Call _callAjax again with updated page number and block ID
					window.UAGBPostGrid._callAjax( $attr, parseInt( pageNumber ), new_blockId );

				} );
			} );

		}
	}
};

// Set Carousel Height for Customiser.
// eslint-disable-next-line no-unused-vars
function uagb_carousel_height( id ) {
	const wrap = document.querySelector( '#wpwrap .is-carousel.uagb-block-' + id );
	if ( wrap ) {
		window.UAGBPostCarousel._setHeight( wrap );
	}
}

// Unset Carousel Height for Customiser.
// eslint-disable-next-line no-unused-vars
function uagb_carousel_unset_height( id ) {
	const wrap = document.querySelector( '#wpwrap .is-carousel.uagb-block-' + id );
	if ( wrap ) {
		window.UAGBPostCarousel._unSetHeight( wrap );
	}
}
PK��][[�%���.ultimate-addons-for-gutenberg/assets/js/faq.jsnu�[���function slideUp( target, duration ) {
	target.style.transitionProperty = 'height, margin, padding';
	target.style.transitionDuration = duration + 'ms';
	target.style.boxSizing = 'border-box';
	target.style.height = target.offsetHeight + 'px';
	target.offsetHeight; // eslint-disable-line no-unused-expressions
	target.style.overflow = 'hidden';
	target.style.height = 0;
	target.style.paddingTop = 0;
	target.style.paddingBottom = 0;
	target.style.marginTop = 0;
	target.style.marginBottom = 0;
	window.setTimeout( function () {
		target.style.display = 'none';
		target.style.removeProperty( 'height' );
		target.style.removeProperty( 'padding-top' );
		target.style.removeProperty( 'padding-bottom' );
		target.style.removeProperty( 'margin-top' );
		target.style.removeProperty( 'margin-bottom' );
		target.style.removeProperty( 'overflow' );
		target.style.removeProperty( 'transition-duration' );
		target.style.removeProperty( 'transition-property' );
	}, duration );
}

function slideDown( target, duration ) {
	target.style.removeProperty( 'display' );
	let display = window.getComputedStyle( target ).display;

	if ( display === 'none' ) display = 'block';

	target.style.display = display;
	const height = target.offsetHeight;
	target.style.overflow = 'hidden';
	target.style.height = 0;
	target.style.paddingTop = 0;
	target.style.paddingBottom = 0;
	target.style.marginTop = 0;
	target.style.marginBottom = 0;
	target.offsetHeight; // eslint-disable-line no-unused-expressions
	target.style.boxSizing = 'border-box';
	target.style.transitionProperty = 'height, margin, padding';
	target.style.transitionDuration = duration + 'ms';
	target.style.height = height + 'px';
	target.style.removeProperty( 'padding-top' );
	target.style.removeProperty( 'padding-bottom' );
	target.style.removeProperty( 'margin-top' );
	target.style.removeProperty( 'margin-bottom' );
	window.setTimeout( function () {
		target.style.removeProperty( 'height' );
		target.style.removeProperty( 'overflow' );
		target.style.removeProperty( 'transition-duration' );
		target.style.removeProperty( 'transition-property' );
	}, duration );
}

function setupFAQ() {
	const pattern = new RegExp( '^[\\w\\-]+$' );
	const hashval = window.location.hash.substring( 1 );
	const expandFirstelements = document.getElementsByClassName( 'uagb-faq-expand-first-true' );
	const inactiveOtherelements = document.getElementsByClassName( 'uagb-faq-inactive-other-false' );

	if (
		document.getElementById( hashval ) !== undefined &&
		document.getElementById( hashval ) !== null &&
		document.getElementById( hashval ) !== '' &&
		pattern.test( hashval )
	) {
		const elementToOpen = document.getElementById( hashval );

		if ( elementToOpen !== undefined ) {
			elementToOpen.classList.add( 'uagb-faq-item-active' );
			elementToOpen.setAttribute( 'aria-expanded', true );
			const faqContent = elementToOpen.getElementsByClassName( 'uagb-faq-content' )[ 0 ];
			if ( faqContent ) {
				slideDown( faqContent, 500 );
			}
		}
	} else {
		for ( let item = 0; item < expandFirstelements.length; item++ ) {
			if ( true === expandFirstelements[ item ].classList.contains( 'uagb-faq-layout-accordion' ) ) {
				let faqItem = expandFirstelements[ item ].querySelectorAll(
					'.uagb-faq-child__outer-wrap.uagb-faq-item'
				)[ 0 ];

				if ( ! faqItem ) {
					faqItem = expandFirstelements[ item ].querySelectorAll(
						'.uagb-faq-child__outer-wrap .uagb-faq-item'
					)[ 0 ];
				}

				faqItem.classList.add( 'uagb-faq-item-active' );

				faqItem.setAttribute( 'aria-expanded', true );
				faqItem.querySelectorAll( '.uagb-faq-content' )[ 0 ].style.display = 'block';
			}
		}
	}
	for ( let item = 0; item < inactiveOtherelements.length; item++ ) {
		if ( true === inactiveOtherelements[ item ].classList.contains( 'uagb-faq-layout-accordion' ) ) {
			let otherItems = inactiveOtherelements[ item ].querySelectorAll(
				'.uagb-faq-child__outer-wrap.uagb-faq-item'
			);

			if ( ! otherItems || 0 === otherItems.length ) {
				otherItems = inactiveOtherelements[ item ].querySelectorAll(
					'.uagb-faq-child__outer-wrap .uagb-faq-item'
				);
			}

			for ( let childItem = 0; childItem < otherItems.length; childItem++ ) {
				otherItems[ childItem ].classList.add( 'uagb-faq-item-active' );
				otherItems[ childItem ].setAttribute( 'aria-expanded', true );
				otherItems[ childItem ].querySelectorAll( '.uagb-faq-content' )[ 0 ].style.display = 'block';
			}
		}
	}
}

window.addEventListener( 'load', function () {
	setupFAQ();

	const accordionElements = document.getElementsByClassName( 'uagb-faq-layout-accordion' );
	for ( let item = 0; item < accordionElements.length; item++ ) {
		const questionButtons = accordionElements[ item ].querySelectorAll( '.uagb-faq-questions-button' );
		const faqItems = accordionElements[ item ].querySelectorAll( '.uagb-faq-item' );

		for ( let button = 0; button < questionButtons.length; button++ ) {
			questionButtons[ button ].addEventListener( 'click', function ( e ) {
				faqClick( e, this.parentElement, questionButtons );
			} );
		}

		for ( let button = 0; button < faqItems.length; button++ ) {
			faqItems[ button ].addEventListener( 'keyup', function ( e ) {
				faqClick( e, this, questionButtons );
			} );
		}
	}
} );

function faqClick( e, faqItem, questionButtons ) {
	if ( e.keyCode === 13 || e.keyCode === 32 || e.button === 0 ) {
		// enter || spacebar || left mouse click.
		if ( faqItem.classList.contains( 'uagb-faq-item-active' ) ) {
			faqItem.classList.remove( 'uagb-faq-item-active' );
			faqItem.setAttribute( 'aria-expanded', false );
			slideUp( faqItem.getElementsByClassName( 'uagb-faq-content' )[ 0 ], 500 );
		} else {
			const parent = e.currentTarget.closest( '.wp-block-uagb-faq' );
			let faqToggle = 'true';
			if ( parent.classList.contains( 'wp-block-uagb-faq' ) ) {
				faqToggle = parent.getAttribute( 'data-faqtoggle' );
			}
			faqItem.classList.add( 'uagb-faq-item-active' );
			faqItem.setAttribute( 'aria-expanded', true );
			slideDown( faqItem.getElementsByClassName( 'uagb-faq-content' )[ 0 ], 500 );
			if ( 'true' === faqToggle ) {
				questionButtons = parent.querySelectorAll( '.uagb-faq-content' );
				for ( let buttonChild = 0; buttonChild < questionButtons.length; buttonChild++ ) {
					const buttonItem = questionButtons[ buttonChild ].parentElement;
					if ( buttonItem === faqItem ) {
						continue;
					}
					buttonItem.classList.remove( 'uagb-faq-item-active' );
					buttonItem.setAttribute( 'aria-expanded', false );
					slideUp( buttonItem.getElementsByClassName( 'uagb-faq-content' )[ 0 ], 500 );
				}
			}
		}
	}
}
PK��][��P]6ultimate-addons-for-gutenberg/assets/js/countUp.min.jsnu�[���!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?i(exports):"function"==typeof define&&define.amd?define(["exports"],i):i((t=t||self).countUp={})}(this,function(t){"use strict";var i=function(){return(i=Object.assign||function(t){for(var i,a=1,s=arguments.length;a<s;a++)for(var n in i=arguments[a])Object.prototype.hasOwnProperty.call(i,n)&&(t[n]=i[n]);return t}).apply(this,arguments)},a=function(){function t(t,a,s){var n=this;this.target=t,this.endVal=a,this.options=s,this.version="2.0.7",this.defaults={startVal:0,decimalPlaces:0,duration:2,useEasing:!0,useGrouping:!0,smartEasingThreshold:999,smartEasingAmount:333,separator:",",decimal:".",prefix:"",suffix:""},this.finalEndVal=null,this.useEasing=!0,this.countDown=!1,this.error="",this.startVal=0,this.paused=!0,this.count=function(t){n.startTime||(n.startTime=t);var i=t-n.startTime;n.remaining=n.duration-i,n.useEasing?n.countDown?n.frameVal=n.startVal-n.easingFn(i,0,n.startVal-n.endVal,n.duration):n.frameVal=n.easingFn(i,n.startVal,n.endVal-n.startVal,n.duration):n.countDown?n.frameVal=n.startVal-(n.startVal-n.endVal)*(i/n.duration):n.frameVal=n.startVal+(n.endVal-n.startVal)*(i/n.duration),n.countDown?n.frameVal=n.frameVal<n.endVal?n.endVal:n.frameVal:n.frameVal=n.frameVal>n.endVal?n.endVal:n.frameVal,n.frameVal=Number(n.frameVal.toFixed(n.options.decimalPlaces)),n.printValue(n.frameVal),i<n.duration?n.rAF=requestAnimationFrame(n.count):null!==n.finalEndVal?n.update(n.finalEndVal):n.callback&&n.callback()},this.formatNumber=function(t){var i,a,s,e,r,o=t<0?"-":"";if(i=Math.abs(t).toFixed(n.options.decimalPlaces),s=(a=(i+="").split("."))[0],e=a.length>1?n.options.decimal+a[1]:"",n.options.useGrouping){r="";for(var l=0,u=s.length;l<u;++l)0!==l&&l%3==0&&(r=n.options.separator+r),r=s[u-l-1]+r;s=r}return n.options.numerals&&n.options.numerals.length&&(s=s.replace(/[0-9]/g,function(t){return n.options.numerals[+t]}),e=e.replace(/[0-9]/g,function(t){return n.options.numerals[+t]})),o+n.options.prefix+s+e+n.options.suffix},this.easeOutExpo=function(t,i,a,s){return a*(1-Math.pow(2,-10*t/s))*1024/1023+i},this.options=i(i({},this.defaults),s),this.formattingFn=this.options.formattingFn?this.options.formattingFn:this.formatNumber,this.easingFn=this.options.easingFn?this.options.easingFn:this.easeOutExpo,this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.endVal=this.validateValue(a),this.options.decimalPlaces=Math.max(this.options.decimalPlaces),this.resetDuration(),this.options.separator=String(this.options.separator),this.useEasing=this.options.useEasing,""===this.options.separator&&(this.options.useGrouping=!1),this.el="string"==typeof t?document.getElementById(t):t,this.el?this.printValue(this.startVal):this.error="[CountUp] target is null or undefined"}return t.prototype.determineDirectionAndSmartEasing=function(){var t=this.finalEndVal?this.finalEndVal:this.endVal;this.countDown=this.startVal>t;var i=t-this.startVal;if(Math.abs(i)>this.options.smartEasingThreshold){this.finalEndVal=t;var a=this.countDown?1:-1;this.endVal=t+a*this.options.smartEasingAmount,this.duration=this.duration/2}else this.endVal=t,this.finalEndVal=null;this.finalEndVal?this.useEasing=!1:this.useEasing=this.options.useEasing},t.prototype.start=function(t){this.error||(this.callback=t,this.duration>0?(this.determineDirectionAndSmartEasing(),this.paused=!1,this.rAF=requestAnimationFrame(this.count)):this.printValue(this.endVal))},t.prototype.pauseResume=function(){this.paused?(this.startTime=null,this.duration=this.remaining,this.startVal=this.frameVal,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count)):cancelAnimationFrame(this.rAF),this.paused=!this.paused},t.prototype.reset=function(){cancelAnimationFrame(this.rAF),this.paused=!0,this.resetDuration(),this.startVal=this.validateValue(this.options.startVal),this.frameVal=this.startVal,this.printValue(this.startVal)},t.prototype.update=function(t){cancelAnimationFrame(this.rAF),this.startTime=null,this.endVal=this.validateValue(t),this.endVal!==this.frameVal&&(this.startVal=this.frameVal,this.finalEndVal||this.resetDuration(),this.finalEndVal=null,this.determineDirectionAndSmartEasing(),this.rAF=requestAnimationFrame(this.count))},t.prototype.printValue=function(t){var i=this.formattingFn(t);"INPUT"===this.el.tagName?this.el.value=i:"text"===this.el.tagName||"tspan"===this.el.tagName?this.el.textContent=i:this.el.innerHTML=i},t.prototype.ensureNumber=function(t){return"number"==typeof t&&!isNaN(t)},t.prototype.validateValue=function(t){var i=Number(t);return this.ensureNumber(i)?i:(this.error="[CountUp] invalid start or end value: "+t,null)},t.prototype.resetDuration=function(){this.startTime=null,this.duration=1e3*Number(this.options.duration),this.remaining=this.duration},t}();t.CountUp=a,Object.defineProperty(t,"__esModule",{value:!0})});PK��][;�
-1-1<ultimate-addons-for-gutenberg/assets/js/swiper-bundle.min.jsnu�[���/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).Swiper=t()}(this,(function(){"use strict";function e(e){return null!==e&&"object"==typeof e&&"constructor"in e&&e.constructor===Object}function t(s,a){void 0===s&&(s={}),void 0===a&&(a={}),Object.keys(a).forEach((i=>{void 0===s[i]?s[i]=a[i]:e(a[i])&&e(s[i])&&Object.keys(a[i]).length>0&&t(s[i],a[i])}))}const s={body:{},addEventListener(){},removeEventListener(){},activeElement:{blur(){},nodeName:""},querySelector:()=>null,querySelectorAll:()=>[],getElementById:()=>null,createEvent:()=>({initEvent(){}}),createElement:()=>({children:[],childNodes:[],style:{},setAttribute(){},getElementsByTagName:()=>[]}),createElementNS:()=>({}),importNode:()=>null,location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""}};function a(){const e="undefined"!=typeof document?document:{};return t(e,s),e}const i={document:s,navigator:{userAgent:""},location:{hash:"",host:"",hostname:"",href:"",origin:"",pathname:"",protocol:"",search:""},history:{replaceState(){},pushState(){},go(){},back(){}},CustomEvent:function(){return this},addEventListener(){},removeEventListener(){},getComputedStyle:()=>({getPropertyValue:()=>""}),Image(){},Date(){},screen:{},setTimeout(){},clearTimeout(){},matchMedia:()=>({}),requestAnimationFrame:e=>"undefined"==typeof setTimeout?(e(),null):setTimeout(e,0),cancelAnimationFrame(e){"undefined"!=typeof setTimeout&&clearTimeout(e)}};function r(){const e="undefined"!=typeof window?window:{};return t(e,i),e}class n extends Array{constructor(e){"number"==typeof e?super(e):(super(...e||[]),function(e){const t=e.__proto__;Object.defineProperty(e,"__proto__",{get:()=>t,set(e){t.__proto__=e}})}(this))}}function l(e){void 0===e&&(e=[]);const t=[];return e.forEach((e=>{Array.isArray(e)?t.push(...l(e)):t.push(e)})),t}function o(e,t){return Array.prototype.filter.call(e,t)}function d(e,t){const s=r(),i=a();let l=[];if(!t&&e instanceof n)return e;if(!e)return new n(l);if("string"==typeof e){const s=e.trim();if(s.indexOf("<")>=0&&s.indexOf(">")>=0){let e="div";0===s.indexOf("<li")&&(e="ul"),0===s.indexOf("<tr")&&(e="tbody"),0!==s.indexOf("<td")&&0!==s.indexOf("<th")||(e="tr"),0===s.indexOf("<tbody")&&(e="table"),0===s.indexOf("<option")&&(e="select");const t=i.createElement(e);t.innerHTML=s;for(let e=0;e<t.childNodes.length;e+=1)l.push(t.childNodes[e])}else l=function(e,t){if("string"!=typeof e)return[e];const s=[],a=t.querySelectorAll(e);for(let e=0;e<a.length;e+=1)s.push(a[e]);return s}(e.trim(),t||i)}else if(e.nodeType||e===s||e===i)l.push(e);else if(Array.isArray(e)){if(e instanceof n)return e;l=e}return new n(function(e){const t=[];for(let s=0;s<e.length;s+=1)-1===t.indexOf(e[s])&&t.push(e[s]);return t}(l))}d.fn=n.prototype;const c={addClass:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];const a=l(t.map((e=>e.split(" "))));return this.forEach((e=>{e.classList.add(...a)})),this},removeClass:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];const a=l(t.map((e=>e.split(" "))));return this.forEach((e=>{e.classList.remove(...a)})),this},hasClass:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];const a=l(t.map((e=>e.split(" "))));return o(this,(e=>a.filter((t=>e.classList.contains(t))).length>0)).length>0},toggleClass:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];const a=l(t.map((e=>e.split(" "))));this.forEach((e=>{a.forEach((t=>{e.classList.toggle(t)}))}))},attr:function(e,t){if(1===arguments.length&&"string"==typeof e)return this[0]?this[0].getAttribute(e):void 0;for(let s=0;s<this.length;s+=1)if(2===arguments.length)this[s].setAttribute(e,t);else for(const t in e)this[s][t]=e[t],this[s].setAttribute(t,e[t]);return this},removeAttr:function(e){for(let t=0;t<this.length;t+=1)this[t].removeAttribute(e);return this},transform:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transform=e;return this},transition:function(e){for(let t=0;t<this.length;t+=1)this[t].style.transitionDuration="string"!=typeof e?`${e}ms`:e;return this},on:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];let[a,i,r,n]=t;function l(e){const t=e.target;if(!t)return;const s=e.target.dom7EventData||[];if(s.indexOf(e)<0&&s.unshift(e),d(t).is(i))r.apply(t,s);else{const e=d(t).parents();for(let t=0;t<e.length;t+=1)d(e[t]).is(i)&&r.apply(e[t],s)}}function o(e){const t=e&&e.target&&e.target.dom7EventData||[];t.indexOf(e)<0&&t.unshift(e),r.apply(this,t)}"function"==typeof t[1]&&([a,r,n]=t,i=void 0),n||(n=!1);const c=a.split(" ");let p;for(let e=0;e<this.length;e+=1){const t=this[e];if(i)for(p=0;p<c.length;p+=1){const e=c[p];t.dom7LiveListeners||(t.dom7LiveListeners={}),t.dom7LiveListeners[e]||(t.dom7LiveListeners[e]=[]),t.dom7LiveListeners[e].push({listener:r,proxyListener:l}),t.addEventListener(e,l,n)}else for(p=0;p<c.length;p+=1){const e=c[p];t.dom7Listeners||(t.dom7Listeners={}),t.dom7Listeners[e]||(t.dom7Listeners[e]=[]),t.dom7Listeners[e].push({listener:r,proxyListener:o}),t.addEventListener(e,o,n)}}return this},off:function(){for(var e=arguments.length,t=new Array(e),s=0;s<e;s++)t[s]=arguments[s];let[a,i,r,n]=t;"function"==typeof t[1]&&([a,r,n]=t,i=void 0),n||(n=!1);const l=a.split(" ");for(let e=0;e<l.length;e+=1){const t=l[e];for(let e=0;e<this.length;e+=1){const s=this[e];let a;if(!i&&s.dom7Listeners?a=s.dom7Listeners[t]:i&&s.dom7LiveListeners&&(a=s.dom7LiveListeners[t]),a&&a.length)for(let e=a.length-1;e>=0;e-=1){const i=a[e];r&&i.listener===r||r&&i.listener&&i.listener.dom7proxy&&i.listener.dom7proxy===r?(s.removeEventListener(t,i.proxyListener,n),a.splice(e,1)):r||(s.removeEventListener(t,i.proxyListener,n),a.splice(e,1))}}}return this},trigger:function(){const e=r();for(var t=arguments.length,s=new Array(t),a=0;a<t;a++)s[a]=arguments[a];const i=s[0].split(" "),n=s[1];for(let t=0;t<i.length;t+=1){const a=i[t];for(let t=0;t<this.length;t+=1){const i=this[t];if(e.CustomEvent){const t=new e.CustomEvent(a,{detail:n,bubbles:!0,cancelable:!0});i.dom7EventData=s.filter(((e,t)=>t>0)),i.dispatchEvent(t),i.dom7EventData=[],delete i.dom7EventData}}}return this},transitionEnd:function(e){const t=this;return e&&t.on("transitionend",(function s(a){a.target===this&&(e.call(this,a),t.off("transitionend",s))})),this},outerWidth:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetWidth+parseFloat(e.getPropertyValue("margin-right"))+parseFloat(e.getPropertyValue("margin-left"))}return this[0].offsetWidth}return null},outerHeight:function(e){if(this.length>0){if(e){const e=this.styles();return this[0].offsetHeight+parseFloat(e.getPropertyValue("margin-top"))+parseFloat(e.getPropertyValue("margin-bottom"))}return this[0].offsetHeight}return null},styles:function(){const e=r();return this[0]?e.getComputedStyle(this[0],null):{}},offset:function(){if(this.length>0){const e=r(),t=a(),s=this[0],i=s.getBoundingClientRect(),n=t.body,l=s.clientTop||n.clientTop||0,o=s.clientLeft||n.clientLeft||0,d=s===e?e.scrollY:s.scrollTop,c=s===e?e.scrollX:s.scrollLeft;return{top:i.top+d-l,left:i.left+c-o}}return null},css:function(e,t){const s=r();let a;if(1===arguments.length){if("string"!=typeof e){for(a=0;a<this.length;a+=1)for(const t in e)this[a].style[t]=e[t];return this}if(this[0])return s.getComputedStyle(this[0],null).getPropertyValue(e)}if(2===arguments.length&&"string"==typeof e){for(a=0;a<this.length;a+=1)this[a].style[e]=t;return this}return this},each:function(e){return e?(this.forEach(((t,s)=>{e.apply(t,[t,s])})),this):this},html:function(e){if(void 0===e)return this[0]?this[0].innerHTML:null;for(let t=0;t<this.length;t+=1)this[t].innerHTML=e;return this},text:function(e){if(void 0===e)return this[0]?this[0].textContent.trim():null;for(let t=0;t<this.length;t+=1)this[t].textContent=e;return this},is:function(e){const t=r(),s=a(),i=this[0];let l,o;if(!i||void 0===e)return!1;if("string"==typeof e){if(i.matches)return i.matches(e);if(i.webkitMatchesSelector)return i.webkitMatchesSelector(e);if(i.msMatchesSelector)return i.msMatchesSelector(e);for(l=d(e),o=0;o<l.length;o+=1)if(l[o]===i)return!0;return!1}if(e===s)return i===s;if(e===t)return i===t;if(e.nodeType||e instanceof n){for(l=e.nodeType?[e]:e,o=0;o<l.length;o+=1)if(l[o]===i)return!0;return!1}return!1},index:function(){let e,t=this[0];if(t){for(e=0;null!==(t=t.previousSibling);)1===t.nodeType&&(e+=1);return e}},eq:function(e){if(void 0===e)return this;const t=this.length;if(e>t-1)return d([]);if(e<0){const s=t+e;return d(s<0?[]:[this[s]])}return d([this[e]])},append:function(){let e;const t=a();for(let s=0;s<arguments.length;s+=1){e=s<0||arguments.length<=s?void 0:arguments[s];for(let s=0;s<this.length;s+=1)if("string"==typeof e){const a=t.createElement("div");for(a.innerHTML=e;a.firstChild;)this[s].appendChild(a.firstChild)}else if(e instanceof n)for(let t=0;t<e.length;t+=1)this[s].appendChild(e[t]);else this[s].appendChild(e)}return this},prepend:function(e){const t=a();let s,i;for(s=0;s<this.length;s+=1)if("string"==typeof e){const a=t.createElement("div");for(a.innerHTML=e,i=a.childNodes.length-1;i>=0;i-=1)this[s].insertBefore(a.childNodes[i],this[s].childNodes[0])}else if(e instanceof n)for(i=0;i<e.length;i+=1)this[s].insertBefore(e[i],this[s].childNodes[0]);else this[s].insertBefore(e,this[s].childNodes[0]);return this},next:function(e){return this.length>0?e?this[0].nextElementSibling&&d(this[0].nextElementSibling).is(e)?d([this[0].nextElementSibling]):d([]):this[0].nextElementSibling?d([this[0].nextElementSibling]):d([]):d([])},nextAll:function(e){const t=[];let s=this[0];if(!s)return d([]);for(;s.nextElementSibling;){const a=s.nextElementSibling;e?d(a).is(e)&&t.push(a):t.push(a),s=a}return d(t)},prev:function(e){if(this.length>0){const t=this[0];return e?t.previousElementSibling&&d(t.previousElementSibling).is(e)?d([t.previousElementSibling]):d([]):t.previousElementSibling?d([t.previousElementSibling]):d([])}return d([])},prevAll:function(e){const t=[];let s=this[0];if(!s)return d([]);for(;s.previousElementSibling;){const a=s.previousElementSibling;e?d(a).is(e)&&t.push(a):t.push(a),s=a}return d(t)},parent:function(e){const t=[];for(let s=0;s<this.length;s+=1)null!==this[s].parentNode&&(e?d(this[s].parentNode).is(e)&&t.push(this[s].parentNode):t.push(this[s].parentNode));return d(t)},parents:function(e){const t=[];for(let s=0;s<this.length;s+=1){let a=this[s].parentNode;for(;a;)e?d(a).is(e)&&t.push(a):t.push(a),a=a.parentNode}return d(t)},closest:function(e){let t=this;return void 0===e?d([]):(t.is(e)||(t=t.parents(e).eq(0)),t)},find:function(e){const t=[];for(let s=0;s<this.length;s+=1){const a=this[s].querySelectorAll(e);for(let e=0;e<a.length;e+=1)t.push(a[e])}return d(t)},children:function(e){const t=[];for(let s=0;s<this.length;s+=1){const a=this[s].children;for(let s=0;s<a.length;s+=1)e&&!d(a[s]).is(e)||t.push(a[s])}return d(t)},filter:function(e){return d(o(this,e))},remove:function(){for(let e=0;e<this.length;e+=1)this[e].parentNode&&this[e].parentNode.removeChild(this[e]);return this}};function p(e,t){return void 0===t&&(t=0),setTimeout(e,t)}function u(){return Date.now()}function h(e,t){void 0===t&&(t="x");const s=r();let a,i,n;const l=function(e){const t=r();let s;return t.getComputedStyle&&(s=t.getComputedStyle(e,null)),!s&&e.currentStyle&&(s=e.currentStyle),s||(s=e.style),s}(e);return s.WebKitCSSMatrix?(i=l.transform||l.webkitTransform,i.split(",").length>6&&(i=i.split(", ").map((e=>e.replace(",","."))).join(", ")),n=new s.WebKitCSSMatrix("none"===i?"":i)):(n=l.MozTransform||l.OTransform||l.MsTransform||l.msTransform||l.transform||l.getPropertyValue("transform").replace("translate(","matrix(1, 0, 0, 1,"),a=n.toString().split(",")),"x"===t&&(i=s.WebKitCSSMatrix?n.m41:16===a.length?parseFloat(a[12]):parseFloat(a[4])),"y"===t&&(i=s.WebKitCSSMatrix?n.m42:16===a.length?parseFloat(a[13]):parseFloat(a[5])),i||0}function m(e){return"object"==typeof e&&null!==e&&e.constructor&&"Object"===Object.prototype.toString.call(e).slice(8,-1)}function f(e){return"undefined"!=typeof window&&void 0!==window.HTMLElement?e instanceof HTMLElement:e&&(1===e.nodeType||11===e.nodeType)}function g(){const e=Object(arguments.length<=0?void 0:arguments[0]),t=["__proto__","constructor","prototype"];for(let s=1;s<arguments.length;s+=1){const a=s<0||arguments.length<=s?void 0:arguments[s];if(null!=a&&!f(a)){const s=Object.keys(Object(a)).filter((e=>t.indexOf(e)<0));for(let t=0,i=s.length;t<i;t+=1){const i=s[t],r=Object.getOwnPropertyDescriptor(a,i);void 0!==r&&r.enumerable&&(m(e[i])&&m(a[i])?a[i].__swiper__?e[i]=a[i]:g(e[i],a[i]):!m(e[i])&&m(a[i])?(e[i]={},a[i].__swiper__?e[i]=a[i]:g(e[i],a[i])):e[i]=a[i])}}}return e}function v(e,t,s){e.style.setProperty(t,s)}function w(e){let{swiper:t,targetPosition:s,side:a}=e;const i=r(),n=-t.translate;let l,o=null;const d=t.params.speed;t.wrapperEl.style.scrollSnapType="none",i.cancelAnimationFrame(t.cssModeFrameID);const c=s>n?"next":"prev",p=(e,t)=>"next"===c&&e>=t||"prev"===c&&e<=t,u=()=>{l=(new Date).getTime(),null===o&&(o=l);const e=Math.max(Math.min((l-o)/d,1),0),r=.5-Math.cos(e*Math.PI)/2;let c=n+r*(s-n);if(p(c,s)&&(c=s),t.wrapperEl.scrollTo({[a]:c}),p(c,s))return t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.scrollSnapType="",setTimeout((()=>{t.wrapperEl.style.overflow="",t.wrapperEl.scrollTo({[a]:c})})),void i.cancelAnimationFrame(t.cssModeFrameID);t.cssModeFrameID=i.requestAnimationFrame(u)};u()}let b,x,y;function E(){return b||(b=function(){const e=r(),t=a();return{smoothScroll:t.documentElement&&"scrollBehavior"in t.documentElement.style,touch:!!("ontouchstart"in e||e.DocumentTouch&&t instanceof e.DocumentTouch),passiveListener:function(){let t=!1;try{const s=Object.defineProperty({},"passive",{get(){t=!0}});e.addEventListener("testPassiveListener",null,s)}catch(e){}return t}(),gestures:"ongesturestart"in e}}()),b}function C(e){return void 0===e&&(e={}),x||(x=function(e){let{userAgent:t}=void 0===e?{}:e;const s=E(),a=r(),i=a.navigator.platform,n=t||a.navigator.userAgent,l={ios:!1,android:!1},o=a.screen.width,d=a.screen.height,c=n.match(/(Android);?[\s\/]+([\d.]+)?/);let p=n.match(/(iPad).*OS\s([\d_]+)/);const u=n.match(/(iPod)(.*OS\s([\d_]+))?/),h=!p&&n.match(/(iPhone\sOS|iOS)\s([\d_]+)/),m="Win32"===i;let f="MacIntel"===i;return!p&&f&&s.touch&&["1024x1366","1366x1024","834x1194","1194x834","834x1112","1112x834","768x1024","1024x768","820x1180","1180x820","810x1080","1080x810"].indexOf(`${o}x${d}`)>=0&&(p=n.match(/(Version)\/([\d.]+)/),p||(p=[0,1,"13_0_0"]),f=!1),c&&!m&&(l.os="android",l.android=!0),(p||h||u)&&(l.os="ios",l.ios=!0),l}(e)),x}function T(){return y||(y=function(){const e=r();return{isSafari:function(){const t=e.navigator.userAgent.toLowerCase();return t.indexOf("safari")>=0&&t.indexOf("chrome")<0&&t.indexOf("android")<0}(),isWebView:/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(e.navigator.userAgent)}}()),y}Object.keys(c).forEach((e=>{Object.defineProperty(d.fn,e,{value:c[e],writable:!0})}));var $={on(e,t,s){const a=this;if(!a.eventsListeners||a.destroyed)return a;if("function"!=typeof t)return a;const i=s?"unshift":"push";return e.split(" ").forEach((e=>{a.eventsListeners[e]||(a.eventsListeners[e]=[]),a.eventsListeners[e][i](t)})),a},once(e,t,s){const a=this;if(!a.eventsListeners||a.destroyed)return a;if("function"!=typeof t)return a;function i(){a.off(e,i),i.__emitterProxy&&delete i.__emitterProxy;for(var s=arguments.length,r=new Array(s),n=0;n<s;n++)r[n]=arguments[n];t.apply(a,r)}return i.__emitterProxy=t,a.on(e,i,s)},onAny(e,t){const s=this;if(!s.eventsListeners||s.destroyed)return s;if("function"!=typeof e)return s;const a=t?"unshift":"push";return s.eventsAnyListeners.indexOf(e)<0&&s.eventsAnyListeners[a](e),s},offAny(e){const t=this;if(!t.eventsListeners||t.destroyed)return t;if(!t.eventsAnyListeners)return t;const s=t.eventsAnyListeners.indexOf(e);return s>=0&&t.eventsAnyListeners.splice(s,1),t},off(e,t){const s=this;return!s.eventsListeners||s.destroyed?s:s.eventsListeners?(e.split(" ").forEach((e=>{void 0===t?s.eventsListeners[e]=[]:s.eventsListeners[e]&&s.eventsListeners[e].forEach(((a,i)=>{(a===t||a.__emitterProxy&&a.__emitterProxy===t)&&s.eventsListeners[e].splice(i,1)}))})),s):s},emit(){const e=this;if(!e.eventsListeners||e.destroyed)return e;if(!e.eventsListeners)return e;let t,s,a;for(var i=arguments.length,r=new Array(i),n=0;n<i;n++)r[n]=arguments[n];"string"==typeof r[0]||Array.isArray(r[0])?(t=r[0],s=r.slice(1,r.length),a=e):(t=r[0].events,s=r[0].data,a=r[0].context||e),s.unshift(a);return(Array.isArray(t)?t:t.split(" ")).forEach((t=>{e.eventsAnyListeners&&e.eventsAnyListeners.length&&e.eventsAnyListeners.forEach((e=>{e.apply(a,[t,...s])})),e.eventsListeners&&e.eventsListeners[t]&&e.eventsListeners[t].forEach((e=>{e.apply(a,s)}))})),e}};var S={updateSize:function(){const e=this;let t,s;const a=e.$el;t=void 0!==e.params.width&&null!==e.params.width?e.params.width:a[0].clientWidth,s=void 0!==e.params.height&&null!==e.params.height?e.params.height:a[0].clientHeight,0===t&&e.isHorizontal()||0===s&&e.isVertical()||(t=t-parseInt(a.css("padding-left")||0,10)-parseInt(a.css("padding-right")||0,10),s=s-parseInt(a.css("padding-top")||0,10)-parseInt(a.css("padding-bottom")||0,10),Number.isNaN(t)&&(t=0),Number.isNaN(s)&&(s=0),Object.assign(e,{width:t,height:s,size:e.isHorizontal()?t:s}))},updateSlides:function(){const e=this;function t(t){return e.isHorizontal()?t:{width:"height","margin-top":"margin-left","margin-bottom ":"margin-right","margin-left":"margin-top","margin-right":"margin-bottom","padding-left":"padding-top","padding-right":"padding-bottom",marginRight:"marginBottom"}[t]}function s(e,s){return parseFloat(e.getPropertyValue(t(s))||0)}const a=e.params,{$wrapperEl:i,size:r,rtlTranslate:n,wrongRTL:l}=e,o=e.virtual&&a.virtual.enabled,d=o?e.virtual.slides.length:e.slides.length,c=i.children(`.${e.params.slideClass}`),p=o?e.virtual.slides.length:c.length;let u=[];const h=[],m=[];let f=a.slidesOffsetBefore;"function"==typeof f&&(f=a.slidesOffsetBefore.call(e));let g=a.slidesOffsetAfter;"function"==typeof g&&(g=a.slidesOffsetAfter.call(e));const w=e.snapGrid.length,b=e.slidesGrid.length;let x=a.spaceBetween,y=-f,E=0,C=0;if(void 0===r)return;"string"==typeof x&&x.indexOf("%")>=0&&(x=parseFloat(x.replace("%",""))/100*r),e.virtualSize=-x,n?c.css({marginLeft:"",marginBottom:"",marginTop:""}):c.css({marginRight:"",marginBottom:"",marginTop:""}),a.centeredSlides&&a.cssMode&&(v(e.wrapperEl,"--swiper-centered-offset-before",""),v(e.wrapperEl,"--swiper-centered-offset-after",""));const T=a.grid&&a.grid.rows>1&&e.grid;let $;T&&e.grid.initSlides(p);const S="auto"===a.slidesPerView&&a.breakpoints&&Object.keys(a.breakpoints).filter((e=>void 0!==a.breakpoints[e].slidesPerView)).length>0;for(let i=0;i<p;i+=1){$=0;const n=c.eq(i);if(T&&e.grid.updateSlide(i,n,p,t),"none"!==n.css("display")){if("auto"===a.slidesPerView){S&&(c[i].style[t("width")]="");const r=getComputedStyle(n[0]),l=n[0].style.transform,o=n[0].style.webkitTransform;if(l&&(n[0].style.transform="none"),o&&(n[0].style.webkitTransform="none"),a.roundLengths)$=e.isHorizontal()?n.outerWidth(!0):n.outerHeight(!0);else{const e=s(r,"width"),t=s(r,"padding-left"),a=s(r,"padding-right"),i=s(r,"margin-left"),l=s(r,"margin-right"),o=r.getPropertyValue("box-sizing");if(o&&"border-box"===o)$=e+i+l;else{const{clientWidth:s,offsetWidth:r}=n[0];$=e+t+a+i+l+(r-s)}}l&&(n[0].style.transform=l),o&&(n[0].style.webkitTransform=o),a.roundLengths&&($=Math.floor($))}else $=(r-(a.slidesPerView-1)*x)/a.slidesPerView,a.roundLengths&&($=Math.floor($)),c[i]&&(c[i].style[t("width")]=`${$}px`);c[i]&&(c[i].swiperSlideSize=$),m.push($),a.centeredSlides?(y=y+$/2+E/2+x,0===E&&0!==i&&(y=y-r/2-x),0===i&&(y=y-r/2-x),Math.abs(y)<.001&&(y=0),a.roundLengths&&(y=Math.floor(y)),C%a.slidesPerGroup==0&&u.push(y),h.push(y)):(a.roundLengths&&(y=Math.floor(y)),(C-Math.min(e.params.slidesPerGroupSkip,C))%e.params.slidesPerGroup==0&&u.push(y),h.push(y),y=y+$+x),e.virtualSize+=$+x,E=$,C+=1}}if(e.virtualSize=Math.max(e.virtualSize,r)+g,n&&l&&("slide"===a.effect||"coverflow"===a.effect)&&i.css({width:`${e.virtualSize+a.spaceBetween}px`}),a.setWrapperSize&&i.css({[t("width")]:`${e.virtualSize+a.spaceBetween}px`}),T&&e.grid.updateWrapperSize($,u,t),!a.centeredSlides){const t=[];for(let s=0;s<u.length;s+=1){let i=u[s];a.roundLengths&&(i=Math.floor(i)),u[s]<=e.virtualSize-r&&t.push(i)}u=t,Math.floor(e.virtualSize-r)-Math.floor(u[u.length-1])>1&&u.push(e.virtualSize-r)}if(0===u.length&&(u=[0]),0!==a.spaceBetween){const s=e.isHorizontal()&&n?"marginLeft":t("marginRight");c.filter(((e,t)=>!a.cssMode||t!==c.length-1)).css({[s]:`${x}px`})}if(a.centeredSlides&&a.centeredSlidesBounds){let e=0;m.forEach((t=>{e+=t+(a.spaceBetween?a.spaceBetween:0)})),e-=a.spaceBetween;const t=e-r;u=u.map((e=>e<0?-f:e>t?t+g:e))}if(a.centerInsufficientSlides){let e=0;if(m.forEach((t=>{e+=t+(a.spaceBetween?a.spaceBetween:0)})),e-=a.spaceBetween,e<r){const t=(r-e)/2;u.forEach(((e,s)=>{u[s]=e-t})),h.forEach(((e,s)=>{h[s]=e+t}))}}if(Object.assign(e,{slides:c,snapGrid:u,slidesGrid:h,slidesSizesGrid:m}),a.centeredSlides&&a.cssMode&&!a.centeredSlidesBounds){v(e.wrapperEl,"--swiper-centered-offset-before",-u[0]+"px"),v(e.wrapperEl,"--swiper-centered-offset-after",e.size/2-m[m.length-1]/2+"px");const t=-e.snapGrid[0],s=-e.slidesGrid[0];e.snapGrid=e.snapGrid.map((e=>e+t)),e.slidesGrid=e.slidesGrid.map((e=>e+s))}if(p!==d&&e.emit("slidesLengthChange"),u.length!==w&&(e.params.watchOverflow&&e.checkOverflow(),e.emit("snapGridLengthChange")),h.length!==b&&e.emit("slidesGridLengthChange"),a.watchSlidesProgress&&e.updateSlidesOffset(),!(o||a.cssMode||"slide"!==a.effect&&"fade"!==a.effect)){const t=`${a.containerModifierClass}backface-hidden`,s=e.$el.hasClass(t);p<=a.maxBackfaceHiddenSlides?s||e.$el.addClass(t):s&&e.$el.removeClass(t)}},updateAutoHeight:function(e){const t=this,s=[],a=t.virtual&&t.params.virtual.enabled;let i,r=0;"number"==typeof e?t.setTransition(e):!0===e&&t.setTransition(t.params.speed);const n=e=>a?t.slides.filter((t=>parseInt(t.getAttribute("data-swiper-slide-index"),10)===e))[0]:t.slides.eq(e)[0];if("auto"!==t.params.slidesPerView&&t.params.slidesPerView>1)if(t.params.centeredSlides)(t.visibleSlides||d([])).each((e=>{s.push(e)}));else for(i=0;i<Math.ceil(t.params.slidesPerView);i+=1){const e=t.activeIndex+i;if(e>t.slides.length&&!a)break;s.push(n(e))}else s.push(n(t.activeIndex));for(i=0;i<s.length;i+=1)if(void 0!==s[i]){const e=s[i].offsetHeight;r=e>r?e:r}(r||0===r)&&t.$wrapperEl.css("height",`${r}px`)},updateSlidesOffset:function(){const e=this,t=e.slides;for(let s=0;s<t.length;s+=1)t[s].swiperSlideOffset=e.isHorizontal()?t[s].offsetLeft:t[s].offsetTop},updateSlidesProgress:function(e){void 0===e&&(e=this&&this.translate||0);const t=this,s=t.params,{slides:a,rtlTranslate:i,snapGrid:r}=t;if(0===a.length)return;void 0===a[0].swiperSlideOffset&&t.updateSlidesOffset();let n=-e;i&&(n=e),a.removeClass(s.slideVisibleClass),t.visibleSlidesIndexes=[],t.visibleSlides=[];for(let e=0;e<a.length;e+=1){const l=a[e];let o=l.swiperSlideOffset;s.cssMode&&s.centeredSlides&&(o-=a[0].swiperSlideOffset);const d=(n+(s.centeredSlides?t.minTranslate():0)-o)/(l.swiperSlideSize+s.spaceBetween),c=(n-r[0]+(s.centeredSlides?t.minTranslate():0)-o)/(l.swiperSlideSize+s.spaceBetween),p=-(n-o),u=p+t.slidesSizesGrid[e];(p>=0&&p<t.size-1||u>1&&u<=t.size||p<=0&&u>=t.size)&&(t.visibleSlides.push(l),t.visibleSlidesIndexes.push(e),a.eq(e).addClass(s.slideVisibleClass)),l.progress=i?-d:d,l.originalProgress=i?-c:c}t.visibleSlides=d(t.visibleSlides)},updateProgress:function(e){const t=this;if(void 0===e){const s=t.rtlTranslate?-1:1;e=t&&t.translate&&t.translate*s||0}const s=t.params,a=t.maxTranslate()-t.minTranslate();let{progress:i,isBeginning:r,isEnd:n}=t;const l=r,o=n;0===a?(i=0,r=!0,n=!0):(i=(e-t.minTranslate())/a,r=i<=0,n=i>=1),Object.assign(t,{progress:i,isBeginning:r,isEnd:n}),(s.watchSlidesProgress||s.centeredSlides&&s.autoHeight)&&t.updateSlidesProgress(e),r&&!l&&t.emit("reachBeginning toEdge"),n&&!o&&t.emit("reachEnd toEdge"),(l&&!r||o&&!n)&&t.emit("fromEdge"),t.emit("progress",i)},updateSlidesClasses:function(){const e=this,{slides:t,params:s,$wrapperEl:a,activeIndex:i,realIndex:r}=e,n=e.virtual&&s.virtual.enabled;let l;t.removeClass(`${s.slideActiveClass} ${s.slideNextClass} ${s.slidePrevClass} ${s.slideDuplicateActiveClass} ${s.slideDuplicateNextClass} ${s.slideDuplicatePrevClass}`),l=n?e.$wrapperEl.find(`.${s.slideClass}[data-swiper-slide-index="${i}"]`):t.eq(i),l.addClass(s.slideActiveClass),s.loop&&(l.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${r}"]`).addClass(s.slideDuplicateActiveClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${r}"]`).addClass(s.slideDuplicateActiveClass));let o=l.nextAll(`.${s.slideClass}`).eq(0).addClass(s.slideNextClass);s.loop&&0===o.length&&(o=t.eq(0),o.addClass(s.slideNextClass));let d=l.prevAll(`.${s.slideClass}`).eq(0).addClass(s.slidePrevClass);s.loop&&0===d.length&&(d=t.eq(-1),d.addClass(s.slidePrevClass)),s.loop&&(o.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${o.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicateNextClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${o.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicateNextClass),d.hasClass(s.slideDuplicateClass)?a.children(`.${s.slideClass}:not(.${s.slideDuplicateClass})[data-swiper-slide-index="${d.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicatePrevClass):a.children(`.${s.slideClass}.${s.slideDuplicateClass}[data-swiper-slide-index="${d.attr("data-swiper-slide-index")}"]`).addClass(s.slideDuplicatePrevClass)),e.emitSlidesClasses()},updateActiveIndex:function(e){const t=this,s=t.rtlTranslate?t.translate:-t.translate,{slidesGrid:a,snapGrid:i,params:r,activeIndex:n,realIndex:l,snapIndex:o}=t;let d,c=e;if(void 0===c){for(let e=0;e<a.length;e+=1)void 0!==a[e+1]?s>=a[e]&&s<a[e+1]-(a[e+1]-a[e])/2?c=e:s>=a[e]&&s<a[e+1]&&(c=e+1):s>=a[e]&&(c=e);r.normalizeSlideIndex&&(c<0||void 0===c)&&(c=0)}if(i.indexOf(s)>=0)d=i.indexOf(s);else{const e=Math.min(r.slidesPerGroupSkip,c);d=e+Math.floor((c-e)/r.slidesPerGroup)}if(d>=i.length&&(d=i.length-1),c===n)return void(d!==o&&(t.snapIndex=d,t.emit("snapIndexChange")));const p=parseInt(t.slides.eq(c).attr("data-swiper-slide-index")||c,10);Object.assign(t,{snapIndex:d,realIndex:p,previousIndex:n,activeIndex:c}),t.emit("activeIndexChange"),t.emit("snapIndexChange"),l!==p&&t.emit("realIndexChange"),(t.initialized||t.params.runCallbacksOnInit)&&t.emit("slideChange")},updateClickedSlide:function(e){const t=this,s=t.params,a=d(e).closest(`.${s.slideClass}`)[0];let i,r=!1;if(a)for(let e=0;e<t.slides.length;e+=1)if(t.slides[e]===a){r=!0,i=e;break}if(!a||!r)return t.clickedSlide=void 0,void(t.clickedIndex=void 0);t.clickedSlide=a,t.virtual&&t.params.virtual.enabled?t.clickedIndex=parseInt(d(a).attr("data-swiper-slide-index"),10):t.clickedIndex=i,s.slideToClickedSlide&&void 0!==t.clickedIndex&&t.clickedIndex!==t.activeIndex&&t.slideToClickedSlide()}};var M={getTranslate:function(e){void 0===e&&(e=this.isHorizontal()?"x":"y");const{params:t,rtlTranslate:s,translate:a,$wrapperEl:i}=this;if(t.virtualTranslate)return s?-a:a;if(t.cssMode)return a;let r=h(i[0],e);return s&&(r=-r),r||0},setTranslate:function(e,t){const s=this,{rtlTranslate:a,params:i,$wrapperEl:r,wrapperEl:n,progress:l}=s;let o,d=0,c=0;s.isHorizontal()?d=a?-e:e:c=e,i.roundLengths&&(d=Math.floor(d),c=Math.floor(c)),i.cssMode?n[s.isHorizontal()?"scrollLeft":"scrollTop"]=s.isHorizontal()?-d:-c:i.virtualTranslate||r.transform(`translate3d(${d}px, ${c}px, 0px)`),s.previousTranslate=s.translate,s.translate=s.isHorizontal()?d:c;const p=s.maxTranslate()-s.minTranslate();o=0===p?0:(e-s.minTranslate())/p,o!==l&&s.updateProgress(e),s.emit("setTranslate",s.translate,t)},minTranslate:function(){return-this.snapGrid[0]},maxTranslate:function(){return-this.snapGrid[this.snapGrid.length-1]},translateTo:function(e,t,s,a,i){void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===s&&(s=!0),void 0===a&&(a=!0);const r=this,{params:n,wrapperEl:l}=r;if(r.animating&&n.preventInteractionOnTransition)return!1;const o=r.minTranslate(),d=r.maxTranslate();let c;if(c=a&&e>o?o:a&&e<d?d:e,r.updateProgress(c),n.cssMode){const e=r.isHorizontal();if(0===t)l[e?"scrollLeft":"scrollTop"]=-c;else{if(!r.support.smoothScroll)return w({swiper:r,targetPosition:-c,side:e?"left":"top"}),!0;l.scrollTo({[e?"left":"top"]:-c,behavior:"smooth"})}return!0}return 0===t?(r.setTransition(0),r.setTranslate(c),s&&(r.emit("beforeTransitionStart",t,i),r.emit("transitionEnd"))):(r.setTransition(t),r.setTranslate(c),s&&(r.emit("beforeTransitionStart",t,i),r.emit("transitionStart")),r.animating||(r.animating=!0,r.onTranslateToWrapperTransitionEnd||(r.onTranslateToWrapperTransitionEnd=function(e){r&&!r.destroyed&&e.target===this&&(r.$wrapperEl[0].removeEventListener("transitionend",r.onTranslateToWrapperTransitionEnd),r.$wrapperEl[0].removeEventListener("webkitTransitionEnd",r.onTranslateToWrapperTransitionEnd),r.onTranslateToWrapperTransitionEnd=null,delete r.onTranslateToWrapperTransitionEnd,s&&r.emit("transitionEnd"))}),r.$wrapperEl[0].addEventListener("transitionend",r.onTranslateToWrapperTransitionEnd),r.$wrapperEl[0].addEventListener("webkitTransitionEnd",r.onTranslateToWrapperTransitionEnd))),!0}};function P(e){let{swiper:t,runCallbacks:s,direction:a,step:i}=e;const{activeIndex:r,previousIndex:n}=t;let l=a;if(l||(l=r>n?"next":r<n?"prev":"reset"),t.emit(`transition${i}`),s&&r!==n){if("reset"===l)return void t.emit(`slideResetTransition${i}`);t.emit(`slideChangeTransition${i}`),"next"===l?t.emit(`slideNextTransition${i}`):t.emit(`slidePrevTransition${i}`)}}var k={slideTo:function(e,t,s,a,i){if(void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===s&&(s=!0),"number"!=typeof e&&"string"!=typeof e)throw new Error(`The 'index' argument cannot have type other than 'number' or 'string'. [${typeof e}] given.`);if("string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}const r=this;let n=e;n<0&&(n=0);const{params:l,snapGrid:o,slidesGrid:d,previousIndex:c,activeIndex:p,rtlTranslate:u,wrapperEl:h,enabled:m}=r;if(r.animating&&l.preventInteractionOnTransition||!m&&!a&&!i)return!1;const f=Math.min(r.params.slidesPerGroupSkip,n);let g=f+Math.floor((n-f)/r.params.slidesPerGroup);g>=o.length&&(g=o.length-1);const v=-o[g];if(l.normalizeSlideIndex)for(let e=0;e<d.length;e+=1){const t=-Math.floor(100*v),s=Math.floor(100*d[e]),a=Math.floor(100*d[e+1]);void 0!==d[e+1]?t>=s&&t<a-(a-s)/2?n=e:t>=s&&t<a&&(n=e+1):t>=s&&(n=e)}if(r.initialized&&n!==p){if(!r.allowSlideNext&&v<r.translate&&v<r.minTranslate())return!1;if(!r.allowSlidePrev&&v>r.translate&&v>r.maxTranslate()&&(p||0)!==n)return!1}let b;if(n!==(c||0)&&s&&r.emit("beforeSlideChangeStart"),r.updateProgress(v),b=n>p?"next":n<p?"prev":"reset",u&&-v===r.translate||!u&&v===r.translate)return r.updateActiveIndex(n),l.autoHeight&&r.updateAutoHeight(),r.updateSlidesClasses(),"slide"!==l.effect&&r.setTranslate(v),"reset"!==b&&(r.transitionStart(s,b),r.transitionEnd(s,b)),!1;if(l.cssMode){const e=r.isHorizontal(),s=u?v:-v;if(0===t){const t=r.virtual&&r.params.virtual.enabled;t&&(r.wrapperEl.style.scrollSnapType="none",r._immediateVirtual=!0),h[e?"scrollLeft":"scrollTop"]=s,t&&requestAnimationFrame((()=>{r.wrapperEl.style.scrollSnapType="",r._swiperImmediateVirtual=!1}))}else{if(!r.support.smoothScroll)return w({swiper:r,targetPosition:s,side:e?"left":"top"}),!0;h.scrollTo({[e?"left":"top"]:s,behavior:"smooth"})}return!0}return r.setTransition(t),r.setTranslate(v),r.updateActiveIndex(n),r.updateSlidesClasses(),r.emit("beforeTransitionStart",t,a),r.transitionStart(s,b),0===t?r.transitionEnd(s,b):r.animating||(r.animating=!0,r.onSlideToWrapperTransitionEnd||(r.onSlideToWrapperTransitionEnd=function(e){r&&!r.destroyed&&e.target===this&&(r.$wrapperEl[0].removeEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.$wrapperEl[0].removeEventListener("webkitTransitionEnd",r.onSlideToWrapperTransitionEnd),r.onSlideToWrapperTransitionEnd=null,delete r.onSlideToWrapperTransitionEnd,r.transitionEnd(s,b))}),r.$wrapperEl[0].addEventListener("transitionend",r.onSlideToWrapperTransitionEnd),r.$wrapperEl[0].addEventListener("webkitTransitionEnd",r.onSlideToWrapperTransitionEnd)),!0},slideToLoop:function(e,t,s,a){if(void 0===e&&(e=0),void 0===t&&(t=this.params.speed),void 0===s&&(s=!0),"string"==typeof e){const t=parseInt(e,10);if(!isFinite(t))throw new Error(`The passed-in 'index' (string) couldn't be converted to 'number'. [${e}] given.`);e=t}const i=this;let r=e;return i.params.loop&&(r+=i.loopedSlides),i.slideTo(r,t,s,a)},slideNext:function(e,t,s){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const a=this,{animating:i,enabled:r,params:n}=a;if(!r)return a;let l=n.slidesPerGroup;"auto"===n.slidesPerView&&1===n.slidesPerGroup&&n.slidesPerGroupAuto&&(l=Math.max(a.slidesPerViewDynamic("current",!0),1));const o=a.activeIndex<n.slidesPerGroupSkip?1:l;if(n.loop){if(i&&n.loopPreventsSlide)return!1;a.loopFix(),a._clientLeft=a.$wrapperEl[0].clientLeft}return n.rewind&&a.isEnd?a.slideTo(0,e,t,s):a.slideTo(a.activeIndex+o,e,t,s)},slidePrev:function(e,t,s){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0);const a=this,{params:i,animating:r,snapGrid:n,slidesGrid:l,rtlTranslate:o,enabled:d}=a;if(!d)return a;if(i.loop){if(r&&i.loopPreventsSlide)return!1;a.loopFix(),a._clientLeft=a.$wrapperEl[0].clientLeft}function c(e){return e<0?-Math.floor(Math.abs(e)):Math.floor(e)}const p=c(o?a.translate:-a.translate),u=n.map((e=>c(e)));let h=n[u.indexOf(p)-1];if(void 0===h&&i.cssMode){let e;n.forEach(((t,s)=>{p>=t&&(e=s)})),void 0!==e&&(h=n[e>0?e-1:e])}let m=0;if(void 0!==h&&(m=l.indexOf(h),m<0&&(m=a.activeIndex-1),"auto"===i.slidesPerView&&1===i.slidesPerGroup&&i.slidesPerGroupAuto&&(m=m-a.slidesPerViewDynamic("previous",!0)+1,m=Math.max(m,0))),i.rewind&&a.isBeginning){const i=a.params.virtual&&a.params.virtual.enabled&&a.virtual?a.virtual.slides.length-1:a.slides.length-1;return a.slideTo(i,e,t,s)}return a.slideTo(m,e,t,s)},slideReset:function(e,t,s){return void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),this.slideTo(this.activeIndex,e,t,s)},slideToClosest:function(e,t,s,a){void 0===e&&(e=this.params.speed),void 0===t&&(t=!0),void 0===a&&(a=.5);const i=this;let r=i.activeIndex;const n=Math.min(i.params.slidesPerGroupSkip,r),l=n+Math.floor((r-n)/i.params.slidesPerGroup),o=i.rtlTranslate?i.translate:-i.translate;if(o>=i.snapGrid[l]){const e=i.snapGrid[l];o-e>(i.snapGrid[l+1]-e)*a&&(r+=i.params.slidesPerGroup)}else{const e=i.snapGrid[l-1];o-e<=(i.snapGrid[l]-e)*a&&(r-=i.params.slidesPerGroup)}return r=Math.max(r,0),r=Math.min(r,i.slidesGrid.length-1),i.slideTo(r,e,t,s)},slideToClickedSlide:function(){const e=this,{params:t,$wrapperEl:s}=e,a="auto"===t.slidesPerView?e.slidesPerViewDynamic():t.slidesPerView;let i,r=e.clickedIndex;if(t.loop){if(e.animating)return;i=parseInt(d(e.clickedSlide).attr("data-swiper-slide-index"),10),t.centeredSlides?r<e.loopedSlides-a/2||r>e.slides.length-e.loopedSlides+a/2?(e.loopFix(),r=s.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),p((()=>{e.slideTo(r)}))):e.slideTo(r):r>e.slides.length-a?(e.loopFix(),r=s.children(`.${t.slideClass}[data-swiper-slide-index="${i}"]:not(.${t.slideDuplicateClass})`).eq(0).index(),p((()=>{e.slideTo(r)}))):e.slideTo(r)}else e.slideTo(r)}};var z={loopCreate:function(){const e=this,t=a(),{params:s,$wrapperEl:i}=e,r=i.children().length>0?d(i.children()[0].parentNode):i;r.children(`.${s.slideClass}.${s.slideDuplicateClass}`).remove();let n=r.children(`.${s.slideClass}`);if(s.loopFillGroupWithBlank){const e=s.slidesPerGroup-n.length%s.slidesPerGroup;if(e!==s.slidesPerGroup){for(let a=0;a<e;a+=1){const e=d(t.createElement("div")).addClass(`${s.slideClass} ${s.slideBlankClass}`);r.append(e)}n=r.children(`.${s.slideClass}`)}}"auto"!==s.slidesPerView||s.loopedSlides||(s.loopedSlides=n.length),e.loopedSlides=Math.ceil(parseFloat(s.loopedSlides||s.slidesPerView,10)),e.loopedSlides+=s.loopAdditionalSlides,e.loopedSlides>n.length&&e.params.loopedSlidesLimit&&(e.loopedSlides=n.length);const l=[],o=[];n.each(((e,t)=>{d(e).attr("data-swiper-slide-index",t)}));for(let t=0;t<e.loopedSlides;t+=1){const e=t-Math.floor(t/n.length)*n.length;o.push(n.eq(e)[0]),l.unshift(n.eq(n.length-e-1)[0])}for(let e=0;e<o.length;e+=1)r.append(d(o[e].cloneNode(!0)).addClass(s.slideDuplicateClass));for(let e=l.length-1;e>=0;e-=1)r.prepend(d(l[e].cloneNode(!0)).addClass(s.slideDuplicateClass))},loopFix:function(){const e=this;e.emit("beforeLoopFix");const{activeIndex:t,slides:s,loopedSlides:a,allowSlidePrev:i,allowSlideNext:r,snapGrid:n,rtlTranslate:l}=e;let o;e.allowSlidePrev=!0,e.allowSlideNext=!0;const d=-n[t]-e.getTranslate();if(t<a){o=s.length-3*a+t,o+=a;e.slideTo(o,0,!1,!0)&&0!==d&&e.setTranslate((l?-e.translate:e.translate)-d)}else if(t>=s.length-a){o=-s.length+t+a,o+=a;e.slideTo(o,0,!1,!0)&&0!==d&&e.setTranslate((l?-e.translate:e.translate)-d)}e.allowSlidePrev=i,e.allowSlideNext=r,e.emit("loopFix")},loopDestroy:function(){const{$wrapperEl:e,params:t,slides:s}=this;e.children(`.${t.slideClass}.${t.slideDuplicateClass},.${t.slideClass}.${t.slideBlankClass}`).remove(),s.removeAttr("data-swiper-slide-index")}};function L(e){const t=this,s=a(),i=r(),n=t.touchEventsData,{params:l,touches:o,enabled:c}=t;if(!c)return;if(t.animating&&l.preventInteractionOnTransition)return;!t.animating&&l.cssMode&&l.loop&&t.loopFix();let p=e;p.originalEvent&&(p=p.originalEvent);let h=d(p.target);if("wrapper"===l.touchEventsTarget&&!h.closest(t.wrapperEl).length)return;if(n.isTouchEvent="touchstart"===p.type,!n.isTouchEvent&&"which"in p&&3===p.which)return;if(!n.isTouchEvent&&"button"in p&&p.button>0)return;if(n.isTouched&&n.isMoved)return;const m=!!l.noSwipingClass&&""!==l.noSwipingClass,f=e.composedPath?e.composedPath():e.path;m&&p.target&&p.target.shadowRoot&&f&&(h=d(f[0]));const g=l.noSwipingSelector?l.noSwipingSelector:`.${l.noSwipingClass}`,v=!(!p.target||!p.target.shadowRoot);if(l.noSwiping&&(v?function(e,t){return void 0===t&&(t=this),function t(s){if(!s||s===a()||s===r())return null;s.assignedSlot&&(s=s.assignedSlot);const i=s.closest(e);return i||s.getRootNode?i||t(s.getRootNode().host):null}(t)}(g,h[0]):h.closest(g)[0]))return void(t.allowClick=!0);if(l.swipeHandler&&!h.closest(l.swipeHandler)[0])return;o.currentX="touchstart"===p.type?p.targetTouches[0].pageX:p.pageX,o.currentY="touchstart"===p.type?p.targetTouches[0].pageY:p.pageY;const w=o.currentX,b=o.currentY,x=l.edgeSwipeDetection||l.iOSEdgeSwipeDetection,y=l.edgeSwipeThreshold||l.iOSEdgeSwipeThreshold;if(x&&(w<=y||w>=i.innerWidth-y)){if("prevent"!==x)return;e.preventDefault()}if(Object.assign(n,{isTouched:!0,isMoved:!1,allowTouchCallbacks:!0,isScrolling:void 0,startMoving:void 0}),o.startX=w,o.startY=b,n.touchStartTime=u(),t.allowClick=!0,t.updateSize(),t.swipeDirection=void 0,l.threshold>0&&(n.allowThresholdMove=!1),"touchstart"!==p.type){let e=!0;h.is(n.focusableElements)&&(e=!1,"SELECT"===h[0].nodeName&&(n.isTouched=!1)),s.activeElement&&d(s.activeElement).is(n.focusableElements)&&s.activeElement!==h[0]&&s.activeElement.blur();const a=e&&t.allowTouchMove&&l.touchStartPreventDefault;!l.touchStartForcePreventDefault&&!a||h[0].isContentEditable||p.preventDefault()}t.params.freeMode&&t.params.freeMode.enabled&&t.freeMode&&t.animating&&!l.cssMode&&t.freeMode.onTouchStart(),t.emit("touchStart",p)}function O(e){const t=a(),s=this,i=s.touchEventsData,{params:r,touches:n,rtlTranslate:l,enabled:o}=s;if(!o)return;let c=e;if(c.originalEvent&&(c=c.originalEvent),!i.isTouched)return void(i.startMoving&&i.isScrolling&&s.emit("touchMoveOpposite",c));if(i.isTouchEvent&&"touchmove"!==c.type)return;const p="touchmove"===c.type&&c.targetTouches&&(c.targetTouches[0]||c.changedTouches[0]),h="touchmove"===c.type?p.pageX:c.pageX,m="touchmove"===c.type?p.pageY:c.pageY;if(c.preventedByNestedSwiper)return n.startX=h,void(n.startY=m);if(!s.allowTouchMove)return d(c.target).is(i.focusableElements)||(s.allowClick=!1),void(i.isTouched&&(Object.assign(n,{startX:h,startY:m,currentX:h,currentY:m}),i.touchStartTime=u()));if(i.isTouchEvent&&r.touchReleaseOnEdges&&!r.loop)if(s.isVertical()){if(m<n.startY&&s.translate<=s.maxTranslate()||m>n.startY&&s.translate>=s.minTranslate())return i.isTouched=!1,void(i.isMoved=!1)}else if(h<n.startX&&s.translate<=s.maxTranslate()||h>n.startX&&s.translate>=s.minTranslate())return;if(i.isTouchEvent&&t.activeElement&&c.target===t.activeElement&&d(c.target).is(i.focusableElements))return i.isMoved=!0,void(s.allowClick=!1);if(i.allowTouchCallbacks&&s.emit("touchMove",c),c.targetTouches&&c.targetTouches.length>1)return;n.currentX=h,n.currentY=m;const f=n.currentX-n.startX,g=n.currentY-n.startY;if(s.params.threshold&&Math.sqrt(f**2+g**2)<s.params.threshold)return;if(void 0===i.isScrolling){let e;s.isHorizontal()&&n.currentY===n.startY||s.isVertical()&&n.currentX===n.startX?i.isScrolling=!1:f*f+g*g>=25&&(e=180*Math.atan2(Math.abs(g),Math.abs(f))/Math.PI,i.isScrolling=s.isHorizontal()?e>r.touchAngle:90-e>r.touchAngle)}if(i.isScrolling&&s.emit("touchMoveOpposite",c),void 0===i.startMoving&&(n.currentX===n.startX&&n.currentY===n.startY||(i.startMoving=!0)),i.isScrolling)return void(i.isTouched=!1);if(!i.startMoving)return;s.allowClick=!1,!r.cssMode&&c.cancelable&&c.preventDefault(),r.touchMoveStopPropagation&&!r.nested&&c.stopPropagation(),i.isMoved||(r.loop&&!r.cssMode&&s.loopFix(),i.startTranslate=s.getTranslate(),s.setTransition(0),s.animating&&s.$wrapperEl.trigger("webkitTransitionEnd transitionend"),i.allowMomentumBounce=!1,!r.grabCursor||!0!==s.allowSlideNext&&!0!==s.allowSlidePrev||s.setGrabCursor(!0),s.emit("sliderFirstMove",c)),s.emit("sliderMove",c),i.isMoved=!0;let v=s.isHorizontal()?f:g;n.diff=v,v*=r.touchRatio,l&&(v=-v),s.swipeDirection=v>0?"prev":"next",i.currentTranslate=v+i.startTranslate;let w=!0,b=r.resistanceRatio;if(r.touchReleaseOnEdges&&(b=0),v>0&&i.currentTranslate>s.minTranslate()?(w=!1,r.resistance&&(i.currentTranslate=s.minTranslate()-1+(-s.minTranslate()+i.startTranslate+v)**b)):v<0&&i.currentTranslate<s.maxTranslate()&&(w=!1,r.resistance&&(i.currentTranslate=s.maxTranslate()+1-(s.maxTranslate()-i.startTranslate-v)**b)),w&&(c.preventedByNestedSwiper=!0),!s.allowSlideNext&&"next"===s.swipeDirection&&i.currentTranslate<i.startTranslate&&(i.currentTranslate=i.startTranslate),!s.allowSlidePrev&&"prev"===s.swipeDirection&&i.currentTranslate>i.startTranslate&&(i.currentTranslate=i.startTranslate),s.allowSlidePrev||s.allowSlideNext||(i.currentTranslate=i.startTranslate),r.threshold>0){if(!(Math.abs(v)>r.threshold||i.allowThresholdMove))return void(i.currentTranslate=i.startTranslate);if(!i.allowThresholdMove)return i.allowThresholdMove=!0,n.startX=n.currentX,n.startY=n.currentY,i.currentTranslate=i.startTranslate,void(n.diff=s.isHorizontal()?n.currentX-n.startX:n.currentY-n.startY)}r.followFinger&&!r.cssMode&&((r.freeMode&&r.freeMode.enabled&&s.freeMode||r.watchSlidesProgress)&&(s.updateActiveIndex(),s.updateSlidesClasses()),s.params.freeMode&&r.freeMode.enabled&&s.freeMode&&s.freeMode.onTouchMove(),s.updateProgress(i.currentTranslate),s.setTranslate(i.currentTranslate))}function I(e){const t=this,s=t.touchEventsData,{params:a,touches:i,rtlTranslate:r,slidesGrid:n,enabled:l}=t;if(!l)return;let o=e;if(o.originalEvent&&(o=o.originalEvent),s.allowTouchCallbacks&&t.emit("touchEnd",o),s.allowTouchCallbacks=!1,!s.isTouched)return s.isMoved&&a.grabCursor&&t.setGrabCursor(!1),s.isMoved=!1,void(s.startMoving=!1);a.grabCursor&&s.isMoved&&s.isTouched&&(!0===t.allowSlideNext||!0===t.allowSlidePrev)&&t.setGrabCursor(!1);const d=u(),c=d-s.touchStartTime;if(t.allowClick){const e=o.path||o.composedPath&&o.composedPath();t.updateClickedSlide(e&&e[0]||o.target),t.emit("tap click",o),c<300&&d-s.lastClickTime<300&&t.emit("doubleTap doubleClick",o)}if(s.lastClickTime=u(),p((()=>{t.destroyed||(t.allowClick=!0)})),!s.isTouched||!s.isMoved||!t.swipeDirection||0===i.diff||s.currentTranslate===s.startTranslate)return s.isTouched=!1,s.isMoved=!1,void(s.startMoving=!1);let h;if(s.isTouched=!1,s.isMoved=!1,s.startMoving=!1,h=a.followFinger?r?t.translate:-t.translate:-s.currentTranslate,a.cssMode)return;if(t.params.freeMode&&a.freeMode.enabled)return void t.freeMode.onTouchEnd({currentPos:h});let m=0,f=t.slidesSizesGrid[0];for(let e=0;e<n.length;e+=e<a.slidesPerGroupSkip?1:a.slidesPerGroup){const t=e<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;void 0!==n[e+t]?h>=n[e]&&h<n[e+t]&&(m=e,f=n[e+t]-n[e]):h>=n[e]&&(m=e,f=n[n.length-1]-n[n.length-2])}let g=null,v=null;a.rewind&&(t.isBeginning?v=t.params.virtual&&t.params.virtual.enabled&&t.virtual?t.virtual.slides.length-1:t.slides.length-1:t.isEnd&&(g=0));const w=(h-n[m])/f,b=m<a.slidesPerGroupSkip-1?1:a.slidesPerGroup;if(c>a.longSwipesMs){if(!a.longSwipes)return void t.slideTo(t.activeIndex);"next"===t.swipeDirection&&(w>=a.longSwipesRatio?t.slideTo(a.rewind&&t.isEnd?g:m+b):t.slideTo(m)),"prev"===t.swipeDirection&&(w>1-a.longSwipesRatio?t.slideTo(m+b):null!==v&&w<0&&Math.abs(w)>a.longSwipesRatio?t.slideTo(v):t.slideTo(m))}else{if(!a.shortSwipes)return void t.slideTo(t.activeIndex);t.navigation&&(o.target===t.navigation.nextEl||o.target===t.navigation.prevEl)?o.target===t.navigation.nextEl?t.slideTo(m+b):t.slideTo(m):("next"===t.swipeDirection&&t.slideTo(null!==g?g:m+b),"prev"===t.swipeDirection&&t.slideTo(null!==v?v:m))}}function A(){const e=this,{params:t,el:s}=e;if(s&&0===s.offsetWidth)return;t.breakpoints&&e.setBreakpoint();const{allowSlideNext:a,allowSlidePrev:i,snapGrid:r}=e;e.allowSlideNext=!0,e.allowSlidePrev=!0,e.updateSize(),e.updateSlides(),e.updateSlidesClasses(),("auto"===t.slidesPerView||t.slidesPerView>1)&&e.isEnd&&!e.isBeginning&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),e.autoplay&&e.autoplay.running&&e.autoplay.paused&&e.autoplay.run(),e.allowSlidePrev=i,e.allowSlideNext=a,e.params.watchOverflow&&r!==e.snapGrid&&e.checkOverflow()}function D(e){const t=this;t.enabled&&(t.allowClick||(t.params.preventClicks&&e.preventDefault(),t.params.preventClicksPropagation&&t.animating&&(e.stopPropagation(),e.stopImmediatePropagation())))}function G(){const e=this,{wrapperEl:t,rtlTranslate:s,enabled:a}=e;if(!a)return;let i;e.previousTranslate=e.translate,e.isHorizontal()?e.translate=-t.scrollLeft:e.translate=-t.scrollTop,0===e.translate&&(e.translate=0),e.updateActiveIndex(),e.updateSlidesClasses();const r=e.maxTranslate()-e.minTranslate();i=0===r?0:(e.translate-e.minTranslate())/r,i!==e.progress&&e.updateProgress(s?-e.translate:e.translate),e.emit("setTranslate",e.translate,!1)}let N=!1;function B(){}const H=(e,t)=>{const s=a(),{params:i,touchEvents:r,el:n,wrapperEl:l,device:o,support:d}=e,c=!!i.nested,p="on"===t?"addEventListener":"removeEventListener",u=t;if(d.touch){const t=!("touchstart"!==r.start||!d.passiveListener||!i.passiveListeners)&&{passive:!0,capture:!1};n[p](r.start,e.onTouchStart,t),n[p](r.move,e.onTouchMove,d.passiveListener?{passive:!1,capture:c}:c),n[p](r.end,e.onTouchEnd,t),r.cancel&&n[p](r.cancel,e.onTouchEnd,t)}else n[p](r.start,e.onTouchStart,!1),s[p](r.move,e.onTouchMove,c),s[p](r.end,e.onTouchEnd,!1);(i.preventClicks||i.preventClicksPropagation)&&n[p]("click",e.onClick,!0),i.cssMode&&l[p]("scroll",e.onScroll),i.updateOnWindowResize?e[u](o.ios||o.android?"resize orientationchange observerUpdate":"resize observerUpdate",A,!0):e[u]("observerUpdate",A,!0)};var X={attachEvents:function(){const e=this,t=a(),{params:s,support:i}=e;e.onTouchStart=L.bind(e),e.onTouchMove=O.bind(e),e.onTouchEnd=I.bind(e),s.cssMode&&(e.onScroll=G.bind(e)),e.onClick=D.bind(e),i.touch&&!N&&(t.addEventListener("touchstart",B),N=!0),H(e,"on")},detachEvents:function(){H(this,"off")}};const Y=(e,t)=>e.grid&&t.grid&&t.grid.rows>1;var R={addClasses:function(){const e=this,{classNames:t,params:s,rtl:a,$el:i,device:r,support:n}=e,l=function(e,t){const s=[];return e.forEach((e=>{"object"==typeof e?Object.keys(e).forEach((a=>{e[a]&&s.push(t+a)})):"string"==typeof e&&s.push(t+e)})),s}(["initialized",s.direction,{"pointer-events":!n.touch},{"free-mode":e.params.freeMode&&s.freeMode.enabled},{autoheight:s.autoHeight},{rtl:a},{grid:s.grid&&s.grid.rows>1},{"grid-column":s.grid&&s.grid.rows>1&&"column"===s.grid.fill},{android:r.android},{ios:r.ios},{"css-mode":s.cssMode},{centered:s.cssMode&&s.centeredSlides},{"watch-progress":s.watchSlidesProgress}],s.containerModifierClass);t.push(...l),i.addClass([...t].join(" ")),e.emitContainerClasses()},removeClasses:function(){const{$el:e,classNames:t}=this;e.removeClass(t.join(" ")),this.emitContainerClasses()}};var W={init:!0,direction:"horizontal",touchEventsTarget:"wrapper",initialSlide:0,speed:300,cssMode:!1,updateOnWindowResize:!0,resizeObserver:!0,nested:!1,createElements:!1,enabled:!0,focusableElements:"input, select, option, textarea, button, video, label",width:null,height:null,preventInteractionOnTransition:!1,userAgent:null,url:null,edgeSwipeDetection:!1,edgeSwipeThreshold:20,autoHeight:!1,setWrapperSize:!1,virtualTranslate:!1,effect:"slide",breakpoints:void 0,breakpointsBase:"window",spaceBetween:0,slidesPerView:1,slidesPerGroup:1,slidesPerGroupSkip:0,slidesPerGroupAuto:!1,centeredSlides:!1,centeredSlidesBounds:!1,slidesOffsetBefore:0,slidesOffsetAfter:0,normalizeSlideIndex:!0,centerInsufficientSlides:!1,watchOverflow:!0,roundLengths:!1,touchRatio:1,touchAngle:45,simulateTouch:!0,shortSwipes:!0,longSwipes:!0,longSwipesRatio:.5,longSwipesMs:300,followFinger:!0,allowTouchMove:!0,threshold:0,touchMoveStopPropagation:!1,touchStartPreventDefault:!0,touchStartForcePreventDefault:!1,touchReleaseOnEdges:!1,uniqueNavElements:!0,resistance:!0,resistanceRatio:.85,watchSlidesProgress:!1,grabCursor:!1,preventClicks:!0,preventClicksPropagation:!0,slideToClickedSlide:!1,preloadImages:!0,updateOnImagesReady:!0,loop:!1,loopAdditionalSlides:0,loopedSlides:null,loopedSlidesLimit:!0,loopFillGroupWithBlank:!1,loopPreventsSlide:!0,rewind:!1,allowSlidePrev:!0,allowSlideNext:!0,swipeHandler:null,noSwiping:!0,noSwipingClass:"swiper-no-swiping",noSwipingSelector:null,passiveListeners:!0,maxBackfaceHiddenSlides:10,containerModifierClass:"swiper-",slideClass:"swiper-slide",slideBlankClass:"swiper-slide-invisible-blank",slideActiveClass:"swiper-slide-active",slideDuplicateActiveClass:"swiper-slide-duplicate-active",slideVisibleClass:"swiper-slide-visible",slideDuplicateClass:"swiper-slide-duplicate",slideNextClass:"swiper-slide-next",slideDuplicateNextClass:"swiper-slide-duplicate-next",slidePrevClass:"swiper-slide-prev",slideDuplicatePrevClass:"swiper-slide-duplicate-prev",wrapperClass:"swiper-wrapper",runCallbacksOnInit:!0,_emitClasses:!1};function q(e,t){return function(s){void 0===s&&(s={});const a=Object.keys(s)[0],i=s[a];"object"==typeof i&&null!==i?(["navigation","pagination","scrollbar"].indexOf(a)>=0&&!0===e[a]&&(e[a]={auto:!0}),a in e&&"enabled"in i?(!0===e[a]&&(e[a]={enabled:!0}),"object"!=typeof e[a]||"enabled"in e[a]||(e[a].enabled=!0),e[a]||(e[a]={enabled:!1}),g(t,s)):g(t,s)):g(t,s)}}const j={eventsEmitter:$,update:S,translate:M,transition:{setTransition:function(e,t){const s=this;s.params.cssMode||s.$wrapperEl.transition(e),s.emit("setTransition",e,t)},transitionStart:function(e,t){void 0===e&&(e=!0);const s=this,{params:a}=s;a.cssMode||(a.autoHeight&&s.updateAutoHeight(),P({swiper:s,runCallbacks:e,direction:t,step:"Start"}))},transitionEnd:function(e,t){void 0===e&&(e=!0);const s=this,{params:a}=s;s.animating=!1,a.cssMode||(s.setTransition(0),P({swiper:s,runCallbacks:e,direction:t,step:"End"}))}},slide:k,loop:z,grabCursor:{setGrabCursor:function(e){const t=this;if(t.support.touch||!t.params.simulateTouch||t.params.watchOverflow&&t.isLocked||t.params.cssMode)return;const s="container"===t.params.touchEventsTarget?t.el:t.wrapperEl;s.style.cursor="move",s.style.cursor=e?"grabbing":"grab"},unsetGrabCursor:function(){const e=this;e.support.touch||e.params.watchOverflow&&e.isLocked||e.params.cssMode||(e["container"===e.params.touchEventsTarget?"el":"wrapperEl"].style.cursor="")}},events:X,breakpoints:{setBreakpoint:function(){const e=this,{activeIndex:t,initialized:s,loopedSlides:a=0,params:i,$el:r}=e,n=i.breakpoints;if(!n||n&&0===Object.keys(n).length)return;const l=e.getBreakpoint(n,e.params.breakpointsBase,e.el);if(!l||e.currentBreakpoint===l)return;const o=(l in n?n[l]:void 0)||e.originalParams,d=Y(e,i),c=Y(e,o),p=i.enabled;d&&!c?(r.removeClass(`${i.containerModifierClass}grid ${i.containerModifierClass}grid-column`),e.emitContainerClasses()):!d&&c&&(r.addClass(`${i.containerModifierClass}grid`),(o.grid.fill&&"column"===o.grid.fill||!o.grid.fill&&"column"===i.grid.fill)&&r.addClass(`${i.containerModifierClass}grid-column`),e.emitContainerClasses()),["navigation","pagination","scrollbar"].forEach((t=>{const s=i[t]&&i[t].enabled,a=o[t]&&o[t].enabled;s&&!a&&e[t].disable(),!s&&a&&e[t].enable()}));const u=o.direction&&o.direction!==i.direction,h=i.loop&&(o.slidesPerView!==i.slidesPerView||u);u&&s&&e.changeDirection(),g(e.params,o);const m=e.params.enabled;Object.assign(e,{allowTouchMove:e.params.allowTouchMove,allowSlideNext:e.params.allowSlideNext,allowSlidePrev:e.params.allowSlidePrev}),p&&!m?e.disable():!p&&m&&e.enable(),e.currentBreakpoint=l,e.emit("_beforeBreakpoint",o),h&&s&&(e.loopDestroy(),e.loopCreate(),e.updateSlides(),e.slideTo(t-a+e.loopedSlides,0,!1)),e.emit("breakpoint",o)},getBreakpoint:function(e,t,s){if(void 0===t&&(t="window"),!e||"container"===t&&!s)return;let a=!1;const i=r(),n="window"===t?i.innerHeight:s.clientHeight,l=Object.keys(e).map((e=>{if("string"==typeof e&&0===e.indexOf("@")){const t=parseFloat(e.substr(1));return{value:n*t,point:e}}return{value:e,point:e}}));l.sort(((e,t)=>parseInt(e.value,10)-parseInt(t.value,10)));for(let e=0;e<l.length;e+=1){const{point:r,value:n}=l[e];"window"===t?i.matchMedia(`(min-width: ${n}px)`).matches&&(a=r):n<=s.clientWidth&&(a=r)}return a||"max"}},checkOverflow:{checkOverflow:function(){const e=this,{isLocked:t,params:s}=e,{slidesOffsetBefore:a}=s;if(a){const t=e.slides.length-1,s=e.slidesGrid[t]+e.slidesSizesGrid[t]+2*a;e.isLocked=e.size>s}else e.isLocked=1===e.snapGrid.length;!0===s.allowSlideNext&&(e.allowSlideNext=!e.isLocked),!0===s.allowSlidePrev&&(e.allowSlidePrev=!e.isLocked),t&&t!==e.isLocked&&(e.isEnd=!1),t!==e.isLocked&&e.emit(e.isLocked?"lock":"unlock")}},classes:R,images:{loadImage:function(e,t,s,a,i,n){const l=r();let o;function c(){n&&n()}d(e).parent("picture")[0]||e.complete&&i?c():t?(o=new l.Image,o.onload=c,o.onerror=c,a&&(o.sizes=a),s&&(o.srcset=s),t&&(o.src=t)):c()},preloadImages:function(){const e=this;function t(){null!=e&&e&&!e.destroyed&&(void 0!==e.imagesLoaded&&(e.imagesLoaded+=1),e.imagesLoaded===e.imagesToLoad.length&&(e.params.updateOnImagesReady&&e.update(),e.emit("imagesReady")))}e.imagesToLoad=e.$el.find("img");for(let s=0;s<e.imagesToLoad.length;s+=1){const a=e.imagesToLoad[s];e.loadImage(a,a.currentSrc||a.getAttribute("src"),a.srcset||a.getAttribute("srcset"),a.sizes||a.getAttribute("sizes"),!0,t)}}}},_={};class V{constructor(){let e,t;for(var s=arguments.length,a=new Array(s),i=0;i<s;i++)a[i]=arguments[i];if(1===a.length&&a[0].constructor&&"Object"===Object.prototype.toString.call(a[0]).slice(8,-1)?t=a[0]:[e,t]=a,t||(t={}),t=g({},t),e&&!t.el&&(t.el=e),t.el&&d(t.el).length>1){const e=[];return d(t.el).each((s=>{const a=g({},t,{el:s});e.push(new V(a))})),e}const r=this;r.__swiper__=!0,r.support=E(),r.device=C({userAgent:t.userAgent}),r.browser=T(),r.eventsListeners={},r.eventsAnyListeners=[],r.modules=[...r.__modules__],t.modules&&Array.isArray(t.modules)&&r.modules.push(...t.modules);const n={};r.modules.forEach((e=>{e({swiper:r,extendParams:q(t,n),on:r.on.bind(r),once:r.once.bind(r),off:r.off.bind(r),emit:r.emit.bind(r)})}));const l=g({},W,n);return r.params=g({},l,_,t),r.originalParams=g({},r.params),r.passedParams=g({},t),r.params&&r.params.on&&Object.keys(r.params.on).forEach((e=>{r.on(e,r.params.on[e])})),r.params&&r.params.onAny&&r.onAny(r.params.onAny),r.$=d,Object.assign(r,{enabled:r.params.enabled,el:e,classNames:[],slides:d(),slidesGrid:[],snapGrid:[],slidesSizesGrid:[],isHorizontal:()=>"horizontal"===r.params.direction,isVertical:()=>"vertical"===r.params.direction,activeIndex:0,realIndex:0,isBeginning:!0,isEnd:!1,translate:0,previousTranslate:0,progress:0,velocity:0,animating:!1,allowSlideNext:r.params.allowSlideNext,allowSlidePrev:r.params.allowSlidePrev,touchEvents:function(){const e=["touchstart","touchmove","touchend","touchcancel"],t=["pointerdown","pointermove","pointerup"];return r.touchEventsTouch={start:e[0],move:e[1],end:e[2],cancel:e[3]},r.touchEventsDesktop={start:t[0],move:t[1],end:t[2]},r.support.touch||!r.params.simulateTouch?r.touchEventsTouch:r.touchEventsDesktop}(),touchEventsData:{isTouched:void 0,isMoved:void 0,allowTouchCallbacks:void 0,touchStartTime:void 0,isScrolling:void 0,currentTranslate:void 0,startTranslate:void 0,allowThresholdMove:void 0,focusableElements:r.params.focusableElements,lastClickTime:u(),clickTimeout:void 0,velocities:[],allowMomentumBounce:void 0,isTouchEvent:void 0,startMoving:void 0},allowClick:!0,allowTouchMove:r.params.allowTouchMove,touches:{startX:0,startY:0,currentX:0,currentY:0,diff:0},imagesToLoad:[],imagesLoaded:0}),r.emit("_swiper"),r.params.init&&r.init(),r}enable(){const e=this;e.enabled||(e.enabled=!0,e.params.grabCursor&&e.setGrabCursor(),e.emit("enable"))}disable(){const e=this;e.enabled&&(e.enabled=!1,e.params.grabCursor&&e.unsetGrabCursor(),e.emit("disable"))}setProgress(e,t){const s=this;e=Math.min(Math.max(e,0),1);const a=s.minTranslate(),i=(s.maxTranslate()-a)*e+a;s.translateTo(i,void 0===t?0:t),s.updateActiveIndex(),s.updateSlidesClasses()}emitContainerClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=e.el.className.split(" ").filter((t=>0===t.indexOf("swiper")||0===t.indexOf(e.params.containerModifierClass)));e.emit("_containerClasses",t.join(" "))}getSlideClasses(e){const t=this;return t.destroyed?"":e.className.split(" ").filter((e=>0===e.indexOf("swiper-slide")||0===e.indexOf(t.params.slideClass))).join(" ")}emitSlidesClasses(){const e=this;if(!e.params._emitClasses||!e.el)return;const t=[];e.slides.each((s=>{const a=e.getSlideClasses(s);t.push({slideEl:s,classNames:a}),e.emit("_slideClass",s,a)})),e.emit("_slideClasses",t)}slidesPerViewDynamic(e,t){void 0===e&&(e="current"),void 0===t&&(t=!1);const{params:s,slides:a,slidesGrid:i,slidesSizesGrid:r,size:n,activeIndex:l}=this;let o=1;if(s.centeredSlides){let e,t=a[l].swiperSlideSize;for(let s=l+1;s<a.length;s+=1)a[s]&&!e&&(t+=a[s].swiperSlideSize,o+=1,t>n&&(e=!0));for(let s=l-1;s>=0;s-=1)a[s]&&!e&&(t+=a[s].swiperSlideSize,o+=1,t>n&&(e=!0))}else if("current"===e)for(let e=l+1;e<a.length;e+=1){(t?i[e]+r[e]-i[l]<n:i[e]-i[l]<n)&&(o+=1)}else for(let e=l-1;e>=0;e-=1){i[l]-i[e]<n&&(o+=1)}return o}update(){const e=this;if(!e||e.destroyed)return;const{snapGrid:t,params:s}=e;function a(){const t=e.rtlTranslate?-1*e.translate:e.translate,s=Math.min(Math.max(t,e.maxTranslate()),e.minTranslate());e.setTranslate(s),e.updateActiveIndex(),e.updateSlidesClasses()}let i;s.breakpoints&&e.setBreakpoint(),e.updateSize(),e.updateSlides(),e.updateProgress(),e.updateSlidesClasses(),e.params.freeMode&&e.params.freeMode.enabled?(a(),e.params.autoHeight&&e.updateAutoHeight()):(i=("auto"===e.params.slidesPerView||e.params.slidesPerView>1)&&e.isEnd&&!e.params.centeredSlides?e.slideTo(e.slides.length-1,0,!1,!0):e.slideTo(e.activeIndex,0,!1,!0),i||a()),s.watchOverflow&&t!==e.snapGrid&&e.checkOverflow(),e.emit("update")}changeDirection(e,t){void 0===t&&(t=!0);const s=this,a=s.params.direction;return e||(e="horizontal"===a?"vertical":"horizontal"),e===a||"horizontal"!==e&&"vertical"!==e||(s.$el.removeClass(`${s.params.containerModifierClass}${a}`).addClass(`${s.params.containerModifierClass}${e}`),s.emitContainerClasses(),s.params.direction=e,s.slides.each((t=>{"vertical"===e?t.style.width="":t.style.height=""})),s.emit("changeDirection"),t&&s.update()),s}changeLanguageDirection(e){const t=this;t.rtl&&"rtl"===e||!t.rtl&&"ltr"===e||(t.rtl="rtl"===e,t.rtlTranslate="horizontal"===t.params.direction&&t.rtl,t.rtl?(t.$el.addClass(`${t.params.containerModifierClass}rtl`),t.el.dir="rtl"):(t.$el.removeClass(`${t.params.containerModifierClass}rtl`),t.el.dir="ltr"),t.update())}mount(e){const t=this;if(t.mounted)return!0;const s=d(e||t.params.el);if(!(e=s[0]))return!1;e.swiper=t;const i=()=>`.${(t.params.wrapperClass||"").trim().split(" ").join(".")}`;let r=(()=>{if(e&&e.shadowRoot&&e.shadowRoot.querySelector){const t=d(e.shadowRoot.querySelector(i()));return t.children=e=>s.children(e),t}return s.children?s.children(i()):d(s).children(i())})();if(0===r.length&&t.params.createElements){const e=a().createElement("div");r=d(e),e.className=t.params.wrapperClass,s.append(e),s.children(`.${t.params.slideClass}`).each((e=>{r.append(e)}))}return Object.assign(t,{$el:s,el:e,$wrapperEl:r,wrapperEl:r[0],mounted:!0,rtl:"rtl"===e.dir.toLowerCase()||"rtl"===s.css("direction"),rtlTranslate:"horizontal"===t.params.direction&&("rtl"===e.dir.toLowerCase()||"rtl"===s.css("direction")),wrongRTL:"-webkit-box"===r.css("display")}),!0}init(e){const t=this;if(t.initialized)return t;return!1===t.mount(e)||(t.emit("beforeInit"),t.params.breakpoints&&t.setBreakpoint(),t.addClasses(),t.params.loop&&t.loopCreate(),t.updateSize(),t.updateSlides(),t.params.watchOverflow&&t.checkOverflow(),t.params.grabCursor&&t.enabled&&t.setGrabCursor(),t.params.preloadImages&&t.preloadImages(),t.params.loop?t.slideTo(t.params.initialSlide+t.loopedSlides,0,t.params.runCallbacksOnInit,!1,!0):t.slideTo(t.params.initialSlide,0,t.params.runCallbacksOnInit,!1,!0),t.attachEvents(),t.initialized=!0,t.emit("init"),t.emit("afterInit")),t}destroy(e,t){void 0===e&&(e=!0),void 0===t&&(t=!0);const s=this,{params:a,$el:i,$wrapperEl:r,slides:n}=s;return void 0===s.params||s.destroyed||(s.emit("beforeDestroy"),s.initialized=!1,s.detachEvents(),a.loop&&s.loopDestroy(),t&&(s.removeClasses(),i.removeAttr("style"),r.removeAttr("style"),n&&n.length&&n.removeClass([a.slideVisibleClass,a.slideActiveClass,a.slideNextClass,a.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")),s.emit("destroy"),Object.keys(s.eventsListeners).forEach((e=>{s.off(e)})),!1!==e&&(s.$el[0].swiper=null,function(e){const t=e;Object.keys(t).forEach((e=>{try{t[e]=null}catch(e){}try{delete t[e]}catch(e){}}))}(s)),s.destroyed=!0),null}static extendDefaults(e){g(_,e)}static get extendedDefaults(){return _}static get defaults(){return W}static installModule(e){V.prototype.__modules__||(V.prototype.__modules__=[]);const t=V.prototype.__modules__;"function"==typeof e&&t.indexOf(e)<0&&t.push(e)}static use(e){return Array.isArray(e)?(e.forEach((e=>V.installModule(e))),V):(V.installModule(e),V)}}function F(e,t,s,i){const r=a();return e.params.createElements&&Object.keys(i).forEach((a=>{if(!s[a]&&!0===s.auto){let n=e.$el.children(`.${i[a]}`)[0];n||(n=r.createElement("div"),n.className=i[a],e.$el.append(n)),s[a]=n,t[a]=n}})),s}function U(e){return void 0===e&&(e=""),`.${e.trim().replace(/([\.:!\/])/g,"\\$1").replace(/ /g,".")}`}function K(e){const t=this,{$wrapperEl:s,params:a}=t;if(a.loop&&t.loopDestroy(),"object"==typeof e&&"length"in e)for(let t=0;t<e.length;t+=1)e[t]&&s.append(e[t]);else s.append(e);a.loop&&t.loopCreate(),a.observer||t.update()}function Z(e){const t=this,{params:s,$wrapperEl:a,activeIndex:i}=t;s.loop&&t.loopDestroy();let r=i+1;if("object"==typeof e&&"length"in e){for(let t=0;t<e.length;t+=1)e[t]&&a.prepend(e[t]);r=i+e.length}else a.prepend(e);s.loop&&t.loopCreate(),s.observer||t.update(),t.slideTo(r,0,!1)}function Q(e,t){const s=this,{$wrapperEl:a,params:i,activeIndex:r}=s;let n=r;i.loop&&(n-=s.loopedSlides,s.loopDestroy(),s.slides=a.children(`.${i.slideClass}`));const l=s.slides.length;if(e<=0)return void s.prependSlide(t);if(e>=l)return void s.appendSlide(t);let o=n>e?n+1:n;const d=[];for(let t=l-1;t>=e;t-=1){const e=s.slides.eq(t);e.remove(),d.unshift(e)}if("object"==typeof t&&"length"in t){for(let e=0;e<t.length;e+=1)t[e]&&a.append(t[e]);o=n>e?n+t.length:n}else a.append(t);for(let e=0;e<d.length;e+=1)a.append(d[e]);i.loop&&s.loopCreate(),i.observer||s.update(),i.loop?s.slideTo(o+s.loopedSlides,0,!1):s.slideTo(o,0,!1)}function J(e){const t=this,{params:s,$wrapperEl:a,activeIndex:i}=t;let r=i;s.loop&&(r-=t.loopedSlides,t.loopDestroy(),t.slides=a.children(`.${s.slideClass}`));let n,l=r;if("object"==typeof e&&"length"in e){for(let s=0;s<e.length;s+=1)n=e[s],t.slides[n]&&t.slides.eq(n).remove(),n<l&&(l-=1);l=Math.max(l,0)}else n=e,t.slides[n]&&t.slides.eq(n).remove(),n<l&&(l-=1),l=Math.max(l,0);s.loop&&t.loopCreate(),s.observer||t.update(),s.loop?t.slideTo(l+t.loopedSlides,0,!1):t.slideTo(l,0,!1)}function ee(){const e=this,t=[];for(let s=0;s<e.slides.length;s+=1)t.push(s);e.removeSlide(t)}function te(e){const{effect:t,swiper:s,on:a,setTranslate:i,setTransition:r,overwriteParams:n,perspective:l,recreateShadows:o,getEffectParams:d}=e;let c;a("beforeInit",(()=>{if(s.params.effect!==t)return;s.classNames.push(`${s.params.containerModifierClass}${t}`),l&&l()&&s.classNames.push(`${s.params.containerModifierClass}3d`);const e=n?n():{};Object.assign(s.params,e),Object.assign(s.originalParams,e)})),a("setTranslate",(()=>{s.params.effect===t&&i()})),a("setTransition",((e,a)=>{s.params.effect===t&&r(a)})),a("transitionEnd",(()=>{if(s.params.effect===t&&o){if(!d||!d().slideShadows)return;s.slides.each((e=>{s.$(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").remove()})),o()}})),a("virtualUpdate",(()=>{s.params.effect===t&&(s.slides.length||(c=!0),requestAnimationFrame((()=>{c&&s.slides&&s.slides.length&&(i(),c=!1)})))}))}function se(e,t){return e.transformEl?t.find(e.transformEl).css({"backface-visibility":"hidden","-webkit-backface-visibility":"hidden"}):t}function ae(e){let{swiper:t,duration:s,transformEl:a,allSlides:i}=e;const{slides:r,activeIndex:n,$wrapperEl:l}=t;if(t.params.virtualTranslate&&0!==s){let e,s=!1;e=i?a?r.find(a):r:a?r.eq(n).find(a):r.eq(n),e.transitionEnd((()=>{if(s)return;if(!t||t.destroyed)return;s=!0,t.animating=!1;const e=["webkitTransitionEnd","transitionend"];for(let t=0;t<e.length;t+=1)l.trigger(e[t])}))}}function ie(e,t,s){const a="swiper-slide-shadow"+(s?`-${s}`:""),i=e.transformEl?t.find(e.transformEl):t;let r=i.children(`.${a}`);return r.length||(r=d(`<div class="swiper-slide-shadow${s?`-${s}`:""}"></div>`),i.append(r)),r}Object.keys(j).forEach((e=>{Object.keys(j[e]).forEach((t=>{V.prototype[t]=j[e][t]}))})),V.use([function(e){let{swiper:t,on:s,emit:a}=e;const i=r();let n=null,l=null;const o=()=>{t&&!t.destroyed&&t.initialized&&(a("beforeResize"),a("resize"))},d=()=>{t&&!t.destroyed&&t.initialized&&a("orientationchange")};s("init",(()=>{t.params.resizeObserver&&void 0!==i.ResizeObserver?t&&!t.destroyed&&t.initialized&&(n=new ResizeObserver((e=>{l=i.requestAnimationFrame((()=>{const{width:s,height:a}=t;let i=s,r=a;e.forEach((e=>{let{contentBoxSize:s,contentRect:a,target:n}=e;n&&n!==t.el||(i=a?a.width:(s[0]||s).inlineSize,r=a?a.height:(s[0]||s).blockSize)})),i===s&&r===a||o()}))})),n.observe(t.el)):(i.addEventListener("resize",o),i.addEventListener("orientationchange",d))})),s("destroy",(()=>{l&&i.cancelAnimationFrame(l),n&&n.unobserve&&t.el&&(n.unobserve(t.el),n=null),i.removeEventListener("resize",o),i.removeEventListener("orientationchange",d)}))},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const n=[],l=r(),o=function(e,t){void 0===t&&(t={});const s=new(l.MutationObserver||l.WebkitMutationObserver)((e=>{if(1===e.length)return void i("observerUpdate",e[0]);const t=function(){i("observerUpdate",e[0])};l.requestAnimationFrame?l.requestAnimationFrame(t):l.setTimeout(t,0)}));s.observe(e,{attributes:void 0===t.attributes||t.attributes,childList:void 0===t.childList||t.childList,characterData:void 0===t.characterData||t.characterData}),n.push(s)};s({observer:!1,observeParents:!1,observeSlideChildren:!1}),a("init",(()=>{if(t.params.observer){if(t.params.observeParents){const e=t.$el.parents();for(let t=0;t<e.length;t+=1)o(e[t])}o(t.$el[0],{childList:t.params.observeSlideChildren}),o(t.$wrapperEl[0],{attributes:!1})}})),a("destroy",(()=>{n.forEach((e=>{e.disconnect()})),n.splice(0,n.length)}))}]);const re=[function(e){let t,{swiper:s,extendParams:a,on:i,emit:r}=e;function n(e,t){const a=s.params.virtual;if(a.cache&&s.virtual.cache[t])return s.virtual.cache[t];const i=a.renderSlide?d(a.renderSlide.call(s,e,t)):d(`<div class="${s.params.slideClass}" data-swiper-slide-index="${t}">${e}</div>`);return i.attr("data-swiper-slide-index")||i.attr("data-swiper-slide-index",t),a.cache&&(s.virtual.cache[t]=i),i}function l(e){const{slidesPerView:t,slidesPerGroup:a,centeredSlides:i}=s.params,{addSlidesBefore:l,addSlidesAfter:o}=s.params.virtual,{from:d,to:c,slides:p,slidesGrid:u,offset:h}=s.virtual;s.params.cssMode||s.updateActiveIndex();const m=s.activeIndex||0;let f,g,v;f=s.rtlTranslate?"right":s.isHorizontal()?"left":"top",i?(g=Math.floor(t/2)+a+o,v=Math.floor(t/2)+a+l):(g=t+(a-1)+o,v=a+l);const w=Math.max((m||0)-v,0),b=Math.min((m||0)+g,p.length-1),x=(s.slidesGrid[w]||0)-(s.slidesGrid[0]||0);function y(){s.updateSlides(),s.updateProgress(),s.updateSlidesClasses(),s.lazy&&s.params.lazy.enabled&&s.lazy.load(),r("virtualUpdate")}if(Object.assign(s.virtual,{from:w,to:b,offset:x,slidesGrid:s.slidesGrid}),d===w&&c===b&&!e)return s.slidesGrid!==u&&x!==h&&s.slides.css(f,`${x}px`),s.updateProgress(),void r("virtualUpdate");if(s.params.virtual.renderExternal)return s.params.virtual.renderExternal.call(s,{offset:x,from:w,to:b,slides:function(){const e=[];for(let t=w;t<=b;t+=1)e.push(p[t]);return e}()}),void(s.params.virtual.renderExternalUpdate?y():r("virtualUpdate"));const E=[],C=[];if(e)s.$wrapperEl.find(`.${s.params.slideClass}`).remove();else for(let e=d;e<=c;e+=1)(e<w||e>b)&&s.$wrapperEl.find(`.${s.params.slideClass}[data-swiper-slide-index="${e}"]`).remove();for(let t=0;t<p.length;t+=1)t>=w&&t<=b&&(void 0===c||e?C.push(t):(t>c&&C.push(t),t<d&&E.push(t)));C.forEach((e=>{s.$wrapperEl.append(n(p[e],e))})),E.sort(((e,t)=>t-e)).forEach((e=>{s.$wrapperEl.prepend(n(p[e],e))})),s.$wrapperEl.children(".swiper-slide").css(f,`${x}px`),y()}a({virtual:{enabled:!1,slides:[],cache:!0,renderSlide:null,renderExternal:null,renderExternalUpdate:!0,addSlidesBefore:0,addSlidesAfter:0}}),s.virtual={cache:{},from:void 0,to:void 0,slides:[],offset:0,slidesGrid:[]},i("beforeInit",(()=>{s.params.virtual.enabled&&(s.virtual.slides=s.params.virtual.slides,s.classNames.push(`${s.params.containerModifierClass}virtual`),s.params.watchSlidesProgress=!0,s.originalParams.watchSlidesProgress=!0,s.params.initialSlide||l())})),i("setTranslate",(()=>{s.params.virtual.enabled&&(s.params.cssMode&&!s._immediateVirtual?(clearTimeout(t),t=setTimeout((()=>{l()}),100)):l())})),i("init update resize",(()=>{s.params.virtual.enabled&&s.params.cssMode&&v(s.wrapperEl,"--swiper-virtual-size",`${s.virtualSize}px`)})),Object.assign(s.virtual,{appendSlide:function(e){if("object"==typeof e&&"length"in e)for(let t=0;t<e.length;t+=1)e[t]&&s.virtual.slides.push(e[t]);else s.virtual.slides.push(e);l(!0)},prependSlide:function(e){const t=s.activeIndex;let a=t+1,i=1;if(Array.isArray(e)){for(let t=0;t<e.length;t+=1)e[t]&&s.virtual.slides.unshift(e[t]);a=t+e.length,i=e.length}else s.virtual.slides.unshift(e);if(s.params.virtual.cache){const e=s.virtual.cache,t={};Object.keys(e).forEach((s=>{const a=e[s],r=a.attr("data-swiper-slide-index");r&&a.attr("data-swiper-slide-index",parseInt(r,10)+i),t[parseInt(s,10)+i]=a})),s.virtual.cache=t}l(!0),s.slideTo(a,0)},removeSlide:function(e){if(null==e)return;let t=s.activeIndex;if(Array.isArray(e))for(let a=e.length-1;a>=0;a-=1)s.virtual.slides.splice(e[a],1),s.params.virtual.cache&&delete s.virtual.cache[e[a]],e[a]<t&&(t-=1),t=Math.max(t,0);else s.virtual.slides.splice(e,1),s.params.virtual.cache&&delete s.virtual.cache[e],e<t&&(t-=1),t=Math.max(t,0);l(!0),s.slideTo(t,0)},removeAllSlides:function(){s.virtual.slides=[],s.params.virtual.cache&&(s.virtual.cache={}),l(!0),s.slideTo(0,0)},update:l})},function(e){let{swiper:t,extendParams:s,on:i,emit:n}=e;const l=a(),o=r();function c(e){if(!t.enabled)return;const{rtlTranslate:s}=t;let a=e;a.originalEvent&&(a=a.originalEvent);const i=a.keyCode||a.charCode,r=t.params.keyboard.pageUpDown,d=r&&33===i,c=r&&34===i,p=37===i,u=39===i,h=38===i,m=40===i;if(!t.allowSlideNext&&(t.isHorizontal()&&u||t.isVertical()&&m||c))return!1;if(!t.allowSlidePrev&&(t.isHorizontal()&&p||t.isVertical()&&h||d))return!1;if(!(a.shiftKey||a.altKey||a.ctrlKey||a.metaKey||l.activeElement&&l.activeElement.nodeName&&("input"===l.activeElement.nodeName.toLowerCase()||"textarea"===l.activeElement.nodeName.toLowerCase()))){if(t.params.keyboard.onlyInViewport&&(d||c||p||u||h||m)){let e=!1;if(t.$el.parents(`.${t.params.slideClass}`).length>0&&0===t.$el.parents(`.${t.params.slideActiveClass}`).length)return;const a=t.$el,i=a[0].clientWidth,r=a[0].clientHeight,n=o.innerWidth,l=o.innerHeight,d=t.$el.offset();s&&(d.left-=t.$el[0].scrollLeft);const c=[[d.left,d.top],[d.left+i,d.top],[d.left,d.top+r],[d.left+i,d.top+r]];for(let t=0;t<c.length;t+=1){const s=c[t];if(s[0]>=0&&s[0]<=n&&s[1]>=0&&s[1]<=l){if(0===s[0]&&0===s[1])continue;e=!0}}if(!e)return}t.isHorizontal()?((d||c||p||u)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),((c||u)&&!s||(d||p)&&s)&&t.slideNext(),((d||p)&&!s||(c||u)&&s)&&t.slidePrev()):((d||c||h||m)&&(a.preventDefault?a.preventDefault():a.returnValue=!1),(c||m)&&t.slideNext(),(d||h)&&t.slidePrev()),n("keyPress",i)}}function p(){t.keyboard.enabled||(d(l).on("keydown",c),t.keyboard.enabled=!0)}function u(){t.keyboard.enabled&&(d(l).off("keydown",c),t.keyboard.enabled=!1)}t.keyboard={enabled:!1},s({keyboard:{enabled:!1,onlyInViewport:!0,pageUpDown:!0}}),i("init",(()=>{t.params.keyboard.enabled&&p()})),i("destroy",(()=>{t.keyboard.enabled&&u()})),Object.assign(t.keyboard,{enable:p,disable:u})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const n=r();let l;s({mousewheel:{enabled:!1,releaseOnEdges:!1,invert:!1,forceToAxis:!1,sensitivity:1,eventsTarget:"container",thresholdDelta:null,thresholdTime:null}}),t.mousewheel={enabled:!1};let o,c=u();const h=[];function m(){t.enabled&&(t.mouseEntered=!0)}function f(){t.enabled&&(t.mouseEntered=!1)}function g(e){return!(t.params.mousewheel.thresholdDelta&&e.delta<t.params.mousewheel.thresholdDelta)&&(!(t.params.mousewheel.thresholdTime&&u()-c<t.params.mousewheel.thresholdTime)&&(e.delta>=6&&u()-c<60||(e.direction<0?t.isEnd&&!t.params.loop||t.animating||(t.slideNext(),i("scroll",e.raw)):t.isBeginning&&!t.params.loop||t.animating||(t.slidePrev(),i("scroll",e.raw)),c=(new n.Date).getTime(),!1)))}function v(e){let s=e,a=!0;if(!t.enabled)return;const r=t.params.mousewheel;t.params.cssMode&&s.preventDefault();let n=t.$el;if("container"!==t.params.mousewheel.eventsTarget&&(n=d(t.params.mousewheel.eventsTarget)),!t.mouseEntered&&!n[0].contains(s.target)&&!r.releaseOnEdges)return!0;s.originalEvent&&(s=s.originalEvent);let c=0;const m=t.rtlTranslate?-1:1,f=function(e){let t=0,s=0,a=0,i=0;return"detail"in e&&(s=e.detail),"wheelDelta"in e&&(s=-e.wheelDelta/120),"wheelDeltaY"in e&&(s=-e.wheelDeltaY/120),"wheelDeltaX"in e&&(t=-e.wheelDeltaX/120),"axis"in e&&e.axis===e.HORIZONTAL_AXIS&&(t=s,s=0),a=10*t,i=10*s,"deltaY"in e&&(i=e.deltaY),"deltaX"in e&&(a=e.deltaX),e.shiftKey&&!a&&(a=i,i=0),(a||i)&&e.deltaMode&&(1===e.deltaMode?(a*=40,i*=40):(a*=800,i*=800)),a&&!t&&(t=a<1?-1:1),i&&!s&&(s=i<1?-1:1),{spinX:t,spinY:s,pixelX:a,pixelY:i}}(s);if(r.forceToAxis)if(t.isHorizontal()){if(!(Math.abs(f.pixelX)>Math.abs(f.pixelY)))return!0;c=-f.pixelX*m}else{if(!(Math.abs(f.pixelY)>Math.abs(f.pixelX)))return!0;c=-f.pixelY}else c=Math.abs(f.pixelX)>Math.abs(f.pixelY)?-f.pixelX*m:-f.pixelY;if(0===c)return!0;r.invert&&(c=-c);let v=t.getTranslate()+c*r.sensitivity;if(v>=t.minTranslate()&&(v=t.minTranslate()),v<=t.maxTranslate()&&(v=t.maxTranslate()),a=!!t.params.loop||!(v===t.minTranslate()||v===t.maxTranslate()),a&&t.params.nested&&s.stopPropagation(),t.params.freeMode&&t.params.freeMode.enabled){const e={time:u(),delta:Math.abs(c),direction:Math.sign(c)},a=o&&e.time<o.time+500&&e.delta<=o.delta&&e.direction===o.direction;if(!a){o=void 0,t.params.loop&&t.loopFix();let n=t.getTranslate()+c*r.sensitivity;const d=t.isBeginning,u=t.isEnd;if(n>=t.minTranslate()&&(n=t.minTranslate()),n<=t.maxTranslate()&&(n=t.maxTranslate()),t.setTransition(0),t.setTranslate(n),t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses(),(!d&&t.isBeginning||!u&&t.isEnd)&&t.updateSlidesClasses(),t.params.freeMode.sticky){clearTimeout(l),l=void 0,h.length>=15&&h.shift();const s=h.length?h[h.length-1]:void 0,a=h[0];if(h.push(e),s&&(e.delta>s.delta||e.direction!==s.direction))h.splice(0);else if(h.length>=15&&e.time-a.time<500&&a.delta-e.delta>=1&&e.delta<=6){const s=c>0?.8:.2;o=e,h.splice(0),l=p((()=>{t.slideToClosest(t.params.speed,!0,void 0,s)}),0)}l||(l=p((()=>{o=e,h.splice(0),t.slideToClosest(t.params.speed,!0,void 0,.5)}),500))}if(a||i("scroll",s),t.params.autoplay&&t.params.autoplayDisableOnInteraction&&t.autoplay.stop(),n===t.minTranslate()||n===t.maxTranslate())return!0}}else{const s={time:u(),delta:Math.abs(c),direction:Math.sign(c),raw:e};h.length>=2&&h.shift();const a=h.length?h[h.length-1]:void 0;if(h.push(s),a?(s.direction!==a.direction||s.delta>a.delta||s.time>a.time+150)&&g(s):g(s),function(e){const s=t.params.mousewheel;if(e.direction<0){if(t.isEnd&&!t.params.loop&&s.releaseOnEdges)return!0}else if(t.isBeginning&&!t.params.loop&&s.releaseOnEdges)return!0;return!1}(s))return!0}return s.preventDefault?s.preventDefault():s.returnValue=!1,!1}function w(e){let s=t.$el;"container"!==t.params.mousewheel.eventsTarget&&(s=d(t.params.mousewheel.eventsTarget)),s[e]("mouseenter",m),s[e]("mouseleave",f),s[e]("wheel",v)}function b(){return t.params.cssMode?(t.wrapperEl.removeEventListener("wheel",v),!0):!t.mousewheel.enabled&&(w("on"),t.mousewheel.enabled=!0,!0)}function x(){return t.params.cssMode?(t.wrapperEl.addEventListener(event,v),!0):!!t.mousewheel.enabled&&(w("off"),t.mousewheel.enabled=!1,!0)}a("init",(()=>{!t.params.mousewheel.enabled&&t.params.cssMode&&x(),t.params.mousewheel.enabled&&b()})),a("destroy",(()=>{t.params.cssMode&&b(),t.mousewheel.enabled&&x()})),Object.assign(t.mousewheel,{enable:b,disable:x})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;function r(e){let s;return e&&(s=d(e),t.params.uniqueNavElements&&"string"==typeof e&&s.length>1&&1===t.$el.find(e).length&&(s=t.$el.find(e))),s}function n(e,s){const a=t.params.navigation;e&&e.length>0&&(e[s?"addClass":"removeClass"](a.disabledClass),e[0]&&"BUTTON"===e[0].tagName&&(e[0].disabled=s),t.params.watchOverflow&&t.enabled&&e[t.isLocked?"addClass":"removeClass"](a.lockClass))}function l(){if(t.params.loop)return;const{$nextEl:e,$prevEl:s}=t.navigation;n(s,t.isBeginning&&!t.params.rewind),n(e,t.isEnd&&!t.params.rewind)}function o(e){e.preventDefault(),(!t.isBeginning||t.params.loop||t.params.rewind)&&(t.slidePrev(),i("navigationPrev"))}function c(e){e.preventDefault(),(!t.isEnd||t.params.loop||t.params.rewind)&&(t.slideNext(),i("navigationNext"))}function p(){const e=t.params.navigation;if(t.params.navigation=F(t,t.originalParams.navigation,t.params.navigation,{nextEl:"swiper-button-next",prevEl:"swiper-button-prev"}),!e.nextEl&&!e.prevEl)return;const s=r(e.nextEl),a=r(e.prevEl);s&&s.length>0&&s.on("click",c),a&&a.length>0&&a.on("click",o),Object.assign(t.navigation,{$nextEl:s,nextEl:s&&s[0],$prevEl:a,prevEl:a&&a[0]}),t.enabled||(s&&s.addClass(e.lockClass),a&&a.addClass(e.lockClass))}function u(){const{$nextEl:e,$prevEl:s}=t.navigation;e&&e.length&&(e.off("click",c),e.removeClass(t.params.navigation.disabledClass)),s&&s.length&&(s.off("click",o),s.removeClass(t.params.navigation.disabledClass))}s({navigation:{nextEl:null,prevEl:null,hideOnClick:!1,disabledClass:"swiper-button-disabled",hiddenClass:"swiper-button-hidden",lockClass:"swiper-button-lock",navigationDisabledClass:"swiper-navigation-disabled"}}),t.navigation={nextEl:null,$nextEl:null,prevEl:null,$prevEl:null},a("init",(()=>{!1===t.params.navigation.enabled?h():(p(),l())})),a("toEdge fromEdge lock unlock",(()=>{l()})),a("destroy",(()=>{u()})),a("enable disable",(()=>{const{$nextEl:e,$prevEl:s}=t.navigation;e&&e[t.enabled?"removeClass":"addClass"](t.params.navigation.lockClass),s&&s[t.enabled?"removeClass":"addClass"](t.params.navigation.lockClass)})),a("click",((e,s)=>{const{$nextEl:a,$prevEl:r}=t.navigation,n=s.target;if(t.params.navigation.hideOnClick&&!d(n).is(r)&&!d(n).is(a)){if(t.pagination&&t.params.pagination&&t.params.pagination.clickable&&(t.pagination.el===n||t.pagination.el.contains(n)))return;let e;a?e=a.hasClass(t.params.navigation.hiddenClass):r&&(e=r.hasClass(t.params.navigation.hiddenClass)),i(!0===e?"navigationShow":"navigationHide"),a&&a.toggleClass(t.params.navigation.hiddenClass),r&&r.toggleClass(t.params.navigation.hiddenClass)}}));const h=()=>{t.$el.addClass(t.params.navigation.navigationDisabledClass),u()};Object.assign(t.navigation,{enable:()=>{t.$el.removeClass(t.params.navigation.navigationDisabledClass),p(),l()},disable:h,update:l,init:p,destroy:u})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const r="swiper-pagination";let n;s({pagination:{el:null,bulletElement:"span",clickable:!1,hideOnClick:!1,renderBullet:null,renderProgressbar:null,renderFraction:null,renderCustom:null,progressbarOpposite:!1,type:"bullets",dynamicBullets:!1,dynamicMainBullets:1,formatFractionCurrent:e=>e,formatFractionTotal:e=>e,bulletClass:`${r}-bullet`,bulletActiveClass:`${r}-bullet-active`,modifierClass:`${r}-`,currentClass:`${r}-current`,totalClass:`${r}-total`,hiddenClass:`${r}-hidden`,progressbarFillClass:`${r}-progressbar-fill`,progressbarOppositeClass:`${r}-progressbar-opposite`,clickableClass:`${r}-clickable`,lockClass:`${r}-lock`,horizontalClass:`${r}-horizontal`,verticalClass:`${r}-vertical`,paginationDisabledClass:`${r}-disabled`}}),t.pagination={el:null,$el:null,bullets:[]};let l=0;function o(){return!t.params.pagination.el||!t.pagination.el||!t.pagination.$el||0===t.pagination.$el.length}function c(e,s){const{bulletActiveClass:a}=t.params.pagination;e[s]().addClass(`${a}-${s}`)[s]().addClass(`${a}-${s}-${s}`)}function p(){const e=t.rtl,s=t.params.pagination;if(o())return;const a=t.virtual&&t.params.virtual.enabled?t.virtual.slides.length:t.slides.length,r=t.pagination.$el;let p;const u=t.params.loop?Math.ceil((a-2*t.loopedSlides)/t.params.slidesPerGroup):t.snapGrid.length;if(t.params.loop?(p=Math.ceil((t.activeIndex-t.loopedSlides)/t.params.slidesPerGroup),p>a-1-2*t.loopedSlides&&(p-=a-2*t.loopedSlides),p>u-1&&(p-=u),p<0&&"bullets"!==t.params.paginationType&&(p=u+p)):p=void 0!==t.snapIndex?t.snapIndex:t.activeIndex||0,"bullets"===s.type&&t.pagination.bullets&&t.pagination.bullets.length>0){const a=t.pagination.bullets;let i,o,u;if(s.dynamicBullets&&(n=a.eq(0)[t.isHorizontal()?"outerWidth":"outerHeight"](!0),r.css(t.isHorizontal()?"width":"height",n*(s.dynamicMainBullets+4)+"px"),s.dynamicMainBullets>1&&void 0!==t.previousIndex&&(l+=p-(t.previousIndex-t.loopedSlides||0),l>s.dynamicMainBullets-1?l=s.dynamicMainBullets-1:l<0&&(l=0)),i=Math.max(p-l,0),o=i+(Math.min(a.length,s.dynamicMainBullets)-1),u=(o+i)/2),a.removeClass(["","-next","-next-next","-prev","-prev-prev","-main"].map((e=>`${s.bulletActiveClass}${e}`)).join(" ")),r.length>1)a.each((e=>{const t=d(e),a=t.index();a===p&&t.addClass(s.bulletActiveClass),s.dynamicBullets&&(a>=i&&a<=o&&t.addClass(`${s.bulletActiveClass}-main`),a===i&&c(t,"prev"),a===o&&c(t,"next"))}));else{const e=a.eq(p),r=e.index();if(e.addClass(s.bulletActiveClass),s.dynamicBullets){const e=a.eq(i),n=a.eq(o);for(let e=i;e<=o;e+=1)a.eq(e).addClass(`${s.bulletActiveClass}-main`);if(t.params.loop)if(r>=a.length){for(let e=s.dynamicMainBullets;e>=0;e-=1)a.eq(a.length-e).addClass(`${s.bulletActiveClass}-main`);a.eq(a.length-s.dynamicMainBullets-1).addClass(`${s.bulletActiveClass}-prev`)}else c(e,"prev"),c(n,"next");else c(e,"prev"),c(n,"next")}}if(s.dynamicBullets){const i=Math.min(a.length,s.dynamicMainBullets+4),r=(n*i-n)/2-u*n,l=e?"right":"left";a.css(t.isHorizontal()?l:"top",`${r}px`)}}if("fraction"===s.type&&(r.find(U(s.currentClass)).text(s.formatFractionCurrent(p+1)),r.find(U(s.totalClass)).text(s.formatFractionTotal(u))),"progressbar"===s.type){let e;e=s.progressbarOpposite?t.isHorizontal()?"vertical":"horizontal":t.isHorizontal()?"horizontal":"vertical";const a=(p+1)/u;let i=1,n=1;"horizontal"===e?i=a:n=a,r.find(U(s.progressbarFillClass)).transform(`translate3d(0,0,0) scaleX(${i}) scaleY(${n})`).transition(t.params.speed)}"custom"===s.type&&s.renderCustom?(r.html(s.renderCustom(t,p+1,u)),i("paginationRender",r[0])):i("paginationUpdate",r[0]),t.params.watchOverflow&&t.enabled&&r[t.isLocked?"addClass":"removeClass"](s.lockClass)}function u(){const e=t.params.pagination;if(o())return;const s=t.virtual&&t.params.virtual.enabled?t.virtual.slides.length:t.slides.length,a=t.pagination.$el;let r="";if("bullets"===e.type){let i=t.params.loop?Math.ceil((s-2*t.loopedSlides)/t.params.slidesPerGroup):t.snapGrid.length;t.params.freeMode&&t.params.freeMode.enabled&&!t.params.loop&&i>s&&(i=s);for(let s=0;s<i;s+=1)e.renderBullet?r+=e.renderBullet.call(t,s,e.bulletClass):r+=`<${e.bulletElement} class="${e.bulletClass}"></${e.bulletElement}>`;a.html(r),t.pagination.bullets=a.find(U(e.bulletClass))}"fraction"===e.type&&(r=e.renderFraction?e.renderFraction.call(t,e.currentClass,e.totalClass):`<span class="${e.currentClass}"></span> / <span class="${e.totalClass}"></span>`,a.html(r)),"progressbar"===e.type&&(r=e.renderProgressbar?e.renderProgressbar.call(t,e.progressbarFillClass):`<span class="${e.progressbarFillClass}"></span>`,a.html(r)),"custom"!==e.type&&i("paginationRender",t.pagination.$el[0])}function h(){t.params.pagination=F(t,t.originalParams.pagination,t.params.pagination,{el:"swiper-pagination"});const e=t.params.pagination;if(!e.el)return;let s=d(e.el);0!==s.length&&(t.params.uniqueNavElements&&"string"==typeof e.el&&s.length>1&&(s=t.$el.find(e.el),s.length>1&&(s=s.filter((e=>d(e).parents(".swiper")[0]===t.el)))),"bullets"===e.type&&e.clickable&&s.addClass(e.clickableClass),s.addClass(e.modifierClass+e.type),s.addClass(t.isHorizontal()?e.horizontalClass:e.verticalClass),"bullets"===e.type&&e.dynamicBullets&&(s.addClass(`${e.modifierClass}${e.type}-dynamic`),l=0,e.dynamicMainBullets<1&&(e.dynamicMainBullets=1)),"progressbar"===e.type&&e.progressbarOpposite&&s.addClass(e.progressbarOppositeClass),e.clickable&&s.on("click",U(e.bulletClass),(function(e){e.preventDefault();let s=d(this).index()*t.params.slidesPerGroup;t.params.loop&&(s+=t.loopedSlides),t.slideTo(s)})),Object.assign(t.pagination,{$el:s,el:s[0]}),t.enabled||s.addClass(e.lockClass))}function m(){const e=t.params.pagination;if(o())return;const s=t.pagination.$el;s.removeClass(e.hiddenClass),s.removeClass(e.modifierClass+e.type),s.removeClass(t.isHorizontal()?e.horizontalClass:e.verticalClass),t.pagination.bullets&&t.pagination.bullets.removeClass&&t.pagination.bullets.removeClass(e.bulletActiveClass),e.clickable&&s.off("click",U(e.bulletClass))}a("init",(()=>{!1===t.params.pagination.enabled?f():(h(),u(),p())})),a("activeIndexChange",(()=>{(t.params.loop||void 0===t.snapIndex)&&p()})),a("snapIndexChange",(()=>{t.params.loop||p()})),a("slidesLengthChange",(()=>{t.params.loop&&(u(),p())})),a("snapGridLengthChange",(()=>{t.params.loop||(u(),p())})),a("destroy",(()=>{m()})),a("enable disable",(()=>{const{$el:e}=t.pagination;e&&e[t.enabled?"removeClass":"addClass"](t.params.pagination.lockClass)})),a("lock unlock",(()=>{p()})),a("click",((e,s)=>{const a=s.target,{$el:r}=t.pagination;if(t.params.pagination.el&&t.params.pagination.hideOnClick&&r&&r.length>0&&!d(a).hasClass(t.params.pagination.bulletClass)){if(t.navigation&&(t.navigation.nextEl&&a===t.navigation.nextEl||t.navigation.prevEl&&a===t.navigation.prevEl))return;const e=r.hasClass(t.params.pagination.hiddenClass);i(!0===e?"paginationShow":"paginationHide"),r.toggleClass(t.params.pagination.hiddenClass)}}));const f=()=>{t.$el.addClass(t.params.pagination.paginationDisabledClass),t.pagination.$el&&t.pagination.$el.addClass(t.params.pagination.paginationDisabledClass),m()};Object.assign(t.pagination,{enable:()=>{t.$el.removeClass(t.params.pagination.paginationDisabledClass),t.pagination.$el&&t.pagination.$el.removeClass(t.params.pagination.paginationDisabledClass),h(),u(),p()},disable:f,render:u,update:p,init:h,destroy:m})},function(e){let{swiper:t,extendParams:s,on:i,emit:r}=e;const n=a();let l,o,c,u,h=!1,m=null,f=null;function g(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e,rtlTranslate:s,progress:a}=t,{$dragEl:i,$el:r}=e,n=t.params.scrollbar;let l=o,d=(c-o)*a;s?(d=-d,d>0?(l=o-d,d=0):-d+o>c&&(l=c+d)):d<0?(l=o+d,d=0):d+o>c&&(l=c-d),t.isHorizontal()?(i.transform(`translate3d(${d}px, 0, 0)`),i[0].style.width=`${l}px`):(i.transform(`translate3d(0px, ${d}px, 0)`),i[0].style.height=`${l}px`),n.hide&&(clearTimeout(m),r[0].style.opacity=1,m=setTimeout((()=>{r[0].style.opacity=0,r.transition(400)}),1e3))}function v(){if(!t.params.scrollbar.el||!t.scrollbar.el)return;const{scrollbar:e}=t,{$dragEl:s,$el:a}=e;s[0].style.width="",s[0].style.height="",c=t.isHorizontal()?a[0].offsetWidth:a[0].offsetHeight,u=t.size/(t.virtualSize+t.params.slidesOffsetBefore-(t.params.centeredSlides?t.snapGrid[0]:0)),o="auto"===t.params.scrollbar.dragSize?c*u:parseInt(t.params.scrollbar.dragSize,10),t.isHorizontal()?s[0].style.width=`${o}px`:s[0].style.height=`${o}px`,a[0].style.display=u>=1?"none":"",t.params.scrollbar.hide&&(a[0].style.opacity=0),t.params.watchOverflow&&t.enabled&&e.$el[t.isLocked?"addClass":"removeClass"](t.params.scrollbar.lockClass)}function w(e){return t.isHorizontal()?"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientX:e.clientX:"touchstart"===e.type||"touchmove"===e.type?e.targetTouches[0].clientY:e.clientY}function b(e){const{scrollbar:s,rtlTranslate:a}=t,{$el:i}=s;let r;r=(w(e)-i.offset()[t.isHorizontal()?"left":"top"]-(null!==l?l:o/2))/(c-o),r=Math.max(Math.min(r,1),0),a&&(r=1-r);const n=t.minTranslate()+(t.maxTranslate()-t.minTranslate())*r;t.updateProgress(n),t.setTranslate(n),t.updateActiveIndex(),t.updateSlidesClasses()}function x(e){const s=t.params.scrollbar,{scrollbar:a,$wrapperEl:i}=t,{$el:n,$dragEl:o}=a;h=!0,l=e.target===o[0]||e.target===o?w(e)-e.target.getBoundingClientRect()[t.isHorizontal()?"left":"top"]:null,e.preventDefault(),e.stopPropagation(),i.transition(100),o.transition(100),b(e),clearTimeout(f),n.transition(0),s.hide&&n.css("opacity",1),t.params.cssMode&&t.$wrapperEl.css("scroll-snap-type","none"),r("scrollbarDragStart",e)}function y(e){const{scrollbar:s,$wrapperEl:a}=t,{$el:i,$dragEl:n}=s;h&&(e.preventDefault?e.preventDefault():e.returnValue=!1,b(e),a.transition(0),i.transition(0),n.transition(0),r("scrollbarDragMove",e))}function E(e){const s=t.params.scrollbar,{scrollbar:a,$wrapperEl:i}=t,{$el:n}=a;h&&(h=!1,t.params.cssMode&&(t.$wrapperEl.css("scroll-snap-type",""),i.transition("")),s.hide&&(clearTimeout(f),f=p((()=>{n.css("opacity",0),n.transition(400)}),1e3)),r("scrollbarDragEnd",e),s.snapOnRelease&&t.slideToClosest())}function C(e){const{scrollbar:s,touchEventsTouch:a,touchEventsDesktop:i,params:r,support:l}=t,o=s.$el;if(!o)return;const d=o[0],c=!(!l.passiveListener||!r.passiveListeners)&&{passive:!1,capture:!1},p=!(!l.passiveListener||!r.passiveListeners)&&{passive:!0,capture:!1};if(!d)return;const u="on"===e?"addEventListener":"removeEventListener";l.touch?(d[u](a.start,x,c),d[u](a.move,y,c),d[u](a.end,E,p)):(d[u](i.start,x,c),n[u](i.move,y,c),n[u](i.end,E,p))}function T(){const{scrollbar:e,$el:s}=t;t.params.scrollbar=F(t,t.originalParams.scrollbar,t.params.scrollbar,{el:"swiper-scrollbar"});const a=t.params.scrollbar;if(!a.el)return;let i=d(a.el);t.params.uniqueNavElements&&"string"==typeof a.el&&i.length>1&&1===s.find(a.el).length&&(i=s.find(a.el)),i.addClass(t.isHorizontal()?a.horizontalClass:a.verticalClass);let r=i.find(`.${t.params.scrollbar.dragClass}`);0===r.length&&(r=d(`<div class="${t.params.scrollbar.dragClass}"></div>`),i.append(r)),Object.assign(e,{$el:i,el:i[0],$dragEl:r,dragEl:r[0]}),a.draggable&&t.params.scrollbar.el&&t.scrollbar.el&&C("on"),i&&i[t.enabled?"removeClass":"addClass"](t.params.scrollbar.lockClass)}function $(){const e=t.params.scrollbar,s=t.scrollbar.$el;s&&s.removeClass(t.isHorizontal()?e.horizontalClass:e.verticalClass),t.params.scrollbar.el&&t.scrollbar.el&&C("off")}s({scrollbar:{el:null,dragSize:"auto",hide:!1,draggable:!1,snapOnRelease:!0,lockClass:"swiper-scrollbar-lock",dragClass:"swiper-scrollbar-drag",scrollbarDisabledClass:"swiper-scrollbar-disabled",horizontalClass:"swiper-scrollbar-horizontal",verticalClass:"swiper-scrollbar-vertical"}}),t.scrollbar={el:null,dragEl:null,$el:null,$dragEl:null},i("init",(()=>{!1===t.params.scrollbar.enabled?S():(T(),v(),g())})),i("update resize observerUpdate lock unlock",(()=>{v()})),i("setTranslate",(()=>{g()})),i("setTransition",((e,s)=>{!function(e){t.params.scrollbar.el&&t.scrollbar.el&&t.scrollbar.$dragEl.transition(e)}(s)})),i("enable disable",(()=>{const{$el:e}=t.scrollbar;e&&e[t.enabled?"removeClass":"addClass"](t.params.scrollbar.lockClass)})),i("destroy",(()=>{$()}));const S=()=>{t.$el.addClass(t.params.scrollbar.scrollbarDisabledClass),t.scrollbar.$el&&t.scrollbar.$el.addClass(t.params.scrollbar.scrollbarDisabledClass),$()};Object.assign(t.scrollbar,{enable:()=>{t.$el.removeClass(t.params.scrollbar.scrollbarDisabledClass),t.scrollbar.$el&&t.scrollbar.$el.removeClass(t.params.scrollbar.scrollbarDisabledClass),T(),v(),g()},disable:S,updateSize:v,setTranslate:g,init:T,destroy:$})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({parallax:{enabled:!1}});const i=(e,s)=>{const{rtl:a}=t,i=d(e),r=a?-1:1,n=i.attr("data-swiper-parallax")||"0";let l=i.attr("data-swiper-parallax-x"),o=i.attr("data-swiper-parallax-y");const c=i.attr("data-swiper-parallax-scale"),p=i.attr("data-swiper-parallax-opacity");if(l||o?(l=l||"0",o=o||"0"):t.isHorizontal()?(l=n,o="0"):(o=n,l="0"),l=l.indexOf("%")>=0?parseInt(l,10)*s*r+"%":l*s*r+"px",o=o.indexOf("%")>=0?parseInt(o,10)*s+"%":o*s+"px",null!=p){const e=p-(p-1)*(1-Math.abs(s));i[0].style.opacity=e}if(null==c)i.transform(`translate3d(${l}, ${o}, 0px)`);else{const e=c-(c-1)*(1-Math.abs(s));i.transform(`translate3d(${l}, ${o}, 0px) scale(${e})`)}},r=()=>{const{$el:e,slides:s,progress:a,snapGrid:r}=t;e.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((e=>{i(e,a)})),s.each(((e,s)=>{let n=e.progress;t.params.slidesPerGroup>1&&"auto"!==t.params.slidesPerView&&(n+=Math.ceil(s/2)-a*(r.length-1)),n=Math.min(Math.max(n,-1),1),d(e).find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((e=>{i(e,n)}))}))};a("beforeInit",(()=>{t.params.parallax.enabled&&(t.params.watchSlidesProgress=!0,t.originalParams.watchSlidesProgress=!0)})),a("init",(()=>{t.params.parallax.enabled&&r()})),a("setTranslate",(()=>{t.params.parallax.enabled&&r()})),a("setTransition",((e,s)=>{t.params.parallax.enabled&&function(e){void 0===e&&(e=t.params.speed);const{$el:s}=t;s.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each((t=>{const s=d(t);let a=parseInt(s.attr("data-swiper-parallax-duration"),10)||e;0===e&&(a=0),s.transition(a)}))}(s)}))},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;const n=r();s({zoom:{enabled:!1,maxRatio:3,minRatio:1,toggle:!0,containerClass:"swiper-zoom-container",zoomedSlideClass:"swiper-slide-zoomed"}}),t.zoom={enabled:!1};let l,o,c,p=1,u=!1;const m={$slideEl:void 0,slideWidth:void 0,slideHeight:void 0,$imageEl:void 0,$imageWrapEl:void 0,maxRatio:3},f={isTouched:void 0,isMoved:void 0,currentX:void 0,currentY:void 0,minX:void 0,minY:void 0,maxX:void 0,maxY:void 0,width:void 0,height:void 0,startX:void 0,startY:void 0,touchesStart:{},touchesCurrent:{}},g={x:void 0,y:void 0,prevPositionX:void 0,prevPositionY:void 0,prevTime:void 0};let v=1;function w(e){if(e.targetTouches.length<2)return 1;const t=e.targetTouches[0].pageX,s=e.targetTouches[0].pageY,a=e.targetTouches[1].pageX,i=e.targetTouches[1].pageY;return Math.sqrt((a-t)**2+(i-s)**2)}function b(e){const s=t.support,a=t.params.zoom;if(o=!1,c=!1,!s.gestures){if("touchstart"!==e.type||"touchstart"===e.type&&e.targetTouches.length<2)return;o=!0,m.scaleStart=w(e)}m.$slideEl&&m.$slideEl.length||(m.$slideEl=d(e.target).closest(`.${t.params.slideClass}`),0===m.$slideEl.length&&(m.$slideEl=t.slides.eq(t.activeIndex)),m.$imageEl=m.$slideEl.find(`.${a.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${a.containerClass}`),m.maxRatio=m.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,0!==m.$imageWrapEl.length)?(m.$imageEl&&m.$imageEl.transition(0),u=!0):m.$imageEl=void 0}function x(e){const s=t.support,a=t.params.zoom,i=t.zoom;if(!s.gestures){if("touchmove"!==e.type||"touchmove"===e.type&&e.targetTouches.length<2)return;c=!0,m.scaleMove=w(e)}m.$imageEl&&0!==m.$imageEl.length?(s.gestures?i.scale=e.scale*p:i.scale=m.scaleMove/m.scaleStart*p,i.scale>m.maxRatio&&(i.scale=m.maxRatio-1+(i.scale-m.maxRatio+1)**.5),i.scale<a.minRatio&&(i.scale=a.minRatio+1-(a.minRatio-i.scale+1)**.5),m.$imageEl.transform(`translate3d(0,0,0) scale(${i.scale})`)):"gesturechange"===e.type&&b(e)}function y(e){const s=t.device,a=t.support,i=t.params.zoom,r=t.zoom;if(!a.gestures){if(!o||!c)return;if("touchend"!==e.type||"touchend"===e.type&&e.changedTouches.length<2&&!s.android)return;o=!1,c=!1}m.$imageEl&&0!==m.$imageEl.length&&(r.scale=Math.max(Math.min(r.scale,m.maxRatio),i.minRatio),m.$imageEl.transition(t.params.speed).transform(`translate3d(0,0,0) scale(${r.scale})`),p=r.scale,u=!1,1===r.scale&&(m.$slideEl=void 0))}function E(e){const s=t.zoom;if(!m.$imageEl||0===m.$imageEl.length)return;if(t.allowClick=!1,!f.isTouched||!m.$slideEl)return;f.isMoved||(f.width=m.$imageEl[0].offsetWidth,f.height=m.$imageEl[0].offsetHeight,f.startX=h(m.$imageWrapEl[0],"x")||0,f.startY=h(m.$imageWrapEl[0],"y")||0,m.slideWidth=m.$slideEl[0].offsetWidth,m.slideHeight=m.$slideEl[0].offsetHeight,m.$imageWrapEl.transition(0));const a=f.width*s.scale,i=f.height*s.scale;if(!(a<m.slideWidth&&i<m.slideHeight)){if(f.minX=Math.min(m.slideWidth/2-a/2,0),f.maxX=-f.minX,f.minY=Math.min(m.slideHeight/2-i/2,0),f.maxY=-f.minY,f.touchesCurrent.x="touchmove"===e.type?e.targetTouches[0].pageX:e.pageX,f.touchesCurrent.y="touchmove"===e.type?e.targetTouches[0].pageY:e.pageY,!f.isMoved&&!u){if(t.isHorizontal()&&(Math.floor(f.minX)===Math.floor(f.startX)&&f.touchesCurrent.x<f.touchesStart.x||Math.floor(f.maxX)===Math.floor(f.startX)&&f.touchesCurrent.x>f.touchesStart.x))return void(f.isTouched=!1);if(!t.isHorizontal()&&(Math.floor(f.minY)===Math.floor(f.startY)&&f.touchesCurrent.y<f.touchesStart.y||Math.floor(f.maxY)===Math.floor(f.startY)&&f.touchesCurrent.y>f.touchesStart.y))return void(f.isTouched=!1)}e.cancelable&&e.preventDefault(),e.stopPropagation(),f.isMoved=!0,f.currentX=f.touchesCurrent.x-f.touchesStart.x+f.startX,f.currentY=f.touchesCurrent.y-f.touchesStart.y+f.startY,f.currentX<f.minX&&(f.currentX=f.minX+1-(f.minX-f.currentX+1)**.8),f.currentX>f.maxX&&(f.currentX=f.maxX-1+(f.currentX-f.maxX+1)**.8),f.currentY<f.minY&&(f.currentY=f.minY+1-(f.minY-f.currentY+1)**.8),f.currentY>f.maxY&&(f.currentY=f.maxY-1+(f.currentY-f.maxY+1)**.8),g.prevPositionX||(g.prevPositionX=f.touchesCurrent.x),g.prevPositionY||(g.prevPositionY=f.touchesCurrent.y),g.prevTime||(g.prevTime=Date.now()),g.x=(f.touchesCurrent.x-g.prevPositionX)/(Date.now()-g.prevTime)/2,g.y=(f.touchesCurrent.y-g.prevPositionY)/(Date.now()-g.prevTime)/2,Math.abs(f.touchesCurrent.x-g.prevPositionX)<2&&(g.x=0),Math.abs(f.touchesCurrent.y-g.prevPositionY)<2&&(g.y=0),g.prevPositionX=f.touchesCurrent.x,g.prevPositionY=f.touchesCurrent.y,g.prevTime=Date.now(),m.$imageWrapEl.transform(`translate3d(${f.currentX}px, ${f.currentY}px,0)`)}}function C(){const e=t.zoom;m.$slideEl&&t.previousIndex!==t.activeIndex&&(m.$imageEl&&m.$imageEl.transform("translate3d(0,0,0) scale(1)"),m.$imageWrapEl&&m.$imageWrapEl.transform("translate3d(0,0,0)"),e.scale=1,p=1,m.$slideEl=void 0,m.$imageEl=void 0,m.$imageWrapEl=void 0)}function T(e){const s=t.zoom,a=t.params.zoom;if(m.$slideEl||(e&&e.target&&(m.$slideEl=d(e.target).closest(`.${t.params.slideClass}`)),m.$slideEl||(t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.$slideEl=t.$wrapperEl.children(`.${t.params.slideActiveClass}`):m.$slideEl=t.slides.eq(t.activeIndex)),m.$imageEl=m.$slideEl.find(`.${a.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${a.containerClass}`)),!m.$imageEl||0===m.$imageEl.length||!m.$imageWrapEl||0===m.$imageWrapEl.length)return;let i,r,l,o,c,u,h,g,v,w,b,x,y,E,C,T,$,S;t.params.cssMode&&(t.wrapperEl.style.overflow="hidden",t.wrapperEl.style.touchAction="none"),m.$slideEl.addClass(`${a.zoomedSlideClass}`),void 0===f.touchesStart.x&&e?(i="touchend"===e.type?e.changedTouches[0].pageX:e.pageX,r="touchend"===e.type?e.changedTouches[0].pageY:e.pageY):(i=f.touchesStart.x,r=f.touchesStart.y),s.scale=m.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,p=m.$imageWrapEl.attr("data-swiper-zoom")||a.maxRatio,e?($=m.$slideEl[0].offsetWidth,S=m.$slideEl[0].offsetHeight,l=m.$slideEl.offset().left+n.scrollX,o=m.$slideEl.offset().top+n.scrollY,c=l+$/2-i,u=o+S/2-r,v=m.$imageEl[0].offsetWidth,w=m.$imageEl[0].offsetHeight,b=v*s.scale,x=w*s.scale,y=Math.min($/2-b/2,0),E=Math.min(S/2-x/2,0),C=-y,T=-E,h=c*s.scale,g=u*s.scale,h<y&&(h=y),h>C&&(h=C),g<E&&(g=E),g>T&&(g=T)):(h=0,g=0),m.$imageWrapEl.transition(300).transform(`translate3d(${h}px, ${g}px,0)`),m.$imageEl.transition(300).transform(`translate3d(0,0,0) scale(${s.scale})`)}function $(){const e=t.zoom,s=t.params.zoom;m.$slideEl||(t.params.virtual&&t.params.virtual.enabled&&t.virtual?m.$slideEl=t.$wrapperEl.children(`.${t.params.slideActiveClass}`):m.$slideEl=t.slides.eq(t.activeIndex),m.$imageEl=m.$slideEl.find(`.${s.containerClass}`).eq(0).find("picture, img, svg, canvas, .swiper-zoom-target").eq(0),m.$imageWrapEl=m.$imageEl.parent(`.${s.containerClass}`)),m.$imageEl&&0!==m.$imageEl.length&&m.$imageWrapEl&&0!==m.$imageWrapEl.length&&(t.params.cssMode&&(t.wrapperEl.style.overflow="",t.wrapperEl.style.touchAction=""),e.scale=1,p=1,m.$imageWrapEl.transition(300).transform("translate3d(0,0,0)"),m.$imageEl.transition(300).transform("translate3d(0,0,0) scale(1)"),m.$slideEl.removeClass(`${s.zoomedSlideClass}`),m.$slideEl=void 0)}function S(e){const s=t.zoom;s.scale&&1!==s.scale?$():T(e)}function M(){const e=t.support;return{passiveListener:!("touchstart"!==t.touchEvents.start||!e.passiveListener||!t.params.passiveListeners)&&{passive:!0,capture:!1},activeListenerWithCapture:!e.passiveListener||{passive:!1,capture:!0}}}function P(){return`.${t.params.slideClass}`}function k(e){const{passiveListener:s}=M(),a=P();t.$wrapperEl[e]("gesturestart",a,b,s),t.$wrapperEl[e]("gesturechange",a,x,s),t.$wrapperEl[e]("gestureend",a,y,s)}function z(){l||(l=!0,k("on"))}function L(){l&&(l=!1,k("off"))}function O(){const e=t.zoom;if(e.enabled)return;e.enabled=!0;const s=t.support,{passiveListener:a,activeListenerWithCapture:i}=M(),r=P();s.gestures?(t.$wrapperEl.on(t.touchEvents.start,z,a),t.$wrapperEl.on(t.touchEvents.end,L,a)):"touchstart"===t.touchEvents.start&&(t.$wrapperEl.on(t.touchEvents.start,r,b,a),t.$wrapperEl.on(t.touchEvents.move,r,x,i),t.$wrapperEl.on(t.touchEvents.end,r,y,a),t.touchEvents.cancel&&t.$wrapperEl.on(t.touchEvents.cancel,r,y,a)),t.$wrapperEl.on(t.touchEvents.move,`.${t.params.zoom.containerClass}`,E,i)}function I(){const e=t.zoom;if(!e.enabled)return;const s=t.support;e.enabled=!1;const{passiveListener:a,activeListenerWithCapture:i}=M(),r=P();s.gestures?(t.$wrapperEl.off(t.touchEvents.start,z,a),t.$wrapperEl.off(t.touchEvents.end,L,a)):"touchstart"===t.touchEvents.start&&(t.$wrapperEl.off(t.touchEvents.start,r,b,a),t.$wrapperEl.off(t.touchEvents.move,r,x,i),t.$wrapperEl.off(t.touchEvents.end,r,y,a),t.touchEvents.cancel&&t.$wrapperEl.off(t.touchEvents.cancel,r,y,a)),t.$wrapperEl.off(t.touchEvents.move,`.${t.params.zoom.containerClass}`,E,i)}Object.defineProperty(t.zoom,"scale",{get:()=>v,set(e){if(v!==e){const t=m.$imageEl?m.$imageEl[0]:void 0,s=m.$slideEl?m.$slideEl[0]:void 0;i("zoomChange",e,t,s)}v=e}}),a("init",(()=>{t.params.zoom.enabled&&O()})),a("destroy",(()=>{I()})),a("touchStart",((e,s)=>{t.zoom.enabled&&function(e){const s=t.device;m.$imageEl&&0!==m.$imageEl.length&&(f.isTouched||(s.android&&e.cancelable&&e.preventDefault(),f.isTouched=!0,f.touchesStart.x="touchstart"===e.type?e.targetTouches[0].pageX:e.pageX,f.touchesStart.y="touchstart"===e.type?e.targetTouches[0].pageY:e.pageY))}(s)})),a("touchEnd",((e,s)=>{t.zoom.enabled&&function(){const e=t.zoom;if(!m.$imageEl||0===m.$imageEl.length)return;if(!f.isTouched||!f.isMoved)return f.isTouched=!1,void(f.isMoved=!1);f.isTouched=!1,f.isMoved=!1;let s=300,a=300;const i=g.x*s,r=f.currentX+i,n=g.y*a,l=f.currentY+n;0!==g.x&&(s=Math.abs((r-f.currentX)/g.x)),0!==g.y&&(a=Math.abs((l-f.currentY)/g.y));const o=Math.max(s,a);f.currentX=r,f.currentY=l;const d=f.width*e.scale,c=f.height*e.scale;f.minX=Math.min(m.slideWidth/2-d/2,0),f.maxX=-f.minX,f.minY=Math.min(m.slideHeight/2-c/2,0),f.maxY=-f.minY,f.currentX=Math.max(Math.min(f.currentX,f.maxX),f.minX),f.currentY=Math.max(Math.min(f.currentY,f.maxY),f.minY),m.$imageWrapEl.transition(o).transform(`translate3d(${f.currentX}px, ${f.currentY}px,0)`)}()})),a("doubleTap",((e,s)=>{!t.animating&&t.params.zoom.enabled&&t.zoom.enabled&&t.params.zoom.toggle&&S(s)})),a("transitionEnd",(()=>{t.zoom.enabled&&t.params.zoom.enabled&&C()})),a("slideChange",(()=>{t.zoom.enabled&&t.params.zoom.enabled&&t.params.cssMode&&C()})),Object.assign(t.zoom,{enable:O,disable:I,in:T,out:$,toggle:S})},function(e){let{swiper:t,extendParams:s,on:a,emit:i}=e;s({lazy:{checkInView:!1,enabled:!1,loadPrevNext:!1,loadPrevNextAmount:1,loadOnTransitionStart:!1,scrollingElement:"",elementClass:"swiper-lazy",loadingClass:"swiper-lazy-loading",loadedClass:"swiper-lazy-loaded",preloaderClass:"swiper-lazy-preloader"}}),t.lazy={};let n=!1,l=!1;function o(e,s){void 0===s&&(s=!0);const a=t.params.lazy;if(void 0===e)return;if(0===t.slides.length)return;const r=t.virtual&&t.params.virtual.enabled?t.$wrapperEl.children(`.${t.params.slideClass}[data-swiper-slide-index="${e}"]`):t.slides.eq(e),n=r.find(`.${a.elementClass}:not(.${a.loadedClass}):not(.${a.loadingClass})`);!r.hasClass(a.elementClass)||r.hasClass(a.loadedClass)||r.hasClass(a.loadingClass)||n.push(r[0]),0!==n.length&&n.each((e=>{const n=d(e);n.addClass(a.loadingClass);const l=n.attr("data-background"),c=n.attr("data-src"),p=n.attr("data-srcset"),u=n.attr("data-sizes"),h=n.parent("picture");t.loadImage(n[0],c||l,p,u,!1,(()=>{if(null!=t&&t&&(!t||t.params)&&!t.destroyed){if(l?(n.css("background-image",`url("${l}")`),n.removeAttr("data-background")):(p&&(n.attr("srcset",p),n.removeAttr("data-srcset")),u&&(n.attr("sizes",u),n.removeAttr("data-sizes")),h.length&&h.children("source").each((e=>{const t=d(e);t.attr("data-srcset")&&(t.attr("srcset",t.attr("data-srcset")),t.removeAttr("data-srcset"))})),c&&(n.attr("src",c),n.removeAttr("data-src"))),n.addClass(a.loadedClass).removeClass(a.loadingClass),r.find(`.${a.preloaderClass}`).remove(),t.params.loop&&s){const e=r.attr("data-swiper-slide-index");if(r.hasClass(t.params.slideDuplicateClass)){o(t.$wrapperEl.children(`[data-swiper-slide-index="${e}"]:not(.${t.params.slideDuplicateClass})`).index(),!1)}else{o(t.$wrapperEl.children(`.${t.params.slideDuplicateClass}[data-swiper-slide-index="${e}"]`).index(),!1)}}i("lazyImageReady",r[0],n[0]),t.params.autoHeight&&t.updateAutoHeight()}})),i("lazyImageLoad",r[0],n[0])}))}function c(){const{$wrapperEl:e,params:s,slides:a,activeIndex:i}=t,r=t.virtual&&s.virtual.enabled,n=s.lazy;let c=s.slidesPerView;function p(t){if(r){if(e.children(`.${s.slideClass}[data-swiper-slide-index="${t}"]`).length)return!0}else if(a[t])return!0;return!1}function u(e){return r?d(e).attr("data-swiper-slide-index"):d(e).index()}if("auto"===c&&(c=0),l||(l=!0),t.params.watchSlidesProgress)e.children(`.${s.slideVisibleClass}`).each((e=>{o(r?d(e).attr("data-swiper-slide-index"):d(e).index())}));else if(c>1)for(let e=i;e<i+c;e+=1)p(e)&&o(e);else o(i);if(n.loadPrevNext)if(c>1||n.loadPrevNextAmount&&n.loadPrevNextAmount>1){const e=n.loadPrevNextAmount,t=Math.ceil(c),s=Math.min(i+t+Math.max(e,t),a.length),r=Math.max(i-Math.max(t,e),0);for(let e=i+t;e<s;e+=1)p(e)&&o(e);for(let e=r;e<i;e+=1)p(e)&&o(e)}else{const t=e.children(`.${s.slideNextClass}`);t.length>0&&o(u(t));const a=e.children(`.${s.slidePrevClass}`);a.length>0&&o(u(a))}}function p(){const e=r();if(!t||t.destroyed)return;const s=t.params.lazy.scrollingElement?d(t.params.lazy.scrollingElement):d(e),a=s[0]===e,i=a?e.innerWidth:s[0].offsetWidth,l=a?e.innerHeight:s[0].offsetHeight,o=t.$el.offset(),{rtlTranslate:u}=t;let h=!1;u&&(o.left-=t.$el[0].scrollLeft);const m=[[o.left,o.top],[o.left+t.width,o.top],[o.left,o.top+t.height],[o.left+t.width,o.top+t.height]];for(let e=0;e<m.length;e+=1){const t=m[e];if(t[0]>=0&&t[0]<=i&&t[1]>=0&&t[1]<=l){if(0===t[0]&&0===t[1])continue;h=!0}}const f=!("touchstart"!==t.touchEvents.start||!t.support.passiveListener||!t.params.passiveListeners)&&{passive:!0,capture:!1};h?(c(),s.off("scroll",p,f)):n||(n=!0,s.on("scroll",p,f))}a("beforeInit",(()=>{t.params.lazy.enabled&&t.params.preloadImages&&(t.params.preloadImages=!1)})),a("init",(()=>{t.params.lazy.enabled&&(t.params.lazy.checkInView?p():c())})),a("scroll",(()=>{t.params.freeMode&&t.params.freeMode.enabled&&!t.params.freeMode.sticky&&c()})),a("scrollbarDragMove resize _freeModeNoMomentumRelease",(()=>{t.params.lazy.enabled&&(t.params.lazy.checkInView?p():c())})),a("transitionStart",(()=>{t.params.lazy.enabled&&(t.params.lazy.loadOnTransitionStart||!t.params.lazy.loadOnTransitionStart&&!l)&&(t.params.lazy.checkInView?p():c())})),a("transitionEnd",(()=>{t.params.lazy.enabled&&!t.params.lazy.loadOnTransitionStart&&(t.params.lazy.checkInView?p():c())})),a("slideChange",(()=>{const{lazy:e,cssMode:s,watchSlidesProgress:a,touchReleaseOnEdges:i,resistanceRatio:r}=t.params;e.enabled&&(s||a&&(i||0===r))&&c()})),a("destroy",(()=>{t.$el&&t.$el.find(`.${t.params.lazy.loadingClass}`).removeClass(t.params.lazy.loadingClass)})),Object.assign(t.lazy,{load:c,loadInSlide:o})},function(e){let{swiper:t,extendParams:s,on:a}=e;function i(e,t){const s=function(){let e,t,s;return(a,i)=>{for(t=-1,e=a.length;e-t>1;)s=e+t>>1,a[s]<=i?t=s:e=s;return e}}();let a,i;return this.x=e,this.y=t,this.lastIndex=e.length-1,this.interpolate=function(e){return e?(i=s(this.x,e),a=i-1,(e-this.x[a])*(this.y[i]-this.y[a])/(this.x[i]-this.x[a])+this.y[a]):0},this}function r(){t.controller.control&&t.controller.spline&&(t.controller.spline=void 0,delete t.controller.spline)}s({controller:{control:void 0,inverse:!1,by:"slide"}}),t.controller={control:void 0},a("beforeInit",(()=>{t.controller.control=t.params.controller.control})),a("update",(()=>{r()})),a("resize",(()=>{r()})),a("observerUpdate",(()=>{r()})),a("setTranslate",((e,s,a)=>{t.controller.control&&t.controller.setTranslate(s,a)})),a("setTransition",((e,s,a)=>{t.controller.control&&t.controller.setTransition(s,a)})),Object.assign(t.controller,{setTranslate:function(e,s){const a=t.controller.control;let r,n;const l=t.constructor;function o(e){const s=t.rtlTranslate?-t.translate:t.translate;"slide"===t.params.controller.by&&(!function(e){t.controller.spline||(t.controller.spline=t.params.loop?new i(t.slidesGrid,e.slidesGrid):new i(t.snapGrid,e.snapGrid))}(e),n=-t.controller.spline.interpolate(-s)),n&&"container"!==t.params.controller.by||(r=(e.maxTranslate()-e.minTranslate())/(t.maxTranslate()-t.minTranslate()),n=(s-t.minTranslate())*r+e.minTranslate()),t.params.controller.inverse&&(n=e.maxTranslate()-n),e.updateProgress(n),e.setTranslate(n,t),e.updateActiveIndex(),e.updateSlidesClasses()}if(Array.isArray(a))for(let e=0;e<a.length;e+=1)a[e]!==s&&a[e]instanceof l&&o(a[e]);else a instanceof l&&s!==a&&o(a)},setTransition:function(e,s){const a=t.constructor,i=t.controller.control;let r;function n(s){s.setTransition(e,t),0!==e&&(s.transitionStart(),s.params.autoHeight&&p((()=>{s.updateAutoHeight()})),s.$wrapperEl.transitionEnd((()=>{i&&(s.params.loop&&"slide"===t.params.controller.by&&s.loopFix(),s.transitionEnd())})))}if(Array.isArray(i))for(r=0;r<i.length;r+=1)i[r]!==s&&i[r]instanceof a&&n(i[r]);else i instanceof a&&s!==i&&n(i)}})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({a11y:{enabled:!0,notificationClass:"swiper-notification",prevSlideMessage:"Previous slide",nextSlideMessage:"Next slide",firstSlideMessage:"This is the first slide",lastSlideMessage:"This is the last slide",paginationBulletMessage:"Go to slide {{index}}",slideLabelMessage:"{{index}} / {{slidesLength}}",containerMessage:null,containerRoleDescriptionMessage:null,itemRoleDescriptionMessage:null,slideRole:"group",id:null}}),t.a11y={clicked:!1};let i=null;function r(e){const t=i;0!==t.length&&(t.html(""),t.html(e))}function n(e){e.attr("tabIndex","0")}function l(e){e.attr("tabIndex","-1")}function o(e,t){e.attr("role",t)}function c(e,t){e.attr("aria-roledescription",t)}function p(e,t){e.attr("aria-label",t)}function u(e){e.attr("aria-disabled",!0)}function h(e){e.attr("aria-disabled",!1)}function m(e){if(13!==e.keyCode&&32!==e.keyCode)return;const s=t.params.a11y,a=d(e.target);t.navigation&&t.navigation.$nextEl&&a.is(t.navigation.$nextEl)&&(t.isEnd&&!t.params.loop||t.slideNext(),t.isEnd?r(s.lastSlideMessage):r(s.nextSlideMessage)),t.navigation&&t.navigation.$prevEl&&a.is(t.navigation.$prevEl)&&(t.isBeginning&&!t.params.loop||t.slidePrev(),t.isBeginning?r(s.firstSlideMessage):r(s.prevSlideMessage)),t.pagination&&a.is(U(t.params.pagination.bulletClass))&&a[0].click()}function f(){return t.pagination&&t.pagination.bullets&&t.pagination.bullets.length}function g(){return f()&&t.params.pagination.clickable}const v=(e,t,s)=>{n(e),"BUTTON"!==e[0].tagName&&(o(e,"button"),e.on("keydown",m)),p(e,s),function(e,t){e.attr("aria-controls",t)}(e,t)},w=()=>{t.a11y.clicked=!0},b=()=>{requestAnimationFrame((()=>{requestAnimationFrame((()=>{t.destroyed||(t.a11y.clicked=!1)}))}))},x=e=>{if(t.a11y.clicked)return;const s=e.target.closest(`.${t.params.slideClass}`);if(!s||!t.slides.includes(s))return;const a=t.slides.indexOf(s)===t.activeIndex,i=t.params.watchSlidesProgress&&t.visibleSlides&&t.visibleSlides.includes(s);a||i||e.sourceCapabilities&&e.sourceCapabilities.firesTouchEvents||(t.isHorizontal()?t.el.scrollLeft=0:t.el.scrollTop=0,t.slideTo(t.slides.indexOf(s),0))},y=()=>{const e=t.params.a11y;e.itemRoleDescriptionMessage&&c(d(t.slides),e.itemRoleDescriptionMessage),e.slideRole&&o(d(t.slides),e.slideRole);const s=t.params.loop?t.slides.filter((e=>!e.classList.contains(t.params.slideDuplicateClass))).length:t.slides.length;e.slideLabelMessage&&t.slides.each(((a,i)=>{const r=d(a),n=t.params.loop?parseInt(r.attr("data-swiper-slide-index"),10):i;p(r,e.slideLabelMessage.replace(/\{\{index\}\}/,n+1).replace(/\{\{slidesLength\}\}/,s))}))},E=()=>{const e=t.params.a11y;t.$el.append(i);const s=t.$el;e.containerRoleDescriptionMessage&&c(s,e.containerRoleDescriptionMessage),e.containerMessage&&p(s,e.containerMessage);const a=t.$wrapperEl,r=e.id||a.attr("id")||`swiper-wrapper-${n=16,void 0===n&&(n=16),"x".repeat(n).replace(/x/g,(()=>Math.round(16*Math.random()).toString(16)))}`;var n;const l=t.params.autoplay&&t.params.autoplay.enabled?"off":"polite";var o;let d,u;o=r,a.attr("id",o),function(e,t){e.attr("aria-live",t)}(a,l),y(),t.navigation&&t.navigation.$nextEl&&(d=t.navigation.$nextEl),t.navigation&&t.navigation.$prevEl&&(u=t.navigation.$prevEl),d&&d.length&&v(d,r,e.nextSlideMessage),u&&u.length&&v(u,r,e.prevSlideMessage),g()&&t.pagination.$el.on("keydown",U(t.params.pagination.bulletClass),m),t.$el.on("focus",x,!0),t.$el.on("pointerdown",w,!0),t.$el.on("pointerup",b,!0)};a("beforeInit",(()=>{i=d(`<span class="${t.params.a11y.notificationClass}" aria-live="assertive" aria-atomic="true"></span>`)})),a("afterInit",(()=>{t.params.a11y.enabled&&E()})),a("slidesLengthChange snapGridLengthChange slidesGridLengthChange",(()=>{t.params.a11y.enabled&&y()})),a("fromEdge toEdge afterInit lock unlock",(()=>{t.params.a11y.enabled&&function(){if(t.params.loop||t.params.rewind||!t.navigation)return;const{$nextEl:e,$prevEl:s}=t.navigation;s&&s.length>0&&(t.isBeginning?(u(s),l(s)):(h(s),n(s))),e&&e.length>0&&(t.isEnd?(u(e),l(e)):(h(e),n(e)))}()})),a("paginationUpdate",(()=>{t.params.a11y.enabled&&function(){const e=t.params.a11y;f()&&t.pagination.bullets.each((s=>{const a=d(s);t.params.pagination.clickable&&(n(a),t.params.pagination.renderBullet||(o(a,"button"),p(a,e.paginationBulletMessage.replace(/\{\{index\}\}/,a.index()+1)))),a.is(`.${t.params.pagination.bulletActiveClass}`)?a.attr("aria-current","true"):a.removeAttr("aria-current")}))}()})),a("destroy",(()=>{t.params.a11y.enabled&&function(){let e,s;i&&i.length>0&&i.remove(),t.navigation&&t.navigation.$nextEl&&(e=t.navigation.$nextEl),t.navigation&&t.navigation.$prevEl&&(s=t.navigation.$prevEl),e&&e.off("keydown",m),s&&s.off("keydown",m),g()&&t.pagination.$el.off("keydown",U(t.params.pagination.bulletClass),m),t.$el.off("focus",x,!0),t.$el.off("pointerdown",w,!0),t.$el.off("pointerup",b,!0)}()}))},function(e){let{swiper:t,extendParams:s,on:a}=e;s({history:{enabled:!1,root:"",replaceState:!1,key:"slides",keepQuery:!1}});let i=!1,n={};const l=e=>e.toString().replace(/\s+/g,"-").replace(/[^\w-]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,""),o=e=>{const t=r();let s;s=e?new URL(e):t.location;const a=s.pathname.slice(1).split("/").filter((e=>""!==e)),i=a.length;return{key:a[i-2],value:a[i-1]}},d=(e,s)=>{const a=r();if(!i||!t.params.history.enabled)return;let n;n=t.params.url?new URL(t.params.url):a.location;const o=t.slides.eq(s);let d=l(o.attr("data-history"));if(t.params.history.root.length>0){let s=t.params.history.root;"/"===s[s.length-1]&&(s=s.slice(0,s.length-1)),d=`${s}/${e}/${d}`}else n.pathname.includes(e)||(d=`${e}/${d}`);t.params.history.keepQuery&&(d+=n.search);const c=a.history.state;c&&c.value===d||(t.params.history.replaceState?a.history.replaceState({value:d},null,d):a.history.pushState({value:d},null,d))},c=(e,s,a)=>{if(s)for(let i=0,r=t.slides.length;i<r;i+=1){const r=t.slides.eq(i);if(l(r.attr("data-history"))===s&&!r.hasClass(t.params.slideDuplicateClass)){const s=r.index();t.slideTo(s,e,a)}}else t.slideTo(0,e,a)},p=()=>{n=o(t.params.url),c(t.params.speed,n.value,!1)};a("init",(()=>{t.params.history.enabled&&(()=>{const e=r();if(t.params.history){if(!e.history||!e.history.pushState)return t.params.history.enabled=!1,void(t.params.hashNavigation.enabled=!0);i=!0,n=o(t.params.url),(n.key||n.value)&&(c(0,n.value,t.params.runCallbacksOnInit),t.params.history.replaceState||e.addEventListener("popstate",p))}})()})),a("destroy",(()=>{t.params.history.enabled&&(()=>{const e=r();t.params.history.replaceState||e.removeEventListener("popstate",p)})()})),a("transitionEnd _freeModeNoMomentumRelease",(()=>{i&&d(t.params.history.key,t.activeIndex)})),a("slideChange",(()=>{i&&t.params.cssMode&&d(t.params.history.key,t.activeIndex)}))},function(e){let{swiper:t,extendParams:s,emit:i,on:n}=e,l=!1;const o=a(),c=r();s({hashNavigation:{enabled:!1,replaceState:!1,watchState:!1}});const p=()=>{i("hashChange");const e=o.location.hash.replace("#","");if(e!==t.slides.eq(t.activeIndex).attr("data-hash")){const s=t.$wrapperEl.children(`.${t.params.slideClass}[data-hash="${e}"]`).index();if(void 0===s)return;t.slideTo(s)}},u=()=>{if(l&&t.params.hashNavigation.enabled)if(t.params.hashNavigation.replaceState&&c.history&&c.history.replaceState)c.history.replaceState(null,null,`#${t.slides.eq(t.activeIndex).attr("data-hash")}`||""),i("hashSet");else{const e=t.slides.eq(t.activeIndex),s=e.attr("data-hash")||e.attr("data-history");o.location.hash=s||"",i("hashSet")}};n("init",(()=>{t.params.hashNavigation.enabled&&(()=>{if(!t.params.hashNavigation.enabled||t.params.history&&t.params.history.enabled)return;l=!0;const e=o.location.hash.replace("#","");if(e){const s=0;for(let a=0,i=t.slides.length;a<i;a+=1){const i=t.slides.eq(a);if((i.attr("data-hash")||i.attr("data-history"))===e&&!i.hasClass(t.params.slideDuplicateClass)){const e=i.index();t.slideTo(e,s,t.params.runCallbacksOnInit,!0)}}}t.params.hashNavigation.watchState&&d(c).on("hashchange",p)})()})),n("destroy",(()=>{t.params.hashNavigation.enabled&&t.params.hashNavigation.watchState&&d(c).off("hashchange",p)})),n("transitionEnd _freeModeNoMomentumRelease",(()=>{l&&u()})),n("slideChange",(()=>{l&&t.params.cssMode&&u()}))},function(e){let t,{swiper:s,extendParams:i,on:r,emit:n}=e;function l(){if(!s.size)return s.autoplay.running=!1,void(s.autoplay.paused=!1);const e=s.slides.eq(s.activeIndex);let a=s.params.autoplay.delay;e.attr("data-swiper-autoplay")&&(a=e.attr("data-swiper-autoplay")||s.params.autoplay.delay),clearTimeout(t),t=p((()=>{let e;s.params.autoplay.reverseDirection?s.params.loop?(s.loopFix(),e=s.slidePrev(s.params.speed,!0,!0),n("autoplay")):s.isBeginning?s.params.autoplay.stopOnLastSlide?d():(e=s.slideTo(s.slides.length-1,s.params.speed,!0,!0),n("autoplay")):(e=s.slidePrev(s.params.speed,!0,!0),n("autoplay")):s.params.loop?(s.loopFix(),e=s.slideNext(s.params.speed,!0,!0),n("autoplay")):s.isEnd?s.params.autoplay.stopOnLastSlide?d():(e=s.slideTo(0,s.params.speed,!0,!0),n("autoplay")):(e=s.slideNext(s.params.speed,!0,!0),n("autoplay")),(s.params.cssMode&&s.autoplay.running||!1===e)&&l()}),a)}function o(){return void 0===t&&(!s.autoplay.running&&(s.autoplay.running=!0,n("autoplayStart"),l(),!0))}function d(){return!!s.autoplay.running&&(void 0!==t&&(t&&(clearTimeout(t),t=void 0),s.autoplay.running=!1,n("autoplayStop"),!0))}function c(e){s.autoplay.running&&(s.autoplay.paused||(t&&clearTimeout(t),s.autoplay.paused=!0,0!==e&&s.params.autoplay.waitForTransition?["transitionend","webkitTransitionEnd"].forEach((e=>{s.$wrapperEl[0].addEventListener(e,h)})):(s.autoplay.paused=!1,l())))}function u(){const e=a();"hidden"===e.visibilityState&&s.autoplay.running&&c(),"visible"===e.visibilityState&&s.autoplay.paused&&(l(),s.autoplay.paused=!1)}function h(e){s&&!s.destroyed&&s.$wrapperEl&&e.target===s.$wrapperEl[0]&&(["transitionend","webkitTransitionEnd"].forEach((e=>{s.$wrapperEl[0].removeEventListener(e,h)})),s.autoplay.paused=!1,s.autoplay.running?l():d())}function m(){s.params.autoplay.disableOnInteraction?d():(n("autoplayPause"),c()),["transitionend","webkitTransitionEnd"].forEach((e=>{s.$wrapperEl[0].removeEventListener(e,h)}))}function f(){s.params.autoplay.disableOnInteraction||(s.autoplay.paused=!1,n("autoplayResume"),l())}s.autoplay={running:!1,paused:!1},i({autoplay:{enabled:!1,delay:3e3,waitForTransition:!0,disableOnInteraction:!0,stopOnLastSlide:!1,reverseDirection:!1,pauseOnMouseEnter:!1}}),r("init",(()=>{if(s.params.autoplay.enabled){o();a().addEventListener("visibilitychange",u),s.params.autoplay.pauseOnMouseEnter&&(s.$el.on("mouseenter",m),s.$el.on("mouseleave",f))}})),r("beforeTransitionStart",((e,t,a)=>{s.autoplay.running&&(a||!s.params.autoplay.disableOnInteraction?s.autoplay.pause(t):d())})),r("sliderFirstMove",(()=>{s.autoplay.running&&(s.params.autoplay.disableOnInteraction?d():c())})),r("touchEnd",(()=>{s.params.cssMode&&s.autoplay.paused&&!s.params.autoplay.disableOnInteraction&&l()})),r("destroy",(()=>{s.$el.off("mouseenter",m),s.$el.off("mouseleave",f),s.autoplay.running&&d();a().removeEventListener("visibilitychange",u)})),Object.assign(s.autoplay,{pause:c,run:l,start:o,stop:d})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({thumbs:{swiper:null,multipleActiveThumbs:!0,autoScrollOffset:0,slideThumbActiveClass:"swiper-slide-thumb-active",thumbsContainerClass:"swiper-thumbs"}});let i=!1,r=!1;function n(){const e=t.thumbs.swiper;if(!e||e.destroyed)return;const s=e.clickedIndex,a=e.clickedSlide;if(a&&d(a).hasClass(t.params.thumbs.slideThumbActiveClass))return;if(null==s)return;let i;if(i=e.params.loop?parseInt(d(e.clickedSlide).attr("data-swiper-slide-index"),10):s,t.params.loop){let e=t.activeIndex;t.slides.eq(e).hasClass(t.params.slideDuplicateClass)&&(t.loopFix(),t._clientLeft=t.$wrapperEl[0].clientLeft,e=t.activeIndex);const s=t.slides.eq(e).prevAll(`[data-swiper-slide-index="${i}"]`).eq(0).index(),a=t.slides.eq(e).nextAll(`[data-swiper-slide-index="${i}"]`).eq(0).index();i=void 0===s?a:void 0===a?s:a-e<e-s?a:s}t.slideTo(i)}function l(){const{thumbs:e}=t.params;if(i)return!1;i=!0;const s=t.constructor;if(e.swiper instanceof s)t.thumbs.swiper=e.swiper,Object.assign(t.thumbs.swiper.originalParams,{watchSlidesProgress:!0,slideToClickedSlide:!1}),Object.assign(t.thumbs.swiper.params,{watchSlidesProgress:!0,slideToClickedSlide:!1});else if(m(e.swiper)){const a=Object.assign({},e.swiper);Object.assign(a,{watchSlidesProgress:!0,slideToClickedSlide:!1}),t.thumbs.swiper=new s(a),r=!0}return t.thumbs.swiper.$el.addClass(t.params.thumbs.thumbsContainerClass),t.thumbs.swiper.on("tap",n),!0}function o(e){const s=t.thumbs.swiper;if(!s||s.destroyed)return;const a="auto"===s.params.slidesPerView?s.slidesPerViewDynamic():s.params.slidesPerView;let i=1;const r=t.params.thumbs.slideThumbActiveClass;if(t.params.slidesPerView>1&&!t.params.centeredSlides&&(i=t.params.slidesPerView),t.params.thumbs.multipleActiveThumbs||(i=1),i=Math.floor(i),s.slides.removeClass(r),s.params.loop||s.params.virtual&&s.params.virtual.enabled)for(let e=0;e<i;e+=1)s.$wrapperEl.children(`[data-swiper-slide-index="${t.realIndex+e}"]`).addClass(r);else for(let e=0;e<i;e+=1)s.slides.eq(t.realIndex+e).addClass(r);const n=t.params.thumbs.autoScrollOffset,l=n&&!s.params.loop;if(t.realIndex!==s.realIndex||l){let i,r,o=s.activeIndex;if(s.params.loop){s.slides.eq(o).hasClass(s.params.slideDuplicateClass)&&(s.loopFix(),s._clientLeft=s.$wrapperEl[0].clientLeft,o=s.activeIndex);const e=s.slides.eq(o).prevAll(`[data-swiper-slide-index="${t.realIndex}"]`).eq(0).index(),a=s.slides.eq(o).nextAll(`[data-swiper-slide-index="${t.realIndex}"]`).eq(0).index();i=void 0===e?a:void 0===a?e:a-o==o-e?s.params.slidesPerGroup>1?a:o:a-o<o-e?a:e,r=t.activeIndex>t.previousIndex?"next":"prev"}else i=t.realIndex,r=i>t.previousIndex?"next":"prev";l&&(i+="next"===r?n:-1*n),s.visibleSlidesIndexes&&s.visibleSlidesIndexes.indexOf(i)<0&&(s.params.centeredSlides?i=i>o?i-Math.floor(a/2)+1:i+Math.floor(a/2)-1:i>o&&s.params.slidesPerGroup,s.slideTo(i,e?0:void 0))}}t.thumbs={swiper:null},a("beforeInit",(()=>{const{thumbs:e}=t.params;e&&e.swiper&&(l(),o(!0))})),a("slideChange update resize observerUpdate",(()=>{o()})),a("setTransition",((e,s)=>{const a=t.thumbs.swiper;a&&!a.destroyed&&a.setTransition(s)})),a("beforeDestroy",(()=>{const e=t.thumbs.swiper;e&&!e.destroyed&&r&&e.destroy()})),Object.assign(t.thumbs,{init:l,update:o})},function(e){let{swiper:t,extendParams:s,emit:a,once:i}=e;s({freeMode:{enabled:!1,momentum:!0,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,momentumVelocityRatio:1,sticky:!1,minimumVelocity:.02}}),Object.assign(t,{freeMode:{onTouchStart:function(){const e=t.getTranslate();t.setTranslate(e),t.setTransition(0),t.touchEventsData.velocities.length=0,t.freeMode.onTouchEnd({currentPos:t.rtl?t.translate:-t.translate})},onTouchMove:function(){const{touchEventsData:e,touches:s}=t;0===e.velocities.length&&e.velocities.push({position:s[t.isHorizontal()?"startX":"startY"],time:e.touchStartTime}),e.velocities.push({position:s[t.isHorizontal()?"currentX":"currentY"],time:u()})},onTouchEnd:function(e){let{currentPos:s}=e;const{params:r,$wrapperEl:n,rtlTranslate:l,snapGrid:o,touchEventsData:d}=t,c=u()-d.touchStartTime;if(s<-t.minTranslate())t.slideTo(t.activeIndex);else if(s>-t.maxTranslate())t.slides.length<o.length?t.slideTo(o.length-1):t.slideTo(t.slides.length-1);else{if(r.freeMode.momentum){if(d.velocities.length>1){const e=d.velocities.pop(),s=d.velocities.pop(),a=e.position-s.position,i=e.time-s.time;t.velocity=a/i,t.velocity/=2,Math.abs(t.velocity)<r.freeMode.minimumVelocity&&(t.velocity=0),(i>150||u()-e.time>300)&&(t.velocity=0)}else t.velocity=0;t.velocity*=r.freeMode.momentumVelocityRatio,d.velocities.length=0;let e=1e3*r.freeMode.momentumRatio;const s=t.velocity*e;let c=t.translate+s;l&&(c=-c);let p,h=!1;const m=20*Math.abs(t.velocity)*r.freeMode.momentumBounceRatio;let f;if(c<t.maxTranslate())r.freeMode.momentumBounce?(c+t.maxTranslate()<-m&&(c=t.maxTranslate()-m),p=t.maxTranslate(),h=!0,d.allowMomentumBounce=!0):c=t.maxTranslate(),r.loop&&r.centeredSlides&&(f=!0);else if(c>t.minTranslate())r.freeMode.momentumBounce?(c-t.minTranslate()>m&&(c=t.minTranslate()+m),p=t.minTranslate(),h=!0,d.allowMomentumBounce=!0):c=t.minTranslate(),r.loop&&r.centeredSlides&&(f=!0);else if(r.freeMode.sticky){let e;for(let t=0;t<o.length;t+=1)if(o[t]>-c){e=t;break}c=Math.abs(o[e]-c)<Math.abs(o[e-1]-c)||"next"===t.swipeDirection?o[e]:o[e-1],c=-c}if(f&&i("transitionEnd",(()=>{t.loopFix()})),0!==t.velocity){if(e=l?Math.abs((-c-t.translate)/t.velocity):Math.abs((c-t.translate)/t.velocity),r.freeMode.sticky){const s=Math.abs((l?-c:c)-t.translate),a=t.slidesSizesGrid[t.activeIndex];e=s<a?r.speed:s<2*a?1.5*r.speed:2.5*r.speed}}else if(r.freeMode.sticky)return void t.slideToClosest();r.freeMode.momentumBounce&&h?(t.updateProgress(p),t.setTransition(e),t.setTranslate(c),t.transitionStart(!0,t.swipeDirection),t.animating=!0,n.transitionEnd((()=>{t&&!t.destroyed&&d.allowMomentumBounce&&(a("momentumBounce"),t.setTransition(r.speed),setTimeout((()=>{t.setTranslate(p),n.transitionEnd((()=>{t&&!t.destroyed&&t.transitionEnd()}))}),0))}))):t.velocity?(a("_freeModeNoMomentumRelease"),t.updateProgress(c),t.setTransition(e),t.setTranslate(c),t.transitionStart(!0,t.swipeDirection),t.animating||(t.animating=!0,n.transitionEnd((()=>{t&&!t.destroyed&&t.transitionEnd()})))):t.updateProgress(c),t.updateActiveIndex(),t.updateSlidesClasses()}else{if(r.freeMode.sticky)return void t.slideToClosest();r.freeMode&&a("_freeModeNoMomentumRelease")}(!r.freeMode.momentum||c>=r.longSwipesMs)&&(t.updateProgress(),t.updateActiveIndex(),t.updateSlidesClasses())}}}})},function(e){let t,s,a,{swiper:i,extendParams:r}=e;r({grid:{rows:1,fill:"column"}}),i.grid={initSlides:e=>{const{slidesPerView:r}=i.params,{rows:n,fill:l}=i.params.grid;s=t/n,a=Math.floor(e/n),t=Math.floor(e/n)===e/n?e:Math.ceil(e/n)*n,"auto"!==r&&"row"===l&&(t=Math.max(t,r*n))},updateSlide:(e,r,n,l)=>{const{slidesPerGroup:o,spaceBetween:d}=i.params,{rows:c,fill:p}=i.params.grid;let u,h,m;if("row"===p&&o>1){const s=Math.floor(e/(o*c)),a=e-c*o*s,i=0===s?o:Math.min(Math.ceil((n-s*c*o)/c),o);m=Math.floor(a/i),h=a-m*i+s*o,u=h+m*t/c,r.css({"-webkit-order":u,order:u})}else"column"===p?(h=Math.floor(e/c),m=e-h*c,(h>a||h===a&&m===c-1)&&(m+=1,m>=c&&(m=0,h+=1))):(m=Math.floor(e/s),h=e-m*s);r.css(l("margin-top"),0!==m?d&&`${d}px`:"")},updateWrapperSize:(e,s,a)=>{const{spaceBetween:r,centeredSlides:n,roundLengths:l}=i.params,{rows:o}=i.params.grid;if(i.virtualSize=(e+r)*t,i.virtualSize=Math.ceil(i.virtualSize/o)-r,i.$wrapperEl.css({[a("width")]:`${i.virtualSize+r}px`}),n){s.splice(0,s.length);const e=[];for(let t=0;t<s.length;t+=1){let a=s[t];l&&(a=Math.floor(a)),s[t]<i.virtualSize+s[0]&&e.push(a)}s.push(...e)}}}},function(e){let{swiper:t}=e;Object.assign(t,{appendSlide:K.bind(t),prependSlide:Z.bind(t),addSlide:Q.bind(t),removeSlide:J.bind(t),removeAllSlides:ee.bind(t)})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({fadeEffect:{crossFade:!1,transformEl:null}}),te({effect:"fade",swiper:t,on:a,setTranslate:()=>{const{slides:e}=t,s=t.params.fadeEffect;for(let a=0;a<e.length;a+=1){const e=t.slides.eq(a);let i=-e[0].swiperSlideOffset;t.params.virtualTranslate||(i-=t.translate);let r=0;t.isHorizontal()||(r=i,i=0);const n=t.params.fadeEffect.crossFade?Math.max(1-Math.abs(e[0].progress),0):1+Math.min(Math.max(e[0].progress,-1),0);se(s,e).css({opacity:n}).transform(`translate3d(${i}px, ${r}px, 0px)`)}},setTransition:e=>{const{transformEl:s}=t.params.fadeEffect;(s?t.slides.find(s):t.slides).transition(e),ae({swiper:t,duration:e,transformEl:s,allSlides:!0})},overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({cubeEffect:{slideShadows:!0,shadow:!0,shadowOffset:20,shadowScale:.94}});const i=(e,t,s)=>{let a=s?e.find(".swiper-slide-shadow-left"):e.find(".swiper-slide-shadow-top"),i=s?e.find(".swiper-slide-shadow-right"):e.find(".swiper-slide-shadow-bottom");0===a.length&&(a=d(`<div class="swiper-slide-shadow-${s?"left":"top"}"></div>`),e.append(a)),0===i.length&&(i=d(`<div class="swiper-slide-shadow-${s?"right":"bottom"}"></div>`),e.append(i)),a.length&&(a[0].style.opacity=Math.max(-t,0)),i.length&&(i[0].style.opacity=Math.max(t,0))};te({effect:"cube",swiper:t,on:a,setTranslate:()=>{const{$el:e,$wrapperEl:s,slides:a,width:r,height:n,rtlTranslate:l,size:o,browser:c}=t,p=t.params.cubeEffect,u=t.isHorizontal(),h=t.virtual&&t.params.virtual.enabled;let m,f=0;p.shadow&&(u?(m=s.find(".swiper-cube-shadow"),0===m.length&&(m=d('<div class="swiper-cube-shadow"></div>'),s.append(m)),m.css({height:`${r}px`})):(m=e.find(".swiper-cube-shadow"),0===m.length&&(m=d('<div class="swiper-cube-shadow"></div>'),e.append(m))));for(let e=0;e<a.length;e+=1){const t=a.eq(e);let s=e;h&&(s=parseInt(t.attr("data-swiper-slide-index"),10));let r=90*s,n=Math.floor(r/360);l&&(r=-r,n=Math.floor(-r/360));const d=Math.max(Math.min(t[0].progress,1),-1);let c=0,m=0,g=0;s%4==0?(c=4*-n*o,g=0):(s-1)%4==0?(c=0,g=4*-n*o):(s-2)%4==0?(c=o+4*n*o,g=o):(s-3)%4==0&&(c=-o,g=3*o+4*o*n),l&&(c=-c),u||(m=c,c=0);const v=`rotateX(${u?0:-r}deg) rotateY(${u?r:0}deg) translate3d(${c}px, ${m}px, ${g}px)`;d<=1&&d>-1&&(f=90*s+90*d,l&&(f=90*-s-90*d)),t.transform(v),p.slideShadows&&i(t,d,u)}if(s.css({"-webkit-transform-origin":`50% 50% -${o/2}px`,"transform-origin":`50% 50% -${o/2}px`}),p.shadow)if(u)m.transform(`translate3d(0px, ${r/2+p.shadowOffset}px, ${-r/2}px) rotateX(90deg) rotateZ(0deg) scale(${p.shadowScale})`);else{const e=Math.abs(f)-90*Math.floor(Math.abs(f)/90),t=1.5-(Math.sin(2*e*Math.PI/360)/2+Math.cos(2*e*Math.PI/360)/2),s=p.shadowScale,a=p.shadowScale/t,i=p.shadowOffset;m.transform(`scale3d(${s}, 1, ${a}) translate3d(0px, ${n/2+i}px, ${-n/2/a}px) rotateX(-90deg)`)}const g=c.isSafari||c.isWebView?-o/2:0;s.transform(`translate3d(0px,0,${g}px) rotateX(${t.isHorizontal()?0:f}deg) rotateY(${t.isHorizontal()?-f:0}deg)`),s[0].style.setProperty("--swiper-cube-translate-z",`${g}px`)},setTransition:e=>{const{$el:s,slides:a}=t;a.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),t.params.cubeEffect.shadow&&!t.isHorizontal()&&s.find(".swiper-cube-shadow").transition(e)},recreateShadows:()=>{const e=t.isHorizontal();t.slides.each((t=>{const s=Math.max(Math.min(t.progress,1),-1);i(d(t),s,e)}))},getEffectParams:()=>t.params.cubeEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,resistanceRatio:0,spaceBetween:0,centeredSlides:!1,virtualTranslate:!0})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({flipEffect:{slideShadows:!0,limitRotation:!0,transformEl:null}});const i=(e,s,a)=>{let i=t.isHorizontal()?e.find(".swiper-slide-shadow-left"):e.find(".swiper-slide-shadow-top"),r=t.isHorizontal()?e.find(".swiper-slide-shadow-right"):e.find(".swiper-slide-shadow-bottom");0===i.length&&(i=ie(a,e,t.isHorizontal()?"left":"top")),0===r.length&&(r=ie(a,e,t.isHorizontal()?"right":"bottom")),i.length&&(i[0].style.opacity=Math.max(-s,0)),r.length&&(r[0].style.opacity=Math.max(s,0))};te({effect:"flip",swiper:t,on:a,setTranslate:()=>{const{slides:e,rtlTranslate:s}=t,a=t.params.flipEffect;for(let r=0;r<e.length;r+=1){const n=e.eq(r);let l=n[0].progress;t.params.flipEffect.limitRotation&&(l=Math.max(Math.min(n[0].progress,1),-1));const o=n[0].swiperSlideOffset;let d=-180*l,c=0,p=t.params.cssMode?-o-t.translate:-o,u=0;t.isHorizontal()?s&&(d=-d):(u=p,p=0,c=-d,d=0),n[0].style.zIndex=-Math.abs(Math.round(l))+e.length,a.slideShadows&&i(n,l,a);const h=`translate3d(${p}px, ${u}px, 0px) rotateX(${c}deg) rotateY(${d}deg)`;se(a,n).transform(h)}},setTransition:e=>{const{transformEl:s}=t.params.flipEffect;(s?t.slides.find(s):t.slides).transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e),ae({swiper:t,duration:e,transformEl:s})},recreateShadows:()=>{const e=t.params.flipEffect;t.slides.each((s=>{const a=d(s);let r=a[0].progress;t.params.flipEffect.limitRotation&&(r=Math.max(Math.min(s.progress,1),-1)),i(a,r,e)}))},getEffectParams:()=>t.params.flipEffect,perspective:()=>!0,overwriteParams:()=>({slidesPerView:1,slidesPerGroup:1,watchSlidesProgress:!0,spaceBetween:0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({coverflowEffect:{rotate:50,stretch:0,depth:100,scale:1,modifier:1,slideShadows:!0,transformEl:null}}),te({effect:"coverflow",swiper:t,on:a,setTranslate:()=>{const{width:e,height:s,slides:a,slidesSizesGrid:i}=t,r=t.params.coverflowEffect,n=t.isHorizontal(),l=t.translate,o=n?e/2-l:s/2-l,d=n?r.rotate:-r.rotate,c=r.depth;for(let e=0,t=a.length;e<t;e+=1){const t=a.eq(e),s=i[e],l=(o-t[0].swiperSlideOffset-s/2)/s,p="function"==typeof r.modifier?r.modifier(l):l*r.modifier;let u=n?d*p:0,h=n?0:d*p,m=-c*Math.abs(p),f=r.stretch;"string"==typeof f&&-1!==f.indexOf("%")&&(f=parseFloat(r.stretch)/100*s);let g=n?0:f*p,v=n?f*p:0,w=1-(1-r.scale)*Math.abs(p);Math.abs(v)<.001&&(v=0),Math.abs(g)<.001&&(g=0),Math.abs(m)<.001&&(m=0),Math.abs(u)<.001&&(u=0),Math.abs(h)<.001&&(h=0),Math.abs(w)<.001&&(w=0);const b=`translate3d(${v}px,${g}px,${m}px)  rotateX(${h}deg) rotateY(${u}deg) scale(${w})`;if(se(r,t).transform(b),t[0].style.zIndex=1-Math.abs(Math.round(p)),r.slideShadows){let e=n?t.find(".swiper-slide-shadow-left"):t.find(".swiper-slide-shadow-top"),s=n?t.find(".swiper-slide-shadow-right"):t.find(".swiper-slide-shadow-bottom");0===e.length&&(e=ie(r,t,n?"left":"top")),0===s.length&&(s=ie(r,t,n?"right":"bottom")),e.length&&(e[0].style.opacity=p>0?p:0),s.length&&(s[0].style.opacity=-p>0?-p:0)}}},setTransition:e=>{const{transformEl:s}=t.params.coverflowEffect;(s?t.slides.find(s):t.slides).transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e)},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({creativeEffect:{transformEl:null,limitProgress:1,shadowPerProgress:!1,progressMultiplier:1,perspective:!0,prev:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1},next:{translate:[0,0,0],rotate:[0,0,0],opacity:1,scale:1}}});const i=e=>"string"==typeof e?e:`${e}px`;te({effect:"creative",swiper:t,on:a,setTranslate:()=>{const{slides:e,$wrapperEl:s,slidesSizesGrid:a}=t,r=t.params.creativeEffect,{progressMultiplier:n}=r,l=t.params.centeredSlides;if(l){const e=a[0]/2-t.params.slidesOffsetBefore||0;s.transform(`translateX(calc(50% - ${e}px))`)}for(let s=0;s<e.length;s+=1){const a=e.eq(s),o=a[0].progress,d=Math.min(Math.max(a[0].progress,-r.limitProgress),r.limitProgress);let c=d;l||(c=Math.min(Math.max(a[0].originalProgress,-r.limitProgress),r.limitProgress));const p=a[0].swiperSlideOffset,u=[t.params.cssMode?-p-t.translate:-p,0,0],h=[0,0,0];let m=!1;t.isHorizontal()||(u[1]=u[0],u[0]=0);let f={translate:[0,0,0],rotate:[0,0,0],scale:1,opacity:1};d<0?(f=r.next,m=!0):d>0&&(f=r.prev,m=!0),u.forEach(((e,t)=>{u[t]=`calc(${e}px + (${i(f.translate[t])} * ${Math.abs(d*n)}))`})),h.forEach(((e,t)=>{h[t]=f.rotate[t]*Math.abs(d*n)})),a[0].style.zIndex=-Math.abs(Math.round(o))+e.length;const g=u.join(", "),v=`rotateX(${h[0]}deg) rotateY(${h[1]}deg) rotateZ(${h[2]}deg)`,w=c<0?`scale(${1+(1-f.scale)*c*n})`:`scale(${1-(1-f.scale)*c*n})`,b=c<0?1+(1-f.opacity)*c*n:1-(1-f.opacity)*c*n,x=`translate3d(${g}) ${v} ${w}`;if(m&&f.shadow||!m){let e=a.children(".swiper-slide-shadow");if(0===e.length&&f.shadow&&(e=ie(r,a)),e.length){const t=r.shadowPerProgress?d*(1/r.limitProgress):d;e[0].style.opacity=Math.min(Math.max(Math.abs(t),0),1)}}const y=se(r,a);y.transform(x).css({opacity:b}),f.origin&&y.css("transform-origin",f.origin)}},setTransition:e=>{const{transformEl:s}=t.params.creativeEffect;(s?t.slides.find(s):t.slides).transition(e).find(".swiper-slide-shadow").transition(e),ae({swiper:t,duration:e,transformEl:s,allSlides:!0})},perspective:()=>t.params.creativeEffect.perspective,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})},function(e){let{swiper:t,extendParams:s,on:a}=e;s({cardsEffect:{slideShadows:!0,transformEl:null,rotate:!0,perSlideRotate:2,perSlideOffset:8}}),te({effect:"cards",swiper:t,on:a,setTranslate:()=>{const{slides:e,activeIndex:s}=t,a=t.params.cardsEffect,{startTranslate:i,isTouched:r}=t.touchEventsData,n=t.translate;for(let l=0;l<e.length;l+=1){const o=e.eq(l),d=o[0].progress,c=Math.min(Math.max(d,-4),4);let p=o[0].swiperSlideOffset;t.params.centeredSlides&&!t.params.cssMode&&t.$wrapperEl.transform(`translateX(${t.minTranslate()}px)`),t.params.centeredSlides&&t.params.cssMode&&(p-=e[0].swiperSlideOffset);let u=t.params.cssMode?-p-t.translate:-p,h=0;const m=-100*Math.abs(c);let f=1,g=-a.perSlideRotate*c,v=a.perSlideOffset-.75*Math.abs(c);const w=t.virtual&&t.params.virtual.enabled?t.virtual.from+l:l,b=(w===s||w===s-1)&&c>0&&c<1&&(r||t.params.cssMode)&&n<i,x=(w===s||w===s+1)&&c<0&&c>-1&&(r||t.params.cssMode)&&n>i;if(b||x){const e=(1-Math.abs((Math.abs(c)-.5)/.5))**.5;g+=-28*c*e,f+=-.5*e,v+=96*e,h=-25*e*Math.abs(c)+"%"}if(u=c<0?`calc(${u}px + (${v*Math.abs(c)}%))`:c>0?`calc(${u}px + (-${v*Math.abs(c)}%))`:`${u}px`,!t.isHorizontal()){const e=h;h=u,u=e}const y=c<0?""+(1+(1-f)*c):""+(1-(1-f)*c),E=`\n        translate3d(${u}, ${h}, ${m}px)\n        rotateZ(${a.rotate?g:0}deg)\n        scale(${y})\n      `;if(a.slideShadows){let e=o.find(".swiper-slide-shadow");0===e.length&&(e=ie(a,o)),e.length&&(e[0].style.opacity=Math.min(Math.max((Math.abs(c)-.5)/.5,0),1))}o[0].style.zIndex=-Math.abs(Math.round(d))+e.length;se(a,o).transform(E)}},setTransition:e=>{const{transformEl:s}=t.params.cardsEffect;(s?t.slides.find(s):t.slides).transition(e).find(".swiper-slide-shadow").transition(e),ae({swiper:t,duration:e,transformEl:s})},perspective:()=>!0,overwriteParams:()=>({watchSlidesProgress:!0,virtualTranslate:!t.params.cssMode})})}];return V.use(re),V}));PK��][[������6ultimate-addons-for-gutenberg/assets/js/isotope.min.jsnu�[���/*!
* Isotope PACKAGED v3.0.5
*
* Licensed GPLv3 for open source use
* or Isotope Commercial License for commercial use
*
* https://isotope.metafizzy.co
* Copyright 2017 Metafizzy
*/

!function(t,e){"function"==typeof define&&define.amd?define("jquery-bridget/jquery-bridget",["jquery"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("jquery")):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){"use strict";var i=Array.prototype.slice,o=t.console,n=void 0===o?function(){}:function(t){o.error(t)};function s(o,s,a){(a=a||e||t.jQuery)&&(s.prototype.option||(s.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[o]=function(t){if("string"==typeof t){var e=i.call(arguments,1);return h=e,d="$()."+o+'("'+(u=t)+'")',(r=this).each(function(t,e){var i=a.data(e,o);if(i){var s=i[u];if(s&&"_"!=u.charAt(0)){var r=s.apply(i,h);l=void 0===l?r:l}else n(d+" is not a valid method")}else n(o+" not initialized. Cannot call methods, i.e. "+d)}),void 0!==l?l:r}var r,u,h,l,d,f;return f=t,this.each(function(t,e){var i=a.data(e,o);i?(i.option(f),i._init()):(i=new s(e,f),a.data(e,o,i))}),this},r(a))}function r(t){!t||t&&t.bridget||(t.bridget=s)}return r(e||t.jQuery),s}),function(t,e){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",e):"object"==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}("undefined"!=typeof window?window:this,function(){function t(){}var e=t.prototype;return e.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return-1==o.indexOf(e)&&o.push(e),this}},e.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{};return(i[t]=i[t]||{})[e]=!0,this}},e.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return-1!=o&&i.splice(o,1),this}},e.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var o=this._onceEvents&&this._onceEvents[t],n=0;n<i.length;n++){var s=i[n];o&&o[s]&&(this.off(t,s),delete o[s]),s.apply(this,e)}return this}},e.allOff=function(){delete this._events,delete this._onceEvents},t}),function(t,e){"function"==typeof define&&define.amd?define("get-size/get-size",e):"object"==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){"use strict";function t(t){var e=parseFloat(t);return-1==t.indexOf("%")&&!isNaN(e)&&e}var e="undefined"==typeof console?function(){}:function(t){console.error(t)},i=["paddingLeft","paddingRight","paddingTop","paddingBottom","marginLeft","marginRight","marginTop","marginBottom","borderLeftWidth","borderRightWidth","borderTopWidth","borderBottomWidth"],o=i.length;function n(t){var i=getComputedStyle(t);return i||e("Style returned "+i+". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1"),i}var s,r=!1;function a(e){if(function(){if(!r){r=!0;var e=document.createElement("div");e.style.width="200px",e.style.padding="1px 2px 3px 4px",e.style.borderStyle="solid",e.style.borderWidth="1px 2px 3px 4px",e.style.boxSizing="border-box";var i=document.body||document.documentElement;i.appendChild(e);var o=n(e);s=200==Math.round(t(o.width)),a.isBoxSizeOuter=s,i.removeChild(e)}}(),"string"==typeof e&&(e=document.querySelector(e)),e&&"object"==typeof e&&e.nodeType){var u=n(e);if("none"==u.display)return function(){for(var t={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<o;e++)t[i[e]]=0;return t}();var h={};h.width=e.offsetWidth,h.height=e.offsetHeight;for(var l=h.isBorderBox="border-box"==u.boxSizing,d=0;d<o;d++){var f=i[d],c=u[f],m=parseFloat(c);h[f]=isNaN(m)?0:m}var p=h.paddingLeft+h.paddingRight,y=h.paddingTop+h.paddingBottom,g=h.marginLeft+h.marginRight,v=h.marginTop+h.marginBottom,_=h.borderLeftWidth+h.borderRightWidth,z=h.borderTopWidth+h.borderBottomWidth,I=l&&s,x=t(u.width);!1!==x&&(h.width=x+(I?0:p+_));var S=t(u.height);return!1!==S&&(h.height=S+(I?0:y+z)),h.innerWidth=h.width-(p+_),h.innerHeight=h.height-(y+z),h.outerWidth=h.width+g,h.outerHeight=h.height+v,h}}return a}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("desandro-matches-selector/matches-selector",e):"object"==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){"use strict";var t=function(){var t=window.Element.prototype;if(t.matches)return"matches";if(t.matchesSelector)return"matchesSelector";for(var e=["webkit","moz","ms","o"],i=0;i<e.length;i++){var o=e[i]+"MatchesSelector";if(t[o])return o}}();return function(e,i){return e[t](i)}}),function(t,e){"function"==typeof define&&define.amd?define("fizzy-ui-utils/utils",["desandro-matches-selector/matches-selector"],function(i){return e(t,i)}):"object"==typeof module&&module.exports?module.exports=e(t,require("desandro-matches-selector")):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={extend:function(t,e){for(var i in e)t[i]=e[i];return t},modulo:function(t,e){return(t%e+e)%e}},o=Array.prototype.slice;i.makeArray=function(t){return Array.isArray(t)?t:null==t?[]:"object"==typeof t&&"number"==typeof t.length?o.call(t):[t]},i.removeFrom=function(t,e){var i=t.indexOf(e);-1!=i&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return"string"==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,o){t=i.makeArray(t);var n=[];return t.forEach(function(t){if(t instanceof HTMLElement)if(o){e(t,o)&&n.push(t);for(var i=t.querySelectorAll(o),s=0;s<i.length;s++)n.push(i[s])}else n.push(t)}),n},i.debounceMethod=function(t,e,i){i=i||100;var o=t.prototype[e],n=e+"Timeout";t.prototype[e]=function(){var t=this[n];clearTimeout(t);var e=arguments,s=this;this[n]=setTimeout(function(){o.apply(s,e),delete s[n]},i)}},i.docReady=function(t){var e=document.readyState;"complete"==e||"interactive"==e?setTimeout(t):document.addEventListener("DOMContentLoaded",t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+"-"+i}).toLowerCase()};var n=t.console;return i.htmlInit=function(e,o){i.docReady(function(){var s=i.toDashed(o),r="data-"+s,a=document.querySelectorAll("["+r+"]"),u=document.querySelectorAll(".js-"+s),h=i.makeArray(a).concat(i.makeArray(u)),l=r+"-options",d=t.jQuery;h.forEach(function(t){var i,s=t.getAttribute(r)||t.getAttribute(l);try{i=s&&JSON.parse(s)}catch(e){return void(n&&n.error("Error parsing "+r+" on "+t.className+": "+e))}var a=new e(t,i);d&&d.data(t,o,a)})})},i}),function(t,e){"function"==typeof define&&define.amd?define("outlayer/item",["ev-emitter/ev-emitter","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("ev-emitter"),require("get-size")):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){"use strict";var i=document.documentElement.style,o="string"==typeof i.transition?"transition":"WebkitTransition",n="string"==typeof i.transform?"transform":"WebkitTransform",s={WebkitTransition:"webkitTransitionEnd",transition:"transitionend"}[o],r={transform:n,transition:o,transitionDuration:o+"Duration",transitionProperty:o+"Property",transitionDelay:o+"Delay"};function a(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())}var u=a.prototype=Object.create(t.prototype);u.constructor=a,u._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:"absolute"})},u.handleEvent=function(t){var e="on"+t.type;this[e]&&this[e](t)},u.getSize=function(){this.size=e(this.element)},u.css=function(t){var e=this.element.style;for(var i in t){e[r[i]||i]=t[i]}},u.getPosition=function(){var t=getComputedStyle(this.element),e=this.layout._getOption("originLeft"),i=this.layout._getOption("originTop"),o=t[e?"left":"right"],n=t[i?"top":"bottom"],s=parseFloat(o),r=parseFloat(n),a=this.layout.size;-1!=o.indexOf("%")&&(s=s/100*a.width),-1!=n.indexOf("%")&&(r=r/100*a.height),s=isNaN(s)?0:s,r=isNaN(r)?0:r,s-=e?a.paddingLeft:a.paddingRight,r-=i?a.paddingTop:a.paddingBottom,this.position.x=s,this.position.y=r},u.layoutPosition=function(){var t=this.layout.size,e={},i=this.layout._getOption("originLeft"),o=this.layout._getOption("originTop"),n=i?"paddingLeft":"paddingRight",s=i?"left":"right",r=i?"right":"left",a=this.position.x+t[n];e[s]=this.getXValue(a),e[r]="";var u=o?"paddingTop":"paddingBottom",h=o?"top":"bottom",l=o?"bottom":"top",d=this.position.y+t[u];e[h]=this.getYValue(d),e[l]="",this.css(e),this.emitEvent("layout",[this])},u.getXValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+"%":t+"px"},u.getYValue=function(t){var e=this.layout._getOption("horizontal");return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+"%":t+"px"},u._transitionTo=function(t,e){this.getPosition();var i=this.position.x,o=this.position.y,n=t==this.position.x&&e==this.position.y;if(this.setPosition(t,e),!n||this.isTransitioning){var s=t-i,r=e-o,a={};a.transform=this.getTranslate(s,r),this.transition({to:a,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})}else this.layoutPosition()},u.getTranslate=function(t,e){return"translate3d("+(t=this.layout._getOption("originLeft")?t:-t)+"px, "+(e=this.layout._getOption("originTop")?e:-e)+"px, 0)"},u.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},u.moveTo=u._transitionTo,u.setPosition=function(t,e){this.position.x=parseFloat(t),this.position.y=parseFloat(e)},u._nonTransition=function(t){for(var e in this.css(t.to),t.isCleaning&&this._removeStyles(t.to),t.onTransitionEnd)t.onTransitionEnd[e].call(this)},u.transition=function(t){if(parseFloat(this.layout.options.transitionDuration)){var e=this._transn;for(var i in t.onTransitionEnd)e.onEnd[i]=t.onTransitionEnd[i];for(i in t.to)e.ingProperties[i]=!0,t.isCleaning&&(e.clean[i]=!0);if(t.from){this.css(t.from);this.element.offsetHeight;null}this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0}else this._nonTransition(t)};var h="opacity,"+n.replace(/([A-Z])/g,function(t){return"-"+t.toLowerCase()});u.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t="number"==typeof t?t+"ms":t,this.css({transitionProperty:h,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(s,this,!1)}},u.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},u.onotransitionend=function(t){this.ontransitionend(t)};var l={"-webkit-transform":"transform"};u.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,i=l[t.propertyName]||t.propertyName;if(delete e.ingProperties[i],function(t){for(var e in t)return!1;return!0}(e.ingProperties)&&this.disableTransition(),i in e.clean&&(this.element.style[t.propertyName]="",delete e.clean[i]),i in e.onEnd)e.onEnd[i].call(this),delete e.onEnd[i];this.emitEvent("transitionEnd",[this])}},u.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(s,this,!1),this.isTransitioning=!1},u._removeStyles=function(t){var e={};for(var i in t)e[i]="";this.css(e)};var d={transitionProperty:"",transitionDuration:"",transitionDelay:""};return u.removeTransitionStyles=function(){this.css(d)},u.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+"ms"},u.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:""}),this.emitEvent("remove",[this])},u.remove=function(){o&&parseFloat(this.layout.options.transitionDuration)?(this.once("transitionEnd",function(){this.removeElem()}),this.hide()):this.removeElem()},u.reveal=function(){delete this.isHidden,this.css({display:""});var t=this.layout.options,e={};e[this.getHideRevealTransitionEndProperty("visibleStyle")]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},u.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent("reveal")},u.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return"opacity";for(var i in e)return i},u.hide=function(){this.isHidden=!0,this.css({display:""});var t=this.layout.options,e={};e[this.getHideRevealTransitionEndProperty("hiddenStyle")]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},u.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:"none"}),this.emitEvent("hide"))},u.destroy=function(){this.css({position:"",left:"",right:"",top:"",bottom:"",transition:"",transform:""})},a}),function(t,e){"use strict";"function"==typeof define&&define.amd?define("outlayer/outlayer",["ev-emitter/ev-emitter","get-size/get-size","fizzy-ui-utils/utils","./item"],function(i,o,n,s){return e(t,i,o,n,s)}):"object"==typeof module&&module.exports?module.exports=e(t,require("ev-emitter"),require("get-size"),require("fizzy-ui-utils"),require("./item")):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,i,o,n){"use strict";var s=t.console,r=t.jQuery,a=function(){},u=0,h={};function l(t,e){var i=o.getQueryElement(t);if(i){this.element=i,r&&(this.$element=r(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e);var n=++u;this.element.outlayerGUID=n,h[n]=this,this._create(),this._getOption("initLayout")&&this.layout()}else s&&s.error("Bad element for "+this.constructor.namespace+": "+(i||t))}l.namespace="outlayer",l.Item=n,l.defaults={containerStyle:{position:"relative"},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:"0.4s",hiddenStyle:{opacity:0,transform:"scale(0.001)"},visibleStyle:{opacity:1,transform:"scale(1)"}};var d=l.prototype;function f(t){function e(){t.apply(this,arguments)}return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e}o.extend(d,e.prototype),d.option=function(t){o.extend(this.options,t)},d._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},l.compatOptions={initLayout:"isInitLayout",horizontal:"isHorizontal",layoutInstant:"isLayoutInstant",originLeft:"isOriginLeft",originTop:"isOriginTop",resize:"isResizeBound",resizeContainer:"isResizingContainer"},d._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),o.extend(this.element.style,this.options.containerStyle),this._getOption("resize")&&this.bindResize()},d.reloadItems=function(){this.items=this._itemize(this.element.children)},d._itemize=function(t){for(var e=this._filterFindItemElements(t),i=this.constructor.Item,o=[],n=0;n<e.length;n++){var s=new i(e[n],this);o.push(s)}return o},d._filterFindItemElements=function(t){return o.filterFindElements(t,this.options.itemSelector)},d.getItemElements=function(){return this.items.map(function(t){return t.element})},d.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},d._init=d.layout,d._resetLayout=function(){this.getSize()},d.getSize=function(){this.size=i(this.element)},d._getMeasurement=function(t,e){var o,n=this.options[t];n?("string"==typeof n?o=this.element.querySelector(n):n instanceof HTMLElement&&(o=n),this[t]=o?i(o)[e]:n):this[t]=0},d.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},d._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},d._layoutItems=function(t,e){if(this._emitCompleteOnItems("layout",t),t&&t.length){var i=[];t.forEach(function(t){var o=this._getItemLayoutPosition(t);o.item=t,o.isInstant=e||t.isLayoutInstant,i.push(o)},this),this._processLayoutQueue(i)}},d._getItemLayoutPosition=function(){return{x:0,y:0}},d._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},d.updateStagger=function(){var t=this.options.stagger;if(null!=t)return this.stagger=function(t){if("number"==typeof t)return t;var e=t.match(/(^\d*\.?\d*)(\w*)/),i=e&&e[1],o=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var n=c[o]||1;return i*n}(t),this.stagger;this.stagger=0},d._positionItem=function(t,e,i,o,n){o?t.goTo(e,i):(t.stagger(n*this.stagger),t.moveTo(e,i))},d._postLayout=function(){this.resizeContainer()},d.resizeContainer=function(){if(this._getOption("resizeContainer")){var t=this._getContainerSize();t&&(this._setContainerMeasure(t.width,!0),this._setContainerMeasure(t.height,!1))}},d._getContainerSize=a,d._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?"width":"height"]=t+"px"}},d._emitCompleteOnItems=function(t,e){var i=this;function o(){i.dispatchEvent(t+"Complete",null,[e])}var n=e.length;if(e&&n){var s=0;e.forEach(function(e){e.once(t,r)})}else o();function r(){++s==n&&o()}},d.dispatchEvent=function(t,e,i){var o=e?[e].concat(i):i;if(this.emitEvent(t,o),r)if(this.$element=this.$element||r(this.element),e){var n=r.Event(e);n.type=t,this.$element.trigger(n,i)}else this.$element.trigger(t,i)},d.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},d.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},d.stamp=function(t){(t=this._find(t))&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},d.unstamp=function(t){(t=this._find(t))&&t.forEach(function(t){o.removeFrom(this.stamps,t),this.unignore(t)},this)},d._find=function(t){if(t)return"string"==typeof t&&(t=this.element.querySelectorAll(t)),t=o.makeArray(t)},d._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},d._getBoundingRect=function(){var t=this.element.getBoundingClientRect(),e=this.size;this._boundingRect={left:t.left+e.paddingLeft+e.borderLeftWidth,top:t.top+e.paddingTop+e.borderTopWidth,right:t.right-(e.paddingRight+e.borderRightWidth),bottom:t.bottom-(e.paddingBottom+e.borderBottomWidth)}},d._manageStamp=a,d._getElementOffset=function(t){var e=t.getBoundingClientRect(),o=this._boundingRect,n=i(t);return{left:e.left-o.left-n.marginLeft,top:e.top-o.top-n.marginTop,right:o.right-e.right-n.marginRight,bottom:o.bottom-e.bottom-n.marginBottom}},d.handleEvent=o.handleEvent,d.bindResize=function(){t.addEventListener("resize",this),this.isResizeBound=!0},d.unbindResize=function(){t.removeEventListener("resize",this),this.isResizeBound=!1},d.onresize=function(){this.resize()},o.debounceMethod(l,"onresize",100),d.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},d.needsResizeLayout=function(){var t=i(this.element);return this.size&&t&&t.innerWidth!==this.size.innerWidth},d.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},d.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},d.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},d.reveal=function(t){if(this._emitCompleteOnItems("reveal",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},d.hide=function(t){if(this._emitCompleteOnItems("hide",t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},d.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},d.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},d.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},d.getItems=function(t){t=o.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},d.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems("remove",e),e&&e.length&&e.forEach(function(t){t.remove(),o.removeFrom(this.items,t)},this)},d.destroy=function(){var t=this.element.style;t.height="",t.position="",t.width="",this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete h[e],delete this.element.outlayerGUID,r&&r.removeData(this.element,this.constructor.namespace)},l.data=function(t){var e=(t=o.getQueryElement(t))&&t.outlayerGUID;return e&&h[e]},l.create=function(t,e){var i=f(l);return i.defaults=o.extend({},l.defaults),o.extend(i.defaults,e),i.compatOptions=o.extend({},l.compatOptions),i.namespace=t,i.data=l.data,i.Item=f(n),o.htmlInit(i,t),r&&r.bridget&&r.bridget(t,i),i};var c={ms:1,s:1e3};return l.Item=n,l}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/item",["outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){"use strict";function e(){t.Item.apply(this,arguments)}var i=e.prototype=Object.create(t.Item.prototype),o=i._create;i._create=function(){this.id=this.layout.itemGUID++,o.call(this),this.sortData={}},i.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData["original-order"]=this.id,this.sortData.random=Math.random();var t=this.layout.options.getSortData,e=this.layout._sorters;for(var i in t){var o=e[i];this.sortData[i]=o(this.element,this)}}};var n=i.destroy;return i.destroy=function(){n.apply(this,arguments),this.css({display:""})},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-mode",["get-size/get-size","outlayer/outlayer"],e):"object"==typeof module&&module.exports?module.exports=e(require("get-size"),require("outlayer")):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){"use strict";function i(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)}var o=i.prototype;return["_resetLayout","_getItemLayoutPosition","_manageStamp","_getContainerSize","_getElementOffset","needsResizeLayout","_getOption"].forEach(function(t){o[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),o.needsVerticalResizeLayout=function(){var e=t(this.isotope.element);return this.isotope.size&&e&&e.innerHeight!=this.isotope.size.innerHeight},o._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},o.getColumnWidth=function(){this.getSegmentSize("column","Width")},o.getRowHeight=function(){this.getSegmentSize("row","Height")},o.getSegmentSize=function(t,e){var i=t+e,o="outer"+e;if(this._getMeasurement(i,o),!this[i]){var n=this.getFirstItemSize();this[i]=n&&n[o]||this.isotope.size["inner"+e]}},o.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},o.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},o.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},i.modes={},i.create=function(t,e){function n(){i.apply(this,arguments)}return n.prototype=Object.create(o),n.prototype.constructor=n,e&&(n.options=e),n.prototype.namespace=t,i.modes[t]=n,n},i}),function(t,e){"function"==typeof define&&define.amd?define("masonry-layout/masonry",["outlayer/outlayer","get-size/get-size"],e):"object"==typeof module&&module.exports?module.exports=e(require("outlayer"),require("get-size")):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var i=t.create("masonry");i.compatOptions.fitWidth="isFitWidth";var o=i.prototype;return o._resetLayout=function(){this.getSize(),this._getMeasurement("columnWidth","outerWidth"),this._getMeasurement("gutter","outerWidth"),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},o.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var t=this.items[0],i=t&&t.element;this.columnWidth=i&&e(i).outerWidth||this.containerWidth}var o=this.columnWidth+=this.gutter,n=this.containerWidth+this.gutter,s=n/o,r=o-n%o;s=Math[r&&r<1?"round":"floor"](s),this.cols=Math.max(s,1)},o.getContainerWidth=function(){var t=this._getOption("fitWidth")?this.element.parentNode:this.element,i=e(t);this.containerWidth=i&&i.innerWidth},o._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth%this.columnWidth,i=Math[e&&e<1?"round":"ceil"](t.size.outerWidth/this.columnWidth);i=Math.min(i,this.cols);for(var o=this[this.options.horizontalOrder?"_getHorizontalColPosition":"_getTopColPosition"](i,t),n={x:this.columnWidth*o.col,y:o.y},s=o.y+t.size.outerHeight,r=i+o.col,a=o.col;a<r;a++)this.colYs[a]=s;return n},o._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},o._getTopColGroup=function(t){if(t<2)return this.colYs;for(var e=[],i=this.cols+1-t,o=0;o<i;o++)e[o]=this._getColGroupY(o,t);return e},o._getColGroupY=function(t,e){if(e<2)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},o._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols;i=t>1&&i+t>this.cols?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},o._manageStamp=function(t){var i=e(t),o=this._getElementOffset(t),n=this._getOption("originLeft")?o.left:o.right,s=n+i.outerWidth,r=Math.floor(n/this.columnWidth);r=Math.max(0,r);var a=Math.floor(s/this.columnWidth);a-=s%this.columnWidth?0:1,a=Math.min(this.cols-1,a);for(var u=(this._getOption("originTop")?o.top:o.bottom)+i.outerHeight,h=r;h<=a;h++)this.colYs[h]=Math.max(u,this.colYs[h])},o._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption("fitWidth")&&(t.width=this._getContainerFitWidth()),t},o._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},o.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/masonry",["../layout-mode","masonry-layout/masonry"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode"),require("masonry-layout")):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){"use strict";var i=t.create("masonry"),o=i.prototype,n={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var s in e.prototype)n[s]||(o[s]=e.prototype[s]);var r=o.measureColumns;o.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var a=o._getOption;return o._getOption=function(t){return"fitWidth"==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:a.apply(this.isotope,arguments)},i}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/fit-rows",["../layout-mode"],e):"object"==typeof exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("fitRows"),i=e.prototype;return i._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement("gutter","outerWidth")},i._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,i=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>i&&(this.x=0,this.y=this.maxY);var o={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,o},i._getContainerSize=function(){return{height:this.maxY}},e}),function(t,e){"function"==typeof define&&define.amd?define("isotope-layout/js/layout-modes/vertical",["../layout-mode"],e):"object"==typeof module&&module.exports?module.exports=e(require("../layout-mode")):e(t.Isotope.LayoutMode)}(window,function(t){"use strict";var e=t.create("vertical",{horizontalAlignment:0}),i=e.prototype;return i._resetLayout=function(){this.y=0},i._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},i._getContainerSize=function(){return{height:this.y}},e}),function(t,e){"function"==typeof define&&define.amd?define(["outlayer/outlayer","get-size/get-size","desandro-matches-selector/matches-selector","fizzy-ui-utils/utils","isotope-layout/js/item","isotope-layout/js/layout-mode","isotope-layout/js/layout-modes/masonry","isotope-layout/js/layout-modes/fit-rows","isotope-layout/js/layout-modes/vertical"],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):"object"==typeof module&&module.exports?module.exports=e(t,require("outlayer"),require("get-size"),require("desandro-matches-selector"),require("fizzy-ui-utils"),require("isotope-layout/js/item"),require("isotope-layout/js/layout-mode"),require("isotope-layout/js/layout-modes/masonry"),require("isotope-layout/js/layout-modes/fit-rows"),require("isotope-layout/js/layout-modes/vertical")):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,i,o,n,s,r){var a=t.jQuery,u=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\s+|\s+$/g,"")},h=e.create("isotope",{layoutMode:"masonry",isJQueryFiltering:!0,sortAscending:!0});h.Item=s,h.LayoutMode=r;var l=h.prototype;l._create=function(){for(var t in this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=["original-order"],r.modes)this._initLayoutMode(t)},l.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},l._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){t[i].id=this.itemGUID++}return this._updateItemsSortData(t),t},l._initLayoutMode=function(t){var e=r.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},l.layout=function(){this._isLayoutInited||!this._getOption("initLayout")?this._layout():this.arrange()},l._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},l.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},l._init=l.arrange,l._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},l._getIsInstant=function(){var t=this._getOption("layoutInstant"),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},l._bindArrangeComplete=function(){var t,e,i,o=this;function n(){t&&e&&i&&o.dispatchEvent("arrangeComplete",null,[o.filteredItems])}this.once("layoutComplete",function(){t=!0,n()}),this.once("hideComplete",function(){e=!0,n()}),this.once("revealComplete",function(){i=!0,n()})},l._filter=function(t){var e=this.options.filter;e=e||"*";for(var i=[],o=[],n=[],s=this._getFilterTest(e),r=0;r<t.length;r++){var a=t[r];if(!a.isIgnored){var u=s(a);u&&i.push(a),u&&a.isHidden?o.push(a):u||a.isHidden||n.push(a)}}return{matches:i,needReveal:o,needHide:n}},l._getFilterTest=function(t){return a&&this.options.isJQueryFiltering?function(e){return a(e.element).is(t)}:"function"==typeof t?function(e){return t(e.element)}:function(e){return o(e.element,t)}},l.updateSortData=function(t){var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},l._getSorters=function(){var t=this.options.getSortData;for(var e in t){var i=t[e];this._sorters[e]=d(i)}},l._updateItemsSortData=function(t){for(var e=t&&t.length,i=0;e&&i<e;i++){t[i].updateSortData()}};var d=function(){return function(t){if("string"!=typeof t)return t;var e=u(t).split(" "),i=e[0],o=i.match(/^\[(.+)\]$/),n=(r=o&&o[1],a=i,r?function(t){return t.getAttribute(r)}:function(t){var e=t.querySelector(a);return e&&e.textContent}),s=h.sortDataParsers[e[1]];var r,a;return t=s?function(t){return t&&s(n(t))}:function(t){return t&&n(t)}}}();h.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},l._sort=function(){if(this.options.sortBy){var t=n.makeArray(this.options.sortBy);this._getIsSameSortBy(t)||(this.sortHistory=t.concat(this.sortHistory));var e,i,o=(e=this.sortHistory,i=this.options.sortAscending,function(t,o){for(var n=0;n<e.length;n++){var s=e[n],r=t.sortData[s],a=o.sortData[s];if(r>a||r<a){var u=void 0!==i[s]?i[s]:i,h=u?1:-1;return(r>a?1:-1)*h}}return 0});this.filteredItems.sort(o)}},l._getIsSameSortBy=function(t){for(var e=0;e<t.length;e++)if(t[e]!=this.sortHistory[e])return!1;return!0},l._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error("No layout mode: "+t);return e.options=this.options[t],e},l._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},l._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},l._manageStamp=function(t){this._mode()._manageStamp(t)},l._getContainerSize=function(){return this._mode()._getContainerSize()},l.needsResizeLayout=function(){return this._mode().needsResizeLayout()},l.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},l.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},l._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},l.insert=function(t){var e=this.addItems(t);if(e.length){var i,o,n=e.length;for(i=0;i<n;i++)o=e[i],this.element.appendChild(o.element);var s=this._filter(e).matches;for(i=0;i<n;i++)e[i].isLayoutInstant=!0;for(this.arrange(),i=0;i<n;i++)delete e[i].isLayoutInstant;this.reveal(s)}};var f=l.remove;return l.remove=function(t){t=n.makeArray(t);var e=this.getItems(t);f.call(this,t);for(var i=e&&e.length,o=0;i&&o<i;o++){var s=e[o];n.removeFrom(this.filteredItems,s)}},l.shuffle=function(){for(var t=0;t<this.items.length;t++){this.items[t].sortData.random=Math.random()}this.options.sortBy="random",this._sort(),this._layout()},l._noTransition=function(t,e){var i=this.options.transitionDuration;this.options.transitionDuration=0;var o=t.apply(this,e);return this.options.transitionDuration=i,o},l.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},h});PK��][1#WT�7�7.ultimate-addons-for-gutenberg/assets/js/aos.jsnu�[���!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return function(e){function t(o){if(n[o])return n[o].exports;var i=n[o]={exports:{},id:o,loaded:!1};return e[o].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="dist/",t(0)}([function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}var i=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},r=n(1),a=(o(r),n(6)),u=o(a),c=n(7),f=o(c),s=n(8),d=o(s),l=n(9),p=o(l),m=n(10),b=o(m),v=n(11),y=o(v),g=n(14),h=o(g),w=[],k=!1,x={offset:120,delay:0,easing:"ease",duration:400,disable:!1,once:!1,startEvent:"DOMContentLoaded",throttleDelay:99,debounceDelay:50,disableMutationObserver:!1},j=function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(e&&(k=!0),k)return w=(0,y.default)(w,x),(0,b.default)(w,x.once),w},O=function(){w=(0,h.default)(),j()},_=function(){w.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")})},S=function(e){return e===!0||"mobile"===e&&p.default.mobile()||"phone"===e&&p.default.phone()||"tablet"===e&&p.default.tablet()||"function"==typeof e&&e()===!0},z=function(e){x=i(x,e),w=(0,h.default)();var t=document.all&&!window.atob;return S(x.disable)||t?_():(document.querySelector("body").setAttribute("data-aos-easing",x.easing),document.querySelector("body").setAttribute("data-aos-duration",x.duration),document.querySelector("body").setAttribute("data-aos-delay",x.delay),"DOMContentLoaded"===x.startEvent&&["complete","interactive"].indexOf(document.readyState)>-1?j(!0):"load"===x.startEvent?window.addEventListener(x.startEvent,function(){j(!0)}):document.addEventListener(x.startEvent,function(){j(!0)}),window.addEventListener("resize",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("orientationchange",(0,f.default)(j,x.debounceDelay,!0)),window.addEventListener("scroll",(0,u.default)(function(){(0,b.default)(w,x.once)},x.throttleDelay)),x.disableMutationObserver||(0,d.default)("[data-aos]",O),w)};e.exports={init:z,refresh:j,refreshHard:O}},function(e,t){},,,,,function(e,t){(function(t){"use strict";function n(e,t,n){function o(t){var n=b,o=v;return b=v=void 0,k=t,g=e.apply(o,n)}function r(e){return k=e,h=setTimeout(s,t),_?o(e):g}function a(e){var n=e-w,o=e-k,i=t-n;return S?j(i,y-o):i}function c(e){var n=e-w,o=e-k;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=O();return c(e)?d(e):void(h=setTimeout(s,a(e)))}function d(e){return h=void 0,z&&b?o(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),k=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(O())}function m(){var e=O(),n=c(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),o(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,k=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(f);return t=u(t)||0,i(n)&&(_=!!n.leading,S="maxWait"in n,y=S?x(u(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e,t,o){var r=!0,a=!0;if("function"!=typeof e)throw new TypeError(f);return i(o)&&(r="leading"in o?!!o.leading:r,a="trailing"in o?!!o.trailing:a),n(e,t,{leading:r,maxWait:t,trailing:a})}function i(e){var t="undefined"==typeof e?"undefined":c(e);return!!e&&("object"==t||"function"==t)}function r(e){return!!e&&"object"==("undefined"==typeof e?"undefined":c(e))}function a(e){return"symbol"==("undefined"==typeof e?"undefined":c(e))||r(e)&&k.call(e)==d}function u(e){if("number"==typeof e)return e;if(a(e))return s;if(i(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=i(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(l,"");var n=m.test(e);return n||b.test(e)?v(e.slice(2),n?2:8):p.test(e)?s:+e}var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},f="Expected a function",s=NaN,d="[object Symbol]",l=/^\s+|\s+$/g,p=/^[-+]0x[0-9a-f]+$/i,m=/^0b[01]+$/i,b=/^0o[0-7]+$/i,v=parseInt,y="object"==("undefined"==typeof t?"undefined":c(t))&&t&&t.Object===Object&&t,g="object"==("undefined"==typeof self?"undefined":c(self))&&self&&self.Object===Object&&self,h=y||g||Function("return this")(),w=Object.prototype,k=w.toString,x=Math.max,j=Math.min,O=function(){return h.Date.now()};e.exports=o}).call(t,function(){return this}())},function(e,t){(function(t){"use strict";function n(e,t,n){function i(t){var n=b,o=v;return b=v=void 0,O=t,g=e.apply(o,n)}function r(e){return O=e,h=setTimeout(s,t),_?i(e):g}function u(e){var n=e-w,o=e-O,i=t-n;return S?x(i,y-o):i}function f(e){var n=e-w,o=e-O;return void 0===w||n>=t||n<0||S&&o>=y}function s(){var e=j();return f(e)?d(e):void(h=setTimeout(s,u(e)))}function d(e){return h=void 0,z&&b?i(e):(b=v=void 0,g)}function l(){void 0!==h&&clearTimeout(h),O=0,b=w=v=h=void 0}function p(){return void 0===h?g:d(j())}function m(){var e=j(),n=f(e);if(b=arguments,v=this,w=e,n){if(void 0===h)return r(w);if(S)return h=setTimeout(s,t),i(w)}return void 0===h&&(h=setTimeout(s,t)),g}var b,v,y,g,h,w,O=0,_=!1,S=!1,z=!0;if("function"!=typeof e)throw new TypeError(c);return t=a(t)||0,o(n)&&(_=!!n.leading,S="maxWait"in n,y=S?k(a(n.maxWait)||0,t):y,z="trailing"in n?!!n.trailing:z),m.cancel=l,m.flush=p,m}function o(e){var t="undefined"==typeof e?"undefined":u(e);return!!e&&("object"==t||"function"==t)}function i(e){return!!e&&"object"==("undefined"==typeof e?"undefined":u(e))}function r(e){return"symbol"==("undefined"==typeof e?"undefined":u(e))||i(e)&&w.call(e)==s}function a(e){if("number"==typeof e)return e;if(r(e))return f;if(o(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=o(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(d,"");var n=p.test(e);return n||m.test(e)?b(e.slice(2),n?2:8):l.test(e)?f:+e}var u="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c="Expected a function",f=NaN,s="[object Symbol]",d=/^\s+|\s+$/g,l=/^[-+]0x[0-9a-f]+$/i,p=/^0b[01]+$/i,m=/^0o[0-7]+$/i,b=parseInt,v="object"==("undefined"==typeof t?"undefined":u(t))&&t&&t.Object===Object&&t,y="object"==("undefined"==typeof self?"undefined":u(self))&&self&&self.Object===Object&&self,g=v||y||Function("return this")(),h=Object.prototype,w=h.toString,k=Math.max,x=Math.min,j=function(){return g.Date.now()};e.exports=n}).call(t,function(){return this}())},function(e,t){"use strict";function n(e,t){var n=window.document,r=window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver,a=new r(o);i=t,a.observe(n.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}function o(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),n=Array.prototype.slice.call(e.removedNodes),o=t.concat(n).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length;o&&i()})}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){};t.default=n},function(e,t){"use strict";function n(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function o(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(t,"__esModule",{value:!0});var i=function(){function e(e,t){for(var n=0;n<t.length;n++){var o=t[n];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(e,o.key,o)}}return function(t,n,o){return n&&e(t.prototype,n),o&&e(t,o),t}}(),r=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,a=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,u=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i,c=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,f=function(){function e(){n(this,e)}return i(e,[{key:"phone",value:function(){var e=o();return!(!r.test(e)&&!a.test(e.substr(0,4)))}},{key:"mobile",value:function(){var e=o();return!(!u.test(e)&&!c.test(e.substr(0,4)))}},{key:"tablet",value:function(){return this.mobile()&&!this.phone()}}]),e}();t.default=new f},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e,t,n){var o=e.node.getAttribute("data-aos-once");t>e.position?e.node.classList.add("aos-animate"):"undefined"!=typeof o&&("false"===o||!n&&"true"!==o)&&e.node.classList.remove("aos-animate")},o=function(e,t){var o=window.pageYOffset,i=window.innerHeight;e.forEach(function(e,r){n(e,i+o,t)})};t.default=o},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(12),r=o(i),a=function(e,t){return e.forEach(function(e,n){e.node.classList.add("aos-init"),e.position=(0,r.default)(e.node,t.offset)}),e};t.default=a},function(e,t,n){"use strict";function o(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(13),r=o(i),a=function(e,t){var n=0,o=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(o=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),n=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":n+=e.offsetHeight/2;break;case"bottom-bottom":n+=e.offsetHeight;break;case"top-center":n+=i/2;break;case"bottom-center":n+=i/2+e.offsetHeight;break;case"center-center":n+=i/2+e.offsetHeight/2;break;case"top-top":n+=i;break;case"bottom-top":n+=e.offsetHeight+i;break;case"center-top":n+=e.offsetHeight/2+i}return a.anchorPlacement||a.offset||isNaN(t)||(o=t),n+o};t.default=a},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){for(var t=0,n=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),n+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:n,left:t}};t.default=n},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})};t.default=n}])});PK��][��'z�(�(Dultimate-addons-for-gutenberg/assets/js/spectra-block-positioning.jsnu�[���const UAGBBlockPositioning = {
	// Initialize the required positioning functionality.
	init( attr, selector ) {
		const element = document.querySelector( selector );
		if ( element?.classList.contains( 'uagb-position__sticky' ) ) {
			UAGBBlockPositioning.handleSticky( element, attr );
		}
	},

	// Function to handle the sticky positioned element.
	handleSticky( element, attr ) {
		// Add the Adminbar height if needed.
		const getAdminbarHeight = () => {
			const adminBar = document.querySelector( '#wpadminbar' );
			return adminBar?.offsetHeight || 0;
		}

		// Create a filler element for sticky.
		const createStickyFiller = ( elementNode, elementDimensions, elementParent ) => {
			const fillerElement = document.createElement( 'div' );
			fillerElement.style.height = `${ elementDimensions.height }px`;
			fillerElement.style.boxSizing = 'border-box';
			const elementStyles = window.getComputedStyle( elementNode );
			// If the sticky element is not restricted to the parent container, then set the width and margin.
			if ( ! elementParent ) {
				fillerElement.style.width = `${ elementDimensions.width }px`;
				fillerElement.style.margin = elementStyles.getPropertyValue( 'margin' ) || 0;
				// If the sticky element is restricted to the parent container, then set the maxWidth as was intended for the stuck element.
			} else {
				fillerElement.style.width = '100%';
				fillerElement.style.maxWidth = elementStyles.getPropertyValue( 'max-width' ) || `${ elementDimensions.width }px`;
				fillerElement.style.padding = elementStyles.getPropertyValue( 'padding' ) || 0;
				fillerElement.style.margin = elementStyles.getPropertyValue( 'margin' ) || 0;
				fillerElement.style.border = elementStyles.getPropertyValue( 'border' ) || 0;
				fillerElement.style.borderColor = 'transparent';
			}
			return fillerElement;
		};

		// Add the animation attributes to the element and refresh the animations if this was an animated element.
		const applyAnimationData = () => {
			if ( 'undefined' === typeof AOS || ! attr?.UAGAnimationType ) {
				return;
			}
			element.dataset.aos = attr?.UAGAnimationType;
			element.dataset.aosDuration = attr?.UAGAnimationTime;
			element.dataset.aosDelay = attr?.UAGAnimationDelay;
			element.dataset.aosEasing = attr?.UAGAnimationEasing;
			element.dataset.aosOnce = true;
			setTimeout( () => {
				AOS.refreshHard();
			}, 100 );
		}

		// Get the dimensions of the sticky element.
		const stickyDimensions = element.getBoundingClientRect();
		const parentContainer = ! attr?.isBlockRootParent ? element.parentElement : null;
		const fillerElement = createStickyFiller( element, stickyDimensions, parentContainer );
		let haltAt, haltAtPosition, scrollPosition, parentRect;

		// Create the ParentHaltAt and ParentInnerPositions variables.
		const parentHaltAt = { top: 0, bottom: 0 };
		const parentInnerPositions = { top: 0, right: 0, bottom: 0, left: 0 };
		if ( attr?.UAGStickyRestricted ) {
			parentRect = parentContainer.getBoundingClientRect();
			const parentStyles = window.getComputedStyle( parentContainer );
			parentInnerPositions.top = parseInt( parentStyles.getPropertyValue( 'padding-top' ) || 0, 10 );
			parentInnerPositions.bottom = parseInt( parentStyles.getPropertyValue( 'padding-bottom' ) || 0, 10 );
			// To calculate the top position needed for the inner sticky container:
			// Start with the parent's top position.
			// Add the current scroll offset.
			// Add the parent's top padding if any.
			parentHaltAt.top = parentRect.top + ( window.pageYOffset || 0 ) + parentInnerPositions.top;
			// To calculate the top position needed for the inner sticky container:
			// Start with the parent's bottom position.
			// Add the current scroll offset.
			// Subtract the parent's bottom padding if any.
			// Subtract the sticky element's height.
			// Subtract the adminbar height if it exists.
			// Subtract the offset.
			parentHaltAt.bottom = parentRect.bottom + ( window.pageYOffset || 0 ) - parentInnerPositions.bottom - stickyDimensions.height - getAdminbarHeight() - ( attr?.UAGStickyOffset || 0 );
		}

		// Handle the sticky element when it is positioned at the bottom, else handle top.
		if ( 'bottom' === attr?.UAGStickyLocation ) {
			// Stop whn the scroll makes the entire element visible on the current screen.
			haltAt = stickyDimensions.top + ( window.pageYOffset || 0 ) - window.innerHeight + stickyDimensions.height + ( attr?.UAGStickyOffset || 0 );
			// Position the element to the bottom, considering the adminbar.
			haltAtPosition = `${ ( attr?.UAGStickyOffset || 0 ) }px`;

			scrollPosition = ( window.pageYOffset !== undefined ) ? window.pageYOffset : document.body.scrollTop;
			if ( scrollPosition <= haltAt && ! element.classList.contains( 'uagb-position__sticky--stuck' ) ) {
				element.parentNode.insertBefore( fillerElement, element );
				element.classList.add( 'uagb-position__sticky--stuck' );
				element.style.bottom = `calc(${ haltAtPosition } - ${ window.innerHeight }px)`;
				element.style.left = `${ stickyDimensions.left }px`;
				element.style.width = `${ stickyDimensions.width }px`;
				element.style.zIndex = '999';
				setTimeout( () => {
					element.style.bottom = haltAtPosition;
				}, 50 );
			}

			// Check if this sticky container was animated.
			applyAnimationData();

			// Check when this needsto be stuck on the bottom, and when it doesn't.
			window.addEventListener( 'scroll', () => {
				scrollPosition = ( window.pageYOffset !== undefined ) ? window.pageYOffset : document.body.scrollTop;
				if ( scrollPosition <= haltAt ) {
					if ( ! element.classList.contains( 'uagb-position__sticky--stuck' ) ) {
						element.parentNode.insertBefore( fillerElement, element );
						element.classList.add( 'uagb-position__sticky--stuck' );
						element.style.bottom = haltAtPosition;
						element.style.left = `${ stickyDimensions.left }px`;
						element.style.width = `${ stickyDimensions.width }px`;
						element.style.zIndex = '999';
					}
				} else if ( scrollPosition > haltAt && element.classList.contains( 'uagb-position__sticky--stuck' ) ) {
					element.parentNode.removeChild( fillerElement );
					element.classList.remove( 'uagb-position__sticky--stuck' );
					element.style.bottom = '';
					element.style.left = '';
					element.style.width = '';
					element.style.zIndex = '';
				}
			} );
		} else {
			// Stop whn the scroll is at the top of the element.
			haltAt = stickyDimensions.top + ( window.pageYOffset || 0 ) - getAdminbarHeight() - ( attr?.UAGStickyOffset || 0 );
			// Position the element to the top, considering the adminbar.
			haltAtPosition = `${ getAdminbarHeight() + ( attr?.UAGStickyOffset || 0 ) }px`;

			scrollPosition = ( window.pageYOffset !== undefined ) ? window.pageYOffset : document.body.scrollTop;
			if ( scrollPosition >= haltAt && ! element.classList.contains( 'uagb-position__sticky--stuck' ) ) {
				element.parentNode.insertBefore( fillerElement, element );
				// Add and Remove Opacity for Sticky Containers.
				element.classList.add( 'uagb-position__sticky--stuck' );
				// If this restricted container has crossed the bottom of the parent container on load, then restrict it.
				if ( attr?.UAGStickyRestricted && scrollPosition >= parentHaltAt.bottom ) {
					element.classList.remove( 'uagb-position__sticky--stuck' );
					element.classList.add( 'uagb-position__sticky--restricted' );
					element.style.top = '';
					element.style.bottom = `${ parentInnerPositions.bottom }px`;
					element.style.left = `${ fillerElement?.offsetLeft || 0 }px`;
					// Else, just stick it to the top and transition it to the halt position.
				} else {
					element.style.top = `calc(${ haltAtPosition } - ${ window.innerHeight }px)`
					element.style.left = `${ stickyDimensions.left }px`;
					element.style.top = haltAtPosition;
				}
				element.style.width = `${ stickyDimensions.width }px`;
				element.style.zIndex = '999';
			}

			// Check if this sticky container was animated.
			applyAnimationData();


			// Check when this needsto be stuck on the top, and when it doesn't.
			window.addEventListener( 'scroll', () => {
				scrollPosition = ( window.pageYOffset !== undefined ) ? window.pageYOffset : document.body.scrollTop;
				// If the scroll position is greater than the current sticky height.
				if ( scrollPosition >= haltAt ) {
					// If the sticky class doesn't yet exist, add the filler and the sticky class.
					if ( ! element.classList.contains( 'uagb-position__sticky--stuck' ) && ! element.classList.contains( 'uagb-position__sticky--restricted' ) ) {
						element.parentNode.insertBefore( fillerElement, element );
						element.classList.add( 'uagb-position__sticky--stuck' );
						element.style.top = haltAtPosition;
						element.style.left = `${ stickyDimensions.left }px`;
						element.style.width = `${ stickyDimensions.width }px`;
						element.style.zIndex = '999';
						// Else if the container is struck and the scroll is at the parent bottom, restrict it there.
					} else if ( attr?.UAGStickyRestricted && ! element.classList.contains( 'uagb-position__sticky--restricted' ) && scrollPosition >= parentHaltAt.bottom ) {
						element.classList.remove( 'uagb-position__sticky--stuck' );
						element.classList.add( 'uagb-position__sticky--restricted' );
						element.style.top = '';
						element.style.bottom = `${ parentInnerPositions.bottom }px`;
						element.style.left = `${ fillerElement?.offsetLeft || 0 }px`;
						// Else if the container is already restricted and the scroll has returned above the parent bottom, stick it again.
					} else if ( element.classList.contains( 'uagb-position__sticky--restricted' ) && scrollPosition < parentHaltAt.bottom ) {
						element.classList.remove( 'uagb-position__sticky--restricted' );
						element.classList.add( 'uagb-position__sticky--stuck' );
						element.style.top = haltAtPosition;
						element.style.bottom = '';
						element.style.left = `${ stickyDimensions.left }px`;
						element.style.width = `${ stickyDimensions.width }px`;
						element.style.zIndex = '999';
					}
				} else if ( scrollPosition < haltAt && element.classList.contains( 'uagb-position__sticky--stuck' ) ) {
					element.parentNode.removeChild( fillerElement );
					element.classList.remove( 'uagb-position__sticky--stuck' );
					element.style.top = '';
					element.style.left = '';
					element.style.width = '';
					element.style.zIndex = '';
				}
			} );
		}
	},
};PK��][�e��7ultimate-addons-for-gutenberg/assets/js/timeline.min.jsnu�[���function uagbTimelineInit(){const e=document.querySelector("iframe[name='editor-canvas']");let t;var r=t=(e?e.contentDocument:document).querySelectorAll(".uagb-timeline");if(0!==r.length)for(const a of r){const _=a.querySelector(".uagb-timeline__line__inner"),s=a.querySelector(".uagb-timeline__line");var i=a.querySelectorAll(".uagb-timeline__marker"),l=a.querySelector(".uagb-timeline__field:nth-last-child(2)"),l=l||a.querySelector(".block-editor-block-list__block:last-child");const c=i[0],m=i[i.length-1];setTimeout(()=>{s.style.top=c?.offsetTop+"px"},300);var n,u,o,l=l?.offsetHeight,l=(a.classList.contains("uagb-timeline__arrow-center")?s.style.bottom=m?.offsetTop+"px":a.classList.contains("uagb-timeline__arrow-top")?(n=l-m?.offsetTop,s.style.bottom=n+"px"):a.classList.contains("uagb-timeline__arrow-bottom")&&(n=l-m?.offsetTop,s.style.bottom=n+"px"),3*i[0]?.offsetHeight),g=document?.documentElement?.clientHeight/2+l,i=document.body,l=document.documentElement,i=Math.max(i.scrollHeight,i.offsetHeight,l.clientHeight,l.scrollHeight,l.offsetHeight),l=i-m?.getBoundingClientRect()?.top,i=i-c?.getBoundingClientRect()?.top-l,l=c?.getBoundingClientRect()?.top+window?.scrollY-(window?.innerHeight-window?.innerHeight/3);l<document?.documentElement?.scrollTop&&((l=i/100*((document?.documentElement?.scrollTop-l)/i*100))<60+i&&(_.style.height=l+"px"));const d=a.querySelectorAll(".uagb-timeline__marker");let t=a.querySelectorAll(".uagb-timeline__field");0===t.length&&(t=a.querySelectorAll(".uagb-timeline__animate-border"));for(let e=0;e<d.length;e++)o=d[e].lastElementChild.getBoundingClientRect().top+window.scrollY,u=t[e].lastElementChild.getBoundingClientRect().top+window.scrollY,o=o-document.documentElement.scrollTop,u-document.documentElement.scrollTop<g?(t[e].classList.remove("out-view"),t[e].classList.add("in-view")):(t[e].classList.add("out-view"),t[e].classList.remove("in-view")),o<g?(d[e].classList.remove("uagb-timeline__out-view-icon"),d[e].classList.add("uagb-timeline__in-view-icon")):(d[e].classList.add("uagb-timeline__out-view-icon"),d[e].classList.remove("uagb-timeline__in-view-icon"))}}function UAGBTimelineClasses(l,e){e=document.querySelectorAll(e);if(0!==e.length){var n=Math.max(window.screen.width,window.innerWidth);for(const o of e){o.classList.remove("uagb-timeline__left-block","uagb-timeline__right-block","uagb-timeline__center-block");let e="",t=(n<=uagb_timeline_data.mobile_breakpoint?e="Mobile":n<=uagb_timeline_data.tablet_breakpoint&&(e="Tablet"),"left"===l["timelinAlignment"+e]?o.classList.add("uagb-timeline__left-block"):"right"===l["timelinAlignment"+e]?o.classList.add("uagb-timeline__right-block"):o.classList.add("uagb-timeline__center-block"),o.querySelectorAll(".wp-block-uagb-content-timeline-child")),i=0;for(const a of t=0===t.length?o.querySelectorAll(".uagb-timeline__field"):t){a.classList.remove("uagb-timeline__left","uagb-timeline__right");const s=a.querySelectorAll(".uagb-timeline__marker")[0],c=(s.classList.remove("uagb-timeline__left","uagb-timeline__right"),a.querySelectorAll(".uagb-timeline__events-inner-new")[0]);c.classList.remove("uagb-timeline__day-right","uagb-timeline__day-left"),"left"===l["timelinAlignment"+e]?(a.classList.add("uagb-timeline__left"),s.classList.add("uagb-timeline__left"),c.classList.add("uagb-timeline__day-left")):"right"===l["timelinAlignment"+e]?(a.classList.add("uagb-timeline__right"),s.classList.add("uagb-timeline__left"),c.classList.add("uagb-timeline__day-right")):"center"===l["timelinAlignment"+e]&&(i%2==0?(a.classList.add("uagb-timeline__right"),s.classList.add("uagb-timeline__right"),c.classList.add("uagb-timeline__day-right")):(a.classList.add("uagb-timeline__left"),s.classList.add("uagb-timeline__left"),c.classList.add("uagb-timeline__day-left"))),i++}}}}window.addEventListener("DOMContentLoaded",uagbTimelineInit),window.addEventListener("resize",uagbTimelineInit),window.addEventListener("scroll",uagbTimelineInit),document.addEventListener("UAGTimelineEditor",uagbTimelineInit);PK��][�ˇ�)�)@ultimate-addons-for-gutenberg/assets/js/table-of-contents.min.jsnu�[���let scrollData=!0,scrollOffset=30,scrolltoTop=!1,scrollElement=null,uagbTOCCollapseListener=!0;UAGBTableOfContents={_getDocumentElement(){let e=document;var t=document.querySelectorAll('iframe[name="editor-canvas"]');return!t?.length||(t=t?.[0]?.contentWindow?.document||t?.[0]?.contentDocument)&&(e=t),e},_setCollapseIconMargin(o,l){const s=UAGBTableOfContents._getDocumentElement(),r=s.querySelector(o),u=r.querySelector(".uagb-toc__loader");var n=r.querySelector("li.uagb-toc__list:not(.uagb-toc__list--expandable)");if(n){n=window.getComputedStyle(n).fontSize;const m=r.querySelector(".uagb-toc__list-wrap");var g=`calc(${n} / 3)`,a=o?.replace(/\./g,"");const c=s.querySelector(`#${a}-toc-style`),d=(c&&c.remove(),s.createElement("style")),p=(d.id=a+"-toc-style",navigator.userAgent.toLowerCase());var a=/^((?!chrome|android|crios|fxios).)*safari/i.test(p)&&!p.includes("edge"),i=p.includes("firefox");let e,t="-0.5px";"disc"===l?.markerView&&(a||i?(e=5+5*((parseFloat(n)-8)/8)+"px",t=i?"1px":"-0.5px"):e=n),"decimal"===l?.markerView&&(a=(e=>{e=parseFloat(e);return.25*e+2*Math.max(0,(e-16)/8)})(n),e=parseFloat(n)-a+"px",t="1px"),d.innerHTML+=`
				${o} .list-open::before,
				${o} .list-collapsed::before {
					width: ${g};
				}
				${o} .list-open,
				${o} .list-collapsed {
					margin-right: ${e};
					margin-left: ${t};
				}
				[dir="rtl"] ${o} .list-open,
				[dir="rtl"] ${o} .list-collapsed {
					margin-right: ${t};
					margin-left: ${e};
				}
			`,s.head.appendChild(d),setTimeout(()=>{r.style.opacity="",u?.remove(),m?.classList.remove("uagb-toc__list-hidden")},300)}},_initCollapsableList(e,t){const o=UAGBTableOfContents._getDocumentElement(),l=o.querySelector(e);if(t?.isFrontend&&t?.enableCollapsableList&&!l.classList.contains("init-collapsed-script")){l.classList.add("init-collapsed-script");const s=l.querySelectorAll("ul.uagb-toc__list"),r=("function"==typeof UAGBTableOfContents._setCollapseIconMargin&&UAGBTableOfContents._setCollapseIconMargin(e,t),s.forEach(e=>{const t=e.parentElement.querySelector(".list-open");var o;e.classList.add("transition"),e.dataset.originalMaxHeight=e.scrollHeight+"px",t?(o="true"===t.getAttribute("aria-expanded"),e.style.maxHeight=o?e.dataset.originalMaxHeight:"0px",e.style.overflow=o?"visible":"hidden",e.addEventListener("transitionend",()=>{"0px"!==e.style.maxHeight&&(e.style.overflow="visible")})):(e.style.maxHeight=e.dataset.originalMaxHeight,e.style.overflow="visible")}),Array.from(l.getElementsByClassName("list-open")));r.forEach(o=>{const t=()=>{const e=o.parentElement.querySelector("ul");if(e){const t="true"===o.getAttribute("aria-expanded");o.setAttribute("aria-expanded",!t),t||e.classList.remove("uagb-toc__list--hidden-child"),setTimeout(()=>{t?(e.style.maxHeight="0px",e.style.overflow="hidden"):e.style.maxHeight=e.dataset.originalMaxHeight,o.classList.toggle("list-open",!t),o.classList.toggle("list-collapsed",t),e.classList.toggle("uagb-toc__list--child-of-closed-list")},0),t&&setTimeout(()=>{e.classList.add("uagb-toc__list--hidden-child")},300)}};o.addEventListener("click",t),o.addEventListener("keydown",e=>{"Enter"!==e.key&&" "!==e.key||(e.preventDefault(),t())}),o.setAttribute("aria-expanded",o.classList.contains("list-open"))}),t?.initiallyCollapseList&&s.forEach(e=>{if(e.parentElement.querySelector("span")){e.style.maxHeight="0px",e.style.overflow="hidden",e.classList.add("uagb-toc__list--child-of-closed-list"),setTimeout(()=>{e.classList.add("uagb-toc__list--hidden-child")},300);const t=e.parentElement.querySelector(".list-open");t&&(t.setAttribute("aria-expanded","false"),t.classList.remove("list-open"),t.classList.add("list-collapsed"))}})}},init(r,n){(!n?.makeCollapsible||n?.initialCollapse)&&n?.makeCollapsible||UAGBTableOfContents._initCollapsableList(r,n);const e=UAGBTableOfContents._getDocumentElement();if(null!==document.querySelector(".uagb-toc__list")&&document.querySelector(".uagb-toc__list").addEventListener("click",UAGBTableOfContents._scroll),null!==document.querySelector(".uagb-toc__scroll-top")&&document.querySelector(".uagb-toc__scroll-top").addEventListener("click",UAGBTableOfContents._scrollTop),n?.makeCollapsible){const a=e.querySelector(r);uagbTOCCollapseListener&&(e.addEventListener("click",function(e){const t=e.target,o="path"===t?.tagName||"svg"===t?.tagName||"DIV"===t?.tagName,l="uagb-toc__title"===t?.className||"uagb-toc__title"===t?.parentNode?.className||"svg"===t?.parentNode?.tagName;if(o&&l){const s=t?.closest(".wp-block-uagb-table-of-contents"+r);e=a?.querySelector(".wp-block-uagb-table-of-contents .uagb-toc__list-wrap");e&&(s?.classList?.contains("uagb-toc__collapse")?(s?.classList?.remove("uagb-toc__collapse"),UAGBTableOfContents._slideDown(e,500,r,n)):(s?.classList?.add("uagb-toc__collapse"),UAGBTableOfContents._slideUp(e,500)))}}),uagbTOCCollapseListener=!1)}document.addEventListener("scroll",UAGBTableOfContents._showHideScroll)},_slideUp(e,t){e.style.transitionProperty="height, margin, padding",e.style.transitionDuration=t+"ms",e.style.boxSizing="border-box",e.style.height=e.offsetHeight+"px",e.offsetHeight,e.style.overflow="hidden",e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0,e.style.marginTop=0,e.style.marginBottom=0,window.setTimeout(()=>{e.style.display="none",e.style.removeProperty("height"),e.style.removeProperty("padding-top"),e.style.removeProperty("padding-bottom"),e.style.removeProperty("margin-top"),e.style.removeProperty("margin-bottom"),e.style.removeProperty("overflow"),e.style.removeProperty("transition-duration"),e.style.removeProperty("transition-property")},t)},_slideDown(e,t,o,l){e.style?.removeProperty("display");let s=window?.getComputedStyle(e).display;"none"===s&&(s="block"),e.style.display=s;var r=e.offsetHeight;e.style.overflow="hidden",e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0,e.style.marginTop=0,e.style.marginBottom=0,e.offsetHeight,e.style.boxSizing="border-box",e.style.transitionProperty="height, margin, padding",e.style.transitionDuration=t+"ms",e.style.height=r+"px",e.style.removeProperty("padding-top"),e.style.removeProperty("padding-bottom"),e.style.removeProperty("margin-top"),e.style.removeProperty("margin-bottom"),window.setTimeout(()=>{e.style.removeProperty("height"),e.style.removeProperty("overflow"),e.style.removeProperty("transition-duration"),e.style.removeProperty("transition-property"),UAGBTableOfContents._initCollapsableList(o,l)},t)},hyperLinks(){const e=window.location.hash.substring(0);if(""!==e&&!/[^a-z0-9_-]$/.test(e)){encodeURI(e.substring(0));var t=e.replace(/([.#$+\^*[\](){}|\\])/g,"\\$1");if(null!==document?.querySelector(t)){const o=document.querySelector(".wp-block-uagb-table-of-contents");scrollOffset=o.getAttribute("data-offset");t=document.querySelector(e).offsetTop;null!==t&&scroll({top:t-scrollOffset,behavior:"smooth"})}}},_showHideScroll(){null!==(scrollElement=document.querySelector(".uagb-toc__scroll-top"))&&(300<window.scrollY&&scrolltoTop?scrollElement.classList.add("uagb-toc__show-scroll"):scrollElement.classList.remove("uagb-toc__show-scroll"))},_scrollTop(){window.scrollTo({top:0,behavior:"smooth"})},_scroll(e){e.preventDefault();let t=e.target.getAttribute("href");if(!t&&e.target.tagName&&"A"!==e.target.tagName){const o=e.target.closest("a");o&&(t=o.getAttribute("href"))}if(t){const l=document.querySelector(".wp-block-uagb-table-of-contents");scrollData=l.getAttribute("data-scroll"),scrollOffset=l.getAttribute("data-offset");let e=null;t=t.substring(1),document?.querySelector("[id='"+t+"']")&&(e=document.querySelector("[id='"+t+"']")?.getBoundingClientRect().top+window.scrollY),scrollData?null!==e&&scroll({top:e-scrollOffset,behavior:"smooth"}):scroll({top:e,behavior:"auto"})}},selectDomElement(e){const t=document.querySelector(e+":not(.script-init)");return t?(t.classList.add("script-init"),t):null},parseTocSlug(e){if(!e)return e;e=e.toString().toLowerCase().replace(/\…+/g,"").replace(/\u2013|\u2014/g,"").replace(/&(amp;)/g,"").replace(/[&]nbsp[;]/gi,"-").replace(/[^a-zA-Z0-9\u00C0-\u017F _-]/g,"").replace(/&(mdash;)/g,"").replace(/\s+/g,"-").replace(/[&\/\\#,^!+()$~%.\[\]'":*?;-_<>{}@‘’”“|]/g,"").replace(/\-\-+/g,"-").replace(/^-+/,"").replace(/-+$/,"");return decodeURI(encodeURIComponent(e))},mapTocAnchorsForHref(e){for(const o of e){var t=o.textContent,t=UAGBTableOfContents.parseTocSlug(t);o.setAttribute("href","#"+t)}},_run(e,t){setTimeout(function(){UAGBTableOfContents._runWithTimeOut(e,t)},500)},_runWithTimeOut(t,p){const o=UAGBTableOfContents.selectDomElement(p);if(o){null!==o.querySelector(".uag-toc__collapsible-wrap")&&0<o.querySelector(".uag-toc__collapsible-wrap").length&&o.querySelector(".uagb-toc__title-wrap").classList.add("uagb-toc__is-collapsible");const l=[];let e;void 0!==t.mappingHeaders&&(t.mappingHeaders.forEach(function(e,t){!0===e&&l.push("h"+(t+1))}),e=null!==l?l.join(","):"");var u=void 0!==e&&""!==e?document.body.querySelectorAll(e):document.body.querySelectorAll("h1, h2, h3, h4, h5, h6");if(0!==u.length){const s=o.querySelector(".uagb-toc__list-wrap");if(!s)return;const r=Array.from(u),n=s.getElementsByTagName("a");UAGBTableOfContents.mapTocAnchorsForHref(n);function g(e=[]){const o=[];return e.reduce((e,t)=>((e.some(e=>e.innerText===t.innerText)?o:e).push(t),e),[]),o}const a=g(r);for(let e=0;e<r.length;e++){let t=UAGBTableOfContents.parseTocSlug(r[e].innerText);if(""!==r[e].innerText&&t.length<1){var m=r[e].innerText;for(let e=0;e<n.length;e++)if(n[e].textContent===m){const c="#toc_"+Math.random();n[e].setAttribute("href",c),t=c.substring(1)}}const i=document.createElement("span");i.id=t,i.className="uag-toc__heading-anchor",r[e].prepend(i);for(let t=0;t<a.length;t++){const y="#toc_"+Math.random();a[t]?.querySelector(".uag-toc__heading-anchor")?.setAttribute("id",y.substring(1));const b=g(Array.from(s.getElementsByTagName("a")));for(let e=0;e<b.length;e++)b[t]?.setAttribute("href",y)}}}scrolltoTop=t.scrollToTop;if(null===(scrollElement=document.querySelector(".uagb-toc__scroll-top"))){const d=document.createElement("div");d.classList.add("uagb-toc__scroll-top"),d.innerHTML='<svg xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"><path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/></svg>',document.body.appendChild(d)}null!==scrollElement&&scrollElement.classList.add("uagb-toc__show-scroll"),UAGBTableOfContents._showHideScroll(),UAGBTableOfContents.hyperLinks(),UAGBTableOfContents.init(p,t)}}};PK��][Y��|LL3ultimate-addons-for-gutenberg/assets/js/post.min.jsnu�[���let loadStatus=!0;function uagb_carousel_height(e){e=document.querySelector("#wpwrap .is-carousel.uagb-block-"+e);e&&window.UAGBPostCarousel._setHeight(e)}function uagb_carousel_unset_height(e){e=document.querySelector("#wpwrap .is-carousel.uagb-block-"+e);e&&window.UAGBPostCarousel._unSetHeight(e)}window.UAGBPostCarousel={_setHeight(e){if(0<e.length){const s=e[0].querySelectorAll(".slick-slide"),l=e[0].querySelectorAll(".slick-slide.slick-active");let a=-1,o=-1,n=-1,r=(Object.keys(l).forEach(e=>{var t=l[e].offsetHeight,e=l[e].querySelector(".uagb-post__inner-wrap")?.offsetHeight;a<e&&(a=e,n=a+15),o<t&&(o=t)}),Object.keys(l).forEach(e=>{const t=l[e].querySelector(".uagb-post__inner-wrap");t&&(t.style.height=a+"px")}),e[0].querySelector(".slick-list"));r&&(r.style.height=n+"px"),a=-1,o=-1,Object.keys(s).forEach(e=>{const t=s[e];if(t.classList.contains("slick-active"))return!0;e=(r=t.querySelector(".uagb-post__inner-wrap"))?.offsetHeight;e&&(r.style.height=e+"px")})}},_unSetHeight(e){if(0<e.length){const o=e[0].querySelectorAll(".slick-slide"),a=e[0].querySelectorAll(".slick-slide.slick-active");Object.keys(a).forEach(e=>{const t=a[e].querySelector(".uagb-post__inner-wrap");t.style.height="auto"}),Object.keys(a).forEach(e=>{const t=o[e];if(t.classList.contains("slick-active"))return!0;const a=t.querySelector(".uagb-post__inner-wrap");a.style.height="auto"})}}},window.UAGBPostMasonry={_init(o,e){let n=2;const r=window.innerHeight/1.25;let s=document.querySelector(e);const l=s?.querySelectorAll(".uagb-post-inf-loader");"none"!==o.paginationType&&"scroll"===o.paginationEventType&&window.addEventListener("scroll",function(){let e=s.querySelector(".uagb-post__items");var t,a=(e=e||s).lastElementChild.getBoundingClientRect().top+window.scrollY;window.pageYOffset+r>=a&&(a={page_number:n},t=s.getAttribute("data-total"),!0===loadStatus&&n<=t&&(0<l.length&&(l[0].style.display="none"),window.UAGBPostMasonry._callAjax(s,a,o,l,!1,n),n++,loadStatus=!1))}),"button"===o.paginationEventType&&s?.querySelector(".uagb-post-pagination-button")&&(s.style.marginBottom="40px",s.querySelector(".uagb-post-pagination-button").onclick=function(){var e=(s=this.closest(".uagb-post-grid")).getAttribute("data-total"),t={total:e,page_number:n};s.querySelector(".uagb-post__load-more-wrap").style.display="none",!0===loadStatus&&n<=e&&(0<l.length&&(l[0].style.display="none"),s.querySelector(".uagb-post__load-more-wrap").style.display="block",window.UAGBPostMasonry._callAjax(s,t,o,l,!0,n),n++,loadStatus=!1)})},createElementFromHTML(e){const t=document.createElement("div");return t.innerHTML=e.trim(),t},_callAjax(l,i,c,u,g=!1,p){const e=new FormData;e.append("action","uagb_get_posts"),e.append("nonce",uagb_data.uagb_masonry_ajax_nonce),e.append("page_number",i.page_number),e.append("attr",JSON.stringify(c)),fetch(uagb_data.ajax_url,{method:"POST",credentials:"same-origin",body:e}).then(e=>e.json()).then(function(r){let s=l.querySelector(".is-masonry");s=s||l,setTimeout(function(){const e=new Isotope(s,{itemSelector:"article"});e.insert(window.UAGBPostMasonry.createElementFromHTML(r.data)),loadStatus=!0,0<u.length&&(u[0].style.display="none"),!0===g&&(l.querySelector(".uagb-post__load-more-wrap").style.display="block"),p===parseInt(i.total)&&(l.querySelector(".uagb-post__load-more-wrap").style.display="none");for(const o of document.querySelectorAll(".uagb-post__image-position-background .uagb-post__inner-wrap")){var t=o.offsetWidth,a=c.rowGap,t=100-a/t*100;const n=o.getElementsByClassName("uagb-post__image");n[0]&&(n[0].style.width=t+"%",n[0].style.marginLeft=a/2+"px")}},500)}).catch(function(e){})}},window.UAGBPostGrid={_callAjax(r,e,s){const t=new FormData;t.append("action","uagb_post_pagination_grid"),t.append("nonce",uagb_data.uagb_grid_ajax_nonce),t.append("page_number",e),t.append("attr",JSON.stringify(r)),fetch(uagb_data.ajax_url,{method:"POST",credentials:"same-origin",body:t}).then(e=>e.json()).then(function(e){const t=document.querySelector(".uagb-block-"+s);if(t){const o=e.data.replace(/\n|\t/g,"");e=(t.outerHTML=o).match(/uagb-block-([\w-]+)/)?.[1]||"";{var a=e;const n=document.querySelectorAll(`.uagb-post-grid.uagb-block-${a} .uagb-post-pagination-wrap a`);n.forEach(e=>{e.addEventListener("click",e=>{e.preventDefault();const t=e.target.getAttribute("href").match(/admin-ajax.*/)?.[0]||"";e=t.match(/\d+/)?.[0]||1;window.UAGBPostGrid._callAjax(r,parseInt(e),a)})})}}else;})}};PK��][��\\:ultimate-addons-for-gutenberg/assets/js/testimonial.min.jsnu�[���function uagb_carousel_height(e){e=document.querySelector("#wpwrap .uagb-block-"+e+" .is-carousel");e&&window.UAGBTestimonialCarousel._setHeight(e)}function uagb_carousel_unset_height(e){e=document.querySelector("#wpwrap .uagb-slick-carousel.uagb-block-"+e);e&&window.UAGBTestimonialCarousel._unSetHeight(e)}window.UAGBTestimonialCarousel={_setHeight(e){if(0<e.length){const o=e[0].querySelectorAll(".slick-slide"),r=e[0].querySelectorAll(".slick-slide.slick-active");let l=-1,s=-1,c=-1,i=(Object.keys(r).forEach(e=>{var t=r[e].offsetHeight,e=r[e].querySelector(".uagb-testimonial__wrap").offsetHeight;l<e&&(l=e,c=l+15),s<t&&(s=t)}),Object.keys(r).forEach(e=>{const t=r[e].querySelector(".uagb-testimonial__wrap");t.style.height=l+"px"}),e[0].querySelector(".slick-list"));i.style.height=c+"px",l=-1,s=-1,Object.keys(o).forEach(e=>{const t=o[e];if(t.classList.contains("slick-active"))return!0;e=(i=t.querySelector(".uagb-testimonial__wrap")).offsetHeight;i.style.height=e+"px"})}},_unSetHeight(e){if(0<e.length){const s=e[0].querySelectorAll(".slick-slide"),l=e[0].querySelectorAll(".slick-slide.slick-active");Object.keys(l).forEach(e=>{const t=l[e].querySelector(".uagb-tm__content");t.style.height="auto"}),Object.keys(l).forEach(e=>{const t=s[e];if(t.classList.contains("slick-active"))return!0;const l=t.querySelector(".uagb-tm__content");l.style.height="auto"})}}};PK��][�5r�G5G52ultimate-addons-for-gutenberg/assets/js/aos.min.jsnu�[���!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.AOS=t():e.AOS=t()}(this,function(){return n=[function(d,f,e){"use strict";function t(e){return e&&e.__esModule?e:{default:e}}function o(){c=(0,r.default)(),s()}var l=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var o,n=arguments[t];for(o in n)Object.prototype.hasOwnProperty.call(n,o)&&(e[o]=n[o])}return e},m=(t(e(1)),e(6)),p=t(m),n=t(e(7)),b=t(e(8)),i=t(e(9)),a=t(e(10)),v=t(e(11)),r=t(e(14)),c=[],y=!1,u={offset:120,delay:0,easing:"ease",duration:400,disable:!1,once:!1,startEvent:"DOMContentLoaded",throttleDelay:99,debounceDelay:50,disableMutationObserver:!1},s=function(){if(y=0<arguments.length&&void 0!==arguments[0]&&arguments[0]?!0:y)return c=(0,v.default)(c,u),(0,a.default)(c,u.once),c};d.exports={init:function(e){u=l(u,e),c=(0,r.default)();var t,e=document.all&&!window.atob;return!0===(t=u.disable)||"mobile"===t&&i.default.mobile()||"phone"===t&&i.default.phone()||"tablet"===t&&i.default.tablet()||"function"==typeof t&&!0===t()||e?void c.forEach(function(e,t){e.node.removeAttribute("data-aos"),e.node.removeAttribute("data-aos-easing"),e.node.removeAttribute("data-aos-duration"),e.node.removeAttribute("data-aos-delay")}):(document.querySelector("body").setAttribute("data-aos-easing",u.easing),document.querySelector("body").setAttribute("data-aos-duration",u.duration),document.querySelector("body").setAttribute("data-aos-delay",u.delay),"DOMContentLoaded"===u.startEvent&&-1<["complete","interactive"].indexOf(document.readyState)?s(!0):("load"===u.startEvent?window:document).addEventListener(u.startEvent,function(){s(!0)}),window.addEventListener("resize",(0,n.default)(s,u.debounceDelay,!0)),window.addEventListener("orientationchange",(0,n.default)(s,u.debounceDelay,!0)),window.addEventListener("scroll",(0,p.default)(function(){(0,a.default)(c,u.once)},u.throttleDelay)),u.disableMutationObserver||(0,b.default)("[data-aos]",o),c)},refresh:s,refreshHard:o}},function(e,t){},,,,,function(m,e){!function(e){"use strict";function a(f,o,e){function l(e){var t=i,o=a;return i=a=void 0,s=e,r=f.apply(o,t)}function m(e){var t=e-u;return void 0===u||o<=t||t<0||d&&b<=e-s}function n(){var e,t=k();return m(t)?p(t):void(c=setTimeout(n,(e=o-((t=t)-u),d?j(e,b-(t-s)):e)))}function p(e){return c=void 0,y&&i?l(e):(i=a=void 0,r)}function t(){var e=k(),t=m(e);if(i=arguments,a=this,u=e,t){if(void 0===c)return s=e=u,c=setTimeout(n,o),v?l(e):r;if(d)return c=setTimeout(n,o),l(u)}return void 0===c&&(c=setTimeout(n,o)),r}var i,a,b,r,c,u,s=0,v=!1,d=!1,y=!0;if("function"!=typeof f)throw new TypeError(w);return o=h(o)||0,g(e)&&(v=!!e.leading,d="maxWait"in e,b=d?x(h(e.maxWait)||0,o):b,y="trailing"in e?!!e.trailing:y),t.cancel=function(){void 0!==c&&clearTimeout(c),i=u=a=c=void(s=0)},t.flush=function(){return void 0===c?r:p(k())},t}function g(e){var t=void 0===e?"undefined":n(e);return e&&("object"==t||"function"==t)}function o(e){return"symbol"==(void 0===e?"undefined":n(e))||!!(t=e)&&"object"==(void 0===t?"undefined":n(t))&&"[object Symbol]"==l.call(e);var t}function h(e){if("number"==typeof e)return e;if(o(e))return i;if("string"!=typeof(e=g(e)?g(t="function"==typeof e.valueOf?e.valueOf():e)?t+"":t:e))return 0===e?e:+e;e=e.replace(r,"");var t=u.test(e);return t||s.test(e)?d(e.slice(2),t?2:8):c.test(e)?i:+e}var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w="Expected a function",i=NaN,r=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,u=/^0b[01]+$/i,s=/^0o[0-7]+$/i,d=parseInt,e="object"==(void 0===e?"undefined":n(e))&&e&&e.Object===Object&&e,t="object"==("undefined"==typeof self?"undefined":n(self))&&self&&self.Object===Object&&self,f=e||t||Function("return this")(),l=Object.prototype.toString,x=Math.max,j=Math.min,k=function(){return f.Date.now()};m.exports=function(e,t,o){var n=!0,i=!0;if("function"!=typeof e)throw new TypeError(w);return g(o)&&(n="leading"in o?!!o.leading:n,i="trailing"in o?!!o.trailing:i),a(e,t,{leading:n,maxWait:t,trailing:i})}}.call(e,function(){return this}())},function(m,e){!function(e){"use strict";function g(e){var t=void 0===e?"undefined":n(e);return e&&("object"==t||"function"==t)}function o(e){return"symbol"==(void 0===e?"undefined":n(e))||!!(t=e)&&"object"==(void 0===t?"undefined":n(t))&&l.call(e)==a;var t}function h(e){if("number"==typeof e)return e;if(o(e))return i;if("string"!=typeof(e=g(e)?g(t="function"==typeof e.valueOf?e.valueOf():e)?t+"":t:e))return 0===e?e:+e;e=e.replace(r,"");var t=u.test(e);return t||s.test(e)?d(e.slice(2),t?2:8):c.test(e)?i:+e}function w(){return f.Date.now()}var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=NaN,a="[object Symbol]",r=/^\s+|\s+$/g,c=/^[-+]0x[0-9a-f]+$/i,u=/^0b[01]+$/i,s=/^0o[0-7]+$/i,d=parseInt,e="object"==(void 0===e?"undefined":n(e))&&e&&e.Object===Object&&e,t="object"==("undefined"==typeof self?"undefined":n(self))&&self&&self.Object===Object&&self,f=e||t||Function("return this")(),l=Object.prototype.toString,k=Math.max,x=Math.min;m.exports=function(f,o,e){function l(e){var t=i,o=a;return i=a=void 0,s=e,r=f.apply(o,t)}function m(e){var t=e-u;return void 0===u||o<=t||t<0||d&&b<=e-s}function n(){var e,t=w();return m(t)?p(t):void(c=setTimeout(n,(e=o-((t=t)-u),d?x(e,b-(t-s)):e)))}function p(e){return c=void 0,y&&i?l(e):(i=a=void 0,r)}function t(){var e=w(),t=m(e);if(i=arguments,a=this,u=e,t){if(void 0===c)return s=e=u,c=setTimeout(n,o),v?l(e):r;if(d)return c=setTimeout(n,o),l(u)}return void 0===c&&(c=setTimeout(n,o)),r}var i,a,b,r,c,u,s=0,v=!1,d=!1,y=!0;if("function"!=typeof f)throw new TypeError("Expected a function");return o=h(o)||0,g(e)&&(v=!!e.leading,d="maxWait"in e,b=d?k(h(e.maxWait)||0,o):b,y="trailing"in e?!!e.trailing:y),t.cancel=function(){void 0!==c&&clearTimeout(c),i=u=a=c=void(s=0)},t.flush=function(){return void 0===c?r:p(w())},t}}.call(e,function(){return this}())},function(e,t){"use strict";function i(e){e&&e.forEach(function(e){var t=Array.prototype.slice.call(e.addedNodes),e=Array.prototype.slice.call(e.removedNodes);t.concat(e).filter(function(e){return e.hasAttribute&&e.hasAttribute("data-aos")}).length&&a()})}Object.defineProperty(t,"__esModule",{value:!0});var a=function(){};t.default=function(e,t){var o=window.document,n=new(window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver)(i);a=t,n.observe(o.documentElement,{childList:!0,subtree:!0,removedNodes:!0})}},function(s,e){"use strict";function t(){return navigator.userAgent||navigator.vendor||window.opera||""}Object.defineProperty(e,"__esModule",{value:!0});var o=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i,n=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,i=/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i,a=/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i,r=(function(e,t,o){return t&&u(e.prototype,t),o&&u(e,o),e}(c,[{key:"phone",value:function(){var e=t();return!(!o.test(e)&&!n.test(e.substr(0,4)))}},{key:"mobile",value:function(){var e=t();return!(!i.test(e)&&!a.test(e.substr(0,4)))}},{key:"tablet",value:function(){return this.mobile()&&!this.phone()}}]),c);function c(){if(!(this instanceof c))throw new TypeError("Cannot call a class as a function")}function u(e,t){for(var o=0;o<t.length;o++){var n=t[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,n.key,n)}}e.default=new r},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=function(e,a){var r=window.pageYOffset,c=window.innerHeight;e.forEach(function(e,t){var o,n,i;o=c+r,n=a,i=(e=e).node.getAttribute("data-aos-once"),o>e.position?e.node.classList.add("aos-animate"):void 0===i||"false"!==i&&(n||"true"===i)||e.node.classList.remove("aos-animate")})}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=o(12),n=(o=o)&&o.__esModule?o:{default:o};t.default=function(e,o){return e.forEach(function(e,t){e.node.classList.add("aos-init"),e.position=(0,n.default)(e.node,o.offset)}),e}},function(e,t,o){"use strict";Object.defineProperty(t,"__esModule",{value:!0});var o=o(13),r=(o=o)&&o.__esModule?o:{default:o};t.default=function(e,t){var o=0,n=0,i=window.innerHeight,a={offset:e.getAttribute("data-aos-offset"),anchor:e.getAttribute("data-aos-anchor"),anchorPlacement:e.getAttribute("data-aos-anchor-placement")};switch(a.offset&&!isNaN(a.offset)&&(n=parseInt(a.offset)),a.anchor&&document.querySelectorAll(a.anchor)&&(e=document.querySelectorAll(a.anchor)[0]),o=(0,r.default)(e).top,a.anchorPlacement){case"top-bottom":break;case"center-bottom":o+=e.offsetHeight/2;break;case"bottom-bottom":o+=e.offsetHeight;break;case"top-center":o+=i/2;break;case"bottom-center":o+=i/2+e.offsetHeight;break;case"center-center":o+=i/2+e.offsetHeight/2;break;case"top-top":o+=i;break;case"bottom-top":o+=e.offsetHeight+i;break;case"center-top":o+=e.offsetHeight/2+i}return o+(n=a.anchorPlacement||a.offset||isNaN(t)?n:t)}},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=function(e){for(var t=0,o=0;e&&!isNaN(e.offsetLeft)&&!isNaN(e.offsetTop);)t+=e.offsetLeft-("BODY"!=e.tagName?e.scrollLeft:0),o+=e.offsetTop-("BODY"!=e.tagName?e.scrollTop:0),e=e.offsetParent;return{top:o,left:t}}},function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0});t.default=function(e){return e=e||document.querySelectorAll("[data-aos]"),Array.prototype.map.call(e,function(e){return{node:e}})}}],i={},o.m=n,o.c=i,o.p="dist/",o(0);function o(e){if(i[e])return i[e].exports;var t=i[e]={exports:{},id:e,loaded:!1};return n[e].call(t.exports,t,t.exports,o),t.loaded=!0,t.exports}var n,i});PK��][�G8'VV0ultimate-addons-for-gutenberg/assets/js/modal.jsnu�[���document.addEventListener( 'UAGModalEditor', function ( e ) {
	UAGBModal.init( '.uagb-block-' + e.detail.block_id, true );
} );
document.addEventListener( 'AstraQuickViewForModal', function ( e ) {
	UAGBModal.init( e.detail.class_name, false );
} );
window.UAGBModal = {
	init( mainSelector, isAdmin ) {
		const document_element = UAGBModal._getDocumentElement();
		const modalWrapper = document_element.querySelectorAll( mainSelector );
		const siteEditTheme = document_element.getElementsByClassName( 'edit-site' );
		const pageTemplate = document_element.getElementsByClassName( 'block-editor-iframe__body' );

		if ( modalWrapper?.length ) {
			for ( const modalWrapperEl of modalWrapper ) {
				const modalTrigger = modalWrapperEl.querySelector( '.uagb-modal-trigger' );
				const closeOverlayClick = modalWrapperEl.dataset.overlayclick;
				if ( modalTrigger ) {
					modalTrigger.style.pointerEvents = 'auto';

					const innerModal = modalWrapperEl?.querySelector( '.uagb-modal-popup' );
					if ( ! innerModal ) {
						continue;
					}

					if ( ! isAdmin ) {
						document_element.body?.appendChild( innerModal );
					}

					const bodyWrap = document_element.querySelector( 'body' );
					if ( ! bodyWrap ) {
						continue;
					}

					modalTrigger.addEventListener( 'click', function ( e ) {
						e.preventDefault();
						if ( ! innerModal.classList.contains( 'active' ) ) {
							innerModal.classList.add( 'active' );
							// Once this modal is active, create a focusable element to add focus onto the modal and then remove it.
							const focusElement = document.createElement( 'button' );
							focusElement.style.position = 'absolute';
							focusElement.style.opacity = '0';
							const modalFocus = innerModal.insertBefore( focusElement, innerModal.firstChild );
							modalFocus.focus();
							modalFocus.remove();
							if (
								! bodyWrap.classList.contains( 'hide-scroll' ) &&
								! siteEditTheme?.length &&
								! pageTemplate?.length &&
								! bodyWrap.classList.contains( 'wp-admin' )
							) {
								bodyWrap.classList.add( 'hide-scroll' );
							}
						}
					} );
					if ( '.uagb-modal-wrapper' === mainSelector ) { // When we get mainSelector as a uagb-modal-wrapper from AstraQuickViewForModal event we get null for closeModal. So avoid this we need to use uagb-modal-popup as mainSelector.
						mainSelector = '.uagb-modal-popup';
					}
					const closeModal = innerModal.querySelector( `${ mainSelector } .uagb-modal-popup-close` );
					if ( closeModal ) {
						closeModal.addEventListener( 'click', function () {
							if ( innerModal.classList.contains( 'active' ) ) {
								innerModal.classList.remove( 'active' );
								modalTrigger?.focus();
							}
							if ( bodyWrap.classList.contains( 'hide-scroll' ) ) {
								UAGBModal.closeModalScrollCheck( bodyWrap, document_element );
							}
						} );
					}

					if ( 'disable' !== closeOverlayClick ) {
						innerModal.addEventListener( 'click', function ( e ) {
							if (
								'enable' === closeOverlayClick &&
								innerModal.classList.contains( 'active' ) &&
								! innerModal.querySelector( '.uagb-modal-popup-wrap' ).contains( e.target )
							) {
								innerModal.classList.remove( 'active' );
							}
							if ( bodyWrap.classList.contains( 'hide-scroll' ) ) {
								UAGBModal.closeModalScrollCheck( bodyWrap, document_element );
							}
						} );
					}

					document.addEventListener( 'keyup', function ( e ) {
						const closeOnEsc = modalWrapperEl.dataset.escpress;
						if ( 27 === e.keyCode && 'enable' === closeOnEsc ) {
							if ( innerModal.classList.contains( 'active' ) ) {
								innerModal.classList.remove( 'active' );
								modalTrigger?.focus();
							}
							if ( bodyWrap.classList.contains( 'hide-scroll' ) ) {
								UAGBModal.closeModalScrollCheck( bodyWrap, document_element );
							}
						}
					} );
				}
			}
		}
	},
	// Get the Document element if it's inside an iFrame.
	_getDocumentElement() {
		let document_element = document;
		const getEditorIframe = document.querySelectorAll( 'iframe[name="editor-canvas"]' );
		if ( getEditorIframe?.length ) {
			const iframeDocument = getEditorIframe[0]?.contentWindow?.document || getEditorIframe[0]?.contentDocument;
			if ( iframeDocument ) {
				document_element = iframeDocument;
			}
		}
		return document_element;
	},
	// Close the Modal and check if the Scrollbar needs to be reactivated.
	closeModalScrollCheck( bodyWrapper, document_element ) {
		const allActiveModals = document_element.querySelectorAll( '.uagb-modal-popup.active' );
		if ( ! allActiveModals?.length ) {
			bodyWrapper.classList.remove( 'hide-scroll' );
		}
	},
};
PK��][�@K��5ultimate-addons-for-gutenberg/assets/js/lottie.min.jsnu�[���UAGBLottie={getElement:e=>{const t=document.querySelector(`.${e}:not(.uagb-activated-script)`);return t?(t.classList.add("uagb-activated-script"),t):null},_run(e,t){const n=UAGBLottie.getElement(t);if(n){const o=bodymovin.loadAnimation({container:n,renderer:"svg",loop:e.loop,autoplay:"none"===e.playOn,path:e.lottieURl,rendererSettings:{preserveAspectRatio:"xMidYMid",className:"uagb-lottie-inner-wrap"}});o.setSpeed(e.speed);t=e.reverse&&e.loop?-1:1;o.setDirection(t),"hover"===e.playOn?(n.addEventListener("mouseenter",function(){o.play()}),n.addEventListener("mouseleave",function(){o.stop()})):"click"===e.playOn?n.addEventListener("click",function(){o.stop(),o.play()}):"scroll"===e.playOn&&window.addEventListener("scroll",function(){o.stop(),o.play()})}}};PK��][;9�Z+Z+<ultimate-addons-for-gutenberg/assets/js/image-gallery.min.jsnu�[���let spectraImageGalleryLoadStatus=!0,clickedImageId=null;const UAGBImageGalleryMasonry={initByOffset(t,a){if(t&&a){t.classList.add("scroll-not-init"),t.classList.add("last-image-not-loaded");var l=t.querySelectorAll("img");if(l.length){const r=l[l.length-1];r.addEventListener("load",()=>{t.classList.remove("last-image-not-loaded"),setTimeout(function(){a.layout()},100)})}let e=null;window.addEventListener("scroll",function(){t.classList.contains("scroll-not-init")&&(clearTimeout(e),UAGBImageGalleryMasonry.presentInViewport(t)&&(t.classList.remove("scroll-not-init"),e=setTimeout(function(){a.layout()},100)))})}},init(l,r,e,t){let o=2;const n=window.innerHeight/1.25,i=document.querySelector(r);let s=null;l.lightboxThumbnails&&(s=new Swiper(r+"+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails",t),e={...e,thumbs:{swiper:s}});const c=new Swiper(r+"+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main",e),g=(c.lazy.load(),loadLightBoxImages(i,c,null,l,s),i?.querySelector(".spectra-image-gallery__control-loader")),a=i?.querySelector(".spectra-image-gallery__control-button");l.feedPagination&&l.paginateUseLoader?window.addEventListener("scroll",function(){let e=i?.querySelector(".spectra-image-gallery__media-wrapper");var t,a=(e=e||i).lastElementChild.getBoundingClientRect().top+window.scrollY;window.pageYOffset+n>=a&&(a={page_number:o},t=l.gridPages,spectraImageGalleryLoadStatus&&(o>t&&(g.style.display="none"),o<=t&&(UAGBImageGalleryMasonry.callAjax(i,a,l,!1,o,r,c,s),o++,spectraImageGalleryLoadStatus=!1)))}):l.feedPagination&&!l.paginateUseLoader&&(a.onclick=function(){var e=l.gridPages,t={total:e,page_number:o};a.classList.add("disabled"),spectraImageGalleryLoadStatus&&o<=e&&(UAGBImageGalleryMasonry.callAjax(i,t,l,!1,o,r,c,s),o++,spectraImageGalleryLoadStatus=!1)})},createElementFromHTML(e){const t=document.createElement("div");e=e.replace(/\s+/gm," ").replace(/( )+/gm," ").trim();return t.innerHTML=e,t},getCustomURL(e,t){const a=new RegExp("^((http|https)://)(www.)?[a-zA-Z0-9@:%._\\+~#?&//=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%._\\+~#?&//=]*)$");e=parseInt(e.getAttribute("data-spectra-gallery-image-id"));return a.test(t?.customLinks[e])?t.customLinks[e]:void 0},openCustomURL(e){window.open(e,"_blank")},addClickEvents(e,a){const t=e?.querySelectorAll(".spectra-image-gallery__media-wrapper");t.forEach(e=>{const t=UAGBImageGalleryMasonry.getCustomURL(e,a);t&&(e.style.cursor="pointer",e.addEventListener("click",()=>UAGBImageGalleryMasonry.openCustomURL(t)),e.addEventListener("keydown",e=>{13!==e.keyCode&&32!==e.keyCode||(e.preventDefault(),UAGBImageGalleryMasonry.openCustomURL(t))}))})},callAjax(l,r,o,n=!1,i,s,c,g){const e=new FormData;e.append("action","uag_load_image_gallery_masonry"),e.append("nonce",uagb_image_gallery.uagb_image_gallery_masonry_ajax_nonce),e.append("page_number",r.page_number),e.append("attr",JSON.stringify(o)),fetch(uagb_image_gallery.ajax_url,{method:"POST",credentials:"same-origin",body:e}).then(e=>e.json()).then(function(t){let a=l?.querySelector(".spectra-image-gallery__layout--masonry");a=a||l,setTimeout(function(){const e=new Isotope(a,{itemSelector:".spectra-image-gallery__media-wrapper--isotope",stagger:10});e.insert(UAGBImageGalleryMasonry.createElementFromHTML(t.data)),imagesLoaded(a).on("progress",function(){e.layout()}),imagesLoaded(a).on("always",function(){const e=document.querySelector(s),t=e?.querySelector(".spectra-image-gallery__control-button");t?.classList?.remove("disabled"),loadLightBoxImages(e,c,null,o,g)}),"url"===o.imageClickEvent&&o.customLinks&&UAGBImageGalleryMasonry.addClickEvents(a,o),(spectraImageGalleryLoadStatus=!0)===n&&l?.querySelector(".spectra-image-gallery__control-button").classList.toggle("disabled"),i===parseInt(r.total)&&(l.querySelector(".spectra-image-gallery__control-button").style.opacity=0,setTimeout(()=>{l.querySelector(".spectra-image-gallery__control-button").parentElement.style.display="none"},2e3))},500)})},presentInViewport(e){e=e.getBoundingClientRect();return 0<=e.top&&0<=e.left&&e.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&e.right<=(window.innerWidth||document.documentElement.clientWidth)}},UAGBImageGalleryPagedGrid={init(r,o,e,t){let n=1;const i=document.querySelector(o);let s=null;r.lightboxThumbnails&&(s=new Swiper(o+"+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails",t),e={...e,thumbs:{swiper:s}});const c=new Swiper(o+"+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main",e),g=(c.lazy.load(),loadLightBoxImages(i,c,n,r,s),i?.querySelectorAll(".spectra-image-gallery__control-arrows--grid")),a=i?.querySelectorAll(".spectra-image-gallery__control-dot");for(let e=0;e<g.length;e++)g[e].addEventListener("click",e=>{const t=e.currentTarget;let a=n;switch(t.getAttribute("data-direction")){case"Prev":--a;break;case"Next":++a}i?.querySelector(".spectra-image-gallery__media-wrapper")||i;var e=r.gridPages,l={page_number:a,total:e};a===e||1===a?t.disabled=!0:g.forEach(e=>{e.disabled=!1}),a<=e&&1<=a&&(UAGBImageGalleryPagedGrid.callAjax(i,l,r,g,o,c,s),n=a)});for(let e=0;e<a.length;e++)a[e].addEventListener("click",e=>{const t=e.currentTarget;var e=t.getAttribute("data-go-to"),a=(i?.querySelector(".spectra-image-gallery__media-wrapper")||i,{page_number:e,total:r.gridPages});UAGBImageGalleryPagedGrid.callAjax(i,a,r,g,o,c,s),n=e})},createElementFromHTML(e){const t=document.createElement("div");e=e.replace(/\s+/gm," ").replace(/( )+/gm," ").trim();return t.innerHTML=e,t},getCustomURL(e,t){const a=new RegExp("^((http|https)://)(www.)?[a-zA-Z0-9@:%._\\+~#?&//=\\-]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%._\\+~#?&//=]*)$");e=parseInt(e.getAttribute("data-spectra-gallery-image-id"));return a.test(t?.customLinks[e])?t.customLinks[e]:void 0},openCustomURL(e){window.open(e,"_blank")},addClickEvents(e,a){const t=e?.querySelectorAll(".spectra-image-gallery__media-wrapper");t.forEach(e=>{const t=UAGBImageGalleryPagedGrid.getCustomURL(e,a);t&&(e.style.cursor="pointer",e.setAttribute("tabindex","0"),e.addEventListener("click",()=>UAGBImageGalleryPagedGrid.openCustomURL(t)),e.addEventListener("keydown",e=>{13!==e.keyCode&&32!==e.keyCode||UAGBImageGalleryPagedGrid.openCustomURL(t)}))})},callAjax(o,n,i,s,c,g,d){const e=new FormData;e.append("action","uag_load_image_gallery_grid_pagination"),e.append("nonce",uagb_image_gallery.uagb_image_gallery_grid_pagination_ajax_nonce),e.append("page_number",n.page_number),e.append("attr",JSON.stringify(i)),fetch(uagb_image_gallery.ajax_url,{method:"POST",credentials:"same-origin",body:e}).then(e=>e.json()).then(function(r){!1!==r.success&&setTimeout(function(){let e=o?.querySelector(".spectra-image-gallery__layout--isogrid");const t=(e=e||o).querySelectorAll(".spectra-image-gallery__media-wrapper--isotope"),a=new Isotope(e,{itemSelector:".spectra-image-gallery__media-wrapper--isotope",layoutMode:"fitRows"}),l=(t.forEach(e=>{a.remove(e),a.layout()}),a.insert(UAGBImageGalleryPagedGrid.createElementFromHTML(r.data)),imagesLoaded(e).on("progress",function(){a.layout()}),imagesLoaded(e).on("always",function(){var e=document.querySelector(c);loadLightBoxImages(e,g,parseInt(n.page_number),i,d)}),i.customLinks&&UAGBImageGalleryPagedGrid.addClickEvents(e,i),1===parseInt(n.page_number)?s.forEach(e=>{e.disabled="Prev"===e.getAttribute("data-direction")}):parseInt(n.page_number)===parseInt(n.total)?s.forEach(e=>{e.disabled="Next"===e.getAttribute("data-direction")}):s.forEach(e=>{e.disabled=!1}),o?.querySelector(".spectra-image-gallery__control-dot--active").classList.toggle("spectra-image-gallery__control-dot--active"),o?.querySelectorAll(".spectra-image-gallery__control-dot"));l[parseInt(n.page_number)-1].classList.toggle("spectra-image-gallery__control-dot--active")},500)})}},cycleInLightbox=(e,t)=>{if("Tab"===t.key){e=e.querySelectorAll('button, div[data-role="button"], [href], [tabindex]:not([tabindex="-1"])');const a=e[0],l=e[e.length-1];e=t.target.ownerDocument.activeElement;t.shiftKey&&e===a?(t.preventDefault(),l.focus()):t.shiftKey||e!==l||(t.preventDefault(),a.focus())}},loadLightBoxImages=(l,r,e,o,n)=>{if(l){const t=o.paginateLimit,i=document.querySelector("body"),s=(r.on("activeIndexChange",e=>{if(o.lightboxThumbnails&&n.slideTo(e.activeIndex),o.lightboxDisplayCount){e=e.activeIndex;const t=l?.nextElementSibling,a=t.querySelector(".spectra-image-gallery__control-lightbox--count-page");a&&(a.innerHTML=parseInt(e)+1)}r.lazy.load()}),o.lightboxThumbnails&&n.on("activeIndexChange",e=>{r.slideTo(e.activeIndex)}),l?.nextElementSibling);let a={};if(s&&s?.classList.contains("spectra-image-gallery__control-lightbox")){if(a=(()=>{const e=cycleInLightbox.bind(null,s);return{addEventListener:function(){s.addEventListener("keydown",e)},removeEventListener:function(){s.removeEventListener("keydown",e)}}})(),s.addEventListener("keydown",e=>{27===e.keyCode&&(i.style.overflow="",s.style.opacity=0,setTimeout(()=>{if(s.style.display="none",a.removeEventListener(),clickedImageId){const e=document.querySelector(`[data-spectra-gallery-image-id="${clickedImageId}"]`);e?.focus(),clickedImageId=null}},250))}),s.style.display="none",o.lightboxCloseIcon){const g=s.querySelector(".spectra-image-gallery__control-lightbox--close");g&&g.addEventListener("click",()=>{i.style.overflow="",s.style.opacity=0,setTimeout(()=>{if(s.style.display="none",clickedImageId){const e=document.querySelector(`[data-spectra-gallery-image-id="${clickedImageId}"]`);e?.focus(),clickedImageId=null}a.removeEventListener()},250)})}if(o.lightboxDisplayCount){const d=s.querySelector(".spectra-image-gallery__control-lightbox--count-total");d.innerHTML=o.mediaGallery.length}}const c=(e,t)=>{r&&s&&(clickedImageId=t.getAttribute("data-spectra-gallery-image-id"),s.style.display="",s.focus(),setTimeout(()=>{r.slideTo(e)},100),setTimeout(()=>{s.style.opacity=1,s?.classList.contains("spectra-image-gallery__control-lightbox")&&(i.style.overflow="hidden"),a.addEventListener()},250))};null!==e?setTimeout(()=>{addClickListeners(l,e,c,t,o)},1e3):addClickListeners(l,null,c,null,o)}},generateUniqueId=e=>`image-${e}-`+Date.now(),addClickListeners=(e,o,n,i,s)=>{const t=e.querySelectorAll(".spectra-image-gallery__media-wrapper"),c={};if("image"===s.imageClickEvent){const a=s.mediaGallery;a.forEach(e=>{c[e.id]=e.url})}t.forEach((t,e)=>{t.style.cursor="pointer";var a=generateUniqueId(e);if("lightbox"===s.imageClickEvent&&t.setAttribute("data-spectra-gallery-image-id",a),"image"===s.imageClickEvent){a=t.getAttribute("data-spectra-gallery-image-id");const l=c[a];t.addEventListener("click",()=>{openImageInWindow(l)}),t.addEventListener("keydown",e=>{13!==e.keyCode&&32!==e.keyCode||openImageInWindow(l)})}else{const r=null!==o?e+(o-1)*i:e;t.addEventListener("click",()=>n(r,t)),t.addEventListener("keydown",e=>{13!==e.keyCode&&32!==e.keyCode||(e.preventDefault(),n(r,t))})}})};let imageWindow=null;const openImageInWindow=e=>{imageWindow&&!imageWindow.closed?imageWindow.focus():imageWindow=window.open(e,"_blank")};PK��][�ϧ�P�P8ultimate-addons-for-gutenberg/assets/js/image-gallery.jsnu�[���let spectraImageGalleryLoadStatus = true;
let clickedImageId = null;

const UAGBImageGalleryMasonry = {
	initByOffset( $selector, instance ){
		// Verify $selector and instance.
		if ( ! $selector || ! instance ) {
			return;
		}

		// Add class for scroll not init.
		$selector.classList.add( 'scroll-not-init' );

		// Add class for last image not loaded.
		$selector.classList.add( 'last-image-not-loaded' );

		const getAllImages = $selector.querySelectorAll( 'img' );
		if( getAllImages.length ){
			// Get last image.
			const getLastImage = getAllImages[ getAllImages.length - 1 ];
			// Add event listener for last image.
			getLastImage.addEventListener( 'load', () => {
					// You can perform additional actions here once the image has loaded.
					// Remove class for last image not loaded.
					$selector.classList.remove( 'last-image-not-loaded' );
					setTimeout( function() {
						instance.layout();
					}, 100 );
				}
			);
		}

		let timeOutInstance = null;
		// Get scroll position dynamically.
		window.addEventListener( 'scroll', function() {
			if ( ! $selector.classList.contains( 'scroll-not-init' ) ) {
				return;
			}
			// Clear timeout instance.
			clearTimeout( timeOutInstance );

			if ( UAGBImageGalleryMasonry.presentInViewport( $selector ) ) {
				// If $selector comes in view port then init masonry.
				$selector.classList.remove( 'scroll-not-init' );
				// Init masonry.
				timeOutInstance = setTimeout( function() {
					instance.layout();
				}, 100 );
			}
		} );
	},
	init( $attr, $selector, lightboxSettings, thumbnailSettings ) {
		let count = 2;
		const windowHeight50 = window.innerHeight / 1.25;
		const $scope = document.querySelector( $selector );
		let thumbnailSwiper = null;
		if ( $attr.lightboxThumbnails ) {
			thumbnailSwiper = new Swiper( `${$selector}+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails`,
				thumbnailSettings
			);
			lightboxSettings = {
				...lightboxSettings,
				thumbs: {
					swiper: thumbnailSwiper,
				},
			}
		}
		const lightboxSwiper = new Swiper( `${$selector}+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main`,
			lightboxSettings
		)
		lightboxSwiper.lazy.load();
		loadLightBoxImages( $scope, lightboxSwiper, null, $attr, thumbnailSwiper );
		const loader = $scope?.querySelector( '.spectra-image-gallery__control-loader' );
		const loadButton = $scope?.querySelector( '.spectra-image-gallery__control-button' );
		if ( $attr.feedPagination && $attr.paginateUseLoader ) {
			window.addEventListener( 'scroll', function () {
				let mediaItem = $scope?.querySelector( '.spectra-image-gallery__media-wrapper' );
				if ( ! mediaItem ) {
					mediaItem = $scope;
				}
				const boundingClientRect = mediaItem.lastElementChild.getBoundingClientRect();
				const offsetTop = boundingClientRect.top + window.scrollY;
				if ( window.pageYOffset + windowHeight50 >= offsetTop ) {
					const $args = {
						page_number: count,
					};
					const total = $attr.gridPages;
					if ( spectraImageGalleryLoadStatus ) {
						if ( count > total ) {
							loader.style.display = 'none';
						}
						if ( count <= total ) {
							UAGBImageGalleryMasonry.callAjax( $scope, $args, $attr, false, count, $selector, lightboxSwiper, thumbnailSwiper );
							count++;
							spectraImageGalleryLoadStatus = false;
						}
					}
				}
			} );
		} else if ( $attr.feedPagination && ! $attr.paginateUseLoader ) {
			loadButton.onclick = function () {
				const total = $attr.gridPages;
				const $args = {
					total,
					page_number: count,
				};
				loadButton.classList.add( 'disabled' );
				if ( spectraImageGalleryLoadStatus ) {
					if ( count <= total ) {
						UAGBImageGalleryMasonry.callAjax( $scope, $args, $attr, false, count, $selector, lightboxSwiper, thumbnailSwiper );
						count++;
						spectraImageGalleryLoadStatus = false;
					}
				}
			};
		}
	},

	createElementFromHTML( htmlString ) {
		const htmlElement = document.createElement( 'div' );
		const htmlCleanString = htmlString.replace( /\s+/gm, ' ' ).replace( /( )+/gm, ' ' ).trim();
		htmlElement.innerHTML = htmlCleanString;
		return htmlElement;
	},

	getCustomURL( image, $attr ) {
		const urlValidRegex = new RegExp(
			'^((http|https)://)(www.)?[a-zA-Z0-9@:%._\\+~#?&//=]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%._\\+~#?&//=]*)$'
		);
		const imageID = parseInt( image.getAttribute( 'data-spectra-gallery-image-id' ) );
		return urlValidRegex.test( $attr?.customLinks[ imageID ] ) ? $attr.customLinks[ imageID ] : undefined;
	},

	openCustomURL( customURL ) {
		window.open( customURL, '_blank' );
	},

	addClickEvents( element, $attr ) {
		const imageElements = element?.querySelectorAll( '.spectra-image-gallery__media-wrapper' );
		imageElements.forEach( ( image ) => {
			const imageURL = UAGBImageGalleryMasonry.getCustomURL( image, $attr );
			if ( imageURL ) {
				image.style.cursor = 'pointer';
				image.addEventListener( 'click', () => UAGBImageGalleryMasonry.openCustomURL( imageURL ) );
				image.addEventListener( 'keydown', ( event ) => {
					if ( 13 === event.keyCode || 32 === event.keyCode ) {
						event.preventDefault();
						UAGBImageGalleryMasonry.openCustomURL( imageURL );
					}
				} );
			}
		} );
	},

	callAjax( $scope, $obj, $attr, append = false, count, $selector, lightboxSwiper, thumbnailSwiper ) {
		const mediaData = new FormData();
		mediaData.append( 'action', 'uag_load_image_gallery_masonry' );
		mediaData.append( 'nonce', uagb_image_gallery.uagb_image_gallery_masonry_ajax_nonce );
		mediaData.append( 'page_number', $obj.page_number );
		mediaData.append( 'attr', JSON.stringify( $attr ) );
		fetch( uagb_image_gallery.ajax_url, {
			method: 'POST',
			credentials: 'same-origin',
			body: mediaData,
		} )
			.then( ( resp ) => resp.json() )
			.then( function ( data ) {
				let element = $scope?.querySelector( '.spectra-image-gallery__layout--masonry' );
				if ( ! element ) {
					element = $scope;
				}

				setTimeout( function () {
					const isotope = new Isotope( element, {
						itemSelector: '.spectra-image-gallery__media-wrapper--isotope',
						stagger: 10,
					} );
					isotope.insert( UAGBImageGalleryMasonry.createElementFromHTML( data.data ) );
					imagesLoaded( element ).on( 'progress', function () {
						isotope.layout();
					} );
					imagesLoaded( element ).on( 'always', function () {
						const currentScope = document.querySelector( $selector );
						const loadButton = currentScope?.querySelector( '.spectra-image-gallery__control-button' )
							loadButton?.classList?.remove( 'disabled' );
							loadLightBoxImages( currentScope, lightboxSwiper, null, $attr, thumbnailSwiper );
						} );
					if ( 'url' === $attr.imageClickEvent && $attr.customLinks ) {
						UAGBImageGalleryMasonry.addClickEvents( element, $attr );
					}
					spectraImageGalleryLoadStatus = true;
					if ( true === append ) {
						$scope?.querySelector( '.spectra-image-gallery__control-button' ).classList.toggle( 'disabled' );
					}
					if ( count === parseInt( $obj.total ) ) {
						$scope.querySelector( '.spectra-image-gallery__control-button' ).style.opacity = 0;
						setTimeout( () => {
							$scope.querySelector( '.spectra-image-gallery__control-button' ).parentElement.style.display =
								'none';
						}, 2000 );
					}
				}, 500 );
			} );
	},
	presentInViewport( element ) {
		const rect = element.getBoundingClientRect();
		return (
			rect.top >= 0 &&
			rect.left >= 0 &&
			rect.bottom <= ( window.innerHeight || document.documentElement.clientHeight ) &&
			rect.right <= ( window.innerWidth || document.documentElement.clientWidth )
		);
	},
};

const UAGBImageGalleryPagedGrid = {
	init( $attr, $selector, lightboxSettings, thumbnailSettings ) {
		let count = 1;
		const $scope = document.querySelector( $selector );
		let thumbnailSwiper = null;
		if ( $attr.lightboxThumbnails ){
			thumbnailSwiper = new Swiper( `${$selector}+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails`,
			thumbnailSettings
			);
			lightboxSettings = {
				...lightboxSettings,
				thumbs: {
					swiper: thumbnailSwiper,
				},
			}
		}
		const lightboxSwiper = new Swiper( `${$selector}+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main`,
			lightboxSettings
		)
		lightboxSwiper.lazy.load();
		loadLightBoxImages( $scope, lightboxSwiper, count, $attr, thumbnailSwiper );
		const arrows = $scope?.querySelectorAll( '.spectra-image-gallery__control-arrows--grid' );
		const dots = $scope?.querySelectorAll( '.spectra-image-gallery__control-dot' );
		for ( let i = 0; i < arrows.length; i++ ) {
			arrows[ i ].addEventListener( 'click', ( event ) => {
				const thisArrow = event.currentTarget;
				let page = count;
				switch ( thisArrow.getAttribute( 'data-direction' ) ) {
					case 'Prev':
						--page;
						break;
					case 'Next':
						++page;
						break;
				}
				let mediaItem = $scope?.querySelector( '.spectra-image-gallery__media-wrapper' );
				if ( ! mediaItem ) {
					mediaItem = $scope;
				}
				const total = $attr.gridPages;
				const $args = {
					page_number: page,
					total,
				};
				if ( page === total || page === 1 ) {
					thisArrow.disabled = true;
				} else {
					arrows.forEach( ( ele ) => {
						ele.disabled = false;
					} );
				}
				if ( page <= total && page >= 1 ) {
					UAGBImageGalleryPagedGrid.callAjax( $scope, $args, $attr, arrows, $selector, lightboxSwiper, thumbnailSwiper );
					count = page;
				}
			} );
		}
		for ( let i = 0; i < dots.length; i++ ) {
			dots[ i ].addEventListener( 'click', ( event ) => {
				const thisDot = event.currentTarget;
				const page = thisDot.getAttribute( 'data-go-to' );
				let mediaItem = $scope?.querySelector( '.spectra-image-gallery__media-wrapper' );
				if ( ! mediaItem ) {
					mediaItem = $scope;
				}
				const $args = {
					page_number: page,
					total: $attr.gridPages,
				};
				UAGBImageGalleryPagedGrid.callAjax( $scope, $args, $attr, arrows, $selector, lightboxSwiper, thumbnailSwiper );
				count = page;
			} );
		}
	},

	createElementFromHTML( htmlString ) {
		const htmlElement = document.createElement( 'div' );
		const htmlCleanString = htmlString.replace( /\s+/gm, ' ' ).replace( /( )+/gm, ' ' ).trim();
		htmlElement.innerHTML = htmlCleanString;
		return htmlElement;
	},

	getCustomURL( image, $attr ) {
		const urlValidRegex = new RegExp(
			'^((http|https)://)(www.)?[a-zA-Z0-9@:%._\\+~#?&//=\\-]{2,256}\\.[a-z]{2,6}\\b([-a-zA-Z0-9@:%._\\+~#?&//=]*)$'
		);
		const imageID = parseInt( image.getAttribute( 'data-spectra-gallery-image-id' ) );
		return urlValidRegex.test( $attr?.customLinks[ imageID ] ) ? $attr.customLinks[ imageID ] : undefined;
	},

	openCustomURL( customURL ) {
		window.open( customURL, '_blank' );
	},

	addClickEvents( element, $attr ) {
		const imageElements = element?.querySelectorAll( '.spectra-image-gallery__media-wrapper' );
		imageElements.forEach( ( image ) => {
			const imageURL = UAGBImageGalleryPagedGrid.getCustomURL( image, $attr );
			if ( imageURL ) {
				image.style.cursor = 'pointer';
				image.setAttribute( 'tabindex', '0' );
				image.addEventListener( 'click', () => UAGBImageGalleryPagedGrid.openCustomURL( imageURL ) );
				image.addEventListener( 'keydown', ( event ) => {
					if ( 13 === event.keyCode || 32 === event.keyCode ) {
						UAGBImageGalleryPagedGrid.openCustomURL( imageURL );
					}
				} );
			}
		} );
	},

	callAjax( $scope, $obj, $attr, arrows, $selector, lightboxSwiper, thumbnailSwiper ) {
		const mediaData = new FormData();
		mediaData.append( 'action', 'uag_load_image_gallery_grid_pagination' );
		mediaData.append( 'nonce', uagb_image_gallery.uagb_image_gallery_grid_pagination_ajax_nonce );
		mediaData.append( 'page_number', $obj.page_number );
		mediaData.append( 'attr', JSON.stringify( $attr ) );
		fetch( uagb_image_gallery.ajax_url, {
			method: 'POST',
			credentials: 'same-origin',
			body: mediaData,
		} )
			.then( ( resp ) => resp.json() )
			.then( function ( data ) {
				if ( data.success === false ) {
					return;
				}
				setTimeout( function () {
					let element = $scope?.querySelector( '.spectra-image-gallery__layout--isogrid' );
					if ( ! element ) {
						element = $scope;
					}
					const mediaElements = element.querySelectorAll( '.spectra-image-gallery__media-wrapper--isotope' );
					const isotope = new Isotope( element, {
						itemSelector: '.spectra-image-gallery__media-wrapper--isotope',
						layoutMode: 'fitRows',
					} );
					mediaElements.forEach( ( mediaEle ) => {
						isotope.remove( mediaEle );
						isotope.layout();
					} );
					isotope.insert( UAGBImageGalleryPagedGrid.createElementFromHTML( data.data ) );
					imagesLoaded( element ).on( 'progress', function () {
						isotope.layout();
					} );
					imagesLoaded( element ).on( 'always', function () {
						const currentScope = document.querySelector( $selector );
						loadLightBoxImages( currentScope, lightboxSwiper, parseInt( $obj.page_number ), $attr, thumbnailSwiper );
					} );
					if ( $attr.customLinks ) {
						UAGBImageGalleryPagedGrid.addClickEvents( element, $attr );
					}
					if ( parseInt( $obj.page_number ) === 1 ) {
						arrows.forEach( ( arrow ) => {
							arrow.disabled = arrow.getAttribute( 'data-direction' ) === 'Prev';
						} );
					} else if ( parseInt( $obj.page_number ) === parseInt( $obj.total ) ) {
						arrows.forEach( ( arrow ) => {
							arrow.disabled = arrow.getAttribute( 'data-direction' ) === 'Next';
						} );
					} else {
						arrows.forEach( ( arrow ) => {
							arrow.disabled = false;
						} );
					}
					$scope
						?.querySelector( '.spectra-image-gallery__control-dot--active' )
						.classList.toggle( 'spectra-image-gallery__control-dot--active' );
					const $activeDot = $scope?.querySelectorAll( '.spectra-image-gallery__control-dot' );
					$activeDot[ parseInt( $obj.page_number ) - 1 ].classList.toggle(
						'spectra-image-gallery__control-dot--active'
					);
				}, 500 );
			} );
	},
};

const cycleInLightbox = ( selector, e ) => {
	// Check if Tab key was pressed
	if ( e.key === 'Tab' ) {
		const focusableElements = selector.querySelectorAll( 'button, div[data-role="button"], [href], [tabindex]:not([tabindex="-1"])' );
		const firstFocusableElement = focusableElements[0];
		const lastFocusableElement = focusableElements[focusableElements.length - 1];
		
		// Get the active element using ownerDocument
		const activeElement = e.target.ownerDocument.activeElement;

		// Check if Shift + Tab was pressed and if the current active element is the first one
		if ( e.shiftKey && activeElement === firstFocusableElement ) {
			e.preventDefault();
			lastFocusableElement.focus();
		}
		// Check if Tab was pressed and if the current active element is the last one
		else if ( !e.shiftKey && activeElement === lastFocusableElement ) {
			e.preventDefault();
			firstFocusableElement.focus();
		}
	}
}


const loadLightBoxImages = ( blockScope, lightboxSwiper, pageNum, attr, thumbnailSwiper ) => {
	if ( ! blockScope ) {
		return;
	}
	const pageLimit = attr.paginateLimit;
	
	const theBody = document.querySelector( 'body' );
	const updateCounter = ( curPage ) => {
		const lightbox = blockScope?.nextElementSibling;
		const counter = lightbox.querySelector( '.spectra-image-gallery__control-lightbox--count-page' );
		if ( counter ) {
			counter.innerHTML = parseInt( curPage ) + 1;
		}
	};
	lightboxSwiper.on( 'activeIndexChange', ( swiperInstance ) => {
		if ( attr.lightboxThumbnails ) {
			thumbnailSwiper.slideTo( swiperInstance.activeIndex );
		}
		if ( attr.lightboxDisplayCount ) {
			updateCounter( swiperInstance.activeIndex );
		}
		lightboxSwiper.lazy.load();
	} )
	if ( attr.lightboxThumbnails ) {
		thumbnailSwiper.on( 'activeIndexChange', ( swiperInstance ) => {
			lightboxSwiper.slideTo( swiperInstance.activeIndex );
		} );

	}
	const lightbox = blockScope?.nextElementSibling;
	let lightboxHandlers = {};
	if ( lightbox && lightbox?.classList.contains( 'spectra-image-gallery__control-lightbox' ) ) {
		// create a lightbox cycle listeners.
        const createListeners = () => {
			const cycleInLightboxWithID = cycleInLightbox.bind( null, lightbox );

			// Function to add the event listener
			function addEventListener() {
			  lightbox.addEventListener( 'keydown', cycleInLightboxWithID );
			}

			// Function to remove the event listener
			function removeEventListener() {
			  lightbox.removeEventListener( 'keydown', cycleInLightboxWithID );
			}

			return { addEventListener, removeEventListener };
		};

		lightboxHandlers = createListeners();

		lightbox.addEventListener( 'keydown', ( event ) => {
			if ( 27 === event.keyCode ) {
				theBody.style.overflow = '';
				lightbox.style.opacity = 0;
				setTimeout( () => {
					lightbox.style.display = 'none';
					lightboxHandlers.removeEventListener();
					if ( clickedImageId ) {
						const clickedImage = document.querySelector( `[data-spectra-gallery-image-id="${clickedImageId}"]` );
						clickedImage?.focus();  
						clickedImageId = null;
					}
				}, 250 );
			}
		} );
		lightbox.style.display = 'none';
		if ( attr.lightboxCloseIcon ) {
			const closeButton = lightbox.querySelector( '.spectra-image-gallery__control-lightbox--close' );
			if ( closeButton ) {
				closeButton.addEventListener( 'click', () => {
					theBody.style.overflow = '';
					lightbox.style.opacity = 0;
					setTimeout( () => {
						lightbox.style.display = 'none';
						if ( clickedImageId ) {
							const clickedImage = document.querySelector( `[data-spectra-gallery-image-id="${clickedImageId}"]` );
							clickedImage?.focus();  
							clickedImageId = null;
						}
						lightboxHandlers.removeEventListener();
					}, 250 );
				} );
			}
		}
		if ( attr.lightboxDisplayCount ) {
			const lightboxTotal = lightbox.querySelector( '.spectra-image-gallery__control-lightbox--count-total' );
			lightboxTotal.innerHTML = attr.mediaGallery.length;
		}
	}
	const enableLightbox = ( goTo, clickedImage ) => {
		if ( ! lightboxSwiper || !lightbox ) {
			return;
		}
		clickedImageId = clickedImage.getAttribute( 'data-spectra-gallery-image-id' );
		lightbox.style.display = '';
		lightbox.focus();
		setTimeout( () => {
			lightboxSwiper.slideTo( goTo );
		}, 100 );
		setTimeout( () => {
			lightbox.style.opacity = 1;
			if ( lightbox?.classList.contains( 'spectra-image-gallery__control-lightbox' ) ) {
				theBody.style.overflow = 'hidden';
			}

			lightboxHandlers.addEventListener();

		}, 250 );
	}

	if ( pageNum !== null ) {
		setTimeout( () => {
			addClickListeners( blockScope, pageNum, enableLightbox, pageLimit, attr );
		}, 1000 );
	} else {
		addClickListeners( blockScope, null, enableLightbox, null, attr );
	}
};

const generateUniqueId = ( index ) => `image-${index}-${Date.now()}`;

const addClickListeners = ( $scope, pageNum, enableLightbox, pageLimit, attr )  => {
	const images = $scope.querySelectorAll( '.spectra-image-gallery__media-wrapper' );
	const imageUrls = {};
	if ( 'image' === attr.imageClickEvent ) {
		const mediaGallery = attr.mediaGallery;
		mediaGallery.forEach( media => {
			imageUrls[ media.id ] = media.url;
		} );
	}

	images.forEach( ( image, index ) => {
		image.style.cursor = 'pointer';
		const uniqueId = generateUniqueId( index );
		if( 'lightbox' === attr.imageClickEvent ) {
            image.setAttribute( 'data-spectra-gallery-image-id', uniqueId );
		};
        if ( 'image' === attr.imageClickEvent ) { 
			const imgId = image.getAttribute( 'data-spectra-gallery-image-id' );
			const imgURL = imageUrls[ imgId ];
			image.addEventListener( 'click', () => {
				openImageInWindow( imgURL ); // To avoid opening multiple tab at same when Popup and redirect is enabled.
			} );
			image.addEventListener( 'keydown', ( event ) => {
				if ( 13 === event.keyCode || 32 === event.keyCode ) {
					openImageInWindow( imgURL );
				}
			} );
		} else {
			const nextImg = pageNum !== null ? index + ( pageNum - 1 ) * pageLimit : index;
		    image.addEventListener( 'click', () => enableLightbox( nextImg, image ) );
		    image.addEventListener( 'keydown', ( event ) => {
			if ( 13 === event.keyCode || 32 === event.keyCode ) {
				event.preventDefault();
				enableLightbox( nextImg, image );
			}
		} );
		}
	} );
}

let imageWindow = null;
const openImageInWindow = ( imageUrl ) => {
	// Check if the window is already open
	if ( imageWindow && !imageWindow.closed ) {
		// If open, focus on the existing window
		imageWindow.focus();
	} else {
		// If not open or closed, open a new window
		imageWindow = window.open( imageUrl, '_blank' );
	}
}PK��][뭹�/ultimate-addons-for-gutenberg/assets/js/tabs.jsnu�[���UAGBTabs = {
	init( $selector ) {
		const tabsWrap = document.querySelectorAll( $selector );
		if ( ! tabsWrap ) {
			return;
		}

		for ( let i = 0; i < tabsWrap.length; i++ ) {
			UAGBTabs.addEvents( tabsWrap[ i ], $selector );
		}
	},
	addEvents( tabsWrap, $selector ) {
		// Tabs wrap has two child elements, one is tabs list (.uagb-tabs__panel) and another is tabs body (.uagb-tabs__body-wrap).
		const tabsWrapChildren = tabsWrap.children;

		// Verify if tabsWrapChildren has two child elements.
		if ( 2 !== tabsWrapChildren.length ) {
			return;
		}

		const tabActive = tabsWrap.getAttribute( 'data-tab-active' );

		// Select tabs list (.uagb-tabs__panel) from tabsWrapChildren.
		const tabLi = tabsWrapChildren[0].querySelectorAll( 'li.uagb-tab' );

		// Select tabs body (.uagb-tabs__body-wrap) from tabsWrapChildren and children will be tab body container (.uagb-tabs__body-container).
		const tabBody = tabsWrapChildren[1].children;

		for ( let i = 0; i < tabBody.length; i++ ) {
			tabBody[ i ].setAttribute( 'tabindex', '0' );
			tabBody[ i ].setAttribute( 'role', 'tabpanel' );
		};

		// Set initial active class to Tabs body.
		tabBody[ tabActive ].classList.add( 'uagb-tabs-body__active' );

		// Set initial active class to Tabs li.
		tabLi[ tabActive ].classList.add( 'uagb-tabs__active' );

		for ( let i = 0; i < tabLi.length; i++ ) {
			const tabsAnchor = tabLi[ i ].getElementsByTagName( 'a' )[ 0 ];

			// Set initial li ids.
			tabLi[ i ].setAttribute( 'id', 'uagb-tabs__tab' + i );

			// Set initial aria attributes true for anchor tags.
			tabsAnchor.setAttribute( 'aria-selected', true );
			// Selected tab gets tabindex="0".
			tabsAnchor.setAttribute( 'tabindex', '0' );

			if ( ! tabLi[ i ].classList.contains( 'uagb-tabs__active' ) ) {
				// Set aria attributes for anchor tags as false where needed.
				tabsAnchor.setAttribute( 'aria-selected', false );
				// Other non selected tabs get tabindex="-1".
				tabsAnchor.setAttribute( 'tabindex', '-1' ); 
			}

			// Set initial data attribute for anchor tags.
			tabsAnchor.setAttribute( 'data-tab', i );

			tabsAnchor.mainWrapClass = $selector;
			// Add Click event listener
			tabsAnchor.addEventListener( 'click', function ( e ) {
				UAGBTabs.tabClickEvent( e, this, this.parentElement );
			} );
		}

		// Enable arrow navigation between tabs in the tab list
		const tabsRole = tabsWrapChildren[0].querySelectorAll( '.uagb-tab a[role="tab"]' );
		
		tabsRole.forEach( tab => {
			tab.addEventListener( 'keydown', function ( e ) {
				let newIndex;
				const currentIndex = Array.prototype.indexOf.call( tabsRole, e.target );

				if ( e.key === 'ArrowRight' ) {
					// Move to the next tab, loop back to the first if at the last
					newIndex = ( currentIndex + 1 ) % tabsRole.length;
					tabsRole[newIndex].focus();
					tabsRole[currentIndex].setAttribute( 'aria-selected', 'false' );
					tabsRole[newIndex].setAttribute( 'aria-selected', 'true' );
					UAGBTabs.tabClickEvent( e, tabsRole[newIndex], tabsRole[newIndex].parentElement );
					e.preventDefault();
				} else if ( e.key === 'ArrowLeft' ) {
					// Move to the previous tab, loop to the last if at the first
					newIndex = ( currentIndex - 1 + tabsRole.length ) % tabsRole.length;
					tabsRole[newIndex].focus();
					tabsRole[currentIndex].setAttribute( 'aria-selected', 'false' );
					tabsRole[newIndex].setAttribute( 'aria-selected', 'true' );
					UAGBTabs.tabClickEvent( e, tabsRole[newIndex], tabsRole[newIndex].parentElement );
					e.preventDefault();
				}
			} );
		} );
	},
	tabClickEvent( e, tabName, selectedLi ) {
		e.preventDefault();

		const tabId = tabName.getAttribute( 'data-tab' );
		const tabPanel = selectedLi.closest( '.uagb-tabs__panel' );

		const tabContainer = tabName.closest( '.uagb-tabs__wrap' );

		const tabBodyWrap = tabContainer.querySelector( '.uagb-tabs__body-wrap' );
		
		const tabBodyChildren = tabBodyWrap.children;
		const tabSelectedBody = UAGBTabs.getChildrenWithClass( tabBodyChildren, 'uagb-inner-tab-' + tabId );

		const allLi = tabPanel.querySelectorAll( 'a.uagb-tabs-list' );

		// Remove old li active class.
		tabPanel.querySelector( '.uagb-tabs__active' )?.classList.remove( 'uagb-tabs__active' );

		//Remove old tab body active class.
		UAGBTabs.getChildrenWithClass( tabBodyChildren, 'uagb-tabs-body__active' )?.classList.remove( 'uagb-tabs-body__active' );

		// Set aria-selected attribute as false for old active tab.
		for ( let i = 0; i < allLi.length; i++ ) {
			allLi[ i ].setAttribute( 'aria-selected', false );
			// Other non selected tabs get tabindex="-1".
			allLi[i].setAttribute( 'tabindex', '-1' ); 
		}

		// Set selected li active class.
		selectedLi.classList.add( 'uagb-tabs__active' );

		// Set aria-selected attribute as true for new active tab.
		tabName.setAttribute( 'aria-selected', true );

		// Selected tab gets tabindex="0".
		tabName.setAttribute( 'tabindex', '0' );

		// Set selected tab body active class.
		tabSelectedBody?.classList.add( 'uagb-tabs-body__active' );

		// Set aria-hidden attribute false for selected tab body.
		tabSelectedBody?.setAttribute( 'aria-hidden', false );

		// Set aria-hidden attribute true for all unselected tab body.
		for ( let i = 0; i < tabBodyChildren.length; i++ ) {
			// If tabBodyChildren[i] has .uagb-inner-tab-' + tabId + ' then continue.
			if ( tabBodyChildren[ i ].classList.contains( 'uagb-inner-tab-' + tabId ) ) {
				continue;
			}

			tabBodyChildren[ i ].setAttribute( 'aria-hidden', true );
		}
	},
	anchorTabId( $selector ) {
		const tabsHash = window.location.hash;

		if ( '' !== tabsHash && /^#uagb-tabs__tab\d$/.test( tabsHash ) ) {
			const mainWrapClass = $selector;
			const tabId = escape( tabsHash.substring( 1 ) );
			const selectedLi = document.querySelector( '#' + tabId );
			const topPos = selectedLi.getBoundingClientRect().top + window.pageYOffset;
			window.scrollTo( {
				top: topPos,
				behavior: 'smooth',
			} );
			const tabNum = selectedLi.querySelector( 'a.uagb-tabs-list' ).getAttribute( 'data-tab' );
			const listPanel = selectedLi.closest( '.uagb-tabs__panel' );
			const tabSelectedBody = document.querySelector(
				mainWrapClass + ' > .uagb-tabs__body-wrap > .uagb-inner-tab-' + tabNum
			);
			const tabUnselectedBody = document.querySelectorAll(
				mainWrapClass +
					' > .uagb-tabs__body-wrap > .uagb-tabs__body-container:not(.uagb-inner-tab-' +
					tabNum +
					')'
			);
			const allLi = selectedLi.querySelectorAll( 'a.uagb-tabs-list' );
			const selectedAnchor = selectedLi.querySelector( 'a.uagb-tabs-list' );

			// Remove old li active class.
			listPanel.querySelector( '.uagb-tabs__active' ).classList.remove( 'uagb-tabs__active' );

			// Remove old tab body active class.
			document
				.querySelector( mainWrapClass + ' > .uagb-tabs__body-wrap > .uagb-tabs-body__active' )
				.classList.remove( 'uagb-tabs-body__active' );

			// Set aria-selected attribute as false for old active tab.
			for ( let i = 0; i < allLi.length; i++ ) {
				allLi[ i ].setAttribute( 'tabindex', '-1' );  // Old active tab gets tabindex="-1".
				allLi[ i ].setAttribute( 'aria-selected', false );
			}

			// Set selected li active class.
			selectedLi.classList.add( 'uagb-tabs__active' );

			// Set aria-selected attribute as true for new active tab.
			selectedAnchor.setAttribute( 'aria-selected', true );

			selectedAnchor.setAttribute( 'tabindex', '0' );  // New active tab gets tabindex="0".

			// Set selected tab body active class.
			tabSelectedBody.classList.add( 'uagb-tabs-body__active' );

			// Set aria-hidden attribute false for selected tab body.
			tabSelectedBody.setAttribute( 'aria-hidden', false );

			// Set aria-hidden attribute true for all unselected tab body.
			for ( let i = 0; i < tabUnselectedBody.length; i++ ) {
				tabUnselectedBody[ i ].setAttribute( 'aria-hidden', true );
			}
		}
	},
	getChildrenWithClass( children, className ) {
		let child = null;
		for ( let i = 0; i < children.length; i++ ) {
			if ( children[ i ].classList.contains( className ) ) {
				child = children[ i ];
				break;
			}
		}
		return child;
	}
};
PK��][0���;ultimate-addons-for-gutenberg/assets/js/imagesloaded.min.jsnu�[���/*!
 * imagesLoaded PACKAGED v4.1.4
 * JavaScript is all like "You images are done yet or what?"
 * MIT License
 */

/**
 * EvEmitter v1.1.0
 * Lil' event emitter
 * MIT License
 */

 !function(global,factory){"function"==typeof define&&define.amd?define("ev-emitter/ev-emitter",factory):"object"==typeof module&&module.exports?module.exports=factory():global.EvEmitter=factory()}(this,function(){function EvEmitter(){}var proto=EvEmitter.prototype;return proto.on=function(eventName,listener){if(eventName&&listener){var events=this._events=this._events||{},listeners=events[eventName]=events[eventName]||[];return listeners.indexOf(listener)==-1&&listeners.push(listener),this}},proto.once=function(eventName,listener){if(eventName&&listener){this.on(eventName,listener);var onceEvents=this._onceEvents=this._onceEvents||{},onceListeners=onceEvents[eventName]=onceEvents[eventName]||[];return onceListeners[listener]=!0,this}},proto.off=function(eventName,listener){var listeners=this._events&&this._events[eventName];if(listeners&&listeners.length){var index=listeners.indexOf(listener);return index!=-1&&listeners.splice(index,1),this}},proto.emitEvent=function(eventName,args){var listeners=this._events&&this._events[eventName];if(listeners&&listeners.length){var i=0,listener=listeners[i];args=args||[];for(var onceListeners=this._onceEvents&&this._onceEvents[eventName];listener;){var isOnce=onceListeners&&onceListeners[listener];isOnce&&(this.off(eventName,listener),delete onceListeners[listener]),listener.apply(this,args),i+=isOnce?0:1,listener=listeners[i]}return this}},EvEmitter}),function(window,factory){"use strict";"function"==typeof define&&define.amd?define(["ev-emitter/ev-emitter"],function(EvEmitter){return factory(window,EvEmitter)}):"object"==typeof module&&module.exports?module.exports=factory(window,require("ev-emitter")):window.imagesLoaded=factory(window,window.EvEmitter)}(window,function(window,EvEmitter){function extend(a,b){for(var prop in b)a[prop]=b[prop];return a}function makeArray(obj){var ary=[];if(Array.isArray(obj))ary=obj;else if("number"==typeof obj.length)for(var i=0;i<obj.length;i++)ary.push(obj[i]);else ary.push(obj);return ary}function ImagesLoaded(elem,options,onAlways){return this instanceof ImagesLoaded?("string"==typeof elem&&(elem=document.querySelectorAll(elem)),this.elements=makeArray(elem),this.options=extend({},this.options),"function"==typeof options?onAlways=options:extend(this.options,options),onAlways&&this.on("always",onAlways),this.getImages(),$&&(this.jqDeferred=new $.Deferred),void setTimeout(function(){this.check()}.bind(this))):new ImagesLoaded(elem,options,onAlways)}function LoadingImage(img){this.img=img}function Background(url,element){this.url=url,this.element=element,this.img=new Image}var $=window.jQuery,console=window.console;ImagesLoaded.prototype=Object.create(EvEmitter.prototype),ImagesLoaded.prototype.options={},ImagesLoaded.prototype.getImages=function(){this.images=[],this.elements.forEach(this.addElementImages,this)},ImagesLoaded.prototype.addElementImages=function(elem){"IMG"==elem.nodeName&&this.addImage(elem),this.options.background===!0&&this.addElementBackgroundImages(elem);var nodeType=elem.nodeType;if(nodeType&&elementNodeTypes[nodeType]){for(var childImgs=elem.querySelectorAll("img"),i=0;i<childImgs.length;i++){var img=childImgs[i];this.addImage(img)}if("string"==typeof this.options.background){var children=elem.querySelectorAll(this.options.background);for(i=0;i<children.length;i++){var child=children[i];this.addElementBackgroundImages(child)}}}};var elementNodeTypes={1:!0,9:!0,11:!0};return ImagesLoaded.prototype.addElementBackgroundImages=function(elem){var style=getComputedStyle(elem);if(style)for(var reURL=/url\((['"])?(.*?)\1\)/gi,matches=reURL.exec(style.backgroundImage);null!==matches;){var url=matches&&matches[2];url&&this.addBackground(url,elem),matches=reURL.exec(style.backgroundImage)}},ImagesLoaded.prototype.addImage=function(img){var loadingImage=new LoadingImage(img);this.images.push(loadingImage)},ImagesLoaded.prototype.addBackground=function(url,elem){var background=new Background(url,elem);this.images.push(background)},ImagesLoaded.prototype.check=function(){function onProgress(image,elem,message){setTimeout(function(){_this.progress(image,elem,message)})}var _this=this;return this.progressedCount=0,this.hasAnyBroken=!1,this.images.length?void this.images.forEach(function(loadingImage){loadingImage.once("progress",onProgress),loadingImage.check()}):void this.complete()},ImagesLoaded.prototype.progress=function(image,elem,message){this.progressedCount++,this.hasAnyBroken=this.hasAnyBroken||!image.isLoaded,this.emitEvent("progress",[this,image,elem]),this.jqDeferred&&this.jqDeferred.notify&&this.jqDeferred.notify(this,image),this.progressedCount==this.images.length&&this.complete(),this.options.debug&&console&&console.log("progress: "+message,image,elem)},ImagesLoaded.prototype.complete=function(){var eventName=this.hasAnyBroken?"fail":"done";if(this.isComplete=!0,this.emitEvent(eventName,[this]),this.emitEvent("always",[this]),this.jqDeferred){var jqMethod=this.hasAnyBroken?"reject":"resolve";this.jqDeferred[jqMethod](this)}},LoadingImage.prototype=Object.create(EvEmitter.prototype),LoadingImage.prototype.check=function(){var isComplete=this.getIsImageComplete();return isComplete?void this.confirm(0!==this.img.naturalWidth,"naturalWidth"):(this.proxyImage=new Image,this.proxyImage.addEventListener("load",this),this.proxyImage.addEventListener("error",this),this.img.addEventListener("load",this),this.img.addEventListener("error",this),void(this.proxyImage.src=this.img.src))},LoadingImage.prototype.getIsImageComplete=function(){return this.img.complete&&void 0!==this.img.naturalWidth},LoadingImage.prototype.confirm=function(isLoaded,message){this.isLoaded=isLoaded,this.emitEvent("progress",[this,this.img,message])},LoadingImage.prototype.handleEvent=function(event){var method="on"+event.type;this[method]&&this[method](event)},LoadingImage.prototype.onload=function(){this.confirm(!0,"onload"),this.unbindEvents()},LoadingImage.prototype.onerror=function(){this.confirm(!1,"onerror"),this.unbindEvents()},LoadingImage.prototype.unbindEvents=function(){this.proxyImage.removeEventListener("load",this),this.proxyImage.removeEventListener("error",this),this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},Background.prototype=Object.create(LoadingImage.prototype),Background.prototype.check=function(){this.img.addEventListener("load",this),this.img.addEventListener("error",this),this.img.src=this.url;var isComplete=this.getIsImageComplete();isComplete&&(this.confirm(0!==this.img.naturalWidth,"naturalWidth"),this.unbindEvents())},Background.prototype.unbindEvents=function(){this.img.removeEventListener("load",this),this.img.removeEventListener("error",this)},Background.prototype.confirm=function(isLoaded,message){this.isLoaded=isLoaded,this.emitEvent("progress",[this,this.element,message])},ImagesLoaded.makeJQueryPlugin=function(jQuery){jQuery=jQuery||window.jQuery,jQuery&&($=jQuery,$.fn.imagesLoaded=function(options,callback){var instance=new ImagesLoaded(this,options,callback);return instance.jqDeferred.promise($(this))})},ImagesLoaded.makeJQueryPlugin(),ImagesLoaded});PK��][���QQAultimate-addons-for-gutenberg/assets/js/spectra-animations.min.jsnu�[���window.addEventListener("load",function(){setTimeout(function(){AOS.init()},0)});PK��][�]O�x
x
6ultimate-addons-for-gutenberg/assets/js/testimonial.jsnu�[���window.UAGBTestimonialCarousel = {
	_setHeight( scope ) {
		if ( scope.length > 0 ) {
			const postWrapper = scope[ 0 ].querySelectorAll( '.slick-slide' ),
				postActive = scope[ 0 ].querySelectorAll( '.slick-slide.slick-active' );
			let maxHeight = -1,
				wrapperHeight = -1,
				postActiveHeight = -1;

			Object.keys( postActive ).forEach( ( key ) => {
				const thisHeight = postActive[ key ].offsetHeight,
					blogPost = postActive[ key ].querySelector( '.uagb-testimonial__wrap' ),
					blogPostHeight = blogPost.offsetHeight;

				if ( maxHeight < blogPostHeight ) {
					maxHeight = blogPostHeight;
					postActiveHeight = maxHeight + 15;
				}

				if ( wrapperHeight < thisHeight ) {
					wrapperHeight = thisHeight;
				}
			} );

			Object.keys( postActive ).forEach( ( key ) => {
				const selector = postActive[ key ].querySelector( '.uagb-testimonial__wrap' );
				selector.style.height = maxHeight + 'px';
			} );

			let selector = scope[ 0 ].querySelector( '.slick-list' );
			selector.style.height = postActiveHeight + 'px';
			maxHeight = -1;
			wrapperHeight = -1;
			Object.keys( postWrapper ).forEach( ( key ) => {
				const $this = postWrapper[ key ];
				if ( $this.classList.contains( 'slick-active' ) ) {
					return true;
				}

				selector = $this.querySelector( '.uagb-testimonial__wrap' );
				const blogPostHeight = selector.offsetHeight;
				selector.style.height = blogPostHeight + 'px';
			} );
		}
	},
	_unSetHeight( scope ) {
		if ( scope.length > 0 ) {
			const postWrapper = scope[ 0 ].querySelectorAll( '.slick-slide' ),
				postActive = scope[ 0 ].querySelectorAll( '.slick-slide.slick-active' );

			Object.keys( postActive ).forEach( ( key ) => {
				const selector = postActive[ key ].querySelector( '.uagb-tm__content' );
				selector.style.height = 'auto';
			} );

			Object.keys( postActive ).forEach( ( key ) => {
				const $this = postWrapper[ key ];
				if ( $this.classList.contains( 'slick-active' ) ) {
					return true;
				}
				const selector = $this.querySelector( '.uagb-tm__content' );
				selector.style.height = 'auto';
			} );
		}
	},
};

// Set Carousel Height for Customiser.
// eslint-disable-next-line no-unused-vars
function uagb_carousel_height( id ) {
	const wrap = document.querySelector( '#wpwrap .uagb-block-' + id + ' .is-carousel' );
	if ( wrap ) {
		window.UAGBTestimonialCarousel._setHeight( wrap );
	}
}

// Unset Carousel Height for Customiser.
// eslint-disable-next-line no-unused-vars
function uagb_carousel_unset_height( id ) {
	const wrap = document.querySelector( '#wpwrap .uagb-slick-carousel.uagb-block-' + id );
	if ( wrap ) {
		window.UAGBTestimonialCarousel._unSetHeight( wrap );
	}
}
PK��][���88=ultimate-addons-for-gutenberg/assets/js/uagb-countdown.min.jsnu�[���UAGBCountdown={elements:{},countdownInterval:{},cookie_slug:uagb_countdown_data.site_name_slug,cache:{},editorInit(e,t={},o){if(!t.timeModified){const n=new Date;n.setMilliseconds(n.getMilliseconds()+6048e5),t.endDateTime=n}this.elements[e]=this.getElement(e),this.countdownInterval[e]=setInterval(()=>{this.updateCountdown(e,t,o)},1e3)},createCookie(e,t,o,n){let i="";if(o){const s=new Date;"minutes"===n?s.setTime(s.getTime()+60*o*1e3):"hours"===n?s.setTime(s.getTime()+60*o*60*1e3):s.setTime(s.getTime()+24*o*60*60*1e3),i="; expires="+s.toGMTString()}document.cookie=this.cookie_slug+"-"+e+"="+t+i+"; path=/"},getCookie(e){const t="; "+document.cookie,o=t.split("; "+this.cookie_slug+"-"+e+"=");return 2===o.length?o.pop().split(";").shift():""},init(t,o={}){if(this.elements[t]=this.getElement(t),window?.UAGBCountdownTimeSignal||(window.UAGBCountdownTimeSignal={}),window.UAGBCountdownTimeSignal[t]=!1,void 0!==this.elements[t]){if("evergreen"===o?.timerType){var e=""!==o?.campaignID&&null!==o?.campaignID?o.campaignID:o.block_id;if(this.cache.cookie=this.getCookie(e),""!==this.cache.cookie){const s=new Date;var n=Math.floor(this.cache.cookie-s.getTime()),n=s.getTime()+n;const r=new Date(n);o.endDateTime=r.toISOString().replace(/\.\d{3}Z$/,"Z")}else{o.endDateTime=this.getEvergreenEndDate(o.evergreenDays,o.evergreenHrs,o.evergreenMinutes);const a=new Date;a.setTime(a.getTime()+24*Math.floor(o.evergreenDays)*60*60*1e3),a.setTime(a.getTime()+60*Math.floor(o.evergreenHrs)*60*1e3),a.setTime(a.getTime()+60*Math.floor(o.evergreenMinutes)*1e3),this.cache.evergreen=a.getTime()+100;n=""!==o?.resetDays&&0<o.resetDays?o.resetDays:30;this.createCookie(e,this.cache.evergreen,n,"days")}}const i=document.querySelectorAll(t);for(let e=0;e<i.length;e++)this.updateCountdown(t,o,i[e]),this.countdownInterval[t]=setInterval(()=>{this.updateCountdown(t,o,i[e])},1e3)}},changeEndTime(e,t={},o){clearInterval(this.countdownInterval[e]),void 0!==this.elements[e]&&(this.updateCountdown(e,t,o),this.countdownInterval[e]=setInterval(()=>{this.updateCountdown(e,t,o)},1e3))},getElement(e){let t=document.querySelector(e);const o=document.querySelector('iframe[name="editor-canvas"]');return t=o&&o.contentDocument?o.contentDocument.querySelector(e):t},updateCountdown(r,a,c=null){if(c){let e,t,o;const h=c.querySelector(".wp-block-uagb-countdown__time-seconds");a?.showDays&&(e=c.querySelector(".wp-block-uagb-countdown__time-days")),a?.showHours&&(t=c.querySelector(".wp-block-uagb-countdown__time-hours")),a?.showMinutes&&(o=c.querySelector(".wp-block-uagb-countdown__time-minutes"));var l=new Date,l=new Date(a.endDateTime)-l,d=l<0,u=Math.floor(l/1e3/60/60/24);let n=Math.floor(l/1e3/60/60)%24,i=Math.floor(l/1e3/60)%60,s=Math.floor(l/1e3)%60;a?.showDays||(n+=24*u),a?.showHours||(i+=60*n),a?.showMinutes||(s+=60*i),a?.showDays&&e&&(e.innerHTML=d?0:u),a?.showHours&&t&&(t.innerHTML=d?0:n),a?.showMinutes&&o&&(o.innerHTML=d?0:i),h&&(h.innerHTML=d?0:s),d&&(clearInterval(this.countdownInterval[r]),"redirect"!==a?.timerEndAction&&"hide"!==a?.timerEndAction||!a?.isFrontend||(window.UAGBCountdownTimeSignal[r]=!0));l="spectraPageReloaded_"+r,u="true"===this.getCookie(l),r=""!==a?.resetDays&&0<a.resetDays?a.resetDays:30;if(a?.isFrontend&&(u&&!d&&"false"!==this.getCookie(l)&&this.createCookie(l,"false",0,"days"),!u&&d&&"content"===a?.timerEndAction&&a?.reloadOnExpire&&a?.autoReload&&(location.reload(),this.createCookie(l,"true",r,"days")),d&&"content"===a?.timerEndAction&&!a?.reloadOnExpire&&!a?.autoReload)){const m=["days","hours","minutes","seconds"],g=m.map(e=>c.querySelector(".wp-block-uagb-countdown__box-"+e)),w=c.querySelector(".uagb-block-countdown-innerblocks-"+a.block_id);w.style.display="block",g.forEach(e=>{e&&(e.style.display="none")})}}},getEvergreenEndDate(e,t,o){const n=new Date,i=new Date(n.getTime()+60*(24*e*60+60*t+o)*1e3);return i.toISOString().replace(/\.\d{3}Z$/,"Z")}};PK��][�#;pp=ultimate-addons-for-gutenberg/assets/js/spectra-animations.jsnu�[���window.addEventListener( 'load', function() {
    setTimeout( function() {
        AOS.init();
    }, 0 );
} );
PK��][�wu�Fultimate-addons-for-gutenberg/assets/js/spectra-popup-builder-admin.jsnu�[���// Spectra Popup JS Actions Needed in the Admin CPT Page.

// Click Event to Enable or Disable Related Popup.
const UAGBToggelSwitch = ( event ) => {
	const element = event.target;
	// If the current toggle is on, this is false - else this is true.
	const updatedStatus = element.classList.contains( 'spectra-popup-builder__switch--active' ) ? 'false' : 'true';

	const mediaData = new FormData();
	mediaData.append( 'action', 'uag_update_popup_status' );
	mediaData.append( 'nonce', uagb_popup_builder_admin.uagb_popup_builder_admin_nonce );
	mediaData.append( 'post_id', element.dataset.post_id );
	mediaData.append( 'enabled', updatedStatus );

	fetch( uagb_popup_builder_admin.ajax_url, {
		method: 'POST',
		credentials: 'same-origin',
		body: mediaData,
	} )
	.then( ( resp ) => resp.json() )
	.then( ( data ) => {
		if ( false === data.success ) {
			return;
		}
		// If the API Fetch was successful, invert the toggle.
		if ( 'false' === updatedStatus ) {
			element.classList.remove( 'spectra-popup-builder__switch--active' );
		} else {
			element.classList.add( 'spectra-popup-builder__switch--active' );
		}
	} );
}

// Bind Related Click Events on Load.
document.addEventListener( 'DOMContentLoaded', () => {
	// Bind all the Toggles.
	const spectraToggles = document.querySelectorAll( '.spectra-popup-builder__switch' );
	for ( let spectraToggleCount = 0; spectraToggleCount < spectraToggles.length; spectraToggleCount++ ) {
		spectraToggles[ spectraToggleCount ].addEventListener( 'click', ( event ) => UAGBToggelSwitch( event ), false );
	}
} );
PK��][����8ultimate-addons-for-gutenberg/assets/js/js_cookie.min.jsnu�[���/*!
 * JavaScript Cookie v2.2.1
 * https://github.com/js-cookie/js-cookie
 *
 * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
 * Released under the MIT license
 */

!function(a){var b;if("function"==typeof define&&define.amd&&(define(a),b=!0),"object"==typeof exports&&(module.exports=a(),b=!0),!b){var c=window.Cookies,d=window.Cookies=a();d.noConflict=function(){return window.Cookies=c,d}}}(function(){function a(){for(var a=0,b={};a<arguments.length;a++){var c=arguments[a];for(var d in c)b[d]=c[d]}return b}function b(a){return a.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}function c(d){function e(){}function f(b,c,f){if("undefined"!=typeof document){f=a({path:"/"},e.defaults,f),"number"==typeof f.expires&&(f.expires=new Date(1*new Date+864e5*f.expires)),f.expires=f.expires?f.expires.toUTCString():"";try{var g=JSON.stringify(c);/^[\{\[]/.test(g)&&(c=g)}catch(j){}c=d.write?d.write(c,b):encodeURIComponent(c+"").replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),b=encodeURIComponent(b+"").replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var h="";for(var i in f)f[i]&&(h+="; "+i,!0!==f[i]&&(h+="="+f[i].split(";")[0]));return document.cookie=b+"="+c+h}}function g(a,c){if("undefined"!=typeof document){for(var e={},f=document.cookie?document.cookie.split("; "):[],g=0;g<f.length;g++){var h=f[g].split("="),i=h.slice(1).join("=");c||'"'!==i.charAt(0)||(i=i.slice(1,-1));try{var j=b(h[0]);if(i=(d.read||d)(i,j)||b(i),c)try{i=JSON.parse(i)}catch(k){}if(e[j]=i,a===j)break}catch(k){}}return a?e[a]:e}}return e.set=f,e.get=function(a){return g(a,!1)},e.getJSON=function(a){return g(a,!0)},e.remove=function(b,c){f(b,"",a(c,{expires:-1}))},e.defaults={},e.withConverter=c,e}return c(function(){})});
PK��][���[77Cultimate-addons-for-gutenberg/assets/js/cross-site-cp-helper.min.jsnu�[���"use strict";window.XgUtils=window.XgUtils||{extend:function(e,t){const n=t||{};let i;for(i in e)e.hasOwnProperty(i)&&(n[i]=e[i]);return n}},window.xsLocalStorage=window.xsLocalStorage||function(){const a="cross-domain-local-message-uag";let n={iframeId:"cross-domain-iframe-uag",iframeUrl:void 0,initCallback(){}},r=-1,o;const d={};let t=!1,u=!0;function m(e){let t;try{t=JSON.parse(e.data)}catch(e){}t&&t.namespace===a&&("iframe-ready"===t.id?(u=!0,n.initCallback()):(e=t,d[e.id]&&(d[e.id](e),delete d[e.id])))}function i(e,t,n,i){r++,d[r]=i;i={namespace:a,id:r,action:e,key:t,value:n};o?.contentWindow.postMessage(JSON.stringify(i),"*")}function l(e){n=XgUtils.extend(e,n);const t=document.createElement("div");window.addEventListener?window.addEventListener("message",m,!1):window.attachEvent("onmessage",m),t.innerHTML='<iframe id="'+n.iframeId+'" src='+n.iframeUrl+' style="display: none;"></iframe>',document.body.appendChild(t),o=document.getElementById(n.iframeId)}function c(){return t&&!!u}function s(){return"complete"===document.readyState}return{init(e){if(!e.iframeUrl)throw"Please specify the iframe URL";t||(t=!0,s()?l(e):document.addEventListener?document.addEventListener("readystatechange",function(){s()&&l(e)}):document.attachEvent("readystatechange",function(){s()&&l(e)}))},setItem(e,t,n){c()&&i("set",e,t,n)},getItem(e,t){c()&&i("get",e,null,t)},removeItem(e,t){c()&&i("remove",e,null,t)},key(e,t){c()&&i("key",e,null,t)},getSize(e){c()&&i("size",null,null,e)},getLength(e){c()&&i("length",null,null,e)},clear(e){c()&&i("clear",null,null,e)},wasInit(){return t}}}();PK��][/�=�Jultimate-addons-for-gutenberg/assets/js/spectra-popup-builder-admin.min.jsnu�[���const UAGBToggelSwitch=e=>{const t=e.target,a=t.classList.contains("spectra-popup-builder__switch--active")?"false":"true",p=new FormData;p.append("action","uag_update_popup_status"),p.append("nonce",uagb_popup_builder_admin.uagb_popup_builder_admin_nonce),p.append("post_id",t.dataset.post_id),p.append("enabled",a),fetch(uagb_popup_builder_admin.ajax_url,{method:"POST",credentials:"same-origin",body:p}).then(e=>e.json()).then(e=>{!1!==e.success&&("false"==a?t.classList.remove("spectra-popup-builder__switch--active"):t.classList.add("spectra-popup-builder__switch--active"))})};document.addEventListener("DOMContentLoaded",()=>{const t=document.querySelectorAll(".spectra-popup-builder__switch");for(let e=0;e<t.length;e++)t[e].addEventListener("click",e=>UAGBToggelSwitch(e),!1)});PK��][!=JYY<ultimate-addons-for-gutenberg/assets/js/table-of-contents.jsnu�[���let scrollData = true;
let scrollOffset = 30;
let scrolltoTop = false;
let scrollElement = null;
let uagbTOCCollapseListener = true;


UAGBTableOfContents = {
	_getDocumentElement() {
		let document_element = document;
		const getEditorIframe = document.querySelectorAll( 'iframe[name="editor-canvas"]' );
		if( getEditorIframe?.length ){
			const iframeDocument = getEditorIframe?.[0]?.contentWindow?.document || getEditorIframe?.[0]?.contentDocument;
			if ( iframeDocument ) {
				document_element = iframeDocument;
			}
		}
		
		return document_element;
	},

	_setCollapseIconMargin ( id, attr ) {
		const document_collapsable = UAGBTableOfContents._getDocumentElement();
		const block_element = document_collapsable.querySelector( id );
		const uagbLoader = block_element.querySelector( '.uagb-toc__loader' );

		// Get the first list item to compute the ::marker styles.
		const firstListItem = block_element.querySelector( 'li.uagb-toc__list:not(.uagb-toc__list--expandable)' );
		if( firstListItem ) {
			const listFontSize = window.getComputedStyle( firstListItem ).fontSize;
			const listWrap = block_element.querySelector( '.uagb-toc__list-wrap' );

			// Calculate the width for ::before pseudo-elements
			const widthValue = `calc(${listFontSize} / 3)`;

			// Check if a previous style element exists and remove it.
			// Escape periods in the id for use in querySelector or CSS.
			const escapedId = id?.replace( /\./g, '' );

			// Ensure no existing stylesheets target the ID
			const existingStyleSheet = document_collapsable.querySelector( `#${escapedId}-toc-style` );
			if ( existingStyleSheet ) {
				existingStyleSheet.remove();  // Remove the existing stylesheet if it exists.
			}
	
			// Create or append to the <style> element.
			const styleSheet = document_collapsable.createElement( 'style' );
			styleSheet.id = `${escapedId}-toc-style`; // Assign an ID to the style element for future reference.
			
			// check if the browser is Safari or Firefox.
			const userAgent = navigator.userAgent.toLowerCase();
			const isSafari = /^((?!chrome|android|crios|fxios).)*safari/i.test( userAgent ) && !userAgent.includes( 'edge' );
			const isFirefox = userAgent.includes( 'firefox' );
			const isFirefoxOrSafari = isSafari || isFirefox;


			// Function to calculate margin-right based on font size.
			const calculateMarginRightDisc = ( fontSize ) => {
				const baseFontSize = 8; // Base font size for margin calculation.
				const baseMargin = 5; // Base margin for font size 8px.
				const increment = 5; // Increment for each additional 8px font size.
				
				// Parse font size to number.
				const fontSizeNumeric = parseFloat( fontSize );
				
				// Calculate number of 8px increments.
				const increments = ( ( fontSizeNumeric - baseFontSize ) / 8 );
				const marginRight = baseMargin + ( increments * increment );
	
				return `${marginRight}px`;
			};

			const calculateMarginRightDecimal = ( ListFontSize ) => {
				const fontSize = parseFloat( ListFontSize );
			
				// Base margin calculated as one-fourth of the font size.
				const baseMargin = ( 1 / 4 ) * fontSize;
				// Additional margin added for font sizes greater than 16px.
				const additionalMargin = Math.max( 0, ( fontSize - 16 ) / 8 ) * 2;
				return ( baseMargin + additionalMargin );
			};

			let marginRight;
			let marginLeft = '-0.5px';
			
			// Check if markerView is 'disc'
			if ( 'disc' === attr?.markerView ) {
				if ( isFirefoxOrSafari ) {
					marginRight = calculateMarginRightDisc( listFontSize );
					marginLeft = isFirefox ? '1px' : '-0.5px';
				} else {
					marginRight = listFontSize;
				}
			} 
			if ( 'decimal' === attr?.markerView ) {
				// For non-'disc' marker view
				const marginRightDeducting = calculateMarginRightDecimal( listFontSize )
				marginRight = `${parseFloat( listFontSize ) - marginRightDeducting}px`;
				marginLeft = '1px'
			}
			
			// First apply the width to the marker pseudo elements.
			// Them update the margins of the markers.
			// Them update the RTL based margins of the markers. Basically inverted version of the LTR margins.
			styleSheet.innerHTML += `
				${ id } .list-open::before,
				${ id } .list-collapsed::before {
					width: ${ widthValue };
				}
				${ id } .list-open,
				${ id } .list-collapsed {
					margin-right: ${ marginRight };
					margin-left: ${ marginLeft };
				}
				[dir="rtl"] ${ id } .list-open,
				[dir="rtl"] ${ id } .list-collapsed {
					margin-right: ${ marginLeft };
					margin-left: ${ marginRight };
				}
			`;

			// Append the <style> element to the document's head.
			document_collapsable.head.appendChild( styleSheet );
			setTimeout( () => {
				block_element.style.opacity = '';
				uagbLoader?.remove();
				listWrap?.classList.remove( 'uagb-toc__list-hidden' );
			}, 300 ); // Duration to match the transition duration.
		}
	},

	_initCollapsableList( id, attr ) {
		const document_collapsable = UAGBTableOfContents._getDocumentElement();
		const block_element = document_collapsable.querySelector( id );
	
		// Run only if toc-content-collapsable class is present and script hasn't run before
		if ( attr?.isFrontend && attr?.enableCollapsableList && ! block_element.classList.contains( 'init-collapsed-script' ) ) {
			block_element.classList.add( 'init-collapsed-script' ); // Mark script as executed.
	
			const ulElements = block_element.querySelectorAll( 'ul.uagb-toc__list' );
	
			// Set margins for collapsible icon in editor and frontend
			if ( 'function' === typeof UAGBTableOfContents._setCollapseIconMargin ) {
				UAGBTableOfContents._setCollapseIconMargin( id, attr );
			}
	
			ulElements.forEach( ( ul ) => {
				const spanElement = ul.parentElement.querySelector( '.list-open' );
				// Apply initial transition and max height settings
				ul.classList.add( 'transition' );
				ul.dataset.originalMaxHeight = ul.scrollHeight + 'px';
				if ( spanElement ) {
					const isExpanded = spanElement.getAttribute( 'aria-expanded' ) === 'true';
					ul.style.maxHeight = isExpanded ? ul.dataset.originalMaxHeight : '0px';
					ul.style.overflow = isExpanded ? 'visible' : 'hidden';
	
					ul.addEventListener( 'transitionend', () => {
						if ( ul.style.maxHeight !== '0px' ) {
							ul.style.overflow = 'visible';
						}
					} );
				} else {
					ul.style.maxHeight = ul.dataset.originalMaxHeight;
					ul.style.overflow = 'visible';
				}
			} );
	
			// Initialize event listeners for each span with class .list-open.
			const spanList = Array.from( block_element.getElementsByClassName( 'list-open' ) );
			spanList.forEach( ( ele ) => {
				const handleToggle = () => {
					const ulElement = ele.parentElement.querySelector( 'ul' );
					if ( ! ulElement ) {
						return;
					}
					const isExpanded = ele.getAttribute( 'aria-expanded' ) === 'true';
					ele.setAttribute( 'aria-expanded', ! isExpanded );


					// If the list was not expanded, remove the display-none class before animating.
					if ( ! isExpanded ) {
						ulElement.classList.remove( 'uagb-toc__list--hidden-child' );
					}

					// All the rest should happen after the display is updated.
					setTimeout( () => {
						if ( isExpanded ) {
							ulElement.style.maxHeight = '0px';
							ulElement.style.overflow = 'hidden';
						} else {
							ulElement.style.maxHeight = ulElement.dataset.originalMaxHeight;
						}
		
						ele.classList.toggle( 'list-open', ! isExpanded );
						ele.classList.toggle( 'list-collapsed', isExpanded );
						
						// If this was expanded, add a class to remove the padding inside the UL of the collapsible list after it has collapsed. Else just remove that class.
						ulElement.classList.toggle( 'uagb-toc__list--child-of-closed-list' );
					}, 0 );

					// If the list was expanded, add the display-none class after animating.
					if ( isExpanded ) {
						setTimeout( () => {
							ulElement.classList.add( 'uagb-toc__list--hidden-child' );
						}, 300 );
					}	
				};
	
				// Add click and keydown event listeners
				ele.addEventListener( 'click', handleToggle );
				ele.addEventListener( 'keydown', ( event ) => {
					if ( event.key === 'Enter' || event.key === ' ' ) {
						event.preventDefault();
						handleToggle( event );
					}
				} );
	
				ele.setAttribute( 'aria-expanded', ele.classList.contains( 'list-open' ) );
			} );

			// Initial collapse state handling
			if ( attr?.initiallyCollapseList ) {
				ulElements.forEach( ( ul ) => {
					 // Check if there's a span sibling at the same level
					const hasSiblingSpan = ul.parentElement.querySelector( 'span' );	
					 if ( hasSiblingSpan ) {
						ul.style.maxHeight = '0px';
						ul.style.overflow = 'hidden';
						// If this is initially collapsed, then add the closed padding class.
						ul.classList.add( 'uagb-toc__list--child-of-closed-list' );

						// After the animation has ended, set display to none so that screenreaders avoide the hidden content.
						setTimeout( () => {
							ul.classList.add( 'uagb-toc__list--hidden-child' );
						}, 300 );
			
						const spanElement = ul.parentElement.querySelector( '.list-open' );
						if ( spanElement ) {
							spanElement.setAttribute( 'aria-expanded', 'false' );
							spanElement.classList.remove( 'list-open' );
							spanElement.classList.add( 'list-collapsed' );
						}
					}
				} );
			}
		}
	},		

	init( id, attr ) {
		if ( ( attr?.makeCollapsible && ! attr?.initialCollapse ) || ! attr?.makeCollapsible ) {
			UAGBTableOfContents._initCollapsableList( id, attr );
		}
		const document_element = UAGBTableOfContents._getDocumentElement();
		if ( document.querySelector( '.uagb-toc__list' ) !== null ) {
			document.querySelector( '.uagb-toc__list' ).addEventListener(
				'click',
				UAGBTableOfContents._scroll
			);
		}
		if ( document.querySelector( '.uagb-toc__scroll-top' ) !== null ) {
			document.querySelector( '.uagb-toc__scroll-top' ).addEventListener(
				'click',
				UAGBTableOfContents._scrollTop
			);
		}

		if( attr?.makeCollapsible ){
		const elementToOpen = document_element.querySelector( id );

		/* We need the following fail-safe click listener cause an usual click-listener
		 * will fail in case the 'Make TOC Collapsible' is not enabled right from the start/page-load.
		 */
		if ( uagbTOCCollapseListener ) {
			document_element.addEventListener( 'click', collapseListener );
			uagbTOCCollapseListener = false;
		}

		function collapseListener( event ) {
			const element = event.target;
			// These two conditions help us target the required element (collapsible icon beside TOC heading).
			const condition1 = element?.tagName === 'path' || element?.tagName === 'svg' || element?.tagName === 'DIV'; // Check if the clicked element type is either path or SVG or Title DIV.
			const condition2 = element?.className === 'uagb-toc__title' || element?.parentNode?.className === 'uagb-toc__title' || element?.parentNode?.tagName === 'svg'; // Check if the clicked element's parent has the required class.

			if ( condition1 && condition2 ) {
				const $root = element?.closest( `.wp-block-uagb-table-of-contents${id}` );
				const tocListWrapEl = elementToOpen?.querySelector( '.wp-block-uagb-table-of-contents .uagb-toc__list-wrap' );
				// If not have the tocListWrapEl then return false!
				if ( ! tocListWrapEl ) {
					return;
				}
				if ( $root?.classList?.contains( 'uagb-toc__collapse' ) ) {
					$root?.classList?.remove( 'uagb-toc__collapse' );
					UAGBTableOfContents._slideDown(
						tocListWrapEl,
						500, 
						id,
						attr
					);
				} else {
					$root?.classList?.add( 'uagb-toc__collapse' );
					UAGBTableOfContents._slideUp(
						tocListWrapEl,
						500
					);
				}
			}
		}
	}

		document.addEventListener(
			'scroll',
			UAGBTableOfContents._showHideScroll
		);
	},

	_slideUp( target, duration ) {
		target.style.transitionProperty = 'height, margin, padding';
		target.style.transitionDuration = duration + 'ms';
		target.style.boxSizing = 'border-box';
		target.style.height = target.offsetHeight + 'px';
		target.offsetHeight; // eslint-disable-line no-unused-expressions
		target.style.overflow = 'hidden';
		target.style.height = 0;
		target.style.paddingTop = 0;
		target.style.paddingBottom = 0;
		target.style.marginTop = 0;
		target.style.marginBottom = 0;
		window.setTimeout( () => {
			target.style.display = 'none';
			target.style.removeProperty( 'height' );
			target.style.removeProperty( 'padding-top' );
			target.style.removeProperty( 'padding-bottom' );
			target.style.removeProperty( 'margin-top' );
			target.style.removeProperty( 'margin-bottom' );
			target.style.removeProperty( 'overflow' );
			target.style.removeProperty( 'transition-duration' );
			target.style.removeProperty( 'transition-property' );
		}, duration );
	},

	_slideDown( target, duration, id, attr ) {
		target.style?.removeProperty( 'display' );
		let display = window?.getComputedStyle( target ).display;

		if ( display === 'none' ) display = 'block';

		target.style.display = display;
		const height = target.offsetHeight;
		target.style.overflow = 'hidden';
		target.style.height = 0;
		target.style.paddingTop = 0;
		target.style.paddingBottom = 0;
		target.style.marginTop = 0;
		target.style.marginBottom = 0;
		target.offsetHeight; // eslint-disable-line no-unused-expressions
		target.style.boxSizing = 'border-box';
		target.style.transitionProperty = 'height, margin, padding';
		target.style.transitionDuration = duration + 'ms';
		target.style.height = height + 'px';
		target.style.removeProperty( 'padding-top' );
		target.style.removeProperty( 'padding-bottom' );
		target.style.removeProperty( 'margin-top' );
		target.style.removeProperty( 'margin-bottom' );
		window.setTimeout( () => {
			target.style.removeProperty( 'height' );
			target.style.removeProperty( 'overflow' );
			target.style.removeProperty( 'transition-duration' );
			target.style.removeProperty( 'transition-property' );
			UAGBTableOfContents._initCollapsableList( id, attr );
		}, duration );
	},

	hyperLinks() {
		const hash = window.location.hash.substring( 0 );
		if ( '' === hash || /[^a-z0-9_-]$/.test( hash ) ) {
			return;
		}
		function escapeSelector( selector ) {
			return selector.replace( /([.#$+\^*[\](){}|\\])/g, '\\$1' );
		}
		
		let hashId = encodeURI( hash.substring( 0 ) );
		hashId = escapeSelector( hash );
		const selectedAnchor = document?.querySelector( hashId );
		if ( null === selectedAnchor ) {
			return;
		}
		const node = document.querySelector( '.wp-block-uagb-table-of-contents' );

		scrollOffset = node.getAttribute( 'data-offset' );

		const offset = document.querySelector( hash ).offsetTop;

		if ( null !== offset ) {
			scroll( {
				top: offset - scrollOffset,
				behavior: 'smooth',
			} );
		}
	},

	_showHideScroll() {
		scrollElement = document.querySelector( '.uagb-toc__scroll-top' );
		if ( null !== scrollElement ) {
			if ( window.scrollY > 300 ) {
				if ( scrolltoTop ) {
					scrollElement.classList.add( 'uagb-toc__show-scroll' );
				} else {
					scrollElement.classList.remove( 'uagb-toc__show-scroll' );
				}
			} else {
				scrollElement.classList.remove( 'uagb-toc__show-scroll' );
			}
		}
	},

	_scrollTop() {
		window.scrollTo( {
			top: 0,
			behavior: 'smooth',
		} );
	},

	_scroll( e ) {
		e.preventDefault();

		let hash = e.target.getAttribute( 'href' );

		/*
		* There may be instances where we don't receive the hash value from the href attribute.
		* This can occur when the click event's target is not an anchor tag.
		* However, the target element might be nested within an anchor tag.
		* In these cases, we need to check if the parent element has an available hash value.
		*/
		if ( ! hash && e.target.tagName && e.target.tagName !== 'A' ) {
			const getHash = e.target.closest( 'a' );
			// Add a null check for getHash to prevent errors
			if ( getHash ) {
				hash = getHash.getAttribute( 'href' );
			}
		}

		if ( hash ) {
			const node = document.querySelector( '.wp-block-uagb-table-of-contents' );

			scrollData = node.getAttribute( 'data-scroll' );
			scrollOffset = node.getAttribute( 'data-offset' );
			let offset = null;

			hash = hash.substring( 1 );

			if ( document?.querySelector( "[id='" + hash + "']" ) ) {
				offset = document.querySelector( "[id='" + hash + "']" )?.getBoundingClientRect().top + window.scrollY;
			}
			if ( scrollData ) {
				if ( null !== offset ) {
					scroll( {
						top: offset - scrollOffset,
						behavior: 'smooth',
					} );
				}
			} else {
				scroll( {
					top: offset,
					behavior: 'auto',
				} );
			}
		}
	},
	selectDomElement( id ){
		// Select id class but not with script init class.
		const thisScope = document.querySelector( `${ id }:not(.script-init)` );
		if ( ! thisScope ) {
			return null;
		}
		// Add script init class to avoid reinit.
		thisScope.classList.add( 'script-init' );
		return thisScope;
	},
	parseTocSlug( slug ) {
		// If not have the element then return false!
		if ( ! slug ) {
			return slug;
		}

		const parsedSlug = slug
			.toString()
			.toLowerCase()
			.replace( /\…+/g, '' ) // Remove multiple …
			.replace( /\u2013|\u2014/g, '' ) // Remove long dash
			.replace( /&(amp;)/g, '' ) // Remove &
			.replace( /[&]nbsp[;]/gi, '-' ) // Replace inseccable spaces
			.replace( /[^a-zA-Z0-9\u00C0-\u017F _-]/g, '' ) // Keep only alphnumeric, space, -, _ and latin characters.
			.replace( /&(mdash;)/g, '' ) // Remove long dash
			.replace( /\s+/g, '-' ) // Replace spaces with -
			.replace( /[&\/\\#,^!+()$~%.\[\]'":*?;-_<>{}@‘’”“|]/g, '' ) // Remove special chars
			.replace( /\-\-+/g, '-' ) // Replace multiple - with single -
			.replace( /^-+/, '' ) // Trim - from start of text
			.replace( /-+$/, '' ); // Trim - from end of text

		return decodeURI( encodeURIComponent( parsedSlug ) );
	},
	mapTocAnchorsForHref( anchors ) {
		for ( const anchor of anchors ) {
			// Update the href attribute with text content and text content should be parsed.
			const href = anchor.textContent;
			const parsedHref = UAGBTableOfContents.parseTocSlug( href );
			anchor.setAttribute( 'href', `#${parsedHref}` );
		}
	},

	/**
	 * Alter the_content.
	 *
	 * @param {Object} attr
	 * @param {string} id
	 */
	_run( attr, id ) {
		// Add setTime
		setTimeout( function () {
			UAGBTableOfContents._runWithTimeOut( attr, id );
		}, 500 );
	},
	_runWithTimeOut( attr, id ) {
		const $thisScope = UAGBTableOfContents.selectDomElement( id );

		if ( ! $thisScope ) {
			return;
		}
		
		if ( $thisScope.querySelector( '.uag-toc__collapsible-wrap' ) !== null ) {
			if ( $thisScope.querySelector( '.uag-toc__collapsible-wrap' ).length > 0 ) {
				$thisScope.querySelector( '.uagb-toc__title-wrap' ).classList.add( 'uagb-toc__is-collapsible' );
			}
		}

		const allowedHTags = [];
		let allowedHTagStr;

		if ( undefined !== attr.mappingHeaders ) {
			attr.mappingHeaders.forEach( function ( h_tag, index ) {
				// eslint-disable-next-line no-unused-expressions
				h_tag === true ? allowedHTags.push( 'h' + ( index + 1 ) ) : null;
			} );
			allowedHTagStr = null !== allowedHTags ? allowedHTags.join( ',' ) : '';
		}

		const allHeader =
			undefined !== allowedHTagStr && '' !== allowedHTagStr
				? document.body.querySelectorAll( allowedHTagStr )
				: document.body.querySelectorAll( 'h1, h2, h3, h4, h5, h6' );
		if ( 0 !== allHeader.length ) {
			const tocListWrap = $thisScope.querySelector( '.uagb-toc__list-wrap' );
			if ( ! tocListWrap ) {
				return;
			}
			const divsArr = Array.from( allHeader );

			const aTags = tocListWrap.getElementsByTagName( 'a' );

			// Map the anchors to their hrefs to ensure that the hrefs are is correct.
			UAGBTableOfContents.mapTocAnchorsForHref( aTags );

			/* Logic for Remove duplicate heading with same HTML tag and create an new array with duplicate entries start here. */
			const ArrayOfDuplicateElements = function ( headingArray = [] ) {
				const arrayWithDuplicateEntries = [];
				headingArray.reduce( ( temporaryArray, currentVal ) => {
					if ( ! temporaryArray.some( ( item ) => item.innerText === currentVal.innerText ) ) {
						temporaryArray.push( currentVal );
					} else {
						arrayWithDuplicateEntries.push( currentVal );
					}
					return temporaryArray;
				}, [] );
				return arrayWithDuplicateEntries;
			};
			const duplicateHeadings = ArrayOfDuplicateElements( divsArr );

			/* Logic for Remove duplicate heading with same HTML tag and create an new array with duplicate entries ends here. */
			for ( let i = 0; i < divsArr.length; i++ ) {
				let headerText = UAGBTableOfContents.parseTocSlug( divsArr[ i ].innerText );
				if ( '' !== divsArr[ i ].innerText ) {
					if ( headerText.length < 1 ) {
						const searchText = divsArr[ i ].innerText;
						for ( let j = 0; j < aTags.length; j++ ) {
							if ( aTags[ j ].textContent === searchText ) {
								const randomID = '#toc_' + Math.random();
								aTags[ j ].setAttribute( 'href', randomID );
								headerText = randomID.substring( 1 );
							}
						}
					}
				}
				const span = document.createElement( 'span' );
				span.id = headerText;
				span.className = 'uag-toc__heading-anchor';
				divsArr[ i ].prepend( span );
				/* Logic for Create an unique Id for duplicate heading start here. */
				for ( let k = 0; k < duplicateHeadings.length; k++ ) {
					const randomID = '#toc_' + Math.random();
					duplicateHeadings[ k ]
						?.querySelector( '.uag-toc__heading-anchor' )
						?.setAttribute( 'id', randomID.substring( 1 ) );
					const anchorElements = Array.from( tocListWrap.getElementsByTagName( 'a' ) );
					const duplicateHeadingsInTOC = ArrayOfDuplicateElements( anchorElements );
					for ( let l = 0; l < duplicateHeadingsInTOC.length; l++ ) {
						duplicateHeadingsInTOC[ k ]?.setAttribute( 'href', randomID );
					}
				}
				/* Logic for Create an unique Id for duplicate heading ends here. */
			}
		}

		scrolltoTop = attr.scrollToTop;

		const scrollToTopSvg =
			'<svg xmlns="https://www.w3.org/2000/svg" xmlns:xlink="https://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="26px" height="16.043px" viewBox="57 35.171 26 16.043" enable-background="new 57 35.171 26 16.043" xml:space="preserve"><path d="M57.5,38.193l12.5,12.5l12.5-12.5l-2.5-2.5l-10,10l-10-10L57.5,38.193z"/></svg>';

		scrollElement = document.querySelector( '.uagb-toc__scroll-top' );

		if ( scrollElement === null ) {
			const scrollToTopDiv = document.createElement( 'div' );
			scrollToTopDiv.classList.add( 'uagb-toc__scroll-top' );
			scrollToTopDiv.innerHTML = scrollToTopSvg;
			document.body.appendChild( scrollToTopDiv );
		}

		if ( scrollElement !== null ) {
			scrollElement.classList.add( 'uagb-toc__show-scroll' );
		}
		UAGBTableOfContents._showHideScroll();
		UAGBTableOfContents.hyperLinks();
		UAGBTableOfContents.init( id, attr );
	},
};
PK��][l���8ultimate-addons-for-gutenberg/assets/js/inline-notice.jsnu�[���// eslint-disable-next-line no-undef
UAGBInlineNotice = {
	init( attr, id ) {
		const main = document.querySelectorAll( id );

		if ( main.length === 0 ) {
			return;
		}

		const uniqueId = attr.c_id;
		const isCookie = attr.cookies;
		const cookiesDays = attr.close_cookie_days;
		const currentCookie = Cookies.get( 'uagb-notice-' + uniqueId );

		for ( const mainWrap of main ) {
			if ( 'undefined' === typeof currentCookie && true === isCookie ) {
				mainWrap.style.display = 'block';
			}
			const noticeDismissClass = mainWrap.querySelector( '.uagb-notice-dismiss' ) || mainWrap.querySelector( 'svg' );
			const closeBtn = noticeDismissClass ? noticeDismissClass : mainWrap.querySelector( 'button[type="button"] svg' );
			if ( '' !== attr.noticeDismiss && '' !== attr.icon ) {
				closeBtn.addEventListener( 'click', function () {
					dismissClick( isCookie, currentCookie, uniqueId, cookiesDays, main );	
				} );
				main[0].addEventListener( 'keydown', function ( e ) {
					if ( e.keyCode === 13 || e.keyCode === 32 ) {	
						const focusedVisibleElement = document.querySelector( id + ' :focus-visible' );
						dismissClick( isCookie, currentCookie, uniqueId, cookiesDays, main, focusedVisibleElement );
					}
				} );
			}
		}
	},
};

function dismissClick( isCookie, currentCookie, uniqueId, cookiesDays, main, focusedVisibleElement ) { 
	if ( true === isCookie && 'undefined' === typeof currentCookie ) {
		Cookies.set( 'uagb-notice-' + uniqueId, true, { expires: cookiesDays } );
	} 
	main[0]?.classList?.add( 'uagb-notice__active' );
	if ( focusedVisibleElement ) {
		const closeDismiss = focusedVisibleElement?.parentElement;
		closeDismiss.style.display = 'none';
	} else {
		main[0].style.display = 'none';
	}
}PK��][㽓���3ultimate-addons-for-gutenberg/assets/js/timeline.jsnu�[���window.addEventListener( 'DOMContentLoaded', uagbTimelineInit );
window.addEventListener( 'resize', uagbTimelineInit );
window.addEventListener( 'scroll', uagbTimelineInit );
document.addEventListener( 'UAGTimelineEditor', uagbTimelineInit );
// Callback function for all event listeners.
function uagbTimelineInit() {
	const iframeEl = document.querySelector( `iframe[name='editor-canvas']` );
	let mainDiv;
	if ( iframeEl ) {
		mainDiv = iframeEl.contentDocument.querySelectorAll( '.uagb-timeline' );
	} else {
		mainDiv = document.querySelectorAll( '.uagb-timeline' );
	}

	const timeline = mainDiv;
	if ( timeline.length === 0 ) {
		return;
	}

	for ( const content of timeline ) {
		const lineInner = content.querySelector( '.uagb-timeline__line__inner' );
		const lineOuter = content.querySelector( '.uagb-timeline__line' );
		const iconClass = content.querySelectorAll( '.uagb-timeline__marker' );
		const timelineField = content.querySelector( '.uagb-timeline__field:nth-last-child(2)' );
		const cardLast = timelineField
			? timelineField
			: content.querySelector( '.block-editor-block-list__block:last-child' );
		const timelineStartIcon = iconClass[ 0 ];
		const timelineEndIcon = iconClass[ iconClass.length - 1 ];

		setTimeout( () => {
			lineOuter.style.top = timelineStartIcon?.offsetTop + 'px';
		}, 300 );
		const timelineCardHeight = cardLast?.offsetHeight;

		if ( content.classList.contains( 'uagb-timeline__arrow-center' ) ) {
			lineOuter.style.bottom = timelineEndIcon?.offsetTop + 'px';
		} else if ( content.classList.contains( 'uagb-timeline__arrow-top' ) ) {
			const topHeight = timelineCardHeight - timelineEndIcon?.offsetTop;
			lineOuter.style.bottom = topHeight + 'px';
		} else if ( content.classList.contains( 'uagb-timeline__arrow-bottom' ) ) {
			const bottomHeight = timelineCardHeight - timelineEndIcon?.offsetTop;
			lineOuter.style.bottom = bottomHeight + 'px';
		}

		const connectorHeight = 3 * iconClass[ 0 ]?.offsetHeight;

		const viewportHeight = document?.documentElement?.clientHeight;

		const viewportHeightHalf = viewportHeight / 2 + connectorHeight;

		const body = document.body;
		const html = document.documentElement;

		const height = Math.max(
			body.scrollHeight,
			body.offsetHeight,
			html.clientHeight,
			html.scrollHeight,
			html.offsetHeight
		);

		const timelineEndIconOffsetBottom = height - timelineEndIcon?.getBoundingClientRect()?.top;

		const totalTimelineLineHeight =
			height - timelineStartIcon?.getBoundingClientRect()?.top - timelineEndIconOffsetBottom;

		const startFlag =
			timelineStartIcon?.getBoundingClientRect()?.top +
			window?.scrollY -
			( window?.innerHeight - window?.innerHeight / 3 );

		if ( startFlag < document?.documentElement?.scrollTop ) {
			const tscrollPerc =
				( ( document?.documentElement?.scrollTop - startFlag ) / totalTimelineLineHeight ) * 100;
			const percHeight = ( totalTimelineLineHeight / 100 ) * tscrollPerc;

			if ( percHeight < totalTimelineLineHeight + 60 ) {
				lineInner.style.height = percHeight + 'px';
			}
		}

		// Icon bg color and icon color

		let timelineIconPos, timelineCardPos;
		let timelineIconTop, timelineCardTop;
		const timelineIcon = content.querySelectorAll( '.uagb-timeline__marker' );

		let animateBorder = content.querySelectorAll( '.uagb-timeline__field' );

		if ( animateBorder.length === 0 ) {
			animateBorder = content.querySelectorAll( '.uagb-timeline__animate-border' );
		}

		for ( let j = 0; j < timelineIcon.length; j++ ) {
			timelineIconPos = timelineIcon[ j ].lastElementChild.getBoundingClientRect().top + window.scrollY;
			timelineCardPos = animateBorder[ j ].lastElementChild.getBoundingClientRect().top + window.scrollY;

			timelineIconTop = timelineIconPos - document.documentElement.scrollTop;
			timelineCardTop = timelineCardPos - document.documentElement.scrollTop;

			if ( timelineCardTop < viewportHeightHalf ) {
				animateBorder[ j ].classList.remove( 'out-view' );
				animateBorder[ j ].classList.add( 'in-view' );
			} else {
				// Remove classes if element is below than half of viewport.
				animateBorder[ j ].classList.add( 'out-view' );
				animateBorder[ j ].classList.remove( 'in-view' );
			}

			if ( timelineIconTop < viewportHeightHalf ) {
				// Add classes if element is above than half of viewport.
				timelineIcon[ j ].classList.remove( 'uagb-timeline__out-view-icon' );
				timelineIcon[ j ].classList.add( 'uagb-timeline__in-view-icon' );
			} else {
				// Remove classes if element is below than half of viewport.
				timelineIcon[ j ].classList.add( 'uagb-timeline__out-view-icon' );
				timelineIcon[ j ].classList.remove( 'uagb-timeline__in-view-icon' );
			}
		}
	}
}

// eslint-disable-next-line no-unused-vars
function UAGBTimelineClasses( attributes, id ) {
	const timeline = document.querySelectorAll( id );

	if ( timeline.length === 0 ) {
		return;
	}

	const deviceWidth = Math.max( window.screen.width, window.innerWidth );

	for ( const content of timeline ) {
		content.classList.remove(
			'uagb-timeline__left-block',
			'uagb-timeline__right-block',
			'uagb-timeline__center-block'
		);

		let device = '';

		if ( deviceWidth <= uagb_timeline_data.mobile_breakpoint ) {
			device = 'Mobile';
		} else if ( deviceWidth <= uagb_timeline_data.tablet_breakpoint ) {
			device = 'Tablet';
		}

		if ( 'left' === attributes[ 'timelinAlignment' + device ] ) {
			content.classList.add( 'uagb-timeline__left-block' );
		} else if ( 'right' === attributes[ 'timelinAlignment' + device ] ) {
			content.classList.add( 'uagb-timeline__right-block' );
		} else {
			content.classList.add( 'uagb-timeline__center-block' );
		}

		let timelineChild = content.querySelectorAll( '.wp-block-uagb-content-timeline-child' );
		let childIndex = 0;

		if ( 0 === timelineChild.length ) {
			timelineChild = content.querySelectorAll( '.uagb-timeline__field' );
		}

		for ( const child of timelineChild ) {
			child.classList.remove( 'uagb-timeline__left', 'uagb-timeline__right' );
			const timelineMarker = child.querySelectorAll( '.uagb-timeline__marker' )[ 0 ];
			timelineMarker.classList.remove( 'uagb-timeline__left', 'uagb-timeline__right' );

			const timeLineEventInner = child.querySelectorAll( '.uagb-timeline__events-inner-new' )[ 0 ];

			timeLineEventInner.classList.remove( 'uagb-timeline__day-right', 'uagb-timeline__day-left' );

			if ( 'left' === attributes[ 'timelinAlignment' + device ] ) {
				child.classList.add( 'uagb-timeline__left' );
				timelineMarker.classList.add( 'uagb-timeline__left' );
				timeLineEventInner.classList.add( 'uagb-timeline__day-left' );
			} else if ( 'right' === attributes[ 'timelinAlignment' + device ] ) {
				child.classList.add( 'uagb-timeline__right' );
				timelineMarker.classList.add( 'uagb-timeline__left' );
				timeLineEventInner.classList.add( 'uagb-timeline__day-right' );
			} else if ( 'center' === attributes[ 'timelinAlignment' + device ] ) {
				if ( childIndex % 2 === 0 ) {
					child.classList.add( 'uagb-timeline__right' );
					timelineMarker.classList.add( 'uagb-timeline__right' );
					timeLineEventInner.classList.add( 'uagb-timeline__day-right' );
				} else {
					child.classList.add( 'uagb-timeline__left' );
					timelineMarker.classList.add( 'uagb-timeline__left' );
					timeLineEventInner.classList.add( 'uagb-timeline__day-left' );
				}
			}

			childIndex++;
		}
	}
}
PK��][T�
\��:ultimate-addons-for-gutenberg/assets/js/spectra-counter.jsnu�[���UAGBCounter = {
	elements: {},
	init( mainSelector, data = {} ) {
		this.elements = this.getDefaultElements( mainSelector );
		const elements = document.querySelectorAll( `.wp-block-uagb-counter${mainSelector}` );
        if ( elements && elements.length > 1 ) {
            for( const element of elements ) {
                this.elements.counterWrapper = element;
                this.handleCounterWrapper( data );	
            }
        } else {
            this.handleCounterWrapper( data );
        }   
	},
	handleCounterWrapper( data ) {
		data = this._getCounterData( this.elements.counterWrapper, data );

		if( !data.isFrontend ){
			this.elements.counterWrapper.removeAttribute( 'played' );
		}
		if ( typeof this.elements.counterWrapper !== 'undefined' && this.elements.counterWrapper ) {
			const numberCount = this._numberCount( data );
			this._inViewInit( numberCount, data );
		}
	},
	getDefaultElements( mainSelector ) {
		const counterWrapper = this.getElement( mainSelector );
		return {
			counterWrapper,
		};
	},
	getElement( selector, childSelector = null ) {
		let domElement = document.querySelector( selector );
		if ( domElement ) {
			if ( childSelector ) {
				return domElement.querySelector( childSelector );
			}
		} else {
			const editorCanvas = document.querySelector( 'iframe[name="editor-canvas"]' );
			if ( editorCanvas && editorCanvas.contentDocument ) {
				domElement = editorCanvas.contentDocument.querySelector( selector );
				if ( childSelector ) {
					return ( domElement = domElement.querySelector( childSelector ) );
				}
			}
		}
		return domElement;
	},

	_inViewInit( countUp, data ) {
		const that = this;
		const callback = ( entries ) => {
			entries.forEach( ( entry ) => {
				const el = entry.target;
				const hasPlayed = el.hasAttribute( 'played' ); // Check if an animation has played; If played already, do mot re-trigger it.
				if ( entry.isIntersecting && ! hasPlayed ) {
					if ( ! countUp.error ) {
						if ( data.layout === 'bars' ) {
							that._triggerBar( el, data );
						} else if ( data.layout === 'circle' ) {
							that._triggerCircle( el, data );
						}
						countUp.start();
					} else {
						console.error( countUp.error ); // eslint-disable-line no-console
					}
				}
			} );
		};
		const IO = new IntersectionObserver( callback, { threshold: 0.75 } );
		IO.observe( that.elements.counterWrapper );
	},
	_numberCount( data ) {
		const that = this;
		const el = this.elements.counterWrapper.querySelector( '.uagb-counter-block-number' );
		if ( typeof el !== 'undefined' && el ) {
			const countUp = new window.countUp.CountUp( el, that._getEndNumber( data ), {
				startVal: that._getStartNumber( data ),
				duration: that._getAnimationDuration( data ),
				separator: data.thousandSeparator,
				useEasing: false,
				decimalPlaces: data.decimalPlaces,
			} );
			return countUp;
		}
	},

	_triggerBar( el, data ) {
		const that = this;
		const parentWrapClass = 'wp-block-uagb-counter--bars';
		const numberWrap = el.querySelector( '.wp-block-uagb-counter__number' );
		const duration = that._getAnimationDurationForCSS( data );
		const startWidth =
			that._getStartNumber( data ) < that._getTotalNumber( data )
				? Math.ceil( ( that._getStartNumber( data ) / that._getTotalNumber( data ) ) * 100 )
				: 100;
		const endWidth =
			that._getEndNumber( data ) <= that._getTotalNumber( data )
				? Math.ceil( ( that._getEndNumber( data ) / that._getTotalNumber( data ) ) * 100 )
				: 100;

		const animationKeyframes = [ { width: startWidth + '%' }, { width: endWidth + '%' } ];

		const animationProperties = {
			duration,
			fill: 'forwards',
		};

		// Condition to prevent an edge case bug where number layout gets animated like bar layout.
		if ( el.classList.contains( parentWrapClass ) ) {
			numberWrap?.animate( animationKeyframes, animationProperties );
		}

		el.setAttribute( 'played', true ); // Set: animation has played once.
	},

	_triggerCircle( el, data ) {
		const that = this;
		const circleWrap = el.querySelector(
			'.wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress'
		);

		const diameter = data.circleSize - data.circleStokeSize;
		const circumference = Math.PI * diameter;
		const totalNumber = that._getTotalNumber( data );

		let startPoint = 100 * ( that._getStartNumber( data ) / totalNumber );
		startPoint = startPoint < 100 ? startPoint : 100;
		startPoint = 100 - startPoint;
		startPoint = ( startPoint / 100 ) * circumference;

		let endPoint = 100 * ( that._getEndNumber( data ) / totalNumber );
		endPoint = endPoint < 100 ? endPoint : 100;
		endPoint = 100 - endPoint;
		endPoint = ( endPoint / 100 ) * circumference;

		const duration = that._getAnimationDurationForCSS( data );

		const animationKeyframes = [ { strokeDashoffset: startPoint + 'px' }, { strokeDashoffset: endPoint + 'px' } ];

		const animationProperties = {
			duration,
			fill: 'forwards',
		};

		circleWrap?.animate( animationKeyframes, animationProperties );

		el.setAttribute( 'played', true ); // Set: animation has played once.
	},

	_getAnimationDuration( data ) {
		return data.animationDuration / 1000;
	},

	_getAnimationDurationForCSS( data ) {
		return data.animationDuration;
	},

	_getStartNumber( data ) {
		if ( isNaN( data.startNumber ) ) {
			return parseFloat( 0 );
		}

		return data.startNumber || parseFloat( data.startNumber ) === parseFloat( 0 )
			? parseFloat( data.startNumber )
			: parseFloat( 0 );
	},
	_getEndNumber( data ) {
		if ( isNaN( data.endNumber ) ) {
			return parseFloat( 80 );
		}

		return data.endNumber || parseFloat( data.startNumber ) === parseFloat( 0 )
			? parseFloat( data.endNumber )
			: parseFloat( 80 );
	},
	_getTotalNumber( data ) {
		if ( isNaN( data.startNumber ) ) {
			return parseFloat( 0 );
		}

		return ( data.totalNumber || parseFloat( data.startNumber ) === parseFloat( 0 ) ) ? parseFloat( data.totalNumber ) : parseFloat( 100 );
	},
	_getCounterData( element,data ){
		
		// Getting data from html attribute data-counter and overwrite data which comes from php.
		let getCounterData = element?.getAttribute( 'data-counter' );
		if( ! getCounterData ){
			return data;
		}

		getCounterData = JSON.parse( getCounterData );
		if( getCounterData ){
			data = { ...data, ...getCounterData};
		}
		return data;
	}
};
PK��][�w�JbbHultimate-addons-for-gutenberg/assets/js/spectra-block-positioning.min.jsnu�[���const UAGBBlockPositioning={init(t,e){const s=document.querySelector(e);s?.classList.contains("uagb-position__sticky")&&UAGBBlockPositioning.handleSticky(s,t)},handleSticky(t,e){var s=()=>{return document.querySelector("#wpadminbar")?.offsetHeight||0},p=()=>{"undefined"!=typeof AOS&&e?.UAGAnimationType&&(t.dataset.aos=e?.UAGAnimationType,t.dataset.aosDuration=e?.UAGAnimationTime,t.dataset.aosDelay=e?.UAGAnimationDelay,t.dataset.aosEasing=e?.UAGAnimationEasing,t.dataset.aosOnce=!0,setTimeout(()=>{AOS.refreshHard()},100))};const o=t.getBoundingClientRect(),y=e?.isBlockRootParent?null:t.parentElement,i=((t,e,s)=>{const o=document.createElement("div"),i=(o.style.height=e.height+"px",o.style.boxSizing="border-box",window.getComputedStyle(t));return s?(o.style.width="100%",o.style.maxWidth=i.getPropertyValue("max-width")||e.width+"px",o.style.padding=i.getPropertyValue("padding")||0,o.style.margin=i.getPropertyValue("margin")||0,o.style.border=i.getPropertyValue("border")||0,o.style.borderColor="transparent"):(o.style.width=e.width+"px",o.style.margin=i.getPropertyValue("margin")||0),o})(t,o,y);let n,a,l,r;const c={top:0,bottom:0},d={top:0,right:0,bottom:0,left:0};if(e?.UAGStickyRestricted){r=y.getBoundingClientRect();const g=window.getComputedStyle(y);d.top=parseInt(g.getPropertyValue("padding-top")||0,10),d.bottom=parseInt(g.getPropertyValue("padding-bottom")||0,10),c.top=r.top+(window.pageYOffset||0)+d.top,c.bottom=r.bottom+(window.pageYOffset||0)-d.bottom-o.height-s()-(e?.UAGStickyOffset||0)}"bottom"===e?.UAGStickyLocation?(n=o.top+(window.pageYOffset||0)-window.innerHeight+o.height+(e?.UAGStickyOffset||0),a=`${e?.UAGStickyOffset||0}px`,(l=void 0!==window.pageYOffset?window.pageYOffset:document.body.scrollTop)<=n&&!t.classList.contains("uagb-position__sticky--stuck")&&(t.parentNode.insertBefore(i,t),t.classList.add("uagb-position__sticky--stuck"),t.style.bottom=`calc(${a} - ${window.innerHeight}px)`,t.style.left=o.left+"px",t.style.width=o.width+"px",t.style.zIndex="999",setTimeout(()=>{t.style.bottom=a},50)),p(),window.addEventListener("scroll",()=>{(l=void 0!==window.pageYOffset?window.pageYOffset:document.body.scrollTop)<=n?t.classList.contains("uagb-position__sticky--stuck")||(t.parentNode.insertBefore(i,t),t.classList.add("uagb-position__sticky--stuck"),t.style.bottom=a,t.style.left=o.left+"px",t.style.width=o.width+"px",t.style.zIndex="999"):l>n&&t.classList.contains("uagb-position__sticky--stuck")&&(t.parentNode.removeChild(i),t.classList.remove("uagb-position__sticky--stuck"),t.style.bottom="",t.style.left="",t.style.width="",t.style.zIndex="")})):(n=o.top+(window.pageYOffset||0)-s()-(e?.UAGStickyOffset||0),a=s()+(e?.UAGStickyOffset||0)+"px",(l=void 0!==window.pageYOffset?window.pageYOffset:document.body.scrollTop)>=n&&!t.classList.contains("uagb-position__sticky--stuck")&&(t.parentNode.insertBefore(i,t),t.classList.add("uagb-position__sticky--stuck"),e?.UAGStickyRestricted&&l>=c.bottom?(t.classList.remove("uagb-position__sticky--stuck"),t.classList.add("uagb-position__sticky--restricted"),t.style.top="",t.style.bottom=d.bottom+"px",t.style.left=`${i?.offsetLeft||0}px`):(t.style.top=`calc(${a} - ${window.innerHeight}px)`,t.style.left=o.left+"px",t.style.top=a),t.style.width=o.width+"px",t.style.zIndex="999"),p(),window.addEventListener("scroll",()=>{(l=void 0!==window.pageYOffset?window.pageYOffset:document.body.scrollTop)>=n?t.classList.contains("uagb-position__sticky--stuck")||t.classList.contains("uagb-position__sticky--restricted")?e?.UAGStickyRestricted&&!t.classList.contains("uagb-position__sticky--restricted")&&l>=c.bottom?(t.classList.remove("uagb-position__sticky--stuck"),t.classList.add("uagb-position__sticky--restricted"),t.style.top="",t.style.bottom=d.bottom+"px",t.style.left=`${i?.offsetLeft||0}px`):t.classList.contains("uagb-position__sticky--restricted")&&l<c.bottom&&(t.classList.remove("uagb-position__sticky--restricted"),t.classList.add("uagb-position__sticky--stuck"),t.style.top=a,t.style.bottom="",t.style.left=o.left+"px",t.style.width=o.width+"px",t.style.zIndex="999"):(t.parentNode.insertBefore(i,t),t.classList.add("uagb-position__sticky--stuck"),t.style.top=a,t.style.left=o.left+"px",t.style.width=o.width+"px",t.style.zIndex="999"):l<n&&t.classList.contains("uagb-position__sticky--stuck")&&(t.parentNode.removeChild(i),t.classList.remove("uagb-position__sticky--stuck"),t.style.top="",t.style.left="",t.style.width="",t.style.zIndex="")}))}};PK��][�uD��?ultimate-addons-for-gutenberg/assets/js/cross-site-cp-helper.jsnu�[���/**
 * Created by dagan on 07/04/2014.
 */
'use strict';

window.XgUtils =
	window.XgUtils ||
	( function () {
		function extend( object, defaultObject ) {
			const result = defaultObject || {};
			let key;
			for ( key in object ) {
				if ( object.hasOwnProperty( key ) ) {
					result[ key ] = object[ key ];
				}
			}
			return result;
		}

		//public interface
		return {
			extend,
		};
	} )();

window.xsLocalStorage =
	window.xsLocalStorage ||
	( function () {
		const MESSAGE_NAMESPACE = 'cross-domain-local-message-uag';
		let options = {
			iframeId: 'cross-domain-iframe-uag',
			iframeUrl: undefined,
			initCallback() {},
		};
		let requestId = -1;
		let iframe;
		const requests = {};
		let wasInit = false;
		let iframeReady = true;

		function applyCallback( data ) {
			if ( requests[ data.id ] ) {
				requests[ data.id ]( data );
				delete requests[ data.id ];
			}
		}

		function receiveMessage( event ) {
			let data;
			try {
				data = JSON.parse( event.data );
			} catch ( err ) {
				//not our message, can ignore
			}
			if ( data && data.namespace === MESSAGE_NAMESPACE ) {
				if ( data.id === 'iframe-ready' ) {
					iframeReady = true;
					options.initCallback();
				} else {
					applyCallback( data );
				}
			}
		}

		function buildMessage( action, key, value, callback ) {
			requestId++;
			requests[ requestId ] = callback;
			const data = {
				namespace: MESSAGE_NAMESPACE,
				id: requestId,
				action,
				key,
				value,
			};
			iframe?.contentWindow.postMessage( JSON.stringify( data ), '*' );
		}

		function init( customOptions ) {
			/* eslint-disable no-undef */
			options = XgUtils.extend( customOptions, options );
			const temp = document.createElement( 'div' );

			if ( window.addEventListener ) {
				window.addEventListener( 'message', receiveMessage, false );
			} else {
				window.attachEvent( 'onmessage', receiveMessage );
			}

			temp.innerHTML =
				'<iframe id="' + options.iframeId + '" src=' + options.iframeUrl + ' style="display: none;"></iframe>';
			document.body.appendChild( temp );
			iframe = document.getElementById( options.iframeId );
		}

		function isApiReady() {
			if ( ! wasInit ) {
				return false;
			}
			if ( ! iframeReady ) {
				return false;
			}
			return true;
		}

		function isDomReady() {
			return document.readyState === 'complete';
		}

		return {
			//callback is optional for cases you use the api before window load.
			init( customOptions ) {
				if ( ! customOptions.iframeUrl ) {
					throw 'Please specify the iframe URL';
				}
				if ( wasInit ) {
					return;
				}
				wasInit = true;
				if ( isDomReady() ) {
					init( customOptions );
				} else if ( document.addEventListener ) {
					// All browsers expect IE < 9
					document.addEventListener( 'readystatechange', function () {
						if ( isDomReady() ) {
							init( customOptions );
						}
					} );
				} else {
					// IE < 9
					document.attachEvent( 'readystatechange', function () {
						if ( isDomReady() ) {
							init( customOptions );
						}
					} );
				}
			},
			setItem( key, value, callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'set', key, value, callback );
			},

			getItem( key, callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'get', key, null, callback );
			},
			removeItem( key, callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'remove', key, null, callback );
			},
			key( index, callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'key', index, null, callback );
			},
			getSize( callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'size', null, null, callback );
			},
			getLength( callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'length', null, null, callback );
			},
			clear( callback ) {
				if ( ! isApiReady() ) {
					return;
				}
				buildMessage( 'clear', null, null, callback );
			},
			wasInit() {
				return wasInit;
			},
		};
	} )();
PK��][?N�W))1ultimate-addons-for-gutenberg/assets/js/lottie.jsnu�[���UAGBLottie = {
	getElement : ( id ) => {
		// Check if the script has run once already on the given element (required for homepage sidebar usage case).
		const getJsELement = document.querySelector( `.${id}:not(.uagb-activated-script)` );
		if( ! getJsELement ) return null;

		// Ensures that the script only runs once on the given element (required for homepage sidebar usage case).
		getJsELement.classList.add( 'uagb-activated-script' );
		return getJsELement;
	}, 
	_run( attr, id ) {
		const getLottieElement = UAGBLottie.getElement( id );
		if( ! getLottieElement ){
			return;
		}

		const animation = bodymovin.loadAnimation( {
			container: getLottieElement,
			renderer: 'svg',
			loop: attr.loop,
			autoplay: 'none' === attr.playOn ? true : false,
			path: attr.lottieURl,
			rendererSettings: {
				preserveAspectRatio: 'xMidYMid',
				className: 'uagb-lottie-inner-wrap',
			},
		} );

		animation.setSpeed( attr.speed );

		const reversedir = attr.reverse && attr.loop ? -1 : 1;

		animation.setDirection( reversedir );

		if ( 'hover' === attr.playOn ) {
			getLottieElement.addEventListener( 'mouseenter', function () {
				animation.play();
			} );
			getLottieElement.addEventListener( 'mouseleave', function () {
				animation.stop();
			} );
		} else if ( 'click' === attr.playOn ) {
			getLottieElement.addEventListener( 'click', function () {
				animation.stop();
				animation.play();
			} );
		} else if ( 'scroll' === attr.playOn ) {
			window.addEventListener( 'scroll', function () {
				animation.stop();
				animation.play();
			} );
		}
	},
};
PK��][Y���<ultimate-addons-for-gutenberg/assets/js/uagb-button-child.jsnu�[���UAGBButtonChild = {
	init( $selector ) {
		const block = document.querySelector( $selector );
		if ( ! block ) {
			return;
		}

		block.addEventListener( 'focusin', () => {
			document.addEventListener( 'keydown', this.handleKeyDown );
		} );

		block.addEventListener( 'focusout', () => {
			document.removeEventListener( 'keydown', this.handleKeyDown );
		} );
	},
	handleKeyDown( e ) {
		if ( e.key === ' ' || e.key === 'Spacebar' ) {
			// Checks if the target is an <a> tag with the  uagb specific class
			if ( e.target.tagName === 'A' && e.target.classList.contains( 'uagb-buttons-repeater' ) ) {
				e.preventDefault();
				e.target.click();
			}
		}
	},
};
PK��][:�o0m�m�4ultimate-addons-for-gutenberg/assets/js/slick.min.jsnu�[���/*
     _ _      _       _
 ___| (_) ___| | __  (_)___
/ __| | |/ __| |/ /  | / __|
\__ \ | | (__|   < _ | \__ \
|___/_|_|\___|_|\_(_)/ |___/
                   |__/

 Version: 1.9.0
  Author: Ken Wheeler
 Website: https://kenwheeler.github.io
    Docs: https://kenwheeler.github.io/slick
    Repo: https://github.com/kenwheeler/slick
  Issues: https://github.com/kenwheeler/slick/issues

 */
(function(i){"use strict";"function"==typeof define&&define.amd?define(["jquery"],i):"undefined"!=typeof exports?module.exports=i(require("jquery")):i(jQuery)})(function(i){"use strict";var e=window.Slick||{};e=function(){function e(e,o){var s,n=this;n.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:i(e),appendDots:i(e),arrows:!0,asNavFor:null,prevArrow:'<button class="slick-prev" aria-label="Previous" type="button">Previous</button>',nextArrow:'<button class="slick-next" aria-label="Next" type="button">Next</button>',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(e,t){return i('<button type="button" />').text(t+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,focusOnChange:!1,infinite:!0,initialSlide:0,lazyLoad:"ondemand",mobileFirst:!1,pauseOnHover:!0,pauseOnFocus:!0,pauseOnDotsHover:!1,respondTo:"window",responsive:null,rows:1,rtl:!1,slide:"",slidesPerRow:1,slidesToShow:1,slidesToScroll:1,speed:500,swipe:!0,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,verticalSwiping:!1,waitForAnimate:!0,zIndex:1e3},n.initials={animating:!1,dragging:!1,autoPlayTimer:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,$dots:null,listWidth:null,listHeight:null,loadIndex:0,$nextArrow:null,$prevArrow:null,scrolling:!1,slideCount:null,slideWidth:null,$slideTrack:null,$slides:null,sliding:!1,slideOffset:0,swipeLeft:null,swiping:!1,$list:null,touchObject:{},transformsEnabled:!1,unslicked:!1},i.extend(n,n.initials),n.activeBreakpoint=null,n.animType=null,n.animProp=null,n.breakpoints=[],n.breakpointSettings=[],n.cssTransitions=!1,n.focussed=!1,n.interrupted=!1,n.hidden="hidden",n.paused=!0,n.positionProp=null,n.respondTo=null,n.rowCount=1,n.shouldClick=!0,n.$slider=i(e),n.$slidesCache=null,n.transformType=null,n.transitionType=null,n.visibilityChange="visibilitychange",n.windowWidth=0,n.windowTimer=null,s=i(e).data("slick")||{},n.options=i.extend({},n.defaults,o,s),n.currentSlide=n.options.initialSlide,n.originalSettings=n.options,"undefined"!=typeof document.mozHidden?(n.hidden="mozHidden",n.visibilityChange="mozvisibilitychange"):"undefined"!=typeof document.webkitHidden&&(n.hidden="webkitHidden",n.visibilityChange="webkitvisibilitychange"),n.autoPlay=i.proxy(n.autoPlay,n),n.autoPlayClear=i.proxy(n.autoPlayClear,n),n.autoPlayIterator=i.proxy(n.autoPlayIterator,n),n.changeSlide=i.proxy(n.changeSlide,n),n.clickHandler=i.proxy(n.clickHandler,n),n.selectHandler=i.proxy(n.selectHandler,n),n.setPosition=i.proxy(n.setPosition,n),n.swipeHandler=i.proxy(n.swipeHandler,n),n.dragHandler=i.proxy(n.dragHandler,n),n.keyHandler=i.proxy(n.keyHandler,n),n.instanceUid=t++,n.htmlExpr=/^(?:\s*(<[\w\W]+>)[^>]*)$/,n.registerBreakpoints(),n.init(!0)}var t=0;return e}(),e.prototype.activateADA=function(){var i=this;i.$slideTrack.find(".slick-active").attr({"aria-hidden":"false"}).find("a, input, button, select").attr({tabindex:"0"})},e.prototype.addSlide=e.prototype.slickAdd=function(e,t,o){var s=this;if("boolean"==typeof t)o=t,t=null;else if(t<0||t>=s.slideCount)return!1;s.unload(),"number"==typeof t?0===t&&0===s.$slides.length?i(e).appendTo(s.$slideTrack):o?i(e).insertBefore(s.$slides.eq(t)):i(e).insertAfter(s.$slides.eq(t)):o===!0?i(e).prependTo(s.$slideTrack):i(e).appendTo(s.$slideTrack),s.$slides=s.$slideTrack.children(this.options.slide),s.$slideTrack.children(this.options.slide).detach(),s.$slideTrack.append(s.$slides),s.$slides.each(function(e,t){i(t).attr("data-slick-index",e)}),s.$slidesCache=s.$slides,s.reinit()},e.prototype.animateHeight=function(){var i=this;if(1===i.options.slidesToShow&&i.options.adaptiveHeight===!0&&i.options.vertical===!1){var e=i.$slides.eq(i.currentSlide).outerHeight(!0);i.$list.animate({height:e},i.options.speed)}},e.prototype.animateSlide=function(e,t){var o={},s=this;s.animateHeight(),s.options.rtl===!0&&s.options.vertical===!1&&(e=-e),s.transformsEnabled===!1?s.options.vertical===!1?s.$slideTrack.animate({left:e},s.options.speed,s.options.easing,t):s.$slideTrack.animate({top:e},s.options.speed,s.options.easing,t):s.cssTransitions===!1?(s.options.rtl===!0&&(s.currentLeft=-s.currentLeft),i({animStart:s.currentLeft}).animate({animStart:e},{duration:s.options.speed,easing:s.options.easing,step:function(i){i=Math.ceil(i),s.options.vertical===!1?(o[s.animType]="translate("+i+"px, 0px)",s.$slideTrack.css(o)):(o[s.animType]="translate(0px,"+i+"px)",s.$slideTrack.css(o))},complete:function(){t&&t.call()}})):(s.applyTransition(),e=Math.ceil(e),s.options.vertical===!1?o[s.animType]="translate3d("+e+"px, 0px, 0px)":o[s.animType]="translate3d(0px,"+e+"px, 0px)",s.$slideTrack.css(o),t&&setTimeout(function(){s.disableTransition(),t.call()},s.options.speed))},e.prototype.getNavTarget=function(){var e=this,t=e.options.asNavFor;return t&&null!==t&&(t=i(t).not(e.$slider)),t},e.prototype.asNavFor=function(e){var t=this,o=t.getNavTarget();null!==o&&"object"==typeof o&&o.each(function(){var t=i(this).slick("getSlick");t.unslicked||t.slideHandler(e,!0)})},e.prototype.applyTransition=function(i){var e=this,t={};e.options.fade===!1?t[e.transitionType]=e.transformType+" "+e.options.speed+"ms "+e.options.cssEase:t[e.transitionType]="opacity "+e.options.speed+"ms "+e.options.cssEase,e.options.fade===!1?e.$slideTrack.css(t):e.$slides.eq(i).css(t)},e.prototype.autoPlay=function(){var i=this;i.autoPlayClear(),i.slideCount>i.options.slidesToShow&&(i.autoPlayTimer=setInterval(i.autoPlayIterator,i.options.autoplaySpeed))},e.prototype.autoPlayClear=function(){var i=this;i.autoPlayTimer&&clearInterval(i.autoPlayTimer)},e.prototype.autoPlayIterator=function(){var i=this,e=i.currentSlide+i.options.slidesToScroll;i.paused||i.interrupted||i.focussed||(i.options.infinite===!1&&(1===i.direction&&i.currentSlide+1===i.slideCount-1?i.direction=0:0===i.direction&&(e=i.currentSlide-i.options.slidesToScroll,i.currentSlide-1===0&&(i.direction=1))),i.slideHandler(e))},e.prototype.buildArrows=function(){var e=this;e.options.arrows===!0&&(e.$prevArrow=i(e.options.prevArrow).addClass("slick-arrow"),e.$nextArrow=i(e.options.nextArrow).addClass("slick-arrow"),e.slideCount>e.options.slidesToShow?(e.$prevArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.$nextArrow.removeClass("slick-hidden").removeAttr("aria-hidden tabindex"),e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.prependTo(e.options.appendArrows),e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.appendTo(e.options.appendArrows),e.options.infinite!==!0&&e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true")):e.$prevArrow.add(e.$nextArrow).addClass("slick-hidden").attr({"aria-disabled":"true",tabindex:"-1"}))},e.prototype.buildDots=function(){var e,t,o=this;if(o.options.dots===!0&&o.slideCount>o.options.slidesToShow){for(o.$slider.addClass("slick-dotted"),t=i("<ul />").addClass(o.options.dotsClass),e=0;e<=o.getDotCount();e+=1)t.append(i("<li />").append(o.options.customPaging.call(this,o,e)));o.$dots=t.appendTo(o.options.appendDots),o.$dots.find("li").first().addClass("slick-active")}},e.prototype.buildOut=function(){var e=this;e.$slides=e.$slider.children(e.options.slide+":not(.slick-cloned)").addClass("slick-slide"),e.slideCount=e.$slides.length,e.$slides.each(function(e,t){i(t).attr("data-slick-index",e).data("originalStyling",i(t).attr("style")||"")}),e.$slider.addClass("slick-slider"),e.$slideTrack=0===e.slideCount?i('<div class="slick-track"/>').appendTo(e.$slider):e.$slides.wrapAll('<div class="slick-track"/>').parent(),e.$list=e.$slideTrack.wrap('<div class="slick-list"/>').parent(),e.$slideTrack.css("opacity",0),e.options.centerMode!==!0&&e.options.swipeToSlide!==!0||(e.options.slidesToScroll=1),i("img[data-lazy]",e.$slider).not("[src]").addClass("slick-loading"),e.setupInfinite(),e.buildArrows(),e.buildDots(),e.updateDots(),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),e.options.draggable===!0&&e.$list.addClass("draggable")},e.prototype.buildRows=function(){var i,e,t,o,s,n,r,l=this;if(o=document.createDocumentFragment(),n=l.$slider.children(),l.options.rows>0){for(r=l.options.slidesPerRow*l.options.rows,s=Math.ceil(n.length/r),i=0;i<s;i++){var d=document.createElement("div");for(e=0;e<l.options.rows;e++){var a=document.createElement("div");for(t=0;t<l.options.slidesPerRow;t++){var c=i*r+(e*l.options.slidesPerRow+t);n.get(c)&&a.appendChild(n.get(c))}d.appendChild(a)}o.appendChild(d)}l.$slider.empty().append(o),l.$slider.children().children().children().css({width:100/l.options.slidesPerRow+"%",display:"inline-block"})}},e.prototype.checkResponsive=function(e,t){var o,s,n,r=this,l=!1,d=r.$slider.width(),a=window.innerWidth||i(window).width();if("window"===r.respondTo?n=a:"slider"===r.respondTo?n=d:"min"===r.respondTo&&(n=Math.min(a,d)),r.options.responsive&&r.options.responsive.length&&null!==r.options.responsive){s=null;for(o in r.breakpoints)r.breakpoints.hasOwnProperty(o)&&(r.originalSettings.mobileFirst===!1?n<r.breakpoints[o]&&(s=r.breakpoints[o]):n>r.breakpoints[o]&&(s=r.breakpoints[o]));null!==s?null!==r.activeBreakpoint?(s!==r.activeBreakpoint||t)&&(r.activeBreakpoint=s,"unslick"===r.breakpointSettings[s]?r.unslick(s):(r.options=i.extend({},r.originalSettings,r.breakpointSettings[s]),e===!0&&(r.currentSlide=r.options.initialSlide),r.refresh(e)),l=s):(r.activeBreakpoint=s,"unslick"===r.breakpointSettings[s]?r.unslick(s):(r.options=i.extend({},r.originalSettings,r.breakpointSettings[s]),e===!0&&(r.currentSlide=r.options.initialSlide),r.refresh(e)),l=s):null!==r.activeBreakpoint&&(r.activeBreakpoint=null,r.options=r.originalSettings,e===!0&&(r.currentSlide=r.options.initialSlide),r.refresh(e),l=s),e||l===!1||r.$slider.trigger("breakpoint",[r,l])}},e.prototype.changeSlide=function(e,t){var o,s,n,r=this,l=i(e.currentTarget);switch(l.is("a")&&e.preventDefault(),l.is("li")||(l=l.closest("li")),n=r.slideCount%r.options.slidesToScroll!==0,o=n?0:(r.slideCount-r.currentSlide)%r.options.slidesToScroll,e.data.message){case"previous":s=0===o?r.options.slidesToScroll:r.options.slidesToShow-o,r.slideCount>r.options.slidesToShow&&r.slideHandler(r.currentSlide-s,!1,t);break;case"next":s=0===o?r.options.slidesToScroll:o,r.slideCount>r.options.slidesToShow&&r.slideHandler(r.currentSlide+s,!1,t);break;case"index":var d=0===e.data.index?0:e.data.index||l.index()*r.options.slidesToScroll;r.slideHandler(r.checkNavigable(d),!1,t),l.children().trigger("focus");break;default:return}},e.prototype.checkNavigable=function(i){var e,t,o=this;if(e=o.getNavigableIndexes(),t=0,i>e[e.length-1])i=e[e.length-1];else for(var s in e){if(i<e[s]){i=t;break}t=e[s]}return i},e.prototype.cleanUpEvents=function(){var e=this;e.options.dots&&null!==e.$dots&&(i("li",e.$dots).off("click.slick",e.changeSlide).off("mouseenter.slick",i.proxy(e.interrupt,e,!0)).off("mouseleave.slick",i.proxy(e.interrupt,e,!1)),e.options.accessibility===!0&&e.$dots.off("keydown.slick",e.keyHandler)),e.$slider.off("focus.slick blur.slick"),e.options.arrows===!0&&e.slideCount>e.options.slidesToShow&&(e.$prevArrow&&e.$prevArrow.off("click.slick",e.changeSlide),e.$nextArrow&&e.$nextArrow.off("click.slick",e.changeSlide),e.options.accessibility===!0&&(e.$prevArrow&&e.$prevArrow.off("keydown.slick",e.keyHandler),e.$nextArrow&&e.$nextArrow.off("keydown.slick",e.keyHandler))),e.$list.off("touchstart.slick mousedown.slick",e.swipeHandler),e.$list.off("touchmove.slick mousemove.slick",e.swipeHandler),e.$list.off("touchend.slick mouseup.slick",e.swipeHandler),e.$list.off("touchcancel.slick mouseleave.slick",e.swipeHandler),e.$list.off("click.slick",e.clickHandler),i(document).off(e.visibilityChange,e.visibility),e.cleanUpSlideEvents(),e.options.accessibility===!0&&e.$list.off("keydown.slick",e.keyHandler),e.options.focusOnSelect===!0&&i(e.$slideTrack).children().off("click.slick",e.selectHandler),i(window).off("orientationchange.slick.slick-"+e.instanceUid,e.orientationChange),i(window).off("resize.slick.slick-"+e.instanceUid,e.resize),i("[draggable!=true]",e.$slideTrack).off("dragstart",e.preventDefault),i(window).off("load.slick.slick-"+e.instanceUid,e.setPosition)},e.prototype.cleanUpSlideEvents=function(){var e=this;e.$list.off("mouseenter.slick",i.proxy(e.interrupt,e,!0)),e.$list.off("mouseleave.slick",i.proxy(e.interrupt,e,!1))},e.prototype.cleanUpRows=function(){var i,e=this;e.options.rows>0&&(i=e.$slides.children().children(),i.removeAttr("style"),e.$slider.empty().append(i))},e.prototype.clickHandler=function(i){var e=this;e.shouldClick===!1&&(i.stopImmediatePropagation(),i.stopPropagation(),i.preventDefault())},e.prototype.destroy=function(e){var t=this;t.autoPlayClear(),t.touchObject={},t.cleanUpEvents(),i(".slick-cloned",t.$slider).detach(),t.$dots&&t.$dots.remove(),t.$prevArrow&&t.$prevArrow.length&&(t.$prevArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),t.htmlExpr.test(t.options.prevArrow)&&t.$prevArrow.remove()),t.$nextArrow&&t.$nextArrow.length&&(t.$nextArrow.removeClass("slick-disabled slick-arrow slick-hidden").removeAttr("aria-hidden aria-disabled tabindex").css("display",""),t.htmlExpr.test(t.options.nextArrow)&&t.$nextArrow.remove()),t.$slides&&(t.$slides.removeClass("slick-slide slick-active slick-center slick-visible slick-current").removeAttr("aria-hidden").removeAttr("data-slick-index").each(function(){i(this).attr("style",i(this).data("originalStyling"))}),t.$slideTrack.children(this.options.slide).detach(),t.$slideTrack.detach(),t.$list.detach(),t.$slider.append(t.$slides)),t.cleanUpRows(),t.$slider.removeClass("slick-slider"),t.$slider.removeClass("slick-initialized"),t.$slider.removeClass("slick-dotted"),t.unslicked=!0,e||t.$slider.trigger("destroy",[t])},e.prototype.disableTransition=function(i){var e=this,t={};t[e.transitionType]="",e.options.fade===!1?e.$slideTrack.css(t):e.$slides.eq(i).css(t)},e.prototype.fadeSlide=function(i,e){var t=this;t.cssTransitions===!1?(t.$slides.eq(i).css({zIndex:t.options.zIndex}),t.$slides.eq(i).animate({opacity:1},t.options.speed,t.options.easing,e)):(t.applyTransition(i),t.$slides.eq(i).css({opacity:1,zIndex:t.options.zIndex}),e&&setTimeout(function(){t.disableTransition(i),e.call()},t.options.speed))},e.prototype.fadeSlideOut=function(i){var e=this;e.cssTransitions===!1?e.$slides.eq(i).animate({opacity:0,zIndex:e.options.zIndex-2},e.options.speed,e.options.easing):(e.applyTransition(i),e.$slides.eq(i).css({opacity:0,zIndex:e.options.zIndex-2}))},e.prototype.filterSlides=e.prototype.slickFilter=function(i){var e=this;null!==i&&(e.$slidesCache=e.$slides,e.unload(),e.$slideTrack.children(this.options.slide).detach(),e.$slidesCache.filter(i).appendTo(e.$slideTrack),e.reinit())},e.prototype.focusHandler=function(){var e=this;e.$slider.off("focus.slick blur.slick").on("focus.slick","*",function(t){var o=i(this);setTimeout(function(){e.options.pauseOnFocus&&o.is(":focus")&&(e.focussed=!0,e.autoPlay())},0)}).on("blur.slick","*",function(t){i(this);e.options.pauseOnFocus&&(e.focussed=!1,e.autoPlay())})},e.prototype.getCurrent=e.prototype.slickCurrentSlide=function(){var i=this;return i.currentSlide},e.prototype.getDotCount=function(){var i=this,e=0,t=0,o=0;if(i.options.infinite===!0)if(i.slideCount<=i.options.slidesToShow)++o;else for(;e<i.slideCount;)++o,e=t+i.options.slidesToScroll,t+=i.options.slidesToScroll<=i.options.slidesToShow?i.options.slidesToScroll:i.options.slidesToShow;else if(i.options.centerMode===!0)o=i.slideCount;else if(i.options.asNavFor)for(;e<i.slideCount;)++o,e=t+i.options.slidesToScroll,t+=i.options.slidesToScroll<=i.options.slidesToShow?i.options.slidesToScroll:i.options.slidesToShow;else o=1+Math.ceil((i.slideCount-i.options.slidesToShow)/i.options.slidesToScroll);return o-1},e.prototype.getLeft=function(i){var e,t,o,s,n=this,r=0;return n.slideOffset=0,t=n.$slides.first().outerHeight(!0),n.options.infinite===!0?(n.slideCount>n.options.slidesToShow&&(n.slideOffset=n.slideWidth*n.options.slidesToShow*-1,s=-1,n.options.vertical===!0&&n.options.centerMode===!0&&(2===n.options.slidesToShow?s=-1.5:1===n.options.slidesToShow&&(s=-2)),r=t*n.options.slidesToShow*s),n.slideCount%n.options.slidesToScroll!==0&&i+n.options.slidesToScroll>n.slideCount&&n.slideCount>n.options.slidesToShow&&(i>n.slideCount?(n.slideOffset=(n.options.slidesToShow-(i-n.slideCount))*n.slideWidth*-1,r=(n.options.slidesToShow-(i-n.slideCount))*t*-1):(n.slideOffset=n.slideCount%n.options.slidesToScroll*n.slideWidth*-1,r=n.slideCount%n.options.slidesToScroll*t*-1))):i+n.options.slidesToShow>n.slideCount&&(n.slideOffset=(i+n.options.slidesToShow-n.slideCount)*n.slideWidth,r=(i+n.options.slidesToShow-n.slideCount)*t),n.slideCount<=n.options.slidesToShow&&(n.slideOffset=0,r=0),n.options.centerMode===!0&&n.slideCount<=n.options.slidesToShow?n.slideOffset=n.slideWidth*Math.floor(n.options.slidesToShow)/2-n.slideWidth*n.slideCount/2:n.options.centerMode===!0&&n.options.infinite===!0?n.slideOffset+=n.slideWidth*Math.floor(n.options.slidesToShow/2)-n.slideWidth:n.options.centerMode===!0&&(n.slideOffset=0,n.slideOffset+=n.slideWidth*Math.floor(n.options.slidesToShow/2)),e=n.options.vertical===!1?i*n.slideWidth*-1+n.slideOffset:i*t*-1+r,n.options.variableWidth===!0&&(o=n.slideCount<=n.options.slidesToShow||n.options.infinite===!1?n.$slideTrack.children(".slick-slide").eq(i):n.$slideTrack.children(".slick-slide").eq(i+n.options.slidesToShow),e=n.options.rtl===!0?o[0]?(n.$slideTrack.width()-o[0].offsetLeft-o.width())*-1:0:o[0]?o[0].offsetLeft*-1:0,n.options.centerMode===!0&&(o=n.slideCount<=n.options.slidesToShow||n.options.infinite===!1?n.$slideTrack.children(".slick-slide").eq(i):n.$slideTrack.children(".slick-slide").eq(i+n.options.slidesToShow+1),e=n.options.rtl===!0?o[0]?(n.$slideTrack.width()-o[0].offsetLeft-o.width())*-1:0:o[0]?o[0].offsetLeft*-1:0,e+=(n.$list.width()-o.outerWidth())/2)),e},e.prototype.getOption=e.prototype.slickGetOption=function(i){var e=this;return e.options[i]},e.prototype.getNavigableIndexes=function(){var i,e=this,t=0,o=0,s=[];for(e.options.infinite===!1?i=e.slideCount:(t=e.options.slidesToScroll*-1,o=e.options.slidesToScroll*-1,i=2*e.slideCount);t<i;)s.push(t),t=o+e.options.slidesToScroll,o+=e.options.slidesToScroll<=e.options.slidesToShow?e.options.slidesToScroll:e.options.slidesToShow;return s},e.prototype.getSlick=function(){return this},e.prototype.getSlideCount=function(){var e,t,o,s,n=this;return s=n.options.centerMode===!0?Math.floor(n.$list.width()/2):0,o=n.swipeLeft*-1+s,n.options.swipeToSlide===!0?(n.$slideTrack.find(".slick-slide").each(function(e,s){var r,l,d;if(r=i(s).outerWidth(),l=s.offsetLeft,n.options.centerMode!==!0&&(l+=r/2),d=l+r,o<d)return t=s,!1}),e=Math.abs(i(t).attr("data-slick-index")-n.currentSlide)||1):n.options.slidesToScroll},e.prototype.goTo=e.prototype.slickGoTo=function(i,e){var t=this;t.changeSlide({data:{message:"index",index:parseInt(i)}},e)},e.prototype.init=function(e){var t=this;i(t.$slider).hasClass("slick-initialized")||(i(t.$slider).addClass("slick-initialized"),t.buildRows(),t.buildOut(),t.setProps(),t.startLoad(),t.loadSlider(),t.initializeEvents(),t.updateArrows(),t.updateDots(),t.checkResponsive(!0),t.focusHandler()),e&&t.$slider.trigger("init",[t]),t.options.accessibility===!0&&t.initADA(),t.options.autoplay&&(t.paused=!1,t.autoPlay())},e.prototype.initADA=function(){var e=this,t=Math.ceil(e.slideCount/e.options.slidesToShow),o=e.getNavigableIndexes().filter(function(i){return i>=0&&i<e.slideCount});e.$slides.add(e.$slideTrack.find(".slick-cloned")).attr({"aria-hidden":"true",tabindex:"-1"}).find("a, input, button, select").attr({tabindex:"-1"}),null!==e.$dots&&(e.$slides.not(e.$slideTrack.find(".slick-cloned")).each(function(t){var s=o.indexOf(t);if(i(this).attr({role:"tabpanel",id:"slick-slide"+e.instanceUid+t,tabindex:-1}),s!==-1){var n="slick-slide-control"+e.instanceUid+s;i("#"+n).length&&i(this).attr({"aria-describedby":n})}}),e.$dots.attr("role","tablist").find("li").each(function(s){var n=o[s];i(this).attr({role:"presentation"}),i(this).find("button").first().attr({role:"tab",id:"slick-slide-control"+e.instanceUid+s,"aria-controls":"slick-slide"+e.instanceUid+n,"aria-label":s+1+" of "+t,"aria-selected":null,tabindex:"-1"})}).eq(e.currentSlide).find("button").attr({"aria-selected":"true",tabindex:"0"}).end());for(var s=e.currentSlide,n=s+e.options.slidesToShow;s<n;s++)e.options.focusOnChange?e.$slides.eq(s).attr({tabindex:"0"}):e.$slides.eq(s).removeAttr("tabindex");e.activateADA()},e.prototype.initArrowEvents=function(){var i=this;i.options.arrows===!0&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.off("click.slick").on("click.slick",{message:"previous"},i.changeSlide),i.$nextArrow.off("click.slick").on("click.slick",{message:"next"},i.changeSlide),i.options.accessibility===!0&&(i.$prevArrow.on("keydown.slick",i.keyHandler),i.$nextArrow.on("keydown.slick",i.keyHandler)))},e.prototype.initDotEvents=function(){var e=this;e.options.dots===!0&&e.slideCount>e.options.slidesToShow&&(i("li",e.$dots).on("click.slick",{message:"index"},e.changeSlide),e.options.accessibility===!0&&e.$dots.on("keydown.slick",e.keyHandler)),e.options.dots===!0&&e.options.pauseOnDotsHover===!0&&e.slideCount>e.options.slidesToShow&&i("li",e.$dots).on("mouseenter.slick",i.proxy(e.interrupt,e,!0)).on("mouseleave.slick",i.proxy(e.interrupt,e,!1))},e.prototype.initSlideEvents=function(){var e=this;e.options.pauseOnHover&&(e.$list.on("mouseenter.slick",i.proxy(e.interrupt,e,!0)),e.$list.on("mouseleave.slick",i.proxy(e.interrupt,e,!1)))},e.prototype.initializeEvents=function(){var e=this;e.initArrowEvents(),e.initDotEvents(),e.initSlideEvents(),e.$list.on("touchstart.slick mousedown.slick",{action:"start"},e.swipeHandler),e.$list.on("touchmove.slick mousemove.slick",{action:"move"},e.swipeHandler),e.$list.on("touchend.slick mouseup.slick",{action:"end"},e.swipeHandler),e.$list.on("touchcancel.slick mouseleave.slick",{action:"end"},e.swipeHandler),e.$list.on("click.slick",e.clickHandler),i(document).on(e.visibilityChange,i.proxy(e.visibility,e)),e.options.accessibility===!0&&e.$list.on("keydown.slick",e.keyHandler),e.options.focusOnSelect===!0&&i(e.$slideTrack).children().on("click.slick",e.selectHandler),i(window).on("orientationchange.slick.slick-"+e.instanceUid,i.proxy(e.orientationChange,e)),i(window).on("resize.slick.slick-"+e.instanceUid,i.proxy(e.resize,e)),i("[draggable!=true]",e.$slideTrack).on("dragstart",e.preventDefault),i(window).on("load.slick.slick-"+e.instanceUid,e.setPosition),i(e.setPosition)},e.prototype.initUI=function(){var i=this;i.options.arrows===!0&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.show(),i.$nextArrow.show()),i.options.dots===!0&&i.slideCount>i.options.slidesToShow&&i.$dots.show()},e.prototype.keyHandler=function(i){var e=this;i.target.tagName.match("TEXTAREA|INPUT|SELECT")||(37===i.keyCode&&e.options.accessibility===!0?e.changeSlide({data:{message:e.options.rtl===!0?"next":"previous"}}):39===i.keyCode&&e.options.accessibility===!0&&e.changeSlide({data:{message:e.options.rtl===!0?"previous":"next"}}))},e.prototype.lazyLoad=function(){function e(e){i("img[data-lazy]",e).each(function(){var e=i(this),t=i(this).attr("data-lazy"),o=i(this).attr("data-srcset"),s=i(this).attr("data-sizes")||r.$slider.attr("data-sizes"),n=document.createElement("img");n.onload=function(){e.animate({opacity:0},100,function(){o&&(e.attr("srcset",o),s&&e.attr("sizes",s)),e.attr("src",t).animate({opacity:1},200,function(){e.removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading")}),r.$slider.trigger("lazyLoaded",[r,e,t])})},n.onerror=function(){e.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),r.$slider.trigger("lazyLoadError",[r,e,t])},n.src=t})}var t,o,s,n,r=this;if(r.options.centerMode===!0?r.options.infinite===!0?(s=r.currentSlide+(r.options.slidesToShow/2+1),n=s+r.options.slidesToShow+2):(s=Math.max(0,r.currentSlide-(r.options.slidesToShow/2+1)),n=2+(r.options.slidesToShow/2+1)+r.currentSlide):(s=r.options.infinite?r.options.slidesToShow+r.currentSlide:r.currentSlide,n=Math.ceil(s+r.options.slidesToShow),r.options.fade===!0&&(s>0&&s--,n<=r.slideCount&&n++)),t=r.$slider.find(".slick-slide").slice(s,n),"anticipated"===r.options.lazyLoad)for(var l=s-1,d=n,a=r.$slider.find(".slick-slide"),c=0;c<r.options.slidesToScroll;c++)l<0&&(l=r.slideCount-1),t=t.add(a.eq(l)),t=t.add(a.eq(d)),l--,d++;e(t),r.slideCount<=r.options.slidesToShow?(o=r.$slider.find(".slick-slide"),e(o)):r.currentSlide>=r.slideCount-r.options.slidesToShow?(o=r.$slider.find(".slick-cloned").slice(0,r.options.slidesToShow),e(o)):0===r.currentSlide&&(o=r.$slider.find(".slick-cloned").slice(r.options.slidesToShow*-1),e(o))},e.prototype.loadSlider=function(){var i=this;i.setPosition(),i.$slideTrack.css({opacity:1}),i.$slider.removeClass("slick-loading"),i.initUI(),"progressive"===i.options.lazyLoad&&i.progressiveLazyLoad()},e.prototype.next=e.prototype.slickNext=function(){var i=this;i.changeSlide({data:{message:"next"}})},e.prototype.orientationChange=function(){var i=this;i.checkResponsive(),i.setPosition()},e.prototype.pause=e.prototype.slickPause=function(){var i=this;i.autoPlayClear(),i.paused=!0},e.prototype.play=e.prototype.slickPlay=function(){var i=this;i.autoPlay(),i.options.autoplay=!0,i.paused=!1,i.focussed=!1,i.interrupted=!1},e.prototype.postSlide=function(e){var t=this;if(!t.unslicked&&(t.$slider.trigger("afterChange",[t,e]),t.animating=!1,t.slideCount>t.options.slidesToShow&&t.setPosition(),t.swipeLeft=null,t.options.autoplay&&t.autoPlay(),t.options.accessibility===!0&&(t.initADA(),t.options.focusOnChange))){var o=i(t.$slides.get(t.currentSlide));o.attr("tabindex",0).focus()}},e.prototype.prev=e.prototype.slickPrev=function(){var i=this;i.changeSlide({data:{message:"previous"}})},e.prototype.preventDefault=function(i){i.preventDefault()},e.prototype.progressiveLazyLoad=function(e){e=e||1;var t,o,s,n,r,l=this,d=i("img[data-lazy]",l.$slider);d.length?(t=d.first(),o=t.attr("data-lazy"),s=t.attr("data-srcset"),n=t.attr("data-sizes")||l.$slider.attr("data-sizes"),r=document.createElement("img"),r.onload=function(){s&&(t.attr("srcset",s),n&&t.attr("sizes",n)),t.attr("src",o).removeAttr("data-lazy data-srcset data-sizes").removeClass("slick-loading"),l.options.adaptiveHeight===!0&&l.setPosition(),l.$slider.trigger("lazyLoaded",[l,t,o]),l.progressiveLazyLoad()},r.onerror=function(){e<3?setTimeout(function(){l.progressiveLazyLoad(e+1)},500):(t.removeAttr("data-lazy").removeClass("slick-loading").addClass("slick-lazyload-error"),l.$slider.trigger("lazyLoadError",[l,t,o]),l.progressiveLazyLoad())},r.src=o):l.$slider.trigger("allImagesLoaded",[l])},e.prototype.refresh=function(e){var t,o,s=this;o=s.slideCount-s.options.slidesToShow,!s.options.infinite&&s.currentSlide>o&&(s.currentSlide=o),s.slideCount<=s.options.slidesToShow&&(s.currentSlide=0),t=s.currentSlide,s.destroy(!0),i.extend(s,s.initials,{currentSlide:t}),s.init(),e||s.changeSlide({data:{message:"index",index:t}},!1)},e.prototype.registerBreakpoints=function(){var e,t,o,s=this,n=s.options.responsive||null;if("array"===i.type(n)&&n.length){s.respondTo=s.options.respondTo||"window";for(e in n)if(o=s.breakpoints.length-1,n.hasOwnProperty(e)){for(t=n[e].breakpoint;o>=0;)s.breakpoints[o]&&s.breakpoints[o]===t&&s.breakpoints.splice(o,1),o--;s.breakpoints.push(t),s.breakpointSettings[t]=n[e].settings}s.breakpoints.sort(function(i,e){return s.options.mobileFirst?i-e:e-i})}},e.prototype.reinit=function(){var e=this;e.$slides=e.$slideTrack.children(e.options.slide).addClass("slick-slide"),e.slideCount=e.$slides.length,e.currentSlide>=e.slideCount&&0!==e.currentSlide&&(e.currentSlide=e.currentSlide-e.options.slidesToScroll),e.slideCount<=e.options.slidesToShow&&(e.currentSlide=0),e.registerBreakpoints(),e.setProps(),e.setupInfinite(),e.buildArrows(),e.updateArrows(),e.initArrowEvents(),e.buildDots(),e.updateDots(),e.initDotEvents(),e.cleanUpSlideEvents(),e.initSlideEvents(),e.checkResponsive(!1,!0),e.options.focusOnSelect===!0&&i(e.$slideTrack).children().on("click.slick",e.selectHandler),e.setSlideClasses("number"==typeof e.currentSlide?e.currentSlide:0),e.setPosition(),e.focusHandler(),e.paused=!e.options.autoplay,e.autoPlay(),e.$slider.trigger("reInit",[e])},e.prototype.resize=function(){var e=this;i(window).width()!==e.windowWidth&&(clearTimeout(e.windowDelay),e.windowDelay=window.setTimeout(function(){e.windowWidth=i(window).width(),e.checkResponsive(),e.unslicked||e.setPosition()},50))},e.prototype.removeSlide=e.prototype.slickRemove=function(i,e,t){var o=this;return"boolean"==typeof i?(e=i,i=e===!0?0:o.slideCount-1):i=e===!0?--i:i,!(o.slideCount<1||i<0||i>o.slideCount-1)&&(o.unload(),t===!0?o.$slideTrack.children().remove():o.$slideTrack.children(this.options.slide).eq(i).remove(),o.$slides=o.$slideTrack.children(this.options.slide),o.$slideTrack.children(this.options.slide).detach(),o.$slideTrack.append(o.$slides),o.$slidesCache=o.$slides,void o.reinit())},e.prototype.setCSS=function(i){var e,t,o=this,s={};o.options.rtl===!0&&(i=-i),e="left"==o.positionProp?Math.ceil(i)+"px":"0px",t="top"==o.positionProp?Math.ceil(i)+"px":"0px",s[o.positionProp]=i,o.transformsEnabled===!1?o.$slideTrack.css(s):(s={},o.cssTransitions===!1?(s[o.animType]="translate("+e+", "+t+")",o.$slideTrack.css(s)):(s[o.animType]="translate3d("+e+", "+t+", 0px)",o.$slideTrack.css(s)))},e.prototype.setDimensions=function(){var i=this;i.options.vertical===!1?i.options.centerMode===!0&&i.$list.css({padding:"0px "+i.options.centerPadding}):(i.$list.height(i.$slides.first().outerHeight(!0)*i.options.slidesToShow),i.options.centerMode===!0&&i.$list.css({padding:i.options.centerPadding+" 0px"})),i.listWidth=i.$list.width(),i.listHeight=i.$list.height(),i.options.vertical===!1&&i.options.variableWidth===!1?(i.slideWidth=Math.ceil(i.listWidth/i.options.slidesToShow),i.$slideTrack.width(Math.ceil(i.slideWidth*i.$slideTrack.children(".slick-slide").length))):i.options.variableWidth===!0?i.$slideTrack.width(5e3*i.slideCount):(i.slideWidth=Math.ceil(i.listWidth),i.$slideTrack.height(Math.ceil(i.$slides.first().outerHeight(!0)*i.$slideTrack.children(".slick-slide").length)));var e=i.$slides.first().outerWidth(!0)-i.$slides.first().width();i.options.variableWidth===!1&&i.$slideTrack.children(".slick-slide").width(i.slideWidth-e)},e.prototype.setFade=function(){var e,t=this;t.$slides.each(function(o,s){e=t.slideWidth*o*-1,t.options.rtl===!0?i(s).css({position:"relative",right:e,top:0,zIndex:t.options.zIndex-2,opacity:0}):i(s).css({position:"relative",left:e,top:0,zIndex:t.options.zIndex-2,opacity:0})}),t.$slides.eq(t.currentSlide).css({zIndex:t.options.zIndex-1,opacity:1})},e.prototype.setHeight=function(){var i=this;if(1===i.options.slidesToShow&&i.options.adaptiveHeight===!0&&i.options.vertical===!1){var e=i.$slides.eq(i.currentSlide).outerHeight(!0);i.$list.css("height",e)}},e.prototype.setOption=e.prototype.slickSetOption=function(){var e,t,o,s,n,r=this,l=!1;if("object"===i.type(arguments[0])?(o=arguments[0],l=arguments[1],n="multiple"):"string"===i.type(arguments[0])&&(o=arguments[0],s=arguments[1],l=arguments[2],"responsive"===arguments[0]&&"array"===i.type(arguments[1])?n="responsive":"undefined"!=typeof arguments[1]&&(n="single")),"single"===n)r.options[o]=s;else if("multiple"===n)i.each(o,function(i,e){r.options[i]=e});else if("responsive"===n)for(t in s)if("array"!==i.type(r.options.responsive))r.options.responsive=[s[t]];else{for(e=r.options.responsive.length-1;e>=0;)r.options.responsive[e].breakpoint===s[t].breakpoint&&r.options.responsive.splice(e,1),e--;r.options.responsive.push(s[t])}l&&(r.unload(),r.reinit())},e.prototype.setPosition=function(){var i=this;i.setDimensions(),i.setHeight(),i.options.fade===!1?i.setCSS(i.getLeft(i.currentSlide)):i.setFade(),i.$slider.trigger("setPosition",[i])},e.prototype.setProps=function(){var i=this,e=document.body.style;i.positionProp=i.options.vertical===!0?"top":"left",
"top"===i.positionProp?i.$slider.addClass("slick-vertical"):i.$slider.removeClass("slick-vertical"),void 0===e.WebkitTransition&&void 0===e.MozTransition&&void 0===e.msTransition||i.options.useCSS===!0&&(i.cssTransitions=!0),i.options.fade&&("number"==typeof i.options.zIndex?i.options.zIndex<3&&(i.options.zIndex=3):i.options.zIndex=i.defaults.zIndex),void 0!==e.OTransform&&(i.animType="OTransform",i.transformType="-o-transform",i.transitionType="OTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(i.animType=!1)),void 0!==e.MozTransform&&(i.animType="MozTransform",i.transformType="-moz-transform",i.transitionType="MozTransition",void 0===e.perspectiveProperty&&void 0===e.MozPerspective&&(i.animType=!1)),void 0!==e.webkitTransform&&(i.animType="webkitTransform",i.transformType="-webkit-transform",i.transitionType="webkitTransition",void 0===e.perspectiveProperty&&void 0===e.webkitPerspective&&(i.animType=!1)),void 0!==e.msTransform&&(i.animType="msTransform",i.transformType="-ms-transform",i.transitionType="msTransition",void 0===e.msTransform&&(i.animType=!1)),void 0!==e.transform&&i.animType!==!1&&(i.animType="transform",i.transformType="transform",i.transitionType="transition"),i.transformsEnabled=i.options.useTransform&&null!==i.animType&&i.animType!==!1},e.prototype.setSlideClasses=function(i){var e,t,o,s,n=this;if(t=n.$slider.find(".slick-slide").removeClass("slick-active slick-center slick-current").attr("aria-hidden","true"),n.$slides.eq(i).addClass("slick-current"),n.options.centerMode===!0){var r=n.options.slidesToShow%2===0?1:0;e=Math.floor(n.options.slidesToShow/2),n.options.infinite===!0&&(i>=e&&i<=n.slideCount-1-e?n.$slides.slice(i-e+r,i+e+1).addClass("slick-active").attr("aria-hidden","false"):(o=n.options.slidesToShow+i,t.slice(o-e+1+r,o+e+2).addClass("slick-active").attr("aria-hidden","false")),0===i?t.eq(t.length-1-n.options.slidesToShow).addClass("slick-center"):i===n.slideCount-1&&t.eq(n.options.slidesToShow).addClass("slick-center")),n.$slides.eq(i).addClass("slick-center")}else i>=0&&i<=n.slideCount-n.options.slidesToShow?n.$slides.slice(i,i+n.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"):t.length<=n.options.slidesToShow?t.addClass("slick-active").attr("aria-hidden","false"):(s=n.slideCount%n.options.slidesToShow,o=n.options.infinite===!0?n.options.slidesToShow+i:i,n.options.slidesToShow==n.options.slidesToScroll&&n.slideCount-i<n.options.slidesToShow?t.slice(o-(n.options.slidesToShow-s),o+s).addClass("slick-active").attr("aria-hidden","false"):t.slice(o,o+n.options.slidesToShow).addClass("slick-active").attr("aria-hidden","false"));"ondemand"!==n.options.lazyLoad&&"anticipated"!==n.options.lazyLoad||n.lazyLoad()},e.prototype.setupInfinite=function(){var e,t,o,s=this;if(s.options.fade===!0&&(s.options.centerMode=!1),s.options.infinite===!0&&s.options.fade===!1&&(t=null,s.slideCount>s.options.slidesToShow)){for(o=s.options.centerMode===!0?s.options.slidesToShow+1:s.options.slidesToShow,e=s.slideCount;e>s.slideCount-o;e-=1)t=e-1,i(s.$slides[t]).clone(!0).attr("id","").attr("data-slick-index",t-s.slideCount).prependTo(s.$slideTrack).addClass("slick-cloned");for(e=0;e<o+s.slideCount;e+=1)t=e,i(s.$slides[t]).clone(!0).attr("id","").attr("data-slick-index",t+s.slideCount).appendTo(s.$slideTrack).addClass("slick-cloned");s.$slideTrack.find(".slick-cloned").find("[id]").each(function(){i(this).attr("id","")})}},e.prototype.interrupt=function(i){var e=this;i||e.autoPlay(),e.interrupted=i},e.prototype.selectHandler=function(e){var t=this,o=i(e.target).is(".slick-slide")?i(e.target):i(e.target).parents(".slick-slide"),s=parseInt(o.attr("data-slick-index"));return s||(s=0),t.slideCount<=t.options.slidesToShow?void t.slideHandler(s,!1,!0):void t.slideHandler(s)},e.prototype.slideHandler=function(i,e,t){var o,s,n,r,l,d=null,a=this;if(e=e||!1,!(a.animating===!0&&a.options.waitForAnimate===!0||a.options.fade===!0&&a.currentSlide===i))return e===!1&&a.asNavFor(i),o=i,d=a.getLeft(o),r=a.getLeft(a.currentSlide),a.currentLeft=null===a.swipeLeft?r:a.swipeLeft,a.options.infinite===!1&&a.options.centerMode===!1&&(i<0||i>a.getDotCount()*a.options.slidesToScroll)?void(a.options.fade===!1&&(o=a.currentSlide,t!==!0&&a.slideCount>a.options.slidesToShow?a.animateSlide(r,function(){a.postSlide(o)}):a.postSlide(o))):a.options.infinite===!1&&a.options.centerMode===!0&&(i<0||i>a.slideCount-a.options.slidesToScroll)?void(a.options.fade===!1&&(o=a.currentSlide,t!==!0&&a.slideCount>a.options.slidesToShow?a.animateSlide(r,function(){a.postSlide(o)}):a.postSlide(o))):(a.options.autoplay&&clearInterval(a.autoPlayTimer),s=o<0?a.slideCount%a.options.slidesToScroll!==0?a.slideCount-a.slideCount%a.options.slidesToScroll:a.slideCount+o:o>=a.slideCount?a.slideCount%a.options.slidesToScroll!==0?0:o-a.slideCount:o,a.animating=!0,a.$slider.trigger("beforeChange",[a,a.currentSlide,s]),n=a.currentSlide,a.currentSlide=s,a.setSlideClasses(a.currentSlide),a.options.asNavFor&&(l=a.getNavTarget(),l=l.slick("getSlick"),l.slideCount<=l.options.slidesToShow&&l.setSlideClasses(a.currentSlide)),a.updateDots(),a.updateArrows(),a.options.fade===!0?(t!==!0?(a.fadeSlideOut(n),a.fadeSlide(s,function(){a.postSlide(s)})):a.postSlide(s),void a.animateHeight()):void(t!==!0&&a.slideCount>a.options.slidesToShow?a.animateSlide(d,function(){a.postSlide(s)}):a.postSlide(s)))},e.prototype.startLoad=function(){var i=this;i.options.arrows===!0&&i.slideCount>i.options.slidesToShow&&(i.$prevArrow.hide(),i.$nextArrow.hide()),i.options.dots===!0&&i.slideCount>i.options.slidesToShow&&i.$dots.hide(),i.$slider.addClass("slick-loading")},e.prototype.swipeDirection=function(){var i,e,t,o,s=this;return i=s.touchObject.startX-s.touchObject.curX,e=s.touchObject.startY-s.touchObject.curY,t=Math.atan2(e,i),o=Math.round(180*t/Math.PI),o<0&&(o=360-Math.abs(o)),o<=45&&o>=0?s.options.rtl===!1?"left":"right":o<=360&&o>=315?s.options.rtl===!1?"left":"right":o>=135&&o<=225?s.options.rtl===!1?"right":"left":s.options.verticalSwiping===!0?o>=35&&o<=135?"down":"up":"vertical"},e.prototype.swipeEnd=function(i){var e,t,o=this;if(o.dragging=!1,o.swiping=!1,o.scrolling)return o.scrolling=!1,!1;if(o.interrupted=!1,o.shouldClick=!(o.touchObject.swipeLength>10),void 0===o.touchObject.curX)return!1;if(o.touchObject.edgeHit===!0&&o.$slider.trigger("edge",[o,o.swipeDirection()]),o.touchObject.swipeLength>=o.touchObject.minSwipe){switch(t=o.swipeDirection()){case"left":case"down":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide+o.getSlideCount()):o.currentSlide+o.getSlideCount(),o.currentDirection=0;break;case"right":case"up":e=o.options.swipeToSlide?o.checkNavigable(o.currentSlide-o.getSlideCount()):o.currentSlide-o.getSlideCount(),o.currentDirection=1}"vertical"!=t&&(o.slideHandler(e),o.touchObject={},o.$slider.trigger("swipe",[o,t]))}else o.touchObject.startX!==o.touchObject.curX&&(o.slideHandler(o.currentSlide),o.touchObject={})},e.prototype.swipeHandler=function(i){var e=this;if(!(e.options.swipe===!1||"ontouchend"in document&&e.options.swipe===!1||e.options.draggable===!1&&i.type.indexOf("mouse")!==-1))switch(e.touchObject.fingerCount=i.originalEvent&&void 0!==i.originalEvent.touches?i.originalEvent.touches.length:1,e.touchObject.minSwipe=e.listWidth/e.options.touchThreshold,e.options.verticalSwiping===!0&&(e.touchObject.minSwipe=e.listHeight/e.options.touchThreshold),i.data.action){case"start":e.swipeStart(i);break;case"move":e.swipeMove(i);break;case"end":e.swipeEnd(i)}},e.prototype.swipeMove=function(i){var e,t,o,s,n,r,l=this;return n=void 0!==i.originalEvent?i.originalEvent.touches:null,!(!l.dragging||l.scrolling||n&&1!==n.length)&&(e=l.getLeft(l.currentSlide),l.touchObject.curX=void 0!==n?n[0].pageX:i.clientX,l.touchObject.curY=void 0!==n?n[0].pageY:i.clientY,l.touchObject.swipeLength=Math.round(Math.sqrt(Math.pow(l.touchObject.curX-l.touchObject.startX,2))),r=Math.round(Math.sqrt(Math.pow(l.touchObject.curY-l.touchObject.startY,2))),!l.options.verticalSwiping&&!l.swiping&&r>4?(l.scrolling=!0,!1):(l.options.verticalSwiping===!0&&(l.touchObject.swipeLength=r),t=l.swipeDirection(),void 0!==i.originalEvent&&l.touchObject.swipeLength>4&&(l.swiping=!0,i.preventDefault()),s=(l.options.rtl===!1?1:-1)*(l.touchObject.curX>l.touchObject.startX?1:-1),l.options.verticalSwiping===!0&&(s=l.touchObject.curY>l.touchObject.startY?1:-1),o=l.touchObject.swipeLength,l.touchObject.edgeHit=!1,l.options.infinite===!1&&(0===l.currentSlide&&"right"===t||l.currentSlide>=l.getDotCount()&&"left"===t)&&(o=l.touchObject.swipeLength*l.options.edgeFriction,l.touchObject.edgeHit=!0),l.options.vertical===!1?l.swipeLeft=e+o*s:l.swipeLeft=e+o*(l.$list.height()/l.listWidth)*s,l.options.verticalSwiping===!0&&(l.swipeLeft=e+o*s),l.options.fade!==!0&&l.options.touchMove!==!1&&(l.animating===!0?(l.swipeLeft=null,!1):void l.setCSS(l.swipeLeft))))},e.prototype.swipeStart=function(i){var e,t=this;return t.interrupted=!0,1!==t.touchObject.fingerCount||t.slideCount<=t.options.slidesToShow?(t.touchObject={},!1):(void 0!==i.originalEvent&&void 0!==i.originalEvent.touches&&(e=i.originalEvent.touches[0]),t.touchObject.startX=t.touchObject.curX=void 0!==e?e.pageX:i.clientX,t.touchObject.startY=t.touchObject.curY=void 0!==e?e.pageY:i.clientY,void(t.dragging=!0))},e.prototype.unfilterSlides=e.prototype.slickUnfilter=function(){var i=this;null!==i.$slidesCache&&(i.unload(),i.$slideTrack.children(this.options.slide).detach(),i.$slidesCache.appendTo(i.$slideTrack),i.reinit())},e.prototype.unload=function(){var e=this;i(".slick-cloned",e.$slider).remove(),e.$dots&&e.$dots.remove(),e.$prevArrow&&e.htmlExpr.test(e.options.prevArrow)&&e.$prevArrow.remove(),e.$nextArrow&&e.htmlExpr.test(e.options.nextArrow)&&e.$nextArrow.remove(),e.$slides.removeClass("slick-slide slick-active slick-visible slick-current").attr("aria-hidden","true").css("width","")},e.prototype.unslick=function(i){var e=this;e.$slider.trigger("unslick",[e,i]),e.destroy()},e.prototype.updateArrows=function(){var i,e=this;i=Math.floor(e.options.slidesToShow/2),e.options.arrows===!0&&e.slideCount>e.options.slidesToShow&&!e.options.infinite&&(e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false"),e.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false"),0===e.currentSlide?(e.$prevArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$nextArrow.removeClass("slick-disabled").attr("aria-disabled","false")):e.currentSlide>=e.slideCount-e.options.slidesToShow&&e.options.centerMode===!1?(e.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")):e.currentSlide>=e.slideCount-1&&e.options.centerMode===!0&&(e.$nextArrow.addClass("slick-disabled").attr("aria-disabled","true"),e.$prevArrow.removeClass("slick-disabled").attr("aria-disabled","false")))},e.prototype.updateDots=function(){var i=this;null!==i.$dots&&(i.$dots.find("li").removeClass("slick-active").end(),i.$dots.find("li").eq(Math.floor(i.currentSlide/i.options.slidesToScroll)).addClass("slick-active"))},e.prototype.visibility=function(){var i=this;i.options.autoplay&&(document[i.hidden]?i.interrupted=!0:i.interrupted=!1)},i.fn.slick=function(){var i,t,o=this,s=arguments[0],n=Array.prototype.slice.call(arguments,1),r=o.length;for(i=0;i<r;i++)if("object"==typeof s||"undefined"==typeof s?o[i].slick=new e(o[i],s):t=o[i].slick[s].apply(o[i].slick,n),"undefined"!=typeof t)return t;return o}});PK��][�f��4ultimate-addons-for-gutenberg/assets/js/forms.min.jsnu�[���UAGBForms={getElement:e=>{const t=document.querySelector(e+":not(.uagb-activated-script)");return t?(t.classList.add("uagb-activated-script"),t):null},init(r,a,d){const p=UAGBForms.getElement(a);if(p){const o=p.querySelector(".uagb-forms-main-form"),t=o.querySelectorAll(".uagb-forms-phone-input");if(0!==t.length)for(let e=0;e<t.length;e++)t[e].addEventListener("keypress",function(e){e=e.which||e.keyCode;return 45===e||!(31<e&&(e<48||57<e))});const n=o.querySelectorAll(".uagb-forms-toggle-input");if(0!==n.length)for(let t=0;t<n.length;t++)n[t].addEventListener("change",function(){var e;n[t].checked?(e=n[t].getAttribute("data-truestate"),n[t].setAttribute("value",e)):(e=n[t].getAttribute("data-falsestate"),n[t].setAttribute("value",e))});const s=p.querySelectorAll(".uagb-forms-checkbox-wrap");if(0!==s.length)for(let e=0;e<s.length;e++){const i=s[e].querySelectorAll("input[type=checkbox]");if(0<i.length)for(let c=0;c<i.length;c++)i[c].addEventListener("change",function(){var t=i[c].checked,e=i[c].getAttribute("name");const a=document.querySelectorAll('[name="'+e+'"]');for(let e=0;e<a.length;e++)a[e].required=!t})}let a="",c="";if(!0===r.reCaptchaEnable&&"v2"===r.reCaptchaType){if(a=uagb_forms_data.recaptcha_site_key_v2){null===document.querySelector(".uagb-forms-field-set").getAttribute("data-sitekey")&&document.querySelector(".g-recaptcha ").setAttribute("data-sitekey",a);const e=document.createElement("script");e.type="text/javascript",e.src="https://www.google.com/recaptcha/api.js",document.head.appendChild(e)}}else if(!0===r.reCaptchaEnable&&"v3"===r.reCaptchaType&&(c=uagb_forms_data.recaptcha_site_key_v3)){r.hidereCaptchaBatch&&setTimeout(function(){const e=document.getElementsByClassName("grecaptcha-badge")[0];e&&(e.style.visibility="hidden")},500);const g=document.createElement("script");g.type="text/javascript",g.src="https://www.google.com/recaptcha/api.js?render="+c,document.head.appendChild(g)}const l=document.getElementsByClassName("uagb-block-"+r.block_id);if(l?.[0]){const u=l[0].children[0].children;for(let e=0;e<u.length;e++){if(u[e].classList.contains("uag-col-2")&&u[e+1].classList.contains("uag-col-2")){const f=document.createElement("div"),h=(f.className="uag-col-2-wrap uag-col-wrap-"+e,u[e+1].after(f),l[0].getElementsByClassName("uag-col-wrap-"+e));h[0].appendChild(u[e]),h[0].appendChild(u[e])}if(u[e].classList.contains("uag-col-3")&&u[e+1].classList.contains("uag-col-3")&&u[e+2].classList.contains("uag-col-3")){const b=document.createElement("div"),y=(b.className="uag-col-3-wrap uag-col-wrap-"+e,u[e+2].after(b),l[0].getElementsByClassName("uag-col-wrap-"+e));y[0].appendChild(u[e]),y[0].appendChild(u[e]),y[0].appendChild(u[e])}if(u[e].classList.contains("uag-col-4")&&u[e+1].classList.contains("uag-col-4")&&u[e+2].classList.contains("uag-col-4")&&u[e+3].classList.contains("uag-col-4")){const _=document.createElement("div"),m=(_.className="uag-col-4-wrap uag-col-wrap-"+e,u[e+3].after(_),l[0].getElementsByClassName("uag-col-wrap-"+e));m[0].appendChild(u[e]),m[0].appendChild(u[e]),m[0].appendChild(u[e]),m[0].appendChild(u[e])}}}o.addEventListener("submit",function(t){if(t.preventDefault(),!0===r.reCaptchaEnable&&"v3"===r.reCaptchaType&&c){if(0===document.getElementsByClassName("grecaptcha-logo").length)return!(document.querySelector(".uagb-form-reacaptcha-error-"+r.block_id).innerHTML='<p style="color:red !important" class="error-captcha">Invalid Google reCAPTCHA Site Key.</p>');grecaptcha.ready(function(){grecaptcha.execute(c,{action:"submit"}).then(function(e){if(e){if(0===document.getElementsByClassName("uagb-forms-recaptcha").length)return!(document.querySelector(".uagb-form-reacaptcha-error-"+r.block_id).innerHTML='<p style="color:red !important" class="error-captcha">Google reCAPTCHA Response not found.</p>');document.getElementById("g-recaptcha-response").value=e,window.UAGBForms._formSubmit(t,o,r,a,c,d)}})})}else window.UAGBForms._formSubmit(t,this,r,a,c,d)})}},_formSubmit(e,u,r,m,d,p){e.preventDefault();let t;if(""===r.afterSubmitToEmail||null===r.afterSubmitToEmail){const s=document.querySelector('[name="uagb-form-'+r.block_id+'"]'),l=(s.style.display="none",document.querySelector(".uagb-forms-failed-message-"+r.block_id));return l?.classList?.remove("uagb-forms-submit-message-hide"),l?.classList?.add("uagb-forms-failed-message"),!1}if(!0===r.reCaptchaEnable)if("v2"===r.reCaptchaType&&m){if(0===document.getElementsByClassName("uagb-forms-recaptcha").length)return!(document.querySelector(".uagb-form-reacaptcha-error-"+r.block_id).innerHTML='<p style="color:red !important" class="error-captcha"> Google reCAPTCHA Response not found.</p>');if(!(t=document.getElementById("g-recaptcha-response").value))return document.querySelector(".uagb-form-reacaptcha-error-"+r.block_id).innerHTML='<p style="color:red !important" class="error-captcha">'+r.captchaMessage+"</p>",!1;document.querySelector(".uagb-form-reacaptcha-error-"+r.block_id).innerHTML=""}else"v3"===r.reCaptchaType&&d&&(t=document.getElementById("g-recaptcha-response").value);const a=window.UAGBForms._serializeIt(u),c={};c.id=r.block_id;for(let e=0;e<a.length;e++){var o,n=document.getElementById(a[e].name);a[e].name.endsWith("[]")?((o=a[e].name.replace(/[\[\]']+/g,""))in c||(c[o]=[]),c[o].push(a[e].value)):null!==n&&(c[n.innerHTML]=a[e].value);const i=document.getElementById("hidden");null!==i&&void 0!==i&&(c[i.getAttribute("name")]=i.getAttribute("value"))}fetch(uagb_forms_data.ajax_url,{method:"POST",headers:new Headers({"Content-Type":"application/x-www-form-urlencoded"}),body:new URLSearchParams({action:"uagb_process_forms",nonce:uagb_forms_data.uagb_forms_ajax_nonce,form_data:JSON.stringify(c),sendAfterSubmitEmail:r.sendAfterSubmitEmail,captcha_version:r.reCaptchaType,captcha_response:t,post_id:p,block_id:r.block_id})}).then(e=>e.json()).then(function(e){const t=document.querySelector('[name="uagb-form-'+r.block_id+'"]');if(t.style.display="none",200===e.data){if("message"===r.confirmationType){const a=document.querySelector(".uagb-forms-success-message-"+r.block_id);a.classList.remove("uagb-forms-submit-message-hide"),a.classList.add("uagb-forms-success-message")}"url"===r.confirmationType&&window.location.replace(r.confirmationUrl)}else if(400===e.data&&"message"===r.confirmationType){const c=document.querySelector(".uagb-forms-failed-message-"+r.block_id);c.classList.remove("uagb-forms-submit-message-hide"),c.classList.add("uagb-forms-failed-message")}}).catch(function(e){})},_serializeIt(e){return Array.apply(0,e.elements).map(t=>(e=>"radio"!==t.type&&"checkbox"!==t.type||t.checked?e:null)({name:t.name,value:t.value})).filter(e=>e)}};PK��][S�&�GG<ultimate-addons-for-gutenberg/assets/js/inline-notice.min.jsnu�[���function dismissClick(e,i,o,s,t,n){if(!0===e&&void 0===i&&Cookies.set("uagb-notice-"+o,!0,{expires:s}),t[0]?.classList?.add("uagb-notice__active"),n){const c=n?.parentElement;c.style.display="none"}else t[0].style.display="none"}UAGBInlineNotice={init(e,i){const o=document.querySelectorAll(i);if(0!==o.length){const t=e.c_id,n=e.cookies,c=e.close_cookie_days,l=Cookies.get("uagb-notice-"+t);for(const d of o){void 0===l&&!0===n&&(d.style.display="block");var s=d.querySelector(".uagb-notice-dismiss")||d.querySelector("svg");const u=s||d.querySelector('button[type="button"] svg');""!==e.noticeDismiss&&""!==e.icon&&(u.addEventListener("click",function(){dismissClick(n,l,t,c,o)}),o[0].addEventListener("keydown",function(e){13!==e.keyCode&&32!==e.keyCode||(e=document.querySelector(i+" :focus-visible"),dismissClick(n,l,t,c,o,e))}))}}}};PK��][6>(�2ultimate-addons-for-gutenberg/assets/js/faq.min.jsnu�[���function slideUp(e,t){e.style.transitionProperty="height, margin, padding",e.style.transitionDuration=t+"ms",e.style.boxSizing="border-box",e.style.height=e.offsetHeight+"px",e.offsetHeight,e.style.overflow="hidden",e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0,e.style.marginTop=0,e.style.marginBottom=0,window.setTimeout(function(){e.style.display="none",e.style.removeProperty("height"),e.style.removeProperty("padding-top"),e.style.removeProperty("padding-bottom"),e.style.removeProperty("margin-top"),e.style.removeProperty("margin-bottom"),e.style.removeProperty("overflow"),e.style.removeProperty("transition-duration"),e.style.removeProperty("transition-property")},t)}function slideDown(e,t){e.style.removeProperty("display");let o=window.getComputedStyle(e).display;"none"===o&&(o="block"),e.style.display=o;var a=e.offsetHeight;e.style.overflow="hidden",e.style.height=0,e.style.paddingTop=0,e.style.paddingBottom=0,e.style.marginTop=0,e.style.marginBottom=0,e.offsetHeight,e.style.boxSizing="border-box",e.style.transitionProperty="height, margin, padding",e.style.transitionDuration=t+"ms",e.style.height=a+"px",e.style.removeProperty("padding-top"),e.style.removeProperty("padding-bottom"),e.style.removeProperty("margin-top"),e.style.removeProperty("margin-bottom"),window.setTimeout(function(){e.style.removeProperty("height"),e.style.removeProperty("overflow"),e.style.removeProperty("transition-duration"),e.style.removeProperty("transition-property")},t)}function setupFAQ(){const e=new RegExp("^[\\w\\-]+$");var t=window.location.hash.substring(1);const o=document.getElementsByClassName("uagb-faq-expand-first-true"),a=document.getElementsByClassName("uagb-faq-inactive-other-false");if(void 0!==document.getElementById(t)&&null!==document.getElementById(t)&&""!==document.getElementById(t)&&e.test(t)){const i=document.getElementById(t);void 0!==i&&(i.classList.add("uagb-faq-item-active"),i.setAttribute("aria-expanded",!0),(t=i.getElementsByClassName("uagb-faq-content")[0])&&slideDown(t,500))}else for(let t=0;t<o.length;t++)if(!0===o[t].classList.contains("uagb-faq-layout-accordion")){let e=o[t].querySelectorAll(".uagb-faq-child__outer-wrap.uagb-faq-item")[0];(e=e||o[t].querySelectorAll(".uagb-faq-child__outer-wrap .uagb-faq-item")[0]).classList.add("uagb-faq-item-active"),e.setAttribute("aria-expanded",!0),e.querySelectorAll(".uagb-faq-content")[0].style.display="block"}for(let e=0;e<a.length;e++)if(!0===a[e].classList.contains("uagb-faq-layout-accordion")){let t=a[e].querySelectorAll(".uagb-faq-child__outer-wrap.uagb-faq-item");t&&0!==t.length||(t=a[e].querySelectorAll(".uagb-faq-child__outer-wrap .uagb-faq-item"));for(let e=0;e<t.length;e++)t[e].classList.add("uagb-faq-item-active"),t[e].setAttribute("aria-expanded",!0),t[e].querySelectorAll(".uagb-faq-content")[0].style.display="block"}}function faqClick(t,o,a){if(13===t.keyCode||32===t.keyCode||0===t.button)if(o.classList.contains("uagb-faq-item-active"))o.classList.remove("uagb-faq-item-active"),o.setAttribute("aria-expanded",!1),slideUp(o.getElementsByClassName("uagb-faq-content")[0],500);else{const i=t.currentTarget.closest(".wp-block-uagb-faq");let e="true";if(i.classList.contains("wp-block-uagb-faq")&&(e=i.getAttribute("data-faqtoggle")),o.classList.add("uagb-faq-item-active"),o.setAttribute("aria-expanded",!0),slideDown(o.getElementsByClassName("uagb-faq-content")[0],500),"true"===e){a=i.querySelectorAll(".uagb-faq-content");for(let e=0;e<a.length;e++){const l=a[e].parentElement;l!==o&&(l.classList.remove("uagb-faq-item-active"),l.setAttribute("aria-expanded",!1),slideUp(l.getElementsByClassName("uagb-faq-content")[0],500))}}}}window.addEventListener("load",function(){setupFAQ();const t=document.getElementsByClassName("uagb-faq-layout-accordion");for(let e=0;e<t.length;e++){const o=t[e].querySelectorAll(".uagb-faq-questions-button"),a=t[e].querySelectorAll(".uagb-faq-item");for(let e=0;e<o.length;e++)o[e].addEventListener("click",function(e){faqClick(e,this.parentElement,o)});for(let e=0;e<a.length;e++)a[e].addEventListener("keyup",function(e){faqClick(e,this,o)})}});PK��][���¥�@ultimate-addons-for-gutenberg/assets/js/uagb-button-child.min.jsnu�[���UAGBButtonChild={init(e){const t=document.querySelector(e);t&&(t.addEventListener("focusin",()=>{document.addEventListener("keydown",this.handleKeyDown)}),t.addEventListener("focusout",()=>{document.removeEventListener("keydown",this.handleKeyDown)}))},handleKeyDown(e){" "!==e.key&&"Spacebar"!==e.key||"A"===e.target.tagName&&e.target.classList.contains("uagb-buttons-repeater")&&(e.preventDefault(),e.target.click())}};PK��][�J,eAeA/ultimate-addons-for-gutenberg/classes/utils.phpnu�[���<?php
/**
 * UAG Utils Functions.
 *
 * @package uagb
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Get post assets object.
 *
 * @param int $post_id current step ID.
 * @since 2.0.0
 */
function uagb_get_post_assets( $post_id ) {

	if ( ! isset( uagb()->post_assets_objs[ $post_id ] ) ) {

		uagb()->post_assets_objs[ $post_id ] = new UAGB_Post_Assets( $post_id );
	}

	return uagb()->post_assets_objs[ $post_id ];
}


/**
 * Get Spectra Font Awesome Polyfiller.
 *
 * @since 2.0.0
 */
function get_spectra_font_awesome_polyfiller() {

	$font_awesome_5_polyfiller = array(
		'ad'                                  => 'rectangle-ad',
		'rectangle-ad'                        => 'rectangle-ad',
		'adjust'                              => 'circle-half-stroke',
		'circle-half-stroke'                  => 'circle-half-stroke',
		'air-freshener'                       => 'spray-can-sparkles',
		'spray-can-sparkles'                  => 'spray-can-sparkles',
		'alien-monster'                       => 'alien-8bit',
		'alien-8bit'                          => 'alien-8bit',
		'allergies'                           => 'hand-dots',
		'hand-dots'                           => 'hand-dots',
		'ambulance'                           => 'truck-medical',
		'truck-medical'                       => 'truck-medical',
		'american-sign-language-interpreting' => 'hands-asl-interpreting',
		'hands-asl-interpreting'              => 'hands-asl-interpreting',
		'analytics'                           => 'chart-mixed',
		'chart-mixed'                         => 'chart-mixed',
		'angle-double-down'                   => 'angles-down',
		'angles-down'                         => 'angles-down',
		'angle-double-left'                   => 'angles-left',
		'angles-left'                         => 'angles-left',
		'angle-double-right'                  => 'angles-right',
		'angles-right'                        => 'angles-right',
		'angle-double-up'                     => 'angles-up',
		'angles-up'                           => 'angles-up',
		'angry'                               => 'face-angry',
		'face-angry'                          => 'face-angry',
		'apple-alt'                           => 'apple-whole',
		'apple-whole'                         => 'apple-whole',
		'apple-crate'                         => 'crate-apple',
		'crate-apple'                         => 'crate-apple',
		'archive'                             => 'box-archive',
		'box-archive'                         => 'box-archive',
		'arrow-alt-circle-down'               => 'circle-down',
		'circle-down'                         => 'circle-down',
		'arrow-alt-circle-left'               => 'circle-left',
		'circle-left'                         => 'circle-left',
		'arrow-alt-circle-right'              => 'circle-right',
		'circle-right'                        => 'circle-right',
		'arrow-alt-circle-up'                 => 'circle-up',
		'circle-up'                           => 'circle-up',
		'arrow-alt-down'                      => 'down',
		'down'                                => 'down',
		'arrow-alt-from-bottom'               => 'up-from-line',
		'up-from-line'                        => 'up-from-line',
		'arrow-alt-from-left'                 => 'right-from-line',
		'right-from-line'                     => 'right-from-line',
		'arrow-alt-from-right'                => 'left-from-line',
		'left-from-line'                      => 'left-from-line',
		'arrow-alt-from-top'                  => 'down-from-line',
		'down-from-line'                      => 'down-from-line',
		'arrow-alt-left'                      => 'left',
		'left'                                => 'left',
		'arrow-alt-right'                     => 'right',
		'right'                               => 'right',
		'arrow-alt-square-down'               => 'square-down',
		'square-down'                         => 'square-down',
		'arrow-alt-square-left'               => 'square-left',
		'square-left'                         => 'square-left',
		'arrow-alt-square-right'              => 'square-right',
		'square-right'                        => 'square-right',
		'arrow-alt-square-up'                 => 'square-up',
		'square-up'                           => 'square-up',
		'arrow-alt-to-bottom'                 => 'down-to-line',
		'down-to-line'                        => 'down-to-line',
		'arrow-alt-to-left'                   => 'left-to-line',
		'left-to-line'                        => 'left-to-line',
		'arrow-alt-to-right'                  => 'right-to-line',
		'right-to-line'                       => 'right-to-line',
		'arrow-alt-to-top'                    => 'up-to-line',
		'up-to-line'                          => 'up-to-line',
		'arrow-alt-up'                        => 'up',
		'up'                                  => 'up',
		'arrow-circle-down'                   => 'circle-arrow-down',
		'circle-arrow-down'                   => 'circle-arrow-down',
		'arrow-circle-left'                   => 'circle-arrow-left',
		'circle-arrow-left'                   => 'circle-arrow-left',
		'arrow-circle-right'                  => 'circle-arrow-right',
		'circle-arrow-right'                  => 'circle-arrow-right',
		'arrow-circle-up'                     => 'circle-arrow-up',
		'circle-arrow-up'                     => 'circle-arrow-up',
		'arrow-from-bottom'                   => 'arrow-up-from-line',
		'arrow-up-from-line'                  => 'arrow-up-from-line',
		'arrow-from-left'                     => 'arrow-right-from-line',
		'arrow-right-from-line'               => 'arrow-right-from-line',
		'arrow-from-right'                    => 'arrow-left-from-line',
		'arrow-left-from-line'                => 'arrow-left-from-line',
		'arrow-from-top'                      => 'arrow-down-from-line',
		'arrow-down-from-line'                => 'arrow-down-from-line',
		'arrow-square-down'                   => 'square-arrow-down',
		'square-arrow-down'                   => 'square-arrow-down',
		'arrow-square-left'                   => 'square-arrow-left',
		'square-arrow-left'                   => 'square-arrow-left',
		'arrow-square-right'                  => 'square-arrow-right',
		'square-arrow-right'                  => 'square-arrow-right',
		'arrow-square-up'                     => 'square-arrow-up',
		'square-arrow-up'                     => 'square-arrow-up',
		'arrow-to-bottom'                     => 'arrow-down-to-line',
		'arrow-down-to-line'                  => 'arrow-down-to-line',
		'arrow-to-left'                       => 'arrow-left-to-line',
		'arrow-left-to-line'                  => 'arrow-left-to-line',
		'arrow-to-right'                      => 'arrow-right-to-line',
		'arrow-right-to-line'                 => 'arrow-right-to-line',
		'arrow-to-top'                        => 'arrow-up-to-line',
		'arrow-up-to-line'                    => 'arrow-up-to-line',
		'arrows'                              => 'arrows-up-down-left-right',
		'arrows-up-down-left-right'           => 'arrows-up-down-left-right',
		'arrows-alt'                          => 'up-down-left-right',
		'up-down-left-right'                  => 'up-down-left-right',
		'arrows-alt-h'                        => 'left-right',
		'left-right'                          => 'left-right',
		'arrows-alt-v'                        => 'up-down',
		'up-down'                             => 'up-down',
		'arrows-h'                            => 'arrows-left-right',
		'arrows-left-right'                   => 'arrows-left-right',
		'arrows-v'                            => 'arrows-up-down',
		'arrows-up-down'                      => 'arrows-up-down',
		'assistive-listening-systems'         => 'ear-listen',
		'ear-listen'                          => 'ear-listen',
		'atlas'                               => 'book-atlas',
		'book-atlas'                          => 'book-atlas',
		'atom-alt'                            => 'atom-simple',
		'atom-simple'                         => 'atom-simple',
		'backspace'                           => 'delete-left',
		'delete-left'                         => 'delete-left',
		'balance-scale'                       => 'scale-balanced',
		'scale-balanced'                      => 'scale-balanced',
		'balance-scale-left'                  => 'scale-unbalanced',
		'scale-unbalanced'                    => 'scale-unbalanced',
		'balance-scale-right'                 => 'scale-unbalanced-flip',
		'scale-unbalanced-flip'               => 'scale-unbalanced-flip',
		'band-aid'                            => 'bandage',
		'bandage'                             => 'bandage',
		'barcode-alt'                         => 'rectangle-barcode',
		'rectangle-barcode'                   => 'rectangle-barcode',
		'baseball-ball'                       => 'baseball',
		'baseball'                            => 'baseball',
		'basketball-ball'                     => 'basketball',
		'basketball'                          => 'basketball',
		'bed-alt'                             => 'bed-front',
		'bed-front'                           => 'bed-front',
		'beer'                                => 'beer-mug-empty',
		'beer-mug-empty'                      => 'beer-mug-empty',
		'betamax'                             => 'cassette-betamax',
		'cassette-betamax'                    => 'cassette-betamax',
		'bible'                               => 'book-bible',
		'book-bible'                          => 'book-bible',
		'biking'                              => 'person-biking',
		'person-biking'                       => 'person-biking',
		'biking-mountain'                     => 'person-biking-mountain',
		'person-biking-mountain'              => 'person-biking-mountain',
		'birthday-cake'                       => 'cake-candles',
		'cake-candles'                        => 'cake-candles',
		'blind'                               => 'person-walking-with-cane',
		'person-walking-with-cane'            => 'person-walking-with-cane',
		'book-alt'                            => 'book-blank',
		'book-blank'                          => 'book-blank',
		'book-dead'                           => 'book-skull',
		'book-skull'                          => 'book-skull',
		'book-reader'                         => 'book-open-reader',
		'book-open-reader'                    => 'book-open-reader',
		'book-spells'                         => 'book-sparkles',
		'book-sparkles'                       => 'book-sparkles',
		'border-style'                        => 'border-top-left',
		'border-top-left'                     => 'border-top-left',
		'border-style-alt'                    => 'border-bottom-right',
		'border-bottom-right'                 => 'border-bottom-right',
		'box-alt'                             => 'box-taped',
		'box-taped'                           => 'box-taped',
		'box-fragile'                         => 'square-fragile',
		'square-fragile'                      => 'square-fragile',
		'box-full'                            => 'box-open-full',
		'box-open-full'                       => 'box-open-full',
		'box-up'                              => 'square-this-way-up',
		'square-this-way-up'                  => 'square-this-way-up',
		'box-usd'                             => 'box-dollar',
		'box-dollar'                          => 'box-dollar',
		'boxes'                               => 'boxes-stacked',
		'boxes-stacked'                       => 'boxes-stacked',
		'boxes-alt'                           => 'boxes-stacked',
		'brackets'                            => 'brackets-square',
		'brackets-square'                     => 'brackets-square',
		'broadcast-tower'                     => 'tower-broadcast',
		'tower-broadcast'                     => 'tower-broadcast',
		'burn'                                => 'fire-flame-simple',
		'fire-flame-simple'                   => 'fire-flame-simple',
		'bus-alt'                             => 'bus-simple',
		'bus-simple'                          => 'bus-simple',
		'calculator-alt'                      => 'calculator-simple',
		'calculator-simple'                   => 'calculator-simple',
		'calendar-alt'                        => 'calendar-days',
		'calendar-days'                       => 'calendar-days',
		'calendar-edit'                       => 'calendar-pen',
		'calendar-pen'                        => 'calendar-pen',
		'calendar-times'                      => 'calendar-xmark',
		'calendar-xmark'                      => 'calendar-xmark',
		'camera-alt'                          => 'camera',
		'camera'                              => 'camera',
		'camera-home'                         => 'camera-security',
		'camera-security'                     => 'camera-security',
		'car-alt'                             => 'car-rear',
		'car-rear'                            => 'car-rear',
		'car-crash'                           => 'car-burst',
		'car-burst'                           => 'car-burst',
		'car-mechanic'                        => 'car-wrench',
		'car-wrench'                          => 'car-wrench',
		'caravan-alt'                         => 'caravan-simple',
		'caravan-simple'                      => 'caravan-simple',
		'caret-circle-down'                   => 'circle-caret-down',
		'circle-caret-down'                   => 'circle-caret-down',
		'caret-circle-left'                   => 'circle-caret-left',
		'circle-caret-left'                   => 'circle-caret-left',
		'caret-circle-right'                  => 'circle-caret-right',
		'circle-caret-right'                  => 'circle-caret-right',
		'caret-circle-up'                     => 'circle-caret-up',
		'circle-caret-up'                     => 'circle-caret-up',
		'caret-square-down'                   => 'square-caret-down',
		'square-caret-down'                   => 'square-caret-down',
		'caret-square-left'                   => 'square-caret-left',
		'square-caret-left'                   => 'square-caret-left',
		'caret-square-right'                  => 'square-caret-right',
		'square-caret-right'                  => 'square-caret-right',
		'caret-square-up'                     => 'square-caret-up',
		'square-caret-up'                     => 'square-caret-up',
		'cctv'                                => 'camera-cctv',
		'camera-cctv'                         => 'camera-cctv',
		'chalkboard-teacher'                  => 'chalkboard-user',
		'chalkboard-user'                     => 'chalkboard-user',
		'chart-pie-alt'                       => 'chart-pie-simple',
		'chart-pie-simple'                    => 'chart-pie-simple',
		'check-circle'                        => 'circle-check',
		'circle-check'                        => 'circle-check',
		'check-square'                        => 'square-check',
		'square-check'                        => 'square-check',
		'cheeseburger'                        => 'burger-cheese',
		'burger-cheese'                       => 'burger-cheese',
		'chess-bishop-alt'                    => 'chess-bishop-piece',
		'chess-bishop-piece'                  => 'chess-bishop-piece',
		'chess-clock-alt'                     => 'chess-clock-flip',
		'chess-clock-flip'                    => 'chess-clock-flip',
		'chess-king-alt'                      => 'chess-king-piece',
		'chess-king-piece'                    => 'chess-king-piece',
		'chess-knight-alt'                    => 'chess-knight-piece',
		'chess-knight-piece'                  => 'chess-knight-piece',
		'chess-pawn-alt'                      => 'chess-pawn-piece',
		'chess-pawn-piece'                    => 'chess-pawn-piece',
		'chess-queen-alt'                     => 'chess-queen-piece',
		'chess-queen-piece'                   => 'chess-queen-piece',
		'chess-rook-alt'                      => 'chess-rook-piece',
		'chess-rook-piece'                    => 'chess-rook-piece',
		'chevron-circle-down'                 => 'circle-chevron-down',
		'circle-chevron-down'                 => 'circle-chevron-down',
		'chevron-circle-left'                 => 'circle-chevron-left',
		'circle-chevron-left'                 => 'circle-chevron-left',
		'chevron-circle-right'                => 'circle-chevron-right',
		'circle-chevron-right'                => 'circle-chevron-right',
		'chevron-circle-up'                   => 'circle-chevron-up',
		'circle-chevron-up'                   => 'circle-chevron-up',
		'chevron-double-down'                 => 'chevrons-down',
		'chevrons-down'                       => 'chevrons-down',
		'chevron-double-left'                 => 'chevrons-left',
		'chevrons-left'                       => 'chevrons-left',
		'chevron-double-right'                => 'chevrons-right',
		'chevrons-right'                      => 'chevrons-right',
		'chevron-double-up'                   => 'chevrons-up',
		'chevrons-up'                         => 'chevrons-up',
		'chevron-square-down'                 => 'square-chevron-down',
		'square-chevron-down'                 => 'square-chevron-down',
		'chevron-square-left'                 => 'square-chevron-left',
		'square-chevron-left'                 => 'square-chevron-left',
		'chevron-square-right'                => 'square-chevron-right',
		'square-chevron-right'                => 'square-chevron-right',
		'chevron-square-up'                   => 'square-chevron-up',
		'square-chevron-up'                   => 'square-chevron-up',
		'clinic-medical'                      => 'house-chimney-medical',
		'house-chimney-medical'               => 'house-chimney-medical',
		'cloud-download'                      => 'cloud-arrow-down',
		'cloud-arrow-down'                    => 'cloud-arrow-down',
		'cloud-download-alt'                  => 'cloud-arrow-down',
		'cloud-upload'                        => 'cloud-arrow-up',
		'cloud-arrow-up'                      => 'cloud-arrow-up',
		'cloud-upload-alt'                    => 'cloud-arrow-up',
		'cocktail'                            => 'martini-glass-citrus',
		'martini-glass-citrus'                => 'martini-glass-citrus',
		'coffee'                              => 'mug-saucer',
		'mug-saucer'                          => 'mug-saucer',
		'coffee-togo'                         => 'cup-togo',
		'cup-togo'                            => 'cup-togo',
		'cog'                                 => 'gear',
		'gear'                                => 'gear',
		'cogs'                                => 'gears',
		'gears'                               => 'gears',
		'columns'                             => 'table-columns',
		'table-columns'                       => 'table-columns',
		'comment-alt'                         => 'message',
		'message'                             => 'message',
		'comment-alt-check'                   => 'message-check',
		'message-check'                       => 'message-check',
		'comment-alt-dollar'                  => 'message-dollar',
		'message-dollar'                      => 'message-dollar',
		'comment-alt-dots'                    => 'message-dots',
		'message-dots'                        => 'message-dots',
		'comment-alt-edit'                    => 'message-pen',
		'message-pen'                         => 'message-pen',
		'comment-alt-exclamation'             => 'message-exclamation',
		'message-exclamation'                 => 'message-exclamation',
		'comment-alt-lines'                   => 'message-lines',
		'message-lines'                       => 'message-lines',
		'comment-alt-medical'                 => 'message-medical',
		'message-medical'                     => 'message-medical',
		'comment-alt-minus'                   => 'message-minus',
		'message-minus'                       => 'message-minus',
		'comment-alt-music'                   => 'message-music',
		'message-music'                       => 'message-music',
		'comment-alt-plus'                    => 'message-plus',
		'message-plus'                        => 'message-plus',
		'comment-alt-slash'                   => 'message-slash',
		'message-slash'                       => 'message-slash',
		'comment-alt-smile'                   => 'message-smile',
		'message-smile'                       => 'message-smile',
		'comment-alt-times'                   => 'message-xmark',
		'message-xmark'                       => 'message-xmark',
		'comment-edit'                        => 'comment-pen',
		'comment-pen'                         => 'comment-pen',
		'comment-times'                       => 'comment-xmark',
		'comment-xmark'                       => 'comment-xmark',
		'comments-alt'                        => 'messages',
		'messages'                            => 'messages',
		'comments-alt-dollar'                 => 'messages-dollar',
		'messages-dollar'                     => 'messages-dollar',
		'compress-alt'                        => 'down-left-and-up-right-to-center',
		'down-left-and-up-right-to-center'    => 'down-left-and-up-right-to-center',
		'compress-arrows-alt'                 => 'minimize',
		'minimize'                            => 'minimize',
		'concierge-bell'                      => 'bell-concierge',
		'bell-concierge'                      => 'bell-concierge',
		'construction'                        => 'triangle-person-digging',
		'triangle-person-digging'             => 'triangle-person-digging',
		'conveyor-belt-alt'                   => 'conveyor-belt-boxes',
		'conveyor-belt-boxes'                 => 'conveyor-belt-boxes',
		'cowbell-more'                        => 'cowbell-circle-plus',
		'cowbell-circle-plus'                 => 'cowbell-circle-plus',
		'cricket'                             => 'cricket-bat-ball',
		'cricket-bat-ball'                    => 'cricket-bat-ball',
		'crop-alt'                            => 'crop-simple',
		'crop-simple'                         => 'crop-simple',
		'curling'                             => 'curling-stone',
		'curling-stone'                       => 'curling-stone',
		'cut'                                 => 'scissors',
		'scissors'                            => 'scissors',
		'deaf'                                => 'ear-deaf',
		'ear-deaf'                            => 'ear-deaf',
		'debug'                               => 'ban-bug',
		'ban-bug'                             => 'ban-bug',
		'desktop-alt'                         => 'desktop',
		'desktop'                             => 'desktop',
		'dewpoint'                            => 'droplet-degree',
		'droplet-degree'                      => 'droplet-degree',
		'diagnoses'                           => 'person-dots-from-line',
		'person-dots-from-line'               => 'person-dots-from-line',
		'digging'                             => 'person-digging',
		'person-digging'                      => 'person-digging',
		'digital-tachograph'                  => 'tachograph-digital',
		'tachograph-digital'                  => 'tachograph-digital',
		'directions'                          => 'diamond-turn-right',
		'diamond-turn-right'                  => 'diamond-turn-right',
		'dizzy'                               => 'face-dizzy',
		'face-dizzy'                          => 'face-dizzy',
		'dolly-flatbed'                       => 'cart-flatbed',
		'cart-flatbed'                        => 'cart-flatbed',
		'dolly-flatbed-alt'                   => 'cart-flatbed-boxes',
		'cart-flatbed-boxes'                  => 'cart-flatbed-boxes',
		'dolly-flatbed-empty'                 => 'cart-flatbed-empty',
		'cart-flatbed-empty'                  => 'cart-flatbed-empty',
		'donate'                              => 'circle-dollar-to-slot',
		'circle-dollar-to-slot'               => 'circle-dollar-to-slot',
		'dot-circle'                          => 'circle-dot',
		'circle-dot'                          => 'circle-dot',
		'drafting-compass'                    => 'compass-drafting',
		'compass-drafting'                    => 'compass-drafting',
		'drone-alt'                           => 'drone-front',
		'drone-front'                         => 'drone-front',
		'dryer-alt'                           => 'dryer-heat',
		'dryer-heat'                          => 'dryer-heat',
		'eclipse-alt'                         => 'moon-over-sun',
		'moon-over-sun'                       => 'moon-over-sun',
		'edit'                                => 'pen-to-square',
		'pen-to-square'                       => 'pen-to-square',
		'ellipsis-h'                          => 'ellipsis',
		'ellipsis'                            => 'ellipsis',
		'ellipsis-h-alt'                      => 'ellipsis-stroke',
		'ellipsis-stroke'                     => 'ellipsis-stroke',
		'ellipsis-v'                          => 'ellipsis-vertical',
		'ellipsis-vertical'                   => 'ellipsis-vertical',
		'ellipsis-v-alt'                      => 'ellipsis-stroke-vertical',
		'ellipsis-stroke-vertical'            => 'ellipsis-stroke-vertical',
		'envelope-square'                     => 'square-envelope',
		'square-envelope'                     => 'square-envelope',
		'exchange'                            => 'arrow-right-arrow-left',
		'arrow-right-arrow-left'              => 'arrow-right-arrow-left',
		'exchange-alt'                        => 'right-left',
		'right-left'                          => 'right-left',
		'exclamation-circle'                  => 'circle-exclamation',
		'circle-exclamation'                  => 'circle-exclamation',
		'exclamation-square'                  => 'square-exclamation',
		'square-exclamation'                  => 'square-exclamation',
		'exclamation-triangle'                => 'triangle-exclamation',
		'triangle-exclamation'                => 'triangle-exclamation',
		'expand-alt'                          => 'up-right-and-down-left-from-center',
		'up-right-and-down-left-from-center'  => 'up-right-and-down-left-from-center',
		'expand-arrows'                       => 'arrows-maximize',
		'arrows-maximize'                     => 'arrows-maximize',
		'expand-arrows-alt'                   => 'maximize',
		'maximize'                            => 'maximize',
		'external-link'                       => 'arrow-up-right-from-square',
		'arrow-up-right-from-square'          => 'arrow-up-right-from-square',
		'external-link-alt'                   => 'up-right-from-square',
		'up-right-from-square'                => 'up-right-from-square',
		'external-link-square'                => 'square-arrow-up-right',
		'square-arrow-up-right'               => 'square-arrow-up-right',
		'external-link-square-alt'            => 'square-up-right',
		'square-up-right'                     => 'square-up-right',
		'fast-backward'                       => 'backward-fast',
		'backward-fast'                       => 'backward-fast',
		'fast-forward'                        => 'forward-fast',
		'forward-fast'                        => 'forward-fast',
		'feather-alt'                         => 'feather-pointed',
		'feather-pointed'                     => 'feather-pointed',
		'female'                              => 'person-dress',
		'person-dress'                        => 'person-dress',
		'field-hockey'                        => 'field-hockey-stick-ball',
		'field-hockey-stick-ball'             => 'field-hockey-stick-ball',
		'fighter-jet'                         => 'jet-fighter',
		'jet-fighter'                         => 'jet-fighter',
		'file-alt'                            => 'file-lines',
		'file-lines'                          => 'file-lines',
		'file-archive'                        => 'file-zipper',
		'file-zipper'                         => 'file-zipper',
		'file-chart-line'                     => 'file-chart-column',
		'file-chart-column'                   => 'file-chart-column',
		'file-download'                       => 'file-arrow-down',
		'file-arrow-down'                     => 'file-arrow-down',
		'file-edit'                           => 'file-pen',
		'file-pen'                            => 'file-pen',
		'file-medical-alt'                    => 'file-waveform',
		'file-waveform'                       => 'file-waveform',
		'file-search'                         => 'file-magnifying-glass',
		'file-magnifying-glass'               => 'file-magnifying-glass',
		'file-times'                          => 'file-xmark',
		'file-xmark'                          => 'file-xmark',
		'file-upload'                         => 'file-arrow-up',
		'file-arrow-up'                       => 'file-arrow-up',
		'film-alt'                            => 'film-simple',
		'film-simple'                         => 'film-simple',
		'fire-alt'                            => 'fire-flame-curved',
		'fire-flame-curved'                   => 'fire-flame-curved',
		'first-aid'                           => 'kit-medical',
		'kit-medical'                         => 'kit-medical',
		'fist-raised'                         => 'hand-fist',
		'hand-fist'                           => 'hand-fist',
		'flag-alt'                            => 'flag-swallowtail',
		'flag-swallowtail'                    => 'flag-swallowtail',
		'flame'                               => 'fire-flame',
		'fire-flame'                          => 'fire-flame',
		'flask-poison'                        => 'flask-round-poison',
		'flask-round-poison'                  => 'flask-round-poison',
		'flask-potion'                        => 'flask-round-potion',
		'flask-round-potion'                  => 'flask-round-potion',
		'flushed'                             => 'face-flushed',
		'face-flushed'                        => 'face-flushed',
		'fog'                                 => 'cloud-fog',
		'cloud-fog'                           => 'cloud-fog',
		'folder-download'                     => 'folder-arrow-down',
		'folder-arrow-down'                   => 'folder-arrow-down',
		'folder-times'                        => 'folder-xmark',
		'folder-xmark'                        => 'folder-xmark',
		'folder-upload'                       => 'folder-arrow-up',
		'folder-arrow-up'                     => 'folder-arrow-up',
		'font-awesome-alt'                    => 'square-font-awesome-stroke',
		'square-font-awesome-stroke'          => 'square-font-awesome-stroke',
		'font-awesome-flag'                   => 'font-awesome',
		'font-awesome'                        => 'font-awesome',
		'font-awesome-logo-full'              => 'font-awesome',
		'football-ball'                       => 'football',
		'football'                            => 'football',
		'fragile'                             => 'wine-glass-crack',
		'wine-glass-crack'                    => 'wine-glass-crack',
		'frosty-head'                         => 'snowman-head',
		'snowman-head'                        => 'snowman-head',
		'frown'                               => 'face-frown',
		'face-frown'                          => 'face-frown',
		'frown-open'                          => 'face-frown-open',
		'face-frown-open'                     => 'face-frown-open',
		'funnel-dollar'                       => 'filter-circle-dollar',
		'filter-circle-dollar'                => 'filter-circle-dollar',
		'game-board-alt'                      => 'game-board-simple',
		'game-board-simple'                   => 'game-board-simple',
		'gamepad-alt'                         => 'gamepad-modern',
		'gamepad-modern'                      => 'gamepad-modern',
		'glass-champagne'                     => 'champagne-glass',
		'champagne-glass'                     => 'champagne-glass',
		'glass-cheers'                        => 'champagne-glasses',
		'champagne-glasses'                   => 'champagne-glasses',
		'glass-martini'                       => 'martini-glass-empty',
		'martini-glass-empty'                 => 'martini-glass-empty',
		'glass-martini-alt'                   => 'martini-glass',
		'martini-glass'                       => 'martini-glass',
		'glass-whiskey'                       => 'whiskey-glass',
		'whiskey-glass'                       => 'whiskey-glass',
		'glass-whiskey-rocks'                 => 'whiskey-glass-ice',
		'whiskey-glass-ice'                   => 'whiskey-glass-ice',
		'glasses-alt'                         => 'glasses-round',
		'glasses-round'                       => 'glasses-round',
		'globe-africa'                        => 'earth-africa',
		'earth-africa'                        => 'earth-africa',
		'globe-americas'                      => 'earth-americas',
		'earth-americas'                      => 'earth-americas',
		'globe-asia'                          => 'earth-asia',
		'earth-asia'                          => 'earth-asia',
		'globe-europe'                        => 'earth-europa',
		'earth-europa'                        => 'earth-europa',
		'golf-ball'                           => 'golf-ball-tee',
		'golf-ball-tee'                       => 'golf-ball-tee',
		'grimace'                             => 'face-grimace',
		'face-grimace'                        => 'face-grimace',
		'grin'                                => 'face-grin',
		'face-grin'                           => 'face-grin',
		'grin-alt'                            => 'face-grin-wide',
		'face-grin-wide'                      => 'face-grin-wide',
		'grin-beam'                           => 'face-grin-beam',
		'face-grin-beam'                      => 'face-grin-beam',
		'grin-beam-sweat'                     => 'face-grin-beam-sweat',
		'face-grin-beam-sweat'                => 'face-grin-beam-sweat',
		'grin-hearts'                         => 'face-grin-hearts',
		'face-grin-hearts'                    => 'face-grin-hearts',
		'grin-squint'                         => 'face-grin-squint',
		'face-grin-squint'                    => 'face-grin-squint',
		'grin-squint-tears'                   => 'face-grin-squint-tears',
		'face-grin-squint-tears'              => 'face-grin-squint-tears',
		'grin-stars'                          => 'face-grin-stars',
		'face-grin-stars'                     => 'face-grin-stars',
		'grin-tears'                          => 'face-grin-tears',
		'face-grin-tears'                     => 'face-grin-tears',
		'grin-tongue'                         => 'face-grin-tongue',
		'face-grin-tongue'                    => 'face-grin-tongue',
		'grin-tongue-squint'                  => 'face-grin-tongue-squint',
		'face-grin-tongue-squint'             => 'face-grin-tongue-squint',
		'grin-tongue-wink'                    => 'face-grin-tongue-wink',
		'face-grin-tongue-wink'               => 'face-grin-tongue-wink',
		'grin-wink'                           => 'face-grin-wink',
		'face-grin-wink'                      => 'face-grin-wink',
		'grip-horizontal'                     => 'grip',
		'grip'                                => 'grip',
		'h-square'                            => 'square-h',
		'square-h'                            => 'square-h',
		'hamburger'                           => 'burger',
		'burger'                              => 'burger',
		'hand-holding-usd'                    => 'hand-holding-dollar',
		'hand-holding-dollar'                 => 'hand-holding-dollar',
		'hand-holding-water'                  => 'hand-holding-droplet',
		'hand-holding-droplet'                => 'hand-holding-droplet',
		'hand-paper'                          => 'hand',
		'hand'                                => 'hand',
		'hand-receiving'                      => 'hands-holding-diamond',
		'hands-holding-diamond'               => 'hands-holding-diamond',
		'hand-rock'                           => 'hand-back-fist',
		'hand-back-fist'                      => 'hand-back-fist',
		'hands-heart'                         => 'hands-holding-heart',
		'hands-holding-heart'                 => 'hands-holding-heart',
		'hands-helping'                       => 'handshake-angle',
		'handshake-angle'                     => 'handshake-angle',
		'hands-usd'                           => 'hands-holding-dollar',
		'hands-holding-dollar'                => 'hands-holding-dollar',
		'hands-wash'                          => 'hands-bubbles',
		'hands-bubbles'                       => 'hands-bubbles',
		'handshake-alt'                       => 'handshake-simple',
		'handshake-simple'                    => 'handshake-simple',
		'handshake-alt-slash'                 => 'handshake-simple-slash',
		'handshake-simple-slash'              => 'handshake-simple-slash',
		'hard-hat'                            => 'helmet-safety',
		'helmet-safety'                       => 'helmet-safety',
		'hdd'                                 => 'hard-drive',
		'hard-drive'                          => 'hard-drive',
		'head-vr'                             => 'head-side-goggles',
		'head-side-goggles'                   => 'head-side-goggles',
		'headphones-alt'                      => 'headphones-simple',
		'headphones-simple'                   => 'headphones-simple',
		'heart-broken'                        => 'heart-crack',
		'heart-crack'                         => 'heart-crack',
		'heart-circle'                        => 'circle-heart',
		'circle-heart'                        => 'circle-heart',
		'heart-rate'                          => 'wave-pulse',
		'wave-pulse'                          => 'wave-pulse',
		'heart-square'                        => 'square-heart',
		'square-heart'                        => 'square-heart',
		'heartbeat'                           => 'heart-pulse',
		'heart-pulse'                         => 'heart-pulse',
		'hiking'                              => 'person-hiking',
		'person-hiking'                       => 'person-hiking',
		'history'                             => 'clock-rotate-left',
		'clock-rotate-left'                   => 'clock-rotate-left',
		'home'                                => 'house',
		'house'                               => 'house',
		'home-alt'                            => 'house',
		'home-heart'                          => 'house-heart',
		'house-heart'                         => 'house-heart',
		'home-lg'                             => 'house-chimney',
		'house-chimney'                       => 'house-chimney',
		'home-lg-alt'                         => 'house',
		'hospital-alt'                        => 'hospital',
		'hospital'                            => 'hospital',
		'hospital-symbol'                     => 'circle-h',
		'circle-h'                            => 'circle-h',
		'hot-tub'                             => 'hot-tub-person',
		'hot-tub-person'                      => 'hot-tub-person',
		'hourglass-half'                      => 'hourglass',
		'hourglass'                           => 'hourglass',
		'house-damage'                        => 'house-chimney-crack',
		'house-chimney-crack'                 => 'house-chimney-crack',
		'house-leave'                         => 'house-person-leave',
		'house-person-leave'                  => 'house-person-leave',
		'house-return'                        => 'house-person-return',
		'house-person-return'                 => 'house-person-return',
		'hryvnia'                             => 'hryvnia-sign',
		'hryvnia-sign'                        => 'hryvnia-sign',
		'humidity'                            => 'droplet-percent',
		'droplet-percent'                     => 'droplet-percent',
		'icons-alt'                           => 'symbols',
		'symbols'                             => 'symbols',
		'id-card-alt'                         => 'id-card-clip',
		'id-card-clip'                        => 'id-card-clip',
		'industry-alt'                        => 'industry-windows',
		'industry-windows'                    => 'industry-windows',
		'info-circle'                         => 'circle-info',
		'circle-info'                         => 'circle-info',
		'info-square'                         => 'square-info',
		'square-info'                         => 'square-info',
		'innosoft'                            => '42-group',
		'42-group'                            => '42-group',
		'inventory'                           => 'shelves',
		'shelves'                             => 'shelves',
		'journal-whills'                      => 'book-journal-whills',
		'book-journal-whills'                 => 'book-journal-whills',
		'kiss'                                => 'face-kiss',
		'face-kiss'                           => 'face-kiss',
		'kiss-beam'                           => 'face-kiss-beam',
		'face-kiss-beam'                      => 'face-kiss-beam',
		'kiss-wink-heart'                     => 'face-kiss-wink-heart',
		'face-kiss-wink-heart'                => 'face-kiss-wink-heart',
		'landmark-alt'                        => 'landmark-dome',
		'landmark-dome'                       => 'landmark-dome',
		'laptop-house'                        => 'house-laptop',
		'house-laptop'                        => 'house-laptop',
		'laugh'                               => 'face-laugh',
		'face-laugh'                          => 'face-laugh',
		'laugh-beam'                          => 'face-laugh-beam',
		'face-laugh-beam'                     => 'face-laugh-beam',
		'laugh-squint'                        => 'face-laugh-squint',
		'face-laugh-squint'                   => 'face-laugh-squint',
		'laugh-wink'                          => 'face-laugh-wink',
		'face-laugh-wink'                     => 'face-laugh-wink',
		'level-down'                          => 'arrow-turn-down',
		'arrow-turn-down'                     => 'arrow-turn-down',
		'level-down-alt'                      => 'turn-down',
		'turn-down'                           => 'turn-down',
		'level-up'                            => 'arrow-turn-up',
		'arrow-turn-up'                       => 'arrow-turn-up',
		'level-up-alt'                        => 'turn-up',
		'turn-up'                             => 'turn-up',
		'list-alt'                            => 'rectangle-list',
		'rectangle-list'                      => 'rectangle-list',
		'location'                            => 'location-crosshairs',
		'location-crosshairs'                 => 'location-crosshairs',
		'location-circle'                     => 'circle-location-arrow',
		'circle-location-arrow'               => 'circle-location-arrow',
		'location-slash'                      => 'location-crosshairs-slash',
		'location-crosshairs-slash'           => 'location-crosshairs-slash',
		'lock-alt'                            => 'lock-keyhole',
		'lock-keyhole'                        => 'lock-keyhole',
		'lock-open-alt'                       => 'lock-keyhole-open',
		'lock-keyhole-open'                   => 'lock-keyhole-open',
		'long-arrow-alt-down'                 => 'down-long',
		'down-long'                           => 'down-long',
		'long-arrow-alt-left'                 => 'left-long',
		'left-long'                           => 'left-long',
		'long-arrow-alt-right'                => 'right-long',
		'right-long'                          => 'right-long',
		'long-arrow-alt-up'                   => 'up-long',
		'up-long'                             => 'up-long',
		'long-arrow-down'                     => 'arrow-down-long',
		'arrow-down-long'                     => 'arrow-down-long',
		'long-arrow-left'                     => 'arrow-left-long',
		'arrow-left-long'                     => 'arrow-left-long',
		'long-arrow-right'                    => 'arrow-right-long',
		'arrow-right-long'                    => 'arrow-right-long',
		'long-arrow-up'                       => 'arrow-up-long',
		'arrow-up-long'                       => 'arrow-up-long',
		'low-vision'                          => 'eye-low-vision',
		'eye-low-vision'                      => 'eye-low-vision',
		'luchador'                            => 'luchador-mask',
		'luchador-mask'                       => 'luchador-mask',
		'luggage-cart'                        => 'cart-flatbed-suitcase',
		'cart-flatbed-suitcase'               => 'cart-flatbed-suitcase',
		'magic'                               => 'wand-magic',
		'wand-magic'                          => 'wand-magic',
		'mail-bulk'                           => 'envelopes-bulk',
		'envelopes-bulk'                      => 'envelopes-bulk',
		'male'                                => 'person',
		'person'                              => 'person',
		'map-marked'                          => 'map-location',
		'map-location'                        => 'map-location',
		'map-marked-alt'                      => 'map-location-dot',
		'map-location-dot'                    => 'map-location-dot',
		'map-marker'                          => 'location-pin',
		'location-pin'                        => 'location-pin',
		'map-marker-alt'                      => 'location-dot',
		'location-dot'                        => 'location-dot',
		'map-marker-alt-slash'                => 'location-dot-slash',
		'location-dot-slash'                  => 'location-dot-slash',
		'map-marker-check'                    => 'location-check',
		'location-check'                      => 'location-check',
		'map-marker-edit'                     => 'location-pen',
		'location-pen'                        => 'location-pen',
		'map-marker-exclamation'              => 'location-exclamation',
		'location-exclamation'                => 'location-exclamation',
		'map-marker-minus'                    => 'location-minus',
		'location-minus'                      => 'location-minus',
		'map-marker-plus'                     => 'location-plus',
		'location-plus'                       => 'location-plus',
		'map-marker-question'                 => 'location-question',
		'location-question'                   => 'location-question',
		'map-marker-slash'                    => 'location-pin-slash',
		'location-pin-slash'                  => 'location-pin-slash',
		'map-marker-smile'                    => 'location-smile',
		'location-smile'                      => 'location-smile',
		'map-marker-times'                    => 'location-xmark',
		'location-xmark'                      => 'location-xmark',
		'map-signs'                           => 'signs-post',
		'signs-post'                          => 'signs-post',
		'mars-stroke-h'                       => 'mars-stroke-right',
		'mars-stroke-right'                   => 'mars-stroke-right',
		'mars-stroke-v'                       => 'mars-stroke-up',
		'mars-stroke-up'                      => 'mars-stroke-up',
		'medium-m'                            => 'medium',
		'medium'                              => 'medium',
		'medkit'                              => 'suitcase-medical',
		'suitcase-medical'                    => 'suitcase-medical',
		'meh'                                 => 'face-meh',
		'face-meh'                            => 'face-meh',
		'meh-blank'                           => 'face-meh-blank',
		'face-meh-blank'                      => 'face-meh-blank',
		'meh-rolling-eyes'                    => 'face-rolling-eyes',
		'face-rolling-eyes'                   => 'face-rolling-eyes',
		'microphone-alt'                      => 'microphone-lines',
		'microphone-lines'                    => 'microphone-lines',
		'microphone-alt-slash'                => 'microphone-lines-slash',
		'microphone-lines-slash'              => 'microphone-lines-slash',
		'mind-share'                          => 'brain-arrow-curved-right',
		'brain-arrow-curved-right'            => 'brain-arrow-curved-right',
		'minus-circle'                        => 'circle-minus',
		'circle-minus'                        => 'circle-minus',
		'minus-hexagon'                       => 'hexagon-minus',
		'hexagon-minus'                       => 'hexagon-minus',
		'minus-octagon'                       => 'octagon-minus',
		'octagon-minus'                       => 'octagon-minus',
		'minus-square'                        => 'square-minus',
		'square-minus'                        => 'square-minus',
		'mobile-alt'                          => 'mobile-screen-button',
		'mobile-screen-button'                => 'mobile-screen-button',
		'mobile-android'                      => 'mobile',
		'mobile'                              => 'mobile',
		'mobile-android-alt'                  => 'mobile-screen',
		'mobile-screen'                       => 'mobile-screen',
		'money-bill-alt'                      => 'money-bill-1',
		'money-bill-1'                        => 'money-bill-1',
		'money-bill-wave-alt'                 => 'money-bill-1-wave',
		'money-bill-1-wave'                   => 'money-bill-1-wave',
		'money-check-alt'                     => 'money-check-dollar',
		'money-check-dollar'                  => 'money-check-dollar',
		'money-check-edit'                    => 'money-check-pen',
		'money-check-pen'                     => 'money-check-pen',
		'money-check-edit-alt'                => 'money-check-dollar-pen',
		'money-check-dollar-pen'              => 'money-check-dollar-pen',
		'monitor-heart-rate'                  => 'monitor-waveform',
		'monitor-waveform'                    => 'monitor-waveform',
		'mouse'                               => 'computer-mouse',
		'computer-mouse'                      => 'computer-mouse',
		'mouse-alt'                           => 'computer-mouse-scrollwheel',
		'computer-mouse-scrollwheel'          => 'computer-mouse-scrollwheel',
		'mouse-pointer'                       => 'arrow-pointer',
		'arrow-pointer'                       => 'arrow-pointer',
		'music-alt'                           => 'music-note',
		'music-note'                          => 'music-note',
		'music-alt-slash'                     => 'music-note-slash',
		'music-note-slash'                    => 'music-note-slash',
		'oil-temp'                            => 'oil-temperature',
		'oil-temperature'                     => 'oil-temperature',
		'page-break'                          => 'file-dashed-line',
		'file-dashed-line'                    => 'file-dashed-line',
		'paint-brush-alt'                     => 'paint-brush-fine',
		'paint-brush-fine'                    => 'paint-brush-fine',
		'pallet-alt'                          => 'pallet-boxes',
		'pallet-boxes'                        => 'pallet-boxes',
		'paragraph-rtl'                       => 'paragraph-left',
		'paragraph-left'                      => 'paragraph-left',
		'parking'                             => 'square-parking',
		'square-parking'                      => 'square-parking',
		'parking-circle'                      => 'circle-parking',
		'circle-parking'                      => 'circle-parking',
		'parking-circle-slash'                => 'ban-parking',
		'ban-parking'                         => 'ban-parking',
		'parking-slash'                       => 'square-parking-slash',
		'square-parking-slash'                => 'square-parking-slash',
		'pastafarianism'                      => 'spaghetti-monster-flying',
		'spaghetti-monster-flying'            => 'spaghetti-monster-flying',
		'pause-circle'                        => 'circle-pause',
		'circle-pause'                        => 'circle-pause',
		'paw-alt'                             => 'paw-simple',
		'paw-simple'                          => 'paw-simple',
		'pen-alt'                             => 'pen-clip',
		'pen-clip'                            => 'pen-clip',
		'pen-square'                          => 'square-pen',
		'square-pen'                          => 'square-pen',
		'pencil-alt'                          => 'pencil',
		'pencil'                              => 'pencil',
		'pencil-paintbrush'                   => 'pen-paintbrush',
		'pen-paintbrush'                      => 'pen-paintbrush',
		'pencil-ruler'                        => 'pen-ruler',
		'pen-ruler'                           => 'pen-ruler',
		'pennant'                             => 'flag-pennant',
		'flag-pennant'                        => 'flag-pennant',
		'people-arrows'                       => 'people-arrows-left-right',
		'people-arrows-left-right'            => 'people-arrows-left-right',
		'people-carry'                        => 'people-carry-box',
		'people-carry-box'                    => 'people-carry-box',
		'percentage'                          => 'percent',
		'percent'                             => 'percent',
		'person-carry'                        => 'person-carry-box',
		'person-carry-box'                    => 'person-carry-box',
		'phone-alt'                           => 'phone-flip',
		'phone-flip'                          => 'phone-flip',
		'phone-laptop'                        => 'laptop-mobile',
		'laptop-mobile'                       => 'laptop-mobile',
		'phone-square'                        => 'square-phone',
		'square-phone'                        => 'square-phone',
		'phone-square-alt'                    => 'square-phone-flip',
		'square-phone-flip'                   => 'square-phone-flip',
		'photo-video'                         => 'photo-film',
		'photo-film'                          => 'photo-film',
		'plane-alt'                           => 'plane-engines',
		'plane-engines'                       => 'plane-engines',
		'play-circle'                         => 'circle-play',
		'circle-play'                         => 'circle-play',
		'plus-circle'                         => 'circle-plus',
		'circle-plus'                         => 'circle-plus',
		'plus-hexagon'                        => 'hexagon-plus',
		'hexagon-plus'                        => 'hexagon-plus',
		'plus-octagon'                        => 'octagon-plus',
		'octagon-plus'                        => 'octagon-plus',
		'plus-square'                         => 'square-plus',
		'square-plus'                         => 'square-plus',
		'poll'                                => 'square-poll-vertical',
		'square-poll-vertical'                => 'square-poll-vertical',
		'poll-h'                              => 'square-poll-horizontal',
		'square-poll-horizontal'              => 'square-poll-horizontal',
		'portal-enter'                        => 'person-to-portal',
		'person-to-portal'                    => 'person-to-portal',
		'portal-exit'                         => 'person-from-portal',
		'person-from-portal'                  => 'person-from-portal',
		'portrait'                            => 'image-portrait',
		'image-portrait'                      => 'image-portrait',
		'pound-sign'                          => 'sterling-sign',
		'sterling-sign'                       => 'sterling-sign',
		'pray'                                => 'person-praying',
		'person-praying'                      => 'person-praying',
		'praying-hands'                       => 'hands-praying',
		'hands-praying'                       => 'hands-praying',
		'prescription-bottle-alt'             => 'prescription-bottle-medical',
		'prescription-bottle-medical'         => 'prescription-bottle-medical',
		'presentation'                        => 'presentation-screen',
		'presentation-screen'                 => 'presentation-screen',
		'print-search'                        => 'print-magnifying-glass',
		'print-magnifying-glass'              => 'print-magnifying-glass',
		'procedures'                          => 'bed-pulse',
		'bed-pulse'                           => 'bed-pulse',
		'project-diagram'                     => 'diagram-project',
		'diagram-project'                     => 'diagram-project',
		'question-circle'                     => 'circle-question',
		'circle-question'                     => 'circle-question',
		'question-square'                     => 'square-question',
		'square-question'                     => 'square-question',
		'quran'                               => 'book-quran',
		'book-quran'                          => 'book-quran',
		'rabbit-fast'                         => 'rabbit-running',
		'rabbit-running'                      => 'rabbit-running',
		'radiation-alt'                       => 'circle-radiation',
		'circle-radiation'                    => 'circle-radiation',
		'radio-alt'                           => 'radio-tuner',
		'radio-tuner'                         => 'radio-tuner',
		'random'                              => 'shuffle',
		'shuffle'                             => 'shuffle',
		'rectangle-landscape'                 => 'rectangle',
		'rectangle'                           => 'rectangle',
		'rectangle-portrait'                  => 'rectangle-vertical',
		'rectangle-vertical'                  => 'rectangle-vertical',
		'redo'                                => 'arrow-rotate-right',
		'arrow-rotate-right'                  => 'arrow-rotate-right',
		'redo-alt'                            => 'rotate-right',
		'rotate-right'                        => 'rotate-right',
		'remove-format'                       => 'text-slash',
		'text-slash'                          => 'text-slash',
		'repeat-1-alt'                        => 'arrows-repeat-1',
		'arrows-repeat-1'                     => 'arrows-repeat-1',
		'repeat-alt'                          => 'arrows-repeat',
		'arrows-repeat'                       => 'arrows-repeat',
		'retweet-alt'                         => 'arrows-retweet',
		'arrows-retweet'                      => 'arrows-retweet',
		'rss-square'                          => 'square-rss',
		'square-rss'                          => 'square-rss',
		'running'                             => 'person-running',
		'person-running'                      => 'person-running',
		'sad-cry'                             => 'face-sad-cry',
		'face-sad-cry'                        => 'face-sad-cry',
		'sad-tear'                            => 'face-sad-tear',
		'face-sad-tear'                       => 'face-sad-tear',
		'save'                                => 'floppy-disk',
		'floppy-disk'                         => 'floppy-disk',
		'sax-hot'                             => 'saxophone-fire',
		'saxophone-fire'                      => 'saxophone-fire',
		'scalpel-path'                        => 'scalpel-line-dashed',
		'scalpel-line-dashed'                 => 'scalpel-line-dashed',
		'scanner-image'                       => 'scanner',
		'scanner'                             => 'scanner',
		'search'                              => 'magnifying-glass',
		'magnifying-glass'                    => 'magnifying-glass',
		'search-dollar'                       => 'magnifying-glass-dollar',
		'magnifying-glass-dollar'             => 'magnifying-glass-dollar',
		'search-location'                     => 'magnifying-glass-location',
		'magnifying-glass-location'           => 'magnifying-glass-location',
		'search-minus'                        => 'magnifying-glass-minus',
		'magnifying-glass-minus'              => 'magnifying-glass-minus',
		'search-plus'                         => 'magnifying-glass-plus',
		'magnifying-glass-plus'               => 'magnifying-glass-plus',
		'sensor-alert'                        => 'sensor-triangle-exclamation',
		'sensor-triangle-exclamation'         => 'sensor-triangle-exclamation',
		'sensor-smoke'                        => 'sensor-cloud',
		'sensor-cloud'                        => 'sensor-cloud',
		'share-alt'                           => 'share-nodes',
		'share-nodes'                         => 'share-nodes',
		'share-alt-square'                    => 'square-share-nodes',
		'square-share-nodes'                  => 'square-share-nodes',
		'share-square'                        => 'share-from-square',
		'share-from-square'                   => 'share-from-square',
		'shield-alt'                          => 'shield-blank',
		'shield-blank'                        => 'shield-blank',
		'shipping-fast'                       => 'truck-fast',
		'truck-fast'                          => 'truck-fast',
		'shipping-timed'                      => 'truck-clock',
		'truck-clock'                         => 'truck-clock',
		'shopping-bag'                        => 'bag-shopping',
		'bag-shopping'                        => 'bag-shopping',
		'shopping-basket'                     => 'basket-shopping',
		'basket-shopping'                     => 'basket-shopping',
		'shopping-cart'                       => 'cart-shopping',
		'cart-shopping'                       => 'cart-shopping',
		'shuttle-van'                         => 'van-shuttle',
		'van-shuttle'                         => 'van-shuttle',
		'sign'                                => 'sign-hanging',
		'sign-hanging'                        => 'sign-hanging',
		'sign-in'                             => 'arrow-right-to-bracket',
		'arrow-right-to-bracket'              => 'arrow-right-to-bracket',
		'sign-in-alt'                         => 'right-to-bracket',
		'right-to-bracket'                    => 'right-to-bracket',
		'sign-language'                       => 'hands',
		'hands'                               => 'hands',
		'sign-out'                            => 'arrow-right-from-bracket',
		'arrow-right-from-bracket'            => 'arrow-right-from-bracket',
		'sign-out-alt'                        => 'right-from-bracket',
		'right-from-bracket'                  => 'right-from-bracket',
		'signal-1'                            => 'signal-weak',
		'signal-weak'                         => 'signal-weak',
		'signal-2'                            => 'signal-fair',
		'signal-fair'                         => 'signal-fair',
		'signal-3'                            => 'signal-good',
		'signal-good'                         => 'signal-good',
		'signal-4'                            => 'signal-strong',
		'signal-strong'                       => 'signal-strong',
		'signal-alt'                          => 'signal-bars',
		'signal-bars'                         => 'signal-bars',
		'signal-alt-1'                        => 'signal-bars-weak',
		'signal-bars-weak'                    => 'signal-bars-weak',
		'signal-alt-2'                        => 'signal-bars-fair',
		'signal-bars-fair'                    => 'signal-bars-fair',
		'signal-alt-3'                        => 'signal-bars-good',
		'signal-bars-good'                    => 'signal-bars-good',
		'signal-alt-slash'                    => 'signal-bars-slash',
		'signal-bars-slash'                   => 'signal-bars-slash',
		'skating'                             => 'person-skating',
		'person-skating'                      => 'person-skating',
		'ski-jump'                            => 'person-ski-jumping',
		'person-ski-jumping'                  => 'person-ski-jumping',
		'ski-lift'                            => 'person-ski-lift',
		'person-ski-lift'                     => 'person-ski-lift',
		'skiing'                              => 'person-skiing',
		'person-skiing'                       => 'person-skiing',
		'skiing-nordic'                       => 'person-skiing-nordic',
		'person-skiing-nordic'                => 'person-skiing-nordic',
		'slack-hash'                          => 'slack',
		'slack'                               => 'slack',
		'sledding'                            => 'person-sledding',
		'person-sledding'                     => 'person-sledding',
		'sliders-h'                           => 'sliders',
		'sliders'                             => 'sliders',
		'sliders-h-square'                    => 'square-sliders',
		'square-sliders'                      => 'square-sliders',
		'sliders-v'                           => 'sliders-up',
		'sliders-up'                          => 'sliders-up',
		'sliders-v-square'                    => 'square-sliders-vertical',
		'square-sliders-vertical'             => 'square-sliders-vertical',
		'smile'                               => 'face-smile',
		'face-smile'                          => 'face-smile',
		'smile-beam'                          => 'face-smile-beam',
		'face-smile-beam'                     => 'face-smile-beam',
		'smile-plus'                          => 'face-smile-plus',
		'face-smile-plus'                     => 'face-smile-plus',
		'smile-wink'                          => 'face-smile-wink',
		'face-smile-wink'                     => 'face-smile-wink',
		'smoking-ban'                         => 'ban-smoking',
		'ban-smoking'                         => 'ban-smoking',
		'sms'                                 => 'comment-sms',
		'comment-sms'                         => 'comment-sms',
		'snapchat-ghost'                      => 'snapchat',
		'snapchat'                            => 'snapchat',
		'snowboarding'                        => 'person-snowboarding',
		'person-snowboarding'                 => 'person-snowboarding',
		'snowmobile'                          => 'person-snowmobiling',
		'person-snowmobiling'                 => 'person-snowmobiling',
		'sort-alpha-down'                     => 'arrow-down-a-z',
		'arrow-down-a-z'                      => 'arrow-down-a-z',
		'sort-alpha-down-alt'                 => 'arrow-down-z-a',
		'arrow-down-z-a'                      => 'arrow-down-z-a',
		'sort-alpha-up'                       => 'arrow-up-a-z',
		'arrow-up-a-z'                        => 'arrow-up-a-z',
		'sort-alpha-up-alt'                   => 'arrow-up-z-a',
		'arrow-up-z-a'                        => 'arrow-up-z-a',
		'sort-alt'                            => 'arrow-down-arrow-up',
		'arrow-down-arrow-up'                 => 'arrow-down-arrow-up',
		'sort-amount-down'                    => 'arrow-down-wide-short',
		'arrow-down-wide-short'               => 'arrow-down-wide-short',
		'sort-amount-down-alt'                => 'arrow-down-short-wide',
		'arrow-down-short-wide'               => 'arrow-down-short-wide',
		'sort-amount-up'                      => 'arrow-up-wide-short',
		'arrow-up-wide-short'                 => 'arrow-up-wide-short',
		'sort-amount-up-alt'                  => 'arrow-up-short-wide',
		'arrow-up-short-wide'                 => 'arrow-up-short-wide',
		'sort-circle'                         => 'circle-sort',
		'circle-sort'                         => 'circle-sort',
		'sort-circle-down'                    => 'circle-sort-down',
		'circle-sort-down'                    => 'circle-sort-down',
		'sort-circle-up'                      => 'circle-sort-up',
		'circle-sort-up'                      => 'circle-sort-up',
		'sort-numeric-down'                   => 'arrow-down-1-9',
		'arrow-down-1-9'                      => 'arrow-down-1-9',
		'sort-numeric-down-alt'               => 'arrow-down-9-1',
		'arrow-down-9-1'                      => 'arrow-down-9-1',
		'sort-numeric-up'                     => 'arrow-up-1-9',
		'arrow-up-1-9'                        => 'arrow-up-1-9',
		'sort-numeric-up-alt'                 => 'arrow-up-9-1',
		'arrow-up-9-1'                        => 'arrow-up-9-1',
		'sort-shapes-down'                    => 'arrow-down-triangle-square',
		'arrow-down-triangle-square'          => 'arrow-down-triangle-square',
		'sort-shapes-down-alt'                => 'arrow-down-square-triangle',
		'arrow-down-square-triangle'          => 'arrow-down-square-triangle',
		'sort-shapes-up'                      => 'arrow-up-triangle-square',
		'arrow-up-triangle-square'            => 'arrow-up-triangle-square',
		'sort-shapes-up-alt'                  => 'arrow-up-square-triangle',
		'arrow-up-square-triangle'            => 'arrow-up-square-triangle',
		'sort-size-down'                      => 'arrow-down-big-small',
		'arrow-down-big-small'                => 'arrow-down-big-small',
		'sort-size-down-alt'                  => 'arrow-down-small-big',
		'arrow-down-small-big'                => 'arrow-down-small-big',
		'sort-size-up'                        => 'arrow-up-big-small',
		'arrow-up-big-small'                  => 'arrow-up-big-small',
		'sort-size-up-alt'                    => 'arrow-up-small-big',
		'arrow-up-small-big'                  => 'arrow-up-small-big',
		'soup'                                => 'bowl-hot',
		'bowl-hot'                            => 'bowl-hot',
		'space-shuttle'                       => 'shuttle-space',
		'shuttle-space'                       => 'shuttle-space',
		'space-station-moon-alt'              => 'space-station-moon-construction',
		'space-station-moon-construction'     => 'space-station-moon-construction',
		'square-root-alt'                     => 'square-root-variable',
		'square-root-variable'                => 'square-root-variable',
		'star-half-alt'                       => 'star-half-stroke',
		'star-half-stroke'                    => 'star-half-stroke',
		'starfighter-alt'                     => 'starfighter-twin-ion-engine',
		'starfighter-twin-ion-engine'         => 'starfighter-twin-ion-engine',
		'step-backward'                       => 'backward-step',
		'backward-step'                       => 'backward-step',
		'step-forward'                        => 'forward-step',
		'forward-step'                        => 'forward-step',
		'sticky-note'                         => 'note-sticky',
		'note-sticky'                         => 'note-sticky',
		'stop-circle'                         => 'circle-stop',
		'circle-stop'                         => 'circle-stop',
		'store-alt'                           => 'shop',
		'shop'                                => 'shop',
		'store-alt-slash'                     => 'shop-slash',
		'shop-slash'                          => 'shop-slash',
		'stream'                              => 'bars-staggered',
		'bars-staggered'                      => 'bars-staggered',
		'subway'                              => 'train-subway',
		'train-subway'                        => 'train-subway',
		'surprise'                            => 'face-surprise',
		'face-surprise'                       => 'face-surprise',
		'swimmer'                             => 'person-swimming',
		'person-swimming'                     => 'person-swimming',
		'swimming-pool'                       => 'water-ladder',
		'water-ladder'                        => 'water-ladder',
		'sync'                                => 'arrows-rotate',
		'arrows-rotate'                       => 'arrows-rotate',
		'sync-alt'                            => 'rotate',
		'rotate'                              => 'rotate',
		'table-tennis'                        => 'table-tennis-paddle-ball',
		'table-tennis-paddle-ball'            => 'table-tennis-paddle-ball',
		'tablet-alt'                          => 'tablet-screen-button',
		'tablet-screen-button'                => 'tablet-screen-button',
		'tablet-android'                      => 'tablet',
		'tablet'                              => 'tablet',
		'tablet-android-alt'                  => 'tablet-screen',
		'tablet-screen'                       => 'tablet-screen',
		'tachometer'                          => 'gauge-simple',
		'gauge-simple'                        => 'gauge-simple',
		'tachometer-alt'                      => 'gauge',
		'gauge'                               => 'gauge',
		'tachometer-alt-average'              => 'gauge-med',
		'gauge-med'                           => 'gauge-med',
		'tachometer-alt-fast'                 => 'gauge',
		'tachometer-alt-fastest'              => 'gauge-max',
		'gauge-max'                           => 'gauge-max',
		'tachometer-alt-slow'                 => 'gauge-low',
		'gauge-low'                           => 'gauge-low',
		'tachometer-alt-slowest'              => 'gauge-min',
		'gauge-min'                           => 'gauge-min',
		'tachometer-average'                  => 'gauge-simple-med',
		'gauge-simple-med'                    => 'gauge-simple-med',
		'tachometer-fast'                     => 'gauge-simple',
		'tachometer-fastest'                  => 'gauge-simple-max',
		'gauge-simple-max'                    => 'gauge-simple-max',
		'tachometer-slow'                     => 'gauge-simple-low',
		'gauge-simple-low'                    => 'gauge-simple-low',
		'tachometer-slowest'                  => 'gauge-simple-min',
		'gauge-simple-min'                    => 'gauge-simple-min',
		'tanakh'                              => 'book-tanakh',
		'book-tanakh'                         => 'book-tanakh',
		'tasks'                               => 'list-check',
		'list-check'                          => 'list-check',
		'tasks-alt'                           => 'bars-progress',
		'bars-progress'                       => 'bars-progress',
		'telegram-plane'                      => 'telegram',
		'telegram'                            => 'telegram',
		'temperature-down'                    => 'temperature-arrow-down',
		'temperature-arrow-down'              => 'temperature-arrow-down',
		'temperature-frigid'                  => 'temperature-snow',
		'temperature-snow'                    => 'temperature-snow',
		'temperature-hot'                     => 'temperature-sun',
		'temperature-sun'                     => 'temperature-sun',
		'temperature-up'                      => 'temperature-arrow-up',
		'temperature-arrow-up'                => 'temperature-arrow-up',
		'tenge'                               => 'tenge-sign',
		'tenge-sign'                          => 'tenge-sign',
		'th'                                  => 'table-cells',
		'table-cells'                         => 'table-cells',
		'th-large'                            => 'table-cells-large',
		'table-cells-large'                   => 'table-cells-large',
		'th-list'                             => 'table-list',
		'table-list'                          => 'table-list',
		'theater-masks'                       => 'masks-theater',
		'masks-theater'                       => 'masks-theater',
		'thermometer-empty'                   => 'temperature-empty',
		'temperature-empty'                   => 'temperature-empty',
		'thermometer-full'                    => 'temperature-full',
		'temperature-full'                    => 'temperature-full',
		'thermometer-half'                    => 'temperature-half',
		'temperature-half'                    => 'temperature-half',
		'thermometer-quarter'                 => 'temperature-quarter',
		'temperature-quarter'                 => 'temperature-quarter',
		'thermometer-three-quarters'          => 'temperature-three-quarters',
		'temperature-three-quarters'          => 'temperature-three-quarters',
		'thunderstorm'                        => 'cloud-bolt',
		'cloud-bolt'                          => 'cloud-bolt',
		'thunderstorm-moon'                   => 'cloud-bolt-moon',
		'cloud-bolt-moon'                     => 'cloud-bolt-moon',
		'thunderstorm-sun'                    => 'cloud-bolt-sun',
		'cloud-bolt-sun'                      => 'cloud-bolt-sun',
		'ticket-alt'                          => 'ticket-simple',
		'ticket-simple'                       => 'ticket-simple',
		'times'                               => 'xmark',
		'xmark'                               => 'xmark',
		'times-circle'                        => 'circle-xmark',
		'circle-xmark'                        => 'circle-xmark',
		'times-hexagon'                       => 'hexagon-xmark',
		'hexagon-xmark'                       => 'hexagon-xmark',
		'times-octagon'                       => 'octagon-xmark',
		'octagon-xmark'                       => 'octagon-xmark',
		'times-square'                        => 'square-xmark',
		'square-xmark'                        => 'square-xmark',
		'tint'                                => 'droplet',
		'droplet'                             => 'droplet',
		'tint-slash'                          => 'droplet-slash',
		'droplet-slash'                       => 'droplet-slash',
		'tired'                               => 'face-tired',
		'face-tired'                          => 'face-tired',
		'toilet-paper-alt'                    => 'toilet-paper-blank',
		'toilet-paper-blank'                  => 'toilet-paper-blank',
		'tombstone-alt'                       => 'tombstone-blank',
		'tombstone-blank'                     => 'tombstone-blank',
		'tools'                               => 'screwdriver-wrench',
		'screwdriver-wrench'                  => 'screwdriver-wrench',
		'torah'                               => 'scroll-torah',
		'scroll-torah'                        => 'scroll-torah',
		'tram'                                => 'train-tram',
		'train-tram'                          => 'train-tram',
		'transgender-alt'                     => 'transgender',
		'transgender'                         => 'transgender',
		'trash-alt'                           => 'trash-can',
		'trash-can'                           => 'trash-can',
		'trash-restore'                       => 'trash-arrow-up',
		'trash-arrow-up'                      => 'trash-arrow-up',
		'trash-restore-alt'                   => 'trash-can-arrow-up',
		'trash-can-arrow-up'                  => 'trash-can-arrow-up',
		'trash-undo-alt'                      => 'trash-can-undo',
		'trash-can-undo'                      => 'trash-can-undo',
		'tree-alt'                            => 'tree-deciduous',
		'tree-deciduous'                      => 'tree-deciduous',
		'triangle-music'                      => 'triangle-instrument',
		'triangle-instrument'                 => 'triangle-instrument',
		'trophy-alt'                          => 'trophy-star',
		'trophy-star'                         => 'trophy-star',
		'truck-couch'                         => 'truck-ramp-couch',
		'truck-ramp-couch'                    => 'truck-ramp-couch',
		'truck-loading'                       => 'truck-ramp-box',
		'truck-ramp-box'                      => 'truck-ramp-box',
		'tshirt'                              => 'shirt',
		'shirt'                               => 'shirt',
		'tv-alt'                              => 'tv',
		'tv'                                  => 'tv',
		'undo'                                => 'arrow-rotate-left',
		'arrow-rotate-left'                   => 'arrow-rotate-left',
		'undo-alt'                            => 'rotate-left',
		'rotate-left'                         => 'rotate-left',
		'university'                          => 'building-columns',
		'building-columns'                    => 'building-columns',
		'unlink'                              => 'link-slash',
		'link-slash'                          => 'link-slash',
		'unlock-alt'                          => 'unlock-keyhole',
		'unlock-keyhole'                      => 'unlock-keyhole',
		'usd-circle'                          => 'circle-dollar',
		'circle-dollar'                       => 'circle-dollar',
		'usd-square'                          => 'square-dollar',
		'square-dollar'                       => 'square-dollar',
		'user-alt'                            => 'user-large',
		'user-large'                          => 'user-large',
		'user-alt-slash'                      => 'user-large-slash',
		'user-large-slash'                    => 'user-large-slash',
		'user-chart'                          => 'chart-user',
		'chart-user'                          => 'chart-user',
		'user-circle'                         => 'circle-user',
		'circle-user'                         => 'circle-user',
		'user-cog'                            => 'user-gear',
		'user-gear'                           => 'user-gear',
		'user-edit'                           => 'user-pen',
		'user-pen'                            => 'user-pen',
		'user-friends'                        => 'user-group',
		'user-group'                          => 'user-group',
		'user-hard-hat'                       => 'user-helmet-safety',
		'user-helmet-safety'                  => 'user-helmet-safety',
		'user-md'                             => 'user-doctor',
		'user-doctor'                         => 'user-doctor',
		'user-md-chat'                        => 'user-doctor-message',
		'user-doctor-message'                 => 'user-doctor-message',
		'user-times'                          => 'user-xmark',
		'user-xmark'                          => 'user-xmark',
		'users-class'                         => 'screen-users',
		'screen-users'                        => 'screen-users',
		'users-cog'                           => 'users-gear',
		'users-gear'                          => 'users-gear',
		'users-crown'                         => 'user-group-crown',
		'user-group-crown'                    => 'user-group-crown',
		'utensil-fork'                        => 'fork',
		'fork'                                => 'fork',
		'utensil-knife'                       => 'knife',
		'knife'                               => 'knife',
		'utensil-spoon'                       => 'spoon',
		'spoon'                               => 'spoon',
		'utensils-alt'                        => 'fork-knife',
		'fork-knife'                          => 'fork-knife',
		'vhs'                                 => 'cassette-vhs',
		'cassette-vhs'                        => 'cassette-vhs',
		'volleyball-ball'                     => 'volleyball',
		'volleyball'                          => 'volleyball',
		'volume-down'                         => 'volume-low',
		'volume-low'                          => 'volume-low',
		'volume-mute'                         => 'volume-xmark',
		'volume-xmark'                        => 'volume-xmark',
		'volume-up'                           => 'volume-high',
		'volume-high'                         => 'volume-high',
		'vote-nay'                            => 'xmark-to-slot',
		'xmark-to-slot'                       => 'xmark-to-slot',
		'vote-yea'                            => 'check-to-slot',
		'check-to-slot'                       => 'check-to-slot',
		'walking'                             => 'person-walking',
		'person-walking'                      => 'person-walking',
		'warehouse-alt'                       => 'warehouse-full',
		'warehouse-full'                      => 'warehouse-full',
		'washer'                              => 'washing-machine',
		'washing-machine'                     => 'washing-machine',
		'water-lower'                         => 'water-arrow-down',
		'water-arrow-down'                    => 'water-arrow-down',
		'water-rise'                          => 'water-arrow-up',
		'water-arrow-up'                      => 'water-arrow-up',
		'waveform-path'                       => 'waveform-lines',
		'waveform-lines'                      => 'waveform-lines',
		'webcam'                              => 'camera-web',
		'camera-web'                          => 'camera-web',
		'webcam-slash'                        => 'camera-web-slash',
		'camera-web-slash'                    => 'camera-web-slash',
		'weight'                              => 'weight-scale',
		'weight-scale'                        => 'weight-scale',
		'wifi-1'                              => 'wifi-weak',
		'wifi-weak'                           => 'wifi-weak',
		'wifi-2'                              => 'wifi-fair',
		'wifi-fair'                           => 'wifi-fair',
		'window-alt'                          => 'window-flip',
		'window-flip'                         => 'window-flip',
		'window-close'                        => 'rectangle-xmark',
		'rectangle-xmark'                     => 'rectangle-xmark',
		'wine-glass-alt'                      => 'wine-glass-empty',
		'wine-glass-empty'                    => 'wine-glass-empty',
	);

	return $font_awesome_5_polyfiller;
}
PK��][��q�kkZultimate-addons-for-gutenberg/classes/commands/class-spectra-regenerate-assets-command.phpnu�[���<?php
/**
 * Spectra Regenerate Assets Command.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}


if ( ! class_exists( 'Spectra_Regenerate_Assets_Command' ) ) {
	/**
	 * Class Spectra_Regenerate_Assets_Command
	 */
	class Spectra_Regenerate_Assets_Command {

		/**
		 * Regenerates Spectra CSS files.
		 *
		 * EXAMPLES: wp spectra regenerate-css
		 *
		 * @since 2.19.9
		 *
		 * @param array $args Positional arguments.
		 * @param array $assoc_args Associative arguments.
		 * @return void
		 */
		public function regenerate_assets( $args, $assoc_args ) {

			try {
				/* Update the asset version */
				\UAGB_Admin_Helper::create_specific_stylesheet();
				\UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );

				WP_CLI::success( 'Assets regenerated successfully!' );

			} catch ( Exception $e ) {
				WP_CLI::error( 'Error: ' . $e->getMessage() );
				return;
			}

		}


	}

	// Register the command to regenerate assets.
	WP_CLI::add_command( 'spectra regenerate-css', array( 'Spectra_Regenerate_Assets_Command', 'regenerate_assets' ) );
}

PK��][~��e�e�Aultimate-addons-for-gutenberg/classes/class-uagb-block-helper.phpnu�[���<?php
/**
 * UAGB Block Helper.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Block_Helper' ) ) {

	/**
	 * Class UAGB_Block_Helper.
	 */
	class UAGB_Block_Helper {

		/**
		 * Get Buttons Block CSS
		 *
		 * @since 1.14.9
		 * @param array  $attr The block attributes.
		 * @param string $id The key for the Icon List Item.
		 * @param string $child_migrate The child migration flag.
		 * @return array The Widget List.
		 */
		public static function get_buttons_child_selectors( $attr, $id, $child_migrate ) {

			$block_name = 'buttons-child';

			$wrapper = ( ! $child_migrate ) ? ' .uagb-buttons-repeater-' . $id : ' .uagb-buttons-repeater';

			$m_selectors = array();
			$t_selectors = array();
			$selectors   = array();

			$border_css        = self::uag_generate_border_css( $attr, 'btn' );
			$border_css        = self::uag_generate_deprecated_border_css(
				$border_css,
				( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
				( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
				( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
				( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
			);
			$border_css_tablet = self::uag_generate_border_css( $attr, 'btn', 'tablet' );
			$border_css_mobile = self::uag_generate_border_css( $attr, 'btn', 'mobile' );

			$top_padding    = isset( $attr['topPadding'] ) ? $attr['topPadding'] : '';
			$bottom_padding = isset( $attr['bottomPadding'] ) ? $attr['bottomPadding'] : '';
			$left_padding   = isset( $attr['leftPadding'] ) ? $attr['leftPadding'] : '';
			$right_padding  = isset( $attr['rightPadding'] ) ? $attr['rightPadding'] : '';

			$attr['sizeType']       = isset( $attr['sizeType'] ) ? $attr['sizeType'] : 'px';
			$attr['lineHeightType'] = isset( $attr['lineHeightType'] ) ? $attr['lineHeightType'] : 'em';

			$box_shadow_properties       = array(
				'horizontal' => $attr['boxShadowHOffset'],
				'vertical'   => $attr['boxShadowVOffset'],
				'blur'       => $attr['boxShadowBlur'],
				'spread'     => $attr['boxShadowSpread'],
				'color'      => $attr['boxShadowColor'],
				'position'   => $attr['boxShadowPosition'],
			);
			$box_shadow_hover_properties = array(
				'horizontal' => $attr['boxShadowHOffsetHover'],
				'vertical'   => $attr['boxShadowVOffsetHover'],
				'blur'       => $attr['boxShadowBlurHover'],
				'spread'     => $attr['boxShadowSpreadHover'],
				'color'      => $attr['boxShadowColorHover'],
				'position'   => $attr['boxShadowPositionHover'],
				'alt_color'  => $attr['boxShadowColor'],
			);

			$box_shadow_css       = self::generate_shadow_css( $box_shadow_properties );
			$box_shadow_hover_css = self::generate_shadow_css( $box_shadow_hover_properties );

			if ( ! $attr['inheritFromTheme'] ) {
				if ( 'transparent' === $attr['backgroundType'] ) {

					$selectors[' .wp-block-button__link']['background'] = 'transparent';

				} elseif ( 'color' === $attr['backgroundType'] ) {

					$selectors['.wp-block-uagb-buttons-child .uagb-buttons-repeater']['background'] = $attr['background'];
					$selectors[' .wp-block-button__link']['background']                             = $attr['background'];

				} elseif ( 'gradient' === $attr['backgroundType'] ) {
					$bg_obj = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['gradientValue'],
						'gradientColor1'    => $attr['gradientColor1'],
						'gradientColor2'    => $attr['gradientColor2'],
						'gradientType'      => $attr['gradientType'],
						'gradientLocation1' => $attr['gradientLocation1'],
						'gradientLocation2' => $attr['gradientLocation2'],
						'gradientAngle'     => $attr['gradientAngle'],
						'selectGradient'    => $attr['selectGradient'],
					);

					$bg_obj_tablet = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['gradientValue'],
						'gradientColor1'    => $attr['gradientColor1'],
						'gradientColor2'    => $attr['gradientColor2'],
						'gradientType'      => $attr['gradientType'],
						'gradientLocation1' => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj['gradientLocation1'],
						'gradientLocation2' => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj['gradientLocation2'],
						'gradientAngle'     => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj['gradientAngle'],
						'selectGradient'    => $attr['selectGradient'],
					);

					$bg_obj_mobile = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['gradientValue'],
						'gradientColor1'    => $attr['gradientColor1'],
						'gradientColor2'    => $attr['gradientColor2'],
						'gradientType'      => $attr['gradientType'],
						'gradientLocation1' => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
						'gradientLocation2' => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
						'gradientAngle'     => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
						'selectGradient'    => $attr['selectGradient'],
					);

					$btn_bg_css                             = self::uag_get_background_obj( $bg_obj );
					$btn_bg_tablet_css                      = self::uag_get_background_obj( $bg_obj_tablet );
					$btn_bg_mobile_css                      = self::uag_get_background_obj( $bg_obj_mobile );
					$selectors[' .wp-block-button__link']   = $btn_bg_css;
					$t_selectors[' .wp-block-button__link'] = $btn_bg_tablet_css;
					$m_selectors[' .wp-block-button__link'] = $btn_bg_mobile_css;
				}

				// Hover background color types.
				if ( 'transparent' === $attr['hoverbackgroundType'] ) {

					$selectors[' .wp-block-button__link:hover'] = array(
						'background' => 'transparent',
					);
					$selectors[' .wp-block-button__link:focus'] = array(
						'background' => 'transparent',
					);

				} elseif ( 'color' === $attr['hoverbackgroundType'] ) {

					$selectors[' .wp-block-button__link:hover'] = array(
						'background' => $attr['hBackground'],
					);
					$selectors[' .wp-block-button__link:focus'] = array(
						'background' => $attr['hBackground'],
					);

				} elseif ( 'gradient' === $attr['hoverbackgroundType'] ) {
					$bg_hover_obj = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['hovergradientValue'],
						'gradientColor1'    => $attr['hovergradientColor1'],
						'gradientColor2'    => $attr['hovergradientColor2'],
						'gradientType'      => $attr['hovergradientType'],
						'gradientLocation1' => $attr['hovergradientLocation1'],
						'gradientLocation2' => $attr['hovergradientLocation2'],
						'gradientAngle'     => $attr['hovergradientAngle'],
						'selectGradient'    => $attr['hoverselectGradient'],
					);

					$bg_hover_obj_tablet = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['hovergradientValue'],
						'gradientColor1'    => $attr['hovergradientColor1'],
						'gradientColor2'    => $attr['hovergradientColor2'],
						'gradientType'      => $attr['hovergradientType'],
						'gradientLocation1' => is_numeric( $attr['hovergradientLocationTablet1'] ) ? $attr['hovergradientLocationTablet1'] : $bg_hover_obj['gradientLocation1'],
						'gradientLocation2' => is_numeric( $attr['hovergradientLocationTablet2'] ) ? $attr['hovergradientLocationTablet2'] : $bg_hover_obj['gradientLocation2'],
						'gradientAngle'     => is_numeric( $attr['hovergradientAngleTablet'] ) ? $attr['hovergradientAngleTablet'] : $bg_hover_obj['gradientAngle'],
						'selectGradient'    => $attr['hoverselectGradient'],
					);

					$bg_hover_obj_mobile = array(
						'backgroundType'    => 'gradient',
						'gradientValue'     => $attr['hovergradientValue'],
						'gradientColor1'    => $attr['hovergradientColor1'],
						'gradientColor2'    => $attr['hovergradientColor2'],
						'gradientType'      => $attr['hovergradientType'],
						'gradientLocation1' => is_numeric( $attr['hovergradientLocationMobile1'] ) ? $attr['hovergradientLocationMobile1'] : $bg_hover_obj_tablet['gradientLocation1'],
						'gradientLocation2' => is_numeric( $attr['hovergradientLocationMobile2'] ) ? $attr['hovergradientLocationMobile2'] : $bg_hover_obj_tablet['gradientLocation2'],
						'gradientAngle'     => is_numeric( $attr['hovergradientAngleMobile'] ) ? $attr['hovergradientAngleMobile'] : $bg_hover_obj_tablet['gradientAngle'],
						'selectGradient'    => $attr['hoverselectGradient'],
					);

					$btn_hover_bg_css                             = self::uag_get_background_obj( $bg_hover_obj );
					$btn_hover_bg_css_tablet                      = self::uag_get_background_obj( $bg_hover_obj_tablet );
					$btn_hover_bg_css_mobile                      = self::uag_get_background_obj( $bg_hover_obj_mobile );
					$selectors[' .wp-block-button__link:hover']   = $btn_hover_bg_css;
					$selectors[' .wp-block-button__link:focus']   = $btn_hover_bg_css;
					$t_selectors[' .wp-block-button__link:hover'] = $btn_hover_bg_css_tablet;
					$t_selectors[' .wp-block-button__link:focus'] = $btn_hover_bg_css_tablet;
					$m_selectors[' .wp-block-button__link:hover'] = $btn_hover_bg_css_mobile;
					$m_selectors[' .wp-block-button__link:focus'] = $btn_hover_bg_css_mobile;
				}

				$selectors[' .uagb-button__wrapper .uagb-buttons-repeater']                   = array(
					'font-family'     => $attr['fontFamily'],
					'font-weight'     => $attr['fontWeight'],
					'font-style'      => $attr['fontStyle'],
					'text-transform'  => $attr['transform'],
					'text-decoration' => $attr['decoration'],
					'font-size'       => UAGB_Helper::get_css_value( $attr['size'], $attr['sizeType'] ),
					'line-height'     => UAGB_Helper::get_css_value( $attr['lineHeight'], $attr['lineHeightType'] ),
					'padding-top'     => UAGB_Helper::get_css_value( $top_padding, $attr['paddingUnit'] ),
					'padding-bottom'  => UAGB_Helper::get_css_value( $bottom_padding, $attr['paddingUnit'] ),
					'padding-left'    => UAGB_Helper::get_css_value( $left_padding, $attr['paddingUnit'] ),
					'padding-right'   => UAGB_Helper::get_css_value( $right_padding, $attr['paddingUnit'] ),
					'color'           => $attr['color'],
					'margin-top'      => UAGB_Helper::get_css_value( $attr['topMargin'], $attr['marginType'] ),
					'margin-bottom'   => UAGB_Helper::get_css_value( $attr['bottomMargin'], $attr['marginType'] ),
					'margin-left'     => UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['marginType'] ),
					'margin-right'    => UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['marginType'] ),
				);
				$selectors[' .wp-block-button__link.has-text-color:hover .uagb-button__link'] = array(
					'color' => $attr['hColor'],
				);
				$selectors[' .wp-block-button__link.has-text-color:focus .uagb-button__link'] = array(
					'color' => $attr['hColor'],
				);

				$selectors[ ' .uagb-button__wrapper ' . $wrapper . '.wp-block-button__link' ] = array(
					'box-shadow' => $box_shadow_css,
				);

				// If using separate box shadow hover settings, then generate CSS for it.
				if ( $attr['useSeparateBoxShadows'] ) {
					$selectors[ ' .uagb-button__wrapper ' . $wrapper . '.wp-block-button__link:hover' ] = array(
						'box-shadow' => $box_shadow_hover_css,
					);

				};
				$selectors[ $wrapper . '.wp-block-button__link' ]       = $border_css;
				$selectors[ $wrapper . '.wp-block-button__link:hover' ] = array(
					'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['borderHColor'],
				);
				$selectors[ $wrapper . '.wp-block-button__link:focus' ] = array(
					'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['borderHColor'],
				);
				// twenty twenty theme.
				$selectors['.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater']       = $border_css;
				$m_selectors['.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater']     = $border_css_mobile;
				$t_selectors['.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater']     = $border_css_tablet;
				$selectors['.wp-block-button.is-style-outline .uagb-button__wrapper .wp-block-button__link.uagb-buttons-repeater:hover'] = array(
					'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['borderHColor'],
				);
				$selectors[ $wrapper . ' .uagb-button__link' ]       = array(
					'color'           => $attr['color'],
					'font-family'     => $attr['fontFamily'],
					'font-weight'     => $attr['fontWeight'],
					'font-style'      => $attr['fontStyle'],
					'text-transform'  => $attr['transform'],
					'text-decoration' => $attr['decoration'],
					'font-size'       => UAGB_Helper::get_css_value( $attr['size'], $attr['sizeType'] ),
					'line-height'     => UAGB_Helper::get_css_value( $attr['lineHeight'], $attr['lineHeightType'] ),
				);
				$selectors[ $wrapper . ':hover .uagb-button__link' ] = array(
					'color' => $attr['hColor'],
				);
				$selectors[ $wrapper . ':focus .uagb-button__link' ] = array(
					'color' => $attr['hColor'],
				);
				$m_selectors[ $wrapper . ' .uagb-button__link' ]     = array(
					'font-size'   => UAGB_Helper::get_css_value( $attr['sizeMobile'], $attr['sizeType'] ),
					'line-height' => UAGB_Helper::get_css_value( $attr['lineHeightMobile'], $attr['lineHeightType'] ),
				);
				$t_selectors[ $wrapper . ' .uagb-button__link' ]     = array(
					'font-size'   => UAGB_Helper::get_css_value( $attr['sizeTablet'], $attr['sizeType'] ),
					'line-height' => UAGB_Helper::get_css_value( $attr['lineHeightTablet'], $attr['lineHeightType'] ),
				);
				$m_selectors[ $wrapper . '.wp-block-button__link' ]  = array_merge(
					array(
						'padding-top'    => UAGB_Helper::get_css_value( $attr['topMobilePadding'], $attr['mobilePaddingUnit'] ),
						'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomMobilePadding'], $attr['mobilePaddingUnit'] ),
						'padding-left'   => UAGB_Helper::get_css_value( $attr['leftMobilePadding'], $attr['mobilePaddingUnit'] ),
						'padding-right'  => UAGB_Helper::get_css_value( $attr['rightMobilePadding'], $attr['mobilePaddingUnit'] ),
						'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['marginType'] ),
						'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['marginType'] ),
						'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['marginType'] ),
						'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['marginType'] ),
					),
					$border_css_mobile
				);

				$t_selectors[ $wrapper . '.wp-block-button__link' ] = array_merge(
					array(
						'padding-top'    => UAGB_Helper::get_css_value( $attr['topTabletPadding'], $attr['tabletPaddingUnit'] ),
						'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomTabletPadding'], $attr['tabletPaddingUnit'] ),
						'padding-left'   => UAGB_Helper::get_css_value( $attr['leftTabletPadding'], $attr['tabletPaddingUnit'] ),
						'padding-right'  => UAGB_Helper::get_css_value( $attr['rightTabletPadding'], $attr['tabletPaddingUnit'] ),
						'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['marginType'] ),
						'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['marginType'] ),
						'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['marginType'] ),
						'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['marginType'] ),

					),
					$border_css_tablet
				);
			}
			$selectors[ ' .uagb-button__wrapper ' . $wrapper . '.wp-block-button__link' ] = array(
				'margin-top'    => UAGB_Helper::get_css_value( $attr['topMargin'], $attr['marginType'] ),
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMargin'], $attr['marginType'] ),
				'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['marginType'] ),
				'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['marginType'] ),
				'box-shadow'    => $box_shadow_css,
			);
			
			$m_selectors[ ' .uagb-button__wrapper ' . $wrapper . '.wp-block-button__link' ] = array(
				'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['marginType'] ),
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['marginType'] ),
				'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['marginType'] ),
				'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['marginType'] ),

			);

			$t_selectors[ ' .uagb-button__wrapper ' . $wrapper . '.wp-block-button__link' ] = array(
				'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['marginType'] ),
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['marginType'] ),
				'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['marginType'] ),
				'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['marginType'] ),

			);
			$selectors[ $wrapper . ' .uagb-button__icon > svg' ]       = array(
				'width'  => UAGB_Helper::get_css_value( self::get_fallback_number( $attr['iconSize'], 'iconSize', $block_name ), 'px' ),
				'height' => UAGB_Helper::get_css_value( self::get_fallback_number( $attr['iconSize'], 'iconSize', $block_name ), 'px' ),
				'fill'   => ! empty( $attr['iconColor'] ) ? $attr['iconColor'] : $attr['color'],
			);
			$t_selectors[ $wrapper . ' .uagb-button__icon > svg' ]     = array(
				'width'  => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
				'height' => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
				'fill'   => $attr['iconColor'],
			);
			$m_selectors[ $wrapper . ' .uagb-button__icon > svg' ]     = array(
				'width'  => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], 'px' ),
				'height' => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], 'px' ),
				'fill'   => $attr['iconColor'],
			);
			$selectors[ $wrapper . ':hover .uagb-button__icon > svg' ] = array(
				'fill' => ! empty( $attr['iconHColor'] ) ? $attr['iconHColor'] : $attr['hColor'],
			);
			$selectors[ $wrapper . ':focus .uagb-button__icon > svg' ] = array(
				'fill' => ! empty( $attr['iconHColor'] ) ? $attr['iconHColor'] : $attr['hColor'],
			);
			if ( ! $attr['removeText'] ) {
				$icon_margin        = UAGB_Helper::get_css_value( self::get_fallback_number( $attr['iconSpace'], 'iconSpace', $block_name ), 'px' );
				$tablet_icon_margin = UAGB_Helper::get_css_value( $attr['iconSpaceTablet'], 'px' );
				$mobile_icon_margin = UAGB_Helper::get_css_value( $attr['iconSpaceMobile'], 'px' );

				$right_side_margin = 'margin-right';
				$left_side_margin  = 'margin-left';

				if ( ! is_rtl() ) {
					$right_side_margin = 'margin-left';
					$left_side_margin  = 'margin-right';
				}

				$selectors[ $wrapper . ' .uagb-button__icon-position-after' ]   = array(
					$right_side_margin => $icon_margin,
				);
				$t_selectors[ $wrapper . ' .uagb-button__icon-position-after' ] = array(
					$right_side_margin => $tablet_icon_margin,
				);
				$m_selectors[ $wrapper . ' .uagb-button__icon-position-after' ] = array(
					$right_side_margin => $mobile_icon_margin,
				);

				$selectors[ $wrapper . ' .uagb-button__icon-position-before' ]   = array(
					$left_side_margin => $icon_margin,
				);
				$t_selectors[ $wrapper . ' .uagb-button__icon-position-before' ] = array(
					$left_side_margin => $tablet_icon_margin,
				);
				$m_selectors[ $wrapper . ' .uagb-button__icon-position-before' ] = array(
					$left_side_margin => $mobile_icon_margin,
				);
			}

			return array(
				'selectors'   => $selectors,
				'm_selectors' => $m_selectors,
				't_selectors' => $t_selectors,
			);
		}

		/**
		 * Get Social share Block CSS
		 *
		 * @since 1.14.9
		 * @param array  $attr The block attributes.
		 * @param string $id The key for the Icon List Item.
		 * @param mixed  $childMigrate The child migration flag.
		 * @return array The Widget List.
		 */
		public static function get_social_share_child_selectors( $attr, $id, $childMigrate ) {

			$wrapper = ( ! $childMigrate ) ? ' .uagb-ss-repeater-' . $id : '.uagb-ss-repeater';

			$selectors[ $wrapper . ' span.uagb-ss__link' ]           = array(
				'color' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ' a.uagb-ss__link' ]              = array( // Backward user case.
				'color' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ' span.uagb-ss__link' ]           = array(
				'color' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ' a.uagb-ss__link' ]              = array( // Backward user case.
				'color' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ' span.uagb-ss__link svg' ]       = array(
				'fill' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ' a.uagb-ss__link svg' ]          = array( // Backward user case.
				'fill' => $attr['icon_color'],
			);
			$selectors[ $wrapper . ':hover span.uagb-ss__link' ]     = array(
				'color' => $attr['icon_hover_color'],
			);
			$selectors[ $wrapper . ':hover a.uagb-ss__link' ]        = array( // Backward user case.
				'color' => $attr['icon_hover_color'],
			);
			$selectors[ $wrapper . ':hover span.uagb-ss__link svg' ] = array(
				'fill' => $attr['icon_hover_color'],
			);
			$selectors[ $wrapper . ':hover a.uagb-ss__link svg' ]    = array( // Backward user case.
				'fill' => $attr['icon_hover_color'],
			);

			$selectors[ $wrapper . '.uagb-ss__wrapper' ]       = array(
				'background' => $attr['icon_bg_color'],
			);
			$selectors[ $wrapper . '.uagb-ss__wrapper:hover' ] = array(
				'background' => $attr['icon_bg_hover_color'],
			);

			return $selectors;
		}

		/**
		 * Get Icon List Block CSS
		 *
		 * @since 1.14.9
		 * @param array  $attr The block attributes.
		 * @param string $id The key for the Icon List Item.
		 * @param string $childMigrate The child migration flag.
		 * @return array The Widget List.
		 */
		public static function get_icon_list_child_selectors( $attr, $id, $childMigrate ) {

			$wrapper = ( ! $childMigrate ) ? ' .uagb-icon-list-repeater-' . $id : '.wp-block-uagb-icon-list-child';

			if ( ! empty( $attr['icon_color'] ) ) {
				$selectors[ $wrapper . ' .uagb-icon-list__source-wrap svg' ] = array(
					'fill'  => $attr['icon_color'] . ' !important',
					'color' => $attr['icon_color'] . ' !important',
				);
			}
			if ( ! empty( $attr['icon_hover_color'] ) ) {
				$selectors[ $wrapper . ':hover .uagb-icon-list__source-wrap svg' ] = array(
					'fill'  => $attr['icon_hover_color'] . ' !important',
					'color' => $attr['icon_hover_color'] . ' !important',
				);
			}
			if ( ! empty( $attr['label_color'] ) ) {
				$selectors[ $wrapper . ' .uagb-icon-list__label' ] = array(
					'color' => $attr['label_color'] . ' !important',
				);
			}
			if ( ! empty( $attr['label_hover_color'] ) ) {
				$selectors[ $wrapper . ':hover .uagb-icon-list__label' ] = array(
					'color' => $attr['label_hover_color'] . ' !important',
				);
			}

			$selectors[ $wrapper . ' .uagb-icon-list__source-wrap' ]       = array(
				'background'   => $attr['icon_bg_color'] . ' !important',
				'border-color' => $attr['icon_border_color'] . ' !important',
			);
			$selectors[ $wrapper . ':hover .uagb-icon-list__source-wrap' ] = array(
				'background'   => $attr['icon_bg_hover_color'] . ' !important',
				'border-color' => $attr['icon_border_hover_color'] . ' !important',
			);

			$selectors[ $wrapper . '.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child' ] = array(
				'margin-top'     => UAGB_Helper::get_css_value(
					$attr['childTopMargin'],
					$attr['childMarginUnit']
				),
				'margin-right'   => UAGB_Helper::get_css_value(
					$attr['childRightMargin'],
					$attr['childMarginUnit']
				),
				'margin-bottom'  => UAGB_Helper::get_css_value(
					$attr['childBottomMargin'],
					$attr['childMarginUnit']
				),
				'margin-left'    => UAGB_Helper::get_css_value(
					$attr['childLeftMargin'],
					$attr['childMarginUnit']
				),
				'padding-top'    => UAGB_Helper::get_css_value(
					$attr['childTopPadding'],
					$attr['childPaddingUnit']
				),
				'padding-right'  => UAGB_Helper::get_css_value(
					$attr['childRightPadding'],
					$attr['childPaddingUnit']
				),
				'padding-bottom' => UAGB_Helper::get_css_value(
					$attr['childBottomPadding'],
					$attr['childPaddingUnit']
				),
				'padding-left'   => UAGB_Helper::get_css_value(
					$attr['childLeftPadding'],
					$attr['childPaddingUnit']
				),
			);

			$t_selectors[ $wrapper . '.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child' ] = array(
				'margin-top'     => UAGB_Helper::get_css_value(
					$attr['childTopMarginTablet'],
					$attr['childMarginUnitTablet']
				),
				'margin-right'   => UAGB_Helper::get_css_value(
					$attr['childRightMarginTablet'],
					$attr['childMarginUnitTablet']
				),
				'margin-bottom'  => UAGB_Helper::get_css_value(
					$attr['childBottomMarginTablet'],
					$attr['childMarginUnitTablet']
				),
				'margin-left'    => UAGB_Helper::get_css_value(
					$attr['childLeftMarginTablet'],
					$attr['childMarginUnitTablet']
				),
				'padding-top'    => UAGB_Helper::get_css_value(
					$attr['childTopPaddingTablet'],
					$attr['childPaddingUnitTablet']
				),
				'padding-right'  => UAGB_Helper::get_css_value(
					$attr['childRightPaddingTablet'],
					$attr['childPaddingUnitTablet']
				),
				'padding-bottom' => UAGB_Helper::get_css_value(
					$attr['childBottomPaddingTablet'],
					$attr['childPaddingUnitTablet']
				),
				'padding-left'   => UAGB_Helper::get_css_value(
					$attr['childLeftPaddingTablet'],
					$attr['childPaddingUnitTablet']
				),
			);

			$m_selectors[ $wrapper . '.wp-block-uagb-icon-list-child.wp-block-uagb-icon-list-child' ] = array(
				'margin-top'     => UAGB_Helper::get_css_value(
					$attr['childTopMarginMobile'],
					$attr['childMarginUnitMobile']
				),
				'margin-right'   => UAGB_Helper::get_css_value(
					$attr['childRightMarginMobile'],
					$attr['childMarginUnitMobile']
				),
				'margin-bottom'  => UAGB_Helper::get_css_value(
					$attr['childBottomMarginMobile'],
					$attr['childMarginUnitMobile']
				),
				'margin-left'    => UAGB_Helper::get_css_value(
					$attr['childLeftMarginMobile'],
					$attr['childMarginUnitMobile']
				),
				'padding-top'    => UAGB_Helper::get_css_value(
					$attr['childTopPaddingMobile'],
					$attr['childPaddingUnitMobile']
				),
				'padding-right'  => UAGB_Helper::get_css_value(
					$attr['childRightPaddingMobile'],
					$attr['childPaddingUnitMobile']
				),
				'padding-bottom' => UAGB_Helper::get_css_value(
					$attr['childBottomPaddingMobile'],
					$attr['childPaddingUnitMobile']
				),
				'padding-left'   => UAGB_Helper::get_css_value(
					$attr['childLeftPaddingMobile'],
					$attr['childPaddingUnitMobile']
				),
			);

			return array(
				'desktop' => $selectors,
				'tablet'  => $t_selectors,
				'mobile'  => $m_selectors,
			);
		}

		/**
		 * Get Post Block Selectors CSS
		 *
		 * @param array $attr The block attributes.
		 * @since 1.4.0
		 */
		public static function get_post_selectors( $attr ) {

			$overlay_opacity_fallback      = self::get_fallback_number( $attr['overlayOpacity'], 'overlayOpacity', $attr['blockName'] );
			$image_bottom_space_fallback   = self::get_fallback_number( $attr['imageBottomSpace'], 'imageBottomSpace', $attr['blockName'] );
			$title_bottom_space_fallback   = self::get_fallback_number( $attr['titleBottomSpace'], 'titleBottomSpace', $attr['blockName'] );
			$meta_bottom_space_fallback    = self::get_fallback_number( $attr['metaBottomSpace'], 'metaBottomSpace', $attr['blockName'] );
			$excerpt_bottom_space_fallback = self::get_fallback_number( $attr['excerptBottomSpace'], 'excerptBottomSpace', $attr['blockName'] );
			$cta_bottom_space_fallback     = self::get_fallback_number( $attr['ctaBottomSpace'], 'ctaBottomSpace', $attr['blockName'] );
			$isLeftRight                   = isset( $attr['isLeftToRightLayout'] ) ? $attr['isLeftToRightLayout'] : false;

			$border_css = self::uag_generate_border_css( $attr, 'btn' );
			$border_css = self::uag_generate_deprecated_border_css(
				$border_css,
				( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
				( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
				( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
				( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
			);

			$overall_border_css = self::uag_generate_border_css( $attr, 'overall' );

			$paddingTop    = isset( $attr['paddingTop'] ) ? $attr['paddingTop'] : $attr['contentPadding'];
			$paddingBottom = isset( $attr['paddingBottom'] ) ? $attr['paddingBottom'] : $attr['contentPadding'];
			$paddingLeft   = isset( $attr['paddingLeft'] ) ? $attr['paddingLeft'] : $attr['contentPadding'];
			$paddingRight  = isset( $attr['paddingRight'] ) ? $attr['paddingRight'] : $attr['contentPadding'];

			$paddingBtnTop    = isset( $attr['paddingBtnTop'] ) ? $attr['paddingBtnTop'] : $attr['btnVPadding'];
			$paddingBtnBottom = isset( $attr['paddingBtnBottom'] ) ? $attr['paddingBtnBottom'] : $attr['btnVPadding'];
			$paddingBtnLeft   = isset( $attr['paddingBtnLeft'] ) ? $attr['paddingBtnLeft'] : $attr['btnHPadding'];
			$paddingBtnRight  = isset( $attr['paddingBtnRight'] ) ? $attr['paddingBtnRight'] : $attr['btnHPadding'];

			$box_shadow_properties       = array(
				'horizontal' => $attr['boxShadowHOffset'],
				'vertical'   => $attr['boxShadowVOffset'],
				'blur'       => $attr['boxShadowBlur'],
				'spread'     => $attr['boxShadowSpread'],
				'color'      => $attr['boxShadowColor'],
				'position'   => $attr['boxShadowPosition'],
			);
			$box_shadow_hover_properties = array(
				'horizontal' => $attr['boxShadowHOffsetHover'],
				'vertical'   => $attr['boxShadowVOffsetHover'],
				'blur'       => $attr['boxShadowBlurHover'],
				'spread'     => $attr['boxShadowSpreadHover'],
				'color'      => $attr['boxShadowColorHover'],
				'position'   => $attr['boxShadowPositionHover'],
				'alt_color'  => $attr['boxShadowColor'],
			);

			$box_shadow_css       = self::generate_shadow_css( $box_shadow_properties );
			$box_shadow_hover_css = self::generate_shadow_css( $box_shadow_hover_properties );

			$column_gap_fallback = self::get_fallback_number( $attr['columnGap'], 'columnGap', $attr['blockName'] );
			$row_gap_fallback    = self::get_fallback_number( $attr['rowGap'], 'rowGap', $attr['blockName'] );

			$selectors = array(
				'.is-grid .uagb-post__inner-wrap'         => array_merge(
					array(
						'padding-top'    => UAGB_Helper::get_css_value( $paddingTop, $attr['contentPaddingUnit'] ),
						'padding-bottom' => UAGB_Helper::get_css_value( $paddingBottom, $attr['contentPaddingUnit'] ),
						'padding-left'   => UAGB_Helper::get_css_value( $paddingLeft, $attr['contentPaddingUnit'] ),
						'padding-right'  => UAGB_Helper::get_css_value( $paddingRight, $attr['contentPaddingUnit'] ),
						'box-shadow'     => $box_shadow_css,
					),
					$overall_border_css
				),
				'.is-grid .uagb-post__inner-wrap .uagb-post__image:first-child' => ! $isLeftRight ? array(
					'margin-left'  => UAGB_Helper::get_css_value( ( - (int) $paddingLeft ), $attr['contentPaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( ( - (int) $paddingRight ), $attr['contentPaddingUnit'] ),
					'margin-top'   => UAGB_Helper::get_css_value( ( - (int) $paddingTop ), $attr['contentPaddingUnit'] ),
				) : array(),
				':not(.is-grid) .uagb-post__inner-wrap > .uagb-post__text:last-child' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottom, $attr['contentPaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap > .uagb-post__text:first-child' => array(
					'margin-top' => UAGB_Helper::get_css_value( $paddingTop, $attr['contentPaddingUnit'] ),
				),
				':not(.is-grid).uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2) ' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottom, $attr['contentPaddingUnit'] ),
				),
				':not(.wp-block-uagb-post-carousel):not(.is-grid).uagb-post__items' => array(
					'margin-right' => UAGB_Helper::get_css_value( ( - (int) $row_gap_fallback / 2 ), $attr['rowGapUnit'] ),
					'margin-left'  => UAGB_Helper::get_css_value( ( - (int) $row_gap_fallback / 2 ), $attr['rowGapUnit'] ),
				),
				':not(.is-grid).uagb-post__items article' => array(
					'padding-right' => UAGB_Helper::get_css_value( (int) ( $row_gap_fallback / 2 ), $attr['rowGapUnit'] ),
					'padding-left'  => UAGB_Helper::get_css_value( (int) ( $row_gap_fallback / 2 ), $attr['rowGapUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( ( $column_gap_fallback ), $attr['columnGapUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap > .uagb-post__text' => array(
					'margin-left'  => UAGB_Helper::get_css_value( $paddingLeft, $attr['contentPaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( $paddingRight, $attr['contentPaddingUnit'] ),
				),
				' .uagb-post__inner-wrap'                 => array(
					'background' => $attr['bgColor'],
					'text-align' => $attr['align'],
				),
				' .uagb-post__inner-wrap:hover'           => array(
					'border-color' => $attr['overallBorderHColor'],
				),
				' .uagb-post__inner-wrap .uagb-post__cta' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $cta_bottom_space_fallback, $attr['ctaBottomSpaceUnit'] ),
				),
				' .uagb-post__image '                     => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $image_bottom_space_fallback, $attr['imageBottomSpaceUnit'] ),
				),
				' .uagb-post__title'                      => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $title_bottom_space_fallback, $attr['titleBottomSpaceUnit'] ),
				),
				' .uagb-post-grid-byline'                 => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $meta_bottom_space_fallback, $attr['metaBottomSpaceUnit'] ),
				),
				' .uagb-post__excerpt'                    => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $excerpt_bottom_space_fallback, $attr['excerptBottomSpaceUnit'] ),
				),
				' .uagb-post__image:before'               => array(
					'background-color' => $attr['bgOverlayColor'],
					'opacity'          => ( (int) $overlay_opacity_fallback / 100 ),
				),
				'.is-grid.uagb-post__items'               => array(
					'row-gap'    => UAGB_Helper::get_css_value( $row_gap_fallback, $attr['rowGapUnit'] ),
					'column-gap' => UAGB_Helper::get_css_value( $column_gap_fallback, $attr['columnGapUnit'] ),
				),
				'.wp-block-uagb-post-grid.is-grid'        => array(
					'grid-template-columns' => 'repeat(' . $attr['columns'] . ' , minmax(0, 1fr))',
				),
			);

			// If using separate box shadow hover settings, then generate CSS for it.
			if ( $attr['useSeparateBoxShadows'] ) {
				$selectors['.is-grid .uagb-post__inner-wrap:hover']['box-shadow'] = $box_shadow_hover_css;
			}

			$selectors[' .uagb-post__text.uagb-post__title']['color']                            = $attr['titleColor'];
			$selectors[' .uagb-post__text.uagb-post__title a']                                   = array(
				'color' => $attr['titleColor'],
			);
			$selectors[' .uagb-post__text.uagb-post-grid-byline']['color']                       = $attr['metaColor'];
			$selectors[' .uagb-post__text.uagb-post-grid-byline .uagb-post__author']             = array(
				'color' => $attr['metaColor'],
			);
			$selectors[' .uagb-post__inner-wrap .uagb-post__taxonomy']['color']                  = $attr['metaColor'];
			$selectors[' .uagb-post__inner-wrap .uagb-post__taxonomy a']['color']                = $attr['metaColor'];
			$selectors[' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted']['color']      = $attr['highlightedTextColor'];
			$selectors[' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted a']['color']    = $attr['highlightedTextColor'];
			$selectors[' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted']['background'] = $attr['highlightedTextBgColor'];
			$selectors[' .uagb-post__text.uagb-post-grid-byline .uagb-post__author a']           = array(
				'color' => $attr['metaColor'],
			);
			$selectors[' .uagb-post__text.uagb-post__excerpt']['color']                          = $attr['excerptColor'];

			if ( ! $attr['inheritFromThemeBtn'] ) {
				$selectors = array_merge(
					$selectors,
					array(
						'.uagb-post-grid .wp-block-button.uagb-post__text.uagb-post__cta .uagb-text-link.wp-block-button__link ' => array_merge(
							array(
								'color'      => $attr['ctaColor'],
								'background' => ( 'color' === $attr['ctaBgType'] ) ? $attr['ctaBgColor'] : 'transparent',
								$border_css,
							),
							$border_css
						),
						'.uagb-post-grid .uagb-post__inner-wrap .wp-block-button.uagb-post__text.uagb-post__cta a'               => array_merge(
							array(
								'color'          => $attr['ctaColor'],
								'padding-top'    => UAGB_Helper::get_css_value( $paddingBtnTop, $attr['paddingBtnUnit'] ),
								'padding-bottom' => UAGB_Helper::get_css_value( $paddingBtnBottom, $attr['paddingBtnUnit'] ),
								'padding-left'   => UAGB_Helper::get_css_value( $paddingBtnLeft, $attr['paddingBtnUnit'] ),
								'padding-right'  => UAGB_Helper::get_css_value( $paddingBtnRight, $attr['paddingBtnUnit'] ),
							)
						),
						'.uagb-post-grid .wp-block-button.uagb-post__text.uagb-post__cta:hover .uagb-text-link.wp-block-button__link' => array(
							'border-color' => $attr['btnBorderHColor'],
							'color'        => $attr['ctaHColor'],
							'background'   => ( 'color' === $attr['ctaBgHType'] ) ? $attr['ctaBgHColor'] : 'transparent',
						),
						' .uagb-post__text.uagb-post__cta:hover a.uagb-text-link' => array(
							'color'        => $attr['ctaHColor'],
							'border-color' => $attr['btnBorderHColor'],
						),
						' .uagb-post__text.uagb-post__cta a.uagb-text-link:focus' => array(
							'color'        => $attr['ctaHColor'],
							'background'   => ( 'color' === $attr['ctaBgHType'] ) ? $attr['ctaBgHColor'] : 'transparent',
							'border-color' => $attr['btnBorderHColor'],
						),
					)
				);
			}
			
			return $selectors;

		}

		/**
		 * Get Post Block Selectors CSS for Mobile devices
		 *
		 * @param array $attr The block attributes.
		 * @since 1.6.1
		 */
		public static function get_post_mobile_selectors( $attr ) {

			$column_gap_fallback = self::get_fallback_number( $attr['columnGap'], 'columnGap', $attr['blockName'] );
			$row_gap_fallback    = self::get_fallback_number( $attr['rowGap'], 'rowGap', $attr['blockName'] );

			$border_css_mobile         = self::uag_generate_border_css( $attr, 'btn', 'mobile' );
			$overall_border_css_mobile = self::uag_generate_border_css( $attr, 'overall', 'mobile' );

			$paddingTopMobile    = isset( $attr['paddingTopMobile'] ) ? $attr['paddingTopMobile'] : $attr['contentPaddingMobile'];
			$paddingBottomMobile = isset( $attr['paddingBottomMobile'] ) ? $attr['paddingBottomMobile'] : $attr['contentPaddingMobile'];
			$paddingLeftMobile   = isset( $attr['paddingLeftMobile'] ) ? $attr['paddingLeftMobile'] : $attr['contentPaddingMobile'];
			$paddingRightMobile  = isset( $attr['paddingRightMobile'] ) ? $attr['paddingRightMobile'] : $attr['contentPaddingMobile'];

			$paddingBtnTopMobile    = isset( $attr['paddingBtnTopMobile'] ) ? $attr['paddingBtnTopMobile'] : $attr['btnVPadding'];
			$paddingBtnBottomMobile = isset( $attr['paddingBtnBottomMobile'] ) ? $attr['paddingBtnBottomMobile'] : $attr['btnVPadding'];
			$paddingBtnLeftMobile   = isset( $attr['paddingBtnLeftMobile'] ) ? $attr['paddingBtnLeftMobile'] : $attr['btnHPadding'];
			$paddingBtnRightMobile  = isset( $attr['paddingBtnRightMobile'] ) ? $attr['paddingBtnRightMobile'] : $attr['btnHPadding'];

			$rowGapMobile    = is_numeric( $attr['rowGapMobile'] ) ? $attr['rowGapMobile'] : $row_gap_fallback;
			$columnGapMobile = is_numeric( $attr['columnGapMobile'] ) ? $attr['columnGapMobile'] : $column_gap_fallback;

			$ctaBottomSpaceMobile     = isset( $attr['ctaBottomSpaceMobile'] ) ? $attr['ctaBottomSpaceMobile'] : '';
			$imageBottomSpaceMobile   = isset( $attr['imageBottomSpaceMobile'] ) ? $attr['imageBottomSpaceMobile'] : '';
			$titleBottomSpaceMobile   = isset( $attr['titleBottomSpaceMobile'] ) ? $attr['titleBottomSpaceMobile'] : '';
			$metaBottomSpaceMobile    = isset( $attr['metaBottomSpaceMobile'] ) ? $attr['metaBottomSpaceMobile'] : '';
			$excerptBottomSpaceMobile = isset( $attr['excerptBottomSpaceMobile'] ) ? $attr['excerptBottomSpaceMobile'] : '';

			$m_selector = array(
				'.wp-block-uagb-post-grid.is-grid'        => array(
					'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ' , minmax(0, 1fr))',
				),
				' .uagb-post__inner-wrap .uagb-post__text.uagb-post__cta' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $ctaBottomSpaceMobile, $attr['ctaBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__image' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $imageBottomSpaceMobile, $attr['imageBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__title' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $titleBottomSpaceMobile, $attr['titleBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post-grid-byline' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $metaBottomSpaceMobile, $attr['metaBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__excerpt' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $excerptBottomSpaceMobile, $attr['excerptBottomSpaceUnit'] ),
				),
				'.is-grid .uagb-post__inner-wrap'         => array_merge(
					array(
						'padding-top'    => UAGB_Helper::get_css_value( $paddingTopMobile, $attr['mobilePaddingUnit'] ),
						'padding-bottom' => UAGB_Helper::get_css_value( $paddingBottomMobile, $attr['mobilePaddingUnit'] ),
						'padding-left'   => UAGB_Helper::get_css_value( $paddingLeftMobile, $attr['mobilePaddingUnit'] ),
						'padding-right'  => UAGB_Helper::get_css_value( $paddingRightMobile, $attr['mobilePaddingUnit'] ),
					),
					$overall_border_css_mobile
				),
				'.is-grid.uagb-post__items'               => array(
					'row-gap'    => UAGB_Helper::get_css_value( $rowGapMobile, $attr['rowGapUnit'] ),
					'column-gap' => UAGB_Helper::get_css_value( $columnGapMobile, $attr['columnGapUnit'] ),
				),
				':not(.is-grid).uagb-post__items article' => array(
					'padding-right' => UAGB_Helper::get_css_value( (int) ( $rowGapMobile / 2 ), $attr['rowGapUnit'] ),
					'padding-left'  => UAGB_Helper::get_css_value( (int) ( $rowGapMobile / 2 ), $attr['rowGapUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( ( $columnGapMobile ), $attr['columnGapUnit'] ),
				),
				':not(.is-grid).uagb-post__items'         => array(
					'margin-right' => UAGB_Helper::get_css_value( ( - (int) $rowGapMobile / 2 ), $attr['rowGapUnit'] ),
					'margin-left'  => UAGB_Helper::get_css_value( ( - (int) $rowGapMobile / 2 ), $attr['rowGapUnit'] ),
				),
				'.is-grid .uagb-post__inner-wrap .uagb-post__image:first-child' => array(
					'margin-left'  => UAGB_Helper::get_css_value( - (int) ( $paddingLeftMobile ), $attr['mobilePaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( - (int) ( $paddingRightMobile ), $attr['mobilePaddingUnit'] ),
					'margin-top'   => UAGB_Helper::get_css_value( - (int) ( $paddingTopMobile ), $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:last-child' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottomMobile, $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:first-child' => array(
					'margin-top' => UAGB_Helper::get_css_value( $paddingTopMobile, $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid).uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2) ' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottomMobile, $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap > .uagb-post__text:not(.highlighted)' => array(
					'margin-left'  => UAGB_Helper::get_css_value( $paddingLeftMobile, $attr['mobilePaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( $paddingRightMobile, $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:first-child' => array(
					'margin-top' => UAGB_Helper::get_css_value( $paddingTopMobile, $attr['mobilePaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text.highlighted' => array(
					'margin-left' => UAGB_Helper::get_css_value( $paddingLeftMobile, $attr['mobilePaddingUnit'] ),
				),
			);

			if ( ! $attr['inheritFromThemeBtn'] ) {
				$m_selector = array_merge(
					$m_selector,
					array(
						'.uagb-post-grid .wp-block-button.uagb-post__text.uagb-post__cta .uagb-text-link.wp-block-button__link ' => $border_css_mobile,
					)
				);
			}
			return $m_selector;
		}

		/**
		 * Get Post Block Selectors CSS for Tablet devices
		 *
		 * @param array $attr The block attributes.
		 * @since 1.8.2
		 */
		public static function get_post_tablet_selectors( $attr ) {

			$column_gap_fallback = self::get_fallback_number( $attr['columnGap'], 'columnGap', $attr['blockName'] );
			$row_gap_fallback    = self::get_fallback_number( $attr['rowGap'], 'rowGap', $attr['blockName'] );

			$border_css_tablet         = self::uag_generate_border_css( $attr, 'btn', 'tablet' );
			$overall_border_css_tablet = self::uag_generate_border_css( $attr, 'overall', 'tablet' );

			$paddingTopTablet    = isset( $attr['paddingTopTablet'] ) ? $attr['paddingTopTablet'] : $attr['contentPadding'];
			$paddingBottomTablet = isset( $attr['paddingBottomTablet'] ) ? $attr['paddingBottomTablet'] : $attr['contentPadding'];
			$paddingLeftTablet   = isset( $attr['paddingLeftTablet'] ) ? $attr['paddingLeftTablet'] : $attr['contentPadding'];
			$paddingRightTablet  = isset( $attr['paddingRightTablet'] ) ? $attr['paddingRightTablet'] : $attr['contentPadding'];

			$paddingBtnTopTablet    = isset( $attr['paddingBtnTopTablet'] ) ? $attr['paddingBtnTopTablet'] : $attr['btnVPadding'];
			$paddingBtnBottomTablet = isset( $attr['paddingBtnBottomTablet'] ) ? $attr['paddingBtnBottomTablet'] : $attr['btnVPadding'];
			$paddingBtnLeftTablet   = isset( $attr['paddingBtnLeftTablet'] ) ? $attr['paddingBtnLeftTablet'] : $attr['btnHPadding'];
			$paddingBtnRightTablet  = isset( $attr['paddingBtnRightTablet'] ) ? $attr['paddingBtnRightTablet'] : $attr['btnHPadding'];

			$rowGapTablet    = is_numeric( $attr['rowGapTablet'] ) ? $attr['rowGapTablet'] : $row_gap_fallback;
			$columnGapTablet = is_numeric( $attr['columnGapTablet'] ) ? $attr['columnGapTablet'] : $column_gap_fallback;

			$ctaBottomSpaceTablet     = isset( $attr['ctaBottomSpaceTablet'] ) ? $attr['ctaBottomSpaceTablet'] : '';
			$imageBottomSpaceTablet   = isset( $attr['imageBottomSpaceTablet'] ) ? $attr['imageBottomSpaceTablet'] : '';
			$titleBottomSpaceTablet   = isset( $attr['titleBottomSpaceTablet'] ) ? $attr['titleBottomSpaceTablet'] : '';
			$metaBottomSpaceTablet    = isset( $attr['metaBottomSpaceTablet'] ) ? $attr['metaBottomSpaceTablet'] : '';
			$excerptBottomSpaceTablet = isset( $attr['excerptBottomSpaceTablet'] ) ? $attr['excerptBottomSpaceTablet'] : '';
			$isLeftRight              = isset( $attr['isLeftToRightLayout'] ) ? $attr['isLeftToRightLayout'] : false;

			$t_selector = array(
				'.wp-block-uagb-post-grid.is-grid'        => array(
					'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ' , minmax(0, 1fr))',
				),
				' .uagb-post__inner-wrap .uagb-post__text.uagb-post__cta' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $ctaBottomSpaceTablet, $attr['ctaBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__image' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $imageBottomSpaceTablet, $attr['imageBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__title' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $titleBottomSpaceTablet, $attr['titleBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post-grid-byline' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $metaBottomSpaceTablet, $attr['metaBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap .uagb-post__excerpt' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $excerptBottomSpaceTablet, $attr['excerptBottomSpaceUnit'] ),
				),
				'.is-grid .uagb-post__inner-wrap'         => array_merge(
					array(
						'padding-top'    => UAGB_Helper::get_css_value( $paddingTopTablet, $attr['tabletPaddingUnit'] ),
						'padding-bottom' => UAGB_Helper::get_css_value( $paddingBottomTablet, $attr['tabletPaddingUnit'] ),
						'padding-left'   => UAGB_Helper::get_css_value( $paddingLeftTablet, $attr['tabletPaddingUnit'] ),
						'padding-right'  => UAGB_Helper::get_css_value( $paddingRightTablet, $attr['tabletPaddingUnit'] ),
					),
					$overall_border_css_tablet
				),
				'.is-grid.uagb-post__items'               => array(
					'row-gap'    => UAGB_Helper::get_css_value( $rowGapTablet, $attr['rowGapUnit'] ),
					'column-gap' => UAGB_Helper::get_css_value( $columnGapTablet, $attr['columnGapUnit'] ),
				),
				':not(.is-grid).uagb-post__items article' => array(
					'padding-right' => UAGB_Helper::get_css_value( (int) ( $rowGapTablet / 2 ), $attr['rowGapUnit'] ),
					'padding-left'  => UAGB_Helper::get_css_value( (int) ( $rowGapTablet / 2 ), $attr['rowGapUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( ( $columnGapTablet ), $attr['columnGapUnit'] ),
				),
				':not(.is-grid).uagb-post__items'         => array(
					'margin-right' => UAGB_Helper::get_css_value( ( - (int) $rowGapTablet / 2 ), $attr['rowGapUnit'] ),
					'margin-left'  => UAGB_Helper::get_css_value( ( - (int) $rowGapTablet / 2 ), $attr['rowGapUnit'] ),
				),
				'.is-grid .uagb-post__inner-wrap .uagb-post__image:first-child' => ! $isLeftRight ? array(
					'margin-left'  => UAGB_Helper::get_css_value( - (int) ( $paddingLeftTablet ), $attr['tabletPaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( - (int) ( $paddingRightTablet ), $attr['tabletPaddingUnit'] ),
					'margin-top'   => UAGB_Helper::get_css_value( - (int) ( $paddingTopTablet ), $attr['tabletPaddingUnit'] ),
				) : array(),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:last-child' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottomTablet, $attr['tabletPaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:first-child' => array(
					'margin-top' => UAGB_Helper::get_css_value( $paddingTopTablet, $attr['tabletPaddingUnit'] ),
				),
				':not(.is-grid).uagb-post__image-position-background .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2) ' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $paddingBottomTablet, $attr['tabletPaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:not(.highlighted)' => array(
					'margin-left'  => UAGB_Helper::get_css_value( $paddingLeftTablet, $attr['tabletPaddingUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( $paddingRightTablet, $attr['tabletPaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text:first-child' => array(
					'margin-top' => UAGB_Helper::get_css_value( $paddingTopTablet, $attr['tabletPaddingUnit'] ),
				),
				':not(.is-grid) .uagb-post__inner-wrap .uagb-post__text.highlighted' => array(
					'margin-left' => UAGB_Helper::get_css_value( $paddingLeftTablet, $attr['tabletPaddingUnit'] ),
				),
			);
			if ( ! $attr['inheritFromThemeBtn'] ) {
				$t_selector = array_merge(
					$t_selector,
					array(
						'.uagb-post-grid .wp-block-button.uagb-post__text.uagb-post__cta .uagb-text-link.wp-block-button__link ' => $border_css_tablet,
						' .uagb-post__cta a' => array_merge(
							array(
								'padding-top'    => UAGB_Helper::get_css_value( $paddingBtnTopTablet, $attr['tabletPaddingBtnUnit'] ),
								'padding-bottom' => UAGB_Helper::get_css_value( $paddingBtnBottomTablet, $attr['tabletPaddingBtnUnit'] ),
								'padding-left'   => UAGB_Helper::get_css_value( $paddingBtnLeftTablet, $attr['tabletPaddingBtnUnit'] ),
								'padding-right'  => UAGB_Helper::get_css_value( $paddingBtnRightTablet, $attr['tabletPaddingBtnUnit'] ),
							),
							$border_css_tablet
						),
					)
				);
			}
			return $t_selector;
		}

		/**
		 * Get Timeline Block Desktop Selectors CSS
		 *
		 * @param array $attr The block attributes.
		 * @since 1.8.2
		 */
		public static function get_timeline_selectors( $attr ) {

			$left_margin  = $attr['horizontalSpace'];
			$right_margin = $attr['horizontalSpace'];

			$top_padding    = isset( $attr['topPadding'] ) ? $attr['topPadding'] : $attr['bgPadding'];
			$bottom_padding = isset( $attr['bottomPadding'] ) ? $attr['bottomPadding'] : $attr['bgPadding'];
			$left_padding   = isset( $attr['leftPadding'] ) ? $attr['leftPadding'] : $attr['bgPadding'];
			$right_padding  = isset( $attr['rightPadding'] ) ? $attr['rightPadding'] : $attr['bgPadding'];

			$icon_size_fallback         = self::get_fallback_number( $attr['iconSize'], 'iconSize', $attr['blockName'] );
			$connector_bg_size_fallback = self::get_fallback_number( $attr['connectorBgsize'], 'connectorBgsize', $attr['blockName'] );
			$border_width_fallback      = self::get_fallback_number( $attr['borderwidth'], 'borderwidth', $attr['blockName'] );
			$separator_width_fallback   = self::get_fallback_number( $attr['separatorwidth'], 'separatorwidth', $attr['blockName'] );
			$head_space_fallback        = self::get_fallback_number( $attr['headSpace'], 'headSpace', $attr['blockName'] );
			$border_radius_fallback     = self::get_fallback_number( $attr['borderRadius'], 'borderRadius', $attr['blockName'] );
			$date_bottom_space_fallback = self::get_fallback_number( $attr['dateBottomspace'], 'dateBottomspace', $attr['blockName'] );
			$head_top_spacing_fallback  = 'post-timeline' === $attr['blockName'] ? self::get_fallback_number( $attr['headTopSpacing'], 'headTopSpacing', $attr['blockName'] ) : $attr['contentPadding'];

			$connector_size      = UAGB_Helper::get_css_value( $connector_bg_size_fallback, 'px' );
			$date_font_size      = '' !== $attr['dateFontSize'] ? $attr['dateFontSize'] : $attr['dateFontsize'];
			$date_font_size_type = '' !== $attr['dateFontSizeType'] ? $attr['dateFontSizeType'] : $attr['dateFontsizeType'];
			$selectors           = array(
				' .uagb-timeline__heading'               => array(
					'margin-top'    => UAGB_Helper::get_css_value( $head_top_spacing_fallback, 'px' ),
					'margin-bottom' => UAGB_Helper::get_css_value( $head_space_fallback, 'px' ),
				),
				' .uagb-timeline-desc-content'           => array(
					'text-align' => $attr['align'],
					'color'      => $attr['subHeadingColor'],
				),
				' .uagb-timeline__day-new'               => array(
					'text-align' => $attr['align'],
				),
				' .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
					'border-left-color' => $attr['backgroundColor'],
				),
				' .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
					'border-left-color' => $attr['backgroundColor'],
				),
				' .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
					'border-right-color' => $attr['backgroundColor'],
				),
				' .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
					'border-right-color' => $attr['backgroundColor'],
				),
				' .uagb-timeline__line__inner'           => array(
					'background-color' => $attr['separatorFillColor'],
				),
				' .uagb-timeline__line'                  => array(
					'background-color' => $attr['separatorColor'],
					'width'            => UAGB_Helper::get_css_value( $separator_width_fallback, 'px' ),
				),
				'.uagb-timeline__right-block .uagb-timeline__line' => array(
					'right' => 'calc( ' . $connector_bg_size_fallback . 'px / 2 )',
				),
				'.uagb-timeline__left-block .uagb-timeline__line' => array(
					'left' => 'calc( ' . $connector_bg_size_fallback . 'px / 2 )',
				),
				'.uagb-timeline__center-block .uagb-timeline__line' => array(
					'right' => 'calc( ' . $connector_bg_size_fallback . 'px / 2 )',
				),
				' .uagb-timeline__marker'                => array(
					'background-color' => $attr['separatorBg'],
					'min-height'       => $connector_size,
					'min-width'        => $connector_size,
					'line-height'      => $connector_size,
					'border'           => $border_width_fallback . 'px solid' . $attr['separatorBorder'],
				),
				'.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow' => array(
					'height' => $connector_size,
				),
				'.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow' => array(
					'height' => $connector_size,
				),
				'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow' => array(
					'height' => $connector_size,
				),
				'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow' => array(
					'height' => $connector_size,
				),
				'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__marker' => array(
					'margin-left'  => UAGB_Helper::get_css_value( $left_margin, $attr['marginUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( $right_margin, $attr['marginUnit'] ),
				),
				'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__marker' => array(
					'margin-left'  => UAGB_Helper::get_css_value( $left_margin, $attr['marginUnit'] ),
					'margin-right' => UAGB_Helper::get_css_value( $right_margin, $attr['marginUnit'] ),
				),
				' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array( // For New User.
					'margin-bottom' => UAGB_Helper::get_css_value( $date_bottom_space_fallback, 'px' ),
					'color'         => $attr['dateColor'],
					'text-align'    => $attr['align'],
				),
				' .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $date_bottom_space_fallback, 'px' ),
					'color'         => $attr['dateColor'],
					'text-align'    => $attr['align'],
				),
				'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
					'margin-left' => UAGB_Helper::get_css_value( $left_margin, $attr['marginUnit'] ),
				),
				'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
					'margin-right' => UAGB_Helper::get_css_value( $right_margin, $attr['marginUnit'] ),
				),
				' .uagb-timeline__date-new'              => array(
					'color'     => $attr['dateColor'],
					'font-size' => UAGB_Helper::get_css_value( $date_font_size, $date_font_size_type ),
				),
				' .uagb-timeline__events-inner-new'      => array(
					'background-color' => $attr['backgroundColor'],
					'border-radius'    => UAGB_Helper::get_css_value( $border_radius_fallback, 'px' ),
				),
				' .uagb-timeline__events-inner--content' => array(
					'padding-left'   => UAGB_Helper::get_css_value( $left_padding, $attr['paddingUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $right_padding, $attr['paddingUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $top_padding, $attr['paddingUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding, $attr['paddingUnit'] ),
				),
				' svg'                                   => array(
					'color'     => $attr['iconColor'],
					'font-size' => UAGB_Helper::get_css_value( $icon_size_fallback, 'px' ),
					'width'     => UAGB_Helper::get_css_value( $icon_size_fallback, 'px' ),
					'fill'      => $attr['iconColor'],
				),
				' .uagb-timeline__marker.uagb-timeline__in-view-icon svg' => array(
					'fill'  => $attr['iconFocus'],
					'color' => $attr['iconFocus'],
				),
				' .uagb-timeline__marker.uagb-timeline__in-view-icon' => array(
					'background'   => $attr['iconBgFocus'],
					'border-color' => $attr['borderFocus'],
				),
			);

			return $selectors;

		}

		/**
		 * Get Timeline Block Tablet Selectors CSS.
		 *
		 * @param array $attr The block attributes.
		 * @since 1.8.2
		 */
		public static function get_timeline_tablet_selectors( $attr ) {

			$connector_bg_size_fallback = self::get_fallback_number( $attr['connectorBgsize'], 'connectorBgsize', $attr['blockName'] );

			$tablet_selector = array(
				' .uagb-timeline__heading'               => array(
					'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopSpacingTablet'], 'px' ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceTablet'], 'px' ),
				),
				' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceTablet'], 'px' ),
				),
				'.uagb-timeline__center-block .uagb-timeline__marker' => array(
					'margin-left'  => 0,
					'margin-right' => 0,
				),
				'.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
					'border-right-color' => $attr['backgroundColor'],
				),
				'.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
					'border-right-color' => $attr['backgroundColor'],
				),
				'.uagb-timeline__center-block.uagb-timeline__responsive-tablet .uagb-timeline__line' => array(
					'left' => 'calc( ' . $connector_bg_size_fallback . 'px / 2 )',
				),
				'.uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
					'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['tabletMarginUnit'] ),
				),
				'.uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
					'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['tabletMarginUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['tabletMarginUnit'] ),
				),
				' .uagb-timeline__events-inner--content' => array(
					'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingUnit'] ),
					'border-radius'  => UAGB_Helper::get_css_value( $attr['borderRadiusTablet'], 'px' ),
				),
			);

			return $tablet_selector;

		}

		/**
		 * Get Timeline Block Mobile Selectors CSS.
		 *
		 * @param array $attr The block attributes.
		 * @since 1.8.2
		 */
		public static function get_timeline_mobile_selectors( $attr ) {

			$connector_bg_size_fallback = self::get_fallback_number( $attr['connectorBgsize'], 'connectorBgsize', $attr['blockName'] );

			$m_selectors = array(
				' .uagb-timeline__heading'               => array(
					'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopSpacingMobile'], 'px' ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceMobile'], 'px' ),
				),
				' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceMobile'], 'px' ),
				),
				'.uagb-timeline__center-block .uagb-timeline__marker' => array(
					'margin-left'  => 0,
					'margin-right' => 0,
				),
				' .uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
					'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], 'px' ),
				),
				' .uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
					'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], 'px' ),
				),
				'.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
					'border-right-color' => $attr['backgroundColor'],
				),
				'.uagb-timeline__center-block.uagb-timeline__responsive-mobile .uagb-timeline__line' => array(
					'left' => 'calc( ' . $connector_bg_size_fallback . 'px / 2 )',
				),
				'.uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
					'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['mobileMarginUnit'] ),
				),
				'.uagb-timeline__center-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
					'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['mobileMarginUnit'] ),
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['mobileMarginUnit'] ),
				),
				' .uagb-timeline__events-inner--content' => array(
					'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingUnit'] ),
					'border-radius'  => UAGB_Helper::get_css_value( $attr['borderRadiusMobile'], 'px' ),
				),
			);
			return $m_selectors;

		}

		/**
		 * Get Condition block CSS.
		 *
		 * @since 1.22.0
		 */
		public static function get_condition_block_css() {

			return '@media (min-width: 1025px){body .uag-hide-desktop.uagb-google-map__wrap,body .uag-hide-desktop{display:none !important}}@media (min-width: 768px) and (max-width: 1024px){body .uag-hide-tab.uagb-google-map__wrap,body .uag-hide-tab{display:none !important}}@media (max-width: 767px){body .uag-hide-mob.uagb-google-map__wrap,body .uag-hide-mob{display:none !important}}';
		}

		/**
		 * Get Masonry Gallery CSS.
		 *
		 * @since 1.24.0
		 * @param array  $attr The block attributes.
		 * @param string $id The selector ID.
		 */
		public static function get_gallery_css( $attr, $id ) {

			if ( isset( $attr['masonry'] ) && true === $attr['masonry'] ) {
				$col_count = ( isset( $attr['columns'] ) ) ? $attr['columns'] : 3;
				$selectors = array();
				if ( isset( $attr['masonryGutter'] ) && '' !== $attr['masonryGutter'] ) {
					$selectors = array(
						'.wp-block-gallery.has-nested-images.columns-' . $col_count => array(
							'column-gap' => UAGB_Helper::get_css_value( $attr['masonryGutter'], 'px' ),
						),
						'.wp-block-gallery.has-nested-images.columns-default' => array(
							'column-gap' => UAGB_Helper::get_css_value( $attr['masonryGutter'], 'px' ),
						),
						'.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) img' => array(
							'margin-bottom' => UAGB_Helper::get_css_value( $attr['masonryGutter'], 'px' ),
						),
						'.wp-block-gallery.columns-' . $col_count . ' ul.blocks-gallery-grid' => array( // For Backword.
							'column-gap' => UAGB_Helper::get_css_value( $attr['masonryGutter'], 'px' ),
						),
						'.wp-block-gallery ul.blocks-gallery-grid li.blocks-gallery-item' => array( // For Backword.
							'margin-bottom' => UAGB_Helper::get_css_value( $attr['masonryGutter'], 'px' ),
						),
					);
				} else {
					$selectors = array(
						'.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) img' => array(
							'margin-bottom' => '1em',
						),
					);
				}
				$t_selectors = array();
				if ( $col_count > 3 ) {
					$t_selectors = array(
						'.wp-block-gallery.columns-' . $col_count . ' .blocks-gallery-grid' => array(
							'column-count' => '3',
						),
					);
				}
			}
			$combined_selectors = array(
				'desktop' => $selectors,
				'tablet'  => $t_selectors,
				'mobile'  => array(),
			);

			return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
		}

		/**
		 * Get Masonry Gallery CSS.
		 *
		 * @since 1.24.0
		 */
		public static function get_masonry_gallery_css() {

			$selectors = array(
				'.wp-block-gallery.has-nested-images'    => array(
					'display'      => 'block',
					'column-count' => '3',
					'column-gap'   => '1em',
				),
				'.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image)' => array(
					'margin'             => 0,
					'display'            => 'block',
					'grid-template-rows' => '1fr auto',
					'break-inside'       => 'avoid',
					'width'              => 'unset',
				),
				'.columns-default.wp-block-gallery.has-nested-images' => array(
					'column-count' => '3',
					'width'        => 'unset',
				),
				'.columns-1.wp-block-gallery.has-nested-images' => array(
					'column-count' => '1',
					'width'        => 'unset',
				),
				'.columns-2.wp-block-gallery.has-nested-images' => array(
					'column-count' => '2',
				),
				'.columns-3.wp-block-gallery.has-nested-images' => array(
					'column-count' => '3',
					'width'        => 'unset',
				),
				'.columns-4.wp-block-gallery.has-nested-images' => array(
					'column-count' => '4',
					'width'        => 'unset',
				),
				'.columns-5.wp-block-gallery.has-nested-images' => array(
					'column-count' => '5',
					'width'        => 'unset',
				),
				'.columns-6.wp-block-gallery.has-nested-images' => array(
					'column-count' => '6',
					'width'        => 'unset',
				),
				'.columns-7.wp-block-gallery.has-nested-images' => array(
					'column-count' => '7',
					'width'        => 'unset',
				),
				'.columns-8.wp-block-gallery.has-nested-images' => array(
					'column-count' => '8',
					'width'        => 'unset',
				),
				/* For Backword */
				' .blocks-gallery-grid .blocks-gallery-item' => array(
					'margin'             => 0,
					'display'            => 'block',
					'grid-template-rows' => '1fr auto',
					'margin-bottom'      => '1em',
					'break-inside'       => 'avoid',
					'width'              => 'unset',
				),
				'.wp-block-gallery .blocks-gallery-grid' => array(
					'column-gap' => '1em',
					'display'    => 'block',
				),
				'.columns-1 .blocks-gallery-grid'        => array(
					'column-count' => '1',
				),
				'.columns-2 .blocks-gallery-grid'        => array(
					'column-count' => '2',
				),
				'.columns-3 .blocks-gallery-grid'        => array(
					'column-count' => '3',
				),
				'.columns-4 .blocks-gallery-grid'        => array(
					'column-count' => '4',
				),
				'.columns-5 .blocks-gallery-grid'        => array(
					'column-count' => '5',
				),
				'.columns-6 .blocks-gallery-grid'        => array(
					'column-count' => '6',
				),
				'.columns-7 .blocks-gallery-grid'        => array(
					'column-count' => '7',
				),
				'.columns-8 .blocks-gallery-grid'        => array(
					'column-count' => '8',
				),
				/* End Backword */
			);

			$m_selectors = array(
				'.wp-block-gallery[class*="columns-"].blocks-gallery-grid' => array(
					'column-count' => '2',
					'column-gap'   => '1em',
					'display'      => 'unset',
				),
				'.wp-block-gallery.columns-1.blocks-gallery-grid'        => array(
					'column-count' => '1',
				),
				/* For Backword */
				'.wp-block-gallery[class*="columns-"] .blocks-gallery-grid' => array(
					'column-count' => '2',
					'column-gap'   => '1em',
					'display'      => 'unset',
				),
				'.wp-block-gallery.columns-1 .blocks-gallery-grid'        => array(
					'column-count' => '1',
				),
				/* End Backword */
			);

			$combined_selectors = array(
				'desktop' => $selectors,
				'tablet'  => array(),
				'mobile'  => $m_selectors,
			);

			$css = UAGB_Helper::generate_all_css( $combined_selectors, '.uag-masonry' );

			$desktop = $css['desktop'];
			$tablet  = $css['tablet'];
			$mobile  = $css['mobile'];

			$tab_styling_css = '';
			$mob_styling_css = '';

			if ( ! empty( $tablet ) ) {
				$tab_styling_css .= '@media only screen and (max-width: ' . UAGB_TABLET_BREAKPOINT . 'px) {';
				$tab_styling_css .= $tablet;
				$tab_styling_css .= '}';
			}

			if ( ! empty( $mobile ) ) {
				$mob_styling_css .= '@media only screen and (max-width: ' . UAGB_MOBILE_BREAKPOINT . 'px) {';
				$mob_styling_css .= $mobile;
				$mob_styling_css .= '}';
			}

			return $desktop . $tab_styling_css . $mob_styling_css;
		}

		/**
		 * Generates background CSS for a specific device type.
		 *
		 * This function takes attributes for styling and a device type, and returns
		 * the corresponding background object and overlay CSS for that device type.
		 *
		 * @param array  $attr         The array of attributes containing styling options.
		 * @param string $device_type   The device type ('Desktop', 'Tablet', 'Mobile') for which to generate background CSS.
		 * @param string $overlay      The overlay option ('no' or 'yes') to determine whether to include overlay CSS.
		 *
		 * @since 2.7.8
		 * @return array               The background CSS object for the specified device type.
		 */
		public static function get_background_css_by_device( $attr, $device_type = 'Desktop', $overlay = 'no' ) {

			switch ( $device_type ) {
				case 'tablet':
				case 'Tablet':
					$device_type = 'Tablet';
					break;
				case 'mobile':
				case 'Mobile':
					$device_type = 'Mobile';
					break;
				default:
					$device_type = 'Desktop';
			}

			// Implement fallback logic: Desktop is the fallback for Tablet and Mobile.
			$background_image_key = 'backgroundImageDesktop'; // Default for Desktop.
			
			if ( 'Tablet' === $device_type ) {
				// Use tablet image if it exists, otherwise fallback to desktop.
				$background_image_key = ! empty( $attr['backgroundImageTablet'] ) ? 'backgroundImageTablet' : 'backgroundImageDesktop';
			} elseif ( 'Mobile' === $device_type ) {
				// Mobile fallback chain: Mobile → Tablet → Desktop.
				if ( ! empty( $attr['backgroundImageMobile'] ) ) {
					$background_image_key = 'backgroundImageMobile';
				} elseif ( ! empty( $attr['backgroundImageTablet'] ) ) {
					$background_image_key = 'backgroundImageTablet';
				}
				// If both fail, the default 'backgroundImageDesktop' value is retained.
			}
			
			$bg_obj = array(
				'backgroundType'                  => $attr['backgroundType'],
				'backgroundImage'                 => $attr[ $background_image_key ],
				'backgroundColor'                 => $attr['backgroundColor'],
				'gradientValue'                   => $attr['gradientValue'],
				'gradientColor1'                  => $attr['gradientColor1'],
				'gradientColor2'                  => $attr['gradientColor2'],
				'gradientType'                    => $attr['gradientType'],
				'gradientLocation1'               => $attr['gradientLocation1'],
				'gradientLocation2'               => $attr['gradientLocation2'],
				'gradientAngle'                   => $attr['gradientAngle'],
				'selectGradient'                  => $attr['selectGradient'],
				'backgroundRepeat'                => $attr[ 'backgroundRepeat' . $device_type ],
				'backgroundPosition'              => $attr[ 'backgroundPosition' . $device_type ],
				'backgroundSize'                  => $attr[ 'backgroundSize' . $device_type ],
				'backgroundAttachment'            => $attr[ 'backgroundAttachment' . $device_type ],
				'backgroundImageColor'            => $attr['backgroundImageColor'],
				'overlayType'                     => $attr['overlayType'],
				'overlayOpacity'                  => $attr['overlayOpacity'],
				'backgroundCustomSize'            => $attr[ 'backgroundCustomSize' . $device_type ],
				'backgroundCustomSizeType'        => $attr['backgroundCustomSizeType'],
				'backgroundVideo'                 => $attr['backgroundVideo'],
				'backgroundVideoColor'            => $attr['backgroundVideoColor'],
				'customPosition'                  => $attr['customPosition'],
				'centralizedPosition'             => $attr['centralizedPosition'],
				'xPosition'                       => $attr[ 'xPosition' . $device_type ],
				'xPositionType'                   => $attr['xPositionType'],
				'yPosition'                       => $attr[ 'yPosition' . $device_type ],
				'yPositionType'                   => $attr['yPositionType'],
				'backgroundOverlayImage'          => $attr[ 'backgroundOverlayImage' . $device_type ],
				'backgroundOverlayRepeat'         => $attr[ 'backgroundRepeatOverlay' . $device_type ],
				'backgroundOverlayPosition'       => $attr[ 'backgroundPositionOverlay' . $device_type ],
				'backgroundOverlaySize'           => $attr[ 'backgroundSizeOverlay' . $device_type ],
				'backgroundOverlayAttachment'     => $attr[ 'backgroundAttachmentOverlay' . $device_type ],
				'backgroundOverlayCustomSize'     => $attr[ 'backgroundCustomSizeOverlay' . $device_type ],
				'backgroundOverlayCustomSizeType' => $attr['backgroundCustomOverlaySizeType'],
				'customOverlayPosition'           => $attr['customOverlayPosition'],
				'xOverlayPosition'                => $attr[ 'xPositionOverlay' . $device_type ],
				'xOverlayPositionType'            => $attr['xPositionOverlayType'],
				'yOverlayPosition'                => $attr[ 'yPositionOverlay' . $device_type ],
				'yOverlayPositionType'            => $attr['yPositionOverlayType'],
				'blendMode'                       => $attr['overlayBlendMode'],
				'backgroundVideoFallbackImage'    => $attr['backgroundVideoFallbackImage'],
			);

			$bg_obj_tablet = array(
				'backgroundType'                  => $attr['backgroundType'],
				'backgroundImage'                 => $attr[ $background_image_key ],
				'backgroundColor'                 => $attr['backgroundColor'],
				'gradientValue'                   => $attr['gradientValue'],
				'gradientColor1'                  => $attr['gradientColor1'],
				'gradientColor2'                  => $attr['gradientColor2'],
				'gradientType'                    => $attr['gradientType'],
				'gradientLocation1'               => isset( $attr['gradientLocationTablet1'] ) && is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj['gradientLocation1'],
				'gradientLocation2'               => isset( $attr['gradientLocationTablet2'] ) && is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj['gradientLocation2'],
				'gradientAngle'                   => isset( $attr['gradientAngleTablet'] ) && is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj['gradientAngle'],
				'selectGradient'                  => $attr['selectGradient'],
				'backgroundRepeat'                => $attr[ 'backgroundRepeat' . $device_type ],
				'backgroundPosition'              => $attr[ 'backgroundPosition' . $device_type ],
				'backgroundSize'                  => $attr[ 'backgroundSize' . $device_type ],
				'backgroundAttachment'            => $attr[ 'backgroundAttachment' . $device_type ],
				'backgroundImageColor'            => $attr['backgroundImageColor'],
				'overlayType'                     => $attr['overlayType'],
				'overlayOpacity'                  => $attr['overlayOpacity'],
				'backgroundCustomSize'            => $attr[ 'backgroundCustomSize' . $device_type ],
				'backgroundCustomSizeType'        => $attr['backgroundCustomSizeType'],
				'backgroundVideo'                 => $attr['backgroundVideo'],
				'backgroundVideoColor'            => $attr['backgroundVideoColor'],
				'customPosition'                  => $attr['customPosition'],
				'centralizedPosition'             => $attr['centralizedPosition'],
				'xPosition'                       => $attr[ 'xPosition' . $device_type ],
				'xPositionType'                   => $attr['xPositionType'],
				'yPosition'                       => $attr[ 'yPosition' . $device_type ],
				'yPositionType'                   => $attr['yPositionType'],
				'backgroundOverlayImage'          => $attr[ 'backgroundOverlayImage' . $device_type ],
				'backgroundOverlayRepeat'         => $attr[ 'backgroundRepeatOverlay' . $device_type ],
				'backgroundOverlayPosition'       => $attr[ 'backgroundPositionOverlay' . $device_type ],
				'backgroundOverlaySize'           => $attr[ 'backgroundSizeOverlay' . $device_type ],
				'backgroundOverlayAttachment'     => $attr[ 'backgroundAttachmentOverlay' . $device_type ],
				'backgroundOverlayCustomSize'     => $attr[ 'backgroundCustomSizeOverlay' . $device_type ],
				'backgroundOverlayCustomSizeType' => $attr['backgroundCustomOverlaySizeType'],
				'customOverlayPosition'           => $attr['customOverlayPosition'],
				'xOverlayPosition'                => $attr[ 'xPositionOverlay' . $device_type ],
				'xOverlayPositionType'            => $attr['xPositionOverlayType'],
				'yOverlayPosition'                => $attr[ 'yPositionOverlay' . $device_type ],
				'yOverlayPositionType'            => $attr['yPositionOverlayType'],
				'blendMode'                       => $attr['overlayBlendMode'],
				'backgroundVideoFallbackImage'    => $attr['backgroundVideoFallbackImage'],
			);
			
			$bg_obj_mobile = array(
				'backgroundType'                  => $attr['backgroundType'],
				'backgroundImage'                 => $attr[ $background_image_key ],
				'backgroundColor'                 => $attr['backgroundColor'],
				'gradientValue'                   => $attr['gradientValue'],
				'gradientColor1'                  => $attr['gradientColor1'],
				'gradientColor2'                  => $attr['gradientColor2'],
				'gradientType'                    => $attr['gradientType'],
				'gradientLocation1'               => isset( $attr['gradientLocationMobile1'] ) && is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
				'gradientLocation2'               => isset( $attr['gradientLocationMobile2'] ) && is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
				'gradientAngle'                   => isset( $attr['gradientAngleMobile'] ) && is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
				'selectGradient'                  => $attr['selectGradient'],
				'backgroundRepeat'                => $attr[ 'backgroundRepeat' . $device_type ],
				'backgroundPosition'              => $attr[ 'backgroundPosition' . $device_type ],
				'backgroundSize'                  => $attr[ 'backgroundSize' . $device_type ],
				'backgroundAttachment'            => $attr[ 'backgroundAttachment' . $device_type ],
				'backgroundImageColor'            => $attr['backgroundImageColor'],
				'overlayType'                     => $attr['overlayType'],
				'overlayOpacity'                  => $attr['overlayOpacity'],
				'backgroundCustomSize'            => $attr[ 'backgroundCustomSize' . $device_type ],
				'backgroundCustomSizeType'        => $attr['backgroundCustomSizeType'],
				'backgroundVideo'                 => $attr['backgroundVideo'],
				'backgroundVideoColor'            => $attr['backgroundVideoColor'],
				'customPosition'                  => $attr['customPosition'],
				'centralizedPosition'             => $attr['centralizedPosition'],
				'xPosition'                       => $attr[ 'xPosition' . $device_type ],
				'xPositionType'                   => $attr['xPositionType'],
				'yPosition'                       => $attr[ 'yPosition' . $device_type ],
				'yPositionType'                   => $attr['yPositionType'],
				'backgroundOverlayImage'          => $attr[ 'backgroundOverlayImage' . $device_type ],
				'backgroundOverlayRepeat'         => $attr[ 'backgroundRepeatOverlay' . $device_type ],
				'backgroundOverlayPosition'       => $attr[ 'backgroundPositionOverlay' . $device_type ],
				'backgroundOverlaySize'           => $attr[ 'backgroundSizeOverlay' . $device_type ],
				'backgroundOverlayAttachment'     => $attr[ 'backgroundAttachmentOverlay' . $device_type ],
				'backgroundOverlayCustomSize'     => $attr[ 'backgroundCustomSizeOverlay' . $device_type ],
				'backgroundOverlayCustomSizeType' => $attr['backgroundCustomOverlaySizeType'],
				'customOverlayPosition'           => $attr['customOverlayPosition'],
				'xOverlayPosition'                => $attr[ 'xPositionOverlay' . $device_type ],
				'xOverlayPositionType'            => $attr['xPositionOverlayType'],
				'yOverlayPosition'                => $attr[ 'yPositionOverlay' . $device_type ],
				'yOverlayPositionType'            => $attr['yPositionOverlayType'],
				'blendMode'                       => $attr['overlayBlendMode'],
				'backgroundVideoFallbackImage'    => $attr['backgroundVideoFallbackImage'],
			);

			switch ( $device_type ) {
				case 'Tablet':
					$container_bg_css = self::uag_get_background_obj( $bg_obj_tablet, $overlay );
					break;
				case 'Mobile':
					$container_bg_css = self::uag_get_background_obj( $bg_obj_mobile, $overlay );
					break;
				default:
					$container_bg_css = self::uag_get_background_obj( $bg_obj, $overlay );
			}

			return $container_bg_css;
		}

		/**
		 * Background Control CSS Generator Function.
		 *
		 * @param array  $bg_obj          The background object with all CSS properties.
		 * @param string $css_for_overlay The overlay option ('no' or 'yes') to determine whether to include overlay CSS. Leave empty for blocks that do not use the '::before' overlay.
		 *
		 * @return array                  The formatted CSS properties for the background.
		 */
		public static function uag_get_background_obj( $bg_obj, $css_for_overlay = '' ) {
			$gen_bg_css         = array();
			$gen_bg_overlay_css = array();

			$bg_type = isset( $bg_obj['backgroundType'] ) ? $bg_obj['backgroundType'] : '';
			
			// Background Image Extraction Logic
			// Handles multiple data formats that WordPress/Gutenberg can provide:
			// 1. Array format: { url: "image.jpg" } or { src: "image.jpg" }.
			// 2. String format: "http://example.com/image.jpg" (direct URL).
			// 3. Null/empty values (no background image set).
			$bg_img = '';
			if ( isset( $bg_obj['backgroundImage'] ) && null !== $bg_obj['backgroundImage'] ) {
				if ( is_array( $bg_obj['backgroundImage'] ) ) {
					// Handle array format - check for 'url' property first.
					if ( isset( $bg_obj['backgroundImage']['url'] ) ) {
						$bg_img = $bg_obj['backgroundImage']['url'];
					} elseif ( isset( $bg_obj['backgroundImage']['src'] ) ) {
						// Fallback to 'src' property if 'url' doesn't exist.
						$bg_img = $bg_obj['backgroundImage']['src'];
					}
					// If neither 'url' nor 'src' exist, $bg_img remains empty.
				} elseif ( is_string( $bg_obj['backgroundImage'] ) && ! empty( $bg_obj['backgroundImage'] ) ) {
					// Handle string format - direct URL assignment.
					$bg_img = $bg_obj['backgroundImage'];
				}
				// Note: Other data types (boolean, object, etc.) are ignored.
			}
			$bg_color            = isset( $bg_obj['backgroundColor'] ) ? $bg_obj['backgroundColor'] : '';
			$gradient_value      = isset( $bg_obj['gradientValue'] ) ? $bg_obj['gradientValue'] : '';
			$gradientColor1      = isset( $bg_obj['gradientColor1'] ) ? $bg_obj['gradientColor1'] : '';
			$gradientColor2      = isset( $bg_obj['gradientColor2'] ) ? $bg_obj['gradientColor2'] : '';
			$gradientType        = isset( $bg_obj['gradientType'] ) ? $bg_obj['gradientType'] : '';
			$gradientLocation1   = isset( $bg_obj['gradientLocation1'] ) ? $bg_obj['gradientLocation1'] : '';
			$gradientLocation2   = isset( $bg_obj['gradientLocation2'] ) ? $bg_obj['gradientLocation2'] : '';
			$gradientAngle       = isset( $bg_obj['gradientAngle'] ) ? $bg_obj['gradientAngle'] : '';
			$selectGradient      = isset( $bg_obj['selectGradient'] ) ? $bg_obj['selectGradient'] : '';
			$repeat              = isset( $bg_obj['backgroundRepeat'] ) ? $bg_obj['backgroundRepeat'] : '';
			$position            = isset( $bg_obj['backgroundPosition'] ) ? $bg_obj['backgroundPosition'] : '';
			$size                = isset( $bg_obj['backgroundSize'] ) ? $bg_obj['backgroundSize'] : '';
			$attachment          = isset( $bg_obj['backgroundAttachment'] ) ? $bg_obj['backgroundAttachment'] : '';
			$overlay_type        = isset( $bg_obj['overlayType'] ) ? $bg_obj['overlayType'] : '';
			$overlay_opacity     = isset( $bg_obj['overlayOpacity'] ) ? $bg_obj['overlayOpacity'] : '';
			$bg_image_color      = isset( $bg_obj['backgroundImageColor'] ) ? $bg_obj['backgroundImageColor'] : '';
			$bg_custom_size      = isset( $bg_obj['backgroundCustomSize'] ) ? $bg_obj['backgroundCustomSize'] : '';
			$bg_custom_size_type = isset( $bg_obj['backgroundCustomSizeType'] ) ? $bg_obj['backgroundCustomSizeType'] : '';
			$bg_video            = isset( $bg_obj['backgroundVideo'] ) ? $bg_obj['backgroundVideo'] : '';
			$bg_video_color      = isset( $bg_obj['backgroundVideoColor'] ) ? $bg_obj['backgroundVideoColor'] : '';

			$custom_position = isset( $bg_obj['customPosition'] ) ? $bg_obj['customPosition'] : '';
			$x_position      = isset( $bg_obj['xPosition'] ) ? $bg_obj['xPosition'] : '';
			$x_position_type = isset( $bg_obj['xPositionType'] ) ? $bg_obj['xPositionType'] : '';
			$y_position      = isset( $bg_obj['yPosition'] ) ? $bg_obj['yPosition'] : '';
			$y_position_type = isset( $bg_obj['yPositionType'] ) ? $bg_obj['yPositionType'] : '';

			$bg_overlay_img              = isset( $bg_obj['backgroundOverlayImage']['url'] ) ? $bg_obj['backgroundOverlayImage']['url'] : '';
			$overlay_repeat              = isset( $bg_obj['backgroundOverlayRepeat'] ) ? $bg_obj['backgroundOverlayRepeat'] : '';
			$overlay_position            = isset( $bg_obj['backgroundOverlayPosition'] ) ? $bg_obj['backgroundOverlayPosition'] : '';
			$overlay_size                = isset( $bg_obj['backgroundOverlaySize'] ) ? $bg_obj['backgroundOverlaySize'] : '';
			$overlay_attachment          = isset( $bg_obj['backgroundOverlayAttachment'] ) ? $bg_obj['backgroundOverlayAttachment'] : '';
			$blend_mode                  = isset( $bg_obj['blendMode'] ) ? $bg_obj['blendMode'] : '';
			$bg_overlay_custom_size      = isset( $bg_obj['backgroundOverlayCustomSize'] ) ? $bg_obj['backgroundOverlayCustomSize'] : '';
			$bg_overlay_custom_size_type = isset( $bg_obj['backgroundOverlayCustomSizeType'] ) ? $bg_obj['backgroundOverlayCustomSizeType'] : '';

			$custom_overlay__position = isset( $bg_obj['customOverlayPosition'] ) ? $bg_obj['customOverlayPosition'] : '';
			$x_overlay_position       = isset( $bg_obj['xOverlayPosition'] ) ? $bg_obj['xOverlayPosition'] : '';
			$x_overlay_position_type  = isset( $bg_obj['xOverlayPositionType'] ) ? $bg_obj['xOverlayPositionType'] : '';
			$y_overlay_position       = isset( $bg_obj['yOverlayPosition'] ) ? $bg_obj['yOverlayPosition'] : '';
			$y_overlay_position_type  = isset( $bg_obj['yOverlayPositionType'] ) ? $bg_obj['yOverlayPositionType'] : '';

			$custom_x_position = UAGB_Helper::get_css_value( $x_position, $x_position_type );
			$custom_y_position = UAGB_Helper::get_css_value( $y_position, $y_position_type );

			$gradient = '';
			if ( 'custom' === $size ) {
				$size = $bg_custom_size . $bg_custom_size_type;
			}
			if ( 'basic' === $selectGradient ) {
				$gradient = $gradient_value;
			} elseif ( 'linear' === $gradientType && 'advanced' === $selectGradient ) {
				$gradient = 'linear-gradient(' . $gradientAngle . 'deg, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
			} elseif ( 'radial' === $gradientType && 'advanced' === $selectGradient ) {
				$gradient = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
			}

			if ( '' !== $bg_type ) {
				switch ( $bg_type ) {
					case 'color':
						if ( '' !== $bg_img && '' !== $bg_color ) {
							$gen_bg_css['background-image'] = 'linear-gradient(to right, ' . $bg_color . ', ' . $bg_color . '), url(' . $bg_img . ');';
						} elseif ( '' === $bg_img ) {
							$gen_bg_css['background-color'] = $bg_color . ';';
						}
						break;

					case 'image':
						if ( isset( $repeat ) ) {
							$gen_bg_css['background-repeat'] = esc_attr( $repeat );
						}
						if ( 'custom' !== $custom_position && isset( $position ) && isset( $position['x'] ) && isset( $position['y'] ) ) {
							$position_value                    = $position['x'] * 100 . '% ' . $position['y'] * 100 . '%';
							$gen_bg_css['background-position'] = $position_value;
						} elseif ( 'custom' === $custom_position && isset( $x_position ) && isset( $y_position ) && isset( $x_position_type ) && isset( $y_position_type ) ) {
							$position_value                    = false === $bg_obj['centralizedPosition'] ? $custom_x_position . ' ' . $custom_y_position : 'calc(50% +  ' . $custom_x_position . ') calc(50% + ' . $custom_y_position . ')';
							$gen_bg_css['background-position'] = $position_value;
						}

						if ( isset( $size ) ) {
							$gen_bg_css['background-size'] = esc_attr( $size );
						}

						if ( isset( $attachment ) ) {
							$gen_bg_css['background-attachment'] = esc_attr( $attachment );
						}

						// Handle overlays.
						if ( 'gradient' === $overlay_type && '' !== $gradient ) {
							if ( 'yes' === $css_for_overlay ) {
								if ( '' !== $bg_img ) {
									$gen_bg_css['background-image'] = 'url(' . $bg_img . ')';
								}
								$gen_bg_overlay_css['background-image'] = $gradient;
								$gen_bg_overlay_css['opacity']          = $overlay_opacity;
							} else {
								$gen_bg_css['background-image'] = '' !== $bg_img ? $gradient . ', url(' . $bg_img . ')' : $gradient;
							}
						} elseif ( 'color' === $overlay_type && '' !== $bg_image_color ) {
							if ( 'yes' === $css_for_overlay ) {
								if ( '' !== $bg_img ) {
									$gen_bg_css['background-image'] = 'url(' . $bg_img . ')';
								}
								$gen_bg_overlay_css['background'] = $bg_image_color;
								$gen_bg_overlay_css['opacity']    = $overlay_opacity;
							} else {
								if ( '' !== $bg_img ) {
									$gen_bg_css['background-image'] = 'linear-gradient(to right, ' . $bg_image_color . ', ' . $bg_image_color . '), url(' . $bg_img . ')';
								} else {
									$gen_bg_css['background'] = $bg_image_color;
								}
							}
						} elseif ( '' !== $bg_img ) {
							$gen_bg_css['background-image'] = 'url(' . $bg_img . ')';
						}
						
						$gen_bg_css['background-clip'] = 'padding-box';
						break;

					case 'gradient':
						if ( isset( $gradient ) ) {
							$gen_bg_css['background']      = $gradient . ';';
							$gen_bg_css['background-clip'] = 'padding-box';
						}
						break;
					case 'video':
						if ( 'color' === $overlay_type && '' !== $bg_video && '' !== $bg_video_color ) {
							$gen_bg_css['background'] = $bg_video_color . ';';
						}
						if ( 'gradient' === $overlay_type && '' !== $bg_video && '' !== $gradient ) {
							$gen_bg_css['background-image'] = $gradient . ';';
						}
						break;

					default:
						break;
				}
			} elseif ( '' !== $bg_color ) {
				$gen_bg_css['background-color'] = $bg_color . ';';
			}
			
			// image overlay.
			if ( 'image' === $overlay_type ) {
				if ( 'custom' === $overlay_size ) {
					$overlay_size = $bg_overlay_custom_size . $bg_overlay_custom_size_type;
				}

				if ( $overlay_repeat ) {
					$gen_bg_overlay_css['background-repeat'] = esc_attr( $overlay_repeat );
				}
				if ( 'custom' !== $custom_overlay__position && $overlay_position && isset( $overlay_position['x'] ) && isset( $overlay_position['y'] ) ) {
					$position_overlay_value                    = $overlay_position['x'] * 100 . '% ' . $overlay_position['y'] * 100 . '%';
					$gen_bg_overlay_css['background-position'] = $position_overlay_value;
				} elseif ( 'custom' === $custom_overlay__position && $x_overlay_position && $y_overlay_position && $x_overlay_position_type && $y_overlay_position_type ) {
					$position_overlay_value                    = $x_overlay_position . $x_overlay_position_type . ' ' . $y_overlay_position . $y_overlay_position_type;
					$gen_bg_overlay_css['background-position'] = $position_overlay_value;
				}

				if ( $overlay_size ) {
					$gen_bg_overlay_css['background-size'] = esc_attr( $overlay_size );
				}

				if ( $overlay_attachment ) {
					$gen_bg_overlay_css['background-attachment'] = esc_attr( $overlay_attachment );
				}
				if ( $blend_mode ) {
					$gen_bg_overlay_css['mix-blend-mode'] = esc_attr( $blend_mode );
				}
				if ( '' !== $bg_overlay_img ) {
					$gen_bg_overlay_css['background-image'] = 'url(' . $bg_overlay_img . ');';
				}
				$gen_bg_overlay_css['background-clip'] = 'padding-box';
				$gen_bg_overlay_css['opacity']         = $overlay_opacity;
			}
			
			return 'yes' === $css_for_overlay ? $gen_bg_overlay_css : $gen_bg_css;
		}


		/**
		 * Border attribute generation Function.
		 *
		 * @since 2.0.0
		 * @param  array $prefix   Attribute Prefix.
		 * @param array $default_args  default attributes args.
		 * @return array
		 */
		public static function uag_generate_php_border_attribute( $prefix, $default_args = array() ) {

			$border_attr = array();

			$device = array( '', 'Tablet', 'Mobile' );

			foreach ( $device as $slug => $data ) {

				$border_attr[ "{$prefix}BorderTopWidth{$data}" ]          = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderLeftWidth{$data}" ]         = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderRightWidth{$data}" ]        = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderBottomWidth{$data}" ]       = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderTopLeftRadius{$data}" ]     = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderTopRightRadius{$data}" ]    = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderBottomLeftRadius{$data}" ]  = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderBottomRightRadius{$data}" ] = array(
					'type' => 'number',
				);
				$border_attr[ "{$prefix}BorderRadiusUnit{$data}" ]        = array(
					'type' => 'number',
				);
			}

			$border_attr[ "{$prefix}BorderStyle" ]      = array(
				'type' => 'string',
			);
			$border_attr[ "{$prefix}BorderColor" ]      = array(
				'type' => 'string',
			);
			$border_attr[ "{$prefix}BorderHColor" ]     = array(
				'type' => 'string',
			);
			$border_attr[ "{$prefix}BorderLink" ]       = array(
				'type'    => 'boolean',
				'default' => true,
			);
			$border_attr[ "{$prefix}BorderRadiusLink" ] = array(
				'type'    => 'boolean',
				'default' => true,
			);

			return $border_attr;
		}

		/**
		 * Border attribute generation Function.
		 *
		 * @since 2.0.0
		 * @param  string $prefix   Attribute Prefix.
		 * @return array
		 */
		public static function uag_generate_border_attribute( $prefix ) {
			$defaults = array(
				// Width.
				'borderTopWidth'                => '',
				'borderRightWidth'              => '',
				'borderBottomWidth'             => '',
				'borderLeftWidth'               => '',
				'borderTopWidthTablet'          => '',
				'borderRightWidthTablet'        => '',
				'borderBottomWidthTablet'       => '',
				'borderLeftWidthTablet'         => '',
				'borderTopWidthMobile'          => '',
				'borderRightWidthMobile'        => '',
				'borderBottomWidthMobile'       => '',
				'borderLeftWidthMobile'         => '',
				// Radius.
				'borderTopLeftRadius'           => '',
				'borderTopRightRadius'          => '',
				'borderBottomRightRadius'       => '',
				'borderBottomLeftRadius'        => '',
				'borderTopLeftRadiusTablet'     => '',
				'borderTopRightRadiusTablet'    => '',
				'borderBottomRightRadiusTablet' => '',
				'borderBottomLeftRadiusTablet'  => '',
				'borderTopLeftRadiusMobile'     => '',
				'borderTopRightRadiusMobile'    => '',
				'borderBottomRightRadiusMobile' => '',
				'borderBottomLeftRadiusMobile'  => '',
				// unit.
				'borderRadiusUnit'              => 'px',
				'borderRadiusUnitTablet'        => 'px',
				'borderRadiusUnitMobile'        => 'px',
				// common.
				'borderStyle'                   => '',
				'borderColor'                   => '',
				'borderHColor'                  => '',

			);

			$border_attr = array();

			$device = array( '', 'Tablet', 'Mobile' );

			foreach ( $device as $slug => $data ) {

				$border_attr[ "{$prefix}BorderTopWidth{$data}" ]          = '';
				$border_attr[ "{$prefix}BorderLeftWidth{$data}" ]         = '';
				$border_attr[ "{$prefix}BorderRightWidth{$data}" ]        = '';
				$border_attr[ "{$prefix}BorderBottomWidth{$data}" ]       = '';
				$border_attr[ "{$prefix}BorderTopLeftRadius{$data}" ]     = '';
				$border_attr[ "{$prefix}BorderTopRightRadius{$data}" ]    = '';
				$border_attr[ "{$prefix}BorderBottomLeftRadius{$data}" ]  = '';
				$border_attr[ "{$prefix}BorderBottomRightRadius{$data}" ] = '';
				$border_attr[ "{$prefix}BorderRadiusUnit{$data}" ]        = 'px';
			}

			$border_attr[ "{$prefix}BorderStyle" ]  = '';
			$border_attr[ "{$prefix}BorderColor" ]  = '';
			$border_attr[ "{$prefix}BorderHColor" ] = '';
			return $border_attr;
		}

		/**
		 * Border CSS generation Function.
		 *
		 * @since 2.0.0
		 * @param  array  $attr   Attribute List.
		 * @param  string $prefix Attribuate prefix .
		 * @param  string $device Responsive.
		 * @return array         border css array.
		 */
		public static function uag_generate_border_css( $attr, $prefix, $device = 'desktop' ) {
			$gen_border_css = array();
			// ucfirst function is used to tranform text into first letter capital.
			$device = 'desktop' === $device ? '' : ucfirst( $device );
			if ( 'none' !== $attr[ $prefix . 'BorderStyle' ] && ! empty( $attr[ $prefix . 'BorderStyle' ] ) ) {
				$gen_border_css['border-top-width']    = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderTopWidth' . $device ], 'px' );
				$gen_border_css['border-left-width']   = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderLeftWidth' . $device ], 'px' );
				$gen_border_css['border-right-width']  = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderRightWidth' . $device ], 'px' );
				$gen_border_css['border-bottom-width'] = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderBottomWidth' . $device ], 'px' );
			}
			$gen_border_unit                                  = isset( $attr[ $prefix . 'BorderRadiusUnit' . $device ] ) ? $attr[ $prefix . 'BorderRadiusUnit' . $device ] : 'px';
				$gen_border_css['border-top-left-radius']     = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderTopLeftRadius' . $device ], $gen_border_unit );
				$gen_border_css['border-top-right-radius']    = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderTopRightRadius' . $device ], $gen_border_unit );
				$gen_border_css['border-bottom-left-radius']  = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderBottomLeftRadius' . $device ], $gen_border_unit );
				$gen_border_css['border-bottom-right-radius'] = UAGB_Helper::get_css_value( $attr[ $prefix . 'BorderBottomRightRadius' . $device ], $gen_border_unit );

			$gen_border_css['border-style'] = $attr[ $prefix . 'BorderStyle' ];
			$gen_border_css['border-color'] = $attr[ $prefix . 'BorderColor' ];

			if ( 'default' === $attr[ $prefix . 'BorderStyle' ] ) {
				return array();
			}

			return $gen_border_css;
		}

		/**
		 * Deprecated Border CSS generation Function.
		 *
		 * @since 2.0.0
		 * @param  array  $current_css   Current style list.
		 * @param  string $border_width   Border Width.
		 * @param  string $border_radius Border Radius.
		 * @param  string $border_color Border Color.
		 * @param string $border_style Border Style.
		 */
		public static function uag_generate_deprecated_border_css( $current_css, $border_width, $border_radius, $border_color = '', $border_style = '' ) {

			$gen_border_css = array();

			if ( ! empty( $current_css ) && isset( $current_css['border-style'] ) && 'default' !== $current_css['border-style'] ) {

				$border_width  = is_numeric( $border_width ) ? $border_width : '';
				$border_radius = is_numeric( $border_radius ) ? $border_radius : '';

				// These would either be in the format of '1px', '0', or '-1px'.
				$gen_border_css['border-top-width']    = ( isset( $current_css['border-top-width'] ) && ( ! empty( $current_css['border-top-width'] ) || 0 === $current_css['border-top-width'] ) ) ? $current_css['border-top-width'] : UAGB_Helper::get_css_value( $border_width, 'px' );
				$gen_border_css['border-left-width']   = ( isset( $current_css['border-left-width'] ) && ( ! empty( $current_css['border-left-width'] ) || 0 === $current_css['border-left-width'] ) ) ? $current_css['border-left-width'] : UAGB_Helper::get_css_value( $border_width, 'px' );
				$gen_border_css['border-right-width']  = ( isset( $current_css['border-right-width'] ) && ( ! empty( $current_css['border-right-width'] ) || 0 === $current_css['border-right-width'] ) ) ? $current_css['border-right-width'] : UAGB_Helper::get_css_value( $border_width, 'px' );
				$gen_border_css['border-bottom-width'] = ( isset( $current_css['border-bottom-width'] ) && ( ! empty( $current_css['border-bottom-width'] ) || 0 === $current_css['border-bottom-width'] ) ) ? $current_css['border-bottom-width'] : UAGB_Helper::get_css_value( $border_width, 'px' );

				$gen_border_css['border-top-left-radius']     = ( isset( $current_css['border-top-left-radius'] ) && ( ! empty( $current_css['border-top-left-radius'] ) || 0 === $current_css['border-top-left-radius'] ) ) ? $current_css['border-top-left-radius'] : UAGB_Helper::get_css_value( $border_radius, 'px' );
				$gen_border_css['border-top-right-radius']    = ( isset( $current_css['border-top-right-radius'] ) && ( ! empty( $current_css['border-top-right-radius'] ) || 0 === $current_css['border-top-right-radius'] ) ) ? $current_css['border-top-right-radius'] : UAGB_Helper::get_css_value( $border_radius, 'px' );
				$gen_border_css['border-bottom-left-radius']  = ( isset( $current_css['border-bottom-left-radius'] ) && ( ! empty( $current_css['border-bottom-left-radius'] ) || 0 === $current_css['border-bottom-left-radius'] ) ) ? $current_css['border-bottom-left-radius'] : UAGB_Helper::get_css_value( $border_radius, 'px' );
				$gen_border_css['border-bottom-right-radius'] = ( isset( $current_css['border-bottom-right-radius'] ) && ( ! empty( $current_css['border-bottom-right-radius'] ) || 0 === $current_css['border-bottom-right-radius'] ) ) ? $current_css['border-bottom-right-radius'] : UAGB_Helper::get_css_value( $border_radius, 'px' );

				$gen_border_css['border-color'] = ( isset( $current_css['border-color'] ) && ! empty( $current_css['border-color'] ) ) ? $current_css['border-color'] : $border_color;

				$gen_border_css['border-style'] = ( isset( $current_css['border-style'] ) && ! empty( $current_css['border-style'] ) ) ? $current_css['border-style'] : $border_style;
			}
			return $gen_border_css;
		}

		/**
		 * For flex-direction: row-reverse, justify-content work opposite.
		 *
		 * @since 2.0.0
		 * @param string $text_align Alignment value from text-align property.
		 */
		public static function flex_alignment_when_direction_is_row_reverse( $text_align ) {

			switch ( $text_align ) {

				case 'flex-end':
					return 'flex-start';
				case 'center':
					return 'center';
				case 'space-between':
					return 'space-between';
				default:
					return 'flex-end';
			}

		}

		/**
		 * Get a Block's Default Attributes.
		 *
		 * @param string $block_name  Name of the block to retrieve defaults.
		 * @return array              All default attributes for the specified block.
		 */
		private static function get_block_default_attributes( $block_name ) {
			$assets_file = realpath( UAGB_DIR . 'includes/blocks/' . basename( $block_name ) . '/attributes.php' );
			return ( is_string( $assets_file ) && file_exists( $assets_file ) ) ? require $assets_file : array();
		}

		/**
		 * Return the Current Attribute or the Default Attribute.
		 *
		 * @param array  $current_value  The current variable / attribute that is altered by settings.
		 * @param string $key           The key of the default attribute for that setting.
		 * @param string $block_name     The name of the block.
		 */
		public static function get_attribute_fallback( $current_value, $key, $block_name ) {
			$default = self::get_block_default_attributes( $block_name );
			return isset( $current_value ) ? $current_value : $default[ $key ];
		}

		/**
		 * Return the Current Attribute or the Default Attribute for Numeric Data.
		 *
		 * @param array  $current_value  The current variable / attribute that is altered by settings.
		 * @param string $key           The key of the default attribute for that setting.
		 * @param string $block_name     The name of the block.
		 */
		public static function get_fallback_number( $current_value, $key, $block_name ) {
			$default = self::get_block_default_attributes( $block_name );
			return is_numeric( $current_value ) ? $current_value : $default[ $key ];
		}
		/**
		 * Get Matrix Alignment Value
		 *
		 * Syntax:
		 *
		 *  get_matrix_alignment( VALUE, POSITION, FORMAT );
		 *
		 * E.g.
		 *
		 *  get_matrix_alignment( VALUE, 2, 'flex' );
		 *
		 * @param string $value  Alignment Matrix value.
		 * @param int    $pos    Human readable position.
		 * @param string $format Response format.
		 * @return string        The formatted Matrix Alignment.
		 *
		 * @since 2.1.0
		 */
		public static function get_matrix_alignment( $value, $pos, $format = '' ) {

			// Return early if remote styles is not a string, or is empty, of if the position is not an integer.
			if ( ! is_string( $value ) || empty( $value ) || ! is_int( $pos ) ) {
				return '';
			}

			$alignment_array = explode( ' ', esc_attr( $value ) );

			// Return early if alignment propery at the given position is not a string, or is empty.
			if ( ! is_string( $alignment_array[ $pos - 1 ] ) || empty( $alignment_array[ $pos - 1 ] ) ) {
				return '';
			}

			$alignment_property = $alignment_array[ $pos - 1 ];

			switch ( $format ) {
				case 'flex':
					switch ( $alignment_property ) {
						case 'top':
						case 'left':
							$alignment_property = 'flex-start';
							break;
						case 'bottom':
						case 'right':
							$alignment_property = 'flex-end';
							break;
					}
					break;
			}
			return $alignment_property;
		}

		/**
		 * Generate Border Radius
		 *
		 * Syntax:
		 *
		 *  generate_border_radius( UNIT, TOP_LEFT, TOP_RIGHT, BOTTOM_RIGHT, BOTTOM_LEFT );
		 *
		 * E.g.
		 *
		 *  generate_border_radius( 'em', 9, 7, 5, 3 );
		 *
		 * @param string $unit  Alignment Matrix value.
		 * @param int    $topLeft  Top Left Value.
		 * @param int    $topRight  Top Right Value.
		 * @param int    $bottomRight  Bottom Right Value.
		 * @param int    $bottomLeft  Bottom Left Value.
		 * @since 2.1.0
		 */
		public static function generate_border_radius( $unit, $topLeft, $topRight = null, $bottomRight = null, $bottomLeft = null ) {
			$borderRadius = ! is_null( $topRight )
				? (
					! is_null( $bottomRight )
					? (
						! is_null( $bottomLeft )
						? UAGB_Helper::get_css_value( $topLeft, $unit ) . ' ' . UAGB_Helper::get_css_value( $topRight, $unit ) . ' ' . UAGB_Helper::get_css_value( $bottomRight, $unit ) . ' ' . UAGB_Helper::get_css_value( $bottomLeft, $unit )
						: UAGB_Helper::get_css_value( $topLeft, $unit ) . ' ' . UAGB_Helper::get_css_value( $topRight, $unit ) . ' ' . UAGB_Helper::get_css_value( $bottomRight, $unit )
					)
					: UAGB_Helper::get_css_value( $topLeft, $unit ) . ' ' . UAGB_Helper::get_css_value( $topRight, $unit )
				)
				: UAGB_Helper::get_css_value( $topLeft, $unit );
			return $borderRadius;
		}

		/**
		 * Generate Spacing
		 *
		 * Syntax:
		 *
		 *  generate_spacing( UNIT, TOP, RIGHT, BOTTOM, LEFT );
		 *
		 * E.g.
		 *
		 *  generate_spacing( 'em', 9, 7, 5, 3 );
		 *
		 * @param string $unit   Alignment Matrix value.
		 * @param int    $top    Top Value.
		 * @param int    $right  Right Value.
		 * @param int    $bottom Bottom Value.
		 * @param int    $left   Left Value.
		 * @since 2.1.0
		 */
		public static function generate_spacing( $unit, $top, $right = null, $bottom = null, $left = null ) {
			$spacing = ! is_null( $right )
				? (
					! is_null( $bottom )
					? (
						! is_null( $left )
						? UAGB_Helper::get_css_value( $top, $unit ) . ' ' . UAGB_Helper::get_css_value( $right, $unit ) . ' ' . UAGB_Helper::get_css_value( $bottom, $unit ) . ' ' . UAGB_Helper::get_css_value( $left, $unit )
						: UAGB_Helper::get_css_value( $top, $unit ) . ' ' . UAGB_Helper::get_css_value( $right, $unit ) . ' ' . UAGB_Helper::get_css_value( $bottom, $unit )
					)
					: UAGB_Helper::get_css_value( $top, $unit ) . ' ' . UAGB_Helper::get_css_value( $right, $unit )
				)
				: UAGB_Helper::get_css_value( $top, $unit );
			return $spacing;
		}

		/**
		 * Get the Precise 2-Floating Point Percentage, Rounded to Floor for Precision.
		 *
		 * Syntax:
		 *
		 *  get_precise_percentage( DIVISIONS );
		 *
		 * E.g.
		 *
		 *  get_precise_percentage( 7 );
		 *
		 * @param int $divisions The number of divisions.
		 * @since 2.0.0
		 */
		public static function get_precise_percentage( $divisions ) {
			$matches = array();
			preg_match( '/^-?\d+(?:\.\d{0,2})?/', strval( 100 / $divisions ), $matches );
			return floatval( $matches[0] ) . '%';
		}

		/**
		 * Generate the Box Shadow or Text Shadow CSS.
		 *
		 * For Text Shadow CSS:
		 * ( 'spread', 'position' ) should not be sent as params during the function call.
		 * ( 'spread_unit' ) will have no effect.
		 *
		 * For Box/Text Shadow Hover CSS:
		 * ( 'alt_color' ) should be set as the attribute used for ( 'color' ) in Box/Text Shadow Normal CSS.
		 *
		 * @param array $shadow_properties  Array containing the necessary shadow properties.
		 * @return string                   The generated border CSS or an empty string on early return.
		 *
		 * @since 2.5.0
		 */
		public static function generate_shadow_css( $shadow_properties ) {
			// Get the Object Properties.
			$horizontal      = isset( $shadow_properties['horizontal'] ) ? $shadow_properties['horizontal'] : '';
			$vertical        = isset( $shadow_properties['vertical'] ) ? $shadow_properties['vertical'] : '';
			$blur            = isset( $shadow_properties['blur'] ) ? $shadow_properties['blur'] : '';
			$spread          = isset( $shadow_properties['spread'] ) ? $shadow_properties['spread'] : '';
			$horizontal_unit = isset( $shadow_properties['horizontal_unit'] ) ? $shadow_properties['horizontal_unit'] : 'px';
			$vertical_unit   = isset( $shadow_properties['vertical_unit'] ) ? $shadow_properties['vertical_unit'] : 'px';
			$blur_unit       = isset( $shadow_properties['blur_unit'] ) ? $shadow_properties['blur_unit'] : 'px';
			$spread_unit     = isset( $shadow_properties['spread_unit'] ) ? $shadow_properties['spread_unit'] : 'px';
			$color           = isset( $shadow_properties['color'] ) ? $shadow_properties['color'] : '';
			$position        = isset( $shadow_properties['position'] ) ? $shadow_properties['position'] : 'outset';
			$alt_color       = isset( $shadow_properties['alt_color'] ) ? $shadow_properties['alt_color'] : '';

			// Although optional, color is required for Sarafi on PC. Return early if color isn't set.
			if ( ! $color && ! $alt_color ) {
				return '';
			}

			// Get the CSS units for the number properties.

			$horizontal = UAGB_Helper::get_css_value( $horizontal, $horizontal_unit );
			if ( '' === $horizontal ) {
				$horizontal = 0;
			}

			$vertical = UAGB_Helper::get_css_value( $vertical, $vertical_unit );
			if ( '' === $vertical ) {
				$vertical = 0;
			}

			$blur = UAGB_Helper::get_css_value( $blur, $blur_unit );
			if ( '' === $blur ) {
				$blur = 0;
			}

			$spread = UAGB_Helper::get_css_value( $spread, $spread_unit );
			if ( '' === $spread ) {
				$spread = 0;
			}

			// If all numeric unit values are exactly 0, don't render the CSS.
			if ( ( 0 === $horizontal && 0 === $vertical ) && ( 0 === $blur && 0 === $spread ) ) {
				return '';
			}

			// Return the CSS with horizontal, vertical, blur, and color - and conditionally render spread and position.
			return (
				$horizontal . ' ' . $vertical . ' ' . $blur . ( $spread ? " {$spread}" : '' ) . ' ' . ( $color ? $color : $alt_color ) . ( 'outset' === $position ? '' : " {$position}" )
			);
		}

		/**
		 * Generate the Grid CSS.
		 *
		 * @param array $grid_object  Array containing the necessary grid properties.
		 * @return string  The generated grid CSS or an empty string on early return.
		 *
		 * @since 2.13.0
		 */
		public static function grid_css_creator( $grid_object ) {
			$grid_css = '';
			foreach ( $grid_object as $grid ) {
				if ( $grid_css ) {
					$grid_css = $grid_css . ' ';
				}
				$create_css = '';
				if ( 'custom' === $grid['default'] && ( $grid['custom']['value'] || 0 === $grid['custom']['value'] ) ) {
					$create_css = 'minmax( 1px, ' . $grid['custom']['value'] . $grid['custom']['unit'] . ')';
				} elseif ( 'minmax' === $grid['default'] ) {
					$create_css = 'minmax(' . $grid['min']['value'] . $grid['min']['unit'] . ', ' . $grid['max']['value'] . $grid['max']['unit'] . ')';
				} elseif ( 'auto' === $grid['default'] ) {
					$create_css = 'auto';
				}

				$grid_css .= $create_css . ' ';
			}
			return $grid_css;
		}

		/**
		 * Generate the Grid CSS object according to the device type.
		 *
		 * @param array  $attr Array containing the necessary grid properties.
		 * @param string $device_type Device type ex : Desktop, Tablet, Mobile.
		 * @return array Array of the css object ex : array( 'grid-template-columns' => '1fr 1fr 1fr', 'grid-template-rows' => '1fr 1fr 1fr' )
		 * 
		 * @since 2.13.0
		 */
		public static function grid_css_object( $attr, $device_type = 'Desktop' ) {
			$grid_css = array();
			
			// Check attribute is not empty and should be array.
			if ( ! empty( $attr[ 'gridColumn' . $device_type ] ) && is_array( $attr[ 'gridColumn' . $device_type ] ) ) {
				$grid_css['grid-template-columns'] = self::grid_css_creator( $attr[ 'gridColumn' . $device_type ] );
			}
		
			if ( ! empty( $attr[ 'gridRow' . $device_type ] ) && is_array( $attr[ 'gridRow' . $device_type ] ) ) {
				$grid_css['grid-template-rows'] = self::grid_css_creator( $attr[ 'gridRow' . $device_type ] );
			}
		
			if ( ! empty( $attr[ 'gridAlignItems' . $device_type ] ) ) {
				$grid_css['align-items'] = $attr[ 'gridAlignItems' . $device_type ];
			}
		
			if ( ! empty( $attr[ 'gridJustifyItems' . $device_type ] ) ) {
				$grid_css['justify-items'] = $attr[ 'gridJustifyItems' . $device_type ];
			}
		
			if ( ! empty( $attr[ 'gridAlignContent' . $device_type ] ) ) {
				$grid_css['align-content'] = $attr[ 'gridAlignContent' . $device_type ];
			}
		
			if ( ! empty( $attr[ 'gridJustifyContent' . $device_type ] ) ) {
				$grid_css['justify-content'] = $attr[ 'gridJustifyContent' . $device_type ];
			}
			
			return $grid_css;
		}
	}
}
PK��][M�CBjj?ultimate-addons-for-gutenberg/classes/class-uagb-filesystem.phpnu�[���<?php
/**
 * UAGB Filesystem
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Filesystem.
 */
class UAGB_Filesystem {

	/**
	 * Member Variable
	 *
	 * @var instance
	 */
	private static $instance;

	/**
	 *  Initiator
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Get an instance of WP_Filesystem.
	 *
	 * @since 1.23.0
	 */
	public function get_filesystem() {

		global $wp_filesystem;

		if ( ! $wp_filesystem || 'direct' !== $wp_filesystem->method ) {
			require_once ABSPATH . '/wp-admin/includes/file.php';

			/**
			 * Context for filesystem, default false.
			 *
			 * @see request_filesystem_credentials_context
			 */
			$context = apply_filters( 'request_filesystem_credentials_context', false );

			add_filter( 'filesystem_method', array( $this, 'filesystem_method' ) );
			add_filter( 'request_filesystem_credentials', array( $this, 'request_filesystem_credentials' ) );

			$creds = request_filesystem_credentials( site_url(), '', true, $context, null );

			WP_Filesystem( $creds, $context );

			remove_filter( 'filesystem_method', array( $this, 'filesystem_method' ) );
			remove_filter( 'request_filesystem_credentials', array( $this, 'request_filesystem_credentials' ) );
		}

		// Set the permission constants if not already set.
		if ( ! defined( 'FS_CHMOD_DIR' ) ) {
			define( 'FS_CHMOD_DIR', 0755 );
		}
		if ( ! defined( 'FS_CHMOD_FILE' ) ) {
			define( 'FS_CHMOD_FILE', 0644 );
		}

		return $wp_filesystem;
	}

	/**
	 * Method to direct.
	 *
	 * @since 1.23.0
	 */
	public function filesystem_method() {
		return 'direct';
	}

	/**
	 * Sets credentials to true.
	 *
	 * @since 1.23.0
	 */
	public function request_filesystem_credentials() {
		return true;
	}
}

/**
 *  Prepare if class 'UAGB_Filesystem' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Filesystem::get_instance();

/**
 * Filesystem class
 *
 * @since 1.23.0
 */
function uagb_filesystem() {
	return UAGB_Filesystem::get_instance()->get_filesystem();
}

PK��][3�l�wwLultimate-addons-for-gutenberg/classes/class-spectra-block-prioritization.phpnu�[���<?php
/**
 * Spectra Block Prioritization.
 *
 * @package UAGB
 * @since 2.1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class Spectra_Block_Prioritization.
 */
class Spectra_Block_Prioritization {

	/**
	 * Array of all blocks in order.
	 * This array should be in the same order as: /src/blocks.js.
	 *
	 * @var array
	 */
	private static $blocks = array(
		// Core Spectra Blocks.
		'container',
		'advanced-heading',
		'image',
		'icon',
		'buttons',
		'info-box',
		'call-to-action',
		'countdown',
		// Alphabetically Ordered Blocks.
		'blockquote',
		'content-timeline',
		'counter',
		'faq',
		'forms',
		'google-map',
		'how-to',
		'icon-list',
		'image-gallery',
		'inline-notice',
		'instagram-feed',
		'login',
		'loop-builder',
		'lottie',
		'marketing-button',
		'modal',
		'post-carousel',
		'post-grid',
		'post-timeline',
		'price-list',
		'register',
		'review',
		'separator',
		'slider',
		'social-share',
		'star-rating',
		'table-of-contents',
		'tabs',
		'taxonomy-list',
		'team',
		'testimonial',
		// Legacy Blocks.
		'columns',
		'section',
		'cf7-styler',
		'gf-styler',
		'post-masonry',
		'wp-search',
		// Extensions.
		'popup-builder',
	);

	/**
	 * Member Variable.
	 *
	 * @var instance
	 */
	private static $instance;

	/**
	 *  Initiator.
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Get the Block Priority of a Specific Block.
	 *
	 * @since 2.1.0
	 * @param string $block_name The slug of the required block.
	 */
	public static function get_block_priority( $block_name ) {
		return ( array_search( $block_name, self::$blocks, true ) + 1 );
	}
}

/**
 *  Prepare if class 'Spectra_Block_Prioritization' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
Spectra_Block_Prioritization::get_instance();
PK��][�?���Sultimate-addons-for-gutenberg/classes/class-uagb-twenty-seventeen-compatibility.phpnu�[���<?php
/**
 * UAGB Twenty Seventeen Compatibility.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Twenty_Seventeen_Compatibility' ) ) {

	/**
	 * Class UAGB_Twenty_Seventeen_Compatibility.
	 */
	final class UAGB_Twenty_Seventeen_Compatibility {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_action( 'wp', array( $this, 'generate_stylesheet' ), 101 );
		}
		/**
		 * Generates stylesheet and appends in head tag.
		 *
		 * @since 1.18.1
		 */
		public function generate_stylesheet() {

			if ( is_home() ) {
				$post_id             = get_the_ID();
				$current_post_assets = new UAGB_Post_Assets( intval( $post_id ) );
				
				if ( is_object( $current_post_assets ) ) {
					$current_post_assets->enqueue_scripts();
				}
			}

			if ( ! function_exists( 'twentyseventeen_panel_count' ) ) {
				return;
			}
			$panel_count     = twentyseventeen_panel_count();
			$post_assets_obj = uagb_get_front_post_assets();
			$all_posts       = array();

			for ( $i = 1; $i <= $panel_count; $i++ ) {
				$mod_key = 'panel_' . $i;
				$post_id = get_theme_mod( $mod_key );
				$post    = get_post( $post_id );
				array_push( $all_posts, $post );
			}

			if ( ! is_object( $post_assets_obj ) ) {
				return;
			}

			foreach ( $all_posts as $post ) {
				$post_assets_obj->prepare_assets( $post );
			}
		}
	}
}
UAGB_Twenty_Seventeen_Compatibility::get_instance();
PK��][��Y��?ultimate-addons-for-gutenberg/classes/class-uagb-nps-notice.phpnu�[���<?php
/**
 * UAGB NPS Notice.
 *
 * @since 2.18.0
 *
 * @package ultimate-addons-for-gutenberg
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_NPS_Notice' ) ) :

	/**
	 * Class UAGB_NPS_Notice
	 */
	class UAGB_NPS_Notice {
		/**
		 * Instance
		 *
		 * @since 2.18.0
		 * @var (Object) UAGB_NPS_Notice
		 */
		private static $instance = null;

		/**
		 * Get Instance
		 *
		 * @since 2.18.0
		 *
		 * @return object Class object.
		 */
		public static function get_instance() {
			if ( null === self::$instance ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor.
		 *
		 * @since 2.18.0
		 */
		private function __construct() {
			add_action( 'admin_footer', array( $this, 'show_nps_notice' ), 999 );
		}

		/**
		 * Render NPS Survey
		 *
		 * @since 2.18.0
		 * @return void
		 */
		public function show_nps_notice() {
			// Ensure the Nps_Survey class exists before proceeding.
			if ( ! class_exists( 'Nps_Survey' ) ) {
				return;
			}

			/* 
				Check if the constant WEEK_IN_SECONDS is already defined.
				This ensures that the constant is not redefined if it's already set by WordPress or other parts of the code.
			*/
			if ( ! defined( 'WEEK_IN_SECONDS' ) ) {
				// Define the WEEK_IN_SECONDS constant with the value of 604800 seconds (equivalent to 7 days).
				define( 'WEEK_IN_SECONDS', 604800 );
			}

			$allowed_screens = array( 'toplevel_page_spectra', 'edit-spectra-popup' );

			$allowed_screens = array( 'toplevel_page_spectra', 'edit-spectra-popup' );

			// Display the NPS survey.
			Nps_Survey::show_nps_notice(
				'nps-survey-ultimate-addons-for-gutenberg',
				array(

					'show_if'          => true,
					'dismiss_timespan' => 2 * WEEK_IN_SECONDS,
					'display_after'    => 2 * WEEK_IN_SECONDS,
					'plugin_slug'      => 'spectra',
					'show_on_screens'  => $allowed_screens,
					'message'          => array(

						'logo'                        => esc_url( plugin_dir_url( __DIR__ ) . 'assets/images/logos/spectra.svg' ),
						'plugin_name'                 => __( 'Spectra', 'ultimate-addons-for-gutenberg' ),
						'nps_rating_message'          => __( 'How likely are you to recommend Spectra to your friends or colleagues?', 'ultimate-addons-for-gutenberg' ),
						'feedback_title'              => __( 'Thanks a lot for your feedback! 😍', 'ultimate-addons-for-gutenberg' ),
						'feedback_content'            => __( 'Could you please do us a favor and give us a 5-star rating on WordPress? It would help others choose Spectra with confidence. Thank you!', 'ultimate-addons-for-gutenberg' ),
						'plugin_rating_link'          => esc_url( 'https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg/reviews/#new-post' ),
						'plugin_rating_title'         => __( 'Thank you for your feedback', 'ultimate-addons-for-gutenberg' ),
						'plugin_rating_content'       => __( 'We value your input. How can we improve your experience?', 'ultimate-addons-for-gutenberg' ),
						'plugin_rating_button_string' => __( 'Rate Spectra', 'ultimate-addons-for-gutenberg' ),

					),

				)
			);
		}
	}

	/**
	 * Initialize the class.
	 */
	UAGB_NPS_Notice::get_instance();

endif;
PK��][a�h{�
�
=ultimate-addons-for-gutenberg/classes/class-uagb-rollback.phpnu�[���<?php
/**
 * UAGB Rollback.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * UAG Rollback.
 *
 * UAG Rollback. handler class is responsible for rolling back UAG to
 * previous version.
 *
 * @since 1.23.0
 */
class UAGB_Rollback {

	/**
	 * Package URL.
	 *
	 * Holds the package URL.
	 *
	 * @since 1.23.0
	 * @access protected
	 *
	 * @var string Package URL.
	 */
	protected $package_url;

	/**
	 * Version.
	 *
	 * Holds the version.
	 *
	 * @since 1.23.0
	 * @access protected
	 *
	 * @var string Package URL.
	 */
	protected $version;

	/**
	 * Plugin name.
	 *
	 * Holds the plugin name.
	 *
	 * @since 1.23.0
	 * @access protected
	 *
	 * @var string Plugin name.
	 */
	protected $plugin_name;

	/**
	 * Plugin slug.
	 *
	 * Holds the plugin slug.
	 *
	 * @since 1.23.0
	 * @access protected
	 *
	 * @var string Plugin slug.
	 */
	protected $plugin_slug;

	/**
	 * UAG Rollback constructor.
	 *
	 * Initializing UAG Rollback.
	 *
	 * @since 1.23.0
	 * @access public
	 *
	 * @param array $args Optional. UAGB Rollback arguments. Default is an empty array.
	 */
	public function __construct( $args = array() ) {
		foreach ( $args as $key => $value ) {
			$this->{$key} = $value;
		}
	}

	/**
	 * Print inline style.
	 *
	 * Add an inline CSS to the UAG Rollback page.
	 *
	 * @since 1.23.0
	 * @access private
	 */
	private function print_inline_style() {
		?>
		<style>
			.wrap {
				overflow: hidden;
				max-width: 850px;
				margin: auto;
				font-family: Courier, monospace;
			}

			h1 {
				background: rgb(74, 0, 224);
				text-align: center;
				color: #fff !important;
				padding: 70px !important;
				text-transform: uppercase;
				letter-spacing: 1px;
			}

			h1 img {
				max-width: 300px;
				display: block;
				margin: auto auto 50px;
			}
		</style>
		<?php
	}

	/**
	 * Apply package.
	 *
	 * Change the plugin data when WordPress checks for updates. This method
	 * modifies package data to update the plugin from a specific URL containing
	 * the version package.
	 *
	 * @since 1.23.0
	 * @access protected
	 */
	protected function apply_package() {
		$update_plugins = get_site_transient( 'update_plugins' );
		if ( ! is_object( $update_plugins ) ) {
			$update_plugins = new \stdClass();
		}

		$plugin_info              = new \stdClass();
		$plugin_info->new_version = $this->version;
		$plugin_info->slug        = $this->plugin_slug;
		$plugin_info->package     = $this->package_url;
		$plugin_info->url         = 'https://wpspectra.com/';

		$update_plugins->response[ $this->plugin_name ] = $plugin_info;

		set_site_transient( 'update_plugins', $update_plugins );
	}

	/**
	 * Upgrade.
	 *
	 * Run WordPress upgrade to UAGB Rollback to previous version.
	 *
	 * @since 1.23.0
	 * @access protected
	 */
	protected function upgrade() {

		require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';

		$upgrader_args = array(
			'url'    => 'update.php?action=upgrade-plugin&plugin=' . rawurlencode( $this->plugin_name ),
			'plugin' => $this->plugin_name,
			'nonce'  => 'upgrade-plugin_' . $this->plugin_name,
			'title'  => __( 'Spectra <p>Rollback to Previous Version</p>', 'ultimate-addons-for-gutenberg' ),
		);

		$this->print_inline_style();

		$upgrader = new \Plugin_Upgrader( new \Plugin_Upgrader_Skin( $upgrader_args ) );
		$upgrader->upgrade( $this->plugin_name );
	}

	/**
	 * Run.
	 *
	 * Rollback UAG to previous versions.
	 *
	 * @since 1.23.0
	 * @access public
	 */
	public function run() {
		$this->apply_package();
		$this->upgrade();
	}
}
PK��][�#P�0 0 Aultimate-addons-for-gutenberg/classes/class-uagb-block-module.phpnu�[���<?php
/**
 * UAGB Block Module.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Block_Module' ) ) {

	/**
	 * Class doc
	 */
	class UAGB_Block_Module {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 * Block Attributes
		 *
		 * @var block_attributes
		 */
		public static $block_attributes = null;

		/**
		 * Block Assets
		 *
		 * @var array<mixed> block_assets
		 */
		public static $block_assets = null;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			add_filter( 'uag_register_block_static_dependencies', array( __CLASS__, 'uag_register_block_static_dependencies' ) );
		}

		/**
		 * Add Blocks Static Assets.
		 *
		 * @since 2.0.0
		 *
		 * @param array $block_assets Block Assets.
		 * @return array
		 */
		public static function uag_register_block_static_dependencies( $block_assets ) {

			$blocks = self::get_blocks_info();

			foreach ( $blocks as $block ) {
				if ( ! isset( $block['static_dependencies'] ) ) {
					continue;
				}

				foreach ( $block['static_dependencies'] as $key => $static_dependencies ) {
					if ( ! isset( $static_dependencies['src'] ) ) {
						continue;
					}
					$block_assets[ $key ] = $static_dependencies;
				}
			}

			return $block_assets;
		}
		
		/**
		 * Get frontend CSS.
		 *
		 * @since 2.0.0
		 *
		 * @param string $slug Block slug.
		 * @param array  $attr Block attributes.
		 * @param string $id   Block id.
		 * @param bool   $is_gbs Is Global Block Style.
		 * @return array
		 */
		public static function get_frontend_css( $slug, $attr, $id, $is_gbs = false ) {
			return self::get_frontend_assets( $slug, $attr, esc_attr( $id ), 'css', $is_gbs );
		}

		/**
		 * Get frontend JS.
		 *
		 * @since 2.0.0
		 *
		 * @param string $slug Block slug.
		 * @param array  $attr Block attributes.
		 * @param string $id   Block id.
		 * @return array
		 */
		public static function get_frontend_js( $slug, $attr, $id ) {
			return self::get_frontend_assets( $slug, $attr, esc_attr( $id ), 'js' );
		}

		/**
		 * Filter GBS Placeholder Attributes.
		 *
		 * @param array $attributes Block attributes.
		 * @since 2.9.0
		 * @return array $attributes Block attributes by removing 0.001020304.
		 */
		public static function gbs_filter_placeholder_attributes( $attributes ) {
			if ( ! empty( $attributes ) && is_array( $attributes ) ) {
				foreach ( $attributes as $key => $attribute ) {
					// Replace 0.001020304 with empty string.
					if ( 0.001020304 === $attribute ) {
						$attributes[ $key ] = '';
					}
				}
				return $attributes;
			}
			return array();
		}
		
		/**
		 * Get frontend Assets.
		 *
		 * @since 2.0.0
		 *
		 * @param string $slug Block slug.
		 * @param array  $attr Block attributes.
		 * @param string $id   Block id.
		 * @param string $type Asset Type.
		 * @param bool   $is_gbs Is Global Block Style.
		 * @return array
		 */
		public static function get_frontend_assets( $slug, $attr, $id, $type = 'css', $is_gbs = false ) {

			$attr = self::gbs_filter_placeholder_attributes( $attr ); // Filter out GBS Placeholders if any added.

			$assets = array();

			if ( 'js' === $type ) {
				$assets = '';
			}

			$blocks_info = self::get_blocks_info();

			if ( ! isset( $blocks_info[ 'uagb/' . $slug ] ) || ! isset( $blocks_info[ 'uagb/' . $slug ]['dynamic_assets'] ) ) {
				return $assets;
			}

			$blocks = array(
				$slug => $blocks_info[ 'uagb/' . $slug ]['dynamic_assets'],
			);

			if ( isset( $blocks[ $slug ] ) ) {

				$main_dir = UAGB_DIR;

				if ( isset( $blocks[ $slug ]['plugin-dir'] ) ) {
					$main_dir = $blocks[ $slug ]['plugin-dir'];
				}

				$block_dir = $main_dir . 'includes/blocks/' . $blocks[ $slug ]['dir'];

				$assets_file = realpath( $block_dir . '/frontend.' . $type . '.php' );

				if ( is_string( $assets_file ) && file_exists( $assets_file ) ) {

					
					// Set default attributes.
					$attr_file = realpath( $block_dir . '/attributes.php' );
					
					if ( is_string( $attr_file ) && file_exists( $attr_file ) ) {
						
						$default_attr = include $attr_file;
						
						$attr = self::get_fallback_values( $default_attr, $attr );
						
						if ( ! empty( $attr['globalBlockStyleId'] ) && $is_gbs ) {
							$gbs_class = UAGB_Helper::get_gbs_selector( $attr['globalBlockStyleId'] );
						}
					}

					// Get Assets.
					$assets = include $assets_file;
				}
			}

			return $assets;

		}

		/**
		 * Get Widget List.
		 *
		 * @since 2.0.0
		 *
		 * @return array The Widget List.
		 */
		public static function get_blocks_info() {

			return uagb_block()->get_blocks();
		}

		/**
		 * Get Block Assets.
		 *
		 * @since 1.13.4
		 *
		 * @return array The Asset List.
		 */
		public static function get_block_dependencies() {

			$blocks = UAGB_Admin_Helper::get_block_options();

			if ( null === self::$block_assets && defined( 'UAGB_URL' ) ) {
				self::$block_assets = array(
					// Lib.
					'uagb-imagesloaded'          => array(
						'src'  => UAGB_URL . 'assets/js/imagesloaded.min.js',
						'dep'  => array( 'jquery' ),
						'type' => 'js',
					),
					'uagb-slick-js'              => array(
						'src'  => UAGB_URL . 'assets/js/slick.min.js',
						'dep'  => array( 'jquery' ),
						'type' => 'js',
					),
					'uagb-slick-css'             => array(
						'src'  => UAGB_URL . 'assets/css/slick.min.css',
						'dep'  => array(),
						'type' => 'css',
					),
					'uagb-masonry'               => array(
						'src'  => UAGB_URL . 'assets/js/isotope.min.js',
						'dep'  => array( 'jquery' ),
						'type' => 'js',
					),
					'uagb-cookie-lib'            => array(
						'src'        => UAGB_URL . 'assets/js/js_cookie.min.js',
						'dep'        => array( 'jquery' ),
						'skipEditor' => true,
						'type'       => 'js',
					),
					'uagb-bodymovin-js'          => array(
						'src'        => UAGB_URL . 'assets/js/uagb-bodymovin.min.js',
						'dep'        => array(),
						'skipEditor' => true,
						'type'       => 'js',
					),
					'uagb-countUp-js'            => array(
						'src'  => UAGB_URL . 'assets/js/countUp.min.js',
						'dep'  => array(),
						'type' => 'js',
					),
					'uagb-swiper-js'             => array(
						'src'        => UAGB_URL . 'assets/js/swiper-bundle.min.js',
						'dep'        => array(),
						'skipEditor' => true,
						'type'       => 'js',
					),
					'uagb-swiper-css'            => array(
						'src'  => UAGB_URL . 'assets/css/swiper-bundle.min.css',
						'dep'  => array(),
						'type' => 'css',
					),
					'uagb-aos-js'                => array(
						'src'  => UAGB_URL . 'assets/js/aos.min.js',
						'dep'  => array(),
						'type' => 'js',
					),
					'uagb-aos-css'               => array(
						'src'  => UAGB_URL . 'assets/css/aos.min.css',
						'dep'  => array(),
						'type' => 'css',
					),
					'uagb-block-positioning-js'  => array(
						'src'  => UAGB_URL . 'assets/js/spectra-block-positioning.min.js',
						'dep'  => array(),
						'type' => 'js',
					),
					'uagb-block-positioning-css' => array(
						'src'  => UAGB_URL . 'assets/css/spectra-block-positioning.min.css',
						'dep'  => array(),
						'type' => 'css',
					),
				);
			}

			return apply_filters( 'uag_register_block_static_dependencies', self::$block_assets );
		}

		/**
		 * Returns attributes array with default value wherever required.
		 *
		 * @param array $default_attr default attribute value array from attributes.php.
		 * @param array $attr saved attributes data from database.
		 * @return array
		 * @since 2.3.2
		 */
		public static function get_fallback_values( $default_attr, $attr ) {
			foreach ( $default_attr as $key => $value ) {
				// sets default value if key is not available in database.
				if ( ! isset( $attr[ $key ] ) ) {
					$attr[ $key ] = $value;
				}
			}

			return $attr;
		}
	}
}

/**
 *  Prepare if class 'UAGB_Block_Module' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Block_Module::get_instance();
PK��][���:��;ultimate-addons-for-gutenberg/classes/class-uagb-helper.phpnu�[���<?php
/**
 * UAGB Helper.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Helper' ) ) {

	/**
	 * Class UAGB_Helper.
	 */
	final class UAGB_Helper {


		/**
		 * Member Variable
		 *
		 * @since 0.0.1
		 * @var instance
		 */
		private static $instance;

		/**
		 * Member Variable
		 *
		 * @since 0.0.1
		 * @var instance
		 */
		public static $block_list;

		/**
		 * UAG File Generation Flag
		 *
		 * @since 1.14.0
		 * @var string
		 */
		public static $file_generation = 'disabled';

		/**
		 * Store Json variable
		 *
		 * @since 1.8.1
		 * @var array
		 */
		public static $icon_json;

		/**
		 * Google fonts to enqueue
		 *
		 * @var array
		 */
		public static $gfonts = array();

		/**
		 * Current Block List
		 *
		 * @since 1.13.4
		 * @var current_block_list
		 * @deprecated 1.23.0
		 */
		public static $current_block_list = array();

		/**
		 * UAG Block Flag
		 *
		 * @since 1.13.4
		 * @var uag_flag
		 * @deprecated 1.23.0
		 */
		public static $uag_flag = false;

		/**
		 * Page Blocks Variable
		 *
		 * @since 1.6.0
		 * @var page_blocks
		 * @deprecated 1.23.0
		 */
		public static $page_blocks;

		/**
		 * Stylesheet
		 *
		 * @since 1.13.4
		 * @var stylesheet
		 * @deprecated 1.23.0
		 */
		public static $stylesheet = '';

		/**
		 * Script
		 *
		 * @since 1.13.4
		 * @var script
		 * @deprecated 1.23.0
		 */
		public static $script = '';

		/**
		 * UAG FAQ Layout Flag
		 *
		 * @since 1.18.1
		 * @deprecated 1.23.0
		 * @var uag_faq_layout
		 */
		public static $uag_faq_layout = false;

		/**
		 * UAG TOC Flag
		 *
		 * @since 1.18.1
		 * @deprecated 1.23.0
		 * @var table_of_contents_flag
		 */
		public static $table_of_contents_flag = false;

		/**
		 * As our svg icon is too long array so we will divide that into number of icon chunks.
		 *
		 * @var int
		 * @since 2.7.0
		 */
		public static $number_of_icon_chunks = 4;

		/**
		 * We have icon list in chunks in this variable we will merge all insides array into one single array.
		 *
		 * @var array
		 * @since 2.7.0
		 */
		public static $icon_array_merged = array();

		/**
		 *  Initiator
		 *
		 * @since 0.0.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}

			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			require UAGB_DIR . 'classes/class-uagb-block-helper.php';
			require UAGB_DIR . 'classes/class-uagb-block-js.php';

			/**
			 * Add action hook to initialize block list during WordPress initialization.
			 * This hook is needed to ensure that the block list is populated before any other actions are taken.
			 * The block list is used to generate the CSS and JS files for the blocks, and is also used to generate the block categories.
			 */
			add_action( 'init', array( $this, 'initialize_block_list' ) );
			self::$file_generation = self::allow_file_generation();
			// Condition is only needed when we are using block based theme and Reading setting is updated.
			$this->reading_page();
		}

		/**
		 * Updates the asset version when the reading settings are updated in a block theme.
		 *
		 * This is needed because the reading settings affect the block layout and the asset version is used to cache the block CSS and JS assets.
		 *
		 * @since 2.19.5
		 * @return void
		 */
		public function reading_page() {
			// Check if it's a block theme and the appropriate POST data exists.
			$is_block_theme         = function_exists( 'wp_is_block_theme' ) && wp_is_block_theme();
			$is_reading_page_update = isset( $_POST['option_page'], $_POST['action'] ) && 'reading' === $_POST['option_page'] && 'update' === $_POST['action']; // phpcs:ignore WordPress.Security.NonceVerification.Missing -- Nonce verification is not needed here.

			// Return early if the conditions are not met.
			if ( ! $is_block_theme || ! $is_reading_page_update ) {
				return;
			}

			// Update the asset version when the reading settings are updated.
			UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );

		}

		/**
		 * Initialize block list.
		 *
		 * @since 2.17.0
		 * @return void
		 */
		public function initialize_block_list() {
			self::$block_list = UAGB_Block_Module::get_blocks_info();
		}

		/**
		 * Parse CSS into correct CSS syntax.
		 *
		 * @param array  $selectors The block selectors.
		 * @param string $id The selector ID.
		 * @since 0.0.1
		 */
		public static function generate_css( $selectors, $id ) {
			$styling_css = '';

			if ( empty( $selectors ) ) {
				return '';
			}

			foreach ( $selectors as $key => $value ) {

				$css = '';

				foreach ( $value as $j => $val ) {

					if ( 'font-family' === $j && 'Default' === $val ) {
						continue;
					}

					if ( ! empty( $val ) || ( empty( $val ) && 'content' === $j ) || 0 === $val ) {
						if ( 'font-family' === $j ) {
							$css .= $j . ': "' . $val . '";';
						} else {
							if ( is_array( $val ) ) {
								// Convert $val array property to string.
								foreach ( $val as $index => $property ) {
									$properties = is_string( $property ) ? $property : (string) $property;
									$css       .= $j . ': ' . $properties . ';';
								}
							} else {
								$css .= $j . ': ' . $val . ';';
							}
						}
					}
				}

				if ( ! empty( $css ) ) {
					$styling_css     .= $id;
					$styling_css     .= $key . '{';
						$styling_css .= $css . '}';
				}
			}

			return $styling_css;
		}

		/**
		 * Get CSS value
		 *
		 * Syntax:
		 *
		 *  get_css_value( VALUE, UNIT );
		 *
		 * E.g.
		 *
		 *  get_css_value( VALUE, 'em' );
		 *
		 * @param mixed  $value  CSS value.
		 * @param string $unit  CSS unit.
		 * @since 1.13.4
		 */
		public static function get_css_value( $value = '', $unit = '' ) {
			if ( ! is_numeric( $value ) ) {
				return '';
			}

			$unit = sanitize_text_field( $unit );

			if ( empty( $unit ) ) {
				return $value;
			}

			return esc_attr( $value . $unit );
		}


		/**
		 * Adds Google fonts all blocks.
		 *
		 * @param bool       $load_google_font the blocks attr.
		 * @param array      $font_family the blocks attr.
		 * @param int|string $font_weight the blocks attr.
		 */
		public static function blocks_google_font( $load_google_font, $font_family, $font_weight ) {

			if ( true === $load_google_font ) {
				if ( ! array_key_exists( $font_family, self::$gfonts ) ) {
					$add_font                     = array(
						'fontfamily'   => $font_family,
						'fontvariants' => ( isset( $font_weight ) && ! empty( $font_weight ) ? array( $font_weight ) : array() ),
					);
					self::$gfonts[ $font_family ] = $add_font;
				} else {
					if ( isset( $font_weight ) && ! empty( $font_weight ) && ! in_array( $font_weight, self::$gfonts[ $font_family ]['fontvariants'], true ) ) {
						array_push( self::$gfonts[ $font_family ]['fontvariants'], $font_weight );
					}
				}
			}
		}

		/**
		 * Get Json Data.
		 * Customize and add icons via 'uagb_icons_chunks' filter.
		 *
		 * @since 1.8.1
		 * @return array
		 */
		public static function backend_load_font_awesome_icons() {

			if ( null !== self::$icon_json ) {
				return self::$icon_json;
			}

			$icons_chunks = array();
			for ( $i = 0; $i < self::$number_of_icon_chunks; $i++ ) {
				$json_file = UAGB_DIR . "blocks-config/uagb-controls/spectra-icons-v6-{$i}.php";
				if ( file_exists( $json_file ) ) {
					$icons_chunks[] = include $json_file;
				}
			}

			$icons_chunks = apply_filters( 'uagb_icons_chunks', $icons_chunks );

			if ( ! is_array( $icons_chunks ) || empty( $icons_chunks ) ) {
				$icons_chunks = array();
			}

			self::$icon_json = $icons_chunks;
			return self::$icon_json;
		}

		/**
		 * Generate SVG.
		 *
		 * @since 1.8.1
		 * @param  string $icon Decoded fontawesome json file data.
		 */
		public static function render_svg_html( $icon ) {
			$icon = sanitize_text_field( esc_attr( $icon ) );

			$json = self::backend_load_font_awesome_icons();

			if ( ! empty( $json ) ) {
				if ( empty( $icon_array_merged ) ) {
					foreach ( $json as $value ) {
						self::$icon_array_merged = array_merge( self::$icon_array_merged, $value );
					}
				}
				$json = self::$icon_array_merged;
			}

			// Load Polyfiller Array if needed.
			$load_font_awesome_5 = UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_font_awesome_5' );

			if ( 'disabled' !== $load_font_awesome_5 ) {
				// If Icon doesn't need Polyfilling, use the Original.
				$font_awesome_5_polyfiller = get_spectra_font_awesome_polyfiller();
				$icon                      = ! empty( $font_awesome_5_polyfiller[ $icon ] ) ? $font_awesome_5_polyfiller[ $icon ] : $icon;
			}

			$icon_brand_or_solid = isset( $json[ $icon ]['svg']['brands'] ) ? $json[ $icon ]['svg']['brands'] : ( isset( $json[ $icon ]['svg']['solid'] ) ? $json[ $icon ]['svg']['solid'] : array() );
			$path                = isset( $icon_brand_or_solid['path'] ) ? $icon_brand_or_solid['path'] : '';
			$view                = isset( $icon_brand_or_solid['width'] ) && isset( $icon_brand_or_solid['height'] ) ? '0 0 ' . $icon_brand_or_solid['width'] . ' ' . $icon_brand_or_solid['height'] : null;

			if ( $path && $view ) {
				?>
				<svg xmlns="https://www.w3.org/2000/svg" viewBox= "<?php echo esc_attr( $view ); ?>"><path d="<?php echo esc_attr( $path ); ?>"></path></svg>
				<?php
			}
		}

		/**
		 *  Check MIME Type
		 *
		 *  @since 1.20.0
		 */
		public static function get_mime_type() {

			$allowed_types = get_allowed_mime_types();

			return ( array_key_exists( 'json', $allowed_types ) ) ? true : false;

		}

		/**
		 * Returns Query.
		 *
		 * @param array  $attributes The block attributes.
		 * @param string $block_type The Block Type.
		 * @since 1.8.2
		 */
		public static function get_query( $attributes, $block_type ) {
			$fallback_for_posts_to_show = UAGB_Block_Helper::get_fallback_number( $attributes['postsToShow'], 'postsToShow', $attributes['blockName'] );
			$fallback_for_offset        = UAGB_Block_Helper::get_fallback_number( $attributes['postsOffset'], 'postsOffset', $attributes['blockName'] );
			// Block type is grid/masonry/carousel/timeline.
			$query_args = array(
				'posts_per_page'      => $fallback_for_posts_to_show,
				'post_status'         => 'publish',
				'post_type'           => ( isset( $attributes['postType'] ) ) ? $attributes['postType'] : 'post',
				'order'               => ( isset( $attributes['order'] ) ) ? $attributes['order'] : 'desc',
				'orderby'             => ( isset( $attributes['orderBy'] ) ) ? $attributes['orderBy'] : 'date',
				'ignore_sticky_posts' => 1,
				'paged'               => 1,
			);

			if ( isset( $attributes['enableOffset'] ) && false !== $attributes['enableOffset'] && 0 !== $attributes['postsOffset'] ) {
				$query_args['offset'] = $fallback_for_offset;
			}

			if ( $attributes['excludeCurrentPost'] ) {
				$query_args['post__not_in'] = array( get_the_ID() );
			}

			if ( isset( $attributes['categories'] ) && '' !== $attributes['categories'] ) {
				$query_args['tax_query'][] = array(
					'taxonomy' => ( isset( $attributes['taxonomyType'] ) ) ? $attributes['taxonomyType'] : 'category',
					'field'    => 'id',
					'terms'    => $attributes['categories'],
					'operator' => 'IN',
				);
			}

			if ( 'grid' === $block_type && isset( $attributes['postPagination'] ) && true === $attributes['postPagination'] ) {

				if ( get_query_var( 'paged' ) ) {

					$paged = get_query_var( 'paged' );

				} elseif ( get_query_var( 'page' ) ) {

					$paged = get_query_var( 'page' );

				} else {

					$paged = isset( $attributes['paged'] ) ? $attributes['paged'] : 1;

				}
				$query_args['posts_per_page'] = $attributes['postsToShow'];
				$query_args['paged']          = $paged;

			}

			if ( 'masonry' === $block_type && isset( $attributes['paginationType'] ) && 'none' !== $attributes['paginationType'] && isset( $attributes['paged'] ) ) {

				$query_args['paged'] = $attributes['paged'];

			}

			$query_args = apply_filters( "uagb_post_query_args_{$block_type}", $query_args, $attributes );

			return new WP_Query( $query_args );
		}

		/**
		 * Get size information for all currently-registered image sizes.
		 *
		 * @global $_wp_additional_image_sizes
		 * @uses   get_intermediate_image_sizes()
		 * @link   https://codex.wordpress.org/Function_Reference/get_intermediate_image_sizes
		 * @since  1.9.0
		 * @return array $sizes Data for all currently-registered image sizes.
		 */
		public static function get_image_sizes() {

			global $_wp_additional_image_sizes;

			$sizes       = get_intermediate_image_sizes();
			$image_sizes = array();

			$image_sizes[] = array(
				'value' => 'full',
				'label' => esc_html__( 'Full', 'ultimate-addons-for-gutenberg' ),
			);

			foreach ( $sizes as $size ) {
				if ( in_array( $size, array( 'thumbnail', 'medium', 'medium_large', 'large' ), true ) ) {
					$image_sizes[] = array(
						'value' => $size,
						'label' => ucwords( trim( str_replace( array( '-', '_' ), array( ' ', ' ' ), $size ) ) ),
					);
				} else {
					$image_sizes[] = array(
						'value' => $size,
						'label' => sprintf(
							'%1$s (%2$sx%3$s)',
							ucwords( trim( str_replace( array( '-', '_' ), array( ' ', ' ' ), $size ) ) ),
							$_wp_additional_image_sizes[ $size ]['width'],
							$_wp_additional_image_sizes[ $size ]['height']
						),
					);
				}
			}

			$image_sizes = apply_filters( 'uagb_post_featured_image_sizes', $image_sizes );

			return $image_sizes;
		}

		/**
		 * Get Post Types.
		 *
		 * @since 1.11.0
		 * @access public
		 */
		public static function get_post_types() {

			$post_types = get_post_types(
				array(
					'public'       => true,
					'show_in_rest' => true,
				),
				'objects'
			);

			$options = array();

			foreach ( $post_types as $post_type ) {

				if ( 'attachment' === $post_type->name ) {
					continue;
				}

				$options[] = array(
					'value' => $post_type->name,
					'label' => $post_type->label,
				);
			}

			return apply_filters( 'uagb_loop_post_types', $options );
		}

		/**
		 *  Get - RGBA Color
		 *
		 *  Get HEX color and return RGBA. Default return RGB color.
		 *
		 * @param  var   $color      Gets the color value.
		 * @param  var   $opacity    Gets the opacity value.
		 * @param  array $is_array Gets an array of the value.
		 * @since   1.11.0
		 */
		public static function hex2rgba( $color, $opacity = false, $is_array = false ) {

			$default = $color;

			// Return default if no color provided.
			if ( empty( $color ) ) {
				return $default;
			}

			// Sanitize $color if "#" is provided.
			if ( '#' === $color[0] ) {
				$color = substr( $color, 1 );
			}

			// Check if color has 6 or 3 characters and get values.
			if ( strlen( $color ) === 6 ) {
					$hex = array( $color[0] . $color[1], $color[2] . $color[3], $color[4] . $color[5] );
			} elseif ( strlen( $color ) === 3 ) {
					$hex = array( $color[0] . $color[0], $color[1] . $color[1], $color[2] . $color[2] );
			} else {
					return $default;
			}

			// Convert hexadec to rgb.
			$rgb = array_map( 'hexdec', $hex );

			// Check if opacity is set(rgba or rgb).
			if ( false !== $opacity && '' !== $opacity ) {
				if ( abs( $opacity ) >= 1 ) {
					$opacity = $opacity / 100;
				}
				$output = 'rgba(' . implode( ',', $rgb ) . ',' . $opacity . ')';
			} else {
				$output = 'rgb(' . implode( ',', $rgb ) . ')';
			}

			if ( $is_array ) {
				return $rgb;
			} else {
				// Return rgb(a) color string.
				return $output;
			}
		}

		/**
		 * Returns an array of paths for the upload directory
		 * of the current site.
		 *
		 * @since 1.14.0
		 * @return array
		 */
		public static function get_upload_dir() {

			$wp_info = wp_upload_dir( null, false );

			// SSL workaround.
			if ( self::is_ssl() ) {
				$wp_info['baseurl'] = str_ireplace( 'http://', 'https://', $wp_info['baseurl'] );
			}

			// Build the paths.
			$dir_info = array(
				'path' => trailingslashit( trailingslashit( $wp_info['basedir'] ) . UAGB_UPLOAD_DIR_NAME ),
				'url'  => trailingslashit( trailingslashit( $wp_info['baseurl'] ) . UAGB_UPLOAD_DIR_NAME ),
			);

			// Create the upload dir if it doesn't exist.
			if ( ! file_exists( $dir_info['path'] ) ) {

				uagb_install()->create_files();
			}

			return apply_filters( 'uag_get_upload_dir', $dir_info );
		}

		/**
		 * Deletes the upload dir.
		 *
		 * @since 1.18.0
		 * @return array
		 */
		public static function delete_upload_dir() {

			$wp_info = wp_upload_dir( null, false );

			// Build the paths.
			$dir_info = array(
				'path' => trailingslashit( trailingslashit( $wp_info['basedir'] ) . UAGB_UPLOAD_DIR_NAME ),
			);

			// Check the upload dir if it doesn't exist or not.
			if ( file_exists( $dir_info['path'] ) ) {
				// Remove the directory.
				$wp_filesystem = uagb_filesystem();
				return $wp_filesystem->rmdir( $dir_info['path'], true );
			}

			return false;
		}

		/**
		 * Get UAG upload dir path.
		 *
		 * @since 1.23.0
		 * @return string
		 */
		public static function get_uag_upload_dir_path() {

			$wp_info = self::get_upload_dir();

			// Build the paths.
			return $wp_info['path'];
		}

		/**
		 * Get UAG upload url path.
		 *
		 * @since 1.23.0
		 * @return string
		 */
		public static function get_uag_upload_url_path() {

			$wp_info = self::get_upload_dir();

			// Build the paths.
			return $wp_info['url'];
		}

		/**
		 * Delete all files from UAG upload dir.
		 *
		 * @since 1.23.0
		 * @return string
		 */
		public static function delete_uag_asset_dir() {

			// Build the paths.
			$base_path = self::get_uag_upload_dir_path();

			// Get all files.
			$paths = glob( $base_path . 'assets/*' );

			foreach ( $paths as $path ) {

				// Check the dir if it exists or not.
				if ( file_exists( $path ) ) {

					$wp_filesystem = uagb_filesystem();

					// Remove the directory.
					$wp_filesystem->rmdir( $path, true );
				}
			}

			// Create empty files.
			uagb_install()->create_files();
			UAGB_Admin_Helper::create_specific_stylesheet();
			do_action( 'uagb_delete_uag_asset_dir' );
			return true;
		}

		/**
		 * Checks to see if the site has SSL enabled or not.
		 *
		 * @since 1.14.0
		 * @return bool
		 */
		public static function is_ssl() {
			if (
				is_ssl() ||
				( 0 === stripos( get_option( 'siteurl' ), 'https://' ) ) ||
				( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && 'https' === $_SERVER['HTTP_X_FORWARDED_PROTO'] )
			) {
				return true;
			}
			return false;
		}

		/**
		 * Allow File Geranation flag.
		 *
		 * @since  1.14.0
		 */
		public static function allow_file_generation() {
			return apply_filters( 'uagb_allow_file_generation', get_option( '_uagb_allow_file_generation', 'disabled' ) );
		}

		/**
		 * Check if UAG upload folder has write permissions or not.
		 *
		 * @since  1.14.9
		 * @return bool true or false.
		 */
		public static function is_uag_dir_has_write_permissions() {

			$upload_dir = self::get_upload_dir();

			return uagb_filesystem()->is_writable( $upload_dir['path'] );
		}
		/**
		 * Gives the paged Query var.
		 *
		 * @param Object $query Query.
		 * @return int $paged Paged Query var.
		 * @since 1.14.9
		 */
		public static function get_paged( $query ) {

			global $paged;

			// Check the 'paged' query var.
			$paged_qv = $query->get( 'paged' );

			if ( is_numeric( $paged_qv ) ) {
				return $paged_qv;
			}

			// Check the 'page' query var.
			$page_qv = $query->get( 'page' );

			if ( is_numeric( $page_qv ) ) {
				return $page_qv;
			}

			// Check the $paged global?
			if ( is_numeric( $paged ) ) {
				return $paged;
			}

			return 0;
		}
		/**
		 * Builds the base url.
		 *
		 * @param string $permalink_structure Premalink Structure.
		 * @param string $base Base.
		 * @since 1.14.9
		 */
		public static function build_base_url( $permalink_structure, $base ) {
			// Check to see if we are using pretty permalinks.
			if ( ! empty( $permalink_structure ) ) {

				if ( strrpos( $base, 'paged-' ) ) {
					$base = substr_replace( $base, '', strrpos( $base, 'paged-' ), strlen( $base ) );
				}

				// Remove query string from base URL since paginate_links() adds it automatically.
				// This should also fix the WPML pagination issue that was added since 1.10.2.
				if ( count( $_GET ) > 0 ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- $_GET does not provide nonce.
					$base = strtok( $base, '?' );
				}

				// Add trailing slash when necessary.
				if ( '/' === substr( $permalink_structure, -1 ) ) {
					$base = trailingslashit( $base );
				} else {
					$base = untrailingslashit( $base );
				}
			} else {
				$url_params = wp_parse_url( $base, PHP_URL_QUERY );

				if ( empty( $url_params ) ) {
					$base = trailingslashit( $base );
				}
			}

			return $base;
		}
		/**
		 * Returns the Paged Format.
		 *
		 * @param string $permalink_structure Premalink Structure.
		 * @param string $base Base.
		 * @since 1.14.9
		 */
		public static function paged_format( $permalink_structure, $base ) {

			$page_prefix = empty( $permalink_structure ) ? 'paged' : 'page';

			if ( ! empty( $permalink_structure ) ) {
				$format  = substr( $base, -1 ) !== '/' ? '/' : '';
				$format .= $page_prefix . '/';
				$format .= '%#%';
				$format .= substr( $permalink_structure, -1 ) === '/' ? '/' : '';
			} elseif ( empty( $permalink_structure ) || is_search() ) {
				$parse_url = wp_parse_url( $base, PHP_URL_QUERY );
				$format    = empty( $parse_url ) ? '?' : '&';
				$format   .= $page_prefix . '=%#%';
			}

			return $format;
		}

		/**
		 * Get Typography Dynamic CSS.
		 *
		 * @param  array  $attr The Attribute array.
		 * @param  string $slug The field slug.
		 * @param  string $selector The selector array.
		 * @param  array  $combined_selectors The combined selector array.
		 * @since  1.15.0
		 * @return array
		 */
		public static function get_typography_css( $attr, $slug, $selector, $combined_selectors ) {

			$typo_css_desktop = array();
			$typo_css_tablet  = array();
			$typo_css_mobile  = array();

			$already_selectors_desktop = ( isset( $combined_selectors['desktop'][ $selector ] ) ) ? $combined_selectors['desktop'][ $selector ] : array();
			$already_selectors_tablet  = ( isset( $combined_selectors['tablet'][ $selector ] ) ) ? $combined_selectors['tablet'][ $selector ] : array();
			$already_selectors_mobile  = ( isset( $combined_selectors['mobile'][ $selector ] ) ) ? $combined_selectors['mobile'][ $selector ] : array();

			$family_slug     = ( '' === $slug ) ? 'fontFamily' : $slug . 'FontFamily';
			$weight_slug     = ( '' === $slug ) ? 'fontWeight' : $slug . 'FontWeight';
			$transform_slug  = ( '' === $slug ) ? 'fontTransform' : $slug . 'Transform';
			$decoration_slug = ( '' === $slug ) ? 'fontDecoration' : $slug . 'Decoration';
			$style_slug      = ( '' === $slug ) ? 'fontStyle' : $slug . 'FontStyle';

			$l_ht_slug        = ( '' === $slug ) ? 'lineHeight' : $slug . 'LineHeight';
			$f_sz_slug        = ( '' === $slug ) ? 'fontSize' : $slug . 'FontSize';
			$l_ht_type_slug   = ( '' === $slug ) ? 'lineHeightType' : $slug . 'LineHeightType';
			$f_sz_type_slug   = ( '' === $slug ) ? 'fontSizeType' : $slug . 'FontSizeType';
			$f_sz_type_t_slug = ( '' === $slug ) ? 'fontSizeTypeTablet' : $slug . 'FontSizeTypeTablet';
			$f_sz_type_m_slug = ( '' === $slug ) ? 'fontSizeTypeMobile' : $slug . 'FontSizeTypeMobile';
			$l_sp_slug        = ( '' === $slug ) ? 'letterSpacing' : $slug . 'LetterSpacing';
			$l_sp_type_slug   = ( '' === $slug ) ? 'letterSpacingType' : $slug . 'LetterSpacingType';

			$text_transform  = isset( $attr[ $transform_slug ] ) ? $attr[ $transform_slug ] : 'normal';
			$text_decoration = isset( $attr[ $decoration_slug ] ) ? $attr[ $decoration_slug ] : 'none';
			$font_style      = isset( $attr[ $style_slug ] ) ? $attr[ $style_slug ] : 'normal';

			$typo_css_desktop[ $selector ] = array(
				'font-family'     => $attr[ $family_slug ],
				'text-transform'  => $text_transform,
				'text-decoration' => $text_decoration,
				'font-style'      => $font_style,
				'font-weight'     => $attr[ $weight_slug ],
				'font-size'       => ( isset( $attr[ $f_sz_slug ] ) ) ? self::get_css_value( $attr[ $f_sz_slug ], $attr[ $f_sz_type_slug ] ) : '',
				'line-height'     => ( isset( $attr[ $l_ht_slug ] ) ) ? self::get_css_value( $attr[ $l_ht_slug ], $attr[ $l_ht_type_slug ] ) : '',
				'letter-spacing'  => ( isset( $attr[ $l_sp_slug ] ) ) ? self::get_css_value( $attr[ $l_sp_slug ], $attr[ $l_sp_type_slug ] ) : '',
			);

			$typo_css_desktop[ $selector ] = array_merge(
				$typo_css_desktop[ $selector ],
				$already_selectors_desktop
			);

			$typo_css_tablet[ $selector ] = array(
				'font-size'      => ( isset( $attr[ $f_sz_slug . 'Tablet' ] ) ) ? self::get_css_value( $attr[ $f_sz_slug . 'Tablet' ], ( isset( $attr[ $f_sz_type_t_slug ] ) ) ? $attr[ $f_sz_type_t_slug ] : $attr[ $f_sz_type_slug ] ) : '',
				'line-height'    => ( isset( $attr[ $l_ht_slug . 'Tablet' ] ) ) ? self::get_css_value( $attr[ $l_ht_slug . 'Tablet' ], $attr[ $l_ht_type_slug ] ) : '',
				'letter-spacing' => ( isset( $attr[ $l_sp_slug . 'Tablet' ] ) ) ? self::get_css_value( $attr[ $l_sp_slug . 'Tablet' ], $attr[ $l_sp_type_slug ] ) : '',
			);

			$typo_css_tablet[ $selector ] = array_merge(
				$typo_css_tablet[ $selector ],
				$already_selectors_tablet
			);

			$typo_css_mobile[ $selector ] = array(
				'font-size'      => ( isset( $attr[ $f_sz_slug . 'Mobile' ] ) ) ? self::get_css_value( $attr[ $f_sz_slug . 'Mobile' ], ( isset( $attr[ $f_sz_type_m_slug ] ) ) ? $attr[ $f_sz_type_m_slug ] : $attr[ $f_sz_type_slug ] ) : '',
				'line-height'    => ( isset( $attr[ $l_ht_slug . 'Mobile' ] ) ) ? self::get_css_value( $attr[ $l_ht_slug . 'Mobile' ], $attr[ $l_ht_type_slug ] ) : '',
				'letter-spacing' => ( isset( $attr[ $l_sp_slug . 'Mobile' ] ) ) ? self::get_css_value( $attr[ $l_sp_slug . 'Mobile' ], $attr[ $l_sp_type_slug ] ) : '',
			);

			$typo_css_mobile[ $selector ] = array_merge(
				$typo_css_mobile[ $selector ],
				$already_selectors_mobile
			);

			return array(
				'desktop' => array_merge(
					$combined_selectors['desktop'],
					$typo_css_desktop
				),
				'tablet'  => array_merge(
					$combined_selectors['tablet'],
					$typo_css_tablet
				),
				'mobile'  => array_merge(
					$combined_selectors['mobile'],
					$typo_css_mobile
				),
			);
		}

		/**
		 * Sets the selector to Global Block Styles Selector if applicable.
		 *
		 * @param string $selector Selector.
		 * @param array  $gbs_attributes GBS attributes array.
		 * @since 2.9.0
		 * @return string $selector Updated selector.
		 */
		public static function add_gbs_selector_if_applicable( $selector, $gbs_attributes ) {
			if ( empty( $gbs_attributes['globalBlockStyleId'] ) ) {
				return $selector;
			}

			return self::get_gbs_selector( $gbs_attributes['globalBlockStyleId'] );
		}

		/**
		 * Get the Global block styles CSS selector.
		 *
		 * @param string $style_name Style Name.
		 *
		 * @since 2.9.0
		 * @return string $selector Styles Selector.
		 */
		public static function get_gbs_selector( $style_name ) {

			if ( $style_name ) {
				return '.spectra-gbs-' . $style_name;
			}
			return '';
		}

		/**
		 * Parse CSS into correct CSS syntax.
		 *
		 * @param array  $combined_selectors The combined selector array.
		 * @param string $id The selector ID.
		 * @param string $gbs_class The GBS class as string.
		 *
		 * @since 1.15.0
		 * @return array $css CSS.
		 */
		public static function generate_all_css( $combined_selectors, $id, $gbs_class = '' ) {

			if ( ! empty( $gbs_class ) ) {
				$id = $gbs_class;
			}

			return array(
				'desktop' => self::generate_css( $combined_selectors['desktop'], $id ),
				'tablet'  => self::generate_css( $combined_selectors['tablet'], $id ),
				'mobile'  => self::generate_css( $combined_selectors['mobile'], $id ),
			);
		}

		/**
		 * Merge and combine CSS arrays for devices.
		 *
		 * @param array $normal_css The normal CSS array with 'desktop', 'tablet', and 'mobile' keys.
		 * @param array $rtl_css    The RTL CSS array with 'desktop', 'tablet', and 'mobile' keys.
		 *
		 * @since 2.18.0
		 * @return array $merged_css The merged CSS array.
		 */
		public static function merge_css_arrays( $normal_css, $rtl_css ) {
			$merged_css = array();

			// Iterate through devices and combine the values.
			foreach ( array( 'desktop', 'tablet', 'mobile' ) as $device ) {
				$merged_css[ $device ] = ( isset( $normal_css[ $device ] ) ? $normal_css[ $device ] : '' )
					. ( isset( $rtl_css[ $device ] ) ? $rtl_css[ $device ] : '' );
			}

			return $merged_css;
		}
		
		/**
		 * Get Post Assets Instance.
		 */
		public function get_post_assets_instance() {
			return uagb_get_front_post_assets();
		}

		/** Generates stylesheet in loop.
		 *
		 * @since 1.7.0
		 * @param object $this_post Post Object.
		 * @deprecated 1.23.0
		 * @access public
		 */
		public function get_generated_stylesheet( $this_post ) {
			_deprecated_function( __METHOD__, '1.23.0' );

			if ( ! is_object( $this_post ) ) {
				return;
			}

			if ( ! isset( $this_post->ID ) ) {
				return;
			}

			if ( has_blocks( $this_post->ID ) && isset( $this_post->post_content ) ) {

				$blocks            = parse_blocks( $this_post->post_content );
				self::$page_blocks = $blocks;

				if ( ! is_array( $blocks ) || empty( $blocks ) ) {
					return;
				}

				$assets = $this->get_assets( $blocks );

				self::$stylesheet .= $assets['css'];
				self::$script     .= $assets['js'];
			}
		}

		/**
		 * Generates stylesheet for reusable blocks.
		 *
		 * @since 1.1.0
		 * @param array $blocks Blocks.
		 * @deprecated 1.23.0
		 * @access public
		 */
		public function get_assets( $blocks ) {
			_deprecated_function( __METHOD__, '1.23.0' );

			$desktop = '';
			$tablet  = '';
			$mobile  = '';

			$tab_styling_css = '';
			$mob_styling_css = '';

			$js = '';

			foreach ( $blocks as $i => $block ) {

				if ( is_array( $block ) ) {

					if ( empty( $block['blockName'] ) ) {
						continue;
					}

					if ( 'core/block' === $block['blockName'] ) {
						$id = ( isset( $block['attrs']['ref'] ) ) ? $block['attrs']['ref'] : 0;

						if ( $id ) {
							$content = get_post_field( 'post_content', $id );

							$reusable_blocks = parse_blocks( $content );

							$assets = $this->get_assets( $reusable_blocks );

							self::$stylesheet .= $assets['css'];
							self::$script     .= $assets['js'];

						}
					} else {

						$block_assets = $this->get_block_css_and_js( $block );
						// Get CSS for the Block.
						$css = $block_assets['css'];

						if ( isset( $css['desktop'] ) ) {
							$desktop .= $css['desktop'];
							$tablet  .= $css['tablet'];
							$mobile  .= $css['mobile'];
						}
						$js .= $block_assets['js'];
					}
				}
			}

			if ( ! empty( $tablet ) ) {
				$tab_styling_css .= '@media only screen and (max-width: ' . UAGB_TABLET_BREAKPOINT . 'px) {';
				$tab_styling_css .= $tablet;
				$tab_styling_css .= '}';
			}

			if ( ! empty( $mobile ) ) {
				$mob_styling_css .= '@media only screen and (max-width: ' . UAGB_MOBILE_BREAKPOINT . 'px) {';
				$mob_styling_css .= $mobile;
				$mob_styling_css .= '}';
			}

			$post_assets_instance = $this->get_post_assets_instance();
			if ( $post_assets_instance ) {

				$post_assets_instance->stylesheet .= $desktop . $tab_styling_css . $mob_styling_css;
				$post_assets_instance->script     .= $js;
			}

			return array(
				'css' => $desktop . $tab_styling_css . $mob_styling_css,
				'js'  => $js,
			);
		}

		/**
		 * Parse Guten Block.
		 *
		 * @since 1.1.0
		 * @param string $content the content string.
		 * @deprecated 1.23.0 Use `parse_blocks()` instead
		 * @access public
		 */
		public function parse( $content ) {
			_deprecated_function( __METHOD__, '1.23.0', 'parse_blocks()' );

			return parse_blocks( $content );
		}
		/**
		 * This is the action where we create dynamic asset files.
		 * CSS Path : uploads/uag-plugin/uag-style-{post_id}-{timestamp}.css
		 * JS Path : uploads/uag-plugin/uag-script-{post_id}-{timestamp}.js
		 *
		 * @since 1.15.0
		 * @deprecated 1.23.0
		 */
		public function generate_asset_files() {
			_deprecated_function( __METHOD__, '1.23.0' );

			global $content_width;
			self::$stylesheet = str_replace( '#CONTENT_WIDTH#', $content_width . 'px', self::$stylesheet );
			if ( '' !== self::$script ) {
				self::$script = 'document.addEventListener("DOMContentLoaded", function(){ ' . self::$script . ' })';
			}

			if ( 'enabled' === self::$file_generation ) {

				$post_assets_instance = $this->get_post_assets_instance();

				if ( $post_assets_instance ) {
					$post_assets_instance->stylesheet .= self::$stylesheet;
					$post_assets_instance->script     .= self::$script;
				}
			}
		}

		/**
		 * Enqueue Gutenberg block assets for both frontend + backend.
		 *
		 * @since 1.13.4
		 * @deprecated 1.23.0
		 */
		public function block_assets() {
			_deprecated_function( __METHOD__, '1.23.0' );

			$this->get_post_assets_instance()->enqueue_blocks_dependency_frontend();

		}
		/**
		 * Print the Script in footer.
		 *
		 * @since 1.15.0
		 * @deprecated 1.23.0
		 */
		public function print_script() {
			_deprecated_function( __METHOD__, '1.23.0' );

			$this->get_post_assets_instance()->print_script();

		}
		/**
		 * Print the Stylesheet in header.
		 *
		 * @since 1.15.0
		 * @deprecated 1.23.0
		 */
		public function print_stylesheet() {
			_deprecated_function( __METHOD__, '1.23.0' );

			$this->get_post_assets_instance()->print_stylesheet();

		}
		/**
		 * Load the front end Google Fonts.
		 *
		 * @since 1.15.0
		 * @deprecated 1.23.0
		 */
		public function frontend_gfonts() {
			_deprecated_function( __METHOD__, '1.23.0' );

			$this->get_post_assets_instance()->print_google_fonts();

		}
		/**
		 * Generates CSS recurrsively.
		 *
		 * @param object $block The block object.
		 * @since 0.0.1
		 * @deprecated 1.23.0
		 */
		public function get_block_css_and_js( $block ) {

			_deprecated_function( __METHOD__, '1.23.0' );

			$block = (array) $block;

			$name     = $block['blockName'];
			$css      = array();
			$js       = '';
			$block_id = '';

			if ( ! isset( $name ) ) {
				return array(
					'css' => array(),
					'js'  => '',
				);
			}

			if ( isset( $block['attrs'] ) && is_array( $block['attrs'] ) ) {
				/**
				 * Filters the block attributes for CSS and JS generation.
				 *
				 * @param array  $block_attributes The block attributes to be filtered.
				 * @param string $name             The block name.
				 */
				$blockattr = apply_filters( 'uagb_block_attributes_for_css_and_js', $block['attrs'], $name );
				if ( isset( $blockattr['block_id'] ) ) {
					$block_id = $blockattr['block_id'];
				}
			}

			self::$current_block_list[] = $name;

			if ( strpos( $name, 'uagb/' ) !== false ) {

				self::$uag_flag = true;
				$_block_slug    = str_replace( 'uagb/', '', $name );
				$_block_css     = UAGB_Block_Module::get_frontend_css( $_block_slug, $blockattr, $block_id );
				$_block_js      = UAGB_Block_Module::get_frontend_js( $_block_slug, $blockattr, $block_id );
				$css            = array_merge( $css, $_block_css );
				if ( ! empty( $_block_js ) ) {
					$js .= $_block_js;
				}

				if ( 'uagb/faq' === $name && ! isset( $blockattr['layout'] ) ) {
					$this->uag_faq_layout = true;
				}
			}

			if ( isset( $block['innerBlocks'] ) ) {
				foreach ( $block['innerBlocks'] as $j => $inner_block ) {
					if ( 'core/block' === $inner_block['blockName'] ) {
						$id = ( isset( $inner_block['attrs']['ref'] ) ) ? $inner_block['attrs']['ref'] : 0;

						if ( $id ) {
							$content = get_post_field( 'post_content', $id );

							$reusable_blocks = $this->parse( $content );

							$assets = $this->get_assets( $reusable_blocks );

							self::$stylesheet .= $assets['css'];
							self::$script     .= $assets['js'];
						}
					} else {
						// Get CSS for the Block.
						$inner_assets    = $this->get_block_css_and_js( $inner_block );
						$inner_block_css = $inner_assets['css'];

						$css_desktop = ( isset( $css['desktop'] ) ? $css['desktop'] : '' );
						$css_tablet  = ( isset( $css['tablet'] ) ? $css['tablet'] : '' );
						$css_mobile  = ( isset( $css['mobile'] ) ? $css['mobile'] : '' );

						if ( isset( $inner_block_css['desktop'] ) ) {
							$css['desktop'] = $css_desktop . $inner_block_css['desktop'];
							$css['tablet']  = $css_tablet . $inner_block_css['tablet'];
							$css['mobile']  = $css_mobile . $inner_block_css['mobile'];
						}

						$js .= $inner_assets['js'];
					}
				}
			}

			self::$current_block_list = array_unique( self::$current_block_list );

			return array(
				'css' => $css,
				'js'  => $js,
			);
		}

		/**
		 * Generates stylesheet and appends in head tag.
		 *
		 * @since 0.0.1
		 * @deprecated 1.23.0
		 */
		public function generate_assets() {
			_deprecated_function( __METHOD__, '1.23.0' );

			$this_post = array();

			if ( class_exists( 'WooCommerce' ) ) {

				if ( is_cart() ) {

					$id        = get_option( 'woocommerce_cart_page_id' );
					$this_post = get_post( $id );

				} elseif ( is_account_page() ) {

					$id        = get_option( 'woocommerce_myaccount_page_id' );
					$this_post = get_post( $id );

				} elseif ( is_checkout() ) {

					$id        = get_option( 'woocommerce_checkout_page_id' );
					$this_post = get_post( $id );

				} elseif ( is_checkout_pay_page() ) {

					$id        = get_option( 'woocommerce_pay_page_id' );
					$this_post = get_post( $id );

				} elseif ( is_shop() ) {

					$id        = get_option( 'woocommerce_shop_page_id' );
					$this_post = get_post( $id );
				}

				if ( is_object( $this_post ) ) {
					$this->get_generated_stylesheet( $this_post );
				}
			}

			if ( is_single() || is_page() || is_404() ) {

				global $post;
				$this_post = $post;

				if ( ! is_object( $this_post ) ) {
					return;
				}

				/**
				 * Filters the post to build stylesheet for.
				 *
				 * @param \WP_Post $this_post The global post.
				 */
				$this_post = apply_filters( 'uagb_post_for_stylesheet', $this_post );

				$this->get_generated_stylesheet( $this_post );

			} elseif ( is_archive() || is_home() || is_search() ) {

				global $wp_query;
				$cached_wp_query = $wp_query;

				foreach ( $cached_wp_query as $post ) { // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
					$this->get_generated_stylesheet( $post );
				}
			}
		}

		/**
		 * Get the excerpt.
		 *
		 * @param int    $post_id          for the block.
		 * @param string $content          for post content.
		 * @param int    $length_fallback  for excerpt, after fallback has been done.
		 *
		 * @since 2.0.0
		 */
		public static function uagb_get_excerpt( $post_id, $content, $length_fallback ) {

			// If there's an excerpt provided from meta, use it.
			$excerpt = get_post_field( 'post_excerpt', $post_id );

			if ( empty( $excerpt ) ) { // If no excerpt provided from meta.
				$max_excerpt = 100;
				// If the content present on post, then trim it and use that.
				if ( ! empty( $content ) ) {
					$excerpt = apply_filters( 'the_excerpt', wp_trim_words( $content, $max_excerpt ) );
				}
			}
			// Trim the excerpt.
			if ( ! empty( $excerpt ) ) {
				$excerpt = explode( ' ', $excerpt );
				if ( count( $excerpt ) > $length_fallback ) {
					$excerpt = implode( ' ', array_slice( $excerpt, 0, $length_fallback ) ) . '...';
				} else {
					$excerpt = implode( ' ', $excerpt );
				}
			}

			return empty( $excerpt ) ? '' : $excerpt;
		}

		/**
		 * Get User Browser name
		 *
		 * @param string $user_agent Browser names.
		 * @return string
		 * @since 2.0.8
		 */
		public static function get_browser_name( $user_agent ) {

			if ( strpos( $user_agent, 'Opera' ) || strpos( $user_agent, 'OPR/' ) ) {
				return 'opera';
			} elseif ( strpos( $user_agent, 'Edg' ) || strpos( $user_agent, 'Edge' ) ) {
				return 'edge';
			} elseif ( strpos( $user_agent, 'Chrome' ) ) {
				return 'chrome';
			} elseif ( strpos( $user_agent, 'Safari' ) ) {
				return 'safari';
			} elseif ( strpos( $user_agent, 'Firefox' ) ) {
				return 'firefox';
			} elseif ( strpos( $user_agent, 'MSIE' ) || strpos( $user_agent, 'Trident/7' ) ) {
				return 'ie';
			}
		}

		/**
		 * Get block dynamic CSS selector with filters applied for extending it.
		 *
		 * @param string $block_name Block name to filter.
		 * @param array  $selectors Array of selectors to filter.
		 * @param array  $attr Attributes.
		 * @return array Combined selectors array.
		 * @since 2.4.0
		 */
		public static function get_combined_selectors( $block_name, $selectors, $attr ) {
			if ( ! is_array( $selectors ) ) {
				return $selectors;
			}

			$combined_selectors = array();

			foreach ( $selectors as $key => $selector ) {
				$hook_prefix                = ( 'desktop' === $key ) ? '' : '_' . $key;
				$combined_selectors[ $key ] = apply_filters( 'spectra_' . $block_name . $hook_prefix . '_styling', $selector, $attr );
			}

			return $combined_selectors;
		}

		/**
		 * This function deletes the Page assets from the Page Meta Key.
		 *
		 * @param int $post_id Post Id.
		 *
		 * @return void
		 * @since 1.23.0
		 */
		public static function delete_page_assets( $post_id ) {
			$current_post_type = get_post_type( $post_id );
			if ( 'wp_template_part' === $current_post_type || 'wp_template' === $current_post_type ) {

				// Delete all the TOC Post Meta on update of the template.
				delete_post_meta_by_key( '_uagb_toc_options' );

				UAGB_Admin_Helper::create_specific_stylesheet();

				/* Update the asset version */
				UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );
				return;
			}

			$unique_ids = get_option( '_uagb_fse_uniqids' );
			if ( ! empty( $unique_ids ) && is_array( $unique_ids ) ) {
				foreach ( $unique_ids as $id ) {
					delete_post_meta( (int) $id, '_uag_page_assets' );
				}
			}

			delete_post_meta( $post_id, '_uag_page_assets' );
			delete_post_meta( $post_id, '_uag_css_file_name' );
			delete_post_meta( $post_id, '_uag_js_file_name' );

			/* Update the asset version */
			UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );

			do_action( 'uagb_delete_page_assets' );
		}

		/**
		 * Does Post contains reusable blocks.
		 *
		 * @param int $post_id Post ID.
		 *
		 * @since 1.23.5
		 *
		 * @return boolean Wether the Post contains any Reusable blocks or not.
		 */
		public static function does_post_contain_reusable_blocks( $post_id ) {

			$post_content = get_post_field( 'post_content', $post_id, 'raw' );
			$tag          = '<!-- wp:block';
			$flag         = strpos( $post_content, $tag );
			return ( 0 === $flag || is_numeric( $flag ) );
		}

		/**
		 * Set alignment css function.
		 *
		 * @param string $align passed.
		 * @since 2.7.7
		 * @return array
		 */
		public static function alignment_css( $align ) {
			$align_css = array();
			switch ( $align ) {
				case 'left':
					$align_css = array(
						'margin-left'  => 0,
						'margin-right' => 'auto',
					);
					break;
				case 'center':
					$align_css = array(
						'margin-left'  => 'auto',
						'margin-right' => 'auto',
					);
					break;
				case 'right':
					$align_css = array(
						'margin-right' => 0,
						'margin-left'  => 'auto',
					);
					break;
			}
			return $align_css;
		}

		/**
		 * Get allowed HTML title tag.
		 *
		 * @param string $title_Tag HTML tag of title.
		 * @param array  $allowed_array Array of allowed HTML tags.
		 * @param string $default_tag Default HTML tag.
		 * @since 2.7.10
		 * @return string $title_Tag | $default_tag.
		 */
		public static function title_tag_allowed_html( $title_Tag, $allowed_array, $default_tag ) {
			return in_array( $title_Tag, $allowed_array, true ) ? sanitize_key( $title_Tag ) : $default_tag;
		}

		/**
		 * Check if file exists and delete it.
		 *
		 * @param string $file_name File name.
		 * @since 2.9.0
		 * @return void
		 */
		public static function remove_file( $file_name ) {
			if ( file_exists( $file_name ) ) {
				wp_delete_file( $file_name );
			}
		}
	}

	/**
	 *  Prepare if class 'UAGB_Helper' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Helper::get_instance();
}
PK��][}��J>>Aultimate-addons-for-gutenberg/classes/class-uagb-front-assets.phpnu�[���<?php
/**
 * UAGB Front Assets.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Front_Assets.
 */
class UAGB_Front_Assets {

	/**
	 * Member Variable
	 *
	 * @since 0.0.1
	 * @var instance
	 */
	private static $instance;

	/**
	 * Post ID
	 *
	 * @since 1.23.0
	 * @var array
	 */
	protected $post_id;

	/**
	 * Assets Post Object
	 *
	 * @since 1.23.0
	 * @var object
	 */
	protected $post_assets;

	/**
	 *  Initiator
	 *
	 * @since 0.0.1
	 */
	public static function get_instance() {

		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();

		}
		return self::$instance;
	}

	/**
	 * Constructor
	 */
	public function __construct() {
		add_action( 'wp', array( $this, 'set_initial_variables' ), 99 );
		add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_asset_files' ) );
		add_action( 'spectra_regenerate_post_assets', array( $this, 'update_current_post_assets' ) );
		add_action( 'wp_insert_post', array( $this, 'trigger_regeneration_event' ), 10, 3 );
	}

	/**
	 * Set initial variables.
	 *
	 * @since 1.23.0
	 */
	public function set_initial_variables() {

		$this->post_id = false;

		if ( is_single() || is_page() || is_404() ) {
			$this->post_id = get_the_ID();
		}

		if ( ! $this->post_id ) {
			return;
		}

		$this->post_assets = uagb_get_post_assets( $this->post_id );

		if ( ! $this->post_assets->is_allowed_assets_generation ) {
			return;
		}

		if ( is_single() || is_page() || is_404() ) {

			$this_post = get_post( $this->post_id );

			/**
			 * Filters the post to build stylesheet for.
			 *
			 * @param \WP_Post $this_post The global post.
			 */
			$this_post = apply_filters_deprecated( 'uagb_post_for_stylesheet', array( $this_post ), '1.23.0' );

			if ( $this_post && $this->post_id !== $this_post->ID ) {
				$this->post_assets->prepare_assets( $this_post );
			}
		}
	}

	/**
	 * Enqueue asset files.
	 *
	 * @since 1.23.0
	 */
	public function enqueue_asset_files() {
		// Check if assets should be excluded for the current post type.
		if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
			return; // Early return to prevent loading assets.
		}

		if ( $this->post_assets ) {
			$this->post_assets->enqueue_scripts();
		}

		/* Archive & 404 page compatibility */
		if ( is_archive() || is_home() || is_search() || is_404() ) {

			global $wp_query;
			$current_object_id = $wp_query->get_queried_object_id();
			$cached_wp_query   = $wp_query->posts;
			if ( 0 !== $current_object_id && null !== $current_object_id ) {
				$current_post_assets = new UAGB_Post_Assets( $current_object_id );
				$current_post_assets->enqueue_scripts();
			} elseif ( ! ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) && ! empty( $cached_wp_query ) && is_array( $cached_wp_query ) ) {
				foreach ( $cached_wp_query as $post ) {
					$current_post_assets = new UAGB_Post_Assets( $post->ID );
					$current_post_assets->enqueue_scripts();
				}
			} else {
				/*
				If no posts are present in the category/archive
				or 404 page (which is an obvious case for 404), then get the current page ID and enqueue script.
				*/
				$current_object_id   = is_int( $current_object_id ) ? $current_object_id : (int) $current_object_id;
				$current_post_assets = new UAGB_Post_Assets( $current_object_id );
				$current_post_assets->enqueue_scripts();
			}
		}

		/* WooCommerce compatibility */
		if ( class_exists( 'WooCommerce' ) ) {

			if ( is_cart() ) {

				$id = get_option( 'woocommerce_cart_page_id' );
			} elseif ( is_account_page() ) {

				$id = get_option( 'woocommerce_myaccount_page_id' );
			} elseif ( is_checkout() ) {

				if ( is_order_received_page() ) {

					$id = get_option( 'woocommerce_checkout_order_received_endpoint', 'order-received' );
				} else {

					$id = get_option( 'woocommerce_checkout_page_id' );
				}
			} elseif ( is_checkout_pay_page() ) {

				$id = get_option( 'woocommerce_pay_page_id' );
			} elseif ( is_shop() ) {

				$id = get_option( 'woocommerce_shop_page_id' );
			} elseif ( is_order_received_page() ) {

				$id = get_option( 'woocommerce_checkout_order_received_endpoint', 'order-received' );
			}

			if ( ! empty( $id ) ) {
				$current_post_assets = new UAGB_Post_Assets( intval( $id ) );
				$current_post_assets->enqueue_scripts();
			}
		}

	}

	/**
	 * Trigger post assets update.
	 *
	 * @param int     $post_id Post ID.
	 * @param WP_Post $post    Post object.
	 * @param bool    $update  Whether this is an existing post being updated.
	 * @since 2.13.4
	 * @return mixed void if not an update, otherwise null.
	 */
	public function trigger_regeneration_event( $post_id, $post, $update ) {

		if ( ! $update ) {
			return;
		}

		if ( ! wp_next_scheduled( 'spectra_regenerate_post_assets' ) && ! wp_installing() ) {
			$post_assets_regeneration_buffer_time = apply_filters( 'spectra_post_assets_regeneration_buffer_time', 30 );
			wp_schedule_single_event( time() + $post_assets_regeneration_buffer_time, 'spectra_regenerate_post_assets', array( $post_id ) ); // Schedule for 30 seconds later.
		}
	}

	/**
	 * Update post assets.
	 *
	 * By passing everything and update assets once post is updated.
	 *
	 * @param int $post_id Post ID.
	 * @since 2.13.4
	 * @return void
	 */
	public function update_current_post_assets( $post_id ) {
		/**
		 * Case: If previous asset version is same then we need to update the assets, resultant will reduce cache conflicts.
		 */
		$page_assets = (array) get_post_meta( $post_id, '_uag_page_assets', true );
		if ( isset( $page_assets['uag_version'] ) && UAGB_ASSET_VER === $page_assets['uag_version'] ) {
			$page_assets['uag_version'] = '';
			update_post_meta( $post_id, '_uag_page_assets', $page_assets );
		}
	}

	/**
	 * Get post_assets obj.
	 *
	 * @since 1.23.0
	 */
	public function get_post_assets_obj() {
		return $this->post_assets;
	}
}

/**
 *  Prepare if class 'UAGB_Front_Assets' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Front_Assets::get_instance();

/**
 * Get frontend post_assets obj.
 *
 * @since 1.23.0
 */
function uagb_get_front_post_assets() {
	return UAGB_Front_Assets::get_instance()->get_post_assets_obj();
}
PK��][N�CC����=ultimate-addons-for-gutenberg/classes/class-uagb-block-js.phpnu�[���<?php
/**
 * UAGB Block Helper.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Block_JS' ) ) {

	/**
	 * Class UAGB_Block_JS.
	 */
	class UAGB_Block_JS {

		/**
		 * Adds Google fonts for Advanced Heading block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_advanced_heading_gfont( $attr ) {

			$head_load_google_font = isset( $attr['headLoadGoogleFonts'] ) ? $attr['headLoadGoogleFonts'] : '';
			$head_font_family      = isset( $attr['headFontFamily'] ) ? $attr['headFontFamily'] : '';
			$head_font_weight      = isset( $attr['headFontWeight'] ) ? $attr['headFontWeight'] : '';

			$subhead_load_google_font = isset( $attr['subHeadLoadGoogleFonts'] ) ? $attr['subHeadLoadGoogleFonts'] : '';
			$subhead_font_family      = isset( $attr['subHeadFontFamily'] ) ? $attr['subHeadFontFamily'] : '';
			$subhead_font_weight      = isset( $attr['subHeadFontWeight'] ) ? $attr['subHeadFontWeight'] : '';

			$highlight_head_load_google_font = isset( $attr['highLightLoadGoogleFonts'] ) ? $attr['highLightLoadGoogleFonts'] : '';
			$highlight_head_font_family      = isset( $attr['highLightFontFamily'] ) ? $attr['highLightFontFamily'] : '';
			$highlight_head_font_weight      = isset( $attr['highLightFontWeight'] ) ? $attr['highLightFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $head_load_google_font, $head_font_family, $head_font_weight );
			UAGB_Helper::blocks_google_font( $subhead_load_google_font, $subhead_font_family, $subhead_font_weight );
			UAGB_Helper::blocks_google_font( $highlight_head_load_google_font, $highlight_head_font_family, $highlight_head_font_weight );
		}

		/**
		 * Adds Google fonts for How To block.
		 *
		 * @since 1.15.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_how_to_gfont( $attr ) {

			$head_load_google_font = isset( $attr['headLoadGoogleFonts'] ) ? $attr['headLoadGoogleFonts'] : '';
			$head_font_family      = isset( $attr['headFontFamily'] ) ? $attr['headFontFamily'] : '';
			$head_font_weight      = isset( $attr['headFontWeight'] ) ? $attr['headFontWeight'] : '';

			$subhead_load_google_font = isset( $attr['subHeadLoadGoogleFonts'] ) ? $attr['subHeadLoadGoogleFonts'] : '';
			$subhead_font_family      = isset( $attr['subHeadFontFamily'] ) ? $attr['subHeadFontFamily'] : '';
			$subhead_font_weight      = isset( $attr['subHeadFontWeight'] ) ? $attr['subHeadFontWeight'] : '';

			$price_load_google_font = isset( $attr['priceLoadGoogleFonts'] ) ? $attr['priceLoadGoogleFonts'] : '';
			$price_font_family      = isset( $attr['priceFontFamily'] ) ? $attr['priceFontFamily'] : '';
			$price_font_weight      = isset( $attr['priceFontWeight'] ) ? $attr['priceFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $head_load_google_font, $head_font_family, $head_font_weight );
			UAGB_Helper::blocks_google_font( $subhead_load_google_font, $subhead_font_family, $subhead_font_weight );
			UAGB_Helper::blocks_google_font( $price_load_google_font, $price_font_family, $price_font_weight );
		}
		/**
		 * Adds Google fonts for How To Step block.
		 *
		 * @since 2.0.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_how_to_step_gfont( $attr ) {

			$url_load_google_font = isset( $attr['urlLoadGoogleFonts'] ) ? $attr['urlLoadGoogleFonts'] : '';
			$url_font_family      = isset( $attr['urlFontFamily'] ) ? $attr['urlFontFamily'] : '';
			$url_font_weight      = isset( $attr['urlFontWeight'] ) ? $attr['urlFontWeight'] : '';

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$description_load_google_font = isset( $attr['descriptionLoadGoogleFonts'] ) ? $attr['descriptionLoadGoogleFonts'] : '';
			$description_font_family      = isset( $attr['descriptionFontFamily'] ) ? $attr['descriptionFontFamily'] : '';
			$description_font_weight      = isset( $attr['descriptionFontWeight'] ) ? $attr['descriptionFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $url_load_google_font, $url_font_family, $url_font_weight );
			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $description_load_google_font, $description_font_family, $description_font_weight );
		}

		/**
		 * Adds Google fonts for review block.
		 *
		 * @since 1.19.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_review_gfont( $attr ) {

			$head_load_google_font = isset( $attr['headLoadGoogleFonts'] ) ? $attr['headLoadGoogleFonts'] : '';
			$head_font_family      = isset( $attr['headFontFamily'] ) ? $attr['headFontFamily'] : '';
			$head_font_weight      = isset( $attr['headFontWeight'] ) ? $attr['headFontWeight'] : '';

			$subhead_load_google_font = isset( $attr['subHeadLoadGoogleFonts'] ) ? $attr['subHeadLoadGoogleFonts'] : '';
			$subhead_font_family      = isset( $attr['subHeadFontFamily'] ) ? $attr['subHeadFontFamily'] : '';
			$subhead_font_weight      = isset( $attr['subHeadFontWeight'] ) ? $attr['subHeadFontWeight'] : '';

			$content_load_google_fonts = isset( $attr['contentLoadGoogleFonts'] ) ? $attr['contentLoadGoogleFonts'] : '';
			$content_font_family       = isset( $attr['contentFontFamily'] ) ? $attr['contentFontFamily'] : '';
			$content_font_weight       = isset( $attr['contentFontWeight'] ) ? $attr['contentFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $subhead_load_google_font, $subhead_font_family, $subhead_font_weight );
			UAGB_Helper::blocks_google_font( $head_load_google_font, $head_font_family, $head_font_weight );
			UAGB_Helper::blocks_google_font( $content_load_google_fonts, $content_font_family, $content_font_weight );
		}

		/**
		 * Adds Google fonts for Inline Notice block.
		 *
		 * @since 1.16.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_inline_notice_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$desc_load_google_font = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family      = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight      = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $desc_load_google_font, $desc_font_family, $desc_font_weight );
		}

		/**
		 * Adds Google fonts for CF7 Styler block.
		 *
		 * @since 1.10.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_cf7_styler_gfont( $attr ) {

			$label_load_google_font = isset( $attr['labelLoadGoogleFonts'] ) ? $attr['labelLoadGoogleFonts'] : '';
			$label_font_family      = isset( $attr['labelFontFamily'] ) ? $attr['labelFontFamily'] : '';
			$label_font_weight      = isset( $attr['labelFontWeight'] ) ? $attr['labelFontWeight'] : '';

			$input_load_google_font = isset( $attr['inputLoadGoogleFonts'] ) ? $attr['inputLoadGoogleFonts'] : '';
			$input_font_family      = isset( $attr['inputFontFamily'] ) ? $attr['inputFontFamily'] : '';
			$input_font_weight      = isset( $attr['inputFontWeight'] ) ? $attr['inputFontWeight'] : '';

			$radio_check_load_google_font = isset( $attr['radioCheckLoadGoogleFonts'] ) ? $attr['radioCheckLoadGoogleFonts'] : '';
			$radio_check_font_family      = isset( $attr['radioCheckFontFamily'] ) ? $attr['radioCheckFontFamily'] : '';
			$radio_check_font_weight      = isset( $attr['radioCheckFontWeight'] ) ? $attr['radioCheckFontWeight'] : '';

			$button_load_google_font = isset( $attr['buttonLoadGoogleFonts'] ) ? $attr['buttonLoadGoogleFonts'] : '';
			$button_font_family      = isset( $attr['buttonFontFamily'] ) ? $attr['buttonFontFamily'] : '';
			$button_font_weight      = isset( $attr['buttonFontWeight'] ) ? $attr['buttonFontWeight'] : '';

			$msg_font_load_google_font = isset( $attr['msgLoadGoogleFonts'] ) ? $attr['msgLoadGoogleFonts'] : '';
			$msg_font_family           = isset( $attr['msgFontFamily'] ) ? $attr['msgFontFamily'] : '';
			$msg_font_weight           = isset( $attr['msgFontWeight'] ) ? $attr['msgFontWeight'] : '';

			$validation_msg_load_google_font = isset( $attr['validationMsgLoadGoogleFonts'] ) ? $attr['validationMsgLoadGoogleFonts'] : '';
			$validation_msg_font_family      = isset( $attr['validationMsgFontFamily'] ) ? $attr['validationMsgFontFamily'] : '';
			$validation_msg_font_weight      = isset( $attr['validationMsgFontWeight'] ) ? $attr['validationMsgFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $msg_font_load_google_font, $msg_font_family, $msg_font_weight );
			UAGB_Helper::blocks_google_font( $validation_msg_load_google_font, $validation_msg_font_family, $validation_msg_font_weight );

			UAGB_Helper::blocks_google_font( $radio_check_load_google_font, $radio_check_font_family, $radio_check_font_weight );
			UAGB_Helper::blocks_google_font( $button_load_google_font, $button_font_family, $button_font_weight );

			UAGB_Helper::blocks_google_font( $label_load_google_font, $label_font_family, $label_font_weight );
			UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight );
		}


		/**
		 * Adds Google fonts for Gravity Form Styler block.
		 *
		 * @since 1.12.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_gf_styler_gfont( $attr ) {

			$label_load_google_font = isset( $attr['labelLoadGoogleFonts'] ) ? $attr['labelLoadGoogleFonts'] : '';
			$label_font_family      = isset( $attr['labelFontFamily'] ) ? $attr['labelFontFamily'] : '';
			$label_font_weight      = isset( $attr['labelFontWeight'] ) ? $attr['labelFontWeight'] : '';

			$input_load_google_font = isset( $attr['inputLoadGoogleFonts'] ) ? $attr['inputLoadGoogleFonts'] : '';
			$input_font_family      = isset( $attr['inputFontFamily'] ) ? $attr['inputFontFamily'] : '';
			$input_font_weight      = isset( $attr['inputFontWeight'] ) ? $attr['inputFontWeight'] : '';

			$radio_check_load_google_font = isset( $attr['radioCheckLoadGoogleFonts'] ) ? $attr['radioCheckLoadGoogleFonts'] : '';
			$radio_check_font_family      = isset( $attr['radioCheckFontFamily'] ) ? $attr['radioCheckFontFamily'] : '';
			$radio_check_font_weight      = isset( $attr['radioCheckFontWeight'] ) ? $attr['radioCheckFontWeight'] : '';

			$button_load_google_font = isset( $attr['buttonLoadGoogleFonts'] ) ? $attr['buttonLoadGoogleFonts'] : '';
			$button_font_family      = isset( $attr['buttonFontFamily'] ) ? $attr['buttonFontFamily'] : '';
			$button_font_weight      = isset( $attr['buttonFontWeight'] ) ? $attr['buttonFontWeight'] : '';

			$msg_font_load_google_font = isset( $attr['msgLoadGoogleFonts'] ) ? $attr['msgLoadGoogleFonts'] : '';
			$msg_font_family           = isset( $attr['msgFontFamily'] ) ? $attr['msgFontFamily'] : '';
			$msg_font_weight           = isset( $attr['msgFontWeight'] ) ? $attr['msgFontWeight'] : '';

			$validation_msg_load_google_font = isset( $attr['validationMsgLoadGoogleFonts'] ) ? $attr['validationMsgLoadGoogleFonts'] : '';
			$validation_msg_font_family      = isset( $attr['validationMsgFontFamily'] ) ? $attr['validationMsgFontFamily'] : '';
			$validation_msg_font_weight      = isset( $attr['validationMsgFontWeight'] ) ? $attr['validationMsgFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $msg_font_load_google_font, $msg_font_family, $msg_font_weight );
			UAGB_Helper::blocks_google_font( $validation_msg_load_google_font, $validation_msg_font_family, $validation_msg_font_weight );

			UAGB_Helper::blocks_google_font( $radio_check_load_google_font, $radio_check_font_family, $radio_check_font_weight );
			UAGB_Helper::blocks_google_font( $button_load_google_font, $button_font_family, $button_font_weight );

			UAGB_Helper::blocks_google_font( $label_load_google_font, $label_font_family, $label_font_weight );
			UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight );
		}

		/**
		 * Adds Google fonts for Marketing Button block.
		 *
		 * @since 1.11.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_marketing_btn_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$prefix_load_google_font = isset( $attr['prefixLoadGoogleFonts'] ) ? $attr['prefixLoadGoogleFonts'] : '';
			$prefix_font_family      = isset( $attr['prefixFontFamily'] ) ? $attr['prefixFontFamily'] : '';
			$prefix_font_weight      = isset( $attr['prefixFontWeight'] ) ? $attr['prefixFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $prefix_load_google_font, $prefix_font_family, $prefix_font_weight );
		}

		/**
		 * Adds Google fonts for Table Of Contents block.
		 *
		 * @since 1.13.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_table_of_contents_gfont( $attr ) {
			$load_google_font         = isset( $attr['loadGoogleFonts'] ) ? $attr['loadGoogleFonts'] : '';
			$font_family              = isset( $attr['fontFamily'] ) ? $attr['fontFamily'] : '';
			$font_weight              = isset( $attr['fontWeight'] ) ? $attr['fontWeight'] : '';
			$heading_load_google_font = isset( $attr['headingLoadGoogleFonts'] ) ? $attr['headingLoadGoogleFonts'] : '';
			$heading_font_family      = isset( $attr['headingFontFamily'] ) ? $attr['headingFontFamily'] : '';
			$heading_font_weight      = isset( $attr['headingFontWeight'] ) ? $attr['headingFontWeight'] : '';
			UAGB_Helper::blocks_google_font( $load_google_font, $font_family, $font_weight );
			UAGB_Helper::blocks_google_font( $heading_load_google_font, $heading_font_family, $heading_font_weight );
		}

		/**
		 * Adds Google fonts for Blockquote.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_blockquote_gfont( $attr ) {

			$desc_load_google_font = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family      = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight      = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			$author_load_google_font = isset( $attr['authorLoadGoogleFonts'] ) ? $attr['authorLoadGoogleFonts'] : '';
			$author_font_family      = isset( $attr['authorFontFamily'] ) ? $attr['authorFontFamily'] : '';
			$author_font_weight      = isset( $attr['authorFontWeight'] ) ? $attr['authorFontWeight'] : '';

			$tweet_btn_load_google_font = isset( $attr['tweetBtnLoadGoogleFonts'] ) ? $attr['tweetBtnLoadGoogleFonts'] : '';
			$tweet_btn_font_family      = isset( $attr['tweetBtnFontFamily'] ) ? $attr['tweetBtnFontFamily'] : '';
			$tweet_btn_font_weight      = isset( $attr['tweetBtnFontWeight'] ) ? $attr['tweetBtnFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $desc_load_google_font, $desc_font_family, $desc_font_weight );
			UAGB_Helper::blocks_google_font( $author_load_google_font, $author_font_family, $author_font_weight );
			UAGB_Helper::blocks_google_font( $tweet_btn_load_google_font, $tweet_btn_font_family, $tweet_btn_font_weight );
		}

		/**
		 * Adds Google fonts for Testimonials block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_testimonial_gfont( $attr ) {
			$desc_load_google_fonts = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family       = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight       = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			$name_load_google_fonts = isset( $attr['nameLoadGoogleFonts'] ) ? $attr['nameLoadGoogleFonts'] : '';
			$name_font_family       = isset( $attr['nameFontFamily'] ) ? $attr['nameFontFamily'] : '';
			$name_font_weight       = isset( $attr['nameFontWeight'] ) ? $attr['nameFontWeight'] : '';

			$company_load_google_fonts = isset( $attr['companyLoadGoogleFonts'] ) ? $attr['companyLoadGoogleFonts'] : '';
			$company_font_family       = isset( $attr['companyFontFamily'] ) ? $attr['companyFontFamily'] : '';
			$company_font_weight       = isset( $attr['companyFontWeight'] ) ? $attr['companyFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $desc_load_google_fonts, $desc_font_family, $desc_font_weight );
			UAGB_Helper::blocks_google_font( $name_load_google_fonts, $name_font_family, $name_font_weight );
			UAGB_Helper::blocks_google_font( $company_load_google_fonts, $company_font_family, $company_font_weight );
		}

		/**
		 * Adds Google fonts for Advanced Heading block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_team_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$prefix_load_google_font = isset( $attr['prefixLoadGoogleFonts'] ) ? $attr['prefixLoadGoogleFonts'] : '';
			$prefix_font_family      = isset( $attr['prefixFontFamily'] ) ? $attr['prefixFontFamily'] : '';
			$prefix_font_weight      = isset( $attr['prefixFontWeight'] ) ? $attr['prefixFontWeight'] : '';

			$desc_load_google_font = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family      = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight      = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $prefix_load_google_font, $prefix_font_family, $prefix_font_weight );
			UAGB_Helper::blocks_google_font( $desc_load_google_font, $desc_font_family, $desc_font_weight );
		}

		/**
		 *
		 * Adds Google fonts for Restaurant Menu block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_restaurant_menu_gfont( $attr ) {
			$title_load_google_fonts = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family       = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight       = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$price_load_google_fonts = isset( $attr['priceLoadGoogleFonts'] ) ? $attr['priceLoadGoogleFonts'] : '';
			$price_font_family       = isset( $attr['priceFontFamily'] ) ? $attr['priceFontFamily'] : '';
			$price_font_weight       = isset( $attr['priceFontWeight'] ) ? $attr['priceFontWeight'] : '';

			$desc_load_google_fonts = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family       = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight       = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_fonts, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $price_load_google_fonts, $price_font_family, $price_font_weight );
			UAGB_Helper::blocks_google_font( $desc_load_google_fonts, $desc_font_family, $desc_font_weight );
		}

		/**
		 * Adds Google fonts for Content Timeline block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_content_timeline_gfont( $attr ) {
			$head_load_google_fonts = isset( $attr['headLoadGoogleFonts'] ) ? $attr['headLoadGoogleFonts'] : '';
			$head_font_family       = isset( $attr['headFontFamily'] ) ? $attr['headFontFamily'] : '';
			$head_font_weight       = isset( $attr['headFontWeight'] ) ? $attr['headFontWeight'] : '';

			$subheadload_google_fonts = isset( $attr['subHeadLoadGoogleFonts'] ) ? $attr['subHeadLoadGoogleFonts'] : '';
			$subheadfont_family       = isset( $attr['subHeadFontFamily'] ) ? $attr['subHeadFontFamily'] : '';
			$subheadfont_weight       = isset( $attr['subHeadFontWeight'] ) ? $attr['subHeadFontWeight'] : '';

			$date_load_google_fonts = isset( $attr['dateLoadGoogleFonts'] ) ? $attr['dateLoadGoogleFonts'] : '';
			$date_font_family       = isset( $attr['dateFontFamily'] ) ? $attr['dateFontFamily'] : '';
			$date_font_weight       = isset( $attr['dateFontWeight'] ) ? $attr['dateFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $head_load_google_fonts, $head_font_family, $head_font_weight );
			UAGB_Helper::blocks_google_font( $subheadload_google_fonts, $subheadfont_family, $subheadfont_weight );
			UAGB_Helper::blocks_google_font( $date_load_google_fonts, $date_font_family, $date_font_weight );
		}

		/**
		 * Adds Google fonts for Post Timeline block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_post_timeline_gfont( $attr ) {
			self::blocks_content_timeline_gfont( $attr );

			$author_load_google_fonts = isset( $attr['authorLoadGoogleFonts'] ) ? $attr['authorLoadGoogleFonts'] : '';
			$author_font_family       = isset( $attr['authorFontFamily'] ) ? $attr['authorFontFamily'] : '';
			$author_font_weight       = isset( $attr['authorFontWeight'] ) ? $attr['authorFontWeight'] : '';

			$cta_load_google_fonts = isset( $attr['ctaLoadGoogleFonts'] ) ? $attr['ctaLoadGoogleFonts'] : '';
			$cta_font_family       = isset( $attr['ctaFontFamily'] ) ? $attr['ctaFontFamily'] : '';
			$cta_font_weight       = isset( $attr['ctaFontWeight'] ) ? $attr['ctaFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $author_load_google_fonts, $author_font_family, $author_font_weight );
			UAGB_Helper::blocks_google_font( $cta_load_google_fonts, $cta_font_family, $cta_font_weight );
		}

		/**
		 * Adds Google fonts for Mulit Button's block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_buttons_gfont( $attr ) {

			$load_google_font = isset( $attr['loadGoogleFonts'] ) ? $attr['loadGoogleFonts'] : '';
			$font_family      = isset( $attr['fontFamily'] ) ? $attr['fontFamily'] : '';
			$font_weight      = isset( $attr['fontWeight'] ) ? $attr['fontWeight'] : '';
			UAGB_Helper::blocks_google_font( $load_google_font, $font_family, $font_weight );
		}

		/**
		 * Adds Google fonts for Post block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_post_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$meta_load_google_font = isset( $attr['metaLoadGoogleFonts'] ) ? $attr['metaLoadGoogleFonts'] : '';
			$meta_font_family      = isset( $attr['metaFontFamily'] ) ? $attr['metaFontFamily'] : '';
			$meta_font_weight      = isset( $attr['metaFontWeight'] ) ? $attr['metaFontWeight'] : '';

			$excerpt_load_google_font = isset( $attr['excerptLoadGoogleFonts'] ) ? $attr['excerptLoadGoogleFonts'] : '';
			$excerpt_font_family      = isset( $attr['excerptFontFamily'] ) ? $attr['excerptFontFamily'] : '';
			$excerpt_font_weight      = isset( $attr['excerptFontWeight'] ) ? $attr['excerptFontWeight'] : '';

			$cta_load_google_font = isset( $attr['ctaLoadGoogleFonts'] ) ? $attr['ctaLoadGoogleFonts'] : '';
			$cta_font_family      = isset( $attr['ctaFontFamily'] ) ? $attr['ctaFontFamily'] : '';
			$cta_font_weight      = isset( $attr['ctaFontWeight'] ) ? $attr['ctaFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );

			UAGB_Helper::blocks_google_font( $meta_load_google_font, $meta_font_family, $meta_font_weight );

			UAGB_Helper::blocks_google_font( $excerpt_load_google_font, $excerpt_font_family, $excerpt_font_weight );

			UAGB_Helper::blocks_google_font( $cta_load_google_font, $cta_font_family, $cta_font_weight );
		}

		/**
		 * Adds Google fonts for Advanced Heading block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_info_box_gfont( $attr ) {

			$head_load_google_font = isset( $attr['headLoadGoogleFonts'] ) ? $attr['headLoadGoogleFonts'] : '';
			$head_font_family      = isset( $attr['headFontFamily'] ) ? $attr['headFontFamily'] : '';
			$head_font_weight      = isset( $attr['headFontWeight'] ) ? $attr['headFontWeight'] : '';

			$prefix_load_google_font = isset( $attr['prefixLoadGoogleFonts'] ) ? $attr['prefixLoadGoogleFonts'] : '';
			$prefix_font_family      = isset( $attr['prefixFontFamily'] ) ? $attr['prefixFontFamily'] : '';
			$prefix_font_weight      = isset( $attr['prefixFontWeight'] ) ? $attr['prefixFontWeight'] : '';

			$subhead_load_google_font = isset( $attr['subHeadLoadGoogleFonts'] ) ? $attr['subHeadLoadGoogleFonts'] : '';
			$subhead_font_family      = isset( $attr['subHeadFontFamily'] ) ? $attr['subHeadFontFamily'] : '';
			$subhead_font_weight      = isset( $attr['subHeadFontWeight'] ) ? $attr['subHeadFontWeight'] : '';

			$cta_load_google_font = isset( $attr['ctaLoadGoogleFonts'] ) ? $attr['ctaLoadGoogleFonts'] : '';
			$cta_font_family      = isset( $attr['ctaFontFamily'] ) ? $attr['ctaFontFamily'] : '';
			$cta_font_weight      = isset( $attr['ctaFontWeight'] ) ? $attr['ctaFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $cta_load_google_font, $cta_font_family, $cta_font_weight );
			UAGB_Helper::blocks_google_font( $head_load_google_font, $head_font_family, $head_font_weight );
			UAGB_Helper::blocks_google_font( $prefix_load_google_font, $prefix_font_family, $prefix_font_weight );
			UAGB_Helper::blocks_google_font( $subhead_load_google_font, $subhead_font_family, $subhead_font_weight );
		}

		/**
		 * Adds Google fonts for Call To Action block.
		 *
		 * @since 1.9.1
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_call_to_action_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$desc_load_google_font = isset( $attr['descLoadGoogleFonts'] ) ? $attr['descLoadGoogleFonts'] : '';
			$desc_font_family      = isset( $attr['descFontFamily'] ) ? $attr['descFontFamily'] : '';
			$desc_font_weight      = isset( $attr['descFontWeight'] ) ? $attr['descFontWeight'] : '';

			$cta_load_google_font = isset( $attr['ctaLoadGoogleFonts'] ) ? $attr['ctaLoadGoogleFonts'] : '';
			$cta_font_family      = isset( $attr['ctaFontFamily'] ) ? $attr['ctaFontFamily'] : '';
			$cta_font_weight      = isset( $attr['ctaFontWeight'] ) ? $attr['ctaFontWeight'] : '';

			$second_cta_load_google_font = isset( $attr['secondCtaLoadGoogleFonts'] ) ? $attr['secondCtaLoadGoogleFonts'] : '';
			$second_cta_font_family      = isset( $attr['secondCtaFontFamily'] ) ? $attr['secondCtaFontFamily'] : '';
			$second_cta_font_weight      = isset( $attr['secondCtaFontWeight'] ) ? $attr['secondCtaFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $cta_load_google_font, $cta_font_family, $cta_font_weight );
			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $desc_load_google_font, $desc_font_family, $desc_font_weight );
			UAGB_Helper::blocks_google_font( $second_cta_load_google_font, $second_cta_font_family, $second_cta_font_weight );
		}

		/**
		 * Adds Google fonts for FAQ block.
		 *
		 * @since 1.15.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_faq_gfont( $attr ) {

			$question_load_google_font = isset( $attr['questionloadGoogleFonts'] ) ? $attr['questionloadGoogleFonts'] : '';
			$question_font_family      = isset( $attr['questionFontFamily'] ) ? $attr['questionFontFamily'] : '';
			$question_font_weight      = isset( $attr['questionFontWeight'] ) ? $attr['questionFontWeight'] : '';

			$answer_load_google_font = isset( $attr['answerloadGoogleFonts'] ) ? $attr['answerloadGoogleFonts'] : '';
			$answer_font_family      = isset( $attr['answerFontFamily'] ) ? $attr['answerFontFamily'] : '';
			$answer_font_weight      = isset( $attr['answerFontWeight'] ) ? $attr['answerFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $question_load_google_font, $question_font_family, $question_font_weight );
			UAGB_Helper::blocks_google_font( $answer_load_google_font, $answer_font_family, $answer_font_weight );

		}

		/**
		 * Adds Google fonts for WP Search block.
		 *
		 * @since 1.16.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_wp_search_gfont( $attr ) {

			$input_load_google_font = isset( $attr['inputloadGoogleFonts'] ) ? $attr['inputloadGoogleFonts'] : '';
			$input_font_family      = isset( $attr['inputFontFamily'] ) ? $attr['inputFontFamily'] : '';
			$input_font_weight      = isset( $attr['inputFontWeight'] ) ? $attr['inputFontWeight'] : '';

			$button_load_google_font = isset( $attr['buttonloadGoogleFonts'] ) ? $attr['buttonloadGoogleFonts'] : '';
			$button_font_family      = isset( $attr['buttonFontFamily'] ) ? $attr['buttonFontFamily'] : '';
			$button_font_weight      = isset( $attr['buttonFontWeight'] ) ? $attr['buttonFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $button_load_google_font, $button_font_family, $button_font_weight );
			UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight );
		}

		/**
		 *
		 * Adds Google fonts for Separator block.
		 *
		 * @since 2.6.0
		 * @param array $attr the blocks attr.
		 * @return void
		 */
		public static function blocks_separator_gfont( $attr ) {
			$element_text_load_google_font = isset( $attr['elementTextLoadGoogleFonts'] ) ? $attr['elementTextLoadGoogleFonts'] : '';
			$element_text_font_family      = isset( $attr['elementTextFontFamily'] ) ? $attr['elementTextFontFamily'] : '';
			$element_text_font_weight      = isset( $attr['elementTextFontWeight'] ) ? $attr['elementTextFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $element_text_load_google_font, $element_text_font_family, $element_text_font_weight );
		}

		/**
		 * Adds Google fonts for Taxonomy List block.
		 *
		 * @since 1.18.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_taxonomy_list_gfont( $attr ) {

			$title_load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$title_font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$title_font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			$count_load_google_font = isset( $attr['countLoadGoogleFonts'] ) ? $attr['countLoadGoogleFonts'] : '';
			$count_font_family      = isset( $attr['countFontFamily'] ) ? $attr['countFontFamily'] : '';
			$count_font_weight      = isset( $attr['countFontWeight'] ) ? $attr['countFontWeight'] : '';

			$list_load_google_font = isset( $attr['listLoadGoogleFonts'] ) ? $attr['listLoadGoogleFonts'] : '';
			$list_font_family      = isset( $attr['listFontFamily'] ) ? $attr['listFontFamily'] : '';
			$list_font_weight      = isset( $attr['listFontWeight'] ) ? $attr['listFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $title_load_google_font, $title_font_family, $title_font_weight );
			UAGB_Helper::blocks_google_font( $count_load_google_font, $count_font_family, $count_font_weight );
			UAGB_Helper::blocks_google_font( $list_load_google_font, $list_font_family, $list_font_weight );

		}

		/**
		 * Adds Google fonts for Forms block.
		 *
		 * @since 1.22.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_forms_gfont( $attr ) {

			$submitText_load_google_font = isset( $attr['submitTextloadGoogleFonts'] ) ? $attr['submitTextloadGoogleFonts'] : '';
			$submitText_font_family      = isset( $attr['submitTextFontFamily'] ) ? $attr['submitTextFontFamily'] : '';
			$submitText_font_weight      = isset( $attr['submitTextFontWeight'] ) ? $attr['submitTextFontWeight'] : '';

			$label_load_google_font = isset( $attr['labelloadGoogleFonts'] ) ? $attr['labelloadGoogleFonts'] : '';
			$label_font_family      = isset( $attr['labelFontFamily'] ) ? $attr['labelFontFamily'] : '';
			$label_font_weight      = isset( $attr['labelFontWeight'] ) ? $attr['labelFontWeight'] : '';

			$input_load_google_font = isset( $attr['inputloadGoogleFonts'] ) ? $attr['inputloadGoogleFonts'] : '';
			$input_font_family      = isset( $attr['inputFontFamily'] ) ? $attr['inputFontFamily'] : '';
			$input_font_weight      = isset( $attr['inputFontWeight'] ) ? $attr['inputFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $submitText_load_google_font, $submitText_font_family, $submitText_font_weight );
			UAGB_Helper::blocks_google_font( $label_load_google_font, $label_font_family, $label_font_weight );
			UAGB_Helper::blocks_google_font( $input_load_google_font, $input_font_family, $input_font_weight );
		}

		/**
		 * Adds Google fonts for Star Rating block.
		 *
		 * @since 2.0.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_star_rating_gfont( $attr ) {

			$load_google_font = isset( $attr['loadGoogleFonts'] ) ? $attr['loadGoogleFonts'] : '';
			$font_family      = isset( $attr['fontFamily'] ) ? $attr['fontFamily'] : '';
			$font_weight      = isset( $attr['fontWeight'] ) ? $attr['fontWeight'] : '';

			UAGB_Helper::blocks_google_font( $load_google_font, $font_family, $font_weight );
		}
		/**
		 * Adds Google fonts for Tabs block.
		 *
		 * @since 2.0.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_tabs_gfont( $attr ) {

			$load_google_font = isset( $attr['titleLoadGoogleFonts'] ) ? $attr['titleLoadGoogleFonts'] : '';
			$font_family      = isset( $attr['titleFontFamily'] ) ? $attr['titleFontFamily'] : '';
			$font_weight      = isset( $attr['titleFontWeight'] ) ? $attr['titleFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $load_google_font, $font_family, $font_weight );
		}

		/**
		 * Adds Google fonts for Advanced Image block.
		 *
		 * @since 2.0.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_advanced_image_gfont( $attr ) {

			$heading_load_google_font = isset( $attr['headingLoadGoogleFonts'] ) ? $attr['headingLoadGoogleFonts'] : '';
			$heading_font_family      = isset( $attr['headingFontFamily'] ) ? $attr['headingFontFamily'] : '';
			$heading_font_weight      = isset( $attr['headingFontWeight'] ) ? $attr['headingFontWeight'] : '';

			$caption_load_google_font = isset( $attr['captionLoadGoogleFonts'] ) ? $attr['captionLoadGoogleFonts'] : '';
			$caption_font_family      = isset( $attr['captionFontFamily'] ) ? $attr['captionFontFamily'] : '';
			$caption_font_weight      = isset( $attr['captionFontWeight'] ) ? $attr['captionFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $heading_load_google_font, $heading_font_family, $heading_font_weight );
			UAGB_Helper::blocks_google_font( $caption_load_google_font, $caption_font_family, $caption_font_weight );
		}

		/**
		 * Adds Google fonts for Counter block.
		 *
		 * @since 2.1.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_counter_gfont( $attr ) {

			$heading_load_google_font = isset( $attr['headingLoadGoogleFonts'] ) ? $attr['headingLoadGoogleFonts'] : '';
			$heading_font_family      = isset( $attr['headingFontFamily'] ) ? $attr['headingFontFamily'] : '';
			$heading_font_weight      = isset( $attr['headingFontWeight'] ) ? $attr['headingFontWeight'] : '';

			$number_load_google_font = isset( $attr['numberLoadGoogleFonts'] ) ? $attr['numberLoadGoogleFonts'] : '';
			$number_font_family      = isset( $attr['numberFontFamily'] ) ? $attr['numberFontFamily'] : '';
			$number_font_weight      = isset( $attr['numberFontWeight'] ) ? $attr['numberFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $heading_load_google_font, $heading_font_family, $heading_font_weight );
			UAGB_Helper::blocks_google_font( $number_load_google_font, $number_font_family, $number_font_weight );
		}

		/**
		 * Adds Google fonts for Image Gallery block.
		 *
		 * @since 2.1.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_image_gallery_gfont( $attr ) {

			$caption_load_google_font = isset( $attr['captionLoadGoogleFonts'] ) ? $attr['captionLoadGoogleFonts'] : '';
			$caption_font_family      = isset( $attr['captionFontFamily'] ) ? $attr['captionFontFamily'] : '';
			$caption_font_weight      = isset( $attr['captionFontWeight'] ) ? $attr['captionFontWeight'] : '';

			$load_more_load_google_font = isset( $attr['loadMoreLoadGoogleFonts'] ) ? $attr['loadMoreLoadGoogleFonts'] : '';
			$load_more_font_family      = isset( $attr['loadMoreFontFamily'] ) ? $attr['loadMoreFontFamily'] : '';
			$load_more_font_weight      = isset( $attr['loadMoreFontWeight'] ) ? $attr['loadMoreFontWeight'] : '';

			$lightbox_load_google_font = isset( $attr['lightboxLoadGoogleFonts'] ) ? $attr['lightboxLoadGoogleFonts'] : '';
			$lightbox_font_family      = isset( $attr['lightboxFontFamily'] ) ? $attr['lightboxFontFamily'] : '';
			$lightbox_font_weight      = isset( $attr['lightboxFontWeight'] ) ? $attr['lightboxFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $caption_load_google_font, $caption_font_family, $caption_font_weight );
			UAGB_Helper::blocks_google_font( $load_more_load_google_font, $load_more_font_family, $load_more_font_weight );
			UAGB_Helper::blocks_google_font( $lightbox_load_google_font, $lightbox_font_family, $lightbox_font_weight );
		}

		/**
		 * Adds Google fonts for Countdown block.
		 *
		 * @since 2.4.0
		 * @param array $attr the blocks attr.
		 * @return void
		 */
		public static function blocks_countdown_gfont( $attr ) {

			$digit_load_google_font = isset( $attr['digitLoadGoogleFonts'] ) ? $attr['digitLoadGoogleFonts'] : '';
			$digit_font_family      = isset( $attr['digitFontFamily'] ) ? $attr['digitFontFamily'] : '';
			$digit_font_weight      = isset( $attr['digitFontWeight'] ) ? $attr['digitFontWeight'] : '';

			$label_load_google_font = isset( $attr['labelLoadGoogleFonts'] ) ? $attr['labelLoadGoogleFonts'] : '';
			$label_font_family      = isset( $attr['labelFontFamily'] ) ? $attr['labelFontFamily'] : '';
			$label_font_weight      = isset( $attr['labelFontWeight'] ) ? $attr['labelFontWeight'] : '';

			$separator_load_google_font = isset( $attr['separatorLoadGoogleFonts'] ) ? $attr['separatorLoadGoogleFonts'] : '';
			$separator_font_family      = isset( $attr['separatorFontFamily'] ) ? $attr['separatorFontFamily'] : '';
			$separator_font_weight      = isset( $attr['separatorFontWeight'] ) ? $attr['separatorFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $digit_load_google_font, $digit_font_family, $digit_font_weight );
			UAGB_Helper::blocks_google_font( $label_load_google_font, $label_font_family, $label_font_weight );
			UAGB_Helper::blocks_google_font( $separator_load_google_font, $separator_font_family, $separator_font_weight );
		}

		/**
		 * Adds Google fonts for Modal block.
		 *
		 * @since 2.2.0
		 * @param array $attr the blocks attr.
		 */
		public static function blocks_modal_gfont( $attr ) {

			$text_load_google_font = isset( $attr['textLoadGoogleFonts'] ) ? $attr['textLoadGoogleFonts'] : '';
			$text_font_family      = isset( $attr['textFontFamily'] ) ? $attr['textFontFamily'] : '';
			$text_font_weight      = isset( $attr['textFontWeight'] ) ? $attr['textFontWeight'] : '';

			$btn_load_google_font = isset( $attr['btnLoadGoogleFonts'] ) ? $attr['btnLoadGoogleFonts'] : '';
			$btn_font_family      = isset( $attr['btnFontFamily'] ) ? $attr['btnFontFamily'] : '';
			$btn_font_weight      = isset( $attr['btnFontWeight'] ) ? $attr['btnFontWeight'] : '';

			UAGB_Helper::blocks_google_font( $text_load_google_font, $text_font_family, $text_font_weight );
			UAGB_Helper::blocks_google_font( $btn_load_google_font, $btn_font_family, $btn_font_weight );
		}
	}
}
PK��][��;LKLK:ultimate-addons-for-gutenberg/classes/class-uagb-admin.phpnu�[���<?php
/**
 * UAGB Admin.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}


if ( ! class_exists( 'UAGB_Admin' ) ) {

	/**
	 * Class UAGB_Admin.
	 */
	final class UAGB_Admin {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {
			if ( ! is_admin() ) {
				return;
			}

			global $wp_customize;
			/**
			 * Conditionally load the scripts in the customizer.
			 * If the customizer is not set, it means we are not in the customizer.
			 * In that case load the script that will reload the page after migration is complete.
			 */
			if ( empty( $wp_customize ) ) {
				add_action( 'admin_enqueue_scripts', array( $this, 'reload_on_migration_complete' ) );
			}
			add_action( 'wp_ajax_uag_migrate', array( $this, 'handle_migration_action_ajax' ) );

			add_action( 'admin_notices', array( $this, 'register_notices' ) );
			add_filter( 'wp_kses_allowed_html', array( $this, 'add_data_attributes' ), 10, 2 );
			add_action( 'admin_enqueue_scripts', array( $this, 'notice_styles_scripts' ) );
			add_action( 'admin_enqueue_scripts', array( $this, 'notice_styles_scripts_upgrade_pro' ) );
			add_filter( 'rank_math/researches/toc_plugins', array( $this, 'toc_plugin' ) );
			add_action( 'admin_init', array( $this, 'activation_redirect' ) );
			add_action( 'admin_init', array( $this, 'update_old_user_option_by_url_params' ) );
			add_action( 'admin_post_uag_rollback', array( $this, 'post_uagb_rollback' ) );
			// Update get access url in Template Kits.
			add_filter( 'ast_block_templates_pro_url', array( $this, 'update_gutenberg_templates_pro_url' ) );
			add_action( 'admin_post_uag_download_log', array( $this, 'handle_log_download' ) );

		}

		/**
		 * Handle migration action AJAX.
		 * 
		 * @since 2.13.9
		 * @return void
		 */
		public function handle_migration_action_ajax() {
			check_ajax_referer( 'spectra-migration', 'security' );

			if ( ! current_user_can( 'manage_options' ) ) {
				wp_send_json_error( array( 'message' => 'Permission Denied' ) );
			}

			// Trigger the migration.
			Spectra_Migrate_Blocks::get_instance()->blocks_migration();

			// Update the migration status to 'no' before starting.
			update_option( 'uag_migration_status', 'yes' );

			// Set a new option to know that the migration process has started.
			update_option( 'uag_migration_progress_status', 'in-progress' );

			// Prepare the response.
			$response = array(
				'success' => true,
				'data'    => array(
					'message' => esc_html__( 'Migration started successfully.', 'ultimate-addons-for-gutenberg' ),
				),
			);

			// Send JSON response.
			wp_send_json_success( $response );
		}

		/**
		 * Callback function to display migration log page content.
		 *
		 * @since 2.13.9
		 * @return void
		 */
		public function handle_log_download() {
			if ( ! current_user_can( 'manage_options' ) ) {
				wp_die( esc_html__( 'You do not have permission to access this page.', 'ultimate-addons-for-gutenberg' ) );
			}

			$log_file = ABSPATH . 'wp-content/uploads/migration-log.txt';

			if ( file_exists( $log_file ) ) {
				header( 'Content-Description: File Transfer' );
				header( 'Content-Type: application/octet-stream' );
				header( 'Content-Disposition: attachment; filename="' . basename( $log_file ) . '"' );
				header( 'Expires: 0' );
				header( 'Cache-Control: must-revalidate' );
				header( 'Pragma: public' );
				header( 'Content-Length: ' . filesize( $log_file ) );
				flush(); // Flush system output buffer.
				readfile( $log_file );
				exit;
			} else {
				wp_die( esc_html__( 'Log file not found.', 'ultimate-addons-for-gutenberg' ) );
			}
		}
		
		/**
		 * Updates the Gutenberg templates pro URL.
		 * This function returns the URL for the pro version of Gutenberg templates.
		 * 
		 * @since 2.13.7
		 * @return string The URL for Spectra Webpage.
		 */
		public function update_gutenberg_templates_pro_url() { 
			return \UAGB_Admin_Helper::get_spectra_pro_url( '/pricing/', 'gutenberg-templates', 'dashboard', 'Starter-Template-Backend' );
		}
 

		/**
		 * Update Old user option using URL Param.
		 *
		 * If any user wants to set the site as old user then just add the URL param as true.
		 *
		 * @since 2.0.1
		 * @access public
		 */
		public function update_old_user_option_by_url_params() {

			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			$spectra_old_user = isset( $_GET['spectra_old_user'] ) ? sanitize_text_field( $_GET['spectra_old_user'] ) : false; //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- $_GET['spectra_old_user'] does not provide nonce.

			if ( 'yes' === $spectra_old_user ) {
				update_option( 'uagb-old-user-less-than-2', 'yes' );
			} elseif ( 'no' === $spectra_old_user ) {
				delete_option( 'uagb-old-user-less-than-2' );
			}
		}

		/**
		 * UAG version rollback.
		 *
		 * Rollback to previous UAG version.
		 *
		 * Fired by `admin_post_uag_rollback` action.
		 *
		 * @since 1.23.0
		 * @access public
		 */
		public function post_uagb_rollback() {

			if ( ! current_user_can( 'install_plugins' ) ) {
				wp_die(
					esc_html__( 'You do not have permission to access this page.', 'ultimate-addons-for-gutenberg' ),
					esc_html__( 'Rollback to Previous Version', 'ultimate-addons-for-gutenberg' ),
					array(
						'response' => 200,
					)
				);
			}

			check_admin_referer( 'uag_rollback' );

			$rollback_versions = UAGB_Admin_Helper::get_instance()->get_rollback_versions();
			$update_version    = isset( $_GET['version'] ) ? sanitize_text_field( $_GET['version'] ) : '';

			if ( empty( $update_version ) || ! in_array( $update_version, $rollback_versions, true ) ) {
				wp_die( esc_html__( 'Error occurred, The version selected is invalid. Try selecting different version.', 'ultimate-addons-for-gutenberg' ) );
			}

			$plugin_slug = basename( UAGB_FILE, '.php' );

			$rollback = new UAGB_Rollback(
				array(
					'version'     => $update_version,
					'plugin_name' => UAGB_BASE,
					'plugin_slug' => $plugin_slug,
					'package_url' => sprintf( 'https://downloads.wordpress.org/plugin/%s.%s.zip', $plugin_slug, $update_version ),
				)
			);

			$rollback->run();

			wp_die(
				'',
				esc_html__( 'Rollback to Previous Version', 'ultimate-addons-for-gutenberg' ),
				array(
					'response' => 200,
				)
			);
		}
		/**
		 * Activation Reset
		 */
		public function activation_redirect() {

			$do_redirect = apply_filters( 'uagb_enable_redirect_activation', get_option( '__uagb_do_redirect' ) );

			if ( $do_redirect ) {

				update_option( '__uagb_do_redirect', false );

				if ( ! is_multisite() ) {
					wp_safe_redirect(
						add_query_arg(
							array(
								'page' => UAGB_SLUG,
								'spectra-activation-redirect' => true,
							),
							admin_url( 'admin.php' )
						)
					);
					exit();
				}
			}
		}

		/**
		 * Filters and Returns a list of allowed tags and attributes for a given context.
		 *
		 * @param Array  $allowedposttags Array of allowed tags.
		 * @param String $context Context type (explicit).
		 * @since 1.8.0
		 * @return Array
		 */
		public function add_data_attributes( $allowedposttags, $context ) {
			$allowedposttags['a']['data-repeat-notice-after'] = true;

			return $allowedposttags;
		}

		/**
		 * Ask Plugin Rating
		 *
		 * @since 1.8.0
		 */
		public function register_notices() {
			// Check if assets should be excluded for the current post type.
			if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}
			if ( ! current_user_can( 'manage_options' ) ) {
				return;
			}

			$image_path = UAGB_URL . 'admin-core/assets/images/uag-logo.svg';

			if ( ! get_option( 'uag_migration_status', false ) && 'yes' === get_option( 'uagb-old-user-less-than-2' ) && 'in-progress' !== get_option( 'uag_migration_progress_status', '' ) ) {

				Astra_Notices::add_notice(
					array(

						'id'                         => 'uagb-block-migration_status',
						'type'                       => '',
						'message'                    => sprintf(
							// Translators: %1$s: Spectra logo, %2$s: migration note , %3$s: The closing tag, %4$s: migration description, %5$s: migration button placeholder, %6$s: Learn more button, %7$s: learn more placeholder.
							'<div class="notice-image">
                            <img src="%1$s" class="custom-logo" alt="Spectra" itemprop="logo"></div>
                            <div class="notice-content">
                            <h4 style="margin: 0.5em 0" class="notice-heading">
                            %2$s
                            </h4>
						    %3$s<br /><br />
						     <strong>%4$s</strong>
                                <div style="margin-bottom: 0.5em" class="astra-review-notice-container">
                                    <a style="margin-right: 0.5em" id="trigger_migration" class="uagb-review-notice button-primary">
                                    %5$s
                                    </a>
									<a href="%6$s" class="uagb-review-notice button-primary">
                                    %7$s
                                    </a>
                                </div>
                                </div><br />',
							$image_path,
							__( 'Spectra database update required', 'ultimate-addons-for-gutenberg' ),
							__( "We've detected that some of your pages were created with an older version of Spectra. To ensure your designs remain unaffected, we recommend updating the Spectra database now. Updating the Spectra database will not impact any other parts of your website.", 'ultimate-addons-for-gutenberg' ),
							__( 'To be on the safer side, please be sure to back up your site before updating.', 'ultimate-addons-for-gutenberg' ),
							__( 'Update Spectra Database', 'ultimate-addons-for-gutenberg' ),
							esc_url( 'https://wpspectra.com/docs/spectra-database-update-instructions/' ),
							__( 'Learn More About This', 'ultimate-addons-for-gutenberg' )
						),
						'priority'                   => 20,
						'display-with-other-notices' => true,
					)
				);
			} elseif ( 'yes' !== get_option( 'uag_migration_complete', 0 ) && 'yes' === get_option( 'uagb-old-user-less-than-2' ) ) {
				Astra_Notices::add_notice(
					array(
						'id'                         => 'uag_migration_in_progress',
						'type'                       => 'info',
						'message'                    => sprintf(
							// Translators: %1$s: Spectra logo, %2$s: in-progress note.
							'<div class="notice-image">
                                <img src="%1$s" class="custom-logo" alt="Spectra" itemprop="logo"></div>
                                <div class="notice-content">
                                    <h4 style="margin: 0.5em 0" class="notice-heading">
                                        %2$s
                                    </h4>
                                    <div style="margin-bottom: 0.5em" class="astra-review-notice-container">
                                        <span class="spinner is-active"></span>
                                        %3$s
                                    </div>
                                </div><br />',
							$image_path,
							__( 'Spectra database update in progress', 'ultimate-addons-for-gutenberg' ),
							__( 'Great! This should only take a few minutes. Thanks for hanging in there.', 'ultimate-addons-for-gutenberg' )
						),
						'dismissible'                => false,
						'priority'                   => 20,
						'display-with-other-notices' => true,
					)
				);
			} elseif ( 'yes' === get_option( 'uag_migration_complete', 0 ) ) {
				Astra_Notices::add_notice(
					array(
						'id'                         => 'uag_migration_success',
						'type'                       => 'success',
						'message'                    => sprintf(
							// Translators: %1$s: Spectra logo, %2$s: success message, %3$s: additional note.
							'<div class="notice-image">
							<img src="%1$s" class="custom-logo" alt="Spectra" itemprop="logo"></div>
							<div class="notice-content">
								<h4 style="margin: 0.5em 0" class="notice-heading">
									%2$s
								</h4>
								<div style="margin-bottom: 0.5em" class="astra-review-notice-container">
									%3$s
								</div>
							</div><br />',
							$image_path,
							__( 'Update Successful!', 'ultimate-addons-for-gutenberg' ),
							__( 'Your Spectra database is now up-to-date. Your website will continue to function as before.', 'ultimate-addons-for-gutenberg' ) . ' <a href="' . esc_url( admin_url( 'admin-post.php?action=uag_download_log' ) ) . '">' . __( 'View Log', 'ultimate-addons-for-gutenberg' ) . '</a>'
						),
						'dismissible'                => true,
						'priority'                   => 20,
						'display-with-other-notices' => true,
					)
				);
			}
			

			if ( class_exists( 'Classic_Editor' ) ) {
				$editor_option = get_option( 'classic-editor-replace' );
				if ( 'block' !== $editor_option ) {
					Astra_Notices::add_notice(
						array(
							'id'                         => 'uagb-classic-editor',
							'type'                       => 'warning',
							'message'                    => sprintf(
								/* translators: %s: html tags */
								__( 'Spectra requires&nbsp;%3$sBlock Editor%4$s. You can change your editor settings to Block Editor from&nbsp;%1$shere%2$s. Plugin is currently NOT RUNNING.', 'ultimate-addons-for-gutenberg' ),
								'<a href="' . admin_url( 'options-writing.php' ) . '">',
								'</a>',
								'<strong>',
								'</strong>'
							),
							'priority'                   => 20,
							'display-with-other-notices' => true,
						)
					);
				}
			}
			$image_path = UAGB_URL . 'admin-core/assets/images/uag-logo.svg';

			$installed_plugins = get_plugins();

			$status = isset( $installed_plugins['spectra-pro/spectra-pro.php'] ) 
					? ( is_plugin_active( 'spectra-pro/spectra-pro.php' ) 
						? 'active' 
						: 'inactive' ) 
					: 'not-installed';

			if ( 'not-installed' === $status && isset( $_GET['post_type'] ) && 'spectra-popup' === $_GET['post_type'] ) { // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- $_GET['post_type'] does not provide nonce.
				Astra_Notices::add_notice(
					array(
						'id'                         => 'uagb-spectra-pro-popup-note',
						'type'                       => '',
						'message'                    => sprintf(
							'<div class="notice-image">
								<img src="%1$s" class="custom-logo" style="max-width: 40px;" alt="Spectra" itemprop="logo"></div>
								<div class="notice-content">
									<div class="notice-heading">
										<strong>
											%2$s
										</strong>
									</div>
									%3$s<br />
									<div class="astra-review-notice-container">
										<a href="%4$s" class="not-astra-notice-close uagb-review-notice button-primary" target="_blank">
										%5$s
										</a>
									
									</div>
								</div>',
							$image_path,
							__( 'Want to do more with Popup Builder?', 'ultimate-addons-for-gutenberg' ),
							__( 'Maximize your popup potential with Spectra Pro. Unlock enhanced features, intuitive design options, and increased conversions!', 'ultimate-addons-for-gutenberg' ),
							esc_url( \UAGB_Admin_Helper::get_spectra_pro_url( '/pricing/', 'free-plugin', 'popup-builder', 'popup-builder-banner' ) ),
							__( 'Upgrade Now', 'ultimate-addons-for-gutenberg' )
						),
						'dismissible'                => true,
						'priority'                   => 20,
						'display-with-other-notices' => true,
						'class'                      => 'spectra-upsell',
					)
				);
			}
		}

		/**
		 * Enqueue the needed CSS/JS for the builder's admin settings page.
		 *
		 * @since 1.8.0
		 */
		public function notice_styles_scripts() {
			$screen = get_current_screen();
	
			if ( $screen && 'admin_page_migration-log' === $screen->base ) {
				wp_enqueue_style( 'uag-admin-css', UAGB_URL . 'admin/assets/admin-notice.css', array(), UAGB_VER );
		
				// Add inline CSS to hide elements with the 'notice' class.
				$custom_css = '.notice { display: none !important; }';
				wp_add_inline_style( 'uag-admin-css', $custom_css );
			}
		}

		/**
		 * Enqueue the needed CSS/JS for the plugin / popup page.
		 *
		 * @since 2.16.0
		 * @return void
		 */
		public function notice_styles_scripts_upgrade_pro() {
			$screen = get_current_screen();

			if ( $screen && ( 'plugins' === $screen->base || 'spectra-popup' === $screen->post_type ) ) {
				wp_enqueue_style( 'uag-admin-spectra-pro-upgrade-pro-css', UAGB_URL . 'admin/assets/admin-notice-spectra-pro-upgrade-pro.css', array(), UAGB_VER );
			}
			// Redirect to Pro pricing page when click on Get Spectra Pro button.
			if ( $screen && 'toplevel_page_spectra' === $screen->base ) {
				?>
					<script type="text/javascript">
						document.addEventListener('DOMContentLoaded', function() {
							let upgradeLink = document.querySelector('a[href$="&path=upgrade-now"]');
							if (upgradeLink) {
								upgradeLink.setAttribute('target', '_blank');
								upgradeLink.setAttribute('rel', 'noreferrer');
								upgradeLink.addEventListener('click', function(e) {
									e.preventDefault();
									window.open( <?php echo esc_url( \UAGB_Admin_Helper::get_spectra_pro_url( '/pricing/', 'free-plugin', 'dashboard', 'setting' ) ); ?>, '_blank', 'noopener,noreferrer' );
								});
							}
						});
					</script>
				<?php
			}
		}

		/**
		 * Enqueue script to reload the page on migration complete.
		 * 
		 * @since 2.13.9
		 * @return void
		 */
		public function reload_on_migration_complete() {
			?>
			<script type="text/javascript">
				document.addEventListener('DOMContentLoaded', function() {
					var triggerButton = document.getElementById('trigger_migration');

					if (triggerButton) {
						triggerButton.addEventListener('click', function(e) {
							e.preventDefault();

							fetch('<?php echo esc_html( admin_url( 'admin-ajax.php' ) ); ?>', {
								method: 'POST',
								headers: {
									'Content-Type': 'application/x-www-form-urlencoded',
								},
								body: 'action=uag_migrate&security=' + encodeURIComponent('<?php echo esc_html( wp_create_nonce( 'spectra-migration' ) ); ?>'),
							})
							.then(function(response) {
								return response.json();
							})
							.then(function(data) {
								if (data.success) {
									location.reload();
									// Optionally, reload the page or perform additional actions.
								} else {
									return;
								}
							})
							.catch(function(error) {
								console.error('Error occurred during migration:', error);
							});
						});
					}
				});
			</script>
			<?php
		}


		/**
		 * Rank Math SEO filter to add kb-elementor to the TOC list.
		 *
		 * @param array $plugins TOC plugins.
		 */
		public function toc_plugin( $plugins ) {
			$plugins['ultimate-addons-for-gutenberg/ultimate-addons-for-gutenberg.php'] = 'Spectra';
			return $plugins;
		}
	}

	UAGB_Admin::get_instance();
}
PK��][�[��;n;n;ultimate-addons-for-gutenberg/classes/class-uagb-loader.phpnu�[���<?php
/**
 * UAGB Loader.
 *
 * @package UAGB
 */

use UAGB\Admin_Helper;
use \ZipAI\Classes\Module as Zip_Ai_Module;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Loader' ) ) {

	/**
	 * Class UAGB_Loader.
	 */
	final class UAGB_Loader {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 * Post assets object cache
		 *
		 * @var array
		 */
		public $post_assets_objs = array();

		/**
		 * Block analytics instance
		 *
		 * @var UAGB_Block_Analytics
		 */
		public $block_analytics;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();

				/**
				 * Spectra loaded.
				 *
				 * Fires when Spectra was fully loaded and instantiated.
				 *
				 * @since 2.1.0
				 */
				do_action( 'spectra_core_loaded' );
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {

			// Activation hook.
			register_activation_hook( UAGB_FILE, array( $this, 'activation_reset' ) );

			// deActivation hook.
			register_deactivation_hook( UAGB_FILE, array( $this, 'deactivation_reset' ) );

			$this->define_constants();

			$this->loader();

			add_action( 'after_setup_theme', array( $this, 'load_compatibility' ) );

			add_action( 'plugins_loaded', array( $this, 'load_plugin' ) );

			add_action( 'init', array( $this, 'init_actions' ) );

			/*
			* BSF Analytics.
			*/
			if ( ! class_exists( 'BSF_Analytics_Loader' ) ) {
				require_once UAGB_DIR . 'lib/bsf-analytics/class-bsf-analytics-loader.php';
			}

			if ( class_exists( 'BSF_Analytics_Loader' ) && is_callable( 'BSF_Analytics_Loader::get_instance' ) ) {
				$spectra_bsf_analytics = BSF_Analytics_Loader::get_instance();

				$spectra_bsf_analytics->set_entity(
					array(
						'spectra' => array(
							'product_name'        => 'Spectra',
							'path'                => UAGB_DIR . 'lib/bsf-analytics',
							'author'              => 'Spectra by Brainstorm Force',
							'time_to_display'     => '+24 hours',
							'deactivation_survey' => apply_filters(
								'spectra_deactivation_survey_data',
								array(
									array(
										'id'              => 'deactivation-survey-ultimate-addons-for-gutenberg',
										'popup_logo'      => esc_url( plugin_dir_url( __DIR__ ) . 'assets/images/logos/spectra.svg' ),
										'plugin_slug'     => 'ultimate-addons-for-gutenberg',
										'popup_title'     => 'Quick Feedback',
										'support_url'     => 'https://wpspectra.com/contact/',
										'popup_description' => 'If you have a moment, please share why you are deactivating Spectra:',
										'show_on_screens' => array( 'plugins' ),
										'plugin_version'  => UAGB_VER,
									),
								)
							),
							'hide_optin_checkbox' => true,
						),
					)
				);
			}

			add_filter( 'bsf_core_stats', array( $this, 'spectra_get_specific_stats' ) );

			// Initialize block analytics after BSF analytics is set up.
			$this->block_analytics = UAGB_Block_Analytics::get_instance();
		}

		/**
		 * Defines all constants
		 *
		 * @since 1.0.0
		 */
		public function define_constants() {
			define( 'UAGB_BASE', plugin_basename( UAGB_FILE ) );
			define( 'UAGB_DIR', plugin_dir_path( UAGB_FILE ) );
			define( 'UAGB_URL', plugins_url( '/', UAGB_FILE ) );
			define( 'UAGB_VER', '2.19.15' );
			define( 'UAGB_MODULES_DIR', UAGB_DIR . 'modules/' );
			define( 'UAGB_MODULES_URL', UAGB_URL . 'modules/' );
			define( 'UAGB_SLUG', 'spectra' );
			define( 'UAGB_URI', trailingslashit( 'https://wpspectra.com/' ) );

			if ( ! defined( 'UAGB_TABLET_BREAKPOINT' ) ) {
				define( 'UAGB_TABLET_BREAKPOINT', '976' );
			}
			if ( ! defined( 'UAGB_MOBILE_BREAKPOINT' ) ) {
				define( 'UAGB_MOBILE_BREAKPOINT', '767' );
			}

			if ( ! defined( 'UAGB_UPLOAD_DIR_NAME' ) ) {
				define( 'UAGB_UPLOAD_DIR_NAME', 'uag-plugin' );
			}

			$upload_dir = wp_upload_dir( null, false );

			if ( ! defined( 'UAGB_UPLOAD_DIR' ) ) {
				define( 'UAGB_UPLOAD_DIR', $upload_dir['basedir'] . '/' . UAGB_UPLOAD_DIR_NAME . '/' );
			}

			if ( ! defined( 'UAGB_UPLOAD_URL' ) ) {
				define( 'UAGB_UPLOAD_URL', $upload_dir['baseurl'] . '/' . UAGB_UPLOAD_DIR_NAME . '/' );
			}

			define( 'UAGB_ASSET_VER', get_option( '__uagb_asset_version', UAGB_VER ) );
			define( 'UAGB_CSS_EXT', defined( 'WP_DEBUG' ) && WP_DEBUG ? '.css' : '.min.css' );
			define( 'UAGB_JS_EXT', defined( 'WP_DEBUG' ) && WP_DEBUG ? '.js' : '.min.js' );
		}

		/**
		 * Loads Other files.
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function loader() {

			require_once UAGB_DIR . 'classes/utils.php';
			require_once UAGB_DIR . 'classes/class-spectra-block-prioritization.php';
			require_once UAGB_DIR . 'classes/class-uagb-install.php';
			require_once UAGB_DIR . 'classes/class-uagb-filesystem.php';
			require_once UAGB_DIR . 'classes/class-uagb-update.php';
			require_once UAGB_DIR . 'classes/class-uagb-block.php';
			require_once UAGB_DIR . 'classes/migration/class-spectra-migrate-blocks.php';
			require_once UAGB_DIR . 'classes/migration/class-uagb-background-process.php';
			require_once UAGB_DIR . 'classes/analytics/class-uagb-block-analytics.php';


			/**
			 * Register Commands.
			 */
			if ( defined( 'WP_CLI' ) && WP_CLI ) {
				require_once UAGB_DIR . 'classes/commands/class-spectra-regenerate-assets-command.php';
			}

			if ( is_admin() ) {
				require_once UAGB_DIR . 'classes/class-uagb-beta-updates.php';
				require_once UAGB_DIR . 'classes/class-uagb-rollback.php';
			}
		}

		/**
		 * Loads plugin files.
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function load_plugin() {

			require_once UAGB_DIR . 'classes/class-uagb-scripts-utils.php';
			require_once UAGB_DIR . 'classes/class-uagb-block-module.php';
			require_once UAGB_DIR . 'classes/class-uagb-admin-helper.php';
			require_once UAGB_DIR . 'classes/class-uagb-helper.php';
			require_once UAGB_DIR . 'blocks-config/blocks-config.php';
			require_once UAGB_DIR . 'lib/astra-notices/class-astra-notices.php';
			require_once UAGB_DIR . 'lib/class-uagb-zipwp-images.php';
			require_once UAGB_DIR . 'lib/class-uagb-nps-survey.php';
			/**
			 * UTM Analytics lib file.
			 */
			require_once UAGB_DIR . 'lib/class-uagb-utm-analytics.php';

			if ( is_admin() ) {
				require_once UAGB_DIR . 'classes/class-uagb-admin.php';
			}

			require_once UAGB_DIR . 'classes/class-uagb-post-assets.php';
			require_once UAGB_DIR . 'classes/class-uagb-front-assets.php';
			require_once UAGB_DIR . 'classes/class-uagb-init-blocks.php';
			require_once UAGB_DIR . 'classes/class-uagb-rest-api.php';
			require_once UAGB_DIR . 'classes/class-uagb-visibility.php';
			require_once UAGB_DIR . 'classes/class-uagb-caching.php';
			require_once UAGB_DIR . 'classes/class-uagb-nps-notice.php';

			if ( 'twentyseventeen' === get_template() ) {
				require_once UAGB_DIR . 'classes/class-uagb-twenty-seventeen-compatibility.php';
			}

			if ( 'twentysixteen' === get_template() ) {
				require_once UAGB_DIR . 'compatibility/class-uagb-twenty-sixteen-compatibility.php';
			}

			require_once UAGB_DIR . 'admin-core/admin-loader.php';

			add_filter( 'rest_pre_dispatch', array( $this, 'rest_pre_dispatch' ), 10, 3 );

			$enable_templates_button = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_templates_button', 'yes' );

			// Sync the Zip AI Library textdomain with the Spectra textdomain.
			add_filter( 'zip_ai_library_textdomain', array( $this, 'sync_library_textdomain' ) );

			if ( 'yes' === $enable_templates_button ) {
				require_once UAGB_DIR . 'lib/class-uagb-ast-block-templates.php';
			} else {
				add_filter( 'ast_block_templates_disable', '__return_true' );
			}

			// Add the filters for the Zip AI Library and include it.
			add_filter( 'zip_ai_collab_product_details', array( $this, 'add_zip_ai_collab_product_details' ), 20, 1 );
			add_filter( 'zip_ai_modules', array( $this, 'add_zip_ai_modules' ), 20, 1 );
			add_filter( 'zip_ai_auth_redirection_flag', '__return_true', 20, 1 );
			add_filter( 'zip_ai_auth_redirection_url', array( $this, 'add_zip_ai_redirection_url' ), 20, 1 );
			add_filter( 'zip_ai_revoke_redirection_url', array( $this, 'add_zip_ai_redirection_url' ), 20, 1 );

			require_once UAGB_DIR . 'lib/class-uagb-zip-ai.php';
		}

		/**
		 * Sync the Zip AI Library textdomain with the Spectra textdomain.
		 *
		 * @param string $textdomain The textdomain for the Zip AI Library.
		 * @since 2.13.9
		 * @return string The Spectra textdomain.
		 */
		public function sync_library_textdomain( $textdomain ) {
			return 'ultimate-addons-for-gutenberg';
		}

		/**
		 * Loads theme compatibility files.
		 *
		 * @since 2.5.1
		 *
		 * @return void
		 */
		public function load_compatibility() {
			require_once UAGB_DIR . 'classes/class-uagb-fse-fonts-compatibility.php';
		}
		/**
		 * Fix REST API issue with blocks registered via PHP register_block_type.
		 *
		 * @since 1.25.2
		 *
		 * @param mixed  $result  Response to replace the requested version with.
		 * @param object $server  Server instance.
		 * @param object $request Request used to generate the response.
		 *
		 * @return array Returns updated results.
		 */
		public function rest_pre_dispatch( $result, $server, $request ) {

			if ( strpos( $request->get_route(), '/wp/v2/block-renderer' ) !== false && isset( $request['attributes'] ) ) {

					$attributes = $request['attributes'];

				if ( isset( $attributes['UAGUserRole'] ) ) {
					unset( $attributes['UAGUserRole'] );
				}

				if ( isset( $attributes['UAGBrowser'] ) ) {
					unset( $attributes['UAGBrowser'] );
				}

				if ( isset( $attributes['UAGSystem'] ) ) {
					unset( $attributes['UAGSystem'] );
				}

				if ( isset( $attributes['UAGDisplayConditions'] ) ) {
					unset( $attributes['UAGDisplayConditions'] );
				}

				if ( isset( $attributes['UAGHideDesktop'] ) ) {
					unset( $attributes['UAGHideDesktop'] );
				}

				if ( isset( $attributes['UAGHideMob'] ) ) {
					unset( $attributes['UAGHideMob'] );
				}

				if ( isset( $attributes['UAGHideTab'] ) ) {
					unset( $attributes['UAGHideTab'] );
				}

				if ( isset( $attributes['UAGLoggedIn'] ) ) {
					unset( $attributes['UAGLoggedIn'] );
				}

				if ( isset( $attributes['UAGLoggedOut'] ) ) {
					unset( $attributes['UAGLoggedOut'] );
				}

				if ( isset( $attributes['UAGDay'] ) ) {
					unset( $attributes['UAGDay'] );
				}

				if ( isset( $attributes['zIndex'] ) ) {
					unset( $attributes['zIndex'] );
				}

				if ( isset( $attributes['UAGResponsiveConditions'] ) ) {
					unset( $attributes['UAGResponsiveConditions'] );
				}

				if ( isset( $attributes['UAGAnimationType'] ) ) {
					unset( $attributes['UAGAnimationType'] );
				}

				if ( isset( $attributes['UAGAnimationTime'] ) ) {
					unset( $attributes['UAGAnimationTime'] );
				}

				if ( isset( $attributes['UAGAnimationDelay'] ) ) {
					unset( $attributes['UAGAnimationDelay'] );
				}

				if ( isset( $attributes['UAGAnimationEasing'] ) ) {
					unset( $attributes['UAGAnimationEasing'] );
				}

				if ( isset( $attributes['UAGAnimationRepeat'] ) ) {
					unset( $attributes['UAGAnimationRepeat'] );
				}

				if ( isset( $attributes['UAGAnimationDelayInterval'] ) ) {
					unset( $attributes['UAGAnimationDelayInterval'] );
				}

				if ( isset( $attributes['UAGAnimationDoNotApplyToContainer'] ) ) {
					unset( $attributes['UAGAnimationDoNotApplyToContainer'] );
				}

				if ( isset( $attributes['UAGStickyLocation'] ) ) {
					unset( $attributes['UAGStickyLocation'] );
				}

				if ( isset( $attributes['UAGStickyRestricted'] ) ) {
					unset( $attributes['UAGStickyRestricted'] );
				}

				if ( isset( $attributes['UAGStickyOffset'] ) ) {
					unset( $attributes['UAGStickyOffset'] );
				}

				if ( isset( $attributes['UAGPosition'] ) ) {
					unset( $attributes['UAGPosition'] );
				}

					$request['attributes'] = $attributes;

			}

			return $result;
		}

		/**
		 * Check if Gutenberg is active
		 *
		 * @since 1.1.0
		 *
		 * @return boolean
		 */
		public function is_gutenberg_active() {
			return function_exists( 'register_block_type' );
		}

		/**
		 * Load Ultimate Gutenberg Text Domain.
		 * This will load the translation textdomain depending on the file priorities.
		 *      1. Global Languages /wp-content/languages/ultimate-addons-for-gutenberg/ folder
		 *      2. Local directory /wp-content/plugins/ultimate-addons-for-gutenberg/languages/ folder
		 *
		 * @since  1.0.0
		 * @return void
		 */
		public function load_textdomain() {

			/**
			 * Filters the languages directory path to use for AffiliateWP.
			 *
			 * @param string $lang_dir The languages directory path.
			 */
			$lang_dir = apply_filters( 'uagb_languages_directory', UAGB_ROOT . '/languages/' );

			load_plugin_textdomain( 'ultimate-addons-for-gutenberg', false, $lang_dir );
		}

		/**
		 * Fires admin notice when Gutenberg is not installed and activated.
		 *
		 * @since 1.0.0
		 *
		 * @return void
		 */
		public function uagb_fails_to_load() {

			if ( ! current_user_can( 'install_plugins' ) ) {
				return;
			}

			$class = 'notice notice-error';
			/* translators: %s: html tags */
			$message = sprintf( __( 'The %1$sSpectra%2$s plugin requires %1$sGutenberg%2$s plugin installed & activated.', 'ultimate-addons-for-gutenberg' ), '<strong>', '</strong>' );

			$action_url   = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=gutenberg' ), 'install-plugin_gutenberg' );
			$button_label = __( 'Install Gutenberg', 'ultimate-addons-for-gutenberg' );

			$button = '<p><a href="' . $action_url . '" class="button-primary">' . $button_label . '</a></p><p></p>';

			printf( '<div class="%1$s"><p>%2$s</p>%3$s</div>', esc_attr( $class ), wp_kses_post( $message ), wp_kses_post( $button ) );
		}

		/**
		 * Activation Reset
		 */
		public function activation_reset() {
			$has_activated_before = get_option( '__uagb_activated_before', false );

			if ( ! $has_activated_before ) {
				uagb_install()->create_files();
		
				update_option( '__uagb_do_redirect', true );
				update_option( '__uagb_activated_before', true );
				update_option( '__uagb_asset_version', time() );
			} else {
				update_option( '__uagb_do_redirect', false );
			}
		}

		/**
		 * Deactivation Reset
		 */
		public function deactivation_reset() {
			update_option( '__uagb_do_redirect', false );
		}

		/**
		 * Init actions
		 *
		 * @since 2.0.0
		 *
		 * @return void
		 */
		public function init_actions() {

			// Check if Gutenberg is active, if not, don't load anything.
			// TO DO: Add an admin notice to inform the user that Gutenberg is not active.
			if ( ! $this->is_gutenberg_active() ) {
				add_action( 'admin_notices', array( $this, 'uagb_fails_to_load' ) );
				return;
			}

			// Load the text domain for translation.
			$this->load_textdomain();

			// Register all UAG Lite Blocks. This is done by calling the register_blocks method
			// on the uagb_block() instance. This method is responsible for registering all the
			// blocks in the plugin.
			uagb_block()->register_blocks();

			$theme_folder = get_template();

			if ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) {
				if ( 'twentytwentytwo' === $theme_folder ) {
					require_once UAGB_DIR . 'compatibility/class-uagb-twenty-twenty-two-compatibility.php';
				}
			}

			if ( 'astra' === $theme_folder ) {
				require_once UAGB_DIR . 'compatibility/class-uagb-astra-compatibility.php';
			}

			register_meta(
				'post',
				'_uag_custom_page_level_css',
				array(
					'show_in_rest'      => true,
					'type'              => 'string',
					'single'            => true,
					'auth_callback'     => function() {
						return current_user_can( 'edit_posts' );
					},
					'sanitize_callback' => function( $meta_value ) {
						return UAGB_Admin_Helper::sanitize_inline_css( $meta_value );
					},
				)
			);

			// This class is loaded from blocks config.
			UAGB_Popup_Builder::generate_scripts();

			UAGB_Update::migrate_visibility_mode();

			// Adds filters to modify the blocks allowed in excerpts.
			add_filter( 'excerpt_allowed_blocks', array( $this, 'add_blocks_to_excerpt' ), 20 );
			add_filter( 'excerpt_allowed_wrapper_blocks', array( $this, 'add_wrapper_blocks_to_excerpt' ), 20 );
			add_filter( 'uagb_blocks_allowed_in_excerpt', array( $this, 'add_uagb_blocks_to_excerpt' ), 20, 2 );
			$this->get_regenerate_assets_on_migration();
		}

		/**
		 * Adds specified blocks to the list of allowed blocks in excerpts.
		 *
		 * @param array $allowed    List of allowed blocks in excerpts.
		 * @since 2.6.0
		 * @return array            Modified list of allowed blocks in excerpts.
		 */
		public function add_blocks_to_excerpt( $allowed ) {
			return apply_filters( 'uagb_blocks_allowed_in_excerpt', $allowed, array( 'uagb/advanced-heading' ) );
		}

		/**
		 * Adds specified wrapper blocks to the list of allowed blocks in excerpts.
		 *
		 * @param array $allowed    List of allowed blocks in excerpts.
		 * @since 2.6.0
		 * @return array            Modified list of allowed blocks in excerpts.
		 */
		public function add_wrapper_blocks_to_excerpt( $allowed ) {
			return apply_filters(
				'uagb_blocks_allowed_in_excerpt',
				$allowed,
				array(
					'uagb/container',
					'uagb/columns',
					'uagb/column',
				)
			);
		}

		/**
		 * Adds specified UAGB blocks to the list of allowed blocks in excerpts.
		 *
		 * @param array $excerpt_blocks     List of allowed blocks in excerpts.
		 * @param array $blocks_to_add      Blocks to add to the list of allowed blocks in excerpts.
		 * @since 2.6.0
		 * @return array                    The merged excerpt blocks array if both parameters are arrays, or the original excerpt blocks if either parameter is not an array.
		 */
		public function add_uagb_blocks_to_excerpt( $excerpt_blocks, $blocks_to_add ) {
			if ( is_array( $excerpt_blocks ) && is_array( $blocks_to_add ) ) {
				return array_merge( $excerpt_blocks, $blocks_to_add );
			}

			// If either parameter is not an array, return the original excerpt blocks.
			return $excerpt_blocks;
		}

		/**
		 * Generate assets on migration.
		 *
		 * @since 2.7.10
		 * @return void
		 */
		public function get_regenerate_assets_on_migration() {
			// Parse the host (domain/hostname) from the site URL.
			$site_host = wp_parse_url( site_url(), PHP_URL_HOST );

			// Check if $site_host is empty or not a string. If true, return and exit the function.
			if ( empty( $site_host ) || ! is_string( $site_host ) ) {
				return;
			}

			// Remove 'www.' from the domain.
			$domain = str_replace( 'www.', '', $site_host );

			// Replace dots (.) with dashes (-) in the domain to create $site_domain.
			$site_domain = str_replace( '.', '-', $domain );

			// Retrieve the stored domain from admin settings.
			$stored_domain = \UAGB_Admin_Helper::get_admin_settings_option( 'uagb_site_url', '' );

			// If the stored domain is empty, update the 'uagb_site_url' option in admin settings with the modified site domain and return.
			if ( empty( $stored_domain ) ) {
				\UAGB_Admin_Helper::update_admin_settings_option( 'uagb_site_url', $site_domain );
				return;
			}

			// If the stored domain is different from the current site domain, update the '__uagb_asset_version' option with the current timestamp.
			if ( $stored_domain !== $site_domain ) {
				\UAGB_Admin_Helper::update_admin_settings_option( '__uagb_asset_version', time() );
			}
		}

		/**
		 * Add the Zip AI Collab Product Details.
		 *
		 * @param mixed $product_details The previous product details, if any.
		 * @since 2.10.2
		 * @return array The Spectra product details.
		 */
		public function add_zip_ai_collab_product_details( $product_details ) {
			// Overwrite the product details that were of a lower priority, if any.
			$product_details = array(
				'product_name'                          => 'Spectra',
				'product_slug'                          => 'spectra',
				'product_logo'                          => file_get_contents( UAGB_DIR . 'assets/images/logos/spectra.svg' ),
				'product_primary_color'                 => '#5733ff',
				'ai_assistant_learn_more_url'           => admin_url( 'admin.php?page=spectra&path=ai-features' ),
				'ai_assistant_authorized_disable_url'   => admin_url( 'admin.php?page=spectra&path=ai-features&manage-features=yes' ),
				'ai_assistant_unauthorized_disable_url' => admin_url( 'admin.php?page=spectra&path=ai-features&manage-features=yes' ),
			);
			// Return the Spectra product details.
			return $product_details;
		}

		/**
		 * Add the Zip AI Modules that come with Spectra.
		 *
		 * @param mixed $modules The modules for Zip AI, if any.
		 * @since 2.10.2
		 * @return array The Spectra default modules.
		 */
		public function add_zip_ai_modules( $modules ) {
			// If the filtered modules is not an array, make it one.
			$modules = is_array( $modules ) ? $modules : array();

			// List of module names to enable.
			$modules_to_enable = array( 'ai_assistant', 'ai_design_copilot' );

			// Ensure each module in the list is enabled.
			foreach ( $modules_to_enable as $module_name ) {
				// @phpcs:ignore WordPress.NamingConventions.ValidVariableName
				if ( class_exists( '\ZipAI\Classes\Module' ) && method_exists( '\ZipAI\Classes\Module', 'force_enabled' ) ) {
					\ZipAI\Classes\Module::force_enabled( $modules, $module_name );
				}
			}

			// Return the Spectra default modules.
			return $modules;
		}

		/**
		 * Add the Zip AI Authorization/Revoke URL.
		 *
		 * @param mixed $auth_url The previous authorization URL, if any.
		 * @since 2.10.2
		 * @return string The Spectra redirection URL.
		 */
		public function add_zip_ai_redirection_url( $auth_url ) {
			return admin_url( 'admin.php?page=spectra&path=ai-features' );
		}

		/**
		 * Create an array of block status.
		 *
		 * @return array $block_status_data An associative array of block slug => status.
		 *                                  The status can be either 'enabled' or 'disabled'.
		 */
		public function create_block_status_array() {
			$saved_blocks      = (array) \UAGB_Admin_Helper::get_admin_settings_option( '_uagb_blocks' );
			$block_manager     = uagb_block();
			$blocks            = ( method_exists( $block_manager, 'get_blocks' ) )
			? (array) $block_manager->get_blocks()
			: array();
			$block_status_data = array();
			if ( is_array( $blocks ) ) {
				foreach ( $blocks as $slug => $data ) {
					$_slug = str_replace( 'uagb/', '', $slug );
			
					// Skip child blocks.
					if ( isset( $blocks[ $slug ]['is_child'] ) ) {
						continue;
					}
			
					// Initialize status array.
					$block_status_data[ $_slug ] = array();
			
					// Check saved status.
					if ( isset( $saved_blocks[ $_slug ] ) ) {
						$block_status_data[ $_slug ] = 
							'disabled' === $saved_blocks[ $_slug ] ? 'disabled' : 'enabled';
					} else {
						$block_status_data[ $_slug ] = 'enabled';
					}
				}
			}

			return $block_status_data;
		}

		/**
		 * Generates global setting data for analytics
		 *
		 * @since 1.4.0
		 * @return array
		 */
		public function global_settings_data() {
			$global_data = array();
			// Prepare to get the Zip AI Co-pilot modules.
			$zip_ai_modules                               = array();
			$bsf_internal_referrer                        = get_option( 'bsf_product_referers', array() );
			$bsf_internal_referrer                        = (array) $bsf_internal_referrer;
			$global_data['internal_referer']              = isset( $bsf_internal_referrer['ultimate-addons-for-gutenberg'] ) 
				? $bsf_internal_referrer['ultimate-addons-for-gutenberg'] 
				: '';
			$global_data['beta']                          = get_option( 'uagb_beta' );
			$global_data['enable_legacy_blocks']          = get_option( 'uag_enable_legacy_blocks' );
			$global_data['file_generation']               = get_option( '_uagb_allow_file_generation' );
			$global_data['templates_button']              = get_option( 'uag_enable_templates_button' );
			$global_data['on_page_css_button']            = get_option( 'uag_enable_on_page_css_button' );
			$global_data['block_condition']               = get_option( 'uag_enable_block_condition' );
			$global_data['quick_action_sidebar']          = get_option( 'uag_enable_quick_action_sidebar' );
			$global_data['gbs_extension']                 = get_option( 'uag_enable_gbs_extension' );
			$global_data['block_responsive']              = get_option( 'uag_enable_block_responsive' );
			$global_data['load_select_font_globally']     = get_option( 'uag_load_select_font_globally' );
			$global_data['load_gfonts_locally']           = get_option( 'uag_load_gfonts_locally' );
			$global_data['collapse_panels']               = get_option( 'uag_collapse_panels' );
			$global_data['copy_paste']                    = get_option( 'uag_copy_paste' );
			$global_data['preload_local_fonts']           = get_option( 'uag_preload_local_fonts' );
			$global_data['visibility_mode']               = get_option( 'uag_visibility_mode' );
			$global_data['container_global_padding']      = get_option( 'uag_container_global_padding' );
			$global_data['container_global_elements_gap'] = get_option( 'uag_container_global_elements_gap' );
			$global_data['btn_inherit_from_theme']        = get_option( 'uag_btn_inherit_from_theme' );
			$global_data['blocks_editor_spacing']         = get_option( 'uag_blocks_editor_spacing' );
			$global_data['load_font_awesome_5']           = get_option( 'uag_load_font_awesome_5' );
			$global_data['auto_block_recovery']           = get_option( 'uag_auto_block_recovery' );
			$global_data['load_fse_font_globally']        = get_option( 'uag_load_fse_font_globally' );
			// If the Zip AI Helper is available, get the required modules and their states.
			if ( class_exists( '\ZipAI\Classes\Module' ) ) {
				$zip_ai_modules = Zip_Ai_Module::get_all_modules();
				// Restructure AI-related data.
				if ( isset( $zip_ai_modules['ai_assistant'] ) ) {
					$global_data['ai_assistant'] = $zip_ai_modules['ai_assistant']['status'];
				}
				
				if ( isset( $zip_ai_modules['ai_design_copilot'] ) ) {
					$global_data['ai_design_copilot'] = $zip_ai_modules['ai_design_copilot']['status'];
				}
				
				// Merge the rest of the modules.
				$global_data = array_merge_recursive(
					$global_data,
					array_filter(
						$zip_ai_modules,
						function( $key ) {
							return ! in_array( $key, array( 'ai_assistant', 'ai_design_copilot' ) );
						},
						ARRAY_FILTER_USE_KEY
					)
				);
			}
			// Return the global data.
			return $global_data;
		}

		/**
		 * Pass spectra specific stats to BSF analytics.
		 *
		 * @since 2.19.5
		 * @param array $default_stats Default stats array.
		 * @return array $default_stats Default stats with spectra specific stats array.
		 */
		public function spectra_get_specific_stats( $default_stats ) {
			$default_stats['plugin_data']['spectra'] = array(
				'version'              => UAGB_VER,
				'old_user_less_than_2' => get_option( 'uagb-old-user-less-than-2' ), // Retrieves current user is old user less than 2 or not.
				'migration_status'     => get_option( 'uag_migration_status' ), // Retrieves migration status.
			);
			$default_stats['plugin_data']['spectra'] = array_merge_recursive( $default_stats['plugin_data']['spectra'], $this->global_settings_data() );
			$default_stats['plugin_data']['spectra'] = array_merge_recursive( $default_stats['plugin_data']['spectra'], $this->create_block_status_array() );
			
			// Add advanced block usage statistics.
			if ( is_object( $this->block_analytics ) ) {
				$advanced_stats = $this->block_analytics->get_block_stats_for_analytics();
				if ( ! empty( $advanced_stats ) ) {
					$default_stats['plugin_data']['spectra'] = array_merge_recursive( $default_stats['plugin_data']['spectra'], $advanced_stats );
				}
			}

			return $default_stats;
		}
	}
}

/**
 *  Prepare if class 'UAGB_Loader' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Loader::get_instance();

/**
 * Load main object
 *
 * @since 2.0.0
 *
 * @return object
 */
function uagb() {
	return UAGB_Loader::get_instance();
}
PK��][<̅Y8Y8Xultimate-addons-for-gutenberg/classes/analytics/class-uagb-incremental-block-tracker.phpnu�[���<?php
/**
 * UAGB Incremental Block Tracker.
 *
 * Class to track block usage changes in real-time when posts are saved.
 *
 * @since 2.19.13
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Incremental_Block_Tracker' ) ) {

	/**
	 * Class UAGB_Incremental_Block_Tracker
	 *
	 * Handles real-time block usage tracking when posts are saved.
	 *
	 * @since 2.19.13
	 * @package UAGB
	 */
	class UAGB_Incremental_Block_Tracker {

		/**
		 * Member Variable
		 *
		 * @var UAGB_Incremental_Block_Tracker|null
		 * @since 2.19.13
		 */
		private static $instance;

		/**
		 * List of all Spectra blocks to track (Core + Pro).
		 *
		 * @var array
		 * @since 2.19.13
		 */
		private $spectra_blocks = array(
			// Spectra Core Blocks.
			'uagb/advanced-heading',
			'uagb/blockquote',
			'uagb/buttons',
			'uagb/buttons-child',
			'uagb/call-to-action',
			'uagb/cf7-styler',
			'uagb/column',
			'uagb/columns',
			'uagb/container',
			'uagb/content-timeline',
			'uagb/content-timeline-child',
			'uagb/countdown',
			'uagb/counter',
			'uagb/faq',
			'uagb/faq-child',
			'uagb/forms',
			'uagb/forms-accept',
			'uagb/forms-checkbox',
			'uagb/forms-date',
			'uagb/forms-email',
			'uagb/forms-hidden',
			'uagb/forms-name',
			'uagb/forms-phone',
			'uagb/forms-radio',
			'uagb/forms-select',
			'uagb/forms-textarea',
			'uagb/forms-toggle',
			'uagb/forms-url',
			'uagb/gf-styler',
			'uagb/google-map',
			'uagb/how-to',
			'uagb/how-to-step',
			'uagb/icon',
			'uagb/icon-list',
			'uagb/icon-list-child',
			'uagb/image',
			'uagb/image-gallery',
			'uagb/info-box',
			'uagb/inline-notice',
			'uagb/lottie',
			'uagb/marketing-button',
			'uagb/modal',
			'uagb/popup-builder',
			'uagb/post-button',
			'uagb/post-carousel',
			'uagb/post-excerpt',
			'uagb/post-grid',
			'uagb/post-image',
			'uagb/post-masonry',
			'uagb/post-meta',
			'uagb/post-taxonomy',
			'uagb/post-timeline',
			'uagb/post-title',
			'uagb/restaurant-menu',
			'uagb/restaurant-menu-child',
			'uagb/review',
			'uagb/section',
			'uagb/separator',
			'uagb/slider',
			'uagb/slider-child',
			'uagb/social-share',
			'uagb/social-share-child',
			'uagb/star-rating',
			'uagb/sure-cart-checkout',
			'uagb/sure-cart-product',
			'uagb/sure-forms',
			'uagb/table-of-contents',
			'uagb/tabs',
			'uagb/tabs-child',
			'uagb/taxonomy-list',
			'uagb/team',
			'uagb/testimonial',
			'uagb/wp-search',

			// Spectra Pro Blocks.
			'uagb/instagram-feed',
			'uagb/login',
			'uagb/loop-builder',
			'uagb/loop-category',
			'uagb/loop-pagination',
			'uagb/loop-reset',
			'uagb/loop-search',
			'uagb/loop-sort',
			'uagb/loop-wrapper',
			'uagb/register',
			'uagb/register-email',
			'uagb/register-first-name',
			'uagb/register-last-name',
			'uagb/register-password',
			'uagb/register-reenter-password',
			'uagb/register-terms',
			'uagb/register-username',
		);

		/**
		 * Initiator
		 *
		 * @since 2.19.13
		 * @return UAGB_Incremental_Block_Tracker
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function __construct() {
			// Hook into post save actions.
			add_action( 'save_post', array( $this, 'track_block_changes_on_save' ), 10, 2 );
			add_action( 'before_delete_post', array( $this, 'track_block_removal_on_delete' ) );
			add_action( 'wp_trash_post', array( $this, 'track_block_removal_on_trash' ) );
			add_action( 'untrash_post', array( $this, 'track_block_addition_on_untrash' ) );
		}

		/**
		 * Track block changes when a post is saved.
		 *
		 * @param int     $post_id Post ID.
		 * @param WP_Post $post    Post object.
		 * @since 2.19.13
		 * @return void
		 */
		public function track_block_changes_on_save( $post_id, $post ) {
			// Skip if analytics is not enabled.
			if ( get_option( 'spectra_analytics_optin', 'no' ) !== 'yes' ) {
				return;
			}

			// Skip autosaves and revisions.
			if ( wp_is_post_autosave( $post_id ) || wp_is_post_revision( $post_id ) ) {
				return;
			}

			// Only track public post types.
			$public_post_types = get_post_types( array( 'public' => true ), 'names' );
			if ( ! in_array( $post->post_type, $public_post_types, true ) ) {
				return;
			}

			// Skip if content hasn't changed (performance optimization).
			static $last_processed_content = array();
			$content_hash                  = md5( $post->post_content );
			if ( isset( $last_processed_content[ $post_id ] ) && $last_processed_content[ $post_id ] === $content_hash ) {
				return;
			}
			$last_processed_content[ $post_id ] = $content_hash;

			// Get the previous block counts for this post (what was in this post before saving).
			$previous_blocks = get_post_meta( $post_id, '_uagb_previous_block_counts', true );
			$previous_blocks = is_array( $previous_blocks ) ? $previous_blocks : array();

			// Count current blocks in the post (what's in this post after saving).
			$current_blocks = $this->count_blocks_in_post( $post->post_content );

			// Update global stats with the correct logic:
			// 1. Subtract the old blocks from global count (remove what this post had before)
			// 2. Add the new blocks to global count (add what this post has now).
			$this->update_global_stats_correctly( $previous_blocks, $current_blocks );

			// Store current block counts for next comparison.
			update_post_meta( $post_id, '_uagb_previous_block_counts', $current_blocks );
		}

		/**
		 * Track block removal when a post is deleted.
		 *
		 * @param int $post_id Post ID being deleted.
		 * @since 2.19.13
		 * @return void
		 */
		public function track_block_removal_on_delete( $post_id ) {
			// Skip if analytics is not enabled.
			if ( get_option( 'spectra_analytics_optin', 'no' ) !== 'yes' ) {
				return;
			}

			$post = get_post( $post_id );
			if ( ! $post ) {
				return;
			}

			// Only track public post types.
			$public_post_types = get_post_types( array( 'public' => true ), 'names' );
			if ( ! is_object( $post ) || ! in_array( $post->post_type, $public_post_types, true ) ) {
				return;
			}

			// Get the previous block counts for this post.
			$previous_blocks = get_post_meta( $post_id, '_uagb_previous_block_counts', true );
			if ( ! is_array( $previous_blocks ) || empty( $previous_blocks ) ) {
				return;
			}

			// Create a negative diff to remove these blocks from stats.
			$block_diff = array();
			foreach ( $previous_blocks as $block_name => $count ) {
				if ( $count > 0 ) {
					$block_diff[ $block_name ] = -$count;
				}
			}

			// Update global stats.
			if ( ! empty( $block_diff ) ) {
				$this->update_global_stats( $block_diff );
			}
		}

		/**
		 * Track block removal when a post is trashed.
		 *
		 * @param int $post_id Post ID being trashed.
		 * @since 2.19.13
		 * @return void
		 */
		public function track_block_removal_on_trash( $post_id ) {
			$this->track_block_removal_on_delete( $post_id );
		}

		/**
		 * Track block addition when a post is untrashed.
		 *
		 * @param int $post_id Post ID being untrashed.
		 * @since 2.19.13
		 * @return void
		 */
		public function track_block_addition_on_untrash( $post_id ) {
			// Skip if analytics is not enabled.
			if ( get_option( 'spectra_analytics_optin', 'no' ) !== 'yes' ) {
				return;
			}

			$post = get_post( $post_id );
			if ( ! $post ) {
				return;
			}

			// Only track public post types.
			$public_post_types = get_post_types( array( 'public' => true ), 'names' );
			if ( ! is_object( $post ) || ! in_array( $post->post_type, $public_post_types, true ) ) {
				return;
			}

			// Count current blocks and add them back to stats.
			$current_blocks = $this->count_blocks_in_post( $post->post_content );

			if ( ! empty( $current_blocks ) ) {
				$this->update_global_stats( $current_blocks );
			}

			// Store current block counts for future comparisons.
			update_post_meta( $post_id, '_uagb_previous_block_counts', $current_blocks );
		}

		/**
		 * Count blocks recursively in post content.
		 *
		 * @param string $content Post content.
		 * @since 2.19.13
		 * @return array Array of block counts.
		 */
		private function count_blocks_in_post( $content ) {
			$block_counts = array();

			// Initialize all Spectra blocks with 0 count.
			foreach ( $this->spectra_blocks as $block_name ) {
				$block_counts[ $block_name ] = 0;
			}

			// Skip if content is empty or has no blocks.
			if ( empty( $content ) || ! has_blocks( $content ) ) {
				return $block_counts;
			}

			// Parse blocks.
			$blocks = parse_blocks( $content );

			// Count blocks recursively.
			$this->count_blocks_recursive( $blocks, $block_counts );

			return $block_counts;
		}

		/**
		 * Recursively count blocks including nested blocks.
		 *
		 * @param array $blocks Array of blocks.
		 * @param array $block_counts Reference to block counts array.
		 * @since 2.19.13
		 * @return void
		 */
		private function count_blocks_recursive( $blocks, &$block_counts ) {
			foreach ( $blocks as $block ) {
				$block_name = $block['blockName'];

				// Count this block if it's a Spectra block.
				if ( ! empty( $block_name ) && in_array( $block_name, $this->spectra_blocks, true ) ) {
					$block_counts[ $block_name ]++;
				}

				// Recursively count inner blocks.
				if ( ! empty( $block['innerBlocks'] ) && is_array( $block['innerBlocks'] ) ) {
					$this->count_blocks_recursive( $block['innerBlocks'], $block_counts );
				}
			}
		}

		/**
		 * Update global analytics stats with the correct incremental logic.
		 *
		 * @param array $previous_blocks Block counts that were in the post before saving.
		 * @param array $current_blocks  Block counts that are in the post after saving.
		 * @since 2.19.13
		 * @return void
		 */
		private function update_global_stats_correctly( $previous_blocks, $current_blocks ) {
			// Get existing analytics data.
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			if ( ! isset( $analytics_data['block_usage_stats'] ) ) {
				$analytics_data['block_usage_stats'] = array();
			}

			// Process each Spectra block type.
			foreach ( $this->spectra_blocks as $block_name ) {
				// Initialize if not set.
				if ( ! isset( $analytics_data['block_usage_stats'][ $block_name ] ) ) {
					$analytics_data['block_usage_stats'][ $block_name ] = 0;
				}

				$previous_count = isset( $previous_blocks[ $block_name ] ) ? $previous_blocks[ $block_name ] : 0;
				$current_count  = isset( $current_blocks[ $block_name ] ) ? $current_blocks[ $block_name ] : 0;

				// Only update if there's a change.
				if ( $previous_count !== $current_count ) {
					// Step 1: Subtract what this post had before (remove old contribution).
					$analytics_data['block_usage_stats'][ $block_name ] -= $previous_count;

					// Step 2: Add what this post has now (add new contribution).
					$analytics_data['block_usage_stats'][ $block_name ] += $current_count;

					// Ensure we don't go below 0 (safety check).
					if ( $analytics_data['block_usage_stats'][ $block_name ] < 0 ) {
						$analytics_data['block_usage_stats'][ $block_name ] = 0;
					}
				}
			}

			// Update last modified timestamp.
			$analytics_data['last_updated'] = time();

			// Save the updated analytics data.
			update_option( 'uagb_block_analytics_data', $analytics_data );
		}

		/**
		 * Update global analytics stats with block count changes (legacy method for delete/trash operations).
		 *
		 * @param array $block_diff Array of block count changes.
		 * @since 2.19.13
		 * @return void
		 */
		private function update_global_stats( $block_diff ) {
			// Get existing analytics data.
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			if ( ! isset( $analytics_data['block_usage_stats'] ) ) {
				$analytics_data['block_usage_stats'] = array();
			}

			// Apply the block count changes.
			foreach ( $block_diff as $block_name => $diff ) {
				if ( ! isset( $analytics_data['block_usage_stats'][ $block_name ] ) ) {
					$analytics_data['block_usage_stats'][ $block_name ] = 0;
				}

				$analytics_data['block_usage_stats'][ $block_name ] += $diff;

				// Ensure we don't go below 0.
				$current_count = $analytics_data['block_usage_stats'][ $block_name ];
				if ( is_numeric( $current_count ) && $current_count < 0 ) {
					$analytics_data['block_usage_stats'][ $block_name ] = 0;
				}
			}

			// Update last modified timestamp.
			$analytics_data['last_updated'] = time();

			// Save the updated analytics data.
			update_option( 'uagb_block_analytics_data', $analytics_data );
		}

		/**
		 * Initialize tracking for existing posts (one-time setup).
		 * This method populates the _uagb_previous_block_counts meta for existing posts.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function initialize_existing_posts() {
			// Get all posts that don't have block counts stored yet.
			$post_types = get_post_types( array( 'public' => true ), 'names' );

			$posts = get_posts(
				array(
					'post_type'      => $post_types,
					'post_status'    => array( 'publish', 'private', 'draft' ),
					'posts_per_page' => -1,
					'fields'         => 'ids',
					'meta_query'     => array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query -- Intentional one-time setup query.
						array(
							'key'     => '_uagb_previous_block_counts',
							'compare' => 'NOT EXISTS',
						),
					),
				)
			);

			foreach ( $posts as $post_id ) {
				$post = get_post( $post_id );
				if ( is_object( $post ) && has_blocks( $post->post_content ) ) {
					$block_counts   = $this->count_blocks_in_post( $post->post_content );
					$actual_post_id = is_object( $post_id ) ? $post_id->ID : (int) $post_id;
					update_post_meta( $actual_post_id, '_uagb_previous_block_counts', $block_counts );
				}
			}
		}

		/**
		 * Get block counts for a specific post.
		 *
		 * @param int $post_id Post ID.
		 * @since 2.19.13
		 * @return array Block counts for the post.
		 */
		public function get_post_block_counts( $post_id ) {
			$block_counts = get_post_meta( $post_id, '_uagb_previous_block_counts', true );
			return is_array( $block_counts ) ? $block_counts : array();
		}
	}
}
PK��][��`"`"Tultimate-addons-for-gutenberg/classes/analytics/class-uagb-block-stats-processor.phpnu�[���<?php
/**
 * UAGB Block Stats Background Processor.
 *
 * Class to execute background processing for block usage analytics.
 *
 * @since 2.19.13
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'WP_Async_Request' ) ) {
	require_once UAGB_DIR . 'lib/batch-processing/class-wp-async-request.php';
}

if ( ! class_exists( 'WP_Background_Process' ) ) {
	require_once UAGB_DIR . 'lib/batch-processing/class-wp-background-process.php';
}

if ( ! class_exists( 'UAGB_Block_Stats_Processor' ) ) {

	/**
	 * Class UAGB_Block_Stats_Processor
	 *
	 * Handles background processing for block usage statistics collection.
	 *
	 * @since 2.19.13
	 * @package UAGB
	 */
	class UAGB_Block_Stats_Processor extends WP_Background_Process {

		/**
		 * Action name.
		 *
		 * @var string
		 * @since 2.19.13
		 */
		protected $action = 'uagb_block_stats_collection';

		/**
		 * List of all Spectra blocks to track (Core + Pro).
		 *
		 * @var array
		 * @since 2.19.13
		 */
		private $spectra_blocks = array(
			// Spectra Core Blocks.
			'uagb/advanced-heading',
			'uagb/blockquote',
			'uagb/buttons',
			'uagb/buttons-child',
			'uagb/call-to-action',
			'uagb/cf7-styler',
			'uagb/column',
			'uagb/columns',
			'uagb/container',
			'uagb/content-timeline',
			'uagb/content-timeline-child',
			'uagb/countdown',
			'uagb/counter',
			'uagb/faq',
			'uagb/faq-child',
			'uagb/forms',
			'uagb/forms-accept',
			'uagb/forms-checkbox',
			'uagb/forms-date',
			'uagb/forms-email',
			'uagb/forms-hidden',
			'uagb/forms-name',
			'uagb/forms-phone',
			'uagb/forms-radio',
			'uagb/forms-select',
			'uagb/forms-textarea',
			'uagb/forms-toggle',
			'uagb/forms-url',
			'uagb/gf-styler',
			'uagb/google-map',
			'uagb/how-to',
			'uagb/how-to-step',
			'uagb/icon',
			'uagb/icon-list',
			'uagb/icon-list-child',
			'uagb/image',
			'uagb/image-gallery',
			'uagb/info-box',
			'uagb/inline-notice',
			'uagb/lottie',
			'uagb/marketing-button',
			'uagb/modal',
			'uagb/popup-builder',
			'uagb/post-button',
			'uagb/post-carousel',
			'uagb/post-excerpt',
			'uagb/post-grid',
			'uagb/post-image',
			'uagb/post-masonry',
			'uagb/post-meta',
			'uagb/post-taxonomy',
			'uagb/post-timeline',
			'uagb/post-title',
			'uagb/restaurant-menu',
			'uagb/restaurant-menu-child',
			'uagb/review',
			'uagb/section',
			'uagb/separator',
			'uagb/slider',
			'uagb/slider-child',
			'uagb/social-share',
			'uagb/social-share-child',
			'uagb/star-rating',
			'uagb/sure-cart-checkout',
			'uagb/sure-cart-product',
			'uagb/sure-forms',
			'uagb/table-of-contents',
			'uagb/tabs',
			'uagb/tabs-child',
			'uagb/taxonomy-list',
			'uagb/team',
			'uagb/testimonial',
			'uagb/wp-search',

			// Spectra Pro Blocks.
			'uagb/instagram-feed',
			'uagb/login',
			'uagb/loop-builder',
			'uagb/loop-category',
			'uagb/loop-pagination',
			'uagb/loop-reset',
			'uagb/loop-search',
			'uagb/loop-sort',
			'uagb/loop-wrapper',
			'uagb/register',
			'uagb/register-email',
			'uagb/register-first-name',
			'uagb/register-last-name',
			'uagb/register-password',
			'uagb/register-reenter-password',
			'uagb/register-terms',
			'uagb/register-username',
		);

		/**
		 * Task to be performed for each post.
		 *
		 * @param int $post_id Post ID to be processed.
		 * @since 2.19.13
		 * @return bool False when the task is complete.
		 */
		protected function task( $post_id ) {
			$post = get_post( $post_id );

			if ( ! is_object( $post ) || ! is_a( $post, 'WP_Post' ) ) {
				return false;
			}

			// Check if post has Gutenberg blocks.
			if ( ! has_blocks( $post->post_content ) ) {
				return false;
			}

			// Count blocks in this post.
			$block_counts = $this->count_blocks_in_post( $post->post_content );

			// Get existing analytics data.
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			if ( ! isset( $analytics_data['block_usage_stats'] ) ) {
				$analytics_data['block_usage_stats'] = array();
			}

			// Merge with existing stats.
			foreach ( $block_counts as $block_name => $count ) {
				if ( ! isset( $analytics_data['block_usage_stats'][ $block_name ] ) ) {
					$analytics_data['block_usage_stats'][ $block_name ] = 0;
				}
				$analytics_data['block_usage_stats'][ $block_name ] += $count;
			}

			// Update the consolidated analytics data.
			update_option( 'uagb_block_analytics_data', $analytics_data );

			return false;
		}

		/**
		 * Count blocks recursively in post content.
		 *
		 * @param string $content Post content.
		 * @since 2.19.13
		 * @return array Array of block counts.
		 */
		private function count_blocks_in_post( $content ) {
			$block_counts = array();

			// Initialize all Spectra blocks with 0 count.
			foreach ( $this->spectra_blocks as $block_name ) {
				$block_counts[ $block_name ] = 0;
			}

			// Parse blocks.
			$blocks = parse_blocks( $content );

			// Count blocks recursively.
			$this->count_blocks_recursive( $blocks, $block_counts );

			return $block_counts;
		}

		/**
		 * Recursively count blocks including nested blocks.
		 *
		 * @param array $blocks Array of blocks.
		 * @param array $block_counts Reference to block counts array.
		 * @since 2.19.13
		 * @return void
		 */
		private function count_blocks_recursive( $blocks, &$block_counts ) {
			foreach ( $blocks as $block ) {
				$block_name = $block['blockName'];

				// Count this block if it's a Spectra block.
				if ( ! empty( $block_name ) && in_array( $block_name, $this->spectra_blocks, true ) ) {
					$block_counts[ $block_name ]++;
				}

				// Recursively count inner blocks.
				if ( ! empty( $block['innerBlocks'] ) && is_array( $block['innerBlocks'] ) ) {
					$this->count_blocks_recursive( $block['innerBlocks'], $block_counts );
				}
			}
		}

		/**
		 * Complete the block stats collection process.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		protected function complete() {
			parent::complete();

			// Update analytics status with completion data.
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			$status['collection_complete'] = true;
			$status['last_collected']      = time();
			$status['is_processing']       = false;
			update_option( 'uagb_block_analytics_status', $status );
		}

		/**
		 * Start the block stats collection process.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function start_collection() {
			// Check if already processing.
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			if ( ! empty( $status['is_processing'] ) ) {
				return;
			}

			// Set processing flag and reset completion status.
			$status['is_processing']       = true;
			$status['collection_complete'] = false;
			update_option( 'uagb_block_analytics_status', $status );

			// Reset analytics data.
			update_option( 'uagb_block_analytics_data', array() );

			// Get all posts with blocks.
			$post_types = get_post_types( array( 'public' => true ), 'names' );
			
			$posts = get_posts(
				array(
					'post_type'      => $post_types,
					'post_status'    => array( 'publish', 'private', 'draft' ),
					'posts_per_page' => -1,
					'fields'         => 'ids',
				)
			);

			// Add posts to queue.
			foreach ( $posts as $post_id ) {
				$this->push_to_queue( $post_id );
			}

			// Save queue and dispatch.
			$this->save()->dispatch();
		}

		/**
		 * Get collected block usage statistics.
		 *
		 * @since 2.19.13
		 * @return array Block usage statistics.
		 */
		public static function get_block_stats() {
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			return isset( $analytics_data['block_usage_stats'] ) ? $analytics_data['block_usage_stats'] : array();
		}

		/**
		 * Check if stats collection is complete.
		 *
		 * @since 2.19.13
		 * @return bool Whether stats collection is complete.
		 */
		public static function is_collection_complete() {
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			return ! empty( $status['collection_complete'] );
		}

		/**
		 * Get the last collection timestamp.
		 *
		 * @since 2.19.13
		 * @return int|false Last collection timestamp or false if never collected.
		 */
		public static function get_last_collection_time() {
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			return isset( $status['last_collected'] ) ? $status['last_collected'] : false;
		}
	}
}
PK��][���!&!&Nultimate-addons-for-gutenberg/classes/analytics/class-uagb-block-analytics.phpnu�[���<?php
/**
 * UAGB Block Analytics Manager.
 *
 * Class to manage block usage analytics collection and reporting.
 *
 * @since 2.19.13
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Block_Analytics' ) ) {

	/**
	 * Class UAGB_Block_Analytics
	 *
	 * Manages block usage analytics collection and reporting.
	 *
	 * @since 2.19.13
	 * @package UAGB
	 */
	class UAGB_Block_Analytics {

		/**
		 * Member Variable
		 *
		 * @var UAGB_Block_Analytics|null
		 * @since 2.19.13
		 */
		private static $instance;

		/**
		 * Block stats processor instance.
		 *
		 * @var UAGB_Block_Stats_Processor
		 * @since 2.19.13
		 */
		private $stats_processor;

		/**
		 * Incremental block tracker instance.
		 *
		 * @var UAGB_Incremental_Block_Tracker
		 * @since 2.19.13
		 */
		private $incremental_tracker;

		/**
		 * Initiator
		 *
		 * @since 2.19.13
		 * @return UAGB_Block_Analytics
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function __construct() {
			// Load the stats processor and incremental tracker.
			require_once UAGB_DIR . 'classes/analytics/class-uagb-block-stats-processor.php';
			require_once UAGB_DIR . 'classes/analytics/class-uagb-incremental-block-tracker.php';

			$this->stats_processor     = new UAGB_Block_Stats_Processor();
			$this->incremental_tracker = UAGB_Incremental_Block_Tracker::get_instance();

			// Hook into analytics option changes.
			add_action( 'update_option_spectra_analytics_optin', array( $this, 'handle_analytics_optin_change' ), 10, 3 );
			add_action( 'add_option_spectra_analytics_optin', array( $this, 'handle_analytics_optin_add' ), 10, 2 );

			// Hook into plugin activation for first-run stats collection.
			add_action( 'init', array( $this, 'maybe_start_first_run_collection' ) );
		}

		/**
		 * Handle analytics opt-in option update.
		 *
		 * @param string $old_value Old value.
		 * @param string $value New value.
		 * @param string $option Option name.
		 * @since 2.19.13
		 * @return void
		 */
		public function handle_analytics_optin_change( $old_value, $value, $option ) {
			if ( 'yes' === $value && 'yes' !== $old_value ) {
				// Analytics was just enabled, start collection.
				$this->start_stats_collection();
			}
		}

		/**
		 * Handle analytics opt-in option addition.
		 *
		 * @param string $option Option name.
		 * @param string $value Option value.
		 * @since 2.19.13
		 * @return void
		 */
		public function handle_analytics_optin_add( $option, $value ) {
			if ( 'yes' === $value ) {
				// Analytics was enabled, start collection.
				$this->start_stats_collection();
			}
		}

		/**
		 * Maybe start first-run stats collection.
		 *
		 * This is called during plugin initialization to check if this is a first-run
		 * installation and start stats collection.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function maybe_start_first_run_collection() {
			// Check if this is a first-run (plugin just installed).
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			if ( empty( $status['first_run_check'] ) ) {
				// Mark first run check as done.
				$status['first_run_check'] = true;
				update_option( 'uagb_block_analytics_status', $status );

				// Start initial stats collection and setup incremental tracking.
				$this->start_initial_setup();
			}
		}

		/**
		 * Start block usage stats collection (initial scan only).
		 *
		 * This method triggers the background process ONLY for initial setup.
		 * After initial setup, all tracking is done via real-time incremental updates.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function start_stats_collection() {
			// Only start if analytics is enabled or this is first run.
			$analytics_enabled = get_option( 'spectra_analytics_optin', 'no' ) === 'yes';
			$status            = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			$is_first_run = empty( $status['first_run_check'] );

			if ( ! $analytics_enabled && ! $is_first_run ) {
				return;
			}

			// Check if collection is already in progress.
			if ( ! empty( $status['is_processing'] ) ) {
				return;
			}

			// Only run background scan if we don't have existing stats or this is forced refresh.
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			$has_existing_stats = ! empty( $analytics_data['block_usage_stats'] );

			// Skip background scan if we already have stats and this isn't first run.
			if ( $has_existing_stats && ! $is_first_run ) {
				return;
			}

			// Start the background collection process.
			$this->stats_processor->start_collection();
		}


		/**
		 * Get block usage statistics for analytics reporting.
		 *
		 * @since 2.19.13
		 * @return array Block usage statistics formatted for analytics.
		 */
		public function get_block_stats_for_analytics() {
			// Only return stats if analytics is enabled.
			if ( get_option( 'spectra_analytics_optin', 'no' ) !== 'yes' ) {
				return array();
			}

			$stats               = UAGB_Block_Stats_Processor::get_block_stats();
			$collection_complete = UAGB_Block_Stats_Processor::is_collection_complete();
			$last_collection     = UAGB_Block_Stats_Processor::get_last_collection_time();

			// Prepare advanced stats structure.
			$advanced_stats = array(
				'block_usage_stats'          => $stats,
				'block_usage_stats_metadata' => array(
					'collection_complete'  => $collection_complete,
					'last_collected'       => $last_collection ? gmdate( 'Y-m-d H:i:s', $last_collection ) : null,
					'total_blocks_tracked' => count( array_filter( $stats ) ),
					'most_used_blocks'     => $this->get_most_used_blocks( $stats, 10 ),
				),
			);

			return $advanced_stats;
		}

		/**
		 * Get the most used blocks from stats.
		 *
		 * @param array $stats Block usage statistics.
		 * @param int   $limit Number of top blocks to return.
		 * @since 2.19.13
		 * @return array Top used blocks.
		 */
		private function get_most_used_blocks( $stats, $limit = 10 ) {
			// Filter out blocks with 0 usage and sort by usage count.
			$filtered_stats = array_filter( $stats );
			arsort( $filtered_stats );
			
			// Return top blocks.
			return array_slice( $filtered_stats, 0, $limit, true );
		}

		/**
		 * Force refresh block statistics (for data validation only).
		 *
		 * This method should only be used for manual data validation or troubleshooting.
		 * Normal operation relies on real-time incremental tracking.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function force_refresh_stats() {
			// Clear existing processing flag to allow new collection.
			$status = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			$status['is_processing'] = false;
			update_option( 'uagb_block_analytics_status', $status );

			// Reinitialize post tracking metadata.
			$this->incremental_tracker->initialize_existing_posts();

			// Start full collection for validation.
			$this->start_stats_collection();
		}

		/**
		 * Start initial setup combining background scan and incremental tracking.
		 *
		 * This method is called on first-run to both scan existing content
		 * and setup incremental tracking for future changes.
		 *
		 * @since 2.19.13
		 * @return void
		 */
		public function start_initial_setup() {
			// Only setup if analytics is enabled or this is first run.
			$analytics_enabled = get_option( 'spectra_analytics_optin', 'no' ) === 'yes';
			$status            = get_option( 'uagb_block_analytics_status', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			$is_first_run = empty( $status['first_run_check'] );

			if ( ! $analytics_enabled && ! $is_first_run ) {
				return;
			}

			// Initialize existing posts for incremental tracking.
			$this->incremental_tracker->initialize_existing_posts();

			// Start the background collection process to build initial stats.
			$this->start_stats_collection();
		}

		/**
		 * Get stats collection status.
		 *
		 * @since 2.19.13
		 * @return array Status information about stats collection.
		 */
		public function get_collection_status() {
			$status         = get_option( 'uagb_block_analytics_status', array() );
			$analytics_data = get_option( 'uagb_block_analytics_data', array() );

			if ( ! is_array( $status ) ) {
				$status = array();
			}

			if ( ! is_array( $analytics_data ) ) {
				$analytics_data = array();
			}

			return array(
				'is_processing'        => ! empty( $status['is_processing'] ),
				'is_complete'          => ! empty( $status['collection_complete'] ),
				'last_collected'       => isset( $status['last_collected'] ) ? $status['last_collected'] : false,
				'last_updated'         => isset( $analytics_data['last_updated'] ) ? $analytics_data['last_updated'] : false,
				'analytics_enabled'    => get_option( 'spectra_analytics_optin', 'no' ) === 'yes',
				'first_run_done'       => ! empty( $status['first_run_check'] ),
				'has_stats'            => ! empty( $analytics_data['block_usage_stats'] ),
				'tracking_method'      => 'incremental', // Now using incremental tracking instead of batch processing.
				'total_tracked_blocks' => ! empty( $analytics_data['block_usage_stats'] ) && is_array( $analytics_data['block_usage_stats'] ) ? count( array_filter( $analytics_data['block_usage_stats'] ) ) : 0,
			);
		}
	}
}
PK��][)]H��%�%Pultimate-addons-for-gutenberg/classes/migration/class-spectra-migrate-blocks.phpnu�[���<?php
/**
 * Spectra block migrator.
 *
 * Class to execute cron event when the plugin is updated.
 *
 * @since 2.13.9
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'Uagb_Background_Process' ) ) {
	require_once UAGB_DIR . 'classes/migration/class-uagb-background-process.php';
}

/**
 * Spectra_Update_Features.
 *
 * @package UAGB
 * @since 2.13.9
 */
class Spectra_Migrate_Blocks {

	/**
	 * Member Variable
	 *
	 * @since 2.13.9
	 * @var Spectra_Migrate_Blocks
	 */
	private static $instance;

	/**
	 * Info Box Mapping Array
	 * 
	 * @var array<string,array<string,bool|int>> $info_box_mapping
	 */
	public static $info_box_mapping;

	/**
	 * Advanced Heading Mapping Array
	 * 
	 * @var array<string,array<string,bool|string>> $advanced_heading_mapping
	 */
	public static $advanced_heading_mapping;

	/**
	 * Migration process instance.
	 *
	 * @var Uagb_Background_Process
	 */
	public $migration_process;

	/**
	 *  Initiator
	 *
	 * @since 2.13.9
	 * @return Spectra_Migrate_Blocks
	 */
	public static function get_instance() {
		if ( null === self::$instance ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Constructor function.
	 *
	 * @since 2.13.9
	 */
	public function __construct() {
		self::$info_box_mapping         = array(
			'imageWidth' => array(
				'old' => 120,
			),
		);
		self::$advanced_heading_mapping = array(
			'headingAlign'      => array(
				'old' => 'center',
				'new' => 'left',
			),
			'headingDescToggle' => array(
				'old' => true,
				'new' => false,
			),
		);

		// Initialize the background process handler.
		$this->migration_process = new Uagb_Background_Process();

		add_action( 'spectra_blocks_migration_event', array( $this, 'blocks_migration' ) );
		add_action( 'admin_init', array( $this, 'query_migrate_to_new' ) );
		add_action( 'wp_ajax_check_migration_status', array( $this, 'check_migration_status' ) );
		add_action( 'wp_ajax_nopriv_check_migration_status', array( $this, 'check_migration_status' ) );

		if ( 'yes' === get_option( 'uag_migration_status', 'no' ) && 'yes' === get_option( 'uagb-old-user-less-than-2', false ) ) {
			add_action( 'admin_footer', array( $this, 'add_migration_status_script' ) );
			$this->migrate_blocks();
		}
	}

	/**
	 * Trigger migration via query parameter.
	 *
	 * @since 2.13.9
	 * @return void
	 */
	public function query_migrate_to_new() {
		if ( ! current_user_can( 'manage_options' ) ) {
			return;
		}
		// Sanitize and check if the nonce is valid.
		$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( $_POST['nonce'] ) : '';
		if ( ! wp_verify_nonce( $nonce, 'wp_spectra_blocks_migration' ) ) {
			$migrate_to_new = isset( $_GET['migrate_to_new'] ) ? sanitize_text_field( $_GET['migrate_to_new'] ) : false;

			if ( 'yes' === $migrate_to_new ) {
				spectra_log( 'Migration triggered via query parameter by an authorized user.' );
					$this->migrate_blocks();
			}
		}
	}

	/**
	 * Schedule and run blocks migration.
	 *
	 * @since 2.13.9
	 * @return void
	 */
	public function migrate_blocks() {
		if ( 'yes' !== get_option( 'uagb-old-user-less-than-2', false ) ) {
			return;
		}
		if ( ! wp_next_scheduled( 'spectra_blocks_migration_event' ) ) {
			wp_schedule_single_event( time(), 'spectra_blocks_migration_event' );
		}
		update_option( 'uag_enable_legacy_blocks', 'yes' );
		update_option( 'uag_load_font_awesome_5', 'enabled' );
	}

	/**
	 * Execute blocks migration process.
	 *
	 * @since 2.13.9
	 * @return void
	 */
	public function blocks_migration() {

		$posts_per_page = 100;
		$page           = 1;

		$post_types = get_post_types( array( 'public' => true ), 'names' );

		do {
			$query = new WP_Query(
				array(
					'post_type'      => $post_types,
					'post_status'    => 'any',
					'posts_per_page' => $posts_per_page,
					'paged'          => $page,
					// phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query -- Reason: Necessary for migration process.
					'meta_query'     => array(
						array(
							'key'     => '_uag_migration_processed',
							'compare' => 'NOT EXISTS',
						),
					),
				)
			);

			foreach ( $query->posts as $post ) {
				if ( ! $post instanceof WP_Post ) {
					spectra_log( 'Skipped post ID: ' . ( is_object( $post ) ? $post->ID : 'Invalid post type' ) );
					continue;
				}

				$this->migration_process->push_to_queue( $post->ID );
				spectra_log( 'Queued post ID: ' . ( is_object( $post ) ? $post->ID : 'Invalid post type' ) );
			}

			$page++;
		} while ( $query->max_num_pages >= $page );

		$this->migration_process->save()->dispatch();
	}

	/**
	 * Check the status of the migration process.
	 *
	 * @since 2.13.9
	 * @return void
	 */
	public function check_migration_status() {
		// Sanitize and check if the nonce is valid.
		$nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( $_POST['nonce'] ) : '';
		if ( ! wp_verify_nonce( $nonce, 'check_migration_status_nonce' ) ) {
			wp_send_json_error(
				array(
					'status' => 'fail',
					'type'   => 'error',
					'msg'    => 'Invalid nonce',
				)
			);
			return;
		}
	
		$migration_complete     = get_option( 'uag_migration_complete', 'no' );
		$migration_needs_reload = get_transient( 'uag_migration_needs_reload' ) ? 'yes' : 'no';
	
		// If migration is complete and reload is needed, delete the transient to avoid repeated reloads.
		if ( 'yes' === $migration_complete && 'yes' === $migration_needs_reload ) {
			delete_transient( 'uag_migration_needs_reload' );
		}
	
		// Check if the migration status retrieval failed.
		if ( 'fail' === $migration_complete ) {
			wp_send_json_error(
				array(
					'status' => 'fail',
					'type'   => 'error',
					'msg'    => "We couldn't catch current tasks, please try again",
				)
			);
		} else {
			wp_send_json_success(
				array(
					'complete' => $migration_complete,
					'reload'   => $migration_needs_reload,
				)
			);
		}
	}
	
	/**
	 * Add migration status checking script to admin footer.
	 *
	 * @since 2.13.9
	 * @return void
	 */
	public function add_migration_status_script() {
		$ajax_nonce = wp_create_nonce( 'check_migration_status_nonce' );
		?>
		<script type="text/javascript">
		document.addEventListener('DOMContentLoaded', function() {
			let reloadDone = false; // Flag to track if reload has been done.
			function checkMigrationStatus() {
				if (reloadDone) {
					return; // Exit function if reloadDone is true.
				}

				fetch('<?php echo esc_html( admin_url( 'admin-ajax.php' ) ); ?>', {
					method: 'POST',
					headers: {
						'Content-Type': 'application/x-www-form-urlencoded',
					},
					body: new URLSearchParams({
						action: 'check_migration_status',
						nonce: '<?php echo esc_js( $ajax_nonce ); ?>',
					}),
				})
				.then(response => response.json())
				.then(data => {
					if ( data.success ) {
						if ( data.data.reload === 'yes' ) {
							reloadDone = true; // Set reloadDone flag to true.
							location.reload();
						} else {
							setTimeout(checkMigrationStatus, 10000); // Retry after 10 seconds.
						}
					} else {
						console.error('Error:', data);
						setTimeout(checkMigrationStatus, 10000); // Retry after 10 seconds.
					}
				})
				.catch(error => {
					console.error('Fetch error:', error);
					setTimeout(checkMigrationStatus, 10000); // Retry after 10 seconds.
				});
			}
			checkMigrationStatus(); // Initial call to start checking.
		});
		</script>
		<?php
	}
	


	/**
	 * Update the content blocks.
	 *
	 * @since 2.13.9
	 * @param string $content Content to be updated.
	 * @return array<string|string> Array of whether migration is required, and the updated content.
	 */
	public function get_updated_content( $content ) {
		$is_migration_needed = false;
		$blocks              = parse_blocks( $content );
		$blocks              = $this->get_updated_blocks( $blocks, $is_migration_needed );
		return array(
			'requires_migration' => $is_migration_needed,
			'content'            => serialize_blocks( $blocks ),
		);
	}

	/**
	 * Update blocks with new attributes.
	 *
	 * @param array   $blocks Blocks to be updated.
	 * @param boolean $is_migration_needed Whether the page needs migration or not.
	 * @since 2.13.9
	 * @return array Updated blocks.
	 */
	public function get_updated_blocks( array $blocks, &$is_migration_needed ) {
		foreach ( $blocks as &$block ) {
			if ( ! empty( $block['innerBlocks'] ) ) {
				$block['innerBlocks'] = $this->get_updated_blocks( $block['innerBlocks'], $is_migration_needed );
			} else {
				if ( ! isset( $block['blockName'] ) ) {
					continue;
				}
				if ( 'uagb/info-box' === $block['blockName'] ) {
					$is_migration_needed = true;
					$attributes          = $block['attrs'];
					foreach ( self::$info_box_mapping as $key => $value ) {
						if ( ! isset( $attributes[ $key ] ) ) { // Meaning this is set to default, so no need to update.
							$attributes[ $key ] = $value['old'];
						}
					}
					$block['attrs'] = $attributes;
				}
				if ( 'uagb/advanced-heading' === $block['blockName'] ) {
					$is_migration_needed = true;
					$attributes          = $block['attrs'];
					foreach ( self::$advanced_heading_mapping as $key => $value ) {
						if ( ! isset( $attributes[ $key ] ) ) { // Meaning this is set to default, so no need to update.
							$attributes[ $key ] = $value['old'];
						}
					}
					$block['attrs'] = $attributes;
				}
			}
		}
		return $blocks;
	}
}

/**
 * Prepare if class 'UAGB_Init_Blocks' exist.
 * Kicking this off by calling 'get_instance()' method.
 *
 * @since 2.13.9
 */
Spectra_Migrate_Blocks::get_instance();
?>
PK��][�=�ʻ�Qultimate-addons-for-gutenberg/classes/migration/class-uagb-background-process.phpnu�[���<?php
/**
 * Spectra block migrator.
 *
 * Class to execute cron event when the plugin is updated.
 *
 * @since 2.13.9
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'WP_Async_Request' ) ) {
	require_once UAGB_DIR . 'lib/batch-processing/class-wp-async-request.php';
}

if ( ! class_exists( 'WP_Background_Process' ) ) {
	require_once UAGB_DIR . 'lib/batch-processing/class-wp-background-process.php';
}

/**
 * Spectra migration log.
 *
 * @since 2.13.9
 * @package UAGB
 *
 * @param string $message The message to log.
 * @return void
 */
function spectra_log( $message ) {
	$log_file = ABSPATH . 'wp-content/uploads/migration-log.txt';
	$file     = fopen( $log_file, 'a' ); //phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fopen

	if ( $file ) {
		fwrite( $file, gmdate( 'Y-m-d H:i:s' ) . ' - ' . $message . PHP_EOL ); //phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fwrite
		fclose( $file ); // Close the file after writing.
	}
}

/**
 * Prevents the modification of the post modified date.
 *
 * This function ensures that the post modified date is not updated.
 *
 * @param array $new The new post data.
 * @param array $old The old post data.
 * @since 2.14.1
 * @return array The modified post data with the original modified date.
 */
function spectra_stop_modified_date_update( $new, $old ) {
	$new['post_modified']     = $old['post_modified'];
	$new['post_modified_gmt'] = $old['post_modified_gmt'];
	return $new;
}

if ( ! class_exists( 'class_spectra_migrate_blocks' ) ) {

	/**
	 * Class Uagb_Background_Process
	 *
	 * Handles background processing for block migrations.
	 *
	 * @since 2.13.9
	 * @package UAGB
	 */
	class Uagb_Background_Process extends WP_Background_Process {

		/**
		 * Action name.
		 *
		 * @var string
		 */
		protected $action = 'spectra_blocks_migration';

		/**
		 * Task to be performed for each post.
		 *
		 * @param int $post_id Post ID to be processed.
		 * @return bool|mixed False if the task is complete, or the post ID for further processing.
		 */
		protected function task( $post_id ) {
			if ( get_post_meta( $post_id, '_uag_migration_processed', true ) ) {
				spectra_log( 'Skipping already processed post ID: ' . $post_id );
				return false;
			}

			$post = get_post( $post_id );

			if ( ! is_object( $post ) || ! is_a( $post, 'WP_Post' ) ) {
				return false;
			}

			$migration_details = Spectra_Migrate_Blocks::get_instance()->get_updated_content( $post->post_content );

			// Only update when the post needs to be updated - if it has any blocks that needed to be migrated.
			if ( ! empty( $migration_details['requires_migration'] ) && ! empty( $migration_details['content'] ) && is_string( $migration_details['content'] ) ) {
				add_filter( 'wp_insert_post_data', 'spectra_stop_modified_date_update', 99999, 2 );
				$updated_post_id = wp_update_post(
					array(
						'ID'           => $post->ID,
						'post_content' => wp_slash( $migration_details['content'] ),
					)
				);

				remove_filter( 'wp_insert_post_data', 'spectra_stop_modified_date_update', 99999 );
	
				// If the Post ID is correct ( which means the update was successful ) - Update the Post Meta and add to the log.
				if ( ! empty( $updated_post_id ) ) {
					update_post_meta( $post->ID, '_uag_migration_processed', '1' );
					spectra_log( 'Migration processed post ID: ' . $updated_post_id );
				} else {
					spectra_log( 'Migration not processed for post ID: ' . $post_id );
				}
			} else {
				update_post_meta( $post->ID, '_uag_migration_processed', '1' );
				spectra_log( 'Migration not required for post ID: ' . $post_id );
			}

			return false;
		}

		/**
		 * Complete the migration process.
		 * 
		 * @since 2.13.9
		 * @return void
		 */
		protected function complete() {
			parent::complete();
		
			$post_types = get_post_types( array( 'public' => true ), 'names' );

			$query = new WP_Query(
				array(
					'post_type'   => $post_types,
					'post_status' => 'any',
                    // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query -- Reason: Necessary for migration process.
					'meta_query'  => array(
						array(
							'key'     => '_uag_migration_processed',
							'compare' => 'NOT EXISTS',
						),
					),
				)
			);

			if ( ! $query->have_posts() ) {
				// Delete the option once the migration progress is complete as it is not required.
				delete_option( 'uag_migration_progress_status' );
				update_option( 'uag_migration_complete', 'yes' );
				delete_option( 'uagb-old-user-less-than-2' );
				spectra_log( 'End of blocks migration' );
				set_transient( 'uag_migration_needs_reload', true );
			} else {
				update_option( 'uag_migration_complete', 'no' );
			}
			
		}
	}
}
PK��][���ґ�:ultimate-addons-for-gutenberg/classes/class-uagb-block.phpnu�[���<?php
/**
 * UAGB Block.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! class_exists( 'UAGB_Block' ) ) {

	/**
	 * Class doc
	 */
	class UAGB_Block {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 * Block Attributes
		 *
		 * @var block_attributes
		 */
		private static $blocks = null;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Register a Block.
		 *
		 * @since 2.1.0
		 * @param string $block_file Block File Path.
		 */
		public function register( $block_file ) {

			$block_slug = '';
			$block_data = array();

			include $block_file;
			
			if ( ! empty( $block_slug ) && ! empty( $block_data ) ) {
				self::$blocks[ $block_slug ] = apply_filters( "spectra_{$block_slug}_blockdata", $block_data );
			}
		}

		/**
		 * Register all UAG Lite Blocks.
		 *
		 * @since 2.1.0
		 */
		public function register_blocks() {

			self::$blocks = array();

			$block_files = glob( UAGB_DIR . 'includes/blocks/*/block.php' );

			foreach ( $block_files as $block_file ) {
				$this->register( $block_file );
			}

			do_action( 'uag_register_block', $this );
		}

		/**
		 * Gives all Blocks.
		 *
		 * @since 2.1.0
		 */
		public function get_blocks() {

			if ( null === self::$blocks ) {

				$this->register_blocks();
			}

			return self::$blocks;
		}
	}

	/**
	 * Gives UAGB_Block object
	 *
	 * @since 2.1.0
	 *
	 * @return object
	 */
	function uagb_block() {
		return UAGB_Block::get_instance();
	}
}
PK��][KzP.��;ultimate-addons-for-gutenberg/classes/class-uagb-update.phpnu�[���<?php
/**
 * Update Compatibility
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Update' ) ) :

	/**
	 * UAGB Update initial setup
	 *
	 * @since 1.13.4
	 */
	class UAGB_Update {

		/**
		 * Class instance.
		 *
		 * @access private
		 * @var $instance Class instance.
		 */
		private static $instance;

		/**
		 * Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 *  Constructor
		 */
		public function __construct() {
			add_action( 'admin_init', array( $this, 'init' ) );
			add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
			add_action( 'in_plugin_update_message-' . UAGB_BASE, array( $this, 'plugin_update_notification' ), 10 );
		}

		/**
		 * Init
		 *
		 * @since 1.13.4
		 * @return void
		 */
		public function init() {
			// Get auto saved version number.
			$saved_version = get_option( 'uagb-version', false );

			// Update auto saved version number.
			if ( ! $saved_version || ! is_string( $saved_version ) ) {

				// Fresh install updation.
				$this->fresh_install_update_asset_generation_option();

				// Update current version.
				update_option( 'uagb-version', UAGB_VER );
				return;
			}

			do_action( 'uagb_update_before' );

			// If equals then return.
			if ( version_compare( $saved_version, UAGB_VER, '=' ) ) {
				return;
			}

			// If user is older than 2.0.0 then set the option.
			if ( version_compare( $saved_version, '2.0.0', '<' ) ) {
				update_option( 'uagb-old-user-less-than-2', 'yes' );
			}

			// Enable Legacy Blocks for users older than 2.0.5.
			if ( version_compare( $saved_version, '2.0.5', '<' ) ) {
				UAGB_Admin_Helper::update_admin_settings_option( 'uag_enable_legacy_blocks', 'yes' );
			}

			// If user is older than equal to 2.12.1 then set the option.
			if ( version_compare( $saved_version, '2.12.1', '<=' ) ) {
				UAGB_Admin_Helper::update_admin_settings_option( 'uag_enable_quick_action_sidebar', 'disabled' );
			}

			// Delete any of the unused options that have been unsupported or no longer required.

			// Delete the header titlebar option if it exists- which has been removed from version 2.14.1.
			if ( UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_header_titlebar' ) ) {
				UAGB_Admin_Helper::delete_admin_settings_option( 'uag_enable_header_titlebar' );
			}

			// Create a Core Block Array for all versions in which a Core Spectra Block was added.
			$core_blocks   = array();
			$blocks_status = UAGB_Admin_Helper::get_admin_settings_option( '_uagb_blocks' );

			// If Block Statuses exists and is not empty, enable the required Core Spectra Blocks.
			if ( is_array( $blocks_status ) && ! empty( $blocks_status ) ) {

				// If user is older than 2.0.16 then enable all the Core Spectra Blocks, as we have removed option to disable core blocks from 2.0.16.
				if ( version_compare( $saved_version, '2.0.16', '<' ) ) {
					array_push(
						$core_blocks,
						'container',
						'advanced-heading',
						'image',
						'buttons',
						'info-box',
						'call-to-action'
					);
				}

				// If user is older than 2.4.0 then enable the Icon Block that was added to the Core Blocks in this release.
				if ( version_compare( $saved_version, '2.4.0', '<' ) ) {
					array_push(
						$core_blocks,
						'icon'
					);
				}

				// If user is older than 2.6.0 then enable the Countdown Block that was added to the Core Blocks in this release.
				if ( version_compare( $saved_version, '2.6.0', '<' ) ) {
					array_push(
						$core_blocks,
						'countdown'
					);
				}

				// If user is older than 2.12.3 then enable the popup-builder Block that was added to the Core Blocks in this release.
				if ( version_compare( $saved_version, '2.12.3', '<' ) ) {
					array_push(
						$core_blocks,
						'popup-builder'
					);
				}
			}

			$inherit_from_theme = UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme' );
			// If user is older than 2.13.4 and Inherit from theme is enabled update the fallback.
			if ( version_compare( $saved_version, '2.13.4', '<' ) && 'enabled' === $inherit_from_theme ) {
				UAGB_Admin_Helper::update_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'disabled' );
			}

			// If the core block array is not empty, update the enabled blocks option.
			if ( ! empty( $core_blocks ) ) {

				foreach ( $core_blocks as $block ) {
					$blocks_status[ $block ] = $block;
				}

				UAGB_Admin_Helper::update_admin_settings_option( '_uagb_blocks', $blocks_status );
			}

			// Create file if not present.
			uagb_install()->create_files();

			/* Create activated blocks stylesheet */
			UAGB_Admin_Helper::create_specific_stylesheet();

			// Update asset version number.
			update_option( '__uagb_asset_version', time() );

			// Update auto saved version number.
			update_option( 'uagb-version', UAGB_VER );

			do_action( 'uagb_update_after' );
		}


		/**
		 * Migrate_visibility_mode
		 *
		 * @since 2.8.0
		 * @return void
		 */
		public static function migrate_visibility_mode() {

			$old_option      = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_coming_soon_mode' );
			$old_option_page = UAGB_Admin_Helper::get_admin_settings_option( 'uag_coming_soon_page' );

			if ( ! $old_option && ! $old_option_page ) {
				return;
			}

			// Update the option.
			UAGB_Admin_Helper::update_admin_settings_option( 'uag_visibility_mode', $old_option ? $old_option : 'disabled' );
			UAGB_Admin_Helper::update_admin_settings_option( 'uag_visibility_page', $old_option_page ? $old_option_page : '' );

			// Delete the old option.
			UAGB_Admin_Helper::delete_admin_settings_option( 'uag_enable_coming_soon_mode' );
			UAGB_Admin_Helper::delete_admin_settings_option( 'uag_coming_soon_page' );
		}

		/**
		 * Update asset generation option if it is not exist.
		 *
		 * @since 1.22.4
		 * @return void
		 */
		public function fresh_install_update_asset_generation_option() {

			uagb_install()->create_files();

			if ( UAGB_Helper::is_uag_dir_has_write_permissions() ) {
				update_option( '_uagb_allow_file_generation', 'enabled' );
			}
		}

		/**
		 * Plugin update notification.
		 *
		 * @param array $data Plugin update data.
		 * @since 2.7.2
		 * @return void
		 */
		public function plugin_update_notification( $data ) {
			if ( ! empty( $data['upgrade_notice'] ) ) { ?>
				<hr class="uagb-plugin-update-notification__separator" />
				<div class="uagb-plugin-update-notification">
					<div class="uagb-plugin-update-notification__icon">
						<span class="dashicons dashicons-info"></span>
					</div>
					<div>
						<div class="uagb-plugin-update-notification__title">
							<?php echo esc_html__( 'Heads up!', 'ultimate-addons-for-gutenberg' ); ?>
						</div>
						<div class="uagb-plugin-update-notification__message">
							<?php
								printf(
									wp_kses(
										$data['upgrade_notice'],
										array( 'a' => array( 'href' => array() ) )
									)
								);
							?>
						</div>
					</div>
				</div>
				<?php
			} //end if
		}

		/**
		 * Enqueue styles.
		 *
		 * @since 2.7.2
		 * @return void
		 */
		public function enqueue_styles() {
			// Check if assets should be excluded for the current post type.
			if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
				return; // Early return to prevent loading assets.
			}

			$screen = get_current_screen();
			if ( empty( $screen->id ) || 'plugins' !== $screen->id ) {
				return;
			}
			wp_enqueue_style( 'uagb-update-notice', UAGB_URL . 'admin/assets/css/update-notice.css', array(), UAGB_VER );
		}
	}

	/**
	 * Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Update::get_instance();

endif;
PK��][�c
�O�OLultimate-addons-for-gutenberg/classes/class-uagb-fse-fonts-compatibility.phpnu�[���<?php
/**
 * UAGB FSE Fonts Compatibility.
 *
 * @since 2.5.1
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_FSE_Fonts_Compatibility' ) ) {

	/**
	 * Class UAGB_FSE_Fonts_Compatibility.
	 *
	 * @since 2.5.1
	 */
	final class UAGB_FSE_Fonts_Compatibility {

		/**
		 * Member Variable
		 *
		 * @since 2.5.1
		 * @var instance
		 */
		private static $instance;

		/**
		 * Base path.
		 *
		 * @access protected
		 * @since 2.5.1
		 * @var string
		 */
		protected $base_path;

		/**
		 * Base URL.
		 *
		 * @access protected
		 * @since 2.5.1
		 * @var string
		 */
		protected $base_url;

		/**
		 * The remote CSS.
		 *
		 * @access protected
		 * @since 2.5.1
		 * @var string
		 */
		protected $remote_styles;

		/**
		 * The font-format.
		 *
		 * Use "woff" or "woff2".
		 * This will change the user-agent user to make the request.
		 *
		 * @access protected
		 * @since 2.5.1
		 * @var string
		 */
		protected $font_format = 'woff2';

		/**
		 *  Initiator
		 *
		 * @return object instance.
		 * @since 2.5.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @return void
		 * @since 2.5.1
		 */
		public function __construct() {
			$this->base_path = UAGB_UPLOAD_DIR . 'assets/';

			$this->base_url = UAGB_UPLOAD_URL . 'assets/';

			if ( empty( $_GET['page'] ) || 'spectra' !== $_GET['page'] || empty( $_GET['path'] ) || 'settings' !== $_GET['path'] || empty( $_GET['settings'] ) || 'fse-support' !== $_GET['settings'] ) { //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- $_GET['settings'] does not provide nonce.
				return;
			}

			$uagb_filesystem   = uagb_filesystem();
			$fonts_folder_path = get_stylesheet_directory() . '/assets/fonts/spectra';

			if ( file_exists( $fonts_folder_path ) ) {
				$uagb_filesystem->delete( $fonts_folder_path, true, 'd' );
			}

			self::delete_all_theme_font_family();

			$load_fse_font_globally = UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_fse_font_globally', 'disabled' );

			if ( 'disabled' !== $load_fse_font_globally ) {

				add_action( 'admin_init', array( $this, 'save_google_fonts_to_theme' ) );
			}
		}

		/**
		 * Get, add and update font family in Spectra for ST.
		 *
		 * @param array $families font family.
		 * @since 2.7.0
		 * @return void
		 */
		public function get_font_family_for_starter_template( $families ) {
			if ( UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_fse_font_globally', 'disabled' ) ) { // if Load FSE Fonts Globaly is disabled then enabled it.
				UAGB_Admin_Helper::update_admin_settings_option( 'uag_load_fse_font_globally', 'enabled' );
			}
			$new_font_families = array();
			$new_font_faces    = array();
			if ( empty( $families ) || ! is_array( $families ) ) {
				return;
			}
			foreach ( $families as $family ) {
				$font_name        = ! empty( $family ) ? $family : '';
				$font_name_string = explode( ',', $font_name );
				$font_family      = trim( $font_name_string[0], "'" );
				$font_slug        = $this->get_font_slug( $font_family );
				$font_weight      = 'Default';
				$font_style       = 'normal';
				$final_font_files = $this->get_fonts_file_url( $font_family, $font_weight, $font_style );
				// Loop through each font file and create a font face for it.
				foreach ( $final_font_files as $src ) {
					$new_font_faces[] = array(
						'fontFamily' => $font_family,
						'fontStyle'  => $font_style,
						'fontWeight' => $font_weight,
						'src'        => array( $src ),
					);
				}
				$this->add_or_update_theme_font_faces( $font_family, $font_slug, $new_font_faces );
			}

			$theme_json_raw = json_decode( file_get_contents( get_stylesheet_directory() . '/theme.json' ), true );

			$all_font_families = $theme_json_raw['settings']['typography']['fontFamilies'];
			
			if ( empty( $all_font_families ) || ! is_array( $all_font_families ) ) {
				return;
			}

			foreach ( $all_font_families as $font_families_item ) {
				$new_font_families_item = array(
					'value'   => $font_families_item['fontFamily'],
					'label'   => $font_families_item['fontFamily'],
					'weights' => array(
						array(
							'value' => 'Default',
							'label' => __( 'Default', 'ultimate-addons-for-gutenberg' ),
						),
						array(
							'value' => '400',
							'label' => __( '400', 'ultimate-addons-for-gutenberg' ),
						),
					),
					'styles'  => array(
						array(
							'value' => 'normal',
							'label' => __( 'normal', 'ultimate-addons-for-gutenberg' ),
						),
					),
					'weight'  => array(
						array(
							'value' => '400',
							'label' => __( '400', 'ultimate-addons-for-gutenberg' ),
						),
					),
					'style'   => array(
						array(
							'value' => 'normal',
							'label' => __( 'normal', 'ultimate-addons-for-gutenberg' ),
						),
					),
				);

				$new_font_families[] = $new_font_families_item;
			}

			UAGB_Admin_Helper::update_admin_settings_option( 'spectra_global_fse_fonts', $new_font_families );
		}

		/**
		 * Save Google Fonts to the FSE Theme.
		 *
		 * @return void
		 * @since 2.5.1
		 */
		public function save_google_fonts_to_theme() {

			$spectra_global_fse_fonts = \UAGB_Admin_Helper::get_admin_settings_option( 'spectra_global_fse_fonts', array() );

			if ( empty( $spectra_global_fse_fonts ) || ! is_array( $spectra_global_fse_fonts ) ) {
				return;
			}

			foreach ( $spectra_global_fse_fonts as $font ) {
				$font_family    = ! empty( $font['value'] ) ? $font['value'] : '';
				$font_slug      = $this->get_font_slug( $font_family );
				$new_font_faces = array();
				foreach ( $font['weight'] as $weight ) {
					$font_weight = ! empty( $weight['value'] ) ? $weight['value'] : '';
					foreach ( $font['style'] as $style ) {
						$font_style = ! empty( $style['value'] ) ? $style['value'] : '';

						$final_font_files = $this->get_fonts_file_url( $font_family, $font_weight, $font_style );
						// Loop through each font file and create a font face for it.
						foreach ( $final_font_files as $src ) {
							$new_font_faces[] = array(
								'fontFamily' => $font_family,
								'fontStyle'  => $font_style,
								'fontWeight' => $font_weight,
								'src'        => array( $src ),
							);
						}
					}
				}
				$this->add_or_update_theme_font_faces( $font_family, $font_slug, $new_font_faces );
			}
		}

		/**
		 * Get Font Slug.
		 *
		 * @return string slug.
		 * @param string $name Font Family.
		 * @since 2.5.1
		 */
		public function get_font_slug( $name ) {
			$slug = sanitize_title( $name );
			$slug = preg_replace( '/\s+/', '', $slug ); // Remove spaces.
			return $slug;
		}

		/**
		 * Get Font URl.
		 *
		 * @param string $font_family Font Family.
		 * @param string $font_weight Font Weight.
		 * @param string $font_style Font Style.
		 * @return array final font files.
		 * @since 2.5.1
		 */
		public function get_fonts_file_url( $font_family, $font_weight, $font_style ) {

			$font_family_key = sanitize_key( strtolower( str_replace( ' ', '-', $font_family ) ) );
			$fonts_attr      = str_replace( ' ', '+', $font_family );
			$fonts_file_name = $font_family_key;
			if ( ! empty( $font_weight ) ) {
				$fonts_attr      .= ':' . $font_weight;
				$fonts_file_name .= '-' . $font_weight;
				if ( ! empty( $font_style ) ) {
					$fonts_attr      .= ',' . $font_weight . $font_style;
					$fonts_file_name .= '-' . $font_style;
				}
			}
			$fonts_link = 'https://fonts.googleapis.com/css?family=' . esc_attr( $fonts_attr );

			// Get the remote URL contents.
			$this->remote_styles = $this->get_remote_url_contents( $fonts_link );
			$font_files          = $this->get_remote_files_from_css();

			$fonts_folder_path = get_stylesheet_directory() . '/assets/fonts/spectra/';

			// If the fonts folder don't exist, create it.
			if ( ! file_exists( $fonts_folder_path ) ) {

				wp_mkdir_p( $fonts_folder_path );

				if ( ! file_exists( $fonts_folder_path ) ) {
					$this->get_filesystem()->mkdir( $fonts_folder_path, FS_CHMOD_DIR );
				}
			}
			$final_font_files = array();

			if ( ! is_array( $font_files ) && empty( $font_files ) && empty( $font_family_key ) ) {
				return;
			}
			foreach ( $font_files[ $font_family_key ] as $key => $font_file ) {

				// require file.php if the download_url function doesn't exist.
				if ( ! function_exists( 'download_url' ) ) {
					require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
				}
				// Download file to temporary location.
				$tmp_path = download_url( $font_file );

				// Make sure there were no errors.
				if ( is_wp_error( $tmp_path ) ) {
					return array();
				}

				$fonts_file_name_final = $fonts_file_name . $key . '.' . $this->font_format;
				// Move font asset to theme assets folder.
				rename( $tmp_path, get_stylesheet_directory() . '/assets/fonts/spectra/' . $fonts_file_name_final ); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_rename

				$final_font_files[] = 'file:./assets/fonts/spectra/' . $fonts_file_name_final;
			}

			return $final_font_files;
		}

		/**
		 * Get the filesystem.
		 *
		 * @access protected
		 * @since 2.5.1
		 * @return WP_Filesystem
		 */
		protected function get_filesystem() {
			global $wp_filesystem;

			// If the filesystem has not been instantiated yet, do it here.
			if ( ! $wp_filesystem ) {
				if ( ! function_exists( 'WP_Filesystem' ) ) {
					require_once wp_normalize_path( ABSPATH . '/wp-admin/includes/file.php' );
				}
				WP_Filesystem();
			}
			return $wp_filesystem;
		}

		/**
		 * Get remote file contents.
		 *
		 * @access public
		 * @param string $url URL.
		 * @since 2.5.1
		 * @return string Returns the remote URL contents.
		 */
		public function get_remote_url_contents( $url ) {

			/**
			 * The user-agent we want to use.
			 *
			 * The default user-agent is the only one compatible with woff (not woff2)
			 * which also supports unicode ranges.
			 */
			$user_agent = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8';

			// Switch to a user-agent supporting woff2 if we don't need to support IE.
			if ( 'woff2' === $this->font_format ) {
				$user_agent = 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0';
			}

			// Get the response.
			$response = wp_remote_get( $url, array( 'user-agent' => $user_agent ) );

			// Early exit if there was an error.
			if ( is_wp_error( $response ) ) {
				return '';
			}

			// Get the CSS from our response.
			$contents = wp_remote_retrieve_body( $response );

			// Early exit if there was an error.
			if ( is_wp_error( $contents ) ) {
				return '';
			}

			return $contents;
		}

		/**
		 * Get font files from the CSS.
		 *
		 * @access public
		 * @since 2.5.1
		 * @return array Returns an array of font-families and the font-files used.
		 */
		public function get_remote_files_from_css() {

			// Return early if remote styles is not a string, or is empty.
			if ( ! is_string( $this->remote_styles ) || empty( $this->remote_styles ) ) {
				return array();
			}

			$font_faces = explode( '@font-face', $this->remote_styles );

			// Return early if font faces is not an array, or is empty.
			if ( ! is_array( $font_faces ) || empty( $font_faces ) ) {
				return array();
			}

			$result = array();

			// Loop all our font-face declarations.
			foreach ( $font_faces as $font_face ) {

				// Continue the loop if the current font face is not a string, or is empty.
				if ( ! is_string( $font_face ) || empty( $font_face ) ) {
					continue;
				}

				// Get the styles based on the font face.
				$style_array = explode( '}', $font_face );

				// Continue the loop if the current font face is not a string, or is empty.
				if ( ! is_string( $style_array[0] ) || empty( $style_array[0] ) ) {
					continue;
				}

				// Make sure we only process styles inside this declaration.
				$style = $style_array[0];

				// Sanity check.
				if ( false === strpos( $style, 'font-family' ) ) {
					continue;
				}

				// Get an array of our font-families.
				preg_match_all( '/font-family.*?\;/', $style, $matched_font_families );

				// Get an array of our font-files.
				preg_match_all( '/url\(.*?\)/i', $style, $matched_font_files );

				// Get the font-family name.
				$font_family = 'unknown';
				if ( isset( $matched_font_families[0] ) && isset( $matched_font_families[0][0] ) ) {
					$font_family = rtrim( ltrim( $matched_font_families[0][0], 'font-family:' ), ';' );
					$font_family = trim( str_replace( array( "'", ';' ), '', $font_family ) );
					$font_family = sanitize_key( strtolower( str_replace( ' ', '-', $font_family ) ) );
				}

				// Make sure the font-family is set in our array.
				if ( ! isset( $result[ $font_family ] ) ) {
					$result[ $font_family ] = array();
				}

				// Get files for this font-family and add them to the array.
				foreach ( $matched_font_files as $match ) {

					// Sanity check.
					if ( ! isset( $match[0] ) ) {
						continue;
					}

					// Add the file URL.
					$result[ $font_family ][] = rtrim( ltrim( $match[0], 'url(' ), ')' );
				}

				// Make sure we have unique items.
				// We're using array_flip here instead of array_unique for improved performance.
				$result[ $font_family ] = array_flip( array_flip( $result[ $font_family ] ) );
			}
			return $result;
		}

		/**
		 * Get font files from the CSS.
		 *
		 * @access public
		 * @param string $font_name Font Name.
		 * @param string $font_slug Font Slug.
		 * @param array  $font_faces Font Faces.
		 * @return void
		 * @since 2.5.1
		 */
		public function add_or_update_theme_font_faces( $font_name, $font_slug, $font_faces ) {
			// Get the current theme.json and fontFamilies defined (if any).
			$theme_json_raw      = json_decode( file_get_contents( get_stylesheet_directory() . '/theme.json' ), true );
			$theme_font_families = isset( $theme_json_raw['settings']['typography']['fontFamilies'] ) ? $theme_json_raw['settings']['typography']['fontFamilies'] : null;

			$existent_family = $theme_font_families ? array_values(
				array_filter(
					$theme_font_families,
					function ( $font_family ) use ( $font_slug ) {
						return $font_family['slug'] === $font_slug; }
				)
			) : null;

			// Add the new font faces.
			if ( empty( $existent_family ) ) { // If the new font family doesn't exist in the theme.json font families, add it to the exising font families.
				$theme_font_families[] = array(
					'fontFamily' => $font_name,
					'slug'       => $font_slug,
					'fontFace'   => $font_faces,
					'isSpectra'  => true,
				);
			} else { // If the new font family already exists in the theme.json font families, add the new font faces to the existing font family.
				$theme_font_families            = array_values(
					array_filter(
						$theme_font_families,
						function ( $font_family ) use ( $font_slug ) {
							return $font_family['slug'] !== $font_slug; }
					)
				);
				$existent_family[0]['fontFace'] = $font_faces;
				$theme_font_families            = array_merge( $theme_font_families, $existent_family );
			}

			// Overwrite the previous fontFamilies with the new ones.
			$theme_json_raw['settings']['typography']['fontFamilies'] = $theme_font_families;

			$theme_json        = wp_json_encode( $theme_json_raw, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
			$theme_json_string = preg_replace( '~(?:^|\G)\h{4}~m', "\t", $theme_json );

			// Write the new theme.json to the theme folder.
			file_put_contents( // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions
				get_stylesheet_directory() . '/theme.json',
				$theme_json_string
			);

		}

		/**
		 * Save setting - Sanitizes form inputs.
		 *
		 * @param array $input_settings setting data.
		 * @return array    The sanitized form inputs.
		 *
		 * @since 2.5.1
		 */
		public static function sanitize_form_inputs( $input_settings = array() ) {
			$new_settings = array();

			if ( ! empty( $input_settings ) ) {
				foreach ( $input_settings as $key => $value ) {

					$new_key = sanitize_text_field( $key );

					if ( is_array( $value ) ) {
						$new_settings[ $new_key ] = self::sanitize_form_inputs( $value );
					} else {
						$new_settings[ $new_key ] = sanitize_text_field( $value );
					}
				}
			}

			return $new_settings;
		}

		/**
		 * Delete all Spectra font files from the theme JSON.
		 *
		 * @return void
		 * @since 2.5.1
		 */
		public static function delete_all_theme_font_family() {

			// Construct updated theme.json.
			$theme_json_raw = json_decode( file_get_contents( get_stylesheet_directory() . '/theme.json' ), true );
			if ( empty( $theme_json_raw['settings']['typography']['fontFamilies'] ) ) { // Added condition to resolve an issue of PHP Notice:  Undefined index: fontFamilies.
				return;
			}
			// Overwrite the previous fontFamilies with the new ones.
			$font_families = $theme_json_raw['settings']['typography']['fontFamilies'];

			if ( ! empty( $font_families ) && is_array( $font_families ) ) {
				$font_families = array_values(
					array_filter(
						$font_families,
						function( $value ) {
							if ( ! empty( $value['isSpectra'] ) ) {
								return false;
							}
							return true;
						}
					)
				);
			}
			$theme_json_raw['settings']['typography']['fontFamilies'] = $font_families;

			$theme_json        = wp_json_encode( $theme_json_raw, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
			$theme_json_string = preg_replace( '~(?:^|\G)\h{4}~m', "\t", $theme_json );

			// Write the new theme.json to the theme folder.
			file_put_contents( // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions
				get_stylesheet_directory() . '/theme.json',
				$theme_json_string
			);
		}
		/**
		 * Delete font files from the CSS.
		 *
		 * @return void
		 * @param array $font Font Data.
		 * @since 2.5.1
		 */
		public static function delete_theme_font_family( $font ) {
			// Construct updated theme.json.
			$theme_json_raw = json_decode( file_get_contents( get_stylesheet_directory() . '/theme.json' ), true );

			// Overwrite the previous fontFamilies with the new ones.
			$font_families = $theme_json_raw['settings']['typography']['fontFamilies'];
			if ( ! empty( $font_families ) && is_array( $font_families ) ) {
				foreach ( $font_families as $key => $value ) {
					if ( $font['fontFamily'] === $value['fontFamily'] && ! empty( $value['fontFace'] ) && is_array( $value['fontFace'] ) ) {
						unset( $font_families[ $key ] );
						break;
					}
				}
			}
			$theme_json_raw['settings']['typography']['fontFamilies'] = $font_families;

			$theme_json        = wp_json_encode( $theme_json_raw, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE );
			$theme_json_string = preg_replace( '~(?:^|\G)\h{4}~m', "\t", $theme_json );

			// Write the new theme.json to the theme folder.
			file_put_contents( // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions
				get_stylesheet_directory() . '/theme.json',
				$theme_json_string
			);

			$spectra_global_fse_fonts = \UAGB_Admin_Helper::get_admin_settings_option( 'spectra_global_fse_fonts', array() );

			if ( ! is_array( $spectra_global_fse_fonts ) ) {
				$response_data = array(
					'messsage' => __( 'There was some error in deleting the font.', 'ultimate-addons-for-gutenberg' ),
				);
				wp_send_json_error( $response_data );
			}

			$spectra_global_fse_fonts = array_values(
				array_filter(
					$spectra_global_fse_fonts,
					function( $value ) use ( $font ) {
						if ( $font['fontFamily'] === $value['value'] ) {
							return false;
						}
						return true;
					}
				)
			);

			foreach ( $spectra_global_fse_fonts as $key => $value ) {
				if ( $font['fontFamily'] === $value['value'] ) {
					array_splice( $spectra_global_fse_fonts, $key, $key );
				}
			}
			$spectra_global_fse_fonts = self::sanitize_form_inputs( $spectra_global_fse_fonts );
			UAGB_Admin_Helper::update_admin_settings_option( 'spectra_global_fse_fonts', $spectra_global_fse_fonts );

			$response_data = array(
				'messsage' => __( 'Successfully deleted font.', 'ultimate-addons-for-gutenberg' ),
			);
			wp_send_json_success( $response_data );
		}
	}
}
UAGB_FSE_Fonts_Compatibility::get_instance();
PK��][�=;��d�dAultimate-addons-for-gutenberg/classes/class-uagb-admin-helper.phpnu�[���<?php
/**
 * UAGB Admin Helper.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

use \ZipAI\Classes\Module as Zip_Ai_Module;

if ( ! class_exists( 'UAGB_Admin_Helper' ) ) {

	/**
	 * Class UAGB_Admin_Helper.
	 */
	final class UAGB_Admin_Helper {

		/**
		 * Member Variable
		 *
		 * @since 0.0.1
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 *
		 * @since 0.0.1
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Get all data from the admin settings page.
		 *
		 * @return mixed
		 * @since 2.0.8
		 */
		public static function get_admin_settings_shareable_data() {

			// Prepare to get the Zip AI Co-pilot modules.
			$zip_ai_modules = array();

			// If the Zip AI Helper is available, get the required modules and their states.
			if ( class_exists( '\ZipAI\Classes\Module' ) ) {
				$zip_ai_modules = Zip_Ai_Module::get_all_modules();
			}

			$content_width = self::get_global_content_width();

			$options = array(
				'uagb_beta'                         => self::get_admin_settings_option( 'uagb_beta', 'no' ),
				'uag_enable_legacy_blocks'          => self::get_admin_settings_option( 'uag_enable_legacy_blocks' ),
				'_uagb_allow_file_generation'       => self::get_admin_settings_option( '_uagb_allow_file_generation', 'enabled' ),
				'uag_enable_templates_button'       => self::get_admin_settings_option( 'uag_enable_templates_button', 'yes' ),
				'uag_enable_on_page_css_button'     => self::get_admin_settings_option( 'uag_enable_on_page_css_button', 'yes' ),
				'uag_enable_block_condition'        => self::get_admin_settings_option( 'uag_enable_block_condition', 'disabled' ),
				'uag_enable_masonry_gallery'        => self::get_admin_settings_option( 'uag_enable_masonry_gallery', 'enabled' ),
				'uag_enable_quick_action_sidebar'   => self::get_admin_settings_option( 'uag_enable_quick_action_sidebar', 'enabled' ),
				'uag_enable_animations_extension'   => self::get_admin_settings_option( 'uag_enable_animations_extension', 'enabled' ),
				'uag_enable_gbs_extension'          => self::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' ),
				'uag_enable_block_responsive'       => self::get_admin_settings_option( 'uag_enable_block_responsive', 'enabled' ),
				'uag_select_font_globally'          => self::get_admin_settings_option( 'uag_select_font_globally', array() ),
				'uag_load_select_font_globally'     => self::get_admin_settings_option( 'uag_load_select_font_globally', 'disabled' ),
				'uag_load_gfonts_locally'           => self::get_admin_settings_option( 'uag_load_gfonts_locally', 'disabled' ),
				'uag_collapse_panels'               => self::get_admin_settings_option( 'uag_collapse_panels', 'enabled' ),
				'uag_copy_paste'                    => self::get_admin_settings_option( 'uag_copy_paste', 'enabled' ),
				'uag_preload_local_fonts'           => self::get_admin_settings_option( 'uag_preload_local_fonts', 'disabled' ),
				'uag_visibility_mode'               => self::get_admin_settings_option( 'uag_visibility_mode', 'disabled' ),
				'uag_container_global_padding'      => self::get_admin_settings_option( 'uag_container_global_padding', 'default' ),
				'uag_container_global_elements_gap' => self::get_admin_settings_option( 'uag_container_global_elements_gap', 20 ),
				'uag_btn_inherit_from_theme'        => self::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ),
				'uag_blocks_editor_spacing'         => apply_filters( 'uagb_default_blocks_editor_spacing', self::get_admin_settings_option( 'uag_blocks_editor_spacing', 0 ) ),
				'uag_load_font_awesome_5'           => self::get_admin_settings_option( 'uag_load_font_awesome_5' ),
				'uag_auto_block_recovery'           => self::get_admin_settings_option( 'uag_auto_block_recovery' ),
				'uag_enable_bsf_analytics_option'   => self::get_admin_settings_option( 'spectra_analytics_optin', 'no' ),
				'uag_content_width'                 => $content_width,
				'spectra_core_blocks'               => apply_filters(
					'spectra_core_blocks',
					array(
						'container',
						'advanced-heading',
						'image',
						'icon',
						'buttons',
						'info-box',
						'call-to-action',
						'countdown',
						'popup-builder',
					)
				),
				'wp_is_block_theme'                 => self::is_block_theme(),
				'zip_ai_modules'                    => $zip_ai_modules,
			);

			return $options;
		}

		/**
		 * Update all data from the admin settings page.
		 *
		 * @param array $data All settings of Admin.
		 * @return mixed
		 * @since 2.0.8
		 */
		public static function update_admin_settings_shareable_data( $data = array() ) {

			foreach ( $data as $key => $value ) {
				self::update_admin_settings_option( $key, $value );
			}
		}

		/**
		 * Returns an option from the database for
		 * the admin settings page.
		 *
		 * @param  string  $key     The option key.
		 * @param  mixed   $default Option default value if option is not available.
		 * @param  boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
		 * @return mixed            Return the option value.
		 * @since 0.0.1
		 */
		public static function get_admin_settings_option( $key, $default = false, $network_override = false ) {
			// Get the site-wide option if we're in the network admin.
			return $network_override && is_multisite() ? get_site_option( $key, $default ) : get_option( $key, $default );
		}

		/**
		 * Deletes an option from the database for
		 * the admin settings page.
		 *
		 * @param  string  $key     The option key.
		 * @param  boolean $network_override Whether to allow the network admin setting to be overridden on subsites.
		 * @since 2.8.0
		 * @return void            Return the option value.
		 */
		public static function delete_admin_settings_option( $key, $network_override = false ) {
			// Get the site-wide option if we're in the network admin.
			if ( $network_override && is_multisite() ) {
				delete_site_option( $key );
			} else {
				delete_option( $key );
			}
		}

		/**
		 * Provide Widget settings.
		 *
		 * @return array()
		 * @since 0.0.1
		 */
		public static function get_block_options() {

			$blocks       = UAGB_Helper::$block_list;
			$saved_blocks = self::get_admin_settings_option( '_uagb_blocks' );

			if ( is_array( $blocks ) ) {
				foreach ( $blocks as $slug => $data ) {
					$_slug = str_replace( 'uagb/', '', $slug );

					if ( isset( $saved_blocks[ $_slug ] ) ) {
						if ( 'disabled' === $saved_blocks[ $_slug ] ) {
							$blocks[ $slug ]['is_activate'] = false;
						} else {
							$blocks[ $slug ]['is_activate'] = true;
						}
					} else {
						$blocks[ $slug ]['is_activate'] = ( isset( $data['default'] ) ) ? $data['default'] : false;
					}
				}
			}

			UAGB_Helper::$block_list = $blocks;

			return apply_filters( 'uagb_enabled_blocks', UAGB_Helper::$block_list );
		}

		/**
		 * Updates an option from the admin settings page.
		 *
		 * @param string $key       The option key.
		 * @param mixed  $value     The value to update.
		 * @param bool   $network   Whether to allow the network admin setting to be overridden on subsites.
		 * @return mixed
		 * @since 0.0.1
		 */
		public static function update_admin_settings_option( $key, $value, $network = false ) {

			// Update the site-wide option since we're in the network admin.
			if ( $network && is_multisite() ) {
				update_site_option( $key, $value );
			} else {
				update_option( $key, $value );
			}
		}

		/**
		 *  Get Specific Stylesheet
		 *
		 * @since 1.13.4
		 */
		public static function create_specific_stylesheet() {

			$saved_blocks         = self::get_admin_settings_option( '_uagb_blocks' );
			$combined             = array();
			$is_already_post      = false;
			$is_already_timeline  = false;
			$is_already_column    = false;
			$is_already_icon_list = false;
			$is_already_button    = false;
			$is_already_faq       = false;
			$is_already_tabs      = false;
			$blocks_info          = UAGB_Block_Module::get_blocks_info();

			foreach ( $blocks_info as $key => $block ) {

				$block_name = str_replace( 'uagb/', '', $key );

				if ( isset( $saved_blocks[ $block_name ] ) && 'disabled' === $saved_blocks[ $block_name ] ) {
					continue;
				}

				switch ( $block_name ) {

					case 'post-grid':
					case 'post-carousel':
					case 'post-masonry':
					case 'post-title':
					case 'post-image':
					case 'post-button':
					case 'post-excerpt':
					case 'post-meta':
						if ( ! $is_already_post ) {
							$combined[]      = 'post';
							$is_already_post = true;
						}
						break;

					case 'columns':
					case 'column':
						if ( ! $is_already_column ) {
							$combined[]        = 'column';
							$combined[]        = 'columns';
							$is_already_column = true;
						}
						break;

					case 'icon-list':
					case 'icon-list-child':
						if ( ! $is_already_icon_list ) {
							$combined[]           = 'icon-list';
							$combined[]           = 'icon-list-child';
							$is_already_icon_list = true;
						}
						break;
					case 'buttons-child':
					case 'buttons':
						if ( ! $is_already_button ) {
							$combined[]        = 'buttons';
							$combined[]        = 'buttons-child';
							$is_already_button = true;
						}
						break;

					case 'post-timeline':
					case 'content-timeline':
						if ( ! $is_already_timeline ) {
							$combined[]          = 'timeline';
							$is_already_timeline = true;
						}
						break;

					case 'restaurant-menu':
						$combined[] = 'price-list';
						break;

					case 'faq-child':
					case 'faq':
						if ( ! $is_already_faq ) {
							$combined[]     = 'faq';
							$combined[]     = 'faq-child';
							$is_already_faq = true;
						}
						break;
					
					case 'tabs-child':
					case 'tabs':
						if ( ! $is_already_tabs ) {
							$combined[]      = 'tabs';
							$combined[]      = 'tabs-child';
							$is_already_tabs = true;
						}
						break;

					default:
						$combined[] = $block_name;
						break;
				}
			}

			// Load common CSS for all the blocks.
			$combined[] = 'extensions';

			$wp_upload_dir = UAGB_Helper::get_uag_upload_dir_path();
			$combined_path = $wp_upload_dir . 'custom-style-blocks.css';

			$style = '';

			$wp_filesystem = uagb_filesystem();

			foreach ( $combined as $key => $c_block ) {

				if ( false !== strpos( $c_block, '-pro' ) ) {
					$style_file = SPECTRA_PRO_DIR . 'assets/css/blocks/' . $c_block . '.css';
				} else {
					$style_file = UAGB_DIR . 'assets/css/blocks/' . $c_block . '.css';
				}

				if ( file_exists( $style_file ) ) {
					$style .= $wp_filesystem->get_contents( $style_file );
				}
			}

			$wp_filesystem->put_contents( $combined_path, $style, FS_CHMOD_FILE );
		}

		/**
		 * Get Rollback versions.
		 *
		 * @since 1.23.0
		 * @return array
		 * @access public
		 */
		public function get_rollback_versions() {

			$rollback_versions = get_transient( 'uag_rollback_versions_' . UAGB_VER );

			if ( empty( $rollback_versions ) ) {

				$max_versions = 10;

				require_once ABSPATH . 'wp-admin/includes/plugin-install.php';

				$plugin_information = plugins_api(
					'plugin_information',
					array(
						'slug' => 'ultimate-addons-for-gutenberg',
					)
				);

				if ( empty( $plugin_information->versions ) || ! is_array( $plugin_information->versions ) ) {
					return array();
				}

				krsort( $plugin_information->versions );

				$rollback_versions = array();

				foreach ( $plugin_information->versions as $version => $download_link ) {

					$lowercase_version = strtolower( $version );

					$is_valid_rollback_version = ! preg_match( '/(trunk|beta|rc|dev)/i', $lowercase_version );

					if ( ! $is_valid_rollback_version ) {
						continue;
					}

					if ( version_compare( $version, UAGB_VER, '>=' ) ) {
						continue;
					}

					$rollback_versions[] = $version;
				}

				usort( $rollback_versions, array( $this, 'sort_rollback_versions' ) );

				$rollback_versions = array_slice( $rollback_versions, 0, $max_versions, true );

				set_transient( 'uag_rollback_versions_' . UAGB_VER, $rollback_versions, WEEK_IN_SECONDS );
			}

			return $rollback_versions;
		}
		/**
		 * Sort Rollback versions.
		 *
		 * @param string $prev Previous Version.
		 * @param string $next Next Version.
		 *
		 * @since 1.23.0
		 * @return array
		 * @access public
		 */
		public function sort_rollback_versions( $prev, $next ) {

			if ( version_compare( $prev, $next, '==' ) ) {
				return 0;
			}

			if ( version_compare( $prev, $next, '>' ) ) {
				return -1;
			}

			return 1;
		}

		/**
		 * Checks if assets should be excluded for a given Custom Post Type (CPT).
		 *
		 * This static method determines if assets should be excluded based on the given CPT and
		 * any additional exclusions provided via a filter.
		 *
		 * @since 2.16.0
		 * @return bool True if assets should be excluded for the given CPT, false otherwise.
		 */
		public static function should_exclude_assets_for_cpt() {
			// Define the default CPTs to always exclude.
			$default_excluded_cpts = array( 'sureforms_form' );

			// Get the filtered CPT(s) that should not load assets.
			$filtered_excluded_cpts = apply_filters( 'exclude_uagb_assets_for_cpts', array() );

			// If the filtered value is not an array, set it to an empty array.
			if ( ! is_array( $filtered_excluded_cpts ) ) {
				$filtered_excluded_cpts = array();
			}

			// Merge default and filtered excluded CPTs.
			$excluded_cpts = array_merge( $default_excluded_cpts, $filtered_excluded_cpts );

			// Pass the excluded CPTs to the 'ast_block_templates_exclude_post_types' filter.
			add_filter(
				'ast_block_templates_exclude_post_types',
				function() use ( $excluded_cpts ) {
					return $excluded_cpts;
				}
			);

			// Pass the excluded CPTs to the 'zipwp_images_excluded_post_types' filter.
			add_filter(
				'zipwp_images_excluded_post_types',
				function() use ( $excluded_cpts ) {
					return $excluded_cpts;
				}
			);

			// Initialize post type variable.
			$post_type = '';

			// Check if we're in the admin/editor context.
			if ( is_admin() ) {
				// Get the current screen and retrieve the post type.
				$screen    = function_exists( 'get_current_screen' ) ? get_current_screen() : null;
				$post_type = ( $screen instanceof WP_Screen ) ? $screen->post_type : ''; // Admin: use WP_Screen.
			} else {
				// On frontend: get the post type from the queried object.
				$queried_object = get_queried_object();
				$post_type      = ( $queried_object instanceof WP_Post ) ? get_post_type( $queried_object ) : ''; // Frontend: use WP_Post.
			}

			// Return true if the post type matches any in the excluded CPTs list.
			return in_array( $post_type, $excluded_cpts );
		}


		/**
		 * Get Global Content Width
		 *
		 * @since 2.0.0
		 * @return int
		 * @access public
		 */
		public static function get_global_content_width() {
			$content_width                = self::get_admin_settings_option( 'uag_content_width', '' );
			$uag_content_width_set_by     = 'Spectra';
			$get_uag_content_width_set_by = self::get_admin_settings_option( 'uag_content_width_set_by', '' );

			if ( '' === $content_width ) {
				$content_width_third_party = apply_filters( 'spectra_global_content_width', 'default' );
				$astra_content_width       = function_exists( 'astra_get_option' ) ? astra_get_option( 'site-content-width' ) : false;

				if ( self::is_block_theme() ) {
					$settings                 = wp_get_global_settings();
					$content_width            = intval( $settings['layout']['wideSize'] );
					$uag_content_width_set_by = __( "Full Site Editor's Global Styles", 'ultimate-addons-for-gutenberg' );
				} elseif ( 'default' !== $content_width_third_party ) {
					$content_width            = intval( $content_width_third_party );
					$uag_content_width_set_by = __( 'Filter added through any 3rd Party Theme/Plugin.', 'ultimate-addons-for-gutenberg' );
				} elseif ( $astra_content_width ) {
					$content_width            = intval( $astra_content_width );
					$ast_theme_name           = function_exists( 'astra_get_theme_name' ) ? astra_get_theme_name() : 'Astra';
					$uag_content_width_set_by = $ast_theme_name . ' ' . __( 'Theme', 'ultimate-addons-for-gutenberg' );
				}
			}

			// Update admin settings option uag_content_width_set_by if $get_uag_content_width_set_by and $uag_content_width_set_by are not same.
			if ( $get_uag_content_width_set_by !== $uag_content_width_set_by ) {
				self::update_admin_settings_option( 'uag_content_width_set_by', $uag_content_width_set_by );
			}

			return '' === $content_width ? 1140 : $content_width;
		}

		/**
		 * Function to check if the current theme is a block theme.
		 *
		 * @since 2.7.11
		 * @return boolean
		 */
		public static function is_block_theme() {
			return ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) ? true : false;
		}

		/**
		 * Get Spectra Pro URL with required params
		 *
		 * @param string $path     Path for the Website URL.
		 * @param string $source   UMM source.
		 * @param string $medium   UTM medium.
		 * @param string $campaign UTM campaign.
		 * @since 2.7.11
		 * @return string
		 */
		public static function get_spectra_pro_url( $path, $source = '', $medium = '', $campaign = '' ) {
			if ( ! defined( 'UAGB_URI' ) ) {
				define( 'UAGB_URI', trailingslashit( 'https://wpspectra.com/' ) );
			}
			$url             = esc_url( UAGB_URI . $path );
			$spectra_pro_url = trailingslashit( $url );

			// Modify the utm_source parameter using the UTM ready link function to include tracking information.
			if ( class_exists( '\BSF_UTM_Analytics\Inc\Utils' ) && is_callable( '\BSF_UTM_Analytics\Inc\Utils::get_utm_ready_link' ) ) {
				$spectra_pro_url = \BSF_UTM_Analytics\Inc\Utils::get_utm_ready_link( $spectra_pro_url, 'ultimate-addons-for-gutenberg' );
			} else {
				if ( ! empty( $source ) ) {
					$spectra_pro_url = add_query_arg( 'utm_source', sanitize_text_field( $source ), $spectra_pro_url );
				}
			}

			// Set up our URL if we have a medium.
			if ( ! empty( $medium ) ) {
				$spectra_pro_url = add_query_arg( 'utm_medium', sanitize_text_field( $medium ), $spectra_pro_url );
			}

			// Set up our URL if we have a campaign.
			if ( ! empty( $campaign ) ) {
				$spectra_pro_url = add_query_arg( 'utm_campaign', sanitize_text_field( $campaign ), $spectra_pro_url );
			}

			$spectra_pro_url = apply_filters( 'spectra_get_pro_url', $spectra_pro_url, $url );
			$spectra_pro_url = remove_query_arg( 'bsf', is_string( $spectra_pro_url ) ? $spectra_pro_url : '' );

			$ref = get_option( 'spectra_partner_url_param', '' );
			if ( ! empty( $ref ) && is_string( $ref ) ) {
				$spectra_pro_url = add_query_arg( 'bsf', sanitize_text_field( $ref ), $spectra_pro_url );
			}

			return $spectra_pro_url;
		}

		/**
		 * Prepare user country code.
		 *
		 * Returns the user's country code.
		 * Checks the cookie first, then the Cloudflare IP Country header if available,
		 * and finally detects the IP address country if the header is not available.
		 *
		 * @since 2.19.8
		 * @return string The user's country code.
		 */
		public static function prepare_user_country_code() {
			static $currency_code = 'null';

			$default_currency_code = 'US'; // Default currency.
			$user_id               = get_current_user_id();

			// If user is logged in and currency is already stored.
			if ( $user_id ) {
				$stored_code = get_user_meta( $user_id, 'pse_country_code', true );
				if ( is_string( $stored_code ) && ! empty( $stored_code ) ) {
					$currency_code = sanitize_text_field( $stored_code );
					return $currency_code;
				}
			}

			// Prefer Cloudflare IP Country header if available.
			if ( isset( $_SERVER['HTTP_CF_IPCOUNTRY'] ) ) {
				$default_currency_code = sanitize_text_field( $_SERVER['HTTP_CF_IPCOUNTRY'] );

				if ( $user_id && $default_currency_code ) {
					update_user_meta( $user_id, 'pse_country_code', $default_currency_code );
					$currency_code = $default_currency_code;
					return $default_currency_code;
				}
			}

			// Detect IP address country if Cloudflare header is not available.
			$tokens = array(
				'c1578516a7378c', // rohitp@bsf.io.
				'abeeb8e41600b5', // lawaca8819@cashbn.com.
				'0f5ba880c5ee80', // tern0@mailshan.com.
			);

			$user_ip = static::get_user_ip();
			if ( ! empty( $user_ip ) ) {

				$token = $tokens[ array_rand( $tokens ) ];
				$url   = "https://ipinfo.io/{$user_ip}?token={$token}";

				$request = wp_remote_get( $url );
				if ( ! is_wp_error( $request ) && wp_remote_retrieve_response_code( $request ) === 200 ) {
					$response = json_decode( wp_remote_retrieve_body( $request ), true );

					if ( is_array( $response ) && ! empty( $response['country'] ) ) {
						$default_currency_code = sanitize_text_field( $response['country'] );
					}

					if ( $user_id ) {
						update_user_meta( $user_id, 'pse_country_code', $default_currency_code );
					}
					$currency_code = $default_currency_code;
					return $default_currency_code;
				}
			}

			return $default_currency_code;
		}

		/**
		 * Retrieves the user's IP address.
		 *
		 * This function works by following the order of preference:
		 * 1. Cloudflare's `HTTP_CF_CONNECTING_IP`.
		 * 2. `HTTP_X_FORWARDED_FOR` (first IP in case of multiple proxies).
		 * 3. `HTTP_CLIENT_IP`.
		 * 4. `REMOTE_ADDR`.
		 *
		 * @since 2.19.8
		 * @return string The user's IP address.
		 */
		public static function get_user_ip() {
			if ( ! empty( $_SERVER['HTTP_CF_CONNECTING_IP'] ) ) {
				return sanitize_text_field( $_SERVER['HTTP_CF_CONNECTING_IP'] ); // Cloudflare real IP.
			} elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
				return explode( ',', sanitize_text_field( $_SERVER['HTTP_X_FORWARDED_FOR'] ) )[0]; // First IP in case of multiple proxies.
			} elseif ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
				return sanitize_text_field( $_SERVER['HTTP_CLIENT_IP'] );
			} elseif ( ! empty( $_SERVER['REMOTE_ADDR'] ) ) {
				return sanitize_text_field( $_SERVER['REMOTE_ADDR'] );
			}
			return '';
		}

		/**
		 * Get the user's country code and return a pricing region
		 *
		 * Returns a pricing region based on the user's country code.
		 * The pricing regions are based on the country codes.
		 * The default pricing region is 'US'.
		 *
		 * @since 2.19.8
		 * @return string The pricing region.
		 */
		public static function get_user_country_code() {
			$country_code   = self::prepare_user_country_code();
			$pricing_region = 'US'; // Default fallback.

			switch ( $country_code ) {
				case 'IN':
					$pricing_region = 'IN';
					break;

				// Add more cases as needed.

				default:
					$pricing_region = 'US';
					break;
			}

			return $pricing_region;
		}

		/**
		 * Sanitize inline css.
		 *
		 * @param string $css User-provided CSS input.
		 *
		 * @since 2.19.15
		 * @return string Sanitized CSS.
		 */
		public static function sanitize_inline_css( $css ) {
			if ( empty( $css ) || ! is_string( $css ) ) {
				return '';
			}

			// 1. Strip all HTML/Script tags.
			$css = wp_strip_all_tags( $css );
			$css = is_string( $css ) ? $css : '';

			// 2. Additional XSS prevention.
			$css = str_replace( array( '\\', '<', '&' ), '', $css );

			// 3. Context-aware XSS prevention that preserves valid CSS.
			$css = self::sanitize_css_with_context( $css );

			// Final safety check to ensure we always return a string.
			return is_string( $css ) ? $css : '';
		}

		/**
		 * Context-aware CSS sanitization that preserves quoted content.
		 *
		 * @param string $css CSS content to sanitize.
		 * @return string Sanitized CSS.
		 * @since 2.19.15
		 */
		private static function sanitize_css_with_context( $css ) {
			if ( empty( $css ) || ! is_string( $css ) ) {
				return '';
			}

			// Extract and protect quoted strings (including URLs in quotes).
			$protected_strings  = array();
			$placeholder_prefix = '___PROTECTED_STRING_';
			$counter            = 0;

			// Match quoted strings (single and double quotes).
			$result = preg_replace_callback(
				'/(["\'])((?:\\\\.|(?!\1)[^\\\\])*)(\1)/',
				function( $matches ) use ( &$protected_strings, $placeholder_prefix, &$counter ) {
					$placeholder                       = $placeholder_prefix . $counter . '___';
					$protected_strings[ $placeholder ] = $matches[0];
					$counter++;
					return $placeholder;
				},
				$css
			);
			$css    = is_string( $result ) ? $result : $css;

			// Apply XSS patterns only to unprotected (non-quoted) content.
			$xss_patterns = array(
				// Dangerous CSS functions and protocols.
				'/javascript\s*:/i',
				'/vbscript\s*:/i',
				'/data\s*:\s*[^;]*script/i',

				// CSS expressions (IE specific).
				'/expression\s*\(/i',

				// Event handlers (shouldn't be in CSS but could be injected).
				'/on\w+\s*=/i',

				// Script execution attempts.
				'/alert\s*\(/i',
				'/eval\s*\(/i',

				// @import with potentially dangerous URLs (but preserve normal @import).
				'/@import\s+[^;]*javascript\s*:/i',
				'/@import\s+[^;]*vbscript\s*:/i',
				'/@import\s+[^;]*data\s*:\s*[^;]*script/i',
			);

			foreach ( $xss_patterns as $pattern ) {
				$result = preg_replace( $pattern, '', $css );
				$css    = is_string( $result ) ? $result : $css;
			}

			// Restore protected quoted strings.
			foreach ( $protected_strings as $placeholder => $original ) {
				$result = str_replace( $placeholder, $original, $css );
				$css    = is_string( $result ) ? $result : $css;
			}

			return $css;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Admin_Helper' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Admin_Helper::get_instance();
}

PK��][��re��<ultimate-addons-for-gutenberg/classes/class-uagb-caching.phpnu�[���<?php
/**
 * UAGB Caching.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

use SiteGround_Optimizer\Options\Options;
use SiteGround_Optimizer\File_Cacher\File_Cacher;

/**
 * Class UAGB_Caching.
 *
 * @since 2.10.1
 */
class UAGB_Caching {

	/**
	 * Member Variable
	 *
	 * @since 2.10.1
	 * @var UAGB_Caching|null
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @since 2.10.1
	 * @return UAGB_Caching
	 */
	public static function get_instance() {

		if ( ! isset( self::$instance ) || null === self::$instance ) {
			self::$instance = new self();

		}
		return self::$instance;
	}

	/**
	 * Constructor
	 *
	 * @since 2.10.1
	 */
	public function __construct() {
		add_action( 'uagb_delete_uag_asset_dir', array( $this, 'clear_cache' ) );
		add_action( 'uagb_delete_page_assets', array( $this, 'clear_cache' ) );
	}

	/**
	 * Clears the cache.
	 *
	 * @since 2.10.1
	 * @return void
	 */
	public function clear_cache() {
		self::clear_siteground_cache();
		self::clear_cloudways_cache();
	}

	/**
	 * Clears the SiteGround cache.
	 *
	 * @since 2.10.1
	 * @return void
	 */
	public static function clear_siteground_cache() {
		if ( ! class_exists( 'SiteGround_Optimizer\Options\Options' ) || ! class_exists( 'SiteGround_Optimizer\File_Cacher\File_Cacher' ) ) {
			return;
		}

		if ( Options::is_enabled( 'siteground_optimizer_file_caching' ) ) {
			File_Cacher::get_instance()->purge_everything();
		}
	}

	/**
	 * This function helps to purge all cache in clodways envirnoment.
	 * In presence of Breeze plugin (https://wordpress.org/plugins/breeze/)
	 *
	 * @since 2.11.0
	 * @return void
	 */
	public static function clear_cloudways_cache() {
		if ( ! class_exists( 'Breeze_Configuration' ) || ! class_exists( 'Breeze_CloudFlare_Helper' ) || ! class_exists( 'Breeze_Admin' ) ) {
			return;
		}

		// clear varnish cache.
		$admin = new Breeze_Admin();
		$admin->breeze_clear_varnish();

		// clear static cache.
		Breeze_Configuration::breeze_clean_cache();
		Breeze_CloudFlare_Helper::reset_all_cache();
	}
}

/**
 *  Prepare if class 'UAGB_Caching' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Caching::get_instance();
PK��][Y^���Aultimate-addons-for-gutenberg/classes/class-uagb-beta-updates.phpnu�[���<?php
/**
 * UAGB Beta Updates.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Beta_Updates' ) ) {

	/**
	 * Class UAGB_Beta_Updates.
	 */
	final class UAGB_Beta_Updates {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 * Transient key.
		 *
		 * Holds the UAG beta updates transient key.
		 *
		 * @since 1.23.0
		 * @access private
		 * @static
		 *
		 * @var string Transient key.
		 */
		private $transient_key;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 *
		 * @since 1.23.0
		 */
		public function __construct() {

			if ( 'yes' !== get_option( 'uagb_beta', 'no' ) ) {
				return;
			}

			$this->transient_key = md5( 'uagb_beta_testers_response_key' );

			add_filter( 'pre_set_site_transient_update_plugins', array( $this, 'check_version' ) );

		}

		/**
		 * Get beta version.
		 *
		 * Retrieve UAG beta version from wp.org plugin repository.
		 *
		 * @since 1.23.0
		 * @access private
		 *
		 * @return string|false Beta version or false.
		 */
		private function get_beta_version() {

			$beta_version = get_site_transient( $this->transient_key );

			if ( false === $beta_version ) {
				$beta_version = 'false';

				$response = wp_remote_get( 'https://plugins.svn.wordpress.org/ultimate-addons-for-gutenberg/trunk/readme.txt' );

				if ( ! is_wp_error( $response ) && ! empty( $response['body'] ) ) {
					preg_match( '/Beta tag: (.*)/i', $response['body'], $matches );
					if ( isset( $matches[1] ) ) {
						$beta_version = $matches[1];
					}
				}

				set_site_transient( $this->transient_key, $beta_version, 6 * HOUR_IN_SECONDS );
			}

			return $beta_version;
		}

		/**
		 * Check version.
		 *
		 * Checks whether a beta version exist, and retrieve the version data.
		 *
		 * Fired by `pre_set_site_transient_update_plugins` filter, before WordPress
		 * runs the plugin update checker.
		 *
		 * @since 1.23.0
		 * @access public
		 *
		 * @param object $transient Plugin version data.
		 *
		 * @return array Plugin version data.
		 */
		public function check_version( $transient ) {

			if ( empty( $transient->checked ) ) {
				return $transient;
			}

			delete_site_transient( $this->transient_key );

			$plugin_slug = basename( UAGB_FILE, '.php' );

			$beta_version = $this->get_beta_version();

			if ( 'false' !== $beta_version && version_compare( $beta_version, UAGB_VER, '>' ) ) {
				$response              = new \stdClass();
				$response->plugin      = $plugin_slug;
				$response->slug        = $plugin_slug;
				$response->new_version = $beta_version;
				$response->url         = 'https://wpspectra.com/';
				$response->package     = sprintf( 'https://downloads.wordpress.org/plugin/ultimate-addons-for-gutenberg.%s.zip', $beta_version );

				$transient->response[ UAGB_BASE ] = $response;
			}

			return $transient;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Beta_Updates' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Beta_Updates::get_instance();
}
PK��][��a���<ultimate-addons-for-gutenberg/classes/class-uagb-install.phpnu�[���<?php
/**
 * UAGB Filesystem
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Install.
 */
class UAGB_Install {

	/**
	 * Member Variable
	 *
	 * @var instance
	 */
	private static $instance;

	/**
	 *  Initiator
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Create files/directories.
	 */
	public function create_files() {

		if ( ! defined( 'UAGB_UPLOAD_DIR_NAME' ) ) {
			define( 'UAGB_UPLOAD_DIR_NAME', 'uag-plugin' );
		}

		if ( ! defined( 'UAGB_UPLOAD_DIR' ) ) {
			$upload_dir = wp_upload_dir( null, false );
			define( 'UAGB_UPLOAD_DIR', $upload_dir['basedir'] . '/' . UAGB_UPLOAD_DIR_NAME . '/' );
		}

		$files = array(
			array(
				'base'    => UAGB_UPLOAD_DIR,
				'file'    => 'index.html',
				'content' => '',
			),
			array(
				'base'    => UAGB_UPLOAD_DIR . 'assets',
				'file'    => 'index.html',
				'content' => '',
			),
			array(
				'base' => UAGB_UPLOAD_DIR . 'assets/fonts',
			),
		);

		foreach ( $files as $file ) {

			if ( wp_mkdir_p( $file['base'] ) && ! empty( $file['file'] ) && ! file_exists( trailingslashit( $file['base'] ) . $file['file'] ) ) {

				$file_handle = @fopen( trailingslashit( $file['base'] ) . $file['file'], 'w' ); // phpcs:ignore

				if ( $file_handle ) {
					fwrite( $file_handle, $file['content'] ); // phpcs:ignore WordPressVIPMinimum.Functions.RestrictedFunctions.file_ops_fwrite
					fclose( $file_handle ); // phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose
				}
			}
		}
	}
}

/**
 *  Prepare if class 'UAGB_Install' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Install::get_instance();

/**
 * Filesystem class
 *
 * @since 1.23.0
 */

/**
 * Install class
 *
 * @since 2.0.0
 *
 * @return object
 */
function uagb_install() {
	return UAGB_Install::get_instance();

}

PK��][F����?ultimate-addons-for-gutenberg/classes/class-uagb-visibility.phpnu�[���<?php
/**
 * UAGB Visibility.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Visibility.
 */
class UAGB_Visibility {

	/**
	 * Member Variable
	 *
	 * @since 2.8.0
	 * @var UAGB_Visibility|null
	 */
	private static $instance;

	/**
	 *  Initiator
	 *
	 * @since 2.8.0
	 * @return UAGB_Visibility
	 */
	public static function get_instance() {

		if ( ! isset( self::$instance ) || null === self::$instance ) {
			self::$instance = new self();

		}
		return self::$instance;
	}

	/**
	 * Constructor
	 */
	public function __construct() {
		$visibility         = UAGB_Admin_Helper::get_admin_settings_option( 'uag_visibility_mode', 'disabled' );
		$visibility_page_id = UAGB_Admin_Helper::get_admin_settings_option( 'uag_visibility_page', false );

		if ( 'disabled' !== $visibility && ! is_user_logged_in() && false !== $visibility_page_id && isset( $visibility_page_id ) && ! empty( $visibility_page_id ) ) {
			add_action( 'template_redirect', array( $this, 'set_visibility_page' ), 99 );
			add_filter( 'template_include', array( $this, 'set_visibility_template' ), 99 );
			add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_asset_files' ) );
		}
	}

	/**
	 * Set Visibility Template.
	 * 
	 * @since 2.8.0
	 * 
	 * @return string Template file path.
	 */
	public function set_visibility_template() {
		return UAGB_DIR . 'templates/visibility-template.php';
	}

	/**
	 * Set Visibility Page.
	 *
	 * @since 2.8.0
	 * 
	 * @return void
	 */
	public function set_visibility_page() {
		$visibility_page_id = intval( UAGB_Admin_Helper::get_admin_settings_option( 'uag_visibility_page', false ) );

		$current_page_id = get_the_ID();

		if ( $visibility_page_id !== $current_page_id && 'publish' === get_post_status( $visibility_page_id ) ) {
			$maintenance = UAGB_Admin_Helper::get_admin_settings_option( 'uag_visibility_mode', 'disabled' );
			if ( 'maintenance' === $maintenance ) {
				status_header( 503 );
			}

			// Output JavaScript for redirection.
			echo '<script type="text/javascript">window.location.href = "' . esc_url( get_page_link( $visibility_page_id ) ) . '";</script>';

			// Exit to prevent further processing.
			exit();
		}
	}

	/**
	 * Enqueue asset files.
	 *
	 * @since 2.8.0
	 */
	public function enqueue_asset_files() {
		// Check if assets should be excluded for the current post type.
		if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
			return; // Early return to prevent loading assets.
		}

		$current_page_id    = get_the_ID();
		$visibility_page_id = intval( UAGB_Admin_Helper::get_admin_settings_option( 'uag_visibility_page', false ) );

		if ( $visibility_page_id === $current_page_id ) {
			wp_enqueue_style(
				'uagb-style-visibility', // Handle.
				UAGB_URL . 'assets/css/visibility.min.css',
				array(),
				UAGB_VER
			);
		}
	}
}

/**
 *  Prepare if class 'UAGB_Visibility' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Visibility::get_instance();
PK��][5X�`����@ultimate-addons-for-gutenberg/classes/class-uagb-init-blocks.phpnu�[���<?php
/**
 * UAGB Blocks Initializer
 *
 * Enqueue CSS/JS of all the blocks.
 *
 * @since   1.0.0
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * UAGB_Init_Blocks.
 *
 * @package UAGB
 */
class UAGB_Init_Blocks {


	/**
	 * Member Variable
	 *
	 * @var instance
	 */
	private static $instance;

	/**
	 * Member Variable
	 *
	 * @var block activation
	 */
	private $active_blocks;

	/**
	 *  Initiator
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Constructor
	 */
	public function __construct() {

		// Hook: Editor assets.
		add_action( 'enqueue_block_editor_assets', array( $this, 'editor_assets' ) );

		if ( version_compare( get_bloginfo( 'version' ), '5.8', '>=' ) ) {
			add_filter( 'block_categories_all', array( $this, 'register_block_category' ), 999999, 2 );
		} else {
			add_filter( 'block_categories', array( $this, 'register_block_category' ), 999999, 2 );
		}

		add_action( 'wp_ajax_uagb_get_taxonomy', array( $this, 'get_taxonomy' ) );

		add_action( 'wp_ajax_uagb_gf_shortcode', array( $this, 'gf_shortcode' ) );
		add_action( 'wp_ajax_nopriv_uagb_gf_shortcode', array( $this, 'gf_shortcode' ) );

		add_action( 'wp_ajax_uagb_cf7_shortcode', array( $this, 'cf7_shortcode' ) );
		add_action( 'wp_ajax_nopriv_uagb_cf7_shortcode', array( $this, 'cf7_shortcode' ) );

		add_action( 'wp_ajax_uagb_forms_recaptcha', array( $this, 'forms_recaptcha' ) );

		// For Spectra Global Block Styles.
		add_action( 'wp_ajax_uag_global_block_styles', array( $this, 'uag_global_block_styles' ) );
		// For Spectra Global Quick Action Bar.
		add_action( 'wp_ajax_uag_global_sidebar_enabled', array( $this, 'uag_global_sidebar_enabled' ) );
		add_action( 'wp_ajax_uag_global_update_allowed_block', array( $this, 'uag_global_update_allowed_block' ) );

		if ( ! is_admin() ) {
			add_action( 'render_block', array( $this, 'render_block' ), 5, 2 );

			// For Spectra Global Block Styles.
			add_filter( 'render_block', array( $this, 'add_gbs_class' ), 10, 2 );
		}

		if ( current_user_can( 'edit_posts' ) ) {
			add_action( 'wp_ajax_uagb_svg_confirmation', array( $this, 'confirm_svg_upload' ) );
		}

		add_action( 'init', array( $this, 'register_popup_builder' ) );
		add_filter( 'srfm_enable_redirect_activation', '__return_false' );

		add_action( 'wp_ajax_uagb_sureforms', array( $this, 'sureforms_plugin_activator' ) );
		add_action( 'wp_ajax_uagb_surecart', array( $this, 'surecart_plugin_activator' ) );

	}


	/**
	 * Register the Popup Builder CPT.
	 *
	 * @return void
	 *
	 * @since 2.6.0
	 */
	public function register_popup_builder() {
		$supports = array(
			'title',
			'editor',
			'custom-fields',
			'author',
		);

		$labels = array(
			'name'               => _x( 'Popup Builder', 'plural', 'ultimate-addons-for-gutenberg' ),
			'singular_name'      => _x( 'Spectra Popup', 'singular', 'ultimate-addons-for-gutenberg' ),
			'view_item'          => __( 'View Popup', 'ultimate-addons-for-gutenberg' ),
			'add_new'            => __( 'Create Popup', 'ultimate-addons-for-gutenberg' ),
			'add_new_item'       => __( 'Create New Popup', 'ultimate-addons-for-gutenberg' ),
			'edit_item'          => __( 'Edit Popup', 'ultimate-addons-for-gutenberg' ),
			'new_item'           => __( 'New Popup', 'ultimate-addons-for-gutenberg' ),
			'search_items'       => __( 'Search Popups', 'ultimate-addons-for-gutenberg' ),
			'not_found'          => __( 'No Popups Found', 'ultimate-addons-for-gutenberg' ),
			'not_found_in_trash' => __( 'No Popups in Trash', 'ultimate-addons-for-gutenberg' ),
			'all_items'          => __( 'All Popups', 'ultimate-addons-for-gutenberg' ),
			'item_published'     => __( 'Popup Published', 'ultimate-addons-for-gutenberg' ),
			'item_updated'       => __( 'Popup Updated', 'ultimate-addons-for-gutenberg' ),
		);

		$type_args = array(
			'supports'          => $supports,
			'labels'            => $labels,
			'public'            => false,
			'show_in_menu'      => false,
			'show_in_admin_bar' => true,
			'show_ui'           => true,
			'show_in_rest'      => true,
			'template_lock'     => 'all',
			'template'          => array(
				array( 'uagb/popup-builder', array() ),
			),
			'rewrite'           => array(
				'slug'       => 'spectra-popup',
				'with-front' => false,
				'pages'      => false,
			),
			'capabilities'      => array(
				'edit_post'          => 'manage_options',
				'read_post'          => 'manage_options',
				'delete_post'        => 'manage_options',
				'edit_posts'         => 'manage_options',
				'edit_others_posts'  => 'manage_options',
				'publish_posts'      => 'manage_options',
				'read_private_posts' => 'manage_options',
				'delete_posts'       => 'manage_options',
				'create_posts'       => 'manage_options',
			),
		);

		$meta_args_popup_type = array(
			'single'        => true,
			'type'          => 'string',
			'default'       => 'unset',
			'auth_callback' => '__return_true',
			'show_in_rest'  => true,
		);

		$meta_args_popup_enabled = array(
			'single'        => true,
			'type'          => 'boolean',
			'default'       => false,
			'auth_callback' => '__return_true',
			'show_in_rest'  => true,
		);

		$meta_args_popup_repetition = array(
			'single'        => true,
			'type'          => 'number',
			'default'       => 1,
			'auth_callback' => '__return_true',
			'show_in_rest'  => true,
		);

		register_post_type( 'spectra-popup', $type_args );

		register_post_meta( 'spectra-popup', 'spectra-popup-type', $meta_args_popup_type );
		register_post_meta( 'spectra-popup', 'spectra-popup-enabled', $meta_args_popup_enabled );
		register_post_meta( 'spectra-popup', 'spectra-popup-repetition', $meta_args_popup_repetition );
		do_action( 'register_spectra_pro_popup_meta' );

		$spectra_popup_dashboard = UAGB_Popup_Builder::create_for_admin();

		add_action( 'admin_enqueue_scripts', array( $spectra_popup_dashboard, 'popup_toggle_scripts' ) );
		add_action( 'wp_ajax_uag_update_popup_status', array( $spectra_popup_dashboard, 'update_popup_status' ) );

		do_action( 'spectra_pro_popup_dashboard' );

		add_filter( 'manage_spectra-popup_posts_columns', array( $spectra_popup_dashboard, 'popup_builder_admin_headings' ) );
		add_action( 'manage_spectra-popup_posts_custom_column', array( $spectra_popup_dashboard, 'popup_builder_admin_content' ), 10, 2 );
	}

	/**
	 * Render block.
	 *
	 * @param mixed $block_content The block content.
	 * @param array $block The block data.
	 * @since 1.21.0
	 * @return mixed Returns the new block content.
	 */
	public function render_block( $block_content, $block ) {

		if ( ! empty( $block['attrs']['UAGDisplayConditions'] ) ) {
			switch ( $block['attrs']['UAGDisplayConditions'] ) {
				case 'userstate':
					$block_content = $this->user_state_visibility( $block['attrs'], $block_content );
					break;

				case 'userRole':
					$block_content = $this->user_role_visibility( $block['attrs'], $block_content );
					break;

				case 'browser':
					$block_content = $this->browser_visibility( $block['attrs'], $block_content );
					break;

				case 'os':
					$block_content = $this->os_visibility( $block['attrs'], $block_content );
					break;
				case 'day':
					$block_content = $this->day_visibility( $block['attrs'], $block_content );
					break;
				default:
					// code...
					break;
			}
		}

		// Check if animations extension is enabled and an animation type is selected.
		if (
			'enabled' === \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_animations_extension', 'enabled' ) &&
			! empty( $block['attrs']['UAGAnimationType'] )
		) {

			$attrs                                      = $block['attrs'];
			$attrs['UAGAnimationDoNotApplyToContainer'] = isset( $attrs['UAGAnimationDoNotApplyToContainer'] ) ? $attrs['UAGAnimationDoNotApplyToContainer'] : false;
			$block_positioning                          = ! empty( $attrs['UAGPosition'] ) && is_string( $attrs['UAGPosition'] ) ? $attrs['UAGPosition'] : false;

			// Container-specific animation attributes.
			if ( ! $attrs['UAGAnimationDoNotApplyToContainer'] ) {
				// Defaults aren't received here, hence we set them.
				// Without these defaults, empty data is sent to markup (which doesn't affect the functionality at all but still it's a good practice to follow).
				$attrs['UAGAnimationTime']   = isset( $attrs['UAGAnimationTime'] ) ? $attrs['UAGAnimationTime'] : 400;
				$attrs['UAGAnimationDelay']  = isset( $attrs['UAGAnimationDelay'] ) ? $attrs['UAGAnimationDelay'] : 0;
				$attrs['UAGAnimationEasing'] = isset( $attrs['UAGAnimationEasing'] ) ? $attrs['UAGAnimationEasing'] : 'ease';
				$attrs['UAGAnimationRepeat'] = isset( $attrs['UAGAnimationRepeat'] ) ? 'false' : 'true';

				// Container-specific animation attributes.
				$attrs['UAGAnimationDelayInterval'] = isset( $attrs['UAGAnimationDelayInterval'] ) ? $attrs['UAGAnimationDelayInterval'] : 200;

				// If this is a sticky element, don't update the attributes of this element just yet.
				if ( 'sticky' !== $block_positioning ) {
					$aos_attributes = '<div data-aos= "' . esc_attr( $attrs['UAGAnimationType'] ) . '" data-aos-duration="' . esc_attr( $attrs['UAGAnimationTime'] ) . '" data-aos-delay="' . esc_attr( $attrs['UAGAnimationDelay'] ) . '" data-aos-easing="' . esc_attr( $attrs['UAGAnimationEasing'] ) . '" data-aos-once="' . esc_attr( $attrs['UAGAnimationRepeat'] ) . '" ';
					$block_content  = preg_replace( '/<div /', $aos_attributes, $block_content, 1 );
				}
			}
		}

		// Render Block Manipulation for the required Spectra Blocks.
		$block_content = apply_filters( 'uagb_render_block', $block_content, $block );

		// Render Block Manipulation for the required Spectra Pro Blocks.
		$block_content = apply_filters( 'spectra_pro_render_block', $block_content, $block );

		return $block_content;
	}

	/**
	 * User State Visibility.
	 *
	 * @param array $block_attributes The block data.
	 * @param mixed $block_content The block content.
	 *
	 * @since 1.21.0
	 * @return mixed Returns the new block content.
	 */
	public function user_role_visibility( $block_attributes, $block_content ) {
		if ( empty( $block_attributes['UAGUserRole'] ) ) {
			return $block_content;
		}

		$user = wp_get_current_user();
		return is_user_logged_in() && ! empty( $user->roles ) && in_array( $block_attributes['UAGUserRole'], $user->roles, true ) ? '' : $block_content;
	}

	/**
	 * User State Visibility.
	 *
	 * @param array $block_attributes The block data.
	 * @param mixed $block_content The block content.
	 * @since 1.21.0
	 * @return mixed Returns the new block content.
	 */
	public function os_visibility( $block_attributes, $block_content ) {

		if ( empty( $block_attributes['UAGSystem'] ) ) {
			return $block_content;
		}

		$os = array(
			'iphone'   => '(iPhone)',
			'android'  => '(Android)',
			'windows'  => 'Win16|(Windows 95)|(Win95)|(Windows_95)|(Windows 98)|(Win98)|(Windows NT 5.0)|(Windows 2000)|(Windows NT 5.1)|(Windows XP)|(Windows NT 5.2)|(Windows NT 6.0)|(Windows Vista)|(Windows NT 6.1)|(Windows 7)|(Windows NT 4.0)|(WinNT4.0)|(WinNT)|(Windows NT)|Windows ME',
			'open_bsd' => 'OpenBSD',
			'sun_os'   => 'SunOS',
			'linux'    => '(Linux)|(X11)',
			'mac_os'   => '(Mac_PowerPC)|(Macintosh)',
		);

		$user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ) : '';

		return isset( $os[ $block_attributes['UAGSystem'] ] ) && preg_match( '@' . $os[ $block_attributes['UAGSystem'] ] . '@', $user_agent ) ? '' : $block_content;
	}

	/**
	 * User State Visibility.
	 *
	 * @param array $block_attributes The block data.
	 * @param mixed $block_content The block content.
	 *
	 * @since 1.21.0
	 * @return mixed Returns the new block content.
	 */
	public function browser_visibility( $block_attributes, $block_content ) {

		if ( empty( $block_attributes['UAGBrowser'] ) ) {
			return $block_content;
		}

		$user_agent = isset( $_SERVER['HTTP_USER_AGENT'] ) ? UAGB_Helper::get_browser_name( sanitize_text_field( $_SERVER['HTTP_USER_AGENT'] ) ) : '';

		return $block_attributes['UAGBrowser'] === $user_agent ? '' : $block_content;
	}

	/**
	 * User State Visibility.
	 *
	 * @param array $block_attributes The block data.
	 * @param mixed $block_content The block content.
	 *
	 * @since 1.21.0
	 * @return mixed Returns the new block content.
	 */
	public function user_state_visibility( $block_attributes, $block_content ) {

		if ( ! empty( $block_attributes['UAGLoggedIn'] ) && is_user_logged_in() ) {
			return '';
		}

		if ( ! empty( $block_attributes['UAGLoggedOut'] ) && ! is_user_logged_in() ) {
			return '';
		}

		return $block_content;

	}

	/**
	 * Day Visibility.
	 *
	 * @param array $block_attributes The block data.
	 * @param mixed $block_content The block content.
	 *
	 * @since 2.1.3
	 * @return mixed Returns the new block content.
	 */
	public function day_visibility( $block_attributes, $block_content ) {

		// If not set restriction.
		if ( empty( $block_attributes['UAGDay'] ) ) {
			return $block_content;
		}

		$current_day = strtolower( current_datetime()->format( 'l' ) );
		// Check in restricted day.
		return ! in_array( $current_day, $block_attributes['UAGDay'] ) ? $block_content : '';

	}

	/**
	 * Ajax call to get Taxonomy List.
	 *
	 * @since 2.0.0
	 */
	public function get_taxonomy() {

		$response_data = array(
			'messsage' => __( 'User is not authenticated!', 'ultimate-addons-for-gutenberg' ),
		);

		if ( ! current_user_can( 'edit_posts' ) ) {
			wp_send_json_error( $response_data );
		}

		check_ajax_referer( 'uagb_ajax_nonce', 'nonce' );

		$post_types = UAGB_Helper::get_post_types();

		$return_array = array();

		foreach ( $post_types as $key => $value ) {
			$post_type = $value['value'];

			$taxonomies = get_object_taxonomies( $post_type, 'objects' );
			$data       = array();

			$get_taxonomy_names = get_post_type_object( $post_type ); // Renaming this variable to follow proper naming convention.
			foreach ( $taxonomies as $tax_slug => $tax ) {
				if ( ! $tax->public || ! $tax->show_ui || ! $tax->show_in_rest ) {
					continue;
				}

				$data[ $tax_slug ] = $tax;

				$terms = get_terms( $tax_slug );

				$related_tax_terms = array();

				if ( ! empty( $terms ) ) {
					foreach ( $terms as $t_index => $t_obj ) {
						$related_tax_terms[] = array(
							'id'            => $t_obj->term_id,
							'name'          => $t_obj->name,
							'count'         => $t_obj->count,
							'link'          => get_term_link( $t_obj->term_id ),
							'singular_name' => $get_taxonomy_names ? $get_taxonomy_names->labels->singular_name : 'Post',
							'plural_name'   => $get_taxonomy_names ? $get_taxonomy_names->labels->name : 'Posts', // Adding this field to use it on the editor.
						);
					}

					$return_array[ $post_type ]['terms'][ $tax_slug ] = $related_tax_terms;
				}

				$newcategoriesList = get_terms(
					$tax_slug,
					array(
						'hide_empty' => true,
						'parent'     => 0,
					)
				);

				$related_tax = array();

				if ( ! empty( $newcategoriesList ) ) {
					foreach ( $newcategoriesList as $t_index => $t_obj ) {
						$child_arg     = array(
							'hide_empty' => true,
							'parent'     => $t_obj->term_id,
						);
						$child_cat     = get_terms( $tax_slug, $child_arg );
						$child_cat_arr = $child_cat ? $child_cat : null;
						$related_tax[] = array(
							'id'            => $t_obj->term_id,
							'name'          => $t_obj->name,
							'count'         => $t_obj->count,
							'link'          => get_term_link( $t_obj->term_id ),
							'singular_name' => $get_taxonomy_names ? $get_taxonomy_names->labels->singular_name : 'Post',
							'plural_name'   => $get_taxonomy_names ? $get_taxonomy_names->labels->name : 'Posts', // Adding this field to use it on the editor.
							'children'      => $child_cat_arr,
						);

					}

					$return_array[ $post_type ]['without_empty_taxonomy'][ $tax_slug ] = $related_tax;

				}

				$newcategoriesList_empty_tax = get_terms(
					$tax_slug,
					array(
						'hide_empty' => false,
						'parent'     => 0,
					)
				);

				$related_tax_empty_tax = array();

				if ( ! empty( $newcategoriesList_empty_tax ) ) {
					foreach ( $newcategoriesList_empty_tax as $t_index => $t_obj ) {
						$child_arg_empty_tax     = array(
							'hide_empty' => false,
							'parent'     => $t_obj->term_id,
						);
						$child_cat_empty_tax     = get_terms( $tax_slug, $child_arg_empty_tax );
						$child_cat_empty_tax_arr = $child_cat_empty_tax ? $child_cat_empty_tax : null;
						$related_tax_empty_tax[] = array(
							'id'            => $t_obj->term_id,
							'name'          => $t_obj->name,
							'count'         => $t_obj->count,
							'link'          => get_term_link( $t_obj->term_id ),
							'singular_name' => $get_taxonomy_names ? $get_taxonomy_names->labels->singular_name : 'Post',
							'plural_name'   => $get_taxonomy_names ? $get_taxonomy_names->labels->name : 'Posts', // Adding this field to use it on the editor.
							'children'      => $child_cat_empty_tax_arr,
						);
					}

					$return_array[ $post_type ]['with_empty_taxonomy'][ $tax_slug ] = $related_tax_empty_tax;

				}
			}
			$return_array[ $post_type ]['taxonomy'] = $data;

		}

		wp_send_json_success( apply_filters( 'uagb_taxonomies_list', $return_array ) );
	}

	/**
	 * Renders the Gravity Form shortcode.
	 *
	 * @since 1.12.0
	 */
	public function gf_shortcode() {

		check_ajax_referer( 'uagb_ajax_nonce', 'nonce' );

		$id = isset( $_POST['formId'] ) ? intval( $_POST['formId'] ) : 0;

		if ( $id && 0 !== $id && -1 !== $id ) {
			$data['html'] = do_shortcode( '[gravityforms id="' . $id . '" ajax="true"]' );
		} else {
			$data['html'] = '<p>' . __( 'Please select a valid Gravity Form.', 'ultimate-addons-for-gutenberg' ) . '</p>';
		}
		wp_send_json_success( $data );
	}

	/**
	 * Renders the forms recaptcha keys.
	 *
	 * @since 2.0.0
	 */
	public function forms_recaptcha() {

		$response_data = array(
			'messsage' => __( 'User is not authenticated!', 'ultimate-addons-for-gutenberg' ),
		);

		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error( $response_data );
		}

		check_ajax_referer( 'uagb_ajax_nonce', 'nonce' );
		// security validation done in later stage.
		$value = isset( $_POST['value'] ) ? json_decode( wp_unslash( $_POST['value'] ), true ) : array(); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized

		\UAGB_Admin_Helper::update_admin_settings_option( 'uag_recaptcha_secret_key_v2', sanitize_text_field( $value['reCaptchaSecretKeyV2'] ) );
		\UAGB_Admin_Helper::update_admin_settings_option( 'uag_recaptcha_secret_key_v3', sanitize_text_field( $value['reCaptchaSecretKeyV3'] ) );
		\UAGB_Admin_Helper::update_admin_settings_option( 'uag_recaptcha_site_key_v2', sanitize_text_field( $value['reCaptchaSiteKeyV2'] ) );
		\UAGB_Admin_Helper::update_admin_settings_option( 'uag_recaptcha_site_key_v3', sanitize_text_field( $value['reCaptchaSiteKeyV3'] ) );

		$response_data = array(
			'messsage' => __( 'Successfully saved data!', 'ultimate-addons-for-gutenberg' ),
		);
		wp_send_json_success( $response_data );

	}

	/**
	 * Renders the Sure Form.
	 *
	 * @since 2.19.0
	 * @return void
	 */
	public function sureforms_plugin_activator() {
		// Check user capability.
		if ( ! ( current_user_can( 'activate_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
			wp_send_json_error(
				array(
					'success' => false,
					'message' => 'User is not authenticated!',
				) 
			);
		}

		// Verify nonce.
		if ( ! check_ajax_referer( 'uagb_ajax_nonce', 'security', false ) ) {
			wp_send_json_error(
				array(
					'success' => false,
					'message' => 'Invalid nonce.',
				) 
			);
		}

		$installed_plugins   = get_plugins();
		$status_of_sureforms = isset( $installed_plugins['sureforms/sureforms.php'] ) 
			? ( is_plugin_active( 'sureforms/sureforms.php' ) ? 'active' : 'inactive' ) 
			: 'not-installed';

		if ( class_exists( '\BSF_UTM_Analytics\Inc\Utils' ) && is_callable( '\BSF_UTM_Analytics\Inc\Utils::update_referer' ) ) {
			// If the plugin is found and the update_referer function is callable, update the referer with the corresponding product slug.
			\BSF_UTM_Analytics\Inc\Utils::update_referer( 'ultimate-addons-for-gutenberg', 'sureforms' );
		}

		// If plugin is not installed, install it first.
		if ( 'not-installed' === $status_of_sureforms ) {
			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			include_once ABSPATH . 'wp-admin/includes/plugin-install.php';

			$plugin_slug = 'sureforms';
			$plugin_data = plugins_api( 'plugin_information', array( 'slug' => $plugin_slug ) );

			// Check if $plugin_data is valid and contains the download_link property.
			if ( is_wp_error( $plugin_data ) || ! is_object( $plugin_data ) || empty( $plugin_data->download_link ) ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => 'Error fetching plugin data.',
					) 
				);
			}

			if ( is_object( $plugin_data ) || is_array( $plugin_data ) ) {
				$download_link = ( is_object( $plugin_data ) && isset( $plugin_data->download_link ) ) ? $plugin_data->download_link : '';
				$skin          = new WP_Ajax_Upgrader_Skin();
				$upgrader      = new Plugin_Upgrader( $skin );
				$installed     = $upgrader->install( $download_link );

				if ( is_wp_error( $installed ) ) {
					wp_send_json_error(
						array(
							'success' => false,
							'message' => 'Failed to install the plugin.',
						) 
					);
				}
			}

			$installed_plugins   = get_plugins();
			$status_of_sureforms = isset( $installed_plugins['sureforms/sureforms.php'] ) ? 'inactive' : 'not-installed';
		}

		// If the plugin is installed but inactive, activate it.
		if ( 'inactive' === $status_of_sureforms ) {
			$activate = activate_plugin( 'sureforms/sureforms.php', '', false, false );

			if ( is_wp_error( $activate ) ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => $activate->get_error_message(),
					) 
				);
			}

			wp_send_json_success(
				array(
					'success' => true,
					'message' => 'Plugin successfully activated.',
				) 
			);
		}

		// If already active, send a success message.
		if ( 'active' === $status_of_sureforms ) {
			wp_send_json_success(
				array(
					'success' => true,
					'message' => 'Plugin is already active.',
				) 
			);
		}

		// If no condition matches, send an error response.
		wp_send_json_error(
			array(
				'success' => false,
				'message' => 'Unexpected error occurred.',
			) 
		);
	}

	/**
	 * Renders the Sure Form.
	 *
	 * @since 2.19.0
	 * @return void
	 */
	public function surecart_plugin_activator() {
		// Check user capability.
		if ( ! ( current_user_can( 'activate_plugins' ) && current_user_can( 'install_plugins' ) ) ) {
			wp_send_json_error(
				array(
					'success' => false,
					'message' => 'User is not authenticated!',
				) 
			);
		}

		// Verify nonce.
		if ( ! check_ajax_referer( 'uagb_ajax_nonce', 'security', false ) ) {
			wp_send_json_error(
				array(
					'success' => false,
					'message' => 'Invalid nonce.',
				) 
			);
		}

		$installed_plugins  = get_plugins();
		$status_of_surecart = isset( $installed_plugins['surecart/surecart.php'] ) 
			? ( is_plugin_active( 'surecart/surecart.php' ) ? 'active' : 'inactive' ) 
			: 'not-installed';

		if ( class_exists( '\BSF_UTM_Analytics\Inc\Utils' ) && is_callable( '\BSF_UTM_Analytics\Inc\Utils::update_referer' ) ) {
			// If the plugin is found and the update_referer function is callable, update the referer with the corresponding product slug.
			\BSF_UTM_Analytics\Inc\Utils::update_referer( 'ultimate-addons-for-gutenberg', 'surecart' );
		}

		// If plugin is not installed, install it first.
		if ( 'not-installed' === $status_of_surecart ) {
			include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
			include_once ABSPATH . 'wp-admin/includes/plugin-install.php';

			$plugin_slug = 'surecart';
			$plugin_data = plugins_api( 'plugin_information', array( 'slug' => $plugin_slug ) );

			if ( is_wp_error( $plugin_data ) || ! is_object( $plugin_data ) || empty( $plugin_data->download_link ) ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => 'Error fetching plugin data.',
					) 
				);
			}

			if ( is_object( $plugin_data ) || is_array( $plugin_data ) ) {
				$download_link = ( is_object( $plugin_data ) && isset( $plugin_data->download_link ) ) ? $plugin_data->download_link : '';
				$skin          = new WP_Ajax_Upgrader_Skin();
				$upgrader      = new Plugin_Upgrader( $skin );
				$installed     = $upgrader->install( $download_link );

				if ( is_wp_error( $installed ) ) {
					wp_send_json_error(
						array(
							'success' => false,
							'message' => 'Failed to install the plugin.',
						) 
					);
				}
			}

			$installed_plugins  = get_plugins();
			$status_of_surecart = isset( $installed_plugins['surecart/surecart.php'] ) ? 'inactive' : 'not-installed';
		}

		// If the plugin is installed but inactive, activate it.
		if ( 'inactive' === $status_of_surecart ) {
			$activate = activate_plugin( 'surecart/surecart.php' );
			if ( is_wp_error( $activate ) ) {
				wp_send_json_error(
					array(
						'success' => false,
						'message' => $activate->get_error_message(),
					) 
				);
			}

			wp_send_json_success(
				array(
					'success' => true,
					'message' => 'Plugin successfully activated.',
				) 
			);
		}

		// If already active, send a success message.
		if ( 'active' === $status_of_surecart ) {
			wp_send_json_success(
				array(
					'success' => true,
					'message' => 'Plugin is already active.',
				) 
			);
		}

		// If no condition matches, send an error response.
		wp_send_json_error(
			array(
				'success' => false,
				'message' => 'Unexpected error occurred.',
			) 
		);
	}

	/**
	 * Renders the Contect Form 7 shortcode.
	 *
	 * @since 1.10.0
	 */
	public function cf7_shortcode() {

		check_ajax_referer( 'uagb_ajax_nonce', 'nonce' );

		$id = isset( $_POST['formId'] ) ? intval( $_POST['formId'] ) : 0;

		if ( $id && 0 !== $id && -1 !== $id ) {
			$data['html'] = do_shortcode( '[contact-form-7 id="' . $id . '" ajax="true"]' );
		} else {
			$data['html'] = '<p>' . __( 'Please select a valid Contact Form 7.', 'ultimate-addons-for-gutenberg' ) . '</p>';
		}
		wp_send_json_success( $data );
	}

	/**
	 * Gutenberg block category for UAGB.
	 *
	 * @param array  $categories Block categories.
	 * @param object $post Post object.
	 * @since 1.0.0
	 */
	public function register_block_category( $categories, $post ) {
		$categories = array_merge(
			array(
				array(
					'slug'  => 'uagb',
					'title' => __( 'Spectra', 'ultimate-addons-for-gutenberg' ),
				),
			),
			$categories
		);
		// Define the new category to be added.
		$new_category = array(
			'slug'  => 'extension',
			'title' => __( 'Extensions', 'ultimate-addons-for-gutenberg' ),
			'icon'  => '',
		);

		// Find the index where the new category should be inserted.
		$insert_after_slug = 'spectra-pro'; // Default insertion point.
		$insert_index      = false;

		// Look for the 'spectra-pro' category.
		foreach ( $categories as $index => $category ) {
			if ( $insert_after_slug === $category['slug'] ) {
				$insert_index = $index + 1;
				break;
			}
		}

		// If 'spectra-pro' is not found, look for 'uagb'.
		if ( false === $insert_index ) {
			$insert_after_slug = 'uagb';
			foreach ( $categories as $index => $category ) {
				if ( $insert_after_slug === $category['slug'] ) {
					$insert_index = $index + 1;
					break;
				}
			}
		}

		// If neither is found, append the new category at the end.
		if ( false === $insert_index ) {
			$categories[] = $new_category;
		} else {
			array_splice( $categories, $insert_index, 0, array( $new_category ) );
		}

		return $categories;
	}

	/**
	 * Localize SVG icon scripts in chunks.
	 * Ex - if 1800 icons available so we will localize 4 variables for it.
	 *
	 * @since 2.7.0
	 * @return void
	 */
	public function add_svg_icon_assets() {
		$localize_icon_chunks = UAGB_Helper::backend_load_font_awesome_icons();
		if ( ! $localize_icon_chunks ) {
			return;
		}

		foreach ( $localize_icon_chunks as $chunk_index => $value ) {
			wp_localize_script( 'uagb-block-editor-js', "uagb_svg_icons_{$chunk_index}", $value );
		}
	}

	/**
	 * Get the status of a plugin.
	 * This function is used internally in the editor upsell scripts to check if Spectra Pro is installed or not.
	 *
	 * @since 2.19.2
	 *
	 * @param  string $plugin_init_file Plugin init file.
	 * @return string
	 */
	public static function get_plugin_status( $plugin_init_file ) {

		$installed_plugins = get_plugins();

		if ( ! isset( $installed_plugins[ $plugin_init_file ] ) ) {
			return 'Install';
		} elseif ( is_plugin_active( $plugin_init_file ) ) {
			return 'Activated';
		} else {
			return 'Installed';
		}
	}

	/**
	 * Enqueue Gutenberg block assets for backend editor.
	 *
	 * @since 1.0.0
	 */
	public function editor_assets() {
		// Check if assets should be excluded for the current post type.
		if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
			return; // Early return to prevent loading assets.
		}

		$uagb_ajax_nonce = wp_create_nonce( 'uagb_ajax_nonce' );

		$script_dep_path = UAGB_DIR . 'dist/blocks.min.asset.php';
		$script_info     = file_exists( $script_dep_path )
			? include $script_dep_path
			: array(
				'dependencies' => array(),
				'version'      => UAGB_VER,
			);
		global $pagenow;

		$script_dep = array_merge( $script_info['dependencies'], array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-components', 'wp-api-fetch' ) );

		if ( 'widgets.php' !== $pagenow ) {
			$script_dep = array_merge( $script_info['dependencies'], array( 'wp-editor' ) );
		}

		$js_ext = ( SCRIPT_DEBUG ) ? '.js' : '.min.js';

		wp_enqueue_code_editor( array( 'type' => 'text/css' ) );
		wp_enqueue_script( 'wp-theme-plugin-editor' );
		wp_enqueue_style( 'wp-codemirror' );

		// Scripts.
		$blocks_script = file_exists( UAGB_DIR . 'dist/blocks.min.js' ) ? 'blocks.min.js' : 'blocks.js';
		wp_enqueue_script(
			'uagb-block-editor-js', // Handle.
			UAGB_URL . 'dist/' . $blocks_script,
			$script_dep, // Dependencies, defined above.
			$script_info['version'], // UAGB_VER.
			true // Enqueue the script in the footer.
		);

		wp_set_script_translations( 'uagb-block-editor-js', 'ultimate-addons-for-gutenberg' );

		// Common Editor style.
		wp_enqueue_style(
			'uagb-block-common-editor-css', // Handle.
			UAGB_URL . 'dist/common-editor.css', // Block editor CSS.
			array( 'wp-edit-blocks' ), // Dependency to include the CSS after it.
			UAGB_VER
		);

		wp_localize_script( 'uagb-block-editor-js', 'uag_react', array( 'pro_plugin_status' => self::get_plugin_status( 'spectra-pro/spectra-pro.php' ) ) );

		wp_enqueue_script( 'uagb-deactivate-block-js', UAGB_URL . 'admin/assets/blocks-deactivate.js', array( 'wp-blocks' ), UAGB_VER, true );

		$blocks       = array();
		$saved_blocks = UAGB_Admin_Helper::get_admin_settings_option( '_uagb_blocks' );

		if ( is_array( $saved_blocks ) ) {
			foreach ( $saved_blocks as $slug => $data ) {

				$_slug       = 'uagb/' . $slug;
				$blocks_info = UAGB_Block_Module::get_blocks_info();

				if ( ! isset( $blocks_info[ $_slug ] ) ) {
					continue;
				}

				$current_block = $blocks_info[ $_slug ];

				if ( isset( $current_block['is_child'] ) && $current_block['is_child'] ) {
					continue;
				}

				if ( isset( $current_block['is_active'] ) && ! $current_block['is_active'] ) {
					continue;
				}

				if ( isset( $saved_blocks[ $slug ] ) ) {
					if ( 'disabled' === $saved_blocks[ $slug ] ) {
						array_push( $blocks, $_slug );
					}
				}
			}
		}

		wp_localize_script(
			'uagb-deactivate-block-js',
			'uagb_deactivate_blocks',
			array(
				'deactivated_blocks' => $blocks,
			)
		);
		$display_condition            = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_block_condition', 'enabled' );
		$display_responsive_condition = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_block_responsive', 'enabled' );

		$enable_selected_fonts = UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_select_font_globally', 'disabled' );
		$selected_fonts        = array();

		if ( 'enabled' === $enable_selected_fonts ) {

			/**
			 * Selected fonts variable
			 *
			 * @var array
			 */
			$selected_fonts = UAGB_Admin_Helper::get_admin_settings_option( 'uag_select_font_globally', array() );

			if ( ! empty( $selected_fonts ) ) {
				usort(
					$selected_fonts,
					function( $a, $b ) {
						return strcmp( $a['label'], $b['label'] );
					}
				);

				$default_selected = array(
					array(
						'value' => 'Default',
						'label' => __( 'Default', 'ultimate-addons-for-gutenberg' ),
					),
				);
				$selected_fonts   = array_merge( $default_selected, $selected_fonts );
			}
		}

		$uagb_exclude_blocks_from_extension = array( 'core/archives', 'core/calendar', 'core/latest-comments', 'core/tag-cloud', 'core/rss' );

		$content_width = \UAGB_Admin_Helper::get_global_content_width();


		$container_padding = UAGB_Admin_Helper::get_admin_settings_option( 'uag_container_global_padding', 'default' );

		if ( 'default' === $container_padding ) {
			\UAGB_Admin_Helper::update_admin_settings_option( 'uag_container_global_padding', 10 );
			$container_padding = 10;
		}

		$container_elements_gap = UAGB_Admin_Helper::get_admin_settings_option( 'uag_container_global_elements_gap', 20 );
		$screen                 = get_current_screen();

		$uag_enable_quick_action_sidebar = apply_filters( 'uag_enable_quick_action_sidebar', UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_quick_action_sidebar', 'enabled' ) );

		// An array of all the required Spectra Admin URLs.
		$spectra_admin_urls = array(
			'settings' => array(
				'editor_enhancements' => admin_url( 'admin.php?page=spectra&path=settings&settings=editor-enhancements' ),
			),
		);

		$inherit_from_theme               = 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' );
		$astra_theme_settings_available   = defined( 'ASTRA_THEME_SETTINGS' );
		$astra_theme_body_text_decoration = $astra_theme_settings_available && function_exists( 'astra_get_font_extras' ) && function_exists( 'astra_get_option' ) ? astra_get_font_extras( astra_get_option( 'body-font-extras' ), 'text-decoration' ) : '';
		$installed_plugins                = get_plugins();
		$status                           = isset( $installed_plugins['spectra-pro/spectra-pro.php'] ) 
					? ( is_plugin_active( 'spectra-pro/spectra-pro.php' ) 
						? 'active' 
						: 'inactive' ) 
					: 'not-installed';
		$status_of_surecart               = isset( $installed_plugins['surecart/surecart.php'] ) 
					? ( is_plugin_active( 'surecart/surecart.php' ) 
						? 'active' 
						: 'inactive' ) 
					: 'not-installed';
		$status_of_sureforms              = isset( $installed_plugins['sureforms/sureforms.php'] ) 
					? ( is_plugin_active( 'sureforms/sureforms.php' ) 
						? 'active' 
						: 'inactive' ) 
					: 'not-installed';

		$localized_params = array(
			'cf7_is_active'                           => class_exists( 'WPCF7_ContactForm' ),
			'gf_is_active'                            => class_exists( 'GFForms' ),
			'category'                                => 'uagb',
			'premium_category'                        => 'extension',
			'ajax_url'                                => admin_url( 'admin-ajax.php' ),
			'spectra_admin_urls'                      => $spectra_admin_urls,
			'cf7_forms'                               => $this->get_cf7_forms(),
			'gf_forms'                                => $this->get_gravity_forms(),
			'tablet_breakpoint'                       => UAGB_TABLET_BREAKPOINT,
			'mobile_breakpoint'                       => UAGB_MOBILE_BREAKPOINT,
			'image_sizes'                             => UAGB_Helper::get_image_sizes(),
			'post_types'                              => UAGB_Helper::get_post_types(),
			'uagb_ajax_nonce'                         => $uagb_ajax_nonce,
			'uagb_svg_confirmation_nonce'             => current_user_can( 'edit_posts' ) ? wp_create_nonce( 'uagb_confirm_svg_nonce' ) : '',
			'svg_confirmation'                        => current_user_can( 'edit_posts' ) ? get_option( 'spectra_svg_confirmation' ) : '',
			'uagb_home_url'                           => home_url(),
			'user_role'                               => $this->get_user_role(),
			'uagb_url'                                => UAGB_URL,
			'uagb_mime_type'                          => UAGB_Helper::get_mime_type(),
			'uagb_site_url'                           => UAGB_URI,
			'enableConditions'                        => apply_filters_deprecated( 'enable_block_condition', array( $display_condition ), '1.23.4', 'uag_enable_block_condition' ),
			'enableConditionsForCoreBlocks'           => apply_filters( 'enable_block_condition_for_core', true ),
			'enableResponsiveConditionsForCoreBlocks' => apply_filters( 'enable_responsive_condition_for_core', true ),
			'enableMasonryGallery'                    => apply_filters( 'uag_enable_masonry_gallery', UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_masonry_gallery', 'enabled' ) ),
			'enableQuickActionSidebar'                => $uag_enable_quick_action_sidebar,
			'enableAnimationsExtension'               => apply_filters( 'uag_enable_animations_extension', UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_animations_extension', 'enabled' ) ),
			'enableResponsiveConditions'              => apply_filters( 'enable_block_responsive', UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_block_responsive', 'enabled' ) ),
			'number_of_icon_chunks'                   => UAGB_Helper::$number_of_icon_chunks,
			'uagb_enable_extensions_for_blocks'       => apply_filters( 'uagb_enable_extensions_for_blocks', array() ),
			'uagb_exclude_blocks_from_extension'      => $uagb_exclude_blocks_from_extension,
			'uag_load_select_font_globally'           => $enable_selected_fonts,
			'uag_select_font_globally'                => $selected_fonts,
			'uagb_old_user_less_than_2'               => get_option( 'uagb-old-user-less-than-2' ),
			'collapse_panels'                         => UAGB_Admin_Helper::get_admin_settings_option( 'uag_collapse_panels', 'enabled' ),
			'enable_legacy_blocks'                    => UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' ),
			'copy_paste'                              => UAGB_Admin_Helper::get_admin_settings_option( 'uag_copy_paste', 'enabled' ),
			'enable_on_page_css_button'               => UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_on_page_css_button', 'yes' ),
			'content_width'                           => $content_width,
			'container_global_padding'                => $container_padding,
			'container_elements_gap'                  => $container_elements_gap,
			'recaptcha_site_key_v2'                   => UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v2', '' ),
			'recaptcha_site_key_v3'                   => UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v3', '' ),
			'recaptcha_secret_key_v2'                 => UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_secret_key_v2', '' ),
			'recaptcha_secret_key_v3'                 => UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_secret_key_v3', '' ),
			'blocks_editor_spacing'                   => apply_filters( 'uagb_default_blocks_editor_spacing', UAGB_Admin_Helper::get_admin_settings_option( 'uag_blocks_editor_spacing', 0 ) ),
			'load_font_awesome_5'                     => UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_font_awesome_5' ),
			'auto_block_recovery'                     => UAGB_Admin_Helper::get_admin_settings_option( 'uag_auto_block_recovery' ),
			'font_awesome_5_polyfill'                 => array(),
			'spectra_custom_fonts'                    => apply_filters( 'spectra_system_fonts', array() ),
			'spectra_pro_status'                      => $status,
			'spectra_custom_css_example'              => __(
				'Use custom class added in block\'s advanced settings to target your desired block. Examples:
		.my-class {text-align: center;} // my-class is a custom selector',
				'ultimate-addons-for-gutenberg'
			),
			'is_rtl'                                  => is_rtl(),
			'insta_linked_accounts'                   => UAGB_Admin_Helper::get_admin_settings_option( 'uag_insta_linked_accounts', array() ),
			'insta_all_users_media'                   => apply_filters( 'uag_instagram_transients', array() ),
			'is_site_editor'                          => $screen->id,
			'current_post_id'                         => get_the_ID(),
			'btn_inherit_from_theme'                  => UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ),
			'btn_inherit_from_theme_fallback'         => $inherit_from_theme,
			'wp_version'                              => get_bloginfo( 'version' ),
			'is_block_theme'                          => UAGB_Admin_Helper::is_block_theme(),
			'is_customize_preview'                    => is_customize_preview(),
			'uag_enable_gbs_extension'                => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' ),
			'current_theme'                           => wp_get_theme()->get( 'Name' ),
			'is_gutenberg_activated'                  => is_plugin_active( 'gutenberg/gutenberg.php' ), // TODO: Once Gutenberg merged the rename functionality code in WP then we need to remove localization part for is_gutenberg_activated.
			'header_titlebar_status'                  => UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_header_titlebar', 'enabled' ),
			'is_astra_based_theme'                    => $astra_theme_settings_available,
			'astra_body_text_decoration'              => $astra_theme_body_text_decoration,
			// creating an array of iframe names to ignore and checking against that array.
			// Add more iframe names to ignore, this is done by using the 'spectra_exclude_crops_iframes' filter.
			'exclude_crops_iframes'                   => apply_filters( 'spectra_exclude_crops_iframes', array( '__privateStripeMetricsController8690' ) ),
			'status_of_sureforms'                     => $status_of_sureforms,
			'status_of_surecart'                      => $status_of_surecart,
			'docsUrl'                                 => \UAGB_Admin_Helper::get_spectra_pro_url( '/docs/', 'free-plugin', 'uagb-editor-page', 'uagb-plugin' ),
			'upsellModalEditor'                       => \UAGB_Admin_Helper::get_spectra_pro_url( '/pricing/', 'free-plugin', 'spectra-editor', 'upsell-popup-view-plan' ),
			'contry_code'                             => \UAGB_Admin_Helper::get_user_country_code(),
		);

		wp_localize_script(
			'uagb-block-editor-js',
			'uagb_blocks_info',
			$localized_params
		);

		// Enqueue the assets for editor upsells.
		wp_enqueue_style(
			'spectra-upsell-banner-tailwind-style',
			UAGB_URL . 'dist/blocks.css',
			array(),
			UAGB_VER
		);

		// To match the editor with frontend.
		// Scripts Dependency.
		UAGB_Scripts_Utils::enqueue_blocks_dependency_both();
		// Style.
		UAGB_Scripts_Utils::enqueue_blocks_styles();
		// RTL Styles.
		UAGB_Scripts_Utils::enqueue_blocks_rtl_styles();

		// Add svg icons in chunks.
		$this->add_svg_icon_assets();
	}

	/**
	 *  Get the User Roles
	 *
	 *  @since 1.21.0
	 */
	public function get_user_role() {

		global $wp_roles;

		$field_options = array();

		$role_lists = $wp_roles->get_names();

		$field_options[0] = array(
			'value' => '',
			'label' => __( 'None', 'ultimate-addons-for-gutenberg' ),
		);

		foreach ( $role_lists as $key => $role_list ) {
			$field_options[] = array(
				'value' => $key,
				'label' => $role_list,
			);
		}

		return $field_options;
	}

	/**
	 * Function to integrate CF7 Forms.
	 *
	 * @since 1.10.0
	 */
	public function get_cf7_forms() {
		$field_options = array();

		if ( class_exists( 'WPCF7_ContactForm' ) ) {
			$args             = array(
				'post_type'      => 'wpcf7_contact_form',
				'posts_per_page' => -1,
			);
			$forms            = get_posts( $args );
			$field_options[0] = array(
				'value' => -1,
				'label' => __( 'Select Form', 'ultimate-addons-for-gutenberg' ),
			);
			if ( $forms ) {
				foreach ( $forms as $form ) {
					$field_options[] = array(
						'value' => $form->ID,
						'label' => $form->post_title,
					);
				}
			}
		}

		if ( empty( $field_options ) ) {
			$field_options = array(
				'-1' => __( 'You have not added any Contact Form 7 yet.', 'ultimate-addons-for-gutenberg' ),
			);
		}
		return $field_options;
	}

	/**
	 * Returns all gravity forms with ids
	 *
	 * @since 1.12.0
	 * @return array Key Value paired array.
	 */
	public function get_gravity_forms() {
		$field_options = array();

		if ( class_exists( 'GFForms' ) ) {
			$forms            = RGFormsModel::get_forms( null, 'title' );
			$field_options[0] = array(
				'value' => -1,
				'label' => __( 'Select Form', 'ultimate-addons-for-gutenberg' ),
			);
			if ( is_array( $forms ) ) {
				foreach ( $forms as $form ) {
					$field_options[] = array(
						'value' => $form->id,
						'label' => $form->title,
					);
				}
			}
		}

		if ( empty( $field_options ) ) {
			$field_options = array(
				'-1' => __( 'You have not added any Gravity Forms yet.', 'ultimate-addons-for-gutenberg' ),
			);
		}

		return $field_options;
	}

	/**
	 * Ajax call to confirm add users confirmation option in database
	 *
	 * @return void
	 * @since 2.4.0
	 */
	public function confirm_svg_upload() {
		check_ajax_referer( 'uagb_confirm_svg_nonce', 'svg_nonce' );
		if ( empty( $_POST['confirmation'] ) || 'yes' !== sanitize_text_field( $_POST['confirmation'] ) ) {
			wp_send_json_error( array( 'message' => __( 'Invalid request', 'ultimate-addons-for-gutenberg' ) ) );
		}

		update_option( 'spectra_svg_confirmation', 'yes' );
		wp_send_json_success();
	}

	/**
	 * Add Global Block Styles Class.
	 *
	 * @param string $block_content The block content.
	 * @param array  $block The block data.
	 * @since 2.9.0
	 * @return mixed Returns the new block content.
	 */
	public function add_gbs_class( $block_content, $block ) {
		if ( empty( $block['blockName'] ) || ! is_string( $block['blockName'] ) || false === strpos( $block['blockName'], 'uagb/' ) || empty( $block['attrs']['globalBlockStyleId'] ) || empty( $block['attrs']['block_id'] ) ) {
			return $block_content;
		}

		// Check if GBS is enabled.
		$gbs_status = \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' );

		$style_name       = $block['attrs']['globalBlockStyleId'];
		$style_class_name = 'spectra-gbs-' . $style_name;

		// If GBS extension is disabled then add static class name.
		if ( 'disabled' === $gbs_status ) {
			$_block_slug      = str_replace( 'uagb/', '', $block['blockName'] );
			$class_name       = 'spectra-gbs-uagb-gbs-default-' . $_block_slug;
			$style_class_name = $class_name;
		}

		$block_id = 'uagb-block-' . $block['attrs']['block_id'];

		// Replace the block id with the block id and the style class name.
		$replacement_string = esc_attr( $block_id ) . ' ' . esc_attr( $style_class_name );
		$html               = str_replace( $block_id, $replacement_string, $block_content );

		return $html;
	}

	/**
	 * Function to save enable/disable data.
	 *
	 * @since 2.12.0
	 * @return void
	 */
	public function uag_global_sidebar_enabled() {
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		if ( ! check_ajax_referer( 'uagb_ajax_nonce', 'security', false ) ) {
			wp_send_json_error();
		}

		if ( ! empty( $_POST['enableQuickActionSidebar'] ) ) {
			$spectra_enable_quick_action_sidebar = ( 'enabled' === $_POST['enableQuickActionSidebar'] ? 'enabled' : 'disabled' );
			\UAGB_Admin_Helper::update_admin_settings_option( 'uag_enable_quick_action_sidebar', $spectra_enable_quick_action_sidebar );
			wp_send_json_success();
		}
		wp_send_json_error();
	}

	/**
	 * Function to save allowed block data.
	 *
	 * @since 2.12.0
	 * @return void
	 */
	public function uag_global_update_allowed_block() {
		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		if ( ! check_ajax_referer( 'uagb_ajax_nonce', 'security', false ) ) {
			wp_send_json_error();
		}

		if ( ! empty( $_POST['defaultAllowedQuickSidebarBlocks'] ) ) {
			$spectra_default_allowed_quick_sidebar_blocks = json_decode( wp_unslash( sanitize_text_field( $_POST['defaultAllowedQuickSidebarBlocks'] ) ), true );
			\UAGB_Admin_Helper::update_admin_settings_option( 'uagb_quick_sidebar_allowed_blocks', $spectra_default_allowed_quick_sidebar_blocks );
			wp_send_json_success();
		}
		wp_send_json_error();
	}

	/**
	 * Function to save Spectra Global Block Styles data.
	 *
	 * @since 2.9.0
	 * @return void
	 */
	public function uag_global_block_styles() {
		// Check if gbs enabled or not.
		if ( 'enabled' !== \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' ) ) {
			wp_send_json_error();
		}


		if ( ! current_user_can( 'manage_options' ) ) {
			wp_send_json_error();
		}

		if ( ! check_ajax_referer( 'uagb_ajax_nonce', 'security', false ) ) {
			wp_send_json_error();
		}

		$response_data = array( 'messsage' => __( 'No post data found!', 'ultimate-addons-for-gutenberg' ) );

		if ( empty( $_POST['spectraGlobalStyles'] ) ) {
			wp_send_json_error( $response_data );
		}

		$global_block_styles = json_decode( wp_unslash( sanitize_text_field( $_POST['spectraGlobalStyles'] ) ), true );

		if ( ! empty( $_POST['bulkUpdateStyles'] ) && 'no' !== $_POST['bulkUpdateStyles'] ) {
			update_option( 'spectra_global_block_styles', $global_block_styles );
			wp_send_json_success( $global_block_styles );
		}

		if ( empty( $_POST ) || empty( $_POST['attributes'] ) || empty( $_POST['blockName'] ) || empty( $_POST['postId'] ) || empty( $_POST['spectraGlobalStyles'] ) || ! is_array( $global_block_styles ) ) {
			wp_send_json_error( $response_data );
		}

		$global_block_styles = is_array( $global_block_styles ) ? $global_block_styles : array();
		$block_attr          = array();

		$post_id = sanitize_text_field( $_POST['postId'] );
		// Not sanitizing this array because $_POST['attributes'] is a very large array of different types of attributes.
		foreach ( $global_block_styles as $key => $style ) {
			if ( ! empty( $_POST['globalBlockStyleId'] ) && ! empty( $style['value'] ) && $style['value'] === $_POST['globalBlockStyleId'] ) {
				$block_attr = $style['attributes'];

				if ( ! $block_attr ) {
					wp_send_json_error( $response_data );
					break;
				}

				$_block_slug = str_replace( 'uagb/', '', sanitize_text_field( $_POST['blockName'] ) );
				$_block_css  = UAGB_Block_Module::get_frontend_css( $_block_slug, $block_attr, $block_attr['block_id'], true );

				$desktop = '';
				$tablet  = '';
				$mobile  = '';

				$tab_styling_css = '';
				$mob_styling_css = '';
				$desktop        .= $_block_css['desktop'];
				$tablet         .= $_block_css['tablet'];
				$mobile         .= $_block_css['mobile'];
				if ( ! empty( $tablet ) ) {
					$tab_styling_css .= '@media only screen and (max-width: ' . UAGB_TABLET_BREAKPOINT . 'px) {';
					$tab_styling_css .= $tablet;
					$tab_styling_css .= '}';
				}

				if ( ! empty( $mobile ) ) {
					$mob_styling_css .= '@media only screen and (max-width: ' . UAGB_MOBILE_BREAKPOINT . 'px) {';
					$mob_styling_css .= $mobile;
					$mob_styling_css .= '}';
				}
				$_block_css                                    = $desktop . $tab_styling_css . $mob_styling_css;
				$global_block_styles[ $key ]['frontendStyles'] = $_block_css;
				$gbs_stored                                    = get_option( 'spectra_global_block_styles', array() );
				$gbs_stored_key_value                          = is_array( $gbs_stored ) && isset( $gbs_stored[ $key ] ) ? $gbs_stored[ $key ] : array();

				if ( ! empty( $gbs_stored_key_value['post_ids'] ) ) {
					$global_block_styles[ $key ]['post_ids'] = array_merge( $global_block_styles[ $key ]['post_ids'], $gbs_stored_key_value['post_ids'] );
				}

				// For FSE template slug.
				if ( ! empty( $gbs_stored_key_value['page_template_slugs'] ) ) {
					$global_block_styles[ $key ]['page_template_slugs'] = array_merge( $global_block_styles[ $key ]['page_template_slugs'], $gbs_stored_key_value['page_template_slugs'] );
				}

				// For global styles (  widget and customize area ).
				if ( ! empty( $gbs_stored_key_value['styleForGlobal'] ) ) {
					$global_block_styles[ $key ]['styleForGlobal'] = array_merge( $global_block_styles[ $key ]['styleForGlobal'], $gbs_stored_key_value['styleForGlobal'] );
				}

				update_option( 'spectra_global_block_styles', $global_block_styles );

				if ( ! empty( $global_block_styles[ $key ]['post_ids'] ) && is_array( $global_block_styles[ $key ]['post_ids'] ) ) {
					foreach ( $global_block_styles[ $key ]['post_ids'] as $post_id ) {
						UAGB_Helper::delete_page_assets( $post_id );
					}
				}
			}
		}

		$spectra_gbs_google_fonts = get_option( 'spectra_gbs_google_fonts', array() );

		// Global Font Families.
		$font_families = array();
		foreach ( $block_attr as $name => $attribute ) {
			if ( false !== strpos( $name, 'Family' ) && '' !== $attribute ) {

				$font_families[] = $attribute;
			}
		}

		if ( isset( $block_attr['globalBlockStyleId'] ) && is_array( $spectra_gbs_google_fonts ) ) {
			$spectra_gbs_google_fonts[ $block_attr['globalBlockStyleId'] ] = $font_families;
			if ( isset( $spectra_gbs_google_fonts[ $block_attr['globalBlockStyleId'] ] ) && is_array( $spectra_gbs_google_fonts[ $block_attr['globalBlockStyleId'] ] ) ) {
				$spectra_gbs_google_fonts[ $block_attr['globalBlockStyleId'] ] = array_unique( $spectra_gbs_google_fonts[ $block_attr['globalBlockStyleId'] ] );
			}
		}

		update_option( 'spectra_gbs_google_fonts', $spectra_gbs_google_fonts );

		if ( ! empty( $_POST['globalBlockStylesFontFamilies'] ) ) {
			$spectra_gbs_google_fonts_editor = json_decode( wp_unslash( sanitize_text_field( $_POST['globalBlockStylesFontFamilies'] ) ), true );
			update_option( 'spectra_gbs_google_fonts_editor', $spectra_gbs_google_fonts_editor );
		}

		wp_send_json_success( $global_block_styles );
	}
}

/**
 *  Prepare if class 'UAGB_Init_Blocks' exist.
 *  Kicking this off by calling 'get_instance()' method
 */
UAGB_Init_Blocks::get_instance();
PK��][���iBultimate-addons-for-gutenberg/classes/class-uagb-scripts-utils.phpnu�[���<?php
/**
 * UAGB Scripts Utils.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Scripts_Utils.
 */
final class UAGB_Scripts_Utils {

	/**
	 * Enqueue Gutenberg block assets for both frontend + backend.
	 *
	 * @since 1.23.0
	 */
	public static function enqueue_blocks_dependency_both() {

		$blocks       = UAGB_Block_Module::get_blocks_info();
		$saved_blocks = UAGB_Admin_Helper::get_admin_settings_option( '_uagb_blocks', array() );
		$block_assets = UAGB_Block_Module::get_block_dependencies();

		foreach ( $blocks as $slug => $value ) {
			$_slug = str_replace( 'uagb/', '', $slug );

			if ( ! ( isset( $saved_blocks[ $_slug ] ) && 'disabled' === $saved_blocks[ $_slug ] ) ) {

				if ( 'cf7-styler' === $_slug ) {
					if ( ! wp_script_is( 'contact-form-7', 'enqueued' ) ) {
						wp_enqueue_script( 'contact-form-7' );
					}

					if ( ! wp_script_is( ' wpcf7-admin', 'enqueued' ) ) {
						wp_enqueue_script( ' wpcf7-admin' );
					}
				}
				foreach ( $block_assets as $handle => $asset ) {

					if ( isset( $asset['type'] ) ) {

						if ( 'js' === $asset['type'] ) {

							// Scripts.
							wp_register_script(
								$handle, // Handle.
								$asset['src'],
								$asset['dep'],
								UAGB_VER,
								true
							);

							$skip_editor = isset( $asset['skipEditor'] ) ? $asset['skipEditor'] : false;

							if ( is_admin() && false === $skip_editor ) {
								wp_enqueue_script( $handle );
							}
						} elseif ( 'css' === $asset['type'] ) {

							// Styles.
							wp_register_style(
								$handle, // Handle.
								$asset['src'],
								$asset['dep'],
								UAGB_VER
							);

							if ( is_admin() ) {
								wp_enqueue_style( $handle );
							}
						}
					}
				}
			}
		}

		$uagb_masonry_ajax_nonce = wp_create_nonce( 'uagb_masonry_ajax_nonce' );
		wp_localize_script(
			'uagb-post-js',
			'uagb_data',
			array(
				'ajax_url'                => admin_url( 'admin-ajax.php' ),
				'uagb_masonry_ajax_nonce' => $uagb_masonry_ajax_nonce,
			)
		);

		$uagb_forms_ajax_nonce = wp_create_nonce( 'uagb_forms_ajax_nonce' );
		wp_localize_script(
			'uagb-forms-js',
			'uagb_forms_data',
			array(
				'ajax_url'              => admin_url( 'admin-ajax.php' ),
				'uagb_forms_ajax_nonce' => $uagb_forms_ajax_nonce,
			)
		);

		$uagb_image_gallery_masonry_ajax_nonce         = wp_create_nonce( 'uagb_image_gallery_masonry_ajax_nonce' );
		$uagb_image_gallery_grid_pagination_ajax_nonce = wp_create_nonce( 'uagb_image_gallery_grid_pagination_ajax_nonce' );
		wp_localize_script(
			'uagb-image-gallery-js',
			'uagb_image_gallery',
			array(
				'ajax_url'                              => admin_url( 'admin-ajax.php' ),
				'uagb_image_gallery_masonry_ajax_nonce' => $uagb_image_gallery_masonry_ajax_nonce,
				'uagb_image_gallery_grid_pagination_ajax_nonce' => $uagb_image_gallery_grid_pagination_ajax_nonce,
			)
		);

		wp_localize_script(
			'uagb-countdown-js',
			'uagb_countdown_data',
			array(
				'site_name_slug' => sanitize_title( get_bloginfo( 'name' ) ),
			)
		);

	}

	/**
	 * Enqueue block styles.
	 *
	 * @since 1.23.0
	 */
	public static function enqueue_blocks_styles() {

		$wp_upload_dir = UAGB_Helper::get_uag_upload_dir_path();

		if ( file_exists( $wp_upload_dir . 'custom-style-blocks.css' ) ) {

			$wp_upload_url = UAGB_Helper::get_uag_upload_url_path();

			wp_enqueue_style(
				'uagb-block-css', // Handle.
				$wp_upload_url . 'custom-style-blocks.css', // Block style CSS.
				array(),
				UAGB_VER
			);
		} else {
			wp_enqueue_style(
				'uagb-block-css', // Handle.
				UAGB_URL . 'dist/style-blocks.css', // Block style CSS.
				array(),
				UAGB_VER
			);
		}
	}

	/**
	 * Enqueue block rtl styles.
	 *
	 * @since 1.23.0
	 */
	public static function enqueue_blocks_rtl_styles() {
		if ( is_rtl() ) {
			wp_enqueue_style(
				'uagb-style-rtl', // Handle.
				UAGB_URL . 'assets/css/style-blocks-rtl.min.css', // RTL style CSS.
				array(),
				UAGB_VER
			);
		}
	}

	/**
	 * Get folder name by post id.
	 *
	 * @param int $post_id post id.
	 * @since 2.0.0
	 */
	public static function get_asset_folder_name( $post_id ) {

		$folder_name = 0;

		if ( ! empty( $post_id ) ) {
			$folder_name = absint( round( $post_id, -3 ) );
		}

		return $folder_name;
	}

	/**
	 * Returns an array of paths for the CSS and JS assets
	 * of the current post.
	 *
	 * @param  string $type    Gets the CSS\JS type.
	 * @param  int    $post_id Post ID.
	 * @since 1.14.0
	 * @return array
	 */
	public static function get_asset_info( $type, $post_id ) {

		$uploads_dir = UAGB_Helper::get_upload_dir();
		$folder_name = self::get_asset_folder_name( $post_id );
		$file_name   = get_post_meta( $post_id, '_uag_' . $type . '_file_name', true );
		$path        = $type;
		$url         = $type . '_url';

		$info = array(
			$path => '',
			$url  => '',
		);

		if ( ! empty( $file_name ) ) {
			$info[ $path ] = $uploads_dir['path'] . 'assets/' . $folder_name . '/' . $file_name;
			$info[ $url ]  = $uploads_dir['url'] . 'assets/' . $folder_name . '/' . $file_name;
		}

		return $info;
	}

	/**
	 * Get JS url from to assets.
	 *
	 * @since 2.0.0
	 *
	 * @param string $file_name File name.
	 *
	 * @return string JS url.
	 */
	public static function get_js_url( $file_name ) {
		return UAGB_URL . 'assets/js/' . $file_name . UAGB_JS_EXT;
	}
}
PK��][($٦<�<�@ultimate-addons-for-gutenberg/classes/class-uagb-post-assets.phpnu�[���<?php
/**
 * UAGB Post Base.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class UAGB_Post_Assets.
 */
class UAGB_Post_Assets {

	/**
	 * Current Block List
	 *
	 * @since 1.13.4
	 * @var array
	 */
	public $current_block_list = array();

	/**
	 * UAG Block Flag
	 *
	 * @since 1.13.4
	 * @var uag_flag
	 */
	public $uag_flag = false;

	/**
	 * UAG FAQ Layout Flag
	 *
	 * @since 1.18.1
	 * @var uag_faq_layout
	 */
	public $uag_faq_layout = false;

	/**
	 * UAG File Generation Flag
	 *
	 * @since 1.14.0
	 * @var string
	 */
	public $file_generation = 'disabled';

	/**
	 * UAG File Generation Flag
	 *
	 * @since 1.14.0
	 * @var file_generation
	 */
	public $is_allowed_assets_generation = false;

	/**
	 * UAG File Generation Fallback Flag for CSS
	 *
	 * @since 1.15.0
	 * @var file_generation
	 */
	public $fallback_css = false;

	/**
	 * UAG File Generation Fallback Flag for JS
	 *
	 * @since 1.15.0
	 * @var file_generation
	 */
	public $fallback_js = false;

	/**
	 * Enqueue Style and Script Variable
	 *
	 * @since 1.14.0
	 * @var instance
	 */
	public $assets_file_handler = array();

	/**
	 * Stylesheet
	 *
	 * @since 1.13.4
	 * @var string
	 */
	public $stylesheet = '';

	/**
	 * Script
	 *
	 * @since 1.13.4
	 * @var script
	 */
	public $script = '';

	/**
	 * Page Blocks Variable
	 *
	 * @since 1.6.0
	 * @var instance
	 */
	public $page_blocks;

	/**
	 * Google fonts to enqueue
	 *
	 * @var array
	 */
	public $gfonts = array();

	/**
	 * Google fonts preload files
	 *
	 * @var array
	 */
	public $gfonts_files = array();

	/**
	 * Google fonts url to enqueue
	 *
	 * @var string
	 */
	public $gfonts_url = '';


	/**
	 * Load Google fonts locally
	 *
	 * @var string
	 */
	public $load_gfonts_locally = '';

	/**
	 * Preload google fonts files from local
	 *
	 * @var string
	 */
	public $preload_local_fonts = '';

	/**
	 * Static CSS Added Array
	 *
	 * @since 1.23.0
	 * @var array
	 */
	public $static_css_blocks = array();

	/**
	 * Static CSS Added Array
	 *
	 * @since 1.23.0
	 * @var array
	 */
	public static $conditional_blocks_printed = false;

	/**
	 * Post ID
	 *
	 * @since 1.23.0
	 * @var integer
	 */
	protected $post_id;

	/**
	 * Preview
	 *
	 * @since 1.24.2
	 * @var preview
	 */
	public $preview = false;

	/**
	 * Load UAG Fonts Flag.
	 *
	 * @since 2.0.0
	 * @var preview
	 */
	public $load_uag_fonts = true;

	/**
	 * Common Assets Added.
	 *
	 * @since 2.0.0
	 * @var preview
	 */
	public static $common_assets_added = false;

	/**
	 * Custom CSS Appended Flag
	 *
	 * @since 2.1.0
	 * @var custom_css_appended
	 */
	public static $custom_css_appended = false;

	/**
	 * Is current post a revision.
	 *
	 * @since 2.6.2
	 * @var is_post_revision
	 */
	public $is_post_revision = false;

	/**
	 * Seen Refs Array
	 * This array will store the block IDs which have already been processed.
	 *
	 * @since 2.19.5
	 * @var array
	 */
	private static $seen_refs = array();

	/**
	 * Constructor
	 *
	 * @param int $post_id Post ID.
	 */
	public function __construct( $post_id ) {

		$this->post_id = intval( $post_id );

		// For Spectra Global Block Styles.
		$this->spectra_gbs_load_gfonts();

		if ( wp_is_post_revision( $this->post_id ) ) {
			$this->is_post_revision = true;
		}

		$this->preview = isset( $_GET['preview'] ); //phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Nonce verification not required.

		$this->load_uag_fonts = apply_filters( 'uagb_enqueue_google_fonts', $this->load_uag_fonts );

		if ( $this->preview || $this->is_post_revision ) {
			$this->file_generation              = 'disabled';
			$this->is_allowed_assets_generation = true;
		} else {
			$this->file_generation              = UAGB_Helper::$file_generation;
			$this->is_allowed_assets_generation = $this->allow_assets_generation();
		}
		// Set other options.
		$this->load_gfonts_locally = UAGB_Admin_Helper::get_admin_settings_option( 'uag_load_gfonts_locally', 'disabled' );
		$this->preload_local_fonts = UAGB_Admin_Helper::get_admin_settings_option( 'uag_preload_local_fonts', 'disabled' );

		if ( $this->is_allowed_assets_generation ) {
			global $post;
			$this_post = $this->preview ? $post : get_post( $this->post_id );
			if ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) { // Check if block theme is active.
				$what_post_type = $this->determine_template_post_type( $this->post_id ); // Determine template post type.
				$this->prepare_assets_for_templates_based_post_type( $what_post_type ); // Prepare assets for templates based on post type.
			}
			$this->prepare_assets( $this_post );
			if ( $this->preview ) { // Load CSS only in preview mode of block editor.
				$this->prepare_ast_custom_layout_post_assets();
			}
			$content = get_option( 'widget_block' );
			$this->prepare_widget_area_assets( $content );
		}
	}

	/**
	 * Get WooCommerce Template.
	 *
	 * @since 2.9.1
	 * @return bool|string The WooCommerce template if found, or false if not found.
	 */
	public function get_woocommerce_template() {
		// Check if WooCommerce is active.
		if ( class_exists( 'WooCommerce' ) ) {
			$is_order_received_page            = function_exists( 'is_order_received_page' ) && is_order_received_page();
			$is_checkout                       = function_exists( 'is_checkout' ) && is_checkout();
			$is_wc_order_received_endpoint_url = function_exists( 'is_wc_endpoint_url' ) && is_wc_endpoint_url( 'order-received' );
			// Check other WooCommerce pages.
			switch ( true ) {
				// Check if the current page is the shop page.
				case is_cart():
					return 'page-cart';

				// Check if the current page is the checkout page.
				case $is_checkout:
					// Check if the current page is the order received page.
					if ( $is_order_received_page ) {
						return 'order-confirmation';
					}
					return 'page-checkout';

				// Check if the current page is the order received page.
				case $is_wc_order_received_endpoint_url:
					return 'order-confirmation';

				// Check if the current page is a product page.
				case is_product():
					// Retrieve the queried object.
					$object = get_queried_object();
					// Get all block templates.
					$template_types = get_block_templates();
					// Extract the 'slug' column from the block templates array.
					$template_type_slug = array_column( $template_types, 'slug' );
					// Check specific single product template exist or not. If not then use default single product template. 
					return ( $object instanceof WP_Post && in_array( 'single-product-' . $object->post_name, $template_type_slug ) ) ? 'single-product-' . $object->post_name : 'single-product';

				// Check if the current page is an archive page.
				case is_archive():
					// Retrieve the queried object.
					$object = get_queried_object();

					// Get all block templates.
					$template_types = get_block_templates();

					// Extract the 'slug' column from the block templates array.
					$template_type_slug = array_column( $template_types, 'slug' );

					// Check if the current request is a search and if the post type archive is for 'product'.
					$searchCondition = is_search() && is_post_type_archive( 'product' );

					// Switch statement to determine the template based on various conditions.
					switch ( true ) {
						// Case when the current page is a product taxonomy and the taxonomy is 'product_tag'.
						case ( is_product_taxonomy() && is_tax( 'product_tag' ) ) && $object instanceof WP_Term && ! in_array( 'taxonomy-' . $object->taxonomy . '-' . $object->slug, $template_type_slug ):
							// Check if 'taxonomy-product_tag' template exists in the template type slugs array.
							if ( in_array( 'taxonomy-product_tag', $template_type_slug ) ) {
								// Prepare assets for the 'taxonomy-product_tag' template.
								$this->prepare_assets_for_templates_based_post_type( 'taxonomy-product_tag' );
							}
							// Return the appropriate template based on the search condition.
							return $searchCondition ? 'product-search-results' : 'archive-product';

						// Case when the current page is a product taxonomy and the object is a term.
						case is_product_taxonomy() && $object instanceof WP_Term:
							// Check if the taxonomy is a product attribute.
							if ( taxonomy_is_product_attribute( $object->taxonomy ) ) {
								// Prepare assets for the 'archive-product' template if it exists in the template type slugs array.
								if ( in_array( 'archive-product', $template_type_slug ) ) {
									$this->prepare_assets_for_templates_based_post_type( 'archive-product' );
								}
								// Return the 'product-search-results' or 'taxonomy-product_attribute' template based on the search condition.
								return $searchCondition ? 'product-search-results' : 'taxonomy-product_attribute';
							} elseif ( ( is_tax( 'product_cat' ) || is_tax( 'product_tag' ) ) && in_array( 'taxonomy-' . $object->taxonomy . '-' . $object->slug, $template_type_slug ) ) {
								// Return the specific taxonomy template based on the search condition.
								return $searchCondition ? 'product-search-results' : 'taxonomy-' . $object->taxonomy . '-' . $object->slug;
							} else {
								// Prepare assets for the 'taxonomy-product_cat' template if it exists in the template type slugs array.
								if ( in_array( 'taxonomy-product_cat', $template_type_slug ) ) {
									$this->prepare_assets_for_templates_based_post_type( 'taxonomy-product_cat' );
								}
								// Return the appropriate template based on the search condition.
								return $searchCondition ? 'product-search-results' : 'archive-product';
							}
							break;

						// Case when the current page is the shop page.
						case is_shop():
							// Return the appropriate template based on the search condition.
							return $searchCondition ? 'product-search-results' : 'archive-product';

						default:
							// Return the appropriate template based on the search condition and the type of the queried object.
							return $searchCondition ? 'product-search-results' : ( ( $object instanceof WP_Post || $object instanceof WP_Post_Type || $object instanceof WP_Term || $object instanceof WP_User ) ? $this->get_archive_page_template( $object, $template_type_slug ) : 'archive-product' );
					}
					break;

				default:
					// Handle other cases if needed.
					break;
			}
		}
		return false;
	}

	/**
	 * Get archive page template for current post.
	 *
	 * @param object $archive_object of current post.
	 * @param array  $template_type_slug name.
	 * @since 2.12.8
	 * @return string The determined archive post type.
	 */
	public function get_archive_page_template( $archive_object, $template_type_slug ) {
		if ( is_author() && $archive_object instanceof WP_User ) { // For author archive or more specific author template.
			$author_slug = 'author-' . $archive_object->user_nicename;
			return in_array( $author_slug, $template_type_slug ) ? $author_slug : ( in_array( 'author', $template_type_slug ) ? 'author' : 'archive' );
		} elseif ( $archive_object instanceof WP_Term ) {
			if ( is_category() ) { // For category archive or more specific category template.
				$category_slug = 'category-' . $archive_object->slug;
				return in_array( $category_slug, $template_type_slug ) ? $category_slug : ( in_array( 'category', $template_type_slug ) ? 'category' : 'archive' );
			} elseif ( is_tag() ) { // For tag archive or more specific tag template.
				$tag_slug = 'tag-' . $archive_object->slug;
				return in_array( $tag_slug, $template_type_slug ) ? $tag_slug : ( in_array( 'tag', $template_type_slug ) ? 'tag' : 'archive' );
			} elseif ( is_tax() ) {
				$tax_slug          = 'taxonomy-' . $archive_object->taxonomy;
				$specific_tax_slug = 'taxonomy-' . $archive_object->taxonomy . '-' . $archive_object->slug;
				if ( in_array( $specific_tax_slug, $template_type_slug ) ) { // For more specific custom taxonomy template.
					$this->prepare_assets_for_templates_based_post_type( $specific_tax_slug );
				}
				// For all custom taxonomy archive or more archive taxonomy template.
				return in_array( $tax_slug, $template_type_slug ) ? $tax_slug : 'archive';
			}
		} elseif ( is_date() && in_array( 'date', $template_type_slug ) ) { // For date archive template.
			return 'date';
		} elseif ( $archive_object instanceof WP_Post_Type && is_post_type_archive() ) { // For custom post type archive or more specific custom post type archive template.
			$post_type_archive_slug = 'archive-' . $archive_object->name;
			return in_array( $post_type_archive_slug, $template_type_slug ) ? $post_type_archive_slug : ( in_array( 'archive', $template_type_slug ) ? 'archive' : 'archive-' . $archive_object->name );
		}
		return 'archive';
	}

	/**
	 * Determine template post type function.
	 *
	 * @param int $post_id of current post.
	 * @since 2.9.1
	 * @return string The determined post type.
	 */
	public function determine_template_post_type( $post_id ) {
		$get_woocommerce_template = $this->get_woocommerce_template(); // Get WooCommerce template.
		if ( is_string( $get_woocommerce_template ) ) { // Check if WooCommerce template is found.
			return $get_woocommerce_template; // WooCommerce templates to post type.
		}

		// Check if post id is passed.
		if ( ! empty( $post_id ) ) {
			$template_slug = get_page_template_slug( $post_id );
			if ( ! empty( $template_slug ) ) {
				return $template_slug;
			}
		}

		$conditional_to_post_type = array(
			'is_attachment' => 'attachment',
			'is_embed'      => 'embed',
			'is_front_page' => 'home',
			'is_home'       => 'home',
			'is_search'     => 'search',
			'is_paged'      => 'paged',
		); // Conditional tags to post type.

		$what_post_type     = '404'; // Default to '404' if no condition matches.
		$object             = get_queried_object();
		$template_types     = get_block_templates();
		$template_type_slug = array_column( $template_types, 'slug' );

		// Determines whether the query is for an existing single page.
		$is_regular_page        = is_page() && ! is_front_page();
		$is_front_page_template = is_front_page() && get_front_page_template();
		$is_static_front_page   = 'page' === get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && is_front_page() && ! is_home() && ! $is_front_page_template;

		if ( $is_regular_page || $is_static_front_page ) { // Run only for page and any page selected as home page from settings > reading > static page.
			return ( $object instanceof WP_Post && in_array( 'page-' . $object->post_name, $template_type_slug ) ) ? 'page-' . $object->post_name : 'page';
		} elseif ( $is_front_page_template ) { // Run only when is_home and is_front_page() and get_front_page_template() is true. i.e front-page template.
			return 'front-page';
		} elseif ( is_archive() ) { // Applies to archive pages.
			// If none of the above condition matches, return archive template.
			return ( $object instanceof WP_Post || $object instanceof WP_Post_Type || $object instanceof WP_Term || $object instanceof WP_User ) ? $this->get_archive_page_template( $object, $template_type_slug ) : 'archive';
		} else {
			if ( $object instanceof WP_Post && ! empty( $object->post_type ) ) {
				if ( is_singular() ) { // Applies to single post of any post type ( attachment, page, custom post types).
					$name_decoded = urldecode( $object->post_name );
					if ( in_array( 'single-' . $object->post_type . '-' . $name_decoded, $template_type_slug ) ) {
						return 'single-' . $object->post_type . '-' . $name_decoded;
					} elseif ( in_array( 'single-' . $object->post_type, $template_type_slug ) ) {
						return 'single-' . $object->post_type;
					} else { // If none of the above condition matches, return single template.
						return 'single';
					}
				}
			}
		}

		foreach ( $conditional_to_post_type as $conditional => $post_type ) {
			if ( $conditional() ) {
				$what_post_type = $post_type;
				break;
			}
		}

		return $what_post_type;
	}

	/**
	 * Generates assets for templates based on post type.
	 *
	 * @param string $post_type of current template.
	 * @since 2.9.1
	 * @return void
	 */
	public function prepare_assets_for_templates_based_post_type( $post_type ) {
		$template_slug    = $post_type;
		$current_template = get_block_templates( array( 'slug__in' => array( $template_slug ) ) ); // Get block templates based on post type.
		// Check if block templates were found.
		if ( ! empty( $current_template ) && is_array( $current_template ) ) {
			// Ensure the first template has content.
			if ( isset( $current_template[0]->content ) && has_blocks( $current_template[0]->content ) ) {
				$this->common_function_for_assets_preparation( $current_template[0]->content );
			}
		}
	}

	/**
	 * Generate assets of Astra custom layout post in preview
	 *
	 * @since 2.6.0
	 * @return void
	 */
	public function prepare_ast_custom_layout_post_assets() {

		if ( ! defined( 'ASTRA_ADVANCED_HOOKS_POST_TYPE' ) ) {
			return;
		}

		$option = array(
			'location'  => 'ast-advanced-hook-location',
			'exclusion' => 'ast-advanced-hook-exclusion',
			'users'     => 'ast-advanced-hook-users',
		);
		$result = Astra_Target_Rules_Fields::get_instance()->get_posts_by_conditions( ASTRA_ADVANCED_HOOKS_POST_TYPE, $option );

		if ( empty( $result ) || ! is_array( $result ) ) {
			return;
		}
		foreach ( $result as $post_id => $post_data ) {
			$custom_post = get_post( $post_id );
			$this->prepare_assets( $custom_post );
		}
	}

	/**
	 * Load Styles for Spectra Global Block Styles.
	 *
	 * @since 2.9.0
	 * @return void
	 */
	public function spectra_gbs_load_styles() {
		// Check if GBS is enabled.
		$gbs_status                  = \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' );
		$spectra_global_block_styles = get_option( 'spectra_global_block_styles', array() );
		if ( empty( $spectra_global_block_styles ) || ! is_array( $spectra_global_block_styles ) ) {
			return;
		}

		if ( 'disabled' === $gbs_status ) {
			// Enqueue GBS default styles.
			foreach ( $spectra_global_block_styles as $style ) {

				if ( empty( $style['blockName'] ) || ! is_string( $style['blockName'] ) ) {
					continue;
				}

				// Check if uagb string exist in $block_name or not.
				if ( 0 !== strpos( $style['blockName'], 'uagb/' ) ) {
					continue;
				}

				$_block_slug = str_replace( 'uagb/', '', $style['blockName'] );

				// This is class name and file name.
				$file_names    = 'uagb-gbs-default-' . $_block_slug;
				$wp_upload_dir = \UAGB_Helper::get_uag_upload_dir_path();
				$wp_upload_url = UAGB_Helper::get_uag_upload_url_path();
				$file_dir      = $wp_upload_dir . $file_names . '.css';
				if ( file_exists( $file_dir ) ) {
					$file_url = $wp_upload_url . $file_names . '.css';
					wp_enqueue_style( $file_names, $file_url, array(), UAGB_VER, 'all' );
				}
			}
		}

		if ( 'enabled' !== $gbs_status ) {
			return;
		}

		$should_render_styles_in_fse_page = wp_is_block_theme() && ! get_queried_object();

		foreach ( $spectra_global_block_styles as $style ) {
			if ( ! empty( $style['value'] ) && ! empty( $style['frontendStyles'] ) ) {

				if ( ! empty( $style['post_ids'] ) && in_array( $this->post_id, $style['post_ids'] ) ) {
					$this->stylesheet = $style['frontendStyles'] . $this->stylesheet;
				} elseif ( $should_render_styles_in_fse_page && isset( $style['page_template_slugs'] ) && ! empty( $style['page_template_slugs'] ) ) {
					// Render in fse template.
					$this->stylesheet = $style['frontendStyles'] . $this->stylesheet;
				} elseif ( isset( $style['styleForGlobal'] ) && ! empty( $style['styleForGlobal'] ) ) {
					$this->stylesheet = $style['frontendStyles'] . $this->stylesheet;
				}
			}
		}
	}


	/**
	 * Load Google Fonts for Spectra Global Block Styles.
	 *
	 * @since 2.9.0
	 * @return void
	 */
	public function spectra_gbs_load_gfonts() {

		$spectra_gbs_google_fonts = get_option( 'spectra_gbs_google_fonts', array() );

		if ( ! is_array( $spectra_gbs_google_fonts ) ) {
			return;
		}

		$families = array();
		foreach ( $spectra_gbs_google_fonts as $style ) {
			if ( is_array( $style ) ) {
				foreach ( $style as $family ) {
					if ( ! in_array( $family, $families, true ) ) {
						UAGB_Helper::blocks_google_font( true, $family, '' );
						$families[] = $family;
					}
				}
			}
		}
	}

	/**
	 * Generates stylesheet for widget area.
	 *
	 * @param object $content Current Post Object.
	 * @since 2.0.0
	 */
	public function prepare_widget_area_assets( $content ) {

		if ( empty( $content ) ) {
			return;
		}

		foreach ( $content as $value ) {
			if ( is_array( $value ) && isset( $value['content'] ) && has_blocks( $value['content'] ) ) {
				$this->common_function_for_assets_preparation( $value['content'] );
			}
		}

	}

	/**
	 * This function determines wether to generate new assets or not.
	 *
	 * @since 1.23.0
	 */
	public function allow_assets_generation() {

		$page_assets     = get_post_meta( $this->post_id, '_uag_page_assets', true );
		$version_updated = false;
		$css_asset_info  = array();
		$js_asset_info   = array();

		if ( empty( $page_assets ) || empty( $page_assets['uag_version'] ) ) {
			return true;
		}

		if ( UAGB_ASSET_VER !== $page_assets['uag_version'] ) {
			$version_updated = true;
		}

		if ( 'enabled' === $this->file_generation ) {

			$css_file_name = get_post_meta( $this->post_id, '_uag_css_file_name', true );
			$js_file_name  = get_post_meta( $this->post_id, '_uag_js_file_name', true );

			if ( ! empty( $css_file_name ) ) {
				$css_asset_info = UAGB_Scripts_Utils::get_asset_info( 'css', $this->post_id );
				$css_file_path  = $css_asset_info['css'];
			}

			if ( ! empty( $js_file_name ) ) {
				$js_asset_info = UAGB_Scripts_Utils::get_asset_info( 'js', $this->post_id );
				$js_file_path  = $js_asset_info['js'];
			}

			if ( $version_updated ) {
				$uagb_filesystem = uagb_filesystem();

				if ( ! empty( $css_file_path ) ) {
					$uagb_filesystem->delete( $css_file_path );
				}

				if ( ! empty( $js_file_path ) ) {
					$uagb_filesystem->delete( $js_file_path );
				}

				// Delete keys.
				delete_post_meta( $this->post_id, '_uag_css_file_name' );
				delete_post_meta( $this->post_id, '_uag_js_file_name' );
			}

			if ( empty( $css_file_path ) || ! file_exists( $css_file_path ) ) {
				return true;
			}

			if ( ! empty( $js_file_path ) && ! file_exists( $js_file_path ) ) {
				return true;
			}
		}

		// If version is updated, return true.
		if ( $version_updated ) {
			// Delete cached meta.
			$unique_ids = get_option( '_uagb_fse_uniqids' );
			if ( ! empty( $unique_ids ) && is_array( $unique_ids ) ) {
				foreach ( $unique_ids as $id ) {
					delete_post_meta( (int) $id, '_uag_page_assets' );
				}
			}
			delete_post_meta( $this->post_id, '_uag_page_assets' );
			return true;
		}

		// Set required varibled from stored data.
		$this->current_block_list  = $page_assets['current_block_list'];
		$this->uag_flag            = $page_assets['uag_flag'];
		$this->stylesheet          = apply_filters( 'uag_page_assets_css', $page_assets['css'] );
		$this->script              = apply_filters( 'uag_page_assets_js', $page_assets['js'] );
		$this->gfonts              = $page_assets['gfonts'];
		$this->gfonts_files        = $page_assets['gfonts_files'];
		$this->gfonts_url          = $page_assets['gfonts_url'];
		$this->uag_faq_layout      = $page_assets['uag_faq_layout'];
		$this->assets_file_handler = array_merge( $css_asset_info, $js_asset_info );

		return false;
	}

	/**
	 * Enqueue all page assets.
	 *
	 * @since 1.23.0
	 */
	public function enqueue_scripts() {
		if ( UAGB_Admin_Helper::should_exclude_assets_for_cpt() ) {
			return; // Early return to prevent loading assets.
		}
		
		$blocks = array();
		if ( UAGB_Admin_Helper::is_block_theme() ) {
			global $_wp_current_template_content;
			if ( isset( $_wp_current_template_content ) ) {
				$blocks = parse_blocks( $_wp_current_template_content );
			}
		}
		// Global Required assets.
		// If the current template has content and contains blocks, execute this code block.
		if ( has_blocks( $this->post_id ) || has_blocks( $blocks ) ) {
			/* Print conditional css for all blocks */
			add_action( 'wp_head', array( $this, 'print_conditional_css' ), 80 );
		}

		// For Spectra Global Block Styles.
		$this->spectra_gbs_load_styles();

		// UAG Flag specific.
		if ( $this->is_allowed_assets_generation ) {

			// Prepare font css and files.
			$this->generate_fonts();

			$this->generate_assets();
			$this->generate_asset_files();
		}
		if ( $this->uag_flag ) {

			// Register Assets for Frontend & Enqueue for Editor.
			UAGB_Scripts_Utils::enqueue_blocks_dependency_both();

			// Enqueue all dependency assets.
			$this->enqueue_blocks_dependency_frontend();

			// RTL Styles Support.
			UAGB_Scripts_Utils::enqueue_blocks_rtl_styles();

			if ( $this->load_uag_fonts ) {
				// Render google fonts.
				$this->render_google_fonts();
			}

			if ( 'enabled' === $this->file_generation ) {
				// Enqueue File Generation Assets Files.
				$this->enqueue_file_generation_assets();
			}

			// Print Dynamic CSS.
			if ( 'disabled' === $this->file_generation || $this->fallback_css ) {
				UAGB_Scripts_Utils::enqueue_blocks_styles(); // Enqueue block styles.
				add_action( 'wp_head', array( $this, 'print_stylesheet' ), 80 );
			}
			// Print Dynamic JS.
			if ( 'disabled' === $this->file_generation || $this->fallback_js ) {
				add_action( 'wp_footer', array( $this, 'print_script' ), 1000 );
			}
		} else {
			// this custom css load,if only WP core block is present on the page.
			if ( $this->stylesheet ) {
				add_action( 'wp_head', array( $this, 'print_stylesheet' ), 80 );
			}
		}
	}
	/**
	 * Get saved fonts.
	 *
	 * @since 2.0.0
	 *
	 * @return array
	 */
	public function get_fonts() {

		return $this->gfonts;
	}

	/**
	 * This function updates the Page assets in the Page Meta Key.
	 *
	 * @since 1.23.0
	 */
	public function update_page_assets() {

		if ( $this->preview || $this->is_post_revision ) {
			return;
		}

		$meta_array = array(
			'css'                => wp_slash( $this->stylesheet ),
			'js'                 => $this->script,
			'current_block_list' => $this->current_block_list,
			'uag_flag'           => $this->uag_flag,
			'uag_version'        => UAGB_ASSET_VER,
			'gfonts'             => $this->gfonts,
			'gfonts_url'         => $this->gfonts_url,
			'gfonts_files'       => $this->gfonts_files,
			'uag_faq_layout'     => $this->uag_faq_layout,
		);

		update_post_meta( $this->post_id, '_uag_page_assets', $meta_array );
	}
	/**
	 * This is the action where we create dynamic asset files.
	 * CSS Path : uploads/uag-plugin/uag-style-{post_id}.css
	 * JS Path : uploads/uag-plugin/uag-script-{post_id}.js
	 *
	 * @since 1.15.0
	 */
	public function generate_asset_files() {

		if ( 'enabled' === $this->file_generation ) {
			$this->file_write( $this->stylesheet, 'css', $this->post_id );
			$this->file_write( $this->script, 'js', $this->post_id );
		}

		$this->update_page_assets();
	}

	/**
	 * Enqueue Gutenberg block assets for both frontend + backend.
	 *
	 * @since 1.13.4
	 */
	public function enqueue_blocks_dependency_frontend() {

		$block_list_for_assets = $this->current_block_list;

		$blocks = UAGB_Block_Module::get_blocks_info();

		$block_assets = UAGB_Block_Module::get_block_dependencies();

		foreach ( $block_list_for_assets as $key => $curr_block_name ) {

			$static_dependencies = ( isset( $blocks[ $curr_block_name ]['static_dependencies'] ) ) ? $blocks[ $curr_block_name ]['static_dependencies'] : array();

			foreach ( $static_dependencies as $asset_handle => $asset_info ) {

				if ( 'js' === $asset_info['type'] ) {
					// Scripts.
					if ( 'uagb-faq-js' === $asset_handle ) {
							wp_enqueue_script( 'uagb-faq-js' );
					} else {

						wp_enqueue_script( $asset_handle );
					}
				}

				if ( 'css' === $asset_info['type'] ) {
					// Styles.
					wp_enqueue_style( $asset_handle );
				}
			}
		}

		$uagb_masonry_ajax_nonce = wp_create_nonce( 'uagb_masonry_ajax_nonce' );
		$uagb_grid_ajax_nonce    = wp_create_nonce( 'uagb_grid_ajax_nonce' );
		wp_localize_script(
			'uagb-post-js',
			'uagb_data',
			array(
				'ajax_url'                => admin_url( 'admin-ajax.php' ),
				'uagb_masonry_ajax_nonce' => $uagb_masonry_ajax_nonce,
				'uagb_grid_ajax_nonce'    => $uagb_grid_ajax_nonce,
			)
		);

		$uagb_forms_ajax_nonce = wp_create_nonce( 'uagb_forms_ajax_nonce' );
		wp_localize_script(
			'uagb-forms-js',
			'uagb_forms_data',
			array(
				'ajax_url'              => admin_url( 'admin-ajax.php' ),
				'uagb_forms_ajax_nonce' => $uagb_forms_ajax_nonce,
				'recaptcha_site_key_v2' => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v2', '' ),
				'recaptcha_site_key_v3' => \UAGB_Admin_Helper::get_admin_settings_option( 'uag_recaptcha_site_key_v3', '' ),
			)
		);

		wp_localize_script(
			'uagb-container-js',
			'uagb_container_data',
			array(
				'tablet_breakpoint' => UAGB_TABLET_BREAKPOINT,
				'mobile_breakpoint' => UAGB_MOBILE_BREAKPOINT,
			)
		);

		wp_localize_script(
			'uagb-timeline-js',
			'uagb_timeline_data',
			array(
				'tablet_breakpoint' => UAGB_TABLET_BREAKPOINT,
				'mobile_breakpoint' => UAGB_MOBILE_BREAKPOINT,
			)
		);

		do_action( 'spectra_localize_pro_block_ajax' );

	}

	/**
	 * Enqueue File Generation Files.
	 */
	public function enqueue_file_generation_assets() {

		$file_handler = $this->assets_file_handler;

		/*
		* Added filter to allows developers and users to adjust constant values for theme compatibility, easy updates, and compatibility with other plugins.
		*/
		$uagb_asset_ver = apply_filters( 'uagb_asset_version', UAGB_ASSET_VER );

		if ( empty( $uagb_asset_ver ) || ! is_string( $uagb_asset_ver ) ) {
			$uagb_asset_ver = UAGB_ASSET_VER;
		}

		if ( isset( $file_handler['css_url'] ) ) {
			wp_enqueue_style( 'uag-style-' . $this->post_id, $file_handler['css_url'], array(), $uagb_asset_ver, 'all' );
		} else {
			$this->fallback_css = true;
		}
		if ( isset( $file_handler['js_url'] ) ) {
			wp_enqueue_script( 'uag-script-' . $this->post_id, $file_handler['js_url'], array(), $uagb_asset_ver, true );
		} else {
			$this->fallback_js = true;
		}
	}
	/**
	 * Print the Script in footer.
	 */
	public function print_script() {

		if ( empty( $this->script ) ) {
			return;
		}

		echo '<script type="text/javascript" id="uagb-script-frontend-' . esc_attr( $this->post_id ) . '">' . $this->script . '</script>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaping not required.
	}

	/**
	 * Print the Stylesheet in header.
	 */
	public function print_stylesheet() {

		if ( empty( $this->stylesheet ) ) {
			return;
		}
		echo '<style id="uagb-style-frontend-' . esc_attr( $this->post_id ) . '">' . $this->stylesheet . '</style>'; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaping not required.
	}

	/**
	 * Print Conditional blocks css.
	 */
	public function print_conditional_css() {

		if ( self::$conditional_blocks_printed ) {
			return;
		}

		$conditional_block_css = UAGB_Block_Helper::get_condition_block_css();

		if ( in_array( 'uagb/masonry-gallery', $this->current_block_list, true ) ) {
			$conditional_block_css .= UAGB_Block_Helper::get_masonry_gallery_css();
		}
		echo '<style id="uagb-style-conditional-extension">' . $conditional_block_css . '</style>'; //phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped - Escaping not required.

		self::$conditional_blocks_printed = true;

	}

	/**
	 * Generate google fonts link and font files
	 *
	 * @since 2.0.0
	 *
	 * @return void
	 */
	public function generate_fonts() {

		if ( ! $this->load_uag_fonts || empty( $this->gfonts ) ) {
			return;
		}

		$fonts_link = '';
		$fonts_attr = '';
		$extra_attr = '';
		$fonts_slug = array();

		// Sort key for same md5 id while loading native fonts.
		ksort( $this->gfonts );

		foreach ( $this->gfonts as $key => $gfont_values ) {
			if ( ! empty( $fonts_attr ) ) {
				$fonts_attr .= '|'; // Append a new font to the string.
			}
			if ( empty( $gfont_values['fontfamily'] ) && is_string( $gfont_values['fontfamily'] ) ) {
				continue;
			}
			$fonts_attr  .= str_replace( ' ', '+', $gfont_values['fontfamily'] );
			$fonts_slug[] = sanitize_key( str_replace( ' ', '-', strtolower( $gfont_values['fontfamily'] ) ) );
			if ( ! empty( $gfont_values['fontvariants'] ) ) {
				$fonts_attr .= ':';
				$fonts_attr .= implode( ',', $gfont_values['fontvariants'] );
				foreach ( $gfont_values['fontvariants'] as $key => $font_variants ) {
					$fonts_attr .= ',' . $font_variants . 'italic';
				}
			}
		}

		$subsets = apply_filters( 'uag_font_subset', array() );

		if ( ! empty( $subsets ) ) {
			$extra_attr .= '&subset=' . implode( ',', $subsets );
		} else {
			$extra_attr .= '&subset=latin';
		}

		$display = apply_filters( 'uag_font_disaply', 'fallback' );

		if ( ! empty( $display ) ) {
			$extra_attr .= '&display=' . $display;
		}

		if ( isset( $fonts_attr ) && ! empty( $fonts_attr ) ) {

			// link without https protocol.
			$fonts_link = '//fonts.googleapis.com/css?family=' . esc_attr( $fonts_attr ) . $extra_attr;

			if ( 'enabled' === $this->load_gfonts_locally ) {

				// Include the font loader file.
				require_once UAGB_DIR . 'lib/uagb-webfont/uagb-webfont-loader.php';

				// link with https protocol to download fonts.
				$fonts_link = 'https:' . $fonts_link;

				$fonts_data = uagb_get_webfont_remote_styles( $fonts_link );

				$this->stylesheet = $fonts_data . $this->stylesheet;

				if ( 'enabled' === $this->preload_local_fonts ) {

					$font_files = uagb_get_preload_local_fonts( $fonts_link );

					if ( is_array( $font_files ) && ! empty( $font_files ) ) {
						foreach ( $font_files as $file_data ) {

							if ( isset( $file_data['font_family'] ) && in_array( $file_data['font_family'], $fonts_slug, true ) ) {

								$this->gfonts_files[ $file_data['font_family'] ] = $file_data['font_url'];
							}
						}
					}
				}
			}

			// Set fonts url.
			$this->gfonts_url = $fonts_link;
		}

		/* Update page assets */
		$this->update_page_assets();
	}

	/**
	 * Load the Google Fonts.
	 */
	public function render_google_fonts() {

		if ( empty( $this->gfonts ) || empty( $this->gfonts_url ) ) {
			return;
		}

		$show_google_fonts = apply_filters( 'uagb_blocks_show_google_fonts', true );

		if ( ! $show_google_fonts ) {
			return;
		}

		// Load remote google fonts if local font is disabled.
		if ( 'disabled' === $this->load_gfonts_locally ) {

			// Enqueue google fonts.
			wp_enqueue_style( 'uag-google-fonts-' . $this->post_id, $this->gfonts_url, array(), UAGB_VER, 'all' );

		} else {

			// Preload woff files local font preload is enabled.
			if ( 'enabled' === $this->preload_local_fonts ) {

				if ( is_array( $this->gfonts_files ) && ! empty( $this->gfonts_files ) ) {

					foreach ( $this->gfonts_files as $gfont_file_url ) {
						echo '<link rel="preload" href="' . esc_url( $gfont_file_url ) . '" as="font" type="font/woff2">'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped - Escaping not required.
					}
				}
			}
		}
	}

	/**
	 * Load the front end Google Fonts.
	 */
	public function print_google_fonts() {

		if ( empty( $this->gfonts_url ) ) {
			return;
		}

		$show_google_fonts = apply_filters( 'uagb_blocks_show_google_fonts', true );
		if ( ! $show_google_fonts ) {
			return;
		}

		if ( ! empty( $this->gfonts_url ) ) {
			echo '<link href="' . esc_url( $this->gfonts_url ) . '" rel="stylesheet">'; //phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet
		}
	}

	/**
	 * Generates CSS recurrsively.
	 *
	 * @param object $block The block object.
	 * @since 0.0.1
	 */
	public function get_block_css_and_js( $block ) {

		$block = (array) $block;

		$name     = $block['blockName'];
		$css      = array();
		$js       = '';
		$block_id = '';

		if ( ! isset( $name ) ) {
			return array(
				'css' => array(),
				'js'  => '',
			);
		}

		if ( isset( $block['attrs'] ) && is_array( $block['attrs'] ) ) {
			/**
			 * Filters the block attributes for CSS and JS generation.
			 *
			 * @param array  $block_attributes The block attributes to be filtered.
			 * @param string $name             The block name.
			 */
			$blockattr = apply_filters( 'uagb_block_attributes_for_css_and_js', $block['attrs'], $name );
			if ( isset( $blockattr['block_id'] ) ) {
				$block_id = $blockattr['block_id'];
			}
		}

		$this->current_block_list[] = $name;

		if ( 'core/gallery' === $name && isset( $block['attrs']['masonry'] ) && true === $block['attrs']['masonry'] ) {
			$this->current_block_list[] = 'uagb/masonry-gallery';
			$this->uag_flag             = true;
			$css                       += UAGB_Block_Helper::get_gallery_css( $blockattr, $block_id );
		}

		// If UAGAnimationType is set and is not equal to none, explicitly load the extension (and it's assets) on frontend.
		// Also check if animations extension is enabled.
		if (
			'enabled' === \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_animations_extension', 'enabled' ) &&
			! empty( $block['attrs']['UAGAnimationType'] )
		) {
			$this->current_block_list[] = 'uagb/animations-extension';
		}

		if ( strpos( $name, 'uagb/' ) !== false ) {
			$this->uag_flag = true;
		}

		// Add static css here.
		$blocks = UAGB_Block_Module::get_blocks_info();

		$block_css_file_name = isset( $blocks[ $name ]['static_css'] ) ? $blocks[ $name ]['static_css'] : str_replace( 'uagb/', '', $name );

		if ( 'enabled' === $this->file_generation && ! in_array( $block_css_file_name, $this->static_css_blocks, true ) ) {
			$common_css = array(
				'common' => $this->get_block_static_css( $block_css_file_name ),
			);
			$css       += $common_css;
		}

		if ( strpos( $name, 'uagb/' ) !== false ) {
			$_block_slug = str_replace( 'uagb/', '', $name );

			$blockattr = isset( $blockattr ) && is_array( $blockattr ) ? $blockattr : array();

			$_block_css = UAGB_Block_Module::get_frontend_css( $_block_slug, $blockattr, $block_id );
			$_block_js  = UAGB_Block_Module::get_frontend_js( $_block_slug, $blockattr, $block_id, 'js' );
			$css        = $this->merge_array_string_values( $css, $_block_css );
			if ( ! empty( $_block_js ) ) {
				$js .= $_block_js;
			}

			if ( 'uagb/faq' === $name && ! isset( $blockattr['layout'] ) ) {
				$this->uag_faq_layout = true;
			}
		}

		if ( isset( $block['innerBlocks'] ) ) {
			foreach ( $block['innerBlocks'] as $j => $inner_block ) {
				if ( 'core/block' === $inner_block['blockName'] ) {
					$id            = ( isset( $inner_block['attrs']['ref'] ) ) ? $inner_block['attrs']['ref'] : 0;
					$is_block_seen = in_array( $id, self::$seen_refs, true );
					if ( $id && ! $is_block_seen ) {
						self::$seen_refs[] = $id;
						$assets            = $this->get_assets_using_post_content( $id );
						if ( function_exists( 'wp_is_block_theme' ) && wp_is_block_theme() ) {
							$reuse_block_css             = array(
								'desktop' => '',
								'tablet'  => '',
								'mobile'  => '',
							);
							$reuse_block_css['desktop'] .= $assets['css'];
							$css                         = $this->merge_array_string_values( $css, $reuse_block_css );
							$js                         .= $assets['js'];
						} else {
							$this->stylesheet .= $assets['css'];
							$this->script     .= $assets['js'];
						}
					}
				} elseif ( 'core/template-part' === $inner_block['blockName'] ) {
					$id            = $this->get_fse_template_part( $inner_block );
					$is_block_seen = in_array( $id, self::$seen_refs, true );
					if ( $id && ! $is_block_seen ) {
						self::$seen_refs[] = $id;
						$assets            = $this->get_assets_using_post_content( $id );
						$this->stylesheet .= $assets['css'];
						$this->script     .= $assets['js'];
					}
				} else {
					// Get CSS for the Block.
					$inner_assets    = $this->get_block_css_and_js( $inner_block );
					$inner_block_css = $inner_assets['css'];

					$css_desktop = ( isset( $css['desktop'] ) ? $css['desktop'] : '' );
					$css_tablet  = ( isset( $css['tablet'] ) ? $css['tablet'] : '' );
					$css_mobile  = ( isset( $css['mobile'] ) ? $css['mobile'] : '' );

					if ( 'enabled' === $this->file_generation ) { // Get common CSS for the block when file generation is enabled.
						$css_common = ( isset( $css['common'] ) ? $css['common'] : '' );
						if ( isset( $inner_block_css['common'] ) ) {
							$css['common'] = $css_common . $inner_block_css['common'];
						}
					}

					if ( isset( $inner_block_css['desktop'] ) ) {
						$css['desktop'] = $css_desktop . $inner_block_css['desktop'];
						$css['tablet']  = $css_tablet . $inner_block_css['tablet'];
						$css['mobile']  = $css_mobile . $inner_block_css['mobile'];
					}

					$js .= $inner_assets['js'];
				}
			}
		}

		$this->current_block_list = array_unique( $this->current_block_list );

		return array(
			'css' => $css,
			'js'  => $js,
		);

	}

	/**
	 * Generates stylesheet and appends in head tag.
	 *
	 * @since 0.0.1
	 */
	public function generate_assets() {

		/* Finalize prepared assets and store in static variable */
		global $content_width;

		$this->stylesheet = str_replace( '#CONTENT_WIDTH#', $content_width . 'px', $this->stylesheet );

		if ( '' !== $this->script ) {
			$this->script = 'document.addEventListener("DOMContentLoaded", function(){ ' . $this->script . ' });';
		}

		/* Update page assets */
		$this->update_page_assets();
	}

	/**
	 * Get SureCart Template Part Content.
	 * 
	 * @param string $id Template part ID.
	 * @param string $template_part_name Name of the template part.
	 * @return string Return the template part content.
	 * @since 2.19.5
	 */
	public function get_surecart_template_part_content( $id, $template_part_name ) {
		if ( 'cart' === $template_part_name ) {
			$template_part_id = 'surecart/surecart//cart';
			$template         = get_block_template( $template_part_id, 'wp_template_part' );
			return ( isset( $template->content ) && is_string( $template->content ) ) ? $template->content : '';
		}

		if ( 'upsell' === $template_part_name ) {
			$upsell_data = get_query_var( 'surecart_current_upsell' );
			
			if ( is_object( $upsell_data ) && isset( $upsell_data->metadata->wp_template_part_id ) ) {
				$template_part_id = $upsell_data->metadata->wp_template_part_id;
				$template         = get_block_template( $template_part_id, 'wp_template_part' );
				return ( isset( $template->content ) && is_string( $template->content ) ) ? $template->content : '';
			} else {
				return '';
			}
		}

		// Available SureCart functions to get the template part id.
		$surecart_functions = array(
			'single_product'     => 'sc_get_product',
			'product_collection' => 'sc_get_collection',
		);

		if ( ! isset( $surecart_functions[ $template_part_name ] ) || ! function_exists( $surecart_functions[ $template_part_name ] ) ) {
			return '';
		}

		$template_data = call_user_func( $surecart_functions[ $template_part_name ], $id );

		if ( 'single_product' === $template_part_name ) {
			if ( ! is_object( $template_data ) || empty( $template_data->template_part_id ) ) {
				return '';
			}
			$template_part_id = $template_data->template_part_id;
		} elseif ( 'product_collection' === $template_part_name ) {
			if ( ! is_object( $template_data ) || empty( $template_data->template_part->id ) ) {
				return '';
			}
			$template_part_id = $template_data->template_part->id;
		} else {
			return '';
		}

		$template = get_block_template( $template_part_id, 'wp_template_part' );
		
		return ( isset( $template->content ) && is_string( $template->content ) ) ? $template->content : '';
	}

	/**
	 * Generates stylesheet in loop.
	 *
	 * @param object $this_post Current Post Object.
	 * @since 1.7.0
	 */
	public function prepare_assets( $this_post ) {

		if ( empty( $this_post ) || empty( $this_post->ID ) ) {
			return;
		}

		$surecart_template_parts = array( 'single_product', 'product_collection', 'cart', 'upsell' );

		foreach ( $surecart_template_parts as $template_part_name ) {
			$template_part_content = $this->get_surecart_template_part_content( $this_post->ID, $template_part_name );
	
			if ( ! empty( $template_part_content ) && has_blocks( $template_part_content ) && isset( $this_post->post_content ) ) {
				$template_contents[] = $template_part_content;
			}
		}

		if ( ! empty( $template_contents ) && isset( $this_post->post_content ) ) {
			$this_post->post_content .= implode( '', $template_contents );
		}

		if ( $this_post instanceof WP_Post && ( has_blocks( $this_post->ID ) || has_blocks( $this_post ) ) ) {
			$this->common_function_for_assets_preparation( $this_post->post_content );
		}
	}

	/**
	 * Common function to generate stylesheet.
	 *
	 * @param string $post_content Current Post Object.
	 * @since 2.0.0
	 */
	public function common_function_for_assets_preparation( $post_content ) {

		$blocks = $this->parse_blocks( $post_content );

		$this->page_blocks = $blocks;

		$enable_on_page_css_button = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_on_page_css_button', 'yes' );

		if ( 'yes' === $enable_on_page_css_button ) {
			$custom_css = get_post_meta( $this->post_id, '_uag_custom_page_level_css', true );

			$custom_css = ! empty( $custom_css ) && is_string( $custom_css ) ? $custom_css : '';

			if ( ! empty( $custom_css ) && ! self::$custom_css_appended ) {
				$this->stylesheet         .= UAGB_Admin_Helper::sanitize_inline_css( $custom_css );
				self::$custom_css_appended = true;
			}
		}

		if ( ! is_array( $blocks ) || empty( $blocks ) ) {
			return;
		}

		$assets = $this->get_blocks_assets( $blocks );


		if ( 'enabled' === $this->file_generation && isset( $assets['css'] ) && ! self::$common_assets_added ) {

			$common_static_css_all_blocks = $this->get_block_static_css( 'extensions' );
			$assets['css']                = $assets['css'] . $common_static_css_all_blocks;
			self::$common_assets_added    = true;
		}

		$this->stylesheet .= $assets['css'];
		$this->script     .= $assets['js'];

		// Check if self::$seen_refs is not empty before iterating.
		if ( ! empty( self::$seen_refs ) ) {
			foreach ( self::$seen_refs as $ref_id ) {
				// Retrieve the CSS and JS assets for the given post content reference ID.
				$assets = $this->get_assets_using_post_content( $ref_id );

				// Append the retrieved CSS and JS to the existing stylesheet and script properties.
				$this->stylesheet .= $assets['css'];
				$this->script     .= $assets['js'];
			}
		}

		// Update fonts.
		$this->gfonts = array_merge( $this->gfonts, UAGB_Helper::$gfonts );
	}

	/**
	 * Parse Guten Block.
	 *
	 * @param string $content the content string.
	 * @since 1.1.0
	 */
	public function parse_blocks( $content ) {

		global $wp_version;

		return ( version_compare( $wp_version, '5', '>=' ) ) ? parse_blocks( $content ) : gutenberg_parse_blocks( $content );
	}

	/**
	 * Generates ids for all wp template part.
	 *
	 * @param array $block the content array.
	 * @since 2.4.1
	 */
	public function get_fse_template_part( $block ) {
		if ( empty( $block['attrs']['slug'] ) ) {
			return;
		}

		$slug            = $block['attrs']['slug'];
		$templates_parts = get_block_templates( array( 'slug__in' => array( $slug ) ), 'wp_template_part' );
		foreach ( $templates_parts as $templates_part ) {
			if ( $slug === $templates_part->slug ) {
				$id = $templates_part->wp_id;
				return $id;
			}
		}
	}

	/**
	 * Generates parse content for all blocks including reusable blocks.
	 *
	 * @param int $id of blocks.
	 * @since 2.4.1
	 */
	public function get_assets_using_post_content( $id ) {

		$content = get_post_field( 'post_content', $id );

		$reusable_blocks = $this->parse_blocks( $content );

		$assets = $this->get_blocks_assets( $reusable_blocks );

		return $assets;
	}

	/**
	 * Generates assets for all blocks including reusable blocks.
	 *
	 * @param array $blocks Blocks array.
	 * @since 1.1.0
	 */
	public function get_blocks_assets( $blocks ) {
		$static_and_dynamic_assets = $this->get_static_and_dynamic_assets( $blocks );
		return array(
			'css' => $static_and_dynamic_assets['static'] . $static_and_dynamic_assets['dynamic'],
			'js'  => $static_and_dynamic_assets['js'],
		);
	}

	/**
	 * Get static & dynamic css for block.
	 *
	 * @param array $blocks Blocks array.
	 * @since 2.12.3
	 * @return array Of static and dynamic css and js.
	 */
	public function get_static_and_dynamic_assets( $blocks ) {
		$desktop    = '';
		$tablet     = '';
		$mobile     = '';
		$static_css = '';

		$tab_styling_css = '';
		$mob_styling_css = '';
		$block_css       = '';
		$js              = '';

		foreach ( $blocks as $i => $block ) {

			if ( is_array( $block ) ) {

				if ( empty( $block['blockName'] ) || ! isset( $block['attrs'] ) ) {
					continue;
				}

				if ( 'core/block' === $block['blockName'] ) {
					$id            = ( isset( $block['attrs']['ref'] ) ) ? $block['attrs']['ref'] : 0;
					$is_block_seen = in_array( $id, self::$seen_refs, true );

					if ( $id && ! $is_block_seen ) {
						self::$seen_refs[] = $id;
						$assets            = $this->get_assets_using_post_content( $id );
						$this->stylesheet .= $assets['css'];
						$this->script     .= $assets['js'];
					}
				} elseif ( 'core/template-part' === $block['blockName'] ) {
					$id            = $this->get_fse_template_part( $block );
					$is_block_seen = in_array( $id, self::$seen_refs, true );
					if ( $id && ! $is_block_seen ) {
						self::$seen_refs[] = $id;
						$assets            = $this->get_assets_using_post_content( $id );
						$block_css        .= $assets['css'];
						$js               .= $assets['js'];
					}
				} elseif ( 'core/pattern' === $block['blockName'] ) {
					$get_assets = $this->get_core_pattern_assets( $block );

					if ( ! empty( $get_assets['css'] ) ) {
						$block_css .= $get_assets['css'];
						$js        .= $get_assets['js'];
					}
				} else {
					// Add your block specif css here.
					$block_assets = $this->get_block_css_and_js( $block );
					// Get CSS for the Block.
					$css = $block_assets['css'];

					if ( ! empty( $css['common'] ) ) {
						$static_css .= $css['common'];
					}

					if ( isset( $css['desktop'] ) ) {
						$desktop .= $css['desktop'];
						$tablet  .= $css['tablet'];
						$mobile  .= $css['mobile'];
					}
					$js .= $block_assets['js'];
				}
			}
		}

		if ( ! empty( $tablet ) ) {
			$tab_styling_css .= '@media only screen and (max-width: ' . UAGB_TABLET_BREAKPOINT . 'px) {';
			$tab_styling_css .= $tablet;
			$tab_styling_css .= '}';
		}

		if ( ! empty( $mobile ) ) {
			$mob_styling_css .= '@media only screen and (max-width: ' . UAGB_MOBILE_BREAKPOINT . 'px) {';
			$mob_styling_css .= $mobile;
			$mob_styling_css .= '}';
		}
		return array(
			'static'  => $static_css,
			'dynamic' => $block_css . $desktop . $tab_styling_css . $mob_styling_css,
			'js'      => $js,
		);
	}

	/**
	 * Creates a new file for Dynamic CSS/JS.
	 *
	 * @param  string $file_data The data that needs to be copied into the created file.
	 * @param  string $type Type of file - CSS/JS.
	 * @param  string $file_state Wether File is new or old.
	 * @param  string $old_file_name Old file name timestamp.
	 * @since 1.15.0
	 * @return boolean true/false
	 */
	public function create_file( $file_data, $type, $file_state = 'new', $old_file_name = '' ) {

		$uploads_dir = UAGB_Helper::get_upload_dir();
		$file_system = uagb_filesystem();

		// Example 'uag-css-15.css'.
		$file_name = 'uag-' . $type . '-' . $this->post_id . '.' . $type;

		if ( 'old' === $file_state ) {
			$file_name = $old_file_name;
		}

		$folder_name    = UAGB_Scripts_Utils::get_asset_folder_name( $this->post_id );
		$base_file_path = $uploads_dir['path'] . 'assets/' . $folder_name . '/';
		$file_path      = $uploads_dir['path'] . 'assets/' . $folder_name . '/' . $file_name;

		$result = false;

		// TODO: This old_assets removal code need to be removed after 3 major releases. from v2.11.0.
		// Remove if any old file exists for same post.
		$old_assets = glob( $base_file_path . 'uag-' . $type . '-' . $this->post_id . '-*' );
		if ( ! empty( $old_assets ) && is_array( $old_assets ) ) {
			foreach ( $old_assets as $old_asset ) {
				if ( file_exists( $old_asset ) ) {
					$file_system->delete( $old_asset );
				}
			}
		}

		if ( wp_mkdir_p( $base_file_path ) ) {

			// Create a new file.
			$result = $file_system->put_contents( $file_path, $file_data, FS_CHMOD_FILE );

			if ( $result && ! $this->is_post_revision ) {
				// Update meta with current timestamp.
				update_post_meta( $this->post_id, '_uag_' . $type . '_file_name', $file_name );
			}
		}

		return $result;
	}

	/**
	 * Creates css and js files.
	 *
	 * @param  var    $file_data    Gets the CSS\JS for the current Page.
	 * @param  string $type    Gets the CSS\JS type.
	 * @param  int    $post_id Post ID.
	 * @since  1.14.0
	 */
	public function file_write( $file_data, $type = 'css', $post_id = 0 ) {

		if ( ! $this->post_id ) {
			return false;
		}

		$file_system = uagb_filesystem();

		// Get timestamp - Already saved OR new one.
		$file_name   = get_post_meta( $this->post_id, '_uag_' . $type . '_file_name', true );
		$file_name   = empty( $file_name ) ? '' : $file_name;
		$assets_info = UAGB_Scripts_Utils::get_asset_info( $type, $this->post_id );
		$file_path   = $assets_info[ $type ];

		if ( '' === $file_data ) {
			/**
			 * This is when the generated CSS/JS is blank.
			 * This means this page does not use UAG block.
			 * In this scenario we need to delete the existing file.
			 * This will ensure there are no extra files added for user.
			*/

			if ( ! empty( $file_name ) && file_exists( $file_path ) ) {
				// Delete old file.
				wp_delete_file( $file_path );
			}

			return true;
		}

		/**
		 * Timestamp present but file does not exists.
		 * This is the case where somehow the files are delete or not created in first place.
		 * Here we attempt to create them again.
		 */
		if ( ! $file_system->exists( $file_path ) && '' !== $file_name ) {

			$did_create = $this->create_file( $file_data, $type, 'old', $file_name );

			if ( $did_create ) {
				$this->assets_file_handler = array_merge( $this->assets_file_handler, $assets_info );
			}

			return $did_create;
		}

		/**
		 * Need to create new assets.
		 * No such assets present for this current page.
		 */
		if ( '' === $file_name ) {

			// Create a new file.
			$did_create = $this->create_file( $file_data, $type );

			if ( $did_create ) {
				$new_assets_info           = UAGB_Scripts_Utils::get_asset_info( $type, $this->post_id );
				$this->assets_file_handler = array_merge( $this->assets_file_handler, $new_assets_info );
			}

			return $did_create;

		}

		/**
		 * File already exists.
		 * Need to match the content.
		 * If new content is present we update the current assets.
		 */
		if ( file_exists( $file_path ) ) {

			$old_data = $file_system->get_contents( $file_path );

			if ( $old_data !== $file_data ) {

				// Delete old file.
				wp_delete_file( $file_path );

				// Create a new file.
				$did_create = $this->create_file( $file_data, $type );

				if ( $did_create ) {
					$new_assets_info           = UAGB_Scripts_Utils::get_asset_info( $type, $this->post_id );
					$this->assets_file_handler = array_merge( $this->assets_file_handler, $new_assets_info );
				}

				return $did_create;
			}
		}

		$this->assets_file_handler = array_merge( $this->assets_file_handler, $assets_info );

		return true;
	}

	/**
	 * Get Static CSS of Block.
	 *
	 * @param string $block_name Block Name.
	 *
	 * @return string Static CSS.
	 * @since 1.23.0
	 */
	public function get_block_static_css( $block_name ) {

		$css = '';

		$block_static_css_path = UAGB_DIR . 'assets/css/blocks/' . $block_name . '.css';

		if ( file_exists( $block_static_css_path ) ) {

			$file_system = uagb_filesystem();

			$css = $file_system->get_contents( $block_static_css_path );
		}

		array_push( $this->static_css_blocks, $block_name );

		return apply_filters( 'spectra_frontend_static_style', $css, $block_name );
	}

	/**
	 * Merge two arrays with string values.
	 *
	 * @param array $array1 First array.
	 * @param array $array2 Second array.
	 * @since 2.7.3
	 * @return array
	 */
	public function merge_array_string_values( $array1, $array2 ) {
		foreach ( $array1 as $key => $value ) {
			if ( isset( $array2[ $key ] ) ) {
				$array1[ $key ] = $value . $array2[ $key ];
			}
			unset( $array2[ $key ] );
		}

		return array_merge( $array1, $array2 );
	}

	/**
	 * Handle the block assets when blocks type will be core/pattern.
	 *
	 * @param array $block The block array.
	 * @since 2.9.1
	 * @return array
	 */
	public function get_core_pattern_assets( $block ) {
		if ( empty( $block['attrs']['slug'] ) ) {
			return array();
		}

		$slug = $block['attrs']['slug'];

		// Check class and function exists.
		if ( ! class_exists( 'WP_Block_Patterns_Registry' ) || ! method_exists( 'WP_Block_Patterns_Registry', 'get_instance' ) ) {
			return array();
		}

		$registry = WP_Block_Patterns_Registry::get_instance();

		// Check is_registered method exists.
		if ( ! method_exists( $registry, 'is_registered' ) || ! method_exists( $registry, 'get_registered' ) || ! $registry->is_registered( $slug ) ) {
			return array();
		}

		$pattern = $registry->get_registered( $slug );

		return $this->get_blocks_assets( parse_blocks( $pattern['content'] ) );
	}

	/**
	 * Get static and dynamic assets data for a post. Its a helper function used by starter templates and GT library.
	 *
	 * @param int $post_id The post id.
	 * @since 2.12.3
	 * @return array of Static and dynamic css and js.
	 */
	public function get_static_and_dynamic_css( $post_id ) {

		$this_post = get_post( $post_id );

		if ( empty( $this_post ) || empty( $this_post->ID ) ) {
			return array();
		}

		if ( has_blocks( $this_post->ID ) && ! empty( $this_post->post_content ) ) {

			$blocks = $this->parse_blocks( $this_post->post_content );

			if ( ! is_array( $blocks ) || empty( $blocks ) ) {
				return array();
			}

			return $this->get_static_and_dynamic_assets( $blocks );
		}

		return array();

	}

}
PK��][���Ѳ@�@=ultimate-addons-for-gutenberg/classes/class-uagb-rest-api.phpnu�[���<?php
/**
 * UAGB Rest API.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

if ( ! class_exists( 'UAGB_Rest_API' ) ) {

	/**
	 * Class UAGB_Rest_API.
	 */
	final class UAGB_Rest_API {

		/**
		 * Member Variable
		 *
		 * @var instance
		 */
		private static $instance;

		/**
		 *  Initiator
		 */
		public static function get_instance() {
			if ( ! isset( self::$instance ) ) {
				self::$instance = new self();
			}
			return self::$instance;
		}

		/**
		 * Constructor
		 */
		public function __construct() {

			// Activation hook.
			add_action( 'rest_api_init', array( $this, 'blocks_register_rest_fields' ) );
			add_action( 'init', array( $this, 'register_rest_orderby_fields' ) );
			add_filter( 'register_post_type_args', array( $this, 'add_cpts_to_api' ), 10, 2 );

			// We have added this action here to support both the ways of post updations, Rest API & Normal.
			add_action( 'save_post', array( 'UAGB_Helper', 'delete_page_assets' ), 10, 1 );
			// Adding this action to delete post assets if the post is moved to trash.
			add_action( 'wp_trash_post', array( $this, 'delete_page_assets_on_trash' ) );
			global $wp_customize;
			if ( $wp_customize ) { // Check whether the $wp_customize is set.
				add_filter( 'render_block_data', array( $this, 'content_pre_render' ) ); // Add a inline style for block when it rendered in customizer.
				add_action( 'customize_save', array( $this, 'after_widget_save_action' ) ); // Update the assets on customizer save/publish.
			} else {
				add_action( 'rest_after_save_widget', array( $this, 'after_widget_save_action' ) ); // Update the assets on widget save.
			}

		}

		/**
		 * Function to delete post assets.
		 *
		 * @param int $post_id post_id of deleted post.
		 * @since 2.13.1
		 * @return void 
		 */
		public function delete_page_assets_on_trash( $post_id ) {
			
				$css_asset_info = UAGB_Scripts_Utils::get_asset_info( 'css', $post_id );
				$js_asset_info  = UAGB_Scripts_Utils::get_asset_info( 'js', $post_id );

				$css_file_path = $css_asset_info['css'];
				$js_file_path  = $js_asset_info['js'];

			if ( file_exists( $css_file_path ) ) {
				wp_delete_file( $css_file_path );
			}
			if ( file_exists( $js_file_path ) ) {
				wp_delete_file( $js_file_path );
			}
		}

		/**
		 * Function to load assets for post/page in customizer before gutenberg rendering.
		 *
		 * @param array $block Block data.
		 *
		 * @since 2.0.13
		 *
		 * @return array New block data.
		 */
		public function content_pre_render( $block ) {
			$tab_styling_css  = '';
			$mob_styling_css  = '';
			$UAGB_Post_Assets = new UAGB_Post_Assets( get_the_ID() );

			$assets = $UAGB_Post_Assets->get_block_css_and_js( $block );

			$desktop_css = isset( $assets['css']['desktop'] ) ? $assets['css']['desktop'] : '';

			if ( ! empty( $assets['css']['tablet'] ) ) {
				$tab_styling_css .= '@media only screen and (max-width: ' . UAGB_TABLET_BREAKPOINT . 'px) {';
				$tab_styling_css .= $assets['css']['tablet'];
				$tab_styling_css .= '}';
			}

			if ( ! empty( $assets['css']['mobile'] ) ) {
				$mob_styling_css .= '@media only screen and (max-width: ' . UAGB_MOBILE_BREAKPOINT . 'px) {';
				$mob_styling_css .= $assets['css']['mobile'];
				$mob_styling_css .= '}';
			}

			$block_css_style = $desktop_css . $tab_styling_css . $mob_styling_css;

			if ( empty( $block_css_style ) || empty( $block['attrs'] ) || ! is_array( $block['attrs'] ) ) {
				return $block;
			}

			// This line of code creates a new array named $font_family_attrs by searching through the keys of an existing array.
			$font_family_attrs = preg_grep( '/fontfamily/i', array_keys( $block['attrs'] ) );
			$link_tag_list     = '';

			if ( ! empty( $font_family_attrs ) && is_array( $font_family_attrs ) ) {
				foreach ( $font_family_attrs as $attr ) {
					if ( ! empty( $block['attrs'][ $attr ] ) ) {
						// Get the font family value and construct the Google Fonts URL.
						$gfont_url = 'https://fonts.googleapis.com/css?family=' . urlencode( $block['attrs'][ $attr ] );
						// Create a link tag for the stylesheet with the constructed URL.
						$link_tag_list .= '<link rel="stylesheet" href="' . esc_url( $gfont_url ) . '" media="all">';
					}
				}
			}

				$style = '<style class="uagb-widgets-style-renderer">' . $block_css_style . '</style>';
				$style = $style . $link_tag_list;

				array_push( $block['innerContent'], $style );

			return $block;
		}

		/**
		 * This function updates the __uagb_asset_version when Widgets Editor is Updated.
		 *
		 * @since 2.0.0
		 */
		public function after_widget_save_action() {
			/* Update the asset version */
			update_option( '__uagb_asset_version', time() );
		}

		/**
		 * Create API fields for additional info
		 *
		 * @since 0.0.1
		 */
		public function blocks_register_rest_fields() {
			$post_type = UAGB_Helper::get_post_types();

			foreach ( $post_type as $key => $value ) {
				// Add featured image source.
				register_rest_field(
					$value['value'],
					'uagb_featured_image_src',
					array(
						'get_callback'    => array( $this, 'get_image_src' ),
						'update_callback' => null,
						'schema'          => null,
					)
				);

				// Add author info.
				register_rest_field(
					$value['value'],
					'uagb_author_info',
					array(
						'get_callback'    => array( $this, 'get_author_info' ),
						'update_callback' => null,
						'schema'          => null,
					)
				);

				// Add comment info.
				register_rest_field(
					$value['value'],
					'uagb_comment_info',
					array(
						'get_callback'    => array( $this, 'get_comment_info' ),
						'update_callback' => null,
						'schema'          => null,
					)
				);

				// Add excerpt info.
				register_rest_field(
					$value['value'],
					'uagb_excerpt',
					array(
						'get_callback'    => array( $this, 'get_excerpt' ),
						'update_callback' => null,
						'schema'          => null,
					)
				);

			}

			register_rest_route(
				'spectra/v1',
				'all_taxonomy',
				array(
					array(
						'methods'             => 'GET',
						'callback'            => array( $this, 'get_related_taxonomy' ),
						'permission_callback' => array( $this, 'get_items_permissions_check' ),
						'args'                => array(),
					),
				)
			);

			register_rest_route(
				'spectra/v1',
				'editor',
				array(
					array(
						'methods'             => 'GET',
						'callback'            => array( $this, 'uagb_initial_states' ),
						'permission_callback' => array( $this, 'get_items_permissions_check' ),
						'args'                => array(),
					),
				)
			);

			register_rest_route(
				'spectra/v1',
				'check-custom-fields-support',
				array(
					array(
						'methods'             => 'GET',
						'callback'            => array( $this, 'check_custom_fields_support' ),
						'permission_callback' => array( $this, 'get_items_permissions_check' ),
					),
				)
			);
		}

		/**
		 * Get Initial States.
		 *
		 * @since 2.12.0
		 * @return array
		 */
		public function uagb_initial_states() {

			$response = array_merge( 
				// For GBS initial states.
				$this->get_gbs_initial_states(),
				// For quick action sidebar.
				$this->get_quick_action_bar_initial_states()
			);

			return $response;
		}

		/**
		 * Get Quick Action Bar Initial States.
		 *
		 * @since 2.12.0
		 * @return array
		 */
		public function get_quick_action_bar_initial_states() {
			// Get value from DB for Quick Action Bar.
			$db_value                            = \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_quick_action_sidebar' );
			$show_enable                         = ( empty( $db_value ) ) ? 'enabled' : $db_value;
			$spectra_enable_quick_action_sidebar = \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_quick_action_sidebar', $show_enable );

			$spectra_default_allowed_quick_sidebar_blocks = \UAGB_Admin_Helper::get_admin_settings_option(
				'uagb_quick_sidebar_allowed_blocks',
				array()
			);

			if ( empty( $spectra_default_allowed_quick_sidebar_blocks ) ) {
				$spectra_default_allowed_quick_sidebar_blocks = array(
					'uagb/container',
					'uagb/advanced-heading',
					'uagb/image',
					'uagb/icon',
					'uagb/buttons',
					'uagb/info-box',
					'uagb/call-to-action',
				);
			}
			
			$initial_state = array(
				'uag_enable_quick_action_sidebar'   => $spectra_enable_quick_action_sidebar,
				'uagb_quick_sidebar_allowed_blocks' => $spectra_default_allowed_quick_sidebar_blocks,
			);

			return $initial_state;
		}

		/**
		 * Get GBS Initial States.
		 *
		 * @since 2.9.0
		 * @return array
		 */
		public function get_gbs_initial_states() {
			// check if GBS is enabled or not.
			if ( 'enabled' !== \UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_gbs_extension', 'enabled' ) ) {
				return array();
			}

			$spectra_global_block_styles = get_option(
				'spectra_global_block_styles',
				array(
					array(
						'value' => '',
						'label' => __( 'None', 'ultimate-addons-for-gutenberg' ),
					),
				) 
			);
			
			$spectra_gbs_google_fonts_editor = get_option(
				'spectra_gbs_google_fonts_editor',
				array()
			);


			if ( empty( $spectra_global_block_styles ) ) {
				$spectra_global_block_styles = array(
					array(
						'value' => '',
						'label' => __( 'None', 'ultimate-addons-for-gutenberg' ),
					),
				);
			}

			$initial_state = array(
				'spectra_global_block_styles'     => $spectra_global_block_styles,
				'spectra_gbs_google_fonts_editor' => $spectra_gbs_google_fonts_editor,
			);

			return $initial_state;
		}

		/**
		 * Get all taxonomies.
		 *
		 * @since 1.11.0
		 * @access public
		 */
		public function get_related_taxonomy() {

			$post_types = self::get_post_types();

			$return_array = array();

			foreach ( $post_types as $key => $value ) {
				$post_type = $value['value'];

				$taxonomies = get_object_taxonomies( $post_type, 'objects' );
				$data       = array();

				foreach ( $taxonomies as $tax_slug => $tax ) {
					if ( ! $tax->public || ! $tax->show_ui || ! $tax->show_in_rest ) {
						continue;
					}

					$data[ $tax_slug ] = $tax;

					$terms = get_terms( $tax_slug );

					$related_tax = array();

					if ( ! empty( $terms ) ) {
						foreach ( $terms as $t_index => $t_obj ) {
							$related_tax[] = array(
								'id'    => $t_obj->term_id,
								'name'  => $t_obj->name,
								'child' => get_term_children( $t_obj->term_id, $tax_slug ),
							);
						}
						$return_array[ $post_type ]['terms'][ $tax_slug ] = $related_tax;
					}
				}

				$return_array[ $post_type ]['taxonomy'] = $data;

			}

			return apply_filters( 'uagb_post_loop_taxonomies', $return_array );
		}

		/**
		 * Get Post Types.
		 *
		 * @since 1.11.0
		 * @access public
		 */
		public static function get_post_types() {

			$post_types = get_post_types(
				array(
					'public'       => true,
					'show_in_rest' => true,
				),
				'objects'
			);

			$options = array();

			foreach ( $post_types as $post_type ) {

				if ( 'attachment' === $post_type->name ) {
					continue;
				}

				$options[] = array(
					'value' => $post_type->name,
					'label' => $post_type->label,
				);
			}

			return apply_filters( 'uagb_loop_post_types', $options );
		}
		/**
		 * Check whether a given request has permission to read notes.
		 *
		 * @param  WP_REST_Request $request Full details about the request.
		 * @return WP_Error|boolean
		 */
		public function get_items_permissions_check( $request ) {

			if ( ! current_user_can( 'edit_posts' ) ) {
				return new \WP_Error( 'uag_rest_cannot_view', __( 'Sorry, you cannot list resources.', 'ultimate-addons-for-gutenberg' ), array( 'status' => rest_authorization_required_code() ) );
			}

			return true;
		}

		/**
		 * Get featured image source for the rest field as per size
		 *
		 * @param object $object Post Object.
		 * @param string $field_name Field name.
		 * @param object $request Request Object.
		 * @since 0.0.1
		 */
		public function get_image_src( $object, $field_name, $request ) {
			$image_sizes = UAGB_Helper::get_image_sizes();

			$featured_images = array();

			if ( ! isset( $object['featured_media'] ) ) {
				return $featured_images;
			}

			foreach ( $image_sizes as $key => $value ) {
				$size = $value['value'];

				$featured_images[ $size ] = wp_get_attachment_image_src(
					$object['featured_media'],
					$size,
					false
				);
			}

			return $featured_images;
		}

		/**
		 * Get author info for the rest field
		 *
		 * @param object $object Post Object.
		 * @param string $field_name Field name.
		 * @param object $request Request Object.
		 * @since 0.0.1
		 */
		public function get_author_info( $object, $field_name, $request ) {

			$author = ( isset( $object['author'] ) ) ? $object['author'] : '';

			// Get the author name.
			$author_data['display_name'] = get_the_author_meta( 'display_name', $author );

			// Get the author link.
			$author_data['author_link'] = get_author_posts_url( $author );

			// Return the author data.
			return $author_data;
		}

		/**
		 * Get comment info for the rest field
		 *
		 * @param object $object Post Object.
		 * @param string $field_name Field name.
		 * @param object $request Request Object.
		 * @since 0.0.1
		 */
		public function get_comment_info( $object, $field_name, $request ) {
			// Get the comments link.
			$comments_count = wp_count_comments( $object['id'] );
			return $comments_count->total_comments;
		}

		/**
		 * Get excerpt for the rest field
		 *
		 * @param object $object Post Object.
		 * @param string $field_name Field name.
		 * @param object $request Request Object.
		 * @since 0.0.1
		 */
		public function get_excerpt( $object, $field_name, $request ) {
			$excerpt = wp_trim_words( get_the_excerpt( $object['id'] ) );
			if ( ! $excerpt ) {
				$excerpt = null;
			}
			return $excerpt;
		}

		/**
		 * Create API Order By Fields
		 *
		 * @since 1.12.0
		 */
		public function register_rest_orderby_fields() {
			$post_type = UAGB_Helper::get_post_types();

			foreach ( $post_type as $key => $type ) {
				add_filter( "rest_{$type['value']}_collection_params", array( $this, 'add_orderby' ), 10, 1 );
			}
		}

		/**
		 * Adds Order By values to Rest API
		 *
		 * @param object $params Parameters.
		 * @since 1.12.0
		 */
		public function add_orderby( $params ) {

			$params['orderby']['enum'][] = 'rand';
			$params['orderby']['enum'][] = 'menu_order';

			return $params;
		}

		/**
		 * Adds the Contect Form 7 Custom Post Type to REST.
		 *
		 * @param array  $args Array of arguments.
		 * @param string $post_type Post Type.
		 * @since 1.10.0
		 */
		public function add_cpts_to_api( $args, $post_type ) {
			if ( 'wpcf7_contact_form' !== $post_type || ! is_admin() ) {
				return $args; // Don't change anything for other post types.
			}

			// Modify args only for wpcf7_contact_form.
			$args['show_in_rest'] = true;
			return $args;
		}

		/**
		 * Supported arguments to check if the given post type supports custom fields.
		 *
		 * @since 2.13.1
		 * @return array The array of supported arguments.
		 */
		public function check_custom_fields_support_args() {
			$args = array();

			$args['post_type'] = array(
				'type'     => 'string',
				'required' => false,
			);

			return $args;
		}

		/**
		 * Checks if the given post type supports custom fields.
		 *
		 * @param WP_REST_Request $request All the details about the request.
		 * @since 2.13.1
		 * @return WP_REST_Response The response.
		 */
		public function check_custom_fields_support( $request ) {
			$post_type = $request->get_param( 'post_type' );

			// If the post type was not passed, abandon ship.
			if ( empty( $post_type ) || ! is_string( $post_type ) ) {
				$response = new \WP_REST_Response(
					array(
						'success' => false,
					)
				);
				$response->set_status( 400 );
				return $response;
			}

			// Sanitize the post type, and check if the post type supports custom fields.
			$post_type              = sanitize_text_field( $post_type );
			$supports_custom_fields = post_type_supports( $post_type, 'custom-fields' );

			// Return the successful response, with whether or not custom fields is supported.
			$response = new \WP_REST_Response(
				array(
					'success'                => true,
					'supports_custom_fields' => $supports_custom_fields,
				)
			);
			$response->set_status( 200 );

			return $response;
		}
	}

	/**
	 *  Prepare if class 'UAGB_Rest_API' exist.
	 *  Kicking this off by calling 'get_instance()' method
	 */
	UAGB_Rest_API::get_instance();
}
PK��][7�sl����Iultimate-addons-for-gutenberg/languages/ultimate-addons-for-gutenberg.potnu�[���# Copyright (C) 2025 Brainstorm Force
# This file is distributed under the same license as the Spectra plugin.
msgid ""
msgstr ""
"Project-Id-Version: Spectra 2.19.9\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ultimate-addons-for-gutenberg\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2025-04-30T13:22:25+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: ultimate-addons-for-gutenberg\n"

#. Plugin Name of the plugin
#: admin-core/inc/admin-menu.php:349
#: admin-core/inc/admin-menu.php:350
#: admin-core/inc/admin-menu.php:361
#: admin-core/inc/admin-menu.php:371
#: admin-core/inc/admin-menu.php:385
#: admin-core/inc/admin-menu.php:396
#: admin-core/inc/admin-menu.php:503
#: classes/class-uagb-init-blocks.php:813
#: classes/class-uagb-nps-notice.php:91
msgid "Spectra"
msgstr ""

#. Plugin URI of the plugin
#. Author URI of the plugin
msgid "https://www.brainstormforce.com"
msgstr ""

#. Description of the plugin
msgid "The Spectra extends the Gutenberg functionality with several unique and feature-rich blocks that help build websites faster."
msgstr ""

#. Author of the plugin
msgid "Brainstorm Force"
msgstr ""

#: admin-core/ajax/ajax-errors.php:82
#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:224
msgid "Sorry, you are not allowed to do this operation."
msgstr ""

#: admin-core/ajax/ajax-errors.php:83
#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:237
msgid "Nonce validation failed"
msgstr ""

#: admin-core/ajax/ajax-errors.php:84
msgid "Sorry, something went wrong."
msgstr ""

#: admin-core/ajax/common-settings.php:165
#: admin-core/ajax/common-settings.php:755
#: classes/class-uagb-init-blocks.php:548
msgid "Successfully saved data!"
msgstr ""

#: admin-core/ajax/common-settings.php:181
#: classes/class-uagb-init-blocks.php:1395
msgid "No post data found!"
msgstr ""

#: admin-core/ajax/common-settings.php:217
msgid "Plugin Successfully Activated"
msgstr ""

#: admin-core/ajax/common-settings.php:849
msgid "Successfully refreshed tokens!"
msgstr ""

#: admin-core/ajax/common-settings.php:851
msgid "Failed to refresh tokens"
msgstr ""

#: admin-core/ajax/common-settings.php:988
msgid "Module not found!"
msgstr ""

#. Translators: %s is the module name.
#: admin-core/ajax/common-settings.php:1006
msgid "%s disabled!"
msgstr ""

#. Translators: %s is the module name.
#: admin-core/ajax/common-settings.php:1016
msgid "Unable to disable %s"
msgstr ""

#. Translators: %s is the module name.
#: admin-core/ajax/common-settings.php:1028
msgid "%s enabled!"
msgstr ""

#. Translators: %s is the module name.
#: admin-core/ajax/common-settings.php:1038
msgid "Unable to enable %s"
msgstr ""

#: admin-core/ajax/common-settings.php:1046
msgid "Unable to save setting."
msgstr ""

#: admin-core/ajax/common-settings.php:1065
msgid "Unable to verify authenticity."
msgstr ""

#: admin-core/api/common-settings.php:98
#: classes/class-uagb-rest-api.php:435
msgid "Sorry, you cannot list resources."
msgstr ""

#: admin-core/inc/admin-menu.php:109
msgid "Astra"
msgstr ""

#: admin-core/inc/admin-menu.php:110
msgid "Fast and customizable theme for your website."
msgstr ""

#: admin-core/inc/admin-menu.php:122
msgid "Starter Templates"
msgstr ""

#: admin-core/inc/admin-menu.php:123
msgid "Launch websites with AI or ready-made templates."
msgstr ""

#: admin-core/inc/admin-menu.php:135
msgid "SureCart"
msgstr ""

#: admin-core/inc/admin-menu.php:136
msgid "Sell your products easily on WordPress."
msgstr ""

#: admin-core/inc/admin-menu.php:148
msgid "Presto Player"
msgstr ""

#: admin-core/inc/admin-menu.php:149
msgid "Display seamless & interactive videos."
msgstr ""

#: admin-core/inc/admin-menu.php:188
msgid "Plugin activation is disabled for you on this site."
msgstr ""

#: admin-core/inc/admin-menu.php:204
msgid "Plugin Activated."
msgstr ""

#: admin-core/inc/admin-menu.php:215
msgid "Theme activation is disabled for you on this site."
msgstr ""

#: admin-core/inc/admin-menu.php:229
msgid "Theme Activated."
msgstr ""

#: admin-core/inc/admin-menu.php:237
msgid "Could not activate plugin. Please activate from the Plugins page."
msgstr ""

#: admin-core/inc/admin-menu.php:239
msgid "Could not activate theme. Please activate from the Themes page."
msgstr ""

#: admin-core/inc/admin-menu.php:303
#: admin-core/inc/admin-menu.php:397
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
msgid "Settings"
msgstr ""

#: admin-core/inc/admin-menu.php:304
#: admin-core/assets/build/dashboard-app.js:5
#: admin-core/assets/build/dashboard-app.js:7
msgid "Rollback"
msgstr ""

#: admin-core/inc/admin-menu.php:309
#: admin-core/inc/admin-menu.php:408
msgid "Get Spectra Pro"
msgstr ""

#: admin-core/inc/admin-menu.php:362
#: admin-core/assets/build/dashboard-app.js:3
msgid "Dashboard"
msgstr ""

#: admin-core/inc/admin-menu.php:372
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
msgid "Blocks"
msgstr ""

#: admin-core/inc/admin-menu.php:386
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
msgid "AI Features"
msgstr ""

#: admin-core/inc/admin-menu.php:407
#: admin-core/assets/build/dashboard-app.js:3
msgid "Free vs Pro"
msgstr ""

#: admin-core/inc/admin-menu.php:443
msgid "Free vs Pro Features"
msgstr ""

#: admin-core/inc/admin-menu.php:444
msgid "Here you can compare the features of Free and Pro versions."
msgstr ""

#: admin-core/inc/admin-menu.php:528
msgid "Installing"
msgstr ""

#: admin-core/inc/admin-menu.php:529
#: admin-core/assets/build/dashboard-app.js:3
msgid "Installed"
msgstr ""

#: admin-core/inc/admin-menu.php:530
msgid "Activating"
msgstr ""

#: admin-core/inc/admin-menu.php:531
#: admin-core/assets/build/dashboard-app.js:3
msgid "Activated"
msgstr ""

#: admin-core/inc/admin-menu.php:532
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:12
msgid "Activate"
msgstr ""

#: blocks-config/faq/class-uagb-faq.php:1122
#: blocks-config/faq/class-uagb-faq.php:1153
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "What is FAQ?"
msgstr ""

#: blocks-config/faq/class-uagb-faq.php:1126
#: blocks-config/faq/class-uagb-faq.php:1157
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat."
msgstr ""

#: blocks-config/forms/class-uagb-forms.php:320
#: blocks-config/forms/class-uagb-forms.php:336
msgid "Please try logging in again to verify that you are not a robot."
msgstr ""

#: blocks-config/forms/class-uagb-forms.php:429
#: includes/blocks/forms/attributes.php:70
#: includes/blocks/forms/frontend.js.php:46
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Form Submission"
msgstr ""

#: blocks-config/google-map/class-uagb-google-map.php:194
#: dist/blocks.js:19
msgid "Google Map for "
msgstr ""

#: blocks-config/image-gallery/class-spectra-image-gallery.php:246
#: includes/blocks/image-gallery/attributes.php:74
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "No Caption"
msgstr ""

#: blocks-config/image-gallery/class-spectra-image-gallery.php:477
#: includes/blocks/image-gallery/attributes.php:136
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Load More Images"
msgstr ""

#: blocks-config/image-gallery/class-spectra-image-gallery.php:1429
#: dist/blocks.js:19
msgid "Unable to load image"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:91
#: blocks-config/popup-builder/class-uagb-popup-builder.php:92
#: includes/blocks/popup-builder/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
#: dist/blocks-placeholder.js:29
#: dist/blocks.js:11
msgid "Popup Builder"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:230
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Type"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:231
#: dist/blocks.js:19
msgid "Author"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:238
msgid "Enable/Disable"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:261
#: dist/blocks.js:11
msgid "Info Bar"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:264
#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Popup"
msgstr ""

#: blocks-config/popup-builder/class-uagb-popup-builder.php:267
msgid "Unset"
msgstr ""

#: blocks-config/post-timeline/class-uagb-post-timeline.php:545
#: blocks-config/post/class-uagb-post.php:624
#: blocks-config/post/class-uagb-post.php:2239
#: includes/blocks/post-carousel/attributes.php:122
#: includes/blocks/post-grid/attributes.php:113
#: includes/blocks/post-masonry/attributes.php:115
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Read More"
msgstr ""

#: blocks-config/post-timeline/class-uagb-post-timeline.php:907
msgid "No posts found"
msgstr ""

#: blocks-config/table-of-content/class-uagb-table-of-content.php:703
#: blocks-config/table-of-content/class-uagb-table-of-content.php:707
#: includes/blocks/table-of-contents/attributes.php:18
#: dist/blocks-placeholder.js:41
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Table Of Contents"
msgstr ""

#: blocks-config/table-of-content/class-uagb-table-of-content.php:991
#: includes/blocks/table-of-contents/attributes.php:19
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Add a header to begin generating the table of contents"
msgstr ""

#: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:121
#: includes/blocks/taxonomy-list/attributes.php:92
msgid "Taxonomy Not Available."
msgstr ""

#: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:552
msgid "Item"
msgstr ""

#: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:553
msgid "Items"
msgstr ""

#: blocks-config/taxonomy-list/class-uagb-taxonomy-list.php:716
#: includes/blocks/forms-select/block.php:15
#: dist/blocks.js:19
msgid "Select"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:132
msgid "42.group"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:143
msgid "500px"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:154
msgid "A"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:165
msgid "Accessible Icon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:176
msgid "Accusoft"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:192
msgid "Address Book"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:208
msgid "Address Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:219
msgid "App.net"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:230
msgid "Adversal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:241
msgid "affiliatetheme"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:252
msgid "Airbnb"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:263
msgid "Algolia"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:274
msgid "Align Center"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:285
msgid "Align Justify"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:296
msgid "Align Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:307
msgid "Align Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:318
msgid "Alipay"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:329
msgid "Amazon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:340
msgid "Amazon Pay"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:351
msgid "Amilia"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:362
msgid "Anchor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:373
msgid "Anchor Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:384
msgid "Anchor Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:395
msgid "Anchor Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:406
msgid "Anchor Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:417
#: dist/blocks.js:19
msgid "Android"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:428
msgid "AngelList"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:439
msgid "Angle Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:450
msgid "Angle Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:461
msgid "Angle Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:472
msgid "Angle Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:483
msgid "Angles Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:494
msgid "Angles Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:505
msgid "Angles Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:516
msgid "Angles Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:527
msgid "Angry Creative"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:538
msgid "Angular"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:549
msgid "Ankh"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:560
msgid "App Store"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:571
msgid "iOS App Store"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:582
msgid "Apper Systems AB"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:593
msgid "Apple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:604
msgid "Apple Pay"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:615
msgid "Apple Whole"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:626
msgid "Archway"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:637
msgid "Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:648
msgid "Arrow Down 1 9"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:659
msgid "Arrow Down 9 1"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:670
msgid "Arrow Down A Z"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:681
msgid "Arrow Down Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:692
msgid "Arrow Down Short Wide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:703
msgid "Arrow Down Up Across Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:714
msgid "Arrow Down Up Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:725
msgid "Arrow Down Wide Short"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:736
msgid "Arrow Down Z A"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:747
msgid "Arrow Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:758
msgid "Arrow Left Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:769
msgid "Arrow Pointer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:780
msgid "Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:791
msgid "Arrow Right Arrow Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:802
msgid "Arrow Right From Bracket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:813
msgid "Arrow Right Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:824
msgid "Arrow Right To Bracket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:835
msgid "Arrow Right To City"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:846
msgid "Arrow Rotate Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:857
msgid "Arrow Rotate Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:868
msgid "Arrow Trend Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:879
msgid "Arrow Trend Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:890
msgid "Arrow Turn Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:901
msgid "Arrow Turn Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:912
msgid "Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:923
msgid "Arrow Up 1 9"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:934
msgid "Arrow Up 9 1"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:945
msgid "Arrow Up A Z"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:956
msgid "Arrow Up From Bracket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:967
msgid "Arrow Up From Ground Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:978
msgid "Arrow Up From Water Pump"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:989
msgid "Arrow Up Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1000
msgid "Arrow Up Right Dots"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1011
msgid "Arrow Up Right From Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1022
msgid "Arrow Up Short Wide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1033
msgid "Arrow Up Wide Short"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1044
msgid "Arrow Up Z A"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1055
msgid "Arrows Down To Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1066
msgid "Arrows Down To People"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1077
msgid "Arrows Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1088
msgid "Arrows Left Right To Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1099
msgid "Arrows Rotate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1110
msgid "Arrows Spin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1121
msgid "Arrows Split Up And Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1132
msgid "Arrows To Circle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1143
msgid "Arrows To Dot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1154
msgid "Arrows To Eye"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1165
msgid "Arrows Turn Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1176
msgid "Arrows Turn To Dots"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1187
msgid "Arrows Up Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1198
msgid "Arrows Up Down Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1209
msgid "Arrows Up To Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1220
msgid "Artstation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1231
msgid "Asterisk"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1242
msgid "Asymmetrik, Ltd."
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1253
msgid "At"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1264
msgid "Atlassian"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1275
msgid "Atom"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1286
msgid "Audible"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1297
msgid "Audio Description"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1308
msgid "Austral Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1319
msgid "Autoprefixer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1330
msgid "avianex"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1341
msgid "Aviato"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1352
msgid "Award"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1363
msgid "Amazon Web Services (AWS)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1374
msgid "B"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1385
msgid "Baby"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1396
msgid "Baby Carriage"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1407
msgid "Backward"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1418
msgid "Backward Fast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1429
msgid "Backward Step"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1440
msgid "Bacon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1451
msgid "Bacteria"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1462
msgid "Bacterium"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1473
msgid "Bag Shopping"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1484
msgid "Bahai"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1495
msgid "Baht Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1506
msgid "Ban"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1517
msgid "Ban Smoking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1528
msgid "Bandage"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1539
msgid "Bandcamp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1550
msgid "Barcode"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1561
msgid "Bars"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1572
msgid "Bars Progress"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1583
msgid "Bars Staggered"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1594
msgid "Baseball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1605
msgid "Baseball Bat Ball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1616
msgid "Basket Shopping"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1627
msgid "Basketball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1638
msgid "Bath"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1649
msgid "Battery Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1660
msgid "Battery Full"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1671
msgid "Battery Half"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1682
msgid "Battery Quarter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1693
msgid "Battery Three Quarters"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1704
msgid "Battle.net"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1715
msgid "Bed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1726
msgid "Bed Pulse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1737
msgid "Beer Mug Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1748
msgid "Behance"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1759
msgid "Behance Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1775
msgid "Bell"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1786
msgid "Bell Concierge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1802
msgid "Bell Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1813
msgid "Bezier Curve"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1824
msgid "Bicycle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1835
msgid "Bilibili"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1846
msgid "BIMobject"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1857
msgid "Binoculars"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1868
msgid "Biohazard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1879
msgid "Bitbucket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1890
msgid "Bitcoin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1901
msgid "Bitcoin Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1912
msgid "Bity"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1923
msgid "Font Awesome Black Tie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1934
msgid "BlackBerry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1945
msgid "Blender"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1956
msgid "Blender Phone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1967
msgid "Blog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1978
#: dist/blocks.js:19
msgid "Blogger"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:1989
msgid "Blogger B"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2000
#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2011
msgid "Bluetooth"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2022
msgid "Bold"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2033
msgid "Bolt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2044
msgid "Bolt Lightning"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2055
msgid "Bomb"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2066
msgid "Bone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2077
msgid "Bong"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2088
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Book"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2099
msgid "Book Atlas"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2110
msgid "Book Bible"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2121
msgid "Book Bookmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2132
msgid "Book Journal Whills"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2143
msgid "Book Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2154
msgid "Book Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2165
msgid "Book Open Reader"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2176
msgid "Book Quran"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2187
msgid "Book Skull"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2203
msgid "Bookmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2214
msgid "Bootstrap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2225
msgid "Border All"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2236
msgid "Border None"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2247
msgid "Border Top Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2258
msgid "Bore Hole"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2269
msgid "Bots"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2280
msgid "Bottle Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2291
msgid "Bottle Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2302
msgid "Bowl Food"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2313
msgid "Bowl Rice"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2324
msgid "Bowling Ball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2335
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Box"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2346
msgid "Box Archive"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2357
msgid "Box Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2368
msgid "Box Tissue"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2379
msgid "Boxes Packing"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2390
msgid "Boxes Stacked"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2401
msgid "Braille"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2412
msgid "Brain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2423
msgid "Brazilian Real Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2434
msgid "Bread Slice"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2445
msgid "Bridge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2456
msgid "Bridge Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2467
msgid "Bridge Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2478
msgid "Bridge Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2489
msgid "Bridge Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2500
msgid "Bridge Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2511
msgid "Briefcase"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2522
msgid "Briefcase Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2533
msgid "Broom"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2544
msgid "Broom Ball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2555
msgid "Brush"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2566
msgid "BTC"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2577
msgid "Bucket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2588
#: dist/blocks.js:19
msgid "Buffer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2599
msgid "Bug"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2610
msgid "Bug Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2621
msgid "Bugs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2637
msgid "Building"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2648
msgid "Building Circle Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2659
msgid "Building Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2670
msgid "Building Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2681
msgid "Building Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2692
msgid "Building Columns"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2703
msgid "Building Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2714
msgid "Building Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2725
msgid "Building Ngo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2736
msgid "Building Shield"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2747
msgid "Building Un"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2758
msgid "Building User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2769
msgid "Building Wheat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2780
msgid "Bullhorn"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2791
msgid "Bullseye"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2802
msgid "Burger"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2813
msgid "Büromöbel-Experte GmbH & Co. KG."
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2824
msgid "Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2835
msgid "Bus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2846
msgid "Bus Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2857
msgid "Business Time"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2868
msgid "Buy n Large"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2879
msgid "BuySellAds"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2890
msgid "C"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2901
msgid "Cake Candles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2912
msgid "Calculator"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2928
msgid "Calendar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2944
msgid "Calendar Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2955
msgid "Calendar Day"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2971
msgid "Calendar Days"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:2987
msgid "Calendar Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3003
msgid "Calendar Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3014
msgid "Calendar Week"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3030
msgid "Calendar Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3041
msgid "Camera"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3052
msgid "Camera Retro"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3063
msgid "Camera Rotate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3074
msgid "Campground"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3085
msgid "Canadian Maple Leaf"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3096
msgid "Candy Cane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3107
msgid "Cannabis"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3118
msgid "Capsules"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3129
msgid "Car"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3140
msgid "Car Battery"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3151
msgid "Car Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3162
msgid "Car On"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3173
msgid "Car Rear"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3184
msgid "Car Side"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3195
msgid "Car Tunnel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3206
msgid "Caravan"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3217
msgid "Caret Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3228
msgid "Caret Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3239
msgid "Caret Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3250
msgid "Caret Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3261
msgid "Carrot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3272
msgid "Cart Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3283
msgid "Cart Flatbed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3294
msgid "Cart Flatbed Suitcase"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3305
msgid "Cart Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3316
msgid "Cart Shopping"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3327
msgid "Cash Register"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3338
msgid "Cat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3349
msgid "Amazon Pay Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3360
msgid "American Express Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3371
msgid "Apple Pay Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3382
msgid "Diner's Club Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3393
msgid "Discover Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3404
msgid "JCB Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3415
msgid "MasterCard Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3426
msgid "Paypal Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3437
msgid "Stripe Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3448
msgid "Visa Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3459
msgid "Cedi Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3470
msgid "Cent Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3481
msgid "Centercode"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3492
msgid "Centos"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3503
msgid "Certificate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3514
msgid "Chair"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3525
msgid "Chalkboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3536
msgid "Chalkboard User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3547
msgid "Champagne Glasses"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3558
msgid "Charging Station"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3569
msgid "Chart Area"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3585
msgid "Chart Bar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3596
msgid "Chart Column"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3607
msgid "Chart Gantt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3618
msgid "Chart Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3629
msgid "Chart Pie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3640
msgid "Chart Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3651
msgid "Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3662
msgid "Check Double"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3673
msgid "Check To Slot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3684
msgid "Cheese"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3695
msgid "Chess"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3711
msgid "Chess Bishop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3722
msgid "Chess Board"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3738
msgid "Chess King"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3754
msgid "Chess Knight"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3770
msgid "Chess Pawn"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3786
msgid "Chess Queen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3802
msgid "Chess Rook"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3813
msgid "Chevron Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3824
msgid "Chevron Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3835
msgid "Chevron Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3846
msgid "Chevron Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3857
msgid "Child"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3868
msgid "Child Dress"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3879
msgid "Child Reaching"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3890
msgid "Child Rifle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3901
msgid "Children"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3912
msgid "Chrome"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3923
msgid "Chromecast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3934
msgid "Church"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3950
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Circle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3961
msgid "Circle Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3972
msgid "Circle Arrow Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3983
msgid "Circle Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:3994
msgid "Circle Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4010
msgid "Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4021
msgid "Circle Chevron Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4032
msgid "Circle Chevron Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4043
msgid "Circle Chevron Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4054
msgid "Circle Chevron Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4065
msgid "Circle Dollar To Slot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4081
msgid "Circle Dot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4097
msgid "Circle Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4108
msgid "Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4119
msgid "Circle H"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4130
msgid "Circle Half Stroke"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4141
msgid "Circle Info"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4157
msgid "Circle Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4168
msgid "Circle Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4179
msgid "Circle Nodes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4190
msgid "Circle Notch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4206
msgid "Circle Pause"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4222
msgid "Circle Play"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4233
msgid "Circle Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4249
msgid "Circle Question"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4260
msgid "Circle Radiation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4276
msgid "Circle Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4292
msgid "Circle Stop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4308
msgid "Circle Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4324
msgid "Circle User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4340
msgid "Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4351
msgid "City"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4362
msgid "Clapperboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4378
msgid "Clipboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4389
msgid "Clipboard Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4400
msgid "Clipboard List"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4411
msgid "Clipboard Question"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4422
msgid "Clipboard User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4438
msgid "Clock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4449
msgid "Clock Rotate Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4465
msgid "Clone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4481
msgid "Closed Captioning"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4492
msgid "Cloud"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4503
msgid "Cloud Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4514
msgid "Cloud Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4525
msgid "Cloud Bolt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4536
msgid "Cloud Meatball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4547
msgid "Cloud Moon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4558
msgid "Cloud Moon Rain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4569
msgid "Cloud Rain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4580
msgid "Cloud Showers Heavy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4591
msgid "Cloud Showers Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4602
msgid "Cloud Sun"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4613
msgid "Cloud Sun Rain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4624
msgid "Cloudflare"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4635
msgid "cloudscale.ch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4646
msgid "Cloudsmith"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4657
msgid "cloudversify"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4668
msgid "Clover"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4679
msgid "Cmplid"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4690
msgid "Code"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4701
msgid "Code Branch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4712
msgid "Code Commit"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4723
msgid "Code Compare"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4734
msgid "Code Fork"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4745
msgid "Code Merge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4756
msgid "Code Pull Request"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4767
msgid "Codepen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4778
msgid "Codie Pie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4789
msgid "Coins"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4800
msgid "Colon Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4816
msgid "Comment"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4827
msgid "Comment Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4843
msgid "Comment Dots"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4854
msgid "Comment Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4865
msgid "Comment Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4876
msgid "Comment Sms"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4892
#: dist/blocks.js:19
msgid "Comments"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4903
msgid "Comments Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4914
msgid "Compact Disc"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4930
msgid "Compass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4941
msgid "Compass Drafting"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4952
msgid "Compress"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4963
msgid "Computer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4974
msgid "Computer Mouse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4985
msgid "Confluence"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:4996
msgid "Connect Develop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5007
msgid "Contao"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5018
msgid "Cookie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5029
msgid "Cookie Bite"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5045
#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Copy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5061
msgid "Copyright"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5072
msgid "Cotton Bureau"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5083
msgid "Couch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5094
msgid "Cow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5105
msgid "cPanel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5116
msgid "Creative Commons"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5127
msgid "Creative Commons Attribution"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5138
msgid "Creative Commons Noncommercial"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5149
msgid "Creative Commons Noncommercial (Euro Sign)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5160
msgid "Creative Commons Noncommercial (Yen Sign)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5171
msgid "Creative Commons No Derivative Works"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5182
msgid "Creative Commons Public Domain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5193
msgid "Alternate Creative Commons Public Domain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5204
msgid "Creative Commons Remix"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5215
msgid "Creative Commons Share Alike"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5226
msgid "Creative Commons Sampling"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5237
msgid "Creative Commons Sampling +"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5248
msgid "Creative Commons Share"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5259
msgid "Creative Commons CC0"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5275
msgid "Credit Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5286
msgid "Critical Role"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5297
#: dist/blocks.js:19
msgid "Crop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-0.php:5308
msgid "Crop Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:22
msgid "Cross"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:33
msgid "Crosshairs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:44
msgid "Crow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:55
msgid "Crown"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:66
msgid "Crutch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:77
msgid "Cruzeiro Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:88
msgid "CSS 3 Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:99
msgid "Alternate CSS3 Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:110
msgid "Cube"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:121
msgid "Cubes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:132
msgid "Cubes Stacked"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:143
msgid "Cuttlefish"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:154
msgid "D"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:165
msgid "Dungeons & Dragons"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:176
msgid "D&D Beyond"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:187
msgid "dailymotion"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:198
msgid "DashCube"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:209
msgid "Database"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:220
msgid "Deezer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:231
msgid "Delete Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:242
msgid "Delicious"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:253
msgid "Democrat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:264
msgid "deploy.dog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:275
msgid "Deskpro"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:286
#: dist/blocks.js:1
#: dist/blocks.js:19
#: dist/blocks.js:33
msgid "Desktop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:297
msgid "DEV"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:308
msgid "deviantART"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:319
msgid "Dharmachakra"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:330
msgid "DHL"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:341
msgid "Diagram Next"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:352
msgid "Diagram Predecessor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:363
msgid "Diagram Project"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:374
msgid "Diagram Successor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:385
#: dist/blocks.js:15
msgid "Diamond"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:396
msgid "Diamond Turn Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:407
msgid "Diaspora"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:418
msgid "Dice"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:429
msgid "Dice D20"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:440
msgid "Dice D6"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:451
msgid "Dice Five"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:462
msgid "Dice Four"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:473
msgid "Dice One"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:484
msgid "Dice Six"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:495
msgid "Dice Three"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:506
msgid "Dice Two"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:517
msgid "Digg Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:528
msgid "Digital Ocean"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:539
msgid "Discord"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:550
msgid "Discourse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:561
msgid "Disease"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:572
msgid "Display"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:583
msgid "Divide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:594
msgid "Dna"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:605
msgid "DocHub"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:616
msgid "Docker"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:627
msgid "Dog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:638
msgid "Dollar Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:649
msgid "Dolly"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:660
msgid "Dong Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:671
msgid "Door Closed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:682
msgid "Door Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:693
msgid "Dove"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:704
msgid "Down Left And Up Right To Center"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:715
msgid "Down Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:726
msgid "Download"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:737
msgid "Draft2digital"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:748
msgid "Dragon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:759
msgid "Draw Polygon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:770
msgid "Dribbble"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:781
msgid "Dribbble Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:792
msgid "Dropbox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:803
msgid "Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:814
msgid "Droplet Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:825
msgid "Drum"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:836
msgid "Drum Steelpan"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:847
msgid "Drumstick Bite"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:858
msgid "Drupal Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:869
msgid "Dumbbell"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:880
msgid "Dumpster"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:891
msgid "Dumpster Fire"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:902
msgid "Dungeon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:913
msgid "Dyalog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:924
msgid "E"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:935
msgid "Ear Deaf"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:946
msgid "Ear Listen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:957
msgid "Earlybirds"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:968
msgid "Earth Africa"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:979
msgid "Earth Americas"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:990
msgid "Earth Asia"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1001
msgid "Earth Europe"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1012
msgid "Earth Oceania"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1023
msgid "eBay"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1034
msgid "Edge Browser"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1045
msgid "Edge Legacy Browser"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1056
msgid "Egg"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1067
msgid "Eject"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1078
msgid "Elementor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1089
msgid "Elevator"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1100
msgid "Ellipsis"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1111
msgid "Ellipsis Vertical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1122
msgid "Ello"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1133
msgid "Ember"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1144
msgid "Galactic Empire"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1160
msgid "Envelope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1171
msgid "Envelope Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1187
msgid "Envelope Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1198
msgid "Envelope Open Text"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1209
msgid "Envelopes Bulk"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1220
msgid "Envira Gallery"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1231
msgid "Equals"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1242
msgid "Eraser"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1253
msgid "Erlang"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1264
msgid "Ethereum"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1275
msgid "Ethernet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1286
msgid "Etsy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1297
msgid "Euro Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1308
msgid "Evernote"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1319
msgid "Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1330
msgid "Expand"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1341
msgid "ExpeditedSSL"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1352
msgid "Explosion"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1368
msgid "Eye"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1379
msgid "Eye Dropper"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1390
msgid "Eye Low Vision"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1406
msgid "Eye Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1417
msgid "F"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1433
msgid "Face Angry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1449
msgid "Face Dizzy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1465
msgid "Face Flushed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1481
msgid "Face Frown"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1497
msgid "Face Frown Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1513
msgid "Face Grimace"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1529
msgid "Face Grin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1545
msgid "Face Grin Beam"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1561
msgid "Face Grin Beam Sweat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1577
msgid "Face Grin Hearts"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1593
msgid "Face Grin Squint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1609
msgid "Face Grin Squint Tears"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1625
msgid "Face Grin Stars"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1641
msgid "Face Grin Tears"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1657
msgid "Face Grin Tongue"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1673
msgid "Face Grin Tongue Squint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1689
msgid "Face Grin Tongue Wink"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1705
msgid "Face Grin Wide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1721
msgid "Face Grin Wink"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1737
msgid "Face Kiss"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1753
msgid "Face Kiss Beam"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1769
msgid "Face Kiss Wink Heart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1785
msgid "Face Laugh"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1801
msgid "Face Laugh Beam"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1817
msgid "Face Laugh Squint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1833
msgid "Face Laugh Wink"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1849
msgid "Face Meh"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1865
msgid "Face Meh Blank"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1881
msgid "Face Rolling Eyes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1897
msgid "Face Sad Cry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1913
msgid "Face Sad Tear"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1929
msgid "Face Smile"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1945
msgid "Face Smile Beam"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1961
msgid "Face Smile Wink"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1977
msgid "Face Surprise"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:1993
msgid "Face Tired"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2004
#: dist/blocks.js:19
msgid "Facebook"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2015
msgid "Facebook F"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2026
msgid "Facebook Messenger"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2037
msgid "Facebook Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2048
msgid "Fan"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2059
msgid "Fantasy Flight-games"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2070
msgid "Faucet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2081
msgid "Faucet Drip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2092
msgid "Fax"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2103
msgid "Feather"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2114
msgid "Feather Pointed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2125
msgid "FedEx"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2136
msgid "Fedora"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2147
msgid "Ferry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2158
msgid "Figma"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2174
msgid "File"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2185
msgid "File Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2196
msgid "File Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2212
msgid "File Audio"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2223
msgid "File Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2234
msgid "File Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2245
msgid "File Circle Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2256
msgid "File Circle Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2267
msgid "File Circle Question"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2278
msgid "File Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2294
msgid "File Code"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2305
msgid "File Contract"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2316
msgid "File Csv"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2332
msgid "File Excel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2343
msgid "File Export"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2359
msgid "File Image"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2370
msgid "File Import"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2381
msgid "File Invoice"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2392
msgid "File Invoice Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2408
msgid "File Lines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2419
msgid "File Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2435
msgid "File Pdf"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2446
msgid "File Pen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2462
msgid "File Powerpoint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2473
msgid "File Prescription"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2484
msgid "File Shield"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2495
msgid "File Signature"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2511
msgid "File Video"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2522
msgid "File Waveform"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2538
msgid "File Word"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2554
msgid "File Zipper"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2565
#: dist/blocks.js:15
msgid "Fill"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2576
msgid "Fill Drip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2587
msgid "Film"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2598
msgid "Filter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2609
msgid "Filter Circle Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2620
msgid "Filter Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2631
msgid "Fingerprint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2642
msgid "Fire"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2653
msgid "Fire Burner"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2664
msgid "Fire Extinguisher"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2675
msgid "Fire Flame Curved"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2686
msgid "Fire Flame Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2697
msgid "Firefox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2708
msgid "Firefox Browser"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2719
msgid "First Order"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2730
msgid "Alternate First Order"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2741
msgid "firstdraft"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2752
msgid "Fish"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2763
msgid "Fish Fins"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2779
msgid "Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2790
msgid "Flag Checkered"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2801
msgid "Flag Usa"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2812
msgid "Flask"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2823
msgid "Flask Vial"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2834
msgid "Flickr"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2845
msgid "Flipboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2861
msgid "Floppy Disk"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2872
msgid "Florin Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2883
msgid "Fly"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2899
msgid "Folder"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2915
msgid "Folder Closed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2926
msgid "Folder Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2942
msgid "Folder Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2953
msgid "Folder Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2964
msgid "Folder Tree"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2975
msgid "Font"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:2996
msgid "Font Awesome"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3007
msgid "Fonticons"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3018
msgid "Fonticons Fi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3029
msgid "Football"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3040
msgid "Fort Awesome"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3051
msgid "Alternate Fort Awesome"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3062
msgid "Forumbee"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3073
msgid "Forward"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3084
msgid "Forward Fast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3095
msgid "Forward Step"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3106
msgid "Foursquare"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3117
msgid "Franc Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3128
msgid "freeCodeCamp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3139
msgid "FreeBSD"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3150
msgid "Frog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3161
msgid "Fulcrum"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3177
msgid "Futbol"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3188
msgid "G"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3199
msgid "Galactic Republic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3210
msgid "Galactic Senate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3221
msgid "Gamepad"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3232
msgid "Gas Pump"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3243
msgid "Gauge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3254
msgid "Gauge High"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3265
msgid "Gauge Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3276
msgid "Gauge Simple High"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3287
msgid "Gavel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3298
msgid "Gear"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3309
msgid "Gears"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3325
msgid "Gem"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3336
msgid "Genderless"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3347
msgid "Get Pocket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3358
msgid "GG Currency"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3369
msgid "GG Currency Circle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3380
msgid "Ghost"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3391
msgid "Gift"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3402
msgid "Gifts"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3413
msgid "Git"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3424
msgid "Git Alt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3435
msgid "Git Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3446
msgid "GitHub"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3457
msgid "Alternate GitHub"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3468
msgid "Github Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3479
msgid "GitKraken"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3490
msgid "GitLab"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3501
msgid "Gitter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3512
msgid "Glass Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3523
msgid "Glass Water Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3534
msgid "Glasses"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3545
msgid "Glide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3556
msgid "Glide G"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3567
msgid "Globe"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3578
msgid "Gofore"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3589
msgid "Go"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3600
msgid "Golf Ball Tee"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3611
msgid "Goodreads"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3622
msgid "Goodreads G"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3633
msgid "Google Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3644
msgid "Google Drive"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3655
msgid "Google Pay"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3666
msgid "Google Play"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3677
msgid "Google Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3688
msgid "Google Plus G"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3699
msgid "Google Plus Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3710
msgid "Google Wallet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3721
msgid "Gopuram"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3732
msgid "Graduation Cap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3743
msgid "Gratipay (Gittip)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3754
msgid "Grav"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3765
msgid "Greater Than"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3776
msgid "Greater Than Equal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3787
msgid "Grip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3798
msgid "Grip Lines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3809
msgid "Grip Lines Vertical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3820
msgid "Grip Vertical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3831
msgid "Gripfire, Inc."
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3842
msgid "Group Arrows Rotate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3853
msgid "Grunt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3864
msgid "Guarani Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3875
msgid "Guilded"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3886
msgid "Guitar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3897
msgid "Gulp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3908
msgid "Gun"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3919
msgid "H"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3930
msgid "Hacker News"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3941
msgid "Hacker News Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3952
msgid "Hackerrank"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3963
msgid "Hammer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3974
msgid "Hamsa"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:3990
msgid "Hand"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4006
msgid "Hand Back Fist"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4017
msgid "Hand Dots"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4028
msgid "Hand Fist"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4039
msgid "Hand Holding"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4050
msgid "Hand Holding Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4061
msgid "Hand Holding Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4072
msgid "Hand Holding Hand"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4083
msgid "Hand Holding Heart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4094
msgid "Hand Holding Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4110
msgid "Hand Lizard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4121
msgid "Hand Middle Finger"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4137
msgid "Hand Peace"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4153
msgid "Hand Point Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4169
msgid "Hand Point Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4185
msgid "Hand Point Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4201
msgid "Hand Point Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4217
msgid "Hand Pointer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4233
msgid "Hand Scissors"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4244
msgid "Hand Sparkles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4260
msgid "Hand Spock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4271
msgid "Handcuffs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4282
msgid "Hands"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4293
msgid "Hands Asl Interpreting"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4304
msgid "Hands Bound"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4315
msgid "Hands Bubbles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4326
msgid "Hands Clapping"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4337
msgid "Hands Holding"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4348
msgid "Hands Holding Child"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4359
msgid "Hands Holding Circle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4370
msgid "Hands Praying"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4386
msgid "Handshake"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4397
msgid "Handshake Angle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4408
msgid "Handshake Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4419
msgid "Handshake Simple Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4430
msgid "Handshake Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4441
msgid "Hanukiah"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4457
msgid "Hard Drive"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4468
msgid "Hashnode"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4479
msgid "Hashtag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4490
msgid "Hat Cowboy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4501
msgid "Hat Cowboy Side"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4512
msgid "Hat Wizard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4523
msgid "Head Side Cough"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4534
msgid "Head Side Cough Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4545
msgid "Head Side Mask"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4556
msgid "Head Side Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4567
#: includes/blocks/advanced-heading/block.php:16
#: dist/blocks-placeholder.js:9
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Heading"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4578
msgid "Headphones"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4589
msgid "Headphones Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4600
msgid "Headset"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4616
msgid "Heart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4627
msgid "Heart Circle Bolt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4638
msgid "Heart Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4649
msgid "Heart Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4660
msgid "Heart Circle Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4671
msgid "Heart Circle Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4682
msgid "Heart Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4693
msgid "Heart Crack"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4704
msgid "Heart Pulse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4715
msgid "Helicopter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4726
msgid "Helicopter Symbol"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4737
msgid "Helmet Safety"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4748
msgid "Helmet Un"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4759
msgid "Highlighter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4770
msgid "Hill Avalanche"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4781
msgid "Hill Rockslide"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4792
msgid "Hippo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4803
msgid "Hips"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4814
msgid "HireAHelper"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4825
msgid "Hive Blockchain Network"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4836
msgid "Hockey Puck"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4847
msgid "Holly Berry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4858
msgid "Hooli"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4869
msgid "Hornbill"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4880
msgid "Horse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4891
msgid "Horse Head"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4907
msgid "Hospital"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4918
msgid "Hospital User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4929
msgid "Hot Tub Person"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4940
msgid "Hotdog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4951
msgid "Hotel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4962
msgid "Hotjar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4978
msgid "Hourglass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:4989
msgid "Hourglass Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5000
msgid "Hourglass End"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5011
msgid "Hourglass Start"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5022
msgid "House"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5033
msgid "House Chimney"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5044
msgid "House Chimney Crack"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5055
msgid "House Chimney Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5066
msgid "House Chimney User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5077
msgid "House Chimney Window"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5088
msgid "House Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5099
msgid "House Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5110
msgid "House Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5121
msgid "House Crack"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5132
msgid "House Fire"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5143
msgid "House Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5154
msgid "House Flood Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5165
msgid "House Flood Water Circle Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5176
msgid "House Laptop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5187
msgid "House Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5198
msgid "House Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5209
msgid "House Medical Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5220
msgid "House Medical Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5231
msgid "House Medical Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5242
msgid "House Medical Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5253
msgid "House Signal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5264
msgid "House Tsunami"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5275
msgid "House User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5286
msgid "Houzz"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5297
msgid "Hryvnia Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5308
msgid "HTML 5 Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5319
msgid "HubSpot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5330
msgid "Hurricane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5341
msgid "I"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5352
msgid "I Cursor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5363
msgid "Ice Cream"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5374
msgid "Icicles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5385
msgid "Icons"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5401
msgid "Id Badge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5417
msgid "Id Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5428
msgid "Id Card Clip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5439
msgid "iDeal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5450
msgid "Igloo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5466
#: includes/blocks/image/block.php:16
#: dist/blocks-placeholder.js:23
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Image"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5477
msgid "Image Portrait"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-1.php:5493
msgid "Images"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:22
msgid "IMDB"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:33
msgid "Inbox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:44
msgid "Indent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:55
msgid "Indian Rupee Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:66
msgid "Industry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:88
msgid "Info"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:99
msgid "Instagram"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:110
msgid "Instagram Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:121
msgid "InstaLOD"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:132
msgid "Intercom"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:143
msgid "Internet-explorer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:154
msgid "InVision"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:165
msgid "ioxhost"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:176
#: dist/blocks.js:15
msgid "Italic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:187
msgid "itch.io"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:198
msgid "iTunes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:209
msgid "Itunes Note"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:220
msgid "J"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:231
msgid "Jar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:242
msgid "Jar Wheat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:253
msgid "Java"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:264
msgid "Jedi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:275
msgid "Jedi Order"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:286
msgid "Jenkis"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:297
msgid "Jet Fighter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:308
msgid "Jet Fighter Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:319
msgid "Jira"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:330
msgid "Joget"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:341
msgid "Joint"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:352
msgid "Joomla Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:363
msgid "JavaScript (JS)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:374
msgid "Javascript (JS) Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:385
msgid "jsFiddle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:396
msgid "Jug Detergent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:407
msgid "K"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:418
msgid "Kaaba"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:429
msgid "Kaggle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:440
msgid "Key"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:451
msgid "Keybase"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:467
msgid "Keyboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:478
msgid "KeyCDN"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:489
msgid "Khanda"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:500
msgid "Kickstarter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:511
msgid "Kickstarter K"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:522
msgid "Kip Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:533
msgid "Kit Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:544
msgid "Kitchen Set"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:555
msgid "Kiwi Bird"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:566
msgid "KORVUE"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:577
#: dist/blocks.js:23
msgid "L"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:588
msgid "Land Mine On"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:599
msgid "Landmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:610
msgid "Landmark Dome"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:621
msgid "Landmark Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:632
#: dist/blocks.js:19
msgid "Language"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:643
msgid "Laptop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:654
msgid "Laptop Code"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:665
msgid "Laptop File"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:676
msgid "Laptop Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:687
msgid "Laravel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:698
msgid "Lari Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:709
msgid "last.fm"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:720
msgid "last.fm Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:731
msgid "Layer Group"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:742
msgid "Leaf"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:753
msgid "Leanpub"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:764
msgid "Left Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:775
msgid "Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:791
msgid "Lemon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:802
msgid "Less"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:813
msgid "Less Than"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:824
msgid "Less Than Equal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:840
msgid "Life Ring"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:856
msgid "Lightbulb"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:867
#: dist/blocks.js:19
msgid "Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:878
msgid "Lines Leaning"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:889
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Link"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:900
msgid "Link Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:911
#: dist/blocks.js:19
msgid "LinkedIn"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:922
msgid "LinkedIn In"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:933
msgid "Linode"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:944
#: dist/blocks.js:19
msgid "Linux"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:955
msgid "Lira Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:966
#: dist/blocks.js:19
msgid "List"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:977
msgid "List Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:988
msgid "List Ol"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:999
msgid "List Ul"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1010
msgid "Litecoin Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1021
msgid "Location Arrow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1032
msgid "Location Crosshairs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1043
msgid "Location Dot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1054
msgid "Location Pin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1065
msgid "Location Pin Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1076
msgid "Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1087
msgid "Lock Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1098
msgid "Locust"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1109
msgid "Lungs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1120
msgid "Lungs Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1131
msgid "lyft"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1142
#: dist/blocks.js:23
msgid "M"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1153
msgid "Magento"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1164
msgid "Magnet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1175
msgid "Magnifying Glass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1186
msgid "Magnifying Glass Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1197
msgid "Magnifying Glass Chart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1208
msgid "Magnifying Glass Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1219
msgid "Magnifying Glass Location"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1230
msgid "Magnifying Glass Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1241
msgid "Magnifying Glass Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1252
msgid "Mailchimp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1263
msgid "Manat Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1274
msgid "Mandalorian"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1290
msgid "Map"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1301
msgid "Map Location"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1312
msgid "Map Location Dot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1323
msgid "Map Pin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1334
msgid "Markdown"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1345
msgid "Marker"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1356
msgid "Mars"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1367
msgid "Mars And Venus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1378
msgid "Mars And Venus Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1389
msgid "Mars Double"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1400
msgid "Mars Stroke"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1411
msgid "Mars Stroke Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1422
msgid "Mars Stroke Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1433
msgid "Martini Glass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1444
msgid "Martini Glass Citrus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1455
msgid "Martini Glass Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1466
#: dist/blocks.js:15
msgid "Mask"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1477
msgid "Mask Face"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1488
msgid "Mask Ventilator"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1499
msgid "Masks Theater"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1510
msgid "Mastodon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1521
msgid "Mattress Pillow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1532
msgid "MaxCDN"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1543
msgid "Maximize"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1554
msgid "Material Design for Bootstrap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1565
msgid "Medal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1576
msgid "MedApps"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1587
#: dist/blocks.js:19
msgid "Medium"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1598
msgid "MRT"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1609
msgid "Meetup"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1620
msgid "Megaport"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1631
msgid "Memory"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1642
msgid "Mendeley"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1653
msgid "Menorah"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1664
msgid "Mercury"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1680
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Message"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1691
msgid "Meteor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1702
msgid "Micro.blog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1713
msgid "Microchip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1724
msgid "Microphone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1735
msgid "Microphone Lines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1746
msgid "Microphone Lines Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1757
msgid "Microphone Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1768
msgid "Microscope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1779
msgid "Microsoft"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1790
msgid "Mill Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1801
msgid "Minimize"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1812
msgid "Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1823
msgid "Mitten"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1834
msgid "Mix"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1845
msgid "Mixcloud"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1856
msgid "Mixer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1867
msgid "Mizuni"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1878
#: dist/blocks.js:1
#: dist/blocks.js:19
#: dist/blocks.js:23
#: dist/blocks.js:33
msgid "Mobile"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1889
msgid "Mobile button"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1900
msgid "Mobile Retro"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1911
msgid "Mobile screen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1922
msgid "Mobile Screen Button"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1933
msgid "MODX"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1944
msgid "Monero"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1955
msgid "Money Bill"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1971
msgid "Money Bill 1"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1982
msgid "Money Bill 1 Wave"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:1993
msgid "Money Bill Transfer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2004
msgid "Money Bill Trend Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2015
msgid "Money Bill Wave"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2026
msgid "Money Bill Wheat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2037
msgid "Money Bills"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2048
msgid "Money Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2059
msgid "Money Check Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2070
msgid "Monument"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2086
msgid "Moon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2097
msgid "Mortar Pestle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2108
msgid "Mosque"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2119
msgid "Mosquito"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2130
msgid "Mosquito Net"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2141
msgid "Motorcycle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2152
msgid "Mound"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2163
msgid "Mountain"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2174
msgid "Mountain City"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2185
msgid "Mountain Sun"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2196
msgid "Mug Hot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2207
msgid "Mug Saucer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2218
msgid "Music"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2229
msgid "N"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2240
msgid "Naira Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2251
msgid "Napster"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2262
msgid "Neos"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2273
msgid "Network Wired"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2284
msgid "Neuter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2300
msgid "Newspaper"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2311
msgid "NFC Directional"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2322
msgid "Nfc Symbol"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2333
msgid "Nimblr"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2344
msgid "Node.js"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2355
msgid "Node.js JS"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2366
msgid "Not Equal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2382
msgid "Note Sticky"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2393
msgid "Notes Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2404
msgid "npm"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2415
msgid "NS8"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2426
msgid "Nutritionix"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2437
msgid "O"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2453
msgid "Object Group"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2469
msgid "Object Ungroup"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2480
msgid "Octopus Deploy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2491
#: dist/blocks.js:19
msgid "Odnoklassniki"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2502
msgid "Odnoklassniki Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2513
msgid "Oil Can"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2524
msgid "Oil Well"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2535
msgid "Old Republic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2546
msgid "Om"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2557
msgid "OpenCart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2568
msgid "OpenID"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2579
#: dist/blocks.js:19
msgid "Opera"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2590
msgid "Optin Monster"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2601
msgid "ORCID"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2612
msgid "Open Source Initiative"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2623
msgid "Otter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2634
msgid "Outdent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2645
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "P"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2656
msgid "Padlet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2667
msgid "page4 Corporation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2678
msgid "Pagelines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2689
msgid "Pager"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2700
msgid "Paint Roller"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2711
msgid "Paintbrush"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2722
msgid "Palette"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2733
msgid "Palfed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2744
msgid "Pallet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2755
msgid "Panorama"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2771
msgid "Paper Plane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2782
msgid "Paperclip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2793
msgid "Parachute Box"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2804
msgid "Paragraph"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2815
msgid "Passport"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2831
msgid "Paste"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2842
msgid "Patreon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2853
msgid "Pause"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2864
msgid "Paw"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2875
msgid "Paypal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2886
msgid "Peace"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2897
msgid "Pen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2908
msgid "Pen Clip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2919
msgid "Pen Fancy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2930
msgid "Pen Nib"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2941
msgid "Pen Ruler"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2957
msgid "Pen To Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2968
msgid "Pencil"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2979
msgid "People Arrows Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:2990
msgid "People Carry Box"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3001
msgid "People Group"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3012
msgid "People Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3023
msgid "People Pulling"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3034
msgid "People Robbery"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3045
msgid "People Roof"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3056
msgid "Pepper Hot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3067
msgid "PerByte"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3078
msgid "Percent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3089
msgid "Periscope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3100
msgid "Person"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3111
msgid "Person Arrow Down To Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3122
msgid "Person Arrow Up From Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3133
msgid "Person Biking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3144
msgid "Person Booth"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3155
msgid "Person Breastfeeding"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3166
msgid "Person Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3177
msgid "Person Cane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3188
msgid "Person Chalkboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3199
msgid "Person Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3210
msgid "Person Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3221
msgid "Person Circle Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3232
msgid "Person Circle Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3243
msgid "Person Circle Question"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3254
msgid "Person Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3265
msgid "Person Digging"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3276
msgid "Person Dots From Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3287
msgid "Person Dress"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3298
msgid "Person Dress Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3309
msgid "Person Drowning"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3320
msgid "Person Falling"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3331
msgid "Person Falling Burst"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3342
msgid "Person Half Dress"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3353
msgid "Person Harassing"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3364
msgid "Person Hiking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3375
msgid "Person Military Pointing"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3386
msgid "Person Military Rifle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3397
msgid "Person Military To Person"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3408
msgid "Person Praying"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3419
msgid "Person Pregnant"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3430
msgid "Person Rays"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3441
msgid "Person Rifle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3452
msgid "Person Running"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3463
msgid "Person Shelter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3474
msgid "Person Skating"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3485
msgid "Person Skiing"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3496
msgid "Person Skiing Nordic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3507
msgid "Person Snowboarding"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3518
msgid "Person Swimming"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3529
msgid "Person Through Window"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3540
msgid "Person Walking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3551
msgid "Person Walking Arrow Loop Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3562
msgid "Person Walking Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3573
msgid "Person Walking Dashed Line Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3584
msgid "Person Walking Luggage"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3595
msgid "Person Walking With Cane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3606
msgid "Peseta Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3617
msgid "Peso Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3628
msgid "Phabricator"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3639
msgid "Phoenix Framework"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3650
msgid "Phoenix Squadron"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3661
#: includes/blocks/forms-phone/block.php:14
#: dist/blocks.js:19
msgid "Phone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3672
msgid "Phone Flip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3683
msgid "Phone Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3694
msgid "Phone Volume"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3705
msgid "Photo Film"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3716
msgid "PHP"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3727
msgid "Pied Piper Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3738
msgid "Alternate Pied Piper Logo (Old)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3749
msgid "Pied Piper Hat (Old)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3760
msgid "Pied Piper PP Logo (Old)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3771
msgid "Pied Piper Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3782
msgid "Piggy Bank"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3793
msgid "Pills"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3804
#: dist/blocks.js:19
msgid "Pinterest"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3815
msgid "Pinterest P"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3826
msgid "Pinterest Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3837
msgid "Pix"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3848
msgid "Pizza Slice"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3859
msgid "Place Of Worship"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3870
msgid "Plane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3881
msgid "Plane Arrival"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3892
msgid "Plane Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3903
msgid "Plane Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3914
msgid "Plane Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3925
msgid "Plane Departure"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3936
msgid "Plane Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3947
msgid "Plane Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3958
msgid "Plane Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3969
msgid "Plant Wilt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3980
msgid "Plate Wheat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:3991
msgid "Play"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4002
msgid "PlayStation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4013
msgid "Plug"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4024
msgid "Plug Circle Bolt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4035
msgid "Plug Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4046
msgid "Plug Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4057
msgid "Plug Circle Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4068
msgid "Plug Circle Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4079
msgid "Plug Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4090
msgid "Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4101
msgid "Plus Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4112
msgid "Podcast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4123
msgid "Poo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4134
msgid "Poo Storm"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4145
msgid "Poop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4156
msgid "Power Off"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4167
msgid "Prescription"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4178
msgid "Prescription Bottle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4189
msgid "Prescription Bottle Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4200
msgid "Print"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4211
msgid "Product Hunt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4222
msgid "Pump Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4233
msgid "Pump Soap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4244
msgid "Pushed"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4255
msgid "Puzzle Piece"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4266
msgid "Python"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4277
msgid "Q"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4288
msgid "QQ"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4299
msgid "Qrcode"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4310
#: dist/blocks.js:19
msgid "Question"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4321
msgid "QuinScape"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4332
msgid "Quora"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4343
msgid "Quote Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4354
msgid "Quote Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4365
msgid "R"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4376
msgid "R Project"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4387
msgid "Radiation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4398
#: includes/blocks/forms-radio/block.php:14
#: dist/blocks.js:19
msgid "Radio"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4409
msgid "Rainbow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4420
msgid "Ranking Star"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4431
msgid "Raspberry Pi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4442
msgid "Ravelry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4453
msgid "React"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4464
msgid "ReactEurope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4475
msgid "ReadMe"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4486
msgid "Rebel Alliance"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4497
msgid "Receipt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4508
msgid "Record Vinyl"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4519
msgid "Rectangle Ad"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4535
msgid "Rectangle List"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4551
msgid "Rectangle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4562
msgid "Recycle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4573
msgid "red river"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4584
msgid "reddit Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4595
msgid "reddit Alien"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4606
msgid "Reddit Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4617
msgid "Redhat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4633
msgid "Registered"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4644
msgid "Renren"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4655
#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Repeat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4666
msgid "Reply"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4677
msgid "Reply All"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4688
msgid "replyd"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4699
msgid "Republican"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4710
msgid "Researchgate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4721
msgid "Resolving"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4732
msgid "Restroom"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4743
msgid "Retweet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4754
msgid "Rev.io"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4765
msgid "Ribbon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4776
msgid "Right From Bracket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4787
msgid "Right Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4798
msgid "Right Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4809
msgid "Right To Bracket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4820
msgid "Ring"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4831
msgid "Road"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4842
msgid "Road Barrier"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4853
msgid "Road Bridge"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4864
msgid "Road Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4875
msgid "Road Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4886
msgid "Road Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4897
msgid "Road Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4908
msgid "Road Spikes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4919
msgid "Robot"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4930
msgid "Rocket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4941
msgid "Rocket.Chat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4952
msgid "Rockrms"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4963
msgid "Rotate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4974
msgid "Rotate Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4985
msgid "Rotate Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:4996
msgid "Route"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5007
msgid "Rss"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5018
msgid "Ruble Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5029
msgid "Rug"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5040
msgid "Ruler"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5051
msgid "Ruler Combined"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5062
msgid "Ruler Horizontal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5073
msgid "Ruler Vertical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5084
msgid "Rupee Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5095
msgid "Rupiah Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5106
msgid "Rust"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5117
#: dist/blocks.js:23
msgid "S"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5128
msgid "Sack Dollar"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5139
msgid "Sack Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5150
#: dist/blocks.js:19
msgid "Safari"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5161
msgid "Sailboat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5172
msgid "Salesforce"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-2.php:5183
msgid "Sass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:22
msgid "Satellite"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:33
msgid "Satellite Dish"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:44
msgid "Scale Balanced"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:55
msgid "Scale Unbalanced"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:66
msgid "Scale Unbalanced Flip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:77
msgid "SCHLIX"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:88
msgid "School"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:99
msgid "School Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:110
msgid "School Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:121
msgid "School Circle Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:132
msgid "School Flag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:143
msgid "School Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:154
msgid "Scissors"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:165
msgid "Screenpal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:176
msgid "Screwdriver"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:187
msgid "Screwdriver Wrench"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:198
msgid "Scribd"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:209
#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Scroll"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:220
msgid "Scroll Torah"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:231
msgid "Sd Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:242
msgid "Searchengin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:253
msgid "Section"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:264
msgid "Seedling"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:275
msgid "Sellcast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:286
msgid "Sellsy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:297
msgid "Server"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:308
msgid "Servicestack"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:319
msgid "Shapes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:330
msgid "Share"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:346
msgid "Share From Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:357
msgid "Share Nodes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:368
msgid "Sheet Plastic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:379
msgid "Shekel Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:390
msgid "Shield"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:401
msgid "Shield Cat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:412
msgid "Shield Dog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:423
msgid "Shield Halved"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:434
msgid "Shield Heart"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:445
msgid "Shield Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:456
msgid "Ship"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:467
msgid "Shirt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:478
msgid "Shirts in Bulk"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:489
msgid "Shoe Prints"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:500
msgid "Shop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:511
msgid "Shop Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:522
msgid "Shop Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:533
msgid "Shopify"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:544
msgid "Shopware"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:555
msgid "Shower"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:566
msgid "Shrimp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:577
msgid "Shuffle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:588
msgid "Shuttle Space"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:599
msgid "Sign Hanging"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:610
msgid "Signal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:621
msgid "Signature"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:632
msgid "Signs Post"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:643
msgid "Sim Card"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:654
msgid "SimplyBuilt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:665
msgid "Sink"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:676
msgid "SISTRIX"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:687
msgid "Sitemap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:698
msgid "Sith"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:709
msgid "Sitrox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:720
msgid "Sketch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:731
msgid "Skull"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:742
msgid "Skull Crossbones"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:753
msgid "skyatlas"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:764
#: dist/blocks.js:19
msgid "Skype"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:775
msgid "Slack Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:786
#: dist/blocks.js:19
msgid "Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:797
msgid "Sleigh"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:808
msgid "Sliders"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:819
msgid "Slideshare"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:830
msgid "Smog"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:841
msgid "Smoking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:852
msgid "Snapchat"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:863
msgid "Snapchat Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:879
msgid "Snowflake"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:890
msgid "Snowman"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:901
msgid "Snowplow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:912
msgid "Soap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:923
msgid "Socks"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:934
msgid "Solar Panel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:945
msgid "Sort"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:956
msgid "Sort Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:967
msgid "Sort Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:978
msgid "SoundCloud"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:989
msgid "Sourcetree"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1000
msgid "Spa"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1011
msgid "Spaghetti Monster Flying"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1022
msgid "Speakap"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1033
msgid "Speaker Deck"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1044
msgid "Spell Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1055
msgid "Spider"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1066
msgid "Spinner"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1077
msgid "Splotch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1088
msgid "Spoon"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1099
msgid "Spotify"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1110
msgid "Spray Can"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1121
msgid "Spray Can Sparkles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1137
#: dist/blocks.js:19
msgid "Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1148
msgid "Square Arrow Up Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1164
msgid "Square Caret Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1180
msgid "Square Caret Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1196
msgid "Square Caret Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1212
msgid "Square Caret Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1228
msgid "Square Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1239
msgid "Square Envelope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1250
msgid "Font Awesome in Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1261
msgid "Font Awesome in Square with Stroke Outline"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1277
msgid "Square Full"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1288
msgid "Square H"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1304
msgid "Square Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1315
msgid "Square Nfi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1326
msgid "Square Parking"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1337
msgid "Square Pen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1348
msgid "Square Person Confined"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1359
msgid "Square Phone"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1370
msgid "Square Phone Flip"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1386
msgid "Square Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1397
msgid "Square Poll Horizontal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1408
msgid "Square Poll Vertical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1419
msgid "Square Root Variable"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1430
msgid "Square Rss"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1441
msgid "Square Share Nodes"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1452
msgid "Square Up Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1463
msgid "Square Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1474
msgid "Square Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1485
msgid "Squarespace"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1496
msgid "Stack Exchange"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1507
msgid "Stack Overflow"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1518
msgid "Stackpath"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1529
msgid "Staff Aesculapius"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1540
msgid "Stairs"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1551
msgid "Stamp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1567
#: dist/blocks.js:19
msgid "Star"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1578
msgid "Star And Crescent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1594
msgid "Star Half"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1610
msgid "Star Half Stroke"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1621
msgid "Star Of David"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1632
msgid "Star Of Life"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1643
msgid "StayLinked"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1654
msgid "Steam"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1665
msgid "Steam Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1676
msgid "Steam Symbol"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1687
msgid "Sterling Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1698
msgid "Stethoscope"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1709
msgid "Sticker Mule"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1720
msgid "Stop"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1731
msgid "Stopwatch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1742
msgid "Stopwatch 20"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1753
msgid "Store"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1764
msgid "Store Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1775
msgid "Strava"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1786
msgid "Street View"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1797
msgid "Strikethrough"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1808
msgid "Stripe"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1819
msgid "Stripe S"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1830
msgid "Stroopwafel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1841
msgid "Studio Vinari"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1852
msgid "StumbleUpon Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1863
msgid "StumbleUpon Circle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1874
msgid "Subscript"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1885
msgid "Suitcase"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1896
msgid "Suitcase Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1907
msgid "Suitcase Rolling"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1923
msgid "Sun"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1934
msgid "Sun Plant Wilt"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1945
msgid "Superpowers"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1956
msgid "Superscript"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1967
msgid "Supple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1978
msgid "Suse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:1989
msgid "Swatchbook"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2000
msgid "Swift"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2011
msgid "Symfony"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2022
msgid "Synagogue"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2033
msgid "Syringe"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2044
msgid "T"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2055
msgid "Table"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2066
msgid "Table Cells"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2077
msgid "Table Cells Large"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2088
msgid "Table Columns"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2099
msgid "Table List"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2110
msgid "Table Tennis Paddle Ball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2121
#: dist/blocks.js:1
#: dist/blocks.js:19
#: dist/blocks.js:33
msgid "Tablet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2132
msgid "Tablet Button"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2143
msgid "Tablet Screen Button"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2154
msgid "Tablets"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2165
msgid "Tachograph Digital"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2176
#: dist/blocks.js:19
msgid "Tag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2187
msgid "Tags"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2198
msgid "Tape"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2209
msgid "Tarp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2220
msgid "Tarp Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2231
msgid "Taxi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2242
msgid "TeamSpeak"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2253
msgid "Teeth"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2264
msgid "Teeth Open"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2275
#: dist/blocks.js:19
msgid "Telegram"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2286
msgid "Temperature Arrow Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2297
msgid "Temperature Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2308
msgid "Temperature Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2319
msgid "Temperature Full"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2330
msgid "Temperature Half"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2341
msgid "Temperature High"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2352
msgid "Temperature Low"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2363
msgid "Temperature Quarter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2374
msgid "Temperature Three Quarters"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2385
msgid "Tencent Weibo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2396
msgid "Tenge Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2407
msgid "Tent"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2418
msgid "Tent Arrow Down To Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2429
msgid "Tent Arrow Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2440
msgid "Tent Arrow Turn Left"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2451
msgid "Tent Arrows Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2462
msgid "Tents"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2473
msgid "Terminal"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2484
msgid "Text Height"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2495
msgid "Text Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2506
msgid "Text Width"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2517
msgid "The Red Yeti"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2528
msgid "Themeco"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2539
msgid "ThemeIsle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2550
msgid "Thermometer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2561
msgid "Think Peaks"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2577
msgid "Thumbs Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2593
msgid "Thumbs Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2604
msgid "Thumbtack"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2615
msgid "Ticket"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2626
msgid "Ticket Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2637
msgid "TikTok"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2648
#: dist/blocks.js:19
msgid "Timeline"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2659
msgid "Toggle Off"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2670
msgid "Toggle On"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2681
msgid "Toilet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2692
msgid "Toilet Paper"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2703
msgid "Toilet Paper Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2714
msgid "Toilet Portable"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2725
msgid "Toilets Portable"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2736
msgid "Toolbox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2747
msgid "Tooth"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2758
msgid "Torii Gate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2769
msgid "Tornado"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2780
msgid "Tower Broadcast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2791
msgid "Tower Cell"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2802
msgid "Tower Observation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2813
msgid "Tractor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2824
msgid "Trade Federation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2835
msgid "Trademark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2846
msgid "Traffic Light"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2857
msgid "Trailer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2868
msgid "Train"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2879
msgid "Train Subway"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2890
msgid "Train Tram"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2901
msgid "Transgender"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2912
msgid "Trash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2923
msgid "Trash Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2939
msgid "Trash Can"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2950
msgid "Trash Can Arrow Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2961
msgid "Tree"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2972
msgid "Tree City"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2983
msgid "Trello"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:2994
msgid "Triangle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3005
msgid "Trophy"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3016
msgid "Trowel"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3027
msgid "Trowel Bricks"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3038
msgid "Truck"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3049
msgid "Truck Arrow Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3060
msgid "Truck Droplet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3071
msgid "Truck Fast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3082
msgid "Truck Field"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3093
msgid "Truck Field Un"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3104
msgid "Truck Front"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3115
msgid "Truck Medical"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3126
msgid "Truck Monster"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3137
msgid "Truck Moving"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3148
msgid "Truck Pickup"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3159
msgid "Truck Plane"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3170
msgid "Truck Ramp Box"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3181
msgid "Tty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3192
#: dist/blocks.js:19
msgid "Tumblr"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3203
msgid "Tumblr Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3214
msgid "Turkish Lira Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3225
msgid "Turn Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3236
msgid "Turn Up"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3247
msgid "Tv"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3258
msgid "Twitch"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3269
#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3280
msgid "Twitter"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3291
msgid "Twitter Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3302
msgid "Typo3"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3313
msgid "U"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3324
msgid "Uber"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3335
msgid "Ubuntu"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3346
msgid "UIkit"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3357
msgid "Umbraco"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3368
msgid "Umbrella"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3379
msgid "Umbrella Beach"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3390
msgid "Uncharted Software"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3401
#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Underline"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3412
msgid "Uniregistry"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3423
msgid "Unity 3D"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3434
msgid "Universal Access"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3445
msgid "Unlock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3456
msgid "Unlock Keyhole"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3467
msgid "Unsplash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3478
msgid "Untappd"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3489
msgid "Up Down"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3500
msgid "Up Down Left Right"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3511
msgid "Up Long"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3522
msgid "Up Right And Down Left From Center"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3533
msgid "Up Right From Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3544
#: includes/blocks/forms-upload/block.php:14
msgid "Upload"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3555
msgid "UPS"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3566
msgid "USB"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3582
msgid "User"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3593
msgid "User Astronaut"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3604
msgid "User Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3615
msgid "User Clock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3626
msgid "User Doctor"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3637
msgid "User Gear"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3648
msgid "User Graduate"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3659
msgid "User Group"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3670
msgid "User Injured"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3681
msgid "User Large"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3692
msgid "User Large Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3703
msgid "User Lock"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3714
msgid "User Minus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3725
msgid "User Ninja"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3736
msgid "User Nurse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3747
msgid "User Pen"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3758
msgid "User Plus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3769
msgid "User Secret"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3780
msgid "User Shield"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3791
msgid "User Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3802
msgid "User Tag"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3813
msgid "User Tie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3824
msgid "User Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3835
msgid "Users"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3846
msgid "Users Between Lines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3857
msgid "Users Gear"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3868
msgid "Users Line"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3879
msgid "Users Rays"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3890
msgid "Users Rectangle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3901
msgid "Users Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3912
msgid "Users Viewfinder"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3923
msgid "United States Postal Service"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3934
msgid "us-Sunnah Foundation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3945
msgid "Utensils"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3956
msgid "V"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3967
msgid "Vaadin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3978
msgid "Van Shuttle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:3989
msgid "Vault"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4000
msgid "Vector Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4011
msgid "Venus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4022
msgid "Venus Double"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4033
msgid "Venus Mars"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4044
msgid "Vest"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4055
msgid "Vest Patches"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4066
msgid "Viacoin"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4077
msgid "Viadeo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4088
msgid "Viadeo Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4099
msgid "Vial"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4110
msgid "Vial Circle Check"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4121
msgid "Vial Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4132
msgid "Vials"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4143
msgid "Viber"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4154
#: dist/blocks.js:11
msgid "Video"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4165
msgid "Video Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4176
msgid "Vihara"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4187
#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4209
msgid "Vimeo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4198
msgid "Vimeo Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4220
msgid "Vine"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4231
msgid "Virus"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4242
msgid "Virus Covid"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4253
msgid "Virus Covid Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4264
msgid "Virus Slash"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4275
msgid "Viruses"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4286
#: dist/blocks.js:19
msgid "VK"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4297
msgid "VNV"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4308
msgid "Voicemail"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4319
msgid "Volcano"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4330
msgid "Volleyball"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4341
msgid "Volume High"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4352
msgid "Volume Low"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4363
msgid "Volume Off"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4374
msgid "Volume Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4385
msgid "Vr Cardboard"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4396
msgid "Vue.js"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4407
msgid "W"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4418
msgid "Walkie Talkie"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4429
msgid "Wallet"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4440
msgid "Wand Magic"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4451
msgid "Wand Magic Sparkles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4462
msgid "Wand Sparkles"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4473
msgid "Warehouse"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4484
msgid "Watchman Monitoring"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4495
msgid "Water"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4506
msgid "Water Ladder"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4517
msgid "Wave Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4528
msgid "Waze"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4539
msgid "Weebly"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4550
msgid "Weibo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4561
msgid "Weight Hanging"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4572
msgid "Weight Scale"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4583
msgid "Weixin (WeChat)"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4594
#: dist/blocks.js:19
msgid "WhatsApp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4605
msgid "WhatsApp Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4616
msgid "Wheat Awn"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4627
msgid "Wheat Awn Circle Exclamation"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4638
msgid "Wheelchair"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4649
msgid "Wheelchair Move"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4660
msgid "Whiskey Glass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4671
msgid "WHMCS"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4682
msgid "Wifi"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4693
msgid "Wikipedia W"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4704
msgid "Wind"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4720
msgid "Window Maximize"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4736
msgid "Window Minimize"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4752
msgid "Window Restore"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4763
#: dist/blocks.js:19
msgid "Windows"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4774
msgid "Wine Bottle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4785
msgid "Wine Glass"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4796
msgid "Wine Glass Empty"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4807
msgid "wirsindhandwerk"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4818
msgid "Wix"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4829
msgid "Wizards of the Coast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4840
msgid "Wodu"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4851
msgid "Wolf Pack Battalion"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4862
msgid "Won Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4873
msgid "WordPress Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4884
msgid "Wordpress Simple"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4895
msgid "Worm"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4906
msgid "WPBeginner"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4917
msgid "WPExplorer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4928
msgid "WPForms"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4939
msgid "wpressr"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4950
msgid "Wrench"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4961
msgid "X"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4972
msgid "X Ray"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4983
msgid "Xbox"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:4994
#: dist/blocks.js:19
msgid "Xing"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5005
msgid "Xing Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5016
msgid "Xmark"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5027
msgid "Xmarks Lines"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5038
msgid "Y"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5049
msgid "Y Combinator"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5060
msgid "Yahoo Logo"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5071
msgid "Yammer"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5082
msgid "Yandex"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5093
msgid "Yandex International"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5104
msgid "Yarn"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5115
msgid "Yelp"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5126
msgid "Yen Sign"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5137
msgid "Yin Yang"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5148
msgid "Yoast"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5159
msgid "YouTube"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5170
msgid "YouTube Square"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5181
msgid "Z"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5192
msgid "Zhihu"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5198
msgid "Brands"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5202
msgid "Business"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5206
msgid "Communication"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5210
msgid "Design"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5214
msgid "Education"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5218
msgid "Environment"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5222
msgid "Lifestyle"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5226
msgid "Science"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5230
msgid "Social"
msgstr ""

#: blocks-config/uagb-controls/spectra-icons-v6-3.php:5234
msgid "Travel"
msgstr ""

#: classes/class-uagb-admin-helper.php:494
msgid "Full Site Editor's Global Styles"
msgstr ""

#: classes/class-uagb-admin-helper.php:497
msgid "Filter added through any 3rd Party Theme/Plugin."
msgstr ""

#: classes/class-uagb-admin-helper.php:501
msgid "Theme"
msgstr ""

#: classes/class-uagb-admin.php:96
msgid "Migration started successfully."
msgstr ""

#: classes/class-uagb-admin.php:112
#: classes/class-uagb-admin.php:182
msgid "You do not have permission to access this page."
msgstr ""

#: classes/class-uagb-admin.php:129
msgid "Log file not found."
msgstr ""

#: classes/class-uagb-admin.php:183
#: classes/class-uagb-admin.php:214
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:5
msgid "Rollback to Previous Version"
msgstr ""

#: classes/class-uagb-admin.php:196
msgid "Error occurred, The version selected is invalid. Try selecting different version."
msgstr ""

#: classes/class-uagb-admin.php:303
msgid "Spectra database update required"
msgstr ""

#: classes/class-uagb-admin.php:304
msgid "We've detected that some of your pages were created with an older version of Spectra. To ensure your designs remain unaffected, we recommend updating the Spectra database now. Updating the Spectra database will not impact any other parts of your website."
msgstr ""

#: classes/class-uagb-admin.php:305
msgid "To be on the safer side, please be sure to back up your site before updating."
msgstr ""

#: classes/class-uagb-admin.php:306
msgid "Update Spectra Database"
msgstr ""

#: classes/class-uagb-admin.php:308
msgid "Learn More About This"
msgstr ""

#: classes/class-uagb-admin.php:333
msgid "Spectra database update in progress"
msgstr ""

#: classes/class-uagb-admin.php:334
msgid "Great! This should only take a few minutes. Thanks for hanging in there."
msgstr ""

#: classes/class-uagb-admin.php:359
msgid "Update Successful!"
msgstr ""

#: classes/class-uagb-admin.php:360
msgid "Your Spectra database is now up-to-date. Your website will continue to function as before."
msgstr ""

#: classes/class-uagb-admin.php:360
msgid "View Log"
msgstr ""

#. translators: %s: html tags
#: classes/class-uagb-admin.php:379
msgid "Spectra requires&nbsp;%3$sBlock Editor%4$s. You can change your editor settings to Block Editor from&nbsp;%1$shere%2$s. Plugin is currently NOT RUNNING."
msgstr ""

#: classes/class-uagb-admin.php:424
msgid "Want to do more with Popup Builder?"
msgstr ""

#: classes/class-uagb-admin.php:425
msgid "Maximize your popup potential with Spectra Pro. Unlock enhanced features, intuitive design options, and increased conversions!"
msgstr ""

#: classes/class-uagb-admin.php:427
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:10
msgid "Upgrade Now"
msgstr ""

#: classes/class-uagb-fse-fonts-compatibility.php:165
#: classes/class-uagb-init-blocks.php:1020
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Default"
msgstr ""

#: classes/class-uagb-fse-fonts-compatibility.php:169
#: classes/class-uagb-fse-fonts-compatibility.php:181
msgid "400"
msgstr ""

#: classes/class-uagb-fse-fonts-compatibility.php:175
#: classes/class-uagb-fse-fonts-compatibility.php:187
msgid "normal"
msgstr ""

#: classes/class-uagb-fse-fonts-compatibility.php:625
msgid "There was some error in deleting the font."
msgstr ""

#: classes/class-uagb-fse-fonts-compatibility.php:651
msgid "Successfully deleted font."
msgstr ""

#: classes/class-uagb-helper.php:478
#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Full"
msgstr ""

#: classes/class-uagb-init-blocks.php:113
msgctxt "plural"
msgid "Popup Builder"
msgstr ""

#: classes/class-uagb-init-blocks.php:114
msgctxt "singular"
msgid "Spectra Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:115
msgid "View Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:116
msgid "Create Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:117
msgid "Create New Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:118
msgid "Edit Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:119
msgid "New Popup"
msgstr ""

#: classes/class-uagb-init-blocks.php:120
msgid "Search Popups"
msgstr ""

#: classes/class-uagb-init-blocks.php:121
msgid "No Popups Found"
msgstr ""

#: classes/class-uagb-init-blocks.php:122
msgid "No Popups in Trash"
msgstr ""

#: classes/class-uagb-init-blocks.php:123
msgid "All Popups"
msgstr ""

#: classes/class-uagb-init-blocks.php:124
msgid "Popup Published"
msgstr ""

#: classes/class-uagb-init-blocks.php:125
msgid "Popup Updated"
msgstr ""

#: classes/class-uagb-init-blocks.php:384
#: classes/class-uagb-init-blocks.php:531
msgid "User is not authenticated!"
msgstr ""

#: classes/class-uagb-init-blocks.php:518
msgid "Please select a valid Gravity Form."
msgstr ""

#: classes/class-uagb-init-blocks.php:796
msgid "Please select a valid Contact Form 7."
msgstr ""

#: classes/class-uagb-init-blocks.php:821
msgid "Extensions"
msgstr ""

#: classes/class-uagb-init-blocks.php:1122
msgid ""
"Use custom class added in block's advanced settings to target your desired block. Examples:\n"
"\t\t.my-class {text-align: center;} // my-class is a custom selector"
msgstr ""

#: classes/class-uagb-init-blocks.php:1194
#: classes/class-uagb-rest-api.php:318
#: classes/class-uagb-rest-api.php:333
#: dist/blocks.js:1
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "None"
msgstr ""

#: classes/class-uagb-init-blocks.php:1223
#: classes/class-uagb-init-blocks.php:1256
#: dist/blocks.js:23
msgid "Select Form"
msgstr ""

#: classes/class-uagb-init-blocks.php:1237
msgid "You have not added any Contact Form 7 yet."
msgstr ""

#: classes/class-uagb-init-blocks.php:1270
msgid "You have not added any Gravity Forms yet."
msgstr ""

#: classes/class-uagb-init-blocks.php:1286
msgid "Invalid request"
msgstr ""

#. translators: %s: html tags
#: classes/class-uagb-loader.php:432
msgid "The %1$sSpectra%2$s plugin requires %1$sGutenberg%2$s plugin installed & activated."
msgstr ""

#: classes/class-uagb-loader.php:435
msgid "Install Gutenberg"
msgstr ""

#: classes/class-uagb-nps-notice.php:92
msgid "How likely are you to recommend Spectra to your friends or colleagues?"
msgstr ""

#: classes/class-uagb-nps-notice.php:93
msgid "Thanks a lot for your feedback! 😍"
msgstr ""

#: classes/class-uagb-nps-notice.php:94
msgid "Could you please do us a favor and give us a 5-star rating on WordPress? It would help others choose Spectra with confidence. Thank you!"
msgstr ""

#: classes/class-uagb-nps-notice.php:96
msgid "Thank you for your feedback"
msgstr ""

#: classes/class-uagb-nps-notice.php:97
msgid "We value your input. How can we improve your experience?"
msgstr ""

#: classes/class-uagb-nps-notice.php:98
msgid "Rate Spectra"
msgstr ""

#: classes/class-uagb-rollback.php:165
msgid "Spectra <p>Rollback to Previous Version</p>"
msgstr ""

#: classes/class-uagb-update.php:230
msgid "Heads up!"
msgstr ""

#: includes/blocks/advanced-heading/block.php:17
#: dist/blocks.js:15
msgid "Add heading, sub heading and a separator using one block."
msgstr ""

#: includes/blocks/animations-extension/block.php:13
msgid "Animations Extension"
msgstr ""

#: includes/blocks/animations-extension/block.php:14
msgid "Add animations to Spectra blocks."
msgstr ""

#: includes/blocks/blockquote/block.php:16
#: dist/blocks-placeholder.js:10
#: dist/blocks.js:19
msgid "Blockquote"
msgstr ""

#: includes/blocks/blockquote/block.php:17
#: dist/blocks.js:19
msgid "Display qoutes/quoted texts using blockquote."
msgstr ""

#: includes/blocks/buttons-child/block.php:14
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Button"
msgstr ""

#: includes/blocks/buttons-child/block.php:15
msgid "Customize this button as per your need."
msgstr ""

#: includes/blocks/buttons/block.php:16
#: dist/blocks-placeholder.js:11
#: dist/blocks.js:19
msgid "Buttons"
msgstr ""

#: includes/blocks/buttons/block.php:17
#: dist/blocks.js:19
msgid "Add multiple buttons to redirect user to different webpages."
msgstr ""

#: includes/blocks/call-to-action/block.php:16
#: dist/blocks-placeholder.js:12
#: dist/blocks.js:3
#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Call To Action"
msgstr ""

#: includes/blocks/call-to-action/block.php:17
#: dist/blocks.js:19
msgid "Add a button along with heading and description."
msgstr ""

#: includes/blocks/cf7-styler/block.php:16
#: dist/blocks.js:23
msgid "Contact Form 7 Designer"
msgstr ""

#: includes/blocks/cf7-styler/block.php:17
msgid "Highly customize and style your Contact Form 7 forms."
msgstr ""

#: includes/blocks/column/block.php:14
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Column"
msgstr ""

#: includes/blocks/column/block.php:15
msgid "Immediate child of Advanced Columns."
msgstr ""

#: includes/blocks/columns/block.php:16
#: dist/blocks.js:23
msgid "Advanced Columns"
msgstr ""

#: includes/blocks/columns/block.php:17
#: dist/blocks.js:23
msgid "Insert a number of columns within a single row."
msgstr ""

#: includes/blocks/container/block.php:16
#: dist/blocks-placeholder.js:13
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Container"
msgstr ""

#: includes/blocks/container/block.php:17
#: dist/blocks.js:15
msgid "Create beautiful layouts with flexbox powered container block."
msgstr ""

#: includes/blocks/content-timeline-child/block.php:14
#: dist/blocks.js:19
msgid "Content Timeline Child"
msgstr ""

#: includes/blocks/content-timeline-child/block.php:15
msgid "Add and customize displaying content of this timeline."
msgstr ""

#: includes/blocks/content-timeline/block.php:16
#: dist/blocks-placeholder.js:46
#: dist/blocks.js:19
msgid "Content Timeline"
msgstr ""

#: includes/blocks/content-timeline/block.php:17
#: dist/blocks.js:19
msgid "Create a timeline displaying contents of your site."
msgstr ""

#: includes/blocks/countdown/attributes.php:34
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "DAYS"
msgstr ""

#: includes/blocks/countdown/attributes.php:35
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "HOURS"
msgstr ""

#: includes/blocks/countdown/attributes.php:36
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "MINUTES"
msgstr ""

#: includes/blocks/countdown/attributes.php:37
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "SECONDS"
msgstr ""

#: includes/blocks/countdown/block.php:16
#: dist/blocks-placeholder.js:14
#: dist/blocks.js:19
msgid "Countdown"
msgstr ""

#: includes/blocks/countdown/block.php:17
msgid "This block allows you to add countdown timers."
msgstr ""

#: includes/blocks/counter/attributes.php:29
#: dist/blocks.js:3
msgid "Add Your Title Here…"
msgstr ""

#: includes/blocks/counter/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:15
#: dist/blocks.js:19
msgid "Counter"
msgstr ""

#: includes/blocks/counter/block.php:17
#: dist/blocks.js:19
msgid "This block allows you to add number counter."
msgstr ""

#: includes/blocks/faq-child/block.php:14
#: dist/blocks.js:19
msgid "FAQ Child"
msgstr ""

#: includes/blocks/faq-child/block.php:15
msgid "Add a frequently asked question/accordian to display information."
msgstr ""

#: includes/blocks/faq/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:16
#: dist/blocks.js:19
msgid "FAQ"
msgstr ""

#: includes/blocks/faq/block.php:17
#: dist/blocks.js:19
msgid "Add accordions/FAQ schema to your page."
msgstr ""

#: includes/blocks/forms-accept/block.php:14
#: dist/blocks.js:19
msgid "Accept"
msgstr ""

#: includes/blocks/forms-accept/block.php:15
#: dist/blocks.js:19
msgid "Add a consent statement with a checkbox in your form."
msgstr ""

#: includes/blocks/forms-checkbox/block.php:14
#: dist/blocks.js:19
msgid "Checkbox"
msgstr ""

#: includes/blocks/forms-checkbox/block.php:15
msgid "Add checkboxes to allow mulitple choices from optons."
msgstr ""

#: includes/blocks/forms-date/block.php:14
#: dist/blocks.js:19
msgid "Datepicker"
msgstr ""

#: includes/blocks/forms-date/block.php:15
#: dist/blocks.js:19
msgid "Add a calendar based date picker in your form."
msgstr ""

#: includes/blocks/forms-email/block.php:14
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Email"
msgstr ""

#: includes/blocks/forms-email/block.php:15
msgid "Add an email address field in your form"
msgstr ""

#: includes/blocks/forms-hidden/block.php:14
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Hidden"
msgstr ""

#: includes/blocks/forms-hidden/block.php:15
msgid "Add a hidden field in your form to pass data"
msgstr ""

#: includes/blocks/forms-name/block.php:14
#: dist/blocks.js:3
#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Name"
msgstr ""

#: includes/blocks/forms-name/block.php:15
msgid "Add a name field in your form"
msgstr ""

#: includes/blocks/forms-phone/block.php:15
msgid "Add a phone number field in your form"
msgstr ""

#: includes/blocks/forms-radio/block.php:15
#: dist/blocks.js:19
msgid "Add radio select boxes to allow a single choice from options."
msgstr ""

#: includes/blocks/forms-select/block.php:16
#: dist/blocks.js:19
msgid "Add a select dropdown to list choices."
msgstr ""

#: includes/blocks/forms-textarea/block.php:14
#: dist/blocks.js:19
msgid "Textarea"
msgstr ""

#: includes/blocks/forms-textarea/block.php:15
msgid "Add a text field in your form"
msgstr ""

#: includes/blocks/forms-toggle/block.php:14
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Toggle"
msgstr ""

#: includes/blocks/forms-toggle/block.php:15
#: dist/blocks.js:19
msgid "Add a toggle button in your form."
msgstr ""

#: includes/blocks/forms-upload/block.php:15
msgid "Add a attachment in your form."
msgstr ""

#: includes/blocks/forms-url/block.php:15
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "URL"
msgstr ""

#: includes/blocks/forms-url/block.php:16
#: dist/blocks.js:19
msgid "Add a URL input field in your form."
msgstr ""

#: includes/blocks/forms/attributes.php:35
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Submit"
msgstr ""

#: includes/blocks/forms/attributes.php:36
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Spectra Form"
msgstr ""

#: includes/blocks/forms/attributes.php:41
msgid "The form has been submitted Successfully!"
msgstr ""

#: includes/blocks/forms/attributes.php:127
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "There has been some error while submitting the form. Please verify all form fields again."
msgstr ""

#: includes/blocks/forms/attributes.php:174
#: includes/blocks/forms/frontend.js.php:50
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Please fill up the above captcha."
msgstr ""

#: includes/blocks/forms/block.php:16
#: dist/blocks-placeholder.js:17
#: dist/blocks.js:19
msgid "Form"
msgstr ""

#: includes/blocks/forms/block.php:17
#: dist/blocks.js:19
msgid "Add easily customizable forms to gather information."
msgstr ""

#: includes/blocks/gf-styler/block.php:16
#: dist/blocks.js:23
msgid "Gravity Form Designer"
msgstr ""

#: includes/blocks/gf-styler/block.php:17
#: dist/blocks.js:23
msgid "Highly customize and style your forms created by Gravity Forms."
msgstr ""

#: includes/blocks/google-map/block.php:16
#: dist/blocks-placeholder.js:18
#: dist/blocks.js:19
msgid "Google Maps"
msgstr ""

#: includes/blocks/google-map/block.php:17
#: dist/blocks.js:19
msgid "Show a Google Map location on your website."
msgstr ""

#: includes/blocks/how-to-step/block.php:13
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Step"
msgstr ""

#: includes/blocks/how-to-step/block.php:14
#: dist/blocks.js:19
msgid "Add relevant content for this step."
msgstr ""

#: includes/blocks/how-to/block.php:16
#: dist/blocks-placeholder.js:19
#: dist/blocks.js:19
msgid "How To"
msgstr ""

#: includes/blocks/how-to/block.php:17
#: dist/blocks.js:19
msgid "Add instructions/steps on processes using how to block."
msgstr ""

#: includes/blocks/icon-list-child/block.php:14
#: includes/blocks/icon/block.php:16
#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:109
#: dist/blocks-placeholder.js:21
#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Icon"
msgstr ""

#: includes/blocks/icon-list-child/block.php:15
#: dist/blocks.js:19
msgid "Add and customize content for this list component."
msgstr ""

#: includes/blocks/icon-list/attributes.php:19
msgid "Label #1"
msgstr ""

#: includes/blocks/icon-list/block.php:16
#: dist/blocks-placeholder.js:20
#: dist/blocks.js:19
msgid "Icon List"
msgstr ""

#: includes/blocks/icon-list/block.php:17
#: dist/blocks.js:19
msgid "Create a list highlighted with icons/images."
msgstr ""

#: includes/blocks/icon/block.php:17
#: dist/blocks.js:19
msgid "Add stunning customizable icons to your website."
msgstr ""

#: includes/blocks/image-gallery/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:22
#: dist/blocks.js:19
msgid "Image Gallery"
msgstr ""

#: includes/blocks/image-gallery/block.php:17
#: dist/blocks.js:19
msgid "Create a highly customizable image gallery"
msgstr ""

#: includes/blocks/image/block.php:17
#: dist/blocks.js:19
msgid "Add images on your webpage with multiple customization options."
msgstr ""

#: includes/blocks/info-box/block.php:16
#: dist/blocks-placeholder.js:24
#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Info Box"
msgstr ""

#: includes/blocks/info-box/block.php:17
msgid "Add image/icon, seperator and text description using a single block."
msgstr ""

#: includes/blocks/inline-notice/block.php:16
#: dist/blocks-placeholder.js:25
#: dist/blocks.js:19
msgid "Inline Notice"
msgstr ""

#: includes/blocks/inline-notice/block.php:17
#: dist/blocks.js:19
msgid "Highlight important information using inline notice block."
msgstr ""

#: includes/blocks/instagram-feed/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Instagram Feed"
msgstr ""

#: includes/blocks/instagram-feed/block.php:17
msgid "This block allows you to add Instagram Feeds."
msgstr ""

#: includes/blocks/login/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Login Form"
msgstr ""

#: includes/blocks/login/block.php:17
msgid "This block lets you add a user login form."
msgstr ""

#: includes/blocks/loop-builder/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Loop Builder"
msgstr ""

#: includes/blocks/loop-builder/block.php:17
msgid "This block allows you to generate custom loop from different posts."
msgstr ""

#: includes/blocks/lottie/block.php:16
#: dist/blocks-placeholder.js:26
#: dist/blocks.js:19
msgid "Lottie Animation"
msgstr ""

#: includes/blocks/lottie/block.php:17
#: dist/blocks.js:19
msgid "Add customizable lottie animation on your page."
msgstr ""

#: includes/blocks/marketing-button/block.php:16
#: dist/blocks-placeholder.js:27
#: dist/blocks.js:19
msgid "Marketing Button"
msgstr ""

#: includes/blocks/marketing-button/block.php:17
#: dist/blocks.js:19
msgid "Add a marketing call to action button with a short description."
msgstr ""

#: includes/blocks/masonry-gallery/block.php:13
#: admin-core/assets/build/dashboard-app.js:4
#: dist/blocks.js:19
msgid "Masonry Gallery"
msgstr ""

#: includes/blocks/masonry-gallery/block.php:14
msgid "Display your core gallery in a masonary layout."
msgstr ""

#: includes/blocks/modal/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:28
#: dist/blocks.js:19
msgid "Modal"
msgstr ""

#: includes/blocks/modal/block.php:17
#: dist/blocks.js:19
msgid "This block allows you to add modal popup."
msgstr ""

#: includes/blocks/popup-builder/block.php:17
msgid "Create eye-catching popups that can be reused sitewide!"
msgstr ""

#: includes/blocks/post-button/block.php:14
#: dist/blocks.js:19
msgid "Post Button"
msgstr ""

#: includes/blocks/post-button/block.php:15
#: dist/blocks.js:19
msgid "Customize this post button."
msgstr ""

#: includes/blocks/post-carousel/block.php:16
#: dist/blocks-placeholder.js:30
#: dist/blocks.js:19
msgid "Post Carousel"
msgstr ""

#: includes/blocks/post-carousel/block.php:17
#: dist/blocks.js:19
msgid "Display your posts in a sliding carousel layout."
msgstr ""

#: includes/blocks/post-excerpt/block.php:15
#: dist/blocks.js:19
msgid "Post Excerpt"
msgstr ""

#: includes/blocks/post-excerpt/block.php:16
msgid "Show your post's excerpt "
msgstr ""

#: includes/blocks/post-grid/block.php:16
#: dist/blocks-placeholder.js:31
#: dist/blocks.js:19
msgid "Post Grid"
msgstr ""

#: includes/blocks/post-grid/block.php:17
msgid "Display your posts in a grid layout."
msgstr ""

#: includes/blocks/post-image/block.php:14
#: dist/blocks.js:19
msgid "Post Image"
msgstr ""

#: includes/blocks/post-image/block.php:15
#: dist/blocks.js:19
msgid "Customize your post image."
msgstr ""

#: includes/blocks/post-masonry/block.php:16
#: dist/blocks.js:23
msgid "Post Masonry"
msgstr ""

#: includes/blocks/post-masonry/block.php:17
#: dist/blocks.js:23
msgid "Display your posts in a masonary layout."
msgstr ""

#: includes/blocks/post-meta/block.php:14
#: dist/blocks.js:19
msgid "Post Meta"
msgstr ""

#: includes/blocks/post-meta/block.php:15
#: dist/blocks.js:19
msgid "Show your post meta details."
msgstr ""

#: includes/blocks/post-taxonomy/block.php:14
#: dist/blocks.js:19
msgid "Post Taxonomy"
msgstr ""

#: includes/blocks/post-taxonomy/block.php:15
#: dist/blocks.js:19
msgid "Show your post's under categories."
msgstr ""

#: includes/blocks/post-timeline/block.php:16
#: dist/blocks-placeholder.js:47
#: dist/blocks.js:19
msgid "Post Timeline"
msgstr ""

#: includes/blocks/post-timeline/block.php:17
#: dist/blocks.js:19
msgid "Create an attractive timeline to display your posts."
msgstr ""

#: includes/blocks/post-title/block.php:15
#: dist/blocks.js:19
msgid "Post Title"
msgstr ""

#: includes/blocks/post-title/block.php:16
#: dist/blocks.js:19
msgid "Customize your post title."
msgstr ""

#: includes/blocks/register/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Registration Form"
msgstr ""

#: includes/blocks/register/block.php:17
msgid "This block lets you add a user register form."
msgstr ""

#: includes/blocks/restaurant-menu-child/block.php:14
#: dist/blocks.js:19
msgid "Price List-Child"
msgstr ""

#: includes/blocks/restaurant-menu-child/block.php:15
#: dist/blocks.js:19
msgid "Add information for this product."
msgstr ""

#: includes/blocks/restaurant-menu/block.php:16
#: dist/blocks-placeholder.js:32
#: dist/blocks.js:19
msgid "Price List"
msgstr ""

#: includes/blocks/restaurant-menu/block.php:17
#: dist/blocks.js:19
msgid "Create an attractive price list for your products."
msgstr ""

#: includes/blocks/review/block.php:16
#: dist/blocks-placeholder.js:36
#: dist/blocks.js:19
msgid "Review"
msgstr ""

#: includes/blocks/review/block.php:17
#: dist/blocks.js:19
msgid "Add reviews to items with Schema support."
msgstr ""

#: includes/blocks/section/block.php:16
#: dist/blocks.js:23
msgid "Advanced Row"
msgstr ""

#: includes/blocks/section/block.php:17
#: dist/blocks.js:23
msgid "Outer wrap section that allows you to add other blocks within it."
msgstr ""

#: includes/blocks/separator/block.php:16
#: dist/blocks-placeholder.js:37
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Separator"
msgstr ""

#: includes/blocks/separator/block.php:17
#: dist/blocks.js:19
msgid "Add a modern separator to divide your page content with icon/text."
msgstr ""

#: includes/blocks/slider-child/block.php:14
#: includes/blocks/slider/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:38
#: dist/blocks.js:19
msgid "Slider"
msgstr ""

#: includes/blocks/slider-child/block.php:15
msgid "Customize this slider as per your need."
msgstr ""

#: includes/blocks/slider/block.php:17
msgid "Create a Slider."
msgstr ""

#: includes/blocks/social-share-child/block.php:14
#: dist/blocks.js:19
msgid "Social Share Child"
msgstr ""

#: includes/blocks/social-share-child/block.php:15
msgid "Share your content on this social media platform."
msgstr ""

#: includes/blocks/social-share/block.php:16
#: dist/blocks-placeholder.js:39
#: dist/blocks.js:19
msgid "Social Share"
msgstr ""

#: includes/blocks/social-share/block.php:17
#: dist/blocks.js:19
msgid "Share your content on different social media platforms."
msgstr ""

#: includes/blocks/star-rating/block.php:16
#: dist/blocks-placeholder.js:40
#: dist/blocks.js:19
msgid "Star Ratings"
msgstr ""

#: includes/blocks/star-rating/block.php:17
#: dist/blocks.js:19
msgid "Display customizable star ratings on your page."
msgstr ""

#: includes/blocks/table-of-contents/block.php:16
msgid "Table of Contents"
msgstr ""

#: includes/blocks/table-of-contents/block.php:17
#: dist/blocks.js:19
msgid "Add a table of contents to allow page navigation."
msgstr ""

#: includes/blocks/tabs-child/block.php:14
#: dist/blocks.js:19
msgid "Tabs child"
msgstr ""

#: includes/blocks/tabs-child/block.php:15
#: dist/blocks.js:19
msgid "Display your content in a tab."
msgstr ""

#: includes/blocks/tabs/block.php:16
#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks-placeholder.js:42
#: dist/blocks.js:19
msgid "Tabs"
msgstr ""

#: includes/blocks/tabs/block.php:17
#: dist/blocks.js:19
msgid "Display your content under different tabs."
msgstr ""

#: includes/blocks/taxonomy-list/block.php:16
#: dist/blocks-placeholder.js:43
#: dist/blocks.js:19
msgid "Taxonomy List"
msgstr ""

#: includes/blocks/taxonomy-list/block.php:17
#: dist/blocks.js:19
msgid "Display your content categorized as per post type."
msgstr ""

#: includes/blocks/team/block.php:16
#: dist/blocks-placeholder.js:44
#: dist/blocks.js:19
msgid "Team"
msgstr ""

#: includes/blocks/team/block.php:17
#: dist/blocks.js:19
msgid "Showcase your team by displaying info and social media profiles."
msgstr ""

#: includes/blocks/testimonial/block.php:16
#: dist/blocks-placeholder.js:45
#: dist/blocks.js:19
msgid "Testimonials"
msgstr ""

#: includes/blocks/testimonial/block.php:17
msgid "Display customer testimonials with customizable layouts."
msgstr ""

#: includes/blocks/wp-search/block.php:16
#: dist/blocks.js:11
#: dist/blocks.js:23
msgid "Search"
msgstr ""

#: includes/blocks/wp-search/block.php:17
#: dist/blocks.js:23
msgid "Add a search widget to let users search posts from your website."
msgstr ""

#: lib/astra-notices/class-astra-notices.php:146
msgid "WordPress Nonce not validated."
msgstr ""

#: lib/astra-notices/class-astra-notices.php:153
msgid "Invalid notice ID."
msgstr ""

#. translators: %d: Minutes interval
#: lib/batch-processing/class-wp-background-process.php:425
msgid "Every %d Minutes"
msgstr ""

#. translators: %s product name
#: lib/bsf-analytics/class-bsf-analytics.php:228
msgid "Want to help make %1s even more awesome? Allow us to collect non-sensitive diagnostic data and usage information. "
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:231
msgid "This will be applicable for all sites from the network."
msgstr ""

#. translators: %s usage doc link
#: lib/bsf-analytics/class-bsf-analytics.php:255
msgid " Know More."
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:265
msgid "Yes! Allow it"
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:276
msgid "No Thanks"
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:387
#: admin-core/assets/build/dashboard-app.js:14
msgid "Usage Tracking"
msgstr ""

#. translators: %s Product title
#: lib/bsf-analytics/class-bsf-analytics.php:431
msgid "Allow %s products to track non-sensitive usage tracking data."
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:434
msgid " This will be applicable for all sites from the network."
msgstr ""

#: lib/bsf-analytics/class-bsf-analytics.php:439
msgid "Learn More."
msgstr ""

#: lib/bsf-analytics/classes/class-bsf-analytics-helper.php:28
msgid "Oops! Something went wrong. Please refresh the page and try again."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:80
msgid "Quick Feedback"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:83
msgid "If you have a moment, please share why you are deactivating the plugin."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:134
#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:309
msgid "Please tell us more details."
msgstr ""

#. translators: %1$s: link html start, %2$s: link html end
#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:143
msgid "Need help from our experts? %1$sClick here to contact us.%2$s"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:154
msgid "Submit & Deactivate"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:155
msgid "Skip & Deactivate"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:284
msgid "This is a temporary deactivation for testing."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:285
msgid "How can we assist you?"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:290
msgid "The plugin isn't working properly."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:291
msgid "Please tell us more about what went wrong?"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:296
msgid "I found a better alternative plugin."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:297
msgid "Could you please specify which plugin?"
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:302
msgid "It's missing a specific feature."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:303
msgid "Please tell us more about the feature."
msgstr ""

#: lib/bsf-analytics/modules/deactivation-survey/classes/class-deactivation-survey-feedback.php:308
#: dist/blocks.js:11
msgid "Other"
msgstr ""

#: lib/class-uagb-ast-block-templates.php:65
#: lib/gutenberg-templates/inc/importer/plugin.php:1004
msgid "Design Library"
msgstr ""

#: lib/gutenberg-templates/inc/api/blocks.php:70
#: lib/gutenberg-templates/inc/api/category.php:70
#: lib/gutenberg-templates/inc/api/description.php:92
#: lib/gutenberg-templates/inc/api/do-it-later.php:69
#: lib/gutenberg-templates/inc/api/favorite.php:96
#: lib/gutenberg-templates/inc/api/images.php:93
#: lib/gutenberg-templates/inc/api/initialize-setup.php:71
#: lib/gutenberg-templates/inc/api/keywords.php:87
#: lib/gutenberg-templates/inc/api/page-description.php:97
#: lib/gutenberg-templates/inc/api/pages.php:74
#: lib/gutenberg-templates/inc/api/revoke-access.php:74
#: lib/gutenberg-templates/inc/api/settings.php:92
#: lib/gutenberg-templates/inc/api/sites.php:70
#: lib/gutenberg-templates/inc/classes/ast-block-templates-zipwp-api.php:77
#: lib/nps-survey/classes/nps-survey-script.php:248
#: lib/zipwp-images/classes/zipwp-images-api.php:91
msgid "Sorry, you are not allowed to do that."
msgstr ""

#: lib/gutenberg-templates/inc/api/blocks.php:93
#: lib/gutenberg-templates/inc/api/category.php:93
#: lib/gutenberg-templates/inc/api/description.php:112
#: lib/gutenberg-templates/inc/api/favorite.php:135
#: lib/gutenberg-templates/inc/api/images.php:113
#: lib/gutenberg-templates/inc/api/keywords.php:107
#: lib/gutenberg-templates/inc/api/page-description.php:117
#: lib/gutenberg-templates/inc/api/revoke-access.php:95
#: lib/gutenberg-templates/inc/api/settings.php:131
#: lib/gutenberg-templates/inc/api/sites.php:93
#: lib/gutenberg-templates/inc/classes/ast-block-templates-zipwp-api.php:138
#: lib/gutenberg-templates/inc/classes/ast-block-templates-zipwp-api.php:197
#: lib/nps-survey/classes/nps-survey-script.php:270
#: lib/nps-survey/classes/nps-survey-script.php:376
#: lib/zipwp-images/classes/zipwp-images-api.php:167
msgid "Nonce verification failed."
msgstr ""

#: lib/gutenberg-templates/inc/api/favorite.php:181
msgid "Action Completed"
msgstr ""

#: lib/gutenberg-templates/inc/api/favorite.php:181
msgid "Action failed"
msgstr ""

#: lib/gutenberg-templates/inc/api/settings.php:182
msgid "Sorry, settings are not saved."
msgstr ""

#: lib/gutenberg-templates/inc/classes/ast-block-templates-notices.php:53
msgid "File Permissions Needed - Importing patterns, pages, and templates from Design Library requires proper file permissions. For guidance on resolving this issue and ensuring smooth importing processes, please refer to the accompanying documentation."
msgstr ""

#: lib/gutenberg-templates/inc/classes/ast-block-templates-notices.php:57
msgid "Doc: "
msgstr ""

#: lib/gutenberg-templates/inc/classes/ast-block-templates-notices.php:57
msgid "Resolve file permission issue"
msgstr ""

#: lib/gutenberg-templates/inc/importer/plugin.php:245
#: lib/gutenberg-templates/inc/importer/plugin.php:293
#: lib/gutenberg-templates/inc/importer/plugin.php:337
#: lib/gutenberg-templates/inc/importer/plugin.php:361
#: lib/gutenberg-templates/inc/importer/plugin.php:461
#: lib/gutenberg-templates/inc/importer/plugin.php:811
#: lib/gutenberg-templates/inc/importer/sync-library.php:320
#: lib/gutenberg-templates/inc/importer/sync-library.php:447
#: lib/gutenberg-templates/inc/importer/sync-library.php:472
#: lib/gutenberg-templates/inc/importer/sync-library.php:515
#: lib/gutenberg-templates/inc/importer/sync-library.php:809
#: lib/gutenberg-templates/inc/importer/sync-library.php:844
#: lib/gutenberg-templates/inc/importer/template-kit-importer.php:43
#: lib/gutenberg-templates/inc/importer/template-kit-importer.php:109
#: lib/gutenberg-templates/inc/traits/upgrade.php:35
#: lib/zipwp-images/classes/zipwp-images-api.php:261
msgid "You are not allowed to perform this action"
msgstr ""

#: lib/gutenberg-templates/inc/importer/plugin.php:270
#: lib/gutenberg-templates/inc/importer/plugin.php:274
#: lib/gutenberg-templates/inc/importer/plugin.php:445
#: lib/zip-ai/classes/sidebar-configurations.php:268
msgid "Something went wrong"
msgstr ""

#: lib/gutenberg-templates/inc/importer/plugin.php:780
msgid "You are not allowed to perform this action."
msgstr ""

#: lib/gutenberg-templates/inc/importer/plugin.php:823
msgid "Something wrong"
msgstr ""

#. Translators: %s is API URL.
#: lib/gutenberg-templates/inc/importer/template-kit-importer.php:56
msgid "Invalid Request URL - %s"
msgstr ""

#: lib/gutenberg-templates/inc/traits/helper.php:225
#: lib/zip-ai/classes/helper.php:151
msgid "The Zip AI Endpoint was not declared"
msgstr ""

#: lib/gutenberg-templates/inc/traits/helper.php:235
#: lib/zip-ai/classes/helper.php:161
msgid "The Zip AI Auth Token is not set."
msgstr ""

#: lib/gutenberg-templates/inc/traits/helper.php:257
msgid "The Zip AI Middleware is not responding."
msgstr ""

#: lib/gutenberg-templates/inc/traits/helper.php:267
msgid "The Zip AI Middleware encountered an error."
msgstr ""

#. translators: %1$s: HTML link start tag, %2$s: HTML link end tag.
#: lib/zip-ai/classes/admin-configurations.php:513
msgid "Thank you for using %1$sZip AI.%2$s"
msgstr ""

#: lib/zip-ai/classes/helper.php:195
msgid "Empty response from API."
msgstr ""

#: lib/zip-ai/classes/helper.php:196
msgid "empty_response"
msgstr ""

#: lib/zip-ai/classes/helper.php:216
msgid "You do not have permission to perform this action."
msgstr ""

#: lib/zip-ai/classes/helper.php:227
msgid "Encountered an error while processing your request. Please try again."
msgstr ""

#: lib/zip-ai/classes/helper.php:251
msgid "The ZipWP Endpoint was not declared"
msgstr ""

#: lib/zip-ai/classes/helper.php:261
msgid "The ZipWP Token is not set."
msgstr ""

#: lib/zip-ai/classes/helper.php:285
msgid "The ZipWP API server is not responding."
msgstr ""

#: lib/zip-ai/classes/helper.php:295
msgid "The ZipWP API server encountered an error."
msgstr ""

#: lib/zip-ai/classes/sidebar-configurations.php:188
msgid "The message array was not supplied"
msgstr ""

#: lib/zip-ai/classes/sidebar-configurations.php:285
msgid "Authentication failed. Invalid or missing bearer token."
msgstr ""

#: lib/zip-ai/classes/sidebar-configurations.php:287
msgid "You've run out of credits."
msgstr ""

#: lib/zip-ai/classes/sidebar-configurations.php:289
msgid "To continue using the assistant and access its full features, please purchase more credits."
msgstr ""

#: lib/zip-ai/classes/sidebar-configurations.php:291
msgid "Buy more credits"
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-api.php:270
msgid "Need to send photo ID"
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-api.php:274
msgid "Need to send URL of the image to be downloaded"
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-api.php:284
msgid "Could not download the image."
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-script.php:115
msgid "Search Images"
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-script.php:116
msgid "Search - Ex: flowers"
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-script.php:117
msgid "Downloading..."
msgstr ""

#: lib/zipwp-images/classes/zipwp-images-script.php:118
msgid "Validating..."
msgstr ""

#. translators: %s: PHP version
#: ultimate-addons-for-gutenberg.php:40
msgid "Spectra requires PHP version %s+, plugin is currently NOT RUNNING."
msgstr ""

#. translators: %s: WordPress version
#: ultimate-addons-for-gutenberg.php:57
msgid "Spectra requires WordPress version %s+. Because you are using an earlier version, the plugin is currently NOT RUNNING."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "What's New?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "Unlock Spectra's Full Potential!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "Get exclusive features and unbeatable performance."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "Upgrade now"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:19
msgid "Free"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
#: admin-core/assets/build/dashboard-app.js:4
msgid "Open Menu"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "Version"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "Core"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:1
msgid "License Status"
msgstr ""

#. translators: credits in k format
#. translators: abbreviation for units
#: admin-core/assets/build/dashboard-app.js:2
#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:10
#: admin-core/assets/build/dashboard-app.js:18
msgid " %s"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:2
msgid "AI Credits"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
msgid "Manage Plan"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
msgid "Unlock Pro Features"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Utilize advanced blocks, extensions, and premium features to create a websites that stands out!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:17
msgid "Instagram Feed Block"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:11
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Dynamic Content"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:11
msgid "Global Block Styles"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "And More…"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:9
#: dist/blocks.js:11
msgid "/year"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:9
#: dist/blocks.js:11
#: dist/blocks.js:23
msgid "Buy Now"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:18
msgid "Free VS Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:9
#: dist/blocks.js:11
msgid "View plans"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Activating.."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Installing.."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Install"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Activate Theme"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Are you sure you want to switch your current theme to Astra?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Yes"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: dist/blocks.js:11
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Close"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Extend Your Website"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Build Website 10x Faster With AI"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Beautiful pages, persuasive content, and custom code in seconds. The possibilities are endless!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Explore"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Get 1000 Free Monthly Credits"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Quick Access"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "VIP Support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Help Center"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Join The Community"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Rate Us"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Video Tutorials"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "See More"
msgstr ""

#. translators: abbreviation for units
#: admin-core/assets/build/dashboard-app.js:3
msgid "Hi %s. 👋"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Welcome To Spectra"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Thanks for choosing Spectra Pro! You're now part of an exclusive community of website builders. Enjoy exploring the new features and creating something amazing. Let's take your site to the next level together."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "We designed Spectra to be intuitive but we do recommend learning how it works by checking our comprehensive documentation and watching the video below. Enjoy your time with Spectra!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Create New Page"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Read Full Guide"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: blocks-config/uagb-controls/getApiData.js:22
#: dist/blocks.js:11
msgid "data object is empty"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:9
#: admin-core/assets/build/dashboard-app.js:11
#: admin-core/assets/build/dashboard-app.js:12
#: admin-core/assets/build/dashboard-app.js:14
#: admin-core/assets/build/dashboard-app.js:17
msgid "Successfully saved!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Core blocks are essential for Spectra's operation and cannot be turned off."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Core Block"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Demo"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Extension"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "Documentation"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
#: admin-core/assets/build/dashboard-app.js:4
#: dist/blocks.js:19
msgid "Animations"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:3
msgid "View All"
msgstr ""

#. translators: %s: Number of active blocks.
#: admin-core/assets/build/dashboard-app.js:4
msgid "%s/4 Blocks"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Configure"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:17
msgid "Connected"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Connect"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Launch"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Open a ticket"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Dynamic content"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Global Block Style"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Popup Builder Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Modal Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Advanced Animations"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Countdown Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Slider Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:18
msgid "Image Gallery Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: dist/blocks.js:19
msgid "Display Conditions"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: dist/blocks.js:19
msgid "Responsive Conditions"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Activate All"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Deactivate All"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "File Generation"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Spectra loads the CSS and JS inline on the page by default. If you want to generate separate CSS and JS files for Spectra blocks, enable this option. "
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Please read "
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid " to learn the difference between generating CSS and JS inline and in a separate file."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Asset Regeneration"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Facing issues with style, layout, color or another page element? Use this option to regenerate CSS and Javascript assets. It can help with all kinds of asset issues."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Regenerate Assets"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Please note that after regeneration, it is recommended to purge all your cache to ensure that old assets are not served, preventing potential frontend breaking issues."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Regenerate"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: admin-core/assets/build/dashboard-app.js:7
#: admin-core/assets/build/dashboard-app.js:9
#: admin-core/assets/build/dashboard-app.js:16
#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Cancel"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
#: dist/blocks.js:23
msgid "Custom CSS"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:4
msgid "Enable the \"Custom CSS\" option if you want to add your own CSS code on post/page to customize the page as per your expectations."
msgstr ""

#. translators: abbreviation for units
#: admin-core/assets/build/dashboard-app.js:5
msgid "Experiencing an issue with Spectra version %s? Roll back to a previous version to help troubleshoot the issue."
msgstr ""

#. translators: %1$s: selected version of Spectra.
#: admin-core/assets/build/dashboard-app.js:7
msgid "Are you sure you want to rollback to Spectra v%1$s?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Enable Beta"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Enable this option to turn on beta updates and be notified when a new beta version of Spectra is available. The beta version will not install automatically, you will have to install it when you get a notification. It is recommended to try beta on a test environment only."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Enable Legacy Blocks"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Enable this option to enable the support of our Legacy Blocks on the site."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Allow Only Selected Fonts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
#: admin-core/assets/build/dashboard-app.js:9
msgid "Spectra offers 1500+ Google font options. If this is overwhelming for your clients, you can use this option to show only limited number of fonts in the block settings."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
#: admin-core/assets/build/dashboard-app.js:9
msgid "Select the font families you want"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:7
msgid "Remove Font Family"
msgstr ""

#. translators: %1$s: Strong Tag,  %2$s: selected font family of Spectra, %3$s Strong Closing Tag.
#: admin-core/assets/build/dashboard-app.js:9
msgid "Are you sure you want to remove %1$s%2$s%3$s font family?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Remove"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Font Families"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Select one or more font weights"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Select one or more font styles"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Add Google Font"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
#: dist/blocks.js:15
msgid "Font Family"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Variant"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
#: dist/blocks.js:1
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Style"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Currently, no Font Families added."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Load Google Fonts Locally"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Enable this option to download Google fonts and save them on your server. This can be great for improving speed of your website and to comply with GDPR laws."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Preload Local Fonts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "This option will load the font files right away on page load. Preloading Local Fonts can speeds up your website even further."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Copy Paste Styles"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:9
msgid "Enable the \"Copy Paste Styles\" option to have the ability to copy & paste Spectra & Core Gutenberg Blocks Styles."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:10
#: admin-core/assets/build/dashboard-app.js:18
msgid "Activate Now"
msgstr ""

#. translators: abbreviation for units
#: admin-core/assets/build/dashboard-app.js:11
msgid "You are using %1$s version, %2$s"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Spectra Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Astra Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Premium Starter Templates"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Ultimate Addons for Elementor"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Elementor Premium Templates"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Seamless Page Building"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "Essential Toolkit"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "SureFeedback"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "SureWriter Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "SureTriggers Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "CartFlows Starter"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: dist/blocks.js:11
msgid "ZipWP Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Sidebar"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Unlock Dynamic Content"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Dynamic Content, Tailored for Every Visitor"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Tailored content for individual users based on their preferences and behavior anywhere on your website."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Text and images anywhere from any source"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Update once to reflect changes everywhere"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Dynamic content fallback"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
#: admin-core/assets/build/dashboard-app.js:17
msgid "PRO"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Choose how you want to display dynamic content settings"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "delivers relevant content for higher engagement."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Personalized content"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Choose how you want to display dynamic content settings."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "Default Content Width"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:11
msgid "This setting will apply to Container Block's default Content Width."
msgstr ""

#. translators: abbreviation for units
#: admin-core/assets/build/dashboard-app.js:12
msgid "The current Content width is applied from %s."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Blocks Editor Spacing"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "This setting will apply spacing in between all blocks inside block editor."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Select the page you want"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Enable Coming Soon Mode"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Is your website still in the making and not yet ready for other people to see? When the site is ready to be indexed, the 'Coming Soon' page returns an HTTP 200 status code."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Enable Maintenance Mode"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Maintenance Mode returns an HTTP 503 status code, signaling to search engines to revisit the website shortly. However, it's advisable not to utilize this mode for extended periods, ideally limiting its use to a few days."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
#: dist/blocks.js:19
msgid "Google reCAPTCHA"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "To enable reCAPTCHA for your form, please follow the steps mentioned "
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "here. "
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "reCAPTCHA v2"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Site Key v2"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Secret Key v2"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "reCAPTCHA v3"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Site Key v3"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Secret Key v3"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Load Font Awesome 5 Support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Enable this to make sure all previously used Font Awesome 5 icons are displayed correctly while using the Font Awesome 6 library."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Automatic Block Recovery"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Enable this to automatically recover any erroneous blocks that may occur on your web pages. This will save you time spent on clicking all those \"Attempt Block Recovery\" Buttons."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Container Padding"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "This setting will apply default padding in the Container Block."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Container Elements Gap"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "This setting will apply default Row & Column Gaps in the Container Block."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Deactivate"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Your license is active."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Paste your license key here"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
#: admin-core/assets/build/dashboard-app.js:14
msgid "License successfully validated!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
msgid "Please enter your valid license key below to activate Spectra Pro!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:12
#: admin-core/assets/build/dashboard-app.js:17
msgid "License Key"
msgstr ""

#. translators: %1$s: first anchor tag start, %2$s: first anchor tag end, %3$s second anchor tag start, %4$s second anchor tag end.
#: admin-core/assets/build/dashboard-app.js:14
msgid "Activate %1$sSpectra Pro%2$s to get professional support and automatic updates from your WordPress dashboard. If you don't have a license, you can %3$sget it here »%4$s"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "Please enter a valid license key!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "License successfully deactivated!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "Button - Inherit From Theme"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "Enable the \"Inherit From Theme\" option to make all buttons in Spectra blocks across your website inherit their styles from the theme."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "Help us improve Spectra by allowing non-sensitive usage tracking. "
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
#: dist/blocks.js:11
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Learn more"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid " about what we track."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:14
msgid "Unlink User"
msgstr ""

#. translators: %1$s: span tag start, %2$s: Instagram account name, %3$s: span tag end.
#: admin-core/assets/build/dashboard-app.js:16
msgid "Are you sure you wish to unlink %1$s@%2$s%3$s?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
#: admin-core/assets/build/dashboard-app.js:17
msgid "Unlink"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
msgid "Link Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
msgid "Linking"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
msgid "Inavalid Token"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
#: admin-core/assets/build/dashboard-app.js:17
msgid "Account Exists!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
#: admin-core/assets/build/dashboard-app.js:17
msgid "Account Linked!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
#: admin-core/assets/build/dashboard-app.js:17
msgid "Failed to Add Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:16
msgid "Connect Instagram"
msgstr ""

#. translators: %1$s: The opening anchor tag with instructions to generate a token. %2$s: The closing anchor tag.
#: admin-core/assets/build/dashboard-app.js:17
msgid "To get started please add your Instagram Access Token. Follow the %1$ssteps%2$s to generate a token, then paste it below and save."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "It looks like one or more accounts have been disabled due to security reasons. Here are some of them:"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "1. The Instagram Account password was changed."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "2. The Instagram Account was made private."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "3. The Instagram Account was unused on Spectra for 60 days."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Please unlink and relink the account(s) marked in red."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Enter your Instagram access token"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Invalid Token"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "No linked accounts."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Please link an Instagram Account to start using it with Spectra!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Personal Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Business Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Instagram Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Disabled"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Meta no longer supports personal accounts. Please unlink, convert to a business account, and relink to restore your feed."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Linked Users"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Enable Templates Button"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Spectra comes with a stunning library of page templates and block patterns. This library is accessible with the Templates button while editing the page or post. Manage the visibility of that button with this option."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Enable Quick Action Bar"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "The Spectra Quick Action Bar lets you have all your frequently used Spectra blocks right at your fingertips!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Collapse Panels"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Enable the \"Collapse Panels\" option if you want to Collapse all other Panels in your Blocks Settings except for the one which is clicked. This way you have only one Panel of Settings in front of you to Focus on."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "My Account"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Editor Options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Editor Enhancements"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Asset Generation"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Version Control"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Performance"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Site Visibility"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Integrations"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Theme Fonts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Limitless Design with Spectra Pro!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Experience design freedom with Spectra Pro. Utilize advanced blocks, extensions, and premium features to create a websites that stands out!"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "And more…"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Unlock Instagram Feed"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Display Your Instagram Journey on Your Website"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Grab the attention of visitors with high quality photos and videos directly from your instagram feed."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Image gallery layouts that suit your website"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Supports multiple Instagram accounts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Abundant customization options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Drive organic traffic with instagram captions"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "please upgrade to use this feature."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Integrate your Instagram feed into your site."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Enhance engagement."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "no license key needed."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Get access to advanced blocks and premium features."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "Reconnect and Continue Using AI Features"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "Get Started with 1000 Free Monthly Credits"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Reconnecting to Use AI Features"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Getting Started with 1000 Free Monthly Credits"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Failed to save setting"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Plan Usage & Limit"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Disconnect AI"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Reconnect AI"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Disconnected"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Inactive"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "This setting allows you to enabled or disable the AI features on your website."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Get More Credits"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: admin-core/assets/build/dashboard-app.js:18
msgid "Reconnect"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Get Started"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
#: lib/zip-ai/sidebar/build/sidebar-app.js:12
msgid "AI Assistant"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "It’s like ChatGPT but for WordPress, designed to revolutionize your WordPress experience."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "AI Design Copilot"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Generate personalized content inside Design Library based on your input prompts."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Build 10x Faster with Spectra AI"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Craft Compelling Content"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "With our AI, you can effortlessly create persuasive and engaging copy that resonates with your audience."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "AI-Powered Block Patterns"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Personalize the block patterns and section templates to tailor them to your website's unique needs."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "WordPress Wizardry"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Got questions? Our AI has the answers. Whether it's troubleshooting or customizing your site."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Personalized Templates"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Say goodbye to generic designs and say hello to our AI-personalized page templates, tailored just for you."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Generate Custom Code"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "No more struggling with complex coding issues. Generate custom code, functions, and CSS with AI."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:17
msgid "Custom Pages With AI"
msgstr ""

#. translators: %s: Percentage Ascii Code
#: admin-core/assets/build/dashboard-app.js:18
msgid "You can create beautiful, 100%s custom web pages without the need for any design or coding skills."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Disconnecting will turn off the AI features. You will need to reconnect to use the features again. Are you sure you want to continue?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Disconnect"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Reconnecting will turn the AI features back on. Are you sure you want to continue?"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Custom post type support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Custom field support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "ACF support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Rich text dynamic content support"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Dynamic image support (for Spectra core blocks only)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Text & link field dynamic content support (for Spectra core blocks only)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Layout options (popup view and sidebar settings)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Set delay and duration"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:19
msgid "Change animation pacing"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:19
msgid "Repeat on scroll"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Animate nested blocks"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Create attention-grabbing popups anywhere on your website"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Visually stunning Info Bars and Popups tailored to your brand"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Push Content for flash sales, quick promotions, and exclusive deals"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Control popup triggers: page load, exit intent, or custom class"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Conditionally target specific pages or display site-wide"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Uniform styling across your entire site with Spectra core blocks"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Create and manage multiple styles for different block contexts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Apply global styles effortlessly, ensuring consistency"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Unlink specific blocks for unique customizations"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Choose from 4 layouts: Grid, Carousel, Masonry, Tiled"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Various style and customization options for a personalized look"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Redirect users to custom URLs with click events"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Countdown Timer Pro"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add a countdown timer with flexible options for days, hours, minutes, and seconds"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Set an evergreen countdown timer"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Multiple expiry options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Create slides with autoplay, transition, and pause effects, etc."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add any blocks inside the slides"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:11
msgid "Slide-per-view option"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Customize slide navigation styles"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add unique navigation slugs to individual slides"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Design a modern and fully customizable modal with various layout and style options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add basic triggers to open the modal"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add advanced triggers to choose when and how to display the modal"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Add off-canvas display options for flexible positioning"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Modal positioning and entrance effects"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Implement cookies to manage automatic triggering"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Ajax-based registration form"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Multiple child blocks for advanced structuring"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Auto-login (automatically log in after registration)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Google reCaptcha support (v2, v3)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Advanced styling options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "After registration actions (redirect, send email, auto login)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Email template customization"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Advanced form validation (customizable validation messages)"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Ajax-based login form"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Easy account linking without the hassle of leaving the app"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Show your latest Instagram posts directly on your website"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Connect as many Instagram accounts as needed"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Huge assortment of customizable settings"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Seamlessly create dynamic content loops"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:11
msgid "Drag-and-drop design with Spectra blocks"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Multiple customizable layouts"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Control posts per page, sorting, and display options"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Integrates with ACF, Custom Fields, and more"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Flexible filtering for sticky posts, taxonomies, and authors"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Get Spectra Pro Now"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Navigation Menu"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:1
#: dist/blocks.js:11
msgid "Advanced"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: dist/blocks.js:11
msgid "Basic"
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
msgid "Compare the features to find the best option for your website."
msgstr ""

#: admin-core/assets/build/dashboard-app.js:18
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Default route fallback"
msgstr ""

#: blocks-config/uagb-controls/previewImage.js:3
#: dist/blocks.js:11
msgid "Please add preview image."
msgstr ""

#: dist/blocks-placeholder.js:33
#: dist/blocks.js:23
msgid "SureCart - Checkout"
msgstr ""

#: dist/blocks-placeholder.js:34
#: dist/blocks.js:23
msgid "SureCart - Product List"
msgstr ""

#: dist/blocks-placeholder.js:35
#: dist/blocks.js:23
msgid "SureForms - Create Forms"
msgstr ""

#: dist/blocks.js:1
#: dist/blocks.js:11
msgid "Close Popup"
msgstr ""

#: dist/blocks.js:1
#: dist/blocks.js:11
msgid "Close Info Bar"
msgstr ""

#: dist/blocks.js:1
#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "General"
msgstr ""

#: dist/blocks.js:1
msgid "Global block style added"
msgstr ""

#: dist/blocks.js:1
#: dist/blocks.js:33
msgid "Device"
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:3
#: dist/blocks.js:15
msgid "Your Attractive Heading"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:3
#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "Click Here"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Prefix"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo."
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "List item"
msgstr ""

#: dist/blocks.js:3
msgid "Lorem ipsum dolor sit amet, consectetur adipiscing elit."
msgstr ""

#: dist/blocks.js:3
msgid "$9"
msgstr ""

#: dist/blocks.js:3
msgid "Menu Item"
msgstr ""

#: dist/blocks.js:3
msgid "Timeline Heading "
msgstr ""

#: dist/blocks.js:3
msgid "This is timeline description. Please click here to change this description."
msgstr ""

#: dist/blocks.js:3
msgid "Subscribe Now"
msgstr ""

#: dist/blocks.js:3
msgid "Get access to Premium Features for FREE for a year!"
msgstr ""

#: dist/blocks.js:3
msgid "- A Computer."
msgstr ""

#: dist/blocks.js:3
msgid "- A WordPress Website."
msgstr ""

#: dist/blocks.js:3
msgid "Required Tools:"
msgstr ""

#: dist/blocks.js:3
msgid "Things Needed?"
msgstr ""

#: dist/blocks.js:3
msgid "Steps to configure the How-to Schema:"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Total Cost:"
msgstr ""

#: dist/blocks.js:3
msgid "Total Time Needed :"
msgstr ""

#: dist/blocks.js:3
msgid " Minutes"
msgstr ""

#: dist/blocks.js:3
msgid "How To Configure How-To Schema In Spectra?"
msgstr ""

#: dist/blocks.js:3
msgid "So to get started, you will just need to drag-n-drop the How-to Schema block in the Gutenberg editor. The How-to Schema block can be used on pages that contain a How-to in their title and describe steps to achieve certain requirements."
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Notice Title"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Product"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Summary"
msgstr ""

#: dist/blocks.js:3
msgid "List Of Features:"
msgstr ""

#: dist/blocks.js:3
msgid "Average Ratings"
msgstr ""

#: dist/blocks.js:3
msgid "Instock"
msgstr ""

#: dist/blocks.js:3
msgid "Availability"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "The form has been submitted successfully!"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "I have read and agree to the Privacy Policy."
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Privacy Policy"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "example@mail.com"
msgstr ""

#: dist/blocks.js:3
msgid "Hidden Field Name"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "John Doe"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "https://example.com"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Enter your message"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Tab 1"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Tab 2"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Tab 3"
msgstr ""

#: dist/blocks.js:3
msgid "Counter placeholder img"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:19
msgid "Divider"
msgstr ""

#: dist/blocks.js:3
msgid "Please add a option props to MultiButtonsControl"
msgstr ""

#: dist/blocks.js:3
msgid "Reset"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Pixel"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Em"
msgstr ""

#: dist/blocks.js:3
#: dist/blocks.js:7
#: dist/blocks.js:11
msgid "Select Units"
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:5
#: dist/blocks.js:7
#: dist/blocks.js:9
#: dist/blocks.js:11
#: dist/blocks.js:13
#: dist/blocks.js:15
msgid "%s units"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Margin"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
msgid "Start"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Center"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
msgid "End"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
msgid "Stretch"
msgstr ""

#: dist/blocks.js:7
msgid "Grid Item Settings"
msgstr ""

#: dist/blocks.js:7
msgid "Simple"
msgstr ""

#: dist/blocks.js:7
msgid "Advance"
msgstr ""

#: dist/blocks.js:7
msgid "Column Width"
msgstr ""

#: dist/blocks.js:7
msgid "Row Height"
msgstr ""

#: dist/blocks.js:7
msgid "Column Start"
msgstr ""

#: dist/blocks.js:7
msgid "Column End"
msgstr ""

#: dist/blocks.js:7
msgid "Row Start"
msgstr ""

#: dist/blocks.js:7
msgid "Row End"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
msgid "Align Items"
msgstr ""

#: dist/blocks.js:7
msgid "Define the vertical alignment for grid items content."
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:15
msgid "Justify Items"
msgstr ""

#: dist/blocks.js:7
msgid "Define the horizontal alignment for grid items content."
msgstr ""

#: dist/blocks.js:7
msgid "Clear"
msgstr ""

#: dist/blocks.js:7
msgid "Select Color"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Box Shadow"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Outset"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Inset"
msgstr ""

#: dist/blocks.js:7
msgid "Inset (10px)"
msgstr ""

#: dist/blocks.js:7
#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "%"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Top"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Right"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Bottom"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Left"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Color 1"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Color 2"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Linear"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Radial"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Location 1"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Location 2"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Angle"
msgstr ""

#: dist/blocks.js:11
msgid "Confirm"
msgstr ""

#: dist/blocks.js:11
msgid "Processing…"
msgstr ""

#: dist/blocks.js:11
msgid "Select Video"
msgstr ""

#: dist/blocks.js:11
msgid "Change Video"
msgstr ""

#: dist/blocks.js:11
msgid "Select Lottie Animation"
msgstr ""

#: dist/blocks.js:11
msgid "Change Lottie Animation"
msgstr ""

#: dist/blocks.js:11
msgid "Upload SVG"
msgstr ""

#: dist/blocks.js:11
msgid "Change SVG"
msgstr ""

#: dist/blocks.js:11
msgid "Select Image"
msgstr ""

#: dist/blocks.js:11
msgid "Change Image"
msgstr ""

#: dist/blocks.js:11
msgid "Upload SVG?"
msgstr ""

#: dist/blocks.js:11
msgid "Upload SVG can be potentially risky. Are you sure?"
msgstr ""

#: dist/blocks.js:11
msgid "Upload Anyway"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Position"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Color"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Gradient"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Classic"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Auto"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Cover"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Contain"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Custom"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Overlay Opacity"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Image Position"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Top Left"
msgstr ""

#: dist/blocks.js:11
msgid "Top Center"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Top Right"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Center Top"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Center Center"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Center Bottom"
msgstr ""

#: dist/blocks.js:11
msgid "Bottom Left"
msgstr ""

#: dist/blocks.js:11
msgid "Bottom Center"
msgstr ""

#: dist/blocks.js:11
msgid "Bottom Right"
msgstr ""

#: dist/blocks.js:11
msgid "Attachment"
msgstr ""

#: dist/blocks.js:11
msgid "Fixed"
msgstr ""

#: dist/blocks.js:11
msgid "Blend Mode"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Normal"
msgstr ""

#: dist/blocks.js:11
msgid "Multiply"
msgstr ""

#: dist/blocks.js:11
msgid "Screen"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Overlay"
msgstr ""

#: dist/blocks.js:11
msgid "Darken"
msgstr ""

#: dist/blocks.js:11
msgid "Lighten"
msgstr ""

#: dist/blocks.js:11
msgid "Color Dodge"
msgstr ""

#: dist/blocks.js:11
msgid "Saturation"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "No Repeat"
msgstr ""

#: dist/blocks.js:11
msgid "Repeat-x"
msgstr ""

#: dist/blocks.js:11
msgid "Repeat-y"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Size"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Width"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "PX"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "EM"
msgstr ""

#: dist/blocks.js:11
msgid "X Position"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "VW"
msgstr ""

#: dist/blocks.js:11
msgid "Y Position"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "VH"
msgstr ""

#: dist/blocks.js:11
msgid "Overlay Type"
msgstr ""

#: dist/blocks.js:11
msgid "Image Overlay Color"
msgstr ""

#: dist/blocks.js:11
msgid "Centralized Position"
msgstr ""

#: dist/blocks.js:11
msgid "Fallback Image"
msgstr ""

#: dist/blocks.js:11
msgid "This cover image will replace the background video in case that the video could not be loaded."
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Radius"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Border"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Hover"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Solid"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Dotted"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Dashed"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Double"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Groove"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Ridge"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Alignment"
msgstr ""

#: dist/blocks.js:11
msgid "Icon Library"
msgstr ""

#: dist/blocks.js:11
msgid "All Icons"
msgstr ""

#: dist/blocks.js:11
msgid "No Icons Found"
msgstr ""

#: dist/blocks.js:11
msgid "Insert Icon"
msgstr ""

#: dist/blocks.js:11
msgid "Change Icon"
msgstr ""

#: dist/blocks.js:11
msgid "Choose Icon"
msgstr ""

#: dist/blocks.js:11
msgid "Select Preset"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 1"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 2"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 3"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 4"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 5"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Preset 6"
msgstr ""

#: dist/blocks.js:11
msgid "Unlock Advanced Animations"
msgstr ""

#: dist/blocks.js:11
msgid "Make your pages visually stunning with advanced animations that capture attention."
msgstr ""

#: dist/blocks.js:11
msgid "Take your website’s visual appeal to the next level with smooth, highly customizable animations. Control pacing, delays, and effects effortlessly."
msgstr ""

#: dist/blocks.js:11
msgid "Smooth animations with precise control."
msgstr ""

#: dist/blocks.js:11
msgid "Set delay and duration for animations"
msgstr ""

#: dist/blocks.js:11
msgid "Customize animation pacing and easing"
msgstr ""

#: dist/blocks.js:11
msgid "Repeat animations on scroll"
msgstr ""

#: dist/blocks.js:11
msgid "Animate nested blocks seamlessly"
msgstr ""

#: dist/blocks.js:11
msgid "Get Modal Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Boost engagement with highly customizable modals that demand attention. Create modals with triggers, transitions, and animations."
msgstr ""

#: dist/blocks.js:11
msgid "Add professional, high-converting modals with advanced triggers, seamless animations, and flexible customization."
msgstr ""

#: dist/blocks.js:11
msgid "Customizable modals with dynamic triggers."
msgstr ""

#: dist/blocks.js:11
msgid "Advanced triggers like exit intent and delay"
msgstr ""

#: dist/blocks.js:11
msgid "Off-canvas and full-screen display options"
msgstr ""

#: dist/blocks.js:11
msgid "Smooth entrance and exit effects"
msgstr ""

#: dist/blocks.js:11
msgid "Cookie-based automatic triggering for conversions"
msgstr ""

#: dist/blocks.js:11
msgid "Unlock Popup Builder Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Create high-converting popups with powerful targeting and trigger options."
msgstr ""

#: dist/blocks.js:11
msgid "Design and display engaging popups with advanced triggers, precise targeting, and seamless controls to boost conversions and engagement."
msgstr ""

#: dist/blocks.js:11
msgid "Advanced popup triggers and targeting options."
msgstr ""

#: dist/blocks.js:11
msgid "Control triggers: page load, exit intent, or custom class"
msgstr ""

#: dist/blocks.js:11
msgid "Display popups site-wide or on specific pages"
msgstr ""

#: dist/blocks.js:11
msgid "Set custom delays and frequency controls"
msgstr ""

#: dist/blocks.js:11
msgid "Get Countdown Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Increase urgency and boost conversions with advanced countdown timers. Perfect for sales, events, and promotions."
msgstr ""

#: dist/blocks.js:11
msgid "Create real-time urgency with highly customizable countdown timers, evergreen deadlines, and smart expiry options."
msgstr ""

#: dist/blocks.js:11
msgid "Advanced countdown timers with smart options."
msgstr ""

#: dist/blocks.js:11
msgid "Evergreen countdown with auto-reset"
msgstr ""

#: dist/blocks.js:11
msgid "Fixed date and time countdowns"
msgstr ""

#: dist/blocks.js:11
msgid "Customizable expiry actions"
msgstr ""

#: dist/blocks.js:11
msgid "Get Image Gallery Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Transform your image galleries into interactive experiences with custom click actions and animations."
msgstr ""

#: dist/blocks.js:11
msgid "Engage your audience with interactive image galleries featuring custom redirections, lightboxes, and effects."
msgstr ""

#: dist/blocks.js:11
msgid "Clickable images with custom actions."
msgstr ""

#: dist/blocks.js:11
msgid "Redirect users with custom click actions"
msgstr ""

#: dist/blocks.js:11
msgid "Built-in lightbox and modal options"
msgstr ""

#: dist/blocks.js:11
msgid "Multiple layout styles and hover effects"
msgstr ""

#: dist/blocks.js:11
msgid "Unlock Loop Builder"
msgstr ""

#: dist/blocks.js:11
msgid "Customize post layouts like never before with powerful loop builder options."
msgstr ""

#: dist/blocks.js:11
msgid "Design stunning post grids with dynamic content, flexible layouts, and seamless integrations."
msgstr ""

#: dist/blocks.js:11
msgid "Fully customizable post loops with Loop Builder."
msgstr ""

#: dist/blocks.js:11
msgid "ACF, Custom Fields, and Taxonomy integration"
msgstr ""

#: dist/blocks.js:11
msgid "Advanced filtering and sorting"
msgstr ""

#: dist/blocks.js:11
msgid "Unlock Dynamic Content Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Deliver personalized content dynamically based on user behavior. Make your pages more relevant and engaging."
msgstr ""

#: dist/blocks.js:11
msgid "Tailor content dynamically for users based on preferences, interactions, and data sources. Create truly personalized experiences."
msgstr ""

#: dist/blocks.js:11
msgid "Experience dynamic content with Spectra Pro. No more static displays."
msgstr ""

#: dist/blocks.js:11
msgid "Dynamic text and images from any source"
msgstr ""

#: dist/blocks.js:11
msgid "Global updates: Change once, reflect everywhere"
msgstr ""

#: dist/blocks.js:11
msgid "Smart fallback options for dynamic content"
msgstr ""

#: dist/blocks.js:11
msgid "Get Slider Pro"
msgstr ""

#: dist/blocks.js:11
msgid "Create Stunning Sliders with Enhanced Customization"
msgstr ""

#: dist/blocks.js:11
msgid "Take full control over your slider designs with advanced settings."
msgstr ""

#: dist/blocks.js:11
msgid "Fully customizable sliders."
msgstr ""

#: dist/blocks.js:11
msgid "Custom navigation styles"
msgstr ""

#: dist/blocks.js:11
msgid "Unique navigation slugs"
msgstr ""

#: dist/blocks.js:11
msgid "Repetition"
msgstr ""

#: dist/blocks.js:11
msgid "Repeat Infinitely"
msgstr ""

#: dist/blocks.js:11
msgid "Repetition per Browser"
msgstr ""

#: dist/blocks.js:11
msgid "Note: Repetition decreases on close, not on refresh."
msgstr ""

#: dist/blocks.js:11
msgid "Popup Padding"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Padding"
msgstr ""

#: dist/blocks.js:11
msgid "Info Bar Padding"
msgstr ""

#: dist/blocks.js:11
msgid "Close Button Padding"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Height"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Max Height"
msgstr ""

#: dist/blocks.js:11
msgid "Info Bar Height"
msgstr ""

#: dist/blocks.js:11
msgid "Info Bar Min Height"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Horizontal"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Vertical"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Blur"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Spread"
msgstr ""

#: dist/blocks.js:11
msgid "Change Variation"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Width"
msgstr ""

#: dist/blocks.js:11
msgid "Use Fixed Height"
msgstr ""

#: dist/blocks.js:11
msgid "Content Vertical Alignment"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Flex Start"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
msgid "Flex End"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Alignment"
msgstr ""

#: dist/blocks.js:11
msgid "Use Overlay"
msgstr ""

#: dist/blocks.js:11
msgid "Prevent Background Interaction"
msgstr ""

#: dist/blocks.js:11
msgid "The background scroll and click events will be disabled once this popup is visible"
msgstr ""

#: dist/blocks.js:11
msgid "Push Content"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Dismissible"
msgstr ""

#: dist/blocks.js:11
msgid "Close with Escape"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Close on Overlay Click"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Icon Position"
msgstr ""

#: dist/blocks.js:11
msgid "Copy and paste the class above into the Additional Classes field of any block in this popup to close it."
msgstr ""

#: dist/blocks.js:11
msgid "Take Popup builder to the next level with powerful features"
msgstr ""

#: dist/blocks.js:11
msgid "On load, exit intent, and class-based triggers"
msgstr ""

#: dist/blocks.js:11
msgid "Display conditions"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Background"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Overlay Color"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Overlay Color"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Close Button"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Icon Size"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Icon Color"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Separate Hover Shadow"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Spacing"
msgstr ""

#: dist/blocks.js:11
msgid "Popup Margin"
msgstr ""

#: dist/blocks.js:11
msgid "Spectra Popup Builder"
msgstr ""

#: dist/blocks.js:11
msgid "Select a Popup type to start with."
msgstr ""

#: dist/blocks.js:11
msgid "Engage your visitors!"
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "Engage Your Visitors!"
msgstr ""

#: dist/blocks.js:11
msgid "This block allows you to build a site-wide popup."
msgstr ""

#: dist/blocks.js:11
#: dist/blocks.js:19
msgid "popup"
msgstr ""

#: dist/blocks.js:11
msgid "builder"
msgstr ""

#: dist/blocks.js:11
msgid "Add New"
msgstr ""

#: dist/blocks.js:11
msgid "Please enter a style name"
msgstr ""

#: dist/blocks.js:11
msgid "Style name should be more then 3 characters and less then 50 characters"
msgstr ""

#: dist/blocks.js:11
msgid "Style name already exists"
msgstr ""

#: dist/blocks.js:11
msgid "Style name should not contain special characters"
msgstr ""

#: dist/blocks.js:11
msgid "Save as Global Block Style"
msgstr ""

#: dist/blocks.js:11
msgid "Use the saved style anywhere on the website"
msgstr ""

#: dist/blocks.js:11
msgid "Style Name"
msgstr ""

#: dist/blocks.js:11
msgid "Save"
msgstr ""

#: dist/blocks.js:11
msgid "Linked Style"
msgstr ""

#: dist/blocks.js:11
msgid "Link to Existing Style"
msgstr ""

#: dist/blocks.js:11
msgid "Update Style"
msgstr ""

#: dist/blocks.js:11
msgid "Unlink Style"
msgstr ""

#: dist/blocks.js:11
msgid "Equal"
msgstr ""

#: dist/blocks.js:11
msgid "Children Width "
msgstr ""

#: dist/blocks.js:15
msgid "Fr"
msgstr ""

#: dist/blocks.js:15
msgid "Px"
msgstr ""

#: dist/blocks.js:15
msgid "Space Between"
msgstr ""

#: dist/blocks.js:15
msgid "Space Around"
msgstr ""

#: dist/blocks.js:15
msgid "Min"
msgstr ""

#: dist/blocks.js:15
msgid "Max"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Height"
msgstr ""

#: dist/blocks.js:15
msgid "The column-width will be automatic."
msgstr ""

#: dist/blocks.js:15
msgid "The row-height will be automatic."
msgstr ""

#: dist/blocks.js:15
msgid "Grid Property"
msgstr ""

#: dist/blocks.js:15
msgid "Min/Max"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Columns"
msgstr ""

#: dist/blocks.js:15
msgid "Column "
msgstr ""

#: dist/blocks.js:15
msgid "Rows"
msgstr ""

#: dist/blocks.js:15
msgid "Row "
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Order"
msgstr ""

#: dist/blocks.js:15
msgid "Define the order for grid items inside the container."
msgstr ""

#: dist/blocks.js:15
msgid "Custom Order"
msgstr ""

#: dist/blocks.js:15
msgid "Define the vertical alignment for grid items inside the container."
msgstr ""

#: dist/blocks.js:15
msgid "Define the horizontal alignment for grid items within the container."
msgstr ""

#: dist/blocks.js:15
msgid "Align Content"
msgstr ""

#: dist/blocks.js:15
msgid "Define the vertical alignment of the entire grid within its container."
msgstr ""

#: dist/blocks.js:15
msgid "Justify Content"
msgstr ""

#: dist/blocks.js:15
msgid "Define the horizontal alignment of the entire grid within its container."
msgstr ""

#: dist/blocks.js:15
msgid "Define the vertical alignment inside this container."
msgstr ""

#: dist/blocks.js:15
msgid "Define the horizontal alignment inside this container."
msgstr ""

#: dist/blocks.js:15
msgid "Define the vertical alignment of every line of blocks inside this flex container."
msgstr ""

#: dist/blocks.js:15
msgid "Define the horizontal alignment of every line of blocks inside this flex container."
msgstr ""

#: dist/blocks.js:15
msgid "Link Color"
msgstr ""

#: dist/blocks.js:15
msgid "The left-right margins will be inherited from theme for boxed containers."
msgstr ""

#: dist/blocks.js:15
msgid "The left-right margins will not be applied for full-width containers."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Row"
msgstr ""

#: dist/blocks.js:15
msgid "Row Reverse"
msgstr ""

#: dist/blocks.js:15
msgid "Column Reverse"
msgstr ""

#: dist/blocks.js:15
msgid "Space Evenly"
msgstr ""

#: dist/blocks.js:15
msgid "Wrap"
msgstr ""

#: dist/blocks.js:15
msgid "No Wrap"
msgstr ""

#: dist/blocks.js:15
msgid "Wrap Reverse"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Full Width"
msgstr ""

#: dist/blocks.js:15
msgid "Boxed"
msgstr ""

#: dist/blocks.js:15
msgid "Visible"
msgstr ""

#: dist/blocks.js:15
msgid "Container Type"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Container Width"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Content Width"
msgstr ""

#: dist/blocks.js:15
msgid "Content Box Width"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Custom Width"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Minimum Height"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Equal Height"
msgstr ""

#: dist/blocks.js:15
msgid "Enabling this will change the Align Items value to Stretch."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "HTML Tag"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "div"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "header"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "footer"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "main"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "article"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "section"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "aside"
msgstr ""

#: dist/blocks.js:15
msgid "figure"
msgstr ""

#: dist/blocks.js:15
msgid "figcaption"
msgstr ""

#: dist/blocks.js:15
msgid "summary"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "nav"
msgstr ""

#: dist/blocks.js:15
msgid "link"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Open in new window"
msgstr ""

#: dist/blocks.js:15
msgid "Search here…"
msgstr ""

#: dist/blocks.js:15
msgid "Add nofollow"
msgstr ""

#: dist/blocks.js:15
msgid "New:"
msgstr ""

#: dist/blocks.js:15
msgid "Overflow"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Layout"
msgstr ""

#: dist/blocks.js:15
msgid "Flex"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Grid"
msgstr ""

#: dist/blocks.js:15
msgid "Direction"
msgstr ""

#: dist/blocks.js:15
msgid "Define the direction in which blocks inside this container will be placed one after the other."
msgstr ""

#: dist/blocks.js:15
msgid "Define whether the items are forced in a single line (No Wrap) or can be flowed into multiple lines (Wrap)."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Experience dynamic content with Spectra Pro. No more static displays. Personalize your user experience."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Text Color"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Tilt"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Mountains"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Wave Brush"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Waves"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Waves Pattern"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Triangle"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Drops"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Clouds"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "ZigZag"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Pyramids"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Triangle Asymmetrical"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Tilt Opacity"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Fan Opacity"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Curve"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Curve Asymmetrical"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Curve Reverse"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Curve Asymmetrical Reverse"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Arrow"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Arrow Split"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Flip"
msgstr ""

#: dist/blocks.js:15
msgid "Invert"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Bring To Front"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Shape Dividers"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Row Gap"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Column Gap"
msgstr ""

#: dist/blocks.js:15
msgid "Select a container layout to start with."
msgstr ""

#: dist/blocks.js:15
msgid "container"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "uag"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "flex"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:23
msgid "Font Size"
msgstr ""

#: dist/blocks.js:15
msgid "Weight"
msgstr ""

#: dist/blocks.js:15
msgid "Oblique"
msgstr ""

#: dist/blocks.js:15
msgid "Line Height"
msgstr ""

#: dist/blocks.js:15
msgid "Letter Spacing"
msgstr ""

#: dist/blocks.js:15
msgid "Transform"
msgstr ""

#: dist/blocks.js:15
msgid "Capitalize"
msgstr ""

#: dist/blocks.js:15
msgid "Uppercase"
msgstr ""

#: dist/blocks.js:15
msgid "Lowercase"
msgstr ""

#: dist/blocks.js:15
msgid "Decoration"
msgstr ""

#: dist/blocks.js:15
msgid "Overline"
msgstr ""

#: dist/blocks.js:15
msgid "Line Through"
msgstr ""

#: dist/blocks.js:15
msgid "Text Shadow"
msgstr ""

#: dist/blocks.js:15
msgid "Above Heading"
msgstr ""

#: dist/blocks.js:15
msgid "Below Heading"
msgstr ""

#: dist/blocks.js:15
msgid "Above Sub-heading"
msgstr ""

#: dist/blocks.js:15
msgid "Below Sub-heading"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Content"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Heading Tag"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H1"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H2"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H3"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H4"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H5"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "H6"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Div"
msgstr ""

#: dist/blocks.js:15
msgid "Heading Wrapper"
msgstr ""

#: dist/blocks.js:15
msgid "Header"
msgstr ""

#: dist/blocks.js:15
msgid "Sub Heading"
msgstr ""

#: dist/blocks.js:15
msgid "Enable Sub Heading"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Typography"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Bottom Spacing"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Thickness"
msgstr ""

#: dist/blocks.js:15
msgid "Below settings will apply to the heading text to which a link is applied."
msgstr ""

#: dist/blocks.js:15
msgid "Highlight"
msgstr ""

#: dist/blocks.js:15
msgid "Highlight heading text from toolbar to see the below controls working."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Background Color"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Write a Heading"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Write a Description"
msgstr ""

#: dist/blocks.js:15
msgid "Highlight Text"
msgstr ""

#: dist/blocks.js:15
msgid "creative heading"
msgstr ""

#: dist/blocks.js:15
msgid "heading"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Image Size"
msgstr ""

#: dist/blocks.js:15
msgid "Image Dimensions"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Disable Lazy Loading"
msgstr ""

#: dist/blocks.js:15
msgid "Note: We use WP core alignment. Left or Right alignments on desktop won`t support responsive alignment."
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Content Position"
msgstr ""

#: dist/blocks.js:15
msgid "Border Distance From EDGE"
msgstr ""

#: dist/blocks.js:15
msgid "Image Role"
msgstr ""

#: dist/blocks.js:15
msgid "Presentation"
msgstr ""

#: dist/blocks.js:15
msgid "Alt Text"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Title"
msgstr ""

#: dist/blocks.js:15
msgid "Object Fit"
msgstr ""

#: dist/blocks.js:15
msgid "On Hover Image"
msgstr ""

#: dist/blocks.js:15
msgid "Static"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Zoom In"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Slide"
msgstr ""

#: dist/blocks.js:15
msgid "Gray Scale"
msgstr ""

#: dist/blocks.js:15
msgid "Enable Caption"
msgstr ""

#: dist/blocks.js:15
msgid "Mask Shape"
msgstr ""

#: dist/blocks.js:15
msgid "Hexagon"
msgstr ""

#: dist/blocks.js:15
msgid "Rounded"
msgstr ""

#: dist/blocks.js:15
msgid "Blob 1"
msgstr ""

#: dist/blocks.js:15
msgid "Blob 2"
msgstr ""

#: dist/blocks.js:15
msgid "Blob 3"
msgstr ""

#: dist/blocks.js:15
msgid "Blob 4"
msgstr ""

#: dist/blocks.js:15
msgid "Custom Mask Image"
msgstr ""

#: dist/blocks.js:15
msgid "Mask Size"
msgstr ""

#: dist/blocks.js:15
msgid "Mask Position"
msgstr ""

#: dist/blocks.js:15
msgid "Left Top"
msgstr ""

#: dist/blocks.js:15
msgid "Left Center"
msgstr ""

#: dist/blocks.js:15
msgid "Left Bottom"
msgstr ""

#: dist/blocks.js:15
msgid "Right Top"
msgstr ""

#: dist/blocks.js:15
msgid "Right Center"
msgstr ""

#: dist/blocks.js:15
msgid "Right Bottom"
msgstr ""

#: dist/blocks.js:15
msgid "Mask Repeat"
msgstr ""

#: dist/blocks.js:15
msgid "Repeat-X"
msgstr ""

#: dist/blocks.js:15
msgid "Repeat-Y"
msgstr ""

#: dist/blocks.js:15
msgid "Show On"
msgstr ""

#: dist/blocks.js:15
msgid "Always"
msgstr ""

#: dist/blocks.js:15
msgid "Before Title"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "After Title"
msgstr ""

#: dist/blocks.js:15
msgid "After Sub Title"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Description"
msgstr ""

#: dist/blocks.js:15
#: dist/blocks.js:19
msgid "Caption"
msgstr ""

#: dist/blocks.js:15
msgid "Overlay Hover Opacity"
msgstr ""

#. translators: %s: file name
#: dist/blocks.js:17
msgid "This image has an empty alt attribute; its file name is %s"
msgstr ""

#: dist/blocks.js:17
msgid "This image has an empty alt attribute"
msgstr ""

#. translators: %s: file name
#: dist/blocks.js:19
msgid "This image has an empty title attribute; its file name is %s"
msgstr ""

#: dist/blocks.js:19
msgid "This image has an empty title attribute"
msgstr ""

#: dist/blocks.js:19
msgid "Image overlay heading text"
msgstr ""

#: dist/blocks.js:19
msgid "Add Heading"
msgstr ""

#: dist/blocks.js:19
msgid "Image caption text"
msgstr ""

#: dist/blocks.js:19
msgid "Add caption"
msgstr ""

#: dist/blocks.js:19
msgid "Edit image"
msgstr ""

#: dist/blocks.js:19
msgid "Image uploaded."
msgstr ""

#: dist/blocks.js:19
msgid "Upload external image"
msgstr ""

#: dist/blocks.js:19
msgid "Upload an image file, pick one from your media library, or add one with a URL."
msgstr ""

#: dist/blocks.js:19
msgid "image"
msgstr ""

#: dist/blocks.js:19
msgid "advance image"
msgstr ""

#: dist/blocks.js:19
msgid "caption"
msgstr ""

#: dist/blocks.js:19
msgid "overlay image"
msgstr ""

#: dist/blocks.js:19
msgid "Small"
msgstr ""

#: dist/blocks.js:19
msgid "Large"
msgstr ""

#: dist/blocks.js:19
msgid "Extra Large"
msgstr ""

#: dist/blocks.js:19
msgid "Overall Alignment"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Vertical Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Stack Orientation"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Choose on what breakpoint the buttons will stack."
msgstr ""

#: dist/blocks.js:19
msgid "Inherit gap from theme"
msgstr ""

#: dist/blocks.js:19
msgid "Flex wrap"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Buttons"
msgstr ""

#: dist/blocks.js:19
msgid "Button Size"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Text"
msgstr ""

#: dist/blocks.js:19
msgid "buttons"
msgstr ""

#: dist/blocks.js:19
msgid "Preset 7"
msgstr ""

#: dist/blocks.js:19
msgid "Preset 8"
msgstr ""

#: dist/blocks.js:19
msgid "Presets"
msgstr ""

#: dist/blocks.js:19
msgid "Inherit From Theme"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Button Type"
msgstr ""

#: dist/blocks.js:19
msgid "Primary"
msgstr ""

#: dist/blocks.js:19
msgid "Secondary"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Add \"nofollow\" to link"
msgstr ""

#: dist/blocks.js:19
msgid "Remove Text"
msgstr ""

#: dist/blocks.js:19
msgid "Icon Spacing"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Transparent"
msgstr ""

#: dist/blocks.js:19
msgid "Add text…"
msgstr ""

#: dist/blocks.js:19
msgid "This block allows you to style button."
msgstr ""

#: dist/blocks.js:19
msgid "Thumbnail"
msgstr ""

#: dist/blocks.js:19
msgid "Image/Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Icon/Image"
msgstr ""

#: dist/blocks.js:19
msgid "Select Position"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Above Title"
msgstr ""

#: dist/blocks.js:19
msgid "Below Title"
msgstr ""

#: dist/blocks.js:19
msgid "Left of Title"
msgstr ""

#: dist/blocks.js:19
msgid "Right of Title"
msgstr ""

#: dist/blocks.js:19
msgid "Left of Text and Title"
msgstr ""

#: dist/blocks.js:19
msgid "Right of Text and Title"
msgstr ""

#: dist/blocks.js:19
msgid "Stack on"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Choose on what breakpoint the Info Box will stack."
msgstr ""

#: dist/blocks.js:19
msgid "Middle"
msgstr ""

#: dist/blocks.js:19
msgid "Select Source"
msgstr ""

#: dist/blocks.js:19
msgid "Alternate Text"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Prefix"
msgstr ""

#: dist/blocks.js:19
msgid "Prefix Tag"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Span"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Title"
msgstr ""

#: dist/blocks.js:19
msgid "Title Tag"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Description"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Semantic Markup"
msgstr ""

#: dist/blocks.js:19
msgid "Use Core/Paragraph: Improve accessibility and SEO with semantic HTML markup. Note: Existing Rich Text content will not be preserved."
msgstr ""

#: dist/blocks.js:19
msgid "After Icon/Image"
msgstr ""

#: dist/blocks.js:19
msgid "After Prefix"
msgstr ""

#: dist/blocks.js:19
msgid "After Description"
msgstr ""

#: dist/blocks.js:19
msgid "Complete Box"
msgstr ""

#: dist/blocks.js:19
msgid "Show Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Button Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Before Text"
msgstr ""

#: dist/blocks.js:19
msgid "After Text"
msgstr ""

#: dist/blocks.js:19
msgid "View"
msgstr ""

#: dist/blocks.js:19
msgid "Stacked"
msgstr ""

#: dist/blocks.js:19
msgid "Framed"
msgstr ""

#: dist/blocks.js:19
msgid "Shape"
msgstr ""

#: dist/blocks.js:19
msgid "Set Border Width"
msgstr ""

#: dist/blocks.js:19
msgid "Icon Background Color"
msgstr ""

#: dist/blocks.js:19
msgid "Turn this off to inherit the natural width of Image."
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Border Radius"
msgstr ""

#: dist/blocks.js:19
msgid "Button Text Color"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Background Type"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Button Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Write a Title"
msgstr ""

#: dist/blocks.js:19
msgid "Write a Prefix"
msgstr ""

#: dist/blocks.js:19
msgid "Add image/icon, separator and text description using a single block."
msgstr ""

#: dist/blocks.js:19
msgid "info box"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Stack On"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Choose on what breakpoint the CTA button will stack."
msgstr ""

#: dist/blocks.js:19
msgid "Buttons Width"
msgstr ""

#: dist/blocks.js:19
msgid "Open in New Window"
msgstr ""

#: dist/blocks.js:19
msgid "Additional Button"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Additional Button"
msgstr ""

#: dist/blocks.js:19
msgid "Bottom Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Content And Buttons Gap"
msgstr ""

#: dist/blocks.js:19
msgid "cta"
msgstr ""

#: dist/blocks.js:19
msgid "call to action"
msgstr ""

#: dist/blocks.js:19
msgid "Accessibility Mode"
msgstr ""

#: dist/blocks.js:19
msgid "SVG"
msgstr ""

#: dist/blocks.js:19
msgid "Decorative"
msgstr ""

#: dist/blocks.js:19
msgid "Accessibility Label"
msgstr ""

#: dist/blocks.js:19
msgid "Rotation"
msgstr ""

#: dist/blocks.js:19
msgid "Degree"
msgstr ""

#: dist/blocks.js:19
msgid "Enter URL"
msgstr ""

#: dist/blocks.js:19
msgid "Open in New Tab"
msgstr ""

#: dist/blocks.js:19
msgid "Drop Shadow"
msgstr ""

#: dist/blocks.js:19
msgid "icon"
msgstr ""

#: dist/blocks.js:19
msgid "Timer End Date & Time"
msgstr ""

#: dist/blocks.js:19
msgid "Show Days"
msgstr ""

#: dist/blocks.js:19
msgid "Show Hours"
msgstr ""

#: dist/blocks.js:19
msgid "Show Minutes"
msgstr ""

#: dist/blocks.js:19
msgid "Show Seconds"
msgstr ""

#: dist/blocks.js:19
msgid "Aria Live Type"
msgstr ""

#: dist/blocks.js:19
msgid "Off"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Polite"
msgstr ""

#: dist/blocks.js:19
msgid "Assertive"
msgstr ""

#: dist/blocks.js:19
msgid "Labels"
msgstr ""

#: dist/blocks.js:19
msgid "Show Labels"
msgstr ""

#: dist/blocks.js:19
msgid "Days"
msgstr ""

#: dist/blocks.js:19
msgid "Hours"
msgstr ""

#: dist/blocks.js:19
msgid "Minutes"
msgstr ""

#: dist/blocks.js:19
msgid "Seconds"
msgstr ""

#: dist/blocks.js:19
msgid "Show Separator"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Type"
msgstr ""

#: dist/blocks.js:19
msgid "Colon"
msgstr ""

#: dist/blocks.js:19
msgid "Square Shaped Box"
msgstr ""

#: dist/blocks.js:19
msgid "Inner Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Label Position"
msgstr ""

#: dist/blocks.js:19
msgid "Label Vertical Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "This feature works best after adding line-height to the label."
msgstr ""

#: dist/blocks.js:19
msgid "Box Width"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Boxes"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Digits & Labels"
msgstr ""

#: dist/blocks.js:19
msgid "Digit"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Label"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Right Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Top Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Take Countdown Block to the next level with powerful features"
msgstr ""

#: dist/blocks.js:19
msgid "Evergreen mode"
msgstr ""

#: dist/blocks.js:19
msgid "Expiry options"
msgstr ""

#: dist/blocks.js:19
msgid "Create a sense of urgency among your visitors."
msgstr ""

#: dist/blocks.js:19
msgid "countdown"
msgstr ""

#: dist/blocks.js:19
msgid "timer"
msgstr ""

#: dist/blocks.js:19
msgid "sale"
msgstr ""

#: dist/blocks.js:19
msgid "offer"
msgstr ""

#: dist/blocks.js:19
msgid "discount"
msgstr ""

#: dist/blocks.js:19
msgid "Author Image"
msgstr ""

#: dist/blocks.js:19
msgid "Author Image Position"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Icon Size"
msgstr ""

#: dist/blocks.js:19
msgid "Background Size"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Icon Border Radius"
msgstr ""

#: dist/blocks.js:19
msgid "Quotation"
msgstr ""

#: dist/blocks.js:19
msgid "Quotation Type"
msgstr ""

#: dist/blocks.js:19
msgid "Inline"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Text Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Quote"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Color"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Typography"
msgstr ""

#: dist/blocks.js:19
msgid "Author Color"
msgstr ""

#: dist/blocks.js:19
msgid "Author Typography"
msgstr ""

#: dist/blocks.js:19
msgid "Author Image Size"
msgstr ""

#: dist/blocks.js:19
msgid "Author Image Width"
msgstr ""

#: dist/blocks.js:19
msgid "Image Border Radius"
msgstr ""

#: dist/blocks.js:19
msgid "Twitter Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Twitter Username"
msgstr ""

#: dist/blocks.js:19
msgid "Icon View"
msgstr ""

#: dist/blocks.js:19
msgid "Both"
msgstr ""

#: dist/blocks.js:19
msgid "Icon Style"
msgstr ""

#: dist/blocks.js:19
msgid "Bubble"
msgstr ""

#: dist/blocks.js:19
msgid "Target URL"
msgstr ""

#: dist/blocks.js:19
msgid "Current Page"
msgstr ""

#: dist/blocks.js:19
msgid "Custom URL"
msgstr ""

#: dist/blocks.js:19
msgid "Author - Image Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Icon Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Border - Quote Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Quote Bottom Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Author Bottom Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Spacing"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Border Color"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Border Style"
msgstr ""

#: dist/blocks.js:19
msgid "Icon & Text Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Write a Quote"
msgstr ""

#: dist/blocks.js:19
msgid "blockquote"
msgstr ""

#: dist/blocks.js:19
msgid "quote"
msgstr ""

#: dist/blocks.js:19
msgid "uagb"
msgstr ""

#: dist/blocks.js:19
msgid "Orientation"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Alignment"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Date"
msgstr ""

#: dist/blocks.js:19
msgid "Display Date"
msgstr ""

#: dist/blocks.js:19
msgid "Date Format"
msgstr ""

#: dist/blocks.js:19
msgid "Normal Text"
msgstr ""

#: dist/blocks.js:19
msgid "Timeline Item"
msgstr ""

#: dist/blocks.js:19
msgid "Connector"
msgstr ""

#: dist/blocks.js:19
msgid "Icon Background Size"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Border Width"
msgstr ""

#: dist/blocks.js:19
msgid "Connector Thickness"
msgstr ""

#: dist/blocks.js:19
msgid "Timeline - Marker Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Timeline Item Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Border radius"
msgstr ""

#: dist/blocks.js:19
msgid "Connector Color"
msgstr ""

#: dist/blocks.js:19
msgid "Focus"
msgstr ""

#: dist/blocks.js:19
msgid "Date (mm/dd/yyyy)"
msgstr ""

#: dist/blocks.js:19
msgid "This is Timeline description, you can change me anytime click here "
msgstr ""

#: dist/blocks.js:19
msgid "Add and customize content of this timeline."
msgstr ""

#: dist/blocks.js:19
msgid "Left of Number"
msgstr ""

#: dist/blocks.js:19
msgid "Right of Number"
msgstr ""

#: dist/blocks.js:19
msgid "Number"
msgstr ""

#: dist/blocks.js:19
msgid "Bar"
msgstr ""

#: dist/blocks.js:19
msgid "Flip Title and Bar Positions"
msgstr ""

#: dist/blocks.js:19
msgid "Starting Number"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Please use positive values for Circle and Bar layouts."
msgstr ""

#: dist/blocks.js:19
msgid "Ending Number"
msgstr ""

#: dist/blocks.js:19
msgid "Total Number"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Total Number should be more than or equal to the Ending Number (or the Starting number in case you want to animate the Counter in reverse direction)."
msgstr ""

#: dist/blocks.js:19
msgid "Decimal Places"
msgstr ""

#: dist/blocks.js:19
msgid "Number Prefix"
msgstr ""

#: dist/blocks.js:19
msgid "Number Suffix"
msgstr ""

#: dist/blocks.js:19
msgid "Animation Duration"
msgstr ""

#: dist/blocks.js:19
msgid "Thousand(s)"
msgstr ""

#: dist/blocks.js:19
msgid "Comma"
msgstr ""

#: dist/blocks.js:19
msgid "Dot"
msgstr ""

#: dist/blocks.js:19
msgid "Whitespace"
msgstr ""

#: dist/blocks.js:19
msgid "Apostrophe"
msgstr ""

#: dist/blocks.js:19
msgid "Image Width"
msgstr ""

#: dist/blocks.js:19
msgid "Headline"
msgstr ""

#: dist/blocks.js:19
msgid "Prefix Right Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Suffix Left Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Circle Size"
msgstr ""

#: dist/blocks.js:19
msgid "Stroke Size"
msgstr ""

#: dist/blocks.js:19
msgid "Progress Color"
msgstr ""

#: dist/blocks.js:19
msgid "Bar Size"
msgstr ""

#: dist/blocks.js:19
msgid "Title…"
msgstr ""

#: dist/blocks.js:19
msgid "counter"
msgstr ""

#: dist/blocks.js:19
msgid "number"
msgstr ""

#: dist/blocks.js:19
msgid "Accordion"
msgstr ""

#: dist/blocks.js:19
msgid "Collapse other items"
msgstr ""

#: dist/blocks.js:19
msgid "Expand First Item"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Toggle"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Schema Support"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Separator"
msgstr ""

#: dist/blocks.js:19
msgid "Question Tag"
msgstr ""

#: dist/blocks.js:19
msgid "Inactive Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Active Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Icon Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Rows Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Columns Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Gap between Icon and Question"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Active Color"
msgstr ""

#: dist/blocks.js:19
msgid "Active/Hover"
msgstr ""

#: dist/blocks.js:19
msgid "Answer"
msgstr ""

#: dist/blocks.js:19
msgid "faq"
msgstr ""

#: dist/blocks.js:19
msgid "schema"
msgstr ""

#: dist/blocks.js:19
msgid "accordion"
msgstr ""

#: dist/blocks.js:19
msgid "For the styling options please select the Parent Block."
msgstr ""

#: dist/blocks.js:19
msgid "Add a frequently asked question/accordion to display information."
msgstr ""

#: dist/blocks.js:19
msgid "Hidden Field Label"
msgstr ""

#: dist/blocks.js:19
msgid "Label Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Placeholder Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Confirmation Type"
msgstr ""

#: dist/blocks.js:19
msgid "Success Message Text"
msgstr ""

#: dist/blocks.js:19
msgid "Enter a message you want to display after successfull form submission"
msgstr ""

#: dist/blocks.js:19
msgid "Error Message Text"
msgstr ""

#: dist/blocks.js:19
msgid "Enter a message you want to display after unsuccessfull form submission"
msgstr ""

#: dist/blocks.js:19
msgid "Success Redirect URL"
msgstr ""

#: dist/blocks.js:19
msgid "Enter a URL you want to redirect your page to after form Submission"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Submit Button"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Button Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Actions"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Enter an e-mail address to receive submissions. Defaults to the site e-mail address."
msgstr ""

#: dist/blocks.js:19
msgid "To"
msgstr ""

#: dist/blocks.js:19
msgid "CC"
msgstr ""

#: dist/blocks.js:19
msgid "BCC"
msgstr ""

#: dist/blocks.js:19
msgid "Email Address"
msgstr ""

#: dist/blocks.js:19
msgid "Subject"
msgstr ""

#: dist/blocks.js:19
msgid "P.S. Note that If you are using two forms on the same page with the different reCAPTCHA versions (V2 checkbox and V3), it will create conflicts between the versions. Kindly avoid using different versions on same page. "
msgstr ""

#: dist/blocks.js:19
msgid "Enable reCAPTCHA "
msgstr ""

#: dist/blocks.js:19
msgid "Please configure the Google reCAPTCHA Site & Secret key from"
msgstr ""

#: dist/blocks.js:19
msgid "here."
msgstr ""

#: dist/blocks.js:19
msgid "Select Version"
msgstr ""

#: dist/blocks.js:19
msgid "V2"
msgstr ""

#: dist/blocks.js:19
msgid "V3"
msgstr ""

#: dist/blocks.js:19
msgid "Hide reCAPTCHA Badge"
msgstr ""

#: dist/blocks.js:19
msgid "Row Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "em"
msgstr ""

#: dist/blocks.js:19
msgid "Label Bottom Margin"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Input"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Active"
msgstr ""

#: dist/blocks.js:19
msgid "Placeholder Color"
msgstr ""

#: dist/blocks.js:19
msgid "Input Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Checkbox/Toggle/Radio"
msgstr ""

#: dist/blocks.js:19
msgid "Checkbox/Radio Size"
msgstr ""

#: dist/blocks.js:19
msgid "Toggle Size"
msgstr ""

#: dist/blocks.js:19
msgid "Note: It is required to set border style and border width for toggle. Else you will not able to resize the toggle."
msgstr ""

#: dist/blocks.js:19
msgid "Element Color"
msgstr ""

#: dist/blocks.js:19
msgid "Border radius will be applied to Radio & Toggle only when the layout for those blocks is set to Square."
msgstr ""

#: dist/blocks.js:19
msgid "Messages"
msgstr ""

#: dist/blocks.js:19
msgid "Success"
msgstr ""

#: dist/blocks.js:19
msgid "Error"
msgstr ""

#: dist/blocks.js:19
msgid "Form Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Simple Contact Form"
msgstr ""

#: dist/blocks.js:19
msgid "First Name"
msgstr ""

#: dist/blocks.js:19
msgid "John"
msgstr ""

#: dist/blocks.js:19
msgid "Last Name"
msgstr ""

#: dist/blocks.js:19
msgid "Doe"
msgstr ""

#: dist/blocks.js:19
msgid "Newsletter Form"
msgstr ""

#: dist/blocks.js:19
msgid "Suggestion Form"
msgstr ""

#: dist/blocks.js:19
msgid "Option Name 1"
msgstr ""

#: dist/blocks.js:19
msgid "Option Value 1"
msgstr ""

#: dist/blocks.js:19
msgid "Option Name 2"
msgstr ""

#: dist/blocks.js:19
msgid "Option Value 2"
msgstr ""

#: dist/blocks.js:19
msgid "Option Name 3"
msgstr ""

#: dist/blocks.js:19
msgid "Option Value 3"
msgstr ""

#: dist/blocks.js:19
msgid "Option Name 4"
msgstr ""

#: dist/blocks.js:19
msgid "Option Value 4"
msgstr ""

#: dist/blocks.js:19
msgid "Enter your subject"
msgstr ""

#: dist/blocks.js:19
msgid "Forms"
msgstr ""

#: dist/blocks.js:19
msgid "Select a form layout to start with."
msgstr ""

#: dist/blocks.js:19
msgid "UAG Form"
msgstr ""

#: dist/blocks.js:19
msgid "forms"
msgstr ""

#: dist/blocks.js:19
msgid "Autocomplete"
msgstr ""

#: dist/blocks.js:19
msgid "Duplicated name fields must be assigned distinct label names to send the data."
msgstr ""

#: dist/blocks.js:19
msgid "Full Name"
msgstr ""

#: dist/blocks.js:19
msgid "Middle Name"
msgstr ""

#: dist/blocks.js:19
msgid "Suffix"
msgstr ""

#: dist/blocks.js:19
msgid "Username"
msgstr ""

#: dist/blocks.js:19
msgid "Nickname"
msgstr ""

#: dist/blocks.js:19
msgid "Company Name"
msgstr ""

#: dist/blocks.js:19
msgid "Job Title"
msgstr ""

#: dist/blocks.js:19
msgid "Address Line 1"
msgstr ""

#: dist/blocks.js:19
msgid "Address Line 2"
msgstr ""

#: dist/blocks.js:19
msgid "Address Line 3"
msgstr ""

#: dist/blocks.js:19
msgid "Country"
msgstr ""

#: dist/blocks.js:19
msgid "Postal / ZIP Code"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Placeholder"
msgstr ""

#: dist/blocks.js:19
msgid "Required"
msgstr ""

#: dist/blocks.js:19
msgid "required"
msgstr ""

#: dist/blocks.js:19
msgid "Add a name field in your form."
msgstr ""

#: dist/blocks.js:19
msgid "email"
msgstr ""

#: dist/blocks.js:19
msgid "Add an email address field in your form."
msgstr ""

#: dist/blocks.js:19
msgid "Value"
msgstr ""

#: dist/blocks.js:19
msgid "Add a hidden field in your form to pass data."
msgstr ""

#: dist/blocks.js:19
msgid "[0-9]{3}s?[0-9]{3}s?[0-9]{4}"
msgstr ""

#: dist/blocks.js:19
msgid "Pattern"
msgstr ""

#: dist/blocks.js:19
msgid "[0-9]{3}-?[0-9]{2}-?[0-9]{3}"
msgstr ""

#: dist/blocks.js:19
msgid "[0-9]{3}-?[0-9]{3}-?[0-9]{4}"
msgstr ""

#: dist/blocks.js:19
msgid "123-45-678"
msgstr ""

#: dist/blocks.js:19
msgid "123-456-7890"
msgstr ""

#: dist/blocks.js:19
msgid "123 456 7890"
msgstr ""

#: dist/blocks.js:19
msgid "Phone Name"
msgstr ""

#: dist/blocks.js:19
msgid "[0-9]{3}-[0-9]{3}-[0-9]{4}"
msgstr ""

#: dist/blocks.js:19
msgid "123-456-6789"
msgstr ""

#: dist/blocks.js:19
msgid "Add a phone number field in your form."
msgstr ""

#: dist/blocks.js:19
msgid "Address"
msgstr ""

#: dist/blocks.js:19
msgid "Number of lines"
msgstr ""

#: dist/blocks.js:19
msgid "Textarea Name"
msgstr ""

#: dist/blocks.js:19
msgid "Add a text field in your form."
msgstr ""

#: dist/blocks.js:19
msgid "Checkbox Title"
msgstr ""

#: dist/blocks.js:19
msgid "Option Name "
msgstr ""

#: dist/blocks.js:19
msgid "Option Value "
msgstr ""

#: dist/blocks.js:19
msgid " + Add Option "
msgstr ""

#: dist/blocks.js:19
msgid "Add checkboxes to allow multiple choices from options."
msgstr ""

#: dist/blocks.js:19
msgid "RadioBox Title"
msgstr ""

#: dist/blocks.js:19
msgid "Radio Title"
msgstr ""

#: dist/blocks.js:19
msgid "URL Name"
msgstr ""

#: dist/blocks.js:19
msgid "Select Title"
msgstr ""

#: dist/blocks.js:19
msgid "Select your option"
msgstr ""

#: dist/blocks.js:19
msgid "True State"
msgstr ""

#: dist/blocks.js:19
msgid "False State"
msgstr ""

#: dist/blocks.js:19
msgid "ON State"
msgstr ""

#: dist/blocks.js:19
msgid "OFF State"
msgstr ""

#: dist/blocks.js:19
msgid "Leaving the toggle in On/Off state will set it as a default value on page load for the user."
msgstr ""

#: dist/blocks.js:19
msgid "Invalid date range selected"
msgstr ""

#: dist/blocks.js:19
msgid "Additional Validation"
msgstr ""

#: dist/blocks.js:19
msgid "Helps to set range of calender"
msgstr ""

#: dist/blocks.js:19
msgid "From"
msgstr ""

#: dist/blocks.js:19
msgid "Year"
msgstr ""

#: dist/blocks.js:19
msgid "Month"
msgstr ""

#: dist/blocks.js:19
msgid "Acceptance Text"
msgstr ""

#: dist/blocks.js:19
msgid "Label to display as acceptance message."
msgstr ""

#: dist/blocks.js:19
msgid "Enable Privacy Link"
msgstr ""

#: dist/blocks.js:19
msgid "Link Label"
msgstr ""

#: dist/blocks.js:19
msgid "Enter a valid link."
msgstr ""

#: dist/blocks.js:19
msgid "Open in new tab"
msgstr ""

#: dist/blocks.js:19
msgid "_blank"
msgstr ""

#: dist/blocks.js:19
msgid "_self"
msgstr ""

#: dist/blocks.js:19
msgid "This block uses Spectra's API key to display the map. You don't need to create your own API key or worry about renewing it."
msgstr ""

#: dist/blocks.js:19
msgid "Type the address"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Satellite View"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom"
msgstr ""

#: dist/blocks.js:19
msgid "Afrikaans"
msgstr ""

#: dist/blocks.js:19
msgid "Albanian"
msgstr ""

#: dist/blocks.js:19
msgid "Amharic"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Arabic"
msgstr ""

#: dist/blocks.js:19
msgid "Armenian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Azerbaijani"
msgstr ""

#: dist/blocks.js:19
msgid "Basque"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Belarusian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Bengali"
msgstr ""

#: dist/blocks.js:19
msgid "Bosnian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Bulgarian"
msgstr ""

#: dist/blocks.js:19
msgid "Burmese"
msgstr ""

#: dist/blocks.js:19
msgid "Catalan"
msgstr ""

#: dist/blocks.js:19
msgid "Chinese"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Croatian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Czech"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Danish"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Dutch"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "English"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Estonian"
msgstr ""

#: dist/blocks.js:19
msgid "Farsi"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Finnish"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "French"
msgstr ""

#: dist/blocks.js:19
msgid "Galician"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Georgian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "German"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Greek"
msgstr ""

#: dist/blocks.js:19
msgid "Gujarati"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Hebrew"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Hindi"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Hungarian"
msgstr ""

#: dist/blocks.js:19
msgid "Icelandic"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Indonesian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Italian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Japanese"
msgstr ""

#: dist/blocks.js:19
msgid "Kannada"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Kazakh"
msgstr ""

#: dist/blocks.js:19
msgid "Khmer"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Korean"
msgstr ""

#: dist/blocks.js:19
msgid "Kyrgyz"
msgstr ""

#: dist/blocks.js:19
msgid "Lao"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Latvian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Lithuanian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Macedonian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Malay"
msgstr ""

#: dist/blocks.js:19
msgid "Malayalam"
msgstr ""

#: dist/blocks.js:19
msgid "Marathi"
msgstr ""

#: dist/blocks.js:19
msgid "Mongolian"
msgstr ""

#: dist/blocks.js:19
msgid "Nepali"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Norwegian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Polish"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Portuguese"
msgstr ""

#: dist/blocks.js:19
msgid "Punjabi"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Romanian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Russian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Serbian"
msgstr ""

#: dist/blocks.js:19
msgid "Sinhalese"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Slovak"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Slovenian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Spanish"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Swahili"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Swedish"
msgstr ""

#: dist/blocks.js:19
msgid "Tamil"
msgstr ""

#: dist/blocks.js:19
msgid "Telugu"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Thai"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Turkish"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Ukrainian"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Urdu"
msgstr ""

#: dist/blocks.js:19
msgid "Uzbek"
msgstr ""

#: dist/blocks.js:19
#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Vietnamese"
msgstr ""

#: dist/blocks.js:19
msgid "Zulu"
msgstr ""

#: dist/blocks.js:19
msgid "google"
msgstr ""

#: dist/blocks.js:19
msgid "maps"
msgstr ""

#: dist/blocks.js:19
msgid "It seems the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields."
msgstr ""

#: dist/blocks.js:19
msgid "P.S. Note that this notice is visible only in the editor. This will not be visible in frontend. Also, once the required fields are added, this notice will go away."
msgstr ""

#: dist/blocks.js:19
msgid "Read more."
msgstr ""

#: dist/blocks.js:19
msgid "Time"
msgstr ""

#: dist/blocks.js:19
msgid "Show Total Time"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Time is recommended field for schema. It should be ON"
msgstr ""

#: dist/blocks.js:19
msgid "Years"
msgstr ""

#: dist/blocks.js:19
msgid "Months"
msgstr ""

#: dist/blocks.js:19
msgid "Cost"
msgstr ""

#: dist/blocks.js:19
msgid "Show Estimated Cost"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Cost is recommended field for schema.It should be ON"
msgstr ""

#: dist/blocks.js:19
msgid "Click here to find your countrys ISO code."
msgstr ""

#: dist/blocks.js:19
msgid "Tools"
msgstr ""

#: dist/blocks.js:19
msgid "Show Tools"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is recommended field for schema.It should be ON"
msgstr ""

#: dist/blocks.js:19
msgid "Number of Tools"
msgstr ""

#: dist/blocks.js:19
msgid "Materials"
msgstr ""

#: dist/blocks.js:19
msgid "Show Materials"
msgstr ""

#: dist/blocks.js:19
msgid "Number of Materials"
msgstr ""

#: dist/blocks.js:19
msgid "Secondary Heading"
msgstr ""

#: dist/blocks.js:19
msgid "Time Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Cost Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Steps"
msgstr ""

#: dist/blocks.js:19
msgid " Months "
msgstr ""

#: dist/blocks.js:19
msgid " Month "
msgstr ""

#: dist/blocks.js:19
msgid " Days "
msgstr ""

#: dist/blocks.js:19
msgid " Day "
msgstr ""

#: dist/blocks.js:19
msgid "Hours "
msgstr ""

#: dist/blocks.js:19
msgid " Hour "
msgstr ""

#: dist/blocks.js:19
msgid " Minutes "
msgstr ""

#: dist/blocks.js:19
msgid " Minute "
msgstr ""

#: dist/blocks.js:19
msgid "How to configure HowTo Schema in UAG?"
msgstr ""

#: dist/blocks.js:19
msgid "So to get started, you will just need to drag-n-drop the How-to block in the Gutenberg editor. The How-to block can be used on pages which contain a How-to in their title and describe steps to achieve certain requirements."
msgstr ""

#: dist/blocks.js:19
msgid "Total Time Needed ( Minutes ):"
msgstr ""

#: dist/blocks.js:19
msgid "30"
msgstr ""

#: dist/blocks.js:19
msgid "USD"
msgstr ""

#: dist/blocks.js:19
msgid "requirements tools:"
msgstr ""

#: dist/blocks.js:19
msgid "Requirements Tools:"
msgstr ""

#: dist/blocks.js:19
msgid "requirements materials:"
msgstr ""

#: dist/blocks.js:19
msgid "Requirements Materials:"
msgstr ""

#: dist/blocks.js:19
msgid "requirements Steps:"
msgstr ""

#: dist/blocks.js:19
msgid "how to"
msgstr ""

#: dist/blocks.js:19
msgid "Add Link"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This manages the Icon Position with respect to the Label."
msgstr ""

#: dist/blocks.js:19
msgid "Hide Labels"
msgstr ""

#: dist/blocks.js:19
msgid "Icon/Image"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Background Size option is useful when one adds background color to the icons."
msgstr ""

#: dist/blocks.js:19
msgid "Note: Border Radius option is useful when one adds background color or border to the icons."
msgstr ""

#: dist/blocks.js:19
msgid "Gap between Icon and Label"
msgstr ""

#: dist/blocks.js:19
msgid "Gap between Items"
msgstr ""

#: dist/blocks.js:19
msgid "Note: For better editing experience, the gap between items might look larger than applied. Viewing in frontend will show the actual results."
msgstr ""

#: dist/blocks.js:19
msgid "icon list"
msgstr ""

#: dist/blocks.js:19
msgid "image list"
msgstr ""

#: dist/blocks.js:19
msgid "Label Name"
msgstr ""

#: dist/blocks.js:19
msgid "List Item"
msgstr ""

#: dist/blocks.js:19
msgid "Media"
msgstr ""

#: dist/blocks.js:19
msgid "Select Images"
msgstr ""

#: dist/blocks.js:19
msgid "Replace Images"
msgstr ""

#: dist/blocks.js:19
msgid "Select Media"
msgstr ""

#: dist/blocks.js:19
msgid "Replace Media"
msgstr ""

#: dist/blocks.js:19
msgid "Edit Gallery"
msgstr ""

#: dist/blocks.js:19
msgid "Bar Color"
msgstr ""

#: dist/blocks.js:19
msgid "Grayscale Amount"
msgstr ""

#: dist/blocks.js:19
msgid "Sepia Amount"
msgstr ""

#: dist/blocks.js:19
msgid "Effect Amount"
msgstr ""

#: dist/blocks.js:19
msgid "Carousel"
msgstr ""

#: dist/blocks.js:19
msgid "Tiled"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Pagination"
msgstr ""

#: dist/blocks.js:19
msgid "Blur Amount"
msgstr ""

#: dist/blocks.js:19
msgid "Effect"
msgstr ""

#: dist/blocks.js:19
msgid "Grayscale"
msgstr ""

#: dist/blocks.js:19
msgid "Sepia"
msgstr ""

#: dist/blocks.js:19
msgid "Upload images to enable settings"
msgstr ""

#: dist/blocks.js:19
msgid "Lightbox"
msgstr ""

#: dist/blocks.js:19
msgid "Open Image"
msgstr ""

#: dist/blocks.js:19
msgid "Custom URL (Spectra Pro)"
msgstr ""

#: dist/blocks.js:19
msgid "Update Gallery"
msgstr ""

#: dist/blocks.js:19
msgid "Masonry"
msgstr ""

#: dist/blocks.js:19
msgid "Click Event"
msgstr ""

#: dist/blocks.js:19
msgid "Starting Image"
msgstr ""

#: dist/blocks.js:19
msgid "Transition Speed (ms)"
msgstr ""

#: dist/blocks.js:19
msgid "Crop Images to Squares"
msgstr ""

#: dist/blocks.js:19
msgid "Infinite Carousel"
msgstr ""

#: dist/blocks.js:19
msgid "Display Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Display Arrows"
msgstr ""

#: dist/blocks.js:19
msgid "Autoplay"
msgstr ""

#: dist/blocks.js:19
msgid "Autoplay Speed (ms)"
msgstr ""

#: dist/blocks.js:19
msgid "Pause on Hover"
msgstr ""

#: dist/blocks.js:19
msgid "Images Per Page"
msgstr ""

#: dist/blocks.js:19
msgid "Pagination Type"
msgstr ""

#: dist/blocks.js:19
msgid "Loader"
msgstr ""

#: dist/blocks.js:19
msgid "Preview Lightbox (Desktop)"
msgstr ""

#: dist/blocks.js:19
msgid "Note: The lightbox preview will automatically close when the page reloads, and it will be displayed in fullscreen mode on the front end. "
msgstr ""

#: dist/blocks.js:19
msgid "To preview this in the editor, use Desktop mode."
msgstr ""

#: dist/blocks.js:19
msgid "Close Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Display Image Number"
msgstr ""

#: dist/blocks.js:19
msgid "Display Captions"
msgstr ""

#: dist/blocks.js:19
msgid "Display Thumbnails"
msgstr ""

#: dist/blocks.js:19
msgid "Icon/Number Size"
msgstr ""

#: dist/blocks.js:19
msgid "Caption Min Height"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Captions"
msgstr ""

#: dist/blocks.js:19
msgid "Bar Over Image"
msgstr ""

#: dist/blocks.js:19
msgid "Bar Outside Image"
msgstr ""

#: dist/blocks.js:19
msgid "Visibility"
msgstr ""

#: dist/blocks.js:19
msgid "Bar Position"
msgstr ""

#: dist/blocks.js:19
msgid "Above"
msgstr ""

#: dist/blocks.js:19
msgid "Below"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Gap"
msgstr ""

#: dist/blocks.js:19
msgid "Take Image Gallery Block to the next level with powerful features"
msgstr ""

#: dist/blocks.js:19
msgid "Custom URLs for click events"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Hover Zoom"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom Type"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom Out"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Blur Overlay"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Images"
msgstr ""

#: dist/blocks.js:19
msgid "Blur Background"
msgstr ""

#: dist/blocks.js:19
msgid "Accent Color"
msgstr ""

#: dist/blocks.js:19
msgid "This color affects the Image Count, Close Button, and Arrows"
msgstr ""

#: dist/blocks.js:19
msgid "Caption Color"
msgstr ""

#: dist/blocks.js:19
msgid "Caption Background"
msgstr ""

#: dist/blocks.js:19
msgid "Edge Distance"
msgstr ""

#: dist/blocks.js:19
msgid "Hover Colors"
msgstr ""

#: dist/blocks.js:19
msgid "Caption Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Arrows & Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Top Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Position"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Size"
msgstr ""

#: dist/blocks.js:19
msgid "Dot Position"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Loader Size"
msgstr ""

#: dist/blocks.js:19
msgid "Select your images to get started"
msgstr ""

#: dist/blocks.js:19
msgid "No images to display…"
msgstr ""

#: dist/blocks.js:19
msgid "gallery"
msgstr ""

#: dist/blocks.js:19
msgid "grid"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "masonry"
msgstr ""

#: dist/blocks.js:19
msgid "carousel"
msgstr ""

#: dist/blocks.js:19
msgid "tiled"
msgstr ""

#: dist/blocks.js:19
msgid "ultimate"
msgstr ""

#: dist/blocks.js:19
msgid "addon"
msgstr ""

#: dist/blocks.js:19
msgid "spectra"
msgstr ""

#: dist/blocks.js:19
msgid "Always Show"
msgstr ""

#: dist/blocks.js:19
msgid "Notice Display"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Cookies"
msgstr ""

#: dist/blocks.js:19
msgid "Show Closed Notice After (Days)"
msgstr ""

#: dist/blocks.js:19
msgid "Dismiss Icon Color"
msgstr ""

#: dist/blocks.js:19
msgid "inline notice"
msgstr ""

#: dist/blocks.js:19
msgid "notice"
msgstr ""

#: dist/blocks.js:19
msgid "Note: You can see sample Lottie animations "
msgstr ""

#: dist/blocks.js:19
msgid "here on this"
msgstr ""

#: dist/blocks.js:19
msgid " website."
msgstr ""

#: dist/blocks.js:19
msgid "File Source"
msgstr ""

#: dist/blocks.js:19
msgid "Library"
msgstr ""

#: dist/blocks.js:19
msgid "Lottie Animation URL"
msgstr ""

#: dist/blocks.js:19
msgid "Add ALLOW_UNFILTERED_UPLOADS to upload Lottie JSON files. Disable it after upload for better security."
msgstr ""

#: dist/blocks.js:19
msgid "Play On"
msgstr ""

#: dist/blocks.js:19
msgid "Click"
msgstr ""

#: dist/blocks.js:19
msgid "Viewport"
msgstr ""

#: dist/blocks.js:19
msgid "This setting will only take effect once you are on the live page, and not while you're editing."
msgstr ""

#: dist/blocks.js:19
msgid "Loop"
msgstr ""

#: dist/blocks.js:19
msgid "Enabling this will show the animation in the loop. This setting will only take effect once you are on the live page, and not while you're editing."
msgstr ""

#: dist/blocks.js:19
msgid "Speed"
msgstr ""

#: dist/blocks.js:19
msgid "This setting will only take effect once you refresh the editor page."
msgstr ""

#: dist/blocks.js:19
msgid "Reverse"
msgstr ""

#: dist/blocks.js:19
msgid "Direction of animation."
msgstr ""

#: dist/blocks.js:19
msgid "Lottie block requires the file type JSON to be uploaded to media files. Seems like your website has disabled this file type. Please refer"
msgstr ""

#: dist/blocks.js:19
msgid "this document"
msgstr ""

#: dist/blocks.js:19
msgid "to know more about it."
msgstr ""

#: dist/blocks.js:19
msgid "Lottie"
msgstr ""

#: dist/blocks.js:19
msgid "Allows you to add fancy animation i.e Lottie to your website."
msgstr ""

#: dist/blocks.js:19
msgid "lottie"
msgstr ""

#: dist/blocks.js:19
msgid "animation"
msgstr ""

#: dist/blocks.js:19
msgid "Content & Heading"
msgstr ""

#: dist/blocks.js:19
msgid "Show Description"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Icon And Text"
msgstr ""

#: dist/blocks.js:19
msgid "Add Button Title…"
msgstr ""

#: dist/blocks.js:19
msgid "Add Button Description…"
msgstr ""

#: dist/blocks.js:19
msgid "marketing button"
msgstr ""

#: dist/blocks.js:19
msgid "Custom Class (Spectra Pro)"
msgstr ""

#: dist/blocks.js:19
msgid "Custom ID (Spectra Pro)"
msgstr ""

#: dist/blocks.js:19
msgid "Automatic (Spectra Pro)"
msgstr ""

#: dist/blocks.js:19
msgid "Trigger"
msgstr ""

#: dist/blocks.js:19
msgid "Modal Trigger"
msgstr ""

#: dist/blocks.js:19
msgid "Please click on the modal button to preview the modal container."
msgstr ""

#: dist/blocks.js:19
msgid "Modal Width"
msgstr ""

#: dist/blocks.js:19
msgid "Modal Height"
msgstr ""

#: dist/blocks.js:19
msgid "Max Height"
msgstr ""

#: dist/blocks.js:19
msgid "Modal Popup Height"
msgstr ""

#: dist/blocks.js:19
msgid "Close on ESC Keypress"
msgstr ""

#: dist/blocks.js:19
msgid "For the styling options please select the Icon."
msgstr ""

#: dist/blocks.js:19
msgid "For the styling options please select the Image."
msgstr ""

#: dist/blocks.js:19
msgid "Take Modal Block to the next level with powerful features"
msgstr ""

#: dist/blocks.js:19
msgid "Automatic trigger, with custom classes or IDs"
msgstr ""

#: dist/blocks.js:19
msgid "Modal position setting"
msgstr ""

#: dist/blocks.js:19
msgid "Off-canvas modal"
msgstr ""

#: dist/blocks.js:19
msgid "More option for close button"
msgstr ""

#: dist/blocks.js:19
msgid "Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis pulvinar dapibus."
msgstr ""

#: dist/blocks.js:19
msgid "Add Your Text Here"
msgstr ""

#: dist/blocks.js:19
msgid "Close Modal"
msgstr ""

#: dist/blocks.js:19
msgid "modal"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Edit"
msgstr ""

#: dist/blocks.js:19
msgid "(Untitled)"
msgstr ""

#: dist/blocks.js:19
msgid "Edit the blocks inside the preview below to change the content displayed for each post within the post carousel."
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Done"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Reset Layout"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "All"
msgstr ""

#: dist/blocks.js:19
msgid "Showing All Post Grid Layout."
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Post Type"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Taxonomy"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Exclude Current Post"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Posts Per Page"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Offset Starting Post"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Note: The offset will skip the number of posts set, and will use the next post as the starting post."
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Offset By"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Order By"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Random"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Menu Order"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Descending"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Ascending"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Above setting will only take effect once you are on the live page, and not while you're editing."
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "If Posts Not Found"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Display Message"
msgstr ""

#: dist/blocks.js:19
msgid "Pause On Hover"
msgstr ""

#: dist/blocks.js:19
msgid "Infinite Loop"
msgstr ""

#: dist/blocks.js:19
msgid "Arrows & Dots Type"
msgstr ""

#: dist/blocks.js:19
msgid "Arrows"
msgstr ""

#: dist/blocks.js:19
msgid "Dots"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Featured Image"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Sizes"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Link Complete Box"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Title"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Author"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Date"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Comment"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Taxonomy"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Taxonomy Position"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "With Meta"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Taxonomy Style"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Highlighted"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Taxonomy Divider"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Meta Icon"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Excerpt"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show:"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Excerpt"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Full post"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Max number of words in excerpt"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Read More Link"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show Read More Link"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Open Links in New Tab"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Take Post Blocks to the next level with the Loop Builder"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "More customizability"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Blocks inside the Post Items"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Include and Exclude option for Taxonomy/Posts/Authors"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Show sticky posts"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Multiple Layouts"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Content Padding"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Taxonomy Text Color"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Highlighted Color"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Meta"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Background Overlay Color"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow and Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Border Size"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Distance from Edges"
msgstr ""

#: dist/blocks.js:19
msgid "Top Margin for Dots"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "post"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Note: Enabling this will disable the Pagination. Setting the offset parameter overrides/ignores the paged parameter and breaks pagination. "
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Read more"
msgstr ""

#: dist/blocks.js:19
msgid "Post Pagination"
msgstr ""

#: dist/blocks.js:19
msgid "Page Limit"
msgstr ""

#: dist/blocks.js:19
msgid "Ajax"
msgstr ""

#: dist/blocks.js:19
msgid "Pagination Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Pagination Layout"
msgstr ""

#: dist/blocks.js:19
msgid "Previous Text"
msgstr ""

#: dist/blocks.js:19
msgid "Next Text"
msgstr ""

#: dist/blocks.js:19
msgid "Image Ratio"
msgstr ""

#: dist/blocks.js:19
msgid "Inherit"
msgstr ""

#: dist/blocks.js:19
msgid "1:1"
msgstr ""

#: dist/blocks.js:19
msgid "3:2"
msgstr ""

#: dist/blocks.js:19
msgid "16:9"
msgstr ""

#: dist/blocks.js:19
msgid "2:1"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Left Right Position"
msgstr ""

#: dist/blocks.js:19
msgid "Image Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Buttons on Equal Height"
msgstr ""

#: dist/blocks.js:19
msgid "Wrapper Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This padding setting applies to the inner content wrapper in Left Right Layout."
msgstr ""

#: dist/blocks.js:19
msgid "Meta Color"
msgstr ""

#: dist/blocks.js:19
msgid "This spacing is between the Post Grid and the Pagination"
msgstr ""

#: dist/blocks.js:19
#: dist/blocks.js:23
msgid "Edit the blocks inside the preview below to change the content displayed for each post within the post grid."
msgstr ""

#: dist/blocks.js:19
msgid "Display your posts in a structured grid-based layout."
msgstr ""

#: dist/blocks.js:19
msgid "title"
msgstr ""

#: dist/blocks.js:19
msgid "WordPress Post Title"
msgstr ""

#: dist/blocks.js:19
msgid "tags"
msgstr ""

#: dist/blocks.js:19
msgid "taxonomy"
msgstr ""

#: dist/blocks.js:19
msgid "Category"
msgstr ""

#: dist/blocks.js:19
msgid "button"
msgstr ""

#: dist/blocks.js:19
msgid "Show your post's excerpt."
msgstr ""

#: dist/blocks.js:19
msgid "excerpt"
msgstr ""

#: dist/blocks.js:19
msgid "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book."
msgstr ""

#: dist/blocks.js:19
msgid "meta"
msgstr ""

#: dist/blocks.js:19
msgid "Author Name"
msgstr ""

#: dist/blocks.js:19
msgid "Post Date"
msgstr ""

#: dist/blocks.js:19
msgid "Query"
msgstr ""

#: dist/blocks.js:19
msgid "Display Featured Image"
msgstr ""

#: dist/blocks.js:19
msgid "Display Post Author"
msgstr ""

#: dist/blocks.js:19
msgid "Display Post Date"
msgstr ""

#: dist/blocks.js:19
msgid "Display Post Excerpt"
msgstr ""

#: dist/blocks.js:19
msgid "Excerpt Length"
msgstr ""

#: dist/blocks.js:19
msgid "Display Continue Reading Link"
msgstr ""

#: dist/blocks.js:19
msgid "CTA Text"
msgstr ""

#: dist/blocks.js:19
msgid "Open link in New Tab"
msgstr ""

#: dist/blocks.js:19
msgid "Top Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "CTA"
msgstr ""

#: dist/blocks.js:19
msgid "Post Padding"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Posts"
msgstr ""

#: dist/blocks.js:19
msgid "Post - Marker Gap"
msgstr ""

#: dist/blocks.js:19
msgid "No posts found."
msgstr ""

#: dist/blocks.js:19
msgid "timeline"
msgstr ""

#: dist/blocks.js:19
msgid "Show Image"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Choose on what breakpoint the Images will stack."
msgstr ""

#: dist/blocks.js:19
msgid "Price"
msgstr ""

#: dist/blocks.js:19
msgid "Item Padding"
msgstr ""

#: dist/blocks.js:19
msgid "pricelist"
msgstr ""

#: dist/blocks.js:19
msgid "menu"
msgstr ""

#: dist/blocks.js:19
msgid "For the common styling options please select the Parent Block of this Price List Item."
msgstr ""

#: dist/blocks.js:19
msgid "For the common styling options and enabling images, please select the Parent Block of this Price List Item."
msgstr ""

#: dist/blocks.js:19
msgid "Missing merchant-specific identifier for product ( SKU )"
msgstr ""

#: dist/blocks.js:19
msgid "Missing brand of the product"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer Type"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer currency of a product"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer price of a product"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer expiry of a product"
msgstr ""

#: dist/blocks.js:19
msgid "Missing global identifiers"
msgstr ""

#: dist/blocks.js:19
msgid "Missing ISBN number of a book"
msgstr ""

#: dist/blocks.js:19
msgid "Missing author of the book"
msgstr ""

#: dist/blocks.js:19
msgid "Missing released date of the movie"
msgstr ""

#: dist/blocks.js:19
msgid "Missing director name of the movie"
msgstr ""

#: dist/blocks.js:19
msgid "Missing provider of the course"
msgstr ""

#: dist/blocks.js:19
msgid "Missing type of application (Application Category)"
msgstr ""

#: dist/blocks.js:19
msgid "Missing operating system(s) required"
msgstr ""

#: dist/blocks.js:19
msgid "Missing Offer Type"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer price of the application"
msgstr ""

#: dist/blocks.js:19
msgid "Missing offer currency of the application"
msgstr ""

#: dist/blocks.js:19
msgid "Missing title of the review"
msgstr ""

#: dist/blocks.js:19
msgid "Missing review description"
msgstr ""

#: dist/blocks.js:19
msgid "Missing review Image"
msgstr ""

#: dist/blocks.js:19
msgid "Missing url field"
msgstr ""

#: dist/blocks.js:19
msgid "Missing review author name"
msgstr ""

#: dist/blocks.js:19
msgid "Missing review publisher"
msgstr ""

#: dist/blocks.js:19
msgid "Missing date of publish"
msgstr ""

#: dist/blocks.js:19
msgid "It seems that the following fields are empty. This may generate Schema errors / warnings for your Page, we recommend you to fill these fields."
msgstr ""

#: dist/blocks.js:19
msgid "Audio book"
msgstr ""

#: dist/blocks.js:19
msgid "Individual Product"
msgstr ""

#: dist/blocks.js:19
msgid "Product Collection"
msgstr ""

#: dist/blocks.js:19
msgid "Product Group"
msgstr ""

#: dist/blocks.js:19
msgid "Product Model"
msgstr ""

#: dist/blocks.js:19
msgid "Some Products"
msgstr ""

#: dist/blocks.js:19
msgid "Vehicle"
msgstr ""

#: dist/blocks.js:19
msgid "Mobile Application"
msgstr ""

#: dist/blocks.js:19
msgid "Video Game"
msgstr ""

#: dist/blocks.js:19
msgid "Web Application"
msgstr ""

#: dist/blocks.js:19
msgid "ISBN"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema"
msgstr ""

#: dist/blocks.js:19
msgid "Book author name"
msgstr ""

#: dist/blocks.js:19
msgid "Provider"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema, It contain information about the organization that created the content for the course."
msgstr ""

#: dist/blocks.js:19
msgid "Mode"
msgstr ""

#: dist/blocks.js:19
msgid "Online"
msgstr ""

#: dist/blocks.js:19
msgid "Onsite"
msgstr ""

#: dist/blocks.js:19
msgid "Blended"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema, It contain information of medium through which the course will be delivered."
msgstr ""

#: dist/blocks.js:19
msgid "Location"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This property is only required for Onsite or Blended courses, It contain name or address (or both) of the physical location where the course will be taught."
msgstr ""

#: dist/blocks.js:19
msgid "Frequency"
msgstr ""

#: dist/blocks.js:19
msgid "Daily"
msgstr ""

#: dist/blocks.js:19
msgid "Weekly"
msgstr ""

#: dist/blocks.js:19
msgid "Monthly"
msgstr ""

#: dist/blocks.js:19
msgid "Yearly"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema, It contain information of course happens Daily / Weekly / Monthly or Yearly."
msgstr ""

#: dist/blocks.js:19
msgid "Duration"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema, It contain the numerical value for how long the course lasts for in Frequency units. For example, if the Frequency is monthly and the Duration is 4, the course lasts for 4 months."
msgstr ""

#: dist/blocks.js:19
msgid "Pricing Category"
msgstr ""

#: dist/blocks.js:19
msgid "Partially Free"
msgstr ""

#: dist/blocks.js:19
msgid "Subscription"
msgstr ""

#: dist/blocks.js:19
msgid "Paid"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema, It contain information of pricing category of the course."
msgstr ""

#: dist/blocks.js:19
msgid "Application Category"
msgstr ""

#: dist/blocks.js:19
msgid "Operating System"
msgstr ""

#: dist/blocks.js:19
msgid "Director Name"
msgstr ""

#: dist/blocks.js:19
msgid "Date of create"
msgstr ""

#: dist/blocks.js:19
msgid "Review Title Tag"
msgstr ""

#: dist/blocks.js:19
msgid "Show Review Description"
msgstr ""

#: dist/blocks.js:19
msgid "Note: This is a mandatory field for the Review schema."
msgstr ""

#: dist/blocks.js:19
msgid "Show Review Author"
msgstr ""

#: dist/blocks.js:19
msgid "Show Ratings"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Add feature/section ratings separately."
msgstr ""

#: dist/blocks.js:19
msgid "Show Review Image"
msgstr ""

#: dist/blocks.js:19
msgid "Schema"
msgstr ""

#: dist/blocks.js:19
msgid "Item Type"
msgstr ""

#: dist/blocks.js:19
msgid "Course"
msgstr ""

#: dist/blocks.js:19
msgid "Movie"
msgstr ""

#: dist/blocks.js:19
msgid "Software Application"
msgstr ""

#: dist/blocks.js:19
msgid "Item Subtype"
msgstr ""

#: dist/blocks.js:19
msgid "Review Publisher"
msgstr ""

#: dist/blocks.js:19
msgid "Date Of Publish"
msgstr ""

#: dist/blocks.js:19
msgid "Brand"
msgstr ""

#: dist/blocks.js:19
msgid "SKU"
msgstr ""

#: dist/blocks.js:19
msgid "Identifier"
msgstr ""

#: dist/blocks.js:19
msgid "Identifier Type"
msgstr ""

#: dist/blocks.js:19
msgid "Offer Currency"
msgstr ""

#: dist/blocks.js:19
msgid "Offer Price"
msgstr ""

#: dist/blocks.js:19
msgid "Offer Status"
msgstr ""

#: dist/blocks.js:19
msgid "Discontinued"
msgstr ""

#: dist/blocks.js:19
msgid "In Stock"
msgstr ""

#: dist/blocks.js:19
msgid "In Store Only"
msgstr ""

#: dist/blocks.js:19
msgid "Limited Availability"
msgstr ""

#: dist/blocks.js:19
msgid "Online Only"
msgstr ""

#: dist/blocks.js:19
msgid "Out Of Stock"
msgstr ""

#: dist/blocks.js:19
msgid "Pre Order"
msgstr ""

#: dist/blocks.js:19
msgid "Pre Sale"
msgstr ""

#: dist/blocks.js:19
msgid "Sold Out"
msgstr ""

#: dist/blocks.js:19
msgid "Price Valid Until"
msgstr ""

#: dist/blocks.js:19
msgid "Inactive Color"
msgstr ""

#: dist/blocks.js:19
msgid "Outline Color"
msgstr ""

#: dist/blocks.js:19
msgid "Title of the review"
msgstr ""

#: dist/blocks.js:19
msgid "Review Description"
msgstr ""

#: dist/blocks.js:19
msgid "Review Author"
msgstr ""

#: dist/blocks.js:19
msgid "Edit feature"
msgstr ""

#: dist/blocks.js:19
msgid "Insert new review entry"
msgstr ""

#: dist/blocks.js:19
msgid "Title of the summary goes here"
msgstr ""

#: dist/blocks.js:19
msgid "Summary of the review goes here"
msgstr ""

#: dist/blocks.js:19
msgid "ratings"
msgstr ""

#: dist/blocks.js:19
msgid "review"
msgstr ""

#: dist/blocks.js:19
msgid "Note: Please set Separator Height for proper thickness."
msgstr ""

#: dist/blocks.js:19
msgid "Rectangles"
msgstr ""

#: dist/blocks.js:19
msgid "Parallelogram"
msgstr ""

#: dist/blocks.js:19
msgid "Leaves"
msgstr ""

#: dist/blocks.js:19
msgid "Add Element"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Height"
msgstr ""

#: dist/blocks.js:19
msgid "divider"
msgstr ""

#: dist/blocks.js:19
msgid "separator"
msgstr ""

#: dist/blocks.js:19
msgid "Add Slide"
msgstr ""

#: dist/blocks.js:19
msgid "Above setting will only take effect once you are on the live page, and not while you're editing."
msgstr ""

#: dist/blocks.js:19
msgid "Pause On"
msgstr ""

#: dist/blocks.js:19
msgid "Interaction"
msgstr ""

#: dist/blocks.js:19
msgid "Transition Effect"
msgstr ""

#: dist/blocks.js:19
msgid "Fade"
msgstr ""

#: dist/blocks.js:19
msgid "Navigation"
msgstr ""

#: dist/blocks.js:19
msgid "Take Slider Block to the next level with powerful features"
msgstr ""

#: dist/blocks.js:19
msgid "Slides per view"
msgstr ""

#: dist/blocks.js:19
msgid "Gap between slides"
msgstr ""

#: dist/blocks.js:19
msgid "Custom class-based navigation"
msgstr ""

#: dist/blocks.js:19
msgid "URL hash-based navigation"
msgstr ""

#: dist/blocks.js:19
msgid "Arrows and Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Slide 1"
msgstr ""

#: dist/blocks.js:19
msgid "Slide 2"
msgstr ""

#: dist/blocks.js:19
msgid "Slide 3"
msgstr ""

#: dist/blocks.js:19
msgid "Create beautiful sliders with slider block."
msgstr ""

#: dist/blocks.js:19
msgid "slider"
msgstr ""

#: dist/blocks.js:19
msgid "Slide "
msgstr ""

#: dist/blocks.js:19
msgid "Slider Child"
msgstr ""

#: dist/blocks.js:19
msgid "Add and customize content of this slide."
msgstr ""

#: dist/blocks.js:19
msgid "Note: Choose on what breakpoint the Icons will stack."
msgstr ""

#: dist/blocks.js:19
msgid "Note: Border Radius option is useful when one adds background color to the icons."
msgstr ""

#: dist/blocks.js:19
msgid "social share"
msgstr ""

#: dist/blocks.js:19
msgid "Twitter / X"
msgstr ""

#: dist/blocks.js:19
msgid "Google Currents"
msgstr ""

#: dist/blocks.js:19
msgid "Digg"
msgstr ""

#: dist/blocks.js:19
msgid "Reddit"
msgstr ""

#: dist/blocks.js:19
msgid "StumbleUpon"
msgstr ""

#: dist/blocks.js:19
msgid "Myspace"
msgstr ""

#: dist/blocks.js:19
msgid "Pocket"
msgstr ""

#: dist/blocks.js:19
msgid "Image / Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Share your content on this social media platform ."
msgstr ""

#: dist/blocks.js:19
msgid "Range"
msgstr ""

#: dist/blocks.js:19
msgid "1-5"
msgstr ""

#: dist/blocks.js:19
msgid "1-10"
msgstr ""

#: dist/blocks.js:19
msgid "Rating"
msgstr ""

#: dist/blocks.js:19
msgid "Stack"
msgstr ""

#: dist/blocks.js:19
msgid "Star Position"
msgstr ""

#: dist/blocks.js:19
msgid "Before"
msgstr ""

#: dist/blocks.js:19
msgid "After"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Title And Stars"
msgstr ""

#: dist/blocks.js:19
msgid "Unmarked Color"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Stars"
msgstr ""

#: dist/blocks.js:19
msgid "Write a title"
msgstr ""

#: dist/blocks.js:19
msgid "rating"
msgstr ""

#: dist/blocks.js:19
msgid "star rating"
msgstr ""

#: dist/blocks.js:19
msgid "Choose heading tags to generate table"
msgstr ""

#: dist/blocks.js:19
msgid "Title Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "List Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Gap Between Lists"
msgstr ""

#: dist/blocks.js:19
msgid "Table's width will be auto if this is kept off."
msgstr ""

#: dist/blocks.js:19
msgid "Disable Marker"
msgstr ""

#: dist/blocks.js:19
msgid "Marker View"
msgstr ""

#: dist/blocks.js:19
msgid "Bullets"
msgstr ""

#: dist/blocks.js:19
msgid "Numbers"
msgstr ""

#: dist/blocks.js:19
msgid "Make Content Collapsible"
msgstr ""

#: dist/blocks.js:19
msgid "Keep Collapsed Initially"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Style"
msgstr ""

#: dist/blocks.js:19
msgid "Please set the separator thickness to 3px or more to perceive the Double border."
msgstr ""

#: dist/blocks.js:19
msgid "Make List Collapsible"
msgstr ""

#: dist/blocks.js:19
msgid "The collapsable functionality will only work in Front End."
msgstr ""

#: dist/blocks.js:19
msgid "Collapsible Level"
msgstr ""

#: dist/blocks.js:19
msgid "For example, if the depth is set to 1, only first-level headings that have nestable content will display a collapsible icon. As the depth increases, additional nested levels will become collapsible."
msgstr ""

#: dist/blocks.js:19
msgid "Initially Collapsed"
msgstr ""

#: dist/blocks.js:19
msgid "Smooth Scroll"
msgstr ""

#: dist/blocks.js:19
msgid "This will be in action only in Front End."
msgstr ""

#: dist/blocks.js:19
msgid "Smooth Scroll Offset"
msgstr ""

#: dist/blocks.js:19
msgid "Show Scroll To Top"
msgstr ""

#: dist/blocks.js:19
msgid "This will add a scroll to top arrow at the bottom of page."
msgstr ""

#: dist/blocks.js:19
msgid "Inner Content Spacing"
msgstr ""

#: dist/blocks.js:19
msgid "Marker Color"
msgstr ""

#: dist/blocks.js:19
msgid "Scroll To Top"
msgstr ""

#: dist/blocks.js:19
msgid "table of contents"
msgstr ""

#: dist/blocks.js:19
msgid "table"
msgstr ""

#: dist/blocks.js:19
msgid "Horizontal Style 1"
msgstr ""

#: dist/blocks.js:19
msgid "Horizontal Style 2"
msgstr ""

#: dist/blocks.js:19
msgid "Horizontal Style 3"
msgstr ""

#: dist/blocks.js:19
msgid "Horizontal Style 4"
msgstr ""

#: dist/blocks.js:19
msgid "Horizontal Style 5"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Style 6"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Style 7"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Style 8"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Style 9"
msgstr ""

#: dist/blocks.js:19
msgid "Vertical Style 10"
msgstr ""

#: dist/blocks.js:19
msgid "Stack Style 1"
msgstr ""

#: dist/blocks.js:19
msgid "Stack Style 2"
msgstr ""

#: dist/blocks.js:19
msgid "Stack Style 3"
msgstr ""

#: dist/blocks.js:19
msgid "Stack Style 4"
msgstr ""

#: dist/blocks.js:19
msgid "Initial Open Tab"
msgstr ""

#: dist/blocks.js:19
msgid "Tab Alignment"
msgstr ""

#: dist/blocks.js:19
msgid "Tab Icon"
msgstr ""

#: dist/blocks.js:19
msgid "Body"
msgstr ""

#: dist/blocks.js:19
msgid "Move item back"
msgstr ""

#: dist/blocks.js:19
msgid "Move item forward"
msgstr ""

#: dist/blocks.js:19
msgid "Remove tab"
msgstr ""

#: dist/blocks.js:19
msgid "Add tab"
msgstr ""

#: dist/blocks.js:19
msgid "tabs"
msgstr ""

#: dist/blocks.js:19
msgid "Select Taxonomy"
msgstr ""

#: dist/blocks.js:19
msgid "Bullet/Numbers Color"
msgstr ""

#: dist/blocks.js:19
msgid "If taxonomy Not Found"
msgstr ""

#: dist/blocks.js:19
msgid "Show Empty Taxonomy"
msgstr ""

#: dist/blocks.js:19
msgid "Show Posts Count"
msgstr ""

#: dist/blocks.js:19
msgid "Show Hierarchy"
msgstr ""

#: dist/blocks.js:19
msgid "Display Style"
msgstr ""

#: dist/blocks.js:19
msgid "List Style"
msgstr ""

#: dist/blocks.js:19
msgid "Bullet"
msgstr ""

#: dist/blocks.js:19
msgid "Count"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Width (%)"
msgstr ""

#: dist/blocks.js:19
msgid "Separator Thickness"
msgstr ""

#: dist/blocks.js:19
msgid "Hover Color"
msgstr ""

#: dist/blocks.js:19
msgid "There is no style available for the currently selected layout."
msgstr ""

#: dist/blocks.js:19
msgid "Image Style"
msgstr ""

#: dist/blocks.js:19
msgid "Social Links"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Social Links"
msgstr ""

#: dist/blocks.js:19
msgid "Open Links in New Window"
msgstr ""

#: dist/blocks.js:19
msgid "Item 1"
msgstr ""

#: dist/blocks.js:19
msgid "Enter Item 1 URL"
msgstr ""

#: dist/blocks.js:19
msgid "Item 2"
msgstr ""

#: dist/blocks.js:19
msgid "Enter Item 2 URL"
msgstr ""

#: dist/blocks.js:19
msgid "Item 3"
msgstr ""

#: dist/blocks.js:19
msgid "Enter Item 3 URL"
msgstr ""

#: dist/blocks.js:19
msgid "Item 4"
msgstr ""

#: dist/blocks.js:19
msgid "Enter Item 4 URL"
msgstr ""

#: dist/blocks.js:19
msgid "Designation"
msgstr ""

#: dist/blocks.js:19
msgid "Social Icons"
msgstr ""

#: dist/blocks.js:19
msgid "Image Margin"
msgstr ""

#: dist/blocks.js:19
msgid "Write a Designation"
msgstr ""

#: dist/blocks.js:19
msgid "team"
msgstr ""

#: dist/blocks.js:19
msgid "members"
msgstr ""

#: dist/blocks.js:19
msgid "Number of Testimonials"
msgstr ""

#: dist/blocks.js:19
msgid "Show Arrows & Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Company"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow & Dots"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Border Size"
msgstr ""

#: dist/blocks.js:19
msgid "Arrow Border Radius"
msgstr ""

#: dist/blocks.js:19
msgid "Write Description"
msgstr ""

#: dist/blocks.js:19
msgid "Display customer testimonials in customizable layouts."
msgstr ""

#: dist/blocks.js:19
msgid "testimonial"
msgstr ""

#: dist/blocks.js:19
msgid "Enable Masonry Layout"
msgstr ""

#: dist/blocks.js:19
msgid "Fade Down"
msgstr ""

#: dist/blocks.js:19
msgid "Fade Up"
msgstr ""

#: dist/blocks.js:19
msgid "Fade Left"
msgstr ""

#: dist/blocks.js:19
msgid "Fade Right"
msgstr ""

#: dist/blocks.js:19
msgid "Flip Down"
msgstr ""

#: dist/blocks.js:19
msgid "Flip Up"
msgstr ""

#: dist/blocks.js:19
msgid "Flip Left"
msgstr ""

#: dist/blocks.js:19
msgid "Flip Right"
msgstr ""

#: dist/blocks.js:19
msgid "Slide Down"
msgstr ""

#: dist/blocks.js:19
msgid "Slide Up"
msgstr ""

#: dist/blocks.js:19
msgid "Slide Left"
msgstr ""

#: dist/blocks.js:19
msgid "Slide Right"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-In"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-In Down"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-In Up"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-In Left"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-In Right"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-Out"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-Out Down"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-Out Up"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-Out Left"
msgstr ""

#: dist/blocks.js:19
msgid "Zoom-Out Right"
msgstr ""

#: dist/blocks.js:19
msgid "Stick at"
msgstr ""

#: dist/blocks.js:19
msgid "Offset"
msgstr ""

#: dist/blocks.js:19
msgid "Keep Inside Parent"
msgstr ""

#: dist/blocks.js:19
msgid "Sticky"
msgstr ""

#: dist/blocks.js:19
msgid "Sticky Container"
msgstr ""

#: dist/blocks.js:19
msgid "Changes affect the frontend only"
msgstr ""

#: dist/blocks.js:19
msgid "Animation Type"
msgstr ""

#: dist/blocks.js:19
msgid "Preview"
msgstr ""

#: dist/blocks.js:19
msgid "Take Animations to the next level with powerful design features"
msgstr ""

#: dist/blocks.js:19
msgid "Set delays and durations"
msgstr ""

#: dist/blocks.js:19
msgid "Animate all nested blocks inside containers with delays"
msgstr ""

#: dist/blocks.js:19
msgid "Monday"
msgstr ""

#: dist/blocks.js:19
msgid "Tuesday"
msgstr ""

#: dist/blocks.js:19
msgid "Wednesday"
msgstr ""

#: dist/blocks.js:19
msgid "Thursday"
msgstr ""

#: dist/blocks.js:19
msgid "Friday"
msgstr ""

#: dist/blocks.js:19
msgid "Saturday"
msgstr ""

#: dist/blocks.js:19
msgid "Sunday"
msgstr ""

#: dist/blocks.js:19
msgid "User State"
msgstr ""

#: dist/blocks.js:19
msgid "User Role"
msgstr ""

#: dist/blocks.js:19
msgid "Browser"
msgstr ""

#: dist/blocks.js:19
msgid "Day"
msgstr ""

#: dist/blocks.js:19
msgid "Hide From Logged In Users"
msgstr ""

#: dist/blocks.js:19
msgid "Hide From Logged Out Users"
msgstr ""

#: dist/blocks.js:19
msgid "Hide on Operating System"
msgstr ""

#: dist/blocks.js:19
msgid "iOS"
msgstr ""

#: dist/blocks.js:19
msgid "OpenBSD"
msgstr ""

#: dist/blocks.js:19
msgid "SunOS"
msgstr ""

#: dist/blocks.js:19
msgid "Mac OS"
msgstr ""

#: dist/blocks.js:19
msgid "Hide on Browser"
msgstr ""

#: dist/blocks.js:19
msgid "Mozilla Firefox"
msgstr ""

#: dist/blocks.js:19
msgid "Google Chrome"
msgstr ""

#: dist/blocks.js:19
msgid "Opera Mini"
msgstr ""

#: dist/blocks.js:19
msgid "Microsoft Edge"
msgstr ""

#: dist/blocks.js:19
msgid "Hide for User Role"
msgstr ""

#: dist/blocks.js:19
msgid "Select days you want to disable."
msgstr ""

#: dist/blocks.js:19
msgid "Hide on Desktop"
msgstr ""

#: dist/blocks.js:19
msgid "Hide on Tablet"
msgstr ""

#: dist/blocks.js:19
msgid "Hide on Mobile"
msgstr ""

#: dist/blocks.js:19
msgid "Z-Index"
msgstr ""

#: dist/blocks.js:19
msgid "Copy the selected block(s)."
msgstr ""

#: dist/blocks.js:19
msgid "Paste the selected block(s)."
msgstr ""

#: dist/blocks.js:19
msgid "Styles"
msgstr ""

#: dist/blocks.js:19
msgid "Spectra Copy/Paste"
msgstr ""

#: dist/blocks.js:19
msgid "Copy "
msgstr ""

#: dist/blocks.js:19
msgid "Paste "
msgstr ""

#: dist/blocks.js:19
msgid "Below setting will only take effect once you are on the live page, and not while you're editing."
msgstr ""

#: dist/blocks.js:19
msgid "Filter to disable responsive/display condition. "
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:21
msgid "%s Removed from Quick Action Bar."
msgstr ""

#: dist/blocks.js:21
msgid "Add to Quick Action Bar"
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:23
msgid "%s Added to Quick Action Bar."
msgstr ""

#: dist/blocks.js:23
msgid "Already Present in Quick Action Bar"
msgstr ""

#: dist/blocks.js:23
msgid "No results found."
msgstr ""

#: dist/blocks.js:23
msgid "Add blocks to Quick Action Bar"
msgstr ""

#: dist/blocks.js:23
msgid "Re-arrange block inside Quick Action Bar"
msgstr ""

#: dist/blocks.js:23
msgid "Add your own CSS code here to customize the page as per your expectations."
msgstr ""

#: dist/blocks.js:23
msgid "VIP Priority Support"
msgstr ""

#: dist/blocks.js:23
msgid "Enjoy Uninterrupted Productivity and Complete Peace of Mind"
msgstr ""

#: dist/blocks.js:23
msgid "Get the red carpet treatment! Exclusive support service designed for faster assistance and benefits."
msgstr ""

#: dist/blocks.js:23
msgid "Unmatched Speed"
msgstr ""

#: dist/blocks.js:23
msgid "Priority Treatment"
msgstr ""

#: dist/blocks.js:23
msgid "Expert Support"
msgstr ""

#: dist/blocks.js:23
msgid "24/7 Peace of Mind"
msgstr ""

#: dist/blocks.js:23
msgid "Experience peace of mind with premium support. "
msgstr ""

#: dist/blocks.js:23
msgid " Learn more"
msgstr ""

#: dist/blocks.js:23
msgid "/month (billed annually)"
msgstr ""

#: dist/blocks.js:23
msgid "Spectra Page Settings"
msgstr ""

#: dist/blocks.js:23
msgid "Spectra Block Settings"
msgstr ""

#: dist/blocks.js:23
msgid "Tablet & Mobile"
msgstr ""

#: dist/blocks.js:23
msgid "Note: Choose on what breakpoint the columns will stack."
msgstr ""

#: dist/blocks.js:23
msgid "Theme Container Width"
msgstr ""

#: dist/blocks.js:23
msgid "Inner Width"
msgstr ""

#: dist/blocks.js:23
msgid "Default (10px)"
msgstr ""

#: dist/blocks.js:23
msgid "No Gap (0px)"
msgstr ""

#: dist/blocks.js:23
msgid "Narrow (5px)"
msgstr ""

#: dist/blocks.js:23
msgid "Extended (15px)"
msgstr ""

#: dist/blocks.js:23
msgid "Wide (20px)"
msgstr ""

#: dist/blocks.js:23
msgid "XL"
msgstr ""

#: dist/blocks.js:23
msgid "Wider (30px)"
msgstr ""

#: dist/blocks.js:23
msgid "Note: The individual Column Gap can be managed from Column Settings."
msgstr ""

#: dist/blocks.js:23
msgid "Reverse Columns (Tablet & Mobile)"
msgstr ""

#: dist/blocks.js:23
msgid "Reverse Columns (Mobile)"
msgstr ""

#: dist/blocks.js:23
msgid "Select a variation to start with."
msgstr ""

#: dist/blocks.js:23
msgid "One column"
msgstr ""

#: dist/blocks.js:23
msgid "Two columns; equal split"
msgstr ""

#: dist/blocks.js:23
msgid "Two columns; one-third, two-thirds split"
msgstr ""

#: dist/blocks.js:23
msgid "Two columns; two-thirds, one-third split"
msgstr ""

#: dist/blocks.js:23
msgid "Three columns; equal split"
msgstr ""

#: dist/blocks.js:23
msgid "Three columns; wide center column"
msgstr ""

#: dist/blocks.js:23
msgid "Four columns; equal split"
msgstr ""

#: dist/blocks.js:23
msgid "Five columns; equal split"
msgstr ""

#: dist/blocks.js:23
msgid "columns"
msgstr ""

#: dist/blocks.js:23
msgid "rows"
msgstr ""

#: dist/blocks.js:23
msgid "Inherit Inner Width from Theme"
msgstr ""

#: dist/blocks.js:23
msgid "advanced row"
msgstr ""

#: dist/blocks.js:23
msgid "wrapper"
msgstr ""

#: dist/blocks.js:23
msgid "Content Width (%)"
msgstr ""

#: dist/blocks.js:23
msgid "Immediate child of Advanced Columns"
msgstr ""

#: dist/blocks.js:23
msgid "Field"
msgstr ""

#: dist/blocks.js:23
msgid "Radio & Checkbox"
msgstr ""

#: dist/blocks.js:23
msgid "Override Current Style"
msgstr ""

#: dist/blocks.js:23
msgid "Success/Error Message"
msgstr ""

#: dist/blocks.js:23
msgid "Note: This styling can be only seen at frontend"
msgstr ""

#: dist/blocks.js:23
msgid "Validation Message Position"
msgstr ""

#: dist/blocks.js:23
msgid "Bottom Right Side of Field"
msgstr ""

#: dist/blocks.js:23
msgid "Highlight Borders"
msgstr ""

#: dist/blocks.js:23
msgid "Justified"
msgstr ""

#: dist/blocks.js:23
msgid "Label & Input"
msgstr ""

#: dist/blocks.js:23
msgid "Label Color"
msgstr ""

#: dist/blocks.js:23
msgid "Label Typography"
msgstr ""

#: dist/blocks.js:23
msgid "Input Color"
msgstr ""

#: dist/blocks.js:23
msgid "Input Typography"
msgstr ""

#: dist/blocks.js:23
msgid "Label & Input Gap"
msgstr ""

#: dist/blocks.js:23
msgid "Border Bottom"
msgstr ""

#: dist/blocks.js:23
msgid "Fields Space"
msgstr ""

#: dist/blocks.js:23
msgid "Selected Color"
msgstr ""

#: dist/blocks.js:23
msgid "Checkbox Rounded Corners"
msgstr ""

#: dist/blocks.js:23
msgid "Validation Message Color"
msgstr ""

#: dist/blocks.js:23
msgid "Validation Typography"
msgstr ""

#: dist/blocks.js:23
msgid "Message Background Color"
msgstr ""

#: dist/blocks.js:23
msgid "Highlight Border Color"
msgstr ""

#: dist/blocks.js:23
msgid "Success Message"
msgstr ""

#: dist/blocks.js:23
msgid "Error Message"
msgstr ""

#: dist/blocks.js:23
msgid "Select a Contact Form 7"
msgstr ""

#: dist/blocks.js:23
msgid "Loading"
msgstr ""

#: dist/blocks.js:23
msgid "Highly customize and style your Contact Form 7 forms ."
msgstr ""

#: dist/blocks.js:23
msgid "CF7 styler"
msgstr ""

#: dist/blocks.js:23
msgid "contact form styler"
msgstr ""

#: dist/blocks.js:23
msgid "Tab Index"
msgstr ""

#: dist/blocks.js:23
msgid "Form Title & Description"
msgstr ""

#: dist/blocks.js:23
msgid "Show"
msgstr ""

#: dist/blocks.js:23
msgid "Hide"
msgstr ""

#: dist/blocks.js:23
msgid "Field & Input Label Alignment"
msgstr ""

#: dist/blocks.js:23
msgid "Title & Description Alignment"
msgstr ""

#: dist/blocks.js:23
msgid "Submit Button Alignment"
msgstr ""

#: dist/blocks.js:23
msgid "Field Style & Border"
msgstr ""

#: dist/blocks.js:23
msgid "Field Style"
msgstr ""

#: dist/blocks.js:23
msgid "Text Area Height"
msgstr ""

#: dist/blocks.js:23
msgid "Radio & Checkbox Label"
msgstr ""

#: dist/blocks.js:23
msgid "Radio & Checkbox Border"
msgstr ""

#: dist/blocks.js:23
msgid "Note: This styling can be only seen on frontend"
msgstr ""

#: dist/blocks.js:23
msgid "Field Validation"
msgstr ""

#: dist/blocks.js:23
msgid "Message Color"
msgstr ""

#: dist/blocks.js:23
msgid "Advanced Settings"
msgstr ""

#: dist/blocks.js:23
msgid "Field Background Color"
msgstr ""

#: dist/blocks.js:23
msgid "Error Message Validation"
msgstr ""

#: dist/blocks.js:23
msgid "Success Message Validation"
msgstr ""

#: dist/blocks.js:23
msgid "Label & Input Space"
msgstr ""

#: dist/blocks.js:23
msgid "Select a Gravity Form"
msgstr ""

#: dist/blocks.js:23
msgid "GF styler"
msgstr ""

#: dist/blocks.js:23
msgid "gravity form styler"
msgstr ""

#: dist/blocks.js:23
msgid "Showing All Post Masonry Layout."
msgstr ""

#: dist/blocks.js:23
msgid "Infinite Load Event"
msgstr ""

#: dist/blocks.js:23
msgid "Button Text"
msgstr ""

#: dist/blocks.js:23
msgid "Pagination Button Alignment"
msgstr ""

#: dist/blocks.js:23
msgid "Loader Color"
msgstr ""

#: dist/blocks.js:23
msgid "Input Width"
msgstr ""

#: dist/blocks.js:23
msgid "Input Box"
msgstr ""

#: dist/blocks.js:23
msgid "search"
msgstr ""

#: dist/blocks.js:23
msgid "wp"
msgstr ""

#: dist/blocks.js:23
msgid "Please "
msgstr ""

#: dist/blocks.js:23
msgid "install and activate"
msgstr ""

#: dist/blocks.js:23
msgid " SureCart to use this block."
msgstr ""

#: dist/blocks.js:23
msgid "activate"
msgstr ""

#: dist/blocks.js:23
msgid "Display a checkout form."
msgstr ""

#: dist/blocks.js:23
msgid "cart"
msgstr ""

#: dist/blocks.js:23
msgid "surecart"
msgstr ""

#: dist/blocks.js:23
msgid "form"
msgstr ""

#: dist/blocks.js:23
msgid "Display a list of products."
msgstr ""

#: dist/blocks.js:23
msgid " SureForms to use this block."
msgstr ""

#: dist/blocks.js:23
msgid "Collect and Manage data effortlessly with customizable forms."
msgstr ""

#: dist/blocks.js:23
msgid "sureforms"
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:25
msgid "%s "
msgstr ""

#. translators: abbreviation for units
#: dist/blocks.js:27
#: dist/blocks.js:31
msgid "%s The page will be saved and refreshed."
msgstr ""

#. translators: %s: error message
#: dist/blocks.js:29
#: dist/blocks.js:33
msgid "Error saving the page: %s"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Get Started Now"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Go back to the dashboard"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Welcome to the Zip AI Setup Wizard!"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Zip AI is your WordPress assistant, accessible right within your backend. Create persuasive content, generate custom code, and get answers to your WordPress queries in seconds. The possibilities are endless!"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "With Zip, you can effortlessly create persuasive, engaging copy that resonates with your audience."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Zip can personalize and customize the block patterns and section templates tailored to your website's unique needs."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Got questions? Zip has the answers. Whether it's troubleshooting, or customizing your site, Zip has your back."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Say goodbye to generic designs and say hello to Zip's personalized page templates, tailored just for you."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "No more struggling with complex coding issues. Zip can whip up custom code, functions, and CSS tailored to your needs."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:1
msgid "Custom Pages with AI"
msgstr ""

#. translators: %s: Percentage Ascii Code
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:2
msgid "With Zip AI by your side, you can create beautiful, 100%s custom web pages without the need for any design or coding skills."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:2
msgid "From the Team Behind Some Iconic WordPress Products"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:2
msgid "Visit Website"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:2
msgid "Words Written"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:2
msgid "Get more Credits"
msgstr ""

#. translators: %s: number of words
#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "of %s"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Enable Zip AI"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "You can easily enable or disable Zip AI from this section. Simply toggle the switch on or off with a single click."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Zip is Authorized"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Your website is connected to AI. You can disconnect at any time."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Revoke Access"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Are you sure you want to disconnect?"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "You will need to reconnect to use AI features again."
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Revoke"
msgstr ""

#: lib/zip-ai/admin/dashboard-app/build/dashboard-app.js:3
msgid "Zip - Your AI Assistant"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Chinese (Simplified)"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Filipino"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Friendly"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Formal"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Casual"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Professional"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Informative"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Playful"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Serious"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Humorous"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Emotional"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Fix any grammatical mistakes."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Make it longer."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:1
msgid "Make it shorter."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Change tone to %s."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Rephrase"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Create with AI"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write a short description"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "for this product"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write a short description."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write a long description"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write a long description."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Draft with AI"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Give me an idea"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "for an attractive heading about"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Give me an idea for "
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Show me a code snippet"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "of blur-on-hover CSS"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Show me a code snippet of "
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write me a description"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "about a product for"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Write me a description about "
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Paste from clipboard"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "and chat from there"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Fix Grammar"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Make Longer"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Make Shorter"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Change Tone"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:2
msgid "Translate"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Translate to %s."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Edit Message"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Replace Richtext"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Copy & Close"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Note: All subsequent messages will be deleted after you update."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "Update"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:3
msgid "It looks like I've encountered an error…"
msgstr ""

#. translators: %1$d is the current page, %2$d is the total number of pages.
#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "%1$d/%2$d"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "Something went wrong while I was generating a response."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "Generating…"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "How can I help you?"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "Ask AI"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:5
msgid "Clear Chat"
msgstr ""

#. Translators: %1$s is the opening link tag, %2$s is the closing link tag.
#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "AI Assistant can make mistakes. Want to %1$sdisable it?%2$s"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "AI Assistant can make mistakes."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "Reconnecting…"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:7
msgid "Getting Started…"
msgstr ""

#. Translators: %1$s is the opening link tag, %2$s is the closing link tag.
#: lib/zip-ai/sidebar/build/sidebar-app.js:9
msgid "Get started from %1$shere%2$s."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:9
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "The possibilities are endless!"
msgstr ""

#. translators: %s: Plugin Name
#: lib/zip-ai/sidebar/build/sidebar-app.js:10
msgid "Build 10x Faster with %s AI"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:10
msgid "Build 10x Faster with ZipWP"
msgstr ""

#. translators: %s: Plugin Name
#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "%s offers AI features powered by ZipWP to help you build your website 10 times faster."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "ZipWP offers AI features to help you build your website 10 times faster."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Translate Your Pages"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Write Content for Pages"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Customize Templates"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Craft Product Descriptions"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Engage with Comments"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Get Ready!"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Something went wrong, please try again."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Dismiss"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Hi there! I'm here to assist you."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Choose a prompt bellow or write on your own."
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:11
msgid "Ask me about what you need."
msgstr ""

#. translators: %s: lastUsedTone label
#: lib/zip-ai/sidebar/build/sidebar-app.js:12
msgid "Change Tone to %s"
msgstr ""

#: lib/zip-ai/sidebar/build/sidebar-app.js:12
msgid "Something Else"
msgstr ""

#: lib/gutenberg-templates/inc/block/dist/block.json
msgctxt "block title"
msgid "Spectra AI"
msgstr ""
PK��][=I��||>ultimate-addons-for-gutenberg/includes/blocks/column/error_lognu�[���[27-Oct-2025 03:55:25 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php on line 10
[27-Oct-2025 04:33:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php on line 14
[27-Oct-2025 05:53:49 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php on line 10
[27-Oct-2025 06:09:03 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php on line 14
[27-Oct-2025 06:24:44 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php on line 10
[27-Oct-2025 06:34:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php on line 14
[27-Oct-2025 12:22:01 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php on line 10
[27-Oct-2025 12:52:25 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php on line 14
[27-Oct-2025 13:57:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/block.php on line 14
[27-Oct-2025 13:59:03 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/column/attributes.php on line 10
PK��][!�Z��	�	Cultimate-addons-for-gutenberg/includes/blocks/column/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'column' );

return array_merge(
	array(
		'classMigrate'             => false,
		'block_id'                 => '',
		'topPadding'               => '',
		'bottomPadding'            => '',
		'leftPadding'              => '',
		'rightPadding'             => '',
		'topMargin'                => '',
		'bottomMargin'             => '',
		'leftMargin'               => '',
		'rightMargin'              => '',
		'topPaddingTablet'         => '',
		'bottomPaddingTablet'      => '',
		'leftPaddingTablet'        => '',
		'rightPaddingTablet'       => '',
		'topPaddingMobile'         => '',
		'bottomPaddingMobile'      => '',
		'leftPaddingMobile'        => '',
		'rightPaddingMobile'       => '',
		'topMarginMobile'          => '',
		'bottomMarginMobile'       => '',
		'leftMarginMobile'         => '',
		'rightMarginMobile'        => '',
		'topMarginTablet'          => '',
		'bottomMarginTablet'       => '',
		'leftMarginTablet'         => '',
		'rightMarginTablet'        => '',
		'colWidth'                 => '',
		'colWidthTablet'           => '',
		'colWidthMobile'           => '',
		'backgroundType'           => 'none',
		'backgroundImage'          => '',
		'backgroundPosition'       => 'center-center',
		'backgroundSize'           => 'cover',
		'backgroundRepeat'         => 'no-repeat',
		'backgroundAttachment'     => 'scroll',
		'backgroundColor'          => '',
		'gradientColor1'           => '',
		'gradientColor2'           => '',
		'gradientType'             => 'linear',
		'gradientLocation1'        => 0,
		'gradientLocation2'        => 100,
		'gradientAngle'            => 0,
		'backgroundImageColor'     => '',
		'align'                    => 'center',
		'alignMobile'              => '',
		'alignTablet'              => '',
		'mobileMarginType'         => 'px',
		'tabletMarginType'         => 'px',
		'desktopMarginType'        => 'px',
		'mobilePaddingType'        => 'px',
		'tabletPaddingType'        => 'px',
		'desktopPaddingType'       => 'px',
		'overlayType'              => 'color',
		'gradientOverlayColor1'    => '',
		'gradientOverlayColor2'    => '',
		'gradientOverlayType'      => 'linear',
		'gradientOverlayLocation1' => '0',
		'gradientOverlayLocation2' => '100',
		'gradientOverlayAngle'     => '0',
		'gradientValue'            => '',
		'selectGradient'           => 'basic',
	),
	$border_attribute
);
PK��][w�6^��>ultimate-addons-for-gutenberg/includes/blocks/column/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/column';
$block_data = array(
	'slug'           => '',
	'link'           => '',
	'title'          => __( 'Column', 'ultimate-addons-for-gutenberg' ),
	'description'    => __( 'Immediate child of Advanced Columns.', 'ultimate-addons-for-gutenberg' ),
	'default'        => true,
	'is_child'       => true,
	'extension'      => false,
	'dynamic_assets' => array(
		'dir' => 'column',
	),
	'deprecated'     => true,
);
PK��][z��{
!
!Eultimate-addons-for-gutenberg/includes/blocks/column/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

global $content_width;

$bg_type      = ( isset( $attr['backgroundType'] ) ) ? $attr['backgroundType'] : 'none';
$overlay_type = ( isset( $attr['overlayType'] ) ) ? $attr['overlayType'] : 'none';

$border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'column' );
$border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$border,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'column', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'column', 'mobile' );

$style = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPadding'], $attr['desktopPaddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPadding'], $attr['desktopPaddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPadding'], $attr['desktopPaddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPadding'], $attr['desktopPaddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['topMargin'], $attr['desktopMarginType'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMargin'], $attr['desktopMarginType'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['desktopMarginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['desktopMarginType'] ),
	),
	$border
);

$m_selectors = array();
$t_selectors = array();

$position = str_replace( '-', ' ', $attr['backgroundPosition'] );

if ( 'image' === $bg_type ) {

	$style['background-image']      = ( isset( $attr['backgroundImage'] ) && isset( $attr['backgroundImage']['url'] ) ) ? "url('" . $attr['backgroundImage']['url'] . "' )" : null;
	$style['background-position']   = $position;
	$style['background-attachment'] = $attr['backgroundAttachment'];
	$style['background-repeat']     = $attr['backgroundRepeat'];
	$style['background-size']       = $attr['backgroundSize'];

}

$selectors = array(
	'.uagb-column__wrap' => $style,
);

$selectors['.uagb-column__wrap:hover'] = array(
	'border-color' => $attr['columnBorderHColor'],
);


if ( 'image' === $bg_type ) {
	if ( 'color' === $overlay_type ) {
		$selectors[' > .uagb-column__overlay'] = array(
			'background-color' => $attr['backgroundImageColor'],
			'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
		);
	} else {
		if ( $attr['gradientValue'] ) {
			$selectors[' > .uagb-column__overlay']['background-image'] = $attr['gradientValue'];
		} else {
			$selectors[' > .uagb-column__overlay']['background-color'] = 'transparent';
			$selectors[' > .uagb-column__overlay']['opacity']          = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
			if ( 'linear' === $attr['gradientOverlayType'] ) {

				$selectors[' > .uagb-column__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientOverlayAngle'] . 'deg, ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			} else {

				$selectors[' > .uagb-column__overlay']['background-image'] = 'radial-gradient( at center center, ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			}
		}
	}
} elseif ( 'color' === $bg_type ) {
	$selectors[' > .uagb-column__overlay'] = array(
		'background-color' => $attr['backgroundColor'],
		'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
	);
} elseif ( 'gradient' === $bg_type ) {

	$gradientColor1    = isset( $attr['gradientColor1'] ) ? $attr['gradientColor1'] : '';
	$gradientColor2    = isset( $attr['gradientColor2'] ) ? $attr['gradientColor2'] : '';
	$gradientType      = isset( $attr['gradientType'] ) ? $attr['gradientType'] : '';
	$gradientLocation1 = isset( $attr['gradientLocation1'] ) ? $attr['gradientLocation1'] : '';
	$gradientLocation2 = isset( $attr['gradientLocation2'] ) ? $attr['gradientLocation2'] : '';
	$gradientAngle     = isset( $attr['gradientAngle'] ) ? $attr['gradientAngle'] : '';

	if ( 'basic' === $attr['selectGradient'] && $attr['gradientValue'] ) {
		$gradient = $attr['gradientValue'];
	} elseif ( 'linear' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'linear-gradient(' . $gradientAngle . 'deg, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} elseif ( 'radial' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} 
	$selectors[' > .uagb-column__overlay']['background-image'] = $gradient;
}

$selectors[' > .uagb-column__overlay']['border-radius'] = $attr['columnBorderTopLeftRadius'] . ' ' . $attr['columnBorderTopRightRadius'] . ' ' . $attr['columnBorderBottomLeftRadius'] . ' ' . $attr['columnBorderBottomRightRadius'];

if ( '' !== $attr['colWidth'] && 0 !== $attr['colWidth'] ) {

	$selectors['.uagb-column__wrap']['width'] = UAGB_Helper::get_css_value( $attr['colWidth'], '%' );
}

$m_selectors = array(
	'.uagb-column__wrap' => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingType'] ),
			'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['mobileMarginType'] ),
			'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['mobileMarginType'] ),
			'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['mobileMarginType'] ),
			'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['mobileMarginType'] ),
		),
		$border_mobile
	),
);

$t_selectors = array(
	'.uagb-column__wrap' => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingType'] ),
			'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['tabletMarginType'] ),
			'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['tabletMarginType'] ),
			'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['tabletMarginType'] ),
			'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['tabletMarginType'] ),
		),
		$border_tablet
	),
);

if ( '' !== $attr['colWidthTablet'] && 0 !== $attr['colWidthTablet'] ) {

	$t_selectors['.uagb-column__wrap']['width'] = UAGB_Helper::get_css_value( $attr['colWidthTablet'], '%' );
}

if ( '' !== $attr['colWidthMobile'] && 0 !== $attr['colWidthMobile'] ) {

	$m_selectors['.uagb-column__wrap']['width'] = UAGB_Helper::get_css_value( $attr['colWidthMobile'], '%' );
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.wp-block-uagb-column.uagb-block-' : '#uagb-column-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK��][��w���?ultimate-addons-for-gutenberg/includes/blocks/counter/error_lognu�[���[27-Oct-2025 04:05:36 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/attributes.php on line 10
[27-Oct-2025 04:28:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/block.php on line 16
[27-Oct-2025 05:19:58 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/frontend.js.php on line 10
[27-Oct-2025 05:19:58 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/counter/frontend.js.php on line 12
PK��][aX����Dultimate-addons-for-gutenberg/includes/blocks/counter/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$icon_wrap_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'iconWrap' );

return array_merge(
	array(
		'block_id'                   => '',
		'isFrontend'                 => true,
		'layout'                     => 'number',
		'align'                      => 'center',
		'alignTablet'                => '',
		'alignMobile'                => '',
		'startNumber'                => 0,
		'endNumber'                  => 80,
		'totalNumber'                => 100,
		'decimalPlaces'              => 0,
		'numberPrefix'               => '',
		'numberSuffix'               => '%',
		'animationDuration'          => 1500,
		'thousandSeparator'          => ',',
		// heading.
		'heading'                    => __( 'Add Your Title Here…', 'ultimate-addons-for-gutenberg' ),
		'headingTag'                 => '',
		'headingFontFamily'          => 'Default',
		'headingFontWeight'          => '',
		'headingFontStyle'           => 'normal',
		'headingTransform'           => '',
		'headingFontSize'            => '',
		'headingColor'               => '#4B4F58',
		'headingTransform'           => '',
		'headingDecoration'          => '',
		'headingFontSizeType'        => 'px',
		'headingFontSizeMobile'      => '',
		'headingFontSizeTablet'      => '',
		'headingLineHeight'          => 'em',
		'headingLineHeightType'      => 'em',
		'headingLineHeightMobile'    => '',
		'headingLineHeightTablet'    => '',
		'headingLetterSpacingType'   => 'px',
		'headingLetterSpacing'       => '',
		'headingLetterSpacingTablet' => '',
		'headingLetterSpacingMobile' => '',
		// Heading Margin.
		'headingTopMargin'           => '',
		'headingRightMargin'         => '',
		'headingLeftMargin'          => '',
		'headingBottomMargin'        => '',
		'headingTopMarginTablet'     => '',
		'headingRightMarginTablet'   => '',
		'headingLeftMarginTablet'    => '',
		'headingBottomMarginTablet'  => '',
		'headingTopMarginMobile'     => '',
		'headingRightMarginMobile'   => '',
		'headingLeftMarginMobile'    => '',
		'headingBottomMarginMobile'  => '',
		'headingMarginUnit'          => 'px',
		'headingMarginUnitTablet'    => 'px',
		'headingMarginUnitMobile'    => 'px',
		// Block Margin.
		'blockTopMargin'             => '',
		'blockRightMargin'           => '',
		'blockLeftMargin'            => '',
		'blockBottomMargin'          => '',
		'blockTopMarginTablet'       => '',
		'blockRightMarginTablet'     => '',
		'blockLeftMarginTablet'      => '',
		'blockBottomMarginTablet'    => '',
		'blockTopMarginMobile'       => '',
		'blockRightMarginMobile'     => '',
		'blockLeftMarginMobile'      => '',
		'blockBottomMarginMobile'    => '',
		'blockMarginUnit'            => 'px',
		'blockMarginUnitTablet'      => 'px',
		'blockMarginUnitMobile'      => 'px',
		// Block Padding.
		'blockTopPadding'            => '',
		'blockRightPadding'          => '',
		'blockLeftPadding'           => '',
		'blockBottomPadding'         => '',
		'blockTopPaddingTablet'      => '',
		'blockRightPaddingTablet'    => '',
		'blockLeftPaddingTablet'     => '',
		'blockBottomPaddingTablet'   => '',
		'blockTopPaddingMobile'      => '',
		'blockRightPaddingMobile'    => '',
		'blockLeftPaddingMobile'     => '',
		'blockBottomPaddingMobile'   => '',
		'blockPaddingUnit'           => 'px',
		'blockPaddingUnitTablet'     => 'px',
		'blockPaddingUnitMobile'     => 'px',
		// number.
		'numberColor'                => '',
		'numberFontFamily'           => '',
		'numberFontStyle'            => 'normal',
		'numberTransform'            => '',
		'numberDecoration'           => '',
		'numberFontSizeType'         => 'px',
		'numberLineHeightType'       => 'em',
		'numberFontSize'             => '',
		'numberFontWeight'           => '',
		'numberFontSizeTablet'       => '',
		'numberFontSizeMobile'       => '',
		'numberLineHeight'           => '',
		'numberLineHeightTablet'     => '',
		'numberLineHeightMobile'     => '',
		'numberTopMargin'            => '',
		'numberRightMargin'          => '',
		'numberLeftMargin'           => '',
		'numberBottomMargin'         => '',
		'numberTopMarginTablet'      => '',
		'numberRightMarginTablet'    => '',
		'numberLeftMarginTablet'     => '',
		'numberBottomMarginTablet'   => '',
		'numberTopMarginMobile'      => '',
		'numberRightMarginMobile'    => '',
		'numberLeftMarginMobile'     => '',
		'numberBottomMarginMobile'   => '',
		'numberMarginUnit'           => 'px',
		'numberMarginUnitTablet'     => 'px',
		'numberMarginUnitMobile'     => 'px',
		'numberLetterSpacingType'    => 'px',
		'numberLetterSpacing'        => '',
		'numberLetterSpacingTablet'  => '',
		'numberLetterSpacingMobile'  => '',
		// Prefix.
		'prefixRightDistance'        => 0,
		'prefixRightDistanceTablet'  => '',
		'prefixRightDistanceMobile'  => '',
		// Suffix.
		'suffixLeftDistance'         => 0,
		'suffixLeftDistanceTablet'   => '',
		'suffixLeftDistanceMobile'   => '',
		// circle.
		'circleSize'                 => 230,
		'circleStokeSize'            => 8,
		'circleForeground'           => '#007cba',
		'circleBackground'           => '#eaeaea',
		// bar.
		'barSize'                    => '',
		'barForeground'              => '#007cba',
		'barBackground'              => '#eaeaea',
		'barFlip'                    => false,
		// Box Shadow.
		'boxShadowColor'             => '#00000070',
		'boxShadowHOffset'           => 0,
		'boxShadowVOffset'           => 0,
		'boxShadowBlur'              => '',
		'boxShadowSpread'            => '',
		'boxShadowPosition'          => '',
		'boxShadowColorHover'        => '',
		'boxShadowHOffsetHover'      => 0,
		'boxShadowVOffsetHover'      => 0,
		'boxShadowBlurHover'         => '',
		'boxShadowSpreadHover'       => '',
		'boxShadowPositionHover'     => '',
		'showIcon'                   => true,
		// Icon and Image.
		'sourceType'                 => 'icon',
		'icon'                       => 'star',
		'iconColor'                  => '#4B4F58',
		'iconBackgroundColor'        => '',
		'iconHoverColor'             => '',
		'iconBackgroundHoverColor'   => '',
		'iconSize'                   => 30,
		'iconSizeTablet'             => '',
		'iconSizeMobile'             => '',
		'iconSizeType'               => 'px',
		'iconSizeTypeTablet'         => 'px',
		'iconSizeTypeMobile'         => 'px',
		'iconImgPosition'            => 'top',
		'imageWidthType'             => true,
		'imageWidth'                 => '',
		'imageWidthTablet'           => '',
		'imageWidthMobile'           => '',
		'imageWidthUnit'             => 'px',
		'imageWidthUnitTablet'       => 'px',
		'imageWidthUnitMobile'       => 'px',
		// Icon Padding.
		'iconTopPadding'             => '',
		'iconRightPadding'           => '',
		'iconLeftPadding'            => '',
		'iconBottomPadding'          => '',
		'iconTopPaddingTablet'       => '',
		'iconRightPaddingTablet'     => '',
		'iconLeftPaddingTablet'      => '',
		'iconBottomPaddingTablet'    => '',
		'iconTopPaddingMobile'       => '',
		'iconRightPaddingMobile'     => '',
		'iconLeftPaddingMobile'      => '',
		'iconBottomPaddingMobile'    => '',
		'iconPaddingUnit'            => 'px',
		'iconPaddingUnitTablet'      => 'px',
		'iconPaddingUnitMobile'      => 'px',
		'iconTopMargin'              => '',
		'iconRightMargin'            => '',
		'iconLeftMargin'             => '',
		'iconBottomMargin'           => '',
		'iconTopMarginTablet'        => '',
		'iconRightMarginTablet'      => '',
		'iconLeftMarginTablet'       => '',
		'iconBottomMarginTablet'     => '',
		'iconTopMarginMobile'        => '',
		'iconRightMarginMobile'      => '',
		'iconLeftMarginMobile'       => '',
		'iconBottomMarginMobile'     => '',
		'iconMarginUnit'             => 'px',
		'iconMarginUnitTablet'       => 'px',
		'iconMarginUnitMobile'       => 'px',
	),
	$icon_wrap_border_attribute
);
PK��][�

��?ultimate-addons-for-gutenberg/includes/blocks/counter/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$block_slug = 'uagb/counter';
$block_data = array(
	'doc'                 => 'counter',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'post' ),
	'link'                => 'counter',
	'title'               => __( 'Counter', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'This block allows you to add number counter.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'counter' ),
	'static_dependencies' => array(
		'uagb-counter-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'spectra-counter' ),
			'dep'  => array(),
			'type' => 'js',
		),
		'uagb-countUp-js' => array(
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'counter',
	),
);
PK��][\	�F�`�`Fultimate-addons-for-gutenberg/includes/blocks/counter/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

// Add fonts.
UAGB_Block_JS::blocks_counter_gfont( $attr );

$attr['prefixRightDistanceTablet'] = is_numeric( $attr['prefixRightDistanceTablet'] ) ? $attr['prefixRightDistanceTablet'] : $attr['prefixRightDistance'];
$attr['prefixRightDistanceMobile'] = is_numeric( $attr['prefixRightDistanceMobile'] ) ? $attr['prefixRightDistanceMobile'] : $attr['prefixRightDistanceTablet'];

$attr['suffixLeftDistanceTablet'] = is_numeric( $attr['suffixLeftDistanceTablet'] ) ? $attr['suffixLeftDistanceTablet'] : $attr['suffixLeftDistance'];
$attr['suffixLeftDistanceMobile'] = is_numeric( $attr['suffixLeftDistanceMobile'] ) ? $attr['suffixLeftDistanceMobile'] : $attr['suffixLeftDistanceTablet'];

$attr['iconSizeTablet'] = is_numeric( $attr['iconSizeTablet'] ) ? $attr['iconSizeTablet'] : $attr['iconSize'];
$attr['iconSizeMobile'] = is_numeric( $attr['iconSizeMobile'] ) ? $attr['iconSizeMobile'] : $attr['iconSizeTablet'];

$attr['imageWidthTablet'] = is_numeric( $attr['imageWidthTablet'] ) ? $attr['imageWidthTablet'] : $attr['imageWidth'];
$attr['imageWidthMobile'] = is_numeric( $attr['imageWidthMobile'] ) ? $attr['imageWidthMobile'] : $attr['imageWidthTablet'];

// Icon, Image Border CSS.
$icon_wrap_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'iconWrap' );
$icon_wrap_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'iconWrap', 'tablet' );
$icon_wrap_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'iconWrap', 'mobile' );

$circle_pos    = ( $attr['circleSize'] / 2 );
$circle_radius = $circle_pos - ( $attr['circleStokeSize'] / 2 );
$circle_dash   = round( floatval( 2 * pi() * $circle_radius ), 2 );

// Icon and Image Common Padding.
$icon_and_image_spacing = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopPadding'], $attr['iconPaddingUnit'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightPadding'], $attr['iconPaddingUnit'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomPadding'], $attr['iconPaddingUnit'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftPadding'], $attr['iconPaddingUnit'] ),

	'margin-top'     => UAGB_Helper::get_css_value( $attr['iconTopMargin'], $attr['iconMarginUnit'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['iconRightMargin'], $attr['iconMarginUnit'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['iconBottomMargin'], $attr['iconMarginUnit'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['iconLeftMargin'], $attr['iconMarginUnit'] ),
);

$icon_and_image_spacing_tablet = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopPaddingTablet'], $attr['iconPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightPaddingTablet'], $attr['iconPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomPaddingTablet'], $attr['iconPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftPaddingTablet'], $attr['iconPaddingUnitTablet'] ),

	'margin-top'     => UAGB_Helper::get_css_value( $attr['iconTopMarginTablet'], $attr['iconMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['iconRightMarginTablet'], $attr['iconMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['iconBottomMarginTablet'], $attr['iconMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['iconLeftMarginTablet'], $attr['iconMarginUnitTablet'] ),
);

$icon_and_image_spacing_mobile = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopPaddingMobile'], $attr['iconPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightPaddingMobile'], $attr['iconPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomPaddingMobile'], $attr['iconPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftPaddingMobile'], $attr['iconPaddingUnitMobile'] ),

	'margin-top'     => UAGB_Helper::get_css_value( $attr['iconTopMarginMobile'], $attr['iconMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['iconRightMarginMobile'], $attr['iconMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['iconBottomMarginMobile'], $attr['iconMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['iconLeftMarginMobile'], $attr['iconMarginUnitMobile'] ),
);

$box_shadow_position_css = $attr['boxShadowPosition'];

if ( 'outset' === $attr['boxShadowPosition'] ) {
	$box_shadow_position_css = '';
}

$box_shadow_position_css_hover = $attr['boxShadowPositionHover'];

if ( 'outset' === $attr['boxShadowPositionHover'] ) {
	$box_shadow_position_css_hover = '';
}

$m_selectors = array();
$t_selectors = array();

$selectors = array(
	'.wp-block-uagb-counter'                               => array(
		'text-align'     => $attr['align'],
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMargin'], $attr['blockMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMargin'], $attr['blockMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMargin'], $attr['blockMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMargin'], $attr['blockMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPadding'], $attr['blockPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPadding'], $attr['blockPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPadding'], $attr['blockPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPadding'], $attr['blockPaddingUnit'] ),
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap' => array_merge(
		$icon_and_image_spacing
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img' => $icon_wrap_border_css,
	'.wp-block-uagb-counter:hover .wp-block-uagb-counter__image-wrap img' => array(
		'border-color' => $attr['iconWrapBorderHColor'],
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__icon'  => array_merge(
		array(
			'background-color' => $attr['iconBackgroundColor'],
		),
		$icon_and_image_spacing,
		$icon_wrap_border_css
	),
	'.wp-block-uagb-counter:hover .wp-block-uagb-counter__icon' => array(
		'background-color' => $attr['iconBackgroundHoverColor'],
		'border-color'     => $attr['iconWrapBorderHColor'],
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__icon svg' => array(
		'fill'   => $attr['iconColor'],
		'width'  => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeType'] ),
	),
	'.wp-block-uagb-counter:hover .wp-block-uagb-counter__icon svg' => array(
		'fill' => $attr['iconHoverColor'],
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__title' => array(
		'font-family'     => $attr['headingFontFamily'],
		'font-style'      => $attr['headingFontStyle'],
		'text-decoration' => $attr['headingDecoration'],
		'text-transform'  => $attr['headingTransform'],
		'font-weight'     => $attr['headingFontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['headingFontSize'], $attr['headingFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['headingLineHeight'], $attr['headingLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['headingLetterSpacing'], $attr['headingLetterSpacingType'] ),
		'color'           => $attr['headingColor'],
		'margin-top'      => UAGB_Helper::get_css_value( $attr['headingTopMargin'], $attr['headingMarginUnit'] ),
		'margin-right'    => UAGB_Helper::get_css_value( $attr['headingRightMargin'], $attr['headingMarginUnit'] ),
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['headingBottomMargin'], $attr['headingMarginUnit'] ),
		'margin-left'     => UAGB_Helper::get_css_value( $attr['headingLeftMargin'], $attr['headingMarginUnit'] ),
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__number' => array(
		'font-family'     => $attr['numberFontFamily'],
		'font-style'      => $attr['numberFontStyle'],
		'text-decoration' => $attr['numberDecoration'],
		'text-transform'  => $attr['numberTransform'],
		'font-weight'     => $attr['numberFontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['numberFontSize'], $attr['numberFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['numberLineHeight'], $attr['numberLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['numberLetterSpacing'], $attr['numberLetterSpacingType'] ),
		'color'           => $attr['numberColor'],
		'margin-top'      => UAGB_Helper::get_css_value( $attr['numberTopMargin'], $attr['numberMarginUnit'] ),
		'margin-right'    => UAGB_Helper::get_css_value( $attr['numberRightMargin'], $attr['numberMarginUnit'] ),
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['numberBottomMargin'], $attr['numberMarginUnit'] ),
		'margin-left'     => UAGB_Helper::get_css_value( $attr['numberLeftMargin'], $attr['numberMarginUnit'] ),
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['prefixRightDistance'], 'px' ),
	),
	'.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['suffixLeftDistance'], 'px' ),
	),
	'.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container' => array(
		'max-width' => UAGB_Helper::get_css_value( $attr['circleSize'], 'px' ),
	),
	'.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg circle' => array(
		'stroke-width' => UAGB_Helper::get_css_value( $attr['circleStokeSize'], 'px' ),
		'stroke'       => $attr['circleBackground'],
		'r'            => UAGB_Helper::get_css_value( $circle_radius, 'px' ),
		'cx'           => UAGB_Helper::get_css_value( $circle_pos, 'px' ),
		'cy'           => UAGB_Helper::get_css_value( $circle_pos, 'px' ),
	),
	'.wp-block-uagb-counter--circle .wp-block-uagb-counter-circle-container svg .uagb-counter-circle__progress' => array(
		'stroke'            => $attr['circleForeground'],
		'stroke-dasharray'  => UAGB_Helper::get_css_value( $circle_dash, 'px' ),
		'stroke-dashoffset' => UAGB_Helper::get_css_value( $circle_dash, 'px' ),
	),
	'.wp-block-uagb-counter--bars'                         => array(
		'flex-direction' => $attr['barFlip'] ? 'column-reverse' : 'column',
	),
	'.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container' => array(
		'background' => $attr['barBackground'],
	),
	'.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number' => array(
		'height'         => UAGB_Helper::get_css_value( $attr['barSize'], 'px' ),
		'background'     => $attr['barForeground'],
		'padding-top'    => UAGB_Helper::get_css_value( $attr['numberTopMargin'], $attr['numberMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['numberRightMargin'], $attr['numberMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['numberBottomMargin'], $attr['numberMarginUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['numberLeftMargin'], $attr['numberMarginUnit'] ),
	),
);

// tablet.
$t_selectors['.wp-block-uagb-counter'] = array(
	'text-align'     => $attr['alignTablet'],
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
);

$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap'] = $icon_and_image_spacing_tablet;

$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img'] = $icon_wrap_border_css_tablet;

$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__icon'] = array_merge(
	$icon_and_image_spacing_tablet,
	$icon_wrap_border_css_tablet
);

$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__icon svg'] = array(
	'width'  => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], $attr['iconSizeTypeTablet'] ),
	'height' => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], $attr['iconSizeTypeTablet'] ),
);

$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__title']                             = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['headingFontSizeTablet'], $attr['headingFontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['headingLineHeightTablet'], $attr['headingLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['headingLetterSpacingTablet'], $attr['headingLetterSpacingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['headingTopMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['headingRightMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['headingBottomMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['headingLeftMarginTablet'], $attr['headingMarginUnitTablet'] ),
);
$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number']                            = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['numberFontSizeTablet'], $attr['numberFontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['numberLineHeightTablet'], $attr['numberLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['numberLetterSpacingTablet'], $attr['numberLetterSpacingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['numberTopMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['numberRightMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['numberBottomMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['numberLeftMarginTablet'], $attr['numberMarginUnitTablet'] ),
);
$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix'] = array(
	'margin-right' => UAGB_Helper::get_css_value( $attr['prefixRightDistanceTablet'], 'px' ),
);
$t_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix'] = array(
	'margin-left' => UAGB_Helper::get_css_value( $attr['suffixLeftDistanceTablet'], 'px' ),
);
$t_selectors['.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['numberTopMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['numberRightMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['numberBottomMarginTablet'], $attr['numberMarginUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['numberLeftMarginTablet'], $attr['numberMarginUnitTablet'] ),
);

// mobile.
$m_selectors['.wp-block-uagb-counter'] = array(
	'text-align'     => $attr['alignMobile'],
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
);

$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap'] = $icon_and_image_spacing_mobile;

$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__image-wrap img'] = $icon_wrap_border_css_mobile;

$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__icon'] = array_merge(
	$icon_and_image_spacing_mobile,
	$icon_wrap_border_css_mobile
);

$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__icon svg'] = array(
	'width'  => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], $attr['iconSizeTypeMobile'] ),
	'height' => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], $attr['iconSizeTypeMobile'] ),
);

$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__title']                             = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['headingFontSizeMobile'], $attr['headingFontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['headingLineHeightMobile'], $attr['headingLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['headingLetterSpacingMobile'], $attr['headingLetterSpacingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['headingTopMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['headingRightMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['headingBottomMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['headingLeftMarginMobile'], $attr['headingMarginUnitMobile'] ),
);
$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number']                            = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['numberFontSizeMobile'], $attr['numberFontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['numberLineHeightMobile'], $attr['numberLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['numberLetterSpacingMobile'], $attr['numberLetterSpacingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['numberTopMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['numberRightMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['numberBottomMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['numberLeftMarginMobile'], $attr['numberMarginUnitMobile'] ),
);
$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-prefix'] = array(
	'margin-right' => UAGB_Helper::get_css_value( $attr['prefixRightDistanceMobile'], 'px' ),
);
$m_selectors['.wp-block-uagb-counter .wp-block-uagb-counter__number .uagb-counter-block-suffix'] = array(
	'margin-left' => UAGB_Helper::get_css_value( $attr['suffixLeftDistanceMobile'], 'px' ),
);
$m_selectors['.wp-block-uagb-counter--bars .wp-block-uagb-counter-bars-container .wp-block-uagb-counter__number'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['numberTopMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['numberRightMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['numberBottomMarginMobile'], $attr['numberMarginUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['numberLeftMarginMobile'], $attr['numberMarginUnitMobile'] ),
);

if ( $attr['imageWidthType'] ) {
	// Image.
	$selectors[' .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);

	$t_selectors[' .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);

	$m_selectors[' .wp-block-uagb-counter__image-wrap .wp-block-uagb-counter__image'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);
}

if ( 'number' === $attr['layout'] && ( 'left-number' === $attr['iconImgPosition'] || 'right-number' === $attr['iconImgPosition'] ) ) {

	$selectors[' .wp-block-uagb-counter__number'] = array(
		'display'         => 'flex',
		'align-items'     => 'center',
		'justify-content' => $attr['align'],
	);

	$t_selectors[' .wp-block-uagb-counter__number'] = array(
		'justify-content' => $attr['alignTablet'],
	);

	$m_selectors[' .wp-block-uagb-counter__number'] = array(
		'justify-content' => $attr['alignMobile'],
	);
}

// In case of 'Bar' layout, we need to add padding to the number element and remove the margin.
if ( 'bars' === $attr['layout'] ) {

	$num_container = '.wp-block-uagb-counter .wp-block-uagb-counter__number';

	$selectors[ $num_container ]['margin-top']    = 'unset';
	$selectors[ $num_container ]['margin-bottom'] = 'unset';
	$selectors[ $num_container ]['margin-left']   = 'unset';
	$selectors[ $num_container ]['margin-right']  = 'unset';

	$t_selectors[ $num_container ]['margin-top']    = 'unset';
	$t_selectors[ $num_container ]['margin-bottom'] = 'unset';
	$t_selectors[ $num_container ]['margin-left']   = 'unset';
	$t_selectors[ $num_container ]['margin-right']  = 'unset';

	$m_selectors[ $num_container ]['margin-top']    = 'unset';
	$m_selectors[ $num_container ]['margin-bottom'] = 'unset';
	$m_selectors[ $num_container ]['margin-left']   = 'unset';
	$m_selectors[ $num_container ]['margin-right']  = 'unset';

	if ( 0 === $attr['endNumber'] ) {

		$selectors[ $num_container ]['padding-left']  = 'unset';
		$selectors[ $num_container ]['padding-right'] = 'unset';

		$t_selectors[ $num_container ]['padding-left']  = 'unset';
		$t_selectors[ $num_container ]['padding-right'] = 'unset';

		$m_selectors[ $num_container ]['padding-left']  = 'unset';
		$m_selectors[ $num_container ]['padding-right'] = 'unset';

	}

	$bar_container       = '.wp-block-uagb-counter .wp-block-uagb-counter-bars-container';
	$bar_container_hover = '.wp-block-uagb-counter:hover .wp-block-uagb-counter-bars-container';

	$selectors[ $bar_container ]['box-shadow'] = UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) .
													' ' .
													UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) .
													' ' .
													UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) .
													' ' .
													UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) .
													' ' .
													$attr['boxShadowColor'] .
													' ' .
													$box_shadow_position_css;

	// If hover blur or hover color are set, show the hover shadow.
	if ( ( ( '' !== $attr['boxShadowBlurHover'] ) && ( null !== $attr['boxShadowBlurHover'] ) ) || '' !== $attr['boxShadowColorHover'] ) {

		$selectors[ $bar_container_hover ]['box-shadow'] = UAGB_Helper::get_css_value( $attr['boxShadowHOffsetHover'], 'px' ) .
																	' ' .
															UAGB_Helper::get_css_value( $attr['boxShadowVOffsetHover'], 'px' ) .
															' ' .
															UAGB_Helper::get_css_value( $attr['boxShadowBlurHover'], 'px' ) .
															' ' .
															UAGB_Helper::get_css_value( $attr['boxShadowSpreadHover'], 'px' ) .
															' ' .
															$attr['boxShadowColorHover'] .
															' ' .
															$box_shadow_position_css_hover;

	}
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = '.uagb-block-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK��][I�����Eultimate-addons-for-gutenberg/includes/blocks/counter/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;

$counter_options = apply_filters(
	'uagb_counter_options',
	array(
		'layout'            => $attr['layout'],
		'heading'           => $attr['heading'],
		'numberPrefix'      => $attr['numberPrefix'],
		'numberSuffix'      => $attr['numberSuffix'],
		'startNumber'       => $attr['startNumber'],
		'endNumber'         => $attr['endNumber'],
		'totalNumber'       => $attr['totalNumber'],
		'decimalPlaces'     => $attr['decimalPlaces'],
		'animationDuration' => $attr['animationDuration'],
		'thousandSeparator' => $attr['thousandSeparator'],
		'circleSize'        => $attr['circleSize'],
		'circleStokeSize'   => $attr['circleStokeSize'],
		'isFrontend'        => $attr['isFrontend'],
	),
	$id
);

ob_start();
?>
window.addEventListener( 'load', function() {
	UAGBCounter.init( '<?php echo esc_attr( $selector ); ?>', <?php echo wp_json_encode( $counter_options ); ?> );
});
<?php
return ob_get_clean();
?>
PK��][�\-���Dultimate-addons-for-gutenberg/includes/blocks/forms-toggle/error_lognu�[���[27-Oct-2025 04:23:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-toggle/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-toggle/block.php on line 14
PK��][Y%����Dultimate-addons-for-gutenberg/includes/blocks/forms-toggle/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-toggle';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Toggle', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a toggle button in your form.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK��][�Sܧ�Bultimate-addons-for-gutenberg/includes/blocks/post-image/error_lognu�[���[28-Oct-2025 12:09:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-image/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-image/block.php on line 14
PK��][�9�Ȫ�Bultimate-addons-for-gutenberg/includes/blocks/post-image/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-image';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Post Image', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Customize your post image.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK��][n@@���Bultimate-addons-for-gutenberg/includes/blocks/forms-name/error_lognu�[���[27-Oct-2025 13:18:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-name/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-name/block.php on line 14
PK��][r�}�Bultimate-addons-for-gutenberg/includes/blocks/forms-name/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-name';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Name', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a name field in your form', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK��][�tddDultimate-addons-for-gutenberg/includes/blocks/post-masonry/error_lognu�[���[28-Oct-2025 02:14:26 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-masonry/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-masonry/attributes.php on line 10
[28-Oct-2025 08:10:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-masonry/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-masonry/block.php on line 16
PK��][�	�"�'�'Iultimate-addons-for-gutenberg/includes/blocks/post-masonry/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$pagination_masonry_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'paginationMasonry' );
$btn_border_attribute                = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$overall_border_attribute            = UAGB_Block_Helper::uag_generate_border_attribute( 'overall' );
$inherit_from_theme                  = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );
return array_merge(
	array(
		'blockName'                         => 'post-masonry',
		'inheritFromThemeBtn'               => $inherit_from_theme,
		'postsToShow'                       => 6,
		'postsOffset'                       => 0,
		'post_type'                         => 'masonry',
		'postType'                          => 'post',
		'align'                             => 'left',
		'rowGap'                            => 20,
		'rowGapTablet'                      => '',
		'rowGapMobile'                      => '',
		'columnGap'                         => 20,
		'columnGapTablet'                   => '',
		'columnGapMobile'                   => '',
		'bgColor'                           => '#f6f6f6',
		'displayPostTaxonomyAboveTitle'     => 'withMeta',
		'titleColor'                        => '',
		'titleTag'                          => 'h3',
		'titleFontSize'                     => '',
		'titleFontSizeType'                 => 'px',
		'titleFontSizeMobile'               => '',
		'titleFontSizeTablet'               => '',
		'titleFontFamily'                   => '',
		'titleFontWeight'                   => '',
		'titleFontStyle'                    => '',
		'titleLineHeightType'               => 'em',
		'titleLineHeight'                   => '',
		'titleLineHeightTablet'             => '',
		'titleLineHeightMobile'             => '',
		'titleLoadGoogleFonts'              => false,
		'metaFontSize'                      => '',
		'metaFontSizeType'                  => 'px',
		'metaFontSizeMobile'                => '',
		'metaFontSizeTablet'                => '',
		'metaFontFamily'                    => '',
		'metaFontWeight'                    => '',
		'metaFontStyle'                     => '',
		'metaLineHeightType'                => 'em',
		'metaLineHeight'                    => '',
		'metaLineHeightTablet'              => '',
		'metaLineHeightMobile'              => '',
		'metaLoadGoogleFonts'               => false,
		'excerptFontSize'                   => '',
		'excerptFontSizeType'               => 'px',
		'excerptFontSizeMobile'             => '',
		'excerptFontSizeTablet'             => '',
		'excerptFontFamily'                 => '',
		'excerptFontWeight'                 => '',
		'excerptFontStyle'                  => '',
		'excerptLineHeightType'             => 'em',
		'excerptLineHeight'                 => '',
		'excerptLineHeightTablet'           => '',
		'excerptLineHeightMobile'           => '',
		'excerptLoadGoogleFonts'            => false,
		'ctaFontSize'                       => '',
		'ctaFontSizeType'                   => 'px',
		'ctaFontSizeTablet'                 => '',
		'ctaFontSizeMobile'                 => '',
		'ctaFontFamily'                     => '',
		'ctaFontWeight'                     => '',
		'ctaFontStyle'                      => '',
		'ctaLineHeightType'                 => 'em',
		'ctaLineHeight'                     => '',
		'ctaLineHeightTablet'               => '',
		'ctaLineHeightMobile'               => '',
		'ctaLoadGoogleFonts'                => false,
		'metaColor'                         => '',
		'highlightedTextColor'              => '#fff',
		'highlightedTextBgColor'            => '#3182ce',
		'excerptColor'                      => '',
		'ctaColor'                          => '',
		'ctaBgType'                         => 'color',
		'ctaBgHType'                        => 'color',
		'ctaBgColor'                        => '',
		'ctaHColor'                         => '',
		'ctaBgHColor'                       => '',
		'contentPadding'                    => '20',
		'contentPaddingMobile'              => '',
		'btnVPadding'                       => '',
		'btnHPadding'                       => '',
		'ctaBottomSpace'                    => '0',
		'ctaBottomSpaceTablet'              => '',
		'ctaBottomSpaceMobile'              => '',
		'imageBottomSpace'                  => '15',
		'imageBottomSpaceTablet'            => '',
		'imageBottomSpaceMobile'            => '',
		'taxonomyBottomSpace'               => '',
		'taxonomyBottomSpaceTablet'         => '',
		'taxonomyBottomSpaceMobile'         => '',
		'titleBottomSpace'                  => '15',
		'titleBottomSpaceTablet'            => '',
		'titleBottomSpaceMobile'            => '',
		'metaBottomSpace'                   => '15',
		'metaBottomSpaceTablet'             => '',
		'metaBottomSpaceMobile'             => '',
		'excerptBottomSpace'                => '25',
		'excerptBottomSpaceTablet'          => '',
		'excerptBottomSpaceMobile'          => '',
		'overlayOpacity'                    => '50',
		'bgOverlayColor'                    => '#000000',
		'ctaText'                           => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
		'paginationType'                    => 'none',
		'paginationEventType'               => 'button',
		'buttonText'                        => 'Load More',
		'paginationAlign'                   => 'center',
		'paginationTextColor'               => '',
		'paginationMasonryBgColor'          => '',
		'paginationBgHoverColor'            => '',
		'paginationTextHoverColor'          => '',
		'paginationMasonryBorderHColor'     => '',
		'paginationFontSize'                => 13,
		'loaderColor'                       => '#0085ba',
		'loaderSize'                        => 18,
		'vpaginationButtonPaddingMobile'    => 8,
		'vpaginationButtonPaddingTablet'    => 8,
		'vpaginationButtonPaddingDesktop'   => 8,
		'hpaginationButtonPaddingMobile'    => 12,
		'hpaginationButtonPaddingTablet'    => 12,
		'hpaginationButtonPaddingDesktop'   => 12,
		'imgPosition'                       => 'top',

		'mobilepaginationButtonPaddingType' => 'px',
		'tabletpaginationButtonPaddingType' => 'px',
		'paginationButtonPaddingType'       => 'px',
		'displayPostContentRadio'           => 'excerpt',
		'excludeCurrentPost'                => '',
		'rowGapUnit'                        => 'px',
		'columnGapUnit'                     => 'px',
		'contentPaddingUnit'                => 'px',
		'excerptBottomSpaceUnit'            => 'px',
		'paginationSpacingUnit'             => 'px',
		'imageBottomSpaceUnit'              => 'px',
		'taxonomyBottomSpaceUnit'           => 'px',
		'titleBottomSpaceUnit'              => 'px',
		'metaBottomSpaceUnit'               => 'px',
		'ctaBottomSpaceUnit'                => 'px',
		'paddingBtnUnit'                    => 'px',
		'mobilePaddingBtnUnit'              => 'px',
		'tabletPaddingBtnUnit'              => 'px',
		'paddingUnit'                       => 'px',
		'mobilePaddingUnit'                 => 'px',
		'tabletPaddingUnit'                 => 'px',
		'titleTransform'                    => '',
		'metaTransform'                     => '',
		'excerptTransform'                  => '',
		'ctaTransform'                      => '',
		'titleDecoration'                   => '',
		'metaDecoration'                    => '',
		'excerptDecoration'                 => '',
		'ctaDecoration'                     => '',
		'paddingBtnTopTablet'               => '',
		'paddingBtnRightTablet'             => '',
		'paddingBtnBottomTablet'            => '',
		'paddingBtnLeftTablet'              => '',
		'paddingBtnTopMobile'               => '',
		'paddingBtnRightMobile'             => '',
		'paddingBtnBottomMobile'            => '',
		'paddingBtnLeftMobile'              => '',
		'spacingLink'                       => '',
		'spacingLinkPadding'                => '',
		'paddingTopTablet'                  => '',
		'paddingRightTablet'                => '',
		'paddingBottomTablet'               => '',
		'paddingLeftTablet'                 => '',
		'paddingTopMobile'                  => '',
		'paddingRightMobile'                => '',
		'paddingBottomMobile'               => '',
		'paddingLeftMobile'                 => '',
		'layoutConfig'                      => array(
			array( 'uagb/post-image' ),
			array( 'uagb/post-title' ),
			array( 'uagb/post-meta' ),
			array( 'uagb/post-taxonomy' ),
			array( 'uagb/post-excerpt' ),
			array( 'uagb/post-button' ),
		),
		'titleLetterSpacing'                => '',
		'titleLetterSpacingTablet'          => '',
		'titleLetterSpacingMobile'          => '',
		'titleLetterSpacingType'            => 'px',
		'metaLetterSpacing'                 => '',
		'metaLetterSpacingTablet'           => '',
		'metaLetterSpacingMobile'           => '',
		'metaLetterSpacingType'             => 'px',
		'excerptLetterSpacing'              => '',
		'excerptLetterSpacingTablet'        => '',
		'excerptLetterSpacingMobile'        => '',
		'excerptLetterSpacingType'          => 'px',
		'ctaLetterSpacing'                  => '',
		'ctaLetterSpacingTablet'            => '',
		'ctaLetterSpacingMobile'            => '',
		'ctaLetterSpacingType'              => 'px',
		'boxShadowColor'                    => '#00000070',
		'boxShadowHOffset'                  => 0,
		'boxShadowVOffset'                  => 0,
		'boxShadowBlur'                     => '',
		'boxShadowSpread'                   => '',
		'boxShadowPosition'                 => 'outset',
		'boxShadowColorHover'               => '',
		'boxShadowHOffsetHover'             => 0,
		'boxShadowVOffsetHover'             => 0,
		'boxShadowBlurHover'                => '',
		'boxShadowSpreadHover'              => '',
		'boxShadowPositionHover'            => 'outset',
		'columns'                           => 3,
		'tcolumns'                          => 2,
		'mcolumns'                          => 1,
		'useSeparateBoxShadows'             => true,
	),
	$pagination_masonry_border_attribute,
	$btn_border_attribute,
	$overall_border_attribute
);
PK��][�/=SSDultimate-addons-for-gutenberg/includes/blocks/post-masonry/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-masonry';
$block_data = array(
	'doc'                 => 'post-masonry',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'post' ),
	'link'                => 'post-layouts/#post-masonary',
	'title'               => __( 'Post Masonry', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Display your posts in a masonary layout.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'post-masonry' ),
	'deprecated'          => true,
	'static_dependencies' => array(
		'uagb-post-js'      => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'post' ),
			'dep'  => array( 'jquery' ),
			'type' => 'js',
		),
		'uagb-masonry'      => array(
			'type' => 'js',
		),
		'uagb-imagesloaded' => array(
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'post-masonry',
	),
	'static_css'          => 'post',
);
PK��][p9 �S#S#Kultimate-addons-for-gutenberg/includes/blocks/post-masonry/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_post_gfont( $attr );

$selectors = UAGB_Block_Helper::get_post_selectors( $attr );

$m_selectors = UAGB_Block_Helper::get_post_mobile_selectors( $attr );

$t_selectors = UAGB_Block_Helper::get_post_tablet_selectors( $attr );

$paginationpaddingTop    = isset( $attr['paginationButtonPaddingTop'] ) ? $attr['paginationButtonPaddingTop'] : $attr['vpaginationButtonPaddingDesktop'];
$paginationpaddingBottom = isset( $attr['paginationButtonPaddingBottom'] ) ? $attr['paginationButtonPaddingBottom'] : $attr['vpaginationButtonPaddingDesktop'];
$paginationpaddingLeft   = isset( $attr['paginationButtonPaddingLeft'] ) ? $attr['paginationButtonPaddingLeft'] : $attr['hpaginationButtonPaddingDesktop'];
$paginationpaddingRight  = isset( $attr['paginationButtonPaddingRight'] ) ? $attr['paginationButtonPaddingRight'] : $attr['hpaginationButtonPaddingDesktop'];

$paginationButtonPaddingTopTablet    = isset( $attr['paginationButtonPaddingTopTablet'] ) ? $attr['paginationButtonPaddingTopTablet'] : $attr['vpaginationButtonPaddingTablet'];
$paginationButtonPaddingBottomTablet = isset( $attr['paginationButtonPaddingBottomTablet'] ) ? $attr['paginationButtonPaddingBottomTablet'] : $attr['vpaginationButtonPaddingTablet'];
$paginationButtonPaddingLeftTablet   = isset( $attr['paginationButtonPaddingLeftTablet'] ) ? $attr['paginationButtonPaddingLeftTablet'] : $attr['hpaginationButtonPaddingTablet'];
$paginationButtonPaddingRightTablet  = isset( $attr['paginationButtonPaddingRightTablet'] ) ? $attr['paginationButtonPaddingRightTablet'] : $attr['hpaginationButtonPaddingTablet'];

$paginationButtonPaddingTopMobile    = isset( $attr['paginationButtonPaddingTopMobile'] ) ? $attr['paginationButtonPaddingTopMobile'] : $attr['vpaginationButtonPaddingMobile'];
$paginationButtonPaddingBottomMobile = isset( $attr['paginationButtonPaddingBottomMobile'] ) ? $attr['paginationButtonPaddingBottomMobile'] : $attr['vpaginationButtonPaddingMobile'];
$paginationButtonPaddingLeftMobile   = isset( $attr['paginationButtonPaddingLeftMobile'] ) ? $attr['paginationButtonPaddingLeftMobile'] : $attr['hpaginationButtonPaddingMobile'];
$paginationButtonPaddingRightMobile  = isset( $attr['paginationButtonPaddingRightMobile'] ) ? $attr['paginationButtonPaddingRightMobile'] : $attr['hpaginationButtonPaddingMobile'];

$pagination_masonry_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'paginationMasonry' );
$pagination_masonry_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'paginationMasonry', 'tablet' );
$pagination_masonry_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'paginationMasonry', 'mobile' );

if ( 'infinite' === $attr['paginationType'] ) {

	$selectors[' .uagb-post__load-more-wrap'] = array(
		'text-align' => $attr['paginationAlign'],
	);

	$selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button']       = array_merge(
		array(

			'color'            => $attr['paginationTextColor'],
			'background-color' => $attr['paginationMasonryBgColor'],
			'font-size'        => UAGB_Helper::get_css_value( $attr['paginationFontSize'], 'px' ),
			'padding-top'      => UAGB_Helper::get_css_value(
				$paginationpaddingTop,
				$attr['paginationButtonPaddingType']
			),
			'padding-bottom'   => UAGB_Helper::get_css_value(
				$paginationpaddingBottom,
				$attr['paginationButtonPaddingType']
			),
			'padding-right'    => UAGB_Helper::get_css_value(
				$paginationpaddingRight,
				$attr['paginationButtonPaddingType']
			),
			'padding-left'     => UAGB_Helper::get_css_value(
				$paginationpaddingLeft,
				$attr['paginationButtonPaddingType']
			),
		),
		$pagination_masonry_border_css
	);
	$selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button:hover'] = array(
		'color'            => $attr['paginationTextHoverColor'],
		'background-color' => $attr['paginationBgHoverColor'],
		'border-color'     => $attr['paginationMasonryBorderHColor'],
	);
	$m_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button']     = array(
		'padding-top'    => UAGB_Helper::get_css_value(
			$paginationButtonPaddingTopMobile,
			$attr['mobilepaginationButtonPaddingType']
		),
		'padding-right'  => UAGB_Helper::get_css_value(
			$paginationButtonPaddingRightMobile,
			$attr['mobilepaginationButtonPaddingType']
		),
		'padding-bottom' => UAGB_Helper::get_css_value(
			$paginationButtonPaddingBottomMobile,
			$attr['mobilepaginationButtonPaddingType']
		),
		'padding-left'   => UAGB_Helper::get_css_value(
			$paginationButtonPaddingLeftMobile,
			$attr['mobilepaginationButtonPaddingType']
		),
	);
	$t_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button']     = array(
		'padding-top'    => UAGB_Helper::get_css_value(
			$paginationButtonPaddingTopTablet,
			$attr['tabletpaginationButtonPaddingType']
		),
		'padding-bottom' => UAGB_Helper::get_css_value(
			$paginationButtonPaddingBottomTablet,
			$attr['tabletpaginationButtonPaddingType']
		),
		'padding-right'  => UAGB_Helper::get_css_value(
			$paginationButtonPaddingRightTablet,
			$attr['tabletpaginationButtonPaddingType']
		),
		'padding-left'   => UAGB_Helper::get_css_value(
			$paginationButtonPaddingLeftTablet,
			$attr['tabletpaginationButtonPaddingType']
		),
	);
	$t_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button']     = $pagination_masonry_border_css_tablet;
	$m_selectors[' .uagb-post__load-more-wrap .uagb-post-pagination-button']     = $pagination_masonry_border_css_mobile;

	$selectors['.uagb-post-grid .uagb-post-inf-loader div'] = array(
		'width'            => UAGB_Helper::get_css_value( $attr['loaderSize'], 'px' ),
		'height'           => UAGB_Helper::get_css_value( $attr['loaderSize'], 'px' ),
		'background-color' => $attr['loaderColor'],
	);
}

if ( 'aboveTitle' === $attr['displayPostTaxonomyAboveTitle'] ) {
	$selectors   = array_merge(
		$selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
	$m_selectors = array_merge(
		$m_selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
	$t_selectors = array_merge(
		$t_selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);


$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title a', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline > span', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline time', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author', $combined_selectors );

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author a', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' span.uagb-post__taxonomy', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'excerpt', ' .uagb-post__text.uagb-post__excerpt', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta a', $combined_selectors );


return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK��][+���Eultimate-addons-for-gutenberg/includes/blocks/post-taxonomy/error_lognu�[���[28-Oct-2025 08:10:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-taxonomy/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-taxonomy/block.php on line 14
PK��][ß&���Eultimate-addons-for-gutenberg/includes/blocks/post-taxonomy/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-taxonomy';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Post Taxonomy', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Show your post\'s under categories.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK��][{�PP?ultimate-addons-for-gutenberg/includes/blocks/columns/error_lognu�[���[27-Oct-2025 04:03:25 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/columns/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/columns/attributes.php on line 10
[27-Oct-2025 05:05:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/columns/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/columns/block.php on line 16
PK��][+�<���Dultimate-addons-for-gutenberg/includes/blocks/columns/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'columns' );

return array_merge(
	array(
		'classMigrate'           => false,
		'block_id'               => '',
		'columns'                => '2',
		'align'                  => '',
		'vAlign'                 => '',
		'stack'                  => 'mobile',
		'topPadding'             => '20',
		'bottomPadding'          => '20',
		'leftPadding'            => '20',
		'rightPadding'           => '20',
		'topMargin'              => '0',
		'bottomMargin'           => '0',
		'topPaddingTablet'       => '',
		'bottomPaddingTablet'    => '',
		'leftPaddingTablet'      => '',
		'rightPaddingTablet'     => '',
		'topPaddingMobile'       => '',
		'bottomPaddingMobile'    => '',
		'leftPaddingMobile'      => '',
		'rightPaddingMobile'     => '',
		'topMarginMobile'        => '',
		'bottomMarginMobile'     => '',
		'topMarginTablet'        => '',
		'bottomMarginTablet'     => '',
		'contentWidth'           => 'theme',
		'width'                  => '900',
		'widthType'              => 'px',
		'tag'                    => 'section',
		'backgroundType'         => 'none',
		'backgroundImage'        => '',
		'backgroundPosition'     => 'center-center',
		'backgroundSize'         => 'cover',
		'backgroundRepeat'       => 'no-repeat',
		'backgroundAttachment'   => 'scroll',
		'backgroundVideo'        => '',
		'backgroundColor'        => '',
		'gradientColor1'         => '',
		'gradientColor2'         => '',
		'gradientType'           => 'linear',
		'gradientLocation1'      => '0',
		'gradientLocation2'      => '100',
		'gradientAngle'          => '0',
		'gradientPosition'       => 'center center',
		'selectGradient'         => 'basic',
		'backgroundVideoOpacity' => '50',
		'backgroundVideoColor'   => '',
		'backgroundImageColor'   => '',
		'columnGap'              => '10',
		'bottomType'             => 'none',
		'bottomColor'            => '#333',
		'bottomHeight'           => '',
		'bottomHeightTablet'     => '',
		'bottomHeightMobile'     => '',
		'bottomWidth'            => '',
		'topType'                => 'none',
		'topColor'               => '#333',
		'topHeight'              => '',
		'topHeightTablet'        => '',
		'topHeightMobile'        => '',
		'topWidth'               => '',
		'bottomFlip'             => '',
		'topFlip'                => '',
		'mobileMarginType'       => 'px',
		'tabletMarginType'       => 'px',
		'desktopMarginType'      => 'px',
		'mobilePaddingType'      => 'px',
		'tabletPaddingType'      => 'px',
		'desktopPaddingType'     => 'px',
		'boxShadowColor'         => '',
		'boxShadowHOffset'       => 0,
		'boxShadowVOffset'       => 0,
		'boxShadowBlur'          => '',
		'boxShadowSpread'        => '',
		'boxShadowPosition'      => 'outset',
		'gradientValue'          => 'linear-gradient(90deg, rgb(6, 147, 227, 0.5) 0%, rgb(155, 81, 224, 0.5) 100%)',
		'overlayType'            => 'color',
	),
	$border_attribute
);
PK��][�f�?ultimate-addons-for-gutenberg/includes/blocks/columns/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/columns';
$block_data = array(
	'admin_categories' => array(),
	'doc'              => 'advanced-columns',
	'slug'             => '',
	'link'             => 'advanced-columns',
	'title'            => __( 'Advanced Columns', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Insert a number of columns within a single row.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'columns' ),
	'deprecated'       => true,
	'dynamic_assets'   => array(
		'dir' => 'columns',
	),
);
PK��][!� Q�2�2Fultimate-addons-for-gutenberg/includes/blocks/columns/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

global $content_width;

$bg_type      = ( isset( $attr['backgroundType'] ) ) ? $attr['backgroundType'] : 'none';
$overlay_type = ( isset( $attr['overlayType'] ) ) ? $attr['overlayType'] : 'color';
$border       = UAGB_Block_Helper::uag_generate_border_css( $attr, 'columns' );
$border       = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$border,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);

$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'columns', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'columns', 'mobile' );

$top_margin    = isset( $attr['topMarginDesktop'] ) ? $attr['topMarginDesktop'] : $attr['topMargin'];
$bottom_margin = isset( $attr['bottomMarginDesktop'] ) ? $attr['bottomMarginDesktop'] : $attr['bottomMargin'];
$left_margin   = isset( $attr['leftMarginDesktop'] ) ? $attr['leftMarginDesktop'] : '';
$right_margin  = isset( $attr['rightMarginDesktop'] ) ? $attr['rightMarginDesktop'] : '';

$mobile_top_margin    = $attr['topMarginMobile'];
$mobile_bottom_margin = $attr['bottomMarginMobile'];
$mobile_left_margin   = isset( $attr['leftMarginMobile'] ) ? $attr['leftMarginMobile'] : '';
$mobile_right_margin  = isset( $attr['rightMarginMobile'] ) ? $attr['rightMarginMobile'] : '';

$tablet_top_margin    = $attr['topMarginTablet'];
$tablet_bottom_margin = $attr['bottomMarginTablet'];
$tablet_left_margin   = isset( $attr['leftMarginTablet'] ) ? $attr['leftMarginTablet'] : '';
$tablet_right_margin  = isset( $attr['rightMarginTablet'] ) ? $attr['rightMarginTablet'] : '';

$m_selectors          = array();
$t_selectors          = array();
$boxShadowPositionCSS = $attr['boxShadowPosition'];
if ( 'outset' === $attr['boxShadowPosition'] ) {
	$boxShadowPositionCSS = '';
}
$style = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['topPadding'], $attr['desktopPaddingType'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPadding'], $attr['desktopPaddingType'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPadding'], $attr['desktopPaddingType'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPadding'], $attr['desktopPaddingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $top_margin, $attr['desktopMarginType'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin, $attr['desktopMarginType'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $left_margin, $attr['desktopMarginType'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $right_margin, $attr['desktopMarginType'] ),
);

$position = str_replace( '-', ' ', $attr['backgroundPosition'] );

if ( 'image' === $bg_type ) {

	$style['background-image']      = ( isset( $attr['backgroundImage'] ) && isset( $attr['backgroundImage']['url'] ) ) ? "url('" . $attr['backgroundImage']['url'] . "' )" : null;
	$style['background-position']   = $position;
	$style['background-attachment'] = $attr['backgroundAttachment'];
	$style['background-repeat']     = $attr['backgroundRepeat'];
	$style['background-size']       = $attr['backgroundSize'];

}

$inner_width = '100%';

if ( isset( $attr['contentWidth'] ) ) {
	if ( 'theme' === $attr['contentWidth'] ) {
		$inner_width = UAGB_Helper::get_css_value( $content_width, 'px' );
	} elseif ( 'custom' === $attr['contentWidth'] ) {
		$inner_width = UAGB_Helper::get_css_value( $attr['width'], $attr['widthType'] );
	}
}

$video_opacity = 0.5;
if ( isset( $attr['backgroundVideoOpacity'] ) && '' !== $attr['backgroundVideoOpacity'] ) {
	$video_opacity = ( 1 < $attr['backgroundVideoOpacity'] ) ? ( ( 100 - $attr['backgroundVideoOpacity'] ) / 100 ) : ( ( 1 - $attr['backgroundVideoOpacity'] ) );
}

$selectors = array(
	'.wp-block-uagb-columns.uagb-columns__wrap' => $style,
	' .uagb-columns__video-wrap'                => array(
		'opacity' => $video_opacity,
	),
	' > .uagb-columns__inner-wrap'              => array( // For backward user.
		'max-width' => $inner_width,
	),
	' .uagb-column__inner-wrap'                 => array( // For backward user.
		'padding' => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
	),
	' .uagb-column__wrap'                       => array(
		'padding' => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
	),
	' .uagb-columns__shape-top svg'             => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeight'], 'px' ),
	),
	' .uagb-columns__shape.uagb-columns__shape-top .uagb-columns__shape-fill' => array(
		'fill' => UAGB_Helper::hex2rgba( $attr['topColor'], ( isset( $attr['topDividerOpacity'] ) && '' !== $attr['topDividerOpacity'] ) ? $attr['topDividerOpacity'] : 100 ),
	),
	' .uagb-columns__shape-bottom svg'          => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeight'], 'px' ),
	),
	' .uagb-columns__shape.uagb-columns__shape-bottom .uagb-columns__shape-fill' => array(
		'fill' => UAGB_Helper::hex2rgba( $attr['bottomColor'], ( isset( $attr['bottomDividerOpacity'] ) && '' !== $attr['bottomDividerOpacity'] ) ? $attr['bottomDividerOpacity'] : 100 ),
	),
	'.wp-block-uagb-columns'                    => array(
		'box-shadow' => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,
	),
);

if ( '' !== $attr['topWidth'] ) {
	$selectors[' .uagb-columns__shape-top svg']['width'] = 'calc( ' . $attr['topWidth'] . '% + 1.3px )';
}

if ( '' !== $attr['bottomWidth'] ) {
	$selectors[' .uagb-columns__shape-bottom svg']['width'] = 'calc( ' . $attr['bottomWidth'] . '% + 1.3px )';
}

if ( 'video' === $bg_type ) {
	if ( 'color' === $overlay_type ) {
		$selectors[' > .uagb-columns__overlay'] = array(
			'background-color' => $attr['backgroundVideoColor'],
		);
	} else {
		$selectors[' > .uagb-columns__overlay']['background-image'] = $attr['gradientValue'];
	}
} elseif ( 'image' === $bg_type ) {
	if ( 'color' === $overlay_type ) {
		$selectors[' > .uagb-columns__overlay'] = array(
			'background-color' => $attr['backgroundImageColor'],
			'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
		);
	} else {
		if ( $attr['gradientValue'] ) {
			$selectors[' > .uagb-columns__overlay']['background-image'] = $attr['gradientValue'];
		} else {
			$selectors[' > .uagb-columns__overlay']['background-color'] = 'transparent';
			$selectors[' > .uagb-columns__overlay']['opacity']          = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
			if ( 'linear' === $attr['gradientOverlayType'] ) {

				$selectors[' > .uagb-columns__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientOverlayAngle'] . 'deg, ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			} else {

				$selectors[' > .uagb-columns__overlay']['background-image'] = 'radial-gradient( at ' . $gradientOverlayPosition . ', ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			}
		}
	}
} elseif ( 'color' === $bg_type ) {
	$selectors[' > .uagb-columns__overlay'] = array(
		'background-color' => $attr['backgroundColor'],
		'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
	);
} elseif ( 'gradient' === $bg_type ) {
	$selectors[' > .uagb-columns__overlay']['background-color'] = 'transparent';
	$selectors[' > .uagb-columns__overlay']['opacity']          = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
	
	$gradientColor1    = isset( $attr['gradientColor1'] ) ? $attr['gradientColor1'] : '';
	$gradientColor2    = isset( $attr['gradientColor2'] ) ? $attr['gradientColor2'] : '';
	$gradientType      = isset( $attr['gradientType'] ) ? $attr['gradientType'] : '';
	$gradientLocation1 = isset( $attr['gradientLocation1'] ) ? $attr['gradientLocation1'] : '';
	$gradientLocation2 = isset( $attr['gradientLocation2'] ) ? $attr['gradientLocation2'] : '';
	$gradientAngle     = isset( $attr['gradientAngle'] ) ? $attr['gradientAngle'] : '';
	
	if ( 'basic' === $attr['selectGradient'] && $attr['gradientValue'] ) {
		$gradient = $attr['gradientValue'];
	} elseif ( 'linear' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'linear-gradient(' . $gradientAngle . 'deg, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} elseif ( 'radial' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} 
	$selectors[' > .uagb-columns__overlay']['background-image'] = $gradient;
}

$selectors[' > .uagb-columns__overlay']['border-radius'] = $border['border-top-left-radius'] . ' ' . $border['border-top-right-radius'] . ' ' . $border['border-bottom-left-radius'] . ' ' . $border['border-bottom-right-radius'];

$m_selectors = array(
	'.wp-block-uagb-columns.uagb-columns__wrap' => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $mobile_top_margin, $attr['mobileMarginType'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $mobile_bottom_margin, $attr['mobileMarginType'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $mobile_left_margin, $attr['mobileMarginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $mobile_right_margin, $attr['mobileMarginType'] ),
	),
	' .uagb-columns__shape-bottom svg'          => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeightMobile'], 'px' ),
	),
	' .uagb-columns__shape-top svg'             => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeightMobile'], 'px' ),
	),
);

$t_selectors                      = array(
	'.wp-block-uagb-columns.uagb-columns__wrap' => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $tablet_top_margin, $attr['tabletMarginType'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $tablet_bottom_margin, $attr['tabletMarginType'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $tablet_left_margin, $attr['tabletMarginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $tablet_right_margin, $attr['tabletMarginType'] ),
	),
	' .uagb-columns__shape-bottom svg'          => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeightTablet'], 'px' ),
	),
	' .uagb-columns__shape-top svg'             => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeightTablet'], 'px' ),
	),
);
$selectors['.uagb-columns__wrap'] = $border;
$selectors['.uagb-columns__wrap:hover']['border-color'] = $attr['columnsBorderHColor'];
$t_selectors['.uagb-columns__wrap']                     = $border_tablet;
$m_selectors['.uagb-columns__wrap']                     = $border_mobile;

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-columns-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK��][�鱟�&�&Hultimate-addons-for-gutenberg/includes/blocks/content-timeline/error_lognu�[���[27-Oct-2025 04:08:39 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 10
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[27-Oct-2025 04:08:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[27-Oct-2025 04:08:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php:25
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 25
[27-Oct-2025 05:07:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php on line 16
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 10
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 04:20:54 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 04:20:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php:25
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 25
[29-Oct-2025 04:20:58 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php on line 16
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 10
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 04:32:06 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 04:32:06 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php:25
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 25
[29-Oct-2025 04:34:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.php on line 16
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 10
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 12
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 13
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 05:20:31 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 17
[29-Oct-2025 05:20:31 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php:25
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.php on line 25
PK��][�~Q��Multimate-addons-for-gutenberg/includes/blocks/content-timeline/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                   => '',
	'classMigrate'               => false,
	'blockName'                  => 'content-timeline',
	'align'                      => '',
	'alignTablet'                => '',
	'alignMobile'                => '',
	'headingColor'               => '',
	'subHeadingColor'            => '',
	'separatorBg'                => '#eee',
	'backgroundColor'            => '#eee',
	'separatorColor'             => '#eee',
	'separatorFillColor'         => '#0693e3',
	'separatorBorder'            => '#eee',
	'borderFocus'                => '#0693e3',
	'horizontalSpace'            => 10,
	'horizontalSpaceTablet'      => '',
	'horizontalSpaceMobile'      => '',
	'horizontalSpaceUnit'        => 'px',
	'horizontalSpaceUnitTablet'  => 'px',
	'horizontalSpaceUnitMobile'  => 'px',
	'verticalSpace'              => 15,
	'verticalSpaceTablet'        => '',
	'verticalSpaceMobile'        => '',
	'verticalSpaceUnit'          => 'px',
	'verticalSpaceUnitTablet'    => 'px',
	'verticalSpaceUnitMobile'    => 'px',
	'headFontSizeType'           => 'px',
	'headFontSize'               => '',
	'headFontSizeTablet'         => '',
	'headFontSizeMobile'         => '',
	'headFontFamily'             => '',
	'headFontWeight'             => '',
	'headFontStyle'              => '',
	'headLineHeightType'         => 'em',
	'headLineHeight'             => '',
	'headLineHeightTablet'       => '',
	'headLineHeightMobile'       => '',
	'headLoadGoogleFonts'        => false,
	'timelinAlignment'           => 'center',
	'timelinAlignmentTablet'     => '',
	'timelinAlignmentMobile'     => '',
	'arrowlinAlignment'          => 'center',
	'subHeadFontSizeType'        => 'px',
	'subHeadFontSize'            => '',
	'subHeadFontSizeTablet'      => '',
	'subHeadFontSizeMobile'      => '',
	'subHeadFontFamily'          => '',
	'subHeadFontWeight'          => '',
	'subHeadFontStyle'           => '',
	'subHeadLineHeightType'      => 'em',
	'subHeadLineHeight'          => '',
	'subHeadLineHeightTablet'    => '',
	'subHeadLineHeightMobile'    => '',
	'subHeadLoadGoogleFonts'     => false,
	'headSpace'                  => 5,
	'headSpaceTablet'            => '',
	'headSpaceMobile'            => '',
	'separatorwidth'             => 3,
	'borderwidth'                => 0,
	'iconColor'                  => '#333',
	'iconFocus'                  => '#fff',
	'iconBgFocus'                => '#0693e3',
	'dateColor'                  => '#333',
	'dateFontsizeType'           => 'px',
	'dateFontsize'               => '12',
	'dateFontsizeTablet'         => '',
	'dateFontsizeMobile'         => '',
	'dateFontSizeType'           => '',
	'dateFontSize'               => '',
	'dateFontSizeTablet'         => '',
	'dateFontSizeMobile'         => '',
	'dateFontFamily'             => '',
	'dateFontWeight'             => '',
	'dateFontStyle'              => '',
	'dateLineHeightType'         => 'em',
	'dateLineHeight'             => '',
	'dateLineHeightTablet'       => '',
	'dateLineHeightMobile'       => '',
	'dateLoadGoogleFonts'        => false,
	'connectorBgsize'            => 35,
	'connectorBgsizeTablet'      => '',
	'connectorBgsizeMobile'      => '',
	'dateBottomspace'            => 5,
	'dateBottomspaceTablet'      => '',
	'dateBottomspaceMobile'      => '',
	'borderRadius'               => 2,
	'borderRadiusTablet'         => '',
	'borderRadiusMobile'         => '',
	'bgPadding'                  => 20,
	'iconSize'                   => 12,
	'iconSizeTablet'             => '',
	'iconSizeMobile'             => '',
	'stack'                      => 'tablet',
	'topMarginTablet'            => '',
	'rightMarginTablet'          => '',
	'bottomMarginTablet'         => '',
	'leftMarginTablet'           => '',
	'topMarginMobile'            => '',
	'rightMarginMobile'          => '',
	'bottomMarginMobile'         => '',
	'leftMarginMobile'           => '',
	'marginUnit'                 => 'px',
	'mobileMarginUnit'           => 'px',
	'tabletMarginUnit'           => 'px',
	'marginLink'                 => false,
	'topPadding'                 => '',
	'bottomPadding'              => '',
	'leftPadding'                => '',
	'rightPadding'               => '',
	'topPaddingTablet'           => '',
	'rightPaddingTablet'         => '',
	'bottomPaddingTablet'        => '',
	'leftPaddingTablet'          => '',
	'topPaddingMobile'           => '',
	'rightPaddingMobile'         => '',
	'bottomPaddingMobile'        => '',
	'leftPaddingMobile'          => '',
	'paddingUnit'                => 'px',
	'mobilePaddingUnit'          => 'px',
	'tabletPaddingUnit'          => 'px',
	'paddingLink'                => false,
	'headTransform'              => '',
	'subHeadTransform'           => '',
	'dateTransform'              => '',
	'headDecoration'             => '',
	'subHeadDecoration'          => '',
	'dateDecoration'             => '',
	'headLetterSpacing'          => '',
	'headLetterSpacingTablet'    => '',
	'headLetterSpacingMobile'    => '',
	'headLetterSpacingType'      => 'px',
	'subHeadLetterSpacing'       => '',
	'subHeadLetterSpacingTablet' => '',
	'subHeadLetterSpacingMobile' => '',
	'subHeadLetterSpacingType'   => 'px',
	'dateLetterSpacing'          => '',
	'dateLetterSpacingTablet'    => '',
	'dateLetterSpacingMobile'    => '',
	'dateLetterSpacingType'      => 'px',
);
PK��][�+\(��Hultimate-addons-for-gutenberg/includes/blocks/content-timeline/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/content-timeline';
$block_data = array(
	'doc'                 => 'content-timeline',
	'slug'                => '',
	'admin_categories'    => array( 'content' ),
	'link'                => 'content-timeline',
	'title'               => __( 'Content Timeline', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Create a timeline displaying contents of your site.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'content-timeline' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-timeline-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'timeline' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'static_css'          => 'timeline',
	'dynamic_assets'      => array(
		'dir' => 'content-timeline',
	),
);
PK��][2�8XOXOOultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_content_timeline_gfont( $attr );

$selectors   = array();
$t_selectors = array();
$m_selectors = array();

$top_margin    = isset( $attr['topMargin'] ) ? $attr['topMargin'] : $attr['verticalSpace'];
$bottom_margin = isset( $attr['bottomMargin'] ) ? $attr['bottomMargin'] : $attr['verticalSpace'];
$left_margin   = isset( $attr['leftMargin'] ) ? $attr['leftMargin'] : $attr['horizontalSpace'];
$right_margin  = isset( $attr['rightMargin'] ) ? $attr['rightMargin'] : $attr['horizontalSpace'];

$top_padding         = isset( $attr['topPadding'] ) ? $attr['topPadding'] : $attr['bgPadding'];
$bottom_padding      = isset( $attr['bottomPadding'] ) ? $attr['bottomPadding'] : $attr['bgPadding'];
$left_padding        = isset( $attr['leftPadding'] ) ? $attr['leftPadding'] : $attr['bgPadding'];
$right_padding       = isset( $attr['rightPadding'] ) ? $attr['rightPadding'] : $attr['bgPadding'];
$date_font_size      = '' !== $attr['dateFontSize'] ? $attr['dateFontSize'] : $attr['dateFontsize'];
$date_font_size_type = '' !== $attr['dateFontSizeType'] ? $attr['dateFontSizeType'] : $attr['dateFontsizeType'];

$selectors = array(
	' .uagb-timeline__heading'                             => array(
		'text-align'    => $attr['align'],
		'color'         => $attr['headingColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpace'], 'px' ),
	),
	' .uagb-timeline__marker.uagb-timeline__in-view-icon svg' => array(
		'fill'  => $attr['iconFocus'],
		'color' => $attr['iconFocus'],
	),
	' .uagb-timeline__heading-text'                        => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpace'], 'px' ),
	),
	' .uagb-timeline-desc-content'                         => array(
		'text-align' => $attr['align'],
		'color'      => $attr['subHeadingColor'],
	),
	' .uagb-timeline__day-new'                             => array(
		'text-align' => $attr['align'],
	),
	' .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color'  => $attr['backgroundColor'],
		'border-right-color' => $attr['backgroundColor'],
	),
	' .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color'  => $attr['backgroundColor'],
		'border-right-color' => $attr['backgroundColor'],
	),
	// Old timeline CSS.
	' .uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	' .uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	' .uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	' .uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-right-color' => $attr['backgroundColor'],
	),
	' .uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-right-color' => $attr['backgroundColor'],
	),
	// Old timeline CSS End.
	// New timeline CSS.
	'.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	'.uagb-timeline__right-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	'.uagb-timeline__right-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-left-color' => $attr['backgroundColor'],
	),
	'.uagb-timeline__center-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-right-color' => $attr['backgroundColor'],
	),
	'.uagb-timeline__left-block .uagb-timeline__day-left .uagb-timeline__arrow:after' => array(
		'border-right-color' => $attr['backgroundColor'],
	),
	// New timeline CSS End.
	' .uagb-timeline__line__inner'                         => array(
		'background-color' => $attr['separatorFillColor'],
	),
	' .uagb-timeline__line'                                => array(
		'background-color' => $attr['separatorColor'],
		'width'            => UAGB_Helper::get_css_value( $attr['separatorwidth'], 'px' ),
	),
	'.uagb-timeline__right-block .uagb-timeline__line'     => array(
		'right' => 'calc( ' . $attr['connectorBgsize'] . 'px / 2 )',
	),
	'.uagb-timeline__left-block .uagb-timeline__line'      => array(
		'left' => 'calc( ' . $attr['connectorBgsize'] . 'px / 2 )',
	),
	'.uagb-timeline__center-block .uagb-timeline__line'    => array(
		'right' => 'calc( ' . $attr['connectorBgsize'] . 'px / 2 )',
	),
	' .uagb-timeline__marker'                              => array(
		'background-color' => $attr['separatorBg'],
		'min-height'       => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
		'min-width'        => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
		'line-height'      => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
		'border'           => $attr['borderwidth'] . 'px solid ' . $attr['separatorBorder'],
	),
	'.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow' => array(
		'height' => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
	),
	'.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow' => array(
		'height' => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow' => array(
		'height' => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow' => array(
		'height' => UAGB_Helper::get_css_value( $attr['connectorBgsize'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__marker' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
		'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__marker' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
		'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	' .uagb-timeline__field:not(:last-child)'              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpace'], $attr['verticalSpaceUnit'] ),
	),
	' .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspace'], 'px' ),
		'color'         => $attr['dateColor'],
		'text-align'    => $attr['align'],
	),
	' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspace'], 'px' ),
		'color'         => $attr['dateColor'],
		'text-align'    => $attr['align'],
	),
	'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpace'], $attr['horizontalSpaceUnit'] ),
	),
	' .uagb-timeline__date-new'                            => array(
		'color'     => $attr['dateColor'],
		'font-size' => UAGB_Helper::get_css_value( $date_font_size, $date_font_size_type ),
	),
	'.uagb-timeline__right-block .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
		'font-size' => UAGB_Helper::get_css_value( $date_font_size, $date_font_size_type ),
	),
	'.uagb-timeline__left-block .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
		'font-size' => UAGB_Helper::get_css_value( $date_font_size, $date_font_size_type ),
	),
	' .uagb-events-new .uagb-timeline__events-inner-new'   => array(  // Old user CSS.
		'padding' => UAGB_Helper::get_css_value( $attr['bgPadding'], 'px' ),
	),
	' .uagb-timeline__events-inner-new'                    => array(
		'background-color' => $attr['backgroundColor'],
		'border-radius'    => UAGB_Helper::get_css_value( $attr['borderRadius'], 'px' ),
	),
	' .uagb-timeline__events-inner--content'               => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding, $attr['paddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding, $attr['paddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding, $attr['paddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding, $attr['paddingUnit'] ),
	),
	' .uagb-timeline__marker svg'                          => array(
		'color' => $attr['iconColor'],
		'width' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'fill'  => $attr['iconColor'],
	),
	' .uagb-timeline__marker.uagb-timeline__in-view-icon'  => array(
		'background'   => $attr['iconBgFocus'],
		'border-color' => $attr['borderFocus'],
	),
);

	$m_selectors = array(
		' .uagb-timeline__heading'                => array(
			'text-align'    => $attr['alignMobile'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceMobile'], 'px' ),
		),
		' .uagb-timeline-desc-content'            => array(
			'text-align' => $attr['alignMobile'],
		),
		' .uagb-timeline__day-new'                => array(
			'text-align' => $attr['alignMobile'],
		),
		' .uagb-timeline__heading-text'           => array(
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceMobile'], 'px' ),
		),
		' .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
			'text-align'    => $attr['alignMobile'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceMobile'], 'px' ),
		),
		' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array(
			'text-align'    => $attr['alignMobile'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceMobile'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
			'border-right-color' => $attr['backgroundColor'],
		),
		'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__marker' => array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__marker' => array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceMobile'], $attr['horizontalSpaceUnitMobile'] ),
		),
		' .uagb-timeline__events-inner--content'  => array(
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingUnit'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingUnit'] ),
			'border-radius'  => UAGB_Helper::get_css_value( $attr['borderRadiusMobile'], 'px' ),
		),
		'.uagb-timeline__right'                   => array(
			'text-align' => $attr['alignMobile'],
		),
		' .uagb-timeline__marker svg'             => array(
			'width' => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], 'px' ),
		),
		' .uagb-timeline__marker'                 => array(
			'background-color' => $attr['separatorBg'],
			'min-height'       => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
			'min-width'        => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
			'line-height'      => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
			'border'           => $attr['borderwidth'] . 'px solid ' . $attr['separatorBorder'],
		),
		'.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
		),
		'.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeMobile'], 'px' ),
		),
		' .uagb-timeline__field:not(:last-child)' => array(
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpaceMobile'], $attr['verticalSpaceUnitMobile'] ),
		),
	);

	$t_selectors = array(
		' .uagb-timeline__marker svg'             => array(
			'width' => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
		),
		' .uagb-timeline__heading'                => array(
			'text-align'    => $attr['alignTablet'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceTablet'], 'px' ),
		),
		' .uagb-timeline__heading-text'           => array(
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceTablet'], 'px' ),
		),
		' .uagb-timeline-desc-content'            => array(
			'text-align' => $attr['alignTablet'],
		),
		' .uagb-timeline__day-new'                => array(
			'text-align' => $attr['alignTablet'],
		),
		' .uagb-timeline__date-hide.uagb-timeline__date-inner' => array(
			'text-align'    => $attr['alignTablet'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceTablet'], 'px' ),
		),
		' .uagb-timeline__date-hide.uagb-timeline__inner-date-new' => array(
			'text-align'    => $attr['alignTablet'],
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['dateBottomspaceTablet'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__day-right .uagb-timeline__arrow:after' => array(
			'border-right-color' => $attr['backgroundColor'],
		),
		'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__marker' => array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__marker' => array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-left' => array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		'.uagb-timeline__left-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		'.uagb-timeline__right-block .uagb-timeline__day-new.uagb-timeline__day-right' => array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['horizontalSpaceTablet'], $attr['horizontalSpaceUnitTablet'] ),
		),
		' .uagb-timeline__events-inner--content'  => array(
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingUnit'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingUnit'] ),
			'border-radius'  => UAGB_Helper::get_css_value( $attr['borderRadiusTablet'], 'px' ),
		),
		'.uagb-timeline__right'                   => array(
			'text-align' => $attr['alignTablet'],
		),
		' .uagb-timeline__marker svg'             => array(
			'width' => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
		),
		' .uagb-timeline__marker'                 => array(
			'background-color' => $attr['separatorBg'],
			'min-height'       => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
			'min-width'        => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
			'line-height'      => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
			'border'           => $attr['borderwidth'] . 'px solid ' . $attr['separatorBorder'],
		),
		'.uagb-timeline__left-block .uagb-timeline__left .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
		),
		'.uagb-timeline__right-block .uagb-timeline__right .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__left .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
		),
		'.uagb-timeline__center-block .uagb-timeline__right .uagb-timeline__arrow' => array(
			'height' => UAGB_Helper::get_css_value( $attr['connectorBgsizeTablet'], 'px' ),
		),
		' .uagb-timeline__field:not(:last-child)' => array(
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpaceTablet'], $attr['verticalSpaceUnitTablet'] ),
		),
	);

	$combined_selectors = array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	);

	$base_selector      = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-ctm-';
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-timeline__heading', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-new', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-hide.uagb-timeline__inner-date-new', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-hide.uagb-timeline__date-inner', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-timeline-desc-content', $combined_selectors );
	return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id . '.uagb-timeline__outer-wrap' );
PK��][��%NNultimate-addons-for-gutenberg/includes/blocks/content-timeline/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;

$timelineAlignment       = $attr['timelinAlignment'];
$timelineAlignmentTablet = ! empty( $attr['timelinAlignmentTablet'] ) ? $attr['timelinAlignmentTablet'] : $attr['timelinAlignment'];
$timelineAlignmentMobile = ! empty( $attr['timelinAlignmentMobile'] ) ? $attr['timelinAlignmentMobile'] : $timelineAlignmentTablet;

$js_attr = array(
	'block_id'               => $attr['block_id'],
	'timelinAlignment'       => $timelineAlignment,
	'timelinAlignmentTablet' => $timelineAlignmentTablet,
	'timelinAlignmentMobile' => $timelineAlignmentMobile,
);
ob_start();
?>
window.addEventListener("DOMContentLoaded", function(){
	UAGBTimelineClasses( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
window.addEventListener("resize", function(){
	UAGBTimelineClasses( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
?>
PK��][�T�TTAultimate-addons-for-gutenberg/includes/blocks/icon-list/error_lognu�[���[28-Oct-2025 04:33:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list/attributes.php:19
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list/attributes.php on line 19
[28-Oct-2025 11:20:43 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list/block.php on line 16
PK��][��"||Fultimate-addons-for-gutenberg/includes/blocks/icon-list/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'             => false,
	'childMigrate'             => false,
	'align'                    => 'left',
	'alignTablet'              => '',
	'alignMobile'              => '',
	'icon_count'               => '1',
	'icons'                    => array(
		array(
			'label'                   => __( 'Label #1', 'ultimate-addons-for-gutenberg' ),
			'image_icon'              => 'icon',
			'icon'                    => '',
			'image'                   => '',
			'icon_color'              => '',
			'icon_hover_color'        => '',
			'icon_bg_color'           => '',
			'icon_bg_hover_color'     => '',
			'icon_border_color'       => '',
			'icon_border_hover_color' => '',
			'label_color'             => '',
			'label_hover_color'       => '',
			'link'                    => '#',
			'target'                  => false,
		),
	),
	'gap'                      => '10',
	'gapTablet'                => '',
	'gapMobile'                => '',
	'gapType'                  => 'px',
	'inner_gap'                => '15',
	'innerGapTablet'           => '',
	'innerGapMobile'           => '',
	'innerGapType'             => 'px',
	'size'                     => '16',
	'sizeType'                 => 'px',
	'sizeMobile'               => '',
	'sizeTablet'               => '',
	'bgSize'                   => '0',
	'bgSizeType'               => 'px',
	'bgSizeTablet'             => '',
	'bgSizeMobile'             => '',
	'border'                   => '0',
	'borderTablet'             => '',
	'borderMobile'             => '',
	'borderType'               => 'px',
	'borderRadius'             => '0',
	'borderRadiusTablet'       => '',
	'borderRadiusMobile'       => '',
	'borderRadiusType'         => 'px',
	'fontSize'                 => '',
	'fontSizeType'             => 'px',
	'fontSizeMobile'           => '',
	'fontSizeTablet'           => '',
	'lineHeight'               => '',
	'lineHeightType'           => 'em',
	'lineHeightMobile'         => '',
	'lineHeightTablet'         => '',
	'fontFamily'               => '',
	'fontWeight'               => '',
	'loadGoogleFonts'          => false,
	'icon_layout'              => 'vertical',
	'iconLayoutTablet'         => '',
	'iconLayoutMobile'         => '',
	'fontStyle'                => '',
	'fontTransform'            => '',
	'fontDecoration'           => '',
	'hideLabel'                => false,
	'iconPosition'             => 'middle',
	'iconPositionTablet'       => '',
	'iconPositionMobile'       => '',
	'iconPlacement'            => 'before',
	'iconColor'                => '',
	'iconHoverColor'           => '',
	'iconBgColor'              => '',
	'iconBgHoverColor'         => '',
	'iconBorderColor'          => '',
	'iconBorderHoverColor'     => '',
	'labelColor'               => '',
	'labelHoverColor'          => '',
	'labelLetterSpacing'       => '',
	'labelLetterSpacingTablet' => '',
	'labelLetterSpacingMobile' => '',
	'labelLetterSpacingType'   => 'px',
	// margin.
	'blockTopMargin'           => '',
	'blockRightMargin'         => '',
	'blockLeftMargin'          => '',
	'blockBottomMargin'        => '',
	'blockTopMarginTablet'     => '',
	'blockRightMarginTablet'   => '',
	'blockLeftMarginTablet'    => '',
	'blockBottomMarginTablet'  => '',
	'blockTopMarginMobile'     => '',
	'blockRightMarginMobile'   => '',
	'blockLeftMarginMobile'    => '',
	'blockBottomMarginMobile'  => '',
	'blockMarginUnit'          => 'px',
	'blockMarginUnitTablet'    => 'px',
	'blockMarginUnitMobile'    => 'px',
	'blockMarginLink'          => '',
	'parentIcon'               => 'circle-arrow-right',
	// padding.
	'blockTopPadding'          => '',
	'blockRightPadding'        => '',
	'blockLeftPadding'         => '',
	'blockBottomPadding'       => '',
	'blockTopPaddingTablet'    => '',
	'blockRightPaddingTablet'  => '',
	'blockLeftPaddingTablet'   => '',
	'blockBottomPaddingTablet' => '',
	'blockTopPaddingMobile'    => '',
	'blockRightPaddingMobile'  => '',
	'blockLeftPaddingMobile'   => '',
	'blockBottomPaddingMobile' => '',
	'blockPaddingUnit'         => 'px',
	'blockPaddingUnitTablet'   => 'px',
	'blockPaddingUnitMobile'   => 'px',
	'blockPaddingLink'         => '',
);
PK��][Ӭ���Aultimate-addons-for-gutenberg/includes/blocks/icon-list/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/icon-list';
$block_data = array(
	'doc'              => 'icon-list',
	'slug'             => '',
	'admin_categories' => array( 'creative' ),
	'link'             => 'icon-list',
	'title'            => __( 'Icon List', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Create a list highlighted with icons/images.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'icon-list' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'icon-list',
	),
);
PK��][�xUxUHultimate-addons-for-gutenberg/includes/blocks/icon-list/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
// We have used the same buttons gfont function because the inputs to these functions are same.
// If need be please add a new function for Info Box and go ahead.
UAGB_Block_JS::blocks_buttons_gfont( $attr );

$font_size_fallback = is_numeric( $attr['fontSize'] ) ? $attr['fontSize'] : 16;

// Responsive Fallback Values that Need to be Numeric for Math.
$size_tablet_fallback      = is_numeric( $attr['sizeTablet'] ) ? $attr['sizeTablet'] : $attr['size'];
$size_mobile_fallback      = is_numeric( $attr['sizeMobile'] ) ? $attr['sizeMobile'] : $size_tablet_fallback;
$bg_size_tablet_fallback   = is_numeric( $attr['bgSizeTablet'] ) ? $attr['bgSizeTablet'] : $attr['bgSize'];
$bg_size_mobile_fallback   = is_numeric( $attr['bgSizeMobile'] ) ? $attr['bgSizeMobile'] : $bg_size_tablet_fallback;
$tborder_fallback          = is_numeric( $attr['borderTablet'] ) ? $attr['borderTablet'] : $attr['border'];
$mborder_fallback          = is_numeric( $attr['borderMobile'] ) ? $attr['borderMobile'] : $tborder_fallback;
$font_size_tablet_fallback = is_numeric( $attr['fontSizeTablet'] ) ? $attr['fontSizeTablet'] : $font_size_fallback;
$font_size_mobile_fallback = is_numeric( $attr['fontSizeMobile'] ) ? $attr['fontSizeMobile'] : $font_size_tablet_fallback;
$tgap_fallback             = is_numeric( $attr['gapTablet'] ) ? $attr['gapTablet'] : $attr['gap'];
$mgap_fallback             = is_numeric( $attr['gapMobile'] ) ? $attr['gapMobile'] : $tgap_fallback;

$alignment        = ( 'left' === $attr['align'] ) ? 'flex-start' : ( ( 'right' === $attr['align'] ) ? 'flex-end' : 'center' );
$alignment_tablet = ( 'left' === $attr['alignTablet'] ) ? 'flex-start' : ( ( 'right' === $attr['alignTablet'] ) ? 'flex-end' : ( ( 'center' === $attr['alignTablet'] ) ? 'center' : $alignment ) );
$alignment_mobile = ( 'left' === $attr['alignMobile'] ) ? 'flex-start' : ( ( 'right' === $attr['alignMobile'] ) ? 'flex-end' : ( ( 'center' === $attr['alignMobile'] ) ? 'center' : $alignment_tablet ) );


$icon_layout        = $attr['icon_layout'];
$icon_layout_tablet = ! empty( $attr['iconLayoutTablet'] ) ? $attr['iconLayoutTablet'] : $icon_layout;
$icon_layout_mobile = ! empty( $attr['iconLayoutMobile'] ) ? $attr['iconLayoutMobile'] : $icon_layout_tablet;

$m_selectors = array();
$t_selectors = array();

$icon_size   = UAGB_Helper::get_css_value( $attr['size'], $attr['sizeType'] );
$m_icon_size = UAGB_Helper::get_css_value( $size_mobile_fallback, $attr['sizeType'] );
$t_icon_size = UAGB_Helper::get_css_value( $size_tablet_fallback, $attr['sizeType'] );

// The Math ( 3 * Icon Size ) / 5 aligns perfectly with the current defaults ( Font Size: 16px, Line Height: 1.8em ).
$half_size        = 3 * $attr['size'] / 5;
$half_size_tablet = 3 * $size_tablet_fallback / 5;
$half_size_mobile = 3 * $size_mobile_fallback / 5;

$position        = 'top' === $attr['iconPosition'] ? 'flex-start' : 'center';
$tablet_position = '';
$mobile_position = '';

if ( 'top' === $attr['iconPositionTablet'] ) {
	$tablet_position = 'flex-start';
} elseif ( 'middle' === $attr['iconPositionTablet'] ) {
	$tablet_position = 'center';
} else {
	$tablet_position = $position;
}

if ( 'top' === $attr['iconPositionMobile'] ) {
	$mobile_position = 'flex-start';
} elseif ( 'middle' === $attr['iconPositionMobile'] ) {
	$mobile_position = 'center';
} else {
	$mobile_position = $tablet_position;
}

$selectors = array(
	// Desktop Icon Size CSS starts.
	' .uagb-icon-list__source-image' => array(
		'width' => $icon_size,
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg' => array(
		'width'     => $icon_size,
		'height'    => $icon_size,
		'font-size' => $icon_size,
		'color'     => $attr['iconColor'],
		'fill'      => $attr['iconColor'],
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap' => array_merge(
		array(
			'background'    => $attr['iconBgColor'],
			'border-color'  => $attr['iconBorderColor'],
			'padding'       => UAGB_Helper::get_css_value( $attr['bgSize'], $attr['bgSizeType'] ),
			'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadius'], 'px' ),
			'border-style'  => ( $attr['border'] > 0 ) ? 'solid' : '',
			'border-width'  => UAGB_Helper::get_css_value( $attr['border'], $attr['borderType'] ),
			'align-self'    => $position,
		)
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__label' => array(
		'font-size'       => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
		'font-family'     => $attr['fontFamily'],
		'text-transform'  => $attr['fontTransform'],
		'text-decoration' => $attr['fontDecoration'] . '!important',
		'font-style'      => $attr['fontStyle'],
		'font-weight'     => $attr['fontWeight'],
		'line-height'     => $attr['lineHeight'] . $attr['lineHeightType'],
	),
	' .uagb-icon-list__wrap'         => array(
		'display'           => 'flex',
		'flex-direction'    => 'row',
		'justify-content'   => $alignment,
		'-webkit-box-pack'  => $alignment,
		'-ms-flex-pack'     => $alignment,
		'-webkit-box-align' => 'center',
		'-ms-flex-align'    => 'center',
		'align-items'       => 'center',
		'margin-top'        => UAGB_Helper::get_css_value(
			$attr['blockTopMargin'],
			$attr['blockMarginUnit']
		),
		'margin-right'      => UAGB_Helper::get_css_value(
			$attr['blockRightMargin'],
			$attr['blockMarginUnit']
		),
		'margin-bottom'     => UAGB_Helper::get_css_value(
			$attr['blockBottomMargin'],
			$attr['blockMarginUnit']
		),
		'margin-left'       => UAGB_Helper::get_css_value(
			$attr['blockLeftMargin'],
			$attr['blockMarginUnit']
		),
		'padding-top'       => UAGB_Helper::get_css_value(
			$attr['blockTopPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-right'     => UAGB_Helper::get_css_value(
			$attr['blockRightPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-bottom'    => UAGB_Helper::get_css_value(
			$attr['blockBottomPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-left'      => UAGB_Helper::get_css_value(
			$attr['blockLeftPadding'],
			$attr['blockPaddingUnit']
		),
	),
	' .wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap svg' => array(
		'color' => $attr['iconHoverColor'],
		'fill'  => $attr['iconHoverColor'],
	),
	' .wp-block-uagb-icon-list-child:hover .uagb-icon-list__label' => array(
		'color' => $attr['labelHoverColor'],
	),
	' .wp-block-uagb-icon-list-child:hover .uagb-icon-list__source-wrap' => array(
		'background'   => $attr['iconBgHoverColor'],
		'border-color' => $attr['iconBorderHoverColor'],
	),
	' .uagb-icon-list__label'        => array(
		'text-align' => $attr['align'],
	),
);


if ( $attr['childMigrate'] ) {
	$selectors[' .wp-block-uagb-icon-list-child'] = array(
		'font-family'     => $attr['fontFamily'],
		'text-transform'  => $attr['fontTransform'],
		'text-decoration' => $attr['fontDecoration'] . '!important',
		'font-style'      => $attr['fontStyle'],
		'font-weight'     => $attr['fontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
		'line-height'     => $attr['lineHeight'] . $attr['lineHeightType'],
	);
}


$t_selectors = array(
	' .uagb-icon-list__source-image' => array(
		'width' => $t_icon_size,
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg' => array(
		'width'     => $t_icon_size,
		'height'    => $t_icon_size,
		'font-size' => $t_icon_size,
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap ' => array_merge(
		array(
			'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadiusTablet'], $attr['borderRadiusType'] ),
			'padding'       => UAGB_Helper::get_css_value( $bg_size_tablet_fallback, 'px' ),
			'border-style'  => ( $tborder_fallback > 0 ) ? 'solid' : '',
			'border-width'  => UAGB_Helper::get_css_value( $tborder_fallback, $attr['borderType'] ),
			'align-self'    => $tablet_position,
		)
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__label' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['fontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['lineHeightTablet'], $attr['lineHeightType'] ),
	),
	' .uagb-icon-list__wrap'         => array(
		'display'           => 'flex',
		'flex-direction'    => 'row',
		'justify-content'   => $alignment_tablet,
		'-webkit-box-pack'  => $alignment_tablet,
		'-ms-flex-pack'     => $alignment_tablet,
		'-webkit-box-align' => 'center',
		'-ms-flex-align'    => 'center',
		'align-items'       => 'center',
		'margin-top'        => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-right'      => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-bottom'     => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-left'       => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'padding-top'       => UAGB_Helper::get_css_value(
			$attr['blockTopPaddingTablet'],
			$attr['blockPaddingUnitTablet']
		),
		'padding-right'     => UAGB_Helper::get_css_value(
			$attr['blockRightPaddingTablet'],
			$attr['blockPaddingUnitTablet']
		),
		'padding-bottom'    => UAGB_Helper::get_css_value(
			$attr['blockBottomPaddingTablet'],
			$attr['blockPaddingUnitTablet']
		),
		'padding-left'      => UAGB_Helper::get_css_value(
			$attr['blockLeftPaddingTablet'],
			$attr['blockPaddingUnitTablet']
		),
	),
	' .uagb-icon-list__label'        => array(
		'text-align' => $attr['alignTablet'],
	),
);


$m_selectors = array(
	' .uagb-icon-list__source-image' => array(
		'width' => $m_icon_size,
	),
	' .uagb-icon-list__label'        => array(
		'text-align' => $attr['alignMobile'],
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap svg' => array(
		'width'     => $m_icon_size,
		'height'    => $m_icon_size,
		'font-size' => $m_icon_size,
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__source-wrap' => array_merge(
		array(
			'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadiusMobile'], $attr['borderRadiusType'] ),
			'padding'       => UAGB_Helper::get_css_value( $bg_size_mobile_fallback, 'px' ),
			'border-style'  => ( $mborder_fallback > 0 ) ? 'solid' : '',
			'border-width'  => UAGB_Helper::get_css_value( $mborder_fallback, $attr['borderType'] ),
			'align-self'    => $mobile_position,
		)
	),
	' .wp-block-uagb-icon-list-child .uagb-icon-list__label' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['fontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['lineHeightMobile'], $attr['lineHeightType'] ),
	),
	' .uagb-icon-list__wrap'         => array(
		'display'           => 'flex',
		'flex-direction'    => 'row',
		'justify-content'   => $alignment_mobile,
		'-webkit-box-pack'  => $alignment_mobile,
		'-ms-flex-pack'     => $alignment_mobile,
		'-webkit-box-align' => 'center',
		'-ms-flex-align'    => 'center',
		'align-items'       => 'center',
		'margin-top'        => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-right'      => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-bottom'     => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-left'       => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'padding-top'       => UAGB_Helper::get_css_value(
			$attr['blockTopPaddingMobile'],
			$attr['blockPaddingUnitMobile']
		),
		'padding-right'     => UAGB_Helper::get_css_value(
			$attr['blockRightPaddingMobile'],
			$attr['blockPaddingUnitMobile']
		),
		'padding-bottom'    => UAGB_Helper::get_css_value(
			$attr['blockBottomPaddingMobile'],
			$attr['blockPaddingUnitMobile']
		),
		'padding-left'      => UAGB_Helper::get_css_value(
			$attr['blockLeftPaddingMobile'],
			$attr['blockPaddingUnitMobile']
		),
	),
);

$selectors[' .wp-block-uagb-icon-list-child .uagb-icon-list__label'] = array(
	'font-size'       => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
	'font-family'     => $attr['fontFamily'],
	'text-transform'  => $attr['fontTransform'],
	'text-decoration' => $attr['fontDecoration'] . '!important',
	'font-style'      => $attr['fontStyle'],
	'font-weight'     => $attr['fontWeight'],
	'line-height'     => $attr['lineHeight'] . $attr['lineHeightType'],
	'letter-spacing'  => UAGB_Helper::get_css_value( $attr['labelLetterSpacing'], $attr['labelLetterSpacingType'] ),
	'color'           => $attr['labelColor'],
);

$m_selectors[' .wp-block-uagb-icon-list-child .uagb-icon-list__label'] = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['fontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['lineHeightMobile'], $attr['lineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['labelLetterSpacingMobile'], $attr['labelLetterSpacingType'] ),
);

$t_selectors[' .wp-block-uagb-icon-list-child .uagb-icon-list__label'] = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['fontSizeType'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['lineHeightTablet'], $attr['lineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['labelLetterSpacingTablet'], $attr['labelLetterSpacingType'] ),
);

if ( 'horizontal' === $icon_layout ) {
	$selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child'] = array(
		'margin-left'  => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), $attr['gapType'] ),
		'margin-right' => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), $attr['gapType'] ),
		'display'      => 'inline-flex',
	);

	$selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child'] = array(
		'margin-left' => 0,
	);
	$selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:last-child']  = array(
		'margin-right' => 0,
	);
} elseif ( 'vertical' === $icon_layout ) {
	$selectors[' .uagb-icon-list__wrap']['flex-direction']    = 'column';
	$selectors[' .uagb-icon-list__wrap']['align-items']       = $alignment;
	$selectors[' .uagb-icon-list__wrap']['-webkit-box-align'] = $alignment;
	$selectors[' .uagb-icon-list__wrap']['-ms-flex-align']    = $alignment;
	$selectors[' .uagb-icon-list__wrap']['justify-content']   = 'center';
	$selectors[' .uagb-icon-list__wrap']['-webkit-box-pack']  = 'center';
	$selectors[' .uagb-icon-list__wrap']['-ms-flex-pack']     = 'center';

	$selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child'] = array(
		'margin-left'   => 0,
		'margin-right'  => 0,
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['gap'], $attr['gapType'] ),
	);
}

if ( 'horizontal' === $icon_layout_tablet ) {
	$t_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child']             = array(
		'margin-left'  => UAGB_Helper::get_css_value( ( $tgap_fallback / 2 ), $attr['gapType'] ),
		'margin-right' => UAGB_Helper::get_css_value( ( $tgap_fallback / 2 ), $attr['gapType'] ),
		'display'      => 'inline-flex',
	);
	$t_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child'] = array(
		'margin-left' => 0,
	);

} elseif ( 'vertical' === $icon_layout_tablet ) {
	$t_selectors[' .uagb-icon-list__wrap']['flex-direction']    = 'column';
	$t_selectors[' .uagb-icon-list__wrap']['align-items']       = $alignment_tablet;
	$t_selectors[' .uagb-icon-list__wrap']['-webkit-box-align'] = $alignment_tablet;
	$t_selectors[' .uagb-icon-list__wrap']['-ms-flex-align']    = $alignment_tablet;
	$t_selectors[' .uagb-icon-list__wrap']['justify-content']   = 'center';
	$t_selectors[' .uagb-icon-list__wrap']['-webkit-box-pack']  = 'center';
	$t_selectors[' .uagb-icon-list__wrap']['-ms-flex-pack']     = 'center';

	$t_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child'] = array(
		'margin-left'   => 0,
		'margin-right'  => 0,
		'margin-bottom' => UAGB_Helper::get_css_value( $tgap_fallback, $attr['gapType'] ),
	);
}


if ( 'horizontal' === $icon_layout_mobile ) {
	$m_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child']             = array(
		'margin-left'  => UAGB_Helper::get_css_value( ( $mgap_fallback / 2 ), $attr['gapType'] ),
		'margin-right' => UAGB_Helper::get_css_value( ( $mgap_fallback / 2 ), $attr['gapType'] ),
		'display'      => 'inline-flex',
	);
	$m_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child:first-child'] = array(
		'margin-left' => 0,
	);
} elseif ( 'vertical' === $icon_layout_mobile ) {
	$m_selectors[' .uagb-icon-list__wrap']['flex-direction']    = 'column';
	$m_selectors[' .uagb-icon-list__wrap']['align-items']       = $alignment_mobile;
	$m_selectors[' .uagb-icon-list__wrap']['-webkit-box-align'] = $alignment_mobile;
	$m_selectors[' .uagb-icon-list__wrap']['-ms-flex-align']    = $alignment_mobile;
	$m_selectors[' .uagb-icon-list__wrap']['justify-content']   = 'center';
	$m_selectors[' .uagb-icon-list__wrap']['-webkit-box-pack']  = 'center';
	$m_selectors[' .uagb-icon-list__wrap']['-ms-flex-pack']     = 'center';

	$m_selectors['.wp-block-uagb-icon-list .wp-block-uagb-icon-list-child'] = array(
		'margin-left'   => 0,
		'margin-right'  => 0,
		'margin-bottom' => UAGB_Helper::get_css_value( $mgap_fallback, $attr['gapType'] ),
	);
}

if ( ! $attr['childMigrate'] ) {

	$defaults = UAGB_DIR . 'includes/blocks/icon-list-child/attributes.php';

	if ( file_exists( $defaults ) ) {
		$default_attr = include $defaults;
	}

	$default_attr = ( ! empty( $default_attr ) && is_array( $default_attr ) ) ? $default_attr : array();

	foreach ( $attr['icons'] as $key => $icon ) {

		$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-icon-list__repeater-' . $key . '.wp-block-uagb-icon-list-child' : ' .wp-block-uagb-icon-list-child';

		$selectors[ $wrapper ]                                     = array(
			'font-family'     => $attr['fontFamily'],
			'text-transform'  => $attr['fontTransform'],
			'text-decoration' => $attr['fontDecoration'] . '!important',
			'font-style'      => $attr['fontStyle'],
			'font-weight'     => $attr['fontWeight'],
			'font-size'       => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['sizeType'] ),
			'line-height'     => $attr['lineHeight'] . $attr['lineHeightType'],
		);
		$m_selectors_child[ $wrapper . ' .uagb-icon-list__label' ] = array(
			'font-family'     => $attr['fontFamily'],
			'text-transform'  => $attr['fontTransform'],
			'text-decoration' => $attr['fontDecoration'] . '!important',
			'font-style'      => $attr['fontStyle'],
			'font-weight'     => $attr['fontWeight'],
			'font-size'       => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['sizeType'] ),
			'line-height'     => $attr['lineHeightMobile'] . $attr['lineHeightType'],
		);
		$t_selectors_child[ $wrapper . ' .uagb-icon-list__label' ] = array(
			'font-family'     => $attr['fontFamily'],
			'text-transform'  => $attr['fontTransform'],
			'text-decoration' => $attr['fontDecoration'] . '!important',
			'font-style'      => $attr['fontStyle'],
			'font-weight'     => $attr['fontWeight'],
			'font-size'       => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['sizeType'] ),
			'line-height'     => $attr['lineHeightTablet'] . $attr['lineHeightType'],
		);

		if ( $attr['icon_count'] <= $key ) {
			break;
		}

		$icon = array_merge( $default_attr, (array) $icon );

		$child_selectors = UAGB_Block_Helper::get_icon_list_child_selectors( $icon, $key, $attr['childMigrate'] );
		$selectors       = array_merge( $selectors, (array) $child_selectors );
		$t_selectors     = array_merge( $t_selectors, (array) $t_selectors_child );
		$m_selectors     = array_merge( $m_selectors, (array) $m_selectors_child );
	}
}

if ( 'right' === $attr['align'] && $attr['hideLabel'] ) {
	$selectors[' .uagb-icon-list__source-wrap']   = array(
		'margin-right' => '0px',
	);
	$m_selectors[' .uagb-icon-list__source-wrap'] = array(
		'margin-right' => '0px',
	);
	$t_selectors[' .uagb-icon-list__source-wrap'] = array(
		'margin-right' => '0px',
	);
} else {
	if ( 'before' === $attr['iconPlacement'] && ! $attr['hideLabel'] ) {
		$selectors[' .uagb-icon-list__source-wrap']   = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['inner_gap'], $attr['innerGapType'] ),
		);
		$m_selectors[' .uagb-icon-list__source-wrap'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['innerGapMobile'], $attr['innerGapType'] ),
		);
		$t_selectors[' .uagb-icon-list__source-wrap'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['innerGapTablet'], $attr['innerGapType'] ),
		);
	} elseif ( 'after' === $attr['iconPlacement'] && ! $attr['hideLabel'] ) {
		$selectors[' .uagb-icon-list__source-wrap']    = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['inner_gap'], $attr['innerGapType'] ),
		);
		$m_selectors[' .uagb-icon-list__source-wrap']  = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['innerGapMobile'], $attr['innerGapType'] ),
		);
		$t_selectors[' .uagb-icon-list__source-wrap']  = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['innerGapTablet'], $attr['innerGapType'] ),
		);
		$selectors[' .wp-block-uagb-icon-list-child '] = array(
			'flex-direction' => 'row-reverse',
		);
	}
	if ( 'center' === $attr['align'] ) {
		$selectors[' .wp-block-uagb-icon-list-child'] = array(
			'text-align' => 'center',
		);
	}
}


$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.wp-block-uagb-icon-list.uagb-block-' : '#uagb-icon-list-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK��][=!V��Hultimate-addons-for-gutenberg/includes/blocks/advanced-heading/error_lognu�[���[27-Oct-2025 04:50:31 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/attributes.php on line 10
[27-Oct-2025 04:57:11 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/block.php on line 16
[29-Oct-2025 20:33:47 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/attributes.php on line 10
[29-Oct-2025 20:36:52 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/advanced-heading/block.php on line 16
PK��][,|�a��Multimate-addons-for-gutenberg/includes/blocks/advanced-heading/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$highLight_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'highLight' );

$enable_legacy_blocks = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' );

$heading_alignment_default = ( 'yes' === get_option( 'uagb-old-user-less-than-2' ) ) ? 'center' : '';
$subheading_toggle_default = 'yes' === get_option( 'uagb-old-user-less-than-2' );

return array_merge(
	$highLight_border_attribute,
	array(
		'classMigrate'                 => false,
		'blockBackground'              => '',
		'blockBackgroundType'          => 'classic',
		'blockGradientBackground'      => 'linear-gradient(90deg, rgb(6, 147, 227) 0%, rgb(155, 81, 224) 100%)',
		'headingAlign'                 => $heading_alignment_default,
		'headingAlignTablet'           => '',
		'headingDescPosition'          => 'below-heading',
		'seperatorPosition'            => 'below-heading',
		'headingAlignMobile'           => '',
		'headingColor'                 => '',
		'headingColorType'             => 'classic',
		'headingGradientColor'         => 'linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)',
		'subHeadingColor'              => '',
		'separatorHeightType'          => 'px',
		'separatorSpaceType'           => 'px',
		'separatorColor'               => '#0170b9',
		'seperatorStyle'               => 'none',
		'separatorHeight'              => 2,
		'separatorWidth'               => 12,
		'separatorWidthTablet'         => '',
		'separatorWidthMobile'         => '',
		'separatorWidthType'           => '%',
		'headFontFamily'               => '',
		'headLoadGoogleFonts'          => false,
		'headFontWeight'               => '',
		'headFontStyle'                => '',
		'headFontSize'                 => '',
		'headFontSizeType'             => 'px',
		'headFontSizeTypeTablet'       => 'px',
		'headFontSizeTypeMobile'       => 'px',
		'headFontSizeTablet'           => '',
		'headFontSizeMobile'           => '',
		'headSpaceType'                => 'px',
		'headLineHeight'               => '',
		'headLineHeightType'           => 'em',
		'headLineHeightTablet'         => '',
		'headLineHeightMobile'         => '',
		'headLetterSpacing'            => '',
		'headLetterSpacingTablet'      => '',
		'headLetterSpacingMobile'      => '',
		'headLetterSpacingType'        => 'px',
		'headShadowColor'              => '',
		'headShadowHOffset'            => 0,
		'headShadowVOffset'            => 0,
		'headShadowBlur'               => 10,
		'subHeadFontFamily'            => '',
		'subHeadLoadGoogleFonts'       => false,
		'subHeadFontWeight'            => '',
		'subHeadFontStyle'             => '',
		'subHeadFontSize'              => '',
		'subHeadFontSizeType'          => 'px',
		'subHeadFontSizeTypeTablet'    => 'px',
		'subHeadFontSizeTypeMobile'    => 'px',
		'subHeadFontSizeTablet'        => '',
		'subHeadFontSizeMobile'        => '',
		'subHeadLineHeight'            => '',
		'subHeadLineHeightType'        => 'em',
		'subHeadLineHeightTablet'      => '',
		'subHeadLineHeightMobile'      => '',
		'subHeadLetterSpacing'         => '',
		'subHeadLetterSpacingTablet'   => '',
		'subHeadLetterSpacingMobile'   => '',
		'subHeadLetterSpacingType'     => 'px',
		'headSpace'                    => 15,
		'headSpaceTablet'              => '',
		'headSpaceMobile'              => '',
		'separatorSpace'               => 15,
		'separatorSpaceTablet'         => '',
		'separatorSpaceMobile'         => '',
		'separatorHoverColor'          => '',
		'headTransform'                => '',
		'headDecoration'               => '',
		'subHeadTransform'             => '',
		'subHeadDecoration'            => '',
		// padding.
		'blockTopPadding'              => '',
		'blockRightPadding'            => '',
		'blockLeftPadding'             => '',
		'blockBottomPadding'           => '',
		'blockTopPaddingTablet'        => '',
		'blockRightPaddingTablet'      => '',
		'blockLeftPaddingTablet'       => '',
		'blockBottomPaddingTablet'     => '',
		'blockTopPaddingMobile'        => '',
		'blockRightPaddingMobile'      => '',
		'blockLeftPaddingMobile'       => '',
		'blockBottomPaddingMobile'     => '',
		'blockPaddingUnit'             => 'px',
		'blockPaddingUnitTablet'       => 'px',
		'blockPaddingUnitMobile'       => 'px',
		'blockPaddingLink'             => '',
		// margin.
		'blockTopMargin'               => '',
		'blockRightMargin'             => '',
		'blockLeftMargin'              => '',
		'blockBottomMargin'            => '',
		'blockTopMarginTablet'         => '',
		'blockRightMarginTablet'       => '',
		'blockLeftMarginTablet'        => '',
		'blockBottomMarginTablet'      => '',
		'blockTopMarginMobile'         => '',
		'blockRightMarginMobile'       => '',
		'blockLeftMarginMobile'        => '',
		'blockBottomMarginMobile'      => '',
		'blockMarginUnit'              => 'px',
		'blockMarginUnitTablet'        => 'px',
		'blockMarginUnitMobile'        => 'px',
		'blockMarginLink'              => '',
		// link.
		'linkColor'                    => '',
		'linkHColor'                   => '',
		// Highlight.
		'highLightColor'               => '#fff',
		'highLightBackground'          => '#007cba',
		'highLightLoadGoogleFonts'     => false,
		'highLightFontFamily'          => 'Default',
		'highLightFontWeight'          => 'Default',
		'highLightFontStyle'           => 'normal',
		'highLightTransform'           => '',
		'highLightDecoration'          => '',
		'highLightFontSizeType'        => 'px',
		'highLightFontSizeTypeTablet'  => 'px',
		'highLightFontSizeTypeMobile'  => 'px',
		'highLightLineHeightType'      => 'em',
		'highLightFontSize'            => '',
		'highLightFontSizeTablet'      => '',
		'highLightFontSizeMobile'      => '',
		'highLightLineHeight'          => '',
		'highLightLineHeightTablet'    => '',
		'highLightLineHeightMobile'    => '',
		'highLightLetterSpacing'       => '',
		'highLightLetterSpacingTablet' => '',
		'highLightLetterSpacingMobile' => '',
		'highLightLetterSpacingType'   => 'px',
		'highLightTopPadding'          => '',
		'highLightRightPadding'        => '',
		'highLightLeftPadding'         => '',
		'highLightBottomPadding'       => '',
		'highLightTopPaddingTablet'    => '',
		'highLightRightPaddingTablet'  => '',
		'highLightLeftPaddingTablet'   => '',
		'highLightBottomPaddingTablet' => '',
		'highLightTopPaddingMobile'    => '',
		'highLightRightPaddingMobile'  => '',
		'highLightLeftPaddingMobile'   => '',
		'highLightBottomPaddingMobile' => '',
		'highLightPaddingUnit'         => 'px',
		'highLightPaddingUnitTablet'   => 'px',
		'highLightPaddingUnitMobile'   => 'px',
		'highLightPaddingLink'         => '',
		'subHeadSpace'                 => 15,
		'subHeadSpaceMobile'           => '',
		'subHeadSpaceTablet'           => '',
		'subHeadSpaceType'             => 'px',
		'headingDescToggle'            => $subheading_toggle_default,
		// For Global Block Styles.
		'globalBlockStyleName'         => '',
		'globalBlockStyleId'           => '',
	)
);
PK��][��?��Hultimate-addons-for-gutenberg/includes/blocks/advanced-heading/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/advanced-heading';
$block_data = array(
	'slug'             => '',
	'admin_categories' => array( 'content', 'core' ),
	'link'             => 'advanced-heading',
	'doc'              => 'advanced-heading',
	'title'            => __( 'Heading', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add heading, sub heading and a separator using one block.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'advanced-heading' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'advanced-heading',
	),
);
PK��][��.�.Oultimate-addons-for-gutenberg/includes/blocks/advanced-heading/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Add fonts.
UAGB_Block_JS::blocks_advanced_heading_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$highLight_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'highLight' );
$highLight_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'highLight', 'tablet' );
$highLight_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'highLight', 'mobile' );


$selectors = array(
	'.wp-block-uagb-advanced-heading .uagb-heading-text' => array(
		'color' => $attr['headingColor'],
	),
	'.wp-block-uagb-advanced-heading '                   => array(
		'background'     => 'classic' === $attr['blockBackgroundType'] ? $attr['blockBackground'] : $attr['blockGradientBackground'],
		'text-align'     => $attr['headingAlign'],
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['blockTopMargin'],
			$attr['blockMarginUnit']
		),
		'margin-right'   => UAGB_Helper::get_css_value(
			$attr['blockRightMargin'],
			$attr['blockMarginUnit']
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['blockBottomMargin'],
			$attr['blockMarginUnit']
		),
		'margin-left'    => UAGB_Helper::get_css_value(
			$attr['blockLeftMargin'],
			$attr['blockMarginUnit']
		),
		'padding-top'    => UAGB_Helper::get_css_value(
			$attr['blockTopPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-right'  => UAGB_Helper::get_css_value(
			$attr['blockRightPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-bottom' => UAGB_Helper::get_css_value(
			$attr['blockBottomPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-left'   => UAGB_Helper::get_css_value(
			$attr['blockLeftPadding'],
			$attr['blockPaddingUnit']
		),
	),
	'.wp-block-uagb-advanced-heading a'                  => array(
		'color' => $attr['linkColor'],
	),
	'.wp-block-uagb-advanced-heading a:hover'            => array(
		'color' => $attr['linkHColor'],
	),
	'.wp-block-uagb-advanced-heading .uagb-desc-text'    => array(
		'color'         => $attr['subHeadingColor'],
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['subHeadSpace'],
			'px'
		),
	),
	'.wp-block-uagb-advanced-heading .uagb-highlight'    => array_merge(
		array(
			'background'              => $attr['highLightBackground'],
			'color'                   => $attr['highLightColor'],
			'-webkit-text-fill-color' => $attr['highLightColor'],
			'font-family'             => $attr['highLightFontFamily'],
			'font-style'              => $attr['highLightFontStyle'],
			'text-decoration'         => $attr['highLightDecoration'],
			'text-transform'          => $attr['highLightTransform'],
			'font-weight'             => $attr['highLightFontWeight'],
			'font-size'               => UAGB_Helper::get_css_value( $attr['highLightFontSize'], $attr['highLightFontSizeType'] ),
			'line-height'             => UAGB_Helper::get_css_value( $attr['highLightLineHeight'], $attr['highLightLineHeightType'] ),
			'padding-top'             => UAGB_Helper::get_css_value(
				$attr['highLightTopPadding'],
				$attr['highLightPaddingUnit']
			),
			'padding-right'           => UAGB_Helper::get_css_value(
				$attr['highLightRightPadding'],
				$attr['highLightPaddingUnit']
			),
			'padding-bottom'          => UAGB_Helper::get_css_value(
				$attr['highLightBottomPadding'],
				$attr['highLightPaddingUnit']
			),
			'padding-left'            => UAGB_Helper::get_css_value(
				$attr['highLightLeftPadding'],
				$attr['highLightPaddingUnit']
			),

		),
		$highLight_border_css
	),
	'.wp-block-uagb-advanced-heading .uagb-highlight:hover' => array(
		'border-color' => $attr['highLightBorderHColor'],
	),
);

$heading_text_shadow_color = ( ! empty( $attr['headShadowColor'] ) ? UAGB_Helper::get_css_value( $attr['headShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['headShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['headShadowBlur'], 'px' ) . ' ' . $attr['headShadowColor'] : '' );

if ( 'gradient' === $attr['headingColorType'] ) {
	$selectors['.wp-block-uagb-advanced-heading .uagb-heading-text'] = array_merge(
		$selectors['.wp-block-uagb-advanced-heading .uagb-heading-text'],
		array(
			'background'              => $attr['headingGradientColor'],
			'-webkit-background-clip' => 'text',
			'-webkit-text-fill-color' => 'transparent',
			'filter'                  => 'drop-shadow( ' . $heading_text_shadow_color . ' )',
		)
	);
	$selectors['.wp-block-uagb-advanced-heading a']                  = array_merge(
		$selectors['.wp-block-uagb-advanced-heading a'],
		array(
			'-webkit-text-fill-color' => $attr['linkColor'],
		)
	);
	$selectors['.wp-block-uagb-advanced-heading a:hover']            = array_merge(
		$selectors['.wp-block-uagb-advanced-heading a:hover'],
		array(
			'-webkit-text-fill-color' => $attr['linkHColor'],
		)
	);
} else {
	$selectors['.wp-block-uagb-advanced-heading .uagb-heading-text'] = array_merge(
		$selectors['.wp-block-uagb-advanced-heading .uagb-heading-text'],
		array(
			'text-shadow' => $heading_text_shadow_color,
		)
	);
}

// Text Selection & highlight.
$highlightSelectionText = array(
	'color'                   => $attr['highLightColor'],
	'background'              => $attr['highLightBackground'],
	'-webkit-text-fill-color' => $attr['highLightColor'],
);

$selectors['.wp-block-uagb-advanced-heading .uagb-highlight::-moz-selection'] = $highlightSelectionText;
$selectors['.wp-block-uagb-advanced-heading .uagb-highlight::selection']      = $highlightSelectionText;



$seperatorStyle = isset( $attr['seperatorStyle'] ) ? $attr['seperatorStyle'] : '';

if ( 'none' !== $seperatorStyle ) {
	$selectors['.wp-block-uagb-advanced-heading .uagb-separator']   = array(
		'border-top-style' => $attr['seperatorStyle'],
		'border-top-width' => UAGB_Helper::get_css_value(
			$attr['separatorHeight'],
			$attr['separatorHeightType']
		),
		'width'            => UAGB_Helper::get_css_value(
			$attr['separatorWidth'],
			$attr['separatorWidthType']
		),
		'border-color'     => $attr['separatorColor'],
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['separatorSpace'],
			$attr['separatorSpaceType']
		),
	);
	$t_selectors['.wp-block-uagb-advanced-heading .uagb-separator'] = array(
		'width'         => UAGB_Helper::get_css_value(
			$attr['separatorWidthTablet'],
			$attr['separatorWidthType']
		),
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['separatorSpaceTablet'],
			$attr['separatorSpaceType']
		),
	);
	$m_selectors['.wp-block-uagb-advanced-heading .uagb-separator'] = array(
		'width'         => UAGB_Helper::get_css_value(
			$attr['separatorWidthMobile'],
			$attr['separatorWidthType']
		),
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['separatorSpaceMobile'],
			$attr['separatorSpaceType']
		),
	);
}
$t_selectors['.wp-block-uagb-advanced-heading '] = array(
	'text-align'     => $attr['headingAlignTablet'],
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
);

$t_selectors['.wp-block-uagb-advanced-heading .uagb-highlight'] = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['highLightTopPaddingTablet'], $attr['highLightPaddingUnitTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['highLightRightPaddingTablet'], $attr['highLightPaddingUnitTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['highLightBottomPaddingTablet'], $attr['highLightPaddingUnitTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['highLightLeftPaddingTablet'], $attr['highLightPaddingUnitTablet'] ),
	),
	$highLight_border_css_tablet
);

$m_selectors['.wp-block-uagb-advanced-heading ']                = array(
	'text-align'     => $attr['headingAlignMobile'],
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
);
$m_selectors['.wp-block-uagb-advanced-heading .uagb-highlight'] = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['highLightTopPaddingMobile'], $attr['highLightPaddingUnitMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['highLightRightPaddingMobile'], $attr['highLightPaddingUnitMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['highLightBottomPaddingMobile'], $attr['highLightPaddingUnitMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['highLightLeftPaddingMobile'], $attr['highLightPaddingUnitMobile'] ),
	),
	$highLight_border_css_mobile
);

$t_selectors['.wp-block-uagb-advanced-heading .uagb-desc-text'] = array(
	'margin-bottom' => UAGB_Helper::get_css_value(
		$attr['subHeadSpaceTablet'],
		$attr['subHeadSpaceType']
	),
);
$m_selectors['.wp-block-uagb-advanced-heading .uagb-desc-text'] = array(
	'margin-bottom' => UAGB_Helper::get_css_value(
		$attr['subHeadSpaceMobile'],
		$attr['subHeadSpaceType']
	),
);
if ( $attr['headingDescToggle'] || 'none' !== $attr['seperatorStyle'] ) {
	$selectors[' .uagb-heading-text']   = array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['headSpace'],
			'px'
		),
	);
	$t_selectors[' .uagb-heading-text'] = array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['headSpaceTablet'],
			$attr['headSpaceType']
		),
	);
	$m_selectors[' .uagb-heading-text'] = array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['headSpaceMobile'],
			$attr['headSpaceType']
		),
	);
}

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'advanced-heading',
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-heading-text', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-desc-text', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'highLight', '.wp-block-uagb-advanced-heading .uagb-highlight', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.wp-block-uagb-advanced-heading.uagb-block-' : '#uagb-adv-heading-';

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	$base_selector . $id,
	isset( $gbs_class ) ? '.wp-block-uagb-advanced-heading' . $gbs_class : ''
);
PK�][�ȱHH=ultimate-addons-for-gutenberg/includes/blocks/image/error_lognu�[���[27-Oct-2025 03:58:21 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image/attributes.php on line 10
[27-Oct-2025 04:43:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image/block.php on line 16
PK�][�u��Bultimate-addons-for-gutenberg/includes/blocks/image/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$image_attribute   = UAGB_Block_Helper::uag_generate_border_attribute( 'image' );
$overlay_attribute = UAGB_Block_Helper::uag_generate_border_attribute(
	'overlay'
);

return array_merge(
	array(
		'height'                      => '',
		'width'                       => '',
		'widthTablet'                 => '',
		'heightTablet'                => '',
		'widthMobile'                 => '',
		'heightMobile'                => '',
		'layout'                      => 'default',
		// image.
		'imageTopMargin'              => '',
		'imageRightMargin'            => '',
		'imageLeftMargin'             => '',
		'imageBottomMargin'           => '',
		'imageTopMarginTablet'        => '',
		'imageRightMarginTablet'      => '',
		'imageLeftMarginTablet'       => '',
		'imageBottomMarginTablet'     => '',
		'imageTopMarginMobile'        => '',
		'imageRightMarginMobile'      => '',
		'imageLeftMarginMobile'       => '',
		'imageBottomMarginMobile'     => '',
		'imageMarginUnit'             => 'px',
		'imageMarginUnitTablet'       => 'px',
		'imageMarginUnitMobile'       => 'px',
		'align'                       => '',
		'alignTablet'                 => '',
		'alignMobile'                 => '',
		// heading.
		'headingShowOn'               => 'always',
		'headingLoadGoogleFonts'      => false,
		'headingFontFamily'           => 'Default',
		'headingFontWeight'           => '',
		'headingFontStyle'            => 'normal',
		'headingTransform'            => '',
		'headingFontSize'             => '',
		'headingColor'                => '#fff',
		'headingTransform'            => '',
		'headingDecoration'           => '',
		'headingFontSizeType'         => 'px',
		'headingFontSizeTypeTablet'   => 'px',
		'headingFontSizeTypeMobile'   => 'px',
		'headingFontSizeMobile'       => '',
		'headingFontSizeTablet'       => '',
		'headingLineHeight'           => 'em',
		'headingLineHeightType'       => 'em',
		'headingLineHeightMobile'     => '',
		'headingLineHeightTablet'     => '',
		'headingTopMargin'            => '',
		'headingRightMargin'          => '',
		'headingLeftMargin'           => '',
		'headingBottomMargin'         => '',
		'headingTopMarginTablet'      => '',
		'headingRightMarginTablet'    => '',
		'headingLeftMarginTablet'     => '',
		'headingBottomMarginTablet'   => '',
		'headingTopMarginMobile'      => '',
		'headingRightMarginMobile'    => '',
		'headingLeftMarginMobile'     => '',
		'headingBottomMarginMobile'   => '',
		'headingMarginUnit'           => 'px',
		'headingMarginUnitTablet'     => 'px',
		'headingMarginUnitMobile'     => 'px',
		// overlay.
		'overlayOpacity'              => 0.2,
		'overlayHoverOpacity'         => 1,
		'overlayPositionFromEdge'     => 15,
		'overlayPositionFromEdgeUnit' => 'px',
		'overlayBackground'           => '',
		// caption.
		'captionShowOn'               => 'hover',
		'captionAlign'                => 'center',
		'captionColor'                => '',
		'captionLoadGoogleFonts'      => false,
		'captionFontFamily'           => '',
		'captionFontStyle'            => 'normal',
		'captionTransform'            => '',
		'captionDecoration'           => '',
		'captionFontSizeType'         => 'px',
		'captionFontSizeTypeTablet'   => 'px',
		'captionFontSizeTypeMobile'   => 'px',
		'captionLineHeightType'       => 'em',
		'captionFontSize'             => '',
		'captionFontWeight'           => '',
		'captionFontSizeTablet'       => '',
		'captionFontSizeMobile'       => '',
		'captionLineHeight'           => '',
		'captionLineHeightTablet'     => '',
		'captionLineHeightMobile'     => '',
		'captionTopMargin'            => '',
		'captionRightMargin'          => '',
		'captionLeftMargin'           => '',
		'captionBottomMargin'         => '',
		'captionTopMarginTablet'      => '',
		'captionRightMarginTablet'    => '',
		'captionLeftMarginTablet'     => '',
		'captionBottomMarginTablet'   => '',
		'captionTopMarginMobile'      => '',
		'captionRightMarginMobile'    => '',
		'captionLeftMarginMobile'     => '',
		'captionBottomMarginMobile'   => '',
		'captionMarginUnit'           => 'px',
		'captionMarginUnitTablet'     => 'px',
		'captionMarginUnitMobile'     => 'px',
		// seperator.
		'seperatorShowOn'             => 'hover',
		'seperatorStyle'              => '',
		'seperatorColor'              => '#fff',
		'seperatorWidth'              => 30,
		'separatorWidthType'          => '%',
		'seperatorThickness'          => 2,
		'seperatorThicknessUnit'      => 'px',
		'seperatorTopMargin'          => '',
		'seperatorRightMargin'        => '',
		'seperatorLeftMargin'         => '',
		'seperatorBottomMargin'       => '',
		'seperatorTopMarginTablet'    => '',
		'seperatorRightMarginTablet'  => '',
		'seperatorLeftMarginTablet'   => '',
		'seperatorBottomMarginTablet' => '',
		'seperatorTopMarginMobile'    => '',
		'seperatorRightMarginMobile'  => '',
		'seperatorLeftMarginMobile'   => '',
		'seperatorBottomMarginMobile' => '',
		'seperatorMarginUnit'         => 'px',
		'seperatorMarginUnitTablet'   => 'px',
		'seperatorMarginUnitMobile'   => 'px',
		// image shadow.
		'useSeparateBoxShadows'       => true,
		'imageBoxShadowColor'         => '#00000070',
		'imageBoxShadowHOffset'       => 0,
		'imageBoxShadowVOffset'       => 0,
		'imageBoxShadowBlur'          => '',
		'imageBoxShadowSpread'        => '',
		'imageBoxShadowPosition'      => 'outset',
		'imageBoxShadowColorHover'    => '',
		'imageBoxShadowHOffsetHover'  => 0,
		'imageBoxShadowVOffsetHover'  => 0,
		'imageBoxShadowBlurHover'     => '',
		'imageBoxShadowSpreadHover'   => '',
		'imageBoxShadowPositionHover' => 'outset',
		// mask.
		'maskShape'                   => 'none',
		'maskSize'                    => 'auto',
		'maskPosition'                => 'center center',
		'maskRepeat'                  => 'no-repeat',
		'objectFit'                   => '',
		'objectFitTablet'             => '',
		'objectFitMobile'             => '',
		'headingLetterSpacing'        => '',
		'headingLetterSpacingTablet'  => '',
		'headingLetterSpacingMobile'  => '',
		'headingLetterSpacingType'    => 'px',
		'captionLetterSpacing'        => '',
		'captionLetterSpacingTablet'  => '',
		'captionLetterSpacingMobile'  => '',
		'captionLetterSpacingType'    => 'px',
		'customHeightSetDesktop'      => false,
		'customHeightSetTablet'       => false,
		'customHeightSetMobile'       => false,
		// For Global Block Styles.
		'globalBlockStyleName'        => '',
		'globalBlockStyleId'          => '',
		'disableLazyLoad'             => false,
		'imgRole'                     => 'img',
	),
	$image_attribute,
	$overlay_attribute
);
PK�][�7<��=ultimate-addons-for-gutenberg/includes/blocks/image/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/image';
$block_data = array(
	'slug'             => '',
	'admin_categories' => array( 'content', 'core' ),
	'link'             => 'image-block',
	'doc'              => 'image',
	'title'            => __( 'Image', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add images on your webpage with multiple customization options.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'image' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'image',
	),
);
PK�][�v�'F'FDultimate-addons-for-gutenberg/includes/blocks/image/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var int $id
 */

// Add fonts.
UAGB_Block_JS::blocks_advanced_image_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$image_border_css          = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image' );
$image_border_css_tablet   = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image', 'tablet' );
$image_border_css_mobile   = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image', 'mobile' );
$overlay_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overlay' );
$overlay_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overlay', 'tablet' );
$overlay_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overlay', 'mobile' );

$width_tablet = '' !== $attr['widthTablet'] ? $attr['widthTablet'] . 'px' : $attr['width'] . 'px';
$width_mobile = '' !== $attr['widthMobile'] ? $attr['widthMobile'] . 'px' : $width_tablet;

$height_tablet = '' !== $attr['heightTablet'] ? $attr['heightTablet'] . 'px' : $attr['height'] . 'px';
$height_mobile = '' !== $attr['heightMobile'] ? $attr['heightMobile'] . 'px' : $height_tablet;

$align       = '';
$alignTablet = '';
$alignMobile = '';

switch ( $attr['align'] ) {
	case 'left':
		$align = 'flex-start';
		break;
	case 'right':
		$align = 'flex-end';
		break;
	case 'center':
		$align = 'center';
		break;
}

switch ( $attr['alignTablet'] ) {
	case 'left':
		$alignTablet = 'flex-start';
		break;
	case 'right':
		$alignTablet = 'flex-end';
		break;
	case 'center':
		$alignTablet = 'center';
		break;
}

switch ( $attr['alignMobile'] ) {
	case 'left':
		$alignMobile = 'flex-start';
		break;
	case 'right':
		$alignMobile = 'flex-end';
		break;
	case 'center':
		$alignMobile = 'center';
		break;
}

$box_shadow_properties       = array(
	'horizontal' => $attr['imageBoxShadowHOffset'],
	'vertical'   => $attr['imageBoxShadowVOffset'],
	'blur'       => $attr['imageBoxShadowBlur'],
	'spread'     => $attr['imageBoxShadowSpread'],
	'color'      => $attr['imageBoxShadowColor'],
	'position'   => $attr['imageBoxShadowPosition'],
);
$box_shadow_hover_properties = array(
	'horizontal' => $attr['imageBoxShadowHOffsetHover'],
	'vertical'   => $attr['imageBoxShadowVOffsetHover'],
	'blur'       => $attr['imageBoxShadowBlurHover'],
	'spread'     => $attr['imageBoxShadowSpreadHover'],
	'color'      => $attr['imageBoxShadowColorHover'],
	'position'   => $attr['imageBoxShadowPositionHover'],
	'alt_color'  => $attr['imageBoxShadowColor'],
);

$box_shadow_css       = UAGB_Block_Helper::generate_shadow_css( $box_shadow_properties );
$box_shadow_hover_css = UAGB_Block_Helper::generate_shadow_css( $box_shadow_hover_properties );

$attr['captionDecoration'] = '' === $attr['captionDecoration'] && defined( 'ASTRA_THEME_SETTINGS' ) && function_exists( 'astra_get_font_extras' ) && function_exists( 'astra_get_option' ) ? astra_get_font_extras( astra_get_option( 'body-font-extras' ), 'text-decoration' ) : $attr['captionDecoration'];

$selectors = array(
	'.wp-block-uagb-image'                            => array(
		'margin-top'      => UAGB_Helper::get_css_value( $attr['imageTopMargin'], $attr['imageMarginUnit'] ),
		'margin-right'    => UAGB_Helper::get_css_value( $attr['imageRightMargin'], $attr['imageMarginUnit'] ),
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['imageBottomMargin'], $attr['imageMarginUnit'] ),
		'margin-left'     => UAGB_Helper::get_css_value( $attr['imageLeftMargin'], $attr['imageMarginUnit'] ),
		'text-align'      => $attr['align'],
		'justify-content' => $align,
		'align-self'      => $align,
	),
	' .wp-block-uagb-image__figure'                   => array(
		'align-items' => $align,
	),
	'.wp-block-uagb-image--layout-default figure img' => array_merge(
		array(
			'box-shadow' => $box_shadow_css,
		),
		$image_border_css
	),
	'.wp-block-uagb-image .wp-block-uagb-image__figure img:hover' => array(
		'border-color' => $attr['imageBorderHColor'],
	),
	'.wp-block-uagb-image .wp-block-uagb-image__figure figcaption' => array(
		'color'         => $attr['captionColor'],
		'margin-top'    => UAGB_Helper::get_css_value( $attr['captionTopMargin'], $attr['captionMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['captionRightMargin'], $attr['captionMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['captionBottomMargin'], $attr['captionMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['captionLeftMargin'], $attr['captionMarginUnit'] ),
		'align-self'    => ( 'overlay' !== $attr['layout'] ? $attr['captionAlign'] : '' ),
	),
	'.wp-block-uagb-image .wp-block-uagb-image__figure figcaption a' => array(
		'color' => $attr['captionColor'],
	),
	// overlay.
	'.wp-block-uagb-image--layout-overlay figure img' => array_merge(
		array(
			'box-shadow' => $box_shadow_css,
		),
		$image_border_css
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper' => array_merge(
		array(
			'background' => $attr['overlayBackground'],
			'opacity'    => $attr['overlayOpacity'],
		),
		$image_border_css
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__color-wrapper:hover' => array(
		'border-color' => $attr['imageBorderHColor'],
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner' => array_merge(
		$overlay_border_css,
		array(
			'left'   => UAGB_Helper::get_css_value( $attr['overlayPositionFromEdge'], $attr['overlayPositionFromEdgeUnit'] ),
			'right'  => UAGB_Helper::get_css_value( $attr['overlayPositionFromEdge'], $attr['overlayPositionFromEdgeUnit'] ),
			'top'    => UAGB_Helper::get_css_value( $attr['overlayPositionFromEdge'], $attr['overlayPositionFromEdgeUnit'] ),
			'bottom' => UAGB_Helper::get_css_value( $attr['overlayPositionFromEdge'], $attr['overlayPositionFromEdgeUnit'] ),
		)
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading' => array(
		'color'         => $attr['headingColor'],
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headingTopMargin'], $attr['headingMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['headingRightMargin'], $attr['headingMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottomMargin'], $attr['headingMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['headingLeftMargin'], $attr['headingMarginUnit'] ),
		'opacity'       => 'always' === $attr['headingShowOn'] ? 1 : 0,
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading a' => array(
		'color' => $attr['headingColor'],
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption' => array(
		'opacity' => 'always' === $attr['captionShowOn'] ? 1 : 0,
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner' => array(
		'border-color' => $attr['overlayBorderHColor'],
	),
	'.wp-block-uagb-image--layout-overlay .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__color-wrapper' => array(
		'opacity' => $attr['overlayHoverOpacity'],
	),
	// Seperator.
	'.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator' => array(
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], $attr['separatorWidthType'] ),
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], $attr['seperatorThicknessUnit'] ),
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
		'margin-bottom'    => UAGB_Helper::get_css_value( $attr['seperatorBottomMargin'], $attr['seperatorMarginUnit'] ),
		'margin-top'       => UAGB_Helper::get_css_value( $attr['seperatorTopMargin'], $attr['seperatorMarginUnit'] ),
		'margin-left'      => UAGB_Helper::get_css_value( $attr['seperatorLeftMargin'], $attr['seperatorMarginUnit'] ),
		'margin-right'     => UAGB_Helper::get_css_value( $attr['seperatorRightMargin'], $attr['seperatorMarginUnit'] ),
		'opacity'          => 'always' === $attr['seperatorShowOn'] ? 1 : 0,
	),
);

$selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img'] = array(
	'object-fit' => $attr['objectFit'],
	'width'      => $attr['width'] . 'px',
	'height'     => 'auto',
);
if ( $attr['customHeightSetDesktop'] ) {
	$selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img']['height'] = $attr['height'] . 'px';
}

if ( 'hover' === $attr['headingShowOn'] ) {
	$selectors['.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading'] = array(
		'opacity' => 1,
	);
}
if ( 'hover' === $attr['captionShowOn'] ) {
	$selectors['.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-caption'] = array(
		'opacity' => 1,
	);
}
if ( 'hover' === $attr['seperatorShowOn'] ) {
	$selectors['.wp-block-uagb-image .wp-block-uagb-image__figure:hover .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator'] = array(
		'opacity' => 1,
	);
}

// If using separate box shadow hover settings, then generate CSS for it.
if ( $attr['useSeparateBoxShadows'] ) {
	$selectors['.wp-block-uagb-image--layout-default figure:hover img'] = array(
		'box-shadow' => $box_shadow_hover_css,
	);

	$selectors['.wp-block-uagb-image--layout-overlay figure:hover img'] = array(
		'box-shadow' => $box_shadow_hover_css,
	);

};

if ( 'none' !== $attr['maskShape'] ) {
	$imagePath = UAGB_URL . 'assets/images/masks/' . $attr['maskShape'] . '.svg';
	if ( 'custom' === $attr['maskShape'] ) {
		$imagePath = $attr['maskCustomShape']['url'];
	}
	if ( ! empty( $imagePath ) ) {
		$selectors[ '.wp-block-uagb-image .wp-block-uagb-image__figure img, .uagb-block-' . $id . ' .wp-block-uagb-image--layout-overlay__color-wrapper' ] = array(
			'mask-image'            => 'url(' . $imagePath . ')',
			'-webkit-mask-image'    => 'url(' . $imagePath . ')',
			'mask-size'             => $attr['maskSize'],
			'-webkit-mask-size'     => $attr['maskSize'],
			'mask-repeat'           => $attr['maskRepeat'],
			'-webkit-mask-repeat'   => $attr['maskRepeat'],
			'mask-position'         => $attr['maskPosition'],
			'-webkit-mask-position' => $attr['maskPosition'],
		);
	}
}

// tablet.
$t_selectors['.wp-block-uagb-image--layout-default figure img']       = $image_border_css_tablet;
$t_selectors['.wp-block-uagb-image--layout-overlay figure img']       = $image_border_css_tablet;
$t_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img'] = array(
	'width' => UAGB_Helper::get_css_value( $attr['widthTablet'], 'px' ),
);
$t_selectors['.wp-block-uagb-image']                                  = array(
	'margin-top'      => UAGB_Helper::get_css_value( $attr['imageTopMarginTablet'], $attr['imageMarginUnitTablet'] ),
	'margin-right'    => UAGB_Helper::get_css_value( $attr['imageRightMarginTablet'], $attr['imageMarginUnitTablet'] ),
	'margin-bottom'   => UAGB_Helper::get_css_value( $attr['imageBottomMarginTablet'], $attr['imageMarginUnitTablet'] ),
	'margin-left'     => UAGB_Helper::get_css_value( $attr['imageLeftMarginTablet'], $attr['imageMarginUnitTablet'] ),
	'text-align'      => $attr['alignTablet'],
	'justify-content' => $alignTablet,
	'align-self'      => $alignTablet,
);
$t_selectors[' .wp-block-uagb-image__figure']                         = array(
	'align-items' => $alignTablet,
);
$t_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure figcaption']                           = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['captionTopMarginTablet'], $attr['captionMarginUnitTablet'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['captionRightMarginTablet'], $attr['captionMarginUnitTablet'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['captionBottomMarginTablet'], $attr['captionMarginUnitTablet'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['captionLeftMarginTablet'], $attr['captionMarginUnitTablet'] ),
);
$t_selectors['.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner']       = $overlay_border_css_tablet;
$t_selectors['.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading']   = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['headingTopMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['headingRightMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottomMarginTablet'], $attr['headingMarginUnitTablet'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['headingLeftMarginTablet'], $attr['headingMarginUnitTablet'] ),
);
$t_selectors['.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator'] = array(
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['seperatorBottomMarginTablet'], $attr['seperatorMarginUnitTablet'] ),
	'margin-top'    => UAGB_Helper::get_css_value( $attr['seperatorTopMarginTablet'], $attr['seperatorMarginUnitTablet'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['seperatorLeftMarginTablet'], $attr['seperatorMarginUnitTablet'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['seperatorRightMarginTablet'], $attr['seperatorMarginUnitTablet'] ),
);

$t_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img'] = array(
	'object-fit' => $attr['objectFitTablet'],
	'width'      => $width_tablet,
	'height'     => 'auto',
);

if ( $attr['customHeightSetTablet'] ) {
	$t_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img']['height'] = $height_tablet;
}

// mobile.
$m_selectors['.wp-block-uagb-image--layout-default figure img']       = $image_border_css_mobile;
$m_selectors['.wp-block-uagb-image--layout-overlay figure img']       = $image_border_css_mobile;
$m_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img'] = array(
	'width' => UAGB_Helper::get_css_value( $attr['widthMobile'], 'px' ),
);
$m_selectors['.wp-block-uagb-image']                                  = array(
	'margin-top'      => UAGB_Helper::get_css_value( $attr['imageTopMarginMobile'], $attr['imageMarginUnitMobile'] ),
	'margin-right'    => UAGB_Helper::get_css_value( $attr['imageRightMarginMobile'], $attr['imageMarginUnitMobile'] ),
	'margin-bottom'   => UAGB_Helper::get_css_value( $attr['imageBottomMarginMobile'], $attr['imageMarginUnitMobile'] ),
	'margin-left'     => UAGB_Helper::get_css_value( $attr['imageLeftMarginMobile'], $attr['imageMarginUnitMobile'] ),
	'text-align'      => $attr['alignMobile'],
	'justify-content' => $alignMobile,
	'align-self'      => $alignMobile,
);
$m_selectors[' .wp-block-uagb-image__figure']                         = array(
	'align-items' => $alignMobile,
);
$m_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure figcaption'] = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['captionTopMarginMobile'], $attr['captionMarginUnitMobile'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['captionRightMarginMobile'], $attr['captionMarginUnitMobile'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['captionBottomMarginMobile'], $attr['captionMarginUnitMobile'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['captionLeftMarginMobile'], $attr['captionMarginUnitMobile'] ),
);

$m_selectors['.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading']   = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['headingTopMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['headingRightMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottomMarginMobile'], $attr['headingMarginUnitMobile'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['headingLeftMarginMobile'], $attr['headingMarginUnitMobile'] ),
);
$m_selectors['.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner']       = $overlay_border_css_mobile;
$m_selectors['.wp-block-uagb-image .wp-block-uagb-image--layout-overlay__inner .uagb-image-separator'] = array(
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['seperatorBottomMarginMobile'], $attr['seperatorMarginUnitMobile'] ),
	'margin-top'    => UAGB_Helper::get_css_value( $attr['seperatorTopMarginMobile'], $attr['seperatorMarginUnitMobile'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['seperatorLeftMarginMobile'], $attr['seperatorMarginUnitMobile'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['seperatorRightMarginMobile'], $attr['seperatorMarginUnitMobile'] ),
);

$m_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img'] = array(
	'object-fit' => $attr['objectFitMobile'],
	'width'      => $width_mobile,
	'height'     => 'auto',
);

if ( $attr['customHeightSetMobile'] ) {
	$m_selectors['.wp-block-uagb-image .wp-block-uagb-image__figure img']['height'] = $height_mobile;
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = '.uagb-block-';

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'heading', '.wp-block-uagb-image--layout-overlay .wp-block-uagb-image--layout-overlay__inner .uagb-image-heading', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'caption', '.wp-block-uagb-image .wp-block-uagb-image__figure figcaption', $combined_selectors );

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	$base_selector . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][�hhEultimate-addons-for-gutenberg/includes/blocks/post-carousel/error_lognu�[���[28-Oct-2025 02:40:03 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-carousel/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-carousel/attributes.php on line 10
[28-Oct-2025 07:56:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-carousel/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-carousel/block.php on line 16
PK�][��S��"�"Jultimate-addons-for-gutenberg/includes/blocks/post-carousel/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$btn_border_attribute     = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$overall_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'overall' );
$inherit_from_theme       = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

return array_merge(
	array(
		'blockName'                     => 'post-carousel',
		'postsToShow'                   => 6,
		'postsOffset'                   => 0,
		'post_type'                     => 'carousel',
		'align'                         => 'left',
		'rowGap'                        => 20,
		'rowGapTablet'                  => '',
		'rowGapMobile'                  => '',
		'columnGap'                     => 20,
		'columnGapTablet'               => '',
		'columnGapMobile'               => '',
		'bgType'                        => 'color',
		'bgColor'                       => '#f6f6f6',
		'displayPostTaxonomyAboveTitle' => 'withMeta',
		'titleColor'                    => '',
		'titleTag'                      => 'h3',
		'titleFontSize'                 => '',
		'titleFontSizeType'             => 'px',
		'titleFontSizeMobile'           => '',
		'titleFontSizeTablet'           => '',
		'titleFontFamily'               => '',
		'titleFontWeight'               => '',
		'titleFontStyle'                => '',
		'titleLineHeightType'           => 'em',
		'titleLineHeight'               => '',
		'titleLineHeightTablet'         => '',
		'titleLineHeightMobile'         => '',
		'titleLoadGoogleFonts'          => false,
		'metaFontSize'                  => '',
		'metaFontSizeType'              => 'px',
		'metaFontSizeMobile'            => '',
		'metaFontSizeTablet'            => '',
		'metaFontFamily'                => '',
		'metaFontWeight'                => '',
		'metaFontStyle'                 => '',
		'metaLineHeightType'            => 'em',
		'metaLineHeight'                => '',
		'metaLineHeightTablet'          => '',
		'metaLineHeightMobile'          => '',
		'metaLoadGoogleFonts'           => false,
		'excerptFontSize'               => '',
		'excerptFontSizeType'           => 'px',
		'excerptFontSizeMobile'         => '',
		'excerptFontSizeTablet'         => '',
		'excerptFontFamily'             => '',
		'excerptFontWeight'             => '',
		'excerptFontStyle'              => '',
		'excerptLineHeightType'         => 'em',
		'excerptLineHeight'             => '',
		'excerptLineHeightTablet'       => '',
		'excerptLineHeightMobile'       => '',
		'excerptLoadGoogleFonts'        => false,
		'ctaFontSize'                   => '',
		'ctaFontSizeType'               => 'px',
		'ctaFontSizeTablet'             => '',
		'ctaFontSizeMobile'             => '',
		'ctaFontFamily'                 => '',
		'ctaFontWeight'                 => '',
		'ctaFontStyle'                  => '',
		'ctaLineHeightType'             => 'em',
		'ctaLineHeight'                 => '',
		'ctaLineHeightTablet'           => '',
		'ctaLineHeightMobile'           => '',
		'ctaLoadGoogleFonts'            => false,
		'metaColor'                     => '',
		'highlightedTextColor'          => '#fff',
		'highlightedTextBgColor'        => '#3182ce',
		'excerptColor'                  => '',
		'ctaColor'                      => '',
		'ctaBgType'                     => 'color',
		'ctaBgHType'                    => 'color',
		'ctaBgColor'                    => '',
		'ctaHColor'                     => '',
		'ctaBgHColor'                   => '',
		'contentPadding'                => '20',
		'contentPaddingMobile'          => '',
		'btnVPadding'                   => '',
		'btnHPadding'                   => '',
		'ctaBottomSpace'                => '0',
		'ctaBottomSpaceTablet'          => '',
		'ctaBottomSpaceMobile'          => '',
		'imageBottomSpace'              => '15',
		'imageBottomSpaceTablet'        => '',
		'imageBottomSpaceMobile'        => '',
		'taxonomyBottomSpace'           => '',
		'taxonomyBottomSpaceTablet'     => '',
		'taxonomyBottomSpaceMobile'     => '',
		'titleBottomSpace'              => '15',
		'titleBottomSpaceTablet'        => '',
		'titleBottomSpaceMobile'        => '',
		'metaBottomSpace'               => '15',
		'metaBottomSpaceTablet'         => '',
		'metaBottomSpaceMobile'         => '',
		'excerptBottomSpace'            => '25',
		'excerptBottomSpaceTablet'      => '',
		'excerptBottomSpaceMobile'      => '',
		'arrowSize'                     => '24',
		'arrowColor'                    => '#000',
		'arrowDots'                     => '',
		'arrowBorderSize'               => '0',
		'arrowBorderRadius'             => '0',
		'arrowDistance'                 => '',
		'arrowDistanceTablet'           => '',
		'arrowDistanceMobile'           => '',
		'overlayOpacity'                => '50',
		'bgOverlayColor'                => '#000000',
		'ctaText'                       => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
		'btnBorderHColor'               => '',
		'imgPosition'                   => 'top',

		'displayPostContentRadio'       => 'excerpt',
		'excludeCurrentPost'            => '',
		'rowGapUnit'                    => 'px',
		'columnGapUnit'                 => 'px',
		'contentPaddingUnit'            => 'px',
		'excerptBottomSpaceUnit'        => 'px',
		'paginationSpacingUnit'         => 'px',
		'imageBottomSpaceUnit'          => 'px',
		'taxonomyBottomSpaceUnit'       => 'px',
		'titleBottomSpaceUnit'          => 'px',
		'metaBottomSpaceUnit'           => 'px',
		'ctaBottomSpaceUnit'            => 'px',
		'titleTransform'                => '',
		'metaTransform'                 => '',
		'excerptTransform'              => '',
		'ctaTransform'                  => '',
		'titleDecoration'               => '',
		'metaDecoration'                => '',
		'excerptDecoration'             => '',
		'ctaDecoration'                 => '',
		'paddingBtnTopTablet'           => '',
		'paddingBtnRightTablet'         => '',
		'paddingBtnBottomTablet'        => '',
		'paddingBtnLeftTablet'          => '',
		'paddingBtnTopMobile'           => '',
		'paddingBtnRightMobile'         => '',
		'paddingBtnBottomMobile'        => '',
		'paddingBtnLeftMobile'          => '',
		'paddingBtnUnit'                => 'px',
		'mobilePaddingBtnUnit'          => 'px',
		'tabletPaddingBtnUnit'          => 'px',
		'spacingLink'                   => '',
		'spacingLinkPadding'            => '',
		'paddingTopTablet'              => '',
		'paddingRightTablet'            => '',
		'paddingBottomTablet'           => '',
		'paddingLeftTablet'             => '',
		'paddingTopMobile'              => '',
		'paddingRightMobile'            => '',
		'paddingBottomMobile'           => '',
		'paddingLeftMobile'             => '',
		'paddingUnit'                   => 'px',
		'mobilePaddingUnit'             => 'px',
		'tabletPaddingUnit'             => 'px',
		'layoutConfig'                  => array(
			array( 'uagb/post-image' ),
			array( 'uagb/post-title' ),
			array( 'uagb/post-taxonomy' ),
			array( 'uagb/post-meta' ),
			array( 'uagb/post-excerpt' ),
			array( 'uagb/post-button' ),
		),
		'titleLetterSpacing'            => '',
		'titleLetterSpacingTablet'      => '',
		'titleLetterSpacingMobile'      => '',
		'titleLetterSpacingType'        => 'px',
		'metaLetterSpacing'             => '',
		'metaLetterSpacingTablet'       => '',
		'metaLetterSpacingMobile'       => '',
		'metaLetterSpacingType'         => 'px',
		'excerptLetterSpacing'          => '',
		'excerptLetterSpacingTablet'    => '',
		'excerptLetterSpacingMobile'    => '',
		'excerptLetterSpacingType'      => 'px',
		'ctaLetterSpacing'              => '',
		'ctaLetterSpacingTablet'        => '',
		'ctaLetterSpacingMobile'        => '',
		'ctaLetterSpacingType'          => 'px',
		'boxShadowColor'                => '#00000070',
		'boxShadowHOffset'              => 0,
		'boxShadowVOffset'              => 0,
		'boxShadowBlur'                 => '',
		'boxShadowSpread'               => '',
		'boxShadowPosition'             => 'outset',
		'boxShadowColorHover'           => '',
		'boxShadowHOffsetHover'         => 0,
		'boxShadowVOffsetHover'         => 0,
		'boxShadowBlurHover'            => '',
		'boxShadowSpreadHover'          => '',
		'boxShadowPositionHover'        => 'outset',
		'columns'                       => 3,
		'tcolumns'                      => 2,
		'mcolumns'                      => 1,
		'dotsMarginTop'                 => 20,
		'dotsMarginTopTablet'           => '',
		'dotsMarginTopMobile'           => '',
		'dotsMarginTopUnit'             => 'px',
		'useSeparateBoxShadows'         => true,
		'inheritFromThemeBtn'           => $inherit_from_theme,
	),
	$btn_border_attribute,
	$overall_border_attribute
);
PK�][��:D��Eultimate-addons-for-gutenberg/includes/blocks/post-carousel/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-carousel';
$block_data = array(
	'doc'                 => 'post-carousel',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'post' ),
	'link'                => 'post-carousel',
	'title'               => __( 'Post Carousel', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Display your posts in a sliding carousel layout.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'post-carousel' ),
	'deprecated'          => false,
	'dynamic_assets'      => array(
		'dir' => 'post-carousel',
	),
	'static_dependencies' => array(
		'uagb-post-js'      => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'post' ),
			'dep'  => array( 'jquery', 'uagb-slick-js' ),
			'type' => 'js',
		),
		'uagb-imagesloaded' => array(
			'type' => 'js',
		),
		'uagb-slick-js'     => array(
			'type' => 'js',
		),
		'uagb-slick-css'    => array(
			'type' => 'css',
		),
	),
	'static_css'          => 'post',
);
PK�][\����Lultimate-addons-for-gutenberg/includes/blocks/post-carousel/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_post_gfont( $attr );

$selectors = UAGB_Block_Helper::get_post_selectors( $attr );

$m_selectors = UAGB_Block_Helper::get_post_mobile_selectors( $attr );

$t_selectors = UAGB_Block_Helper::get_post_tablet_selectors( $attr );

if ( 'background' === $attr['imgPosition'] && $attr['columns'] === $attr['postsToShow'] ) {
	$selectors['.uagb-post__image-position-background'] = array(
		'flex-wrap' => 'nowrap !important',
		'gap'       => $attr['rowGap'] . 'px !important',
	);
	$selectors[' .uagb-post__inner-wrap']               = array(
		'padding-left'  => '0px !important',
		'padding-right' => '0px !important',
	);
	$selectors[' .uagb-post__image']                    = array(
		'width'       => '100% !important',
		'margin-left' => 'unset !important',
	);
}

$arrow_size = UAGB_Helper::get_css_value( $attr['arrowSize'], 'px' );

$selectors['.is_carousel .uagb-post__inner-wrap'] = array(
	'background-color' => $attr['bgType'] ? $attr['bgColor'] : 'transparent',
);

$selectors[' .slick-arrow'] = array(
	'border-color' => $attr['arrowColor'],
);

$selectors[' .slick-arrow span'] = array(
	'color'     => $attr['arrowColor'],
	'font-size' => $arrow_size,
	'width'     => $arrow_size,
	'height'    => $arrow_size,
);

$selectors[' .slick-arrow svg'] = array(
	'fill'   => $attr['arrowColor'],
	'width'  => $arrow_size,
	'height' => $arrow_size,
);

$selectors[' .slick-arrow'] = array(
	'border-color'  => $attr['arrowColor'],
	'border-width'  => UAGB_Helper::get_css_value( $attr['arrowBorderSize'], 'px' ),
	'border-radius' => UAGB_Helper::get_css_value( $attr['arrowBorderRadius'], 'px' ),
);

$selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-prev'] = array(
	'left' => UAGB_Helper::get_css_value( $attr['arrowDistance'], 'px' ),
);

$selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-next'] = array(
	'right' => UAGB_Helper::get_css_value( $attr['arrowDistance'], 'px' ),
);

$t_selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-prev'] = array(
	'left' => UAGB_Helper::get_css_value( $attr['arrowDistanceTablet'], 'px' ),
);

$t_selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-next'] = array(
	'right' => UAGB_Helper::get_css_value( $attr['arrowDistanceTablet'], 'px' ),
);

$m_selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-prev'] = array(
	'left' => UAGB_Helper::get_css_value( $attr['arrowDistanceMobile'], 'px' ),
);

$m_selectors['.uagb-post__arrow-outside.uagb-post-grid .slick-next'] = array(
	'right' => UAGB_Helper::get_css_value( $attr['arrowDistanceMobile'], 'px' ),
);

$selectors['.uagb-post-grid ul.slick-dots li.slick-active button:before'] = array(
	'color' => $attr['arrowColor'],
);

$selectors['.uagb-slick-carousel ul.slick-dots li button:before'] = array(
	'color' => $attr['arrowColor'],
);

if ( isset( $attr['arrowDots'] ) && 'dots' === $attr['arrowDots'] ) {

	$selectors['.uagb-slick-carousel'] = array(
		'padding' => '0 0 35px 0',
	);
}

// post carousal margin top for dots.
$selectors[' .slick-dots']   = array(
	'margin-top' => UAGB_Helper::get_css_value( $attr['dotsMarginTop'], $attr['dotsMarginTopUnit'] ) . ' !important',
);
$t_selectors[' .slick-dots'] = array(
	'margin-top' => UAGB_Helper::get_css_value( $attr['dotsMarginTopTablet'], $attr['dotsMarginTopUnit'] ) . ' !important',
);
$m_selectors[' .slick-dots'] = array(
	'margin-top' => UAGB_Helper::get_css_value( $attr['dotsMarginTopMobile'], $attr['dotsMarginTopUnit'] ) . ' !important',
);

if ( 'aboveTitle' === $attr['displayPostTaxonomyAboveTitle'] ) {

	$selectors   = array_merge(
		$selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
	$m_selectors = array_merge(
		$m_selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
	$t_selectors = array_merge(
		$t_selectors,
		array(
			' span.uagb-post__taxonomy' => array(
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
			),
			' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
				'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
			),
		)
	);
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title a', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline > span', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline time', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author', $combined_selectors );

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author a', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' span.uagb-post__taxonomy', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__taxonomy', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'excerpt', ' .uagb-post__text.uagb-post__excerpt', $combined_selectors );

if ( ! $attr['inheritFromThemeBtn'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta a', $combined_selectors );
}

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][}Ɇ��Eultimate-addons-for-gutenberg/includes/blocks/post-timeline/error_lognu�[���[27-Oct-2025 22:42:00 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Admin_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/attributes.php on line 10
[28-Oct-2025 07:56:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/block.php on line 16
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 11
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 12
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 12
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 13
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 13
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 17
[28-Oct-2025 08:16:38 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 17
[28-Oct-2025 08:16:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php:25
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.php on line 25
PK�][�/d���Jultimate-addons-for-gutenberg/includes/blocks/post-timeline/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$inherit_from_theme = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

return array(
	'block_id'                   => '',
	'blockName'                  => 'post-timeline',
	'inheritFromTheme'           => $inherit_from_theme,
	'postsToShow'                => 6,
	'postsOffset'                => 0,
	'exerptLength'               => 15,
	'align'                      => '',
	'alignTablet'                => '',
	'alignMobile'                => '',
	'headingColor'               => '',
	'subHeadingColor'            => '',
	'separatorBg'                => '#eee',
	'backgroundColor'            => '#eee',
	'separatorColor'             => '#eee',
	'separatorFillColor'         => '#0693e3',
	'separatorBorder'            => '#eee',
	'borderFocus'                => '#5cb85c',
	'horizontalSpace'            => 10,
	'horizontalSpaceTablet'      => '',
	'horizontalSpaceMobile'      => '',
	'horizontalSpaceUnit'        => 'px',
	'horizontalSpaceUnitTablet'  => 'px',
	'horizontalSpaceUnitMobile'  => 'px',
	'verticalSpace'              => 15,
	'verticalSpaceTablet'        => '',
	'verticalSpaceMobile'        => '',
	'verticalSpaceUnit'          => 'px',
	'verticalSpaceUnitTablet'    => 'px',
	'verticalSpaceUnitMobile'    => 'px',
	'headFontSizeType'           => 'px',
	'headFontSize'               => '',
	'headFontSizeTablet'         => '',
	'headFontSizeMobile'         => '',
	'headFontFamily'             => '',
	'headFontWeight'             => '',
	'headFontStyle'              => '',
	'headLineHeightType'         => 'em',
	'headLineHeight'             => '',
	'headLineHeightTablet'       => '',
	'headLineHeightMobile'       => '',
	'headLoadGoogleFonts'        => false,
	'timelinAlignment'           => 'center',
	'timelinAlignmentTablet'     => '',
	'timelinAlignmentMobile'     => '',
	'arrowlinAlignment'          => 'center',
	'subHeadFontSizeType'        => 'px',
	'subHeadFontSize'            => '',
	'subHeadFontSizeTablet'      => '',
	'subHeadFontSizeMobile'      => '',
	'subHeadFontFamily'          => '',
	'subHeadFontWeight'          => '',
	'subHeadFontStyle'           => '',
	'subHeadLineHeightType'      => 'em',
	'subHeadLineHeight'          => '',
	'subHeadLineHeightTablet'    => '',
	'subHeadLineHeightMobile'    => '',
	'subHeadLoadGoogleFonts'     => false,
	'headSpace'                  => 5,
	'headSpaceTablet'            => '',
	'headSpaceMobile'            => '',
	'contentSpace'               => 15,
	'authorSpace'                => 5,
	'authorSpaceTablet'          => '',
	'authorSpaceMobile'          => '',
	'separatorwidth'             => 3,
	'borderwidth'                => 0,
	'iconColor'                  => '#333',
	'iconFocus'                  => '#fff',
	'iconBgFocus'                => '#0693e3',
	'dateColor'                  => '#333',
	'dateFontsizeType'           => 'px',
	'dateFontsize'               => 12,
	'dateFontsizeTablet'         => '',
	'dateFontsizeMobile'         => '',
	'dateFontSizeType'           => '',
	'dateFontSize'               => '',
	'dateFontSizeTablet'         => '',
	'dateFontSizeMobile'         => '',
	'dateFontFamily'             => '',
	'dateFontWeight'             => '',
	'dateFontStyle'              => '',
	'dateLineHeightType'         => 'em',
	'dateLineHeight'             => '',
	'dateLineHeightTablet'       => '',
	'dateLineHeightMobile'       => '',
	'dateLoadGoogleFonts'        => false,
	'connectorBgsize'            => 35,
	'dateBottomspace'            => 5,
	'dateBottomspaceTablet'      => '',
	'dateBottomspaceMobile'      => '',
	'borderRadius'               => 2,
	'borderRadiusTablet'         => 0,
	'borderRadiusMobile'         => 0,
	'bgPadding'                  => 20,
	'contentPadding'             => 10,
	'ctaBottomSpacing'           => 0,
	'ctaBottomSpacingTablet'     => '',
	'ctaBottomSpacingMobile'     => '',
	'headTopSpacing'             => 0,
	'headTopSpacingTablet'       => '',
	'headTopSpacingMobile'       => '',
	'iconSize'                   => 15,
	'stack'                      => 'tablet',
	'ctaColor'                   => '',
	'authorColor'                => '#333',
	'ctaFontSizeType'            => 'px',
	'ctaFontSize'                => '',
	'ctaFontSizeTablet'          => '',
	'ctaFontSizeMobile'          => '',
	'ctaFontFamily'              => '',
	'ctaFontWeight'              => '',
	'ctaFontStyle'               => '',
	'ctaLineHeightType'          => 'em',
	'ctaLineHeight'              => '',
	'ctaLineHeightTablet'        => '',
	'ctaLineHeightMobile'        => '',
	'ctaLoadGoogleFonts'         => false,
	'authorFontSizeType'         => 'px',
	'authorFontSize'             => 11,
	'authorFontSizeTablet'       => '',
	'authorFontSizeMobile'       => '',
	'authorFontFamily'           => '',
	'authorFontWeight'           => '',
	'authorFontStyle'            => '',
	'authorLineHeightType'       => 'em',
	'authorLineHeight'           => '',
	'authorLineHeightTablet'     => '',
	'authorLineHeightMobile'     => '',
	'authorLoadGoogleFonts'      => false,
	'ctaBackground'              => '',
	'topMarginTablet'            => '',
	'rightMarginTablet'          => '',
	'bottomMarginTablet'         => '',
	'leftMarginTablet'           => '',
	'topMarginMobile'            => '',
	'rightMarginMobile'          => '',
	'bottomMarginMobile'         => '',
	'leftMarginMobile'           => '',
	'marginUnit'                 => 'px',
	'mobileMarginUnit'           => 'px',
	'tabletMarginUnit'           => 'px',
	'marginLink'                 => false,
	'topPaddingTablet'           => '',
	'rightPaddingTablet'         => '',
	'bottomPaddingTablet'        => '',
	'leftPaddingTablet'          => '',
	'topPaddingMobile'           => '',
	'rightPaddingMobile'         => '',
	'bottomPaddingMobile'        => '',
	'leftPaddingMobile'          => '',
	'paddingUnit'                => 'px',
	'mobilePaddingUnit'          => 'px',
	'tabletPaddingUnit'          => 'px',
	'paddingLink'                => false,
	'headTransform'              => '',
	'authorTransform'            => '',
	'subHeadTransform'           => '',
	'dateTransform'              => '',
	'ctaTransform'               => '',
	'headDecoration'             => '',
	'authorDecoration'           => '',
	'subHeadDecoration'          => '',
	'dateDecoration'             => '',
	'ctaDecoration'              => '',
	'headLetterSpacing'          => '',
	'headLetterSpacingTablet'    => '',
	'headLetterSpacingMobile'    => '',
	'headLetterSpacingType'      => 'px',
	'subHeadLetterSpacing'       => '',
	'subHeadLetterSpacingTablet' => '',
	'subHeadLetterSpacingMobile' => '',
	'subHeadLetterSpacingType'   => 'px',
	'dateLetterSpacing'          => '',
	'dateLetterSpacingTablet'    => '',
	'dateLetterSpacingMobile'    => '',
	'dateLetterSpacingType'      => 'px',
	'ctaLetterSpacing'           => '',
	'ctaLetterSpacingTablet'     => '',
	'ctaLetterSpacingMobile'     => '',
	'ctaLetterSpacingType'       => 'px',
	'authorLetterSpacing'        => '',
	'authorLetterSpacingTablet'  => '',
	'authorLetterSpacingMobile'  => '',
	'authorLetterSpacingType'    => 'px',
);
PK�][H�e��Eultimate-addons-for-gutenberg/includes/blocks/post-timeline/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-timeline';
$block_data = array(
	'doc'                 => 'post-timeline',
	'slug'                => '',
	'admin_categories'    => array( 'post', 'content' ),
	'link'                => 'post-timeline',
	'title'               => __( 'Post Timeline', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Create an attractive timeline to display your posts.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'post-timeline' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-timeline-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'timeline' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'static_css'          => 'timeline',
	'dynamic_assets'      => array(
		'dir' => 'post-timeline',
	),
);
PK�][~Q��(�(Lultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_post_timeline_gfont( $attr );

$horizontal_space        = $attr['horizontalSpace'];
$horizontal_space_tablet = '' !== $attr['horizontalSpaceTablet'] ? $attr['horizontalSpaceTablet'] : $horizontal_space;
$horizontal_space_mobile = '' !== $attr['horizontalSpaceMobile'] ? $attr['horizontalSpaceMobile'] : $horizontal_space_tablet;

$t_selectors = array();

$left_margin  = isset( $attr['leftMargin'] ) ? $attr['leftMargin'] : $attr['horizontalSpace'];
$right_margin = isset( $attr['rightMargin'] ) ? $attr['rightMargin'] : $attr['horizontalSpace'];

$selectors = array(
	' .uagb-timeline__heading'                            => array(
		'text-align' => $attr['align'],
	),
	' .uagb-timeline__link_parent'                        => array(
		'text-align' => $attr['align'],
	),
	' .uagb-timeline__image a'                            => array(
		'text-align' => $attr['align'],
	),
	' a.uagb-timeline__image'                             => array(
		'text-align' => $attr['align'],
	),
	' .uagb-timeline__author-link'                        => array(
		'color'      => $attr['authorColor'],
		'text-align' => $attr['align'],
	),
	' .uagb-timeline__link'                               => array(
		'text-align'    => $attr['align'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomSpacing'], 'px' ),
	),
	' .dashicons-admin-users'                             => array(
		'color'       => $attr['authorColor'],
		'font-size'   => UAGB_Helper::get_css_value( $attr['authorFontSize'], $attr['authorFontSizeType'] ),
		'font-weight' => $attr['authorFontWeight'],
		'line-height' => UAGB_Helper::get_css_value( $attr['authorLineHeight'], $attr['authorLineHeightType'] ),
	),
	' .uagb-timeline__heading a'                          => array(
		'text-align' => $attr['align'],
		'color'      => $attr['headingColor'],
	),
	' .uagb-timeline__heading-text'                       => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpace'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopSpacing'], 'px' ),
	),
	'.uagb_timeline__cta-enable .uagb-timeline-desc-content' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['contentSpace'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['authorSpace'], 'px' ),
	),
	' .uagb-timeline__author-link + .uagb-timeline__link_parent' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['authorSpace'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__marker' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $horizontal_space, $attr['horizontalSpaceUnit'] ),
		'margin-right' => UAGB_Helper::get_css_value( $horizontal_space, $attr['horizontalSpaceUnit'] ),
	),
	' .uagb-timeline__field:not(:last-child)'             => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpace'], $attr['verticalSpaceUnit'] ),
	),
);

$desktop_selectors = UAGB_Block_Helper::get_timeline_selectors( $attr );
$selectors         = array_merge( $selectors, $desktop_selectors );

$t_selectors = array(
	' .dashicons-admin-users'                              => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['authorFontSizeTablet'], $attr['authorFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['authorLineHeightTablet'], $attr['authorLineHeightType'] ),
	),
	' .uagb-timeline__link'                                => array(
		'text-align'    => $attr['alignTablet'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomSpacingTablet'], 'px' ),
	),
	' .uagb-timeline__heading-text'                        => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceTablet'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopSpacingTablet'], 'px' ),
	),
	'.uagb_timeline__cta-enable .uagb-timeline-desc-content' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['authorSpaceTablet'], 'px' ),
	),
	' .uagb-timeline__author-link + .uagb-timeline__link_parent' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['authorSpaceTablet'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__marker'  => array(
		'margin-left'  => UAGB_Helper::get_css_value( $horizontal_space_tablet, $attr['horizontalSpaceUnitTablet'] ),
		'margin-right' => UAGB_Helper::get_css_value( $horizontal_space_tablet, $attr['horizontalSpaceUnitTablet'] ),
	),
	' .uagb-timeline__day-new .uagb-timeline__inner-date-new' => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__right .uagb-timeline__day-new'       => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new.uagb-timeline__events-inner-new' => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new .uagb-timeline__link_parent' => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new .uagb-timeline__image a'     => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new a.uagb-timeline__image'      => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new .uagb-timeline__author-link' => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new .uagb-timeline__heading a'   => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__day-new .uagb-timeline__heading'     => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline-desc-content'                         => array(
		'text-align' => $attr['alignTablet'],
	),
	' .uagb-timeline__field:not(:last-child)'              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpaceTablet'], $attr['verticalSpaceUnitTablet'] ),
	),
);

$tablet_selectors = UAGB_Block_Helper::get_timeline_tablet_selectors( $attr );
$t_selectors      = array_merge( $t_selectors, $tablet_selectors );

// Mobile responsive CSS.
$m_selectors = array(
	' .dashicons-admin-users'                              => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['authorFontSizeMobile'], $attr['authorFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['authorLineHeightMobile'], $attr['authorLineHeightType'] ),
	),
	' .uagb-timeline__link'                                => array(
		'text-align'    => $attr['alignMobile'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomSpacingMobile'], 'px' ),
	),
	' .uagb-timeline__heading-text'                        => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpaceMobile'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopSpacingMobile'], 'px' ),
	),
	'.uagb_timeline__cta-enable .uagb-timeline-desc-content' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['authorSpaceMobile'], 'px' ),
	),
	' .uagb-timeline__author-link + .uagb-timeline__link_parent' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['authorSpaceMobile'], 'px' ),
	),
	'.uagb-timeline__center-block .uagb-timeline__marker'  => array(
		'margin-left'  => UAGB_Helper::get_css_value( $horizontal_space_mobile, $attr['horizontalSpaceUnitMobile'] ),
		'margin-right' => UAGB_Helper::get_css_value( $horizontal_space_mobile, $attr['horizontalSpaceUnitTablet'] ),
	),
	' .uagb-timeline__day-new .uagb-timeline__inner-date-new' => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__right .uagb-timeline__day-new'       => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new.uagb-timeline__events-inner-new' => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new .uagb-timeline__link_parent' => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new .uagb-timeline__image a'     => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new a.uagb-timeline__image'      => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new .uagb-timeline__author-link' => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new .uagb-timeline__heading a'   => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__day-new .uagb-timeline__heading'     => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline-desc-content'                         => array(
		'text-align' => $attr['alignMobile'],
	),
	' .uagb-timeline__field:not(:last-child)'              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['verticalSpaceMobile'], $attr['verticalSpaceUnitMobile'] ),
	),
);

if ( ! $attr['inheritFromTheme'] ) { 
	$selectors = array_merge(
		$selectors,
		array(
			' .uagb-timeline__link' => array(
				'color'            => $attr['ctaColor'],
				'background-color' => $attr['ctaBackground'],
				'text-align'       => $attr['align'],
				'margin-bottom'    => UAGB_Helper::get_css_value( $attr['ctaBottomSpacing'], 'px' ),
			),      
		)
	);
}

$mobile_selectors = UAGB_Block_Helper::get_timeline_mobile_selectors( $attr );
$m_selectors      = array_merge( $m_selectors, $mobile_selectors );

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);
// .uagb-timeline__date-hide.uagb-timeline__inner-date-new
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-hide.uagb-timeline__inner-date-new', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-hide.uagb-timeline__date-inner', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'date', ' .uagb-timeline__date-new', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-timeline-desc-content', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'author', ' .uagb-timeline__author-link', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-timeline__heading a', $combined_selectors );

if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-timeline__link', $combined_selectors );
}

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id . '.uagb-timeline__outer-wrap' );
PK�][����66Kultimate-addons-for-gutenberg/includes/blocks/post-timeline/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$selector                = '.uagb-block-' . $id;
$timelineAlignment       = $attr['timelinAlignment'];
$timelineAlignmentTablet = ! empty( $attr['timelinAlignmentTablet'] ) ? $attr['timelinAlignmentTablet'] : $attr['timelinAlignment'];
$timelineAlignmentMobile = ! empty( $attr['timelinAlignmentMobile'] ) ? $attr['timelinAlignmentMobile'] : $timelineAlignmentTablet;

$js_attr = array(
	'block_id'               => $attr['block_id'],
	'timelinAlignment'       => $timelineAlignment,
	'timelinAlignmentTablet' => $timelineAlignmentTablet,
	'timelinAlignmentMobile' => $timelineAlignmentMobile,
);
ob_start();
?>
window.addEventListener("DOMContentLoaded", function(){
	UAGBTimelineClasses( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
window.addEventListener("resize", function(){
	UAGBTimelineClasses( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
?>
PK�][���Jultimate-addons-for-gutenberg/includes/blocks/social-share-child/error_lognu�[���[27-Oct-2025 14:10:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share-child/block.php on line 14
PK�][�f��__Oultimate-addons-for-gutenberg/includes/blocks/social-share-child/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'type'                => 'facebook',
	'image_icon'          => 'icon',
	'icon'                => 'facebook',
	'image'               => '',
	'icon_color'          => '',
	'icon_hover_color'    => '',
	'icon_bg_color'       => '',
	'icon_bg_hover_color' => '',
);
PK�][W$�11Jultimate-addons-for-gutenberg/includes/blocks/social-share-child/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/social-share-child';
$block_data = array(
	'slug'           => '',
	'link'           => '',
	'title'          => __( 'Social Share Child', 'ultimate-addons-for-gutenberg' ),
	'description'    => __( 'Share your content on this social media platform.', 'ultimate-addons-for-gutenberg' ),
	'default'        => true,
	'is_child'       => true,
	'extension'      => false,
	'dynamic_assets' => array(
		'dir' => 'social-share-child',
	),
	'deprecated'     => false,
);
PK�][Uҳ��Qultimate-addons-for-gutenberg/includes/blocks/social-share-child/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var string $id
 * @package uagb
 */

$selectors = UAGB_Block_Helper::get_social_share_child_selectors( $attr, $id, true );

$desktop = UAGB_Helper::generate_css( $selectors, '.uagb-block-' . $id );

$generated_css = array(
	'desktop' => $desktop,
	'tablet'  => '',
	'mobile'  => '',
);

return $generated_css;
PK�][�&G��Dultimate-addons-for-gutenberg/includes/blocks/slider-child/error_lognu�[���[27-Oct-2025 04:26:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider-child/block.php on line 14
PK�][��r??Iultimate-addons-for-gutenberg/includes/blocks/slider-child/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$default_padding = 20;

return array(
	'block_id'                    => '',
	'backgroundType'              => 'none',
	'backgroundImageDesktop'      => '',
	'backgroundImageTablet'       => '',
	'backgroundImageMobile'       => '',
	'backgroundPositionDesktop'   => array(
		'x' => 0.5,
		'y' => 0.5,
	),
	'backgroundPositionTablet'    => '',
	'backgroundPositionMobile'    => '',
	'backgroundSizeDesktop'       => 'cover',
	'backgroundSizeTablet'        => '',
	'backgroundSizeMobile'        => '',
	'backgroundRepeatDesktop'     => 'no-repeat',
	'backgroundRepeatTablet'      => '',
	'backgroundRepeatMobile'      => '',
	'backgroundAttachmentDesktop' => 'scroll',
	'backgroundAttachmentTablet'  => '',
	'backgroundAttachmentMobile'  => '',
	'backgroundColor'             => '',
	'backgroundOpacity'           => '',
	'gradientValue'               => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
	'gradientColor1'              => '#06558a',
	'gradientColor2'              => '#0063A1',
	'gradientType'                => 'linear',
	'gradientLocation1'           => 0,
	'gradientLocationTablet1'     => '',
	'gradientLocationMobile1'     => '',
	'gradientLocation2'           => 100,
	'gradientLocationTablet2'     => '',
	'gradientLocationMobile2'     => '',
	'gradientAngle'               => 0,
	'gradientAngleTablet'         => '',
	'gradientAngleMobile'         => '',
	'selectGradient'              => 'basic',
	'backgroundImageColor'        => '#FFFFFF75',
	'backgroundCustomSizeDesktop' => 100,
	'backgroundCustomSizeTablet'  => '',
	'backgroundCustomSizeMobile'  => '',
	'backgroundCustomSizeType'    => '%',
	'overlayType'                 => 'none',
	'customPosition'              => 'default',
	'xPositionDesktop'            => '',
	'xPositionTablet'             => '',
	'xPositionMobile'             => '',
	'xPositionType'               => 'px',
	'xPositionTypeTablet'         => 'px',
	'xPositionTypeMobile'         => 'px',
	'yPositionDesktop'            => '',
	'yPositionTablet'             => '',
	'yPositionMobile'             => '',
	'yPositionType'               => 'px',
	'yPositionTypeTablet'         => 'px',
	'yPositionTypeMobile'         => 'px',
	'topPaddingDesktop'           => $default_padding,
	'bottomPaddingDesktop'        => $default_padding,
	'leftPaddingDesktop'          => $default_padding,
	'rightPaddingDesktop'         => $default_padding,
	'topPaddingTablet'            => $default_padding,
	'bottomPaddingTablet'         => $default_padding,
	'leftPaddingTablet'           => $default_padding,
	'rightPaddingTablet'          => $default_padding,
	'topPaddingMobile'            => $default_padding,
	'bottomPaddingMobile'         => $default_padding,
	'leftPaddingMobile'           => $default_padding,
	'rightPaddingMobile'          => $default_padding,
	'paddingType'                 => 'px',
	'paddingTypeTablet'           => 'px',
	'paddingTypeMobile'           => 'px',
	'paddingLink'                 => true,
	'topMarginDesktop'            => '',
	'bottomMarginDesktop'         => '',
	'leftMarginDesktop'           => '',
	'rightMarginDesktop'          => '',
	'topMarginTablet'             => '',
	'bottomMarginTablet'          => '',
	'leftMarginTablet'            => '',
	'rightMarginTablet'           => '',
	'topMarginMobile'             => '',
	'bottomMarginMobile'          => '',
	'leftMarginMobile'            => '',
	'rightMarginMobile'           => '',
	'marginType'                  => 'px',
	'marginTypeTablet'            => 'px',
	'marginTypeMobile'            => 'px',
);
PK�][c���Dultimate-addons-for-gutenberg/includes/blocks/slider-child/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/slider-child';
$block_data = array(
	'slug'           => '',
	'link'           => '',
	'title'          => __( 'Slider', 'ultimate-addons-for-gutenberg' ),
	'description'    => __( 'Customize this slider as per your need.', 'ultimate-addons-for-gutenberg' ),
	'default'        => true,
	'is_child'       => true,
	'extension'      => false,
	'dynamic_assets' => array(
		'dir' => 'slider-child',
	),
	'deprecated'     => false,
);
PK�][���s)s)Kultimate-addons-for-gutenberg/includes/blocks/slider-child/frontend.css.phpnu�[���<?php
/**
 * Slider child front end style
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$block_name = 'slider';

$bg_obj_desktop        = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageDesktop'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => $attr['gradientLocation1'],
	'gradientLocation2'        => $attr['gradientLocation2'],
	'gradientAngle'            => $attr['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatDesktop'],
	'backgroundPosition'       => $attr['backgroundPositionDesktop'],
	'backgroundSize'           => $attr['backgroundSizeDesktop'],
	'backgroundAttachment'     => $attr['backgroundAttachmentDesktop'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeDesktop'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionDesktop'],
	'xPositionType'            => $attr['xPositionType'],
	'yPosition'                => $attr['yPositionDesktop'],
	'yPositionType'            => $attr['yPositionType'],
);
$slider_bg_css_desktop = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_desktop );

// Tablet.
$left_padding_tablet   = '' !== $attr['leftPaddingTablet'] ? $attr['leftPaddingTablet'] : $attr['leftPaddingDesktop'];
$right_padding_tablet  = '' !== $attr['rightPaddingTablet'] ? $attr['rightPaddingTablet'] : $attr['rightPaddingDesktop'];
$top_padding_tablet    = '' !== $attr['topPaddingTablet'] ? $attr['topPaddingTablet'] : $attr['topPaddingDesktop'];
$bottom_padding_tablet = '' !== $attr['bottomPaddingTablet'] ? $attr['bottomPaddingTablet'] : $attr['bottomPaddingDesktop'];

$left_margin_tablet   = '' !== $attr['leftMarginTablet'] ? $attr['leftMarginTablet'] : $attr['leftMarginDesktop'];
$right_margin_tablet  = '' !== $attr['rightMarginTablet'] ? $attr['rightMarginTablet'] : $attr['rightMarginDesktop'];
$top_margin_tablet    = '' !== $attr['topMarginTablet'] ? $attr['topMarginTablet'] : $attr['topMarginDesktop'];
$bottom_margin_tablet = '' !== $attr['bottomMarginTablet'] ? $attr['bottomMarginTablet'] : $attr['bottomMarginDesktop'];

// Mobile.
$left_padding_mobile   = '' !== $attr['leftPaddingMobile'] ? $attr['leftPaddingMobile'] : $left_padding_tablet;
$right_padding_mobile  = '' !== $attr['rightPaddingMobile'] ? $attr['rightPaddingMobile'] : $right_padding_tablet;
$top_padding_mobile    = '' !== $attr['topPaddingMobile'] ? $attr['topPaddingMobile'] : $top_padding_tablet;
$bottom_padding_mobile = '' !== $attr['bottomPaddingMobile'] ? $attr['bottomPaddingMobile'] : $bottom_padding_tablet;

$left_margin_mobile   = '' !== $attr['leftMarginMobile'] ? $attr['leftMarginMobile'] : $left_margin_tablet;
$right_margin_mobile  = '' !== $attr['rightMarginMobile'] ? $attr['rightMarginMobile'] : $right_margin_tablet;
$top_margin_mobile    = '' !== $attr['topMarginMobile'] ? $attr['topMarginMobile'] : $top_margin_tablet;
$bottom_margin_mobile = '' !== $attr['bottomMarginMobile'] ? $attr['bottomMarginMobile'] : $bottom_margin_tablet;

$slider_css = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingDesktop'], $attr['paddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingDesktop'], $attr['paddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingDesktop'], $attr['paddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingDesktop'], $attr['paddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginDesktop'], $attr['marginType'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginDesktop'], $attr['marginType'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginDesktop'], $attr['marginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginDesktop'], $attr['marginType'] ),
	)
);
$slider_css = array_merge( $slider_css, $slider_bg_css_desktop );

$selectors = array(
	' .swiper-content' => $slider_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
);

$bg_obj_tablet        = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageTablet'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj_desktop['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj_desktop['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj_desktop['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatTablet'],
	'backgroundPosition'       => $attr['backgroundPositionTablet'],
	'backgroundSize'           => $attr['backgroundSizeTablet'],
	'backgroundAttachment'     => $attr['backgroundAttachmentTablet'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeTablet'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionTablet'],
	'xPositionType'            => $attr['xPositionTypeTablet'],
	'yPosition'                => $attr['yPositionTablet'],
	'yPositionType'            => $attr['yPositionTypeTablet'],
);
$slider_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet );
$slider_tablet_css    = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['paddingTypeTablet'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_tablet, $attr['marginTypeTablet'] ),
	)
);
$slider_tablet_css    = array_merge( $slider_tablet_css, $slider_bg_css_tablet );

$t_selectors = array(
	' .swiper-content' => $slider_tablet_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
);

$bg_obj_mobile        = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageMobile'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatMobile'],
	'backgroundPosition'       => $attr['backgroundPositionMobile'],
	'backgroundSize'           => $attr['backgroundSizeMobile'],
	'backgroundAttachment'     => $attr['backgroundAttachmentMobile'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeMobile'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionMobile'],
	'xPositionType'            => $attr['xPositionTypeMobile'],
	'yPosition'                => $attr['yPositionMobile'],
	'yPositionType'            => $attr['yPositionTypeMobile'],
);
$slider_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile );
$slider_mobile_css    = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['paddingTypeMobile'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_mobile, $attr['marginTypeMobile'] ),
	)
);
$slider_mobile_css    = array_merge( $slider_mobile_css, $slider_bg_css_mobile );
$m_selectors          = array(
	' .swiper-content' => $slider_mobile_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][��)\\Bultimate-addons-for-gutenberg/includes/blocks/cf7-styler/error_lognu�[���[27-Oct-2025 22:17:27 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/cf7-styler/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/cf7-styler/attributes.php on line 10
[27-Oct-2025 22:19:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/cf7-styler/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/cf7-styler/block.php on line 16
PK�][,�WF&F&Gultimate-addons-for-gutenberg/includes/blocks/cf7-styler/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$field_border_attribute  = UAGB_Block_Helper::uag_generate_border_attribute( 'input' );
$button_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );

return array_merge(
	array(
		'block_id'                         => '',
		'align'                            => 'left',
		'formId'                           => '0',
		'fieldStyle'                       => 'box',
		'fieldHrPadding'                   => 10,
		'fieldVrPadding'                   => 10,
		'fieldBgColor'                     => '#fafafa',
		'fieldLabelColor'                  => '#333',
		'fieldInputColor'                  => '#333',
		'buttonAlignment'                  => 'left',
		'buttonAlignmentTablet'            => '',
		'buttonAlignmentMobile'            => '',
		'buttonVrPadding'                  => 10,
		'buttonHrPadding'                  => 25,
		'buttonTextColor'                  => '#333',
		'buttonBgColor'                    => '',
		'buttonTextHoverColor'             => '',
		'buttonBgHoverColor'               => '',
		'fieldSpacing'                     => '',
		'fieldSpacingTablet'               => '',
		'fieldSpacingMobile'               => '',
		'fieldLabelSpacing'                => '',
		'fieldLabelSpacingMobile'          => '',
		'fieldLabelSpacingTablet'          => '',
		'labelFontSize'                    => '',
		'labelFontSizeType'                => 'px',
		'labelFontSizeTablet'              => '',
		'labelFontSizeMobile'              => '',
		'labelFontFamily'                  => '',
		'labelFontWeight'                  => '',
		'labelFontStyle'                   => '',
		'labelTransform'                   => '',
		'labelDecoration'                  => '',
		'labelLineHeightType'              => 'px',
		'labelLineHeight'                  => '',
		'labelLineHeightTablet'            => '',
		'labelLineHeightMobile'            => '',
		'labelLoadGoogleFonts'             => false,
		'inputFontSize'                    => '',
		'inputFontSizeType'                => 'px',
		'inputFontSizeTablet'              => '',
		'inputFontSizeMobile'              => '',
		'inputFontFamily'                  => '',
		'inputFontWeight'                  => '',
		'inputFontStyle'                   => '',
		'inputTransform'                   => '',
		'inputDecoration'                  => '',
		'inputLineHeightType'              => 'px',
		'inputLineHeight'                  => '',
		'inputLineHeightTablet'            => '',
		'inputLineHeightMobile'            => '',
		'inputLoadGoogleFonts'             => false,
		'buttonFontSize'                   => '',
		'buttonFontSizeType'               => 'px',
		'buttonFontSizeTablet'             => '',
		'buttonFontSizeMobile'             => '',
		'buttonFontFamily'                 => '',
		'buttonFontWeight'                 => '',
		'buttonFontStyle'                  => '',
		'buttonTransform'                  => '',
		'buttonDecoration'                 => '',
		'buttonLineHeightType'             => 'px',
		'buttonLineHeight'                 => '',
		'buttonLineHeightTablet'           => '',
		'buttonLineHeightMobile'           => '',
		'buttonLoadGoogleFonts'            => false,
		'enableOveride'                    => true,
		'radioCheckSize'                   => '',
		'radioCheckSizeTablet'             => '',
		'radioCheckSizeMobile'             => '',
		'radioCheckBgColor'                => '',
		'radioCheckSelectColor'            => '',
		'radioCheckLableColor'             => '',
		'radioCheckBorderColor'            => '#abb8c3',
		'radioCheckBorderWidth'            => '',
		'radioCheckBorderWidthTablet'      => '',
		'radioCheckBorderWidthMobile'      => '',
		'radioCheckBorderWidthUnit'        => 'px',
		'radioCheckBorderRadius'           => '',
		'radioCheckFontSize'               => '',
		'radioCheckFontSizeType'           => 'px',
		'radioCheckFontSizeTablet'         => '',
		'radioCheckFontSizeMobile'         => '',
		'radioCheckFontFamily'             => '',
		'radioCheckFontWeight'             => '',
		'radioCheckFontStyle'              => '',
		'radioCheckTransform'              => '',
		'radioCheckDecoration'             => '',
		'radioCheckLineHeightType'         => 'px',
		'radioCheckLineHeight'             => '',
		'radioCheckLineHeightTablet'       => '',
		'radioCheckLineHeightMobile'       => '',
		'radioCheckLoadGoogleFonts'        => false,
		'validationMsgPosition'            => 'default',
		'validationMsgColor'               => '#ff0000',
		'validationMsgBgColor'             => '',
		'enableHighlightBorder'            => false,
		'highlightBorderColor'             => '#ff0000',
		'validationMsgFontSize'            => '',
		'validationMsgFontSizeType'        => 'px',
		'validationMsgFontSizeTablet'      => '',
		'validationMsgFontSizeMobile'      => '',
		'validationMsgFontFamily'          => '',
		'validationMsgFontWeight'          => '',
		'validationMsgFontStyle'           => '',
		'validationMsgTransform'           => '',
		'validationMsgDecoration'          => '',
		'validationMsgLineHeightType'      => 'em',
		'validationMsgLineHeight'          => '',
		'validationMsgLineHeightTablet'    => '',
		'validationMsgLineHeightMobile'    => '',
		'validationMsgLoadGoogleFonts'     => false,
		'successMsgColor'                  => '',
		'successMsgBgColor'                => '',
		'successMsgBorderColor'            => '',
		'errorMsgColor'                    => '',
		'errorMsgBgColor'                  => '',
		'errorMsgBorderColor'              => '',
		'msgBorderSize'                    => '',
		'msgBorderSizeUnit'                => 'px',
		'msgBorderRadius'                  => '',
		'msgVrPadding'                     => '',
		'msgHrPadding'                     => '',
		'msgFontSize'                      => '',
		'msgFontSizeType'                  => 'px',
		'msgFontSizeTablet'                => '',
		'msgFontSizeMobile'                => '',
		'msgFontFamily'                    => '',
		'msgFontWeight'                    => '',
		'msgFontStyle'                     => '',
		'msgTransform'                     => '',
		'msgDecoration'                    => '',
		'msgLineHeightType'                => 'em',
		'msgLineHeight'                    => '',
		'msgLineHeightTablet'              => '',
		'msgLineHeightMobile'              => '',
		'msgLoadGoogleFonts'               => false,
		'radioCheckBorderRadiusType'       => 'px',
		'msgBorderRadiusType'              => 'px',
		'fieldBorderRadiusType'            => 'px',
		'buttonBorderRadiusType'           => 'px',
		'messageTopPaddingTablet'          => '',
		'messageBottomPaddingTablet'       => '',
		'messageLeftPaddingTablet'         => '',
		'messageRightPaddingTablet'        => '',
		'messageTopPaddingMobile'          => '',
		'messageBottomPaddingMobile'       => '',
		'messageLeftPaddingMobile'         => '',
		'messageRightPaddingMobile'        => '',
		'messagePaddingTypeDesktop'        => 'px',
		'messagePaddingTypeTablet'         => 'px',
		'messagePaddingTypeMobile'         => 'px',
		'messageSpacingLink'               => false,
		'buttonTopPaddingTablet'           => '',
		'buttonBottomPaddingTablet'        => '',
		'buttonLeftPaddingTablet'          => '',
		'buttonRightPaddingTablet'         => '',
		'buttonTopPaddingMobile'           => '',
		'buttonBottomPaddingMobile'        => '',
		'buttonLeftPaddingMobile'          => '',
		'buttonRightPaddingMobile'         => '',
		'buttonPaddingTypeDesktop'         => 'px',
		'buttonPaddingTypeTablet'          => 'px',
		'buttonPaddingTypeMobile'          => 'px',
		'buttonSpacingLink'                => false,
		'fieldTopPaddingTablet'            => '',
		'fieldBottomPaddingTablet'         => '',
		'fieldLeftPaddingTablet'           => '',
		'fieldRightPaddingTablet'          => '',
		'fieldTopPaddingMobile'            => '',
		'fieldBottomPaddingMobile'         => '',
		'fieldLeftPaddingMobile'           => '',
		'fieldRightPaddingMobile'          => '',
		'fieldPaddingTypeDesktop'          => 'px',
		'fieldPaddingTypeTablet'           => 'px',
		'fieldPaddingTypeMobile'           => 'px',
		'fieldSpacingLink'                 => false,
		'labelLetterSpacing'               => '',
		'labelLetterSpacingTablet'         => '',
		'labelLetterSpacingMobile'         => '',
		'labelLetterSpacingType'           => 'px',
		'inputLetterSpacing'               => '',
		'inputLetterSpacingTablet'         => '',
		'inputLetterSpacingMobile'         => '',
		'inputLetterSpacingType'           => 'px',
		'radioCheckLetterSpacing'          => '',
		'radioCheckLetterSpacingTablet'    => '',
		'radioCheckLetterSpacingMobile'    => '',
		'radioCheckLetterSpacingType'      => 'px',
		'buttonLetterSpacing'              => '',
		'buttonLetterSpacingTablet'        => '',
		'buttonLetterSpacingMobile'        => '',
		'buttonLetterSpacingType'          => 'px',
		'validationMsgLetterSpacing'       => '',
		'validationMsgLetterSpacingTablet' => '',
		'validationMsgLetterSpacingMobile' => '',
		'validationMsgLetterSpacingType'   => 'px',
		'msgLetterSpacing'                 => '',
		'msgLetterSpacingTablet'           => '',
		'msgLetterSpacingMobile'           => '',
		'msgLetterSpacingType'             => 'px',
		'fieldBorderStyle'                 => 'solid',
		'fieldBorderWidth'                 => 1,
		'fieldBorderRadius'                => 0,
		'fieldBorderColor'                 => '#eeeeee',
		'fieldBorderFocusColor'            => '',
		'buttonBorderStyle'                => 'solid',
		'buttonBorderWidth'                => 1,
		'buttonBorderRadius'               => 0,
		'buttonBorderColor'                => '#333',
		'buttonBorderHoverColor'           => '#333',
	),
	$field_border_attribute,
	$button_border_attribute
);
PK�][H6�a  Bultimate-addons-for-gutenberg/includes/blocks/cf7-styler/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/cf7-styler';
$block_data = array(
	'doc'              => 'contact-form-7-styler',
	'slug'             => '',
	'admin_categories' => array( 'form' ),
	'link'             => 'contact-form-7-styler',
	'title'            => __( 'Contact Form 7 Designer', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Highly customize and style your Contact Form 7 forms.', 'ultimate-addons-for-gutenberg' ),
	'is_active'        => class_exists( 'WPCF7_ContactForm' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'cf7-styler' ),
	'deprecated'       => true,
	'dynamic_assets'   => array(
		'dir' => 'cf7-styler',
	),
);
PK�][�I����Iultimate-addons-for-gutenberg/includes/blocks/cf7-styler/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_cf7_styler_gfont( $attr );

$message_top_padding_dekstop    = isset( $attr['messageTopPaddingDesktop'] ) ? $attr['messageTopPaddingDesktop'] : $attr['msgVrPadding'];
$message_bottom_padding_dekstop = isset( $attr['messageBottomPaddingDesktop'] ) ? $attr['messageBottomPaddingDesktop'] : $attr['msgVrPadding'];
$message_left_padding_dekstop   = isset( $attr['messageLeftPaddingDesktop'] ) ? $attr['messageLeftPaddingDesktop'] : $attr['msgHrPadding'];
$message_right_padding_dekstop  = isset( $attr['messageRightPaddingDesktop'] ) ? $attr['messageRightPaddingDesktop'] : $attr['msgHrPadding'];

$button_top_padding_dekstop    = isset( $attr['buttonTopPaddingDesktop'] ) ? $attr['buttonTopPaddingDesktop'] : $attr['buttonVrPadding'];
$button_bottom_padding_dekstop = isset( $attr['buttonBottomPaddingDesktop'] ) ? $attr['buttonBottomPaddingDesktop'] : $attr['buttonVrPadding'];
$button_left_padding_dekstop   = isset( $attr['buttonLeftPaddingDesktop'] ) ? $attr['buttonLeftPaddingDesktop'] : $attr['buttonHrPadding'];
$button_right_padding_dekstop  = isset( $attr['buttonRightPaddingDesktop'] ) ? $attr['buttonRightPaddingDesktop'] : $attr['buttonHrPadding'];

$field_top_padding_dekstop = isset( $attr['fieldTopPaddingDesktop'] ) ? UAGB_Helper::get_css_value( $attr['fieldTopPaddingDesktop'], $attr['fieldPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['fieldVrPadding'], $attr['fieldPaddingTypeDesktop'] );

$field_bottom_padding_dekstop = isset( $attr['fieldBottomPaddingDesktop'] ) ? UAGB_Helper::get_css_value( $attr['fieldBottomPaddingDesktop'], $attr['fieldPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['fieldVrPadding'], $attr['fieldPaddingTypeDesktop'] );

$field_left_padding_dekstop = isset( $attr['fieldLeftPaddingDesktop'] ) ? UAGB_Helper::get_css_value( $attr['fieldLeftPaddingDesktop'], $attr['fieldPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['fieldHrPadding'], $attr['fieldPaddingTypeDesktop'] );

$field_right_padding_dekstop = isset( $attr['fieldRightPaddingDesktop'] ) ? UAGB_Helper::get_css_value( $attr['fieldRightPaddingDesktop'], $attr['fieldPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['fieldHrPadding'], $attr['fieldPaddingTypeDesktop'] );

$field_vr_padding = isset( $attr['fieldTopPaddingDesktop'] ) ? $attr['fieldTopPaddingDesktop'] : $attr['fieldVrPadding'];

$border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input' );
$border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$border,
	( isset( $attr['fieldBorderWidth'] ) ? $attr['fieldBorderWidth'] : '' ),
	( isset( $attr['fieldBorderRadius'] ) ? $attr['fieldBorderRadius'] : '' ),
	( isset( $attr['fieldBorderColor'] ) ? $attr['fieldBorderColor'] : '' ),
	( isset( $attr['fieldBorderStyle'] ) ? $attr['fieldBorderStyle'] : '' )
);
$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input', 'mobile' );

$btn_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
$btn_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$btn_border,
	( isset( $attr['buttonBorderWidth'] ) ? $attr['buttonBorderWidth'] : '' ),
	( isset( $attr['buttonBorderRadius'] ) ? $attr['buttonBorderRadius'] : '' ),
	( isset( $attr['buttonBorderColor'] ) ? $attr['buttonBorderColor'] : '' ),
	( isset( $attr['buttonBorderStyle'] ) ? $attr['buttonBorderStyle'] : '' )
);
$btn_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
$btn_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );

$selectors = array(
	' .wpcf7 .wpcf7-form'                                 => array(
		'text-align' => $attr['align'],
	),
	' .wpcf7 form.wpcf7-form:not(input)'                  => array(
		'color' => $attr['fieldLabelColor'],
	),
	' .wpcf7 input:not([type=submit])'                    => array_merge(
		array(
			'background-color' => $attr['fieldBgColor'],
			'color'            => $attr['fieldInputColor'],
			'padding-left'     => $field_left_padding_dekstop,
			'padding-right'    => $field_right_padding_dekstop,
			'padding-top'      => $field_top_padding_dekstop,
			'padding-bottom'   => $field_bottom_padding_dekstop,
			'margin-top'       => UAGB_Helper::get_css_value( $attr['fieldLabelSpacing'], 'px' ),
			'margin-bottom'    => UAGB_Helper::get_css_value( $attr['fieldSpacing'], 'px' ),
			'text-align'       => $attr['align'],
		),
		$border
	),
	' .wpcf7 select'                                      => array_merge(
		array(
			'background-color' => $attr['fieldBgColor'],
			'color'            => $attr['fieldLabelColor'],
			'margin-top'       => UAGB_Helper::get_css_value( $attr['fieldLabelSpacing'], 'px' ),
			'margin-bottom'    => UAGB_Helper::get_css_value( $attr['fieldSpacing'], 'px' ),
			'text-align'       => $attr['align'],
		),
		$border
	),
	' .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple="multiple"])' => array(
		'padding-left'   => $field_left_padding_dekstop,
		'padding-right'  => $field_right_padding_dekstop,
		'padding-top'    => $field_top_padding_dekstop,
		'padding-bottom' => $field_bottom_padding_dekstop,
	),
	' .wpcf7 select.wpcf7-select[multiple="multiple"] option' => array(
		'padding-left'   => $field_left_padding_dekstop,
		'padding-right'  => $field_right_padding_dekstop,
		'padding-top'    => $field_top_padding_dekstop,
		'padding-bottom' => $field_bottom_padding_dekstop,
	),
	' .wpcf7 textarea'                                    => array_merge(
		array(
			'background-color' => $attr['fieldBgColor'],
			'color'            => $attr['fieldInputColor'],
			'padding-left'     => $field_left_padding_dekstop,
			'padding-right'    => $field_right_padding_dekstop,
			'padding-top'      => $field_top_padding_dekstop,
			'padding-bottom'   => $field_bottom_padding_dekstop,
			'margin-top'       => UAGB_Helper::get_css_value( $attr['fieldLabelSpacing'], 'px' ),
			'margin-bottom'    => UAGB_Helper::get_css_value( $attr['fieldSpacing'], 'px' ),
			'text-align'       => $attr['align'],
		),
		$border
	),
	' .wpcf7 textarea::placeholder'                       => array(
		'color'      => $attr['fieldInputColor'],
		'text-align' => $attr['align'],
	),
	' .wpcf7 input::placeholder'                          => array(
		'color'      => $attr['fieldInputColor'],
		'text-align' => $attr['align'],
	),

	// Focus.
	' .wpcf7 form input:not([type=submit]):focus'         => array(
		'border-color' => ! empty( $attr['inputBorderHColor'] ) ? $attr['inputBorderHColor'] : $attr['fieldBorderFocusColor'],
	),
	' .wpcf7 form select:focus'                           => array(
		'border-color' => ! empty( $attr['inputBorderHColor'] ) ? $attr['inputBorderHColor'] : $attr['fieldBorderFocusColor'],
	),
	' .wpcf7 textarea:focus'                              => array(
		'border-color' => ! empty( $attr['inputBorderHColor'] ) ? $attr['inputBorderHColor'] : $attr['fieldBorderFocusColor'],
	),

	// Submit button.
	' .wpcf7 input.wpcf7-form-control.wpcf7-submit'       => array_merge(
		array(
			'color'            => $attr['buttonTextColor'],
			'background-color' => $attr['buttonBgColor'],
			'padding-left'     => UAGB_Helper::get_css_value( $button_left_padding_dekstop, $attr['buttonPaddingTypeDesktop'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $button_right_padding_dekstop, $attr['buttonPaddingTypeDesktop'] ),
			'padding-top'      => UAGB_Helper::get_css_value( $button_top_padding_dekstop, $attr['buttonPaddingTypeDesktop'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $button_bottom_padding_dekstop, $attr['buttonPaddingTypeDesktop'] ),
		),
		$btn_border
	),
	' .wpcf7 input.wpcf7-form-control.wpcf7-submit:hover' => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['buttonBorderHoverColor'],
	),
	' .wpcf7 input.wpcf7-form-control.wpcf7-submit:focus' => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['buttonBorderHoverColor'],
	),

	// Check box Radio.
	' .wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'font-size'        => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		'border-color'     => $attr['inputBorderHColor'],
	),
	' .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array_merge(
		array(
			'background-color' => $attr['fieldBgColor'],
			'color'            => $attr['fieldInputColor'],
			'height'           => $field_top_padding_dekstop,
			'width'            => $field_top_padding_dekstop,
			'font-size'        => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		),
		$border
	),
	' .wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'font-size'        => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		'border-color'     => $attr['inputBorderHColor'],
	),
	' .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array_merge(
		array(
			'background-color' => $attr['fieldBgColor'],
			'color'            => $attr['fieldInputColor'],
			'height'           => $field_top_padding_dekstop,
			'width'            => $field_top_padding_dekstop,
			'font-size'        => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		),
		$border
	),
	' .wpcf7 .wpcf7-radio input[type="radio"] + span:before' => array(
		'background-color'    => $attr['fieldBgColor'],
		'color'               => $attr['fieldInputColor'],
		'height'              => $field_top_padding_dekstop,
		'width'               => $field_top_padding_dekstop,
		'border-style'        => $attr['inputBorderStyle'],
		'border-color'        => $attr['inputBorderColor'],
		'border-top-width'    => UAGB_Helper::get_css_value( $attr['inputBorderTopWidth'], 'px' ),
		'border-left-width'   => UAGB_Helper::get_css_value( $attr['inputBorderLeftWidth'], 'px' ),
		'border-right-width'  => UAGB_Helper::get_css_value( $attr['inputBorderRightWidth'], 'px' ),
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidth'], 'px' ),
	),
	' .wpcf7 .wpcf7-radio input[type="radio"]:checked + span:before' => array(
		'border-color' => $attr['inputBorderHColor'],
	),

	// Underline border.
	' .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])' => array(
		'border-style'               => 'none',
		'border-bottom-color'        => $attr['inputBorderColor'],
		'border-bottom-style'        => $attr['inputBorderStyle'],
		'border-bottom-width'        => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidth'], 'px' ),
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['inputBorderTopLeftRadius'], 'px' ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['inputBorderTopRightRadius'], 'px' ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['inputBorderBottomRightRadius'], 'px' ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['inputBorderBottomLeftRadius'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline textarea'   => array(
		'border-style'               => 'none',
		'border-bottom-color'        => $attr['inputBorderColor'],
		'border-bottom-style'        => $attr['inputBorderStyle'],
		'border-bottom-width'        => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidth'], 'px' ),
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['inputBorderTopLeftRadius'], 'px' ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['inputBorderTopRightRadius'], 'px' ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['inputBorderBottomRightRadius'], 'px' ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['inputBorderBottomLeftRadius'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline select'     => array(
		'border-style'               => 'none',
		'border-bottom-color'        => $attr['inputBorderColor'],
		'border-bottom-style'        => $attr['inputBorderStyle'],
		'border-bottom-width'        => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidth'], 'px' ),
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['inputBorderTopLeftRadius'], 'px' ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['inputBorderTopRightRadius'], 'px' ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['inputBorderBottomRightRadius'], 'px' ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['inputBorderBottomLeftRadius'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline .wpcf7-checkbox input[type="checkbox"] + span:before' => array(
		'border-style' => $attr['inputBorderStyle'],
	),
	' .uagb-cf7-styler__field-style-underline .wpcf7 input[type="radio"] + span:before' => array(
		'border-style' => $attr['inputBorderStyle'],
	),
	' .uagb-cf7-styler__field-style-underline .wpcf7-acceptance input[type="checkbox"] + span:before' => array(
		'border-style' => $attr['inputBorderStyle'],
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => array_merge(
		array(
			'font-size' => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		),
		$border
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => array_merge(
		array(
			'font-size' => 'calc( ' . $field_vr_padding . 'px / 1.2 )',
		),
		$border
	),
	' .wpcf7-radio input[type="radio"]:checked + span:before' => array(
		'background-color' => $attr['fieldInputColor'],
	),

	// Override check box.
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidth'], 'px' ),
		'border-radius'    => UAGB_Helper::get_css_value( $attr['radioCheckBorderRadius'], $attr['radioCheckBorderRadiusType'] ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => array(
		'border-color' => $attr['inputBorderHColor'],
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidth'], 'px' ),
		'border-radius'    => UAGB_Helper::get_css_value( $attr['radioCheckBorderRadius'], $attr['radioCheckBorderRadiusType'] ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => array(
		'border-color' => $attr['inputBorderHColor'],
	),

	' .uagb-cf7-styler__check-style-enabled .wpcf7 input[type="radio"] + span:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['radioCheckSize'], 'px' ),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidth'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7-radio input[type="radio"]:checked + span:before' => array(
		'background-color' => $attr['radioCheckSelectColor'],
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 form .wpcf7-list-item-label' => array(
		'color' => $attr['radioCheckLableColor'],
	),
	' span.wpcf7-not-valid-tip'                           => array(
		'color' => $attr['validationMsgColor'],
	),
	' .uagb-cf7-styler__highlight-border input.wpcf7-form-control.wpcf7-not-valid' => array(
		'border-color' => $attr['highlightBorderColor'],
	),
	' .uagb-cf7-styler__highlight-border .wpcf7-form-control.wpcf7-not-valid .wpcf7-list-item-label:before' => array(
		'border-color' => $attr['highlightBorderColor'] . '!important',
	),
	' .uagb-cf7-styler__highlight-style-bottom_right .wpcf7-form-control-wrap .wpcf7-not-valid-tip' => array(
		'background-color' => $attr['validationMsgBgColor'],
	),
	' .wpcf7 form .wpcf7-response-output'                 => array(
		'border-width'   => UAGB_Helper::get_css_value( $attr['msgBorderSize'], $attr['msgBorderSizeUnit'] ),
		'border-radius'  => UAGB_Helper::get_css_value( $attr['msgBorderRadius'], $attr['msgBorderRadiusType'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $message_top_padding_dekstop, $attr['messagePaddingTypeDesktop'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $message_bottom_padding_dekstop, $attr['messagePaddingTypeDesktop'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $message_left_padding_dekstop, $attr['messagePaddingTypeDesktop'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $message_right_padding_dekstop, $attr['messagePaddingTypeDesktop'] ),
	),
	' .wpcf7 form.failed .wpcf7-response-output'          => array(
		'background-color' => $attr['errorMsgBgColor'],
		'border-color'     => $attr['errorMsgBorderColor'],
		'color'            => $attr['errorMsgColor'],
	),
	' .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output' => array(
		'background-color' => $attr['errorMsgBgColor'],
		'border-color'     => $attr['errorMsgBorderColor'],
		'color'            => $attr['errorMsgColor'],
	),
	' .wpcf7 form.sent .wpcf7-response-output'            => array(
		'background-color' => $attr['successMsgBgColor'],
		'border-color'     => $attr['successMsgBorderColor'],
		'color'            => $attr['successMsgColor'],
	),

);

$field_padding_tablet = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldTopPaddingTablet'], $attr['fieldPaddingTypeTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldBottomPaddingTablet'], $attr['fieldPaddingTypeTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldLeftPaddingTablet'], $attr['fieldPaddingTypeTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldRightPaddingTablet'], $attr['fieldPaddingTypeTablet'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['fieldLabelSpacingTablet'], 'px' ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['fieldSpacingTablet'], 'px' ),
);

$t_selectors = array(
	' .wpcf7 input:not([type=submit])'                  => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .wpcf7 select'                                    => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .wpcf7 textarea'                                  => array_merge(
		$border_tablet,
		$field_padding_tablet
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthTablet'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthTablet'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 input[type="radio"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeTablet'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthTablet'], 'px' ),
	),
	' .wpcf7 form.wpcf7-form:not(input)'                => array(
		'color' => $attr['fieldLabelColor'],
	),
	' .wpcf7-response-output'                           => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['messageTopPaddingTablet'], $attr['messagePaddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['messageBottomPaddingTablet'], $attr['messagePaddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['messageLeftPaddingTablet'], $attr['messagePaddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['messageRightPaddingTablet'], $attr['messagePaddingTypeTablet'] ),
	),
	' .wpcf7 input.wpcf7-form-control.wpcf7-submit'     => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['buttonTopPaddingTablet'], $attr['buttonPaddingTypeTablet'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['buttonBottomPaddingTablet'], $attr['buttonPaddingTypeTablet'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['buttonLeftPaddingTablet'], $attr['buttonPaddingTypeTablet'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['buttonRightPaddingTablet'], $attr['buttonPaddingTypeTablet'] ),
		),
		$btn_border_tablet
	),
	// underline border.
	' .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])' => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline select'   => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7-checkbox input[type='checkbox'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7 input[type='radio'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7-acceptance input[type='checkbox'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline textarea' => array(
		'border-style'               => 'none',
		'border-bottom-color'        => $attr['inputBorderColor'],
		'border-bottom-style'        => $attr['inputBorderStyle'],
		'border-bottom-width'        => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthTablet'], 'px' ),
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['inputBorderTopLeftRadiusTablet'], 'px' ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['inputBorderTopRightRadiusTablet'], 'px' ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['inputBorderBottomRightRadiusTablet'], 'px' ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['inputBorderBottomLeftRadiusTablet'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 input:not([type=submit])' => $field_padding_tablet,
	' .uagb-cf7-styler__check-style-enabled .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple="multiple"])' => $field_padding_tablet,
	' .uagb-cf7-styler__check-style-enabled .wpcf7 select.wpcf7-select[multiple="multiple"] option' => $field_padding_tablet,
	' .uagb-cf7-styler__check-style-enabled .wpcf7 textarea' => $field_padding_tablet,


);

$field_padding_mobile = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldTopPaddingMobile'], $attr['fieldPaddingTypeMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldBottomPaddingMobile'], $attr['fieldPaddingTypeMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldLeftPaddingMobile'], $attr['fieldPaddingTypeMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldRightPaddingMobile'], $attr['fieldPaddingTypeMobile'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['fieldLabelSpacingMobile'], 'px' ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['fieldSpacingMobile'], 'px' ),
);

$m_selectors = array(
	' .wpcf7 input:not([type=submit])'                  => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .wpcf7 select'                                    => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-checkbox input[type="checkbox"]:checked + span:before' => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .uagb-cf7-styler__field-style-box .wpcf7-acceptance input[type="checkbox"]:checked + span:before' => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .wpcf7 textarea'                                  => array_merge(
		$border_mobile,
		$field_padding_mobile
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-checkbox input[type="checkbox"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthMobile'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 .wpcf7-acceptance input[type="checkbox"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthMobile'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 input[type="radio"] + span:before' => array(
		'height'       => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'width'        => UAGB_Helper::get_css_value( $attr['radioCheckSizeMobile'], 'px' ),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value( $attr['radioCheckBorderWidthMobile'], 'px' ),
	),
	' .wpcf7-response-output'                           => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['messageTopPaddingMobile'], $attr['messagePaddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['messageBottomPaddingMobile'], $attr['messagePaddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['messageLeftPaddingMobile'], $attr['messagePaddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['messageRightPaddingMobile'], $attr['messagePaddingTypeMobile'] ),
	),
	' .wpcf7 input.wpcf7-form-control.wpcf7-submit'     => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['buttonTopPaddingMobile'], $attr['buttonPaddingTypeMobile'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['buttonBottomPaddingMobile'], $attr['buttonPaddingTypeMobile'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['buttonLeftPaddingMobile'], $attr['buttonPaddingTypeMobile'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['buttonRightPaddingMobile'], $attr['buttonPaddingTypeMobile'] ),
		),
		$btn_border_mobile
	),
	' .wpcf7 form.wpcf7-form:not(input)'                => array(
		'color' => $attr['fieldLabelColor'],
	),
	// underline border.
	' .uagb-cf7-styler__field-style-underline .wpcf7 input:not([type=submit])' => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline select'   => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7-checkbox input[type='checkbox'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7 input[type='radio'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
	),
	" .uagb-cf7-styler__field-style-underline .wpcf7-acceptance input[type='checkbox'] + span:before" => array(
		'border-style'        => 'none',
		'border-bottom-style' => $attr['inputBorderStyle'],
		'border-bottom-width' => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
	),
	' .uagb-cf7-styler__field-style-underline textarea' => array(
		'border-style'               => 'none',
		'border-bottom-color'        => $attr['inputBorderColor'],
		'border-bottom-style'        => $attr['inputBorderStyle'],
		'border-bottom-width'        => UAGB_Helper::get_css_value( $attr['inputBorderBottomWidthMobile'], 'px' ),
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['inputBorderTopLeftRadiusMobile'], 'px' ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['inputBorderTopRightRadiusMobile'], 'px' ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['inputBorderBottomRightRadiusMobile'], 'px' ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['inputBorderBottomLeftRadiusMobile'], 'px' ),
	),
	' .uagb-cf7-styler__check-style-enabled .wpcf7 input:not([type=submit])' => $field_padding_mobile,
	' .wpcf7 select.wpcf7-form-control.wpcf7-select:not([multiple="multiple"])' => $field_padding_mobile,
	' .wpcf7 select.wpcf7-select[multiple="multiple"] option' => $field_padding_mobile,
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'radioCheck', ' .uagb-cf7-styler__check-style-enabled .wpcf7 form .wpcf7-list-item-label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'validationMsg', ' span.wpcf7-not-valid-tip', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'msg', ' .wpcf7-response-output', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'button', ' .wpcf7 input.wpcf7-form-control.wpcf7-submit', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' .wpcf7 form .wpcf7-list-item-label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' .wpcf7 form label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .wpcf7 select', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .wpcf7 textarea', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .wpcf7 input:not([type=submit])', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�]["�n(TT@ultimate-addons-for-gutenberg/includes/blocks/info-box/error_lognu�[���[27-Oct-2025 10:45:02 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/info-box/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/info-box/attributes.php on line 10
[27-Oct-2025 13:31:13 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/info-box/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/info-box/block.php on line 16
PK�][�5җ+�+Eultimate-addons-for-gutenberg/includes/blocks/info-box/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$cta_border_attribute     = UAGB_Block_Helper::uag_generate_border_attribute(
	'btn'
);
$inherit_from_theme       = 'enabled' === UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' );
$infobox_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'infobox' );
$image_width_default      = ( 'yes' === get_option( 'uagb-old-user-less-than-2' ) ) ? 120 : '';

return array_merge(
	array(
		'classMigrate'               => false,
		'inheritFromTheme'           => $inherit_from_theme,
		'headingAlign'               => 'center',
		'headingAlignTablet'         => '',
		'headingAlignMobile'         => '',
		'headingColor'               => '',
		'subHeadingColor'            => '',
		'prefixColor'                => '',
		'prefixFontSize'             => '',
		'prefixFontSizeType'         => 'px',
		'prefixFontSizeTypeTablet'   => 'px',
		'prefixFontSizeTypeMobile'   => 'px',
		'prefixFontSizeTablet'       => '',
		'prefixFontSizeMobile'       => '',
		'prefixFontFamily'           => '',
		'prefixFontWeight'           => '',
		'prefixFontStyle'            => '',
		'prefixLineHeightType'       => 'em',
		'prefixLineHeight'           => '',
		'prefixLineHeightTablet'     => '',
		'prefixLineHeightMobile'     => '',
		'prefixLoadGoogleFonts'      => false,
		'headFontSize'               => '',
		'headFontSizeType'           => 'px',
		'headFontSizeTypeTablet'     => 'px',
		'headFontSizeTypeMobile'     => 'px',
		'headFontSizeTablet'         => '',
		'headFontSizeMobile'         => '',
		'headFontFamily'             => '',
		'headFontWeight'             => '',
		'headFontStyle'              => '',
		'headLineHeightType'         => 'em',
		'headLineHeight'             => '',
		'headLineHeightTablet'       => '',
		'headLineHeightMobile'       => '',
		'headLoadGoogleFonts'        => false,
		'subHeadFontSize'            => '',
		'subHeadFontSizeType'        => 'px',
		'subHeadFontSizeTypeTablet'  => 'px',
		'subHeadFontSizeTypeMobile'  => 'px',
		'subHeadFontSizeTablet'      => '',
		'subHeadFontSizeMobile'      => '',
		'subHeadFontFamily'          => '',
		'subHeadFontWeight'          => '',
		'subHeadFontStyle'           => '',
		'subHeadLineHeightType'      => 'em',
		'subHeadLineHeight'          => '',
		'subHeadLineHeightTablet'    => '',
		'subHeadLineHeightMobile'    => '',
		'subHeadLoadGoogleFonts'     => false,
		'separatorWidth'             => '',
		'separatorWidthTablet'       => '',
		'separatorWidthMobile'       => '',
		'separatorHeight'            => '',
		'separatorWidthType'         => '%',
		'icon'                       => 'circle-check',
		'iconColor'                  => '#333',
		'iconSize'                   => '30',
		'iconSizeTablet'             => '',
		'iconSizeMobile'             => '',
		'iconSizeType'               => 'px',
		'iconimgPosition'            => 'above-title',
		'block_id'                   => '',
		'iconHover'                  => '',
		'iconimgBorderRadius'        => '0',
		'seperatorStyle'             => 'solid',
		'seperatorWidth'             => '30',
		'seperatorWidthMobile'       => '',
		'seperatorWidthTablet'       => '',
		'seperatorColor'             => '#333',
		'seperatorThickness'         => '2',
		'thicknessUnit'              => 'px',
		'htmlTag'                    => 'div',
		'ctaType'                    => 'none',
		'ctaBgType'                  => 'color',
		'ctaBgHoverType'             => 'color',
		'ctaLinkColor'               => '',
		'ctaFontSize'                => '',
		'ctaFontSizeType'            => 'px',
		'ctaFontSizeMobile'          => '',
		'ctaFontSizeTablet'          => '',
		'ctaFontFamily'              => '',
		'ctaFontWeight'              => '',
		'ctaFontStyle'               => '',
		'ctaLineHeightType'          => 'em',
		'ctaLineHeight'              => '',
		'ctaLineHeightTablet'        => '',
		'ctaLineHeightMobile'        => '',
		'ctaLetterSpacing'           => '',
		'ctaLetterSpacingTablet'     => '',
		'ctaLetterSpacingMobile'     => '',
		'ctaLetterSpacingType'       => 'px',

		'ctaLoadGoogleFonts'         => false,
		'ctaBtnLinkColor'            => '',
		'ctaBgColor'                 => '',
		'paddingBtnUnit'             => 'px',
		'mobilePaddingBtnUnit'       => 'px',
		'tabletPaddingBtnUnit'       => 'px',
		'paddingBtnTop'              => '',
		'paddingBtnRight'            => '',
		'paddingBtnBottom'           => '',
		'paddingBtnLeft'             => '',
		'paddingBtnTopTablet'        => '',
		'paddingBtnRightTablet'      => '',
		'paddingBtnBottomTablet'     => '',
		'paddingBtnLeftTablet'       => '',
		'paddingBtnTopMobile'        => '',
		'paddingBtnRightMobile'      => '',
		'paddingBtnBottomMobile'     => '',
		'paddingBtnLeftMobile'       => '',
		'iconLeftMargin'             => '10',
		'iconRightMargin'            => '10',
		'iconTopMargin'              => '5',
		'iconBottomMargin'           => '15',
		'iconMarginLeftTablet'       => '',
		'iconMarginRightTablet'      => '',
		'iconMarginTopTablet'        => '',
		'iconMarginBottomTablet'     => '',
		'iconMarginLeftMobile'       => '',
		'iconMarginRightMobile'      => '',
		'iconMarginTopMobile'        => '',
		'iconMarginBottomMobile'     => '',
		'iconMarginUnit'             => 'px',
		'iconTabletMarginUnit'       => 'px',
		'iconMobileMarginUnit'       => 'px',
		'imageSize'                  => 'thumbnail',
		'imageWidth'                 => $image_width_default,
		'ctaLinkHoverColor'          => '',
		'ctaBgHoverColor'            => '',
		'showCtaIcon'                => true,
		'ctaIcon'                    => 'right-long',
		'ctaIconSpace'               => '5',
		'ctaIconSpaceTablet'         => '',
		'ctaIconSpaceMobile'         => '',
		'ctaIconSpaceType'           => 'px',
		'ctaTransform'               => '',
		'ctaDecoration'              => '',
		'prefixTransform'            => '',
		'prefixDecoration'           => '',
		'headTransform'              => '',
		'headDecoration'             => '',
		'subHeadTransform'           => '',
		'subHeadDecoration'          => '',
		'imageWidthUnit'             => 'px',
		'imageWidthUnitTablet'       => 'px',
		'imageWidthUnitMobile'       => 'px',
		'iconimgBorderRadiusUnit'    => 'px',
		'imageWidthMobile'           => '',
		'imageWidthTablet'           => '',
		'ctaIconPosition'            => 'after',
		'imageWidthType'             => true,

		'headTabletSpace'            => '',
		'headMobileSpace'            => '',
		'headSpaceUnit'              => 'px',
		'headSpace'                  => '10',
		'headTopMargin'              => '',
		'headRightMargin'            => '',
		'headLeftMargin'             => '',
		'headMarginTopTablet'        => '',
		'headMarginRightTablet'      => '',
		'headMarginLeftTablet'       => '',
		'headMarginTopMobile'        => '',
		'headMarginRightMobile'      => '',
		'headMarginLeftMobile'       => '',
		'headMobileMarginUnit'       => 'px',
		'headTabletMarginUnit'       => 'px',
		'headLetterSpacing'          => '',
		'headLetterSpacingTablet'    => '',
		'headLetterSpacingMobile'    => '',
		'headLetterSpacingType'      => 'px',


		'seperatorMobileSpace'       => '',
		'seperatorTabletSpace'       => '',
		'seperatorSpaceUnit'         => 'px',
		'seperatorSpace'             => 0,
		'separatorTopMargin'         => '',
		'separatorRightMargin'       => '',
		'separatorLeftMargin'        => '',
		'separatorMarginTopTablet'   => '',
		'separatorMarginRightTablet' => '',
		'separatorMarginLeftTablet'  => '',
		'separatorMarginTopMobile'   => '',
		'separatorMarginRightMobile' => '',
		'separatorMarginLeftMobile'  => '',
		'separatorMobileMarginUnit'  => 'px',
		'separatorTabletMarginUnit'  => 'px',
		'stack'                      => 'tablet',
		
		'subHeadTabletSpace'         => '',
		'subHeadMobileSpace'         => '',
		'subHeadSpaceUnit'           => 'px',
		'subHeadSpace'               => '20',
		'subHeadTopMargin'           => '',
		'subHeadRightMargin'         => '',
		'subHeadLeftMargin'          => '',
		'subHeadMarginTopTablet'     => '',
		'subHeadMarginRightTablet'   => '',
		'subHeadMarginLeftTablet'    => '',
		'subHeadMarginTopMobile'     => '',
		'subHeadMarginRightMobile'   => '',
		'subHeadMarginLeftMobile'    => '',
		'subHeadMobileMarginUnit'    => 'px',
		'subHeadTabletMarginUnit'    => 'px',
		'subHeadLetterSpacing'       => '',
		'subHeadLetterSpacingTablet' => '',
		'subHeadLetterSpacingMobile' => '',
		'subHeadLetterSpacingType'   => 'px',

		'prefixTabletSpace'          => '',
		'prefixMobileSpace'          => '',
		'prefixSpaceUnit'            => 'px',
		'prefixSpace'                => '10',
		'prefixTopMargin'            => '5',
		'prefixRightMargin'          => '',
		'prefixLeftMargin'           => '',
		'prefixMarginTopTablet'      => '',
		'prefixMarginRightTablet'    => '',
		'prefixMarginLeftTablet'     => '',
		'prefixMarginTopMobile'      => '',
		'prefixMarginRightMobile'    => '',
		'prefixMarginLeftMobile'     => '',
		'prefixMobileMarginUnit'     => 'px',
		'prefixTabletMarginUnit'     => 'px',
		'prefixLetterSpacing'        => '',
		'prefixLetterSpacingTablet'  => '',
		'prefixLetterSpacingMobile'  => '',
		'prefixLetterSpacingType'    => 'px',
		// icon image.
		'iconView'                   => 'none',
		'iconShape'                  => 'Circle',
		'iconBackgroundColor'        => '#6EC1E3',
		'iconBackgroundHoverColor'   => '',
		'iconBorderWidth'            => 3,
		// Padding.
		'blockTopPadding'            => '',
		'blockRightPadding'          => '',
		'blockLeftPadding'           => '',
		'blockBottomPadding'         => '',
		'blockTopPaddingTablet'      => '',
		'blockRightPaddingTablet'    => '',
		'blockLeftPaddingTablet'     => '',
		'blockBottomPaddingTablet'   => '',
		'blockTopPaddingMobile'      => '',
		'blockRightPaddingMobile'    => '',
		'blockLeftPaddingMobile'     => '',
		'blockBottomPaddingMobile'   => '',
		'blockPaddingUnit'           => 'px',
		'blockPaddingUnitTablet'     => 'px',
		'blockPaddingUnitMobile'     => 'px',
		'blockPaddingLink'           => '',
		// margin.
		'blockTopMargin'             => '',
		'blockRightMargin'           => '',
		'blockLeftMargin'            => '',
		'blockBottomMargin'          => '',
		'blockTopMarginTablet'       => '',
		'blockRightMarginTablet'     => '',
		'blockLeftMarginTablet'      => '',
		'blockBottomMarginTablet'    => '',
		'blockTopMarginMobile'       => '',
		'blockRightMarginMobile'     => '',
		'blockLeftMarginMobile'      => '',
		'blockBottomMarginMobile'    => '',
		'blockMarginUnit'            => 'px',
		'blockMarginUnitTablet'      => 'px',
		'blockMarginUnitMobile'      => 'px',
		'blockMarginLink'            => true,
		'ctaBorderStyle'             => 'solid',
		'ctaBorderColor'             => '',
		'ctaBorderWidth'             => 1,
		'ctaBorderRadius'            => 0,
		'ctaBorderhoverColor'        => '',

		// For Global Block Styles.
		'globalBlockStyleName'       => '',
		'globalBlockStyleId'         => '',
		'enableMultilineParagraph'   => false,
	),
	$cta_border_attribute,
	$infobox_border_attribute
);
PK�][01����@ultimate-addons-for-gutenberg/includes/blocks/info-box/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/info-box';
$block_data = array(
	'doc'              => 'infobox',
	'slug'             => '',
	'admin_categories' => array( 'core', 'content' ),
	'link'             => 'info-box',
	'title'            => __( 'Info Box', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add image/icon, seperator and text description using a single block.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'info-box' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'info-box',
	),
);
PK�][�$�U����Gultimate-addons-for-gutenberg/includes/blocks/info-box/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 * @var int $id
 */

// Adds Fonts.
UAGB_Block_JS::blocks_info_box_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$rtl_selectors   = array();
$rtl_t_selectors = array();
$rtl_m_selectors = array();

$attr['iconSizeTablet'] = is_numeric( $attr['iconSizeTablet'] ) ? $attr['iconSizeTablet'] : $attr['iconSize'];
$attr['iconSizeMobile'] = is_numeric( $attr['iconSizeMobile'] ) ? $attr['iconSizeMobile'] : $attr['iconSizeTablet'];

$attr['ctaIconSpaceTablet'] = is_numeric( $attr['ctaIconSpaceTablet'] ) ? $attr['ctaIconSpaceTablet'] : $attr['ctaIconSpace'];
$attr['ctaIconSpaceMobile'] = is_numeric( $attr['ctaIconSpaceMobile'] ) ? $attr['ctaIconSpaceMobile'] : $attr['ctaIconSpaceTablet'];

$attr['imageWidthTablet'] = is_numeric( $attr['imageWidthTablet'] ) ? $attr['imageWidthTablet'] : $attr['imageWidth'];
$attr['imageWidthMobile'] = is_numeric( $attr['imageWidthMobile'] ) ? $attr['imageWidthMobile'] : $attr['imageWidthTablet'];

$cta_icon_size    = UAGB_Helper::get_css_value( $attr['ctaFontSize'], $attr['ctaFontSizeType'] );
$m_cta_icon_size  = isset( $attr['ctaFontSizeMobile'] ) && isset( $attr['ctaFontSizeTypeMobile'] ) ? UAGB_Helper::get_css_value( $attr['ctaFontSizeMobile'], $attr['ctaFontSizeTypeMobile'] ) : $cta_icon_size;
$t_cta_icon_size  = isset( $attr['ctaFontSizeTablet'] ) && isset( $attr['ctaFontSizeTypeTablet'] ) ? UAGB_Helper::get_css_value( $attr['ctaFontSizeTablet'], $attr['ctaFontSizeTypeTablet'] ) : $cta_icon_size;
$icon_size        = UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeType'] );
$icon_size_tablet = UAGB_Helper::get_css_value( $attr['iconSizeTablet'], $attr['iconSizeType'] );
$icon_size_mobile = UAGB_Helper::get_css_value( $attr['iconSizeMobile'], $attr['iconSizeType'] );

$icon_padding_top          = is_int( $attr['iconTopMargin'] ) ? $attr['iconTopMargin'] : 0;
$icon_padding_bottom       = is_int( $attr['iconBottomMargin'] ) ? $attr['iconBottomMargin'] : 0;
$icon_padding_left         = is_int( $attr['iconLeftMargin'] ) ? $attr['iconLeftMargin'] : 0;
$icon_padding_right        = is_int( $attr['iconRightMargin'] ) ? $attr['iconRightMargin'] : 0;
$box_sizing_icon           = ( '%' === $attr['iconSizeType'] ) ? 'border-box' : 'content-box';
$box_sizing_image          = ( '%' === $attr['imageWidthUnit'] ) ? 'border-box' : 'content-box';
$box_sizing_image_tablet   = ( '%' === $attr['imageWidthUnitTablet'] ) ? 'border-box' : 'content-box';
$box_sizing_image_mobile   = ( '%' === $attr['imageWidthUnitMobile'] ) ? 'border-box' : 'content-box';
$infobox_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'infobox' );
$infobox_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'infobox', 'tablet' );
$infobox_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'infobox', 'mobile' );


$selectors = array(
	' .uagb-ifb-icon'                                     => array(
		'width'       => $icon_size,
		'line-height' => $icon_size,
	),
	' .uagb-ifb-icon > span'                              => array(
		'font-size'   => $icon_size,
		'width'       => $icon_size,
		'line-height' => $icon_size,
		'color'       => $attr['iconColor'],
	),
	' .uagb-ifb-icon svg'                                 => array( // For Backword.
		'fill' => $attr['iconColor'],
	),
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap svg' => array(
		'width'       => $icon_size,
		'height'      => $icon_size,
		'line-height' => $icon_size,
		'font-size'   => $icon_size,
		'color'       => $attr['iconColor'],
		'fill'        => $attr['iconColor'],
	),
	' .uagb-ifb-content .uagb-ifb-icon-wrap svg'          => array(
		'line-height' => $icon_size,
		'font-size'   => $icon_size,
		'color'       => $attr['iconColor'],
		'fill'        => $attr['iconColor'],
	),
	' .uagb-iconbox-icon-wrap'                            => array(
		'margin'          => 'auto',
		'display'         => 'inline-flex',
		'align-items'     => 'center',
		'justify-content' => 'center',
		'box-sizing'      => 'content-box',
		'width'           => $icon_size,
		'height'          => $icon_size,
		'line-height'     => $icon_size,
		'padding-left'    => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'   => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'     => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom'  => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
	),
	' .uagb-ifb-content .uagb-ifb-left-title-image svg'   => array(
		'width'       => $icon_size,
		'line-height' => $icon_size,
		'font-size'   => $icon_size,
		'color'       => $attr['iconColor'],
		'fill'        => $attr['iconColor'],
	),
	' .uagb-ifb-content .uagb-ifb-right-title-image svg'  => array(
		'width'       => $icon_size,
		'line-height' => $icon_size,
		'font-size'   => $icon_size,
		'color'       => $attr['iconColor'],
		'fill'        => $attr['iconColor'],
	),
	' .uagb-ifb-content .uagb-ifb-icon-wrap svg:hover'    => array(
		'fill'  => $attr['iconHover'],
		'color' => $attr['iconHover'],
	),
	'.uagb-infobox-icon-right .uagb-ifb-icon-wrap > svg:hover' => array(
		'fill'  => $attr['iconHover'],
		'color' => $attr['iconHover'],
	),
	'.uagb-infobox-icon-left .uagb-ifb-icon-wrap > svg:hover' => array(
		'fill'  => $attr['iconHover'],
		'color' => $attr['iconHover'],
	),
	' .uagb-infbox__link-to-all:hover ~.uagb-ifb-content .uagb-ifb-icon-wrap svg' => array(
		'fill' => $attr['iconHover'],
	),
	'.uagb-infbox__link-to-all:hover ~.uagb-infobox__content-wrap svg' => array(
		'fill' => $attr['iconHover'],
	),
	' .uagb-infbox__link-to-all:focus ~.uagb-ifb-content .uagb-ifb-icon-wrap svg' => array(
		'fill' => $attr['iconHover'],
	),
	'.uagb-infbox__link-to-all:focus ~.uagb-infobox__content-wrap svg' => array(
		'fill' => $attr['iconHover'],
	),
	// Img Style.
	' .uagb-infobox__content-wrap .uagb-ifb-imgicon-wrap' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
	),
	' .uagb-infobox .uagb-ifb-image-content img'          => array(
		'border-radius' => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
	'.uagb-infobox__content-wrap img'                     => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
		'border-radius'  => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
		'border-radius'  => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
		'border-radius'  => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content > img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $icon_padding_top, $attr['iconMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $icon_padding_bottom, $attr['iconMarginUnit'] ),
		'border-radius'  => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
	// Prefix Style.
	' .uagb-ifb-title-wrap .uagb-ifb-title-prefix'        => array(
		'color'         => $attr['prefixColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['prefixSpace'], $attr['prefixSpaceUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixTopMargin'], $attr['prefixSpaceUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['prefixLeftMargin'], $attr['prefixSpaceUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['prefixRightMargin'], $attr['prefixSpaceUnit'] ),
	),
	// Title Style.
	'.wp-block-uagb-info-box .uagb-ifb-title'             => array(
		'color'         => $attr['headingColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headSpace'], $attr['headSpaceUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headTopMargin'], $attr['headSpaceUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['headLeftMargin'], $attr['headSpaceUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['headRightMargin'], $attr['headSpaceUnit'] ),
	),
	// Description Style.
	'.wp-block-uagb-info-box .uagb-ifb-desc'              => array(
		'color'         => $attr['subHeadingColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['subHeadSpace'], $attr['subHeadSpaceUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['subHeadTopMargin'], $attr['subHeadSpaceUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['subHeadLeftMargin'], $attr['subHeadSpaceUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['subHeadRightMargin'], $attr['subHeadSpaceUnit'] ),
	),
	// Seperator.
	' .uagb-ifb-separator'                                => array(
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], $attr['separatorWidthType'] ),
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], $attr['thicknessUnit'] ),
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
		'margin-bottom'    => UAGB_Helper::get_css_value( $attr['seperatorSpace'], $attr['seperatorSpaceUnit'] ),
		'margin-top'       => UAGB_Helper::get_css_value( $attr['separatorTopMargin'], $attr['seperatorSpaceUnit'] ),
		'margin-left'      => UAGB_Helper::get_css_value( $attr['separatorLeftMargin'], $attr['seperatorSpaceUnit'] ),
		'margin-right'     => UAGB_Helper::get_css_value( $attr['separatorRightMargin'], $attr['seperatorSpaceUnit'] ),
	),
	' .uagb-infobox__content-wrap .uagb-ifb-separator'    => array(
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], $attr['separatorWidthType'] ),
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], $attr['thicknessUnit'] ),
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
	),
	// CTA icon space for Backword compatibility.
	' .uagb-ifb-align-icon-after'                         => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['ctaIconSpace'], 'px' ),
	),
	' .uagb-ifb-align-icon-before'                        => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['ctaIconSpace'], 'px' ),
	),
	// image svg.
	'.uagb-infobox__content-wrap .uagb-ifb-content svg'   => array(
		'box-sizing' => $box_sizing_icon,
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content img'   => array(
		'box-sizing' => $box_sizing_image,
	),
	'.uagb-infobox__content-wrap'                         => $infobox_border_css,
	'.uagb-infobox__content-wrap:hover'                   => array(
		'border-color' => $attr['infoboxBorderHColor'],
	), 
);

$rtl_selectors = array(
	' .uagb-iconbox-icon-wrap'                            => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap img'                     => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image > img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image > img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content > img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $icon_padding_left, $attr['iconMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $icon_padding_right, $attr['iconMarginUnit'] ),
	),
);

if ( 'Stacked' === $attr['iconView'] ) {
	$selectors[' .uagb-iconbox-icon-wrap.uagb-infobox-shape-circle'] = array(
		'background-color' => $attr['iconBackgroundColor'],
		'border-radius'    => '50%',
	);
	$selectors[' .uagb-iconbox-icon-wrap.uagb-infobox-shape-squre']  = array(
		'background-color' => $attr['iconBackgroundColor'],
	);
	$selectors[' .uagb-iconbox-icon-wrap:hover']                     = array(
		'background-color' => $attr['iconBackgroundHoverColor'] . ' !important',
	);
} elseif ( 'Framed' === $attr['iconView'] ) {
	$selectors[' .uagb-iconbox-icon-wrap.uagb-infobox-shape-circle'] = array(
		'border'        => $attr['iconBorderWidth'] . 'px solid ' . $attr['iconBackgroundColor'],
		'border-radius' => '50%',
	);
	$selectors[' .uagb-iconbox-icon-wrap.uagb-infobox-shape-squre']  = array(
		'border' => $attr['iconBorderWidth'] . 'px solid ' . $attr['iconBackgroundColor'],
	);
	$selectors[' .uagb-iconbox-icon-wrap:hover']                     = array(
		'border' => $attr['iconBorderWidth'] . 'px solid ' . $attr['iconBackgroundHoverColor'],
	);
}
if ( 'text' === $attr['ctaType'] && ! $attr['inheritFromTheme'] ) {
	$selectors[' div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link']       = array(
		'text-decoration' => $attr['ctaDecoration'],
		'color'           => $attr['ctaLinkColor'],
	);
	$selectors[' div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link:hover'] = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
	$selectors[' div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link:focus'] = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
	$selectors[' .uagb-infobox-cta-link:hover svg']                          = array(
		'fill' => $attr['ctaLinkHoverColor'],
	);
	$selectors[' .uagb-infobox-cta-link:focus svg']                          = array(
		'fill' => $attr['ctaLinkHoverColor'],
	);
	$selectors[' .uagb-infobox-cta-link svg']                                = array(
		'font-size'   => $cta_icon_size,
		'height'      => $cta_icon_size,
		'width'       => $cta_icon_size,
		'line-height' => $cta_icon_size,
		'fill'        => $attr['ctaLinkColor'],
	);
}

$m_selectors = array(
	' .uagb-ifb-title-wrap .uagb-ifb-title-prefix'         => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['prefixMobileSpace'], $attr['prefixMobileMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixMarginTopMobile'], $attr['prefixMobileMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['prefixMarginLeftMobile'], $attr['prefixMobileMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['prefixMarginRightMobile'], $attr['prefixMobileMarginUnit'] ),
	),
	'.wp-block-uagb-info-box .uagb-ifb-title'              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headMobileSpace'], $attr['headMobileMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headMarginTopMobile'], $attr['headMobileMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['headMarginLeftMobile'], $attr['headMobileMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['headMarginRightMobile'], $attr['headMobileMarginUnit'] ),
	),
	'.wp-block-uagb-info-box .uagb-ifb-desc'               => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['subHeadMobileSpace'], $attr['subHeadMobileMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['subHeadMarginTopMobile'], $attr['subHeadMobileMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['subHeadMarginLeftMobile'], $attr['subHeadMobileMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['subHeadMarginRightMobile'], $attr['subHeadMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-separator'      => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['seperatorMobileSpace'], $attr['separatorMobileMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['separatorMarginTopMobile'], $attr['separatorMobileMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['separatorMarginLeftMobile'], $attr['separatorMobileMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['separatorMarginRightMobile'], $attr['separatorMobileMarginUnit'] ),
	),
	' .uagb-infobox-cta-link svg'                          => array(
		'font-size'   => $m_cta_icon_size,
		'height'      => $m_cta_icon_size,
		'width'       => $m_cta_icon_size,
		'line-height' => $m_cta_icon_size,
	),
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'width'          => $icon_size_mobile,
		'height'         => $icon_size_mobile,
		'line-height'    => $icon_size_mobile,
		'font-size'      => $icon_size_mobile,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'line-height'    => $icon_size_mobile,
		'font-size'      => $icon_size_mobile,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap > svg'                    => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content > svg'                             => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content .uagb-ifb-left-title-image > svg'  => array(
		'width'          => $icon_size_mobile,
		'line-height'    => $icon_size_mobile,
		'font-size'      => $icon_size_mobile,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content .uagb-ifb-right-title-image > svg' => array(
		'width'          => $icon_size_mobile,
		'line-height'    => $icon_size_mobile,
		'font-size'      => $icon_size_mobile,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap img'                      => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-separator'                                 => array(
		'width' => UAGB_Helper::get_css_value( $attr['seperatorWidthMobile'], $attr['separatorWidthType'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content img'    => array(
		'box-sizing' => $box_sizing_image_mobile,
	),
	' .uagb-ifb-icon'                                      => array(
		'width'       => $icon_size_mobile,
		'line-height' => $icon_size_mobile,
	),
	' .uagb-ifb-icon > span'                               => array(
		'font-size'   => $icon_size_mobile,
		'width'       => $icon_size_mobile,
		'line-height' => $icon_size_mobile,
	),
	' .uagb-iconbox-icon-wrap'                             => array(
		'width'          => $icon_size_mobile,
		'height'         => $icon_size_mobile,
		'line-height'    => $icon_size_mobile,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomMobile'], $attr['iconMobileMarginUnit'] ),

	),
	'.uagb-infobox__content-wrap'                          => $infobox_border_css_mobile, 
);

$rtl_m_selectors = array(
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap > svg'                    => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content > svg'                             => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content .uagb-ifb-left-title-image > svg'  => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	' .uagb-ifb-content .uagb-ifb-right-title-image > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap img'                      => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftMobile'], $attr['iconMobileMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightMobile'], $attr['iconMobileMarginUnit'] ),
	),
);

$t_selectors = array(
	' .uagb-ifb-title-wrap .uagb-ifb-title-prefix'         => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['prefixTabletSpace'], $attr['prefixTabletMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixMarginTopTablet'], $attr['prefixTabletMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['prefixMarginLeftTablet'], $attr['prefixTabletMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['prefixMarginRightTablet'], $attr['prefixTabletMarginUnit'] ),
	),
	'.wp-block-uagb-info-box .uagb-ifb-title'              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headTabletSpace'], $attr['headTabletMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['headMarginTopTablet'], $attr['headTabletMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['headMarginLeftTablet'], $attr['headTabletMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['headMarginRightTablet'], $attr['headTabletMarginUnit'] ),
	),
	'.wp-block-uagb-info-box .uagb-ifb-desc'               => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['subHeadTabletSpace'], $attr['subHeadTabletMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['subHeadMarginTopTablet'], $attr['subHeadTabletMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['subHeadMarginLeftTablet'], $attr['subHeadTabletMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['subHeadMarginRightTablet'], $attr['subHeadTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-separator'      => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['seperatorTabletSpace'], $attr['separatorTabletMarginUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['separatorMarginTopTablet'], $attr['separatorTabletMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['separatorMarginLeftTablet'], $attr['separatorTabletMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['separatorMarginRightTablet'], $attr['separatorTabletMarginUnit'] ),
	),
	' .uagb-infobox-cta-link svg'                          => array(
		'font-size'   => $t_cta_icon_size,
		'height'      => $t_cta_icon_size,
		'width'       => $t_cta_icon_size,
		'line-height' => $t_cta_icon_size,
	),
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'width'          => $icon_size_tablet,
		'height'         => $icon_size_tablet,
		'line-height'    => $icon_size_tablet,
		'font-size'      => $icon_size_tablet,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'line-height'    => $icon_size_tablet,
		'font-size'      => $icon_size_tablet,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap > svg'                    => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-ifb-content > svg'                             => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-infobox-icon-right:hover > svg'                => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-infobox-icon-left:hover > svg'                 => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap img'                      => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-ifb-separator'                                 => array(
		'width' => UAGB_Helper::get_css_value( $attr['seperatorWidthTablet'], $attr['separatorWidthType'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content img'    => array(
		'box-sizing' => $box_sizing_image_tablet,
	),
	' .uagb-ifb-icon'                                      => array(
		'width'       => $icon_size_tablet,
		'line-height' => $icon_size_tablet,
	),
	' .uagb-ifb-icon > span'                               => array(
		'font-size'   => $icon_size_tablet,
		'width'       => $icon_size_tablet,
		'line-height' => $icon_size_tablet,
	),
	' .uagb-iconbox-icon-wrap'                             => array(
		'width'          => $icon_size_tablet,
		'height'         => $icon_size_tablet,
		'line-height'    => $icon_size_tablet,
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconMarginTopTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconMarginBottomTablet'], $attr['iconTabletMarginUnit'] ),

	),
	' .uagb-ifb-content .uagb-ifb-left-title-image > svg'  => array(
		'width'       => $icon_size_tablet,
		'line-height' => $icon_size_tablet,
		'font-size'   => $icon_size_tablet,
	),
	' .uagb-ifb-content .uagb-ifb-right-title-image > svg' => array(
		'width'       => $icon_size_tablet,
		'line-height' => $icon_size_tablet,
		'font-size'   => $icon_size_tablet,
	),
	'.uagb-infobox__content-wrap'                          => $infobox_border_css_tablet, 
);

$rtl_t_selectors = array(
	'.uagb-infobox__content-wrap .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-icon-wrap > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-right-title-image img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap .uagb-ifb-content .uagb-ifb-left-title-image img' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap > svg'     => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-ifb-content > svg'              => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-infobox-icon-right:hover > svg' => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	' .uagb-infobox-icon-left:hover > svg'  => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
	'.uagb-infobox__content-wrap img'       => array(
		'padding-right' => UAGB_Helper::get_css_value( $attr['iconMarginLeftTablet'], $attr['iconTabletMarginUnit'] ),
		'padding-left'  => UAGB_Helper::get_css_value( $attr['iconMarginRightTablet'], $attr['iconTabletMarginUnit'] ),
	),
);

if ( 'above-title' === $attr['iconimgPosition'] || 'below-title' === $attr['iconimgPosition'] ) { // For backward user.
	$selectors[' .uagb-infobox__content-wrap'] = array(
		'text-align' => $attr['headingAlign'],
	);
}

if ( 'above-title' === $attr['iconimgPosition'] ) {
	$selectors['.uagb-infobox-icon-above-title']   = array(
		'text-align' => $attr['headingAlign'],
	);
	$t_selectors['.uagb-infobox-icon-above-title'] = array(
		'text-align' => $attr['headingAlignTablet'],
	);
	$m_selectors['.uagb-infobox-icon-above-title'] = array(
		'text-align' => $attr['headingAlignMobile'],
	);
} elseif ( 'below-title' === $attr['iconimgPosition'] ) {
	$selectors['.uagb-infobox-icon-below-title']   = array(
		'text-align' => $attr['headingAlign'],
	);
	$t_selectors['.uagb-infobox-icon-below-title'] = array(
		'text-align' => $attr['headingAlignTablet'],
	);
	$m_selectors['.uagb-infobox-icon-below-title'] = array(
		'text-align' => $attr['headingAlignMobile'],
	);
}

// Default text-align values from attributes.
$heading_align        = $attr['headingAlign'];
$heading_align_tablet = $attr['headingAlignTablet'];
$heading_align_mobile = $attr['headingAlignMobile'];

// Adjust alignment dynamically for RTL.
$heading_align        = ( 'left' === $heading_align ) ? 'right' : ( 'right' === $heading_align ? 'left' : $heading_align );
$heading_align_tablet = ( 'left' === $heading_align_tablet ) ? 'right' : ( 'right' === $heading_align_tablet ? 'left' : $heading_align_tablet );
$heading_align_mobile = ( 'left' === $heading_align_mobile ) ? 'right' : ( 'right' === $heading_align_mobile ? 'left' : $heading_align_mobile );

// Alignment CSS for RTL.
if ( 'above-title' === $attr['iconimgPosition'] || 'below-title' === $attr['iconimgPosition'] ) { // For backward users.
	$rtl_selectors['.uagb-infobox__content-wrap'] = array(
		'text-align' => $heading_align,
	);
}
// Alignment CSS for RTL.
if ( 'above-title' !== $attr['iconimgPosition'] && 'below-title' !== $attr['iconimgPosition'] ) { // For backward users.
	$rtl_selectors['.uagb-infobox-left']  = array(
		'text-align' => 'right',
	);
	$rtl_selectors['.uagb-infobox-right'] = array(
		'text-align' => 'left',
	);
}

if ( 'above-title' === $attr['iconimgPosition'] ) {
	$rtl_selectors['.uagb-infobox-icon-above-title']   = array(
		'text-align' => $heading_align,
	);
	$rtl_t_selectors['.uagb-infobox-icon-above-title'] = array(
		'text-align' => $heading_align_tablet,
	);
	$rtl_m_selectors['.uagb-infobox-icon-above-title'] = array(
		'text-align' => $heading_align_mobile,
	);
} elseif ( 'below-title' === $attr['iconimgPosition'] ) {
	$rtl_selectors['.uagb-infobox-icon-below-title']   = array(
		'text-align' => $heading_align,
	);
	$rtl_t_selectors['.uagb-infobox-icon-below-title'] = array(
		'text-align' => $heading_align_tablet,
	);
	$rtl_m_selectors['.uagb-infobox-icon-below-title'] = array(
		'text-align' => $heading_align_mobile,
	);
}

if ( 'left' === $attr['iconimgPosition'] || 'right' === $attr['iconimgPosition'] ) {
	if ( 'none' === $attr['stack'] ) {
		$t_selectors[' .uagb-infobox-margin-wrapper'] = array(
			'display' => 'flex',
		);
		$m_selectors[' .uagb-infobox-margin-wrapper'] = array(
			'display' => 'flex',
		);
	} elseif ( 'mobile' === $attr['stack'] ) {
		$t_selectors[' .uagb-infobox-margin-wrapper'] = array(
			'display' => 'flex',
		);
		$m_selectors[' .uagb-infobox-margin-wrapper'] = array(
			'display' => 'block',
		);
	}
}

$selectors['.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)']                          = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPadding'], $attr['blockPaddingUnit'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPadding'], $attr['blockPaddingUnit'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPadding'], $attr['blockPaddingUnit'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPadding'], $attr['blockPaddingUnit'] ),
);
$selectors['.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper']   = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPadding'], $attr['blockPaddingUnit'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPadding'], $attr['blockPaddingUnit'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPadding'], $attr['blockPaddingUnit'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPadding'], $attr['blockPaddingUnit'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMargin'], $attr['blockMarginUnit'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMargin'], $attr['blockMarginUnit'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMargin'], $attr['blockMarginUnit'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMargin'], $attr['blockMarginUnit'] ),
);
$t_selectors['.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)']                        = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
);
$t_selectors['.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
);
$m_selectors['.uagb-infobox__content-wrap:not(.wp-block-uagb-info-box--has-margin)']                        = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
);
$m_selectors['.uagb-infobox__content-wrap.wp-block-uagb-info-box--has-margin .uagb-infobox-margin-wrapper'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),

);


if ( $attr['imageWidthType'] ) {
	// Image.
	$selectors[' .uagb-ifb-content .uagb-ifb-image-content > img']          = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);
	$selectors['.uagb-infobox__content-wrap .uagb-ifb-image-content > img'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);
	$selectors[' .uagb-ifb-content .uagb-ifb-left-title-image > img']       = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);
	$selectors[' .uagb-ifb-content .uagb-ifb-right-title-image > img']      = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);
	$m_selectors[' .uagb-ifb-content .uagb-ifb-image-content img']          = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);
	$m_selectors['.uagb-infobox__content-wrap .uagb-ifb-image-content img'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);
	$m_selectors[' .uagb-ifb-content .uagb-ifb-left-title-image img']       = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);
	$m_selectors[' .uagb-ifb-content .uagb-ifb-right-title-image img']      = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);
	$t_selectors[' .uagb-ifb-content .uagb-ifb-image-content img']          = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);
	$t_selectors['.uagb-infobox__content-wrap .uagb-ifb-image-content img'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);
	$t_selectors[' .uagb-ifb-content .uagb-ifb-left-title-image img']       = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);
	$t_selectors[' .uagb-ifb-content .uagb-ifb-right-title-image img']      = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);

}

$cta_icon_spacing        = UAGB_Helper::get_css_value( $attr['ctaIconSpace'], $attr['ctaIconSpaceType'] );
$cta_icon_spacing_tablet = UAGB_Helper::get_css_value( $attr['ctaIconSpaceTablet'], $attr['ctaIconSpaceType'] );
$cta_icon_spacing_mobile = UAGB_Helper::get_css_value( $attr['ctaIconSpaceMobile'], $attr['ctaIconSpaceType'] );

if ( 'after' === $attr['ctaIconPosition'] ) {
	$selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg ']      = array(
		'margin-left' => $cta_icon_spacing,
	);
	$t_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg ']    = array(
		'margin-left' => $cta_icon_spacing_tablet,
	);
	$m_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg ']    = array(
		'margin-left' => $cta_icon_spacing_mobile,
	);
	$rtl_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg']   = array(
		'margin-right' => $cta_icon_spacing,
		'margin-left'  => '0px',
	);
	$rtl_t_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg'] = array(
		'margin-right' => $cta_icon_spacing_tablet,
		'margin-left'  => '0px',
	);
	$rtl_m_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg'] = array(
		'margin-right' => $cta_icon_spacing_mobile,
		'margin-left'  => '0px',
	);
} else {
	$selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg']       = array(
		'margin-right' => $cta_icon_spacing,
	);
	$t_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg']     = array(
		'margin-right' => $cta_icon_spacing_tablet,
	);
	$m_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg']     = array(
		'margin-right' => $cta_icon_spacing_mobile,
	);
	$rtl_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg']   = array(
		'margin-left'  => $cta_icon_spacing,
		'margin-right' => '0px',
	);
	$rtl_t_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg'] = array(
		'margin-left'  => $cta_icon_spacing_tablet,
		'margin-right' => '0px',
	);
	$rtl_m_selectors['.uagb-infobox__content-wrap .uagb-infobox-cta-link > svg'] = array(
		'margin-left'  => $cta_icon_spacing_mobile,
		'margin-right' => '0px',
	);
}

if ( '%' === $attr['imageWidthUnit'] ) {
	$selectors[' .uagb-ifb-content .uagb-ifb-image-content > img']['box-sizing'] = 'border-box';
}

if ( ! $attr['inheritFromTheme'] ) {
	
	$cta_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
	$cta_border_css        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
		$cta_border_css,
		( isset( $attr['ctaBorderWidth'] ) ? $attr['ctaBorderWidth'] : '' ),
		( isset( $attr['ctaBorderRadius'] ) ? $attr['ctaBorderRadius'] : '' ),
		( isset( $attr['ctaBorderColor'] ) ? $attr['ctaBorderColor'] : '' ),
		( isset( $attr['ctaBorderStyle'] ) ? $attr['ctaBorderStyle'] : '' )
	);
	$cta_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
	$cta_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );

	if ( 'button' === $attr['ctaType'] ) {
		$selectors[' div.uagb-ifb-button-wrapper a.uagb-infobox-cta-link'] = array(
			'text-decoration' => $attr['ctaDecoration'],
		);
		$selectors[' .uagb-infobox-cta-link svg']                          = array(
			'font-size'   => $cta_icon_size,
			'height'      => $cta_icon_size,
			'width'       => $cta_icon_size,
			'line-height' => $cta_icon_size,
		);
		$selectors['.wp-block-uagb-info-box .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link'] =
		array(
			'color'            => $attr['ctaBtnLinkColor'],
			'background-color' => $attr['ctaBgColor'],
			'padding-top'      => UAGB_Helper::get_css_value( $attr['paddingBtnTop'], $attr['paddingBtnUnit'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $attr['paddingBtnBottom'], $attr['paddingBtnUnit'] ),
			'padding-left'     => UAGB_Helper::get_css_value( $attr['paddingBtnLeft'], $attr['paddingBtnUnit'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $attr['paddingBtnRight'], $attr['paddingBtnUnit'] ),
	
		);
		$selectors['.wp-block-uagb-info-box.uagb-infobox__content-wrap .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link'] = array_merge(
			array(
				'color'            => $attr['ctaBtnLinkColor'],
				'background-color' => ( 'color' === $attr['ctaBgType'] ) ? $attr['ctaBgColor'] : 'transparent',
				'padding-top'      => UAGB_Helper::get_css_value( $attr['paddingBtnTop'], $attr['paddingBtnUnit'] ),
				'padding-bottom'   => UAGB_Helper::get_css_value( $attr['paddingBtnBottom'], $attr['paddingBtnUnit'] ),
				'padding-left'     => UAGB_Helper::get_css_value( $attr['paddingBtnLeft'], $attr['paddingBtnUnit'] ),
				'padding-right'    => UAGB_Helper::get_css_value( $attr['paddingBtnRight'], $attr['paddingBtnUnit'] ),
			),
			$cta_border_css
		);
		$selectors[' .uagb-ifb-button-wrapper .uagb-infobox-cta-link svg'] = array(
			'fill' => $attr['ctaBtnLinkColor'],
		);
	
		$selectors['.wp-block-uagb-info-box.uagb-infobox__content-wrap .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link:hover'] = array(
			'color'            => $attr['ctaLinkHoverColor'],
			'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
			'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
		);
		$selectors[' .uagb-infobox-cta-link:hover'] = array(
			'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
		);
		$selectors[' .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link:hover > svg'] = array(
			'fill' => $attr['ctaLinkHoverColor'],
		);
		$selectors['.wp-block-uagb-info-box.uagb-infobox__content-wrap .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link:focus'] = array(
			'color'            => $attr['ctaLinkHoverColor'],
			'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
			'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
		);
		$selectors[' .uagb-infobox-cta-link:focus'] = array(
			'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
		);
		$selectors[' .uagb-infobox-cta-link']       = $cta_border_css;
		$t_selectors[' .uagb-infobox-cta-link']     = $cta_border_css_tablet;
		$m_selectors[' .uagb-infobox-cta-link']     = $cta_border_css_mobile;

		$t_selectors['.wp-block-uagb-info-box.uagb-infobox__content-wrap .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link'] = array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightTablet'], $attr['tabletPaddingBtnUnit'] ),
		);

		$m_selectors['.wp-block-uagb-info-box.uagb-infobox__content-wrap .wp-block-button.uagb-ifb-button-wrapper .uagb-infobox-cta-link.wp-block-button__link'] = array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightMobile'], $attr['mobilePaddingBtnUnit'] ),
		);
	
	}
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_rtl_selectors = array(
	'desktop' => $rtl_selectors,
	'tablet'  => $rtl_t_selectors,
	'mobile'  => $rtl_m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-ifb-title', $combined_selectors );
if ( $attr['enableMultilineParagraph'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-ifb-desc p', $combined_selectors );
} else {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-ifb-desc', $combined_selectors );
}
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'prefix', ' .uagb-ifb-title-prefix', $combined_selectors );

if ( ! $attr['inheritFromTheme'] ) { 
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-infobox-cta-link', $combined_selectors );
}

// Determine the base selector for normal CSS.
// If 'classMigrate' is true, use the '.uagb-block-' class; otherwise, use the '#uagb-infobox-' ID.
$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-infobox-';

// Determine the base selector for RTL CSS.
// If 'classMigrate' is true, use '[dir=rtl] .uagb-block-' class; otherwise, use '[dir=rtl] #uagb-infobox-' ID.
$base_selector_rtl = ( $attr['classMigrate'] ) ? '[dir=rtl] .uagb-block-' : '[dir=rtl] #uagb-infobox-';

// Generate the normal CSS for desktop, tablet, and mobile devices.
$normal_css = UAGB_Helper::generate_all_css(
	$combined_selectors,    // Combined selectors for normal CSS.
	$base_selector . $id,   // Selector with appended ID.
	isset( $gbs_class ) ? $gbs_class : '' // Optional GBS class if provided.
);

// Generate the RTL CSS for desktop, tablet, and mobile devices.
$rtl_css = UAGB_Helper::generate_all_css(
	$combined_rtl_selectors, // Combined selectors specifically for RTL CSS.
	$base_selector_rtl . $id, // RTL selector with appended ID.
	isset( $gbs_class ) ? $gbs_class : '' // Optional GBS class if provided.
);

// Combine both normal and RTL CSS arrays by concatenating their values for each device type.
// The 'merge_css_arrays' function handles concatenation for 'desktop', 'tablet', and 'mobile'.
$merged_css = UAGB_Helper::merge_css_arrays( $normal_css, $rtl_css );

// Return the merged CSS array.
return $merged_css;

PK�][9kP��Fultimate-addons-for-gutenberg/includes/blocks/instagram-feed/error_lognu�[���[28-Oct-2025 00:21:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/instagram-feed/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/instagram-feed/block.php on line 16
PK�][�N���Fultimate-addons-for-gutenberg/includes/blocks/instagram-feed/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.4.1
 *
 * @package uagb
 */

$block_slug = 'uagb/instagram-feed';
$block_data = array(
	'doc'              => 'instagram-feed',
	'slug'             => '',
	'admin_categories' => array( 'social', 'pro' ),
	'link'             => 'instagram-feed',
	'title'            => __( 'Instagram Feed', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'This block allows you to add Instagram Feeds.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'instagram-feed' ),
	'pro_filler'       => true,
);
PK�][%�[��<ultimate-addons-for-gutenberg/includes/blocks/team/error_lognu�[���[27-Oct-2025 14:30:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/team/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/team/block.php on line 16
PK�][��*RAultimate-addons-for-gutenberg/includes/blocks/team/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'              => false,
	'block_id'                  => '',
	'align'                     => 'center',
	'tag'                       => 'h3',
	'titleColor'                => '',
	'prefixColor'               => '#888888',
	'descColor'                 => '',
	'socialColor'               => '#333',
	'socialHoverColor'          => '',
	'titleFontFamily'           => '',
	'titleLoadGoogleFonts'      => false,
	'titleFontWeight'           => '',
	'titleFontSize'             => '',
	'titleFontSizeType'         => 'px',
	'titleFontSizeTablet'       => '',
	'titleFontSizeMobile'       => '',
	'titleLineHeight'           => '',
	'titleLineHeightType'       => 'em',
	'titleLineHeightTablet'     => '',
	'titleLineHeightMobile'     => '',
	'prefixFontFamily'          => '',
	'prefixLoadGoogleFonts'     => false,
	'prefixFontWeight'          => '',
	'prefixFontSize'            => 15,
	'prefixFontSizeType'        => 'px',
	'prefixFontSizeTablet'      => '',
	'prefixFontSizeMobile'      => '',
	'prefixLineHeight'          => '',
	'prefixLineHeightType'      => 'em',
	'prefixLineHeightTablet'    => '',
	'prefixLineHeightMobile'    => '',
	'descFontFamily'            => '',
	'descLoadGoogleFonts'       => false,
	'descFontWeight'            => '',
	'descFontSize'              => 15,
	'descFontSizeType'          => 'px',
	'descFontSizeTablet'        => '',
	'descFontSizeMobile'        => '',
	'descLineHeight'            => '',
	'descLineHeightType'        => 'em',
	'descLineHeightTablet'      => '',
	'descLineHeightMobile'      => '',
	'socialFontSize'            => 20,
	'socialFontSizeType'        => 'px',
	'socialFontSizeMobile'      => '',
	'socialFontSizeTablet'      => '',
	'image'                     => '',
	'imgStyle'                  => 'normal',
	'imgPosition'               => 'above',
	'imgAlign'                  => 'top',
	'imgSiz'                    => 'thumbnail',
	'imgWidth'                  => 100,
	'imgWidthMobile'            => '',
	'imgWidthTablet'            => '',
	'titleSpace'                => 6,
	'titleSpaceTablet'          => '',
	'titleSpaceMobile'          => '',
	'prefixSpace'               => 11,
	'prefixSpaceTablet'         => '',
	'prefixSpaceMobile'         => '',
	'descSpace'                 => 18,
	'descSpaceTablet'           => '',
	'descSpaceMobile'           => '',
	'imgLeftMargin'             => '',
	'imgRightMargin'            => '',
	'imgTopMargin'              => '',
	'imgBottomMargin'           => 15,
	'imageLeftMargin'           => 20,
	'imageRightMargin'          => 20,
	'imageTopMargin'            => '',
	'imageBottomMargin'         => '',
	'imageMarginLeftTablet'     => 'auto',
	'imageMarginRightTablet'    => 'auto',
	'imageMarginTopTablet'      => '',
	'imageMarginBottomTablet'   => '',
	'imageMarginLeftMobile'     => 'auto',
	'imageMarginRightMobile'    => 'auto',
	'imageMarginTopMobile'      => '',
	'imageMarginBottomMobile'   => '',
	'imageMarginUnit'           => 'px',
	'tabletImageMarginUnit'     => 'px',
	'mobileImageMarginUnit'     => 'px',
	'spacingLink'               => false,
	'socialSpace'               => 20,
	'socialSpaceTablet'         => '',
	'socialSpaceMobile'         => '',
	'headingTag'                => 'h3',
	'titleTransform'            => '',
	'titleDecoration'           => '',
	'descTransform'             => '',
	'descDecoration'            => '',
	'prefixTransform'           => '',
	'prefixDecoration'          => '',
	'titleFontStyle'            => '',
	'descFontStyle'             => '',
	'prefixFontStyle'           => '',
	// letter spacing.
	'titleLetterSpacing'        => '',
	'titleLetterSpacingTablet'  => '',
	'titleLetterSpacingMobile'  => '',
	'titleLetterSpacingType'    => 'px',
	'prefixLetterSpacing'       => '',
	'prefixLetterSpacingTablet' => '',
	'prefixLetterSpacingMobile' => '',
	'prefixLetterSpacingType'   => 'px',
	'descLetterSpacing'         => '',
	'descLetterSpacingTablet'   => '',
	'descLetterSpacingMobile'   => '',
	'descLetterSpacingType'     => 'px',
);
PK�][�!��<ultimate-addons-for-gutenberg/includes/blocks/team/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/team';
$block_data = array(
	'doc'              => 'team',
	'slug'             => '',
	'admin_categories' => array( 'social' ),
	'link'             => 'team',
	'title'            => __( 'Team', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Showcase your team by displaying info and social media profiles.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'team' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'team',
	),
);
PK�][Nh��6�6Cultimate-addons-for-gutenberg/includes/blocks/team/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_team_gfont( $attr );

$social_space_tablet_fallback = is_numeric( $attr['socialSpaceTablet'] ) ? $attr['socialSpaceTablet'] : $attr['socialSpace'];
$social_space_mobile_fallback = is_numeric( $attr['socialSpaceMobile'] ) ? $attr['socialSpaceMobile'] : $social_space_tablet_fallback;

$m_selectors = array();
$t_selectors = array();

$image_top_margin    = isset( $attr['imageTopMargin'] ) ? $attr['imageTopMargin'] : $attr['imgTopMargin'];
$image_bottom_margin = isset( $attr['imageBottomMargin'] ) ? $attr['imageBottomMargin'] : $attr['imgBottomMargin'];
$image_left_margin   = isset( $attr['imageLeftMargin'] ) ? $attr['imageLeftMargin'] : $attr['imgLeftMargin'];
$image_right_margin  = isset( $attr['imageRightMargin'] ) ? $attr['imageRightMargin'] : $attr['imgRightMargin'];

$icon_size   = UAGB_Helper::get_css_value( $attr['socialFontSize'], $attr['socialFontSizeType'] );
$m_icon_size = UAGB_Helper::get_css_value( $attr['socialFontSizeMobile'], $attr['socialFontSizeType'] );
$t_icon_size = UAGB_Helper::get_css_value( $attr['socialFontSizeTablet'], $attr['socialFontSizeType'] );

$selectors = array(
	' p.uagb-team__desc'                    => array(
		'color'         => $attr['descColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpace'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixSpace'], 'px' ),
	),
	' .uagb-team__prefix'                   => array(
		'color' => $attr['prefixColor'],
	),
	' .uagb-team__social-icon a'            => array(
		'color'       => $attr['socialColor'],
		'font-size'   => $icon_size,
		'width'       => $icon_size,
		'height'      => $icon_size,
		'line-height' => $icon_size,
	),
	' .uagb-team__social-icon svg'          => array(
		'fill'   => $attr['socialColor'],
		'width'  => $icon_size,
		'height' => $icon_size,
	),
	' .uagb-team__social-icon:hover a'      => array(
		'color' => $attr['socialHoverColor'],
	),
	' .uagb-team__social-icon:hover svg'    => array(
		'fill' => $attr['socialHoverColor'],
	),
	'.uagb-team__image-position-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpace'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpace'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( ( $attr['socialSpace'] / 2 ), 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( ( $attr['socialSpace'] / 2 ), 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpace'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpace'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	' .uagb-team__image-wrap'               => array( // For Backword.
		'margin-top'    => UAGB_Helper::get_css_value( $image_top_margin, $attr['imageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $image_bottom_margin, $attr['imageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $image_left_margin, $attr['imageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $image_right_margin, $attr['imageMarginUnit'] ),
		'width'         => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
	),
	'.uagb-team__image-position-left > img' => array( // When Image position is left.
		'margin-top'    => UAGB_Helper::get_css_value( $image_top_margin, $attr['imageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $image_bottom_margin, $attr['imageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $image_left_margin, $attr['imageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $image_right_margin, $attr['imageMarginUnit'] ),
		'width'         => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__content + img' => array( // When Image position is right.
		'margin-top'    => UAGB_Helper::get_css_value( $image_top_margin, $attr['imageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $image_bottom_margin, $attr['imageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $image_left_margin, $attr['imageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $image_right_margin, $attr['imageMarginUnit'] ),
		'width'         => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
	),
	'.uagb-team__image-position-above img'  => array( // When Image position is above.
		'margin-top'    => UAGB_Helper::get_css_value( $image_top_margin, $attr['imageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $image_bottom_margin, $attr['imageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $image_left_margin, $attr['imageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $image_right_margin, $attr['imageMarginUnit'] ),
		'width'         => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['imgWidth'], 'px' ),
	),

);

if ( 'above' === $attr['imgPosition'] ) {
	if ( 'center' === $attr['align'] ) {
		$selectors[' .uagb-team__image-wrap']['margin-left']      = 'auto';
		$selectors[' .uagb-team__image-wrap']['margin-right']     = 'auto';
		$selectors[' .uagb-team__social-list']['justify-content'] = 'center';
	} elseif ( 'left' === $attr['align'] ) {
		$selectors[' .uagb-team__image-wrap']['margin-right']     = 'auto';
		$selectors[' .uagb-team__social-list']['justify-content'] = 'flex-start';
	} elseif ( 'right' === $attr['align'] ) {
		$selectors[' .uagb-team__image-wrap']['margin-left']      = 'auto';
		$selectors[' .uagb-team__social-list']['justify-content'] = 'flex-end';
	}
}

if ( 'above' !== $attr['imgPosition'] ) {
	if ( 'middle' === $attr['imgAlign'] ) {
		$selectors[' .uagb-team__image-wrap']['align-self'] = 'center';
		$selectors[' img']['align-self']                    = 'center';
		$selectors[' .uagb-team__content']                  = array( 'align-self' => 'center' );
	} else {
		$selectors[' img']['align-self'] = 'flex-start';
	}
}

$selectors[ ' ' . $attr['tag'] . '.uagb-team__title' ] = array(
	'color'         => $attr['titleColor'],
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpace'], 'px' ),
);

$m_selectors = array(
	'.uagb-team__image-position-left > img' => array( // When Image position is left.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
	),
	' p.uagb-team__desc'                    => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceMobile'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixSpaceMobile'], 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__content + img' => array( // When Image position is right.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
	),
	'.uagb-team__image-position-above img'  => array( // When Image position is above.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthMobile'], 'px' ),
	),
	' .uagb-team__social-icon a'            => array(
		'font-size'   => $m_icon_size,
		'width'       => $m_icon_size,
		'height'      => $m_icon_size,
		'line-height' => $m_icon_size,
	),
	' .uagb-team__social-icon svg'          => array(
		'width'  => $m_icon_size,
		'height' => $m_icon_size,
	),
	' .uagb-team__image-wrap'               => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['imageMarginTopMobile'], $attr['mobileImageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['imageMarginBottomMobile'], $attr['mobileImageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['imageMarginLeftMobile'], $attr['mobileImageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['imageMarginRightMobile'], $attr['mobileImageMarginUnit'] ),
	),
	'.uagb-team__image-position-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpaceMobile'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpaceMobile'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( ( $social_space_mobile_fallback / 2 ), 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( ( $social_space_mobile_fallback / 2 ), 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpaceMobile'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpaceMobile'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
);
$m_selectors[ ' ' . $attr['tag'] . '.uagb-team__title' ] = array(
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceMobile'], 'px' ),
);
$t_selectors = array(
	'.uagb-team__image-position-left > img' => array( // When Image position is left.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
	),
	' p.uagb-team__desc'                    => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceTablet'], 'px' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['prefixSpaceTablet'], 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__content + img' => array( // When Image position is right.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
	),
	'.uagb-team__image-position-above img'  => array( // When Image position is above.
		'width'  => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['imgWidthTablet'], 'px' ),
	),
	' .uagb-team__social-icon a'            => array(
		'font-size'   => $t_icon_size,
		'width'       => $t_icon_size,
		'height'      => $t_icon_size,
		'line-height' => $t_icon_size,
	),
	' .uagb-team__social-icon svg'          => array(
		'width'  => $t_icon_size,
		'height' => $t_icon_size,
	),
	' .uagb-team__image-wrap'               => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['imageMarginTopTablet'], $attr['tabletImageMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['imageMarginBottomTablet'], $attr['tabletImageMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['imageMarginLeftTablet'], $attr['tabletImageMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['imageMarginRightTablet'], $attr['tabletImageMarginUnit'] ),
	),
	'.uagb-team__image-position-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpaceTablet'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpaceTablet'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-center .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( ( $social_space_tablet_fallback / 2 ), 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( ( $social_space_tablet_fallback / 2 ), 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-left .uagb-team__social-icon' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['socialSpaceTablet'], 'px' ),
		'margin-left'  => UAGB_Helper::get_css_value( 0, 'px' ),
	),
	'.uagb-team__image-position-above.uagb-team__align-right .uagb-team__social-icon' => array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['socialSpaceTablet'], 'px' ),
		'margin-right' => UAGB_Helper::get_css_value( 0, 'px' ),
	),
);
$t_selectors[ ' ' . $attr['tag'] . '.uagb-team__title' ] = array(
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceTablet'], 'px' ),
);
$combined_selectors                                      = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' ' . $attr['tag'] . '.uagb-team__title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'prefix', ' .uagb-team__prefix', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' p.uagb-team__desc', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-team-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][����Aultimate-addons-for-gutenberg/includes/blocks/countdown/error_lognu�[���[27-Oct-2025 04:02:19 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/attributes.php on line 10
[27-Oct-2025 04:45:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/block.php on line 16
[27-Oct-2025 05:39:39 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/frontend.js.php on line 10
[27-Oct-2025 05:39:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/countdown/frontend.js.php on line 12
PK�][=�%BBFultimate-addons-for-gutenberg/includes/blocks/countdown/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$box_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'box' );

$additional_attributes = apply_filters(
	'spectra_countdown_attributes',
	array()
);

return array_merge(
	array(
		'block_id'                     => '',
		'isFrontend'                   => true,
		'timerType'                    => 'date',
		'timerEndAction'               => 'zero',
		'redirectURL'                  => '',
		'endDateTime'                  => '2023-01-01T00:00:00Z',
		'displayEndDateTime'           => '2023-01-01T00:00:00Z',
		'showDays'                     => true,
		'showHours'                    => true,
		'showMinutes'                  => true,
		'showSeconds'                  => true,
		'showSeparator'                => true,
		'separatorType'                => ':',
		'ariaLiveType'                 => 'off',
		'showLabels'                   => true,
		'labelDays'                    => __( 'DAYS', 'ultimate-addons-for-gutenberg' ),
		'labelHours'                   => __( 'HOURS', 'ultimate-addons-for-gutenberg' ),
		'labelMinutes'                 => __( 'MINUTES', 'ultimate-addons-for-gutenberg' ),
		'labelSeconds'                 => __( 'SECONDS', 'ultimate-addons-for-gutenberg' ),
		// Digit.
		'digitLoadGoogleFonts'         => false,
		'digitColor'                   => '',
		'digitFontFamily'              => 'Default',
		'digitFontWeight'              => '',
		'digitFontStyle'               => 'normal',
		'digitTransform'               => '',
		'digitDecoration'              => '',
		'digitFontSizeType'            => 'px',
		'digitFontSizeTypeTablet'      => 'px',
		'digitFontSizeTypeMobile'      => 'px',
		'digitLineHeightType'          => 'em',
		'digitLetterSpacingType'       => 'em',
		'digitFontSize'                => '',
		'digitFontSizeTablet'          => '',
		'digitFontSizeMobile'          => '',
		'digitLineHeight'              => '',
		'digitLineHeightTablet'        => '',
		'digitLineHeightMobile'        => '',
		'digitLetterSpacing'           => '',
		'digitLetterSpacingTablet'     => '',
		'digitLetterSpacingMobile'     => '',
		// Label.
		'labelLoadGoogleFonts'         => false,
		'labelColor'                   => '',
		'labelFontFamily'              => 'Default',
		'labelFontWeight'              => '',
		'labelFontStyle'               => 'normal',
		'labelTransform'               => '',
		'labelDecoration'              => '',
		'labelFontSizeType'            => 'px',
		'labelFontSizeTypeTablet'      => 'px',
		'labelFontSizeTypeMobile'      => 'px',
		'labelLineHeightType'          => 'em',
		'labelLetterSpacingType'       => 'em',
		'labelFontSize'                => '',
		'labelFontSizeTablet'          => '',
		'labelFontSizeMobile'          => '',
		'labelLineHeight'              => '',
		'labelLineHeightTablet'        => '',
		'labelLineHeightMobile'        => '',
		'labelLetterSpacing'           => '',
		'labelLetterSpacingTablet'     => '',
		'labelLetterSpacingMobile'     => '',
		// Separator Styles.
		'separatorFontFamily'          => '',
		'separatorFontWeight'          => '',
		'separatorFontStyle'           => '',
		'separatorFontSize'            => '',
		'separatorColor'               => '',
		'separatorFontSizeType'        => 'px',
		'separatorFontSizeTypeTablet'  => 'px',
		'separatorFontSizeTypeMobile'  => 'px',
		'separatorFontSizeMobile'      => '',
		'separatorFontSizeTablet'      => '',
		'separatorLineHeight'          => '',
		'separatorLineHeightType'      => 'em',
		'separatorLineHeightMobile'    => '',
		'separatorLineHeightTablet'    => '',
		'separatorRightSpacing'        => 26,
		'separatorRightSpacingTablet'  => 14,
		'separatorRightSpacingMobile'  => 12,
		'separatorTopSpacing'          => '',
		'separatorTopSpacingTablet'    => '',
		'separatorTopSpacingMobile'    => '',
		// Block Margin.
		'blockTopMargin'               => '',
		'blockRightMargin'             => '',
		'blockLeftMargin'              => '',
		'blockBottomMargin'            => '',
		'blockTopMarginTablet'         => '',
		'blockRightMarginTablet'       => '',
		'blockLeftMarginTablet'        => '',
		'blockBottomMarginTablet'      => '',
		'blockTopMarginMobile'         => '',
		'blockRightMarginMobile'       => '',
		'blockLeftMarginMobile'        => '',
		'blockBottomMarginMobile'      => '',
		'blockMarginUnit'              => 'px',
		'blockMarginUnitTablet'        => 'px',
		'blockMarginUnitMobile'        => 'px',
		// Block Padding.
		'blockTopPadding'              => '',
		'blockRightPadding'            => '',
		'blockLeftPadding'             => '',
		'blockBottomPadding'           => '',
		'blockTopPaddingTablet'        => '',
		'blockRightPaddingTablet'      => '',
		'blockLeftPaddingTablet'       => '',
		'blockBottomPaddingTablet'     => '',
		'blockTopPaddingMobile'        => '',
		'blockRightPaddingMobile'      => '',
		'blockLeftPaddingMobile'       => '',
		'blockBottomPaddingMobile'     => '',
		'blockPaddingUnit'             => 'px',
		'blockPaddingUnitTablet'       => 'px',
		'blockPaddingUnitMobile'       => 'px',
		// Box Padding.
		'boxTopPadding'                => '',
		'boxRightPadding'              => '',
		'boxLeftPadding'               => '',
		'boxBottomPadding'             => '',
		'boxTopPaddingTablet'          => '',
		'boxRightPaddingTablet'        => '',
		'boxLeftPaddingTablet'         => '',
		'boxBottomPaddingTablet'       => '',
		'boxTopPaddingMobile'          => '',
		'boxRightPaddingMobile'        => '',
		'boxLeftPaddingMobile'         => '',
		'boxBottomPaddingMobile'       => '',
		'boxPaddingUnit'               => 'px',
		'boxPaddingUnitTablet'         => 'px',
		'boxPaddingUnitMobile'         => 'px',
		// Box Align.
		'align'                        => 'center',
		'alignTablet'                  => '',
		'alignMobile'                  => '',
		// Box Align.
		'boxAlign'                     => 'center',
		'boxAlignTablet'               => 'center',
		'boxAlignMobile'               => 'center',
		// Box Width.
		'boxWidth'                     => '',
		'boxWidthTablet'               => '',
		'boxWidthMobile'               => '',
		// Square Box.
		'isSquareBox'                  => true,
		// Box Spacing.
		'boxSpacing'                   => 38,
		'boxSpacingTablet'             => 20,
		'boxSpacingMobile'             => 18,
		// Internal Box Spacing - Gap between digits and labels.
		'internalBoxSpacing'           => '',
		'internalBoxSpacingTablet'     => '',
		'internalBoxSpacingMobile'     => '',
		// Box Flex.
		'boxFlex'                      => 'column',
		'boxFlexTablet'                => 'column',
		'boxFlexMobile'                => 'column',
		// Label vertical alignment.
		'labelVerticalAlignment'       => 'center',
		'labelVerticalAlignmentTablet' => '',
		'labelVerticalAlignmentMobile' => '',
		// Box Background.
		'boxBgType'                    => 'transparent',
		'boxBgColor'                   => '',
		// Box - Box Shadow.
		// Box Shadow.
		'useSeparateBoxShadows'        => true,
		'boxShadowColor'               => '#00000070',
		'boxShadowHOffset'             => 0,
		'boxShadowVOffset'             => 0,
		'boxShadowBlur'                => '',
		'boxShadowSpread'              => '',
		'boxShadowPosition'            => '',
		'boxShadowColorHover'          => '',
		'boxShadowHOffsetHover'        => 0,
		'boxShadowVOffsetHover'        => 0,
		'boxShadowBlurHover'           => '',
		'boxShadowSpreadHover'         => '',
		'boxShadowPositionHover'       => '',
		// For Global Block Styles.
		'globalBlockStyleName'         => '',
		'globalBlockStyleId'           => '',
	),
	$additional_attributes,
	$box_border_attribute,
	array(
		'boxBorderStyle' => 'default',
	)
);
PK�][�����Aultimate-addons-for-gutenberg/includes/blocks/countdown/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$block_slug = 'uagb/countdown';
$block_data = array(
	'doc'                 => 'countdown',
	'slug'                => '',
	'admin_categories'    => array( 'creative', 'core' ),
	'link'                => 'countdown',
	'title'               => __( 'Countdown', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'This block allows you to add countdown timers.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'countdown' ),
	'static_dependencies' => array(
		'uagb-countdown-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'uagb-countdown' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'countdown',
	),
);
PK�][}�j�yPyPHultimate-addons-for-gutenberg/includes/blocks/countdown/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$attr = isset( $attr ) ? $attr : array();

UAGB_Block_JS::blocks_countdown_gfont( $attr );

$is_rtl = is_rtl();

$child_selector_type          = $is_rtl ? 'first' : 'last';
$pseudo_element_selector_type = $is_rtl ? 'before' : 'after';

$separator_selector = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:' . $child_selector_type . '-child) .wp-block-uagb-countdown__time::' . $pseudo_element_selector_type;

// On showSeconds disable this selector is used to remove the separator after minutes.
$min_separator_removal_selector = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:' .
$child_selector_type .
'-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-minutes::' .
$pseudo_element_selector_type;

// On showSeconds and showMinutes disable this selector is used to remove the separator after hours.
$hour_separator_removal_selector = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:' .
$child_selector_type .
'-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-hours::' .
$pseudo_element_selector_type;

// On showSeconds, showMinutes and showHours disable this selector is used to remove the separator after days.
$days_separator_removal_selector = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:' .
$child_selector_type .
'-child) .wp-block-uagb-countdown__time.wp-block-uagb-countdown__time-days::' .
$pseudo_element_selector_type;

// Box Border CSS.
$box_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'box' );
$box_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'box', 'tablet' );
$box_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'box', 'mobile' );

// Box Shadow.
$box_shadow_properties       = array(
	'horizontal' => $attr['boxShadowHOffset'],
	'vertical'   => $attr['boxShadowVOffset'],
	'blur'       => $attr['boxShadowBlur'],
	'spread'     => $attr['boxShadowSpread'],
	'color'      => $attr['boxShadowColor'],
	'position'   => $attr['boxShadowPosition'],
);
$box_shadow_hover_properties = array(
	'horizontal' => $attr['boxShadowHOffsetHover'],
	'vertical'   => $attr['boxShadowVOffsetHover'],
	'blur'       => $attr['boxShadowBlurHover'],
	'spread'     => $attr['boxShadowSpreadHover'],
	'color'      => $attr['boxShadowColorHover'],
	'position'   => $attr['boxShadowPositionHover'],
	'alt_color'  => $attr['boxShadowColor'],
);

$box_shadow_css       = UAGB_Block_Helper::generate_shadow_css( $box_shadow_properties );
$box_shadow_hover_css = UAGB_Block_Helper::generate_shadow_css( $box_shadow_hover_properties );

$m_selectors = array();
$t_selectors = array();

$selectors = array(

	'.wp-block-uagb-countdown' => array(
		'justify-content' => $attr['align'],
		'margin-top'      => UAGB_Helper::get_css_value( $attr['blockTopMargin'], $attr['blockMarginUnit'] ),
		'margin-right'    => UAGB_Helper::get_css_value( $attr['blockRightMargin'], $attr['blockMarginUnit'] ),
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['blockBottomMargin'], $attr['blockMarginUnit'] ),
		'margin-left'     => UAGB_Helper::get_css_value( $attr['blockLeftMargin'], $attr['blockMarginUnit'] ),
		'padding-top'     => UAGB_Helper::get_css_value( $attr['blockTopPadding'], $attr['blockPaddingUnit'] ),
		'padding-right'   => UAGB_Helper::get_css_value( $attr['blockRightPadding'], $attr['blockPaddingUnit'] ),
		'padding-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomPadding'], $attr['blockPaddingUnit'] ),
		'padding-left'    => UAGB_Helper::get_css_value( $attr['blockLeftPadding'], $attr['blockPaddingUnit'] ),
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box-days' => array(
		'display' => $attr['showDays'] ? '' : 'none',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box-hours' => array(
		'display' => $attr['showHours'] ? '' : 'none',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box-minutes' => array(
		'display' => $attr['showMinutes'] ? '' : 'none',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box-seconds' => array(
		'display' => $attr['showSeconds'] ? '' : 'none',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box' => array_merge(
		array(
			'aspect-ratio'     => $attr['isSquareBox'] ? 1 : 'auto',
			'width'            => UAGB_Helper::get_css_value( $attr['boxWidth'], 'px' ),
			'height'           => $attr['isSquareBox'] ? UAGB_Helper::get_css_value( $attr['boxWidth'], 'px' ) : 'auto',
			'flex-direction'   => $attr['boxFlex'],
			'justify-content'  => ( 'column' !== $attr['boxFlex'] ) ? $attr['boxAlign'] : 'center',
			'align-items'      => ( 'row' !== $attr['boxFlex'] ) ? $attr['boxAlign'] : 'center',
			'background-color' => ( 'transparent' !== $attr['boxBgType'] ) ? $attr['boxBgColor'] : 'transparent',
			'padding-top'      => UAGB_Helper::get_css_value( $attr['boxTopPadding'], $attr['boxPaddingUnit'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $attr['boxRightPadding'], $attr['boxPaddingUnit'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $attr['boxBottomPadding'], $attr['boxPaddingUnit'] ),
			'padding-left'     => UAGB_Helper::get_css_value( $attr['boxLeftPadding'], $attr['boxPaddingUnit'] ),
			'row-gap'          => UAGB_Helper::get_css_value( $attr['internalBoxSpacing'], 'px' ),
			'column-gap'       => UAGB_Helper::get_css_value( $attr['internalBoxSpacing'], 'px' ),
			'box-shadow'       => $box_shadow_css,
		),
		$box_border_css
	),

	'.wp-block-uagb-countdown:hover .wp-block-uagb-countdown__box' => array(
		'border-color' => $attr['boxBorderHColor'],
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)' => array(
		'margin-right' => $attr['showSeconds'] ? UAGB_Helper::get_css_value( $attr['boxSpacing'], 'px' ) : 'unset',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)' => array(
		'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacing'], 'px' ) : 'unset',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)' => array(
		'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] || $attr['showHours'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacing'], 'px' ) : 'unset',
	),

	'.wp-block-uagb-countdown .wp-block-uagb-countdown__time' => array(
		'font-family'     => $attr['digitFontFamily'],
		'font-style'      => $attr['digitFontStyle'],
		'text-decoration' => $attr['digitDecoration'],
		'font-weight'     => $attr['digitFontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['digitFontSize'], $attr['digitFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['digitLineHeight'], $attr['digitLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['digitLetterSpacing'], $attr['digitLetterSpacingType'] ),
		'color'           => $attr['digitColor'],
	),

	'.wp-block-uagb-countdown div.wp-block-uagb-countdown__label' => array(
		'align-self'      => ( ! $attr['isSquareBox'] && ( 'row' === $attr['boxFlex'] ) ) ? $attr['labelVerticalAlignment'] : 'unset',
		'font-family'     => $attr['labelFontFamily'],
		'font-style'      => $attr['labelFontStyle'],
		'text-decoration' => $attr['labelDecoration'],
		'text-transform'  => $attr['labelTransform'],
		'font-weight'     => $attr['labelFontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['labelLetterSpacing'], $attr['labelLetterSpacingType'] ),
		'color'           => $attr['labelColor'],
	),

);

// If using separate box shadow hover settings, then generate CSS for it.
if ( $attr['useSeparateBoxShadows'] ) {
	$selectors['.wp-block-uagb-countdown:hover .wp-block-uagb-countdown__box']['box-shadow'] = $box_shadow_hover_css;
}

// TABLET SELECTORS.

$t_selectors['.wp-block-uagb-countdown'] = array(
	'justify-content' => $attr['alignTablet'],
	'margin-top'      => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-right'    => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-bottom'   => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-left'     => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'padding-top'     => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'   => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'    => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
);

$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box'] = array_merge(
	array(
		'width'           => UAGB_Helper::get_css_value( $attr['boxWidthTablet'], 'px' ),
		'height'          => $attr['isSquareBox'] ? UAGB_Helper::get_css_value( $attr['boxWidthTablet'], 'px' ) : 'auto',
		'flex-direction'  => $attr['boxFlexTablet'],
		'justify-content' => ( 'column' !== $attr['boxFlexTablet'] ) ? $attr['boxAlignTablet'] : 'center',
		'align-items'     => ( 'row' !== $attr['boxFlexTablet'] ) ? $attr['boxAlignTablet'] : 'center',
		'padding-top'     => UAGB_Helper::get_css_value( $attr['boxTopPaddingTablet'], $attr['boxPaddingUnitTablet'] ),
		'padding-right'   => UAGB_Helper::get_css_value( $attr['boxRightPaddingTablet'], $attr['boxPaddingUnitTablet'] ),
		'padding-bottom'  => UAGB_Helper::get_css_value( $attr['boxBottomPaddingTablet'], $attr['boxPaddingUnitTablet'] ),
		'padding-left'    => UAGB_Helper::get_css_value( $attr['boxLeftPaddingTablet'], $attr['boxPaddingUnitTablet'] ),
		'row-gap'         => UAGB_Helper::get_css_value( $attr['internalBoxSpacingTablet'], 'px' ),
		'column-gap'      => UAGB_Helper::get_css_value( $attr['internalBoxSpacingTablet'], 'px' ),
	),
	$box_border_css_tablet
);

$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)'] = array(
	'margin-right' => $attr['showSeconds'] ? UAGB_Helper::get_css_value( $attr['boxSpacingTablet'], 'px' ) : 'unset',
);

$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)'] = array(
	'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacingTablet'], 'px' ) : 'unset',
);

$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)'] = array(
	'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] || $attr['showHours'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacingTablet'], 'px' ) : 'unset',
);

$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__time'] = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['digitFontSizeTablet'], $attr['digitFontSizeTypeTablet'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['digitLineHeightTablet'], $attr['digitLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['digitLetterSpacingTablet'], $attr['digitLetterSpacingType'] ),
);

$t_selectors['.wp-block-uagb-countdown div.wp-block-uagb-countdown__label'] = array(
	'align-self'     => ( ! $attr['isSquareBox'] && ( 'row' === $attr['boxFlexTablet'] ) ) ? $attr['labelVerticalAlignmentTablet'] : 'unset',
	'font-size'      => UAGB_Helper::get_css_value( $attr['labelFontSizeTablet'], $attr['labelFontSizeTypeTablet'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['labelLineHeightTablet'], $attr['labelLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['labelLetterSpacingTablet'], $attr['labelLetterSpacingType'] ),
);

// MOBILE SELECTORS.

$m_selectors['.wp-block-uagb-countdown'] = array(
	'justify-content' => $attr['alignMobile'],
	'margin-top'      => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-right'    => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-bottom'   => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-left'     => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'padding-top'     => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'   => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'    => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
);

$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box'] = array_merge(
	array(
		'width'           => UAGB_Helper::get_css_value( $attr['boxWidthMobile'], 'px' ),
		'height'          => $attr['isSquareBox'] ? UAGB_Helper::get_css_value( $attr['boxWidthMobile'], 'px' ) : 'auto',
		'flex-direction'  => $attr['boxFlexMobile'],
		'justify-content' => ( 'column' !== $attr['boxFlexMobile'] ) ? $attr['boxAlignMobile'] : 'center',
		'align-items'     => ( 'row' !== $attr['boxFlexMobile'] ) ? $attr['boxAlignMobile'] : 'center',
		'padding-top'     => UAGB_Helper::get_css_value( $attr['boxTopPaddingMobile'], $attr['boxPaddingUnitMobile'] ),
		'padding-right'   => UAGB_Helper::get_css_value( $attr['boxRightPaddingMobile'], $attr['boxPaddingUnitMobile'] ),
		'padding-bottom'  => UAGB_Helper::get_css_value( $attr['boxBottomPaddingMobile'], $attr['boxPaddingUnitMobile'] ),
		'padding-left'    => UAGB_Helper::get_css_value( $attr['boxLeftPaddingMobile'], $attr['boxPaddingUnitMobile'] ),
		'row-gap'         => UAGB_Helper::get_css_value( $attr['internalBoxSpacingMobile'], 'px' ),
		'column-gap'      => UAGB_Helper::get_css_value( $attr['internalBoxSpacingMobile'], 'px' ),
	),
	$box_border_css_mobile
);

$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-minutes:not(:last-child)'] = array(
	'margin-right' => $attr['showSeconds'] ? UAGB_Helper::get_css_value( $attr['boxSpacingMobile'], 'px' ) : 'unset',
);

$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-hours:not(:last-child)'] = array(
	'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacingMobile'], 'px' ) : 'unset',
);

$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box.wp-block-uagb-countdown__box-days:not(:last-child)'] = array(
	'margin-right' => ( $attr['showSeconds'] || $attr['showMinutes'] || $attr['showHours'] ) ? UAGB_Helper::get_css_value( $attr['boxSpacingMobile'], 'px' ) : 'unset',
);

$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__time'] = array(
	'font-size'      => UAGB_Helper::get_css_value( $attr['digitFontSizeMobile'], $attr['digitFontSizeTypeMobile'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['digitLineHeightMobile'], $attr['digitLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['digitLetterSpacingMobile'], $attr['digitLetterSpacingType'] ),
);

$m_selectors['.wp-block-uagb-countdown div.wp-block-uagb-countdown__label'] = array(
	'align-self'     => ( ! $attr['isSquareBox'] && ( 'row' === $attr['boxFlexMobile'] ) ) ? $attr['labelVerticalAlignmentMobile'] : 'unset',
	'font-size'      => UAGB_Helper::get_css_value( $attr['labelFontSizeMobile'], $attr['labelFontSizeTypeMobile'] ),
	'line-height'    => UAGB_Helper::get_css_value( $attr['labelLineHeightMobile'], $attr['labelLineHeightType'] ),
	'letter-spacing' => UAGB_Helper::get_css_value( $attr['labelLetterSpacingMobile'], $attr['labelLetterSpacingType'] ),
);

if ( true === $attr['showSeparator'] ) {

	$selectors[ $separator_selector ] = array(
		'content'     => $attr['separatorType'] ? "'" . $attr['separatorType'] . "'" : '',
		'font-family' => $attr['separatorFontFamily'],
		'font-style'  => $attr['separatorFontStyle'],
		'font-weight' => $attr['separatorFontWeight'],
		'font-size'   => UAGB_Helper::get_css_value( $attr['separatorFontSize'], $attr['separatorFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['separatorLineHeight'], $attr['separatorLineHeightType'] ),
		'color'       => $attr['separatorColor'],
		'right'       => is_int( $attr['separatorRightSpacing'] ) ? UAGB_Helper::get_css_value( -$attr['separatorRightSpacing'], 'px' ) : '',
		'top'         => UAGB_Helper::get_css_value( $attr['separatorTopSpacing'], 'px' ),
	);

	$selectors[ $min_separator_removal_selector ] = array(
		'display' => $attr['showSeconds'] ? '' : 'none',
	);

	$selectors[ $hour_separator_removal_selector ] = array(
		'display' => ( $attr['showMinutes'] || $attr['showSeconds'] ) ? '' : 'none',
	);

	$selectors[ $days_separator_removal_selector ] = array(
		'display' => ( $attr['showHours'] || $attr['showMinutes'] || $attr['showSeconds'] ) ? '' : 'none',
	);

	$t_selectors[ $separator_selector ] = array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['separatorFontSizeTablet'], $attr['separatorFontSizeTypeTablet'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['separatorLineHeightTablet'], $attr['separatorLineHeightType'] ),
		'right'       => is_int( $attr['separatorRightSpacingTablet'] ) ? UAGB_Helper::get_css_value( -$attr['separatorRightSpacingTablet'], 'px' ) : '',
		'top'         => UAGB_Helper::get_css_value( $attr['separatorTopSpacingTablet'], 'px' ),
	);

	$m_selectors[ $separator_selector ] = array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['separatorFontSizeMobile'], $attr['separatorFontSizeTypeMobile'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['separatorLineHeightMobile'], $attr['separatorLineHeightType'] ),
		'right'       => is_int( $attr['separatorRightSpacingMobile'] ) ? UAGB_Helper::get_css_value( -$attr['separatorRightSpacingMobile'], 'px' ) : '',
		'top'         => UAGB_Helper::get_css_value( $attr['separatorTopSpacingMobile'], 'px' ),
	);
}

// RTL support for box gap.
if ( $is_rtl ) {
	$boxGapSelectorLTR = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:last-child)';
	$boxGapSelectorRTL = '.wp-block-uagb-countdown .wp-block-uagb-countdown__box:not(:first-child)';

	$selectors[ $boxGapSelectorLTR ]['margin-right']   = 'unset';
	$t_selectors[ $boxGapSelectorLTR ]['margin-right'] = 'unset';
	$m_selectors[ $boxGapSelectorLTR ]['margin-right'] = 'unset';

	$selectors[ $boxGapSelectorRTL ]['margin-right']   = UAGB_Helper::get_css_value( $attr['boxSpacing'], 'px' );
	$t_selectors[ $boxGapSelectorRTL ]['margin-right'] = UAGB_Helper::get_css_value( $attr['boxSpacingTablet'], 'px' );
	$m_selectors[ $boxGapSelectorRTL ]['margin-right'] = UAGB_Helper::get_css_value( $attr['boxSpacingMobile'], 'px' );
}


if ( ! empty( $attr['globalBlockStyleId'] ) && empty( $attr['isSquareBox'] ) ) {
	
	$selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['aspect-ratio'] = '';
	$selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['height']       = '';

	// For Tablet.
	$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['aspect-ratio'] = '';
	$t_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['height']       = '';

	// For Mobile.
	$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['aspect-ratio'] = '';
	$m_selectors['.wp-block-uagb-countdown .wp-block-uagb-countdown__box']['height']       = '';
}

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'countdown',
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr 
);

$base_selector = '.uagb-block-';

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	$base_selector . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][�'a^^Gultimate-addons-for-gutenberg/includes/blocks/countdown/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;

$countdown_options = apply_filters(
	'uagb_countdown_options',
	array(
		'block_id'       => $attr['block_id'],
		'endDateTime'    => $attr['endDateTime'],
		'showDays'       => $attr['showDays'],
		'showHours'      => $attr['showHours'],
		'showMinutes'    => $attr['showMinutes'],
		'isFrontend'     => true,
		'timerEndAction' => $attr['timerEndAction'],
		'redirectURL'    => $attr['redirectURL'],
	),
	$id,
	$attr
);

ob_start();
?>
window.addEventListener( 'load', function() {
	UAGBCountdown.init( '<?php echo esc_attr( $selector ); ?>', <?php echo wp_json_encode( $countdown_options ); ?> );
});
<?php
$dynamic_js = apply_filters( 'spectra_countdown_frontend_dynamic_js', ob_get_clean(), $selector, $countdown_options );
return $dynamic_js;
?>
PK�][O�$��=ultimate-addons-for-gutenberg/includes/blocks/forms/error_lognu�[���[27-Oct-2025 03:54:11 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/attributes.php on line 10
[27-Oct-2025 05:10:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/block.php on line 16
[27-Oct-2025 05:29:24 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/frontend.js.php on line 10
[27-Oct-2025 05:29:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function get_the_ID() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/frontend.js.php:11
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms/frontend.js.php on line 11
PK�][4e��*�*Bultimate-addons-for-gutenberg/includes/blocks/forms/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$success_message_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'successMsg' );
$failed_message_border_attribute  = UAGB_Block_Helper::uag_generate_border_attribute( 'errorMsg' );
$input_border_attribute           = UAGB_Block_Helper::uag_generate_border_attribute( 'field' );
$toggle_border_attribute          = UAGB_Block_Helper::uag_generate_border_attribute( 'checkBoxToggle' );
$submit_border_attribute          = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$inherit_from_theme               = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

return array_merge(
	array(
		'block_id'                       => '',
		'formPaddingTop'                 => 25,
		'formPaddingRight'               => 25,
		'formPaddingBottom'              => 25,
		'formPaddingLeft'                => 25,
		'formPaddingTopTab'              => 25,
		'formPaddingRightTab'            => 25,
		'formPaddingBottomTab'           => 25,
		'formPaddingLeftTab'             => 25,
		'formPaddingTopMob'              => 25,
		'formPaddingRightMob'            => 25,
		'formPaddingBottomMob'           => 25,
		'formPaddingLeftMob'             => 25,
		'formPaddingUnit'                => 'px',
		'formPaddingUnitTab'             => 'px',
		'formPaddingUnitMob'             => 'px',
		'submitButtonText'               => __( 'Submit', 'ultimate-addons-for-gutenberg' ),
		'formLabel'                      => __( 'Spectra Form', 'ultimate-addons-for-gutenberg' ),
		'buttonAlign'                    => 'left',
		'buttonAlignTablet'              => '',
		'buttonAlignMobile'              => '',
		'confirmationType'               => 'message',
		'confirmationMessage'            => __( 'The form has been submitted Successfully!', 'ultimate-addons-for-gutenberg' ),
		'confirmationUrl'                => '',
		'buttonSize'                     => 'medium',
		'submitColor'                    => '',
		'submitBgType'                   => 'color',
		'submitBgHoverType'              => 'color',
		'submitColorHover'               => '',
		'submitBgColor'                  => '',
		'submitBgColorHover'             => '',
		'toggleSize'                     => 15,
		'toggleSizeTablet'               => '',
		'toggleSizeMobile'               => '',
		'toggleColor'                    => '#ffffff',
		'toggleActiveColor'              => '#017cba',
		'toggleDotColor'                 => '#1e1e1e',
		'toggleDotActiveColor'           => '#ffffff',
		'toggleWidthSize'                => 0,
		'toggleWidthSizeTablet'          => '',
		'toggleWidthSizeMobile'          => '',
		'toggleHeightSize'               => 0,
		'toggleHeightSizeTablet'         => 0,
		'toggleHeightSizeMobile'         => 0,
		'vPaddingSubmit'                 => '',
		'hPaddingSubmit'                 => '',
		'submitTextloadGoogleFonts'      => false,
		'sendAfterSubmitEmail'           => true,
		'afterSubmitToEmail'             => '',
		'afterSubmitBccEmail'            => '',
		'afterSubmitCcEmail'             => '',
		'afterSubmitEmailSubject'        => __( 'Form Submission', 'ultimate-addons-for-gutenberg' ),
		'submitTextFontFamily'           => 'Default',
		'submitTextFontWeight'           => '',
		'submitTextFontSize'             => 15,
		'submitTextFontSizeType'         => 'px',
		'submitTextFontSizeTablet'       => 15,
		'submitTextFontSizeMobile'       => 15,
		'submitTextLineHeight'           => '',
		'submitTextLineHeightType'       => 'em',
		'submitTextLineHeightTablet'     => '',
		'submitTextLineHeightMobile'     => '',
		'labelloadGoogleFonts'           => false,
		'labelFontFamily'                => 'Default',
		'labelFontWeight'                => '',
		'labelFontSize'                  => 15,
		'labelFontSizeType'              => 'px',
		'labelFontSizeTablet'            => 15,
		'labelFontSizeMobile'            => 15,
		'labelLineHeight'                => '',
		'labelLineHeightType'            => 'em',
		'labelLineHeightTablet'          => '',
		'labelLineHeightMobile'          => '',
		'inputloadGoogleFonts'           => false,
		'inputFontFamily'                => 'Default',
		'inputFontWeight'                => '',
		'inputFontSize'                  => '',
		'inputFontSizeType'              => 'px',
		'inputFontSizeTablet'            => '',
		'inputFontSizeMobile'            => '',
		'inputLineHeight'                => '',
		'inputLineHeightType'            => 'em',
		'inputLineHeightTablet'          => '',
		'inputLineHeightMobile'          => '',
		'labelColor'                     => '',
		'labelHoverColor'                => '',
		'inputColor'                     => '',
		'bgColor'                        => '',
		'bgHoverColor'                   => '',
		'bgActiveColor'                  => '',
		'inputplaceholderColor'          => '',
		'inputplaceholderHoverColor'     => '',
		'inputplaceholderActiveColor'    => '',
		'inputactiveColor'               => '',
		'vPaddingField'                  => 10,
		'hPaddingField'                  => 10,
		'fieldGap'                       => 20,
		'fieldGapTablet'                 => '',
		'fieldGapMobile'                 => '',
		'formStyle'                      => 'boxed',
		'overallAlignment'               => 'left',
		'overallAlignmentTablet'         => '',
		'overallAlignmentMobile'         => '',
		'labelAlignment'                 => null,
		'labelAlignmentTablet'           => '',
		'labelAlignmentMobile'           => '',
		'successMessageTextColor'        => '',
		'successMessageBGColor'          => '',
		'failedMessage'                  => __( 'There has been some error while submitting the form. Please verify all form fields again.', 'ultimate-addons-for-gutenberg' ),
		'failedMessageTextColor'         => '',
		'failedMessageBGColor'           => '',
		'reCaptchaEnable'                => false,
		'reCaptchaType'                  => 'v2',
		'reCaptchaSiteKeyV2'             => '',
		'reCaptchaSecretKeyV2'           => '',
		'reCaptchaSiteKeyV3'             => '',
		'reCaptchaSecretKeyV3'           => '',
		'hidereCaptchaBatch'             => false,
		'paddingBtnTopTablet'            => '',
		'paddingBtnRightTablet'          => '',
		'paddingBtnBottomTablet'         => '',
		'paddingBtnLeftTablet'           => '',
		'paddingBtnTopMobile'            => '',
		'paddingBtnRightMobile'          => '',
		'paddingBtnBottomMobile'         => '',
		'paddingBtnLeftMobile'           => '',
		'paddingBtnUnit'                 => 'px',
		'mobilePaddingBtnUnit'           => 'px',
		'tabletPaddingBtnUnit'           => 'px',
		'submitTextTransform'            => '',
		'submitTextDecoration'           => '',
		'submitTextFontStyle'            => '',
		'labelTransform'                 => '',
		'labelDecoration'                => '',
		'labelFontStyle'                 => '',
		'inputTransform'                 => '',
		'inputDecoration'                => '',
		'inputFontStyle'                 => '',
		'fieldGapType'                   => 'px',
		'paddingFieldTop'                => 12,
		'paddingFieldRight'              => 12,
		'paddingFieldBottom'             => 12,
		'paddingFieldLeft'               => 12,
		'paddingFieldTopTablet'          => '',
		'paddingFieldRightTablet'        => '',
		'paddingFieldBottomTablet'       => '',
		'paddingFieldLeftTablet'         => '',
		'paddingFieldTopMobile'          => '',
		'paddingFieldRightMobile'        => '',
		'paddingFieldBottomMobile'       => '',
		'paddingFieldLeftMobile'         => '',
		'paddingFieldUnit'               => 'px',
		'paddingFieldUnitmobile'         => 'px',
		'paddingFieldUnitTablet'         => 'px',
		'toggleSizeType'                 => 'px',
		'captchaMessage'                 => __( 'Please fill up the above captcha.', 'ultimate-addons-for-gutenberg' ),
		'labelGap'                       => 10,
		'labelGapTablet'                 => '',
		'labelGapMobile'                 => '',
		'labelGapUnit'                   => 'px',
		'displayLabels'                  => true,
		'submitTextLetterSpacing'        => '',
		'submitTextLetterSpacingTablet'  => '',
		'submitTextLetterSpacingMobile'  => '',
		'submitTextLetterSpacingType'    => 'px',
		'inputLetterSpacing'             => '',
		'inputLetterSpacingTablet'       => '',
		'inputLetterSpacingMobile'       => '',
		'inputLetterSpacingType'         => 'px',
		'labelLetterSpacing'             => '',
		'labelLetterSpacingTablet'       => '',
		'labelLetterSpacingMobile'       => '',
		'labelLetterSpacingType'         => 'px',
		'inputborderStyle'               => 'solid',
		'inputborderWidth'               => 1,
		'inputborderRadius'              => 3,
		'inputborderColor'               => '#BDBDBD',
		'inputborderHoverColor'          => '',
		'successMessageborderStyle'      => 'solid',
		'successMessageborderWidth'      => 2,
		'successMessageborderRadius'     => 3,
		'successMessageborderColor'      => 'green',
		'successMessageborderHoverColor' => '',
		'submitborderStyle'              => '',
		'submitborderWidth'              => '',
		'submitborderRadius'             => 3,
		'submitborderColor'              => '',
		'submitborderHoverColor'         => '',
		'gradientValue'                  => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
		'gradientColor1'                 => '#06558a',
		'gradientColor2'                 => '#0063A1',
		'gradientType'                   => 'linear',
		'gradientLocation1'              => 0,
		'gradientLocationTablet1'        => '',
		'gradientLocationMobile1'        => '',
		'gradientLocation2'              => 100,
		'gradientLocationTablet2'        => '',
		'gradientLocationMobile2'        => '',
		'gradientAngle'                  => 0,
		'gradientAngleTablet'            => '',
		'gradientAngleMobile'            => '',
		'selectGradient'                 => 'basic',
		'gradientHValue'                 => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
		'gradientHColor1'                => '#06558a',
		'gradientHColor2'                => '#0170b9',
		'gradientHType'                  => 'linear',
		'gradientHLocation1'             => 0,
		'gradientHLocationTablet1'       => '',
		'gradientHLocationMobile1'       => '',
		'gradientHLocation2'             => 100,
		'gradientHLocationTablet2'       => '',
		'gradientHLocationMobile2'       => '',
		'gradientHAngle'                 => 0,
		'gradientHAngleTablet'           => '',
		'gradientHAngleMobile'           => '',
		'selectHGradient'                => 'default',
		'inheritFromTheme'               => $inherit_from_theme,
	),
	$success_message_border_attribute,
	$failed_message_border_attribute,
	$input_border_attribute,
	$toggle_border_attribute,
	$submit_border_attribute
);
PK�][o?SS=ultimate-addons-for-gutenberg/includes/blocks/forms/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms';
$block_data = array(
	'slug'                => '',
	'admin_categories'    => array( 'form' ),
	'link'                => 'forms',
	'doc'                 => 'uag-forms-block',
	'title'               => __( 'Form', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Add easily customizable forms to gather information.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'forms' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-forms-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'forms' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'forms',
	),
);
PK�][=Bv:�:�Dultimate-addons-for-gutenberg/includes/blocks/forms/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined elsewhere.
 *
 * @var mixed[] $attr
 */

// Adds Fonts.
UAGB_Block_JS::blocks_forms_gfont( $attr );

$selectors   = array();
$m_selectors = array();
$t_selectors = array();

$btnPaddingTop    = isset( $attr['paddingBtnTop'] ) ? $attr['paddingBtnTop'] : $attr['vPaddingSubmit'];
$btnPaddingBottom = isset( $attr['paddingBtnBottom'] ) ? $attr['paddingBtnBottom'] : $attr['vPaddingSubmit'];
$btnPaddingLeft   = isset( $attr['paddingBtnLeft'] ) ? $attr['paddingBtnLeft'] : $attr['hPaddingSubmit'];
$btnPaddingRight  = isset( $attr['paddingBtnRight'] ) ? $attr['paddingBtnRight'] : $attr['hPaddingSubmit'];

$paddingFieldTop    = isset( $attr['paddingFieldTop'] ) ? $attr['paddingFieldTop'] : $attr['vPaddingField'];
$paddingFieldBottom = isset( $attr['paddingFieldBottom'] ) ? $attr['paddingFieldBottom'] : $attr['vPaddingField'];
$paddingFieldLeft   = isset( $attr['paddingFieldLeft'] ) ? $attr['paddingFieldLeft'] : $attr['hPaddingField'];
$paddingFieldRight  = isset( $attr['paddingFieldRight'] ) ? $attr['paddingFieldRight'] : $attr['hPaddingField'];

$toggle_size_number_tablet = is_numeric( $attr['toggleSizeTablet'] ) ? $attr['toggleSizeTablet'] : $attr['toggleSize'];
$toggle_size_number_mobile = is_numeric( $attr['toggleSizeMobile'] ) ? $attr['toggleSizeMobile'] : $toggle_size_number_tablet;

$toggle_width_size_number_tablet = is_numeric( $attr['toggleWidthSizeTablet'] ) ? $attr['toggleWidthSizeTablet'] : $attr['toggleWidthSize'];
$toggle_width_size_number_mobile = is_numeric( $attr['toggleWidthSizeMobile'] ) ? $attr['toggleWidthSizeMobile'] : $toggle_width_size_number_tablet;

$input_overall_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'field' );
$input_overall_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$input_overall_border,
	( isset( $attr['inputborderWidth'] ) ? $attr['inputborderWidth'] : '' ),
	( isset( $attr['inputborderRadius'] ) ? $attr['inputborderRadius'] : '' ),
	( isset( $attr['inputborderColor'] ) ? $attr['inputborderColor'] : '' ),
	( isset( $attr['inputborderStyle'] ) ? $attr['inputborderStyle'] : '' )
);
$input_overall_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'field', 'tablet' );
$input_overall_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'field', 'mobile' );
$input_underline_border      = ( isset( $attr['fieldBorderBottomWidth'] ) ? UAGB_Helper::get_css_value( $attr['fieldBorderBottomWidth'], 'px' ) : '' );

$success_message_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'successMsg' );
$success_message_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$success_message_border,
	( isset( $attr['successMessageBorderWidth'] ) ? $attr['successMessageBorderWidth'] : '' ),
	( isset( $attr['successMessageBorderRadius'] ) ? $attr['successMessageBorderRadius'] : '' ),
	( isset( $attr['successMessageBorderColor'] ) ? $attr['successMessageBorderColor'] : '' ),
	( isset( $attr['successMessageBorderStyle'] ) ? $attr['successMessageBorderStyle'] : '' )
);
$success_message_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'successMsg', 'tablet' );
$success_message_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'successMsg', 'mobile' );

$failed_message_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'errorMsg' );
$failed_message_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$failed_message_border,
	( isset( $attr['failedMessageBorderWidth'] ) ? $attr['failedMessageBorderWidth'] : '' ),
	( isset( $attr['failedMessageBorderRadius'] ) ? $attr['failedMessageBorderRadius'] : '' ),
	( isset( $attr['failedMessageBorderColor'] ) ? $attr['failedMessageBorderColor'] : '' ),
	( isset( $attr['failedMessageBorderStyle'] ) ? $attr['failedMessageBorderStyle'] : '' )
);
$failed_message_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'errorMsg', 'tablet' );
$failed_message_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'errorMsg', 'mobile' );

$toggle_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'checkBoxToggle' );
$toggle_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$toggle_border,
	( isset( $attr['inputborderWidth'] ) ? $attr['inputborderWidth'] : '' ),
	( isset( $attr['inputborderRadius'] ) ? $attr['inputborderRadius'] : '' ),
	( isset( $attr['inputborderColor'] ) ? $attr['inputborderColor'] : '' ),
	( isset( $attr['inputborderStyle'] ) ? $attr['inputborderStyle'] : '' )
);
$toggle_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'checkBoxToggle', 'tablet' );
$toggle_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'checkBoxToggle', 'mobile' );

// Individual Toggle Border Width Fallback for Math Calculations.
$toggle_border_top_tablet_fallback    = isset( $toggle_border_tablet['border-top-width'] ) ? ( ! empty( $toggle_border_tablet['border-top-width'] ) ? $toggle_border_tablet['border-top-width'] : $toggle_border['border-top-width'] ) : $toggle_border['border-top-width'];
$toggle_border_left_tablet_fallback   = isset( $toggle_border_tablet['border-left-width'] ) ? ( ! empty( $toggle_border_tablet['border-left-width'] ) ? $toggle_border_tablet['border-left-width'] : $toggle_border['border-left-width'] ) : $toggle_border['border-left-width'];
$toggle_border_right_tablet_fallback  = isset( $toggle_border_tablet['border-right-width'] ) ? ( ! empty( $toggle_border_tablet['border-right-width'] ) ? $toggle_border_tablet['border-right-width'] : $toggle_border['border-right-width'] ) : $toggle_border['border-right-width'];
$toggle_border_bottom_tablet_fallback = isset( $toggle_border_tablet['border-bottom-width'] ) ? ( ! empty( $toggle_border_tablet['border-bottom-width'] ) ? $toggle_border_tablet['border-bottom-width'] : $toggle_border['border-bottom-width'] ) : $toggle_border['border-bottom-width'];
$toggle_border_top_mobile_fallback    = isset( $toggle_border_mobile['border-top-width'] ) ? ( ! empty( $toggle_border_mobile['border-top-width'] ) ? $toggle_border_mobile['border-top-width'] : $toggle_border_top_tablet_fallback ) : $toggle_border_top_tablet_fallback;
$toggle_border_left_mobile_fallback   = isset( $toggle_border_mobile['border-left-width'] ) ? ( ! empty( $toggle_border_mobile['border-left-width'] ) ? $toggle_border_mobile['border-left-width'] : $toggle_border_left_tablet_fallback ) : $toggle_border_left_tablet_fallback;
$toggle_border_right_mobile_fallback  = isset( $toggle_border_mobile['border-right-width'] ) ? ( ! empty( $toggle_border_mobile['border-right-width'] ) ? $toggle_border_mobile['border-right-width'] : $toggle_border_right_tablet_fallback ) : $toggle_border_right_tablet_fallback;
$toggle_border_bottom_mobile_fallback = isset( $toggle_border_mobile['border-bottom-width'] ) ? ( ! empty( $toggle_border_mobile['border-bottom-width'] ) ? $toggle_border_mobile['border-bottom-width'] : $toggle_border_bottom_tablet_fallback ) : $toggle_border_bottom_tablet_fallback;

// Individual Toggle Border Radius Fallback for Inner Dot.
$toggle_border_radius_tl_tablet_fallback = isset( $toggle_border_tablet['border-top-left-radius'] ) ? ( ! empty( $toggle_border_tablet['border-top-left-radius'] ) ? $toggle_border_tablet['border-top-left-radius'] : $toggle_border['border-top-left-radius'] ) : $toggle_border['border-top-left-radius'];
$toggle_border_radius_tr_tablet_fallback = isset( $toggle_border_tablet['border-top-right-radius'] ) ? ( ! empty( $toggle_border_tablet['border-top-right-radius'] ) ? $toggle_border_tablet['border-top-right-radius'] : $toggle_border['border-top-right-radius'] ) : $toggle_border['border-top-right-radius'];
$toggle_border_radius_bl_tablet_fallback = isset( $toggle_border_tablet['border-bottom-left-radius'] ) ? ( ! empty( $toggle_border_tablet['border-bottom-left-radius'] ) ? $toggle_border_tablet['border-bottom-left-radius'] : $toggle_border['border-bottom-left-radius'] ) : $toggle_border['border-bottom-left-radius'];
$toggle_border_radius_br_tablet_fallback = isset( $toggle_border_tablet['border-bottom-right-radius'] ) ? ( ! empty( $toggle_border_tablet['border-bottom-right-radius'] ) ? $toggle_border_tablet['border-bottom-right-radius'] : $toggle_border['border-bottom-right-radius'] ) : $toggle_border['border-bottom-right-radius'];
$toggle_border_radius_tl_mobile_fallback = isset( $toggle_border_mobile['border-top-left-radius'] ) ? ( ! empty( $toggle_border_mobile['border-top-left-radius'] ) ? $toggle_border_mobile['border-top-left-radius'] : $toggle_border_radius_tl_tablet_fallback ) : $toggle_border_radius_tl_tablet_fallback;
$toggle_border_radius_tr_mobile_fallback = isset( $toggle_border_mobile['border-top-right-radius'] ) ? ( ! empty( $toggle_border_mobile['border-top-right-radius'] ) ? $toggle_border_mobile['border-top-right-radius'] : $toggle_border_radius_tr_tablet_fallback ) : $toggle_border_radius_tr_tablet_fallback;
$toggle_border_radius_bl_mobile_fallback = isset( $toggle_border_mobile['border-bottom-left-radius'] ) ? ( ! empty( $toggle_border_mobile['border-bottom-left-radius'] ) ? $toggle_border_mobile['border-bottom-left-radius'] : $toggle_border_radius_bl_tablet_fallback ) : $toggle_border_radius_bl_tablet_fallback;
$toggle_border_radius_br_mobile_fallback = isset( $toggle_border_mobile['border-bottom-right-radius'] ) ? ( ! empty( $toggle_border_mobile['border-bottom-right-radius'] ) ? $toggle_border_mobile['border-bottom-right-radius'] : $toggle_border_radius_br_tablet_fallback ) : $toggle_border_radius_br_tablet_fallback;

$btn_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
$btn_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$btn_border,
	( isset( $attr['submitborderWidth'] ) ? $attr['submitborderWidth'] : '' ),
	( isset( $attr['submitborderRadius'] ) ? $attr['submitborderRadius'] : '' ),
	( isset( $attr['submitborderColor'] ) ? $attr['submitborderColor'] : '' ),
	( isset( $attr['submitborderStyle'] ) ? $attr['submitborderStyle'] : '' )
);
$btn_border_Tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
$btn_border_Mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );

// fallback for forms select field.
$forms_padding_right_mobile_fallback = (int) $attr['paddingFieldRightMobile'] + 30;
$forms_padding_right_tablet_fallback = (int) $attr['paddingFieldRightTablet'] + 30;

$selectors = array(
	'.uagb-forms__outer-wrap'                              => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['formPaddingTop'], $attr['formPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['formPaddingRight'], $attr['formPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['formPaddingBottom'], $attr['formPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['formPaddingLeft'], $attr['formPaddingUnit'] ),
	),
	' .uagb-forms-main-form textarea'                      => array(
		'text-align' => $attr['overallAlignment'],
	),
	' .uagb-forms-input'                                   => array(
		'text-align' => $attr['overallAlignment'],
	),
	' .uagb-forms-input-label'                             => array(
		'display'    => $attr['displayLabels'] ? 'block' : 'none',
		'text-align' => null === $attr['labelAlignment'] ? $attr['overallAlignment'] : $attr['labelAlignment'],
	),
	' .uagb-forms-main-form .uagb-forms-field-set'         => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['fieldGap'], $attr['fieldGapType'] ),
	),
	' .uagb-forms-main-form .uagb-forms-input-label'       => array(
		'color'         => $attr['labelColor'],
		'font-size'     => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['labelGap'], $attr['labelGapUnit'] ),
	),
	' .uagb-forms-success-message'                         => array_merge(
		array(
			'background-color' => $attr['successMessageBGColor'],
			'color'            => $attr['successMessageTextColor'],
		),
		$success_message_border
	),
	' .uagb-forms-success-message:hover'                   => array(
		'border-color' => $attr['successMsgBorderHColor'],
	),
	' .uagb-forms-failed-message'                          => array_merge(
		array(
			'background-color' => $attr['failedMessageBGColor'],
			'color'            => $attr['failedMessageTextColor'],
		),
		$failed_message_border
	),
	' .uagb-forms-failed-message:hover'                    => array(
		'border-color' => $attr['errorMsgBorderHColor'],
	),
	' .uagb-forms-main-form .uagb-forms-input:focus'       => array(
		'outline'          => ' none !important',
		'border-color'     => ! empty( $attr['fieldBorderHColor'] ) ? $attr['fieldBorderHColor'] : $attr['inputborderHoverColor'],
		'background-color' => $attr['bgActiveColor'] . ' !important',
	),
	' .uagb-forms-main-form .uagb-forms-input:focus::placeholder' => array(
		'color' => $attr['inputplaceholderActiveColor'] . ' !important',
	),
	// Hover Colors.
	' .uagb-forms-field-set:hover .uagb-forms-input-label' => array(
		'color' => $attr['labelHoverColor'],
	),
	' .uagb-forms-field-set:hover .uagb-forms-input'       => array(
		'background-color' => $attr['bgHoverColor'],
		'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['submitborderHoverColor'],
	),
	' .uagb-forms-field-set:hover .uagb-forms-input::placeholder' => array(
		'color' => $attr['inputplaceholderHoverColor'],
	),
	' .uagb-slider.round'                                  => array(
		// Important is added to override the usual border radius we set with a completely round one.
		'border-radius' => UAGB_Helper::get_css_value( 20 + $attr['toggleWidthSize'], 'px' ) . ' !important',
	),
	// Drop icon position css.
	// select control color.
	' .uagb-form-phone-country'                            => array(
		'background'          => 'url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9JzE4cHgnIGhlaWdodD0nMThweCcgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIj48cGF0aCBkPSJtMzk2LjYgMTYwIDE5LjQgMjAuN0wyNTYgMzUyIDk2IDE4MC43bDE5LjMtMjAuN0wyNTYgMzEwLjV6IiBmaWxsPSIjMWQyMzI3IiBjbGFzcz0iZmlsbC0wMDAwMDAiPjwvcGF0aD48L3N2Zz4=) no-repeat',
		'-moz-appearance'     => 'none !important',
		'-webkit-appearance'  => ' none !important',
		'background-position' => ' top 50% right ' . UAGB_Helper::get_css_value( $attr['paddingFieldRight'], $attr['paddingFieldUnit'] ),
		'appearance'          => 'none !important',
		'color'               => $attr['inputplaceholderColor'],
	),

	' .uagb-forms-field-set:hover .uagb-form-phone-country' => array(
		'color' => $attr['inputplaceholderHoverColor'],
	),
);

if ( 'full' !== $attr['buttonAlign'] ) {
	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'text-align' => $attr['buttonAlign'],
	);
} else {
	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'display' => 'grid',
	);
}

$t_selectors = array(
	'.uagb-forms__outer-wrap'                        => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['formPaddingTopTab'], $attr['formPaddingUnitTab'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['formPaddingRightTab'], $attr['formPaddingUnitTab'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['formPaddingBottomTab'], $attr['formPaddingUnitTab'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['formPaddingLeftTab'], $attr['formPaddingUnitTab'] ),
	),
	' .uagb-forms-main-form .uagb-forms-field-set'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['fieldGapTablet'], $attr['fieldGapType'] ),
	),
	' .uagb-forms-main-form .uagb-forms-input-label' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['labelGapTablet'], $attr['labelGapUnit'] ),
	),
	' .uagb-slider.round'                            => array(
		// Important is added to override the usual border radius we set with a completely round one.
		'border-radius' => UAGB_Helper::get_css_value( 20 + $toggle_width_size_number_tablet, 'px' ) . ' !important',
	),
	' .uagb-forms-success-message'                   => $success_message_border_tablet,
	' .uagb-forms-failed-message'                    => $failed_message_border_tablet,
	// Drop icon position css.
	' .uagb-form-phone-country'                      => array(
		'background-position' => 'top 50% right ' . UAGB_Helper::get_css_value( $attr['paddingFieldRightTablet'] ? $attr['paddingFieldRightTablet'] : 12, $attr['paddingFieldUnitTablet'] ),
		'padding-right'       => UAGB_Helper::get_css_value( $forms_padding_right_tablet_fallback, $attr['paddingFieldUnitTablet'] ),
	),
	' .uagb-forms-main-form textarea'                => array(
		'text-align' => $attr['overallAlignmentTablet'],
	),
	' .uagb-forms-input'                             => array(
		'text-align' => $attr['overallAlignmentTablet'],
	),
	' .uagb-forms-input-label'                       => array(
		'text-align' => $attr['labelAlignmentTablet'],
	),
);

if ( 'full' !== $attr['buttonAlignTablet'] ) {
	$t_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'text-align' => $attr['buttonAlignTablet'],
	);
} else {
	$t_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'display' => 'grid',
	);
}

$m_selectors = array(
	'.uagb-forms__outer-wrap'                        => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['formPaddingTopMob'], $attr['formPaddingUnitMob'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['formPaddingRightMob'], $attr['formPaddingUnitMob'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['formPaddingBottomMob'], $attr['formPaddingUnitMob'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['formPaddingLeftMob'], $attr['formPaddingUnitMob'] ),
	),
	' .uagb-forms-main-form .uagb-forms-field-set'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['fieldGapMobile'], $attr['fieldGapType'] ),
	),
	' .uagb-forms-main-form .uagb-forms-input-label' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['labelGapMobile'], $attr['labelGapUnit'] ),
	),
	' .uagb-slider.round'                            => array(
		// Important is added to override the usual border radius we set with a completely round one.
		'border-radius' => UAGB_Helper::get_css_value( 20 + $toggle_width_size_number_mobile, 'px' ) . ' !important',
	),
	' .uagb-forms-success-message'                   => $success_message_border_mobile,
	' .uagb-forms-failed-message'                    => $failed_message_border_mobile,

	// Drop icon position css.
	' .uagb-form-phone-country'                      => array(
		'background-position' => 'top 50% right ' . UAGB_Helper::get_css_value( $attr['paddingFieldRightMobile'] ? $attr['paddingFieldRightMobile'] : 6, $attr['paddingFieldUnitmobile'] ),
		'padding-right'       => UAGB_Helper::get_css_value( $forms_padding_right_mobile_fallback, $attr['paddingFieldUnitmobile'] ),
	),
	' .uagb-forms-main-form textarea'                => array(
		'text-align' => $attr['overallAlignmentMobile'],
	),
	' .uagb-forms-input'                             => array(
		'text-align' => $attr['overallAlignmentMobile'],
	),
	' .uagb-forms-input-label'                       => array(
		'text-align' => $attr['labelAlignmentMobile'],
	),
);
if ( 'full' !== $attr['buttonAlignMobile'] ) {
	$m_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'text-align' => $attr['buttonAlignMobile'],
	);
} else {
	$m_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap'] = array(
		'display' => 'grid',
	);
}
// Checkbox Field css.
$selectors[' .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = array(
	'background-color' => $attr['toggleColor'],
	'width'            => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
	'height'           => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
);
$selectors[' .uagb-forms-checkbox-wrap > label']                             = array(
	'color' => $attr['inputColor'],
);

// Radio Button Field css.
$selectors[' .uagb-forms-radio-wrap input[type=radio] + label:before'] = array(
	'background-color' => $attr['toggleColor'],
	'width'            => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
	'height'           => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
);
$selectors[' .uagb-forms-radio-wrap > label']                          = array(
	'color' => $attr['inputColor'],
);

// Toggle Field css.
$selectors[' .uagb-slider']                                     = array(
	'background-color' => $attr['toggleColor'],
);
$selectors[' .uagb-forms-main-form .uagb-switch']               = array(
	'height' => 'calc(' . $toggle_border['border-top-width'] . ' + ' . $toggle_border['border-bottom-width'] . ' + ' . UAGB_Helper::get_css_value(
		(int) ( 20 + $attr['toggleWidthSize'] + ( ( 20 + $attr['toggleWidthSize'] ) / 3 ) ),
		'px'
	) . ')',
	'width'  => 'calc(' . $toggle_border['border-left-width'] . ' + ' . $toggle_border['border-right-width'] . ' + ' . UAGB_Helper::get_css_value(
		(int) ( ( ( 20 + $attr['toggleWidthSize'] ) * 2.5 ) + ( ( 20 + $attr['toggleWidthSize'] ) / 3 ) ),
		'px'
	) . ')',
);
$selectors[' .uagb-forms-main-form .uagb-slider:before']        = array(
	'height'           => UAGB_Helper::get_css_value( 20 + $attr['toggleWidthSize'], 'px' ),
	'width'            => UAGB_Helper::get_css_value( 20 + $attr['toggleWidthSize'], 'px' ),
	'top'              => UAGB_Helper::get_css_value( (int) ( ( 20 + $attr['toggleWidthSize'] ) / 6 ), 'px' ),
	'bottom'           => UAGB_Helper::get_css_value( (int) ( ( 20 + $attr['toggleWidthSize'] ) / 6 ), 'px' ),
	'left'             => UAGB_Helper::get_css_value( (int) ( ( 20 + $attr['toggleWidthSize'] ) / 6 ), 'px' ),
	'background-color' => $attr['toggleDotColor'],
	'border-radius'    => $toggle_border['border-top-left-radius'] . ' ' . $toggle_border['border-top-right-radius'] . ' ' . $toggle_border['border-bottom-right-radius'] . ' ' . $toggle_border['border-bottom-left-radius'],
);
$selectors[' .uagb-switch input:checked + .uagb-slider']        = array(
	'background-color' => $attr['toggleActiveColor'],
	'border-color'     => ! empty( $attr['checkBoxToggleBorderHColor'] ) ? $attr['checkBoxToggleBorderHColor'] : $attr['inputborderHoverColor'],
);
$selectors[' .uagb-switch input:checked + .uagb-slider:before'] = array(
	'transform'        => 'translateX(' . UAGB_Helper::get_css_value(
		(int) ( ( ( ( 20 + $attr['toggleWidthSize'] ) * 2.5 ) - ( 20 + $attr['toggleWidthSize'] ) ) ),
		'px'
	) . ')',
	'background-color' => $attr['toggleDotActiveColor'],
);
$selectors[' .uagb-switch input:focus + .uagb-slider']          = array(
	'box-shadow' => '0 0 1px' . $attr['toggleActiveColor'],
);

// Accept Field css.
$selectors[' .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = array(
	'background-color' => $attr['toggleColor'],
	'width'            => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
	'height'           => UAGB_Helper::get_css_value( $attr['toggleSize'], $attr['toggleSizeType'] ),
);
$selectors[' .uagb-forms-accept-wrap > label']                             = array(
	'color' => $attr['inputColor'],
);

if ( 'boxed' === $attr['formStyle'] ) {
	$selectors[' .uagb-forms-main-form  .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = $toggle_border;
	$selectors[' .uagb-forms-main-form .uagb-forms-checkbox-wrap > input']                              = array(
		'color' => $attr['inputColor'],
	);
	$selectors[' .uagb-forms-main-form  .uagb-forms-radio-wrap input[type=radio] + label:before']       = $toggle_border;
	$selectors[' .uagb-forms-main-form .uagb-forms-radio-wrap > input']                                 = array(
		'color' => $attr['inputColor'],
	);
	$selectors[' .uagb-forms-main-form .uagb-slider'] = $toggle_border;
	$selectors[' .uagb-forms-main-form  .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = $toggle_border;
	$selectors[' .uagb-forms-main-form .uagb-forms-accept-wrap > input']                              = array(
		'color' => $attr['inputColor'],
	);
	$selectors[' .uagb-forms-main-form .uagb-forms-input']                         = array_merge(
		array(
			'background-color' => $attr['bgColor'],
			'color'            => $attr['inputColor'],
		),
		$input_overall_border
	);
	$selectors[' .uagb-forms-main-form .uagb-forms-input.uagb-form-phone-country'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( ( $paddingFieldTop - 1 ), $attr['paddingFieldUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( ( $paddingFieldBottom - 1 ), $attr['paddingFieldUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $paddingFieldLeft, $attr['paddingFieldUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $paddingFieldRight, $attr['paddingFieldUnit'] ),
	);

	$selectors[' .uagb-forms-input:hover']        = array(
		'border-color' => ! empty( $attr['fieldBorderHColor'] ) ? $attr['fieldBorderHColor'] : $attr['inputborderHoverColor'],
	);
	$selectors[' .uagb-forms-input::placeholder'] = array(
		'color' => $attr['inputplaceholderColor'],
	);

	$t_selectors[' .uagb-forms-main-form  .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = $toggle_border_tablet;
	$t_selectors[' .uagb-forms-main-form  .uagb-forms-radio-wrap input[type=radio] + label:before']       = $toggle_border_tablet;
	$t_selectors[' .uagb-forms-main-form .uagb-slider'] = $toggle_border_tablet;
	$t_selectors[' .uagb-forms-main-form  .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = $toggle_border_tablet;
	$t_selectors[' .uagb-forms-main-form .uagb-forms-input'] = $input_overall_border_tablet;

	$m_selectors[' .uagb-forms-main-form  .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = $toggle_border_mobile;
	$m_selectors[' .uagb-forms-main-form  .uagb-forms-radio-wrap input[type=radio] + label:before']       = $toggle_border_mobile;
	$m_selectors[' .uagb-forms-main-form .uagb-slider'] = $toggle_border_mobile;
	$m_selectors[' .uagb-forms-main-form  .uagb-forms-accept-wrap input[type=checkbox] + label:before'] = $toggle_border_mobile;
	$m_selectors[' .uagb-forms-main-form .uagb-forms-input'] = $input_overall_border_mobile;
}

$selectors[' .uagb-forms-main-form  .uagb-forms-input']   = array(
	'padding-top'    => UAGB_Helper::get_css_value( $paddingFieldTop, $attr['paddingFieldUnit'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $paddingFieldBottom, $attr['paddingFieldUnit'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $paddingFieldLeft, $attr['paddingFieldUnit'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $paddingFieldRight, $attr['paddingFieldUnit'] ),
);
$t_selectors[' .uagb-forms-main-form  .uagb-forms-input'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingFieldTopTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingFieldBottomTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingFieldLeftTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingFieldRightTablet'], $attr['paddingFieldUnitTablet'] ),

);
$t_selectors[' .uagb-forms-main-form  .uagb-forms-input.uagb-form-phone-country'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingFieldTopTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingFieldBottomTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingFieldLeftTablet'], $attr['paddingFieldUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingFieldRightTablet'], $attr['paddingFieldUnitTablet'] ),

);
$t_selectors[' .uagb-switch input:checked + .uagb-slider:before']                 = array(
	'transform' => 'translateX(' . UAGB_Helper::get_css_value(
		(int) ( ( ( ( 20 + $toggle_width_size_number_tablet ) * 2.5 ) - ( 20 + $toggle_width_size_number_tablet ) ) ),
		'px'
	) . ')',
);
$m_selectors[' .uagb-forms-main-form  .uagb-forms-input.uagb-form-phone-country'] = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingFieldTopMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingFieldBottomMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingFieldLeftMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingFieldRightMobile'], $attr['paddingFieldUnitmobile'] ),

);
$m_selectors[' .uagb-forms-main-form  .uagb-forms-input']         = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingFieldTopMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingFieldBottomMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingFieldLeftMobile'], $attr['paddingFieldUnitmobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingFieldRightMobile'], $attr['paddingFieldUnitmobile'] ),
);
$m_selectors[' .uagb-switch input:checked + .uagb-slider:before'] = array(
	'transform' => 'translateX(' . UAGB_Helper::get_css_value(
		(int) ( ( ( ( 20 + $toggle_width_size_number_mobile ) * 2.5 ) - ( 20 + $toggle_width_size_number_mobile ) ) ),
		'px'
	) . ')',
);
if ( 'underlined' === $attr['formStyle'] ) {
	$selectors[' .uagb-forms-main-form  .uagb-forms-accept-wrap input[type=checkbox] + label:before']   = array(
		'border-bottom' => UAGB_Helper::get_css_value( $attr['checkBoxToggleBorderBottomWidth'], 'px' ) . ' ' . $attr['checkBoxToggleBorderStyle'] . ' ' . $attr['checkBoxToggleBorderColor'],
	);
	$selectors[' .uagb-forms-main-form  .uagb-forms-checkbox-wrap input[type=checkbox] + label:before'] = array(
		'border-bottom' => UAGB_Helper::get_css_value( $attr['checkBoxToggleBorderBottomWidth'], 'px' ) . ' ' . $attr['checkBoxToggleBorderStyle'] . ' ' . $attr['checkBoxToggleBorderColor'],
	);
	$selectors[' .uagb-forms-main-form .uagb-slider'] = array(
		'border-bottom' => UAGB_Helper::get_css_value( $attr['checkBoxToggleBorderBottomWidth'], 'px' ) . ' ' . $attr['checkBoxToggleBorderStyle'] . ' ' . $attr['checkBoxToggleBorderColor'],
	);
	$selectors[' .uagb-forms-main-form  .uagb-forms-radio-wrap input[type=radio] + label:before'] = array(
		'border-bottom' => UAGB_Helper::get_css_value( $attr['checkBoxToggleBorderBottomWidth'], 'px' ) . ' ' . $attr['checkBoxToggleBorderStyle'] . ' ' . $attr['checkBoxToggleBorderColor'],
	);
	$selectors[' .uagb-forms-main-form  .uagb-forms-input']                                       = array_merge(
		array(
			'border-top'     => 0,
			'border-left'    => 0,
			'border-right'   => 0,
			'outline'        => 0,
			'border-radius'  => 0,
			'background'     => 'transparent',
			'border-bottom'  => UAGB_Helper::get_css_value( $attr['fieldBorderBottomWidth'], 'px' ) . ' ' . $attr['fieldBorderStyle'] . ' ' . $attr['fieldBorderColor'],
			'color'          => $attr['inputColor'],
			'padding-top'    => UAGB_Helper::get_css_value( $paddingFieldTop, $attr['paddingFieldUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $paddingFieldBottom, $attr['paddingFieldUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $paddingFieldLeft, $attr['paddingFieldUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $paddingFieldRight, $attr['paddingFieldUnit'] ),
		),
		$input_overall_border
	);
	$selectors['.uagb-forms__outer-wrap .uagb-forms-main-form  .uagb-forms-input']                = array(
		'border-top-width'    => 0,
		'border-right-width'  => 0,
		'border-left-width'   => 0,
		'border-bottom-width' => $input_underline_border,
	);
	$selectors[' .uagb-forms-input:hover']        = array(
		'border-color' => ! empty( $attr['fieldBorderHColor'] ) ? $attr['fieldBorderHColor'] : $attr['inputborderHoverColor'],
	);
	$selectors[' .uagb-forms-input::placeholder'] = array(
		'color' => $attr['inputplaceholderColor'],
	);
}

// Element Active CSS.
$selectors[' .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before'] = array(
	'color'            => $attr['toggleDotActiveColor'],
	'background-color' => $attr['toggleActiveColor'],
	'border-color'     => $attr['checkBoxToggleBorderHColor'],
	'font-size'        => 'calc(' . $attr['toggleSize'] . $attr['toggleSizeType'] . ' / 1.2)',
);
$selectors[' .uagb-forms-radio-wrap input[type=radio]:checked + label:before']       = array(
	'background-color' => $attr['toggleDotActiveColor'],
	'border-color'     => $attr['checkBoxToggleBorderHColor'],
	'box-shadow'       => 'inset 0 0 0 4px ' . $attr['toggleActiveColor'],
	'font-size'        => 'calc(' . $attr['toggleSize'] . 'px / 1.2)',
);
$selectors[' .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before']   = array(
	'color'            => $attr['toggleDotActiveColor'],
	'background-color' => $attr['toggleActiveColor'],
	'border-color'     => $attr['checkBoxToggleBorderHColor'],
	'font-size'        => 'calc(' . $attr['toggleSize'] . $attr['toggleSizeType'] . ' / 1.2)',
);

// Checkbox Field css.
$t_selectors[' .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_tablet . $attr['toggleSizeType'] . ' / 1.2)',
);
$t_selectors[' .uagb-forms-checkbox-wrap input[type=checkbox] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
);
// Radio Button Field css.
$t_selectors[' .uagb-forms-radio-wrap input[type=radio]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_tablet . 'px / 1.2)',
);
$t_selectors[' .uagb-forms-radio-wrap input[type=radio] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
);
// Accept Field css.
$t_selectors[' .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_tablet . $attr['toggleSizeType'] . ' / 1.2)',
);
$t_selectors[' .uagb-forms-accept-wrap input[type=checkbox] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeTablet'], $attr['toggleSizeType'] ),
);
$t_selectors[' .uagb-forms-main-form .uagb-switch']                                  = array(
	'height' => 'calc(' . $toggle_border_top_tablet_fallback . ' + ' . $toggle_border_bottom_tablet_fallback . ' + ' . UAGB_Helper::get_css_value(
		(int) ( 20 + $toggle_width_size_number_tablet + ( ( 20 + $toggle_width_size_number_tablet ) / 3 ) ),
		'px'
	) . ')',
	'width'  => 'calc(' . $toggle_border_left_tablet_fallback . ' + ' . $toggle_border_right_tablet_fallback . ' + ' . UAGB_Helper::get_css_value(
		(int) ( ( ( 20 + $toggle_width_size_number_tablet ) * 2.5 ) + ( ( 20 + $toggle_width_size_number_tablet ) / 3 ) ),
		'px'
	) . ')',
);
$t_selectors[' .uagb-forms-main-form .uagb-slider:before']                           = array(
	'height'        => 'calc(20px + ' . $toggle_width_size_number_tablet . 'px)',
	'width'         => 'calc(20px + ' . $toggle_width_size_number_tablet . 'px)',
	'top'           => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_tablet ) / 6 ), 'px' ),
	'bottom'        => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_tablet ) / 6 ), 'px' ),
	'left'          => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_tablet ) / 6 ), 'px' ),
	'border-radius' => $toggle_border_radius_tl_tablet_fallback . ' ' . $toggle_border_radius_tr_tablet_fallback . ' ' . $toggle_border_radius_br_tablet_fallback . ' ' . $toggle_border_radius_bl_tablet_fallback,
);

// Checkbox Field css.
$m_selectors[' .uagb-forms-checkbox-wrap input[type=checkbox]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_mobile . $attr['toggleSizeType'] . ' / 1.2)',
);
$m_selectors[' .uagb-forms-checkbox-wrap input[type=checkbox] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
);
// Radio Button Field css.
$m_selectors[' .uagb-forms-radio-wrap input[type=radio]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_mobile . 'px / 1.2)',
);
$m_selectors[' .uagb-forms-radio-wrap input[type=radio] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
);
// Accept Field css.
$m_selectors[' .uagb-forms-accept-wrap input[type=checkbox]:checked + label:before'] = array(
	'font-size' => 'calc(' . $toggle_size_number_mobile . $attr['toggleSizeType'] . ' / 1.2)',
);
$m_selectors[' .uagb-forms-accept-wrap input[type=checkbox] + label:before']         = array(
	'width'  => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
	'height' => UAGB_Helper::get_css_value( $attr['toggleSizeMobile'], $attr['toggleSizeType'] ),
);
$m_selectors[' .uagb-forms-main-form .uagb-switch']                                  = array(
	'height' => 'calc(' . $toggle_border_top_mobile_fallback . ' + ' . $toggle_border_bottom_mobile_fallback . ' + ' . UAGB_Helper::get_css_value(
		(int) ( 20 + $toggle_width_size_number_mobile + ( ( 20 + $toggle_width_size_number_mobile ) / 3 ) ),
		'px'
	) . ')',
	'width'  => 'calc(' . $toggle_border_left_mobile_fallback . ' + ' . $toggle_border_right_mobile_fallback . ' + ' . UAGB_Helper::get_css_value(
		(int) ( ( ( 20 + $toggle_width_size_number_mobile ) * 2.5 ) + ( ( 20 + $toggle_width_size_number_mobile ) / 3 ) ),
		'px'
	) . ')',
);
$m_selectors[' .uagb-forms-main-form .uagb-slider:before']                           = array(
	'height'        => 'calc(20px + ' . $toggle_width_size_number_mobile . 'px)',
	'width'         => 'calc(20px + ' . $toggle_width_size_number_mobile . 'px)',
	'top'           => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_mobile ) / 6 ), 'px' ),
	'bottom'        => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_mobile ) / 6 ), 'px' ),
	'left'          => UAGB_Helper::get_css_value( (int) ( ( 20 + $toggle_width_size_number_mobile ) / 6 ), 'px' ),
	'border-radius' => $toggle_border_radius_tl_mobile_fallback . ' ' . $toggle_border_radius_tr_mobile_fallback . ' ' . $toggle_border_radius_br_mobile_fallback . ' ' . $toggle_border_radius_bl_mobile_fallback,
);

if ( ! $attr['inheritFromTheme'] ) {
	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link '] = array_merge(
		array(
			'font-size'      => UAGB_Helper::get_css_value( $attr['submitTextFontSize'], $attr['submitTextFontSizeType'] ),
			'color'          => $attr['submitColor'],
			'padding-top'    => UAGB_Helper::get_css_value( $btnPaddingTop, $attr['paddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $btnPaddingBottom, $attr['paddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $btnPaddingLeft, $attr['paddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $btnPaddingRight, $attr['paddingBtnUnit'] ),
		),
		$btn_border
	);


	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button '] = array_merge(
		array(
			'font-size'      => UAGB_Helper::get_css_value( $attr['submitTextFontSize'], $attr['submitTextFontSizeType'] ),
			'color'          => $attr['submitColor'],
			'padding-top'    => UAGB_Helper::get_css_value( $btnPaddingTop, $attr['paddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $btnPaddingBottom, $attr['paddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $btnPaddingLeft, $attr['paddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $btnPaddingRight, $attr['paddingBtnUnit'] ),
		),
		$btn_border
	);

	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:hover '] = array(
		'color'        => $attr['submitColorHover'],
		'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['submitborderHoverColor'],
	);

	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button:hover'] = array(
		'color'        => $attr['submitColorHover'],
		'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['submitborderHoverColor'],
	);

	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:focus '] = array(
		'color'            => $attr['submitColorHover'],
		'background-color' => ( 'color' === $attr['submitBgHoverType'] ) ? $attr['submitBgColorHover'] : 'transparent',
		'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['submitborderHoverColor'],
	);

	$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button:focus'] = array(
		'color'            => $attr['submitColorHover'],
		'background-color' => ( 'color' === $attr['submitBgHoverType'] ) ? $attr['submitBgColorHover'] : 'transparent',
		'border-color'     => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['submitborderHoverColor'],
	);

	$selectors['.uagb-forms__full-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button']                  = array(
		'width'   => '100%',
		'padding' => '10px 15px',
	);
	$selectors['.uagb-forms__small-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button']['padding']      = '5px 10px';
	$selectors['.uagb-forms__medium-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button']['padding']     = '12px 24px';
	$selectors['.uagb-forms__large-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button']['padding']      = '20px 30px';
	$selectors['.uagb-forms__extralarge-btn .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button']['padding'] = '30px 65px';

	if ( 'transparent' === $attr['submitBgType'] ) {

		$selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link']['background'] = 'transparent';
	
	} elseif ( 'color' === $attr['submitBgType'] ) {
	
		$selectors[' .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link']['background'] = $attr['submitBgColor'];
	
	} elseif ( 'gradient' === $attr['submitBgType'] ) {
		$bg_obj        = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientValue'],
			'gradientColor1'    => $attr['gradientColor1'],
			'gradientColor2'    => $attr['gradientColor2'],
			'gradientType'      => $attr['gradientType'],
			'gradientLocation1' => $attr['gradientLocation1'],
			'gradientLocation2' => $attr['gradientLocation2'],
			'gradientAngle'     => $attr['gradientAngle'],
			'selectGradient'    => $attr['selectGradient'],
		);
		$bg_obj_tablet = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientValue'],
			'gradientColor1'    => $attr['gradientColor1'],
			'gradientColor2'    => $attr['gradientColor2'],
			'gradientType'      => $attr['gradientType'],
			'gradientLocation1' => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj['gradientLocation1'],
			'gradientLocation2' => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj['gradientLocation2'],
			'gradientAngle'     => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj['gradientAngle'], 
			'selectGradient'    => $attr['selectGradient'],
		);
		$bg_obj_mobile = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientValue'],
			'gradientColor1'    => $attr['gradientColor1'],
			'gradientColor2'    => $attr['gradientColor2'],
			'gradientType'      => $attr['gradientType'],
			'gradientLocation1' => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
			'gradientLocation2' => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
			'gradientAngle'     => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
			'selectGradient'    => $attr['selectGradient'],
		);
	
		$btn_bg_css        = UAGB_Block_Helper::uag_get_background_obj( $bg_obj );
		$btn_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet );
		$btn_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile );
		$selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link']   = $btn_bg_css;
		$t_selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link'] = $btn_bg_css_tablet;
		$m_selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link'] = $btn_bg_css_mobile;
	}

	// Hover.
	if ( 'transparent' === $attr['submitBgHoverType'] ) {
	
		$selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:hover'] = array(
			'background' => 'transparent',
		);
	
	} elseif ( 'color' === $attr['submitBgHoverType'] ) {
	
		$selectors['  .uagb-forms-main-form .wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link:hover'] = array(
			'background' => $attr['submitBgColorHover'],
		);
	
	} elseif ( 'gradient' === $attr['submitBgHoverType'] ) {
		$bg_hover_obj = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientHValue'],
			'gradientColor1'    => $attr['gradientHColor1'],
			'gradientColor2'    => $attr['gradientHColor2'],
			'gradientType'      => $attr['gradientHType'],
			'gradientLocation1' => $attr['gradientHLocation1'],
			'gradientLocation2' => $attr['gradientHLocation2'],
			'gradientAngle'     => $attr['gradientHAngle'],
			'selectGradient'    => $attr['selectHGradient'],
		);

		$bg_hover_obj_tablet = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientHValue'],
			'gradientColor1'    => $attr['gradientHColor1'],
			'gradientColor2'    => $attr['gradientHColor2'],
			'gradientType'      => $attr['gradientHType'],
			'gradientLocation1' => $attr['gradientHLocationTablet1'] ? $attr['gradientHLocationTablet1'] : $bg_hover_obj['gradientLocation1'],
			'gradientLocation2' => $attr['gradientHLocationTablet2'] ? $attr['gradientHLocationTablet2'] : $bg_hover_obj['gradientLocation2'],
			'gradientAngle'     => $attr['gradientHAngleTablet'] ? $attr['gradientHAngleTablet'] : $bg_hover_obj['gradientAngle'],
			'selectGradient'    => $attr['selectHGradient'],
		);

		$bg_hover_obj_mobile = array(
			'backgroundType'    => 'gradient',
			'gradientValue'     => $attr['gradientHValue'],
			'gradientColor1'    => $attr['gradientHColor1'],
			'gradientColor2'    => $attr['gradientHColor2'],
			'gradientType'      => $attr['gradientHType'],
			'gradientLocation1' => $attr['gradientHLocationMobile1'] ? $attr['gradientHLocationMobile1'] : $bg_hover_obj_tablet['gradientLocation1'],
			'gradientLocation2' => $attr['gradientHLocationMobile2'] ? $attr['gradientHLocationMobile2'] : $bg_hover_obj_tablet['gradientLocation2'],
			'gradientAngle'     => $attr['gradientHAngleMobile'] ? $attr['gradientHAngleMobile'] : $bg_hover_obj_tablet['gradientAngle'],
			'selectGradient'    => $attr['selectHGradient'],
		);

		$btn_hover_bg_css        = UAGB_Block_Helper::uag_get_background_obj( $bg_hover_obj );
		$btn_hover_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_hover_obj_tablet );
		$btn_hover_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_hover_obj_mobile );

		$selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link:hover']   = $btn_hover_bg_css;
		$t_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link:hover'] = $btn_hover_bg_css_tablet;
		$m_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap .uagb-forms-main-submit-button.wp-block-button__link:hover'] = $btn_hover_bg_css_mobile;
	}

	$t_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button'] = array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftTablet'], $attr['tabletPaddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightTablet'], $attr['tabletPaddingBtnUnit'] ),
		),
		$btn_border_Tablet
	);

	$t_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link '] = $btn_border_Tablet;


	$m_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button'] = array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftMobile'], $attr['mobilePaddingBtnUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightMobile'], $attr['mobilePaddingBtnUnit'] ),
		),
		$btn_border_Mobile
	);

	$m_selectors[' .uagb-forms-main-form .uagb-forms-main-submit-button-wrap.wp-block-button:not(.is-style-outline) .uagb-forms-main-submit-button.wp-block-button__link '] = $btn_border_Mobile;
};

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'submitText', ' .uagb-forms-main-form .uagb-forms-main-submit-button', $combined_selectors );
}

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' .uagb-forms-main-form .uagb-forms-input-label', $combined_selectors );

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .uagb-forms-main-form  .uagb-forms-input::placeholder', $combined_selectors );

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .uagb-forms-main-form  .uagb-forms-input', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][Ա�ϩ�Cultimate-addons-for-gutenberg/includes/blocks/forms/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$selector        = '.uagb-block-' . $id;
$current_post_id = get_the_ID();
$curr_user       = wp_get_current_user();
$default_email   = $curr_user->user_email;
// Define the attributes with expected types and default values.
/**
 * $js_attr Configuration Array
 *
 * - block_id (string): Unique block ID.
 * - reCaptchaEnable (bool): Whether reCAPTCHA is enabled. Default: false.
 * - reCaptchaType (string): Type of reCAPTCHA ('v2' or 'v3'). Default: 'v2'.
 * - reCaptchaSiteKeyV2 (string): Site key for reCAPTCHA v2. Default: ''.
 * - reCaptchaSecretKeyV2 (string): Secret key for reCAPTCHA v2. Default: ''.
 * - reCaptchaSiteKeyV3 (string): Site key for reCAPTCHA v3. Default: ''.
 * - reCaptchaSecretKeyV3 (string): Secret key for reCAPTCHA v3. Default: ''.
 * - afterSubmitToEmail (string): Email address for submissions. Default: $default_email (sanitized).
 * - afterSubmitCcEmail (string): CC email address for submissions. Default: ''.
 * - afterSubmitBccEmail (string): BCC email address for submissions. Default: ''.
 * - afterSubmitEmailSubject (string): Email subject after submission. Default: 'Form Submission'.
 * - sendAfterSubmitEmail (bool): Whether to send an email after submission. Default: true.
 * - confirmationType (string): Confirmation type ('message' or 'url'). Default: 'message'.
 * - hidereCaptchaBatch (bool): Whether to hide reCAPTCHA for batch submissions. Default: false.
 * - captchaMessage (string): Custom message for CAPTCHA validation. Default: 'Please fill up the above captcha.'.
 * - confirmationUrl (string): Redirect URL for confirmation. Default: ''.
 */
$js_attr = array(
	'block_id'                => $attr['block_id'],
	'reCaptchaEnable'         => isset( $attr['reCaptchaEnable'] ) ? filter_var( $attr['reCaptchaEnable'], FILTER_VALIDATE_BOOLEAN ) : false,
	'reCaptchaType'           => isset( $attr['reCaptchaType'] ) && is_string( $attr['reCaptchaType'] ) ? sanitize_text_field( $attr['reCaptchaType'] ) : 'v2',
	'reCaptchaSiteKeyV2'      => isset( $attr['reCaptchaSiteKeyV2'] ) && is_string( $attr['reCaptchaSiteKeyV2'] ) ? sanitize_text_field( $attr['reCaptchaSiteKeyV2'] ) : '',
	'reCaptchaSecretKeyV2'    => isset( $attr['reCaptchaSecretKeyV2'] ) && is_string( $attr['reCaptchaSecretKeyV2'] ) ? sanitize_text_field( $attr['reCaptchaSecretKeyV2'] ) : '',
	'reCaptchaSiteKeyV3'      => isset( $attr['reCaptchaSiteKeyV3'] ) && is_string( $attr['reCaptchaSiteKeyV3'] ) ? sanitize_text_field( $attr['reCaptchaSiteKeyV3'] ) : '',
	'reCaptchaSecretKeyV3'    => isset( $attr['reCaptchaSecretKeyV3'] ) && is_string( $attr['reCaptchaSecretKeyV3'] ) ? sanitize_text_field( $attr['reCaptchaSecretKeyV3'] ) : '',
	'afterSubmitToEmail'      => isset( $attr['afterSubmitToEmail'] ) && is_string( $attr['afterSubmitToEmail'] ) && '' !== trim( $attr['afterSubmitToEmail'] ) ? sanitize_email( $attr['afterSubmitToEmail'] ) : sanitize_email( $default_email ),
	'afterSubmitCcEmail'      => isset( $attr['afterSubmitCcEmail'] ) && is_string( $attr['afterSubmitCcEmail'] ) && '' !== trim( $attr['afterSubmitCcEmail'] ) ? sanitize_email( $attr['afterSubmitCcEmail'] ) : '',
	'afterSubmitBccEmail'     => isset( $attr['afterSubmitBccEmail'] ) && is_string( $attr['afterSubmitBccEmail'] ) && '' !== trim( $attr['afterSubmitBccEmail'] ) ? sanitize_email( $attr['afterSubmitBccEmail'] ) : '',
	'afterSubmitEmailSubject' => isset( $attr['afterSubmitEmailSubject'] ) && is_string( $attr['afterSubmitEmailSubject'] ) ? sanitize_text_field( $attr['afterSubmitEmailSubject'] ) : __( 'Form Submission', 'ultimate-addons-for-gutenberg' ),
	'sendAfterSubmitEmail'    => isset( $attr['sendAfterSubmitEmail'] ) ? filter_var( $attr['sendAfterSubmitEmail'], FILTER_VALIDATE_BOOLEAN ) : true,
	'confirmationType'        => isset( $attr['confirmationType'] ) && is_string( $attr['confirmationType'] ) ? sanitize_text_field( $attr['confirmationType'] ) : 'message',
	'hidereCaptchaBatch'      => isset( $attr['hidereCaptchaBatch'] ) ? filter_var( $attr['hidereCaptchaBatch'], FILTER_VALIDATE_BOOLEAN ) : false,
	'captchaMessage'          => isset( $attr['captchaMessage'] ) && is_string( $attr['captchaMessage'] ) ? sanitize_textarea_field( $attr['captchaMessage'] ) : __( 'Please fill up the above captcha.', 'ultimate-addons-for-gutenberg' ),
	'confirmationUrl'         => isset( $attr['confirmationUrl'] ) && is_string( $attr['confirmationUrl'] ) ? UAGB_Forms::validate_confirmation_url( $attr['confirmationUrl'] ) : '',
);
ob_start();
?>
window.addEventListener("DOMContentLoaded", function(){
	UAGBForms.init( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>', <?php echo wp_json_encode( $current_post_id ); ?> );
});
<?php
return ob_get_clean();
?>
PK�][���Dultimate-addons-for-gutenberg/includes/blocks/forms-upload/error_lognu�[���[27-Oct-2025 04:20:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-upload/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-upload/block.php on line 14
PK�][�k4ߛ�Dultimate-addons-for-gutenberg/includes/blocks/forms-upload/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.14
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-upload';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Upload', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a attachment in your form.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][C��=llFultimate-addons-for-gutenberg/includes/blocks/call-to-action/error_lognu�[���[27-Oct-2025 10:49:13 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/call-to-action/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/call-to-action/block.php on line 16
[27-Oct-2025 10:54:57 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/call-to-action/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/call-to-action/attributes.php on line 10
PK�][
��K�'�'Kultimate-addons-for-gutenberg/includes/blocks/call-to-action/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$cta_border_attribute        = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$second_cta_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'secondCta' );

$inherit_from_theme = 'enabled' === UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' );

return array_merge(
	array(
		'classMigrate'                    => false,
		'inheritFromTheme'                => $inherit_from_theme,
		'secInheritFromTheme'             => $inherit_from_theme,
		'textAlign'                       => 'left',
		'titleColor'                      => '',
		'descColor'                       => '',
		'ctaPosition'                     => 'right',
		'titleTag'                        => '',
		'htmlTag'                         => 'div',
		'titleFontSize'                   => '',
		'titleFontSizeType'               => 'px',
		'titleFontSizeTypeTablet'         => 'px',
		'titleFontSizeTypeMobile'         => 'px',
		'titleFontSizeMobile'             => '',
		'titleFontSizeTablet'             => '',
		'titleFontFamily'                 => '',
		'titleFontWeight'                 => '',
		'titleLineHeightType'             => 'em',
		'titleLineHeight'                 => '',
		'titleLineHeightTablet'           => '',
		'titleLineHeightMobile'           => '',
		'titleLoadGoogleFonts'            => false,
		'descFontSize'                    => '',
		'descFontSizeType'                => 'px',
		'descFontSizeTypeTablet'          => 'px',
		'descFontSizeTypeMobile'          => 'px',
		'descFontSizeMobile'              => '',
		'descFontSizeTablet'              => '',
		'descFontFamily'                  => '',
		'descFontWeight'                  => '',
		'descLineHeightType'              => 'em',
		'descLineHeight'                  => '',
		'descLineHeightTablet'            => '',
		'descLineHeightMobile'            => '',
		'descLoadGoogleFonts'             => false,
		'titleSpace'                      => 10,
		'titleSpaceTablet'                => '',
		'titleSpaceMobile'                => '',
		'titleSpaceType'                  => 'px',
		'descSpace'                       => 10,
		'descSpaceTablet'                 => '',
		'descSpaceMobile'                 => '',
		'descSpaceType'                   => 'px',
		'buttonAlign'                     => '',
		'ctaTarget'                       => false,
		'showIcon'                        => true,
		'showSecondIcon'                  => true,
		'ctaIcon'                         => 'right-long',
		'ctaIconPosition'                 => 'after',
		'ctaIconSpace'                    => 10,
		'ctaIconSpaceTablet'              => '',
		'ctaIconSpaceMobile'              => '',
		'ctaType'                         => 'button',
		'ctaLink'                         => '#',
		'ctaFontSize'                     => '',
		'ctaFontSizeType'                 => 'px',
		'ctaFontSizeTypeTablet'           => 'px',
		'ctaFontSizeTypeMobile'           => 'px',
		'ctaFontSizeMobile'               => '',
		'ctaFontSizeTablet'               => '',
		'ctaFontFamily'                   => '',
		'ctaFontWeight'                   => '',
		'ctaLoadGoogleFonts'              => false,
		'ctaBtnLinkColor'                 => '',
		'ctaBgType'                       => 'color',
		'ctaBgHoverType'                  => 'color',
		'ctaBgColor'                      => '',
		'ctaBgHoverColor'                 => '',
		'ctaBtnVertPadding'               => '',
		'ctaBtnHrPadding'                 => '',
		'stack'                           => 'tablet',
		'stackBtn'                        => 'none',
		'showTitle'                       => true,
		'showDesc'                        => true,
		'ctaLeftSpace'                    => 0,
		'ctaLeftSpaceTablet'              => '',
		'ctaLeftSpaceMobile'              => '',
		'ctaLeftSpaceType'                => 'px',
		'ctaRightSpace'                   => 0,
		'ctaRightSpaceTablet'             => '',
		'ctaRightSpaceMobile'             => '',
		'ctaRightSpaceType'               => 'px',
		'contentWidth'                    => 70,
		'contentWidthTablet'              => '',
		'contentWidthMobile'              => '',
		'contentWidthType'                => '%',
		'ctaLinkHoverColor'               => '',
		'ctaTopPaddingTablet'             => '',
		'ctaRightPaddingTablet'           => '',
		'ctaBottomPaddingTablet'          => '',
		'ctaLeftPaddingTablet'            => '',
		'ctaTopPaddingMobile'             => '',
		'ctaRightPaddingMobile'           => '',
		'ctaBottomPaddingMobile'          => '',
		'ctaLeftPaddingMobile'            => '',
		'ctaPaddingUnit'                  => 'px',
		'mobileCTAPaddingUnit'            => 'px',
		'tabletCTAPaddingUnit'            => 'px',
		'ctaPaddingLink'                  => '',
		'titleTransform'                  => '',
		'titleDecoration'                 => '',
		'descTransform'                   => '',
		'descDecoration'                  => '',
		'ctaTransform'                    => '',
		'ctaDecoration'                   => '',
		'titleFontStyle'                  => '',
		'descFontStyle'                   => '',
		'ctaFontStyle'                    => '',
		'secondCtaBgType'                 => 'color',
		'secondCtaBgHoverType'            => 'color',
		'secondCtaFontFamily'             => '',
		'secondCtaLoadGoogleFonts'        => false,
		'secondCtaFontWeight'             => '',
		'secondCtaFontStyle'              => '',
		'secondCtaFontTransform'          => '',
		'secondCtaFontDecoration'         => '',
		'secondCtaTopPadding'             => '',
		'secondCtaRightPadding'           => '',
		'secondCtaBottomPadding'          => '',
		'secondCtaLeftPadding'            => '',
		'secondCtaTopMobilePadding'       => '',
		'secondCtaRightMobilePadding'     => '',
		'secondCtaBottomMobilePadding'    => '',
		'secondCtaLeftMobilePadding'      => '',
		'secondCtaTopTabletPadding'       => '',
		'secondCtaRightTabletPadding'     => '',
		'secondCtaBottomTabletPadding'    => '',
		'secondCtaLeftTabletPadding'      => '',
		'secondCtaPaddingUnit'            => 'px',
		'secondCtaMobilePaddingUnit'      => 'px',
		'secondCtaTabletPaddingUnit'      => 'px',
		'secondCtaPaddingLink'            => '',
		'secondCtaColor'                  => '',
		'secondCtaBackground'             => '',
		'secondCtaHoverColor'             => '',
		'secondCtaHoverBackground'        => '',
		'secondCtaFontSize'               => 14,
		'secondCtaFontSizeType'           => 'px',
		'secondCtaFontSizeTypeTablet'     => 'px',
		'secondCtaFontSizeTypeMobile'     => 'px',
		'secondCtaFontSizeMobile'         => '',
		'secondCtaFontSizeTablet'         => '',
		'secondCtaIcon'                   => 'right-long',
		'secondCtaIconPosition'           => 'right',
		'secondCtaIconSpace'              => 10,
		'secondCtaIconSpaceTablet'        => '',
		'secondCtaIconSpaceMobile'        => '',
		'stackBtn'                        => 'none',
		'gapBtn'                          => 15,
		'gapBtnTablet'                    => '',
		'gapBtnMobile'                    => '',
		'textAlignTablet'                 => 'center',
		'textAlignMobile'                 => 'center',
		'overallBlockTopPadding'          => '',
		'overallBlockRightPadding'        => '',
		'overallBlockBottomPadding'       => '',
		'overallBlockLeftPadding'         => '',
		'overallBlockTopMobilePadding'    => '',
		'overallBlockRightMobilePadding'  => '',
		'overallBlockBottomMobilePadding' => '',
		'overallBlockLeftMobilePadding'   => '',
		'overallBlockTopTabletPadding'    => '',
		'overallBlockRightTabletPadding'  => '',
		'overallBlockBottomTabletPadding' => '',
		'overallBlockLeftTabletPadding'   => '',
		'overallBlockPaddingUnit'         => 'px',
		'overallBlockMobilePaddingUnit'   => 'px',
		'overallBlockTabletPaddingUnit'   => 'px',
		'overallBlockPaddingLink'         => '',
		'overallBlockTopMargin'           => '',
		'overallBlockRightMargin'         => '',
		'overallBlockBottomMargin'        => '',
		'overallBlockLeftMargin'          => '',
		'overallBlockTopMobileMargin'     => '',
		'overallBlockRightMobileMargin'   => '',
		'overallBlockBottomMobileMargin'  => '',
		'overallBlockLeftMobileMargin'    => '',
		'overallBlockTopTabletMargin'     => '',
		'overallBlockRightTabletMargin'   => '',
		'overallBlockBottomTabletMargin'  => '',
		'overallBlockLeftTabletMargin'    => '',
		'overallBlockMarginUnit'          => 'px',
		'overallBlockMobileMarginUnit'    => 'px',
		'overallBlockTabletMarginUnit'    => 'px',
		'overallBlockMarginLink'          => '',
		'buttonRightSpace'                => 5,
		'buttonRightSpaceTablet'          => '',
		'buttonRightSpaceMobile'          => '',
		'buttonRightSpaceType'            => 'px',
		'titleLetterSpacing'              => '',
		'titleLetterSpacingTablet'        => '',
		'titleLetterSpacingMobile'        => '',
		'titleLetterSpacingType'          => 'px',
		'descLetterSpacing'               => '',
		'descLetterSpacingTablet'         => '',
		'descLetterSpacingMobile'         => '',
		'descLetterSpacingType'           => 'px',
		'ctaLetterSpacing'                => '',
		'ctaLetterSpacingTablet'          => '',
		'ctaLetterSpacingMobile'          => '',
		'ctaLetterSpacingType'            => 'px',
		'secondCtaLetterSpacing'          => '',
		'secondCtaLetterSpacingTablet'    => '',
		'secondCtaLetterSpacingMobile'    => '',
		'secondCtaLetterSpacingType'      => 'px',
		'ctaBorderColor'                  => '',
		'ctaBorderhoverColor'             => '',
		'ctaBorderStyle'                  => 'solid',
		'ctaBorderWidth'                  => '',
		'ctaBorderRadius'                 => '',
		'btncontentWidth'                 => 30,
		'btncontentWidthTablet'           => '',
		'btncontentWidthMobile'           => '',
		'btncontentWidthType'             => '%',
		'enabledSecondCtaButton'          => false,
		// For Global Block Styles.
		'globalBlockStyleName'            => '',
		'globalBlockStyleId'              => '',
		'enableMultilineParagraph'        => false,
	),
	$second_cta_border_attribute,
	$cta_border_attribute
);
PK�]['�U��Fultimate-addons-for-gutenberg/includes/blocks/call-to-action/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/call-to-action';
$block_data = array(
	'slug'             => '',
	'doc'              => 'call-to-action-2',
	'admin_categories' => array( 'core', 'content' ),
	'link'             => 'call-to-action',
	'title'            => __( 'Call To Action', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a button along with heading and description.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'call-to-action' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'call-to-action',
	),
);
PK�][9��&�&�Multimate-addons-for-gutenberg/includes/blocks/call-to-action/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_call_to_action_gfont( $attr );

$content_width_tablet_fallback = is_numeric( $attr['contentWidthTablet'] ) ? $attr['contentWidthTablet'] : $attr['contentWidth'];
$content_width_mobile_fallback = is_numeric( $attr['contentWidthMobile'] ) ? $attr['contentWidthMobile'] : $content_width_tablet_fallback;

$btn_content_width_tablet_fallback = is_numeric( $attr['btncontentWidthTablet'] ) ? $attr['btncontentWidthTablet'] : $attr['btncontentWidth'];
$btn_content_width_mobile_fallback = is_numeric( $attr['btncontentWidthMobile'] ) ? $attr['btncontentWidthMobile'] : $attr['btncontentWidth'];

$t_selectors = array();
$m_selectors = array();

$svg_size   = UAGB_Helper::get_css_value( $attr['ctaFontSize'], $attr['ctaFontSizeType'] );
$m_svg_size = UAGB_Helper::get_css_value( $attr['ctaFontSizeMobile'], $attr['ctaFontSizeTypeMobile'] );
$t_svg_size = UAGB_Helper::get_css_value( $attr['ctaFontSizeTablet'], $attr['ctaFontSizeTypeTablet'] );

$btn_padding_top    = isset( $attr['ctaTopPadding'] ) ? $attr['ctaTopPadding'] : $attr['ctaBtnVertPadding'];
$btn_padding_bottom = isset( $attr['ctaBottomPadding'] ) ? $attr['ctaBottomPadding'] : $attr['ctaBtnVertPadding'];
$btn_padding_left   = isset( $attr['ctaLeftPadding'] ) ? $attr['ctaLeftPadding'] : $attr['ctaBtnHrPadding'];
$btn_padding_right  = isset( $attr['ctaRightPadding'] ) ? $attr['ctaRightPadding'] : $attr['ctaBtnHrPadding'];

if ( 'left' === $attr['textAlign'] ) {
	$alignment = 'flex-start';
} elseif ( 'right' === $attr['textAlign'] ) {
	$alignment = 'flex-end';
} else {
	$alignment = 'center';
}

if ( 'left' === $attr['textAlignTablet'] ) {
	$alignmentTablet = 'flex-start';
} elseif ( 'right' === $attr['textAlignTablet'] ) {
	$alignmentTablet = 'flex-end';
} else {
	$alignmentTablet = 'center';
}

if ( 'left' === $attr['textAlignMobile'] ) {
	$alignmentMobile = 'flex-start';
} elseif ( 'right' === $attr['textAlignMobile'] ) {

	$alignmentMobile = 'flex-end';
} else {
	$alignmentMobile = 'center';
}
$selectors = array(
	'.wp-block-uagb-call-to-action .uagb-cta__title'       => array(
		'color'         => $attr['titleColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpace'], $attr['titleSpaceType'] ),
	),
	'.wp-block-uagb-call-to-action .uagb-cta__desc'        => array(
		'color'         => $attr['descColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpace'], $attr['descSpaceType'] ),
	),
	' .uagb-cta__align-button-after'                       => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['ctaIconSpace'], 'px' ),
	),
	' .uagb-cta__align-button-before'                      => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['ctaIconSpace'], 'px' ),
	),
	' .uagb-cta__button-wrapper .uagb-cta-with-svg'        => array(
		'font-size'   => $svg_size,
		'width'       => $svg_size,
		'height'      => $svg_size,
		'line-height' => $svg_size,
	),
	' .uagb-cta__button-wrapper .uagb-cta__block-link svg' => array(
		'fill' => $attr['ctaBtnLinkColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg' => array(
		'font-size'   => $svg_size,
		'width'       => $svg_size,
		'height'      => $svg_size,
		'line-height' => $svg_size,
		'fill'        => $attr['ctaBtnLinkColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper:hover > svg' => array(
		'fill' => $attr['ctaLinkHoverColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper:focus > svg' => array(
		'fill' => $attr['ctaLinkHoverColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'fill'        => $attr['secondCtaColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta-second__button:hover > svg' => array(
		'fill' => $attr['secondCtaHoverColor'],
	),
	'.wp-block-uagb-call-to-action a.uagb-cta-second__button:focus > svg' => array(
		'fill' => $attr['secondCtaHoverColor'],
	),
);

if ( 'text' === $attr['ctaType'] ) {
	$selectors[' .uagb-cta__button-wrapper a.uagb-cta-typeof-text']                    = array(
		'color' => $attr['ctaBtnLinkColor'],
	);
	$selectors[' .uagb-cta__button-wrapper a.uagb-cta-typeof-text:hover ']             = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
	$selectors[' .uagb-cta__button-wrapper a.uagb-cta-typeof-text:focus ']             = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper']        = array(
		'color' => $attr['ctaBtnLinkColor'],
	);
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper:hover '] = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper:focus '] = array(
		'color' => $attr['ctaLinkHoverColor'],
	);
}

$selectors[' .uagb-cta__content-wrap']      = array(
	'text-align' => $attr['textAlign'],
);
$selectors[' .uagb-cta__wrap']              = array(
	'width'      => UAGB_Helper::get_css_value( $attr['contentWidth'], $attr['contentWidthType'] ),
	'text-align' => $attr['textAlign'],
);
$selectors['.wp-block-uagb-call-to-action'] = array(
	'text-align'     => $attr['textAlign'],
	'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopPadding'], $attr['overallBlockPaddingUnit'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomPadding'], $attr['overallBlockPaddingUnit'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftPadding'], $attr['overallBlockPaddingUnit'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightPadding'], $attr['overallBlockPaddingUnit'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopMargin'], $attr['overallBlockMarginUnit'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomMargin'], $attr['overallBlockMarginUnit'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftMargin'], $attr['overallBlockMarginUnit'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightMargin'], $attr['overallBlockMarginUnit'] ),
);

if ( 'left' === $attr['textAlign'] && 'right' === $attr['ctaPosition'] ) {
	$selectors[' .uagb-cta__left-right-wrap .uagb-cta__content'] = array(
		'margin-left'  => UAGB_Helper::get_css_value( $attr['ctaLeftSpace'], 'px' ),
		'margin-right' => '0',
	);
}

$t_selectors = array(
	'.wp-block-uagb-call-to-action .uagb-cta__title' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceTablet'], $attr['titleSpaceType'] ),
	),
	'.wp-block-uagb-call-to-action .uagb-cta__desc'  => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceTablet'], $attr['descSpaceType'] ),
	),
	' .uagb-cta__button-wrapper .uagb-cta-with-svg'  => array(
		'font-size'   => $t_svg_size,
		'width'       => $t_svg_size,
		'height'      => $t_svg_size,
		'line-height' => $t_svg_size,
	),
	'.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper svg' => array(
		'font-size'   => $t_svg_size,
		'width'       => $t_svg_size,
		'height'      => $t_svg_size,
		'line-height' => $t_svg_size,
	),
	'.wp-block-uagb-call-to-action a.uagb-cta-second__button svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeTablet'], $attr['secondCtaFontSizeTypeTablet'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeTablet'], $attr['secondCtaFontSizeTypeTablet'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeTablet'], $attr['secondCtaFontSizeTypeTablet'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeTablet'], $attr['secondCtaFontSizeTypeTablet'] ),
	),
);

$t_selectors['.wp-block-uagb-call-to-action.uagb-cta__content-stacked-tablet '] = array(
	'display' => 'inherit',
);
$t_selectors['.uagb-cta__content-stacked-tablet .uagb-cta__wrap']               = array(
	'width' => '100%',
);

$m_selectors = array(
	'.wp-block-uagb-call-to-action .uagb-cta__title' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceMobile'], $attr['titleSpaceType'] ),
	),
	'.wp-block-uagb-call-to-action .uagb-cta__desc'  => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceMobile'], $attr['descSpaceType'] ),
	),
	' .uagb-cta__button-wrapper .uagb-cta-with-svg'  => array(
		'font-size'   => $m_svg_size,
		'width'       => $m_svg_size,
		'height'      => $m_svg_size,
		'line-height' => $m_svg_size,
	),
	'.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper svg' => array(
		'font-size'   => $m_svg_size,
		'width'       => $m_svg_size,
		'height'      => $m_svg_size,
		'line-height' => $m_svg_size,
	),
	'.wp-block-uagb-call-to-action a.uagb-cta-second__button svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeMobile'], $attr['secondCtaFontSizeTypeMobile'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeMobile'], $attr['secondCtaFontSizeTypeMobile'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeMobile'], $attr['secondCtaFontSizeTypeMobile'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['secondCtaFontSizeMobile'], $attr['secondCtaFontSizeTypeMobile'] ),
	),
);

$m_selectors['.wp-block-uagb-call-to-action.uagb-cta__content-stacked-mobile '] = array(
	'display' => 'inherit',
);
$m_selectors['.uagb-cta__content-stacked-mobile .uagb-cta__wrap']               = array(
	'width' => '100%',
);
if ( 'desktop' === $attr['stackBtn'] ) {

	$selectors[' .uagb-cta__buttons']    = array(
		'flex-direction' => 'column',
		'row-gap'        => UAGB_Helper::get_css_value( $attr['gapBtn'], 'px' ),
	);
	$t_selectors[' .uagb-cta__buttons '] = array(
		'row-gap' => UAGB_Helper::get_css_value( $attr['gapBtnTablet'], 'px' ),
	);
	$m_selectors[' .uagb-cta__buttons '] = array(
		'row-gap' => UAGB_Helper::get_css_value( $attr['gapBtnMobile'], 'px' ),
	);

} elseif ( 'tablet' === $attr['stackBtn'] ) {

	$selectors[' .uagb-cta__buttons ']  = array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['gapBtn'], 'px' ),
	);
	$t_selectors[' .uagb-cta__buttons'] = array(
		'flex-direction' => 'column',
		'row-gap'        => UAGB_Helper::get_css_value( $attr['gapBtnTablet'], 'px' ),
	);
	$m_selectors[' .uagb-cta__buttons'] = array(
		'flex-direction' => 'column',
		'row-gap'        => UAGB_Helper::get_css_value( $attr['gapBtnMobile'], 'px' ),
	);

} elseif ( 'mobile' === $attr['stackBtn'] ) {

	$selectors[' .uagb-cta__buttons ']  = array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['gapBtn'], 'px' ),
	);
	$t_selectors[' .uagb-cta__buttons'] = array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['gapBtnTablet'], 'px' ),
	);
	$m_selectors[' .uagb-cta__buttons'] = array(
		'flex-direction' => 'column',
		'row-gap'        => UAGB_Helper::get_css_value( $attr['gapBtnMobile'], 'px' ),
	);

} elseif ( 'none' === $attr['stackBtn'] ) {
	$selectors[' .uagb-cta__buttons']   = array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['gapBtn'], 'px' ),
	);
	$t_selectors[' .uagb-cta__buttons'] = array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['gapBtnTablet'], 'px' ),
	);
	$m_selectors[' .uagb-cta__buttons'] = array(
		'column-gap'      => UAGB_Helper::get_css_value( $attr['gapBtnMobile'], 'px' ),
		'justify-content' => 'center',
	);
}
if ( 'button' === $attr['ctaType'] && $attr['enabledSecondCtaButton'] ) {
	$selectors['.wp-block-button .uagb-cta__buttons']   = array(
		'width' => UAGB_Helper::get_css_value( $attr['btncontentWidth'], $attr['btncontentWidthType'] ),
	);
	$t_selectors['.wp-block-button .uagb-cta__buttons'] = array(
		'width' => UAGB_Helper::get_css_value( $btn_content_width_tablet_fallback, $attr['btncontentWidthType'] ),
	);
	$m_selectors['.wp-block-button .uagb-cta__buttons'] = array(
		'width' => UAGB_Helper::get_css_value( $btn_content_width_mobile_fallback, $attr['btncontentWidthType'] ),
	);
}

$cta_icon_spacing        = UAGB_Helper::get_css_value( $attr['ctaIconSpace'], 'px' );
$cta_icon_spacing_tablet = UAGB_Helper::get_css_value( $attr['ctaIconSpaceTablet'], 'px' );
$cta_icon_spacing_mobile = UAGB_Helper::get_css_value( $attr['ctaIconSpaceMobile'], 'px' );

$right_side_margin = 'margin-right';
$left_side_margin  = 'margin-left';

if ( ! is_rtl() ) {
	$right_side_margin = 'margin-left';
	$left_side_margin  = 'margin-right';
}

if ( 'before' === $attr['ctaIconPosition'] ) {
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg']   = array(
		$left_side_margin => $cta_icon_spacing,
		'font-size'       => $svg_size,
		'width'           => $svg_size,
		'height'          => $svg_size,
		'line-height'     => $svg_size,
		'fill'            => $attr['ctaBtnLinkColor'],
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg'] = array(
		$left_side_margin => $cta_icon_spacing_tablet,
	);
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg'] = array(
		$left_side_margin => $cta_icon_spacing_mobile,
	);
} else {
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg']   = array(
		$right_side_margin => $cta_icon_spacing,
		'font-size'        => $svg_size,
		'width'            => $svg_size,
		'height'           => $svg_size,
		'line-height'      => $svg_size,
		'fill'             => $attr['ctaBtnLinkColor'],
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg'] = array(
		$right_side_margin => $cta_icon_spacing_tablet,
	);
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper > svg'] = array(
		$right_side_margin => $cta_icon_spacing_mobile,
	);
}

if ( 'none' === $attr['ctaType'] || 'all' === $attr['ctaType'] ) {
	$selectors[' .uagb-cta__wrap'] = array(
		'width' => '100%',
	);
}

if ( 'right' === $attr['ctaPosition'] && ( 'text' === $attr['ctaType'] || 'button' === $attr['ctaType'] ) ) {
	$selectors['.wp-block-uagb-call-to-action '] = array(
		'display'         => 'flex',
		'justify-content' => 'space-between',
	);
	$selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content']        = array(
		'width' => UAGB_Helper::get_css_value( $attr['contentWidth'], $attr['contentWidthType'] ),
	);
	$selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper']   = array(
		'width' => UAGB_Helper::get_css_value( ( 100 - $attr['contentWidth'] ), $attr['contentWidthType'] ),
	);
	$t_selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content']      = array(
		'width' => UAGB_Helper::get_css_value( $attr['contentWidthTablet'], $attr['contentWidthType'] ),
	);
	$t_selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper'] = array(
		'width' => UAGB_Helper::get_css_value( ( 100 - $content_width_tablet_fallback ), $attr['contentWidthType'] ),
	);

	$m_selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__content']      = array(
		'width' => UAGB_Helper::get_css_value( $attr['contentWidthMobile'], $attr['contentWidthType'] ),
	);
	$m_selectors[' .uagb-cta__content-right .uagb-cta__left-right-wrap .uagb-cta__link-wrapper'] = array(
		'width' => UAGB_Helper::get_css_value( ( 100 - $content_width_mobile_fallback ), $attr['contentWidthType'] ),
	);

	$selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper '] = array(
		'align-self'  => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
		'height'      => 'fit-content',
		'margin-left' => 'auto',
	);
}
$t_selectors[' .uagb-cta__wrap'] = array(
	'width'      => UAGB_Helper::get_css_value( $attr['contentWidthTablet'], $attr['contentWidthType'] ),
	'text-align' => $attr['textAlignTablet'],
);
$m_selectors[' .uagb-cta__wrap'] = array(
	'width'      => UAGB_Helper::get_css_value( $attr['contentWidthMobile'], $attr['contentWidthType'] ),
	'text-align' => $attr['textAlignMobile'],
);
if ( 'desktop' === $attr['stack'] ) {

	$selectors['.wp-block-uagb-call-to-action  ']   = array(
		'flex-direction' => 'column',
		'align-items'    => $alignment,
	);
	$t_selectors['.wp-block-uagb-call-to-action  '] = array(
		'flex-direction' => 'column',
		'align-items'    => $alignmentTablet,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
	);
	$m_selectors['.wp-block-uagb-call-to-action  '] = array(
		'flex-direction' => 'column',
		'align-items'    => $alignmentMobile,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
	);
} elseif ( 'tablet' === $attr['stack'] ) {

	$selectors['.wp-block-uagb-call-to-action  ']  = array(
		'flex-direction' => 'row',
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
	);
	$t_selectors['.wp-block-uagb-call-to-action '] = array(
		'flex-direction' => 'column',
		'align-items'    => $alignmentTablet,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightTabletPadding'], $attr['overallBlockTabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightTabletMargin'], $attr['overallBlockTabletMarginUnit'] ),
	);
	$m_selectors['.wp-block-uagb-call-to-action '] = array(
		'flex-direction' => 'column',
		'align-items'    => $alignmentMobile,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
	);

} elseif ( 'mobile' === $attr['stack'] ) {

	$selectors['.wp-block-uagb-call-to-action  ']  = array(
		'flex-direction' => 'row',
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
	);
	$t_selectors['.wp-block-uagb-call-to-action '] = array(
		'flex-direction' => 'row',
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
	);
	$m_selectors['.wp-block-uagb-call-to-action '] = array(
		'flex-direction' => 'column',
		'align-items'    => $alignmentMobile,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['overallBlockTopMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['overallBlockRightMobilePadding'], $attr['overallBlockMobilePaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['overallBlockTopMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['overallBlockBottomMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['overallBlockLeftMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['overallBlockRightMobileMargin'], $attr['overallBlockMobileMarginUnit'] ),
	);

} elseif ( 'none' === $attr['stack'] ) {
	$selectors['.wp-block-uagb-call-to-action  ']                    = array(
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
		'flex-direction' => 'row',
	);
	$t_selectors['.wp-block-uagb-call-to-action ']                   = array(
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
		'flex-direction' => 'row',
	);
	$m_selectors['.wp-block-uagb-call-to-action ']                   = array(
		'align-items'    => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
		'flex-direction' => 'row',
	);
	$selectors['.wp-block-uagb-call-to-action .uagb-cta__buttons']   = array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['buttonRightSpace'], $attr['buttonRightSpaceType'] ),
	);
	$t_selectors['.wp-block-uagb-call-to-action .uagb-cta__buttons'] = array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['buttonRightSpaceTablet'], $attr['buttonRightSpaceType'] ),
	);
	$m_selectors[' .uagb-cta__outer-wrap  .uagb-cta__buttons']       = array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['buttonRightSpaceMobile'], $attr['buttonRightSpaceType'] ),
	);
}

$second_cta_icon_spacing        = UAGB_Helper::get_css_value( $attr['secondCtaIconSpace'], 'px' );
$second_cta_icon_spacing_tablet = UAGB_Helper::get_css_value( $attr['secondCtaIconSpaceTablet'], 'px' );
$second_cta_icon_spacing_mobile = UAGB_Helper::get_css_value( $attr['secondCtaIconSpaceMobile'], 'px' );

if ( 'before' === $attr['secondCtaIconPosition'] ) {
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg']   = array(
		$left_side_margin => $second_cta_icon_spacing,
		'font-size'       => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'width'           => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'height'          => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'fill'            => $attr['secondCtaColor'],
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg'] = array(
		$left_side_margin => $second_cta_icon_spacing_tablet,
	);
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg'] = array(
		$left_side_margin => $second_cta_icon_spacing_mobile,
	);
} else {
	$selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg']   = array(
		$right_side_margin => $second_cta_icon_spacing,
		'font-size'        => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'width'            => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'height'           => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'line-height'      => UAGB_Helper::get_css_value( $attr['secondCtaFontSize'], $attr['secondCtaFontSizeType'] ),
		'fill'             => $attr['secondCtaColor'],
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg'] = array(
		$right_side_margin => $second_cta_icon_spacing_tablet,
	);
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta-second__button > svg'] = array(
		$right_side_margin => $second_cta_icon_spacing_mobile,
	);
}

if ( ! $attr['secInheritFromTheme'] ) {
	
	$second_cta_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'secondCta' );
	$second_cta_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'secondCta', 'tablet' );
	$second_cta_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'secondCta', 'mobile' );
	
	$selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button']       = array_merge(
		array(
			'color'            => $attr['secondCtaColor'],
			'background-color' => ( 'color' === $attr['secondCtaBgType'] ) ? $attr['secondCtaBackground'] : 'transparent',
			'padding-top'      => UAGB_Helper::get_css_value( $attr['secondCtaTopPadding'], $attr['secondCtaPaddingUnit'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $attr['secondCtaBottomPadding'], $attr['secondCtaPaddingUnit'] ),
			'padding-left'     => UAGB_Helper::get_css_value( $attr['secondCtaLeftPadding'], $attr['secondCtaPaddingUnit'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $attr['secondCtaRightPadding'], $attr['secondCtaPaddingUnit'] ),
			'align-self'       => 'top' === $attr['buttonAlign'] ? 'flex-start' : 'center',
			'height'           => 'fit-content',
		),
		$second_cta_border
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button:hover'] = array(
		'color'            => $attr['secondCtaHoverColor'],
		'background-color' => ( 'color' === $attr['secondCtaBgHoverType'] ) ? $attr['secondCtaHoverBackground'] . '!important' : 'transparent',
		'border-color'     => $attr['secondCtaBorderHColor'],
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button:focus'] = array(
		'color'            => $attr['secondCtaHoverColor'],
		'background-color' => ( 'color' === $attr['secondCtaBgHoverType'] ) ? $attr['secondCtaHoverBackground'] . '!important' : 'transparent',
		'border-color'     => $attr['secondCtaBorderHColor'],
	);
	
	$t_selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button'] = $second_cta_border_tablet;
	$m_selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button'] = $second_cta_border_mobile;
	$m_selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['secondCtaTopMobilePadding'], $attr['secondCtaMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['secondCtaBottomMobilePadding'], $attr['secondCtaMobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['secondCtaLeftMobilePadding'], $attr['secondCtaMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['secondCtaRightMobilePadding'], $attr['secondCtaMobilePaddingUnit'] ),
	);
	$t_selectors['.wp-block-uagb-call-to-action.wp-block-button a.uagb-cta-second__button'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['secondCtaTopTabletPadding'], $attr['secondCtaTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['secondCtaBottomTabletPadding'], $attr['secondCtaTabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['secondCtaLeftTabletPadding'], $attr['secondCtaTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['secondCtaRightTabletPadding'], $attr['secondCtaTabletPaddingUnit'] ),
	);
}

if ( ! $attr['inheritFromTheme'] && 'button' === $attr['ctaType'] ) {

	$cta_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
	$cta_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
		$cta_border,
		( isset( $attr['ctaBorderWidth'] ) ? $attr['ctaBorderWidth'] : '' ),
		( isset( $attr['ctaBorderRadius'] ) ? $attr['ctaBorderRadius'] : '' ),
		( isset( $attr['ctaBorderColor'] ) ? $attr['ctaBorderColor'] : '' ),
		( isset( $attr['ctaBorderStyle'] ) ? $attr['ctaBorderStyle'] : '' )
	);
	$cta_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
	$cta_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );


	$selectors[' .uagb-cta__button-wrapper a.uagb-cta-typeof-button'] = array_merge(
		array(
			'color'            => $attr['ctaBtnLinkColor'] ? $attr['ctaBtnLinkColor'] : '#333',
			'background-color' => ( 'color' === $attr['ctaBgType'] ) ? $attr['ctaBgColor'] : 'transparent',
			'padding-top'      => UAGB_Helper::get_css_value( $btn_padding_top, $attr['ctaPaddingUnit'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $btn_padding_bottom, $attr['ctaPaddingUnit'] ),
			'padding-left'     => UAGB_Helper::get_css_value( $btn_padding_left, $attr['ctaPaddingUnit'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $btn_padding_right, $attr['ctaPaddingUnit'] ),
		),
		$cta_border
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__button-wrapper a.uagb-cta-typeof-button:hover']                       = array(
		'color'            => $attr['ctaLinkHoverColor'],
		'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
		'border-color'     => $attr['btnBorderHColor'] ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__button-wrapper a.uagb-cta-typeof-button:focus']                       = array(
		'color'            => $attr['ctaLinkHoverColor'],
		'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
		'border-color'     => $attr['btnBorderHColor'] ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__buttons a.uagb-cta__button-link-wrapper.wp-block-button__link']       = array_merge(
		array(
			'color'            => $attr['ctaBtnLinkColor'],
			'background-color' => ( 'color' === $attr['ctaBgType'] ) ? $attr['ctaBgColor'] : 'transparent',
			'padding-top'      => UAGB_Helper::get_css_value( $btn_padding_top, $attr['ctaPaddingUnit'] ),
			'padding-bottom'   => UAGB_Helper::get_css_value( $btn_padding_bottom, $attr['ctaPaddingUnit'] ),
			'padding-left'     => UAGB_Helper::get_css_value( $btn_padding_left, $attr['ctaPaddingUnit'] ),
			'padding-right'    => UAGB_Helper::get_css_value( $btn_padding_right, $attr['ctaPaddingUnit'] ),
		),
		$cta_border
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__buttons a.uagb-cta__button-link-wrapper.wp-block-button__link:hover'] = array(
		'color'            => $attr['ctaLinkHoverColor'],
		'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
		'border-color'     => $attr['btnBorderHColor'] ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
	);
	$selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__buttons a.uagb-cta__button-link-wrapper.wp-block-button__link:focus'] = array(
		'color'            => $attr['ctaLinkHoverColor'],
		'background-color' => ( 'color' === $attr['ctaBgHoverType'] ) ? $attr['ctaBgHoverColor'] : 'transparent',
		'border-color'     => $attr['btnBorderHColor'] ? $attr['btnBorderHColor'] : $attr['ctaBorderhoverColor'],
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['ctaTopPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['ctaLeftPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['ctaRightPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
	);
	$t_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper'] = $cta_border_tablet;
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['ctaTopPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['ctaLeftPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['ctaRightPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
	);
	$m_selectors['.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper'] = $cta_border_mobile;
	$t_selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__buttons a.uagb-cta__button-link-wrapper.wp-block-button__link'] = array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['ctaTopPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['ctaLeftPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['ctaRightPaddingTablet'], $attr['tabletCTAPaddingUnit'] ),
		),
		$cta_border_tablet
	);
	$m_selectors['.wp-block-uagb-call-to-action.wp-block-button .uagb-cta__buttons a.uagb-cta__button-link-wrapper.wp-block-button__link'] = array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['ctaTopPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['ctaBottomPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['ctaLeftPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['ctaRightPaddingMobile'], $attr['mobileCTAPaddingUnit'] ),
		),
		$cta_border_mobile
	);
}
$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);
if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', '.wp-block-uagb-call-to-action a.uagb-cta__button-link-wrapper', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-cta__button-wrapper a.uagb-cta__button-link-wrapper', $combined_selectors );
}

if ( ! $attr['secInheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'secondCta', '.wp-block-uagb-call-to-action a.uagb-cta-second__button', $combined_selectors );
}

if ( 'text' === $attr['ctaType'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-cta__button-wrapper a.uagb-cta-typeof-text', $combined_selectors );
}

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-cta__title', $combined_selectors );
if ( $attr['enableMultilineParagraph'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-cta__desc p', $combined_selectors );
} else {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-cta__desc', $combined_selectors );
}

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-cta-block-';

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	$base_selector . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][R��hhEultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/error_lognu�[���[28-Oct-2025 05:00:33 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/attributes.php on line 10
[28-Oct-2025 11:36:54 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/block.php on line 16
PK�][����Jultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute(
	'overall'
);

return array_merge(
	array(
		'block_id'                 => '',
		'postType'                 => 'post',
		'taxonomyType'             => 'category',
		'titleTag'                 => '',
		'categories'               => '',
		'order'                    => 'desc',
		'orderBy'                  => 'date',
		'postsToShow'              => 8,
		'layout'                   => 'grid',
		'columns'                  => 3,
		'tcolumns'                 => 2,
		'mcolumns'                 => 1,
		'bgColor'                  => '#f5f5f5',
		'titleColor'               => '#3b3b3b',
		'countColor'               => '#777777',
		'listTextColor'            => '#3b3b3b',
		'hoverlistTextColor'       => '#3b3b3b',
		'listStyleColor'           => '#3b3b3b',
		'hoverlistStyleColor'      => '#3b3b3b',
		'rowGap'                   => 20,
		'rowGapTablet'             => '',
		'rowGapMobile'             => '',
		'columnGap'                => 20,
		'columnGapTablet'          => '',
		'columnGapMobile'          => '',
		'contentPadding'           => 20,
		'contentPaddingMobile'     => 15,
		'contentPaddingTablet'     => 15,
		'titleBottomSpace'         => 5,
		'titleBottomSpaceTablet'   => '',
		'titleBottomSpaceMobile'   => '',
		'listBottomMargin'         => 10,
		'alignment'                => 'center',
		'listStyle'                => 'disc',
		'boxShadowColor'           => '#00000070',
		'boxShadowHOffset'         => 0,
		'boxShadowVOffset'         => 0,
		'boxShadowBlur'            => '',
		'boxShadowSpread'          => '',
		'boxShadowPosition'        => 'outset',
		'titleFontSize'            => '',
		'titleFontSizeType'        => 'px',
		'titleFontSizeMobile'      => '',
		'titleFontSizeTablet'      => '',
		'titleFontFamily'          => '',
		'titleFontWeight'          => '',
		'titleFontStyle'           => '',
		'titleLineHeightType'      => 'em',
		'titleLineHeight'          => '',
		'titleLineHeightTablet'    => '',
		'titleLineHeightMobile'    => '',
		'titleLoadGoogleFonts'     => false,
		'countFontSize'            => '',
		'countFontSizeType'        => 'px',
		'countFontSizeMobile'      => '',
		'countFontSizeTablet'      => '',
		'countFontFamily'          => '',
		'countFontWeight'          => '',
		'countFontStyle'           => '',
		'countLineHeightType'      => 'em',
		'countLineHeight'          => '',
		'countLineHeightTablet'    => '',
		'countLineHeightMobile'    => '',
		'countLoadGoogleFonts'     => false,
		'listFontSize'             => '',
		'listFontSizeType'         => 'px',
		'listFontSizeMobile'       => '',
		'listFontSizeTablet'       => '',
		'listFontFamily'           => '',
		'listFontWeight'           => '',
		'listFontStyle'            => '',
		'listLineHeightType'       => 'em',
		'listLineHeight'           => '',
		'listLineHeightTablet'     => '',
		'listLineHeightMobile'     => '',
		'listLoadGoogleFonts'      => false,
		'noTaxDisplaytext'         => __( 'Taxonomy Not Available.', 'ultimate-addons-for-gutenberg' ),
		'showCount'                => true,
		'showEmptyTaxonomy'        => false,
		'showhierarchy'            => false,
		'listDisplayStyle'         => 'list',
		'contentPaddingUnit'       => 'px',
		'mobileContentPaddingUnit' => 'px',
		'tabletContentPaddingUnit' => 'px',
		'contentPaddingLink'       => false,
		'titleTransform'           => '',
		'countTransform'           => '',
		'listTransform'            => '',
		'titleDecoration'          => '',
		'countDecoration'          => '',
		'listDecoration'           => '',
		// letter spacing.
		'titleLetterSpacing'       => 0,
		'titleLetterSpacingTablet' => '',
		'titleLetterSpacingMobile' => '',
		'titleLetterSpacingType'   => 'px',
		'countLetterSpacing'       => '',
		'countLetterSpacingTablet' => '',
		'countLetterSpacingMobile' => '',
		'countLetterSpacingType'   => 'px',
		'listLetterSpacing'        => '',
		'listLetterSpacingTablet'  => '',
		'listLetterSpacingMobile'  => '',
		'listLetterSpacingType'    => 'px',
		'seperatorStyle'           => 'none',
		'seperatorWidth'           => 100,
		'seperatorThickness'       => 1,
		'seperatorColor'           => '#b2b4b5',
		'seperatorHoverColor'      => '#b2b4b5',
		'borderStyle'              => 'solid',
		'borderWidth'              => 1,
		'borderRadius'             => 0,
		'borderColor'              => '#E0E0E0',
	),
	$border_attribute
);
PK�][B���Eultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/taxonomy-list';
$block_data = array(
	'doc'              => 'taxonomy-list',
	'slug'             => '',
	'admin_categories' => array( 'content' ),
	'link'             => 'taxonomy',
	'title'            => __( 'Taxonomy List', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Display your content categorized as per post type.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'taxonomy-list' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'taxonomy-list',
	),
);
PK�][��m�+/+/Lultimate-addons-for-gutenberg/includes/blocks/taxonomy-list/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var string[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_taxonomy_list_gfont( $attr );

$selectors   = array();
$t_selectors = array();
$m_selectors = array();

$overall_border_css       = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall' );
$overall_border_css       = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$overall_border_css,
	( isset( $attr['borderThickness'] ) ? $attr['borderThickness'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$overall_border_cssTablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'tablet' );
$overall_border_cssMobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'mobile' );

$top_padding    = isset( $attr['contentTopPadding'] ) ? $attr['contentTopPadding'] : $attr['contentPadding'];
$bottom_padding = isset( $attr['contentBottomPadding'] ) ? $attr['contentBottomPadding'] : $attr['contentPadding'];
$left_padding   = isset( $attr['contentLeftPadding'] ) ? $attr['contentLeftPadding'] : $attr['contentPadding'];
$right_padding  = isset( $attr['contentRightPadding'] ) ? $attr['contentRightPadding'] : $attr['contentPadding'];

$top_padding_mobile    = isset( $attr['contentTopPaddingMobile'] ) ? $attr['contentTopPaddingMobile'] : $attr['contentPaddingMobile'];
$bottom_padding_mobile = isset( $attr['contentBottomPaddingMobile'] ) ? $attr['contentBottomPaddingMobile'] : $attr['contentPaddingMobile'];
$left_padding_mobile   = isset( $attr['contentLeftPaddingMobile'] ) ? $attr['contentLeftPaddingMobile'] : $attr['contentPaddingMobile'];
$right_padding_mobile  = isset( $attr['contentRightPaddingMobile'] ) ? $attr['contentRightPaddingMobile'] : $attr['contentPaddingMobile'];

$top_padding_tablet    = isset( $attr['contentTopPaddingTablet'] ) ? $attr['contentTopPaddingTablet'] : $attr['contentPaddingTablet'];
$bottom_padding_tablet = isset( $attr['contentBottomPaddingTablet'] ) ? $attr['contentBottomPaddingTablet'] : $attr['contentPaddingTablet'];
$left_padding_tablet   = isset( $attr['contentLeftPaddingTablet'] ) ? $attr['contentLeftPaddingTablet'] : $attr['contentPaddingTablet'];
$right_padding_tablet  = isset( $attr['contentRightPaddingTablet'] ) ? $attr['contentRightPaddingTablet'] : $attr['contentPaddingTablet'];

$boxShadowPositionCSS = $attr['boxShadowPosition'];

if ( 'outset' === $attr['boxShadowPosition'] ) {
	$boxShadowPositionCSS = '';
}

$selectors = array(
	'.uagb-taxonomy__outer-wrap.uagb-layout-grid'          => array(
		'display'               => 'grid',
		'grid-template-columns' => 'repeat(' . $attr['columns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowGap'], 'px' ),

	),
	'.uagb-layout-grid .uagb-taxomony-box'                 => array(
		'padding-left'     => UAGB_Helper::get_css_value( $left_padding, $attr['contentPaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $right_padding, $attr['contentPaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $top_padding, $attr['contentPaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $bottom_padding, $attr['contentPaddingUnit'] ),
		'grid-column-gap'  => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
		'background-color' => $attr['bgColor'],
		'text-align'       => $attr['alignment'],
		'box-shadow'       => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,

	),
	'.uagb-layout-grid .uagb-tax-title'                    => array(
		'color'         => $attr['titleColor'],
		'margin-top'    => '0',
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleBottomSpace'], 'px' ),
	),
	'.uagb-layout-grid .uagb-tax-link'                     => array(
		'color' => $attr['countColor'],
	),
	// List layout styling.
	'.uagb-layout-list .uagb-tax-list'                     => array(
		'list-style' => $attr['listStyle'],
		'color'      => $attr['listStyleColor'],
	),
	'.uagb-layout-list .uagb-tax-list:hover'               => array( // For bullet.
		'color' => $attr['hoverlistStyleColor'],
	),
	'.uagb-layout-list .uagb-tax-link-wrap:hover'          => array( // For Number.
		'color' => $attr['hoverlistStyleColor'],
	),
	'.uagb-layout-list .uagb-tax-list a.uagb-tax-link'     => array(
		'color' => $attr['listTextColor'],
	),
	'.uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover' => array(
		'color' => $attr['hoverlistTextColor'],
	),
	'.uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['listBottomMargin'], 'px' ),
	),
	/* For Backword */
	' .uagb-taxonomy-wrap.uagb-layout-grid'                => array(
		'display'               => 'grid',
		'grid-template-columns' => 'repeat(' . $attr['columns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowGap'], 'px' ),

	),
	' .uagb-layout-grid .uagb-taxomony-box'                => array(
		'padding-left'     => UAGB_Helper::get_css_value( $left_padding, $attr['contentPaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $right_padding, $attr['contentPaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $top_padding, $attr['contentPaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $bottom_padding, $attr['contentPaddingUnit'] ),
		'grid-column-gap'  => UAGB_Helper::get_css_value( $attr['columnGap'], 'px' ),
		'background-color' => $attr['bgColor'],
		'text-align'       => $attr['alignment'],
		'box-shadow'       => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,

	),
	' .uagb-layout-grid .uagb-tax-title'                   => array(
		'color'         => $attr['titleColor'],
		'margin-top'    => '0',
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleBottomSpace'], 'px' ),
	),
	' .uagb-layout-grid .uagb-tax-link'                    => array(
		'color' => $attr['countColor'],
	),
	// List layout styling.
	' .uagb-layout-list .uagb-tax-list'                    => array(
		'list-style' => $attr['listStyle'],
		'color'      => $attr['listStyleColor'],
	),
	' .uagb-layout-list .uagb-tax-list:hover'              => array(
		'color' => $attr['hoverlistStyleColor'],
	),
	' .uagb-layout-list .uagb-tax-list a.uagb-tax-link'    => array(
		'color' => $attr['listTextColor'],
	),
	' .uagb-layout-list .uagb-tax-list a.uagb-tax-link:hover' => array(
		'color' => $attr['hoverlistTextColor'],
	),
	' .uagb-layout-list .uagb-tax-list .uagb-tax-link-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['listBottomMargin'], 'px' ),
	),
	/* End Backword */

);
if ( 'none' !== $attr['seperatorStyle'] ) {
	$selectors['.uagb-layout-list .uagb-tax-separator']        = array(
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], '%' ),
	);
	$selectors['.uagb-layout-list .uagb-tax-separator:hover']  = array(
		'border-top-color' => $attr['seperatorHoverColor'],
	);
	$selectors[' .uagb-layout-list .uagb-tax-separator']       = array(
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], '%' ),
	);
	$selectors[' .uagb-layout-list .uagb-tax-separator:hover'] = array(
		'border-top-color' => $attr['seperatorHoverColor'],
	);
}
$selectors['.uagb-layout-list .uagb-tax-separator:hover'] = array(
	'border-top-color' => $attr['seperatorHoverColor'],
);
$selectors[' .uagb-taxomony-box']                         = $overall_border_css;
$selectors[' .uagb-taxomony-box:hover']                   = array(
	'border-color' => $attr['overallBorderHColor'],
);

$t_selectors = array(
	'.uagb-taxonomy-wrap.uagb-layout-grid'        => array( // For Backword.
		'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
	),
	'.uagb-taxonomy__outer-wrap.uagb-layout-grid' => array(
		'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnGapTablet'], 'px' ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),
	'.uagb-layout-grid .uagb-taxomony-box'        => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_tablet, $attr['tabletContentPaddingUnit'] ),
	),
	'.uagb-layout-grid .uagb-tax-title'           => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleBottomSpaceTablet'], 'px' ),
	),
);

$m_selectors = array(
	'.uagb-taxonomy__outer-wrap.uagb-layout-grid' => array(
		'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnGapMobile'], 'px' ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),
	'.uagb-layout-grid .uagb-taxomony-box'        => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_mobile, $attr['mobileContentPaddingUnit'] ),
	),
	'.uagb-layout-grid .uagb-tax-title'           => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleBottomSpaceMobile'], 'px' ),
	),
);

$t_selectors[' .uagb-taxomony-box'] = $overall_border_cssTablet;
$m_selectors[' .uagb-taxomony-box'] = $overall_border_cssMobile;

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);
/* For Backword */
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-layout-grid .uagb-tax-title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'count', ' .uagb-layout-grid .uagb-tax-link', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'list', ' .uagb-layout-list .uagb-tax-list', $combined_selectors );
/* End Backword */
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', '.uagb-layout-grid .uagb-tax-title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'count', '.uagb-layout-grid .uagb-tax-link', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'list', '.uagb-layout-list .uagb-tax-list', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][=�u��Multimate-addons-for-gutenberg/includes/blocks/restaurant-menu-child/error_lognu�[���[27-Oct-2025 04:10:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu-child/block.php on line 14
PK�][h0ʣ�Rultimate-addons-for-gutenberg/includes/blocks/restaurant-menu-child/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'     => false,
	'childMigrate'     => false,
	'block_id'         => '',
	'headingAlign'     => 'left',
	'imagePosition'    => 'top',
	'imageAlignment'   => 'top',
	'imgVrPadding'     => 0,
	'imgHrPadding'     => 0,
	'imgTopPadding'    => 0,
	'imgBottomPadding' => 0,
	'iconImage'        => '',
	'imageSize'        => 'medium',
	'imageWidth'       => '',
	'columns'          => 2,
	'tcolumns'         => 2,
	'mcolumns'         => 1,
	'rowGap'           => 10,
	'columnGap'        => 10,
	'contentHrPadding' => 5,
	'contentVrPadding' => 5,
	'imgAlign'         => 'side',
);
PK�][���Multimate-addons-for-gutenberg/includes/blocks/restaurant-menu-child/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/restaurant-menu-child';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Price List-Child', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add information for this product.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'extension'   => false,
	'static_css'  => 'price-list-child',
	'deprecated'  => false,
);
PK�][�f\ҫ�Dultimate-addons-for-gutenberg/includes/blocks/forms-hidden/error_lognu�[���[27-Oct-2025 04:34:49 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-hidden/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-hidden/block.php on line 14
PK�][M��W��Dultimate-addons-for-gutenberg/includes/blocks/forms-hidden/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-hidden';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Hidden', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a hidden field in your form to pass data', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�_=��>ultimate-addons-for-gutenberg/includes/blocks/slider/error_lognu�[���[27-Oct-2025 04:04:31 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/attributes.php on line 10
[27-Oct-2025 04:32:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/block.php on line 16
[27-Oct-2025 05:20:55 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/frontend.js.php on line 11
[27-Oct-2025 05:20:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/slider/frontend.js.php on line 14
PK�][������Cultimate-addons-for-gutenberg/includes/blocks/slider/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.3.0
 *
 * @package uagb
 */

$border_attribute       = UAGB_Block_Helper::uag_generate_border_attribute( 'slider' );
$arrow_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'slider-arrow' );

$arrow_border_attribute['slider-arrowBorderBottomLeftRadius']  = 50;
$arrow_border_attribute['slider-arrowBorderBottomRightRadius'] = 50;
$arrow_border_attribute['slider-arrowBorderTopLeftRadius']     = 50;
$arrow_border_attribute['slider-arrowBorderTopRightRadius']    = 50;

return apply_filters(
	'spectra_slider_frontend_attributes',
	array_merge(
		array(
			'block_id'                    => '',
			'pauseOn'                     => 'hover',
			'infiniteLoop'                => true,
			'transitionSpeed'             => 800,
			'transitionEffect'            => 'slide',
			'autoplay'                    => true,
			'verticalMode'                => false,
			'autoplaySpeed'               => 3000,
			'displayArrows'               => true,
			'displayDots'                 => true,
			'backgroundType'              => 'none',
			'backgroundImageDesktop'      => '',
			'backgroundImageTablet'       => '',
			'backgroundImageMobile'       => '',
			'backgroundPositionDesktop'   => array(
				'x' => 0.5,
				'y' => 0.5,
			),
			'backgroundPositionTablet'    => '',
			'backgroundPositionMobile'    => '',
			'backgroundSizeDesktop'       => 'cover',
			'backgroundSizeTablet'        => '',
			'backgroundSizeMobile'        => '',
			'backgroundRepeatDesktop'     => 'no-repeat',
			'backgroundRepeatTablet'      => '',
			'backgroundRepeatMobile'      => '',
			'backgroundAttachmentDesktop' => 'scroll',
			'backgroundAttachmentTablet'  => '',
			'backgroundAttachmentMobile'  => '',
			'backgroundColor'             => '',
			'backgroundOpacity'           => '',
			'gradientValue'               => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
			'gradientColor1'              => '#06558a',
			'gradientColor2'              => '#0063A1',
			'gradientType'                => 'linear',
			'gradientLocation1'           => 0,
			'gradientLocationTablet1'     => '',
			'gradientLocationMobile1'     => '',
			'gradientLocation2'           => 100,
			'gradientLocationTablet2'     => '',
			'gradientLocationMobile2'     => '',
			'gradientAngle'               => 0,
			'gradientAngleTablet'         => '',
			'gradientAngleMobile'         => '',
			'selectGradient'              => 'basic',
			'backgroundImageColor'        => '#FFFFFF75',
			'backgroundCustomSizeDesktop' => 100,
			'backgroundCustomSizeTablet'  => '',
			'backgroundCustomSizeMobile'  => '',
			'backgroundCustomSizeType'    => '%',
			'overlayType'                 => 'none',
			'customPosition'              => 'default',
			'xPositionDesktop'            => '',
			'xPositionTablet'             => '',
			'xPositionMobile'             => '',
			'xPositionType'               => 'px',
			'xPositionTypeTablet'         => 'px',
			'xPositionTypeMobile'         => 'px',
			'yPositionDesktop'            => '',
			'yPositionTablet'             => '',
			'yPositionMobile'             => '',
			'yPositionType'               => 'px',
			'yPositionTypeTablet'         => 'px',
			'yPositionTypeMobile'         => 'px',
			'topPaddingDesktop'           => 10,
			'bottomPaddingDesktop'        => 10,
			'leftPaddingDesktop'          => 10,
			'rightPaddingDesktop'         => 10,
			'topPaddingTablet'            => '',
			'bottomPaddingTablet'         => '',
			'leftPaddingTablet'           => '',
			'rightPaddingTablet'          => '',
			'topPaddingMobile'            => '',
			'bottomPaddingMobile'         => '',
			'leftPaddingMobile'           => '',
			'rightPaddingMobile'          => '',
			'paddingType'                 => 'px',
			'paddingTypeTablet'           => 'px',
			'paddingTypeMobile'           => 'px',
			'paddingLink'                 => true,
			'topMarginDesktop'            => '',
			'bottomMarginDesktop'         => '',
			'leftMarginDesktop'           => '',
			'rightMarginDesktop'          => '',
			'topMarginTablet'             => '',
			'bottomMarginTablet'          => '',
			'leftMarginTablet'            => '',
			'rightMarginTablet'           => '',
			'topMarginMobile'             => '',
			'bottomMarginMobile'          => '',
			'leftMarginMobile'            => '',
			'rightMarginMobile'           => '',
			'marginType'                  => 'px',
			'marginTypeTablet'            => 'px',
			'marginTypeMobile'            => 'px',
			'useSeparateBoxShadows'       => true,
			'boxShadowColor'              => '#00000070',
			'boxShadowHOffset'            => 0,
			'boxShadowVOffset'            => 0,
			'boxShadowBlur'               => '',
			'boxShadowSpread'             => '',
			'boxShadowPosition'           => 'outset',
			'boxShadowColorHover'         => '',
			'boxShadowHOffsetHover'       => 0,
			'boxShadowVOffsetHover'       => 0,
			'boxShadowBlurHover'          => '',
			'boxShadowSpreadHover'        => '',
			'boxShadowPositionHover'      => 'outset',
			'arrowSize'                   => 16,
			'arrowSizeTablet'             => '',
			'arrowSizeMobile'             => '',
			'arrowDistance'               => -20,
			'arrowDistanceTablet'         => '',
			'arrowDistanceMobile'         => '',
			'arrowPadding'                => 15,
			'arrowPaddingTablet'          => '',
			'arrowPaddingMobile'          => '',
			'arrowColor'                  => '#333333',
			'arrowBgColor'                => '',
			'verticalAlign'               => 'center',
			'dotsMarginTop'               => 20,
			'dotsMarginTopTablet'         => '',
			'dotsMarginTopMobile'         => '',
			'minHeight'                   => 350,
			'minHeightTablet'             => '',
			'minHeightMobile'             => '',
		),
		$border_attribute,
		$arrow_border_attribute
	)
);
PK�][u�%�;;>ultimate-addons-for-gutenberg/includes/blocks/slider/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.3.0
 *
 * @package uagb
 */

$block_slug = 'uagb/slider';
$block_data = array(
	'doc'                 => 'slider',
	'slug'                => '',
	'admin_categories'    => array( 'content' ),
	'link'                => 'slider',
	'title'               => __( 'Slider', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Create a Slider.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'slider' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-swiper-js'  => array(
			'type' => 'js',
		),
		'uagb-swiper-css' => array(
			'type' => 'css',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'slider',
	),
);
PK�][-��I�IEultimate-addons-for-gutenberg/includes/blocks/slider/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.3.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$block_name = 'slider';

$box_shadow_properties       = array(
	'horizontal' => $attr['boxShadowHOffset'],
	'vertical'   => $attr['boxShadowVOffset'],
	'blur'       => $attr['boxShadowBlur'],
	'spread'     => $attr['boxShadowSpread'],
	'color'      => $attr['boxShadowColor'],
	'position'   => $attr['boxShadowPosition'],
);
$box_shadow_hover_properties = array(
	'horizontal' => $attr['boxShadowHOffsetHover'],
	'vertical'   => $attr['boxShadowVOffsetHover'],
	'blur'       => $attr['boxShadowBlurHover'],
	'spread'     => $attr['boxShadowSpreadHover'],
	'color'      => $attr['boxShadowColorHover'],
	'position'   => $attr['boxShadowPositionHover'],
	'alt_color'  => $attr['boxShadowColor'],
);

$box_shadow_css       = UAGB_Block_Helper::generate_shadow_css( $box_shadow_properties );
$box_shadow_hover_css = UAGB_Block_Helper::generate_shadow_css( $box_shadow_hover_properties );

$border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider' );
$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider', 'mobile' );

$arrow_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider-arrow' );
$arrow_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider-arrow', 'tablet' );
$arrow_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'slider-arrow', 'mobile' );

$bg_obj_desktop           = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageDesktop'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => $attr['gradientLocation1'],
	'gradientLocation2'        => $attr['gradientLocation2'],
	'gradientAngle'            => $attr['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatDesktop'],
	'backgroundPosition'       => $attr['backgroundPositionDesktop'],
	'backgroundSize'           => $attr['backgroundSizeDesktop'],
	'backgroundAttachment'     => $attr['backgroundAttachmentDesktop'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeDesktop'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionDesktop'],
	'xPositionType'            => $attr['xPositionType'],
	'yPosition'                => $attr['yPositionDesktop'],
	'yPositionType'            => $attr['yPositionType'],
);
$container_bg_css_desktop = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_desktop );

// Tablet.
$left_padding_tablet   = '' !== $attr['leftPaddingTablet'] ? $attr['leftPaddingTablet'] : $attr['leftPaddingDesktop'];
$right_padding_tablet  = '' !== $attr['rightPaddingTablet'] ? $attr['rightPaddingTablet'] : $attr['rightPaddingDesktop'];
$top_padding_tablet    = '' !== $attr['topPaddingTablet'] ? $attr['topPaddingTablet'] : $attr['topPaddingDesktop'];
$bottom_padding_tablet = '' !== $attr['bottomPaddingTablet'] ? $attr['bottomPaddingTablet'] : $attr['bottomPaddingDesktop'];

$left_margin_tablet   = '' !== $attr['leftMarginTablet'] ? $attr['leftMarginTablet'] : $attr['leftMarginDesktop'];
$right_margin_tablet  = '' !== $attr['rightMarginTablet'] ? $attr['rightMarginTablet'] : $attr['rightMarginDesktop'];
$top_margin_tablet    = '' !== $attr['topMarginTablet'] ? $attr['topMarginTablet'] : $attr['topMarginDesktop'];
$bottom_margin_tablet = '' !== $attr['bottomMarginTablet'] ? $attr['bottomMarginTablet'] : $attr['bottomMarginDesktop'];

// Mobile.
$left_padding_mobile   = '' !== $attr['leftPaddingMobile'] ? $attr['leftPaddingMobile'] : $left_padding_tablet;
$right_padding_mobile  = '' !== $attr['rightPaddingMobile'] ? $attr['rightPaddingMobile'] : $right_padding_tablet;
$top_padding_mobile    = '' !== $attr['topPaddingMobile'] ? $attr['topPaddingMobile'] : $top_padding_tablet;
$bottom_padding_mobile = '' !== $attr['bottomPaddingMobile'] ? $attr['bottomPaddingMobile'] : $bottom_padding_tablet;

$left_margin_mobile   = '' !== $attr['leftMarginMobile'] ? $attr['leftMarginMobile'] : $left_margin_tablet;
$right_margin_mobile  = '' !== $attr['rightMarginMobile'] ? $attr['rightMarginMobile'] : $right_margin_tablet;
$top_margin_mobile    = '' !== $attr['topMarginMobile'] ? $attr['topMarginMobile'] : $top_margin_tablet;
$bottom_margin_mobile = '' !== $attr['bottomMarginMobile'] ? $attr['bottomMarginMobile'] : $bottom_margin_tablet;

$arrow_size_tablet = '' !== $attr['arrowSizeTablet'] ? $attr['arrowSizeTablet'] : $attr['arrowSize'];
$arrow_size_mobile = '' !== $attr['arrowSizeMobile'] ? $attr['arrowSizeMobile'] : $arrow_size_tablet;

$arrow_distance_tablet = '' !== $attr['arrowDistanceTablet'] ? $attr['arrowDistanceTablet'] : $attr['arrowDistance'];
$arrow_distance_mobile = '' !== $attr['arrowDistanceMobile'] ? $attr['arrowDistanceMobile'] : $arrow_distance_tablet;

$arrow_padding_tablet = '' !== $attr['arrowPaddingTablet'] ? $attr['arrowPaddingTablet'] : $attr['arrowPadding'];
$arrow_padding_mobile = '' !== $attr['arrowPaddingMobile'] ? $attr['arrowPaddingMobile'] : $arrow_padding_tablet;

$container_css = array_merge(
	array(
		'box-shadow'     => $box_shadow_css,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingDesktop'], $attr['paddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingDesktop'], $attr['paddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingDesktop'], $attr['paddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingDesktop'], $attr['paddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginDesktop'], $attr['marginType'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginDesktop'], $attr['marginType'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginDesktop'], $attr['marginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginDesktop'], $attr['marginType'] ),
	),
	$border
);
$container_css = array_merge( $container_css, $container_bg_css_desktop );

$arrow_style = array(
	'color'            => esc_attr( $attr['arrowColor'] ),
	'background-color' => esc_attr( $attr['arrowBgColor'] ),
	'width'            => UAGB_Helper::get_css_value( ( $attr['arrowPadding'] * 2 ) + $attr['arrowSize'], 'px' ),
	'height'           => UAGB_Helper::get_css_value( ( $attr['arrowPadding'] * 2 ) + $attr['arrowSize'], 'px' ),
	'line-height'      => UAGB_Helper::get_css_value( ( $attr['arrowPadding'] * 2 ) + $attr['arrowSize'], 'px' ),
);

$arrow_style = array_merge( $arrow_border, $arrow_style );

$selectors = array(
	'.uagb-block-' . $id                                  => $container_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
	'.uagb-block-' . $id . '.uagb-slider-container:hover' => array(
		'border-color' => $attr['sliderBorderHColor'],
	),
	'.uagb-block-' . $id . '.uagb-slider-container'       => array(
		'border-color' => $border['border-color'] ? $border['border-color'] : '#4B4F58',
	),
	'.uagb-block-' . $id . ' .swiper-button-next:after'   => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['arrowSize'], 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-prev:after'   => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['arrowSize'], 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-pagination-bullet'   => array(
		'background-color' => $attr['arrowColor'],
	),
	'.uagb-block-' . $id . ' .swiper-button-prev'         => array(
		'left' => UAGB_Helper::get_css_value( $attr['arrowDistance'], 'px' ),
	),
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-prev' => $arrow_style,
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-next' => $arrow_style,
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-next:hover' => array(
		'border-color' => $attr['slider-arrowBorderHColor'],
	),
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-prev:hover' => array(
		'border-color' => $attr['slider-arrowBorderHColor'],
	),
	'.uagb-block-' . $id . ' .swiper-button-next'         => array(
		'right' => UAGB_Helper::get_css_value( $attr['arrowDistance'], 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-wrapper'             => array(
		'align-items' => $attr['verticalAlign'],
		'min-height'  => UAGB_Helper::get_css_value( $attr['minHeight'], 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-pagination'          => array(
		'bottom' => UAGB_Helper::get_css_value( $attr['dotsMarginTop'], 'px' ),
	),
);

// If hover blur or hover color are set, show the hover shadow.
if ( $attr['useSeparateBoxShadows'] ) {

	$selectors[ '.uagb-block-' . $id . ':hover' ]['box-shadow'] = $box_shadow_hover_css;

}

$bg_obj_tablet           = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageTablet'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj_desktop['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj_desktop['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj_desktop['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatTablet'],
	'backgroundPosition'       => $attr['backgroundPositionTablet'],
	'backgroundSize'           => $attr['backgroundSizeTablet'],
	'backgroundAttachment'     => $attr['backgroundAttachmentTablet'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeTablet'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionTablet'],
	'xPositionType'            => $attr['xPositionTypeTablet'],
	'yPosition'                => $attr['yPositionTablet'],
	'yPositionType'            => $attr['yPositionTypeTablet'],
);
$container_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet );
$container_tablet_css    = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['paddingTypeTablet'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_tablet, $attr['marginTypeTablet'] ),
	),
	$border_tablet
);
$container_tablet_css    = array_merge( $container_tablet_css, $container_bg_css_tablet );

$arrow_style_tablet = array(
	'width'       => UAGB_Helper::get_css_value( ( $arrow_padding_tablet * 2 ) + $arrow_size_tablet, 'px' ),
	'height'      => UAGB_Helper::get_css_value( ( $arrow_padding_tablet * 2 ) + $arrow_size_tablet, 'px' ),
	'line-height' => UAGB_Helper::get_css_value( ( $arrow_padding_tablet * 2 ) + $arrow_size_tablet, 'px' ),
);

$arrow_style_tablet = array_merge( $arrow_border_tablet, $arrow_style_tablet );

$t_selectors = array(
	'.uagb-block-' . $id                                => $container_tablet_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
	'.uagb-block-' . $id . ' .swiper-button-prev:after' => array(
		'font-size' => UAGB_Helper::get_css_value( $arrow_size_tablet, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-next:after' => array(
		'font-size' => UAGB_Helper::get_css_value( $arrow_size_tablet, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-prev'       => array(
		'left' => UAGB_Helper::get_css_value( $arrow_distance_tablet, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-next'       => array(
		'right' => UAGB_Helper::get_css_value( $arrow_distance_tablet, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-pagination'        => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['dotsMarginTopTablet'], 'px' ),
	),
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-prev' => $arrow_style_tablet,
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-next' => $arrow_style_tablet,
	'.uagb-block-' . $id . ' .swiper-wrapper'           => array(
		'min-height' => UAGB_Helper::get_css_value( $attr['minHeightTablet'], 'px' ),
	),
);

$bg_obj_mobile           = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageMobile'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatMobile'],
	'backgroundPosition'       => $attr['backgroundPositionMobile'],
	'backgroundSize'           => $attr['backgroundSizeMobile'],
	'backgroundAttachment'     => $attr['backgroundAttachmentMobile'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeMobile'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionMobile'],
	'xPositionType'            => $attr['xPositionTypeMobile'],
	'yPosition'                => $attr['yPositionMobile'],
	'yPositionType'            => $attr['yPositionTypeMobile'],
);
$container_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile );
$container_mobile_css    = array_merge(
	array(
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['paddingTypeMobile'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_mobile, $attr['marginTypeMobile'] ),
	),
	$border_mobile
);
$container_mobile_css    = array_merge( $container_mobile_css, $container_bg_css_mobile );

$arrow_style_mobile = array(
	'width'       => UAGB_Helper::get_css_value( ( $arrow_padding_mobile * 2 ) + $arrow_size_mobile, 'px' ),
	'height'      => UAGB_Helper::get_css_value( ( $arrow_padding_mobile * 2 ) + $arrow_size_mobile, 'px' ),
	'line-height' => UAGB_Helper::get_css_value( ( $arrow_padding_mobile * 2 ) + $arrow_size_mobile, 'px' ),
);

$arrow_style_mobile = array_merge( $arrow_border_mobile, $arrow_style_mobile );

$m_selectors = array(
	'.uagb-block-' . $id                                => $container_mobile_css, // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
	'.uagb-block-' . $id . ' .swiper-button-prev:after' => array(
		'font-size' => UAGB_Helper::get_css_value( $arrow_size_mobile, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-next:after' => array(
		'font-size' => UAGB_Helper::get_css_value( $arrow_size_mobile, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-prev'       => array(
		'left' => UAGB_Helper::get_css_value( $arrow_distance_mobile, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-button-next'       => array(
		'right' => UAGB_Helper::get_css_value( $arrow_distance_mobile, 'px' ),
	),
	'.uagb-block-' . $id . ' .swiper-pagination'        => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['dotsMarginTopMobile'], 'px' ),
	),
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-prev' => $arrow_style_mobile,
	'.uagb-block-' . $id . '.uagb-slider-container .swiper-button-next' => $arrow_style_mobile,
	'.uagb-block-' . $id . ' .swiper-wrapper'           => array(
		'min-height' => UAGB_Helper::get_css_value( $attr['minHeightMobile'], 'px' ),
	),
);

$z_index        = isset( $attr['zIndex'] ) ? $attr['zIndex'] : '';
$z_index_tablet = isset( $attr['zIndexTablet'] ) ? $attr['zIndexTablet'] : '';
$z_index_mobile = isset( $attr['zIndexMobile'] ) ? $attr['zIndexMobile'] : '';

$selectors[ '.uagb-block-' . $id . '.uag-blocks-common-selector' ] = array(
	'--z-index-desktop' => $z_index,
	'--z-index-tablet'  => $z_index_tablet,
	'--z-index-mobile'  => $z_index_mobile,
);

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'slider', 
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr
);

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-slider-container' );
PK�][�9���Dultimate-addons-for-gutenberg/includes/blocks/slider/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.3.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$selector   = '.uagb-block-' . $id . ' .uagb-swiper';
$block_name = 'slider';

$slider_options = apply_filters(
	'uagb_slider_options',
	array(
		'autoplay'   => $attr['autoplay'] ? array(
			'delay'                => is_int( $attr['autoplaySpeed'] ) ? $attr['autoplaySpeed'] : (int) $attr['autoplaySpeed'],
			'disableOnInteraction' => 'click' === $attr['pauseOn'] ? true : false,
			'pauseOnMouseEnter'    => 'hover' === $attr['pauseOn'] ? true : false,
			'stopOnLastSlide'      => $attr['infiniteLoop'] ? false : true,
		) : false,
		'loop'       => is_bool( $attr['infiniteLoop'] ) ? $attr['infiniteLoop'] : true,
		'speed'      => is_int( $attr['transitionSpeed'] ) ? $attr['transitionSpeed'] : (int) $attr['transitionSpeed'],
		'effect'     => $attr['transitionEffect'],
		'direction'  => $attr['verticalMode'] ? 'vertical' : 'horizontal',
		'flipEffect' => array(
			'slideShadows' => false,
		),
		'fadeEffect' => array(
			'crossFade' => true,
		),
		'pagination' => (bool) $attr['displayDots'] ? array(
			'el'          => '.uagb-block-' . $id . ' .swiper-pagination',
			'clickable'   => true,
			'hideOnClick' => false,
		) : false,
		'navigation' => (bool) $attr['displayArrows'] ? array(
			'nextEl' => '.uagb-block-' . $id . ' .swiper-button-next',
			'prevEl' => '.uagb-block-' . $id . ' .swiper-button-prev',
		) : false,
	),
	$attr
);

ob_start();
?>
window.addEventListener("DOMContentLoaded", function(){
	var swiper = new Swiper( "<?php echo esc_attr( $selector ); ?>",
		<?php echo wp_json_encode( $slider_options ); ?>
	);
});

<?php

do_action( 'spectra_after_slider_options_loaded', $attr );

return ob_get_clean();
?>
PK�][n�ѓ�Lultimate-addons-for-gutenberg/includes/blocks/animations-extension/error_lognu�[���[27-Oct-2025 04:11:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php on line 13
[27-Oct-2025 04:53:30 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 10
[27-Oct-2025 04:53:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 12
[29-Oct-2025 07:05:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php on line 13
[29-Oct-2025 07:07:38 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 10
[29-Oct-2025 07:07:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 12
[29-Oct-2025 07:12:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php on line 13
[29-Oct-2025 07:21:21 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 10
[29-Oct-2025 07:21:21 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 12
[29-Oct-2025 07:23:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php on line 13
[29-Oct-2025 07:58:10 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 10
[29-Oct-2025 07:58:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php:12
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.php on line 12
[29-Oct-2025 08:01:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.php on line 13
PK�][��ݙ��Lultimate-addons-for-gutenberg/includes/blocks/animations-extension/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$block_slug = 'uagb/animations-extension';
$block_data = array(
	'slug'                => '',
	'title'               => __( 'Animations Extension', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Add animations to Spectra blocks.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => true,
	'attributes'          => array(),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-aos-js'       => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'aos' ),
			'dep'  => array(),
			'type' => 'js',
		),
		'uagb-aos-css'      => array(
			'type' => 'css',
		),
		'uagb-animation-js' => array(
			'src'        => UAGB_Scripts_Utils::get_js_url( 'spectra-animations' ),
			'dep'        => array( 'uagb-aos-js' ),
			'type'       => 'js',
			'skipEditor' => true,
		),
	),
);
PK�][慇���Rultimate-addons-for-gutenberg/includes/blocks/animations-extension/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;

$animation_data = apply_filters(
	'uagb_animation_data',
	array(
		'UAGAnimationType' => $attr['UAGAnimationType'],
	),
	$id
);

ob_start();
?>
window.addEventListener( 'load', function() {
	UAGBAnimation.init( <?php echo wp_json_encode( $animation_data ); ?> );
} );
<?php
return ob_get_clean();
?>
PK�][r�%i��?ultimate-addons-for-gutenberg/includes/blocks/buttons/error_lognu�[���[27-Oct-2025 05:02:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons/block.php on line 16
PK�][;�~���Dultimate-addons-for-gutenberg/includes/blocks/buttons/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$default_buttons_child = array();

for ( $i = 1; $i <= 2; $i++ ) {
	$default_buttons_child[] = array(
		'size'             => '',
		'vPadding'         => '',
		'hPadding'         => '',
		'borderWidth'      => '',
		'borderRadius'     => '',
		'borderStyle'      => 'none',
		'borderColor'      => '',
		'borderHColor'     => '',
		'color'            => '',
		'background'       => '',
		'hColor'           => '',
		'hBackground'      => '',
		'sizeType'         => 'px',
		'sizeMobile'       => '',
		'sizeTablet'       => '',
		'lineHeightType'   => 'em',
		'lineHeight'       => '',
		'lineHeightMobile' => '',
		'lineHeightTablet' => '',
	);
}

return array(
	'classMigrate'            => false,
	'childMigrate'            => false,
	'block_id'                => '',
	'align'                   => 'center',
	'btn_count'               => '1',
	'buttons'                 => $default_buttons_child,
	'gap'                     => 10,
	'gapTablet'               => '',
	'gapMobile'               => '',
	'inheritGap'              => false,
	'flexWrap'                => false,
	'stack'                   => 'none',
	'fontFamily'              => '',
	'fontWeight'              => '',
	'loadGoogleFonts'         => false,
	'fontStyle'               => '',
	'fontTransform'           => '',
	'fontDecoration'          => '',
	'alignTablet'             => 'center',
	'alignMobile'             => 'center',
	'fontSizeType'            => 'px',
	'fontSizeTypeTablet'      => 'px',
	'fontSizeTypeMobile'      => 'px',
	'fontSize'                => '',
	'fontSizeMobile'          => '',
	'fontSizeTablet'          => '',
	'lineHeightType'          => 'px',
	'lineHeight'              => '',
	'lineHeightMobile'        => '',
	'lineHeightTablet'        => '',
	'buttonSize'              => 'default',
	'buttonSizeTablet'        => 'default',
	'buttonSizeMobile'        => 'default',

	'topPadding'              => '',
	'rightPadding'            => '',
	'bottomPadding'           => '',
	'leftPadding'             => '',

	'topTabletPadding'        => '',
	'rightTabletPadding'      => '',
	'bottomTabletPadding'     => '',
	'leftTabletPadding'       => '',

	'topMobilePadding'        => '',
	'rightMobilePadding'      => '',
	'bottomMobilePadding'     => '',
	'leftMobilePadding'       => '',

	'paddingUnit'             => 'px',
	'mobilePaddingUnit'       => 'px',
	'tabletPaddingUnit'       => 'px',

	'topMargin'               => '',
	'rightMargin'             => '',
	'bottomMargin'            => '',
	'leftMargin'              => '',

	'topMarginTablet'         => '',
	'rightMarginTablet'       => '',
	'bottomMarginTablet'      => '',
	'leftMarginTablet'        => '',

	'topMarginMobile'         => '',
	'rightMarginMobile'       => '',
	'bottomMarginMobile'      => '',
	'leftMarginMobile'        => '',

	'marginType'              => 'px',
	'marginLink'              => '',

	'verticalAlignment'       => '',

	// letter spacing.
	'fontLetterSpacing'       => '',
	'fontLetterSpacingTablet' => '',
	'fontLetterSpacingMobile' => '',
	'fontLetterSpacingType'   => 'px',
	// For Global Block Styles.
	'globalBlockStyleName'    => '',
	'globalBlockStyleId'      => '',
);
PK�][4YF���?ultimate-addons-for-gutenberg/includes/blocks/buttons/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/buttons';
$block_data = array(
	'doc'              => 'multi-buttons',
	'slug'             => '',
	'admin_categories' => array( 'creative', 'core' ),
	'link'             => 'buttons',
	'title'            => __( 'Buttons', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add multiple buttons to redirect user to different webpages.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'buttons' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'buttons',
	),
);
PK�][���[8181Fultimate-addons-for-gutenberg/includes/blocks/buttons/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 */

// Adds Fonts.
UAGB_Block_JS::blocks_buttons_gfont( $attr );

$m_selectors = array();
$t_selectors = array();
$selectors   = array();

$button_desktop_padding = array();
$button_tablet_padding  = array();
$button_mobile_padding  = array();

if ( ! $attr['inheritGap'] ) {
	if ( 'desktop' === $attr['stack'] ) {
		// High specificity needed here as to make it uniform as across all the device breakpoints as for other device breakpoints this was taking the higher specificity.
		$selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap ']   = array(
			'flex-direction' => 'column',
			'gap'            => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		);
		$t_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap '] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);
		$m_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap '] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);

	} elseif ( 'tablet' === $attr['stack'] ) {

		$selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap  .uagb-buttons__wrap '] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		);
		$t_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
			'gap'            => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);
		$m_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
			'gap'            => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);

	} elseif ( 'mobile' === $attr['stack'] ) {

		$selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap ']  = array(
			'flex-direction' => 'row',
			'gap'            => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		);
		$t_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);
		$m_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
			'gap'            => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);

	} elseif ( 'none' === $attr['stack'] ) {
		$selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap ']  = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		);
		$t_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);
		$m_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'gap' => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);
	}
}

if ( $attr['inheritGap'] ) {
	if ( 'desktop' === $attr['stack'] ) {
		$selectors[' .uagb-buttons__wrap '] = array(
			'flex-direction' => 'column',
		);
	} elseif ( 'tablet' === $attr['stack'] ) {

		$t_selectors[' .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
		);
		$m_selectors[' .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
		);

	} elseif ( 'mobile' === $attr['stack'] ) {

		$selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap ']  = array(
			'flex-direction' => 'row',
		);
		$m_selectors['.wp-block-uagb-buttons.uagb-buttons__outer-wrap .uagb-buttons__wrap'] = array(
			'flex-direction' => 'column',
		);
	}
}

if ( $attr['flexWrap'] ) {
	$selectors[' .uagb-buttons__wrap ']['flex-wrap'] = 'wrap';
}

$vAlign = '';
switch ( $attr['verticalAlignment'] ) {
	case 'top':
		$vAlign = 'flex-start';
		break;
	case 'bottom':
		$vAlign = 'flex-end';
		break;
	default:
		$vAlign = 'center';
		break;
}
if ( 'full' !== $attr['align'] ) {
	$selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap '] = array(
		'justify-content' => $attr['align'],
		'align-items'     => $vAlign,
	);
} else {
	$selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap']                   = array(
		'width'       => '100%',
		'align-items' => $vAlign,
	);
	$selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button '] = array(
		'width' => '100%',
	);
}

if ( 'full' !== $attr['alignTablet'] ) {
	$t_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap ']                 = array(
		'justify-content' => $attr['alignTablet'],
		'align-items'     => $vAlign,
	);
	$t_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button'] = array(
		'width' => 'auto',
	);
} else {
	$t_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap']                   = array(
		'width' => '100%',
	);
	$t_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button '] = array(
		'width' => '100%',
	);
}

if ( 'full' !== $attr['alignMobile'] ) {
	$m_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap ']                 = array(
		'justify-content' => $attr['alignMobile'],
		'align-items'     => $vAlign,
	);
	$m_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button'] = array(
		'width' => 'auto',
	);
} else {
	$m_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap']                   = array(
		'width' => '100%',
	);
	$m_selectors['.uagb-buttons__outer-wrap .uagb-buttons__wrap .wp-block-button '] = array(
		'width' => '100%',
	);
}

if ( $attr['childMigrate'] ) {

	$button_desktop_style = array( // For Backword user.
		'font-family'     => $attr['fontFamily'],
		'text-transform'  => $attr['fontTransform'],
		'text-decoration' => $attr['fontDecoration'],
		'font-style'      => $attr['fontStyle'],
		'font-weight'     => $attr['fontWeight'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['lineHeight'], $attr['lineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['fontLetterSpacing'], $attr['fontLetterSpacingType'] ),
	);

	if ( 'default' === $attr['buttonSize'] ) {
		$button_desktop_padding = array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPadding'], $attr['paddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPadding'], $attr['paddingUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPadding'], $attr['paddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPadding'], $attr['paddingUnit'] ),
		);
		$button_tablet_padding  = array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topTabletPadding'], $attr['tabletPaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomTabletPadding'], $attr['tabletPaddingUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftTabletPadding'], $attr['tabletPaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightTabletPadding'], $attr['tabletPaddingUnit'] ),
		);
		$button_mobile_padding  = array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topMobilePadding'], $attr['mobilePaddingUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomMobilePadding'], $attr['mobilePaddingUnit'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftMobilePadding'], $attr['mobilePaddingUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightMobilePadding'], $attr['mobilePaddingUnit'] ),
		);
	}

	$button_tablet_style = array(
		'font-size'      => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['fontSizeTypeTablet'] ),
		'line-height'    => UAGB_Helper::get_css_value( $attr['lineHeightTablet'], $attr['lineHeightType'] ),
		'letter-spacing' => UAGB_Helper::get_css_value( $attr['fontLetterSpacingTablet'], $attr['fontLetterSpacingType'] ),
	);

	$button_mobile_style = array(
		'font-size'      => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['fontSizeTypeMobile'] ),
		'line-height'    => UAGB_Helper::get_css_value( $attr['lineHeightMobile'], $attr['lineHeightType'] ),
		'letter-spacing' => UAGB_Helper::get_css_value( $attr['fontLetterSpacingMobile'], $attr['fontLetterSpacingType'] ),
	);

	$button_desktop_style = $button_desktop_padding ? array_merge( $button_desktop_style, $button_desktop_padding ) : $button_desktop_style;
	$button_tablet_style  = $button_tablet_padding ? array_merge( $button_tablet_style, $button_tablet_padding ) : $button_tablet_style;
	$button_mobile_style  = $button_mobile_padding ? array_merge( $button_mobile_style, $button_mobile_padding ) : $button_mobile_style;

	$selectors[' .uagb-buttons-repeater:not(.wp-block-button__link)']                 = $button_desktop_style; // For Backword user.
	$selectors[' .uagb-button__wrapper .uagb-buttons-repeater.wp-block-button__link'] = $button_desktop_style; // For New User.
	$selectors[' .uagb-button__wrapper .uagb-buttons-repeater.ast-outline-button']    = $button_desktop_style; // For Secondary color from Astra Customizer.
	$t_selectors[' .uagb-buttons-repeater:not(.wp-block-button__link)']               = $button_tablet_style; // For Backword user.
	$t_selectors[' .uagb-buttons-repeater.wp-block-button__link']                     = $button_tablet_style; // For New User.
	$m_selectors[' .uagb-buttons-repeater:not(.wp-block-button__link)']               = $button_mobile_style; // For Backword user.
	$m_selectors[' .uagb-buttons-repeater.wp-block-button__link']                     = $button_mobile_style; // For New User.

	$selectors[' .uagb-button__wrapper'] = array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['topMargin'], $attr['marginType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMargin'], $attr['marginType'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['marginType'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['marginType'] ),
	);

	$t_selectors[' .uagb-button__wrapper'] = array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['marginType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['marginType'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['marginType'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['marginType'] ),
	);

	$m_selectors[' .uagb-button__wrapper'] = array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['marginType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['marginType'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['marginType'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['marginType'] ),
	);
}

if ( ! $attr['childMigrate'] ) {

	$defaults = UAGB_DIR . 'includes/blocks/buttons-child/attributes.php';

	if ( file_exists( $defaults ) ) {
		$default_attr = include $defaults;
	}

	$default_attr = ( ! empty( $default_attr ) && is_array( $default_attr ) ) ? $default_attr : array();

	foreach ( $attr['buttons'] as $key => $button ) {

		if ( $attr['btn_count'] <= $key ) {
			break;
		}

		$button = array_merge( $default_attr, $button );

		$wrapper = ( ! $attr['childMigrate'] ) ? ' .uagb-buttons-repeater-' . $key . '.uagb-button__wrapper' : ' .uagb-buttons-repeater';

		$selectors[ $wrapper ] = array(
			'font-family'     => $attr['fontFamily'],
			'text-transform'  => $attr['fontTransform'],
			'text-decoration' => $attr['fontDecoration'],
			'font-style'      => $attr['fontStyle'],
			'font-weight'     => $attr['fontWeight'],
		);

		$child_selectors = UAGB_Block_Helper::get_buttons_child_selectors( $button, $key, $attr['childMigrate'] );
		$selectors       = array_merge( $selectors, $child_selectors['selectors'] );
		$t_selectors     = array_merge( $t_selectors, $child_selectors['t_selectors'] );
		$m_selectors     = array_merge( $m_selectors, $child_selectors['m_selectors'] );
	}
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-buttons-';

return UAGB_Helper::generate_all_css( 
	$combined_selectors,
	$base_selector . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][Y�`��Bultimate-addons-for-gutenberg/includes/blocks/tabs-child/error_lognu�[���[27-Oct-2025 13:20:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs-child/block.php on line 14
PK�][;��9��Bultimate-addons-for-gutenberg/includes/blocks/tabs-child/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/tabs-child';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Tabs child', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Display your content in a tab.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'extension'   => false,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�~^.��Aultimate-addons-for-gutenberg/includes/blocks/gf-styler/error_lognu�[���[27-Oct-2025 11:31:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/gf-styler/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/gf-styler/block.php on line 16
PK�][���F�)�)Fultimate-addons-for-gutenberg/includes/blocks/gf-styler/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                         => '',
	'align'                            => 'left',
	'enableAjax'                       => false,
	'enableTabSupport'                 => false,
	'formTabIndex'                     => '0',
	'formId'                           => '0',
	'titleDescStyle'                   => 'yes',
	'titleDescAlignment'               => 'left',
	'fieldStyle'                       => 'box',
	'fieldHrPadding'                   => 10,
	'fieldVrPadding'                   => 10,
	'fieldBgColor'                     => '#fafafa',
	'fieldLabelColor'                  => '#333',
	'fieldInputColor'                  => '#333',
	'fieldBorderStyle'                 => 'solid',
	'fieldBorderWidth'                 => 1,
	'fieldBorderWidthTablet'           => '',
	'fieldBorderWidthMobile'           => '',
	'fieldBorderWidthType'             => 'px',
	'fieldBorderRadius'                => 0,
	'fieldBorderColor'                 => '#eeeeee',
	'fieldBorderFocusColor'            => '',
	'buttonAlignment'                  => 'left',
	'buttonVrPadding'                  => 10,
	'buttonHrPadding'                  => 25,
	'buttonTextColor'                  => '#333',
	'buttonBgColor'                    => '#ffffff',
	'buttonTextHoverColor'             => '',
	'buttonBgHoverColor'               => '#ffffff',
	'buttonBorderStyle'                => 'solid',
	'buttonBorderWidth'                => 1,
	'buttonBorderWidthTablet'          => '',
	'buttonBorderWidthMobile'          => '',
	'buttonBorderWidthType'            => 'px',
	'buttonBorderRadius'               => 0,
	'buttonBorderColor'                => '#333',
	'buttonBorderHoverColor'           => '',
	'fieldSpacing'                     => '',
	'fieldSpacingTablet'               => '',
	'fieldSpacingMobile'               => '',
	'fieldLabelSpacing'                => '',
	'fieldLabelSpacingMobile'          => '',
	'fieldLabelSpacingTablet'          => '',
	'enableLabel'                      => false,
	'textAreaHeight'                   => 'auto',
	'textAreaHeightTablet'             => 'auto',
	'textAreaHeightMobile'             => 'auto',
	'labelFontSize'                    => '',
	'labelFontSizeType'                => 'px',
	'labelFontSizeTablet'              => '',
	'labelFontSizeMobile'              => '',
	'labelFontFamily'                  => '',
	'labelFontWeight'                  => '',
	'labelFontStyle'                   => '',
	'labelTransform'                   => '',
	'labelDecoration'                  => '',
	'labelLineHeightType'              => 'px',
	'labelLineHeight'                  => '',
	'labelLineHeightTablet'            => '',
	'labelLineHeightMobile'            => '',
	'labelLoadGoogleFonts'             => false,
	'inputFontSize'                    => '',
	'inputFontSizeType'                => 'px',
	'inputFontSizeTablet'              => '',
	'inputFontSizeMobile'              => '',
	'inputFontFamily'                  => '',
	'inputFontWeight'                  => '',
	'inputFontStyle'                   => '',
	'inputTransform'                   => '',
	'inputDecoration'                  => '',
	'inputLineHeightType'              => 'px',
	'inputLineHeight'                  => '',
	'inputLineHeightTablet'            => '',
	'inputLineHeightMobile'            => '',
	'inputLoadGoogleFonts'             => false,
	'buttonFontSize'                   => '',
	'buttonFontSizeType'               => 'px',
	'buttonFontSizeTablet'             => '',
	'buttonFontSizeMobile'             => '',
	'buttonFontFamily'                 => '',
	'buttonFontWeight'                 => '',
	'buttonFontStyle'                  => '',
	'buttonTransform'                  => '',
	'buttonDecoration'                 => '',
	'buttonLineHeightType'             => 'px',
	'buttonLineHeight'                 => '',
	'buttonLineHeightTablet'           => '',
	'buttonLineHeightMobile'           => '',
	'buttonLoadGoogleFonts'            => false,
	'enableOveride'                    => true,
	'radioCheckSize'                   => '20',
	'radioCheckSizeTablet'             => '',
	'radioCheckSizeMobile'             => '',
	'radioCheckBgColor'                => '#fafafa',
	'radioCheckSelectColor'            => '',
	'radioCheckLableColor'             => '',
	'radioCheckBorderColor'            => '#cbcbcb',
	'radioCheckBorderWidth'            => '1',
	'radioCheckBorderWidthTablet'      => '',
	'radioCheckBorderWidthMobile'      => '',
	'radioCheckBorderWidthType'        => 'px',
	'radioCheckBorderRadius'           => '',
	'radioCheckFontSize'               => '',
	'radioCheckFontSizeType'           => 'px',
	'radioCheckFontSizeTablet'         => '',
	'radioCheckFontSizeMobile'         => '',
	'radioCheckFontFamily'             => '',
	'radioCheckFontWeight'             => '',
	'radioCheckFontStyle'              => '',
	'radioCheckTransform'              => '',
	'radioCheckDecoration'             => '',
	'radioCheckLineHeightType'         => 'px',
	'radioCheckLineHeight'             => '',
	'radioCheckLineHeightTablet'       => '',
	'radioCheckLineHeightMobile'       => '',
	'radioCheckLoadGoogleFonts'        => false,
	'validationMsgColor'               => '#ff0000',
	'advancedValidationSettings'       => false,
	'highlightBorderColor'             => '#ff0000',
	'validationMsgFontSize'            => '',
	'validationMsgBgColor'             => '',
	'validationMsgFontSizeType'        => 'px',
	'validationMsgFontSizeTablet'      => '',
	'validationMsgFontSizeMobile'      => '',
	'validationMsgFontFamily'          => '',
	'validationMsgFontWeight'          => '',
	'validationMsgFontStyle'           => '',
	'validationMsgTransform'           => '',
	'validationMsgDecoration'          => '',
	'validationMsgLineHeightType'      => 'em',
	'validationMsgLineHeight'          => '',
	'validationMsgLineHeightTablet'    => '',
	'validationMsgLineHeightMobile'    => '',
	'validationMsgLoadGoogleFonts'     => false,
	'successMsgBorderColor'            => '',
	'errorMsgColor'                    => '',
	'errorMsgBgColor'                  => '',
	'errorMsgBorderColor'              => '',
	'msgBorderSize'                    => '',
	'msgBorderSizeType'                => 'px',
	'msgBorderRadius'                  => '',
	'msgVrPadding'                     => '',
	'msgHrPadding'                     => '',
	'msgFontSize'                      => '',
	'msgFontSizeType'                  => 'px',
	'msgFontSizeTablet'                => '',
	'msgFontSizeMobile'                => '',
	'msgFontFamily'                    => '',
	'msgFontWeight'                    => '',
	'msgFontStyle'                     => '',
	'msgTransform'                     => '',
	'msgDecoration'                    => '',
	'msgLineHeightType'                => 'em',
	'msgLineHeight'                    => '',
	'msgLineHeightTablet'              => '',
	'msgLineHeightMobile'              => '',
	'msgLoadGoogleFonts'               => false,
	'radioCheckBorderRadiusType'       => 'px',
	'msgBorderRadiusType'              => 'px',
	'fieldBorderRadiusType'            => 'px',
	'buttonBorderRadiusType'           => 'px',
	'successMsgColor'                  => '',
	'successMsgFontSize'               => '',
	'successMsgFontSizeType'           => 'px',
	'successMsgFontSizeTablet'         => '',
	'successMsgFontSizeMobile'         => '',
	'successMsgFontFamily'             => '',
	'successMsgFontWeight'             => '',
	'successMsgFontStyle'              => '',
	'successMsgTransform'              => '',
	'successMsgDecoration'             => '',
	'successMsgLineHeightType'         => 'em',
	'successMsgLineHeight'             => '',
	'successMsgLineHeightTablet'       => '',
	'successMsgLineHeightMobile'       => '',
	'successMsgLoadGoogleFonts'        => false,
	'msgleftPadding'                   => '',
	'msgrightPadding'                  => '',
	'msgtopPadding'                    => '',
	'msgbottomPadding'                 => '',
	'msgleftMobilePadding'             => '',
	'msgrightMobilePadding'            => '',
	'msgtopMobilePadding'              => '',
	'msgbottomMobilePadding'           => '',
	'msgleftTabletPadding'             => '',
	'msgrightTabletPadding'            => '',
	'msgtopTabletPadding'              => '',
	'msgbottomTabletPadding'           => '',
	'msgtabletPaddingUnit'             => 'px',
	'msgmobilePaddingUnit'             => 'px',
	'msgpaddingUnit'                   => 'px',
	'buttonleftMobilePadding'          => '',
	'buttonrightMobilePadding'         => '',
	'buttontopMobilePadding'           => '',
	'buttonbottomMobilePadding'        => '',
	'buttonleftTabletPadding'          => '',
	'buttonrightTabletPadding'         => '',
	'buttontopTabletPadding'           => '',
	'buttonbottomTabletPadding'        => '',
	'buttontabletPaddingUnit'          => 'px',
	'buttonmobilePaddingUnit'          => 'px',
	'buttonpaddingUnit'                => 'px',
	'fieldleftMobilePadding'           => '',
	'fieldrightMobilePadding'          => '',
	'fieldtopMobilePadding'            => '',
	'fieldbottomMobilePadding'         => '',
	'fieldleftTabletPadding'           => '',
	'fieldrightTabletPadding'          => '',
	'fieldtopTabletPadding'            => '',
	'fieldbottomTabletPadding'         => '',
	'fieldtabletPaddingUnit'           => 'px',
	'fieldmobilePaddingUnit'           => 'px',
	'fieldpaddingUnit'                 => 'px',
	'labelLetterSpacing'               => '',
	'labelLetterSpacingTablet'         => '',
	'labelLetterSpacingMobile'         => '',
	'labelLetterSpacingType'           => 'px',
	'inputLetterSpacing'               => '',
	'inputLetterSpacingTablet'         => '',
	'inputLetterSpacingMobile'         => '',
	'inputLetterSpacingType'           => 'px',
	'radioCheckLetterSpacing'          => '',
	'radioCheckLetterSpacingTablet'    => '',
	'radioCheckLetterSpacingMobile'    => '',
	'radioCheckLetterSpacingType'      => 'px',
	'buttonLetterSpacing'              => '',
	'buttonLetterSpacingTablet'        => '',
	'buttonLetterSpacingMobile'        => '',
	'buttonLetterSpacingType'          => 'px',
	'validationMsgLetterSpacing'       => '',
	'validationMsgLetterSpacingTablet' => '',
	'validationMsgLetterSpacingMobile' => '',
	'validationMsgLetterSpacingType'   => 'px',
	'msgLetterSpacing'                 => '',
	'msgLetterSpacingTablet'           => '',
	'msgLetterSpacingMobile'           => '',
	'msgLetterSpacingType'             => 'px',
	'successMsgLetterSpacing'          => '',
	'successMsgLetterSpacingTablet'    => '',
	'successMsgLetterSpacingMobile'    => '',
	'successMsgLetterSpacingType'      => 'px',
);
PK�][ĸ˘""Aultimate-addons-for-gutenberg/includes/blocks/gf-styler/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/gf-styler';
$block_data = array(
	'doc'              => 'gravity-form',
	'slug'             => '',
	'admin_categories' => array( 'form' ),
	'link'             => 'gravity-form-styler',
	'title'            => __( 'Gravity Form Designer', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Highly customize and style your forms created by Gravity Forms.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'is_active'        => class_exists( 'GFForms' ),
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'gf-styler' ),
	'deprecated'       => true,
	'dynamic_assets'   => array(
		'dir' => 'gf-styler',
	),
);
PK�][;��i��Hultimate-addons-for-gutenberg/includes/blocks/gf-styler/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_gf_styler_gfont( $attr );

$attr['msgVrPadding']   = ( '' === $attr['msgVrPadding'] ) ? '0' : $attr['msgVrPadding'];
$attr['msgHrPadding']   = ( '' === $attr['msgHrPadding'] ) ? '0' : $attr['msgHrPadding'];
$attr['textAreaHeight'] = ( 'auto' === $attr['msgHrPadding'] ) ?
$attr['textAreaHeight'] : $attr['textAreaHeight'] . 'px';
$button_top_padding     = isset( $attr['buttontopPadding'] ) ? $attr['buttontopPadding'] : $attr['buttonVrPadding'];
$button_bottom_padding  = isset( $attr['buttonbottomPadding'] ) ? $attr['buttonbottomPadding'] : $attr['buttonVrPadding'];
$button_left_padding    = isset( $attr['buttonleftPadding'] ) ? $attr['buttonleftPadding'] : $attr['buttonHrPadding'];
$button_right_padding   = isset( $attr['buttonrightPadding'] ) ? $attr['buttonrightPadding'] : $attr['buttonHrPadding'];

$msg_top_padding    = isset( $attr['msgtopPadding'] ) ? $attr['msgtopPadding'] : $attr['msgVrPadding'];
$msg_bottom_padding = isset( $attr['msgbottomPadding'] ) ? $attr['msgbottomPadding'] : $attr['msgVrPadding'];
$msg_left_padding   = isset( $attr['msgleftPadding'] ) ? $attr['msgleftPadding'] : $attr['msgHrPadding'];
$msg_right_padding  = isset( $attr['msgrightPadding'] ) ? $attr['msgrightPadding'] : $attr['msgHrPadding'];

$field_top_padding    = isset( $attr['fieldtopPadding'] ) ? $attr['fieldtopPadding'] : $attr['fieldVrPadding'];
$field_bottom_padding = isset( $attr['fieldbottomPadding'] ) ? $attr['fieldbottomPadding'] : $attr['fieldVrPadding'];
$field_left_padding   = isset( $attr['fieldleftPadding'] ) ? $attr['fieldleftPadding'] : $attr['fieldHrPadding'];
$field_right_padding  = isset( $attr['fieldrightPadding'] ) ? $attr['fieldrightPadding'] : $attr['fieldHrPadding'];

$selectors = array(
	' .gform_wrapper form'                                 => array(
		'text-align' => $attr['align'],
	),
	' .gform_wrapper .gfield_label'                        => array(
		'color' => $attr['fieldLabelColor'],
	),
	' .wp-block-uagb-gf-styler form:not(input)'            => array(
		'color' => $attr['fieldLabelColor'],
	),
	' .gform_heading'                                      => array(
		'text-align' => $attr['titleDescAlignment'],
	),
	' .gform_wrapper input:not([type=submit])'             => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'border-style'     => $attr['fieldBorderStyle'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
		'padding-left'     => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
		'margin-top'       => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['fieldSpacing'],
			'px'
		),
		'text-align'       => $attr['align'],
	),
	// Focus.
	' .gform_wrapper.gravity-theme input:not([type=submit]):focus' => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),
	' .gform_wrapper.gravity-theme select:focus'           => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),
	' .gform_wrapper.gravity-theme textarea:focus'         => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),
	' input[type=button]'                                  => array(
		'color'            => $attr['buttonTextColor'],
		'background-color' => $attr['buttonBgColor'],
		'border-color'     => $attr['buttonBorderColor'],
		'border-style'     => $attr['buttonBorderStyle'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['buttonBorderWidth'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['buttonBorderRadius'],
			$attr['buttonBorderRadiusType']
		),
		'padding-left'     => UAGB_Helper::get_css_value( $button_left_padding, $attr['buttonpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $button_right_padding, $attr['buttonpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $button_top_padding, $attr['buttonpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $button_bottom_padding, $attr['buttonpaddingUnit'] ),
	),
	' input[type=button]:hover'                            => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => $attr['buttonBorderHoverColor'],
	),
	' input[type=button]:focus'                            => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => $attr['buttonBorderHoverColor'],
	),
	' .gform_wrapper select '                              => array(
		'background-color' => $attr['fieldBgColor'],
		'border-style'     => $attr['fieldBorderStyle'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
		'margin-top'       => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['fieldSpacing'],
			'px'
		),
		'color'            => $attr['fieldInputColor'],
		'text-align'       => $attr['align'],
		'padding-left'     => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
	),
	' .chosen-container-single span'                       => array(
		'background-color' => $attr['fieldBgColor'],
		'border-style'     => $attr['fieldBorderStyle'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
		'margin-top'       => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['fieldSpacing'],
			'px'
		),
		'color'            => $attr['fieldInputColor'],
		'text-align'       => $attr['align'],
		'padding-left'     => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
	),
	' .chosen-container-single.chosen-container-active .chosen-single span' => array(
		'margin-bottom' => 0,
	),
	' select.wpgf-form-control.wpgf-select:not([multiple="multiple"])' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
	),
	' select.wpgf-select[multiple="multiple"] option'      => array(
		'padding-left'   => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
	),
	' .gform_wrapper .gfield textarea'                     => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
		'border-style'     => $attr['fieldBorderStyle'],
		'padding-left'     => UAGB_Helper::get_css_value( $field_left_padding, $attr['fieldpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $field_right_padding, $attr['fieldpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $field_top_padding, $attr['fieldpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $field_bottom_padding, $attr['fieldpaddingUnit'] ),
		'margin-top'       => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['fieldSpacing'],
			'px'
		),
		'text-align'       => $attr['align'],
		'height'           => $attr['textAreaHeight'],
	),

	' .gform_wrapper.gravity-theme .gfield textarea.large:focus' => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),
	' textarea::placeholder'                               => array(
		'color'      => $attr['fieldInputColor'],
		'text-align' => $attr['align'],
	),
	' input::placeholder'                                  => array(
		'color'      => $attr['fieldInputColor'],
		'text-align' => $attr['align'],
	),
	' .gform_wrapper.gravity-theme .gfield_label'          => array(
		'color'           => $attr['fieldLabelColor'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
		'font-family'     => $attr['labelFontFamily'],
		'text-transform'  => $attr['labelTransform'],
		'text-decoration' => $attr['labelDecoration'] . '!important',
		'font-style'      => $attr['labelFontStyle'],
		'font-weight'     => $attr['labelFontWeight'],
		'line-height'     => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
	),
	' form .gfield_radio label.gfield_label'               => array(
		'color'           => $attr['fieldLabelColor'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
		'font-family'     => $attr['labelFontFamily'],
		'text-transform'  => $attr['labelTransform'],
		'text-decoration' => $attr['labelDecoration'] . '!important',
		'font-style'      => $attr['labelFontStyle'],
		'font-weight'     => $attr['labelFontWeight'],
		'line-height'     => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
	),
	' form .gfield_checkbox label.gfield_label'            => array(
		'color'           => $attr['fieldLabelColor'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['labelFontSize'], $attr['labelFontSizeType'] ),
		'font-family'     => $attr['labelFontFamily'],
		'text-transform'  => $attr['labelTransform'],
		'text-decoration' => $attr['labelDecoration'] . '!important',
		'font-style'      => $attr['labelFontStyle'],
		'font-weight'     => $attr['labelFontWeight'],
		'line-height'     => UAGB_Helper::get_css_value( $attr['labelLineHeight'], $attr['labelLineHeightType'] ),
	),
	' .gform_wrapper.gravity-theme .gfield_checkbox '      => array(
		'margin-top' => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
	),
	' .gform_wrapper.gravity-theme .gfield_radio '         => array(
		'margin-top' => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacing'],
			'px'
		),
	),

	// Submit button.
	' input.gform_button'                                  => array(
		'color'            => $attr['buttonTextColor'],
		'background-color' => $attr['buttonBgColor'],
		'border-color'     => $attr['buttonBorderColor'],
		'border-style'     => $attr['buttonBorderStyle'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['buttonBorderWidth'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['buttonBorderRadius'],
			$attr['buttonBorderRadiusType']
		),
		'padding-left'     => UAGB_Helper::get_css_value( $button_left_padding, $attr['buttonpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $button_right_padding, $attr['buttonpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $button_top_padding, $attr['buttonpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $button_bottom_padding, $attr['buttonpaddingUnit'] ),
	),

	' .gform_footer.top_label input[type="submit"]'        => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['buttonFontSize'], $attr['buttonFontSizeType'] ),
	),

	' input.gform_button:hover'                            => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => $attr['buttonBorderHoverColor'],
	),
	' input.gform_button:focus'                            => array(
		'color'            => $attr['buttonTextHoverColor'],
		'background-color' => $attr['buttonBgHoverColor'],
		'border-color'     => $attr['buttonBorderHoverColor'],
	),

	// Check box Radio.
	' .gfield_checkbox input[type="checkbox"]:checked + label:before' => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'font-size'        => 'calc( ' . $attr['fieldVrPadding'] . 'px / 1.2 )',
		'border-color'     => $attr['fieldBorderFocusColor'],
	),
	' .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'border-style'     => $attr['fieldBorderStyle'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
		'font-size'        => 'calc( ' . $attr['fieldVrPadding'] . 'px / 1.2 )',
	),
	' input[type="checkbox"]:checked + label:before'       => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'font-size'        => 'calc( ' . $attr['fieldVrPadding'] . 'px / 1.2 )',
		'border-color'     => $attr['fieldBorderFocusColor'],
	),
	' input[type="checkbox"] + label:before'               => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'font-size'        => 'calc( ' . $attr['fieldVrPadding'] . 'px / 1.2 )',
		'border-color'     => $attr['fieldBorderColor'],
		'border-style'     => $attr['fieldBorderStyle'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
	),
	' .wp-block-uagb-gf-styler .gform_wrapper .ginput_container_select select' => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
	),
	' .gfield_radio input[type="radio"] + label:before'    => array(
		'background-color' => $attr['fieldBgColor'],
		'color'            => $attr['fieldInputColor'],
		'height'           => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['fieldVrPadding'], 'px' ),
		'border-style'     => $attr['fieldBorderStyle'],
		'border-color'     => $attr['fieldBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
	),
	' .gfield_radio input[type="radio"]:checked + label:before' => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),

	// Underline border.
	' .uagb-gf-styler__field-style-underline .gform_wrapper input:not([type=submit])' => array(
		'border-style'        => 'none',
		'border-bottom-color' => $attr['fieldBorderColor'],
		'border-bottom-style' => 'solid',
		'border-bottom-width' => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'       => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
	),
	' .uagb-gf-styler__field-style-underline .gform_wrapper .gfield textarea' => array(
		'background-color'    => $attr['fieldBgColor'],
		'color'               => $attr['fieldInputColor'],
		'border-style'        => 'none',
		'border-bottom-color' => $attr['fieldBorderColor'],
		'border-bottom-style' => 'solid',
		'border-bottom-width' => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'       => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
	),
	' .uagb-gf-styler__field-style-underline select'       => array(
		'border-style'        => 'none',
		'border-bottom-color' => $attr['fieldBorderColor'],
		'border-bottom-style' => 'solid',
		'border-bottom-width' => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'       => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
	),
	' .uagb-gf-styler__field-style-underline textarea'     => array(
		'border-style'        => 'none',
		'border-bottom-color' => $attr['fieldBorderColor'],
		'border-bottom-style' => 'solid',
		'border-bottom-width' => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidth'],
			$attr['fieldBorderWidthType']
		),
		'border-radius'       => UAGB_Helper::get_css_value(
			$attr['fieldBorderRadius'],
			$attr['fieldBorderRadiusType']
		),
	),

	' .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'border-style' => 'solid',
	),
	' .uagb-gf-styler__check-style-enabled input[type="radio"] + label:before' => array(
		'border-style' => 'solid',
	),
	' .uagb-gf-styler__field-style-box .gfield_checkbox input[type="checkbox"]:checked + label:before' => array(
		'border-style'  => 'solid',
		'border-width'  => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
		'border-radius' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderRadius'],
			$attr['radioCheckBorderRadiusType']
		),
		'font-size'     => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
	),
	' .uagb-gf-styler__field-style-box input[type="checkbox"]:checked + label:before' => array(
		'border-style'  => 'solid',
		'border-width'  => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
		'border-radius' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderRadius'],
			$attr['radioCheckBorderRadiusType']
		),
		'font-size'     => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
	),
	' .gfield_radio input[type="radio"]:checked + label:before' => array(
		'background-color' => $attr['fieldInputColor'],
	),

	// Override check box.
	' .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'width'            => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-style'     => 'solid',
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderRadius'],
			$attr['radioCheckBorderRadiusType']
		),
	),
	' .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"]:checked + label:before' => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),
	' .uagb-gf-styler__check-style-enabled input[type="checkbox"] + label:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'width'            => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderRadius'],
			$attr['radioCheckBorderRadiusType']
		),
	),
	' .uagb-gf-styler__check-style-enabled input[type="checkbox"]:checked + label:before' => array(
		'border-color' => $attr['fieldBorderFocusColor'],
	),

	' .uagb-gf-styler__check-style-enabled input[type="radio"] + label:before' => array(
		'background-color' => $attr['radioCheckBgColor'],
		'color'            => $attr['radioCheckSelectColor'],
		'height'           => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'width'            => UAGB_Helper::get_css_value(
			$attr['radioCheckSize'],
			'px'
		),
		'font-size'        => 'calc( ' . $attr['radioCheckSize'] . 'px / 1.2 )',
		'border-color'     => $attr['radioCheckBorderColor'],
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderRadius'],
			$attr['radioCheckBorderRadiusType']
		),
	),
	' .uagb-gf-styler__check-style-enabled .gfield_radio input[type="radio"]:checked + label:before' => array(
		'background-color' => $attr['radioCheckSelectColor'],
		'border-color'     => $attr['fieldBorderFocusColor'],
	),
	' .uagb-gf-styler__check-style-enabled form .gfield_radio label' => array(
		'color' => $attr['radioCheckLableColor'],
	),
	' .uagb-gf-styler__check-style-enabled form .gfield_checkbox label' => array(
		'color' => $attr['radioCheckLableColor'],
	),
	// Validation Errors.
	' .gform_wrapper .gfield_description.validation_message' => array(
		'color' => $attr['validationMsgColor'],
	),
	' .uagb-gf-styler__error-yes .gform_wrapper .gfield.gfield_error' => array(
		'background-color' => $attr['validationMsgBgColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container input' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container select' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container .chosen-single' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper .gfield_error .ginput_container textarea' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper li.gfield.gfield_error' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes li.gfield_error .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes li.gfield_error .ginput_container_consent input[type="checkbox"] + label:before' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes li.gfield_error .gfield_radio input[type="radio"] + label:before' => array(
		'border-color' => $attr['highlightBorderColor'],
	),

	' .uagb-gf-styler__error-yes .gform_wrapper li.gfield_error input[type="text"]' => array(
		'border' => $attr['fieldBorderWidth'] . $attr['fieldBorderWidthType'] . ' ' . $attr['fieldBorderStyle'] . ' ' . $attr['fieldBorderColor'] . '!important',
	),

	' .uael-gf-style-underline.uagb-gf-styler__error-yes .gform_wrapper li.gfield_error input[type="text"]' => array(
		'border-width' => $attr['fieldBorderWidth'] . $attr['fieldBorderWidthType'] . ' !important',
		'border-style' => 'solid !important',
		'border-color' => $attr['fieldBorderColor'] . '!important',
	),

	' .gform_wrapper.gravity-theme div.validation_message' => array(
		'color'            => $attr['errorMsgColor'],
		'background-color' => $attr['errorMsgBgColor'],
		'border-color'     => $attr['errorMsgBorderColor'],
		'border-style'     => 'solid',
		'border-width'     => UAGB_Helper::get_css_value(
			$attr['msgBorderSize'],
			'px'
		),
		'border-radius'    => UAGB_Helper::get_css_value(
			$attr['msgBorderRadius'],
			$attr['msgBorderRadiusType']
		),
		'padding-left'     => UAGB_Helper::get_css_value( $msg_left_padding, $attr['msgpaddingUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $msg_right_padding, $attr['msgpaddingUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $msg_top_padding, $attr['msgpaddingUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $msg_bottom_padding, $attr['msgpaddingUnit'] ),
	),

	' .gform_confirmation_message'                         => array(
		'color' => $attr['successMsgColor'],
	),
);

$t_selectors = array(
	' .uagb-gf-styler__field-style-box .gfield_checkbox input[type="checkbox"]:checked + label:before' => array(
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthTablet'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
	),
	' .uagb-gf-styler__field-style-box input[type="checkbox"]:checked + label:before' => array(
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthTablet'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
	),
	' .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthTablet'],
			'px'
		),
	),
	' .uagb-gf-styler__check-style-enabled input[type="checkbox"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
	),
	' .uagb-gf-styler__check-style-enabled input[type="radio"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeTablet'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeTablet'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthTablet'],
			'px'
		),
	),
	' form.wpgf-form:not(input)'                           => array(
		'color' => $attr['fieldLabelColor'],
	),
	' .gform_wrapper.gravity-theme input:not([type=submit])' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingTablet'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingTablet'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthTablet'],
			$attr['fieldBorderWidthType']
		),
	),
	' .gform_wrapper.gravity-theme .gfield textarea.large' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingTablet'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingTablet'],
			'px'
		),
		'height'         => 'auto' === $attr['textAreaHeightTablet'] ? $attr['textAreaHeightTablet'] : UAGB_Helper::get_css_value(
			$attr['textAreaHeightTablet'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthTablet'],
			$attr['fieldBorderWidthType']
		),
	),
	' input.gform_button'                                  => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['buttonleftTabletPadding'], $attr['buttontabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['buttonrightTabletPadding'], $attr['buttontabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['buttontopTabletPadding'], $attr['buttontabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['buttonbottomTabletPadding'], $attr['buttontabletPaddingUnit'] ),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['buttonBorderWidthTablet'],
			'px'
		),
	),
	' .gform_wrapper.gravity-theme div.validation_message' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['msgleftTabletPadding'], $attr['msgtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['msgrightTabletPadding'], $attr['msgtabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['msgtopTabletPadding'], $attr['msgtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['msgbottomTabletPadding'], $attr['msgtabletPaddingUnit'] ),
	),
	' .gform_wrapper.gravity-theme select '                => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingTablet'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingTablet'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthTablet'],
			$attr['fieldBorderWidthType']
		),
	),
);

$m_selectors = array(
	' .uagb-gf-styler__field-style-box .gfield_checkbox input[type="checkbox"]:checked + label:before' => array(
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthMobile'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
	),
	' .uagb-gf-styler__field-style-box input[type="checkbox"]:checked + label:before' => array(
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthMobile'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
	),
	' .uagb-gf-styler__check-style-enabled .gfield_checkbox input[type="checkbox"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthMobile'],
			'px'
		),
	),
	' .uagb-gf-styler__check-style-enabled input[type="checkbox"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidth'],
			'px'
		),
	),
	' .uagb-gf-styler__check-style-enabled input[type="radio"] + label:before' => array(
		'height'       => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'width'        => UAGB_Helper::get_css_value(
			$attr['radioCheckSizeMobile'],
			'px'
		),
		'font-size'    => 'calc( ' . $attr['radioCheckSizeMobile'] . 'px / 1.2 )',
		'border-width' => UAGB_Helper::get_css_value(
			$attr['radioCheckBorderWidthMobile'],
			'px'
		),
	),
	' .gform_wrapper.gravity-theme input:not([type=submit])' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingMobile'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingMobile'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthMobile'],
			$attr['fieldBorderWidthType']
		),
	),
	' .gform_wrapper.gravity-theme .gfield textarea.large' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomMobilePadding'], $attr['fieldmobilePaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingMobile'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingMobile'],
			'px'
		),
		'height'         => 'auto' === $attr['textAreaHeightMobile'] ? $attr['textAreaHeightMobile'] : UAGB_Helper::get_css_value(
			$attr['textAreaHeightMobile'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthMobile'],
			$attr['fieldBorderWidthType']
		),
	),
	' input.gform_button'                                  => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['buttonleftMobilePadding'], $attr['buttonmobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['buttonrightMobilePadding'], $attr['buttonmobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['buttontopMobilePadding'], $attr['buttonmobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['buttonbottomMobilePadding'], $attr['buttonmobilePaddingUnit'] ),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['buttonBorderWidthMobile'],
			'px'
		),
	),
	' .gform_wrapper.gravity-theme div.validation_message' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['msgleftMobilePadding'], $attr['msgmobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['msgrightMobilePadding'], $attr['msgmobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['msgtopMobilePadding'], $attr['msgmobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['msgbottomMobilePadding'], $attr['msgmobilePaddingUnit'] ),
	),
	' .gform_wrapper.gravity-theme select '                => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['fieldleftTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['fieldrightTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['fieldtopTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['fieldbottomTabletPadding'], $attr['fieldtabletPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['fieldLabelSpacingTablet'],
			'px'
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['fieldSpacingTablet'],
			'px'
		),
		'border-width'   => UAGB_Helper::get_css_value(
			$attr['fieldBorderWidthTablet'],
			$attr['fieldBorderWidthType']
		),
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'validationMsg', ' .gform_wrapper.gravity-theme .validation_message', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'validationMsg', ' span.wpgf-not-valid-tip', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'successMsg', ' .gform_confirmation_message', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'msg', ' .gform_wrapper div.validation_error', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'msg', ' .wpgf-response-output', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'button', ' input.gform_button, input.gform_previous_button, input.gform_next_button', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' form .gfield_checkbox label.gfield_label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' form .gfield_radio label.gfield_label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'label', ' .gform_wrapper.gravity-theme label.gfield_label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' textarea', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' select', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .gform_wrapper.gravity-theme input:not([type=submit])', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'radioCheck', ' .uagb-gf-styler__check-style-enabled form .gfield_checkbox label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .chosen-container-single span', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'radioCheck', ' .uagb-gf-styler__check-style-enabled form .gfield_radio label', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][���G��=ultimate-addons-for-gutenberg/includes/blocks/modal/error_lognu�[���[27-Oct-2025 03:55:06 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/attributes.php on line 10
[27-Oct-2025 04:29:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/block.php on line 16
[27-Oct-2025 05:28:24 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/frontend.js.php on line 11
[27-Oct-2025 05:28:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function esc_attr() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/frontend.js.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/modal/frontend.js.php on line 15
PK�][U��W��Bultimate-addons-for-gutenberg/includes/blocks/modal/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.2.0
 *
 * @package uagb
 */

$btn_border_attributes = UAGB_Block_Helper::uag_generate_border_attribute(
	'btn'
);

$content_border_attributes = UAGB_Block_Helper::uag_generate_border_attribute(
	'content'
);
$additional_attributes     = apply_filters( 'spectra_modal_attributes', array() );
$additional_attributes     = is_array( $additional_attributes ) ? $additional_attributes : array();
$inherit_from_theme        = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

return array_merge(
	array(
		'modalTrigger'                => 'button',
		'inheritFromTheme'            => $inherit_from_theme,
		'buttonIconSpace'             => '5',
		'buttonIconSpaceTablet'       => '',
		'buttonIconSpaceMobile'       => '',
		'buttonIconSpaceType'         => 'px',
		'buttonIconPosition'          => 'after',
		'modalAlign'                  => 'left',
		'modalAlignTablet'            => '',
		'modalAlignMobile'            => '',
		'modalWidth'                  => 600,
		'modalWidthTablet'            => '',
		'modalWidthMobile'            => '',
		'modalWidthType'              => 'px',
		'modalWidthTypeTablet'        => '',
		'modalWidthTypeMobile'        => '',
		'modalHeight'                 => 350,
		'modalHeightTablet'           => '',
		'modalHeightMobile'           => '',
		'modalHeightType'             => 'px',
		'modalHeightTypeTablet'       => '',
		'modalHeightTypeMobile'       => '',
		'closeIconSize'               => 25,
		'closeIconPosition'           => 'popup-top-right',
		'overlayColor'                => 'rgba(0,0,0,0.75)',
		'closeIconColor'              => '',
		'paddingModalUnit'            => 'px',
		'mobilePaddingModalUnit'      => 'px',
		'tabletPaddingModalUnit'      => 'px',
		'paddingModalTop'             => '',
		'paddingModalBottom'          => '',
		'paddingModalLeft'            => '',
		'paddingModalRight'           => '',
		'paddingModalTopTablet'       => '',
		'paddingModalRightTablet'     => '',
		'paddingModalBottomTablet'    => '',
		'paddingModalLeftTablet'      => '',
		'paddingModalTopMobile'       => '',
		'paddingModalRightMobile'     => '',
		'paddingModalBottomMobile'    => '',
		'paddingModalLeftMobile'      => '',

		'iconSize'                    => 30,
		'iconColor'                   => '',
		'textColor'                   => '',

		'textFontFamily'              => '',
		'textLoadGoogleFonts'         => false,
		'textFontWeight'              => '',
		'textFontStyle'               => '',
		'textFontSize'                => '',
		'textFontSizeType'            => 'px',
		'textFontSizeTablet'          => '',
		'textFontSizeMobile'          => '',
		'textSpaceType'               => 'px',
		'textLineHeight'              => '',
		'textLineHeightType'          => 'em',
		'textLineHeightTablet'        => '',
		'textLineHeightMobile'        => '',
		'textLetterSpacing'           => '',
		'textLetterSpacingTablet'     => '',
		'textLetterSpacingMobile'     => '',
		'textLetterSpacingType'       => 'px',
		'textTransform'               => '',
		'textDecoration'              => '',

		'imageSize'                   => 'thumbnail',
		'imageWidthType'              => true,
		'imageWidth'                  => '',
		'imageWidthMobile'            => '',
		'imageWidthTablet'            => '',
		'imageWidthUnit'              => 'px',
		'imageWidthUnitTablet'        => 'px',
		'imageWidthUnitMobile'        => 'px',
		'iconimgBorderRadius'         => '0',
		'iconimgBorderRadiusUnit'     => 'px',

		'paddingBtnUnit'              => 'px',
		'mobilePaddingBtnUnit'        => 'px',
		'tabletPaddingBtnUnit'        => 'px',
		'paddingBtnTop'               => 14,
		'paddingBtnBottom'            => 14,
		'paddingBtnLeft'              => 32,
		'paddingBtnRight'             => 32,
		'paddingBtnTopTablet'         => '',
		'paddingBtnRightTablet'       => '',
		'paddingBtnBottomTablet'      => '',
		'paddingBtnLeftTablet'        => '',
		'paddingBtnTopMobile'         => '',
		'paddingBtnRightMobile'       => '',
		'paddingBtnBottomMobile'      => '',
		'paddingBtnLeftMobile'        => '',

		'btnFontFamily'               => '',
		'btnLoadGoogleFonts'          => false,
		'btnFontWeight'               => '',
		'btnFontStyle'                => '',
		'btnFontSize'                 => '',
		'btnFontSizeType'             => 'px',
		'btnFontSizeTablet'           => '',
		'btnFontSizeMobile'           => '',
		'btnSpaceType'                => 'px',
		'btnLineHeight'               => '',
		'btnLineHeightType'           => 'em',
		'btnLineHeightTablet'         => '',
		'btnLineHeightMobile'         => '',
		'btnLetterSpacing'            => '',
		'btnLetterSpacingTablet'      => '',
		'btnLetterSpacingMobile'      => '',
		'btnLetterSpacingType'        => 'px',
		'btnTransform'                => '',
		'btnDecoration'               => '',
		'btnLinkColor'                => '',
		'btnBgColor'                  => '',
		'btnLinkHoverColor'           => '',
		'btnBgHoverColor'             => '',
		'modalBoxHeight'              => 'auto',
		'maxHeight'                   => '90',
		'maxHeightTablet'             => '',
		'maxHeightMobile'             => '',
		'maxHeightType'               => 'vh',
		'backgroundType'              => 'none',
		'backgroundImageDesktop'      => '',
		'backgroundImageTablet'       => '',
		'backgroundImageMobile'       => '',
		'backgroundPositionDesktop'   => array(
			'x' => 0.5,
			'y' => 0.5,
		),
		'backgroundPositionTablet'    => '',
		'backgroundPositionMobile'    => '',
		'backgroundSizeDesktop'       => 'cover',
		'backgroundSizeTablet'        => '',
		'backgroundSizeMobile'        => '',
		'backgroundRepeatDesktop'     => 'no-repeat',
		'backgroundRepeatTablet'      => '',
		'backgroundRepeatMobile'      => '',
		'backgroundAttachmentDesktop' => 'scroll',
		'backgroundAttachmentTablet'  => '',
		'backgroundAttachmentMobile'  => '',
		'backgroundColor'             => '',
		'backgroundOpacity'           => '',
		'backgroundImageColor'        => '#FFFFFF75',
		'gradientValue'               => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
		'gradientColor1'              => '#06558a',
		'gradientColor2'              => '#0063A1',
		'gradientType'                => 'linear',
		'gradientLocation1'           => 0,
		'gradientLocationTablet1'     => '',
		'gradientLocationMobile1'     => '',
		'gradientLocation2'           => 100,
		'gradientLocationTablet2'     => '',
		'gradientLocationMobile2'     => '',
		'gradientAngle'               => 0,
		'gradientAngleTablet'         => '',
		'gradientAngleMobile'         => '',
		'selectGradient'              => 'basic',
		'backgroundCustomSizeDesktop' => 100,
		'backgroundCustomSizeTablet'  => '',
		'backgroundCustomSizeMobile'  => '',
		'backgroundCustomSizeType'    => '%',
		'overlayType'                 => 'none',
		'customPosition'              => 'default',
		'xPositionDesktop'            => '',
		'xPositionTablet'             => '',
		'xPositionMobile'             => '',
		'xPositionType'               => 'px',
		'xPositionTypeTablet'         => 'px',
		'xPositionTypeMobile'         => 'px',
		'yPositionDesktop'            => '',
		'yPositionTablet'             => '',
		'yPositionMobile'             => '',
		'yPositionType'               => 'px',
		'yPositionTypeTablet'         => 'px',
		'yPositionTypeMobile'         => 'px',
		'setCookiesOn'                => 'close-action',
		'modalTriggerBgType'          => 'color',
		'modalTriggerBgHoverType'     => 'color',
	),
	$btn_border_attributes,
	array(
		'btnBorderTopLeftRadius'     => 3,
		'btnBorderTopRightRadius'    => 3,
		'btnBorderBottomLeftRadius'  => 3,
		'btnBorderBottomRightRadius' => 3,
	),
	$content_border_attributes,
	array(
		'contentBorderTopLeftRadius'     => 3,
		'contentBorderTopRightRadius'    => 3,
		'contentBorderBottomLeftRadius'  => 3,
		'contentBorderBottomRightRadius' => 3,
	),
	$additional_attributes
);
PK�][:Z�\\=ultimate-addons-for-gutenberg/includes/blocks/modal/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.2.0
 *
 * @package uagb
 */

$block_slug = 'uagb/modal';
$block_data = array(
	'doc'                 => 'modal',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'post' ),
	'link'                => 'modal',
	'title'               => __( 'Modal', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'This block allows you to add modal popup.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'modal' ),
	'static_dependencies' => array(
		'uagb-modal-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'modal' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'modal',
	),
);
PK�][�M�E5k5kDultimate-addons-for-gutenberg/includes/blocks/modal/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS loading File.
 *
 * @since 2.2.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_modal_gfont( $attr );
$m_selectors        = array();
$t_selectors        = array();
$selectors          = array();
$is_rtl             = is_rtl();
$btn_font_size_type = is_string( $attr['btnFontSizeType'] ) ? $attr['btnFontSizeType'] : '';
$btn_icon_size      = UAGB_Helper::get_css_value( $attr['btnFontSize'], $btn_font_size_type );
$t_btn_icon_size    = UAGB_Helper::get_css_value( $attr['btnFontSizeTablet'], $btn_font_size_type );
$m_btn_icon_size    = UAGB_Helper::get_css_value( $attr['btnFontSizeMobile'], $btn_font_size_type );

$btn_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
$btn_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
$btn_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );

$content_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content' );
$content_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content', 'tablet' );
$content_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content', 'mobile' );

$bg_obj_desktop           = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageDesktop'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => $attr['gradientLocation1'],
	'gradientLocation2'        => $attr['gradientLocation2'],
	'gradientAngle'            => $attr['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatDesktop'],
	'backgroundPosition'       => $attr['backgroundPositionDesktop'],
	'backgroundSize'           => $attr['backgroundSizeDesktop'],
	'backgroundAttachment'     => $attr['backgroundAttachmentDesktop'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeDesktop'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionDesktop'],
	'xPositionType'            => $attr['xPositionType'],
	'yPosition'                => $attr['yPositionDesktop'],
	'yPositionType'            => $attr['yPositionType'],
);
$container_bg_css_desktop = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_desktop );

$selectors                = array(
	'.uagb-modal-popup .uagb-modal-popup-wrap'   => array(
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidth'], $attr['modalWidthType'] ),
		'height'                     => UAGB_Helper::get_css_value( $attr['modalHeight'], $attr['modalHeightType'] ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadius'], $attr['contentBorderRadiusUnit'] ),
		'z-index'                    => '99999',
	),
	' .uagb-modal-popup-content:hover'           => array(
		'border-color' => $attr['contentBorderHColor'],
	),
	' .uagb-modal-popup-close svg'               => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'fill'        => $attr['closeIconColor'],
	),
	' .uagb-modal-popup-close:focus svg'         => array(
		'filter' => 'drop-shadow(0 0 1px ' . $attr['closeIconColor'] . ')',
	),
	'.uagb-modal-popup.active'                   => array(
		'background' => $attr['overlayColor'],
		'z-index'    => '99999',
	),
	' .uagb-modal-popup-content'                 => array_merge(
		array(
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingModalLeft'], $attr['paddingModalUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingModalRight'], $attr['paddingModalUnit'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingModalTop'], $attr['paddingModalUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingModalBottom'], $attr['paddingModalUnit'] ),
		),
		$content_border_css,
		$container_bg_css_desktop
),
	' .uagb-modal-trigger svg'                   => array(
		'width'       => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'fill'        => $attr['iconColor'],
	),
	' .uagb-modal-text.uagb-modal-trigger'       => array(
		'color' => $attr['textColor'],
	),
	'.uagb-modal-wrapper img.uagb-modal-trigger' => array(
		'border-radius' => UAGB_Helper::get_css_value( $attr['iconimgBorderRadius'], $attr['iconimgBorderRadiusUnit'] ),
	),
);
$bg_obj_tablet            = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageTablet'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj_desktop['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj_desktop['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj_desktop['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatTablet'],
	'backgroundPosition'       => $attr['backgroundPositionTablet'],
	'backgroundSize'           => $attr['backgroundSizeTablet'],
	'backgroundAttachment'     => $attr['backgroundAttachmentTablet'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeTablet'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionTablet'],
	'xPositionType'            => $attr['xPositionTypeTablet'],
	'yPosition'                => $attr['yPositionTablet'],
	'yPositionType'            => $attr['yPositionTypeTablet'],
);
$container_bg_css_tablet  = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet );
$modal_width_type_tablet  = '' !== $attr['modalWidthTypeTablet'] ? $attr['modalWidthTypeTablet'] : $attr['modalWidthType'];
$modal_height_type_tablet = '' !== $attr['modalHeightTypeTablet'] ? $attr['modalHeightTypeTablet'] : $attr['modalHeightType'];
$t_selectors              = array(
	'.uagb-modal-wrapper'                      => array(
		'text-align' => $attr['modalAlignTablet'],
	),
	'.uagb-modal-popup .uagb-modal-popup-wrap' => array(
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidthTablet'], $modal_width_type_tablet ),
		'height'                     => UAGB_Helper::get_css_value( $attr['modalHeightTablet'], $modal_height_type_tablet ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
	),
	' .uagb-modal-popup-content'               => array_merge(
		array(
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingModalLeftTablet'], $attr['tabletPaddingModalUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingModalRightTablet'], $attr['tabletPaddingModalUnit'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingModalTopTablet'], $attr['tabletPaddingModalUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingModalBottomTablet'], $attr['tabletPaddingModalUnit'] ),
		),
		$content_border_css_tablet,
		$container_bg_css_tablet
	),
);
$bg_obj_mobile            = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageMobile'],
	'backgroundColor'          => $attr['backgroundColor'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientType'             => $attr['gradientType'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
	'selectGradient'           => $attr['selectGradient'],
	'backgroundRepeat'         => $attr['backgroundRepeatMobile'],
	'backgroundPosition'       => $attr['backgroundPositionMobile'],
	'backgroundSize'           => $attr['backgroundSizeMobile'],
	'backgroundAttachment'     => $attr['backgroundAttachmentMobile'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeMobile'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionMobile'],
	'xPositionType'            => $attr['xPositionTypeMobile'],
	'yPosition'                => $attr['yPositionMobile'],
	'yPositionType'            => $attr['yPositionTypeMobile'],
);
$container_bg_css_mobile  = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile );
$modal_width_type_mobile  = '' !== $attr['modalWidthTypeMobile'] ? $attr['modalWidthTypeMobile'] : $attr['modalWidthType'];
$modal_height_type_mobile = '' !== $attr['modalHeightTypeMobile'] ? $attr['modalHeightTypeMobile'] : $attr['modalHeightType'];
$m_selectors              = array(
	'.uagb-modal-wrapper'                      => array(
		'text-align' => $attr['modalAlignMobile'],
	),
	'.uagb-modal-popup .uagb-modal-popup-wrap' => array(
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidthMobile'], $modal_width_type_mobile ),
		'height'                     => UAGB_Helper::get_css_value( $attr['modalHeightMobile'], $modal_height_type_mobile ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
	),
	' .uagb-modal-popup-content'               => array_merge(
		array(
			'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingModalLeftMobile'], $attr['mobilePaddingModalUnit'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingModalRightMobile'], $attr['mobilePaddingModalUnit'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingModalTopMobile'], $attr['mobilePaddingModalUnit'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingModalBottomMobile'], $attr['mobilePaddingModalUnit'] ),
		),
		$content_border_css_mobile,
		$container_bg_css_mobile
	),
);

if ( ! $attr['inheritFromTheme'] ) {
	$selectors[' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger']   = $btn_border_css;
	$t_selectors[' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger'] = $btn_border_css_tablet;
	$m_selectors[' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger'] = $btn_border_css_mobile;
	$selectors = array_merge(
		$selectors,
		array(
			'.uagb-modal-wrapper .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger' => array(
				'padding-left'     => UAGB_Helper::get_css_value( $attr['paddingBtnLeft'], $attr['paddingBtnUnit'] ),
				'padding-right'    => UAGB_Helper::get_css_value( $attr['paddingBtnRight'], $attr['paddingBtnUnit'] ),
				'padding-top'      => UAGB_Helper::get_css_value( $attr['paddingBtnTop'], $attr['paddingBtnUnit'] ),
				'padding-bottom'   => UAGB_Helper::get_css_value( $attr['paddingBtnBottom'], $attr['paddingBtnUnit'] ),
				'color'            => $attr['btnLinkColor'],
				'background-color' => ( 'color' === $attr['modalTriggerBgType'] ) ? $attr['btnBgColor'] : 'transparent',
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:hover' => array(
				'color'            => $attr['btnLinkHoverColor'] ? $attr['btnLinkHoverColor'] : $attr['btnLinkColor'],
				'background-color' => ( 'color' === $attr['modalTriggerBgHoverType'] ) ? $attr['btnBgHoverColor'] : 'transparent',
				'border-color'     => $attr['btnBorderHColor'],
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:focus' => array(
				'color'            => $attr['btnLinkHoverColor'] ? $attr['btnLinkHoverColor'] : $attr['btnLinkColor'],
				'background-color' => ( 'color' === $attr['modalTriggerBgHoverType'] ) ? $attr['btnBgHoverColor'] : 'transparent',
				'border-color'     => $attr['btnBorderHColor'],
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg' => array(
				'width'       => $btn_icon_size,
				'height'      => $btn_icon_size,
				'line-height' => $btn_icon_size,
				'font-size'   => $btn_icon_size,
				'fill'        => $attr['btnLinkColor'],
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:hover svg' => array(
				'fill' => $attr['btnLinkHoverColor'],
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger:focus svg' => array(
				'fill' => $attr['btnLinkHoverColor'],
			),
		)
	);

	$t_selectors = array_merge( 
		$t_selectors,
		array(
			'.uagb-modal-wrapper .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger' => array(
				'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftTablet'], $attr['tabletPaddingBtnUnit'] ),
				'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightTablet'], $attr['tabletPaddingBtnUnit'] ),
				'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopTablet'], $attr['tabletPaddingBtnUnit'] ),
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomTablet'], $attr['tabletPaddingBtnUnit'] ),
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg' => array(
				'width'       => $t_btn_icon_size,
				'height'      => $t_btn_icon_size,
				'line-height' => $t_btn_icon_size,
				'font-size'   => $t_btn_icon_size,
			),
		)
	);

	$m_selectors = array_merge(
		$m_selectors,
		array(
			'.uagb-modal-wrapper .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger' => array(
				'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftMobile'], $attr['mobilePaddingBtnUnit'] ),
				'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightMobile'], $attr['mobilePaddingBtnUnit'] ),
				'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopMobile'], $attr['mobilePaddingBtnUnit'] ),
				'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomMobile'], $attr['mobilePaddingBtnUnit'] ),
			),
			' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger svg' => array(
				'width'       => $m_btn_icon_size,
				'height'      => $m_btn_icon_size,
				'line-height' => $m_btn_icon_size,
				'font-size'   => $m_btn_icon_size,
			),
		)
	);

}

if ( 'popup-top-right' === $attr['closeIconPosition'] ) {
	$selectors['.uagb-modal-popup.active .uagb-modal-popup-close'] = array(
		'top'   => '-' . UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'right' => '-' . UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
	);
}

if ( 'popup-top-left' === $attr['closeIconPosition'] ) {
	$selectors['.uagb-modal-popup.active .uagb-modal-popup-close'] = array(
		'top'  => '-' . UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'left' => '-' . UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
	);
}

$attr['buttonIconSpaceTablet'] = is_numeric( $attr['buttonIconSpaceTablet'] ) ? $attr['buttonIconSpaceTablet'] : $attr['buttonIconSpace'];
$attr['buttonIconSpaceMobile'] = is_numeric( $attr['buttonIconSpaceMobile'] ) ? $attr['buttonIconSpaceMobile'] : $attr['buttonIconSpaceTablet'];

if ( 'button' === $attr['modalTrigger'] ) {
	if ( 'after' === $attr['buttonIconPosition'] ) {
		$selectors[' .uagb-modal-button-link svg ']   = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpace'], $attr['buttonIconSpaceType'] ),
		);
		$t_selectors[' .uagb-modal-button-link svg '] = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceTablet'], $attr['buttonIconSpaceType'] ),
		);
		$m_selectors[' .uagb-modal-button-link svg '] = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceMobile'], $attr['buttonIconSpaceType'] ),
		);
	} else {
		$selectors[' .uagb-modal-button-link svg']   = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpace'], $attr['buttonIconSpaceType'] ),
		);
		$t_selectors[' .uagb-modal-button-link svg'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceTablet'], $attr['buttonIconSpaceType'] ),
		);
		$m_selectors[' .uagb-modal-button-link svg'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceMobile'], $attr['buttonIconSpaceType'] ),
		);
	}
}

if ( $is_rtl ) {
	if ( 'button' === $attr['modalTrigger'] ) {
		if ( 'after' === $attr['buttonIconPosition'] ) {
			$selectors[' .uagb-modal-button-link svg ']   = array(
				'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpace'], $attr['buttonIconSpaceType'] ),
			);
			$t_selectors[' .uagb-modal-button-link svg '] = array(
				'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceTablet'], $attr['buttonIconSpaceType'] ),
			);
			$m_selectors[' .uagb-modal-button-link svg '] = array(
				'margin-right' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceMobile'], $attr['buttonIconSpaceType'] ),
			);
		} else {
			$selectors[' .uagb-modal-button-link svg']   = array(
				'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpace'], $attr['buttonIconSpaceType'] ),
			);
			$t_selectors[' .uagb-modal-button-link svg'] = array(
				'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceTablet'], $attr['buttonIconSpaceType'] ),
			);
			$m_selectors[' .uagb-modal-button-link svg'] = array(
				'margin-left' => UAGB_Helper::get_css_value( $attr['buttonIconSpaceMobile'], $attr['buttonIconSpaceType'] ),
			);
		}
	}
}

if ( 'image' === $attr['modalTrigger'] && $attr['imageWidthType'] ) {
	// Image.
	$selectors[' img.uagb-modal-trigger']   = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthUnit'] ),
	);
	$t_selectors[' img.uagb-modal-trigger'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthUnitTablet'] ),
	);
	$m_selectors[' img.uagb-modal-trigger'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthUnitMobile'] ),
	);

}

if ( 'custom' !== $attr['modalBoxHeight'] ) {
	$selectors['.uagb-modal-popup .uagb-modal-popup-wrap']   = array(
		'height'                     => 'auto',
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidth'], $attr['modalWidthType'] ),
		'max-height'                 => UAGB_Helper::get_css_value( $attr['maxHeight'], $attr['maxHeightType'] ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadius'], $attr['contentBorderRadiusUnit'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadius'], $attr['contentBorderRadiusUnit'] ),
	);
	$t_selectors['.uagb-modal-popup .uagb-modal-popup-wrap'] = array(
		'height'                     => 'auto',
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidthTablet'], $modal_width_type_tablet ),
		'max-height'                 => UAGB_Helper::get_css_value( $attr['maxHeightTablet'], $attr['maxHeightType'] ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadiusTablet'], $attr['contentBorderRadiusUnitTablet'] ),
	);
	$m_selectors['.uagb-modal-popup .uagb-modal-popup-wrap'] = array(
		'height'                     => 'auto',
		'width'                      => UAGB_Helper::get_css_value( $attr['modalWidthMobile'], $modal_width_type_mobile ),
		'max-height'                 => UAGB_Helper::get_css_value( $attr['maxHeightMobile'], $attr['maxHeightType'] ),
		'border-style'               => 'none',
		'border-color'               => 'none',
		'border-top-left-radius'     => UAGB_Helper::get_css_value( $attr['contentBorderTopLeftRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-top-right-radius'    => UAGB_Helper::get_css_value( $attr['contentBorderTopRightRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-bottom-left-radius'  => UAGB_Helper::get_css_value( $attr['contentBorderBottomLeftRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
		'border-bottom-right-radius' => UAGB_Helper::get_css_value( $attr['contentBorderBottomRightRadiusMobile'], $attr['contentBorderRadiusUnitMobile'] ),
	);
}

$flex_alignment   = ( 'left' === $attr['modalAlign'] ) ? 'flex-start' : ( ( 'right' === $attr['modalAlign'] ) ? 'flex-end' : 'center' );
$t_flex_alignment = ( 'left' === $attr['modalAlignTablet'] ) ? 'flex-start' : ( ( 'right' === $attr['modalAlignTablet'] ) ? 'flex-end' : 'center' );
$m_flex_alignment = ( 'left' === $attr['modalAlignMobile'] ) ? 'flex-start' : ( ( 'right' === $attr['modalAlignMobile'] ) ? 'flex-end' : 'center' );

if ( 'full' !== $attr['modalAlign'] ) {
	$selectors['.uagb-modal-wrapper']     = array(
		'text-align' => $attr['modalAlign'],
	);
	$selectors[' .wp-block-button__link'] = array(
		'width' => 'unset',
	);
	$selectors[' .uagb-modal-trigger']    = array(
		'justify-content' => $flex_alignment,
	);
	if ( 'image' === $attr['modalTrigger'] ) {
		$selectors['.uagb-modal-wrapper .uagb-spectra-editor-wrap'] = array(
			'display'         => 'flex',
			'justify-content' => $flex_alignment,
		);
	}
} else {
	$selectors[' .uagb-modal-trigger'] = array(
		'width'           => '100%',
		'justify-content' => 'center',
	);
}

if ( 'full' !== $attr['modalAlignMobile'] ) {
	$m_selectors['.uagb-modal-wrapper']     = array(
		'text-align' => $attr['modalAlignMobile'],
	);
	$m_selectors[' .wp-block-button__link'] = array(
		'width' => 'unset',
	);
	$m_selectors[' .uagb-modal-trigger']    = array(
		'justify-content' => $m_flex_alignment,
	);
	if ( 'image' === $attr['modalTrigger'] ) {
		$m_selectors['.uagb-modal-wrapper .uagb-spectra-editor-wrap'] = array(
			'display'         => 'flex',
			'justify-content' => $m_flex_alignment,
		);
	}
} else {
	$m_selectors[' .wp-block-button__link.uagb-modal-trigger'] = array(
		'width'           => '100%',
		'justify-content' => 'center',
	);
}

if ( 'full' !== $attr['modalAlignTablet'] ) {
	$t_selectors['.uagb-modal-wrapper']  = array(
		'text-align' => $attr['modalAlignTablet'],
	);
	$t_selectors[' .uagb-modal-trigger'] = array(
		'justify-content' => $t_flex_alignment,
	);
	if ( 'image' === $attr['modalTrigger'] ) {
		$t_selectors['.uagb-modal-wrapper .uagb-spectra-editor-wrap'] = array(
			'display'         => 'flex',
			'justify-content' => $t_flex_alignment,
		);
	}
} else {
	$t_selectors[' .wp-block-button__link.uagb-modal-trigger'] = array(
		'width'           => '100%',
		'justify-content' => 'center',
	);
}

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'modal',
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr
);

$base_selector = '.uagb-block-';

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'text', ' .uagb-modal-text.uagb-modal-trigger', $combined_selectors );
if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'btn', ' .uagb-spectra-button-wrapper .uagb-modal-button-link.uagb-modal-trigger', $combined_selectors );
}
return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][e����Cultimate-addons-for-gutenberg/includes/blocks/modal/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.2.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$selector = '.uagb-block-' . $id;
ob_start();
?>
	window.addEventListener( 'DOMContentLoaded', function() {
		UAGBModal.init( '<?php echo esc_attr( $selector ); ?>' );
	});
<?php
$dynamic_js = apply_filters( 'spectra_modal_frontend_dynamic_js', ob_get_clean(), $selector, $attr );
return $dynamic_js;
?>
PK�][le�SSDultimate-addons-for-gutenberg/includes/blocks/social-share/error_lognu�[���[27-Oct-2025 14:11:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share/block.php on line 16
[27-Oct-2025 15:19:38 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share/frontend.js.php on line 12
[27-Oct-2025 15:19:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function has_post_thumbnail() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share/frontend.js.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/social-share/frontend.js.php on line 15
PK�][�x����Iultimate-addons-for-gutenberg/includes/blocks/social-share/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'       => false,
	'childMigrate'       => false,
	'align'              => 'center',
	'alignTablet'        => 'center',
	'alignMobile'        => 'center',
	'social_count'       => '1',
	'socials'            => array(
		array(
			'type'                => 'facebook',
			'image_icon'          => 'icon',
			'icon'                => 'facebook',
			'image'               => '',
			'icon_color'          => '#3a3a3a',
			'icon_hover_color'    => '#3a3a3a',
			'icon_bg_color'       => '',
			'icon_bg_hover_color' => '',
		),
	),
	'gap'                => 10,
	'gapTablet'          => '',
	'gapMobile'          => '',
	'size'               => 30,
	'sizeType'           => 'px',
	'sizeMobile'         => '',
	'sizeTablet'         => '',
	'bgSize'             => 10,
	'bgSizeType'         => 'px',
	'bgSizeMobile'       => 10,
	'bgSizeTablet'       => 10,
	'borderRadius'       => 0,
	'borderRadiusTablet' => '',
	'borderRadiusMobile' => '',
	'social_layout'      => 'horizontal',
	'stack'              => 'none',
	'iconColor'          => '#3a3a3a',
	'iconHoverColor'     => '',
	'iconBgColor'        => '',
	'iconBgHoverColor'   => '',
);
PK�][� <��Dultimate-addons-for-gutenberg/includes/blocks/social-share/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/social-share';
$block_data = array(
	'doc'              => 'social-share',
	'slug'             => '',
	'admin_categories' => array( 'social' ),
	'link'             => 'social-share',
	'title'            => __( 'Social Share', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Share your content on different social media platforms.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'social-share' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'social-share',
	),
);
PK�][�U'�,�,Kultimate-addons-for-gutenberg/includes/blocks/social-share/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 *
 * @package uagb
 */

$gap_tablet_fallback = is_numeric( $attr['gapTablet'] ) ? $attr['gapTablet'] : $attr['gap'];
$gap_mobile_fallback = is_numeric( $attr['gapMobile'] ) ? $attr['gapMobile'] : $gap_tablet_fallback;

$alignment   = ( 'left' === $attr['align'] ) ? 'flex-start' : ( ( 'right' === $attr['align'] ) ? 'flex-end' : 'center' );
$t_alignment = ( 'left' === $attr['alignTablet'] ) ? 'flex-start' : ( ( 'right' === $attr['alignTablet'] ) ? 'flex-end' : 'center' );
$m_alignment = ( 'left' === $attr['alignMobile'] ) ? 'flex-start' : ( ( 'right' === $attr['alignMobile'] ) ? 'flex-end' : 'center' );

$m_selectors = array();
$t_selectors = array();

$image_size   = UAGB_Helper::get_css_value( $attr['size'], $attr['sizeType'] );
$m_image_size = UAGB_Helper::get_css_value( $attr['sizeMobile'], $attr['sizeType'] );
$t_image_size = UAGB_Helper::get_css_value( $attr['sizeTablet'], $attr['sizeType'] );

$selectors = array(
	' .uagb-ss-repeater span.uagb-ss__link'           => array(
		'color' => $attr['iconColor'],
	),
	' .uagb-ss-repeater a.uagb-ss__link'              => array( // Backward user case.
		'color' => $attr['iconColor'],
	),
	' .uagb-ss-repeater span.uagb-ss__link svg'       => array(
		'fill' => $attr['iconColor'],
	),
	' .uagb-ss-repeater a.uagb-ss__link svg'          => array( // Backward user case.
		'fill' => $attr['iconColor'],
	),
	' .uagb-ss-repeater:hover span.uagb-ss__link'     => array(
		'color' => $attr['iconHoverColor'],
	),
	' .uagb-ss-repeater:hover a.uagb-ss__link'        => array( // Backward user case.
		'color' => $attr['iconHoverColor'],
	),
	' .uagb-ss-repeater:hover span.uagb-ss__link svg' => array(
		'fill' => $attr['iconHoverColor'],
	),
	' .uagb-ss-repeater:hover a.uagb-ss__link svg'    => array( // Backward user case.
		'fill' => $attr['iconHoverColor'],
	),
	' .uagb-ss-repeater.uagb-ss__wrapper'             => array(
		'background' => $attr['iconBgColor'],
	),
	' .uagb-ss-repeater.uagb-ss__wrapper:hover'       => array(
		'background' => $attr['iconBgHoverColor'],
	),
);

$selectors['.uagb-social-share__outer-wrap .block-editor-inner-blocks']   = array(
	'text-align' => UAGB_Helper::get_css_value( $attr['align'] ),
);
$t_selectors['.uagb-social-share__outer-wrap .block-editor-inner-blocks'] = array(
	'text-align' => UAGB_Helper::get_css_value( $attr['alignTablet'] ),
);
$m_selectors['.uagb-social-share__outer-wrap .block-editor-inner-blocks'] = array(
	'text-align' => UAGB_Helper::get_css_value( $attr['alignMobile'] ),
);

$selectors['.uagb-social-share__layout-vertical .uagb-ss__wrapper']     = array(
	'margin-left'   => 0,
	'margin-right'  => 0,
	'margin-top'    => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), 'px' ),
	'margin-bottom' => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), 'px' ),
);
$selectors['.uagb-social-share__layout-vertical .uagb-ss__link']        = array(
	'padding' => UAGB_Helper::get_css_value( $attr['bgSize'], 'px' ),
);
$m_selectors['.uagb-social-share__layout-vertical .uagb-ss__wrapper']   = array(
	'margin-left'   => 0,
	'margin-right'  => 0,
	'margin-top'    => UAGB_Helper::get_css_value( ( $gap_mobile_fallback / 2 ), 'px' ),
	'margin-bottom' => UAGB_Helper::get_css_value( ( $gap_mobile_fallback / 2 ), 'px' ),
);
$t_selectors['.uagb-social-share__layout-vertical .uagb-ss__wrapper']   = array(
	'margin-left'   => 0,
	'margin-right'  => 0,
	'margin-top'    => UAGB_Helper::get_css_value( ( $gap_tablet_fallback / 2 ), 'px' ),
	'margin-bottom' => UAGB_Helper::get_css_value( ( $gap_tablet_fallback / 2 ), 'px' ),
);
$selectors['.uagb-social-share__layout-horizontal .uagb-ss__link']      = array(
	'padding' => UAGB_Helper::get_css_value( $attr['bgSize'], 'px' ),
);
$selectors['.uagb-social-share__layout-horizontal .uagb-ss__wrapper']   = array(
	'margin-left'  => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), 'px' ),
	'margin-right' => UAGB_Helper::get_css_value( ( $attr['gap'] / 2 ), 'px' ),
);
$m_selectors['.uagb-social-share__layout-horizontal .uagb-ss__wrapper'] = array(
	'margin-left'  => UAGB_Helper::get_css_value( ( $gap_mobile_fallback / 2 ), 'px' ),
	'margin-right' => UAGB_Helper::get_css_value( ( $gap_mobile_fallback / 2 ), 'px' ),
);
$t_selectors['.uagb-social-share__layout-horizontal .uagb-ss__wrapper'] = array(
	'margin-left'  => UAGB_Helper::get_css_value( ( $gap_tablet_fallback / 2 ), 'px' ),
	'margin-right' => UAGB_Helper::get_css_value( ( $gap_tablet_fallback / 2 ), 'px' ),
);

$selectors[' .wp-block-uagb-social-share-child ']   = array(
	'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadius'], 'px' ),
);
$m_selectors[' .wp-block-uagb-social-share-child '] = array(
	'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadiusMobile'], 'px' ),
);
$t_selectors[' .wp-block-uagb-social-share-child '] = array(
	'border-radius' => UAGB_Helper::get_css_value( $attr['borderRadiusTablet'], 'px' ),
);

$selectors[' .uagb-ss__source-wrap'] = array(
	'width' => $image_size,
);

$selectors[' .uagb-ss__source-wrap svg'] = array(
	'width'  => $image_size,
	'height' => $image_size,
);

$selectors[' .uagb-ss__source-image'] = array(
	'width' => $image_size,
);

$selectors[' .uagb-ss__source-icon'] = array(
	'width'     => $image_size,
	'height'    => $image_size,
	'font-size' => $image_size,
);

$t_selectors[' .uagb-ss__source-wrap'] = array(
	'width'       => $t_image_size,
	'height'      => $t_image_size,
	'line-height' => $t_image_size,
);

$t_selectors[' .uagb-ss__source-wrap svg'] = array(
	'width'  => $t_image_size,
	'height' => $t_image_size,
);

$t_selectors[' .uagb-ss__source-image'] = array(
	'width' => $t_image_size,
);

$t_selectors[' .uagb-ss__source-icon'] = array(
	'width'       => $t_image_size,
	'height'      => $t_image_size,
	'font-size'   => $t_image_size,
	'line-height' => $t_image_size,
);

$m_selectors[' .uagb-ss__source-wrap'] = array(
	'width'       => $m_image_size,
	'height'      => $m_image_size,
	'line-height' => $m_image_size,
);

$m_selectors[' .uagb-ss__source-wrap svg'] = array(
	'width'  => $m_image_size,
	'height' => $m_image_size,
);

$m_selectors[' .uagb-ss__source-image'] = array(
	'width' => $m_image_size,
);

$m_selectors[' .uagb-ss__source-icon'] = array(
	'width'       => $m_image_size,
	'height'      => $m_image_size,
	'font-size'   => $m_image_size,
	'line-height' => $m_image_size,
);


$selectors['.uagb-social-share__outer-wrap'] = array(
	'justify-content'   => $alignment,
	'-webkit-box-pack'  => $alignment,
	'-ms-flex-pack'     => $alignment,
	'-webkit-box-align' => $alignment,
	'-ms-flex-align'    => $alignment,
	'align-items'       => $alignment,
);

$t_selectors['.uagb-social-share__outer-wrap'] = array(
	'justify-content'   => $t_alignment,
	'-webkit-box-pack'  => $t_alignment,
	'-ms-flex-pack'     => $t_alignment,
	'-webkit-box-align' => $t_alignment,
	'-ms-flex-align'    => $t_alignment,
	'align-items'       => $t_alignment,
);

$m_selectors['.uagb-social-share__outer-wrap'] = array(
	'justify-content'   => $m_alignment,
	'-webkit-box-pack'  => $m_alignment,
	'-ms-flex-pack'     => $m_alignment,
	'-webkit-box-align' => $m_alignment,
	'-ms-flex-align'    => $m_alignment,
	'align-items'       => $m_alignment,
);

if ( ! $attr['childMigrate'] ) {

	$defaults = UAGB_DIR . 'includes/blocks/social-share-child/attributes.php';

	if ( file_exists( $defaults ) ) {
		$default_attr = include $defaults;
	}

	$default_attr = ( ! empty( $default_attr ) && is_array( $default_attr ) ) ? $default_attr : array();

	foreach ( $attr['socials'] as $key => $socials ) {

		$socials                        = array_merge( $default_attr, (array) $socials );
		$socials['icon_color']          = ( isset( $socials['icon_color'] ) ) ? $socials['icon_color'] : '';
		$socials['icon_hover_color']    = ( isset( $socials['icon_hover_color'] ) ) ? $socials['icon_hover_color'] : '';
		$socials['icon_bg_color']       = ( isset( $socials['icon_bg_color'] ) ) ? $socials['icon_bg_color'] : '';
		$socials['icon_bg_hover_color'] = ( isset( $socials['icon_bg_hover_color'] ) ) ? $socials['icon_bg_hover_color'] : '';

		if ( $attr['social_count'] <= $key ) {
			break;
		}

		$child_selectors = UAGB_Block_Helper::get_social_share_child_selectors( $socials, $key, $attr['childMigrate'] );
		$selectors       = array_merge( $selectors, (array) $child_selectors );
	}
}

if ( 'horizontal' === $attr['social_layout'] ) {

	if ( 'desktop' === $attr['stack'] ) {

		$selectors[' .uagb-ss__wrapper']   = array(
			'margin-left'   => 0,
			'margin-right'  => 0,
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		);
		$t_selectors[' .uagb-ss__wrapper'] = array(
			'margin-left'   => 0,
			'margin-right'  => 0,
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);
		$m_selectors[' .uagb-ss__wrapper'] = array(
			'margin-left'   => 0,
			'margin-right'  => 0,
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);

		$selectors['.uagb-social-share__outer-wrap'] = array(
			'flex-direction'    => 'column',
			'justify-content'   => $alignment,
			'-webkit-box-pack'  => $alignment,
			'-ms-flex-pack'     => $alignment,
			'-webkit-box-align' => $alignment,
			'-ms-flex-align'    => $alignment,
			'align-items'       => $alignment,
		);

		$t_selectors['.uagb-social-share__outer-wrap'] = array(
			'flex-direction'    => 'column',
			'justify-content'   => $t_alignment,
			'-webkit-box-pack'  => $t_alignment,
			'-ms-flex-pack'     => $t_alignment,
			'-webkit-box-align' => $t_alignment,
			'-ms-flex-align'    => $t_alignment,
			'align-items'       => $t_alignment,
		);

		$m_selectors['.uagb-social-share__outer-wrap'] = array(
			'flex-direction'    => 'column',
			'justify-content'   => $m_alignment,
			'-webkit-box-pack'  => $m_alignment,
			'-ms-flex-pack'     => $m_alignment,
			'-webkit-box-align' => $m_alignment,
			'-ms-flex-align'    => $m_alignment,
			'align-items'       => $m_alignment,
		);

	} elseif ( 'tablet' === $attr['stack'] ) {

		$t_selectors[' .uagb-ss__wrapper'] = array(
			'margin-left'   => 0,
			'margin-right'  => 0,
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
		);

		$t_selectors['.uagb-social-share__outer-wrap'] = array(
			'flex-direction'    => 'column',
			'justify-content'   => $t_alignment,
			'-webkit-box-pack'  => $t_alignment,
			'-ms-flex-pack'     => $t_alignment,
			'-webkit-box-align' => $t_alignment,
			'-ms-flex-align'    => $t_alignment,
			'align-items'       => $t_alignment,
		);

	} elseif ( 'mobile' === $attr['stack'] ) {

		$m_selectors[' .uagb-ss__wrapper'] = array(
			'margin-left'   => 0,
			'margin-right'  => 0,
			'margin-bottom' => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
		);

		$m_selectors['.uagb-social-share__outer-wrap'] = array(
			'flex-direction'    => 'column',
			'justify-content'   => $m_alignment,
			'-webkit-box-pack'  => $m_alignment,
			'-ms-flex-pack'     => $m_alignment,
			'-webkit-box-align' => $m_alignment,
			'-ms-flex-align'    => $m_alignment,
			'align-items'       => $m_alignment,
		);
	}
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-social-share-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�'~[&&Jultimate-addons-for-gutenberg/includes/blocks/social-share/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

$base_selector = ( isset( $attr['classMigrate'] ) && $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-social-share-';
$selector      = $base_selector . $id;
global $post;
// Get the featured image.
if ( has_post_thumbnail() ) {
	$thumbnail_id   = get_post_thumbnail_id( $post->ID );
	$thumbnail_data = $thumbnail_id ? wp_get_attachment_image_src( $thumbnail_id, 'large', true ) : '';
	$thumbnail      = is_array( $thumbnail_data ) ? strval( current( $thumbnail_data ) ) : '';
} else {
	$thumbnail = '';
}
ob_start();
?>
var ssLinksParent = document.querySelector( '<?php echo esc_attr( $selector ); ?>' );
ssLinksParent?.addEventListener( 'keyup', function ( e ) {
var link = e.target.closest( '.uagb-ss__link' );
if ( link && e.keyCode === 13 ) {
	handleSocialLinkClick( link );
}
});

ssLinksParent?.addEventListener( 'click', function ( e ) {
var link = e.target.closest( '.uagb-ss__link' );
if ( link ) {
	handleSocialLinkClick( link );
}
});

function handleSocialLinkClick( link ) {
var social_url = link.dataset.href;
var target = "";
if ( social_url == "mailto:?body=" ) {
	target = "_self";
}
var request_url = "";
if ( social_url.indexOf("/pin/create/link/?url=") !== -1 ) {
	request_url = social_url + encodeURIComponent( window.location.href ) + "&media=" + '<?php echo esc_url( $thumbnail ); ?>';
} else {
	request_url = social_url + encodeURIComponent( window.location.href );
}
window.open( request_url, target );
}
<?php
return ob_get_clean();
?>
PK�][�{XXAultimate-addons-for-gutenberg/includes/blocks/wp-search/error_lognu�[���[28-Oct-2025 02:50:46 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/wp-search/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/wp-search/attributes.php on line 10
[28-Oct-2025 02:51:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/wp-search/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/wp-search/block.php on line 16
PK�][�����
�
Fultimate-addons-for-gutenberg/includes/blocks/wp-search/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$inputBorderAttributes = UAGB_Block_Helper::uag_generate_border_attribute( 'input' );

return array_merge(
	array(
		'block_id'                => '',
		'layout'                  => 'input-button',
		'placeholder'             => 'Type & Hit Enter',
		'inputSize'               => 100,
		'textColor'               => '',
		'inputBgColor'            => '#ECEEEF',
		'boxShadowColor'          => '',
		'boxShadowHOffset'        => 0,
		'boxShadowVOffset'        => 0,
		'boxShadowBlur'           => '',
		'boxShadowSpread'         => '',
		'boxShadowPosition'       => 'outset',
		'buttonBgColor'           => '#9d9d9d',
		'buttonBgHoverColor'      => '',
		'buttonIconColor'         => '',
		'buttonIconHoverColor'    => '',
		'buttonWidth'             => 60,
		'buttonIconSize'          => 17,
		'iconColor'               => '',
		'iconSize'                => 17,
		'inputloadGoogleFonts'    => false,
		'inputFontFamily'         => 'Default',
		'inputFontWeight'         => '',
		'inputFontSize'           => '',
		'inputFontSizeType'       => 'px',
		'inputFontSizeTablet'     => '',
		'inputFontSizeMobile'     => '',
		'inputLineHeight'         => '',
		'inputLineHeightType'     => 'em',
		'inputLineHeightTablet'   => '',
		'inputLineHeightMobile'   => '',
		'inputPaddingTypeDesktop' => 'px',
		'vinputPaddingMobile'     => 15,
		'vinputPaddingTablet'     => 15,
		'vinputPaddingDesktop'    => 15,
		'hinputPaddingMobile'     => 13,
		'hinputPaddingTablet'     => 13,
		'hinputPaddingDesktop'    => 13,
		'buttonType'              => 'icon',
		'buttonText'              => 'Search',
		'buttonloadGoogleFonts'   => 'false',
		'buttonFontFamily'        => 'Default',
		'buttonFontWeight'        => '',
		'buttonFontSize'          => '',
		'buttonFontSizeType'      => 'px',
		'buttonFontSizeTablet'    => '',
		'buttonFontSizeMobile'    => '',
		'buttonLineHeight'        => '',
		'buttonLineHeightType'    => 'em',
		'buttonLineHeightTablet'  => '',
		'buttonLineHeightMobile'  => '',
		'buttonTextColor'         => '#313131',
		'buttonTextHoverColor'    => '',
		'inputSizeType'           => '%',
		'mobilePaddingInputUnit'  => 'px',
		'tabletPaddingInputUnit'  => 'px',
		'spacingLink'             => '',
		'iconSizeType'            => 'px',
		'inputTransform'          => '',
		'inputDecoration'         => '',
		'buttonTransform'         => '',
		'buttonDecoration'        => '',
		'buttonIconSizeType'      => 'px',
		'buttonWidthType'         => 'px',
		'inputFontStyle'          => '',
		'buttonFontStyle'         => '',
		'borderStyle'             => 'none',
		'borderWidth'             => '',
		'borderRadius'            => 3,
		'borderColor'             => '',
	),
	$inputBorderAttributes
);
PK�][w�����Aultimate-addons-for-gutenberg/includes/blocks/wp-search/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/wp-search';
$block_data = array(
	'doc'              => 'wp-search',
	'slug'             => '',
	'admin_categories' => array( 'content' ),
	'link'             => 'wp-search',
	'title'            => __( 'Search', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a search widget to let users search posts from your website.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'wp-search' ),
	'deprecated'       => true,
	'dynamic_assets'   => array(
		'dir' => 'wp-search',
	),
);
PK�][���n'n'Hultimate-addons-for-gutenberg/includes/blocks/wp-search/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_wp_search_gfont( $attr );

$selectors            = array();
$t_selectors          = array();
$m_selectors          = array();
$boxShadowPositionCSS = $attr['boxShadowPosition'];

if ( 'outset' === $attr['boxShadowPosition'] ) {
	$boxShadowPositionCSS = '';
}
$paddingInputTop          = isset( $attr['paddingInputTop'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputTop'], $attr['inputPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingDesktop'], $attr['inputPaddingTypeDesktop'] );
$paddingInputRight        = isset( $attr['paddingInputRight'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputRight'], $attr['inputPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingDesktop'], $attr['inputPaddingTypeDesktop'] );
$paddingInputBottom       = isset( $attr['paddingInputBottom'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputBottom'], $attr['inputPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingDesktop'], $attr['inputPaddingTypeDesktop'] );
$paddingInputLeft         = isset( $attr['paddingInputLeft'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputLeft'], $attr['inputPaddingTypeDesktop'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingDesktop'], $attr['inputPaddingTypeDesktop'] );
$paddingInputTopTablet    = isset( $attr['paddingInputTopTablet'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputTopTablet'], $attr['tabletPaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingTablet'], $attr['inputPaddingTypeDesktop'] );
$paddingInputRightTablet  = isset( $attr['paddingInputRightTablet'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputRightTablet'], $attr['tabletPaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingTablet'], $attr['inputPaddingTypeDesktop'] );
$paddingInputBottomTablet = isset( $attr['paddingInputBottomTablet'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputBottomTablet'], $attr['tabletPaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingTablet'], $attr['inputPaddingTypeDesktop'] );
$paddingInputLeftTablet   = isset( $attr['paddingInputLeftTablet'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputLeftTablet'], $attr['tabletPaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingTablet'], $attr['inputPaddingTypeDesktop'] );
$paddingInputTopMobile    = isset( $attr['paddingInputTopMobile'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputTopMobile'], $attr['mobilePaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingMobile'], $attr['inputPaddingTypeDesktop'] );
$paddingInputRightMobile  = isset( $attr['paddingInputRightMobile'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputRightMobile'], $attr['mobilePaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingMobile'], $attr['inputPaddingTypeDesktop'] );
$paddingInputBottomMobile = isset( $attr['paddingInputBottomMobile'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputBottomMobile'], $attr['mobilePaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['vinputPaddingMobile'], $attr['inputPaddingTypeDesktop'] );
$paddingInputLeftMobile   = isset( $attr['paddingInputLeftMobile'] ) ? UAGB_Helper::get_css_value( $attr['paddingInputLeftMobile'], $attr['mobilePaddingInputUnit'] ) : UAGB_Helper::get_css_value( $attr['hinputPaddingMobile'], $attr['inputPaddingTypeDesktop'] );

$iconSize       = UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeType'] );
$buttonIconSize = UAGB_Helper::get_css_value( $attr['buttonIconSize'], $attr['buttonIconSizeType'] );
$inputCSS       = array(
	'color'            => $attr['textColor'],
	'background-color' => $attr['inputBgColor'],
	'border'           => 0,
	'border-radius'    => '0px',
	'margin'           => 0,
	'outline'          => 'unset',
	'padding-top'      => $paddingInputTop,
	'padding-bottom'   => $paddingInputBottom,
	'padding-right'    => $paddingInputRight,
	'padding-left'     => $paddingInputLeft,
);


$inputBorderCSS       = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input' );
$inputBorderCSS       = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$inputBorderCSS,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$inputBorderCSSTablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input', 'tablet' );
$inputBorderCSSMobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'input', 'mobile' );

$boxCSS = array_merge(
	$inputBorderCSS,
	array(
		'outline'    => 'unset',
		'box-shadow' => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,
		'transition' => 'all .5s',
	)
);
if ( 'px' === $attr['inputSizeType'] ) {
	$boxCSS['max-width'] = UAGB_Helper::get_css_value( $attr['inputSize'], $attr['inputSizeType'] );
} else {
	$boxCSS['width'] = UAGB_Helper::get_css_value( $attr['inputSize'], $attr['inputSizeType'] );
}
$icon_color = $attr['textColor'];

if ( $attr['iconColor'] && '' !== $attr['iconColor'] ) {
	$icon_color = $attr['iconColor'];
}

$selectors = array(
	' .uagb-search-form__container .uagb-search-submit' => array(
		'width'   => UAGB_Helper::get_css_value( $attr['buttonWidth'], $attr['buttonWidthType'] ),
		'padding' => 0,
		'border'  => 0,
	),
	' .uagb-search-form__container .uagb-search-form__input::placeholder' => array(
		'color'   => $attr['textColor'],
		'opacity' => 0.6,
	),
	' .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-icon-wrap svg' => array(
		'width'     => $buttonIconSize,
		'height'    => $buttonIconSize,
		'font-size' => $buttonIconSize,
		'fill'      => $attr['buttonIconColor'],
	),
	' .uagb-search-form__container .uagb-search-submit:hover .uagb-wp-search-button-icon-wrap svg' => array(
		'fill' => $attr['buttonIconHoverColor'],
	),
	' .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-text' => array(
		'color' => $attr['buttonTextColor'],
	),
	' .uagb-search-form__container .uagb-search-submit:hover .uagb-wp-search-button-text' => array(
		'color' => $attr['buttonTextHoverColor'],
	),
	'.uagb-layout-input .uagb-wp-search-icon-wrap svg'  => array(
		'width'     => $iconSize,
		'height'    => $iconSize,
		'font-size' => $iconSize,
		'fill'      => $icon_color,
	),
);

if ( 'input-button' === $attr['layout'] || 'input' === $attr['layout'] ) {
	$selectors[' .uagb-search-form__container .uagb-search-form__input'] = $inputCSS;

	$selectors[' .uagb-search-wrapper .uagb-search-form__container']       = $boxCSS;
	$selectors[' .uagb-search-wrapper .uagb-search-form__container:hover'] = array(
		'border-color' => $attr['inputBorderHColor'],
	);

	if ( 'inset' === $attr['boxShadowPosition'] ) {
		$selectors[' .uagb-search-wrapper .uagb-search-form__input'] = array(

			'box-shadow' => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,
		);
	}

	$selectors[' .uagb-search-form__container .uagb-wp-search-icon-wrap'] = array(
		'background-color' => $attr['inputBgColor'],
		'padding-top'      => $paddingInputTop,
		'padding-bottom'   => $paddingInputBottom,
		'padding-left'     => $paddingInputLeft,
	);
}

$selectors['.uagb-layout-input-button .uagb-search-wrapper .uagb-search-form__container .uagb-search-submit']       = array(
	'background-color' => $attr['buttonBgColor'],
);
$selectors['.uagb-layout-input-button .uagb-search-wrapper .uagb-search-form__container .uagb-search-submit:hover'] = array(
	'background-color' => $attr['buttonBgHoverColor'],
);

$m_selectors = array(
	' .uagb-search-wrapper .uagb-search-form__container' => $inputBorderCSSMobile,
	' .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input' => array(
		'padding-top'    => $paddingInputTopMobile,
		'padding-bottom' => $paddingInputBottomMobile,
		'padding-right'  => $paddingInputRightMobile,
		'padding-left'   => $paddingInputLeftMobile,
	),
	' .uagb-search-form__container .uagb-wp-search-icon-wrap' => array(
		'padding-top'    => $paddingInputTopMobile,
		'padding-bottom' => $paddingInputBottomMobile,
		'padding-left'   => $paddingInputLeftMobile,
	),
);

$t_selectors        = array(
	' .uagb-search-wrapper .uagb-search-form__container' => $inputBorderCSSTablet,
	' .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input' => array(
		'padding-top'    => $paddingInputTopTablet,
		'padding-bottom' => $paddingInputBottomTablet,
		'padding-right'  => $paddingInputRightTablet,
		'padding-left'   => $paddingInputLeftTablet,
	),
	' .uagb-search-form__container .uagb-wp-search-icon-wrap' => array(
		'padding-top'    => $paddingInputTopTablet,
		'padding-bottom' => $paddingInputBottomTablet,
		'padding-left'   => $paddingInputLeftTablet,
	),
);
$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'input', ' .uagb-search-wrapper .uagb-search-form__container .uagb-search-form__input', $combined_selectors );

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'button', ' .uagb-search-wrapper .uagb-search-form__container .uagb-search-submit .uagb-wp-search-button-text', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][>aT��Cultimate-addons-for-gutenberg/includes/blocks/how-to-step/error_lognu�[���[27-Oct-2025 13:00:10 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/how-to-step/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/how-to-step/block.php on line 13
PK�][�?ϔ	�	Hultimate-addons-for-gutenberg/includes/blocks/how-to-step/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                       => '',
	'titleFontFamily'                => 'Default',
	'titleFontWeight'                => '',
	'titleFontSizeType'              => 'px',
	'titleFontSize'                  => '',
	'titleFontSizeTablet'            => '',
	'titleFontSizeMobile'            => '',
	'descriptionFontFamily'          => 'Default',
	'descriptionFontWeight'          => '',
	'descriptionFontSizeType'        => 'px',
	'descriptionFontSize'            => '',
	'descriptionFontSizeTablet'      => '',
	'descriptionFontSizeMobile'      => '',
	'urlFontFamily'                  => 'Default',
	'urlFontWeight'                  => '',
	'urlFontSizeType'                => 'px',
	'urlFontSize'                    => '',
	'urlFontSizeTablet'              => '',
	'urlFontSizeMobile'              => '',
	'titleColor'                     => '',
	'descriptionColor'               => '',
	'urlColor'                       => '',

	'urlFontStyle'                   => '',
	'urlTransform'                   => '',
	'urlDecoration'                  => '',

	'titleFontStyle'                 => '',
	'titleTransform'                 => '',
	'titleDecoration'                => '',

	'descriptionFontStyle'           => '',
	'descriptionTransform'           => '',
	'descriptionDecoration'          => '',
	'descriptionLetterSpacing'       => '',
	'descriptionLetterSpacingTablet' => '',
	'descriptionLetterSpacingMobile' => '',
	'descriptionLetterSpacingType'   => 'px',
	'descriptionLineHeightType'      => 'em',
	'descriptionLineHeight'          => '',
	'descriptionLineHeightTablet'    => '',
	'descriptionLineHeightMobile'    => '',
	'titleLineHeightType'            => 'em',
	'titleLineHeight'                => '',
	'titleLineHeightTablet'          => '',
	'titleLineHeightMobile'          => '',
	'titleLoadGoogleFonts'           => false,
	'titleLetterSpacing'             => '',
	'titleLetterSpacingTablet'       => '',
	'titleLetterSpacingMobile'       => '',
	'titleLetterSpacingType'         => 'px',
	'urlLineHeightType'              => 'em',
	'urlLineHeight'                  => '',
	'urlLineHeightTablet'            => '',
	'urlLineHeightMobile'            => '',
	'urlLetterSpacing'               => '',
	'urlLetterSpacingTablet'         => '',
	'urlLetterSpacingMobile'         => '',
	'urlLetterSpacingType'           => 'px',
);
PK�][h�<���Cultimate-addons-for-gutenberg/includes/blocks/how-to-step/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/how-to-step';
$block_data = array(
	'slug'           => '',
	'title'          => __( 'Step', 'ultimate-addons-for-gutenberg' ),
	'description'    => __( 'Add relevant content for this step.', 'ultimate-addons-for-gutenberg' ),
	'default'        => true,
	'is_child'       => true,
	'dynamic_assets' => array(
		'dir' => 'how-to-step',
	),
	'deprecated'     => false,
);
PK�][5�%%Jultimate-addons-for-gutenberg/includes/blocks/how-to-step/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_how_to_step_gfont( $attr );

$t_selectors = array();
$m_selectors = array();
$selectors   = array(
	' .uagb-step-link-text'          => array(
		'color' => $attr['urlColor'],
	),
	' .uagb-how-to-step-name'        => array(
		'color' => $attr['titleColor'],
	),
	' .uagb-how-to-step-description' => array(
		'color' => $attr['descriptionColor'],
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'url', ' .uagb-step-link-text', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-how-to-step-name', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'description', ' .uagb-how-to-step-description', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . $id );
PK�][�M�a��Iultimate-addons-for-gutenberg/includes/blocks/table-of-contents/error_lognu�[���[27-Oct-2025 14:14:13 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/attributes.php on line 10
[27-Oct-2025 14:15:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/block.php on line 16
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 13
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 16
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 16
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 17
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 17
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 18
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 18
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 19
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 19
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 20
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 20
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 21
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 21
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 23
[27-Oct-2025 14:18:50 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 23
[27-Oct-2025 14:18:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php:29
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.php on line 29
PK�][IY9F''Nultimate-addons-for-gutenberg/includes/blocks/table-of-contents/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$borderAttributes = UAGB_Block_Helper::uag_generate_border_attribute(
	'overall'
);

return array_merge(
	array(
		'classMigrate'               => false,
		'block_id'                   => '',
		'heading'                    => __( 'Table Of Contents', 'ultimate-addons-for-gutenberg' ),
		'emptyHeadingTeaxt'          => __( 'Add a header to begin generating the table of contents', 'ultimate-addons-for-gutenberg' ),
		'disableBullets'             => false,
		'smoothScroll'               => true,
		'smoothScrollOffset'         => 30,
		'scrollToTop'                => false,
		'scrollToTopColor'           => '',
		'scrollToTopBgColor'         => '',
		'considerH1'                 => true,
		'considerH2'                 => true,
		'considerH3'                 => true,
		'considerH4'                 => true,
		'considerH5'                 => true,
		'considerH6'                 => true,
		'customWidth'                => true,
		'widthDesktop'               => 100,
		'widthTablet'                => '',
		'widthMobile'                => '',
		'tColumnsDesktop'            => 1,
		'tColumnsTablet'             => 1,
		'tColumnsMobile'             => 1,
		'mappingHeaders'             => array_fill_keys( array( 0, 1, 2, 3, 4, 5 ), true ),
		'widthTypeDesktop'           => '%',
		'widthTypeTablet'            => '%',
		'widthTypeMobile'            => '%',
		'makeCollapsible'            => false,
		'initialCollapse'            => false,
		'icon'                       => 'angle-down',
		'iconColor'                  => '',
		'bulletColor'                => '',
		'iconSize'                   => '',
		'align'                      => 'left',
		'overallAlign'               => 'left',
		'headingAlignment'           => 'left',
		'linkColor'                  => '#54595F',
		'leftPaddingTablet'          => '',
		'rightPaddingTablet'         => '',
		'topPaddingTablet'           => '',
		'bottomPaddingTablet'        => '',
		'topPaddingMobile'           => '',
		'bottomPaddingMobile'        => '',
		'leftPaddingMobile'          => '',
		'rightPaddingMobile'         => '',
		'vPaddingDesktop'            => 30,
		'vPaddingTablet'             => '',
		'vPaddingMobile'             => '',
		'hPaddingDesktop'            => 30,
		'hPaddingTablet'             => '',
		'hPaddingMobile'             => '',
		'paddingTypeDesktop'         => 'px',
		'paddingTypeTablet'          => 'px',
		'paddingTypeMobile'          => 'px',
		'vMarginDesktop'             => '',
		'vMarginTablet'              => '',
		'vMarginMobile'              => '',
		'hMarginDesktop'             => '',
		'hMarginTablet'              => '',
		'hMarginMobile'              => '',
		'marginTypeDesktop'          => 'px',
		'marginTypeTablet'           => 'px',
		'marginTypeMobile'           => 'px',
		'contentPaddingDesktop'      => '',
		'contentPaddingTablet'       => '',
		'contentPaddingMobile'       => '',
		'contentPaddingTypeDesktop'  => 'px',
		'contentPaddingTypeTablet'   => 'px',
		'contentPaddingTypeMobile'   => 'px',
		'headingBottom'              => '',
		'headingBottomTablet'        => '',
		'headingBottomMobile'        => '',
		'backgroundColor'            => '#fff',
		'linkHoverColor'             => '',
		'headingColor'               => '',
		'loadGoogleFonts'            => false,
		'fontFamily'                 => '',
		'fontWeight'                 => '',
		'fontSize'                   => '',
		'fontSizeType'               => 'px',
		'fontSizeTablet'             => '',
		'fontSizeMobile'             => '',
		'lineHeightType'             => 'em',
		'lineHeight'                 => '',
		'lineHeightTablet'           => '',
		'lineHeightMobile'           => '',
		'headingLoadGoogleFonts'     => false,
		'headingFontFamily'          => '',
		'headingFontWeight'          => 'Default',
		'headingFontSize'            => 20,
		'headingFontSizeType'        => 'px',
		'headingFontSizeTablet'      => '',
		'headingFontSizeMobile'      => '',
		'headingLineHeightType'      => 'em',
		'headingLineHeight'          => '',
		'headingLineHeightTablet'    => '',
		'headingLineHeightMobile'    => '',
		'fontStyle'                  => '',
		'fontTransform'              => '',
		'fontDecoration'             => 'underline',
		'headingFontStyle'           => '',
		'headingTransform'           => '',
		'headingDecoration'          => '',
		'headingLetterSpacing'       => '',
		'headingLetterSpacingTablet' => '',
		'headingLetterSpacingMobile' => '',
		'headingLetterSpacingType'   => 'px',
		'letterSpacing'              => '',
		'letterSpacingTablet'        => '',
		'letterSpacingMobile'        => '',
		'letterSpacingType'          => 'px',
		'markerView'                 => 'disc',
		'separatorStyle'             => 'none',
		'separatorHeightType'        => 'px',
		'separatorSpaceType'         => 'px',
		'separatorColor'             => '',
		'separatorHeight'            => 1,
		'separatorSpace'             => 15,
		'separatorSpaceTablet'       => '',
		'separatorSpaceMobile'       => '',
		'separatorHColor'            => '',
		'borderStyle'                => 'solid',
		'borderWidth'                => 1,
		'borderRadius'               => '',
		'borderColor'                => '#333',
		'enableCollapsableList'      => false,
		'collapsibleListDepth'       => 5,
		'initiallyCollapseList'      => false,
	),
	$borderAttributes
);
PK�][����Iultimate-addons-for-gutenberg/includes/blocks/table-of-contents/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/table-of-contents';
$block_data = array(
	'doc'                 => 'table-of-contents',
	'slug'                => '',
	'admin_categories'    => array( 'seo' ),
	'link'                => 'table-of-contents',
	'title'               => __( 'Table of Contents', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Add a table of contents to allow page navigation.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'table-of-contents' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-table-of-contents' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'table-of-contents' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'table-of-contents',
	),
);
PK�][¬7�F�FPultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_table_of_contents_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$top_padding    = ( isset( $attr['topPadding'] ) && is_numeric( $attr['topPadding'] ) ) ? $attr['topPadding'] : $attr['vPaddingDesktop'];
$bottom_padding = ( isset( $attr['bottomPadding'] ) && is_numeric( $attr['bottomPadding'] ) ) ? $attr['bottomPadding'] : $attr['vPaddingDesktop'];
$left_padding   = ( isset( $attr['leftPadding'] ) && is_numeric( $attr['leftPadding'] ) ) ? $attr['leftPadding'] : $attr['hPaddingDesktop'];
$right_padding  = ( isset( $attr['rightPadding'] ) && is_numeric( $attr['rightPadding'] ) ) ? $attr['rightPadding'] : $attr['hPaddingDesktop'];

$mobile_top_padding    = ( isset( $attr['topPaddingMobile'] ) && is_numeric( $attr['topPaddingMobile'] ) ) ? $attr['topPaddingMobile'] : $attr['vPaddingMobile'];
$mobile_bottom_padding = ( isset( $attr['bottomPaddingMobile'] ) && is_numeric( $attr['bottomPaddingMobile'] ) ) ? $attr['bottomPaddingMobile'] : $attr['vPaddingMobile'];
$mobile_left_padding   = ( isset( $attr['leftPaddingMobile'] ) && is_numeric( $attr['leftPaddingMobile'] ) ) ? $attr['leftPaddingMobile'] : $attr['hPaddingMobile'];
$mobile_right_padding  = ( isset( $attr['rightPaddingMobile'] ) && is_numeric( $attr['rightPaddingMobile'] ) ) ? $attr['rightPaddingMobile'] : $attr['hPaddingMobile'];

$tablet_top_padding    = ( isset( $attr['topPaddingTablet'] ) && is_numeric( $attr['topPaddingTablet'] ) ) ? $attr['topPaddingTablet'] : $attr['vPaddingTablet'];
$tablet_bottom_padding = ( isset( $attr['bottomPaddingTablet'] ) && is_numeric( $attr['bottomPaddingTablet'] ) ) ? $attr['bottomPaddingTablet'] : $attr['vPaddingTablet'];
$tablet_left_padding   = ( isset( $attr['leftPaddingTablet'] ) && is_numeric( $attr['leftPaddingTablet'] ) ) ? $attr['leftPaddingTablet'] : $attr['hPaddingTablet'];
$tablet_right_padding  = ( isset( $attr['rightPaddingTablet'] ) && is_numeric( $attr['rightPaddingTablet'] ) ) ? $attr['rightPaddingTablet'] : $attr['hPaddingTablet'];

$top_margin    = isset( $attr['topMargin'] ) ? $attr['topMargin'] : $attr['vMarginDesktop'];
$bottom_margin = isset( $attr['bottomMargin'] ) ? $attr['bottomMargin'] : $attr['vMarginDesktop'];
$left_margin   = isset( $attr['leftMargin'] ) ? $attr['leftMargin'] : $attr['hMarginDesktop'];
$right_margin  = isset( $attr['rightMargin'] ) ? $attr['rightMargin'] : $attr['hMarginDesktop'];

$mobile_top_margin    = isset( $attr['topMarginMobile'] ) ? $attr['topMarginMobile'] : $attr['vMarginMobile'];
$mobile_bottom_margin = isset( $attr['bottomMarginMobile'] ) ? $attr['bottomMarginMobile'] : $attr['vMarginMobile'];
$mobile_left_margin   = isset( $attr['leftMarginMobile'] ) ? $attr['leftMarginMobile'] : $attr['hMarginMobile'];
$mobile_right_margin  = isset( $attr['rightMarginMobile'] ) ? $attr['rightMarginMobile'] : $attr['hMarginMobile'];

$tablet_top_margin    = isset( $attr['topMarginTablet'] ) ? $attr['topMarginTablet'] : $attr['vMarginTablet'];
$tablet_bottom_margin = isset( $attr['bottomMarginTablet'] ) ? $attr['bottomMarginTablet'] : $attr['vMarginTablet'];
$tablet_left_margin   = isset( $attr['leftMarginTablet'] ) ? $attr['leftMarginTablet'] : $attr['hMarginTablet'];
$tablet_right_margin  = isset( $attr['rightMarginTablet'] ) ? $attr['rightMarginTablet'] : $attr['hMarginTablet'];
$iconSize             = isset( $attr['iconSize'] ) ? UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ) : '20px';

$overallBorderCSS       = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall' );
$overallBorderCSS       = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$overallBorderCSS,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$overallBorderCSSTablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'tablet' );
$overallBorderCSSMobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'mobile' );


$selectors = array(
	'.wp-block-uagb-table-of-contents'                    => array(
		'text-align' => $attr['overallAlign'],
	),
	' .uagb-toc__list-wrap ul li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__list-wrap ol li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__list-wrap li a:hover'                    => array(
		'color' => $attr['linkHoverColor'],
	),
	' .uagb-toc__list-wrap li a'                          => array(
		'color' => $attr['linkColor'],
	),
	' .uagb-toc__wrap .uagb-toc__title-wrap'              => array(
		'justify-content' => $attr['align'],
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['headingBottom'], 'px' ),
	),
	' .uagb-toc__wrap .uagb-toc__title'                   => array(
		'color'           => $attr['headingColor'],
		'justify-content' => $attr['headingAlignment'],
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['headingBottom'], 'px' ),
	),
	' .uagb-toc__wrap'                                    => array_merge(
		$overallBorderCSS,
		array(
			'padding-left'   => UAGB_Helper::get_css_value( $left_padding, $attr['paddingTypeDesktop'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $right_padding, $attr['paddingTypeDesktop'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $top_padding, $attr['paddingTypeDesktop'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding, $attr['paddingTypeDesktop'] ),
			'background'     => $attr['backgroundColor'],
		)
	),
	' .uagb-toc__wrap:hover'                              => array(
		'border-color' => $attr['overallBorderHColor'],
	),
	' .uagb-toc__list-wrap'                               => array(
		'column-count' => $attr['tColumnsDesktop'],
		'overflow'     => 'hidden',
		'text-align'   => $attr['align'],
	),
	' .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child' => array(
		'padding-top' => 0,
	),
	' .uagb-toc__list-wrap > ol.uagb-toc__list li'        => array(
		'color' => $attr['bulletColor'],
	),
	' .uagb-toc__list-wrap > li'                          => array(
		'color' => $attr['bulletColor'],
	),
	' .uagb-toc__list-wrap ol.uagb-toc__list:first-child' => array(
		'margin-left'   => UAGB_Helper::get_css_value( $left_margin, $attr['marginTypeDesktop'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $right_margin, $attr['marginTypeDesktop'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $top_margin, $attr['marginTypeDesktop'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $bottom_margin, $attr['marginTypeDesktop'] ),
	),
	' .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child' => array(
		'padding-bottom' => 0,
	),
	' .uag-toc__collapsible-wrap svg'                     => array(
		'width'  => $iconSize,
		'height' => $iconSize,
		'fill'   => $attr['iconColor'],
	),
	' svg'                                                => array(
		'width'  => $iconSize,
		'height' => $iconSize,
		'fill'   => $attr['iconColor'],
	),
);

if ( '' !== $attr['contentPaddingDesktop'] ) {
	$selectors[' .uagb-toc__list-wrap ol.uagb-toc__list > li']['padding-top']    = 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingDesktop'], $attr['contentPaddingTypeDesktop'] ) . ' / 2 )';
	$selectors[' .uagb-toc__list-wrap ol.uagb-toc__list > li']['padding-bottom'] = 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingDesktop'], $attr['contentPaddingTypeDesktop'] ) . ' / 2 )';
	$selectors[' .uagb-toc__list-wrap ul.uagb-toc__list > li']['padding-top']    = 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingDesktop'], $attr['contentPaddingTypeDesktop'] ) . ' / 2 )';
	$selectors[' .uagb-toc__list-wrap ul.uagb-toc__list > li']['padding-bottom'] = 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingDesktop'], $attr['contentPaddingTypeDesktop'] ) . ' / 2 )';
	// Add the bottom padding to the unordered list that's a child of the expandable list.
	$selectors[' .uagb-toc__list-wrap li.uagb-toc__list.uagb-toc__list--expandable > ul.uagb-toc__list']['padding-top'] = 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingDesktop'], $attr['contentPaddingTypeDesktop'] ) . ' / 2 )';
}

if ( $attr['customWidth'] ) {
	$selectors[' .uagb-toc__wrap']['width'] = UAGB_Helper::get_css_value( $attr['widthDesktop'], $attr['widthTypeDesktop'] );
}

if ( $attr['customWidth'] && $attr['makeCollapsible'] ) {
	$selectors[' .uagb-toc__wrap .uagb-toc__title']['justify-content'] = 'space-between';
}

if ( $attr['makeCollapsible'] ) {
	$selectors[' .uagb-toc__wrap .uagb-toc__title']['cursor'] = 'pointer';
}

if ( $attr['disableBullets'] ) {
	$selectors[' .uagb-toc__list']                 = array(
		'list-style-type' => 'none !important',
	);
	$selectors[' .uagb-toc__list .uagb-toc__list'] = array(
		'list-style-type' => 'none !important',
	);
} else {
	$selectors[' .uagb-toc__list .uagb-toc__list'] = array(
		'list-style-type' => $attr['markerView'] . ' !important',
	);
}


$m_selectors = array(
	' .uagb-toc__list-wrap ul li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__list-wrap ol li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSizeMobile'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__title'                                   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottomMobile'], 'px' ),
	),
	' .uagb-toc__wrap'                                    => array_merge(
		$overallBorderCSSMobile,
		array(
			'width'          => UAGB_Helper::get_css_value( $attr['widthMobile'], $attr['widthTypeMobile'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $mobile_left_padding, $attr['paddingTypeMobile'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $mobile_right_padding, $attr['paddingTypeMobile'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $mobile_top_padding, $attr['paddingTypeMobile'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $mobile_bottom_padding, $attr['paddingTypeMobile'] ),
		)
	),
	' .uagb-toc__list-wrap ol.uagb-toc__list:first-child' => array(
		'margin-left'   => UAGB_Helper::get_css_value( $mobile_left_margin, $attr['marginTypeMobile'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $mobile_right_margin, $attr['marginTypeMobile'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $mobile_top_margin, $attr['marginTypeMobile'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $mobile_bottom_margin, $attr['marginTypeMobile'] ),
	),
	' .uagb-toc__list-wrap'                               => array(
		'column-count' => $attr['tColumnsMobile'],
		'overflow'     => 'hidden',
		'text-align'   => $attr['align'],
	),
	' .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child' => array(
		'padding-top' => 0,
	),
	' .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child' => array(
		'padding-bottom' => 0,
	),
);

$t_selectors = array(
	' .uagb-toc__list-wrap ul li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__list-wrap ol li'                         => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['fontSizeTablet'], $attr['fontSizeType'] ),
	),
	' .uagb-toc__title'                                   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['headingBottomTablet'], 'px' ),
	),
	' .uagb-toc__wrap'                                    => array_merge(
		$overallBorderCSSTablet,
		array(
			'width'          => UAGB_Helper::get_css_value( $attr['widthTablet'], $attr['widthTypeTablet'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $tablet_left_padding, $attr['paddingTypeTablet'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $tablet_right_padding, $attr['paddingTypeTablet'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $tablet_top_padding, $attr['paddingTypeTablet'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $tablet_bottom_padding, $attr['paddingTypeTablet'] ),
		)
	),
	' .uagb-toc__list-wrap ol.uagb-toc__list:first-child' => array(
		'margin-left'   => UAGB_Helper::get_css_value( $tablet_left_margin, $attr['marginTypeTablet'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $tablet_right_margin, $attr['marginTypeTablet'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $tablet_top_margin, $attr['marginTypeTablet'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $tablet_bottom_margin, $attr['marginTypeTablet'] ),
	),
	' .uagb-toc__list-wrap'                               => array(
		'column-count' => $attr['tColumnsTablet'],
		'overflow'     => 'hidden',
		'text-align'   => $attr['align'],
	),
	' .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child' => array(
		'padding-top' => 0,
	),
	' .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child' => array(
		'padding-bottom' => 0,
	),
);

if ( '' !== $attr['contentPaddingTablet'] ) {
	$t_selectors[' .uagb-toc__list-wrap ol.uagb-toc__list > li'] = array(
		'padding-top'    => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingTablet'], $attr['contentPaddingTypeTablet'] ) . ' / 2 )',
		'padding-bottom' => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingTablet'], $attr['contentPaddingTypeTablet'] ) . ' / 2 )',
	);
	$t_selectors[' .uagb-toc__list-wrap ul.uagb-toc__list > li'] = array(
		'padding-top'    => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingTablet'], $attr['contentPaddingTypeTablet'] ) . ' / 2 )',
		'padding-bottom' => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingTablet'], $attr['contentPaddingTypeTablet'] ) . ' / 2 )',
	);
}

if ( '' !== $attr['contentPaddingMobile'] ) {
	$m_selectors[' .uagb-toc__list-wrap ol.uagb-toc__list > li'] = array(
		'padding-top'    => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingMobile'], $attr['contentPaddingTypeMobile'] ) . ' / 2 )',
		'padding-bottom' => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingMobile'], $attr['contentPaddingTypeMobile'] ) . ' / 2 )',
	);
	$m_selectors[' .uagb-toc__list-wrap ul.uagb-toc__list > li'] = array(
		'padding-top'    => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingMobile'], $attr['contentPaddingTypeMobile'] ) . ' / 2 )',
		'padding-bottom' => 'calc( ' . UAGB_Helper::get_css_value( $attr['contentPaddingMobile'], $attr['contentPaddingTypeMobile'] ) . ' / 2 )',
	);
}

if ( 'none' !== $attr['separatorStyle'] ) {

	// Since we need the separator to ignore the padding and cover the entire width of the parent container,
	// we use calc and do the following calculations.

	$calc_padding_left  = UAGB_Helper::get_css_value( $left_padding, $attr['paddingTypeDesktop'] );
	$calc_padding_right = UAGB_Helper::get_css_value( $right_padding, $attr['paddingTypeDesktop'] );

	$t_calc_padding_left  = UAGB_Helper::get_css_value( $tablet_left_padding, $attr['paddingTypeTablet'] );
	$t_calc_padding_right = UAGB_Helper::get_css_value( $tablet_right_padding, $attr['paddingTypeTablet'] );

	$m_calc_padding_left  = UAGB_Helper::get_css_value( $mobile_left_padding, $attr['paddingTypeMobile'] );
	$m_calc_padding_right = UAGB_Helper::get_css_value( $mobile_right_padding, $attr['paddingTypeMobile'] );

	$selectors[' .uagb-toc__separator'] = array(
		'border-top-style' => $attr['separatorStyle'],
		'border-top-width' => UAGB_Helper::get_css_value(
			$attr['separatorHeight'],
			$attr['separatorHeightType']
		),
		'width'            => 'calc( 100% + ' . $calc_padding_left . ' + ' . $calc_padding_right . ')',
		'margin-left'      => '-' . $calc_padding_left,
		'border-color'     => $attr['separatorColor'],
		'margin-bottom'    => UAGB_Helper::get_css_value(
			$attr['separatorSpace'],
			$attr['separatorSpaceType']
		),
	);

	$selectors[' .uagb-toc__wrap:hover .uagb-toc__separator'] = array(
		'border-color' => $attr['separatorHColor'],
	);

	$t_selectors[' .uagb-toc__separator'] = array(
		'width'         => 'calc( 100% + ' . $t_calc_padding_left . ' + ' . $t_calc_padding_right . ')',
		'margin-left'   => '-' . $t_calc_padding_left,
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['separatorSpaceTablet'],
			$attr['separatorSpaceType']
		),
	);

	$m_selectors[' .uagb-toc__separator'] = array(
		'width'         => 'calc( 100% + ' . $m_calc_padding_left . ' + ' . $m_calc_padding_right . ')',
		'margin-left'   => '-' . $m_calc_padding_left,
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['separatorSpaceMobile'],
			$attr['separatorSpaceType']
		),
	);

}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'heading', ' .uagb-toc__title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, '', ' .uagb-toc__list-wrap ol li a', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-toc-';

$desktop = UAGB_Helper::generate_css( $combined_selectors['desktop'], $base_selector . $id );

$tablet = UAGB_Helper::generate_css( $combined_selectors['tablet'], $base_selector . $id );

$mobile = UAGB_Helper::generate_css( $combined_selectors['mobile'], $base_selector . $id );

if ( '' !== $attr['scrollToTopColor'] ) {
	$desktop .= '.uagb-toc__scroll-top { color: ' . $attr['scrollToTopColor'] . '; }';
}

if ( '' !== $attr['scrollToTopBgColor'] ) {
	$desktop .= '.uagb-toc__scroll-top.uagb-toc__show-scroll { background: ' . $attr['scrollToTopBgColor'] . '; }';
}

$generated_css = array(
	'desktop' => $desktop,
	'tablet'  => $tablet,
	'mobile'  => $mobile,
);

return $generated_css;
PK�][,��8��Oultimate-addons-for-gutenberg/includes/blocks/table-of-contents/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 *
 * @package uagb
 */

$base_selector = ( isset( $attr['classMigrate'] ) && $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-toc-';
$selector      = $base_selector . $id;

$attrs_needed_in_js = array(
	'mappingHeaders'        => $attr['mappingHeaders'],
	'scrollToTop'           => $attr['scrollToTop'],
	'makeCollapsible'       => $attr['makeCollapsible'],
	'enableCollapsableList' => $attr['enableCollapsableList'],
	'initialCollapse'       => $attr['initialCollapse'],
	'markerView'            => $attr['markerView'],
	'isFrontend'            => true,
	'initiallyCollapseList' => $attr['initiallyCollapseList'],
);

ob_start();
?>
window.addEventListener( 'load', function(){
	UAGBTableOfContents._run( <?php echo wp_json_encode( $attrs_needed_in_js ); ?>, '<?php echo esc_attr( $selector ); ?>' );
} );
<?php
return ob_get_clean();
?>
PK�][$�@Dultimate-addons-for-gutenberg/includes/blocks/post-excerpt/error_lognu�[���[27-Oct-2025 03:53:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php on line 15
[29-Oct-2025 16:54:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php on line 15
[29-Oct-2025 16:54:38 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.php on line 15
PK�][Nuz��Dultimate-addons-for-gutenberg/includes/blocks/post-excerpt/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-excerpt';
$block_data = array(
	'slug'        => '',

	'link'        => '',
	'title'       => __( 'Post Excerpt', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Show your post\'s excerpt ', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][��T@@;ultimate-addons-for-gutenberg/includes/blocks/faq/error_lognu�[���[27-Oct-2025 15:46:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq/block.php on line 16
[27-Oct-2025 15:46:14 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq/attributes.php on line 10
PK�][�>���@ultimate-addons-for-gutenberg/includes/blocks/faq/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute      = UAGB_Block_Helper::uag_generate_border_attribute( 'overall' );
$icon_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'icon' );

return array_merge(
	array(
		'block_id'                     => '',
		'layout'                       => 'accordion',
		'inactiveOtherItems'           => true,
		'expandFirstItem'              => false,
		'enableSchemaSupport'          => false,
		'align'                        => 'left',
		'enableSeparator'              => false,
		'rowsGap'                      => 10,
		'rowsGapTablet'                => '',
		'rowsGapMobile'                => '',
		'rowsGapUnit'                  => 'px',
		'boxBgType'                    => 'color',
		'boxBgHoverType'               => 'color',
		'boxBgColor'                   => '',
		'boxBgHoverColor'              => '',
		'boxPaddingTypeMobile'         => 'px',
		'boxPaddingTypeTablet'         => 'px',
		'boxPaddingTypeDesktop'        => 'px',
		'vBoxPaddingMobile'            => 10,
		'hBoxPaddingMobile'            => 10,
		'vBoxPaddingTablet'            => 10,
		'hBoxPaddingTablet'            => 10,
		'vBoxPaddingDesktop'           => 10,
		'hBoxPaddingDesktop'           => 10,
		'questionTextColor'            => '',
		'questionTextActiveColor'      => '',
		'questionPaddingTypeDesktop'   => 'px',
		'questionPaddingTypeTablet'    => 'px',
		'questionPaddingTypeMobile'    => 'px',
		'vquestionPaddingMobile'       => 10,
		'vquestionPaddingTablet'       => 10,
		'vquestionPaddingDesktop'      => 10,
		'hquestionPaddingMobile'       => 10,
		'hquestionPaddingTablet'       => 10,
		'hquestionPaddingDesktop'      => 10,
		'answerTextColor'              => '',
		'answerPaddingTypeDesktop'     => 'px',
		'answerPaddingTypeTablet'      => 'px',
		'answerPaddingTypeMobile'      => 'px',
		'vanswerPaddingMobile'         => 10,
		'vanswerPaddingTablet'         => 10,
		'vanswerPaddingDesktop'        => 10,
		'hanswerPaddingMobile'         => 10,
		'hanswerPaddingTablet'         => 10,
		'hanswerPaddingDesktop'        => 10,
		'iconColor'                    => '',
		'iconActiveColor'              => '',
		'gapBtwIconQUestion'           => 10,
		'gapBtwIconQUestionTablet'     => 10,
		'gapBtwIconQUestionMobile'     => 10,
		'questionloadGoogleFonts'      => false,
		'answerloadGoogleFonts'        => false,
		'questionFontFamily'           => 'Default',
		'questionFontWeight'           => '',
		'questionFontSize'             => '',
		'questionFontSizeType'         => 'px',
		'questionFontSizeTablet'       => '',
		'questionFontSizeMobile'       => '',
		'questionLineHeight'           => '',
		'questionLineHeightType'       => 'em',
		'questionLineHeightTablet'     => '',
		'questionLineHeightMobile'     => '',
		'answerFontFamily'             => 'Default',
		'answerFontWeight'             => '',
		'answerFontSize'               => '',
		'answerFontSizeType'           => 'px',
		'answerFontSizeTablet'         => '',
		'answerFontSizeMobile'         => '',
		'answerLineHeight'             => '',
		'answerLineHeightType'         => 'em',
		'answerLineHeightTablet'       => '',
		'answerLineHeightMobile'       => '',
		'icon'                         => 'plus',
		'iconActive'                   => 'minus',
		'iconAlign'                    => 'row',
		'iconSize'                     => 12,
		'iconSizeMobile'               => '',
		'iconSizeTablet'               => '',
		'iconSizeType'                 => 'px',
		'columnsGap'                   => 10,
		'columnsGapTablet'             => '',
		'columnsGapMobile'             => '',
		'columnsGapUnit'               => 'px',
		'columns'                      => 2,
		'tcolumns'                     => 2,
		'mcolumns'                     => 1,
		'schema'                       => '',
		'enableToggle'                 => true,
		'questionLeftPaddingTablet'    => 10,
		'questionBottomPaddingTablet'  => 10,
		'questionLeftPaddingDesktop'   => 10,
		'questionBottomPaddingDesktop' => 10,
		'questionLeftPaddingMobile'    => 10,
		'questionBottomPaddingMobile'  => 10,
		'questionSpacingLink'          => '',
		'answerSpacingLink'            => '',
		'answerTopPadding'             => 10,
		'answerRightPadding'           => 10,
		'answerBottomPadding'          => 10,
		'answerLeftPadding'            => 10,
		'answerTopPaddingTablet'       => 10,
		'answerRightPaddingTablet'     => 10,
		'answerBottomPaddingTablet'    => 10,
		'answerLeftPaddingTablet'      => 10,
		'answerTopPaddingMobile'       => 10,
		'answerRightPaddingMobile'     => 10,
		'answerBottomPaddingMobile'    => 10,
		'answerLeftPaddingMobile'      => 10,
		'questionFontStyle'            => '',
		'questionTransform'            => '',
		'questionDecoration'           => '',
		'answerFontStyle'              => '',
		'answerTransform'              => '',
		'answerDecoration'             => '',
		'questionLetterSpacing'        => '',
		'questionLetterSpacingTablet'  => '',
		'questionLetterSpacingMobile'  => '',
		'questionLetterSpacingType'    => 'px',
		'answerLetterSpacing'          => '',
		'answerLetterSpacingTablet'    => '',
		'answerLetterSpacingMobile'    => '',
		'answerLetterSpacingType'      => 'px',
		'questionTextBgColor'          => '',
		'questionTextActiveBgColor'    => '',
		'borderStyle'                  => 'solid',
		'borderWidth'                  => 1,
		'borderRadius'                 => 2,
		'borderColor'                  => '#1e1e1e',
		'borderHoverColor'             => '',
		'iconBgSize'                   => '',
		'iconBgSizeTablet'             => '',
		'iconBgSizeMobile'             => '',
		'iconBgSizeType'               => 'px',
		'iconBgColor'                  => '',
		// padding.
		'blockTopPadding'              => '',
		'blockRightPadding'            => '',
		'blockLeftPadding'             => '',
		'blockBottomPadding'           => '',
		'blockTopPaddingTablet'        => '',
		'blockRightPaddingTablet'      => '',
		'blockLeftPaddingTablet'       => '',
		'blockBottomPaddingTablet'     => '',
		'blockTopPaddingMobile'        => '',
		'blockRightPaddingMobile'      => '',
		'blockLeftPaddingMobile'       => '',
		'blockBottomPaddingMobile'     => '',
		'blockPaddingUnit'             => 'px',
		'blockPaddingUnitTablet'       => 'px',
		'blockPaddingUnitMobile'       => 'px',
		'blockPaddingLink'             => true,
		// margin.
		'blockTopMargin'               => '',
		'blockRightMargin'             => '',
		'blockLeftMargin'              => '',
		'blockBottomMargin'            => '',
		'blockTopMarginTablet'         => '',
		'blockRightMarginTablet'       => '',
		'blockLeftMarginTablet'        => '',
		'blockBottomMarginTablet'      => '',
		'blockTopMarginMobile'         => '',
		'blockRightMarginMobile'       => '',
		'blockLeftMarginMobile'        => '',
		'blockBottomMarginMobile'      => '',
		'blockMarginUnit'              => 'px',
		'blockMarginUnitTablet'        => 'px',
		'blockMarginUnitMobile'        => 'px',
		'blockMarginLink'              => true,
	),
	$border_attribute,
	$icon_border_attribute
);
PK�][t�:fhh;ultimate-addons-for-gutenberg/includes/blocks/faq/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/faq';
$block_data = array(
	'doc'                 => 'faq-schema-or-accordion',
	'slug'                => '',
	'admin_categories'    => array( 'seo' ),
	'link'                => 'faq-schema',
	'title'               => __( 'FAQ', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Add accordions/FAQ schema to your page.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'faq' ),
	'deprecated'          => false,
	'dynamic_assets'      => array(
		'dir' => 'faq',
	),
	'static_dependencies' => array(
		'uagb-faq-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'faq' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
);
PK�][�BA��V�VBultimate-addons-for-gutenberg/includes/blocks/faq/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_faq_gfont( $attr );

$icon_color        = $attr['iconColor'];
$icon_active_color = $attr['iconActiveColor'];

$attr['questionBottomPaddingDesktop'] = ( 10 === $attr['questionBottomPaddingDesktop'] && 10 !== $attr['vquestionPaddingDesktop'] ) ? $attr['vquestionPaddingDesktop'] : $attr['questionBottomPaddingDesktop'];

$attr['questionLeftPaddingDesktop'] = ( 10 === $attr['questionLeftPaddingDesktop'] && 10 !== $attr['hquestionPaddingDesktop'] ) ? $attr['hquestionPaddingDesktop'] : $attr['questionLeftPaddingDesktop'];

$attr['questionBottomPaddingTablet'] = ( 10 === $attr['questionBottomPaddingTablet'] && 10 !== $attr['vquestionPaddingTablet'] ) ? $attr['vquestionPaddingTablet'] : $attr['questionBottomPaddingTablet'];

$attr['questionLeftPaddingTablet'] = ( 10 === $attr['questionLeftPaddingTablet'] && 10 !== $attr['hquestionPaddingTablet'] ) ? $attr['hquestionPaddingTablet'] : $attr['questionLeftPaddingTablet'];

$attr['questionBottomPaddingMobile'] = ( 10 === $attr['questionBottomPaddingMobile'] && 10 !== $attr['vquestionPaddingMobile'] ) ? $attr['vquestionPaddingMobile'] : $attr['questionBottomPaddingMobile'];

$attr['questionLeftPaddingMobile'] = ( 10 === $attr['questionLeftPaddingMobile'] && 10 !== $attr['hquestionPaddingMobile'] ) ? $attr['hquestionPaddingMobile'] : $attr['questionLeftPaddingMobile'];

if ( ! isset( $attr['iconColor'] ) || '' === $attr['iconColor'] ) {

	$icon_color = $attr['questionTextColor'];
}
if ( ! isset( $attr['iconActiveColor'] ) || '' === $attr['iconActiveColor'] ) {

	$icon_active_color = $attr['questionTextActiveColor'];
}

$icon_size   = UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeType'] );
$t_icon_size = UAGB_Helper::get_css_value( $attr['iconSizeTablet'], $attr['iconSizeType'] );
$m_icon_size = UAGB_Helper::get_css_value( $attr['iconSizeMobile'], $attr['iconSizeType'] );

$answer_top_padding_desktop    = isset( $attr['answerTopPadding'] ) ? $attr['answerTopPadding'] : $attr['vanswerPaddingDesktop'];
$answer_bottom_padding_desktop = isset( $attr['answerBottomPadding'] ) ? $attr['answerBottomPadding'] : $attr['vanswerPaddingDesktop'];
$answer_left_padding_desktop   = isset( $attr['answerLeftPadding'] ) ? $attr['answerLeftPadding'] : $attr['hanswerPaddingDesktop'];
$answer_right_padding_desktop  = isset( $attr['answerRightPadding'] ) ? $attr['answerRightPadding'] : $attr['hanswerPaddingDesktop'];

$answer_top_padding_tablet    = isset( $attr['answerTopPaddingTablet'] ) ? $attr['answerTopPaddingTablet'] : $attr['vanswerPaddingTablet'];
$answer_bottom_padding_tablet = isset( $attr['answerBottomPaddingTablet'] ) ? $attr['answerBottomPaddingTablet'] : $attr['vanswerPaddingTablet'];
$answer_left_padding_tablet   = isset( $attr['answerLeftPaddingTablet'] ) ? $attr['answerLeftPaddingTablet'] : $attr['hanswerPaddingTablet'];
$answer_right_padding_tablet  = isset( $attr['answerRightPaddingTablet'] ) ? $attr['answerRightPaddingTablet'] : $attr['hanswerPaddingTablet'];

$answer_top_padding_mobile    = isset( $attr['answerTopPaddingMobile'] ) ? $attr['answerTopPaddingMobile'] : $attr['vanswerPaddingMobile'];
$answer_bottom_padding_mobile = isset( $attr['answerBottomPaddingMobile'] ) ? $attr['answerBottomPaddingMobile'] : $attr['vanswerPaddingMobile'];
$answer_left_padding_mobile   = isset( $attr['answerLeftPaddingMobile'] ) ? $attr['answerLeftPaddingMobile'] : $attr['hanswerPaddingMobile'];
$answer_right_padding_mobile  = isset( $attr['answerRightPaddingMobile'] ) ? $attr['answerRightPaddingMobile'] : $attr['hanswerPaddingMobile'];

$border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall' );
$border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$border,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'mobile' );

$icon_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon' );
$icon_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon', 'tablet' );
$icon_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon', 'mobile' );

$selectors = array(
	' .uagb-icon svg'                                     => array(
		'width'     => $icon_size,
		'height'    => $icon_size,
		'font-size' => $icon_size,
		'fill'      => $icon_color,
	),
	' .uagb-icon-active svg'                              => array(
		'width'     => $icon_size,
		'height'    => $icon_size,
		'font-size' => $icon_size,
		'fill'      => $icon_active_color,
	),
	' .uagb-faq-child__outer-wrap'                        => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowsGap'], $attr['rowsGapUnit'] ),
	),
	' .uagb-faq-item'                                     => array_merge(
		array(
			'background-color' => ( 'color' === $attr['boxBgType'] ) ? $attr['boxBgColor'] : 'transparent',
		),
		$border
	),
	' .uagb-faq-item:hover'                               => array(
		'background-color' => ( 'color' === $attr['boxBgHoverType'] ) ? $attr['boxBgHoverColor'] : 'transparent',
		'border-color'     => ! empty( $attr['overallBorderHColor'] ) ? $attr['overallBorderHColor'] : $attr['borderHoverColor'],
	),
	' .uagb-faq-item .uagb-question'                      => array(
		'color' => $attr['questionTextColor'],
	),
	' .uagb-faq-item.uagb-faq-item-active .uagb-question' => array(
		'color' => $attr['questionTextActiveColor'],
	),
	' .uagb-faq-item:hover .uagb-question'                => array(
		'color' => $attr['questionTextActiveColor'],
	),
	' .uagb-faq-questions-button'                         => array(
		'padding-top'      => UAGB_Helper::get_css_value( $attr['vquestionPaddingDesktop'], $attr['questionPaddingTypeDesktop'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $attr['questionBottomPaddingDesktop'], $attr['questionPaddingTypeDesktop'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $attr['hquestionPaddingDesktop'], $attr['questionPaddingTypeDesktop'] ),
		'padding-left'     => UAGB_Helper::get_css_value( $attr['questionLeftPaddingDesktop'], $attr['questionPaddingTypeDesktop'] ),
		'background-color' => $attr['questionTextBgColor'],
	),
	' .uagb-faq-item.uagb-faq-item-active .uagb-faq-questions-button' => array(
		'background-color' => $attr['questionTextActiveBgColor'],
	),
	' .uagb-faq-item:hover .uagb-faq-questions-button'    => array(
		'background-color' => $attr['questionTextActiveBgColor'],
	),
	' .uagb-faq-content'                                  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $answer_top_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $answer_right_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $answer_left_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
	),
	' .uagb-faq-content span'                             => array(
		'margin-top'    => UAGB_Helper::get_css_value( $answer_top_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $answer_right_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $answer_left_padding_desktop, $attr['answerPaddingTypeDesktop'] ),
	),
	'.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestion'], 'px' ),
	),
	'.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestion'], 'px' ),
	),
	'.wp-block-uagb-faq .uagb-faq-item .uagb-faq-icon-wrap' => array_merge(
		array(
			'padding'          => UAGB_Helper::get_css_value( $attr['iconBgSize'], $attr['iconBgSizeType'] ),
			'background-color' => $attr['iconBgColor'],
		),
		$icon_border
	),
	'.wp-block-uagb-faq .uagb-faq-item .uagb-faq-icon-wrap:hover' => array(
		'border-color' => $attr['iconBorderHColor'],
	),
	' .uagb-faq-item:hover .uagb-icon svg'                => array(
		'fill' => $icon_active_color,
	),
	' .uagb-faq-item .uagb-faq-questions-button.uagb-faq-questions' => array(
		'flex-direction' => $attr['iconAlign'],
	),
	' .uagb-faq-item .uagb-faq-content'                   => array(
		'color' => $attr['answerTextColor'],
	),
	'.uagb-faq__outer-wrap'                               => array(
		'margin-top'     => UAGB_Helper::get_css_value(
			$attr['blockTopMargin'],
			$attr['blockMarginUnit']
		),
		'margin-right'   => UAGB_Helper::get_css_value(
			$attr['blockRightMargin'],
			$attr['blockMarginUnit']
		),
		'margin-bottom'  => UAGB_Helper::get_css_value(
			$attr['blockBottomMargin'],
			$attr['blockMarginUnit']
		),
		'margin-left'    => UAGB_Helper::get_css_value(
			$attr['blockLeftMargin'],
			$attr['blockMarginUnit']
		),
		'padding-top'    => UAGB_Helper::get_css_value(
			$attr['blockTopPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-right'  => UAGB_Helper::get_css_value(
			$attr['blockRightPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-bottom' => UAGB_Helper::get_css_value(
			$attr['blockBottomPadding'],
			$attr['blockPaddingUnit']
		),
		'padding-left'   => UAGB_Helper::get_css_value(
			$attr['blockLeftPadding'],
			$attr['blockPaddingUnit']
		),
	),
);

$t_selectors = array(
	'.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestionTablet'], 'px' ),
	),
	'.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestionTablet'], 'px' ),
	),
	'.wp-block-uagb-faq .uagb-faq-item .uagb-faq-icon-wrap' => array_merge(
		array(
			'padding' => UAGB_Helper::get_css_value( $attr['iconBgSizeTablet'], $attr['iconBgSizeType'] ),
		),
		$icon_border_tablet
	),
	' .uagb-faq-questions-button'  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['vquestionPaddingTablet'], $attr['questionPaddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['questionBottomPaddingTablet'], $attr['questionPaddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['hquestionPaddingTablet'], $attr['questionPaddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['questionLeftPaddingTablet'], $attr['questionPaddingTypeTablet'] ),
	),
	' .uagb-faq-content'           => array(
		'padding-top'    => UAGB_Helper::get_css_value( $answer_top_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $answer_right_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $answer_left_padding_tablet, $attr['answerPaddingTypeTablet'] ),
	),
	' .uagb-faq-content span'      => array(
		'margin-top'    => UAGB_Helper::get_css_value( $answer_top_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $answer_right_padding_tablet, $attr['answerPaddingTypeTablet'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $answer_left_padding_tablet, $attr['answerPaddingTypeTablet'] ),
	),
	' .uagb-icon svg'              => array(
		'width'     => $t_icon_size,
		'height'    => $t_icon_size,
		'font-size' => $t_icon_size,
	),
	' .uagb-icon-active svg'       => array(
		'width'     => $t_icon_size,
		'height'    => $t_icon_size,
		'font-size' => $t_icon_size,
	),
	' .uagb-faq-child__outer-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowsGapTablet'], $attr['rowsGapUnit'] ),
	),
	' .uagb-faq-item'              => $border_tablet,
	'.uagb-faq__outer-wrap'        => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
	),
);
$m_selectors = array(
	'.uagb-faq-icon-row .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestionMobile'], 'px' ),
	),
	' .uagb-faq-item'              => $border_mobile,
	'.uagb-faq-icon-row-reverse .uagb-faq-item .uagb-faq-icon-wrap' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['gapBtwIconQUestionMobile'], 'px' ),
	),
	' .uagb-faq-child__outer-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowsGapMobile'], $attr['rowsGapUnit'] ),
	),
	'.wp-block-uagb-faq .uagb-faq-item .uagb-faq-icon-wrap' => array_merge(
		array(
			'padding' => UAGB_Helper::get_css_value( $attr['iconBgSizeMobile'], $attr['iconBgSizeType'] ),
		),
		$icon_border_mobile
	),
	' .uagb-faq-questions-button'  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['vquestionPaddingMobile'], $attr['questionPaddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['questionBottomPaddingMobile'], $attr['questionPaddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['hquestionPaddingMobile'], $attr['questionPaddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['questionLeftPaddingMobile'], $attr['questionPaddingTypeMobile'] ),
	),
	' .uagb-faq-content'           => array(
		'padding-top'    => UAGB_Helper::get_css_value( $answer_top_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $answer_right_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $answer_left_padding_mobile, $attr['answerPaddingTypeMobile'] ),
	),
	' .uagb-faq-content span'      => array(
		'margin-top'    => UAGB_Helper::get_css_value( $answer_top_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $answer_bottom_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $answer_right_padding_mobile, $attr['answerPaddingTypeMobile'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $answer_left_padding_mobile, $attr['answerPaddingTypeMobile'] ),
	),
	' .uagb-icon svg'              => array(
		'width'     => $m_icon_size,
		'height'    => $m_icon_size,
		'font-size' => $m_icon_size,
	),
	' .uagb-icon-active svg'       => array(
		'width'     => $m_icon_size,
		'height'    => $m_icon_size,
		'font-size' => $m_icon_size,
	),
	'.uagb-faq__outer-wrap'        => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
	),
);

if ( 'accordion' === $attr['layout'] && true === $attr['inactiveOtherItems'] ) {

	$selectors[' .wp-block-uagb-faq-child.uagb-faq-child__outer-wrap .uagb-faq-content '] = array(
		'display' => 'none',
	);
}
if ( 'accordion' === $attr['layout'] && true === $attr['expandFirstItem'] ) {

	$selectors['.uagb-faq__wrap.uagb-buttons-layout-wrap > .uagb-faq-child__outer-wrap:first-child.uagb-faq-item.uagb-faq-item-active .uagb-faq-content ']  = array(
		'display' => 'block',
	);
	$selectors['.uagb-faq__wrap.uagb-buttons-layout-wrap > .uagb-faq-child__outer-wrap:first-child .uagb-faq-item.uagb-faq-item-active .uagb-faq-content '] = array(
		'display' => 'block',
	);
}
if ( true === $attr['enableSeparator'] ) {

	$selectors[' .uagb-faq-child__outer-wrap .uagb-faq-content '] =
	array(
		'border-style'        => 'solid',
		'border-top-color'    => $attr['overallBorderColor'],
		'border-top-width'    => UAGB_Helper::get_css_value( $attr['overallBorderTopWidth'], 'px' ),
		'border-right-width'  => '0px',
		'border-bottom-width' => '0px',
		'border-left-width'   => '0px',
	);

	$t_selectors[' .uagb-faq-child__outer-wrap .uagb-faq-content ']     =
	array(
		'border-style'        => 'solid',
		'border-top-color'    => $attr['overallBorderColor'],
		'border-top-width'    => UAGB_Helper::get_css_value( $attr['overallBorderTopWidthTablet'], 'px' ),
		'border-right-width'  => '0px',
		'border-bottom-width' => '0px',
		'border-left-width'   => '0px',
	);
	$m_selectors[' .uagb-faq-child__outer-wrap .uagb-faq-content ']     =
	array(
		'border-style'        => 'solid',
		'border-top-color'    => $attr['overallBorderColor'],
		'border-top-width'    => UAGB_Helper::get_css_value( $attr['overallBorderTopWidthMobile'], 'px' ),
		'border-right-width'  => '0px',
		'border-bottom-width' => '0px',
		'border-left-width'   => '0px',
	);
	$selectors[' .uagb-faq-child__outer-wrap .uagb-faq-content:hover '] = array(
		'border-top-color' => ! empty( $attr['overallBorderHColor'] ) ? $attr['overallBorderHColor'] : $attr['borderHoverColor'],
	);
}
if ( 'grid' === $attr['layout'] ) {

	$selectors['.uagb-faq-layout-grid.uagb-faq__wrap .uagb-faq-child__outer-wrap '] = array(
		'text-align' => $attr['align'],
	);

	$selectors['.uagb-faq-layout-grid .uagb-faq__wrap .uagb-faq-child__outer-wrap '] = array(
		'text-align' => $attr['align'],
	);

	$selectors['.uagb-faq-layout-grid .uagb-faq__wrap.uagb-buttons-layout-wrap ']   = array(
		'grid-template-columns' => 'repeat(' . $attr['columns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGap'], $attr['columnsGapUnit'] ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGap'], $attr['rowsGapUnit'] ),
		'display'               => 'grid',
	);
	$t_selectors['.uagb-faq-layout-grid .uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGapTablet'], $attr['columnsGapUnit'] ),
		'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGapTablet'], $attr['rowsGapUnit'] ),
	);
	$m_selectors['.uagb-faq-layout-grid .uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
		'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGapMobile'], $attr['columnsGapUnit'] ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGapMobile'], $attr['rowsGapUnit'] ),
	);

	$selectors['.uagb-faq-layout-grid.uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
		'grid-template-columns' => 'repeat(' . $attr['columns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGap'], $attr['columnsGapUnit'] ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGap'], $attr['rowsGapUnit'] ),
		'display'               => 'grid',
	);

	$t_selectors['.uagb-faq-layout-grid.uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
		'grid-template-columns' => 'repeat(' . $attr['tcolumns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGapTablet'], $attr['columnsGapUnit'] ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGapTablet'], $attr['rowsGapUnit'] ),
	);
	$m_selectors['.uagb-faq-layout-grid.uagb-faq__wrap.uagb-buttons-layout-wrap '] = array(
		'grid-template-columns' => 'repeat(' . $attr['mcolumns'] . ', 1fr)',
		'grid-column-gap'       => UAGB_Helper::get_css_value( $attr['columnsGapMobile'], $attr['columnsGapUnit'] ),
		'grid-row-gap'          => UAGB_Helper::get_css_value( $attr['rowsGapMobile'], $attr['rowsGapUnit'] ),
	);
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'question', ' .uagb-faq-questions-button .uagb-question', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'answer', ' .uagb-faq-item .uagb-faq-content', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][�O�c=c=Cultimate-addons-for-gutenberg/includes/blocks/testimonial/error_lognu�[���[27-Oct-2025 03:54:19 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php on line 10
[27-Oct-2025 04:56:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php on line 16
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[27-Oct-2025 05:30:28 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[27-Oct-2025 05:30:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 14
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:52:53 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:52:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 14
[29-Oct-2025 13:52:55 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php on line 10
[29-Oct-2025 13:54:27 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php on line 10
[29-Oct-2025 13:57:00 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php on line 16
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:57:39 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 13:57:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 14
[29-Oct-2025 14:03:38 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php on line 10
[29-Oct-2025 14:05:14 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php on line 16
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:10:22 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:10:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 14
[29-Oct-2025 14:16:00 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.php on line 10
[29-Oct-2025 14:20:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/block.php on line 16
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 11
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:24:33 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 12
[29-Oct-2025 14:24:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.php on line 14
PK�][7e����Hultimate-addons-for-gutenberg/includes/blocks/testimonial/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute(
	'overall'
);

return array_merge(
	array(
		'classMigrate'               => false,
		'headingAlign'               => 'center',
		'headingAlignTablet'         => 'center',
		'headingAlignMobile'         => 'center',
		'companyColor'               => '#888888',
		'descColor'                  => '#333',
		'authorColor'                => '#333',
		'nameFontSizeType'           => 'px',
		'nameFontSize'               => 20,
		'nameFontSizeTablet'         => '',
		'nameFontSizeMobile'         => '',
		'nameFontFamily'             => '',
		'nameFontWeight'             => 'Default',
		'nameFontStyle'              => '',
		'nameLineHeightType'         => 'em',
		'nameLineHeight'             => 2,
		'nameLineHeightTablet'       => '',
		'nameLineHeightMobile'       => '',
		'nameLoadGoogleFonts'        => false,
		'companyFontSizeType'        => 'px',
		'companyFontSize'            => '',
		'companyFontSizeTablet'      => '',
		'companyFontSizeMobile'      => '',
		'companyFontFamily'          => '',
		'companyFontWeight'          => '',
		'companyFontStyle'           => 'normal',
		'companyLineHeightType'      => 'em',
		'companyLineHeight'          => '',
		'companyLineHeightTablet'    => '',
		'companyLineHeightMobile'    => '',
		'companyLoadGoogleFonts'     => false,
		'descFontSizeType'           => 'px',
		'descFontSize'               => 18,
		'descFontSizeTablet'         => '',
		'descFontSizeMobile'         => '',
		'descFontFamily'             => '',
		'descFontWeight'             => '400',
		'descFontStyle'              => '',
		'descLineHeightType'         => 'em',
		'descLineHeight'             => 1.6,
		'descLineHeightTablet'       => '',
		'descLineHeightMobile'       => '',
		'descLoadGoogleFonts'        => false,
		'descSpace'                  => 20,
		'descSpaceTablet'            => '',
		'descSpaceMobile'            => '',
		'block_id'                   => '',
		'nameSpace'                  => 5,
		'nameSpaceMobile'            => '',
		'nameSpaceTablet'            => '',
		'imgVrPadding'               => 10,
		'imgHrPadding'               => 10,
		'imageWidth'                 => 60,
		'imageWidthTablet'           => '',
		'imageWidthMobile'           => '',
		'rowGap'                     => 10,
		'rowGapTablet'               => 10,
		'rowGapMobile'               => 10,
		'columnGap'                  => 10,
		'columnGapTablet'            => 10,
		'columnGapMobile'            => 10,
		'contentPadding'             => 5,
		'backgroundImage'            => '',
		'backgroundPosition'         => 'center-center',
		'backgroundSize'             => 'cover',
		'backgroundRepeat'           => 'no-repeat',
		'backgroundImageColor'       => '',
		'arrowColor'                 => '#333',
		'arrowDots'                  => 'arrowDots',
		'arrowBorderSize'            => 0,
		'arrowBorderRadius'          => 0,
		'columns'                    => 1,
		'autoplaySpeed'              => 2000,
		'autoplay'                   => true,
		'infiniteLoop'               => true,
		'pauseOnHover'               => true,
		'transitionSpeed'            => 500,
		'tcolumns'                   => 1,
		'mcolumns'                   => 1,
		'arrowSize'                  => 20,
		'test_item_count'            => 3,
		'imageWidthType'             => 'px',
		'arrowSizeType'              => 'px',
		'rowGapType'                 => 'px',
		'columnGapType'              => 'px',
		'descSpaceType'              => 'px',
		'nameSpaceType'              => 'px',
		'overlayType'                => 'color',
		'backgroundAttachment'       => '',
		'selectGradient'             => 'basic',
		'gradientValue'              => 'linear-gradient(90deg, rgb(6, 147, 227, 0.5) 0%, rgb(155, 81, 224, 0.5) 100%)',
		'descTransform'              => '',
		'descDecoration'             => '',
		'nameTransform'              => '',
		'nameDecoration'             => '',
		'companyTransform'           => '',
		'companyDecoration'          => '',
		'paddingUnit'                => 'px',
		'mobilePaddingUnit'          => 'px',
		'tabletPaddingUnit'          => 'px',
		'paddingTopTablet'           => '',
		'paddingRightTablet'         => '',
		'paddingBottomTablet'        => '',
		'paddingLeftTablet'          => '',
		'paddingTopMobile'           => '',
		'paddingRightMobile'         => '',
		'paddingBottomMobile'        => '',
		'paddingLeftMobile'          => '',
		'imgpaddingTopTablet'        => '',
		'imgpaddingRightTablet'      => '',
		'imgpaddingBottomTablet'     => '',
		'imgpaddingLeftTablet'       => '',
		'imgpaddingTopMobile'        => '',
		'imgpaddingRightMobile'      => '',
		'imgpaddingBottomMobile'     => '',
		'imgpaddingLeftMobile'       => '',
		'imgpaddingUnit'             => 'px',
		'imgmobilePaddingUnit'       => 'px',
		'imgtabletPaddingUnit'       => 'px',
		'backgroundType'             => 'none',
		'backgroundColor'            => '#eeeeee',
		'backgroundHoverColor'       => '',
		'gradientColor1'             => '#06558a',
		'gradientColor2'             => '#0063a1',
		'gradientType'               => 'linear',
		'gradientLocation1'          => 0,
		'gradientLocationTablet1'    => '',
		'gradientLocationMobile1'    => '',
		'gradientLocation2'          => 100,
		'gradientLocationTablet2'    => '',
		'gradientLocationMobile2'    => '',
		'gradientAngle'              => 0,
		'gradientAngleTablet'        => '',
		'gradientAngleMobile'        => '',
		'gradientPosition'           => 'center center',
		'equalHeight'                => false,
		'vAlignContent'              => 'flex-start',
		'nameLetterSpacing'          => '',
		'nameLetterSpacingTablet'    => '',
		'nameLetterSpacingMobile'    => '',
		'nameLetterSpacingType'      => 'px',
		'descLetterSpacing'          => '',
		'descLetterSpacingTablet'    => '',
		'descLetterSpacingMobile'    => '',
		'descLetterSpacingType'      => 'px',
		'companyLetterSpacing'       => '',
		'companyLetterSpacingTablet' => '',
		'companyLetterSpacingMobile' => '',
		'companyLetterSpacingType'   => 'px',
		'borderStyle'                => 'none',
		'borderWidth'                => 1,
		'borderRadius'               => '',
		'borderColor'                => '',
	),
	$border_attribute
);
PK�][3^�rddCultimate-addons-for-gutenberg/includes/blocks/testimonial/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/testimonial';
$block_data = array(
	'doc'                 => 'testimonial',
	'slug'                => '',
	'admin_categories'    => array( 'social' ),
	'link'                => 'testimonials',
	'title'               => __( 'Testimonials', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Display customer testimonials with customizable layouts.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'testimonial' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-testimonial-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'testimonial' ),
			'dep'  => array(),
			'type' => 'js',
		),
		'uagb-imagesloaded'   => array(
			'type' => 'js',
		),
		'uagb-slick-js'       => array(
			'type' => 'js',
		),
		'uagb-slick-css'      => array(
			'type' => 'css',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'testimonial',
	),
);
PK�][��r�i=i=Jultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 * @var int $id
 */

// Adds Fonts.
UAGB_Block_JS::blocks_testimonial_gfont( $attr );

$row_gap_tablet_fallback    = is_numeric( $attr['rowGapTablet'] ) ? $attr['rowGapTablet'] : $attr['rowGap'];
$row_gap_mobile_fallback    = is_numeric( $attr['rowGapMobile'] ) ? $attr['rowGapMobile'] : $row_gap_tablet_fallback;
$column_gap_tablet_fallback = is_numeric( $attr['columnGapTablet'] ) ? $attr['columnGapTablet'] : $attr['columnGap'];
$column_gap_mobile_fallback = is_numeric( $attr['columnGapMobile'] ) ? $attr['columnGapMobile'] : $column_gap_tablet_fallback;

$img_align = 'center';
if ( 'left' === $attr['headingAlign'] ) {
	$img_align = 'flex-start';
} elseif ( 'right' === $attr['headingAlign'] ) {
	$img_align = 'flex-end';
}

$overall_border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall' );
$overall_border        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$overall_border,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$overall_border_Tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'tablet' );
$overall_border_Mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'mobile' );

$position = str_replace( '-', ' ', $attr['backgroundPosition'] );

$t_selectors = array();
$m_selectors = array();

$paddingTop    = isset( $attr['paddingTop'] ) ? $attr['paddingTop'] : $attr['contentPadding'];
$paddingBottom = isset( $attr['paddingBottom'] ) ? $attr['paddingBottom'] : $attr['contentPadding'];
$paddingLeft   = isset( $attr['paddingLeft'] ) ? $attr['paddingLeft'] : $attr['contentPadding'];
$paddingRight  = isset( $attr['paddingRight'] ) ? $attr['paddingRight'] : $attr['contentPadding'];

$imgpaddingTop    = isset( $attr['imgpaddingTop'] ) ? $attr['imgpaddingTop'] : $attr['imgVrPadding'];
$imgpaddingRight  = isset( $attr['imgpaddingRight'] ) ? $attr['imgpaddingRight'] : $attr['imgHrPadding'];
$imgpaddingBottom = isset( $attr['imgpaddingBottom'] ) ? $attr['imgpaddingBottom'] : $attr['imgVrPadding'];
$imgpaddingLeft   = isset( $attr['imgpaddingLeft'] ) ? $attr['imgpaddingLeft'] : $attr['imgHrPadding'];

$selectors = array(
	' .uagb-testimonial__wrap'                         => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGap'], $attr['rowGapType'] ),
		'padding-left'  => UAGB_Helper::get_css_value( ( ( $attr['columnGap'] ) / 2 ), $attr['columnGapType'] ),
		'padding-right' => UAGB_Helper::get_css_value( ( ( $attr['columnGap'] ) / 2 ), $attr['columnGapType'] ),
	),
	' .uagb-tm__content'                               => array(
		'text-align'     => $attr['headingAlign'],
		'padding-top'    => UAGB_Helper::get_css_value( $paddingTop, $attr['paddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $paddingBottom, $attr['paddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $paddingLeft, $attr['paddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $paddingRight, $attr['paddingUnit'] ),
		'align-content'  => $attr['vAlignContent'],
	),
	' .uagb-testimonial__wrap .uagb-tm__image-content' => array(
		'text-align'     => $attr['headingAlign'],
		'padding-top'    => UAGB_Helper::get_css_value( $imgpaddingTop, $attr['imgpaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $imgpaddingBottom, $attr['imgpaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $imgpaddingLeft, $attr['imgpaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $imgpaddingRight, $attr['imgpaddingUnit'] ),
	),
	' .uagb-tm__image img'                             => array(
		'width'     => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthType'] ),
		'max-width' => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthType'] ),
	),

	' .uagb-tm__author-name'                           => array(
		'color'         => $attr['authorColor'],
		'margin-bottom' => $attr['nameSpace'] . $attr['nameSpaceType'],
	),
	' .uagb-tm__company'                               => array(
		'color' => $attr['companyColor'],
	),
	' .uagb-tm__desc'                                  => array(
		'color'         => $attr['descColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpace'], $attr['descSpaceType'] ),
	),
	' .uagb-testimonial__wrap .uagb-tm__content'       => $overall_border,
	' .uagb-testimonial__wrap .uagb-tm__content:hover' => array(
		'border-color' => $attr['overallBorderHColor'],
	),
	' ul.slick-dots li button:before'                  => array(
		'color' => $attr['arrowColor'],
	),
	' ul.slick-dots li.slick-active button:before'     => array(
		'color' => $attr['arrowColor'],
	),
	' .uagb-tm__image-position-top .uagb-tm__image-content' => array(
		'justify-content' => $img_align,
	),
);

$gradient        = '';
$gradient_tablet = '';
$gradient_mobile = '';

$gradientColor1          = isset( $attr['gradientColor1'] ) ? $attr['gradientColor1'] : '';
$gradientColor2          = isset( $attr['gradientColor2'] ) ? $attr['gradientColor2'] : '';
$gradientType            = isset( $attr['gradientType'] ) ? $attr['gradientType'] : '';
$gradientLocation1       = isset( $attr['gradientLocation1'] ) ? $attr['gradientLocation1'] : '';
$gradientLocation2       = isset( $attr['gradientLocation2'] ) ? $attr['gradientLocation2'] : '';
$gradientAngle           = isset( $attr['gradientAngle'] ) ? $attr['gradientAngle'] : '';
$gradientLocationTablet1 = is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $gradientLocation1;
$gradientLocationTablet2 = is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $gradientLocation2;
$gradientAngleTablet     = is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $gradientAngle;
$gradientLocationMobile1 = is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $gradientLocationTablet1;
$gradientLocationMobile2 = is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $gradientLocationTablet2;
$gradientAngleMobile     = is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $gradientAngleTablet;

if ( 'basic' === $attr['selectGradient'] && $attr['gradientValue'] ) {
	$gradient = $attr['gradientValue'];
} elseif ( 'linear' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
	$gradient        = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	$gradient_tablet = 'linear-gradient(' . $gradientAngleTablet . 'deg, ' . $gradientColor1 . ' ' . $gradientLocationTablet1 . '%, ' . $gradientColor2 . ' ' . $gradientLocationTablet2 . '%)';
	$gradient_mobile = 'linear-gradient(' . $gradientAngleMobile . 'deg, ' . $gradientColor1 . ' ' . $gradientLocationMobile1 . '%, ' . $gradientColor2 . ' ' . $gradientLocationMobile2 . '%)';
} elseif ( 'radial' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
	$gradient        = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	$gradient_tablet = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocationTablet1 . '%, ' . $gradientColor2 . ' ' . $gradientLocationTablet2 . '%)';
	$gradient_mobile = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocationMobile1 . '%, ' . $gradientColor2 . ' ' . $gradientLocationMobile2 . '%)';
}

if ( 'gradient' === $attr['backgroundType'] ) {
	$selectors[' .uagb-tm__content'] = array(
		'background-color' => 'transparent',
		'background-image' => $gradient,
	);
}
if ( 'image' === $attr['backgroundType'] ) {
	if ( 'color' === $attr['overlayType'] ) {
		$selectors[' .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay'] = array(
			'background-color' => $attr['backgroundImageColor'],
			'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] ) ? ( ( 100 - $attr['backgroundOpacity'] ) / 100 ) : '',
		);
	} elseif ( 'gradient' === $attr['overlayType'] ) {
			$selectors[' .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay']['background-image']   = $gradient;
			$t_selectors[' .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay']['background-image'] = $gradient_tablet;
			$m_selectors[' .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__overlay']['background-image'] = $gradient_mobile;
	}
} else {
	$selectors['  .uagb-testimonial__wrap.uagb-tm__bg-type-color .uagb-tm__content'] = array(
		'background-color' => $attr['backgroundColor'],
	);
}

if ( true === $attr['equalHeight'] ) {
	$selectors['  .uagb-tm__content'] = array(
		'height' => '-webkit-fill-available',
	);
}

$selectors['  .uagb-testimonial__wrap.uagb-tm__bg-type-image .uagb-tm__content'] = array(
	'background-image'    => ( isset( $attr['backgroundImage']['url'] ) && '' !== $attr['backgroundImage']['url'] ) ? 'url("' . $attr['backgroundImage']['url'] . '")' : null,
	'background-position' => $position,
	'background-repeat'   => $attr['backgroundRepeat'],
	'background-size'     => $attr['backgroundSize'],
);
if ( 'dots' === $attr['arrowDots'] ) {
	$selectors['.uagb-slick-carousel'] = array(
		'padding' => '0 0 35px 0',
	);
}

if ( '1' === $attr['test_item_count'] || $attr['test_item_count'] === $attr['columns'] ) {
	$selectors['.uagb-slick-carousel'] = array(
		'padding' => 0,
	);
}

$m_selectors = array(
	' .uagb-testimonial__wrap'                          => array(
		'padding-left'  => UAGB_Helper::get_css_value( ( ( $column_gap_mobile_fallback ) / 2 ), $attr['columnGapType'] ),
		'padding-right' => UAGB_Helper::get_css_value( ( ( $column_gap_mobile_fallback ) / 2 ), $attr['columnGapType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $row_gap_mobile_fallback, $attr['rowGapType'] ),
	),
	' .uagb-tm__image img'                              => array(
		'width'     => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthType'] ),
		'max-width' => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthType'] ),
	),
	' .uagb-tm__author-name'                            => array(
		'margin-bottom' => $attr['nameSpaceMobile'] . $attr['nameSpaceType'],
	),

	' .uagb-testimonial__wrap .uagb-tm__content'        => $overall_border_Mobile,
	' .uagb-tm__desc'                                   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceMobile'], $attr['descSpaceType'] ),
		'margin-left'   => ( ( 1 === $attr['test_item_count'] ) || ( 'dots' === $attr['arrowDots'] ) || ( 1 !== $attr['columns'] ) ) ? 'auto' : '20px',
		'margin-right'  => ( ( 1 === $attr['test_item_count'] ) || ( 'dots' === $attr['arrowDots'] ) || ( 1 !== $attr['columns'] ) ) ? 'auto' : '20px',
	),
	' .uagb-tm__content'                                => array(
		'text-align'     => $attr['headingAlignMobile'],
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingTopMobile'], $attr['mobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBottomMobile'], $attr['mobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingLeftMobile'], $attr['mobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingRightMobile'], $attr['mobilePaddingUnit'] ),
		'align-content'  => $attr['vAlignContent'],
	),
	'  .uagb-testimonial__wrap .uagb-tm__image-content' => array(
		'text-align'     => $attr['headingAlignMobile'],
		'padding-top'    => UAGB_Helper::get_css_value( $attr['imgpaddingTopMobile'], $attr['imgmobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['imgpaddingBottomMobile'], $attr['imgmobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['imgpaddingLeftMobile'], $attr['imgmobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['imgpaddingRightMobile'], $attr['imgmobilePaddingUnit'] ),
	),
);

if ( 'gradient' === $attr['backgroundType'] ) {
	$m_selectors[' .uagb-tm__content'] = array(
		'background-color' => 'transparent',
		'background-image' => $gradient_mobile,
	);
}

$t_selectors = array(
	' .uagb-testimonial__wrap'                          => array(
		'padding-left'  => UAGB_Helper::get_css_value( ( ( $column_gap_tablet_fallback ) / 2 ), $attr['columnGapType'] ),
		'padding-right' => UAGB_Helper::get_css_value( ( ( $column_gap_tablet_fallback ) / 2 ), $attr['columnGapType'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $row_gap_tablet_fallback, $attr['rowGapType'] ),
	),
	' .uagb-tm__image img'                              => array(
		'width'     => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthType'] ),
		'max-width' => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthType'] ),
	),
	' .uagb-tm__author-name'                            => array(
		'margin-bottom' => $attr['nameSpaceTablet'] . $attr['nameSpaceType'],
	),
	' .uagb-tm__desc'                                   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceTablet'], $attr['descSpaceType'] ),
	),

	' .uagb-testimonial__wrap .uagb-tm__content'        => $overall_border_Tablet,
	' .uagb-tm__content'                                => array(
		'text-align'     => $attr['headingAlignTablet'],
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingTopTablet'], $attr['tabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBottomTablet'], $attr['tabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingLeftTablet'], $attr['tabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingRightTablet'], $attr['tabletPaddingUnit'] ),
		'align-content'  => $attr['vAlignContent'],
	),
	'  .uagb-testimonial__wrap .uagb-tm__image-content' => array(
		'text-align'     => $attr['headingAlignTablet'],
		'padding-top'    => UAGB_Helper::get_css_value( $attr['imgpaddingTopTablet'], $attr['imgtabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['imgpaddingRightTablet'], $attr['imgtabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['imgpaddingBottomTablet'], $attr['imgtabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['imgpaddingLeftTablet'], $attr['imgtabletPaddingUnit'] ),
	),
);

if ( 'gradient' === $attr['backgroundType'] ) {
	$t_selectors[' .uagb-tm__content'] = array(
		'background-color' => 'transparent',
		'background-image' => $gradient_tablet,
	);
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'name', '  .uagb-tm__author-name', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'company', ' .uagb-tm__company', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-tm__desc', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-testimonial-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�֠���Iultimate-addons-for-gutenberg/includes/blocks/testimonial/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var string $id
 * @package uagb
 */

$dots   = ( 'dots' === $attr['arrowDots'] || 'arrowDots' === $attr['arrowDots'] ) ? true : false;
$arrows = ( 'arrows' === $attr['arrowDots'] || 'arrowDots' === $attr['arrowDots'] ) ? true : false;

$slick_options = apply_filters(
	'uagb_testimonials_slick_options',
	array(
		'slidesToShow'   => is_int( $attr['columns'] ) ? $attr['columns'] : (int) $attr['columns'],
		'slidesToScroll' => 1,
		'autoplaySpeed'  => esc_html( $attr['autoplaySpeed'] ),
		'autoplay'       => is_bool( $attr['autoplay'] ) ? $attr['autoplay'] : true,
		'infinite'       => is_bool( $attr['infiniteLoop'] ) ? $attr['infiniteLoop'] : true,
		'pauseOnHover'   => is_bool( $attr['pauseOnHover'] ) ? $attr['pauseOnHover'] : true,
		'speed'          => esc_html( $attr['transitionSpeed'] ),
		'arrows'         => $arrows,
		'dots'           => $dots,
		'rtl'            => is_rtl(),
		'prevArrow'      => "<button type='button' data-role='none' class='slick-prev' aria-label='Previous' tabindex='0' role='button' style='border-color: " . esc_attr( $attr['arrowColor'] ) . ';border-radius:' . esc_attr( $attr['arrowBorderRadius'] ) . 'px;border-width:' . esc_attr( $attr['arrowBorderSize'] ) . "px'><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 256 512' height ='" . esc_attr( $attr['arrowSize'] ) . "' width = '" . esc_attr( $attr['arrowSize'] ) . "' fill ='" . esc_attr( $attr['arrowColor'] ) . "'  ><path d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'></path></svg></button>",
		'nextArrow'      => "<button type='button' data-role='none' class='slick-next' aria-label='Next' tabindex='0' role='button' style='border-color: " . esc_attr( $attr['arrowColor'] ) . ';border-radius:' . esc_attr( $attr['arrowBorderRadius'] ) . 'px;border-width:' . esc_attr( $attr['arrowBorderSize'] ) . "px'><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 256 512' height ='" . esc_attr( $attr['arrowSize'] ) . "' width = '" . esc_attr( $attr['arrowSize'] ) . "' fill ='" . esc_attr( $attr['arrowColor'] ) . "' ><path d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'></path></svg></button>",
		'responsive'     => array(
			array(
				'breakpoint' => 1024,
				'settings'   => array(
					'slidesToShow'   => is_int( $attr['tcolumns'] ) ? $attr['tcolumns'] : (int) $attr['tcolumns'],
					'slidesToScroll' => 1,
				),
			),
			array(
				'breakpoint' => 767,
				'settings'   => array(
					'slidesToShow'   => is_int( $attr['mcolumns'] ) ? $attr['mcolumns'] : (int) $attr['mcolumns'],
					'slidesToScroll' => 1,
				),
			),
		),
	),
	$id
);
$equal_height  = isset( $attr['equalHeight'] ) ? $attr['equalHeight'] : '';

$base_selector = ( isset( $attr['classMigrate'] ) && $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-testimonial-';
$selector      = $base_selector . $id;
ob_start();
?>
jQuery( document ).ready( function() {
	if( jQuery( '<?php echo esc_html( $selector ); ?>' ).length > 0 ){
	jQuery( '<?php echo esc_html( $selector ); ?>' ).find( ".is-carousel" ).slick( <?php echo wp_json_encode( $slick_options ); ?> );
	}
	var $scope = jQuery('.uagb-block-<?php echo esc_html( $id ); ?>');
	var enableEqualHeight = ( '<?php echo esc_html( $equal_height ); ?>' );
			if( enableEqualHeight ){
				$scope.imagesLoaded( function() {
					UAGBTestimonialCarousel._setHeight( $scope );
				});

				$scope.on( "afterChange", function() {
					UAGBTestimonialCarousel._setHeight( $scope );
				} );
			}
} );
<?php
return ob_get_clean();
?>
PK�][��68��<ultimate-addons-for-gutenberg/includes/blocks/icon/error_lognu�[���[27-Oct-2025 14:30:43 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/attributes.php on line 10
[27-Oct-2025 14:30:53 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/block.php on line 16
[27-Oct-2025 14:35:17 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/frontend.js.php on line 17
[27-Oct-2025 14:35:17 UTC] PHP Fatal error:  Uncaught Error: Class "Spectra_Icon" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/frontend.js.php:20
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon/frontend.js.php on line 20
PK�][fE�BAultimate-addons-for-gutenberg/includes/blocks/icon/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$icon_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'icon' );

return array_merge(
	$icon_border_attribute,
	array(
		// Size.
		'icon'                             => '',
		'iconSize'                         => 40,
		'iconSizeTablet'                   => '',
		'iconSizeMobile'                   => '',
		'iconSizeUnit'                     => 'px',
		// Alignment.
		'align'                            => 'center',
		'alignTablet'                      => '',
		'alignMobile'                      => '',
		// Rotation.
		'rotation'                         => 0,
		'rotationUnit'                     => 'deg',
		// StyleSettings.
		'iconView'                         => 'none',
		'iconBorderWidth'                  => 3,
		// Color.
		'iconColor'                        => '#333',
		'iconBorderColor'                  => '',
		'iconBackgroundColorType'          => 'classic',
		'iconBackgroundColor'              => '',
		'iconBackgroundGradientColor'      => 'linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)',
		'iconHoverColor'                   => '',
		'iconHoverBorderColor'             => '',
		'iconHoverBackgroundColorType'     => 'classic',
		'iconHoverBackgroundColor'         => '',
		'iconHoverBackgroundGradientColor' => 'linear-gradient(90deg, rgb(155, 81, 224) 0%, rgb(6, 147, 227) 100%)',
		// Padding.
		'iconTopPadding'                   => 5,
		'iconRightPadding'                 => 5,
		'iconBottomPadding'                => 5,
		'iconLeftPadding'                  => 5,
		'iconTopTabletPadding'             => '',
		'iconRightTabletPadding'           => '',
		'iconBottomTabletPadding'          => '',
		'iconLeftTabletPadding'            => '',
		'iconTopMobilePadding'             => '',
		'iconRightMobilePadding'           => '',
		'iconBottomMobilePadding'          => '',
		'iconLeftMobilePadding'            => '',
		'iconPaddingUnit'                  => 'px',
		'iconMobilePaddingUnit'            => 'px',
		'iconTabletPaddingUnit'            => 'px',
		// Margin.
		'iconTopMargin'                    => '',
		'iconRightMargin'                  => '',
		'iconBottomMargin'                 => '',
		'iconLeftMargin'                   => '',
		'iconTopTabletMargin'              => '',
		'iconRightTabletMargin'            => '',
		'iconBottomTabletMargin'           => '',
		'iconLeftTabletMargin'             => '',
		'iconTopMobileMargin'              => '',
		'iconRightMobileMargin'            => '',
		'iconBottomMobileMargin'           => '',
		'iconLeftMobileMargin'             => '',
		'iconMarginUnit'                   => 'px',
		'iconMobileMarginUnit'             => 'px',
		'iconTabletMarginUnit'             => 'px',
		// Shadow.
		'iconShadowColor'                  => '#00000070',
		'iconShadowHOffset'                => 0,
		'iconShadowVOffset'                => 0,
		'iconShadowBlur'                   => 0,
		// Box Shadow.
		'useSeparateBoxShadows'            => true,
		'iconBoxShadowColor'               => '#00000070',
		'iconBoxShadowHOffset'             => 0,
		'iconBoxShadowVOffset'             => 0,
		'iconBoxShadowBlur'                => '',
		'iconBoxShadowSpread'              => '',
		'iconBoxShadowPosition'            => '',
		'iconBoxShadowColorHover'          => '',
		'iconBoxShadowHOffsetHover'        => 0,
		'iconBoxShadowVOffsetHover'        => 0,
		'iconBoxShadowBlurHover'           => '',
		'iconBoxShadowSpreadHover'         => '',
		'iconBoxShadowPositionHover'       => '',
		// Border.
		'iconBorderStyle'                  => 'default',
		// For Global Block Styles.
		'globalBlockStyleName'             => '',
		'globalBlockStyleId'               => '',
		'iconAccessabilityMode'            => '',
		'iconAccessabilityDesc'            => '',
	)
);
PK�][������<ultimate-addons-for-gutenberg/includes/blocks/icon/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.4.0
 *
 * @package uagb
 */

$block_slug = 'uagb/icon';
$block_data = array(
	'doc'              => 'icon',
	'slug'             => '',
	'admin_categories' => array( 'core' ),
	'link'             => 'icon',
	'title'            => __( 'Icon', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add stunning customizable icons to your website.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'icon' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'icon',
	),
);
PK�][�v9F!F!Cultimate-addons-for-gutenberg/includes/blocks/icon/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS.
 *
 * @since 2.4.0
 * @var mixed[] $attr
 *
 * @package uagb
 */

$icon_width = UAGB_Helper::get_css_value(
	$attr['iconSize'],
	is_string( $attr['iconSizeUnit'] ) ? $attr['iconSizeUnit'] : ''
);

$transformation = UAGB_Helper::get_css_value(
	$attr['rotation'],
	is_string( $attr['rotationUnit'] ) ? $attr['rotationUnit'] : ''
);

$background       = 'classic' === $attr['iconBackgroundColorType'] ? $attr['iconBackgroundColor'] : $attr['iconBackgroundGradientColor'];
$hover_background = 'classic' === $attr['iconHoverBackgroundColorType'] ? $attr['iconHoverBackgroundColor'] : $attr['iconHoverBackgroundGradientColor'];

$drop_shadow_properties = array(
	'horizontal' => $attr['iconShadowHOffset'],
	'vertical'   => $attr['iconShadowVOffset'],
	'blur'       => $attr['iconShadowBlur'],
	'color'      => $attr['iconShadowColor'],
);
$drop_shadow            = UAGB_Block_Helper::generate_shadow_css( $drop_shadow_properties );

$box_shadow_properties = array(
	'horizontal' => $attr['iconBoxShadowHOffset'],
	'vertical'   => $attr['iconBoxShadowVOffset'],
	'blur'       => $attr['iconBoxShadowBlur'],
	'spread'     => $attr['iconBoxShadowSpread'],
	'color'      => $attr['iconBoxShadowColor'],
	'position'   => $attr['iconBoxShadowPosition'],
);

$box_shadow_hover_properties = array(
	'horizontal' => $attr['iconBoxShadowHOffsetHover'],
	'vertical'   => $attr['iconBoxShadowVOffsetHover'],
	'blur'       => $attr['iconBoxShadowBlurHover'],
	'spread'     => $attr['iconBoxShadowSpreadHover'],
	'color'      => $attr['iconBoxShadowColorHover'],
	'position'   => $attr['iconBoxShadowPositionHover'],
	'alt_color'  => $attr['iconBoxShadowColor'],
);

$box_shadow           = UAGB_Block_Helper::generate_shadow_css( $box_shadow_properties );
$box_shadow_hover_css = UAGB_Block_Helper::generate_shadow_css( $box_shadow_hover_properties );

$t_selectors = array();
$m_selectors = array();

$selectors['.uagb-icon-wrapper']                                     = array(
	'text-align' => $attr['align'],
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper a']                 = array(
	'display' => 'contents',
);
$selectors['.uagb-icon-wrapper svg']                                 = array(
	'width'      => $icon_width,
	'height'     => $icon_width,
	'transform'  => "rotate($transformation)",
	'box-sizing' => 'content-box',
	'fill'       => $attr['iconColor'],
	'filter'     => $drop_shadow ? "drop-shadow( $drop_shadow )" : '',
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:hover svg']         = array(
	'fill' => $attr['iconHoverColor'],
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:focus-visible svg'] = array(
	'fill' => $attr['iconHoverColor'],
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper']                   = array_merge(
	array(
		'display'        => 'inline-flex',
		'background'     => $background,
		// padding.
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopPadding'], $attr['iconPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightPadding'], $attr['iconPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomPadding'], $attr['iconPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftPadding'], $attr['iconPaddingUnit'] ),
		// border.
		'border-style'   => $attr['iconBorderStyle'],
		'border-color'   => $attr['iconBorderColor'],
		'box-shadow'     => $box_shadow,
	),
	UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon' )
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:hover']             = array(
	'border-color' => $attr['iconBorderHColor'],
	'background'   => $hover_background,
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:focus-visible']     = array(
	'border-color' => $attr['iconBorderHColor'],
	'background'   => $hover_background,
);
$selectors['.uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper'] = array(
	// margin.
	'margin-top'    => UAGB_Helper::get_css_value( $attr['iconTopMargin'], $attr['iconMarginUnit'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['iconRightMargin'], $attr['iconMarginUnit'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomMargin'], $attr['iconMarginUnit'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['iconLeftMargin'], $attr['iconMarginUnit'] ),
);
$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:hover']                                  = array(
	'border-color' => $attr['iconBorderHColor'],
	'background'   => $hover_background,
);

// If using separate box shadow hover settings, then generate CSS for it.
if ( $attr['useSeparateBoxShadows'] ) {
	$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:hover']         = array(
		'box-shadow'   => $box_shadow_hover_css,
		'border-color' => $attr['iconBorderHColor'],
		'background'   => $hover_background,
	);
	$selectors['.uagb-icon-wrapper .uagb-svg-wrapper:focus-visible'] = array(
		'box-shadow'   => $box_shadow_hover_css,
		'border-color' => $attr['iconBorderHColor'],
		'background'   => $hover_background,
	);

};

// Generates css for tablet devices.
$t_icon_width                                        = UAGB_Helper::get_css_value( $attr['iconSizeTablet'], $attr['iconSizeUnit'] );
$t_selectors['.uagb-icon-wrapper']                   = array(
	'text-align' => $attr['alignTablet'],
);
$t_selectors['.uagb-icon-wrapper svg']               = array(
	'width'  => $t_icon_width,
	'height' => $t_icon_width,
);
$t_selectors['.uagb-icon-wrapper .uagb-svg-wrapper'] = array_merge(
	array(
		'display'        => 'inline-flex',
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopTabletPadding'], $attr['iconTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightTabletPadding'], $attr['iconTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomTabletPadding'], $attr['iconTabletPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftTabletPadding'], $attr['iconTabletPaddingUnit'] ),
	),
	UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon', 'tablet' )
);
$t_selectors['.uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper'] = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['iconTopTabletMargin'], $attr['iconTabletMarginUnit'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['iconRightTabletMargin'], $attr['iconTabletMarginUnit'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomTabletMargin'], $attr['iconTabletMarginUnit'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['iconLeftTabletMargin'], $attr['iconTabletMarginUnit'] ),
);
// Generates css for mobile devices.
$m_icon_width                                        = UAGB_Helper::get_css_value( $attr['iconSizeMobile'], $attr['iconSizeUnit'] );
$m_selectors['.uagb-icon-wrapper']                   = array(
	'text-align' => $attr['alignMobile'],
);
$m_selectors['.uagb-icon-wrapper svg']               = array(
	'width'  => $m_icon_width,
	'height' => $m_icon_width,
);
$m_selectors['.uagb-icon-wrapper .uagb-svg-wrapper'] = array_merge(
	array(
		'display'        => 'inline-flex',
		'padding-top'    => UAGB_Helper::get_css_value( $attr['iconTopMobilePadding'], $attr['iconMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['iconRightMobilePadding'], $attr['iconMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomMobilePadding'], $attr['iconMobilePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['iconLeftMobilePadding'], $attr['iconMobilePaddingUnit'] ),
	),
	UAGB_Block_Helper::uag_generate_border_css( $attr, 'icon', 'mobile' )
);
$m_selectors['.uagb-icon-wrapper.wp-block-uagb-icon--has-margin .uagb-icon-margin-wrapper'] = array(
	'margin-top'    => UAGB_Helper::get_css_value( $attr['iconTopMobileMargin'], $attr['iconMobileMarginUnit'] ),
	'margin-right'  => UAGB_Helper::get_css_value( $attr['iconRightMobileMargin'], $attr['iconMobileMarginUnit'] ),
	'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconBottomMobileMargin'], $attr['iconMobileMarginUnit'] ),
	'margin-left'   => UAGB_Helper::get_css_value( $attr['iconLeftMobileMargin'], $attr['iconMobileMarginUnit'] ),
);
$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	' .uagb-block-' . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][�g8addBultimate-addons-for-gutenberg/includes/blocks/icon/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.15.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var string $id
 */

$block_name = 'icon';
$selector   = '.uagb-block-' . $id;
$js         = '';

$js .= Spectra_Icon::render_icon_click( $id );

return $js;
PK�][te
"��Cultimate-addons-for-gutenberg/includes/blocks/forms-radio/error_lognu�[���[27-Oct-2025 04:37:55 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-radio/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-radio/block.php on line 14
PK�][���C��Cultimate-addons-for-gutenberg/includes/blocks/forms-radio/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-radio';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Radio', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add radio select boxes to allow a single choice from options.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][a�`4>>>ultimate-addons-for-gutenberg/includes/blocks/review/error_lognu�[���[27-Oct-2025 06:39:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/review/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/review/block.php on line 16
[29-Oct-2025 20:39:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/review/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/review/block.php on line 16
PK�][��RRCultimate-addons-for-gutenberg/includes/blocks/review/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                   => '',
	'enableSchema'               => '',
	'overallAlignment'           => 'left',
	'authorName'                 => '',
	'itemName'                   => '',
	'description'                => '',
	'imgID'                      => '',
	'imgAlt'                     => '',
	'imgURL'                     => '',
	'items'                      => '',
	'parts'                      => '',
	'starCount'                  => '',
	'summaryTitle'               => '',
	'summaryDescription'         => '',
	'inactiveStarColor'          => '',
	'activeStarColor'            => '',
	'titleAlign'                 => '',
	'authorAlign'                => '',
	'descriptionAlign'           => '',
	'sku'                        => '',
	'identifier'                 => '',
	'identifierType'             => '',
	'offerType'                  => '',
	'offerCurrency'              => '',
	'offerStatus'                => '',
	'offerPrice'                 => '',
	'offerExpiry'                => '',
	'datepublish'                => '',
	'ctaLink'                    => '',
	'ctaTarget'                  => '',
	'author'                     => '',
	'brand'                      => '',
	'rTitle'                     => '',
	'rContent'                   => '',
	'rAuthor'                    => '',
	'headingTag'                 => '',
	'mainimage'                  => '',
	'imgSize'                    => '',
	'showFeature'                => '',
	'starColor'                  => '#f0ad4e',
	'selectedStars'              => '',
	'descColor'                  => '',
	'titleColor'                 => '',
	'contentColor'               => '',
	'headFontSize'               => '',
	'headFontSizeType'           => 'px',
	'headFontSizeTablet'         => '',
	'headFontSizeMobile'         => '',
	'headFontFamily'             => '',
	'headFontWeight'             => '',
	'headLineHeightType'         => 'em',
	'headLineHeight'             => '',
	'headLineHeightTablet'       => '',
	'headLineHeightMobile'       => '',
	'headLoadGoogleFonts'        => false,
	'subHeadFontSize'            => '',
	'subHeadFontSizeType'        => 'px',
	'subHeadFontSizeTablet'      => '',
	'subHeadFontSizeMobile'      => '',
	'subHeadFontFamily'          => '',
	'subHeadFontWeight'          => '',
	'subHeadLineHeightType'      => 'em',
	'subHeadLineHeight'          => '',
	'subHeadLineHeightTablet'    => '',
	'subHeadLineHeightMobile'    => '',
	'subHeadLoadGoogleFonts'     => false,
	'contentLoadGoogleFonts'     => false,
	'contentFontFamily'          => '',
	'contentFontWeight'          => '',
	'contentFontSizeType'        => 'px',
	'contentLineHeightType'      => 'em',
	'contentFontSize'            => '',
	'contentFontSizeTablet'      => '',
	'contentFontSizeMobile'      => '',
	'contentLineHeight'          => '',
	'contentLineHeightTablet'    => '',
	'contentLineHeightMobile'    => '',
	'contentVrPadding'           => '',
	'contentHrPadding'           => '',
	'paddingTopMobile'           => '',
	'paddingBottomMobile'        => '',
	'paddingRightMobile'         => '',
	'paddingLeftMobile'          => '',
	'paddingTopTablet'           => '',
	'paddingBottomTablet'        => '',
	'paddingRightTablet'         => '',
	'paddingLeftTablet'          => '',
	'spacingLink'                => '',
	'paddingUnit'                => 'px',
	'mobilePaddingUnit'          => 'px',
	'tabletPaddingUnit'          => 'px',
	'authorColor'                => '',
	'summaryColor'               => '',
	'starActiveColor'            => '#ccd6df',
	'starOutlineColor'           => '',
	'headTransform'              => '',
	'headDecoration'             => '',
	'subHeadTransform'           => '',
	'subHeadDecoration'          => '',
	'contentTransform'           => '',
	'contentDecoration'          => '',
	'headFontStyle'              => '',
	'subHeadFontStyle'           => '',
	'contentFontStyle'           => '',
	'headLetterSpacing'          => '',
	'headLetterSpacingTablet'    => '',
	'headLetterSpacingMobile'    => '',
	'headLetterSpacingType'      => 'px',
	'subHeadLetterSpacing'       => '',
	'subHeadLetterSpacingTablet' => '',
	'subHeadLetterSpacingMobile' => '',
	'subHeadLetterSpacingType'   => 'px',
	'contentLetterSpacing'       => '',
	'contentLetterSpacingTablet' => '',
	'contentLetterSpacingMobile' => '',
	'contentLetterSpacingType'   => 'px',
);
PK�][_4�ޫ�>ultimate-addons-for-gutenberg/includes/blocks/review/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/review';
$block_data = array(
	'doc'              => 'review-schema',
	'slug'             => '',
	'admin_categories' => array( 'seo' ),
	'link'             => 'review-schema',
	'title'            => __( 'Review', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add reviews to items with Schema support.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'review' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'review',
	),
);
PK�]["�_��
�
Eultimate-addons-for-gutenberg/includes/blocks/review/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_review_gfont( $attr );

$t_selectors = array();
$m_selectors = array();
$selectors   = array();

$top_padding    = isset( $attr['topPadding'] ) ? $attr['topPadding'] : $attr['contentVrPadding'];
$bottom_padding = isset( $attr['bottomPadding'] ) ? $attr['bottomPadding'] : $attr['contentVrPadding'];
$left_padding   = isset( $attr['leftPadding'] ) ? $attr['leftPadding'] : $attr['contentHrPadding'];
$right_padding  = isset( $attr['rightPadding'] ) ? $attr['rightPadding'] : $attr['contentHrPadding'];

$selectors = array(
	' .uagb_review_block .uagb-rating-title'  => array(
		'color' => $attr['titleColor'],
	),
	' .uagb_review_block .uagb-rating-desc'   => array(
		'color' => $attr['descColor'],
	),
	' .uagb_review_block .uagb-rating-author' => array(
		'color' => $attr['authorColor'],
	),
	' .uagb_review_entry'                     => array(
		'color' => $attr['contentColor'],
	),
	' .uagb_review_block'                     => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding, $attr['paddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding, $attr['paddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding, $attr['paddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding, $attr['paddingUnit'] ),
		'text-align'     => $attr['overallAlignment'],
	),
	' .uagb_review_summary'                   => array(
		'color' => $attr['summaryColor'],
	),
	' .uagb_review_entry .star, .uagb_review_average_stars .star' => array(
		'fill' => $attr['starColor'],
	),
	' .uagb_review_entry path, .uagb_review_average_stars path' => array(
		'stroke' => $attr['starOutlineColor'],
		'fill'   => $attr['starActiveColor'],
	),
);

$m_selectors = array(
	' .uagb_review_block' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingLeftMobile'], $attr['mobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingRightMobile'], $attr['mobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingTopMobile'], $attr['mobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBottomMobile'], $attr['mobilePaddingUnit'] ),
	),
);

$t_selectors = array(
	' .uagb_review_block' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingLeftTablet'], $attr['tabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingRightTablet'], $attr['tabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingTopTablet'], $attr['tabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBottomTablet'], $attr['tabletPaddingUnit'] ),
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-rating-title, .uagb_review_entry', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-rating-desc, .uagb-rating-author', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'content', ' .uagb_review_summary, .uagb_review_block .uagb_review_summary_title', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . substr( $attr['block_id'], 0, 8 ) );
PK�][i��Dultimate-addons-for-gutenberg/includes/blocks/loop-builder/error_lognu�[���[27-Oct-2025 04:19:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/loop-builder/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/loop-builder/block.php on line 16
PK�]["0��Dultimate-addons-for-gutenberg/includes/blocks/loop-builder/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$block_slug = 'uagb/loop-builder';
$block_data = array(
	'doc'              => 'loop-builder',
	'slug'             => '',
	'admin_categories' => array( 'content', 'post', 'pro' ),
	'link'             => 'loop-builder',
	'title'            => __( 'Loop Builder', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'This block allows you to generate custom loop from different posts.', 'ultimate-addons-for-gutenberg' ), // Need to be improved.
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'loop-builder' ),
	'pro_filler'       => true,
);
PK�][��6Ћ�Aultimate-addons-for-gutenberg/includes/blocks/container/error_lognu�[���[27-Oct-2025 04:44:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php on line 16
[27-Oct-2025 05:31:34 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php on line 10
[27-Oct-2025 05:35:48 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/frontend.js.php on line 15
[29-Oct-2025 20:00:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php on line 16
[29-Oct-2025 20:03:13 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php on line 10
[29-Oct-2025 20:11:09 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php on line 16
[29-Oct-2025 20:16:57 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/attributes.php on line 10
[29-Oct-2025 20:40:36 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/container/block.php on line 16
PK�][;@<4<4Fultimate-addons-for-gutenberg/includes/blocks/container/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute     = UAGB_Block_Helper::uag_generate_border_attribute( 'container' );
$default_width        = UAGB_Admin_Helper::get_global_content_width();
$default_padding      = UAGB_Admin_Helper::get_admin_settings_option( 'uag_container_global_padding', '' );
$default_elements_gap = UAGB_Admin_Helper::get_admin_settings_option( 'uag_container_global_elements_gap', 20 );
$grid_css_object      = array(
	array(
		'default' => 'custom',
		'min'     => array(
			'unit'  => 'px',
			'value' => 10,
		),
		'max'     => array(
			'unit'  => 'fr',
			'value' => 1,
		),
		'custom'  => array(
			'unit'  => 'fr',
			'value' => 1,
		),
	),
);

return array_merge(
	array(
		'block_id'                           => '',
		'widthDesktop'                       => 100,
		'widthTablet'                        => '',
		'widthMobile'                        => 100,
		'widthType'                          => '%',
		'minHeightDesktop'                   => '',
		'minHeightTablet'                    => '',
		'minHeightMobile'                    => '',
		'minHeightType'                      => 'px',
		'minHeightTypeTablet'                => 'px',
		'minHeightTypeMobile'                => 'px',
		'directionDesktop'                   => 'column',
		'directionTablet'                    => '',
		'directionMobile'                    => '',
		'alignItemsDesktop'                  => 'center',
		'alignItemsTablet'                   => '',
		'alignItemsMobile'                   => '',
		'justifyContentDesktop'              => 'center',
		'justifyContentTablet'               => '',
		'justifyContentMobile'               => '',
		'wrapDesktop'                        => 'nowrap',
		'wrapTablet'                         => '',
		'wrapMobile'                         => 'wrap',
		'alignContentDesktop'                => '',
		'alignContentTablet'                 => '',
		'alignContentMobile'                 => '',
		'backgroundType'                     => 'none',
		'backgroundImageDesktop'             => '',
		'backgroundImageTablet'              => '',
		'backgroundImageMobile'              => '',
		'backgroundPositionDesktop'          => array(
			'x' => 0.5,
			'y' => 0.5,
		),
		'backgroundPositionTablet'           => '',
		'backgroundPositionMobile'           => '',
		'backgroundSizeDesktop'              => 'cover',
		'backgroundSizeTablet'               => '',
		'backgroundSizeMobile'               => '',
		'backgroundRepeatDesktop'            => 'no-repeat',
		'backgroundRepeatTablet'             => '',
		'backgroundRepeatMobile'             => '',
		'backgroundAttachmentDesktop'        => 'scroll',
		'backgroundAttachmentTablet'         => '',
		'backgroundAttachmentMobile'         => '',
		'backgroundColor'                    => '',
		'backgroundOpacity'                  => '',
		'backgroundImageColor'               => '#FFFFFF75',
		'gradientValue'                      => 'linear-gradient(90deg, rgba(6, 147, 227, 0.5) 0%, rgba(155, 81, 224, 0.5) 100%)',
		'boxShadowColor'                     => '#00000070',
		'boxShadowHOffset'                   => 0,
		'boxShadowVOffset'                   => 0,
		'boxShadowBlur'                      => '',
		'boxShadowSpread'                    => '',
		'boxShadowPosition'                  => 'outset',
		'boxShadowColorHover'                => '',
		'boxShadowHOffsetHover'              => 0,
		'boxShadowVOffsetHover'              => 0,
		'boxShadowBlurHover'                 => '',
		'boxShadowSpreadHover'               => '',
		'boxShadowPositionHover'             => 'outset',

		'topPaddingDesktop'                  => $default_padding,
		'bottomPaddingDesktop'               => $default_padding,
		'leftPaddingDesktop'                 => $default_padding,
		'rightPaddingDesktop'                => $default_padding,
		'topPaddingTablet'                   => '',
		'bottomPaddingTablet'                => '',
		'leftPaddingTablet'                  => '',
		'rightPaddingTablet'                 => '',
		'topPaddingMobile'                   => '',
		'bottomPaddingMobile'                => '',
		'leftPaddingMobile'                  => '',
		'rightPaddingMobile'                 => '',
		'paddingType'                        => 'px',
		'paddingTypeTablet'                  => 'px',
		'paddingTypeMobile'                  => 'px',
		'paddingLink'                        => true,
		'topMarginDesktop'                   => '',
		'bottomMarginDesktop'                => '',
		'leftMarginDesktop'                  => '',
		'rightMarginDesktop'                 => '',
		'topMarginTablet'                    => '',
		'bottomMarginTablet'                 => '',
		'leftMarginTablet'                   => '',
		'rightMarginTablet'                  => '',
		'topMarginMobile'                    => '',
		'bottomMarginMobile'                 => '',
		'leftMarginMobile'                   => '',
		'rightMarginMobile'                  => '',
		'marginType'                         => 'px',
		'marginTypeTablet'                   => 'px',
		'marginTypeMobile'                   => 'px',
		'marginLink'                         => true,
		'rowGapDesktop'                      => $default_elements_gap,
		'rowGapTablet'                       => '',
		'rowGapMobile'                       => '',
		'rowGapType'                         => 'px',
		'rowGapTypeTablet'                   => 'px',
		'rowGapTypeMobile'                   => 'px',
		'columnGapDesktop'                   => $default_elements_gap,
		'columnGapTablet'                    => '',
		'columnGapMobile'                    => '',
		'columnGapType'                      => 'px',
		'columnGapTypeTablet'                => 'px',
		'columnGapTypeMobile'                => 'px',
		'contentWidth'                       => 'alignfull',
		'innerContentWidth'                  => 'alignwide',
		'innerContentCustomWidthDesktop'     => $default_width,
		'innerContentCustomWidthTablet'      => 1024,
		'innerContentCustomWidthMobile'      => 767,
		'innerContentCustomWidthType'        => 'px',
		'innerContentCustomWidthTypeTablet'  => 'px',
		'innerContentCustomWidthTypeMobile'  => 'px',
		'bottomType'                         => 'none',
		'bottomColor'                        => '#333',
		'bottomHeight'                       => '',
		'bottomHeightTablet'                 => '',
		'bottomHeightMobile'                 => '',
		'bottomWidth'                        => 100,
		'topType'                            => 'none',
		'topColor'                           => '#333',
		'topHeight'                          => '',
		'topHeightTablet'                    => '',
		'topHeightMobile'                    => '',
		'topWidth'                           => 100,
		'topFlip'                            => false,
		'bottomFlip'                         => false,
		'topContentAboveShape'               => false,
		'bottomContentAboveShape'            => false,
		'backgroundCustomSizeDesktop'        => 100,
		'backgroundCustomSizeTablet'         => '',
		'backgroundCustomSizeMobile'         => '',
		'backgroundCustomSizeType'           => '%',
		'overlayType'                        => 'none',
		'overlayOpacity'                     => 1,
		'overlayBlendMode'                   => 'normal',
		'overlayBlendModeTablet'             => '',
		'overlayBlendModeMobile'             => '',
		'customPosition'                     => 'default',
		'centralizedPosition'                => false,
		'xPositionDesktop'                   => '',
		'xPositionTablet'                    => '',
		'xPositionMobile'                    => '',
		'xPositionType'                      => 'px',
		'xPositionTypeTablet'                => 'px',
		'xPositionTypeMobile'                => 'px',
		'yPositionDesktop'                   => '',
		'yPositionTablet'                    => '',
		'yPositionMobile'                    => '',
		'yPositionType'                      => 'px',
		'yPositionTypeTablet'                => 'px',
		'yPositionTypeMobile'                => 'px',
		'backgroundVideoColor'               => '#FFFFFF75',
		'backgroundVideo'                    => '',
		'backgroundVideoOpacity'             => '',
		'topInvert'                          => false,
		'bottomInvert'                       => false,
		'textColor'                          => '',
		'linkColor'                          => '',
		'linkHoverColor'                     => '',
		'isBlockRootParent'                  => false,
		'widthTypeTablet'                    => '%',
		'widthTypeMobile'                    => '%',
		'overflow'                           => 'visible',
		'equalHeight'                        => false,
		'gradientColor1'                     => '#06558a',
		'gradientColor2'                     => '#0063A1',
		'gradientType'                       => 'linear',
		'gradientLocation1'                  => 0,
		'gradientLocationTablet1'            => '',
		'gradientLocationMobile1'            => '',
		'gradientLocation2'                  => 100,
		'gradientLocationTablet2'            => '',
		'gradientLocationMobile2'            => '',
		'gradientAngle'                      => 0,
		'gradientAngleTablet'                => '',
		'gradientAngleMobile'                => '',
		'selectGradient'                     => 'basic',
		'backgroundOverlayType'              => 'none',
		'backgroundOverlayImageDesktop'      => '',
		'backgroundOverlayImageTablet'       => '',
		'backgroundOverlayImageMobile'       => '',
		'backgroundPositionOverlayDesktop'   => array(
			'x' => 0.5,
			'y' => 0.5,
		),
		'backgroundPositionOverlayTablet'    => '',
		'backgroundPositionOverlayMobile'    => '',
		'backgroundSizeOverlayDesktop'       => 'cover',
		'backgroundSizeOverlayTablet'        => '',
		'backgroundSizeOverlayMobile'        => '',
		'backgroundRepeatOverlayDesktop'     => 'no-repeat',
		'backgroundRepeatOverlayTablet'      => '',
		'backgroundRepeatOverlayMobile'      => '',
		'backgroundAttachmentOverlayDesktop' => 'scroll',
		'backgroundAttachmentOverlayTablet'  => '',
		'backgroundAttachmentOverlayMobile'  => '',
		'backgroundOverlayOpacity'           => 1,
		'backgroundOverlayColor'             => '#FFFFFF75',
		'backgroundImageOverlayColor'        => '#FFFFFF75',
		'backgroundCustomSizeOverlayDesktop' => 100,
		'backgroundCustomSizeOverlayTablet'  => '',
		'backgroundCustomSizeOverlayMobile'  => '',
		'backgroundCustomOverlaySizeType'    => '%',
		'customOverlayPosition'              => 'default',
		'xPositionOverlayDesktop'            => '',
		'xPositionOverlayTablet'             => '',
		'xPositionOverlayMobile'             => '',
		'xPositionOverlayType'               => 'px',
		'xPositionOverlayTypeTablet'         => 'px',
		'xPositionOverlayTypeMobile'         => 'px',
		'yPositionOverlayDesktop'            => '',
		'yPositionOverlayTablet'             => '',
		'yPositionOverlayMobile'             => '',
		'yPositionOverlayType'               => 'px',
		'yPositionOverlayTypeTablet'         => 'px',
		'yPositionOverlayTypeMobile'         => 'px',
		'gradientOverlayColor1'              => '#06558a',
		'gradientOverlayColor2'              => '#0063A1',
		'gradientOverlayType'                => 'linear',
		'gradientOverlayLocation1'           => 0,
		'gradientOverlayLocationTablet1'     => '',
		'gradientOverlayLocationMobile1'     => '',
		'gradientOverlayLocation2'           => 100,
		'gradientOverlayLocationTablet2'     => '',
		'gradientOverlayLocationMobile2'     => '',
		'gradientOverlayAngle'               => 0,
		'gradientOverlayAngleTablet'         => '',
		'gradientOverlayAngleMobile'         => '',
		'selectOverlayGradient'              => 'basic',
		'backgroundVideoFallbackImage'       => '',
		// For Global Block Styles.
		'globalBlockStyleName'               => '',
		'globalBlockStyleId'                 => '',
		'childrenWidthDesktop'               => '',
		'childrenWidthTablet'                => '',
		'childrenWidthMobile'                => '',
		// Grid attributes.
		'layout'                             => '',
		'gridColumnDesktop'                  => $grid_css_object,
		'gridColumnTablet'                   => $grid_css_object,
		'gridColumnMobile'                   => $grid_css_object,
		'gridRowDesktop'                     => $grid_css_object,
		'gridRowTablet'                      => $grid_css_object,
		'gridRowMobile'                      => $grid_css_object,
		'gridAlignItemsDesktop'              => 'stretch',
		'gridAlignItemsTablet'               => 'stretch',
		'gridAlignItemsMobile'               => 'stretch',
		'gridJustifyItemsDesktop'            => 'stretch',
		'gridJustifyItemsTablet'             => 'stretch',
		'gridJustifyItemsMobile'             => 'stretch',
		'gridAlignContentDesktop'            => 'stretch',
		'gridAlignContentTablet'             => 'stretch',
		'gridAlignContentMobile'             => 'stretch',
		'gridJustifyContentDesktop'          => 'stretch',
		'gridJustifyContentTablet'           => 'stretch',
		'gridJustifyContentMobile'           => 'stretch',
		'orderDesktop'                       => 'initial',
		'orderTablet'                        => 'initial',
		'orderMobile'                        => 'initial',
		'customOrderDesktop'                 => '',
		'customOrderTablet'                  => '',
		'customOrderMobile'                  => '',
	),
	$border_attribute
);
PK�][&��Aultimate-addons-for-gutenberg/includes/blocks/container/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/container';
$block_data = array(
	'slug'                => '',
	'admin_categories'    => array( 'content', 'core' ),
	'link'                => 'container-layout',
	'doc'                 => 'container',
	'title'               => __( 'Container', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Create beautiful layouts with flexbox powered container block.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'container' ),
	'deprecated'          => false,
	'dynamic_assets'      => array(
		'dir' => 'container',
	),
	'static_dependencies' => array(
		'uagb-block-positioning-js'  => array(
			'type' => 'js',
		),
		'uagb-block-positioning-css' => array(
			'type' => 'css',
		),
	),
);
PK�][�?n�n�Hultimate-addons-for-gutenberg/includes/blocks/container/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 * @var int $id
 */

if ( ! function_exists( 'generate_background_object' ) ) {
	/**
	 * Generate background object for a specific device
	 *
	 * @since 2.19.8
	 *
	 * @param array  $attr Block attributes.
	 * @param string $fallbackImage Fallback image URL.
	 * @param string $device Device type (desktop, tablet, mobile).
	 * @return array Background object.
	 */
	function generate_background_object( $attr, $fallbackImage, $device = 'desktop' ) {
		$suffix = ucfirst( $device );
		$suffix = 'desktop' === $device ? '' : $suffix;

		// Safely get values with defaults.
		$backgroundRepeat         = isset( $attr[ 'backgroundRepeat' . $suffix ] ) ? $attr[ 'backgroundRepeat' . $suffix ] : 'no-repeat';
		$backgroundPosition       = isset( $attr[ 'backgroundPosition' . $suffix ] ) ? $attr[ 'backgroundPosition' . $suffix ] : 'center';
		$backgroundSize           = isset( $attr[ 'backgroundSize' . $suffix ] ) ? $attr[ 'backgroundSize' . $suffix ] : 'cover';
		$backgroundAttachment     = isset( $attr[ 'backgroundAttachment' . $suffix ] ) ? $attr[ 'backgroundAttachment' . $suffix ] : 'scroll';
		$backgroundCustomSize     = isset( $attr[ 'backgroundCustomSize' . $suffix ] ) ? $attr[ 'backgroundCustomSize' . $suffix ] : '';
		$backgroundImageColor     = isset( $attr['backgroundImageColor'] ) ? $attr['backgroundImageColor'] : '';
		$overlayType              = isset( $attr['overlayType'] ) ? $attr['overlayType'] : 'none';
		$backgroundCustomSizeType = isset( $attr['backgroundCustomSizeType'] ) ? $attr['backgroundCustomSizeType'] : 'px';

		return array(
			'backgroundType'           => 'image',
			'backgroundImage'          => array(
				'type' => 'image',
				'url'  => $fallbackImage,
			),
			'backgroundRepeat'         => $backgroundRepeat,
			'backgroundPosition'       => $backgroundPosition,
			'backgroundSize'           => $backgroundSize,
			'backgroundAttachment'     => $backgroundAttachment,
			'backgroundImageColor'     => $backgroundImageColor,
			'overlayType'              => $overlayType,
			'backgroundCustomSize'     => $backgroundCustomSize,
			'backgroundCustomSizeType' => $backgroundCustomSizeType,
		);
	}
}

// For Global Block Styles.
$base_selector = ! empty( $is_gbs ) && ! empty( $gbs_class ) ? $gbs_class : '.uagb-block-' . $id;

$inner_content_custom_width_tablet_fallback = is_numeric( $attr['innerContentCustomWidthTablet'] ) ? $attr['innerContentCustomWidthTablet'] : $attr['innerContentCustomWidthDesktop'];
$inner_content_custom_width_mobile_fallback = is_numeric( $attr['innerContentCustomWidthMobile'] ) ? $attr['innerContentCustomWidthMobile'] : $inner_content_custom_width_tablet_fallback;

$box_shadow_position_css = $attr['boxShadowPosition'];

if ( 'outset' === $attr['boxShadowPosition'] ) {
	$box_shadow_position_css = '';
}

$box_shadow_position_css_hover = $attr['boxShadowPositionHover'];

if ( 'outset' === $attr['boxShadowPositionHover'] ) {
	$box_shadow_position_css_hover = '';
}

$border        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'container' );
$border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'container', 'tablet' );
$border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'container', 'mobile' );

// If there's no border-color, set it to inherit.
if ( empty( $border['border-color'] ) ) {
	$border['border-color'] = 'inherit';
}

$container_bg_overlay_css        = array();
$container_bg_overlay_css_mobile = array();
$container_bg_overlay_css_tablet = array();

// When overlay is present, we need to handle background differently.
if ( $attr['overlayType'] && 'none' !== $attr['overlayType'] ) {
	// For overlay, we need to get the background CSS without the overlay merged in.
	// We'll handle the overlay separately for the ::before pseudo-element.
	$temp_attr                = $attr;
	$temp_attr['overlayType'] = 'none'; // Temporarily disable overlay to get just the background.
	
	$container_bg_css_desktop = UAGB_Block_Helper::get_background_css_by_device( $temp_attr );
	$container_bg_css_tablet  = UAGB_Block_Helper::get_background_css_by_device( $temp_attr, 'Tablet' );
	$container_bg_css_mobile  = UAGB_Block_Helper::get_background_css_by_device( $temp_attr, 'Mobile' );
	
	// Get the overlay CSS for the pseudo-element.
	$container_bg_overlay_css        = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Desktop', 'yes' );
	$container_bg_overlay_css_tablet = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Tablet', 'yes' );
	$container_bg_overlay_css_mobile = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Mobile', 'yes' );
} else {
	// No overlay, use the regular background CSS.
	$container_bg_css_desktop = UAGB_Block_Helper::get_background_css_by_device( $attr );
	$container_bg_css_tablet  = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Tablet' );
	$container_bg_css_mobile  = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Mobile' );
}

$video_bg_css = UAGB_Block_Helper::get_background_css_by_device( $attr, 'Desktop', 'no' );

// Tablet.
$left_padding_tablet   = '' !== $attr['leftPaddingTablet'] ? $attr['leftPaddingTablet'] : $attr['leftPaddingDesktop'];
$right_padding_tablet  = '' !== $attr['rightPaddingTablet'] ? $attr['rightPaddingTablet'] : $attr['rightPaddingDesktop'];
$top_padding_tablet    = '' !== $attr['topPaddingTablet'] ? $attr['topPaddingTablet'] : $attr['topPaddingDesktop'];
$bottom_padding_tablet = '' !== $attr['bottomPaddingTablet'] ? $attr['bottomPaddingTablet'] : $attr['bottomPaddingDesktop'];

$left_margin_tablet   = '' !== $attr['leftMarginTablet'] ? $attr['leftMarginTablet'] : $attr['leftMarginDesktop'];
$right_margin_tablet  = '' !== $attr['rightMarginTablet'] ? $attr['rightMarginTablet'] : $attr['rightMarginDesktop'];
$top_margin_tablet    = '' !== $attr['topMarginTablet'] ? $attr['topMarginTablet'] : $attr['topMarginDesktop'];
$bottom_margin_tablet = '' !== $attr['bottomMarginTablet'] ? $attr['bottomMarginTablet'] : $attr['bottomMarginDesktop'];

$column_gap_tablet = ! empty( $attr['columnGapTablet'] ) ? $attr['columnGapTablet'] : $attr['columnGapDesktop'];

// Mobile.
$left_padding_mobile   = '' !== $attr['leftPaddingMobile'] ? $attr['leftPaddingMobile'] : $left_padding_tablet;
$right_padding_mobile  = '' !== $attr['rightPaddingMobile'] ? $attr['rightPaddingMobile'] : $right_padding_tablet;
$top_padding_mobile    = '' !== $attr['topPaddingMobile'] ? $attr['topPaddingMobile'] : $top_padding_tablet;
$bottom_padding_mobile = '' !== $attr['bottomPaddingMobile'] ? $attr['bottomPaddingMobile'] : $bottom_padding_tablet;

$left_margin_mobile   = '' !== $attr['leftMarginMobile'] ? $attr['leftMarginMobile'] : $left_margin_tablet;
$right_margin_mobile  = '' !== $attr['rightMarginMobile'] ? $attr['rightMarginMobile'] : $right_margin_tablet;
$top_margin_mobile    = '' !== $attr['topMarginMobile'] ? $attr['topMarginMobile'] : $top_margin_tablet;
$bottom_margin_mobile = '' !== $attr['bottomMarginMobile'] ? $attr['bottomMarginMobile'] : $bottom_margin_tablet;

$column_gap_mobile = ! empty( $attr['columnGapMobile'] ) ? $attr['columnGapMobile'] : $column_gap_tablet;

$order_tablet = 'initial' !== $attr['orderTablet'] ? $attr['orderTablet'] : $attr['orderDesktop'];
$order_mobile = 'initial' !== $attr['orderMobile'] ? $attr['orderMobile'] : $order_tablet;

$custom_order_tablet = '' !== $attr['customOrderTablet'] ? $attr['customOrderTablet'] : $attr['customOrderDesktop'];
$custom_order_mobile = '' !== $attr['customOrderMobile'] ? $attr['customOrderMobile'] : $custom_order_tablet;

$is_layout_grid        = 'grid' === $attr['layout'];
$has_inner_blocks_wrap = 'alignwide' === $attr['innerContentWidth'] && 'alignfull' === $attr['contentWidth'];

$should_merge_inner_container_css = ( $attr['isBlockRootParent'] && ! $has_inner_blocks_wrap ) || ! $attr['isBlockRootParent'] || 'alignwide' !== $attr['innerContentWidth'];

$container_css       = array_merge(
	array(
		'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightDesktop'], $attr['minHeightType'] ),
		'box-shadow'     =>
				UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) .
				' ' .
				UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) .
				' ' .
				UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) .
				' ' .
				UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) .
				' ' .
				$attr['boxShadowColor'] .
				' ' .
				$box_shadow_position_css,
		'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingDesktop'], $attr['paddingType'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingDesktop'], $attr['paddingType'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingDesktop'], $attr['paddingType'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingDesktop'], $attr['paddingType'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginDesktop'], $attr['marginType'] ) . ' !important',
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginDesktop'], $attr['marginType'] ) . ' !important',
		'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginDesktop'], $attr['marginType'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginDesktop'], $attr['marginType'] ),
		'overflow'       => $attr['overflow'],
		'order'          => 'custom' === $attr['orderDesktop'] ? $attr['customOrderDesktop'] : $attr['orderDesktop'],
	),
	$border
);
$container_css       = array_merge( $container_css, $container_bg_css_desktop );
$inner_container_css = array(
	'flex-direction'  => $attr['directionDesktop'],
	'align-items'     => $attr['alignItemsDesktop'],
	'justify-content' => $attr['justifyContentDesktop'],
	'flex-wrap'       => $attr['wrapDesktop'],
	'align-content'   => $attr['alignContentDesktop'],
);

// Keeping $inner_container_css empty array because it will be used when layout is grid.
if ( $is_layout_grid ) {
	$inner_container_css = array();
}

if ( $should_merge_inner_container_css ) {
	$container_css = array_merge( $container_css, $inner_container_css );
}

// Handle backward opacity for video.
// If this was saved in the updated version, backgroundVideoOpacity will be 0, and this will be skipped.
if ( 'video' === $attr['backgroundType'] && ! empty( $attr['backgroundVideoOpacity'] ) ) {
	$attr['overlayOpacity'] = $attr['backgroundVideoOpacity'];
}

$background_video_opacity_value = ( isset( $attr['overlayOpacity'] ) && 'none' !== $attr['overlayType'] && ( ( 'color' === $attr['overlayType'] && ! empty( $attr['backgroundVideoColor'] ) ) || ( 'gradient' === $attr['overlayType'] && ! empty( $attr['gradientValue'] ) ) ) ) ? 1 - $attr['overlayOpacity'] : 1;
$bg_video_image_fallback        = ! empty( $attr['backgroundVideoFallbackImage']['url'] ) ? $attr['backgroundVideoFallbackImage']['url'] : '';

$selectors = array(
	$base_selector . '.wp-block-uagb-container'           => array(
		'color' => $attr['textColor'],
	),
	$base_selector . '.wp-block-uagb-container *'         => array(
		'color' => $attr['textColor'],
	),
	$base_selector . ' a'                                 => array(
		'color' => $attr['linkColor'],
	),
	$base_selector . ' a:hover'                           => array(
		'color' => $attr['linkHoverColor'],
	),
	$base_selector . ' .uagb-container__shape-top svg'    => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeight'], 'px' ),
	),
	$base_selector . ' .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill' => array(
		'fill' => UAGB_Helper::hex2rgba( $attr['topColor'], ( isset( $attr['topDividerOpacity'] ) && '' !== $attr['topDividerOpacity'] ) ? $attr['topDividerOpacity'] : 100 ),
	),
	$base_selector . ' .uagb-container__shape-bottom svg' => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeight'], 'px' ),
	),
	$base_selector . ' .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill' => array(
		'fill' => UAGB_Helper::hex2rgba( $attr['bottomColor'], ( isset( $attr['bottomDividerOpacity'] ) && '' !== $attr['bottomDividerOpacity'] ) ? $attr['bottomDividerOpacity'] : 100 ),
	),
	$base_selector . ' .uagb-container__video-wrap video' => array(
		'opacity' => $background_video_opacity_value,
	),
);

if ( $bg_video_image_fallback ) {
	$selectors[ $base_selector . ' .uagb-container__video-wrap video' ]['background']      = 'url(' . $bg_video_image_fallback . ') 50% 50%;';
	$selectors[ $base_selector . ' .uagb-container__video-wrap video' ]['background-size'] = 'cover';
}

if ( '' !== $attr['topWidth'] ) {
	$selectors[ $base_selector . ' .uagb-container__shape-top svg' ]['width'] = 'calc( ' . $attr['topWidth'] . '% + 1.3px )';
}

if ( '' !== $attr['bottomWidth'] ) {
	$selectors[ $base_selector . ' .uagb-container__shape-bottom svg' ]['width'] = 'calc( ' . $attr['bottomWidth'] . '% + 1.3px )';
}

$container_tablet_css = array_merge(
	array(
		'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightTablet'], $attr['minHeightTypeTablet'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['paddingTypeTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['paddingTypeTablet'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_tablet, $attr['marginTypeTablet'] ) . ' !important',
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_tablet, $attr['marginTypeTablet'] ) . ' !important',
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_tablet, $attr['marginTypeTablet'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_tablet, $attr['marginTypeTablet'] ),
		'order'          => 'custom' === $order_tablet ? $custom_order_tablet : $order_tablet,
	),
	$border_tablet
);

if ( ! empty( $container_bg_css_tablet ) ) {
	$container_tablet_css = array_merge( $container_tablet_css, $container_bg_css_tablet );
}

$inner_container_tablet_css = array(
	'flex-direction'  => $attr['directionTablet'],
	'align-items'     => $attr['alignItemsTablet'],
	'justify-content' => $attr['justifyContentTablet'],
	'flex-wrap'       => $attr['wrapTablet'],
	'align-content'   => $attr['alignContentTablet'],
);

// Keeping $inner_container_tablet_css empty array because it will be used when layout is grid.
if ( $is_layout_grid ) {
	$inner_container_tablet_css = array();
}

if ( $should_merge_inner_container_css && ! $is_layout_grid ) {
	$container_tablet_css = array_merge( $container_tablet_css, $inner_container_tablet_css );
}

$t_selectors = array(
	$base_selector . ' .uagb-container__shape-bottom svg' => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeightTablet'], 'px' ),
	),
	$base_selector . ' .uagb-container__shape-top svg'    => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeightTablet'], 'px' ),
	),
);

$container_mobile_css = array_merge(
	array(
		'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightMobile'], $attr['minHeightTypeMobile'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $top_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['paddingTypeMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['paddingTypeMobile'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $top_margin_mobile, $attr['marginTypeMobile'] ) . ' !important',
		'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_mobile, $attr['marginTypeMobile'] ) . ' !important',
		'margin-left'    => UAGB_Helper::get_css_value( $left_margin_mobile, $attr['marginTypeMobile'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $right_margin_mobile, $attr['marginTypeMobile'] ),
		'row-gap'        => UAGB_Helper::get_css_value( $attr['rowGapMobile'], $attr['rowGapTypeMobile'] ),
		'column-gap'     => UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapTypeMobile'] ),
		'order'          => 'custom' === $order_mobile ? $custom_order_mobile : $order_mobile,
	),
	$border_mobile
);

if ( ! empty( $container_bg_css_mobile ) ) {
	$container_mobile_css = array_merge( $container_mobile_css, $container_bg_css_mobile );
}

$inner_container_mobile_css = array(
	'flex-direction'  => $attr['directionMobile'],
	'align-items'     => $attr['alignItemsMobile'],
	'justify-content' => $attr['justifyContentMobile'],
	'flex-wrap'       => $attr['wrapMobile'],
	'align-content'   => $attr['alignContentMobile'],
);

// Keeping $inner_container_mobile_css empty array because it will be used when layout is grid.
if ( $is_layout_grid ) {
	$inner_container_mobile_css = array();
}

if ( $should_merge_inner_container_css && ! $is_layout_grid ) {
	$container_mobile_css = array_merge( $container_mobile_css, $inner_container_mobile_css );
}

$m_selectors = array(
	$base_selector . ' .uagb-container__shape-bottom svg' => array(
		'height' => UAGB_Helper::get_css_value( $attr['bottomHeightMobile'], 'px' ),
	),
	$base_selector . ' .uagb-container__shape-top svg'    => array(
		'height' => UAGB_Helper::get_css_value( $attr['topHeightMobile'], 'px' ),
	),
);

if ( ! $is_layout_grid ) {
	// Add row and column gap if layout is not grid.
	$container_css['row-gap']          = UAGB_Helper::get_css_value( $attr['rowGapDesktop'], $attr['rowGapType'] );
	$container_css['column-gap']       = UAGB_Helper::get_css_value( $attr['columnGapDesktop'], $attr['columnGapType'] );
	$inner_container_css['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapDesktop'], $attr['rowGapType'] );
	$inner_container_css['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapDesktop'], $attr['columnGapType'] );

	// for tablet devices.
	$container_tablet_css['row-gap']          = UAGB_Helper::get_css_value( $attr['rowGapTablet'], $attr['rowGapTypeTablet'] );
	$container_tablet_css['column-gap']       = UAGB_Helper::get_css_value( $attr['columnGapTablet'], $attr['columnGapTypeTablet'] );
	$inner_container_tablet_css['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapTablet'], $attr['rowGapTypeTablet'] );
	$inner_container_tablet_css['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapTablet'], $attr['columnGapTypeTablet'] );

	// for mobile devices.
	$container_mobile_css['row-gap']          = UAGB_Helper::get_css_value( $attr['rowGapMobile'], $attr['rowGapTypeMobile'] );
	$container_mobile_css['column-gap']       = UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapTypeMobile'] );
	$inner_container_mobile_css['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapMobile'], $attr['rowGapTypeMobile'] );
	$inner_container_mobile_css['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapTypeMobile'] );
}

	// Add max-width and width if layout is not grid.
	$selectors[ '.uagb-is-root-container .uagb-block-' . $id ] = array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		'max-width' => UAGB_Helper::get_css_value( $attr['widthDesktop'], $attr['widthType'] ),
		'width'     => '100%',
	);

	$t_selectors[ '.uagb-is-root-container ' . $base_selector ] = array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		'max-width' => UAGB_Helper::get_css_value( $attr['widthTablet'], $attr['widthTypeTablet'] ),
		'width'     => '100%',
	);

	$m_selectors[ '.uagb-is-root-container ' . $base_selector ] = array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		'max-width' => UAGB_Helper::get_css_value( $attr['widthMobile'], $attr['widthTypeMobile'] ),
		'width'     => '100%',
	);

	if ( $has_inner_blocks_wrap ) {
		$selectors[ '.uagb-is-root-container.alignfull' . $base_selector . ' > .uagb-container-inner-blocks-wrap' ] = array_merge(
			array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			'--inner-content-custom-width' => 'min( 100%, ' . $attr['innerContentCustomWidthDesktop'] . $attr['innerContentCustomWidthType'] . ')',
			'max-width'                    => 'var(--inner-content-custom-width)',
			'width'                        => '100%',
			),
			$inner_container_css
		);

		$t_selectors[ '.uagb-is-root-container.alignfull' . $base_selector . ' > .uagb-container-inner-blocks-wrap' ] = array_merge(
			array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			'--inner-content-custom-width' => 'min( 100%, ' . $inner_content_custom_width_tablet_fallback . $attr['innerContentCustomWidthTypeTablet'] . ')',
			'max-width'                    => 'var(--inner-content-custom-width)',
			'width'                        => '100%',
			),
			$inner_container_tablet_css
		);

		$m_selectors[ '.uagb-is-root-container.alignfull' . $base_selector . ' > .uagb-container-inner-blocks-wrap' ] = array_merge(
			array( // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
			'--inner-content-custom-width' => 'min( 100%, ' . $inner_content_custom_width_mobile_fallback . $attr['innerContentCustomWidthTypeMobile'] . ')',
			'max-width'                    => 'var(--inner-content-custom-width)',
			'width'                        => '100%',
			),
			$inner_container_mobile_css
		);
	}

	if ( $is_layout_grid ) {
		$grid_base_selector      = $base_selector . '.uagb-layout-grid';
		$container_base_selector = $has_inner_blocks_wrap && $attr['isBlockRootParent'] ? $grid_base_selector . ' > .uagb-container-inner-blocks-wrap' : $grid_base_selector;
		$grid_css                = array();
		
		$grid_css['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapDesktop'], $attr['rowGapType'] );
		$grid_css['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapDesktop'], $attr['columnGapType'] );

		// Grid css for desktop.
		$selectors[ $container_base_selector ] = array_merge( $grid_css, UAGB_Block_Helper::grid_css_object( $attr, 'Desktop' ) );

		// Grid css for tablet.
		$grid_css_tablet = array();

		$grid_css_tablet['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapTablet'], $attr['rowGapTypeTablet'] );
		$grid_css_tablet['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapTablet'], $attr['columnGapTypeTablet'] );
		
		$t_selectors[ $container_base_selector ] = array_merge( $grid_css_tablet, UAGB_Block_Helper::grid_css_object( $attr, 'Tablet' ) );

		// Grid css for mobile.
		$grid_css_mobile = array();

		$grid_css_mobile['row-gap']    = UAGB_Helper::get_css_value( $attr['rowGapMobile'], $attr['rowGapTypeMobile'] );
		$grid_css_mobile['column-gap'] = UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapTypeMobile'] );

		$m_selectors[ $container_base_selector ] = array_merge( $grid_css_mobile, UAGB_Block_Helper::grid_css_object( $attr, 'Mobile' ) );
	}

	if ( 'video' === $attr['backgroundType'] ) {
		$selectors[ $base_selector . ' .uagb-container__video-wrap' ]   = array_merge( $video_bg_css, $border );
		$t_selectors[ $base_selector . ' .uagb-container__video-wrap' ] = $border_tablet;
		$m_selectors[ $base_selector . ' .uagb-container__video-wrap' ] = $border_mobile;

		$selectorClass = '.wp-block-uagb-container' . $base_selector;

		$selectors[ $base_selector . ' > div:not(.uagb-container__video-wrap):not(.uagb-container__shape)' ] = array(
			'position' => 'relative',
		);
		$selectors[ $selectorClass ]   = $inner_container_css;
		$t_selectors[ $selectorClass ] = $inner_container_tablet_css;
		$m_selectors[ $selectorClass ] = $inner_container_mobile_css;

		$selectors[ $base_selector ]   = array(
			'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightDesktop'], $attr['minHeightType'] ),
			'box-shadow'     =>
					UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) .
					' ' .
					UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) .
					' ' .
					UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) .
					' ' .
					UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) .
					' ' .
					$attr['boxShadowColor'] .
					' ' .
					$box_shadow_position_css,
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingDesktop'], $attr['paddingType'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingDesktop'], $attr['paddingType'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingDesktop'], $attr['paddingType'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingDesktop'], $attr['paddingType'] ),
			'margin-top'     => UAGB_Helper::get_css_value( $attr['topMarginDesktop'], $attr['marginType'] ) . ' !important',
			'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMarginDesktop'], $attr['marginType'] ) . ' !important',
			'margin-left'    => UAGB_Helper::get_css_value( $attr['leftMarginDesktop'], $attr['marginType'] ),
			'margin-right'   => UAGB_Helper::get_css_value( $attr['rightMarginDesktop'], $attr['marginType'] ),
			'row-gap'        => UAGB_Helper::get_css_value( $attr['rowGapDesktop'], $attr['rowGapType'] ),
			'column-gap'     => UAGB_Helper::get_css_value( $attr['columnGapDesktop'], $attr['columnGapType'] ),
			'overflow'       => $attr['overflow'],
		);
		$t_selectors[ $base_selector ] = array(
			'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightTablet'], $attr['minHeightTypeTablet'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $top_padding_tablet, $attr['paddingTypeTablet'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_tablet, $attr['paddingTypeTablet'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['paddingTypeTablet'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['paddingTypeTablet'] ),
			'margin-top'     => UAGB_Helper::get_css_value( $top_margin_tablet, $attr['marginTypeTablet'] ) . ' !important',
			'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_tablet, $attr['marginTypeTablet'] ) . ' !important',
			'margin-left'    => UAGB_Helper::get_css_value( $left_margin_tablet, $attr['marginTypeTablet'] ),
			'margin-right'   => UAGB_Helper::get_css_value( $right_margin_tablet, $attr['marginTypeTablet'] ),
			'row-gap'        => UAGB_Helper::get_css_value( $attr['rowGapTablet'], $attr['rowGapTypeTablet'] ),
			'column-gap'     => UAGB_Helper::get_css_value( $attr['columnGapTablet'], $attr['columnGapTypeTablet'] ),
		);
		$m_selectors[ $base_selector ] = array(
			'min-height'     => UAGB_Helper::get_css_value( $attr['minHeightMobile'], $attr['minHeightTypeMobile'] ),
			'padding-top'    => UAGB_Helper::get_css_value( $top_padding_mobile, $attr['paddingTypeMobile'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $bottom_padding_mobile, $attr['paddingTypeMobile'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['paddingTypeMobile'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['paddingTypeMobile'] ),
			'margin-top'     => UAGB_Helper::get_css_value( $top_margin_mobile, $attr['marginTypeMobile'] ) . ' !important',
			'margin-bottom'  => UAGB_Helper::get_css_value( $bottom_margin_mobile, $attr['marginTypeMobile'] ) . ' !important',
			'margin-left'    => UAGB_Helper::get_css_value( $left_margin_mobile, $attr['marginTypeMobile'] ),
			'margin-right'   => UAGB_Helper::get_css_value( $right_margin_mobile, $attr['marginTypeMobile'] ),
			'row-gap'        => UAGB_Helper::get_css_value( $attr['rowGapMobile'], $attr['rowGapTypeMobile'] ),
			'column-gap'     => UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapTypeMobile'] ),
		);
		$selectors[ '.wp-block-uagb-container' . $base_selector . ':hover .uagb-container__video-wrap' ] = array(
			'border-color' => $attr['containerBorderHColor'],
		);
		// If hover blur or hover color are set, show the hover shadow.
		if ( ( ( '' !== $attr['boxShadowBlurHover'] ) && ( null !== $attr['boxShadowBlurHover'] ) ) || '' !== $attr['boxShadowColorHover'] ) {

			$selectors[ $base_selector . ':hover ' ]['box-shadow'] = UAGB_Helper::get_css_value( $attr['boxShadowHOffsetHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowVOffsetHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowBlurHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowSpreadHover'], 'px' ) .
																	' ' .
																	$attr['boxShadowColorHover'] .
																	' ' .
																	$box_shadow_position_css_hover;

		}
	} else {
		$selectors[ $base_selector ]   = $container_css; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		$t_selectors[ $base_selector ] = $container_tablet_css; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		$m_selectors[ $base_selector ] = $container_mobile_css; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
		$selectors[ '.wp-block-uagb-container' . $base_selector . ':hover' ] = array(
			'border-color' => $attr['containerBorderHColor'],
		);
		// If hover blur or hover color are set, show the hover shadow.
		if ( ( ( '' !== $attr['boxShadowBlurHover'] ) && ( null !== $attr['boxShadowBlurHover'] ) ) || '' !== $attr['boxShadowColorHover'] ) {

			$selectors[ $base_selector . ':hover' ]['box-shadow'] = UAGB_Helper::get_css_value( $attr['boxShadowHOffsetHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowVOffsetHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowBlurHover'], 'px' ) .
																	' ' .
																	UAGB_Helper::get_css_value( $attr['boxShadowSpreadHover'], 'px' ) .
																	' ' .
																	$attr['boxShadowColorHover'] .
																	' ' .
																	$box_shadow_position_css_hover;

		}
	}

	if ( 'default' === $attr['contentWidth'] ) {
		$selectors[ $base_selector ]['max-width']    = UAGB_Helper::get_css_value( $attr['widthDesktop'], $attr['widthType'] ) . ' !important';
		$selectors[ $base_selector ]['margin-left']  = ( '' !== $attr['leftMarginDesktop'] ? UAGB_Helper::get_css_value( $attr['leftMarginDesktop'], $attr['marginType'] ) . ' !important' : '' );
		$selectors[ $base_selector ]['margin-right'] = ( '' !== $attr['rightMarginDesktop'] ? UAGB_Helper::get_css_value( $attr['rightMarginDesktop'], $attr['marginType'] ) . ' !important' : '' );
		// FSE container width compatibility.
		$common_fullwidth_restrictions = ( 'auto' !== $attr['childrenWidthDesktop'] && ! $is_layout_grid );

		$is_fse_container = ( $common_fullwidth_restrictions && wp_is_block_theme() && ! get_queried_object() );

		// WooCommerce template pages.
		$is_checkout              = function_exists( 'is_checkout' ) && is_checkout();
		$is_cart                  = function_exists( 'is_cart' ) && is_cart();
		$is_order_confirmation    = function_exists( 'is_order_received_page' ) && is_order_received_page();
		$is_product_catalog       = function_exists( 'is_shop' ) && is_shop();
		$is_product_search        = function_exists( 'is_product_search' ) && is_product_search();
		$is_products_by_attribute = function_exists( 'is_product_taxonomy' ) && is_product_taxonomy();
		$is_products_by_category  = function_exists( 'is_product_category' ) && is_product_category();
		$is_products_by_tag       = function_exists( 'is_product_tag' ) && is_product_tag();
		$is_single_product        = function_exists( 'is_product' ) && is_product();

		$requires_fullwidth = $common_fullwidth_restrictions && (
			$is_fse_container ||
			$is_checkout ||
			$is_cart ||
			$is_order_confirmation ||
			$is_product_catalog ||
			$is_product_search ||
			$is_products_by_attribute ||
			$is_products_by_category ||
			$is_products_by_tag ||
			$is_single_product
		);

		// Add the FSE compatibility width when required.
		$selectors[ $base_selector ]['width'] = $requires_fullwidth ? '100%' : '';

		$t_selectors[ $base_selector ]['max-width']    = UAGB_Helper::get_css_value( $attr['widthTablet'], $attr['widthTypeTablet'] ) . ' !important';
		$t_selectors[ $base_selector ]['margin-left']  = ( '' !== $attr['leftMarginTablet'] ? UAGB_Helper::get_css_value( $left_margin_tablet, $attr['marginTypeTablet'] ) . ' !important' : '' );
		$t_selectors[ $base_selector ]['margin-right'] = ( '' !== $attr['rightMarginTablet'] ? UAGB_Helper::get_css_value( $right_margin_tablet, $attr['marginTypeTablet'] ) . ' !important' : '' );

		$m_selectors[ $base_selector ]['max-width']    = UAGB_Helper::get_css_value( $attr['widthMobile'], $attr['widthTypeMobile'] ) . ' !important';
		$m_selectors[ $base_selector ]['margin-left']  = ( '' !== $attr['leftMarginMobile'] ? UAGB_Helper::get_css_value( $left_margin_mobile, $attr['marginTypeMobile'] ) . ' !important' : '' );
		$m_selectors[ $base_selector ]['margin-right'] = ( '' !== $attr['rightMarginMobile'] ? UAGB_Helper::get_css_value( $right_margin_mobile, $attr['marginTypeMobile'] ) . ' !important' : '' );
	}

	// Add the overlay CSS if needed.
	if (
	! empty( $attr['overlayType'] )
	&& 'none' !== $attr['overlayType']
	&& ! empty( $container_bg_overlay_css )
	&& is_array( $container_bg_overlay_css )
	) {
		$desktop_border_width = array(
			'top'    => is_numeric( $attr['containerBorderTopWidth'] ) ? $attr['containerBorderTopWidth'] : 0,
			'right'  => is_numeric( $attr['containerBorderRightWidth'] ) ? $attr['containerBorderRightWidth'] : 0,
			'bottom' => is_numeric( $attr['containerBorderBottomWidth'] ) ? $attr['containerBorderBottomWidth'] : 0,
			'left'   => is_numeric( $attr['containerBorderLeftWidth'] ) ? $attr['containerBorderLeftWidth'] : 0,
		);
		$tablet_border_width  = array(
			'top'    => is_numeric( $attr['containerBorderTopWidthTablet'] ) ? $attr['containerBorderTopWidthTablet'] : $desktop_border_width['top'],
			'right'  => is_numeric( $attr['containerBorderRightWidthTablet'] ) ? $attr['containerBorderRightWidthTablet'] : $desktop_border_width['right'],
			'bottom' => is_numeric( $attr['containerBorderBottomWidthTablet'] ) ? $attr['containerBorderBottomWidthTablet'] : $desktop_border_width['bottom'],
			'left'   => is_numeric( $attr['containerBorderLeftWidthTablet'] ) ? $attr['containerBorderLeftWidthTablet'] : $desktop_border_width['left'],
		);
		$mobile_border_width  = array(
			'top'    => is_numeric( $attr['containerBorderTopWidthMobile'] ) ? $attr['containerBorderTopWidthMobile'] : $tablet_border_width['top'],
			'right'  => is_numeric( $attr['containerBorderRightWidthMobile'] ) ? $attr['containerBorderRightWidthMobile'] : $tablet_border_width['right'],
			'bottom' => is_numeric( $attr['containerBorderBottomWidthMobile'] ) ? $attr['containerBorderBottomWidthMobile'] : $tablet_border_width['bottom'],
			'left'   => is_numeric( $attr['containerBorderLeftWidthMobile'] ) ? $attr['containerBorderLeftWidthMobile'] : $tablet_border_width['left'],
		);

		$selectors   = array_merge(
			$selectors,
			array(
				$base_selector . '::before'       => array_merge(
					array(
						'content'        => '""',
						'position'       => 'absolute',
						'pointer-events' => 'none',
						'top'            => '-' . UAGB_Helper::get_css_value( $desktop_border_width['top'], 'px' ),
						'left'           => '-' . UAGB_Helper::get_css_value( $desktop_border_width['left'], 'px' ),
						'width'          => 'calc(100% + ' . UAGB_Helper::get_css_value( $desktop_border_width['left'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $desktop_border_width['right'], 'px' ) . ')',
						'height'         => 'calc(100% + ' . UAGB_Helper::get_css_value( $desktop_border_width['top'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $desktop_border_width['bottom'], 'px' ) . ')',
					),
					$border,
					$container_bg_overlay_css
				),
				$base_selector . ':hover::before' => array(
					'border-color' => $attr['containerBorderHColor'],
				),
			)
		);
		$t_selectors = array_merge(
			$t_selectors,
			array(
				$base_selector . '::before' => array_merge(
					array(
						'top'    => '-' . UAGB_Helper::get_css_value( $tablet_border_width['top'], 'px' ),
						'left'   => '-' . UAGB_Helper::get_css_value( $tablet_border_width['left'], 'px' ),
						'width'  => 'calc(100% + ' . UAGB_Helper::get_css_value( $tablet_border_width['left'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $tablet_border_width['right'], 'px' ) . ')',
						'height' => 'calc(100% + ' . UAGB_Helper::get_css_value( $tablet_border_width['top'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $tablet_border_width['bottom'], 'px' ) . ')',
					),
					$border_tablet,
					$container_bg_overlay_css_tablet
				),
			)
		);
		$m_selectors = array_merge(
			$m_selectors,
			array(
				$base_selector . '::before' => array_merge(
					array(
						'top'    => '-' . UAGB_Helper::get_css_value( $mobile_border_width['top'], 'px' ),
						'left'   => '-' . UAGB_Helper::get_css_value( $mobile_border_width['left'], 'px' ),
						'width'  => 'calc(100% + ' . UAGB_Helper::get_css_value( $mobile_border_width['left'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $mobile_border_width['right'], 'px' ) . ')',
						'height' => 'calc(100% + ' . UAGB_Helper::get_css_value( $mobile_border_width['top'], 'px' ) . ' + ' . UAGB_Helper::get_css_value( $mobile_border_width['bottom'], 'px' ) . ')',
					),
					$border_mobile,
					$container_bg_overlay_css_mobile
				),
			)
		);
		if ( 'image' === $attr['overlayType'] ) {
			$t_selectors[ $base_selector . '::before' ] = array_merge(
				$t_selectors[ $base_selector . '::before' ],
				$container_bg_overlay_css_tablet
			);
			$m_selectors[ $base_selector . '::before' ] = array_merge(
				$m_selectors[ $base_selector . '::before' ],
				$container_bg_overlay_css_mobile
			);
		};
	}//end if;

	$z_index        = isset( $attr['zIndex'] ) ? $attr['zIndex'] : '';
	$z_index_tablet = isset( $attr['zIndexTablet'] ) ? $attr['zIndexTablet'] : '';
	$z_index_mobile = isset( $attr['zIndexMobile'] ) ? $attr['zIndexMobile'] : '';

	$selectors[ $base_selector . '.uag-blocks-common-selector' ] = array(
		'--z-index-desktop' => $z_index,
		'--z-index-tablet'  => $z_index_tablet,
		'--z-index-mobile'  => $z_index_mobile,
	);

	$auto_width = array( 'width' => 'auto !important' );
	$set_width  = array( 'width' => '100%' );

	$base_width_selector = $base_selector . '.wp-block-uagb-container > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not( .spectra-container-link-overlay ):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-container-inner-blocks-wrap)';

	$base_width_selector_2 = $base_selector . '.wp-block-uagb-container > .uagb-container-inner-blocks-wrap > *:not( .wp-block-uagb-column ):not( .wp-block-uagb-section ):not( .uagb-container__shape ):not( .uagb-container__video-wrap ):not( .uagb-slider-container ):not(.spectra-image-gallery__control-lightbox)';

	// Add auto width to the inner blocks in desktop.
	if ( ! empty( $attr['directionDesktop'] ) ) {
		if ( 'auto' === $attr['childrenWidthDesktop'] ) {
			$selectors[ $base_width_selector ]   = $auto_width;
			$selectors[ $base_width_selector_2 ] = $auto_width;
		}
	}

	// Add auto width to the inner blocks in tablet.
	if ( ! empty( $attr['directionTablet'] ) ) {
		if ( 'auto' === $attr['childrenWidthTablet'] ) {
			$t_selectors[ $base_width_selector ]   = $auto_width;
			$t_selectors[ $base_width_selector_2 ] = $auto_width;
		} else {
			$t_selectors[ $base_width_selector ]   = $set_width;
			$t_selectors[ $base_width_selector_2 ] = $set_width;
		}
	}

	// Add auto width to the inner blocks in mobile.
	if ( ! empty( $attr['directionMobile'] ) ) {
		if ( 'auto' === $attr['childrenWidthMobile'] ) {
			$m_selectors[ $base_width_selector ]   = $auto_width;
			$m_selectors[ $base_width_selector_2 ] = $auto_width;
		} else {
			$m_selectors[ $base_width_selector ]   = $set_width;
			$m_selectors[ $base_width_selector_2 ] = $set_width;
		}
	}

	if ( ! empty( $attr['isGridCssInParent'] ) ) {
		$gridChildrenCSS       = array();
		$gridChildrenCSSTab    = array(
			// Add default css for the Tablet.
			'grid-column' => 'span 1',
			'grid-row'    => 'span 1',
		);
		$gridChildrenCSSMobile = array(
			// Add default css for the Mobile.
			'grid-column' => 'span 1',
			'grid-row'    => 'span 1',
		);
	
		if ( ! empty( $attr['gridSettingType'] ) && 'advance' === $attr['gridSettingType'] ) {
			// For desktop.
			if ( ! empty( $attr['gridColumnStart'] ) && ! empty( $attr['gridColumnEnd'] ) ) {
				$gridChildrenCSS['grid-column'] = $attr['gridColumnStart'] . ' / ' . $attr['gridColumnEnd'];
			}

			if ( ! empty( $attr['gridRowStart'] ) && ! empty( $attr['gridRowEnd'] ) ) {
				$gridChildrenCSS['grid-row'] = $attr['gridRowStart'] . ' / ' . $attr['gridRowEnd'];
			}

			// For tablet.
			if ( ! empty( $attr['gridColumnStartTablet'] ) && ! empty( $attr['gridColumnEndTablet'] ) ) {
				$gridChildrenCSSTab['grid-column'] = $attr['gridColumnStartTablet'] . ' / ' . $attr['gridColumnEndTablet'];
			}

			if ( ! empty( $attr['gridRowStartTablet'] ) && ! empty( $attr['gridRowEndTablet'] ) ) {
				$gridChildrenCSSTab['grid-row'] = $attr['gridRowStartTablet'] . ' / ' . $attr['gridRowEndTablet'];
			}

			// For mobile.
			if ( ! empty( $attr['gridColumnStartMobile'] ) && ! empty( $attr['gridColumnEndMobile'] ) ) {
				$gridChildrenCSSMobile['grid-column'] = $attr['gridColumnStartMobile'] . ' / ' . $attr['gridColumnEndMobile'];
			}

			if ( ! empty( $attr['gridRowStartMobile'] ) && ! empty( $attr['gridRowEndMobile'] ) ) {
				$gridChildrenCSSMobile['grid-row'] = $attr['gridRowStartMobile'] . ' / ' . $attr['gridRowEndMobile'];
			}   
		} else {
			// For desktop.
			if ( ! empty( $attr['gridColumnSpan'] ) ) {
				$gridChildrenCSS['grid-column'] = 'span ' . $attr['gridColumnSpan'];
			}

			if ( ! empty( $attr['gridRowSpan'] ) ) {
				$gridChildrenCSS['grid-row'] = 'span ' . $attr['gridRowSpan'];
			}

			// For tablet.
			if ( ! empty( $attr['gridColumnSpanTablet'] ) ) {
				$gridChildrenCSSTab['grid-column'] = 'span ' . $attr['gridColumnSpanTablet'];
			}

			if ( ! empty( $attr['gridRowSpanTablet'] ) ) {
				$gridChildrenCSSTab['grid-row'] = 'span ' . $attr['gridRowSpanTablet'];
			}

			// For mobile.
			if ( ! empty( $attr['gridColumnSpanMobile'] ) ) {
				$gridChildrenCSSMobile['grid-column'] = 'span ' . $attr['gridColumnSpanMobile'];
			}

			if ( ! empty( $attr['gridRowSpanMobile'] ) ) {
				$gridChildrenCSSMobile['grid-row'] = 'span ' . $attr['gridRowSpanMobile'];
			}
		}

		// For desktop.
		if ( ! empty( $attr['gridAlignItems'] ) ) {
			$gridChildrenCSS['align-self'] = $attr['gridAlignItems'];
		}

		if ( ! empty( $attr['gridJustifyItems'] ) ) {
			$gridChildrenCSS['justify-self'] = $attr['gridJustifyItems'];
		}

		// For tablet.
		if ( ! empty( $attr['gridAlignItemsTablet'] ) ) {
			$gridChildrenCSSTab['align-self'] = $attr['gridAlignItemsTablet'];
		}

		if ( ! empty( $attr['gridJustifyItemsTablet'] ) ) {
			$gridChildrenCSSTab['justify-self'] = $attr['gridJustifyItemsTablet'];
		}

		// For mobile.
		if ( ! empty( $attr['gridAlignItemsMobile'] ) ) {
			$gridChildrenCSSMobile['align-self'] = $attr['gridAlignItemsMobile'];
		}

		if ( ! empty( $attr['gridJustifyItemsMobile'] ) ) {
			$gridChildrenCSSMobile['justify-self'] = $attr['gridJustifyItemsMobile'];
		}

		$selectors[ $base_selector ]   = array_merge( $selectors[ $base_selector ], $gridChildrenCSS );
		$t_selectors[ $base_selector ] = array_merge( $t_selectors[ $base_selector ], $gridChildrenCSSTab );
		$m_selectors[ $base_selector ] = array_merge( $m_selectors[ $base_selector ], $gridChildrenCSSMobile );
	}

	// Add dynamic content fallback handling.
	if ( ! empty( $attr['dynamicContent']['bgImage']['enable'] ) ) {
		$dynamicContent = $attr['dynamicContent']['bgImage'];
		
		// Get the fallback image from the advanced field.
		$fallbackImage = '';
		if ( ! empty( $dynamicContent['advanced'] ) ) {
			$advancedParts = explode( '|', $dynamicContent['advanced'] );
			if ( count( $advancedParts ) > 1 ) {
				$fallbackImage = $advancedParts[1];
			}
		}

		if ( $fallbackImage ) {
			// Generate background objects for each device.
			$bg_obj_desktop           = generate_background_object( $attr, $fallbackImage, 'desktop' );
			$container_bg_css_desktop = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_desktop, 'no' );

			// Add the CSS to the selectors if it exists.
			if ( ! empty( $container_bg_css_desktop ) ) {
				$selectors[ $base_selector ] = array_merge(
					isset( $selectors[ $base_selector ] ) ? $selectors[ $base_selector ] : array(),
					$container_bg_css_desktop
				);
			}

			// Add tablet version if needed.
			if ( isset( $attr['backgroundRepeatTablet'] ) && ! empty( $attr['backgroundRepeatTablet'] ) ) {
				$bg_obj_tablet           = generate_background_object( $attr, $fallbackImage, 'tablet' );
				$container_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet, 'no' );
				
				if ( ! empty( $container_bg_css_tablet ) ) {
					$t_selectors[ $base_selector ] = array_merge(
						isset( $t_selectors[ $base_selector ] ) ? $t_selectors[ $base_selector ] : array(),
						$container_bg_css_tablet
					);
				}
			}

			// Add mobile version if needed.
			if ( isset( $attr['backgroundRepeatMobile'] ) && ! empty( $attr['backgroundRepeatMobile'] ) ) {
				$bg_obj_mobile           = generate_background_object( $attr, $fallbackImage, 'mobile' );
				$container_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile, 'no' );
				
				if ( ! empty( $container_bg_css_mobile ) ) {
					$m_selectors[ $base_selector ] = array_merge(
						isset( $m_selectors[ $base_selector ] ) ? $m_selectors[ $base_selector ] : array(),
						$container_bg_css_mobile
					);
				}
			}
		}
	}

	$combined_selectors = array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	);

	return UAGB_Helper::generate_all_css( $combined_selectors, '.wp-block-uagb-container' );
PK�][4���Gultimate-addons-for-gutenberg/includes/blocks/container/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.8.0
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined elsewhere.
 *
 * @var int $id  The block ID.
 */

$selector = '.uagb-block-' . $id;
$js       = '';

if ( ! empty( $attr['UAGPosition'] ) && is_string( $attr['UAGPosition'] ) ) {
	$position_attrs = array_merge(
		$attr,
		array(
			'UAGStickyLocation'   => ! empty( $attr['UAGStickyLocation'] ) ? $attr['UAGStickyLocation'] : 'top',
			'UAGStickyRestricted' => ! empty( $attr['UAGStickyRestricted'] ) ? $attr['UAGStickyRestricted'] : false,
			'UAGStickyOffset'     => ( ! empty( $attr['UAGStickyOffset'] ) && is_numeric( $attr['UAGStickyOffset'] ) ) ? $attr['UAGStickyOffset'] : 0,
		)
	);

	ob_start();
	?>
	window.addEventListener("load", function(){
		UAGBBlockPositioning.init( <?php echo wp_json_encode( $position_attrs ); ?>, "<?php echo esc_attr( $selector ); ?>" );
	});
	<?php

	$js = ob_get_clean();
}

return $js;
?>
PK�][��H��Gultimate-addons-for-gutenberg/includes/blocks/masonry-gallery/error_lognu�[���[27-Oct-2025 22:00:19 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/masonry-gallery/block.php:13
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/masonry-gallery/block.php on line 13
PK�][�{��Gultimate-addons-for-gutenberg/includes/blocks/masonry-gallery/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/masonry-gallery';
$block_data = array(
	'slug'        => '',
	'title'       => __( 'Masonry Gallery', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Display your core gallery in a masonary layout.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'extension'   => true,
	'attributes'  => array(),
	'deprecated'  => false,
);
PK�][f�p@��Nultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/error_lognu�[���[27-Oct-2025 04:14:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php on line 14
[29-Oct-2025 04:20:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php on line 14
[29-Oct-2025 04:24:44 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php on line 14
[29-Oct-2025 05:27:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.php on line 14
PK�][ݰ���Nultimate-addons-for-gutenberg/includes/blocks/content-timeline-child/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/content-timeline-child';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Content Timeline Child', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add and customize displaying content of this timeline.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'static_css'  => 'timeline',
	'deprecated'  => false,
);
PK�][����Aultimate-addons-for-gutenberg/includes/blocks/faq-child/error_lognu�[���[27-Oct-2025 14:30:12 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/faq-child/block.php on line 14
PK�][W�����Aultimate-addons-for-gutenberg/includes/blocks/faq-child/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/faq-child';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'FAQ Child', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a frequently asked question/accordian to display information.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'extension'   => false,
	'deprecated'  => false,
);
PK�][��9eXXAultimate-addons-for-gutenberg/includes/blocks/post-grid/error_lognu�[���[28-Oct-2025 11:46:54 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-grid/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-grid/attributes.php on line 10
[28-Oct-2025 11:47:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-grid/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-grid/block.php on line 16
PK�][�}V��&�&Fultimate-addons-for-gutenberg/includes/blocks/post-grid/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$btn_border_attribute     = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$overall_border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'overall' );
$inherit_from_theme       = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );
return array_merge(
	array(
		'blockName'                     => 'post-grid',
		'postsToShow'                   => 6,
		'postsOffset'                   => 0,
		'buttonType'                    => 'primary',
		'post_type'                     => 'grid',
		'align'                         => 'left',
		'rowGap'                        => '20',
		'rowGapTablet'                  => '',
		'rowGapMobile'                  => '',
		'columnGap'                     => '20',
		'columnGapTablet'               => '',
		'columnGapMobile'               => '',
		'bgColor'                       => '#f6f6f6',
		'displayPostTaxonomyAboveTitle' => 'withMeta',
		'titleColor'                    => '',
		'titleTag'                      => 'h4',
		'titleFontSize'                 => '',
		'titleFontSizeType'             => 'px',
		'titleFontSizeMobile'           => '',
		'titleFontSizeTablet'           => '',
		'titleFontFamily'               => '',
		'titleFontWeight'               => '',
		'titleFontStyle'                => '',
		'titleLineHeightType'           => 'em',
		'titleLineHeight'               => '',
		'titleLineHeightTablet'         => '',
		'titleLineHeightMobile'         => '',
		'titleLoadGoogleFonts'          => false,
		'metaFontSize'                  => '',
		'metaFontSizeType'              => 'px',
		'metaFontSizeMobile'            => '',
		'metaFontSizeTablet'            => '',
		'metaFontFamily'                => '',
		'metaFontWeight'                => '',
		'metaFontStyle'                 => '',
		'metaLineHeightType'            => 'em',
		'metaLineHeight'                => '',
		'metaLineHeightTablet'          => '',
		'metaLineHeightMobile'          => '',
		'metaLoadGoogleFonts'           => false,
		'excerptFontSize'               => '',
		'excerptFontSizeType'           => 'px',
		'excerptFontSizeMobile'         => '',
		'excerptFontSizeTablet'         => '',
		'excerptFontFamily'             => '',
		'excerptFontWeight'             => '',
		'excerptFontStyle'              => '',
		'excerptLineHeightType'         => 'em',
		'excerptLineHeight'             => '',
		'excerptLineHeightTablet'       => '',
		'excerptLineHeightMobile'       => '',
		'excerptLoadGoogleFonts'        => false,
		'ctaFontSize'                   => '',
		'ctaFontSizeType'               => 'px',
		'ctaFontSizeTablet'             => '',
		'ctaFontSizeMobile'             => '',
		'ctaFontFamily'                 => '',
		'ctaFontWeight'                 => '',
		'ctaFontStyle'                  => '',
		'ctaLineHeightType'             => 'em',
		'ctaLineHeight'                 => '',
		'ctaLineHeightTablet'           => '',
		'ctaLineHeightMobile'           => '',
		'ctaLoadGoogleFonts'            => false,
		'metaColor'                     => '',
		'highlightedTextColor'          => '#fff',
		'highlightedTextBgColor'        => '#3182ce',
		'excerptColor'                  => '',
		'ctaColor'                      => '',
		'ctaBgType'                     => 'color',
		'ctaBgHType'                    => 'color',
		'ctaBgColor'                    => '',
		'ctaHColor'                     => '',
		'ctaBgHColor'                   => '',
		'contentPadding'                => '20',
		'contentPaddingMobile'          => '',
		'btnVPadding'                   => '',
		'btnHPadding'                   => '',
		'ctaBottomSpace'                => '0',
		'ctaBottomSpaceTablet'          => '',
		'ctaBottomSpaceMobile'          => '',
		'imageBottomSpace'              => '15',
		'imageBottomSpaceTablet'        => '',
		'imageBottomSpaceMobile'        => '',
		'taxonomyBottomSpace'           => '',
		'taxonomyBottomSpaceTablet'     => '',
		'taxonomyBottomSpaceMobile'     => '',
		'titleBottomSpace'              => '15',
		'titleBottomSpaceTablet'        => '',
		'titleBottomSpaceMobile'        => '',
		'metaBottomSpace'               => '15',
		'metaBottomSpaceTablet'         => '',
		'metaBottomSpaceMobile'         => '',
		'excerptBottomSpace'            => '25',
		'excerptBottomSpaceTablet'      => '',
		'excerptBottomSpaceMobile'      => '',
		'overlayOpacity'                => '50',
		'bgOverlayColor'                => '#000000',
		'ctaText'                       => __( 'Read More', 'ultimate-addons-for-gutenberg' ),
		'borderHColor'                  => '',
		'postPagination'                => '',
		'pageLimit'                     => 10,
		'paginationBgActiveColor'       => '#e4e4e4',
		'paginationActiveColor'         => '#333333',
		'paginationBgColor'             => '#e4e4e4',
		'paginationColor'               => '#777777',
		'paginationMarkup'              => '',
		'paginationLayout'              => 'filled',
		'paginationBorderActiveColor'   => '',
		'paginationBorderColor'         => '#333',
		'paginationBorderRadius'        => '',
		'paginationBorderSize'          => 1,
		'paginationSpacing'             => 20,
		'paginationAlignment'           => 'left',
		'paginationNextText'            => '« Previous',
		'paginationPrevText'            => 'Next »',
		'imgPosition'                   => 'top',

		'rowGapUnit'                    => 'px',
		'columnGapUnit'                 => 'px',
		'contentPaddingUnit'            => 'px',
		'excerptBottomSpaceUnit'        => 'px',

		'displayPostContentRadio'       => 'excerpt',
		'paginationSpacingUnit'         => 'px',
		'imageBottomSpaceUnit'          => 'px',
		'taxonomyBottomSpaceUnit'       => 'px',
		'titleBottomSpaceUnit'          => 'px',
		'metaBottomSpaceUnit'           => 'px',
		'ctaBottomSpaceUnit'            => 'px',
		'titleTransform'                => '',
		'metaTransform'                 => '',
		'excerptTransform'              => '',
		'ctaTransform'                  => '',
		'titleDecoration'               => '',
		'metaDecoration'                => '',
		'excerptDecoration'             => '',
		'ctaDecoration'                 => '',
		'paddingBtnTopTablet'           => '',
		'paddingBtnRightTablet'         => '',
		'paddingBtnBottomTablet'        => '',
		'paddingBtnLeftTablet'          => '',
		'paddingBtnTopMobile'           => '',
		'paddingBtnRightMobile'         => '',
		'paddingBtnBottomMobile'        => '',
		'paddingBtnLeftMobile'          => '',
		'paddingBtnUnit'                => 'px',
		'mobilePaddingBtnUnit'          => 'px',
		'tabletPaddingBtnUnit'          => 'px',
		'spacingLink'                   => '',
		'spacingLinkPadding'            => '',
		'paddingTopTablet'              => '',
		'paddingRightTablet'            => '',
		'paddingBottomTablet'           => '',
		'paddingLeftTablet'             => '',
		'paddingUnit'                   => 'px',
		'mobilePaddingUnit'             => 'px',
		'tabletPaddingUnit'             => 'px',
		'layoutConfig'                  => array(
			array( 'uagb/post-image' ),
			array( 'uagb/post-title' ),
			array( 'uagb/post-meta' ),
			array( 'uagb/post-taxonomy' ),
			array( 'uagb/post-excerpt' ),
			array( 'uagb/post-button' ),
		),
		'titleLetterSpacing'            => '',
		'titleLetterSpacingTablet'      => '',
		'titleLetterSpacingMobile'      => '',
		'titleLetterSpacingType'        => 'px',
		'metaLetterSpacing'             => '',
		'metaLetterSpacingTablet'       => '',
		'metaLetterSpacingMobile'       => '',
		'metaLetterSpacingType'         => 'px',
		'excerptLetterSpacing'          => '',
		'excerptLetterSpacingTablet'    => '',
		'excerptLetterSpacingMobile'    => '',
		'excerptLetterSpacingType'      => 'px',
		'ctaLetterSpacing'              => '',
		'ctaLetterSpacingTablet'        => '',
		'ctaLetterSpacingMobile'        => '',
		'ctaLetterSpacingType'          => 'px',
		'useSeparateBoxShadows'         => true,
		'boxShadowColor'                => '#00000070',
		'boxShadowHOffset'              => 0,
		'boxShadowVOffset'              => 0,
		'boxShadowBlur'                 => '',
		'boxShadowSpread'               => '',
		'boxShadowPosition'             => 'outset',
		'boxShadowColorHover'           => '',
		'boxShadowHOffsetHover'         => 0,
		'boxShadowVOffsetHover'         => 0,
		'boxShadowBlurHover'            => '',
		'boxShadowSpreadHover'          => '',
		'boxShadowPositionHover'        => 'outset',
		'columns'                       => 3,
		'tcolumns'                      => 2,
		'mcolumns'                      => 1,
		'imgEqualheight'                => false,
		'paddingTop'                    => 20,
		'paddingBottom'                 => 20,
		'paddingRight'                  => 20,
		'paddingLeft'                   => 20,
		'inheritFromThemeBtn'           => $inherit_from_theme,
		'isLeftToRightLayout'           => false,
		'wrapperTopPadding'             => '',
		'wrapperRightPadding'           => 20,
		'wrapperLeftPadding'            => 20,
		'wrapperBottomPadding'          => '',
		'wrapperTopPaddingTablet'       => '',
		'wrapperRightPaddingTablet'     => '',
		'wrapperLeftPaddingTablet'      => '',
		'wrapperBottomPaddingTablet'    => '',
		'wrapperTopPaddingMobile'       => '',
		'wrapperRightPaddingMobile'     => '',
		'wrapperLeftPaddingMobile'      => '',
		'wrapperBottomPaddingMobile'    => '',
		'wrapperPaddingUnit'            => 'px',
		'wrapperPaddingUnitTablet'      => 'px',
		'wrapperPaddingUnitMobile'      => 'px',
		'wrapperPaddingLink'            => false,
		// Wrapper Alignment.
		'wrapperAlign'                  => 'row',
		'wrapperAlignPosition'          => 'center',
	),
	$btn_border_attribute,
	$overall_border_attribute
);
PK�][��G\��Aultimate-addons-for-gutenberg/includes/blocks/post-grid/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-grid';
$block_data = array(
	'doc'                 => 'post-grid',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'post' ),
	'link'                => 'post-grid',
	'title'               => __( 'Post Grid', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Display your posts in a grid layout.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'post-grid' ),
	'deprecated'          => false,
	'static_css'          => 'post',
	'dynamic_assets'      => array(
		'dir' => 'post-grid',
	),
	'static_dependencies' => array(
		'uagb-post-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'post' ),
			'type' => 'js',
		),
	),
);
PK�][b�H��)�)Hultimate-addons-for-gutenberg/includes/blocks/post-grid/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_post_gfont( $attr );

$paddingLeftMobile  = isset( $attr['paddingLeftMobile'] ) ? $attr['paddingLeftMobile'] : $attr['contentPaddingMobile'];
$paddingRightMobile = isset( $attr['paddingRightMobile'] ) ? $attr['paddingRightMobile'] : $attr['contentPaddingMobile'];
$paddingLeftTablet  = isset( $attr['paddingLeftTablet'] ) ? $attr['paddingLeftTablet'] : $attr['contentPadding'];
$paddingRightTablet = isset( $attr['paddingRightTablet'] ) ? $attr['paddingRightTablet'] : $attr['contentPadding'];
$paddingLeft        = isset( $attr['paddingLeft'] ) ? $attr['paddingLeft'] : $attr['contentPadding'];
$paddingRight       = isset( $attr['paddingRight'] ) ? $attr['paddingRight'] : $attr['contentPadding'];

$selectors = UAGB_Block_Helper::get_post_selectors( $attr );
// Pagination CSS.
$selectors[' .uagb-post-pagination-wrap'] = array(

	'margin-top'                             => UAGB_Helper::get_css_value( $attr['paginationSpacing'], $attr['paginationSpacingUnit'] ),
	'justify-content'                        => $attr['paginationAlignment'],
	'margin-' . $attr['paginationAlignment'] => '10px',
);

if ( 'filled' === $attr['paginationLayout'] ) {
	$selectors[' .uagb-post-pagination-wrap .page-numbers.current'] = array(

		'background-color' => $attr['paginationBgActiveColor'],
		'color'            => $attr['paginationActiveColor'],
	);
	$selectors[' .uagb-post-pagination-wrap a']                     = array(

		'background-color' => $attr['paginationBgColor'],
		'color'            => $attr['paginationColor'],
	);
} else {

	$selectors[' .uagb-post-pagination-wrap .page-numbers.current'] = array(

		'border-style'     => 'solid',
		'background-color' => 'transparent',
		'border-width'     => UAGB_Helper::get_css_value( $attr['paginationBorderSize'], 'px' ),
		'border-color'     => $attr['paginationBorderActiveColor'],
		'border-radius'    => UAGB_Helper::get_css_value( $attr['paginationBorderRadius'], 'px' ),
		'color'            => $attr['paginationActiveColor'],
	);

	$selectors[' .uagb-post-pagination-wrap a'] = array(

		'border-style'     => 'solid',
		'background-color' => 'transparent',
		'border-width'     => UAGB_Helper::get_css_value( $attr['paginationBorderSize'], 'px' ),
		'border-color'     => $attr['paginationBorderColor'],
		'border-radius'    => UAGB_Helper::get_css_value( $attr['paginationBorderRadius'], 'px' ),
		'color'            => $attr['paginationColor'],
	);

}

$m_selectors = UAGB_Block_Helper::get_post_mobile_selectors( $attr );
$t_selectors = UAGB_Block_Helper::get_post_tablet_selectors( $attr );

if ( 'top' === $attr['imgPosition'] ) {
	$selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:last-child']   = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeft, $attr['contentPaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRight, $attr['contentPaddingUnit'] ),
	);
	$m_selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:last-child'] = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeftMobile, $attr['mobilePaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRightMobile, $attr['mobilePaddingUnit'] ),
	);
	$m_selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:last-child'] = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeftTablet, $attr['tabletPaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRightTablet, $attr['tabletPaddingUnit'] ),
	);
} else {
	$selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2)']   = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeft, $attr['contentPaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRight, $attr['contentPaddingUnit'] ),
	);
	$m_selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2)'] = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeftMobile, $attr['mobilePaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRightMobile, $attr['mobilePaddingUnit'] ),
	);
	$m_selectors['.uagb-equal_height_inline-read-more-buttons .uagb-post__inner-wrap .uagb-post__text:nth-last-child(2)'] = array(
		'left'  => UAGB_Helper::get_css_value( $paddingLeftTablet, $attr['tabletPaddingUnit'] ),
		'right' => UAGB_Helper::get_css_value( $paddingRightTablet, $attr['tabletPaddingUnit'] ),
	);
}

if ( $attr['isLeftToRightLayout'] ) {
	$selectors['.wp-block-uagb-post-grid'] = array(
		'display'        => 'flex',
		'flex-direction' => 'column',
	);

	$selectors['.wp-block-uagb-post-grid article'] = array(
		'display'        => 'flex',
		'flex-direction' => $attr['wrapperAlign'],
		'width'          => '100%',
	);

	$selectors['.wp-block-uagb-post-grid .uagb-post__image'] = array(
		'flex'  => 'none',
		'width' => ( 'top' === $attr['imgPosition'] ) ? '35%' : '100%',
	);

}


$selectors['.wp-block-uagb-post-grid .uag-post-grid-wrapper'] = array(
	'padding-top'     => UAGB_Helper::get_css_value( $attr['wrapperTopPadding'], $attr['wrapperPaddingUnit'] ),
	'padding-right'   => UAGB_Helper::get_css_value( $attr['wrapperRightPadding'], $attr['wrapperPaddingUnit'] ),
	'padding-bottom'  => UAGB_Helper::get_css_value( $attr['wrapperBottomPadding'], $attr['wrapperPaddingUnit'] ),
	'padding-left'    => UAGB_Helper::get_css_value( $attr['wrapperLeftPadding'], $attr['wrapperPaddingUnit'] ),
	'width'           => '100%',
	'display'         => 'flex',
	'flex-direction'  => 'column',
	'justify-content' => $attr['wrapperAlignPosition'],
);


	$t_selectors['.wp-block-uagb-post-grid .uag-post-grid-wrapper'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['wrapperTopPaddingTablet'], $attr['wrapperPaddingUnitTablet'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['wrapperRightPaddingTablet'], $attr['wrapperPaddingUnitTablet'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['wrapperBottomPaddingTablet'], $attr['wrapperPaddingUnitTablet'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['wrapperLeftPaddingTablet'], $attr['wrapperPaddingUnitTablet'] ),
	);

	$m_selectors['.wp-block-uagb-post-grid .uag-post-grid-wrapper'] = array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['wrapperTopPaddingMobile'], $attr['wrapperPaddingUnitMobile'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['wrapperRightPaddingMobile'], $attr['wrapperPaddingUnitMobile'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['wrapperBottomPaddingMobile'], $attr['wrapperPaddingUnitMobile'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['wrapperLeftPaddingMobile'], $attr['wrapperPaddingUnitMobile'] ),
		'width'          => 'unset',
	);

	if ( $attr['isLeftToRightLayout'] ) {
		$m_selectors['.wp-block-uagb-post-grid .uagb-post__image'] = array(
			'width' => ( 'top' === $attr['imgPosition'] ) ? 'unset' : '100%',
		);
		$t_selectors['.wp-block-uagb-post-grid .uagb-post__image'] = array(
			'width' => ( 'top' === $attr['imgPosition'] ) ? '45%' : '100%',
		);
	}

	if ( 'aboveTitle' === $attr['displayPostTaxonomyAboveTitle'] ) {

		$selectors   = array_merge(
			$selectors,
			array(
				' span.uagb-post__taxonomy' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpace'], $attr['taxonomyBottomSpaceUnit'] ),
				),
			)
		);
		$m_selectors = array_merge(
			$m_selectors,
			array(
				' span.uagb-post__taxonomy' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceMobile'], $attr['taxonomyBottomSpaceUnit'] ),
				),
			)
		);
		$t_selectors = array_merge(
			$t_selectors,
			array(
				' span.uagb-post__taxonomy' => array(
					'padding-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
				),
				' .uagb-post__inner-wrap span.uagb-post__taxonomy.highlighted' => array(
					'margin-bottom' => UAGB_Helper::get_css_value( $attr['taxonomyBottomSpaceTablet'], $attr['taxonomyBottomSpaceUnit'] ),
				),
			)
		);
	}

	$m_selectors['.wp-block-uagb-post-grid']         = ( $attr['isLeftToRightLayout'] ? array(
		'display' => 'grid',
	) : array() );
	$m_selectors['.wp-block-uagb-post-grid article'] = ( $attr['isLeftToRightLayout'] ? array(
		'display' => 'inline-block',
	) : array() );

	$combined_selectors = array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	);


	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-post__text.uagb-post__title a', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline > span', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline time', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__text.uagb-post-grid-byline .uagb-post__author a', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' span.uagb-post__taxonomy', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'meta', ' .uagb-post__inner-wrap .uagb-post__taxonomy.highlighted', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'excerpt', ' .uagb-post__text.uagb-post__excerpt', $combined_selectors );
	if ( ! $attr['inheritFromThemeBtn'] ) {
		$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta', $combined_selectors );
		$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'cta', ' .uagb-post__text.uagb-post__cta a', $combined_selectors );
	}

	return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][�7��
�
Eultimate-addons-for-gutenberg/includes/blocks/inline-notice/error_lognu�[���[27-Oct-2025 04:22:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/block.php on line 16
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 11
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 13
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 13
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 14
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 14
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 15
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 15
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 16
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 16
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 17
[27-Oct-2025 04:38:57 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 17
[27-Oct-2025 04:38:57 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php:23
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.php on line 23
PK�][&�k�\\Jultimate-addons-for-gutenberg/includes/blocks/inline-notice/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                 => '',
	'c_id'                     => null,
	'cookies'                  => false,
	'close_cookie_days'        => 1,
	'textColor'                => '',
	'titleColor'               => '',
	'noticeColor'              => '#FFD54F',
	'contentBgColor'           => '',
	'fontSize'                 => '14',
	'icon'                     => 'rectangle-xmark',
	'iconSize'                 => 16,
	'iconSizeTab'              => '',
	'iconSizeMob'              => '',
	'iconSizeUnit'             => 'px',
	'noticeDismiss'            => '',
	'noticeDismissColor'       => '',
	'noticeAlignment'          => 'left',
	'titleFontFamily'          => 'Default',
	'titleFontWeight'          => '',
	'titleFontSizeType'        => 'px',
	'titleLineHeightType'      => '',
	'titleFontSize'            => '',
	'titleFontSizeTablet'      => '',
	'titleFontSizeMobile'      => '',
	'titleLineHeight'          => '',
	'titleLineHeightTablet'    => '',
	'titleLineHeightMobile'    => '',
	'descFontFamily'           => 'Default',
	'descFontWeight'           => '',
	'descFontSize'             => '',
	'descFontSizeType'         => 'px',
	'descFontSizeTablet'       => '',
	'descFontSizeMobile'       => '',
	'descLineHeight'           => '',
	'descLineHeightType'       => '',
	'descLineHeightTablet'     => '',
	'descLineHeightMobile'     => '',
	'titleLoadGoogleFonts'     => '',
	'descLoadGoogleFonts'      => '',
	'contentPaddingUnit'       => 'px',
	'mobileContentPaddingUnit' => 'px',
	'tabletContentPaddingUnit' => 'px',
	'contentPaddingLink'       => false,
	'titleHrPadding'           => 15,
	'titleVrPadding'           => 15,
	'contentHrPadding'         => 15,
	'contentVrPadding'         => 15,
	'contentTopPadding'        => '',
	'contentBottomPadding'     => '',
	'contentLeftPadding'       => '',
	'contentRightPadding'      => '',
	'titlePaddingUnit'         => 'px',
	'mobileTitlePaddingUnit'   => 'px',
	'tabletTitlePaddingUnit'   => 'px',
	'titlePaddingLink'         => false,
	'layout'                   => 'modern',
	'highlightWidth'           => 10,
	'highlightWidthTablet'     => 10,
	'highlightWidthMobile'     => 10,
	'titleTransform'           => '',
	'titleDecoration'          => '',
	'descTransform'            => '',
	'descDecoration'           => '',
	'titleFontStyle'           => '',
	'descFontStyle'            => '',
	// letter spacing.
	'titleLetterSpacing'       => '',
	'titleLetterSpacingTablet' => '',
	'titleLetterSpacingMobile' => '',
	'titleLetterSpacingType'   => 'px',
	'descLetterSpacing'        => '',
	'descLetterSpacingTablet'  => '',
	'descLetterSpacingMobile'  => '',
	'descLetterSpacingType'    => 'px',
	'titleLeftPadding'         => '',
	'titleRightPadding'        => '',
	'titleTopPadding'          => '',
	'titleBottomPadding'       => '',


);
PK�][�ԇ=@@Eultimate-addons-for-gutenberg/includes/blocks/inline-notice/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/inline-notice';
$block_data = array(
	'doc'                 => 'inline-notice',
	'slug'                => '',
	'admin_categories'    => array( 'content' ),
	'link'                => 'inline-notice',
	'title'               => __( 'Inline Notice', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Highlight important information using inline notice block.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'inline-notice' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-inline-notice-js' => array(
			'src'        => UAGB_Scripts_Utils::get_js_url( 'inline-notice' ),
			'dep'        => array( 'uagb-cookie-lib' ),
			'skipEditor' => true,
			'type'       => 'js',
		),
		'uagb-cookie-lib'       => array(
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'inline-notice',
	),
);
PK�][�-S'H'HLultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @var mixed[] $attr The block attributes.
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_inline_notice_gfont( $attr );

$t_selectors = array();
$m_selectors = array();
$selectors   = array();

$left_padding         = 0;
$right_padding        = 0;
$left_padding_mobile  = 0;
$right_padding_mobile = 0;
$left_padding_tablet  = 0;
$right_padding_tablet = 0;

$title_top_padding    = ( isset( $attr['titleTopPadding'] ) && is_numeric( $attr['titleTopPadding'] ) ) ? $attr['titleTopPadding'] : $attr['titleVrPadding'];
$title_bottom_padding = ( isset( $attr['titleBottomPadding'] ) && is_numeric( $attr['titleBottomPadding'] ) ) ? $attr['titleBottomPadding'] : $attr['titleVrPadding'];
$title_left_padding   = ( isset( $attr['titleLeftPadding'] ) && is_numeric( $attr['titleLeftPadding'] ) ) ? $attr['titleLeftPadding'] : $attr['titleHrPadding'];
$title_right_padding  = ( isset( $attr['titleRightPadding'] ) && is_numeric( $attr['titleRightPadding'] ) ) ? $attr['titleRightPadding'] : $attr['titleHrPadding'];

$title_top_padding_mobile    = ( isset( $attr['titleTopPaddingMobile'] ) && is_numeric( $attr['titleTopPaddingMobile'] ) ) ? $attr['titleTopPaddingMobile'] : $attr['titleVrPadding'];
$title_bottom_padding_mobile = ( isset( $attr['titleBottomPaddingMobile'] ) && is_numeric( $attr['titleBottomPaddingMobile'] ) ) ? $attr['titleBottomPaddingMobile'] : $attr['titleVrPadding'];
$title_left_padding_mobile   = ( isset( $attr['titleLeftPaddingMobile'] ) && is_numeric( $attr['titleLeftPaddingMobile'] ) ) ? $attr['titleLeftPaddingMobile'] : $attr['titleHrPadding'];
$title_right_padding_mobile  = ( isset( $attr['titleRightPaddingMobile'] ) && is_numeric( $attr['titleRightPaddingMobile'] ) ) ? $attr['titleRightPaddingMobile'] : $attr['titleHrPadding'];

$title_top_padding_tablet    = ( isset( $attr['titleTopPaddingTablet'] ) && is_numeric( $attr['titleTopPaddingTablet'] ) ) ? $attr['titleTopPaddingTablet'] : $attr['titleVrPadding'];
$title_bottom_padding_tablet = ( isset( $attr['titleBottomPaddingTablet'] ) && is_numeric( $attr['titleBottomPaddingTablet'] ) ) ? $attr['titleBottomPaddingTablet'] : $attr['titleVrPadding'];
$title_left_padding_tablet   = ( isset( $attr['titleLeftPaddingTablet'] ) && is_numeric( $attr['titleLeftPaddingTablet'] ) ) ? $attr['titleLeftPaddingTablet'] : $attr['titleHrPadding'];
$title_right_padding_tablet  = ( isset( $attr['titleRightPaddingTablet'] ) && is_numeric( $attr['titleRightPaddingTablet'] ) ) ? $attr['titleRightPaddingTablet'] : $attr['titleHrPadding'];

$content_top_padding    = ( isset( $attr['contentTopPadding'] ) && is_numeric( $attr['contentTopPadding'] ) ) ? $attr['contentTopPadding'] : $attr['contentVrPadding'];
$content_bottom_padding = ( isset( $attr['contentBottomPadding'] ) && is_numeric( $attr['contentBottomPadding'] ) ) ? $attr['contentBottomPadding'] : $attr['contentVrPadding'];
$content_left_padding   = ( isset( $attr['contentLeftPadding'] ) && is_numeric( $attr['contentLeftPadding'] ) ) ? $attr['contentLeftPadding'] : $attr['contentHrPadding'];
$content_right_padding  = ( isset( $attr['contentRightPadding'] ) && is_numeric( $attr['contentRightPadding'] ) ) ? $attr['contentRightPadding'] : $attr['contentHrPadding'];

$content_top_padding_mobile    = ( isset( $attr['contentTopPaddingMobile'] ) && is_numeric( $attr['contentTopPaddingMobile'] ) ) ? $attr['contentTopPaddingMobile'] : $attr['contentVrPadding'];
$content_bottom_padding_mobile = ( isset( $attr['contentBottomPaddingMobile'] ) && is_numeric( $attr['contentBottomPaddingMobile'] ) ) ? $attr['contentBottomPaddingMobile'] : $attr['contentVrPadding'];
$content_left_padding_mobile   = ( isset( $attr['contentLeftPaddingMobile'] ) && is_numeric( $attr['contentLeftPaddingMobile'] ) ) ? $attr['contentLeftPaddingMobile'] : $attr['contentHrPadding'];
$content_right_padding_mobile  = ( isset( $attr['contentRightPaddingMobile'] ) && is_numeric( $attr['contentRightPaddingMobile'] ) ) ? $attr['contentRightPaddingMobile'] : $attr['contentHrPadding'];

$content_top_padding_tablet    = ( isset( $attr['contentTopPaddingTablet'] ) && is_numeric( $attr['contentTopPaddingTablet'] ) ) ? $attr['contentTopPaddingTablet'] : $attr['contentVrPadding'];
$content_bottom_padding_tablet = ( isset( $attr['contentBottomPaddingTablet'] ) && is_numeric( $attr['contentBottomPaddingTablet'] ) ) ? $attr['contentBottomPaddingTablet'] : $attr['contentVrPadding'];
$content_left_padding_tablet   = ( isset( $attr['contentLeftPaddingTablet'] ) && is_numeric( $attr['contentLeftPaddingTablet'] ) ) ? $attr['contentLeftPaddingTablet'] : $attr['contentHrPadding'];
$content_right_padding_tablet  = ( isset( $attr['contentRightPaddingTablet'] ) && is_numeric( $attr['contentRightPaddingTablet'] ) ) ? $attr['contentRightPaddingTablet'] : $attr['contentHrPadding'];

$pos_top_tab        = isset( $attr['titleTopPaddingTablet'] ) ? $attr['titleTopPaddingTablet'] : $attr['titleTopPadding'];
$pos_left_tab       = isset( $attr['titleLeftPaddingTablet'] ) ? $attr['titleLeftPaddingTablet'] : $attr['titleLeftPadding'];
$pos_right_tab      = isset( $attr['titleRightPaddingTablet'] ) ? $attr['titleRightPaddingTablet'] : $attr['titleRightPadding'];
$pos_classic_tab    = isset( $attr['highlightWidthTablet'] ) ? $attr['highlightWidthTablet'] : $attr['highlightWidth'];
$pos_top_unit_tab   = isset( $attr['titleTopPaddingTablet'] ) ? $attr['tabletTitlePaddingUnit'] : $attr['titlePaddingUnit'];
$pos_left_unit_tab  = isset( $attr['titleLeftPaddingTablet'] ) ? $attr['tabletTitlePaddingUnit'] : $attr['titlePaddingUnit'];
$pos_right_unit_tab = isset( $attr['titleRightPaddingTablet'] ) ? $attr['tabletTitlePaddingUnit'] : $attr['titlePaddingUnit'];

$pos_top_mob        = isset( $attr['titleTopPaddingMobile'] ) ? $attr['titleTopPaddingMobile'] : $pos_top_tab;
$pos_left_mob       = isset( $attr['titleLeftPaddingMobile'] ) ? $attr['titleLeftPaddingMobile'] : $pos_left_tab;
$pos_right_mob      = isset( $attr['titleRightPaddingMobile'] ) ? $attr['titleRightPaddingMobile'] : $pos_right_tab;
$pos_classic_mob    = isset( $attr['highlightWidthMobile'] ) ? $attr['highlightWidthMobile'] : $pos_classic_tab;
$pos_top_unit_mob   = isset( $attr['titleTopPaddingMobile'] ) ? $attr['mobileTitlePaddingUnit'] : $pos_top_unit_tab;
$pos_left_unit_mob  = isset( $attr['titleLeftPaddingMobile'] ) ? $attr['mobileTitlePaddingUnit'] : $pos_left_unit_tab;
$pos_right_unit_mob = isset( $attr['titleRightPaddingMobile'] ) ? $attr['mobileTitlePaddingUnit'] : $pos_right_unit_tab;

if ( $attr['noticeDismiss'] ) {
	if ( 'left' === $attr['noticeAlignment'] || 'center' === $attr['noticeAlignment'] ) {
		$right_padding        = $title_right_padding;
		$left_padding         = $title_left_padding;
		$left_padding_mobile  = $title_left_padding_mobile;
		$right_padding_mobile = $title_right_padding_mobile;
		$left_padding_tablet  = $title_left_padding_tablet;
		$right_padding_tablet = $title_right_padding_tablet;
	} else {
		$left_padding         = $title_left_padding;
		$right_padding        = $title_right_padding;
		$left_padding_mobile  = $title_left_padding_mobile;
		$right_padding_mobile = $title_right_padding_mobile;
		$left_padding_tablet  = $title_left_padding_tablet;
		$right_padding_tablet = $title_right_padding_tablet;
	}
} else {
	$left_padding         = $title_left_padding;
	$right_padding        = $title_right_padding;
	$left_padding_mobile  = $title_left_padding_mobile;
	$right_padding_mobile = $title_right_padding_mobile;
	$left_padding_tablet  = $title_left_padding_tablet;
	$right_padding_tablet = $title_right_padding_tablet;
}

$selectors = array(
	'.wp-block-uagb-inline-notice .uagb-notice-title' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding, $attr['titlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding, $attr['titlePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $title_top_padding, $attr['titlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $title_bottom_padding, $attr['titlePaddingUnit'] ),
		'color'          => $attr['titleColor'],
	),
	' .uagb-notice-text'                              => array(
		'color'          => $attr['textColor'],
		'padding-left'   => UAGB_Helper::get_css_value( $content_left_padding, $attr['contentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $content_right_padding, $attr['contentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $content_top_padding, $attr['contentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $content_bottom_padding, $attr['contentPaddingUnit'] ),
	),
	' span.uagb-notice-dismiss svg'                   => array( // For Backward.
		'fill'  => $attr['noticeDismissColor'],
		'color' => $attr['noticeDismissColor'],
	),
	' svg'                                            => array( // For Backward.
		'fill'  => $attr['noticeDismissColor'],
		'color' => $attr['noticeDismissColor'],
	),
	' button[type="button"] svg'                      => array(
		'fill'  => $attr['noticeDismissColor'],
		'color' => $attr['noticeDismissColor'],
	),
	'.uagb-dismissable button[type="button"] svg'     => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $attr['titleTopPadding'], $attr['titlePaddingUnit'] ),
	),
	'.uagb-dismissable > svg'                         => array( // For Backward.
		'width'  => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSize'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $attr['titleTopPadding'], $attr['titlePaddingUnit'] ),
	),
	'.uagb-inline_notice__align-left button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $attr['titleRightPadding'], $attr['titlePaddingUnit'] ),
	),
	'.uagb-inline_notice__align-left svg'             => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $attr['titleRightPadding'], $attr['titlePaddingUnit'] ),
	),
	'.uagb-inline_notice__align-center button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $attr['titleRightPadding'], $attr['titlePaddingUnit'] ),
	),
	'.uagb-inline_notice__align-center svg'           => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $attr['titleRightPadding'], $attr['titlePaddingUnit'] ),
	),
);

$m_selectors = array(
	' .uagb-notice-text'                          => array(
		'color'          => $attr['textColor'],
		'padding-left'   => UAGB_Helper::get_css_value( $content_left_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $content_right_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $content_top_padding_mobile, $attr['mobileContentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $content_bottom_padding_mobile, $attr['mobileContentPaddingUnit'] ),
	),
	' .uagb-notice-title'                         => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_mobile, $attr['mobileTitlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_mobile, $attr['mobileTitlePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $title_top_padding_mobile, $attr['mobileTitlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $title_bottom_padding_mobile, $attr['mobileTitlePaddingUnit'] ),
	),
	'.uagb-dismissable button[type="button"] svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeMob'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeMob'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $pos_top_mob, $pos_top_unit_mob ),
	),
	'.uagb-dismissable > svg'                     => array( // For Backward.
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeMob'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeMob'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $pos_top_mob, $pos_top_unit_mob ),
	),
	'.uagb-inline_notice__align-left button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $pos_right_mob, $pos_right_unit_mob ),
	),
	'.uagb-inline_notice__align-left svg'         => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $pos_right_mob, $pos_right_unit_mob ),
	),
	'.uagb-inline_notice__align-center button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $pos_right_mob, $pos_right_unit_mob ),
	),
	'.uagb-inline_notice__align-center svg'       => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $pos_right_mob, $pos_right_unit_mob ),
	),
);

$t_selectors = array(
	' .uagb-notice-text'                          => array(
		'padding-left'   => UAGB_Helper::get_css_value( $content_left_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $content_right_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $content_top_padding_tablet, $attr['tabletContentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $content_bottom_padding_tablet, $attr['tabletContentPaddingUnit'] ),
	),
	' .uagb-notice-title'                         => array(
		'padding-left'   => UAGB_Helper::get_css_value( $left_padding_tablet, $attr['tabletTitlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $right_padding_tablet, $attr['tabletTitlePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $title_top_padding_tablet, $attr['tabletTitlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $title_bottom_padding_tablet, $attr['tabletTitlePaddingUnit'] ),
	),
	'.uagb-dismissable button[type="button"] svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeTab'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeTab'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $pos_top_tab, $pos_top_unit_tab ),
	),
	'.uagb-dismissable > svg'                     => array( // For Backward.
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeTab'], $attr['iconSizeUnit'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeTab'], $attr['iconSizeUnit'] ),
		'top'    => UAGB_Helper::get_css_value( $pos_top_tab, $pos_top_unit_tab ),
	),
	'.uagb-inline_notice__align-left button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $pos_right_tab, $pos_right_unit_tab ),
	),
	'.uagb-inline_notice__align-left svg'         => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $pos_right_tab, $pos_right_unit_tab ),
	),
	'.uagb-inline_notice__align-center button[type="button"] svg' => array(
		'right' => UAGB_Helper::get_css_value( $pos_right_tab, $pos_right_unit_tab ),
	),
	'.uagb-inline_notice__align-center svg'       => array( // For Backward.
		'right' => UAGB_Helper::get_css_value( $pos_right_tab, $pos_right_unit_tab ),
	),
);

if ( 'modern' === $attr['layout'] ) {

	$selectors[' .uagb-notice-title']['background-color']        = $attr['noticeColor'];
	$selectors[' .uagb-notice-title']['border-top-right-radius'] = '3px';
	$selectors[' .uagb-notice-title']['border-top-left-radius']  = '3px';

	$selectors[' .uagb-notice-text']['background-color']           = $attr['contentBgColor'];
	$selectors[' .uagb-notice-text']['border']                     = '2px solid ' . $attr['noticeColor'];
	$selectors[' .uagb-notice-text']['border-bottom-left-radius']  = '3px';
	$selectors[' .uagb-notice-text']['border-bottom-right-radius'] = '3px';

	$selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left']   = UAGB_Helper::get_css_value( $attr['titleLeftPadding'], $attr['titlePaddingUnit'] );
	$t_selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left'] = UAGB_Helper::get_css_value( $pos_left_tab, $pos_left_unit_tab );
	$m_selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left'] = UAGB_Helper::get_css_value( $pos_left_mob, $pos_left_unit_mob );

} elseif ( 'simple' === $attr['layout'] ) {

	$selectors[' .uagb-notice-title']['background-color'] = $attr['contentBgColor'];
	$selectors[' .uagb-notice-title']['border-left']      = UAGB_Helper::get_css_value( $attr['highlightWidth'], 'px' ) . ' solid ' . $attr['noticeColor'];
	$t_selectors[' .uagb-notice-title']['border-left']    = UAGB_Helper::get_css_value( $attr['highlightWidthTablet'], 'px' ) . ' solid ' . $attr['noticeColor'];
	$m_selectors[' .uagb-notice-title']['border-left']    = UAGB_Helper::get_css_value( $attr['highlightWidthMobile'], 'px' ) . ' solid ' . $attr['noticeColor'];

	$selectors[' .uagb-notice-text']['background-color'] = $attr['contentBgColor'];
	$selectors[' .uagb-notice-text']['border-left']      = UAGB_Helper::get_css_value( $attr['highlightWidth'], 'px' ) . ' solid ' . $attr['noticeColor'];
	$t_selectors[' .uagb-notice-text']['border-left']    = UAGB_Helper::get_css_value( $attr['highlightWidthTablet'], 'px' ) . ' solid ' . $attr['noticeColor'];
	$m_selectors[' .uagb-notice-text']['border-left']    = UAGB_Helper::get_css_value( $attr['highlightWidthMobile'], 'px' ) . ' solid ' . $attr['noticeColor'];

	$selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left']   = 'calc(' . $attr['titleLeftPadding'] . $attr['titlePaddingUnit'] . ' + ' . $attr['highlightWidth'] . 'px)';
	$t_selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left'] = 'calc(' . $pos_left_tab . $pos_left_unit_tab . ' + ' . $pos_classic_tab . 'px)';
	$m_selectors['.uagb-inline_notice__align-right button[type="button"] svg']['left'] = 'calc(' . $pos_left_mob . $pos_left_unit_mob . ' + ' . $pos_classic_mob . 'px)';

}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-notice-title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-notice-text', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . $id );
PK�][�&rRbbKultimate-addons-for-gutenberg/includes/blocks/inline-notice/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$base_selector = '.uagb-block-';
$selector      = $base_selector . $id;
$js_attr       = array(
	'c_id'              => $attr['c_id'],
	'cookies'           => $attr['cookies'],
	'close_cookie_days' => $attr['close_cookie_days'],
	'noticeDismiss'     => $attr['noticeDismiss'],
	'icon'              => $attr['icon'],
);

ob_start();
?>
window.addEventListener( 'DOMContentLoaded', function() {
	UAGBInlineNotice.init( <?php echo wp_json_encode( $js_attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
PK�][ă:&Gultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/error_lognu�[���[27-Oct-2025 04:42:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php on line 16
[29-Oct-2025 20:01:01 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php on line 16
[29-Oct-2025 20:17:32 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.php on line 16
PK�][Y�(���Lultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'               => false,
	'block_id'                   => '',
	'headingAlign'               => 'left',
	'descColor'                  => '#333',
	'priceColor'                 => '#888888',
	'titleColor'                 => '#333',
	'imagePosition'              => 'left',
	'imageAlignment'             => 'top',
	'titleFontSize'              => '',
	'titleFontSizeType'          => 'px',
	'titleFontSizeMobile'        => '',
	'titleFontSizeTablet'        => '',
	'titleFontFamily'            => '',
	'titleFontWeight'            => '',
	'titleFontStyle'             => '',
	'titleLineHeightType'        => 'em',
	'titleLineHeight'            => 1,
	'titleLineHeightTablet'      => 1,
	'titleLineHeightMobile'      => 1,
	'titleLoadGoogleFonts'       => false,
	'priceFontSize'              => '',
	'priceFontSizeType'          => 'px',
	'priceFontSizeMobile'        => '',
	'priceFontSizeTablet'        => '',
	'priceFontFamily'            => '',
	'priceFontWeight'            => '',
	'priceFontStyle'             => '',
	'priceLineHeightType'        => 'em',
	'priceLineHeight'            => 1,
	'priceLineHeightTablet'      => 1,
	'priceLineHeightMobile'      => 1,
	'priceLoadGoogleFonts'       => false,
	'descFontSize'               => '',
	'descFontSizeType'           => 'px',
	'descFontSizeMobile'         => '',
	'descFontSizeTablet'         => '',
	'descFontFamily'             => '',
	'descFontWeight'             => '',
	'descFontStyle'              => '',
	'descLineHeightType'         => 'em',
	'descLineHeight'             => 1,
	'descLineHeightTablet'       => 1,
	'descLineHeightMobile'       => 1,
	'descLoadGoogleFonts'        => false,
	'priceSpace'                 => 5,
	'descSpace'                  => 15,
	'titleSpace'                 => 10,
	'titleSpaceTablet'           => '',
	'titleSpaceMobile'           => '',
	'imgVrPadding'               => '',
	'imgHrPadding'               => 10,
	'imgTopPadding'              => 0,
	'imgBottomPadding'           => 0,
	'iconImage'                  => '',
	'imageSize'                  => 'medium',
	'imageWidth'                 => 100,
	'imageWidthTablet'           => '',
	'imageWidthMobile'           => '',
	'columns'                    => 2,
	'tcolumns'                   => 2,
	'mcolumns'                   => 1,
	'rowGap'                     => 10,
	'rowGapTablet'               => '',
	'rowGapMobile'               => '',
	'columnGap'                  => 10,
	'columnGapTablet'            => '',
	'columnGapMobile'            => '',
	'contentHrPadding'           => '',
	'contentVrPadding'           => '',
	'seperatorStyle'             => 'dashed',
	'seperatorWidth'             => 100,
	'seperatorWidthTablet'       => '',
	'seperatorWidthMobile'       => '',
	'seperatorThickness'         => 1,
	'seperatorColor'             => '#b2b4b5',
	'imageWidthType'             => 'px',
	'seperatorWidthType'         => '%',
	'rowGapType'                 => 'px',
	'columnGapType'              => 'px',
	'titleSpaceType'             => 'px',
	'contentPaddingTopTablet'    => '',
	'contentPaddingRightTablet'  => '',
	'contentPaddingBottomTablet' => '',
	'contentPaddingLeftTablet'   => '',
	'contentPaddingTopMobile'    => '',
	'contentPaddingRightMobile'  => '',
	'contentPaddingBottomMobile' => '',
	'contentPaddingLeftMobile'   => '',
	'contentPaddingUnit'         => 'px',
	'contentMobilePaddingUnit'   => 'px',
	'contentTabletPaddingUnit'   => 'px',
	'imgPaddingTop'              => '',
	'imgPaddingBottom'           => '',
	'imgPaddingLeft'             => 10,
	'imgPaddingRight'            => 10,
	'imgPaddingTopTablet'        => '',
	'imgPaddingRightTablet'      => '',
	'imgPaddingBottomTablet'     => 10,
	'imgPaddingLeftTablet'       => '',
	'imgPaddingTopMobile'        => '',
	'imgPaddingRightMobile'      => '',
	'imgPaddingBottomMobile'     => 10,
	'imgPaddingLeftMobile'       => '',
	'imgPaddingUnit'             => 'px',
	'imgMobilePaddingUnit'       => 'px',
	'imgTabletPaddingUnit'       => 'px',
	'titleTransform'             => '',
	'titleDecoration'            => '',
	'descTransform'              => '',
	'descDecoration'             => '',
	'priceTransform'             => '',
	'priceDecoration'            => '',
	'descLetterSpacing'          => '',
	'descLetterSpacingTablet'    => '',
	'descLetterSpacingMobile'    => '',
	'descLetterSpacingType'      => 'px',
	'priceLetterSpacing'         => '',
	'priceLetterSpacingTablet'   => '',
	'priceLetterSpacingMobile'   => '',
	'priceLetterSpacingType'     => 'px',
	'titleLetterSpacing'         => '',
	'titleLetterSpacingTablet'   => '',
	'titleLetterSpacingMobile'   => '',
	'titleLetterSpacingType'     => 'px',
	'imgAlign'                   => 'side',
	'stack'                      => 'tablet',
);
PK�][����Gultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/restaurant-menu';
$block_data = array(
	'doc'              => 'price-list',
	'slug'             => '',
	'admin_categories' => array( 'content' ),
	'link'             => 'price-list',
	'title'            => __( 'Price List', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Create an attractive price list for your products.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'price-list' ),
	'deprecated'       => false,
	'static_css'       => 'price-list',
	'dynamic_assets'   => array(
		'dir' => 'restaurant-menu',
	),
);
PK�][t��p�4�4Nultimate-addons-for-gutenberg/includes/blocks/restaurant-menu/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_restaurant_menu_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$row_gap_tablet_fallback = is_numeric( $attr['rowGapTablet'] ) ? $attr['rowGapTablet'] : $attr['rowGap'];
$row_gap_mobile_fallback = is_numeric( $attr['rowGapMobile'] ) ? $attr['rowGapMobile'] : $row_gap_tablet_fallback;

$attr['columnGapTablet'] = is_numeric( $attr['columnGapTablet'] ) ? $attr['columnGapTablet'] : $attr['columnGap'];
$attr['columnGapMobile'] = is_numeric( $attr['columnGapMobile'] ) ? $attr['columnGapMobile'] : $attr['columnGapTablet'];

$attr['imageWidthTablet'] = is_numeric( $attr['imageWidthTablet'] ) ? $attr['imageWidthTablet'] : $attr['imageWidth'];
$attr['imageWidthMobile'] = is_numeric( $attr['imageWidthMobile'] ) ? $attr['imageWidthMobile'] : $attr['imageWidthTablet'];

$align = $attr['headingAlign'];
if ( 'left' === $align ) {
	$align = 'flex-start';
} elseif ( 'right' === $align ) {
	$align = 'flex-end';
}
$imgPaddingTop    = isset( $attr['imgPaddingTop'] ) ? $attr['imgPaddingTop'] : $attr['imgVrPadding'];
$imgPaddingRight  = isset( $attr['imgPaddingRight'] ) ? $attr['imgPaddingRight'] : $attr['imgHrPadding'];
$imgPaddingBottom = isset( $attr['imgPaddingBottom'] ) ? $attr['imgPaddingBottom'] : $attr['imgVrPadding'];
$imgPaddingLeft   = isset( $attr['imgPaddingLeft'] ) ? $attr['imgPaddingLeft'] : $attr['imgHrPadding'];

$contentPaddingTop    = isset( $attr['contentPaddingTop'] ) ? $attr['contentPaddingTop'] : $attr['contentVrPadding'];
$contentPaddingRight  = isset( $attr['contentPaddingRight'] ) ? $attr['contentPaddingRight'] : $attr['contentHrPadding'];
$contentPaddingBottom = isset( $attr['contentPaddingBottom'] ) ? $attr['contentPaddingBottom'] : $attr['contentVrPadding'];
$contentPaddingLeft   = isset( $attr['contentPaddingLeft'] ) ? $attr['contentPaddingLeft'] : $attr['contentHrPadding'];

$selectors = array(
	'.wp-block-uagb-restaurant-menu' => array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['columnGap'], $attr['columnGapType'] ),
		'row-gap'    => UAGB_Helper::get_css_value( $attr['rowGap'], $attr['rowGapType'] ),
	),
	' .uagb-rest_menu__wrap img'     => array(
		'padding-left'   => UAGB_Helper::get_css_value( $imgPaddingLeft, $attr['imgPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $imgPaddingRight, $attr['imgPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $imgPaddingTop, $attr['imgPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $imgPaddingBottom, $attr['imgPaddingUnit'] ),
		'width'          => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthType'] ),
		'max-width'      => UAGB_Helper::get_css_value( $attr['imageWidth'], $attr['imageWidthType'] ),
	),
	// Backward.
	' .uagb-rm__separator-parent'    => array(
		'justify-content' => $align,
	),
	' .uagb-rm__content'             => array(
		'padding-left'   => UAGB_Helper::get_css_value( $contentPaddingLeft, $attr['contentPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $contentPaddingRight, $attr['contentPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $contentPaddingTop, $attr['contentPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $contentPaddingBottom, $attr['contentPaddingUnit'] ),
	),
	' .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title' => array(
		'color'         => $attr['titleColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpace'], $attr['titleSpaceType'] ),
	),
	' .uagb-rm__price'               => array(
		'color' => $attr['priceColor'],
	),
	' .uagb-rm__desc'                => array(
		'color'         => $attr['descColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpace'], 'px' ),
	),
);

$t_selectors = array(
	' .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceTablet'], $attr['titleSpaceType'] ),
	),
	'.wp-block-uagb-restaurant-menu' => array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['columnGapTablet'], $attr['columnGapType'] ),
		'row-gap'    => UAGB_Helper::get_css_value( $row_gap_tablet_fallback, $attr['rowGapType'] ),
	),
	' .uagb-rest_menu__wrap img'     => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['imgPaddingLeftTablet'], $attr['imgTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['imgPaddingRightTablet'], $attr['imgTabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['imgPaddingTopTablet'], $attr['imgTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['imgPaddingBottomTablet'], $attr['imgTabletPaddingUnit'] ),
		'width'          => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthType'] ),
		'max-width'      => UAGB_Helper::get_css_value( $attr['imageWidthTablet'], $attr['imageWidthType'] ),
	),
	' .uagb-rm__content'             => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['contentPaddingLeftTablet'], $attr['contentTabletPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['contentPaddingRightTablet'], $attr['contentTabletPaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['contentPaddingTopTablet'], $attr['contentTabletPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['contentPaddingBottomTablet'], $attr['contentTabletPaddingUnit'] ),
	),
);

$m_selectors = array(
	' .uagb-rest_menu__wrap .uagb-rm__content .uagb-rm-details .uagb-rm__title' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['titleSpaceMobile'], $attr['titleSpaceType'] ),
	),
	'.wp-block-uagb-restaurant-menu' => array(
		'column-gap' => UAGB_Helper::get_css_value( $attr['columnGapMobile'], $attr['columnGapType'] ),
		'row-gap'    => UAGB_Helper::get_css_value( $row_gap_mobile_fallback, $attr['rowGapType'] ),
	),
	' .uagb-rest_menu__wrap img'     => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['imgPaddingLeftMobile'], $attr['imgMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['imgPaddingRightMobile'], $attr['imgMobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['imgPaddingTopMobile'], $attr['imgMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['imgPaddingBottomMobile'], $attr['imgMobilePaddingUnit'] ),
		'width'          => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthType'] ),
		'max-width'      => UAGB_Helper::get_css_value( $attr['imageWidthMobile'], $attr['imageWidthType'] ),
	),
	' .uagb-rm__content'             => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['contentPaddingLeftMobile'], $attr['contentMobilePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['contentPaddingRightMobile'], $attr['contentMobilePaddingUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['contentPaddingTopMobile'], $attr['contentMobilePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['contentPaddingBottomMobile'], $attr['contentMobilePaddingUnit'] ),
	),
);

if ( 'none' !== $attr['seperatorStyle'] ) {
	$selectors[' .uagb-rest_menu__wrap .uagb-rm__separator']   = array(
		'border-top-color' => $attr['seperatorColor'],
		'border-top-style' => $attr['seperatorStyle'],
		'border-top-width' => UAGB_Helper::get_css_value( $attr['seperatorThickness'], 'px' ),
		'width'            => UAGB_Helper::get_css_value( $attr['seperatorWidth'], $attr['seperatorWidthType'] ),
	);
	$t_selectors[' .uagb-rest_menu__wrap .uagb-rm__separator'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['seperatorWidthTablet'], $attr['seperatorWidthType'] ),
	);
	$m_selectors[' .uagb-rest_menu__wrap .uagb-rm__separator'] = array(
		'width' => UAGB_Helper::get_css_value( $attr['seperatorWidthMobile'], $attr['seperatorWidthType'] ),
	);
}
if ( 1 === $attr['columns'] ) {
	$selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto',
	);
}
if ( 2 === $attr['columns'] ) {
	$selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto',
	);
}
if ( 3 === $attr['columns'] ) {
	$selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto',
	);
}
if ( 4 === $attr['columns'] ) {
	$selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto auto',
	);
}

if ( 1 === $attr['tcolumns'] ) {
	$t_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto',
	);
}
if ( 2 === $attr['tcolumns'] ) {
	$t_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto',
	);
}
if ( 3 === $attr['tcolumns'] ) {
	$t_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto',
	);
}
if ( 4 === $attr['tcolumns'] ) {
	$t_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto auto',
	);
}
if ( 1 === $attr['mcolumns'] ) {
	$m_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto',
	);
}
if ( 2 === $attr['mcolumns'] ) {
	$m_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto',
	);
}
if ( 3 === $attr['mcolumns'] ) {
	$m_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto',
	);
}
if ( 4 === $attr['mcolumns'] ) {
	$m_selectors['.wp-block-uagb-restaurant-menu.uagb-rest_menu__outer-wrap '] = array(
		'grid-template-columns' => 'auto auto auto auto',
	);
}
if ( 'side' === $attr['imgAlign'] ) {
	$selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
		'align-items' => 'top' === $attr['imageAlignment'] ? 'flex-start' : 'center',
		'display'     => 'inline-flex',
	);

	if ( 'tablet' === $attr['stack'] ) {
		if ( 'left' === $attr['imagePosition'] ) {
			$t_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'    => 'block',
				'text-align' => 'left',
			);
			$m_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'    => 'block',
				'text-align' => 'left',
			);
		} else {
			$t_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'        => 'flex',
				'flex-direction' => 'column-reverse',
				'align-items'    => 'flex-end',
			);
			$m_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'        => 'flex',
				'flex-direction' => 'column-reverse',
				'align-items'    => 'flex-end',
			);
		}
	} elseif ( 'mobile' === $attr['stack'] ) {
		if ( 'left' === $attr['imagePosition'] ) {
			$m_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'    => 'block',
				'text-align' => 'left',
			);
		} else {
			$m_selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
				'display'        => 'flex',
				'flex-direction' => 'column-reverse',
				'align-items'    => 'flex-end',
			);
		}
	}
	if ( 'left' === $attr['imagePosition'] ) {
		$selectors[' .uagb-rm-details'] = array(
			'text-align' => 'left',
		);
	} elseif ( 'right' === $attr['imagePosition'] ) {
		$selectors[' .uagb-rm-details'] = array(
			'text-align' => 'right',
		);
		$selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__separator'] = array(
			'margin-left' => 'auto',
		);
	}
}

if ( 'top' === $attr['imgAlign'] ) {
	$selectors[' .wp-block-uagb-restaurant-menu-child ']                  = array(
		'text-align' => $attr['headingAlign'],
		'display'    => 'block',
	);
	$selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__content'] = array(
		'text-align' => $attr['headingAlign'],
		'display'    => 'inline-flex',
	);
	if ( 'center' === $attr['headingAlign'] ) {
		$selectors[' .uagb-rm__content ']                                        = array(
			'display' => 'block',
		);
		$selectors[' .uagb-rm__content ']                                        = array(
			'display' => 'block',
		);
		$selectors[' .wp-block-uagb-restaurant-menu-child  .uagb-rm__separator'] = array(
			'margin' => '0 auto',
		);
	} elseif ( 'right' === $attr['headingAlign'] ) {
		$selectors[' .wp-block-uagb-restaurant-menu-child .uagb-rm__separator'] = array(
			'margin-left' => 'auto',
		);
	}
}
$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-rm__title', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'price', ' .uagb-rm__price', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-rm__desc', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.wp-block-uagb-restaurant-menu.uagb-block-' : '#uagb-rm-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�a�))Eultimate-addons-for-gutenberg/includes/blocks/popup-builder/error_lognu�[���[27-Oct-2025 03:54:38 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/attributes.php on line 10
[27-Oct-2025 04:18:08 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/block.php on line 16
[27-Oct-2025 04:46:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function get_the_ID() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/frontend.js.php:11
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/popup-builder/frontend.js.php on line 11
PK�][^C�Jultimate-addons-for-gutenberg/includes/blocks/popup-builder/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$content_border_attributes = UAGB_Block_Helper::uag_generate_border_attribute( 'content' );

return array_merge(
	$content_border_attributes,
	array(
		// ------------------------- BLOCK SETTINGS.
		'block_id'                    => '',
		'isPreview'                   => false,
		'variationSelected'           => false,
		'variantType'                 => '',
		// ------------------------- POPUP SETTINGS.
		'popupPositionH'              => '',
		'popupPositionV'              => '',
		'popupContentAlignmentV'      => 'flex-start',
		'popupWidth'                  => 700,
		'popupWidthTablet'            => '',
		'popupWidthMobile'            => '',
		'popupWidthUnit'              => 'px',
		'popupWidthUnitTablet'        => 'px',
		'popupWidthUnitMobile'        => 'px',
		'popupHeight'                 => '',
		'popupHeightTablet'           => '',
		'popupHeightMobile'           => '',
		'popupMaxHeight'              => '',
		'popupMaxHeightTablet'        => '',
		'popupMaxHeightMobile'        => '',
		'popupHeightUnit'             => 'px',
		'popupHeightUnitTablet'       => 'px',
		'popupHeightUnitMobile'       => 'px',
		'hasFixedHeight'              => false,
		'popupBehaviour'              => 'overlay',
		'hasOverlay'                  => true,
		'isDismissable'               => true,
		'haltBackgroundInteraction'   => true,
		'willPushContent'             => true,
		// ------------------------- CLOSE SETTINGS.
		'closeIcon'                   => 'xmark',
		'closeIconPosition'           => 'top-right',
		'closeOverlayClick'           => true,
		'closeEscapePress'            => true,
		// ------------------------- POPUP STYLING ( BACKGROUND ).
		'selectGradient'              => 'basic',
		'gradientValue'               => 'linear-gradient(90deg, rgb(149, 201, 242) 0%, rgb(206, 168, 240) 100%)',
		'gradientColor1'              => '#06558a',
		'gradientColor2'              => '#0063a1',
		'gradientType'                => 'linear',
		'gradientLocation1'           => 0,
		'gradientLocationTablet1'     => '',
		'gradientLocationMobile1'     => '',
		'gradientLocation2'           => 100,
		'gradientLocationTablet2'     => '',
		'gradientLocationMobile2'     => '',
		'gradientAngle'               => 0,
		'gradientAngleTablet'         => '',
		'gradientAngleMobile'         => '',
		'backgroundImageColor'        => '#ffffff75',
		'backgroundSizeDesktop'       => 'cover',
		'backgroundSizeTablet'        => '',
		'backgroundSizeMobile'        => '',
		'backgroundCustomSizeDesktop' => 100,
		'backgroundCustomSizeTablet'  => '',
		'backgroundCustomSizeMobile'  => '',
		'backgroundCustomSizeType'    => '%',
		'backgroundRepeatDesktop'     => 'no-repeat',
		'backgroundRepeatTablet'      => '',
		'backgroundRepeatMobile'      => '',
		'backgroundAttachmentDesktop' => 'scroll',
		'backgroundAttachmentTablet'  => '',
		'backgroundAttachmentMobile'  => '',
		'backgroundPositionDesktop'   => array(
			'x' => 0.5,
			'y' => 0.5,
		),
		'backgroundPositionTablet'    => '',
		'backgroundPositionMobile'    => '',
		'backgroundImageDesktop'      => '',
		'backgroundImageTablet'       => '',
		'backgroundImageMobile'       => '',
		'backgroundColor'             => '#ffffff',
		'backgroundType'              => 'none',
		'overlayType'                 => 'none',
		'customPosition'              => 'default',
		'xPositionDesktop'            => '',
		'xPositionTablet'             => '',
		'xPositionMobile'             => '',
		'xPositionType'               => 'px',
		'xPositionTypeTablet'         => 'px',
		'xPositionTypeMobile'         => 'px',
		'yPositionDesktop'            => '',
		'yPositionTablet'             => '',
		'yPositionMobile'             => '',
		'yPositionType'               => 'px',
		'yPositionTypeTablet'         => 'px',
		'yPositionTypeMobile'         => 'px',
		// ------------------------- POPUP STYLING.
		'popupOverlayColor'           => 'rgba(0,0,0,0.75)',
		// ------------------------- CLOSE STYLING.
		'closeIconSize'               => 25,
		'closeIconSizeTablet'         => '',
		'closeIconSizeMobile'         => '',
		'closeIconColor'              => '',
		'closeIconColorHover'         => '',
		// ------------------------- BOX SHADOW STYLING.
		'useSeparateBoxShadows'       => false,
		'boxShadowColor'              => '#00000070',
		'boxShadowHOffset'            => 0,
		'boxShadowVOffset'            => 0,
		'boxShadowBlur'               => '',
		'boxShadowSpread'             => '',
		'boxShadowPosition'           => 'outset',
		'boxShadowColorHover'         => '',
		'boxShadowHOffsetHover'       => 0,
		'boxShadowVOffsetHover'       => 0,
		'boxShadowBlurHover'          => '',
		'boxShadowSpreadHover'        => '',
		'boxShadowPositionHover'      => 'outset',
		// ------------------------- SPACE STYLING ( POPUP ).
		'popupPaddingTop'             => 32,
		'popupPaddingRight'           => 32,
		'popupPaddingBottom'          => 32,
		'popupPaddingLeft'            => 32,
		'popupPaddingTopTablet'       => '',
		'popupPaddingRightTablet'     => '',
		'popupPaddingBottomTablet'    => '',
		'popupPaddingLeftTablet'      => '',
		'popupPaddingTopMobile'       => '',
		'popupPaddingRightMobile'     => '',
		'popupPaddingBottomMobile'    => '',
		'popupPaddingLeftMobile'      => '',
		'popupPaddingUnit'            => 'px',
		'popupPaddingUnitTablet'      => 'px',
		'popupPaddingUnitMobile'      => 'px',
		'popupPaddingLink'            => true,
		'popupMarginTop'              => '',
		'popupMarginRight'            => '',
		'popupMarginBottom'           => '',
		'popupMarginLeft'             => '',
		'popupMarginTopTablet'        => '',
		'popupMarginRightTablet'      => '',
		'popupMarginBottomTablet'     => '',
		'popupMarginLeftTablet'       => '',
		'popupMarginTopMobile'        => '',
		'popupMarginRightMobile'      => '',
		'popupMarginBottomMobile'     => '',
		'popupMarginLeftMobile'       => '',
		'popupMarginUnit'             => 'px',
		'popupMarginUnitTablet'       => 'px',
		'popupMarginUnitMobile'       => 'px',
		'popupMarginLink'             => true,
		// ------------------------- SPACE STYLING ( CLOSE BUTTON ).
		'closePaddingTop'             => '',
		'closePaddingRight'           => '',
		'closePaddingBottom'          => '',
		'closePaddingLeft'            => '',
		'closePaddingTopTablet'       => '',
		'closePaddingRightTablet'     => '',
		'closePaddingBottomTablet'    => '',
		'closePaddingLeftTablet'      => '',
		'closePaddingTopMobile'       => '',
		'closePaddingRightMobile'     => '',
		'closePaddingBottomMobile'    => '',
		'closePaddingLeftMobile'      => '',
		'closePaddingUnit'            => 'px',
		'closePaddingUnitTablet'      => 'px',
		'closePaddingUnitMobile'      => 'px',
		'closePaddingLink'            => true,
		// ------------------------- BORDER OVERWRITING VALUES.
		'contentBorderStyle'          => 'default',
	)
);
PK�][��#���Eultimate-addons-for-gutenberg/includes/blocks/popup-builder/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$block_slug = 'uagb/popup-builder';
$block_data = array(
	'doc'              => 'popup-builder',
	'slug'             => '',
	'admin_categories' => array( 'content', 'creative', 'pro' ),
	'link'             => 'popup-builder',
	'title'            => __( 'Popup Builder', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Create eye-catching popups that can be reused sitewide!', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => true,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'popup-builder' ),
	'dynamic_assets'   => array(
		'dir' => 'popup-builder',
	),
);
PK�][��DEOEOLultimate-addons-for-gutenberg/includes/blocks/popup-builder/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 */

// Setup Defaults for Variants.
if ( 'banner' === $attr['variantType'] ) {
	$popup_position_v = ! empty( $attr['popupPositionV'] ) ? $attr['popupPositionV'] : 'flex-start';
	$popup_position_h = '';
} else {
	$popup_position_v = ! empty( $attr['popupPositionV'] ) ? $attr['popupPositionV'] : 'center';
	$popup_position_h = ! empty( $attr['popupPositionH'] ) ? $attr['popupPositionH'] : 'center';
}

// Border Attributes.
$content_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content' );
$content_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content', 'tablet' );
$content_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'content', 'mobile' );

// Background CSS.
$bg_obj_desktop = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageDesktop'],
	'backgroundColor'          => $attr['backgroundColor'],
	'selectGradient'           => $attr['selectGradient'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientLocation1'        => $attr['gradientLocation1'],
	'gradientLocation2'        => $attr['gradientLocation2'],
	'gradientType'             => $attr['gradientType'],
	'gradientAngle'            => $attr['gradientAngle'],
	'backgroundRepeat'         => $attr['backgroundRepeatDesktop'],
	'backgroundPosition'       => $attr['backgroundPositionDesktop'],
	'backgroundSize'           => $attr['backgroundSizeDesktop'],
	'backgroundAttachment'     => $attr['backgroundAttachmentDesktop'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeDesktop'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionDesktop'],
	'xPositionType'            => $attr['xPositionType'],
	'yPosition'                => $attr['yPositionDesktop'],
	'yPositionType'            => $attr['yPositionType'],
);
$bg_obj_tablet  = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageTablet'],
	'backgroundColor'          => $attr['backgroundColor'],
	'selectGradient'           => $attr['selectGradient'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $bg_obj_desktop['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $bg_obj_desktop['gradientLocation2'],
	'gradientType'             => $attr['gradientType'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $bg_obj_desktop['gradientAngle'],
	'backgroundRepeat'         => $attr['backgroundRepeatTablet'],
	'backgroundPosition'       => $attr['backgroundPositionTablet'],
	'backgroundSize'           => $attr['backgroundSizeTablet'],
	'backgroundAttachment'     => $attr['backgroundAttachmentTablet'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeTablet'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionTablet'],
	'xPositionType'            => $attr['xPositionTypeTablet'],
	'yPosition'                => $attr['yPositionTablet'],
	'yPositionType'            => $attr['yPositionTypeTablet'],
);
$bg_obj_mobile  = array(
	'backgroundType'           => $attr['backgroundType'],
	'backgroundImage'          => $attr['backgroundImageMobile'],
	'backgroundColor'          => $attr['backgroundColor'],
	'selectGradient'           => $attr['selectGradient'],
	'gradientValue'            => $attr['gradientValue'],
	'gradientColor1'           => $attr['gradientColor1'],
	'gradientColor2'           => $attr['gradientColor2'],
	'gradientLocation1'        => is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $bg_obj_tablet['gradientLocation1'],
	'gradientLocation2'        => is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $bg_obj_tablet['gradientLocation2'],
	'gradientType'             => $attr['gradientType'],
	'gradientAngle'            => is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $bg_obj_tablet['gradientAngle'],
	'backgroundRepeat'         => $attr['backgroundRepeatMobile'],
	'backgroundPosition'       => $attr['backgroundPositionMobile'],
	'backgroundSize'           => $attr['backgroundSizeMobile'],
	'backgroundAttachment'     => $attr['backgroundAttachmentMobile'],
	'backgroundImageColor'     => $attr['backgroundImageColor'],
	'overlayType'              => $attr['overlayType'],
	'backgroundCustomSize'     => $attr['backgroundCustomSizeMobile'],
	'backgroundCustomSizeType' => $attr['backgroundCustomSizeType'],
	'customPosition'           => $attr['customPosition'],
	'xPosition'                => $attr['xPositionMobile'],
	'xPositionType'            => $attr['xPositionTypeMobile'],
	'yPosition'                => $attr['yPositionMobile'],
	'yPositionType'            => $attr['yPositionTypeMobile'],
);

$popup_bg_css        = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_desktop );
$popup_bg_css_tablet = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_tablet );
$popup_bg_css_mobile = UAGB_Block_Helper::uag_get_background_obj( $bg_obj_mobile );

// Box Shadow CSS.
$box_shadow_properties       = array(
	'horizontal' => $attr['boxShadowHOffset'],
	'vertical'   => $attr['boxShadowVOffset'],
	'blur'       => $attr['boxShadowBlur'],
	'spread'     => $attr['boxShadowSpread'],
	'color'      => $attr['boxShadowColor'],
	'position'   => $attr['boxShadowPosition'],
);
$box_shadow_hover_properties = array(
	'horizontal' => $attr['boxShadowHOffsetHover'],
	'vertical'   => $attr['boxShadowVOffsetHover'],
	'blur'       => $attr['boxShadowBlurHover'],
	'spread'     => $attr['boxShadowSpreadHover'],
	'color'      => $attr['boxShadowColorHover'],
	'position'   => $attr['boxShadowPositionHover'],
	'alt_color'  => $attr['boxShadowColor'],
);

$box_shadow_css       = UAGB_Block_Helper::generate_shadow_css( $box_shadow_properties );
$box_shadow_hover_css = UAGB_Block_Helper::generate_shadow_css( $box_shadow_hover_properties );

$selectors = array(
	'.uagb-popup-builder'                         => array(
		'align-items'      => $popup_position_v,
		'justify-content'  => $popup_position_h,
		'background-color' => $attr['hasOverlay'] ? $attr['popupOverlayColor'] : '',
		'pointer-events'   => ( 'banner' === $attr['variantType'] || ( 'popup' === $attr['variantType'] && ! $attr['haltBackgroundInteraction'] ) ) ? 'none' : '',
	),
	' .uagb-popup-builder__wrapper'               => array(
		'pointer-events' => 'auto',
	),
	' .uagb-popup-builder__wrapper--banner'       => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : 'auto',
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : '',
	),
	' .uagb-popup-builder__wrapper--popup'        => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : '',
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : '',
		'width'      => UAGB_Helper::get_css_value( $attr['popupWidth'], $attr['popupWidthUnit'] ),
		'margin'     => UAGB_Block_Helper::generate_spacing(
			$attr['popupMarginUnit'],
			$attr['popupMarginTop'],
			$attr['popupMarginRight'],
			$attr['popupMarginBottom'],
			$attr['popupMarginLeft']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close'                 => array(
		'left'    => ( ( 'top-left' === $attr['closeIconPosition'] && ! is_rtl() ) || ( 'top-right' === $attr['closeIconPosition'] && is_rtl() ) ) ? 0 : '',
		'right'   => ( ( 'top-right' === $attr['closeIconPosition'] && ! is_rtl() ) || ( 'top-left' === $attr['closeIconPosition'] && is_rtl() ) ) ? 0 : '',
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnit'],
			$attr['closePaddingTop'],
			$attr['closePaddingRight'],
			$attr['closePaddingBottom'],
			$attr['closePaddingLeft']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close svg'             => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'fill'        => $attr['closeIconColor'],
	),
	' button.uagb-popup-builder__close'           => array(
		'left'    => ( ( 'top-left' === $attr['closeIconPosition'] && ! is_rtl() ) || ( 'top-right' === $attr['closeIconPosition'] && is_rtl() ) ) ? 0 : '',
		'right'   => ( ( 'top-right' === $attr['closeIconPosition'] && ! is_rtl() ) || ( 'top-left' === $attr['closeIconPosition'] && is_rtl() ) ) ? 0 : '',
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnit'],
			$attr['closePaddingTop'],
			$attr['closePaddingRight'],
			$attr['closePaddingBottom'],
			$attr['closePaddingLeft']
		),
	),
	' button.uagb-popup-builder__close svg'       => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSize'], 'px' ),
		'fill'        => $attr['closeIconColor'],
	),
	' button.uagb-popup-builder__close:hover svg' => array(
		'fill' => $attr['closeIconColorHover'],
	),
	' button.uagb-popup-builder__close:focus svg' => array(
		'fill' => $attr['closeIconColorHover'],
	),
	' .uagb-popup-builder__container'             => array_merge(
		array(
			'justify-content' => $attr['hasFixedHeight'] ? $attr['popupContentAlignmentV'] : '',
			'overflow-y'      => $attr['hasFixedHeight'] && ( 'center' === $attr['popupContentAlignmentV'] || 'flex-end' === $attr['popupContentAlignmentV'] ) ? 'hidden' : '',
			'box-shadow'      => $box_shadow_css,
			'padding'         => UAGB_Block_Helper::generate_spacing(
				$attr['popupPaddingUnit'],
				$attr['popupPaddingTop'],
				$attr['popupPaddingRight'],
				$attr['popupPaddingBottom'],
				$attr['popupPaddingLeft']
			),
		),
		$popup_bg_css,
		$content_border_css
	),
	' .uagb-popup-builder__container:hover'       => array(
		'box-shadow'   => $attr['useSeparateBoxShadows'] ? $box_shadow_hover_css : '',
		'border-color' => $attr['contentBorderHColor'],
	),
	' .uagb-popup-builder__container--banner'     => array(
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : '',
	),
	' .uagb-popup-builder__container--popup'      => array(
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeight'], $attr['popupHeightUnit'] ) : '',
	),
);

$t_selectors = array(
	' .uagb-popup-builder__wrapper--banner'   => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : 'auto',
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : '',
	),
	' .uagb-popup-builder__wrapper--popup'    => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : '',
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : '',
		'width'      => UAGB_Helper::get_css_value( $attr['popupWidthTablet'], $attr['popupWidthUnitTablet'] ),
		'margin'     => UAGB_Block_Helper::generate_spacing(
			$attr['popupMarginUnitTablet'],
			$attr['popupMarginTopTablet'],
			$attr['popupMarginRightTablet'],
			$attr['popupMarginBottomTablet'],
			$attr['popupMarginLeftTablet']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close'             => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnitTablet'],
			$attr['closePaddingTopTablet'],
			$attr['closePaddingRightTablet'],
			$attr['closePaddingBottomTablet'],
			$attr['closePaddingLeftTablet']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close svg'         => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
	),
	' button.uagb-popup-builder__close'       => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnitTablet'],
			$attr['closePaddingTopTablet'],
			$attr['closePaddingRightTablet'],
			$attr['closePaddingBottomTablet'],
			$attr['closePaddingLeftTablet']
		),
	),
	' button.uagb-popup-builder__close svg'   => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSizeTablet'], 'px' ),
	),
	' .uagb-popup-builder__container'         => array_merge(
		array(
			'padding' => UAGB_Block_Helper::generate_spacing(
				$attr['popupPaddingUnitTablet'],
				$attr['popupPaddingTopTablet'],
				$attr['popupPaddingRightTablet'],
				$attr['popupPaddingBottomTablet'],
				$attr['popupPaddingLeftTablet']
			),
		),
		$popup_bg_css_tablet,
		$content_border_css_tablet
	),
	' .uagb-popup-builder__container--banner' => array(
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : '',
	),
	' .uagb-popup-builder__container--popup'  => array(
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightTablet'], $attr['popupHeightUnitTablet'] ) : '',
	),
);
$m_selectors = array(
	' .uagb-popup-builder__wrapper--banner'   => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : 'auto',
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : '',
	),
	' .uagb-popup-builder__wrapper--popup'    => array(
		'height'     => $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : '',
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : '',
		'width'      => UAGB_Helper::get_css_value( $attr['popupWidthMobile'], $attr['popupWidthUnitMobile'] ),
		'margin'     => UAGB_Block_Helper::generate_spacing(
			$attr['popupMarginUnitMobile'],
			$attr['popupMarginTopMobile'],
			$attr['popupMarginRightMobile'],
			$attr['popupMarginBottomMobile'],
			$attr['popupMarginLeftMobile']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close'             => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnitMobile'],
			$attr['closePaddingTopMobile'],
			$attr['closePaddingRightMobile'],
			$attr['closePaddingBottomMobile'],
			$attr['closePaddingLeftMobile']
		),
	),
	// Backward Compatibility - Close button CSS for v2.12.2 and below.
	' .uagb-popup-builder__close svg'         => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
	),
	' button.uagb-popup-builder__close'       => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['closePaddingUnitMobile'],
			$attr['closePaddingTopMobile'],
			$attr['closePaddingRightMobile'],
			$attr['closePaddingBottomMobile'],
			$attr['closePaddingLeftMobile']
		),
	),
	' button.uagb-popup-builder__close svg'   => array(
		'width'       => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'height'      => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'line-height' => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['closeIconSizeMobile'], 'px' ),
	),
	' .uagb-popup-builder__container'         => array_merge(
		array(
			'padding' => UAGB_Block_Helper::generate_spacing(
				$attr['popupPaddingUnitMobile'],
				$attr['popupPaddingTopMobile'],
				$attr['popupPaddingRightMobile'],
				$attr['popupPaddingBottomMobile'],
				$attr['popupPaddingLeftMobile']
			),
		),
		$popup_bg_css_mobile,
		$content_border_css_mobile
	),
	' .uagb-popup-builder__container--banner' => array(
		'min-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : '',
	),
	' .uagb-popup-builder__container--popup'  => array(
		'max-height' => ! $attr['hasFixedHeight'] ? UAGB_Helper::get_css_value( $attr['popupHeightMobile'], $attr['popupHeightUnitMobile'] ) : '',
	),
);

// If Background Type or Background Image is not set, add the default background color.
// Tablet and Mobile Image Backgrounds are handled by the device hierarchy.
if ( 'none' === $attr['backgroundType'] || ( 'image' === $attr['backgroundType'] && ! $attr['backgroundImageDesktop'] ) ) {
	$selectors[' .uagb-popup-builder__container']['background-color'] = '#fff';
}

// If this is a Banner, add the required static CSS overrides.
if ( 'banner' === $attr['variantType'] ) {
	$selectors['.uagb-popup-builder']['width']  = '100%';
	$selectors['.uagb-popup-builder']['height'] = 'unset';
	// If this is a Push Banner, add the Push Banner CSS as well.
	if ( $attr['willPushContent'] ) {
		$selectors['.uagb-popup-builder']['align-items'] = 'flex-start';
		$selectors['.uagb-popup-builder']['position']    = 'relative';
		$selectors['.uagb-popup-builder']['transition']  = 'max-height 0.5s cubic-bezier(1, 0, 1, 1)';
		$selectors['.uagb-popup-builder']['max-height']  = 0;
		$selectors['.uagb-popup-builder']['opacity']     = 1;
		$selectors['.uagb-popup-builder']['z-index']     = 9999;
		// Else if this is not a Push Banner, add the Bottom Banner overrides if needed.
	} elseif ( 'flex-end' === $attr['popupPositionV'] ) {
		$selectors['.uagb-popup-builder']['top']    = 'unset';
		$selectors['.uagb-popup-builder']['bottom'] = 0;
	}
}

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'popup-builder', 
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr
);

$block_selector = '.uagb-block-' . $id;

return UAGB_Helper::generate_all_css( $combined_selectors, $block_selector );
PK�][N01���Kultimate-addons-for-gutenberg/includes/blocks/popup-builder/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$js       = '';
$popup_id = get_the_ID();

$is_push_banner = ( 'banner' === $attr['variantType'] && $attr['willPushContent'] );
$popup_timer    = $is_push_banner ? 500 : 100;

// Render the JS Script to handle this popup on the current page.
ob_start();
?>
	window.addEventListener( 'DOMContentLoaded', function() {
		const blockScope = document.querySelector( '.uagb-block-<?php echo esc_attr( strval( $id ) ); ?>' );
		if ( ! blockScope ) {
			return;
		}
		const deviceWidth = ( window.innerWidth > 0 ) ? window.innerWidth : screen.width;
		if ( blockScope.classList.contains( 'uag-hide-desktop' ) && deviceWidth > 1024 ) {
			blockScope.remove();
			return;
		} else if ( blockScope.classList.contains( 'uag-hide-tab' ) && ( deviceWidth <= 1024 && deviceWidth > 768 ) ) {
			blockScope.remove();
			return;
		} else if ( blockScope.classList.contains( 'uag-hide-mob' ) && deviceWidth <= 768 ) {
			blockScope.remove();
			return;
		}

		<?php
			// Either check if the localStorage has been set before - If not, create it.
			// Or if this popup has an updated repetition number, reset the localStorage.
		?>
		let popupSesh = JSON.parse( localStorage.getItem( 'spectraPopup<?php echo esc_attr( strval( $popup_id ) ); ?>' ) );
		const repetition = <?php echo intval( get_post_meta( $popup_id, 'spectra-popup-repetition', true ) ); ?>;
		if ( null === popupSesh || repetition !== popupSesh[1] ) {
			<?php // [0] is the updating repetition number, [1] is the original repetition number. ?>		
			const repetitionArray = [
				repetition,
				repetition,
			];
			localStorage.setItem( 'spectraPopup<?php echo esc_attr( strval( $popup_id ) ); ?>', JSON.stringify( repetitionArray ) );
			popupSesh = JSON.parse( localStorage.getItem( 'spectraPopup<?php echo esc_attr( strval( $popup_id ) ); ?>' ) );
		}

		if ( 0 === popupSesh[0] ) {
			blockScope.remove();
			return;
		}

		const theBody = document.querySelector( 'body' );
		blockScope.style.display = 'flex';
		setTimeout( () => {
			<?php
			// If this is a banner with push, render the max height instead of opacity on timeout.
			if ( $is_push_banner ) {
				?>
					blockScope.style.maxHeight = '100vh';
				<?php
			} else {
				// If this is a popup which prevent background interaction, hide the scrollbar.
				if ( 'popup' === $attr['variantType'] && $attr['haltBackgroundInteraction'] ) :
					?>
						theBody.classList.add( 'uagb-popup-builder__body--overflow-hidden' );
						blockScope.classList.add( 'spectra-popup--open' );
						<?php // Once this popup is active, create a focusable element to add focus onto the popup and then remove it. ?>
						const focusElement = document.createElement( 'button' );
						focusElement.style.position = 'absolute';
						focusElement.style.opacity = '0';
						const popupFocus = blockScope.insertBefore( focusElement, blockScope.firstChild );
						popupFocus.focus();
						popupFocus.remove();
					<?php endif; ?>
					blockScope.style.opacity = 1;
				<?php
			}
			?>
		}, 100 );

		<?php
			// If this is a banner with push, Add the unset bezier curve after animating.
		if ( $is_push_banner ) :
			?>
			setTimeout( () => {
				blockScope.style.transition = 'max-height 0.5s cubic-bezier(0, 1, 0, 1)';
			}, 600 );
		<?php endif; ?>

		const closePopup = ( event = null ) => {
			if ( event && blockScope !== event?.target ) {
				return;
			}
			if ( popupSesh[0] > 0 ) {
				popupSesh[0] -= 1;
				localStorage.setItem( 'spectraPopup<?php echo esc_attr( strval( $popup_id ) ); ?>', JSON.stringify( popupSesh ) );
			}
			<?php
				// If this is a banner with push, render the required animation instead of opacity.
			if ( $is_push_banner ) :
				?>
				blockScope.style.maxHeight = '';
			<?php else : ?>
				blockScope.style.opacity = 0;
			<?php endif; ?>
			setTimeout( () => {
				<?php
					// If this is a banner with push, remove the unset bezier curve.
				if ( $is_push_banner ) :
					?>
					blockScope.style.transition = '';
				<?php endif; ?>
				blockScope.remove();
				const allActivePopups = document.querySelectorAll( '.uagb-popup-builder.spectra-popup--open' );
				if ( 0 === allActivePopups.length ) {
					theBody.classList.remove( 'uagb-popup-builder__body--overflow-hidden' );
				}
			}, <?php echo intval( $popup_timer ); ?> );
		};

		<?php
		if ( $attr['isDismissable'] ) :
			if ( $attr['hasOverlay'] && $attr['closeOverlayClick'] ) :
				?>
				blockScope.addEventListener( 'click', ( event ) => closePopup( event ) );
				<?php
				endif;
			if ( $attr['closeIcon'] ) :
				?>
				const closeButton = blockScope.querySelector( '.uagb-popup-builder__close' );
				closeButton.style.cursor = 'pointer';
				closeButton.addEventListener( 'click', () => closePopup() );
				<?php
				endif;
			if ( $attr['closeEscapePress'] && 'popup' === $attr['variantType'] && $attr['haltBackgroundInteraction'] ) :
				?>
				document.addEventListener( 'keyup', ( event ) => {
					if ( 27 === event.keyCode && blockScope.classList.contains( 'spectra-popup--open' ) ) {
						return closePopup();
					}
				} );
				<?php
				endif;
			endif;
		?>

		const closingElements = blockScope.querySelectorAll( '.spectra-popup-close-<?php echo esc_attr( strval( $popup_id ) ); ?>' );
		for ( let i = 0; i < closingElements.length; i++ ) {
			closingElements[ i ].style.cursor = 'pointer';
			closingElements[ i ].addEventListener( 'click', () => closePopup() );
		}
	} );
<?php
$js = ob_get_clean();

$js = apply_filters( 'spectra_pro_popup_frontend_js', $js, $id, $attr, $is_push_banner, $popup_timer );

return $js;
PK�][�;PP?ultimate-addons-for-gutenberg/includes/blocks/section/error_lognu�[���[27-Oct-2025 04:01:27 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/section/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/section/attributes.php on line 10
[27-Oct-2025 04:31:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/section/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/section/block.php on line 16
PK�][)H��Dultimate-addons-for-gutenberg/includes/blocks/section/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$overall_border_attributes = UAGB_Block_Helper::uag_generate_border_attribute(
	'overall'
);


return array_merge(
	array(
		'classMigrate'             => false,
		'topPadding'               => '20',
		'bottomPadding'            => '20',
		'leftPadding'              => '20',
		'rightPadding'             => '20',
		'topMargin'                => '0',
		'bottomMargin'             => '0',
		'leftMargin'               => '0',
		'rightMargin'              => '0',
		'topPaddingTablet'         => '',
		'bottomPaddingTablet'      => '',
		'leftPaddingTablet'        => '',
		'rightPaddingTablet'       => '',
		'topPaddingMobile'         => '',
		'bottomPaddingMobile'      => '',
		'leftPaddingMobile'        => '',
		'rightPaddingMobile'       => '',
		'topMarginMobile'          => '',
		'bottomMarginMobile'       => '',
		'leftMarginMobile'         => '',
		'rightMarginMobile'        => '',
		'topMarginTablet'          => '',
		'bottomMarginTablet'       => '',
		'leftMarginTablet'         => '',
		'rightMarginTablet'        => '',
		'contentWidth'             => 'boxed',
		'width'                    => '900',
		'innerWidth'               => '1140',
		'innerWidthType'           => 'px',
		'tag'                      => 'section',
		'backgroundType'           => 'none',
		'gradientColor1'           => '',
		'gradientColor2'           => '',
		'backgroundVideoColor'     => '',
		'backgroundPosition'       => 'center-center',
		'backgroundSize'           => 'cover',
		'backgroundRepeat'         => 'no-repeat',
		'backgroundAttachment'     => 'scroll',
		'gradientType'             => 'linear',
		'gradientLocation1'        => '0',
		'gradientLocation2'        => '100',
		'gradientAngle'            => '0',
		'gradientPosition'         => 'center center',
		'backgroundColor'          => '',
		'backgroundVideoOpacity'   => '50',
		'backgroundImageColor'     => '',
		'align'                    => 'center',
		'themeWidth'               => false,
		'mobileMarginType'         => 'px',
		'tabletMarginType'         => 'px',
		'desktopMarginType'        => 'px',
		'mobilePaddingType'        => 'px',
		'tabletPaddingType'        => 'px',
		'desktopPaddingType'       => 'px',
		'overlayType'              => 'color',
		'gradientOverlayColor1'    => '',
		'gradientOverlayColor2'    => '',
		'selectGradient'           => 'basic',
		'gradientOverlayType'      => 'linear',
		'gradientOverlayLocation1' => '0',
		'gradientOverlayLocation2' => '100',
		'gradientOverlayAngle'     => '0',
		'gradientOverlayPosition'  => 'center center',
		'boxShadowColor'           => '',
		'boxShadowHOffset'         => 0,
		'boxShadowVOffset'         => 0,
		'boxShadowBlur'            => '',
		'boxShadowSpread'          => '',
		'boxShadowPosition'        => 'outset',
		'gradientValue'            => '',
		'backgroundOpacity'        => 0,
		'borderStyle'              => 'none',
		'borderWidth'              => 1,
		'borderRadius'             => '',
		'borderColor'              => '',
	),
	$overall_border_attributes
);
PK�][D�%2��?ultimate-addons-for-gutenberg/includes/blocks/section/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/section';
$block_data = array(
	'doc'              => 'section',
	'slug'             => '',
	'admin_categories' => array(),
	'link'             => 'sections',
	'title'            => __( 'Advanced Row', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Outer wrap section that allows you to add other blocks within it.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'section' ),
	'deprecated'       => true,
	'dynamic_assets'   => array(
		'dir' => 'section',
	),
);
PK�][	��:�.�.Fultimate-addons-for-gutenberg/includes/blocks/section/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @package uagb
 */

global $content_width;

/**
 * Note: Fixing issue due to constraints on variable usage before a global declaration.
 * 
 * @var mixed[] $attr
 * @var int $id
 * @var string $gradient
 */

$overall_border_css = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall' );
$overall_border_css = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$overall_border_css,
	( isset( $attr['borderWidth'] ) && is_string( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) && is_string( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) && is_string( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) && is_string( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);

$overall_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'tablet' );
$overall_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'overall', 'mobile' );


$bg_type                 = ( isset( $attr['backgroundType'] ) ) ? $attr['backgroundType'] : 'none';
$overlay_type            = ( isset( $attr['overlayType'] ) ) ? $attr['overlayType'] : 'color';
$gradientOverlayPosition = ( isset( $attr['gradientOverlayPosition'] ) ) ? $attr['gradientOverlayPosition'] : 'center center';
$gradientPosition        = ( isset( $attr['gradientPosition'] ) ) ? $attr['gradientPosition'] : 'center center';

$boxShadowPositionCSS = $attr['boxShadowPosition'];
if ( 'outset' === $attr['boxShadowPosition'] ) {
	$boxShadowPositionCSS = '';
}

$style  = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['topPadding'], $attr['desktopPaddingType'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPadding'], $attr['desktopPaddingType'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPadding'], $attr['desktopPaddingType'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPadding'], $attr['desktopPaddingType'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['topMargin'], $attr['desktopMarginType'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['bottomMargin'], $attr['desktopMarginType'] ),
);
$style += $overall_border_css;

$m_selectors = array();
$t_selectors = array();
if ( 'boxed' === $attr['contentWidth'] ) {
	switch ( $attr['align'] ) {
		case 'right':
			$style['margin-right'] = UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['desktopMarginType'] );
			$style['margin-left']  = 'auto';
			break;
		case 'left':
			$style['margin-right'] = 'auto';
			$style['margin-left']  = UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['desktopMarginType'] );
			break;
		case 'center':
			$style['margin-right'] = 'auto';
			$style['margin-left']  = 'auto';
			break;
	}
}
if ( 'full_width' === $attr['contentWidth'] ) {
	$style['margin-right'] = UAGB_Helper::get_css_value( $attr['rightMargin'], $attr['desktopMarginType'] );
	$style['margin-left']  = UAGB_Helper::get_css_value( $attr['leftMargin'], $attr['desktopMarginType'] );
}

$position = str_replace( '-', ' ', $attr['backgroundPosition'] );

$section_width = '100%';

if ( isset( $attr['contentWidth'] ) && ( 'boxed' === $attr['contentWidth'] && isset( $attr['width'] ) ) ) {
	$section_width = UAGB_Helper::get_css_value( $attr['width'], 'px' );
}

if ( 'wide' !== $attr['align'] && 'full' !== $attr['align'] ) {
	$style['max-width'] = $section_width;
}

if ( 'image' === $bg_type ) {

	$style['background-image']      = ( isset( $attr['backgroundImage'] ) && isset( $attr['backgroundImage']['url'] ) ) ? "url('" . $attr['backgroundImage']['url'] . "' )" : null;
	$style['background-position']   = $position;
	$style['background-attachment'] = $attr['backgroundAttachment'];
	$style['background-repeat']     = $attr['backgroundRepeat'];
	$style['background-size']       = $attr['backgroundSize'];

}

$inner_width = '100%';

if ( isset( $attr['contentWidth'] ) ) {
	if ( 'boxed' !== $attr['contentWidth'] ) {
		if ( isset( $attr['themeWidth'] ) && $attr['themeWidth'] ) {
			$inner_width = UAGB_Helper::get_css_value( $content_width, 'px' );
		} else {
			if ( isset( $attr['innerWidth'] ) ) {
				$inner_width = UAGB_Helper::get_css_value( $attr['innerWidth'], $attr['innerWidthType'] );
			}
		}
	}
}

$video_opacity = 0.5;
if ( isset( $attr['backgroundVideoOpacity'] ) && '' !== $attr['backgroundVideoOpacity'] ) {
	$video_opacity = ( 1 < $attr['backgroundVideoOpacity'] ) ? ( ( 100 - $attr['backgroundVideoOpacity'] ) / 100 ) : ( ( 1 - $attr['backgroundVideoOpacity'] ) );
}

$selectors = array(
	'.uagb-section__wrap'          => $style,
	' > .uagb-section__video-wrap' => array(
		'opacity' => $video_opacity,
	),
	' > .uagb-section__inner-wrap' => array(
		'max-width' => $inner_width,
	),
	'.wp-block-uagb-section'       => array(
		'box-shadow' => UAGB_Helper::get_css_value( $attr['boxShadowHOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowVOffset'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowBlur'], 'px' ) . ' ' . UAGB_Helper::get_css_value( $attr['boxShadowSpread'], 'px' ) . ' ' . $attr['boxShadowColor'] . ' ' . $boxShadowPositionCSS,
	),
	'.uagb-section__wrap:hover'    => array(
		'border-color' => $attr['overallBorderHColor'],
	),
);

if ( 'video' === $bg_type ) {
	if ( 'color' === $overlay_type ) {
		$selectors[' > .uagb-section__overlay'] = array(
			'background-color' => $attr['backgroundVideoColor'],
		);
	} else {
		$selectors[' > .uagb-section__overlay']['background-image'] = $attr['gradientValue'];
	}
} elseif ( 'image' === $bg_type ) {
	if ( 'color' === $overlay_type ) {
		$selectors[' > .uagb-section__overlay'] = array(
			'background-color' => $attr['backgroundImageColor'],
			'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
		);
	} else {
		if ( $attr['gradientValue'] ) {
			$selectors[' > .uagb-section__overlay']['background-image'] = $attr['gradientValue'];
		} else {
			$selectors[' > .uagb-section__overlay']['background-color'] = 'transparent';
			$selectors[' > .uagb-section__overlay']['opacity']          = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';
			if ( 'linear' === $attr['gradientOverlayType'] ) {

				$selectors[' > .uagb-section__overlay']['background-image'] = 'linear-gradient(' . $attr['gradientOverlayAngle'] . 'deg, ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			} else {

				$selectors[' > .uagb-section__overlay']['background-image'] = 'radial-gradient( at ' . $gradientOverlayPosition . ', ' . $attr['gradientOverlayColor1'] . ' ' . $attr['gradientOverlayLocation1'] . '%, ' . $attr['gradientOverlayColor2'] . ' ' . $attr['gradientOverlayLocation2'] . '%)';
			}
		}
	}
} elseif ( 'color' === $bg_type ) {
	$selectors[' > .uagb-section__overlay'] = array(
		'background-color' => $attr['backgroundColor'],
		'opacity'          => ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '',
	);
} elseif ( 'gradient' === $bg_type ) {
	$selectors[' > .uagb-section__overlay']['background-color'] = 'transparent';
	$selectors[' > .uagb-section__overlay']['opacity']          = ( isset( $attr['backgroundOpacity'] ) && '' !== $attr['backgroundOpacity'] && 101 !== $attr['backgroundOpacity'] && 0 !== $attr['backgroundOpacity'] ) ? $attr['backgroundOpacity'] / 100 : '';

	$gradientColor1    = isset( $attr['gradientColor1'] ) ? $attr['gradientColor1'] : '';
	$gradientColor2    = isset( $attr['gradientColor2'] ) ? $attr['gradientColor2'] : '';
	$gradientType      = isset( $attr['gradientType'] ) ? $attr['gradientType'] : '';
	$gradientLocation1 = isset( $attr['gradientLocation1'] ) ? $attr['gradientLocation1'] : '';
	$gradientLocation2 = isset( $attr['gradientLocation2'] ) ? $attr['gradientLocation2'] : '';
	$gradientAngle     = isset( $attr['gradientAngle'] ) ? $attr['gradientAngle'] : '';
	
	if ( 'basic' === $attr['selectGradient'] && $attr['gradientValue'] ) {
		$gradient = $attr['gradientValue'];
	} elseif ( 'linear' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'linear-gradient(' . $gradientAngle . 'deg, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} elseif ( 'radial' === $gradientType && 'advanced' === $attr['selectGradient'] ) {
		$gradient = 'radial-gradient( at center center, ' . $gradientColor1 . ' ' . $gradientLocation1 . '%, ' . $gradientColor2 . ' ' . $gradientLocation2 . '%)';
	} 
	$selectors[' > .uagb-section__overlay']['background-image'] = $gradient;
}

$selectors[' > .uagb-section__overlay']['border-radius'] = $attr['overallBorderTopLeftRadius'] . ' ' . $attr['overallBorderTopRightRadius'] . ' ' . $attr['overallBorderBottomLeftRadius'] . ' ' . $attr['overallBorderBottomRightRadius'];

$m_selectors = array(
	'.uagb-section__wrap' => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingMobile'], $attr['mobilePaddingType'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingMobile'], $attr['mobilePaddingType'] ),
		),
		$overall_border_css_mobile
),
);

$t_selectors                                      = array(
	'.uagb-section__wrap' => array_merge(
		array(
			'padding-top'    => UAGB_Helper::get_css_value( $attr['topPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-bottom' => UAGB_Helper::get_css_value( $attr['bottomPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-left'   => UAGB_Helper::get_css_value( $attr['leftPaddingTablet'], $attr['tabletPaddingType'] ),
			'padding-right'  => UAGB_Helper::get_css_value( $attr['rightPaddingTablet'], $attr['tabletPaddingType'] ),
		),
		$overall_border_css_tablet
	),
);
$m_selectors['.uagb-section__wrap']['margin-top'] = UAGB_Helper::get_css_value( $attr['topMarginMobile'], $attr['mobileMarginType'] );
$m_selectors['.uagb-section__wrap']['margin-bottom'] = UAGB_Helper::get_css_value( $attr['bottomMarginMobile'], $attr['mobileMarginType'] );
$t_selectors['.uagb-section__wrap']['margin-top']    = UAGB_Helper::get_css_value( $attr['topMarginTablet'], $attr['tabletMarginType'] );
$t_selectors['.uagb-section__wrap']['margin-bottom'] = UAGB_Helper::get_css_value( $attr['bottomMarginTablet'], $attr['tabletMarginType'] );
if ( 'boxed' === $attr['contentWidth'] ) {
	if ( 'right' === $attr['align'] ) {
		$t_selectors['.uagb-section__wrap']['margin-right'] = UAGB_Helper::get_css_value( $attr['rightMarginTablet'], $attr['tabletMarginType'] );
		$m_selectors['.uagb-section__wrap']['margin-right'] = UAGB_Helper::get_css_value( $attr['rightMarginMobile'], $attr['mobileMarginType'] );
	} elseif ( 'left' === $attr['align'] ) {
		$t_selectors['.uagb-section__wrap']['margin-left'] = UAGB_Helper::get_css_value( $attr['leftMarginTablet'], $attr['tabletMarginType'] );
		$m_selectors['.uagb-section__wrap']['margin-left'] = UAGB_Helper::get_css_value( $attr['leftMarginMobile'], $attr['mobileMarginType'] );
	}
}

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-section-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][���y11>ultimate-addons-for-gutenberg/includes/blocks/lottie/error_lognu�[���[27-Oct-2025 04:36:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/block.php on line 16
[27-Oct-2025 05:25:40 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.js.php on line 11
[27-Oct-2025 05:25:40 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function wp_json_encode() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.js.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.js.php on line 16
PK�][���Cultimate-addons-for-gutenberg/includes/blocks/lottie/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'         => '',
	'jsonLottie'       => '',
	'lottieURl'        => '',
	'lottieSource'     => '',
	'height'           => '',
	'heightTablet'     => '',
	'heightMob'        => '',
	'width'            => '',
	'widthTablet'      => '',
	'widthMob'         => '',
	'backgroundColor'  => '',
	'backgroundHColor' => '',
	'loop'             => true,
	'speed'            => 1,
	'reverse'          => false,
	'playOn'           => 'none',
);
PK�][y�����>ultimate-addons-for-gutenberg/includes/blocks/lottie/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/lottie';
$block_data = array(
	'doc'                 => 'lottie',
	'slug'                => '',
	'admin_categories'    => array( 'creative' ),
	'link'                => 'lottie',
	'title'               => __( 'Lottie Animation', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Add customizable lottie animation on your page.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'lottie' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-lottie-js'    => array(
			'src'        => UAGB_Scripts_Utils::get_js_url( 'lottie' ),
			'dep'        => array( 'uagb-bodymovin-js' ),
			'skipEditor' => true,
			'type'       => 'js',
		),
		'uagb-bodymovin-js' => array(
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'lottie',
	),
);
PK�][g�z"''Eultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$selectors   = array();
$t_selectors = array();
$m_selectors = array();

$selectors                                   = array(
	'.uagb-lottie__outer-wrap' => array(
		'width'            => UAGB_Helper::get_css_value( $attr['width'], 'px' ),
		'height'           => UAGB_Helper::get_css_value( $attr['height'], 'px' ),
		'overflow'         => 'hidden',
		'outline'          => 'none',
		'background-color' => $attr['backgroundColor'],
	),
	'.uagb-lottie__left'       => array(
		'margin-right' => 'auto !important',
		'margin-left'  => '0px !important',
	),
	'.uagb-lottie__right'      => array(
		'margin-left'  => 'auto !important',
		'margin-right' => '0px !important',
	),
	'.uagb-lottie__center'     => array(
		'margin' => '0 auto !important',
	),
);
$selectors['.uagb-lottie__outer-wrap:hover'] = array(
	'background' => $attr['backgroundHColor'],
);

$t_selectors = array(
	'.uagb-lottie__outer-wrap' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['widthTablet'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['heightTablet'], 'px' ),
	),
);

$m_selectors = array(
	'.uagb-lottie__outer-wrap' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['widthMob'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['heightMob'], 'px' ),
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][��KddDultimate-addons-for-gutenberg/includes/blocks/lottie/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$base_selector = 'uagb-block-';
$selector      = $base_selector . $id;

ob_start();
?>
window.addEventListener( 'DOMContentLoaded', function() {
	UAGBLottie._run( <?php echo wp_json_encode( $attr ); ?>, '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
?>
PK�][v�|D��Bultimate-addons-for-gutenberg/includes/blocks/blockquote/error_lognu�[���[27-Oct-2025 05:11:56 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php on line 16
[27-Oct-2025 05:13:58 UTC] PHP Warning:  Undefined variable $attr in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/frontend.js.php on line 16
[27-Oct-2025 05:13:58 UTC] PHP Warning:  Trying to access array offset on value of type null in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/frontend.js.php on line 16
[29-Oct-2025 11:48:17 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php on line 16
[29-Oct-2025 12:00:34 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/blockquote/block.php on line 16
PK�][�k�Gultimate-addons-for-gutenberg/includes/blocks/blockquote/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'classMigrate'                => false,
	'block_id '                   => '',
	'skinStyle'                   => 'border',
	'align'                       => 'left',
	'descColor'                   => '',
	'descFontSize'                => 18,
	'descFontSizeType'            => 'px',
	'descFontSizeTablet'          => '',
	'descFontSizeMobile'          => '',
	'descFontFamily'              => '',
	'descFontWeight'              => '',
	'descFontStyle'               => 'italic',
	'descLineHeightType'          => 'em',
	'descLineHeight'              => 1.5,
	'descLineHeightTablet'        => '',
	'descLineHeightMobile'        => '',
	'descLoadGoogleFonts'         => false,
	'descSpace'                   => 25,
	'descSpaceTablet'             => 20,
	'descSpaceMobile'             => 15,
	'descSpaceUnit'               => 'px',
	'author'                      => 'Author Name', 
	'authorColor'                 => '#888888',
	'authorFontSize'              => '',
	'authorFontSizeType'          => 'px',
	'authorFontSizeTablet'        => '',
	'authorFontSizeMobile'        => '',
	'authorFontFamily'            => '',
	'authorFontWeight'            => '',
	'authorFontStyle'             => '',
	'authorLineHeightType'        => 'em',
	'authorLineHeight'            => '',
	'authorLineHeightTablet'      => '',
	'authorLineHeightMobile'      => '',
	'authorLoadGoogleFonts'       => false,
	'authorSpace'                 => 15,
	'authorSpaceTablet'           => 15,
	'authorSpaceMobile'           => 15,
	'authorImageWidth'            => 40,
	'authorImageWidthTablet'      => 35,
	'authorImageWidthMobile'      => 30,
	'authorImageWidthUnit'        => 'px',
	'authorImageGap'              => 10,
	'authorImageGapTablet'        => 10,
	'authorImageGapMobile'        => 10,
	'authorImageGapUnit'          => 'px',
	'authorImgBorderRadius'       => 100,
	'authorImgBorderRadiusTablet' => 100,
	'authorImgBorderRadiusMobile' => 100,
	'authorImgPosition'           => 'left',
	'stack'                       => 'none',
	'enableTweet'                 => true,
	'iconView'                    => 'icon_text',
	'iconSkin'                    => 'classic',
	'tweetLinkColor'              => '#1DA1F2',
	'tweetBtnColor'               => '#fff',
	'tweetBtnBgColor'             => '#1DA1F2',
	'tweetBtnHoverColor'          => '',
	'tweetBtnBgHoverColor'        => '#1DA1F2',
	'tweetBtnFontSize'            => 15,
	'tweetBtnFontSizeType'        => 'px',
	'tweetBtnFontSizeTablet'      => '',
	'tweetBtnFontSizeMobile'      => '',
	'tweetBtnFontFamily'          => '',
	'tweetBtnFontWeight'          => '',
	'tweetBtnFontStyle'           => '',
	'tweetBtnLineHeightType'      => 'em',
	'tweetBtnLineHeight'          => '',
	'tweetBtnLineHeightTablet'    => '',
	'tweetBtnLineHeightMobile'    => '',
	'tweetBtnLoadGoogleFonts'     => false,
	'tweetBtnHrPadding'           => 10,
	'tweetBtnVrPadding'           => 10,
	'paddingBtnLeftMobile'        => '',
	'paddingBtnRightMobile'       => '',
	'paddingBtnTopMobile'         => '',
	'paddingBtnBottomMobile'      => '',
	'mobilePaddingBtnUnit'        => 'px',
	'paddingBtnLeftTablet'        => '',
	'paddingBtnRightTablet'       => '',
	'paddingBtnTopTablet'         => '',
	'paddingBtnBottomTablet'      => '',
	'paddingBtnUnit'              => 'px',
	'mobilePaddingBtnUnit'        => 'px',
	'tabletPaddingBtnUnit'        => 'px',
	'tabletPaddingBtnUnit'        => 'px',
	'tweetIconSpacing'            => 10,
	'tweetIconSpacingUnit'        => 'px',
	'borderColor'                 => '#abb8c3',
	'borderStyle'                 => 'solid',
	'borderWidth'                 => 4,
	'borderWidthUnit'             => 'px',
	'borderGap'                   => 15,
	'borderGapTablet'             => 15,
	'borderGapMobile'             => 15,
	'borderGapUnit'               => 'px',
	'verticalPadding'             => '',
	'verticalPaddingTablet'       => '',
	'verticalPaddingMobile'       => '',
	'verticalPaddingUnit'         => 'px',
	'quoteStyle'                  => 'style_2',
	'quoteColor'                  => '#3d3d3d',
	'quoteSize'                   => 25,
	'quoteSizeType'               => 'px',
	'quoteSizeTablet'             => '',
	'quoteSizeMobile'             => '',
	'quoteTopMargin'              => '',
	'quoteBottomMargin'           => 15,
	'quoteLeftMargin'             => '',
	'quoteRightMargin'            => 20,
	'quoteTopMarginTablet'        => '',
	'quoteBottomMarginTablet'     => '',
	'quoteLeftMarginTablet'       => '',
	'quoteRightMarginTablet'      => '',
	'quoteTopMarginMobile'        => '',
	'quoteBottomMarginMobile'     => '',
	'quoteLeftMarginMobile'       => '',
	'quoteRightMarginMobile'      => '',
	'quoteUnit'                   => 'px',
	'quotetabletUnit'             => 'px',
	'quotemobileUnit'             => 'px',
	'quoteBorderRadius'           => 100,
	'quoteBorderRadiusUnit'       => '%',
	'quoteBgColor'                => '#f4f4f4',
	'quoteHoverColor'             => '',
	'quoteBgHoverColor'           => '',
	'borderHoverColor'            => '',
	'iconTargetUrl'               => 'current',
	'customUrl'                   => '',
	'iconShareVia'                => '',
	'quotePadding'                => 10,
	'quotePaddingType'            => 'px',
	'quotePaddingTablet'          => '',
	'quotePaddingMobile'          => '',
	'descTransform'               => '',
	'authorTransform'             => '',
	'tweetBtnTransform'           => '',
	'descDecoration'              => '',
	'authorDecoration'            => '',
	'tweetBtnDecoration'          => '',
	'descriptionText'             => 'Click here to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.',
	'descLetterSpacing'           => '',
	'descLetterSpacingTablet'     => '',
	'descLetterSpacingMobile'     => '',
	'descLetterSpacingType'       => 'px',
	'authorLetterSpacing'         => '',
	'authorLetterSpacingTablet'   => '',
	'authorLetterSpacingMobile'   => '',
	'authorLetterSpacingType'     => 'px',
	'tweetBtnLetterSpacing'       => '',
	'tweetBtnLetterSpacingTablet' => '',
	'tweetBtnLetterSpacingMobile' => '',
	'tweetBtnLetterSpacingType'   => 'px',
);
PK�][��f���Bultimate-addons-for-gutenberg/includes/blocks/blockquote/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/blockquote';
$block_data = array(
	'doc'              => 'blockquote',
	'slug'             => '',
	'admin_categories' => array( 'social' ),
	'link'             => 'blockquote',
	'title'            => __( 'Blockquote', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Display qoutes/quoted texts using blockquote.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'blockquote' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'blockquote',
	),
);
PK�][�����Z�ZIultimate-addons-for-gutenberg/includes/blocks/blockquote/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_blockquote_gfont( $attr );

$tweetBtnPaddingTop    = isset( $attr['paddingBtnTop'] ) ? $attr['paddingBtnTop'] : $attr['tweetBtnVrPadding'];
$tweetBtnPaddingBottom = isset( $attr['paddingBtnBottom'] ) ? $attr['paddingBtnBottom'] : $attr['tweetBtnVrPadding'];
$tweetBtnPaddingLeft   = isset( $attr['paddingBtnLeft'] ) ? $attr['paddingBtnLeft'] : $attr['tweetBtnHrPadding'];
$tweetBtnPaddingRight  = isset( $attr['paddingBtnRight'] ) ? $attr['paddingBtnRight'] : $attr['tweetBtnHrPadding'];

if ( 'center' !== $attr['align'] || 'border' === $attr['skinStyle'] ) {
	$attr['authorSpace']       = 0;
	$attr['authorSpaceTablet'] = 0;
	$attr['authorSpaceMobile'] = 0;
}

// Set align to left for border style.
$text_align = $attr['align'];

if ( 'border' === $attr['skinStyle'] ) {
	$text_align = 'left';
}

$selectors = array(
	' .uagb-blockquote__content'                       => array(
		'color'         => $attr['descColor'],
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpace'], $attr['descSpaceUnit'] ),
		'text-align'    => $text_align,
	),
	' cite.uagb-blockquote__author'                    => array(
		'color'      => $attr['authorColor'],
		'text-align' => $text_align,
	),
	' .uagb-blockquote__skin-border blockquote.uagb-blockquote' => array( // for backward compatibility.
		'border-color'      => $attr['borderColor'],
		'border-left-style' => $attr['borderStyle'],
		'border-left-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], $attr['borderWidthUnit'] ),
		'padding-left'      => UAGB_Helper::get_css_value( $attr['borderGap'], $attr['borderGapUnit'] ),
		'padding-top'       => UAGB_Helper::get_css_value( $attr['verticalPadding'], $attr['verticalPaddingUnit'] ),
		'padding-bottom'    => UAGB_Helper::get_css_value( $attr['verticalPadding'], $attr['verticalPaddingUnit'] ),
	),
	'.uagb-blockquote__skin-border blockquote.uagb-blockquote' => array(
		'border-color'      => $attr['borderColor'],
		'border-left-style' => $attr['borderStyle'],
		'border-left-width' => UAGB_Helper::get_css_value( $attr['borderWidth'], $attr['borderWidthUnit'] ),
		'padding-left'      => UAGB_Helper::get_css_value( $attr['borderGap'], $attr['borderGapUnit'] ),
		'padding-top'       => UAGB_Helper::get_css_value( $attr['verticalPadding'], $attr['verticalPaddingUnit'] ),
		'padding-bottom'    => UAGB_Helper::get_css_value( $attr['verticalPadding'], $attr['verticalPaddingUnit'] ),
	),

	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap' => array( // For Backword.
		'background'    => $attr['quoteBgColor'],
		'border-radius' => UAGB_Helper::get_css_value( $attr['quoteBorderRadius'], '%' ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['quoteTopMargin'], 'px' ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['quoteBottomMargin'], 'px' ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['quoteLeftMargin'], 'px' ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['quoteRightMargin'], 'px' ),
		'padding'       => UAGB_Helper::get_css_value( $attr['quotePadding'], $attr['quotePaddingType'] ),
	),
	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon' => array( // For Backword.
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
	),

	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon' => array(
		'background'    => $attr['quoteBgColor'],
		'border-radius' => UAGB_Helper::get_css_value( $attr['quoteBorderRadius'], $attr['quoteBorderRadiusUnit'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['quoteTopMargin'], $attr['quoteUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['quoteBottomMargin'], $attr['quoteUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['quoteLeftMargin'], $attr['quoteUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['quoteRightMargin'], $attr['quoteUnit'] ),
		'padding'       => UAGB_Helper::get_css_value( $attr['quotePadding'], $attr['quotePaddingType'] ),
	),
	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
		'fill'   => $attr['quoteColor'],
	),

	'.uagb-blockquote__style-style_1 .uagb-blockquote' => array(
		'text-align' => $attr['align'],
	),

	' .uagb-blockquote__author-wrap'                   => array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['authorSpace'],
			'px'
		),
	),
	' .uagb-blockquote__author-wrap img'               => array(
		'width'         => UAGB_Helper::get_css_value( $attr['authorImageWidth'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['authorImageWidth'], 'px' ),
		'border-radius' => UAGB_Helper::get_css_value( $attr['authorImgBorderRadius'], '%' ),
	),

	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img' => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['authorImageGap'], $attr['authorImageGapUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['authorImageGap'], $attr['authorImageGapUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['authorImageGap'], $attr['authorImageGapUnit'] ),
	),

	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon:hover svg' => array(
		'fill' => $attr['quoteHoverColor'],
	),

	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon:hover' => array(
		'background' => $attr['quoteBgHoverColor'],
	),

	'.uagb-blockquote__skin-border blockquote.uagb-blockquote:hover' => array(
		'border-left-color' => $attr['borderHoverColor'],
	),
	// Backword css.
	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'fill'   => $attr['quoteColor'],
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSize'], $attr['quoteSizeType'] ),
	),
	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon:hover svg' => array(
		'fill' => $attr['quoteHoverColor'],
	),

	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon-wrap:hover' => array(
		'background' => $attr['quoteBgHoverColor'],
	),

	' .uagb-blockquote__skin-border blockquote.uagb-blockquote:hover' => array(
		'border-left-color' => $attr['borderHoverColor'],
	),
	'.uagb-blockquote__align-center blockquote.uagb-blockquote' => array(
		'text-align' => $attr['align'],
	),
	// End backword.
);

if ( $attr['enableTweet'] ) {
	$selectors['.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button'] = array(
		'color' => $attr['tweetLinkColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button svg'] = array(
		'fill' => $attr['tweetLinkColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button'] = array( // for backward compatibility.
		'color'            => $attr['tweetBtnColor'],
		'background-color' => $attr['tweetBtnBgColor'],
		'padding-left'     => UAGB_Helper::get_css_value( $tweetBtnPaddingLeft, $attr['paddingBtnUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $tweetBtnPaddingRight, $attr['paddingBtnUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
	);

	$selectors['.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button'] = array(
		'color'            => $attr['tweetBtnColor'],
		'background-color' => $attr['tweetBtnBgColor'],
		'padding-left'     => UAGB_Helper::get_css_value( $tweetBtnPaddingLeft, $attr['paddingBtnUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $tweetBtnPaddingRight, $attr['paddingBtnUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
	);

	$selectors['.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button svg'] = array(
		'fill' => $attr['tweetBtnColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button'] = array(
		'color'            => $attr['tweetBtnColor'],
		'background-color' => $attr['tweetBtnBgColor'],
		'padding-left'     => UAGB_Helper::get_css_value( $tweetBtnPaddingLeft, $attr['paddingBtnUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $tweetBtnPaddingRight, $attr['paddingBtnUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $tweetBtnPaddingBottom, $attr['paddingBtnUnit'] ),
	);

	// Backword CSS.
	$selectors[' .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button'] = array(
		'color'            => $attr['tweetBtnColor'],
		'background-color' => $attr['tweetBtnBgColor'],
		'padding-left'     => UAGB_Helper::get_css_value( $tweetBtnPaddingLeft, $attr['paddingBtnUnit'] ),
		'padding-right'    => UAGB_Helper::get_css_value( $tweetBtnPaddingRight, $attr['paddingBtnUnit'] ),
		'padding-top'      => UAGB_Helper::get_css_value( $tweetBtnPaddingTop, $attr['paddingBtnUnit'] ),
		'padding-bottom'   => UAGB_Helper::get_css_value( $tweetBtnPaddingBottom, $attr['paddingBtnUnit'] ),
	);

	$selectors[' .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before'] = array(
		'border-right-color' => $attr['tweetBtnBgColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover'] = array(
		'color' => $attr['tweetBtnHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover'] = array(
		'color'            => $attr['tweetBtnHoverColor'],
		'background-color' => $attr['tweetBtnBgHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover'] = array(
		'color'            => $attr['tweetBtnHoverColor'],
		'background-color' => $attr['tweetBtnBgHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors[' .uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover:before'] = array(
		'border-right-color' => $attr['tweetBtnBgHoverColor'],
	);

	// End Backword.

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button svg'] = array(
		'fill' => $attr['tweetBtnColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:before'] = array(
		'border-right-color' => $attr['tweetBtnBgColor'],
	);

	$selectors[' a.uagb-blockquote__tweet-button svg'] = array(
		'width'  => UAGB_Helper::get_css_value( $attr['tweetBtnFontSize'], $attr['tweetBtnFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['tweetBtnFontSize'], $attr['tweetBtnFontSizeType'] ),
	);
 
	$icon_margin = is_rtl() ? 'margin-left' : 'margin-right';

	$selectors['.uagb-blockquote__tweet-icon_text a.uagb-blockquote__tweet-button svg'] = array(
		$icon_margin => UAGB_Helper::get_css_value( $attr['tweetIconSpacing'], $attr['tweetIconSpacingUnit'] ),
	);

	// Hover CSS.
	$selectors['.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover'] = array(
		'color' => $attr['tweetBtnHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-link a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover'] = array(
		'color'            => $attr['tweetBtnHoverColor'],
		'background-color' => $attr['tweetBtnBgHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover'] = array(
		'color'            => $attr['tweetBtnHoverColor'],
		'background-color' => $attr['tweetBtnBgHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover svg'] = array(
		'fill' => $attr['tweetBtnHoverColor'],
	);

	$selectors['.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button:hover:before'] = array(
		'border-right-color' => $attr['tweetBtnBgHoverColor'],
	);
}

$t_selectors = array(
	' a.uagb-blockquote__tweet-button svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['tweetBtnFontSizeTablet'], $attr['tweetBtnFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['tweetBtnFontSizeTablet'], $attr['tweetBtnFontSizeType'] ),
	),
	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon' => array(
		'padding'       => UAGB_Helper::get_css_value( $attr['quotePaddingTablet'], $attr['quotePaddingType'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['quoteTopMarginTablet'], $attr['quotetabletUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['quoteBottomMarginTablet'], $attr['quotetabletUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['quoteLeftMarginTablet'], $attr['quotetabletUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['quoteRightMarginTablet'], $attr['quotetabletUnit'] ),
	),
	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSizeTablet'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSizeTablet'], $attr['quoteSizeType'] ),
	),
	'.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomTablet'], $attr['tabletPaddingBtnUnit'] ),
	),
	'.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopTablet'], $attr['tabletPaddingBtnUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomTablet'], $attr['tabletPaddingBtnUnit'] ),
	),
	// Backword css.
	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSizeTablet'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSizeTablet'], $attr['quoteSizeType'] ),
	),
	' .uagb-blockquote__author-wrap'       => array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['authorSpaceTablet'],
			'px'
		),
	),
	' .uagb-blockquote__author-wrap img'   => array(
		'width'         => UAGB_Helper::get_css_value( $attr['authorImageWidthTablet'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['authorImageWidthTablet'], 'px' ),
		'border-radius' => UAGB_Helper::get_css_value( $attr['authorImgBorderRadiusTablet'], '%' ),
	),
	'.uagb-blockquote__skin-border blockquote.uagb-blockquote' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['borderGapTablet'], $attr['borderGapUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['verticalPaddingTablet'], $attr['verticalPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['verticalPaddingTablet'], $attr['verticalPaddingUnit'] ),
	),
	' .uagb-blockquote__content'           => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceTablet'], $attr['descSpaceUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img' => array(
		'margin-left'   => ( 'tablet' === $attr['stack'] ) ? '0px' : UAGB_Helper::get_css_value( $attr['authorImageGapTablet'], $attr['authorImageGapUnit'] ),
		'margin-bottom' => ( 'tablet' === $attr['stack'] ) ? UAGB_Helper::get_css_value( $attr['authorImageGapTablet'], $attr['authorImageGapUnit'] ) : '0px',
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['authorImageGapTablet'], $attr['authorImageGapUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img' => array(
		'margin-right'  => ( 'tablet' === $attr['stack'] ) ? '0px' : UAGB_Helper::get_css_value( $attr['authorImageGapTablet'], $attr['authorImageGapUnit'] ),
		'margin-bottom' => ( 'tablet' === $attr['stack'] ) ? UAGB_Helper::get_css_value( $attr['authorImageGapTablet'], $attr['authorImageGapUnit'] ) : '0px',
	),
);

$m_selectors = array(
	' a.uagb-blockquote__tweet-button svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['tweetBtnFontSizeMobile'], $attr['tweetBtnFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['tweetBtnFontSizeMobile'], $attr['tweetBtnFontSizeType'] ),
	),
	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon' => array(
		'padding'       => UAGB_Helper::get_css_value( $attr['quotePaddingMobile'], $attr['quotePaddingType'] ),
		'margin-top'    => UAGB_Helper::get_css_value( $attr['quoteTopMarginMobile'], $attr['quotemobileUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['quoteBottomMarginMobile'], $attr['quotemobileUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['quoteLeftMarginMobile'], $attr['quotemobileUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['quoteRightMarginMobile'], $attr['quotemobileUnit'] ),
	),
	'.uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSizeMobile'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSizeMobile'], $attr['quoteSizeType'] ),
	),
	'.uagb-blockquote__tweet-style-classic a.uagb-blockquote__tweet-button' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomMobile'], $attr['mobilePaddingBtnUnit'] ),
	),
	'.uagb-blockquote__tweet-style-bubble a.uagb-blockquote__tweet-button' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['paddingBtnLeftMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['paddingBtnRightMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['paddingBtnTopMobile'], $attr['mobilePaddingBtnUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['paddingBtnBottomMobile'], $attr['mobilePaddingBtnUnit'] ),
	),
	' .uagb-blockquote__skin-quotation .uagb-blockquote__icon svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['quoteSizeMobile'], $attr['quoteSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['quoteSizeMobile'], $attr['quoteSizeType'] ),
	),
	' .uagb-blockquote__author-wrap'       => array(
		'margin-bottom' => UAGB_Helper::get_css_value(
			$attr['authorSpaceMobile'],
			'px'
		),
	),
	' .uagb-blockquote__author-wrap img'   => array(
		'width'         => UAGB_Helper::get_css_value( $attr['authorImageWidthMobile'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['authorImageWidthMobile'], 'px' ),
		'border-radius' => UAGB_Helper::get_css_value( $attr['authorImgBorderRadiusMobile'], '%' ),
	),
	' .uagb-blockquote__author-wrap img'   => array(
		'width'         => UAGB_Helper::get_css_value( $attr['authorImageWidthMobile'], 'px' ),
		'height'        => UAGB_Helper::get_css_value( $attr['authorImageWidthMobile'], 'px' ),
		'border-radius' => UAGB_Helper::get_css_value( $attr['authorImgBorderRadiusMobile'], '%' ),
	),
	'.uagb-blockquote__skin-border blockquote.uagb-blockquote' => array(
		'padding-left'   => UAGB_Helper::get_css_value( $attr['borderGapMobile'], $attr['borderGapUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['verticalPaddingMobile'], $attr['verticalPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['verticalPaddingMobile'], $attr['verticalPaddingUnit'] ),
	),
	' .uagb-blockquote__content'           => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['descSpaceMobile'], $attr['descSpaceUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-right img' => array(
		'margin-left'   => ( 'none' !== $attr['stack'] ) ? '0px' : UAGB_Helper::get_css_value( $attr['authorImageGapMobile'], $attr['authorImageGapUnit'] ),
		'margin-bottom' => ( 'none' !== $attr['stack'] ) ? UAGB_Helper::get_css_value( $attr['authorImageGapMobile'], $attr['authorImageGapUnit'] ) : '0px',
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-top img' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['authorImageGapMobile'], $attr['authorImageGapUnit'] ),
	),
	' .uagb-blockquote__author-wrap.uagb-blockquote__author-at-left img' => array(
		'margin-right'  => ( 'none' !== $attr['stack'] ) ? '0px' : UAGB_Helper::get_css_value( $attr['authorImageGapMobile'], $attr['authorImageGapUnit'] ),
		'margin-bottom' => ( 'none' !== $attr['stack'] ) ? UAGB_Helper::get_css_value( $attr['authorImageGapMobile'], $attr['authorImageGapUnit'] ) : '0px',
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'tweetBtn', ' .uagb-blockquote a.uagb-blockquote__tweet-button', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'author', ' cite.uagb-blockquote__author', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'desc', ' .uagb-blockquote__content', $combined_selectors );

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-blockquote-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�;�*��Hultimate-addons-for-gutenberg/includes/blocks/blockquote/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 */

if ( ! $attr['enableTweet'] ) {
	return '';
}

$target = $attr['iconTargetUrl'];

$base_selector = ( isset( $attr['classMigrate'] ) && $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-blockquote-';
$selector      = $base_selector . $id;

$share_link = 'https://twitter.com/intent/tweet';
$text       = rawurlencode( $attr['descriptionText'] );

if ( ! empty( trim( $attr['author'] ) ) ) {
	$text .= ' — ' . $attr['author'];
}

$share_link = add_query_arg( 'text', $text, $share_link );

if ( 'current' === $target ) {
	$share_link = add_query_arg( 'url', rawurlencode( home_url() . add_query_arg( false, false ) ), $share_link );
} else {
	$share_link = add_query_arg( 'url', rawurlencode( $attr['customUrl'] ), $share_link );
}

if ( ! empty( trim( $attr['iconShareVia'] ) ) ) {
	$user_name = $attr['iconShareVia'];
	if ( '@' === substr( $user_name, 0, 1 ) ) {
		$user_name = substr( $user_name, 1 );
	}
	$share_link = add_query_arg( 'via', rawurlencode( $user_name ), $share_link );
}
ob_start();
?>
var selector = document.querySelectorAll( '<?php echo esc_attr( $selector ); ?>' );
if ( selector.length > 0 ) {

	var blockquote__tweet = selector[0].getElementsByClassName("uagb-blockquote__tweet-button");

	if ( blockquote__tweet.length > 0 ) {

		blockquote__tweet[0].addEventListener("click",function(){	
			var request_url = "<?php echo esc_url_raw( $share_link ); ?>";
			window.open( request_url );
		});
	}
}
<?php
return ob_get_clean();
?>
PK�][�쌩�Cultimate-addons-for-gutenberg/includes/blocks/post-button/error_lognu�[���[28-Oct-2025 07:56:47 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-button/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-button/block.php on line 14
PK�][��8��Cultimate-addons-for-gutenberg/includes/blocks/post-button/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-button';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Post Button', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Customize this post button.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�,!L��=ultimate-addons-for-gutenberg/includes/blocks/login/error_lognu�[���[28-Oct-2025 21:18:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/login/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/login/block.php on line 16
PK�][5����=ultimate-addons-for-gutenberg/includes/blocks/login/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$block_slug = 'uagb/login';
$block_data = array(
	'doc'              => 'login',
	'slug'             => '',
	'admin_categories' => array( 'form', 'pro' ),
	'link'             => 'login',
	'title'            => __( 'Login Form', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'This block lets you add a user login form.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'login' ),
	'pro_filler'       => true,
);
PK�][�ߪ��Bultimate-addons-for-gutenberg/includes/blocks/forms-date/error_lognu�[���[27-Oct-2025 10:48:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-date/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-date/block.php on line 14
PK�][���J��Bultimate-addons-for-gutenberg/includes/blocks/forms-date/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-date';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Datepicker', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a calendar based date picker in your form.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][N��F��Bultimate-addons-for-gutenberg/includes/blocks/post-title/error_lognu�[���[28-Oct-2025 12:09:35 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-title/block.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-title/block.php on line 15
PK�][ڧ����Bultimate-addons-for-gutenberg/includes/blocks/post-title/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-title';
$block_data = array(
	'slug'        => '',

	'link'        => '',
	'title'       => __( 'Post Title', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Customize your post title.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�`�`Eultimate-addons-for-gutenberg/includes/blocks/image-gallery/error_lognu�[���[27-Oct-2025 17:16:33 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/block.php on line 16
[27-Oct-2025 21:50:19 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/attributes.php on line 10
[28-Oct-2025 02:41:30 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/frontend.js.php on line 11
[28-Oct-2025 02:41:30 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function is_rtl() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/frontend.js.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/image-gallery/frontend.js.php on line 14
PK�][$g)F�,�,Jultimate-addons-for-gutenberg/includes/blocks/image-gallery/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$arrow_border_attributes      = UAGB_Block_Helper::uag_generate_border_attribute(
	'arrow',
	array(
		'borderStyle'             => 'none',
		'borderTopWidth'          => 4,
		'borderRightWidth'        => 4,
		'borderBottomWidth'       => 4,
		'borderLeftWidth'         => 4,
		'borderTopLeftRadius'     => 50,
		'borderTopRightRadius'    => 50,
		'borderBottomLeftRadius'  => 50,
		'borderBottomRightRadius' => 50,
	)
);
$btn_border_attributes        = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );
$image_border_attributes      = UAGB_Block_Helper::uag_generate_border_attribute( 'image' );
$main_title_border_attributes = UAGB_Block_Helper::uag_generate_border_attribute(
	'mainTitle',
	array(
		'borderTopWidth'    => 2,
		'borderRightWidth'  => 0,
		'borderBottomWidth' => 2,
		'borderLeftWidth'   => 0,
	)
);

return array_merge(
	array(
		// Block Requirements.
		'block_id'                           => '',
		'classMigrate'                       => false,
		// Editor Requirements.
		'readyToRender'                      => false,
		'tileSize'                           => 0,
		'focusList'                          => array(),
		'focusListObject'                    => array(),

		// Gallery Settings.
		'mediaGallery'                       => array(),
		'mediaIDs'                           => array(),
		'feedLayout'                         => 'grid',
		'imageDisplayCaption'                => true,
		'galleryImageSize'                   => 'large',
		'galleryImageSizeTablet'             => 'large',
		'galleryImageSizeMobile'             => 'medium',
		'imageClickEvent'                    => 'none',
		'disableLazyLoad'                    => false,
		// Lightbox Settings.
		'lightboxDisplayCaptions'            => false,
		'lightboxThumbnails'                 => false,
		'lightboxDisplayCount'               => false,
		'lightboxCloseIcon'                  => 'xmark',
		'lightboxCaptionHeight'              => 50,
		'lightboxCaptionHeightTablet'        => '',
		'lightboxCaptionHeightMobile'        => '',
		'lightboxIconSize'                   => 24,
		'lightboxIconSizeTablet'             => '',
		'lightboxIconSizeMobile'             => '',
		// Caption Settings.
		'captionVisibility'                  => 'hover',
		'captionDisplayType'                 => 'overlay',
		'imageCaptionAlignment'              => 'center center',
		'imageCaptionAlignment01'            => 'center',
		'imageCaptionAlignment02'            => 'center',
		'imageDefaultCaption'                => __( 'No Caption', 'ultimate-addons-for-gutenberg' ),
		'captionPaddingTop'                  => 8,
		'captionPaddingRight'                => 8,
		'captionPaddingBottom'               => 8,
		'captionPaddingLeft'                 => 8,
		'captionPaddingTopTab'               => 8,
		'captionPaddingRightTab'             => 8,
		'captionPaddingBottomTab'            => 8,
		'captionPaddingLeftTab'              => 8,
		'captionPaddingTopMob'               => 8,
		'captionPaddingRightMob'             => 8,
		'captionPaddingBottomMob'            => 8,
		'captionPaddingLeftMob'              => 8,
		'captionPaddingUnit'                 => 'px',
		'captionPaddingUnitTab'              => 'px',
		'captionPaddingUnitMob'              => 'px',
		'captionPaddingUnitLink'             => true,
		'captionGap'                         => 0,
		'captionGapUnit'                     => 'px',
		// Layout Settings.
		'columnsDesk'                        => 3,
		'columnsTab'                         => 3,
		'columnsMob'                         => 2,
		'gridImageGap'                       => 8,
		'gridImageGapTab'                    => '',
		'gridImageGapMob'                    => '',
		'gridImageGapUnit'                   => 'px',
		'gridImageGapUnitTab'                => 'px',
		'gridImageGapUnitMob'                => 'px',
		'feedMarginTop'                      => '',
		'feedMarginRight'                    => '',
		'feedMarginBottom'                   => '',
		'feedMarginLeft'                     => '',
		'feedMarginTopTab'                   => '',
		'feedMarginRightTab'                 => '',
		'feedMarginBottomTab'                => '',
		'feedMarginLeftTab'                  => '',
		'feedMarginTopMob'                   => '',
		'feedMarginRightMob'                 => '',
		'feedMarginBottomMob'                => '',
		'feedMarginLeftMob'                  => '',
		'feedMarginUnit'                     => 'px',
		'feedMarginUnitTab'                  => 'px',
		'feedMarginUnitMob'                  => 'px',
		'feedMarginUnitLink'                 => true,
		// Layout Specific Settings.
		'carouselStartAt'                    => 0,
		'carouselSquares'                    => false,
		'carouselLoop'                       => true,
		'carouselAutoplay'                   => true,
		'carouselAutoplaySpeed'              => 2000,
		'carouselPauseOnHover'               => true,
		'carouselTransitionSpeed'            => 500,
		'gridPages'                          => 1,
		'gridPageNumber'                     => 1,
		// Pagination Settings.
		'feedPagination'                     => false,
		'paginateUseArrows'                  => true,
		'paginateUseDots'                    => true,
		'paginateUseLoader'                  => true,
		'paginateLimit'                      => 9,
		'paginateButtonAlign'                => 'center',
		'paginateButtonText'                 => __( 'Load More Images', 'ultimate-addons-for-gutenberg' ),
		'paginateButtonPaddingTop'           => '',
		'paginateButtonPaddingRight'         => '',
		'paginateButtonPaddingBottom'        => '',
		'paginateButtonPaddingLeft'          => '',
		'paginateButtonPaddingTopTab'        => '',
		'paginateButtonPaddingRightTab'      => '',
		'paginateButtonPaddingBottomTab'     => '',
		'paginateButtonPaddingLeftTab'       => '',
		'paginateButtonPaddingTopMob'        => '',
		'paginateButtonPaddingRightMob'      => '',
		'paginateButtonPaddingBottomMob'     => '',
		'paginateButtonPaddingLeftMob'       => '',
		'paginateButtonPaddingUnit'          => 'px',
		'paginateButtonPaddingUnitTab'       => 'px',
		'paginateButtonPaddingUnitMob'       => 'px',
		'paginateButtonPaddingUnitLink'      => true,
		// Image Styling.
		'imageEnableZoom'                    => true,
		'imageZoomType'                      => 'zoom-in',
		'captionBackgroundEnableBlur'        => false,
		'captionBackgroundBlurAmount'        => 0,
		'captionBackgroundBlurAmountHover'   => 5,
		// Lightbox Styling.
		'lightboxEdgeDistance'               => 10,
		'lightboxEdgeDistanceTablet'         => '',
		'lightboxEdgeDistanceMobile'         => '',
		'lightboxBackgroundEnableBlur'       => true,
		'lightboxBackgroundBlurAmount'       => 5,
		'lightboxBackgroundColor'            => 'rgba(0,0,0,0.75)',
		'lightboxIconColor'                  => 'rgba(255,255,255,1)',
		'lightboxCaptionColor'               => 'rgba(255,255,255,1)',
		'lightboxCaptionBackgroundColor'     => 'rgba(0,0,0,1)',
		// Caption Typography Styling.
		'captionLoadGoogleFonts'             => false,
		'captionFontFamily'                  => 'Default',
		'captionFontWeight'                  => '',
		'captionFontStyle'                   => 'normal',
		'captionTransform'                   => '',
		'captionDecoration'                  => 'none',
		'captionFontSizeType'                => 'px',
		'captionFontSize'                    => '',
		'captionFontSizeTab'                 => '',
		'captionFontSizeMob'                 => '',
		'captionLineHeightType'              => 'em',
		'captionLineHeight'                  => '',
		'captionLineHeightTab'               => '',
		'captionLineHeightMob'               => '',
		// Pagination Button Typography Styling.
		'loadMoreLoadGoogleFonts'            => false,
		'loadMoreFontFamily'                 => 'Default',
		'loadMoreFontWeight'                 => '',
		'loadMoreFontStyle'                  => 'normal',
		'loadMoreTransform'                  => '',
		'loadMoreDecoration'                 => 'none',
		'loadMoreFontSizeType'               => 'px',
		'loadMoreFontSize'                   => '',
		'loadMoreFontSizeTab'                => '',
		'loadMoreFontSizeMob'                => '',
		'loadMoreLineHeightType'             => 'em',
		'loadMoreLineHeight'                 => '',
		'loadMoreLineHeightTab'              => '',
		'loadMoreLineHeightMob'              => '',
		// Lightbox Typography Styling.
		'lightboxLoadGoogleFonts'            => false,
		'lightboxFontFamily'                 => 'Default',
		'lightboxFontWeight'                 => '',
		'lightboxFontStyle'                  => 'normal',
		'lightboxTransform'                  => '',
		'lightboxDecoration'                 => 'none',
		'lightboxFontSizeType'               => 'px',
		'lightboxFontSize'                   => '',
		'lightboxFontSizeTab'                => '',
		'lightboxFontSizeMob'                => '',
		'lightboxLineHeightType'             => 'em',
		'lightboxLineHeight'                 => '',
		'lightboxLineHeightTab'              => '',
		'lightboxLineHeightMob'              => '',
		// Hoverable Styling.
		'captionBackgroundEffect'            => 'none',
		'captionBackgroundEffectHover'       => 'none',
		'captionBackgroundEffectAmount'      => 100,
		'captionBackgroundEffectAmountHover' => 0,
		'captionColor'                       => 'rgba(255,255,255,1)',
		'captionColorHover'                  => 'rgba(255,255,255,1)',
		'captionBackgroundColor'             => 'rgba(0,0,0,0.75)',
		'captionBackgroundColorHover'        => 'rgba(0,0,0,0.75)',
		'overlayColor'                       => 'rgba(0,0,0,0)',
		'overlayColorHover'                  => 'rgba(0,0,0,0)',
		'captionSeparateColors'              => false,
		// Pagination Styling.
		'paginateArrowDistance'              => -24,
		'paginateArrowDistanceUnit'          => 'px',
		'paginateArrowSize'                  => 24,
		'paginateDotDistance'                => 8,
		'paginateDotDistanceUnit'            => 'px',
		'paginateLoaderSize'                 => 18,
		'paginateButtonTextColor'            => '',
		'paginateButtonTextColorHover'       => '',
		'paginateColor'                      => '',
		'paginateColorHover'                 => '',
		// Box Shadow Styling.
		'imageBoxShadowColor'                => '',
		'imageBoxShadowHOffset'              => 0,
		'imageBoxShadowVOffset'              => 0,
		'imageBoxShadowBlur'                 => '',
		'imageBoxShadowSpread'               => '',
		'imageBoxShadowPosition'             => 'outset',
		'imageBoxShadowColorHover'           => '',
		'imageBoxShadowHOffsetHover'         => 0,
		'imageBoxShadowVOffsetHover'         => 0,
		'imageBoxShadowBlurHover'            => '',
		'imageBoxShadowSpreadHover'          => '',
		'imageBoxShadowPositionHover'        => 'outset',
	),
	$arrow_border_attributes,
	$btn_border_attributes,
	$image_border_attributes,
	$main_title_border_attributes,
	array(
		'arrowBorderStyle'             => 'none',
		'arrowBorderTopWidth'          => 4,
		'arrowBorderRightWidth'        => 4,
		'arrowBorderBottomWidth'       => 4,
		'arrowBorderLeftWidth'         => 4,
		'arrowBorderTopLeftRadius'     => 50,
		'arrowBorderTopRightRadius'    => 50,
		'arrowBorderBottomLeftRadius'  => 50,
		'arrowBorderBottomRightRadius' => 50,
	),
	array(
		'mainTitleBorderTopWidth'    => 2,
		'mainTitleBorderRightWidth'  => 0,
		'mainTitleBorderBottomWidth' => 2,
		'mainTitleBorderLeftWidth'   => 0,
	)
);
PK�][B-P�Eultimate-addons-for-gutenberg/includes/blocks/image-gallery/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$block_slug = 'uagb/image-gallery';
$block_data = array(
	'doc'                 => 'image-gallery',
	'slug'                => '',
	'admin_categories'    => array( 'content', 'creative' ),
	'link'                => 'image-gallery',
	'title'               => __( 'Image Gallery', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Create a highly customizable image gallery', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'image-gallery' ),
	'static_dependencies' => array(
		'uagb-image-gallery-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'image-gallery' ),
			'dep'  => array(),
			'type' => 'js',
		),
		'uagb-masonry'          => array(
			'type' => 'js',
		),
		'uagb-imagesloaded'     => array(
			'type' => 'js',
		),
		'uagb-slick-js'         => array(
			'type' => 'js',
		),
		'uagb-swiper-js'        => array(
			'type' => 'js',
		),
		'uagb-slick-css'        => array(
			'type' => 'css',
		),
		'uagb-swiper-css'       => array(
			'type' => 'css',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'image-gallery',
	),
);
PK�][�F�E��Lultimate-addons-for-gutenberg/includes/blocks/image-gallery/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

/**
 * Adding this comment to avoid PHPStan errors of undefined variable as these variables are defined else where.
 *
 * @var mixed[] $attr
 */
$attr = isset( $attr ) ? $attr : array();

// Adds Fonts.
UAGB_Block_JS::blocks_image_gallery_gfont( $attr );

// Arrow & Dots Default Color Fallback ( Not from Theme ).
$arrow_dot_color = $attr['paginateColor'] ? $attr['paginateColor'] : '#007cba';

// Block Visibility Based on Layout Type.
$hide_this_block = in_array( $attr['feedLayout'], array( 'carousel', 'masonry' ), true );

// Range Fallback.
$paginate_dot_distance_fallback = is_numeric( $attr['paginateDotDistance'] ) ? $attr['paginateDotDistance'] : 0;

// Responsive Slider Fallback.
$grid_image_gap_tablet_fallback = is_numeric( $attr['gridImageGapTab'] ) ? $attr['gridImageGapTab'] : $attr['gridImageGap'];
$grid_image_gap_mobile_fallback = is_numeric( $attr['gridImageGapMob'] ) ? $attr['gridImageGapMob'] : $grid_image_gap_tablet_fallback;

// Border Attributes.
$arrow_border_css             = UAGB_Block_Helper::uag_generate_border_css( $attr, 'arrow' );
$arrow_border_css_tablet      = UAGB_Block_Helper::uag_generate_border_css( $attr, 'arrow', 'tablet' );
$arrow_border_css_mobile      = UAGB_Block_Helper::uag_generate_border_css( $attr, 'arrow', 'mobile' );
$btn_border_css               = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
$btn_border_css_tablet        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
$btn_border_css_mobile        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );
$image_border_css             = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image' );
$image_border_css_tablet      = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image', 'tablet' );
$image_border_css_mobile      = UAGB_Block_Helper::uag_generate_border_css( $attr, 'image', 'mobile' );
$main_title_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'mainTitle' );
$main_title_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'mainTitle', 'tablet' );
$main_title_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'mainTitle', 'mobile' );

// Text Decoration compatibility CSS.
$text_decoration_prop = '' === $attr['captionDecoration'] && defined( 'ASTRA_THEME_SETTINGS' ) && function_exists( 'astra_get_font_extras' ) && function_exists( 'astra_get_option' ) ? astra_get_font_extras( astra_get_option( 'body-font-extras' ), 'text-decoration' ) : $attr['captionDecoration'];

// Box Shadow CSS.

$image_box_shadow_css       = (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowHOffset'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowVOffset'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowBlur'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowSpread'], 'px' )
) . (
	$attr['imageBoxShadowColor'] ? ( ' ' . $attr['imageBoxShadowColor'] ) : ''
) . ' ' . (
	( 'inset' === $attr['imageBoxShadowPosition'] ) ? ( ' ' . $attr['imageBoxShadowPosition'] ) : ''
);
$image_box_shadow_hover_css = (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowHOffsetHover'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowVOffsetHover'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowBlurHover'], 'px' )
) . ' ' . (
	UAGB_Helper::get_css_value( $attr['imageBoxShadowSpreadHover'], 'px' )
) . (
	$attr['imageBoxShadowColorHover'] ? ( ' ' . $attr['imageBoxShadowColorHover'] ) : ''
) . ' ' . (
	( 'inset' === $attr['imageBoxShadowPositionHover'] ) ? ( ' ' . $attr['imageBoxShadowPositionHover'] ) : ''
);

$selectors = array(

	// Feed Selectors.

	'.wp-block-uagb-image-gallery'                       => array(
		'padding'    => UAGB_Block_Helper::generate_spacing(
			$attr['feedMarginUnit'],
			$attr['feedMarginTop'],
			$attr['feedMarginRight'],
			$attr['feedMarginBottom'],
			$attr['feedMarginLeft']
		),
		'visibility' => $hide_this_block ? 'hidden' : '',
	),

	// Control Settings.

	' .spectra-image-gallery__control-arrows svg'        => array(
		'fill' => $arrow_dot_color,
	),
	' .spectra-image-gallery__control-arrows svg:hover'  => array(
		'fill' => $attr['paginateColorHover'],
	),
	' .spectra-image-gallery__control-arrows--carousel'  => $arrow_border_css,
	' .spectra-image-gallery__control-arrows--carousel:hover' => array(
		'border-color' => $attr['arrowBorderHColor'],
	),
	' .spectra-image-gallery__control-arrows--carousel.slick-prev' => array(
		'left' => UAGB_Helper::get_css_value(
			$attr['paginateArrowDistance'],
			$attr['paginateArrowDistanceUnit']
		),
	),
	' .spectra-image-gallery__control-arrows--carousel.slick-next' => array(
		'right' => UAGB_Helper::get_css_value(
			$attr['paginateArrowDistance'],
			$attr['paginateArrowDistanceUnit']
		),
	),
	' .spectra-image-gallery__layout--carousel ul.slick-dots' => array(
		'top' => UAGB_Helper::get_css_value( $paginate_dot_distance_fallback, 'px' ),
	),
	' .spectra-image-gallery__layout--carousel ul.slick-dots li button:before' => array(
		'color' => $arrow_dot_color,
	),
	' .spectra-image-gallery__layout--carousel ul.slick-dots li button:hover:before' => array(
		'color' => $attr['paginateColorHover'],
	),
	' .spectra-image-gallery__control-dots li button::before' => array(
		'color' => $arrow_dot_color,
	),
	' .spectra-image-gallery__control-dots li button:hover::before' => array(
		'color' => $attr['paginateColorHover'],
	),
	' .spectra-image-gallery__control-loader'            => array(
		'margin-top' => UAGB_Helper::get_css_value( $paginate_dot_distance_fallback, $attr['paginateDotDistanceUnit'] ),
	),
	' .spectra-image-gallery__control-loader div'        => array(
		'background-color' => $attr['paginateColor'],
		'width'            => UAGB_Helper::get_css_value( $attr['paginateLoaderSize'], 'px' ),
		'height'           => UAGB_Helper::get_css_value( $attr['paginateLoaderSize'], 'px' ),
		'border-radius'    => '100%',
		'padding'          => 0,
	),
	' .spectra-image-gallery__control-button'            => array_merge(
		array(
			'margin-top'       => UAGB_Helper::get_css_value( $paginate_dot_distance_fallback, $attr['paginateDotDistanceUnit'] ),
			'padding'          => UAGB_Block_Helper::generate_spacing(
				$attr['paginateButtonPaddingUnit'],
				$attr['paginateButtonPaddingTop'],
				$attr['paginateButtonPaddingRight'],
				$attr['paginateButtonPaddingBottom'],
				$attr['paginateButtonPaddingLeft']
			),
			'color'            => $attr['paginateButtonTextColor'],
			'background-color' => $attr['paginateColor'],
			'font-family'      => 'Default' === $attr['loadMoreFontFamily'] ? '' : $attr['loadMoreFontFamily'],
			'font-weight'      => $attr['loadMoreFontWeight'],
			'font-style'       => $attr['loadMoreFontStyle'],
			'text-decoration'  => $attr['loadMoreDecoration'],
			'text-transform'   => $attr['loadMoreTransform'],
			'font-size'        => UAGB_Helper::get_css_value( $attr['loadMoreFontSize'], $attr['loadMoreFontSizeType'] ),
			'line-height'      => UAGB_Helper::get_css_value( $attr['loadMoreLineHeight'], $attr['loadMoreLineHeightType'] ),
		),
		$btn_border_css
	),
	' .spectra-image-gallery__control-button:hover'      => array(
		'color'            => $attr['paginateButtonTextColorHover'],
		'background-color' => $attr['paginateColorHover'],
		'border-color'     => $attr['btnBorderHColor'],
	),

	// Media Wrapper Selectors.

	' .spectra-image-gallery__layout--grid'              => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$attr['gridImageGap'],
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__layout--isogrid'           => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $attr['gridImageGap'] / 2 ),
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__layout--isogrid .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$attr['gridImageGap'] / 2,
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__layout--masonry'           => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $attr['gridImageGap'] / 2 ),
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$attr['gridImageGap'] / 2,
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__layout--carousel'          => array(
		// Override Slick Slider Margin.
		'margin-bottom' => UAGB_Helper::get_css_value(
			$paginate_dot_distance_fallback,
			'px'
		) . ' !important',
	),
	' .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper' => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnit'],
			0,
			$attr['gridImageGap'] / 2
		),
	),
	' .spectra-image-gallery__layout--carousel .slick-list' => array(
		'margin' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnit'],
			0,
			-( $attr['gridImageGap'] / 2 )
		),
	),
	' .spectra-image-gallery__layout--tiled'             => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$attr['gridImageGap'],
			$attr['gridImageGapUnit']
		),
	),
	' .spectra-image-gallery__media'                     => array_merge(
		$image_border_css,
		array(
			'box-shadow' => $image_box_shadow_css,
		)
	),
	' .spectra-image-gallery__media:hover'               => array(
		'border-color' => $attr['imageBorderHColor'],
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media' => array(
		'box-shadow' => $image_box_shadow_hover_css,
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media' => array(
		'box-shadow'   => $image_box_shadow_hover_css,
		'border-color' => $attr['imageBorderHColor'],
	),

	// Thumbnail Selectors.

	' .spectra-image-gallery__media-thumbnail-blurrer'   => array(
		'-webkit-backdrop-filter' => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmount'],
			'px'
		) . ')',
		'backdrop-filter'         => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmount'],
			'px'
		) . ')',
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer' => array(
		'-webkit-backdrop-filter' => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmountHover'],
			'px'
		) . ')',
		'backdrop-filter'         => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmountHover'],
			'px'
		) . ')',
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-blurrer' => array(
		'-webkit-backdrop-filter' => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmountHover'],
			'px'
		) . ')',
		'backdrop-filter'         => 'blur(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundBlurAmountHover'],
			'px'
		) . ')',
	),

	// Caption Wrapper Selectors.
	' .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay' => array(
		'background-color' => $attr['imageDisplayCaption'] ? ( ( 'hover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : $attr['captionBackgroundColor'] ) : $attr['overlayColor'],
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay' => array(  
		'background-color' => $attr['imageDisplayCaption'] ? ( ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'] ) ) : $attr['overlayColorHover'],  
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-caption-wrapper--overlay' => array(
		'background-color' => $attr['imageDisplayCaption'] ? ( ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'] ) ) : $attr['overlayColorHover'],
	),
	' .spectra-image-gallery__media-thumbnail-caption-wrapper--bar-inside' => array(
		'-webkit-align-items'     => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 1, 'flex' ),
		'align-items'             => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 1, 'flex' ),
		'-webkit-justify-content' => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 2, 'flex' ),
		'justify-content'         => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 2, 'flex' ),
	),

	// Caption Selectors.
	' .spectra-image-gallery__media-thumbnail-caption a' => array(
		'color' => ( 'hover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : $attr['captionColor'],
	),
	' .spectra-image-gallery__media-thumbnail-caption'   => array(
		'color'           => ( 'hover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : $attr['captionColor'],
		'text-align'      => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 2 ),
		'font-family'     => 'Default' === $attr['captionFontFamily'] ? '' : $attr['captionFontFamily'],
		'font-weight'     => $attr['captionFontWeight'],
		'font-style'      => $attr['captionFontStyle'],
		'text-decoration' => $text_decoration_prop,
		'text-transform'  => $attr['captionTransform'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['captionFontSize'], $attr['captionFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['captionLineHeight'], $attr['captionLineHeightType'] ),
		'padding'         => UAGB_Block_Helper::generate_spacing(
			$attr['captionPaddingUnit'],
			$attr['captionPaddingTop'],
			$attr['captionPaddingRight'],
			$attr['captionPaddingBottom'],
			$attr['captionPaddingLeft']
		),
	),
	' .spectra-image-gallery__media-thumbnail-caption--overlay' => array(
		'-webkit-align-items'     => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 1, 'flex' ),
		'align-items'             => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 1, 'flex' ),
		'-webkit-justify-content' => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 2, 'flex' ),
		'justify-content'         => UAGB_Block_Helper::get_matrix_alignment( $attr['imageCaptionAlignment'], 2, 'flex' ),
	),
	' .spectra-image-gallery__media-thumbnail-caption--bar-inside' => array_merge(
		array(
			'background-color' => ( 'hover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : $attr['captionBackgroundColor'],
		),
		$main_title_border_css,
		array(
			'border-color' => ( 'hover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : $attr['mainTitleBorderColor'],
		)
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption--bar-inside' => array(
		'background-color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'] ),
		'border-color'     => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'antiHover' !== $attr['captionVisibility'] ) ? $attr['mainTitleBorderHColor'] : $attr['mainTitleBorderColor'] ),
	),
	'spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-caption--bar-inside' => array(
		'background-color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'] ),
		'border-color'     => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' !== $attr['captionVisibility'] || $attr['captionSeparateColors'] ) ? $attr['mainTitleBorderHColor'] : $attr['mainTitleBorderColor'] ),
	),
	' .spectra-image-gallery__media-thumbnail-caption--bar-outside' => array_merge(
		array(
			'background-color' => $attr['captionBackgroundColor'],
		),
		$main_title_border_css
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption--bar-outside' => array(
		'background-color' => $attr['captionSeparateColors'] ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'],
		'border-color'     => $attr['captionSeparateColors'] ? $attr['mainTitleBorderHColor'] : $attr['mainTitleBorderColor'],
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-caption--bar-outside' => array(
		'background-color' => $attr['captionSeparateColors'] ? $attr['captionBackgroundColorHover'] : $attr['captionBackgroundColor'],
		'border-color'     => $attr['captionSeparateColors'] ? $attr['mainTitleBorderHColor'] : $attr['mainTitleBorderColor'],
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption' => array(
		'color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionColorHover'] : $attr['captionColor'] ),
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-caption' => array(
		'color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionColorHover'] : $attr['captionColor'] ),
	),
	' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-caption a' => array(
		'color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionColorHover'] : $attr['captionColor'] ),
	),
	' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-caption a' => array(
		'color' => ( 'antiHover' === $attr['captionVisibility'] ) ? 'rgba(0,0,0,0)' : ( ( 'always' === $attr['captionVisibility'] && $attr['captionSeparateColors'] ) ? $attr['captionColorHover'] : $attr['captionColor'] ),
	),

	// Lightbox Selectors.
	'+.spectra-image-gallery__control-lightbox'          => array(
		'background-color' => $attr['lightboxBackgroundColor'],
		'backdrop-filter'  => $attr['lightboxBackgroundEnableBlur'] ? 'blur( ' . $attr['lightboxBackgroundBlurAmount'] . 'px)' : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--caption' => array(
		'color'           => $attr['lightboxCaptionColor'],
		'background'      => 'linear-gradient(rgba(0,0,0,0), ' . $attr['lightboxCaptionBackgroundColor'] . ')',
		'min-height'      => UAGB_Helper::get_css_value( $attr['lightboxCaptionHeight'], 'px' ),
		'font-family'     => ( 'Default' === $attr['lightboxFontFamily'] ) ? '' : $attr['lightboxFontFamily'],
		'font-weight'     => $attr['lightboxFontWeight'],
		'font-style'      => $attr['lightboxFontStyle'],
		'text-decoration' => $attr['lightboxDecoration'],
		'text-transform'  => $attr['lightboxTransform'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['lightboxFontSize'], $attr['lightboxFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['lightboxLineHeight'], $attr['lightboxLineHeightType'] ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--thumbnails-wrapper' => array(
		'background-color' => $attr['lightboxDisplayCaptions'] ? $attr['lightboxCaptionBackgroundColor'] : 'transparent',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--count' => array(
		'top'         => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'left'        => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'right'       => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ) : '',
		'color'       => $attr['lightboxIconColor'],
		'font-family' => ( 'Default' === $attr['lightboxFontFamily'] ) ? '' : $attr['lightboxFontFamily'],
		'font-weight' => 'normal',
		'font-size'   => UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ) . ' * 3 / 4 )' : '',
		'line-height' => UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ) . ' * 3 / 4 )' : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close' => array(
		'top'   => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'right' => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'left'  => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ) : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['lightboxIconSize'], 'px' ),
		'fill'   => $attr['lightboxIconColor'],
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-prev' => array(
		'left'  => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'color' => $attr['lightboxIconColor'],
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-next' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'color' => $attr['lightboxIconColor'],
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-prev' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'left'  => 'auto',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-next' => array(
		'left'  => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistance'], 'px' ),
		'right' => 'auto',
	),
);

$t_selectors = array(
	'.wp-block-uagb-image-gallery'                      => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['feedMarginUnitTab'],
			$attr['feedMarginTopTab'],
			$attr['feedMarginRightTab'],
			$attr['feedMarginBottomTab'],
			$attr['feedMarginLeftTab']
		),
	),
	' .spectra-image-gallery__control-arrows--carousel' => $arrow_border_css_tablet,
	' .spectra-image-gallery__control-button'           => array_merge(
		array(
			'padding'     => UAGB_Block_Helper::generate_spacing(
				$attr['paginateButtonPaddingUnitTab'],
				$attr['paginateButtonPaddingTopTab'],
				$attr['paginateButtonPaddingRightTab'],
				$attr['paginateButtonPaddingBottomTab'],
				$attr['paginateButtonPaddingLeftTab']
			),
			'font-size'   => UAGB_Helper::get_css_value( $attr['loadMoreFontSizeTab'], $attr['loadMoreFontSizeType'] ),
			'line-height' => UAGB_Helper::get_css_value( $attr['loadMoreLineHeightTab'], $attr['loadMoreLineHeightType'] ),
		),
		$btn_border_css_tablet
	),
	' .spectra-image-gallery__layout--grid'             => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$grid_image_gap_tablet_fallback,
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__layout--isogrid'          => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $grid_image_gap_tablet_fallback / 2 ),
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__layout--isogrid .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$grid_image_gap_tablet_fallback / 2,
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__layout--masonry'          => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $grid_image_gap_tablet_fallback / 2 ),
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$grid_image_gap_tablet_fallback / 2,
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper' => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnitTab'],
			0,
			$grid_image_gap_tablet_fallback
		),
	),
	' .spectra-image-gallery__layout--carousel .slick-list' => array(
		'margin' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnitTab'],
			0,
			-$grid_image_gap_tablet_fallback
		),
	),
	' .spectra-image-gallery__layout--tiled'            => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$grid_image_gap_tablet_fallback,
			$attr['gridImageGapUnitTab']
		),
	),
	' .spectra-image-gallery__media'                    => $image_border_css_tablet,
	' .spectra-image-gallery__media-thumbnail-caption'  => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['captionFontSizeTab'], $attr['captionFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['captionLineHeightTab'], $attr['captionLineHeightType'] ),
		'padding'     => UAGB_Block_Helper::generate_spacing(
			$attr['captionPaddingUnit'],
			$attr['captionPaddingTop'],
			$attr['captionPaddingRight'],
			$attr['captionPaddingBottom'],
			$attr['captionPaddingLeft']
		),
	),
	' .spectra-image-gallery__media-thumbnail-caption--bar-inside' => $main_title_border_css_tablet,
	' .spectra-image-gallery__media-thumbnail-caption--bar-outside' => $main_title_border_css_tablet,
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--caption' => array(
		'min-height'  => UAGB_Helper::get_css_value( $attr['lightboxCaptionHeightTablet'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['lightboxFontSizeTab'], $attr['lightboxFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['lightboxLineHeightTab'], $attr['lightboxLineHeightType'] ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--count' => array(
		'top'         => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'left'        => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'right'       => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ) : '',
		'font-size'   => UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ) . ' * 3 / 4 )' : '',
		'line-height' => UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ) . ' * 3 / 4 )' : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close' => array(
		'top'   => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'right' => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'left'  => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ) : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['lightboxIconSizeTablet'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-prev' => array(
		'left' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-next' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-prev' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'left'  => 'auto',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-next' => array(
		'left'  => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceTablet'], 'px' ),
		'right' => 'auto',
	),
);

$m_selectors = array(
	'.wp-block-uagb-image-gallery'                      => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['feedMarginUnitMob'],
			$attr['feedMarginTopMob'],
			$attr['feedMarginRightMob'],
			$attr['feedMarginBottomMob'],
			$attr['feedMarginLeftMob']
		),
	),
	' .spectra-image-gallery__control-arrows--carousel' => $arrow_border_css_mobile,
	' .spectra-image-gallery__control-button'           => array_merge(
		array(
			'padding'     => UAGB_Block_Helper::generate_spacing(
				$attr['paginateButtonPaddingUnitMob'],
				$attr['paginateButtonPaddingTopMob'],
				$attr['paginateButtonPaddingRightMob'],
				$attr['paginateButtonPaddingBottomMob'],
				$attr['paginateButtonPaddingLeftMob']
			),
			'font-size'   => UAGB_Helper::get_css_value( $attr['loadMoreFontSizeMob'], $attr['loadMoreFontSizeType'] ),
			'line-height' => UAGB_Helper::get_css_value( $attr['loadMoreLineHeightMob'], $attr['loadMoreLineHeightType'] ),
		),
		$btn_border_css_mobile
	),
	' .spectra-image-gallery__layout--grid'             => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$grid_image_gap_mobile_fallback,
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__layout--isogrid'          => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $grid_image_gap_mobile_fallback / 2 ),
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__layout--isogrid .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$grid_image_gap_mobile_fallback / 2,
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__layout--masonry'          => array(
		'margin' => UAGB_Helper::get_css_value(
			-abs( $grid_image_gap_mobile_fallback / 2 ),
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__layout--masonry .spectra-image-gallery__media-wrapper--isotope' => array(
		'padding' => UAGB_Helper::get_css_value(
			$grid_image_gap_mobile_fallback / 2,
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__layout--carousel .spectra-image-gallery__media-wrapper' => array(
		'padding' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnitMob'],
			0,
			$grid_image_gap_mobile_fallback
		),
	),
	' .spectra-image-gallery__layout--carousel .slick-list' => array(
		'margin' => UAGB_Block_Helper::generate_spacing(
			$attr['gridImageGapUnitMob'],
			0,
			-$grid_image_gap_mobile_fallback
		),
	),
	' .spectra-image-gallery__layout--tiled .spectra-image-gallery__media-wrapper' => array(
		'grid-gap' => UAGB_Helper::get_css_value(
			$grid_image_gap_mobile_fallback,
			$attr['gridImageGapUnitMob']
		),
	),
	' .spectra-image-gallery__media'                    => $image_border_css_mobile,
	' .spectra-image-gallery__media-thumbnail-caption'  => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['captionFontSizeMob'], $attr['captionFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['captionLineHeightMob'], $attr['captionLineHeightType'] ),
		'padding'     => UAGB_Block_Helper::generate_spacing(
			$attr['captionPaddingUnit'],
			$attr['captionPaddingTop'],
			$attr['captionPaddingRight'],
			$attr['captionPaddingBottom'],
			$attr['captionPaddingLeft']
		),
	),
	' .spectra-image-gallery__media-thumbnail-caption--bar-inside' => $main_title_border_css_mobile,
	' .spectra-image-gallery__media-thumbnail-caption--bar-outside' => $main_title_border_css_mobile,
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--caption' => array(
		'min-height'  => UAGB_Helper::get_css_value( $attr['lightboxCaptionHeightMobile'], 'px' ),
		'font-size'   => UAGB_Helper::get_css_value( $attr['lightboxFontSizeMob'], $attr['lightboxFontSizeType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['lightboxLineHeightMob'], $attr['lightboxLineHeightType'] ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--count' => array(
		'top'         => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'left'        => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'right'       => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ) : '',
		'font-size'   => UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ) . ' * 3 / 4 )' : '',
		'line-height' => UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ) ? 'calc(' . UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ) . ' * 3 / 4 )' : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close' => array(
		'top'   => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'right' => is_rtl() ? '' : UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'left'  => is_rtl() ? UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ) : '',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--close svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ),
		'height' => UAGB_Helper::get_css_value( $attr['lightboxIconSizeMobile'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-prev' => array(
		'left' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-next' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-prev' => array(
		'right' => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'left'  => 'auto',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main.swiper-rtl .swiper-button-next' => array(
		'left'  => UAGB_Helper::get_css_value( $attr['lightboxEdgeDistanceMobile'], 'px' ),
		'right' => 'auto',
	),
	// Arrow Size can be implemented for all other screen sizes if needed.
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-prev::after' => array(
		'font-size' => '24px',
	),
	'+.spectra-image-gallery__control-lightbox .spectra-image-gallery__control-lightbox--main .swiper-button-next::after' => array(
		'font-size' => '24px',
	),
);

// Background Effect based styling.
switch ( $attr['captionBackgroundEffect'] ) {
	case 'none':
		$selectors[' .spectra-image-gallery__media-thumbnail']['-webkit-filter'] = 'none';
		$selectors[' .spectra-image-gallery__media-thumbnail']['filter']         = 'none';
		break;
	case 'grayscale':
	case 'sepia':
		$selectors[' .spectra-image-gallery__media-thumbnail']['-webkit-filter'] = $attr['captionBackgroundEffect'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmount'],
			'%'
		) . ')';
		$selectors[' .spectra-image-gallery__media-thumbnail']['filter']         = $attr['captionBackgroundEffect'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmount'],
			'%'
		) . ')';
		break;
};
switch ( $attr['captionBackgroundEffectHover'] ) {
	case 'none':
		$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['-webkit-filter']         = 'none';
		$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['filter']                 = 'none';
		$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['-webkit-filter'] = 'none';
		$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['filter']         = 'none';
		break;
	case 'grayscale':
	case 'sepia':
		$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['-webkit-filter']         = $attr['captionBackgroundEffectHover'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmountHover'],
			'%'
		) . ')';
		$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['filter']                 = $attr['captionBackgroundEffectHover'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmountHover'],
			'%'
		) . ')';
		$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['-webkit-filter'] = $attr['captionBackgroundEffectHover'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmountHover'],
			'%'
		) . ')';
		$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['filter']         = $attr['captionBackgroundEffectHover'] . '(' . UAGB_Helper::get_css_value(
			$attr['captionBackgroundEffectAmountHover'],
			'%'
		) . ')';
		break;
};
if ( ! $attr['captionBackgroundEnableBlur'] ) {
	$selectors[' .spectra-image-gallery__media-thumbnail-blurrer']['-webkit-backdrop-filter'] = 'none';
	$selectors[' .spectra-image-gallery__media-thumbnail-blurrer']['backdrop-filter']         = 'none';
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer']['-webkit-backdrop-filter']         = 'none';
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer']['backdrop-filter']                 = 'none';
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-blurrer']['-webkit-backdrop-filter'] = 'none';
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-blurrer']['backdrop-filter']         = 'none';
}

// Caption Type based styling.
if ( $attr['imageDisplayCaption'] && ( 'bar-outside' === $attr['captionDisplayType'] ) ) {
	if ( 'top' === $attr['imageCaptionAlignment01'] ) {
		$selectors[' .spectra-image-gallery__media-thumbnail-caption-wrapper']['margin-bottom'] = UAGB_Helper::get_css_value(
			$attr['captionGap'],
			$attr['captionGapUnit']
		);
	} else {
		$selectors[' .spectra-image-gallery__media-thumbnail-caption-wrapper']['margin-top'] = UAGB_Helper::get_css_value(
			$attr['captionGap'],
			$attr['captionGapUnit']
		);
	}
}

// Grid based styling.
if ( 'grid' === $attr['feedLayout'] && $attr['feedPagination'] ) {
	$selectors[' .spectra-image-gallery__control-wrapper']['margin-top'] = UAGB_Helper::get_css_value(
		$paginate_dot_distance_fallback,
		$attr['paginateDotDistanceUnit']
	);
}

// Carousel based styling.
if ( 'carousel' === $attr['feedLayout'] ) {
	if ( $attr['carouselSquares'] ) {
		$selectors[' .spectra-image-gallery__media--carousel']['aspect-ratio']            = 1;
		$selectors[' .spectra-image-gallery__media-thumbnail--carousel']['height']        = '100%';
		$selectors[' .spectra-image-gallery__media-thumbnail--carousel']['width']         = '100%';
		$selectors[' .spectra-image-gallery__media-thumbnail--carousel']['-o-object-fit'] = 'cover';
		$selectors[' .spectra-image-gallery__media-thumbnail--carousel']['object-fit']    = 'cover';
	}
} else {
	$selectors[' .spectra-image-gallery__iso-ref-wrapper']['overflow'] = 'auto';
}

// Masonry based styling.
if ( 'masonry' === $attr['feedLayout'] && $attr['feedPagination'] && ! $attr['paginateUseLoader'] ) {
	$selectors[' .spectra-image-gallery__control-wrapper']['-webkit-justify-content'] = $attr['paginateButtonAlign'];
	$selectors[' .spectra-image-gallery__control-wrapper']['justify-content']         = $attr['paginateButtonAlign'];
	$selectors[' .spectra-image-gallery__control-wrapper']['-webkit-align-items']     = 'center';
	$selectors[' .spectra-image-gallery__control-wrapper']['align-items']             = 'center';
}

// New Zoom Effect on Hover.
switch ( $attr['imageZoomType'] ) {
	case 'zoom-in':
		if ( $attr['imageEnableZoom'] ) {
			$selectors[' .spectra-image-gallery__media-thumbnail']['transform'] = 'scale3d(1.005, 1.005, 1.005)';
			$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['transform']         = 'scale3d(1.1, 1.1, 1.1)';
			$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['transform'] = 'scale3d(1.1, 1.1, 1.1)';
		}
		break;
	case 'zoom-out':
		if ( $attr['imageEnableZoom'] ) {
			$selectors[' .spectra-image-gallery__media-thumbnail']['transform'] = 'scale3d(1.1, 1.1, 1.1)';
			$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail']['transform']         = 'scale3d(1.005, 1.005, 1.005)';
			$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail']['transform'] = 'scale3d(1.005, 1.005, 1.005)';
		}
		break;
}


// Box Shadow Application Based on Type.
if ( 'outset' === $attr['imageBoxShadowPosition'] ) {
	$selectors[' .spectra-image-gallery__media']['box-shadow']                   = $image_box_shadow_css;
	$selectors[' .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow'] = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPositionHover'] ) ? ( ' ' . $attr['imageBoxShadowPositionHover'] ) : ''
	);
} else {
	$selectors[' .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow'] = $image_box_shadow_css;
	$selectors[' .spectra-image-gallery__media']['box-shadow']                   = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPositionHover'] ) ? ( ' ' . $attr['imageBoxShadowPositionHover'] ) : ''
	);
}

if ( 'outset' === $attr['imageBoxShadowPositionHover'] ) {
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media']['box-shadow']                           = $image_box_shadow_hover_css;
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow']         = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPosition'] ) ? ( ' ' . $attr['imageBoxShadowPosition'] ) : ''
	);
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media']['box-shadow']                   = $image_box_shadow_hover_css;
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow'] = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPosition'] ) ? ( ' ' . $attr['imageBoxShadowPosition'] ) : ''
	);
} else {
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow']         = $image_box_shadow_hover_css;
	$selectors[' .spectra-image-gallery__media-wrapper:hover .spectra-image-gallery__media']['box-shadow']                           = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPosition'] ) ? ( ' ' . $attr['imageBoxShadowPosition'] ) : ''
	);
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media-thumbnail-blurrer']['box-shadow'] = $image_box_shadow_hover_css;
	$selectors[' .spectra-image-gallery__media-wrapper:focus-visible .spectra-image-gallery__media']['box-shadow']                   = '0 0 transparent' . (
		( 'inset' === $attr['imageBoxShadowPosition'] ) ? ( ' ' . $attr['imageBoxShadowPosition'] ) : ''
	);
}

// Slick Dot Positioning in the Editor.
$selectors[' .spectra-image-gallery__layout--carousel .slick-dots']['margin-bottom'] = '30px !important';

$combined_selectors = UAGB_Helper::get_combined_selectors(
	'image-gallery',
	array(
		'desktop' => $selectors,
		'tablet'  => $t_selectors,
		'mobile'  => $m_selectors,
	),
	$attr
);

$base_selector = '.uagb-block-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�S�+BBKultimate-addons-for-gutenberg/includes/blocks/image-gallery/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$block_name = 'image-gallery';
$selector   = '.uagb-block-' . $id;
$js         = '';

$is_rtl = is_rtl();

$slick_options = apply_filters(
	'uagb_image_gallery_slick_options',
	array(
		'arrows'        => is_bool( $attr['paginateUseArrows'] ) ? $attr['paginateUseArrows'] : true,
		'dots'          => is_bool( $attr['paginateUseDots'] ) ? $attr['paginateUseDots'] : true,
		'initialSlide'  => is_int( $attr['carouselStartAt'] ) ? $attr['carouselStartAt'] : (int) $attr['carouselStartAt'],
		'infinite'      => is_bool( $attr['carouselLoop'] ) ? $attr['carouselLoop'] : true,
		'autoplay'      => is_bool( $attr['carouselAutoplay'] ) ? $attr['carouselAutoplay'] : true,
		'autoplaySpeed' => is_int( $attr['carouselAutoplaySpeed'] ) ? $attr['carouselAutoplaySpeed'] : (int) $attr['carouselAutoplaySpeed'],
		'pauseOnHover'  => is_bool( $attr['carouselPauseOnHover'] ) ? $attr['carouselPauseOnHover'] : true,
		'speed'         => is_int( $attr['carouselTransitionSpeed'] ) ? $attr['carouselTransitionSpeed'] : (int) $attr['carouselTransitionSpeed'],
		'slidesToShow'  => is_int( $attr['columnsDesk'] ) ? $attr['columnsDesk'] : (int) $attr['columnsDesk'],
		'prevArrow'     => "<button type='button' data-role='none' class='spectra-image-gallery__control-arrows spectra-image-gallery__control-arrows--carousel slick-prev slick-arrow' aria-label='Previous' tabindex='0' role='button'><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='" . esc_attr( $attr['paginateArrowSize'] ) . "' height='" . esc_attr( $attr['paginateArrowSize'] ) . "'><path d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'></path></svg></button>",
		'nextArrow'     => "<button type='button' data-role='none' class='spectra-image-gallery__control-arrows spectra-image-gallery__control-arrows--carousel slick-next slick-arrow' aria-label='Previous' tabindex='0' role='button'><svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' width='" . esc_attr( $attr['paginateArrowSize'] ) . "' height='" . esc_attr( $attr['paginateArrowSize'] ) . "'><path d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'></path></svg></button>",
		'rtl'           => $is_rtl,
		'responsive'    => array(
			array(
				'breakpoint' => 1024,
				'settings'   => array(
					'slidesToShow' => is_int( $attr['columnsTab'] ) ? $attr['columnsTab'] : (int) $attr['columnsTab'],
				),
			),
			array(
				'breakpoint' => 767,
				'settings'   => array(
					'slidesToShow' => is_int( $attr['columnsMob'] ) ? $attr['columnsMob'] : (int) $attr['columnsMob'],
				),
			),
		),
	),
	$id
);

// The Thumbnail Swiper Association is handled in the JS in Class Spectra Image Gallery.
$lightbox_options = apply_filters(
	'uagb_image_gallery_lightbox_options',
	array(
		'lazy'          => true,
		'slidesPerView' => 1,
		'navigation'    => array(
			'nextEl' => $selector . '+.spectra-image-gallery__control-lightbox .swiper-button-next',
			'prevEl' => $selector . '+.spectra-image-gallery__control-lightbox .swiper-button-prev',
		),
		'keyboard'      => array(
			'enabled' => true,
		),
	),
	$id
);

$thumbnail_options = apply_filters(
	'uagb_image_gallery_thumbnail_options',
	array(
		'centeredSlides'        => true,
		'slidesPerView'         => 5,
		'slideToClickedSlide'   => true,
		'watchSlidesProgres'    => true,
		'watchSlidesVisibility' => true,
		// Swiper Breakpoints go Upward.
		'breakpoints'           => array(
			768  => array(
				'slidesPerView' => 7,
			),
			1024 => array(
				'slidesPerView' => 9,
			),
		),
	),
	$id
);

$settings           = wp_json_encode( $slick_options );
$lightbox_settings  = is_array( $lightbox_options ) ? $lightbox_options : array();
$thumbnail_settings = ( ! empty( $attr['lightboxThumbnails'] ) && is_array( $thumbnail_options ) ) ? $thumbnail_options : array();

if ( $attr['mediaGallery'] ) {
	switch ( $attr['feedLayout'] ) {
		case 'grid':
			$js = $attr['feedPagination']
				? Spectra_Image_Gallery::render_frontend_grid_pagination( $id, $attr, $selector, $lightbox_settings, $thumbnail_settings )
				: '';
			break;
		case 'masonry':
			$js = Spectra_Image_Gallery::render_frontend_masonry_layout( $id, $attr, $selector, $lightbox_settings, $thumbnail_settings );
			break;
		case 'carousel':
			$js = Spectra_Image_Gallery::render_frontend_carousel_layout( $id, $settings, $selector );
			break;
		case 'tiled':
			$js = Spectra_Image_Gallery::render_frontend_tiled_layout( $id );
			break;
	}
	switch ( $attr['imageClickEvent'] ) {
		case 'lightbox':
			$js .= Spectra_Image_Gallery::render_frontend_lightbox( $id, $attr, $lightbox_settings, $thumbnail_settings, $selector );
			break;
		case 'image':
			$js .= Spectra_Image_Gallery::render_image_click( $id, $attr );
			break;
		case 'url':
			$js = apply_filters( 'uagb_image_gallery_pro_custom_url_js', $js, $id, $attr );
			break;
	}
}

return $js;
PK�][T��'��Dultimate-addons-for-gutenberg/includes/blocks/forms-accept/error_lognu�[���[27-Oct-2025 04:27:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-accept/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-accept/block.php on line 14
PK�][m�ߙ�Dultimate-addons-for-gutenberg/includes/blocks/forms-accept/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-accept';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Accept', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a consent statement with a checkbox in your form.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'deprecated'  => false,
);
PK�][Uݘ}��<ultimate-addons-for-gutenberg/includes/blocks/tabs/error_lognu�[���[27-Oct-2025 14:34:20 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/block.php on line 16
[27-Oct-2025 14:36:18 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/attributes.php on line 10
[27-Oct-2025 14:40:16 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/frontend.js.php on line 11
[27-Oct-2025 14:40:16 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function esc_attr() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/frontend.js.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/tabs/frontend.js.php on line 15
PK�][��w��Aultimate-addons-for-gutenberg/includes/blocks/tabs/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'tab' );

return array_merge(
	array(
		'tabHeaders'                  => array( 'Tab 1', 'Tab 2', 'Tab 3' ),
		'tabAlign'                    => 'left',
		'tabActive'                   => 0,
		'tabActiveFrontend'           => 0,
		'tabsStyleD'                  => 'hstyle1',
		'tabsStyleT'                  => 'vstyle6',
		'tabsStyleM'                  => 'stack1',
		'headerBgColor'               => '',
		'headerTextColor'             => '',
		'bodyBgColor'                 => '',
		'bodyTextColor'               => '',
		'activeTabBgColor'            => '',
		'activeTabTextColor'          => '',
		'activeiconColor'             => '',
		'tabTitleLeftMargin'          => '',
		'tabTitleRightMargin'         => '',
		'tabTitleTopMargin'           => '',
		'tabTitleBottomMargin'        => '',
		'tabTitleLeftMarginTablet'    => '',
		'tabTitleRightMarginTablet'   => '',
		'tabTitleTopMarginTablet'     => '',
		'tabTitleBottomMarginTablet'  => '',
		'tabTitleLeftMarginMobile'    => '',
		'tabTitleRightMarginMobile'   => '',
		'tabTitleTopMarginMobile'     => '',
		'tabTitleBottomMarginMobile'  => '',
		'tabTitleMarginUnit'          => 'px',
		'mobiletabTitleMarginUnit'    => 'px',
		'tablettabTitleMarginUnit'    => 'px',
		'tabTitleMarginLink'          => '',
		'tabTitleTopPaddingTablet'    => '',
		'tabTitleRightPaddingTablet'  => '',
		'tabTitleBottomPaddingTablet' => '',
		'tabTitleLeftPaddingTablet'   => '',
		'tabTitleTopPaddingMobile'    => '',
		'tabTitleRightPaddingMobile'  => '',
		'tabTitleBottomPaddingMobile' => '',
		'tabTitleLeftPaddingMobile'   => '',
		'tabTitlePaddingUnit'         => 'px',
		'mobiletabTitlePaddingUnit'   => 'px',
		'tablettabTitlePaddingUnit'   => 'px',
		'tabTitlePaddingLink'         => '',
		'tabBodyLeftMargin'           => '',
		'tabBodyRightMargin'          => '',
		'tabBodyTopMargin'            => '',
		'tabBodyBottomMargin'         => '',
		'tabBodyLeftMarginTablet'     => '',
		'tabBodyRightMarginTablet'    => '',
		'tabBodyTopMarginTablet'      => '',
		'tabBodyBottomMarginTablet'   => '',
		'tabBodyLeftMarginMobile'     => '',
		'tabBodyRightMarginMobile'    => '',
		'tabBodyTopMarginMobile'      => '',
		'tabBodyBottomMarginMobile'   => '',
		'tabBodyMarginUnit'           => 'px',
		'mobiletabBodyMarginUnit'     => 'px',
		'tablettabBodyMarginUnit'     => 'px',
		'tabBodyMarginLink'           => '',
		'tabBodyTopPaddingTablet'     => '',
		'tabBodyRightPaddingTablet'   => '',
		'tabBodyBottomPaddingTablet'  => '',
		'tabBodyLeftPaddingTablet'    => '',
		'tabBodyTopPaddingMobile'     => '',
		'tabBodyRightPaddingMobile'   => '',
		'tabBodyBottomPaddingMobile'  => '',
		'tabBodyLeftPaddingMobile'    => '',
		'tabBodyPaddingUnit'          => 'px',
		'mobiletabBodyPaddingUnit'    => 'px',
		'tablettabBodyPaddingUnit'    => 'px',
		'tabBodyPaddingLink'          => '',
		'tabBodyVertPadding'          => '',
		'tabBodyHrPadding'            => '',
		'tabTitleVertPadding'         => '',
		'tabTitleHrPadding'           => '',
		'titleFontSize'               => '',
		'titleFontSizeType'           => 'px',
		'titleFontSizeTablet'         => '',
		'titleFontSizeMobile'         => '',
		'titleFontFamily'             => 'Default',
		'titleFontWeight'             => '500',
		'titleFontStyle'              => '',
		'titleLineHeightType'         => 'em',
		'titleLineHeight'             => '',
		'titleLineHeightTablet'       => '',
		'titleLineHeightMobile'       => '',
		'titleLoadGoogleFonts'        => false,
		'titleAlign'                  => 'center',
		'titleTransform'              => '',
		'titleDecoration'             => '',
		'showIcon'                    => false,
		'icon'                        => '',
		'iconColor'                   => '',
		'iconSize'                    => 16,
		'iconSizeTablet'              => '',
		'iconSizeMobile'              => '',
		'iconPosition'                => 'left',
		'iconSpacing'                 => 10,
		'iconSpacingTablet'           => '',
		'iconSpacingMobile'           => '',
		'titleLetterSpacing'          => '',
		'titleLetterSpacingTablet'    => '',
		'titleLetterSpacingMobile'    => '',
		'titleLetterSpacingType'      => 'px',
		'borderWidth'                 => 1,
		'borderColor'                 => '#e0e0e0',
		'borderRadius'                => '',
		'borderStyle'                 => 'solid',
	),
	$border_attribute
);
PK�][R��tt<ultimate-addons-for-gutenberg/includes/blocks/tabs/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/tabs';
$block_data = array(
	'slug'                => '',
	'admin_categories'    => array( 'content' ),
	'link'                => 'tabs',
	'doc'                 => 'tabs-block',
	'title'               => __( 'Tabs', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Display your content under different tabs.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'extension'           => false,
	'priority'            => Spectra_Block_Prioritization::get_block_priority( 'tabs' ),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-tabs-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'tabs' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
	'dynamic_assets'      => array(
		'dir' => 'tabs',
	),
);
PK�][�y�)g)gCultimate-addons-for-gutenberg/includes/blocks/tabs/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var string[] $attr
 * @var int $id
 *
 * @package uagb
 */

$overall_border_css    = UAGB_Block_Helper::uag_generate_border_css( $attr, 'tab' );
$overall_border_css    = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$overall_border_css,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$overall_border_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'tab', 'tablet' );
$overall_border_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'tab', 'mobile' );
// Adds Fonts.
UAGB_Block_JS::blocks_tabs_gfont( $attr );

$tab_title_top_padding    = isset( $attr['tabTitleTopPadding'] ) ? $attr['tabTitleTopPadding'] : $attr['tabTitleVertPadding'];
$tab_title_bottom_padding = isset( $attr['tabTitleBottomPadding'] ) ? $attr['tabTitleBottomPadding'] : $attr['tabTitleVertPadding'];
$tab_title_left_padding   = isset( $attr['tabTitleLeftPadding'] ) ? $attr['tabTitleLeftPadding'] : $attr['tabTitleHrPadding'];
$tab_title_right_padding  = isset( $attr['tabTitleRightPadding'] ) ? $attr['tabTitleRightPadding'] : $attr['tabTitleHrPadding'];

$tab_body_top_padding    = isset( $attr['tabBodyTopPadding'] ) ? $attr['tabBodyTopPadding'] : $attr['tabBodyVertPadding'];
$tab_body_bottom_padding = isset( $attr['tabBodyBottomPadding'] ) ? $attr['tabBodyBottomPadding'] : $attr['tabBodyVertPadding'];
$tab_body_left_padding   = isset( $attr['tabBodyLeftPadding'] ) ? $attr['tabBodyLeftPadding'] : $attr['tabBodyHrPadding'];
$tab_body_right_padding  = isset( $attr['tabBodyRightPadding'] ) ? $attr['tabBodyRightPadding'] : $attr['tabBodyHrPadding'];

$selectors = array(
	' .uagb-tabs__panel .uagb-tab '                        => array_merge(
		array(
			'background' => $attr['headerBgColor'],
			'text-align' => $attr['titleAlign'],
		),
		$overall_border_css
	),
	' .uagb-tabs__panel .uagb-tab .uagb-tabs-list'         => array_merge(
		array(
			'justify-content' => $attr['titleAlign'],
		)
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a '  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $tab_title_top_padding, $attr['tabTitlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $tab_title_bottom_padding, $attr['tabTitlePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $tab_title_left_padding, $attr['tabTitlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $tab_title_right_padding, $attr['tabTitlePaddingUnit'] ),
		'color'          => $attr['headerTextColor'],
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab'     => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['tabTitleTopMargin'], $attr['tabTitleMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['tabTitleLeftMargin'], $attr['tabTitleMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['tabTitleRightMargin'], $attr['tabTitleMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['tabTitleBottomMargin'], $attr['tabTitleMarginUnit'] ),
	),
	'.uagb-tabs__wrap .uagb-tabs__panel .uagb-tab:hover '  => array(
		'border-color' => $attr['tabBorderHColor'],
	),
	' .uagb-tabs__panel .uagb-tab.uagb-tabs__active'       => array(
		'background' => $attr['activeTabBgColor'],
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab.uagb-tabs__active a' => array(
		'color' => $attr['activeTabTextColor'],
	),
	' .uagb-tabs__panel .uagb-tab.uagb-tabs__active .uagb-tabs__icon svg' => array(
		'fill' => $attr['activeiconColor'],
	),

	'.uagb-tabs__wrap .uagb-tabs__body-wrap '              => array(
		'background'     => $attr['bodyBgColor'],
		'padding-top'    => UAGB_Helper::get_css_value( $tab_body_top_padding, $attr['tabBodyPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $tab_body_bottom_padding, $attr['tabBodyPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $tab_body_left_padding, $attr['tabBodyPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $tab_body_right_padding, $attr['tabBodyPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['tabBodyTopMargin'], $attr['tabBodyMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['tabBodyLeftMargin'], $attr['tabBodyMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['tabBodyRightMargin'], $attr['tabBodyMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['tabBodyBottomMargin'], $attr['tabBodyMarginUnit'] ),
	),
	'.uagb-tabs__wrap .uagb-tabs__body-wrap:hover '        => array(
		'border-color' => $attr['tabBorderHColor'],
	),
	' .uagb-tabs__body-wrap p '                            => array(
		'color' => $attr['bodyTextColor'],
	),
	' .uagb-tabs__icon svg'                                => array(
		'height' => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'width'  => UAGB_Helper::get_css_value( $attr['iconSize'], 'px' ),
		'fill'   => $attr['iconColor'],
	),
	' .uagb-tabs__icon-position-left > .uagb-tabs__icon'   => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['iconSpacing'], 'px' ),
	),
	' .uagb-tabs__icon-position-right > .uagb-tabs__icon'  => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['iconSpacing'], 'px' ),
	),
	' .uagb-tabs__icon-position-bottom > .uagb-tabs__icon' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['iconSpacing'], 'px' ),
	),
	' .uagb-tabs__icon-position-top > .uagb-tabs__icon'    => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconSpacing'], 'px' ),
	),
	'.uagb-tabs__hstyle1-desktop > .uagb-tabs__panel .uagb-tab' => $overall_border_css,
	'.uagb-tabs__hstyle1-desktop > .uagb-tabs__body-wrap'  => $overall_border_css,
	'.uagb-tabs__hstyle2-desktop > .uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle2-desktop ul.uagb-tabs__panel'      => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_css
	),
	'.uagb-tabs__hstyle2-desktop > .uagb-tabs__body-wrap'  => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle3-desktop .uagb-tab'                => array_merge(
		array(
			'border-bottom-width' => '0px',
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_css
	),
	'.uagb-tabs__hstyle3-desktop > .uagb-tabs__body-wrap'  => $overall_border_css,
	'.uagb-tabs__hstyle4-desktop .uagb-tab'                => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_css
	),
	'.uagb-tabs__hstyle4-desktop > .uagb-tabs__body-wrap'  => $overall_border_css,
	'.uagb-tabs__hstyle5-desktop'                          => $overall_border_css,
	'.uagb-tabs__hstyle5-desktop .uagb-tab'                => array(
		'border-top-width'    => '0px',
		'border-right-width'  => '0px',
		'border-left-width'   => '0px',
		'border-bottom-width' => '0px',
		'border-top'          => 0,
		'border-left'         => 0,
		'border-right'        => 0,
		'border-bottom'       => 0,
		'outline'             => 0,
		'border-radius'       => 0,
	),
	'.uagb-tabs__hstyle5-desktop .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_css
	),
	'.uagb-tabs__vstyle6-desktop .uagb-tab'                => $overall_border_css,
	'.uagb-tabs__vstyle6-desktop .uagb-tabs__body-wrap'    => $overall_border_css,
	'.uagb-tabs__vstyle7-desktop .uagb-tab'                => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_css
	),
	'.uagb-tabs__vstyle7-desktop > .uagb-tabs__body-wrap'  => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle8-desktop .uagb-tab'                => array_merge(
		array(
			'border-right-width' => '0px',
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_css
	),
	'.uagb-tabs__vstyle8-desktop > .uagb-tabs__body-wrap'  => $overall_border_css,
	'.uagb-tabs__vstyle9-desktop .uagb-tab'                => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_css
	),
	'.uagb-tabs__vstyle9-desktop > .uagb-tabs__body-wrap'  => $overall_border_css,
	'.uagb-tabs__vstyle10-desktop'                         => $overall_border_css,
	'.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-desktop .uagb-tabs__body-wrap'   => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-desktop ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'    => '0px',
			'border-bottom-width' => '0px',
			'border-left-width'   => '0px',
			'border-top'          => 0,
			'border-left'         => 0,
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_css
	),
);
if ( 'left' === $attr['tabAlign'] ) {
	$selectors[' ul.uagb-tabs__panel'] = array(
		'margin-right' => 'auto',
		'margin-left'  => 0,
	);
} elseif ( 'right' === $attr['tabAlign'] ) {
	$selectors[' ul.uagb-tabs__panel'] = array(
		'margin-left'  => 'auto',
		'margin-right' => 0,
	);
} else {
	$selectors[' ul.uagb-tabs__panel'] = array(
		'margin' => 'auto',
	);
}
$m_selectors = array(
	' .uagb-tabs__icon svg'                                => array(
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], 'px' ),
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeMobile'], 'px' ),
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a '  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['tabTitleTopPaddingMobile'], $attr['mobiletabTitlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['tabTitleBottomPaddingMobile'], $attr['mobiletabTitlePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['tabTitleLeftPaddingMobile'], $attr['mobiletabTitlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['tabTitleRightPaddingMobile'], $attr['mobiletabTitlePaddingUnit'] ),
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab'     => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['tabTitleTopMarginMobile'], $attr['mobiletabTitleMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['tabTitleLeftMarginMobile'], $attr['mobiletabTitleMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['tabTitleRightMarginMobile'], $attr['mobiletabTitleMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['tabTitleBottomMarginMobile'], $attr['mobiletabTitleMarginUnit'] ),
	),
	'.uagb-tabs__wrap .uagb-tabs__body-wrap'               => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['tabBodyTopPaddingMobile'], $attr['mobiletabBodyPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['tabBodyBottomPaddingMobile'], $attr['mobiletabBodyPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['tabBodyLeftPaddingMobile'], $attr['mobiletabBodyPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['tabBodyRightPaddingMobile'], $attr['mobiletabBodyPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['tabBodyTopMarginMobile'], $attr['mobiletabBodyMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['tabBodyLeftMarginMobile'], $attr['mobiletabBodyMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['tabBodyRightMarginMobile'], $attr['mobiletabBodyMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['tabBodyBottomMarginMobile'], $attr['mobiletabBodyMarginUnit'] ),
	),
	' .uagb-tabs__icon-position-left > .uagb-tabs__icon'   => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['iconSpacingMobile'], 'px' ),
	),
	' .uagb-tabs__icon-position-right > .uagb-tabs__icon'  => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['iconSpacingMobile'], 'px' ),
	),
	' .uagb-tabs__icon-position-bottom > .uagb-tabs__icon' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['iconSpacingMobile'], 'px' ),
	),
	' .uagb-tabs__icon-position-top > .uagb-tabs__icon'    => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconSpacingMobile'], 'px' ),
	),
	'.uagb-tabs__hstyle1-mobile > .uagb-tabs__panel .uagb-tab' => $overall_border_mobile,
	'.uagb-tabs__hstyle1-mobile > .uagb-tabs__body-wrap'   => $overall_border_mobile,
	'.uagb-tabs__hstyle2-mobile > .uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle2-mobile ul.uagb-tabs__panel'       => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__hstyle2-mobile > .uagb-tabs__body-wrap'   => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle3-mobile .uagb-tab'                 => array_merge(
		array(
			'border-bottom-width' => '0px',
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__hstyle3-mobile > .uagb-tabs__body-wrap'   => $overall_border_mobile,
	'.uagb-tabs__hstyle4-mobile .uagb-tab'                 => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_mobile
	),
	'.uagb-tabs__hstyle4-mobile > .uagb-tabs__body-wrap'   => $overall_border_mobile,
	'.uagb-tabs__hstyle5-mobile'                           => $overall_border_mobile,
	'.uagb-tabs__hstyle5-mobile .uagb-tab'                 => array(
		'border-top-width'    => '0px',
		'border-right-width'  => '0px',
		'border-left-width'   => '0px',
		'border-bottom-width' => '0px',
		'border-top'          => 0,
		'border-left'         => 0,
		'border-right'        => 0,
		'border-bottom'       => 0,
		'outline'             => 0,
		'border-radius'       => 0,
	),
	'.uagb-tabs__hstyle5-mobile .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__vstyle6-mobile .uagb-tab'                 => $overall_border_mobile,
	'.uagb-tabs__vstyle6-mobile .uagb-tabs__body-wrap'     => $overall_border_mobile,
	'.uagb-tabs__vstyle7-mobile .uagb-tab'                 => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__vstyle7-mobile > .uagb-tabs__body-wrap'   => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle8-mobile .uagb-tab'                 => array_merge(
		array(
			'border-right-width' => '0px',
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__vstyle8-mobile > .uagb-tabs__body-wrap'   => $overall_border_mobile,
	'.uagb-tabs__vstyle9-mobile .uagb-tab'                 => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_mobile
	),
	'.uagb-tabs__vstyle9-mobile > .uagb-tabs__body-wrap'   => $overall_border_mobile,
	'.uagb-tabs__vstyle10-mobile'                          => $overall_border_mobile,
	'.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-mobile .uagb-tabs__body-wrap'    => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-mobile ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'    => '0px',
			'border-bottom-width' => '0px',
			'border-left-width'   => '0px',
			'border-top'          => 0,
			'border-left'         => 0,
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__stack1-mobile > .uagb-tabs__panel .uagb-tab' => $overall_border_mobile,
	'.uagb-tabs__stack1-mobile > .uagb-tabs__body-wrap'    => $overall_border_mobile,
	'.uagb-tabs__stack2-mobile .uagb-tab'                  => array_merge(
		array(
			'border-bottom-width' => '0px',
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_mobile
	),
	'.uagb-tabs__stack2-mobile > .uagb-tabs__body-wrap'    => $overall_border_mobile,
	'.uagb-tabs__stack3-mobile .uagb-tab'                  => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_mobile
	),
	'.uagb-tabs__stack3-mobile > .uagb-tabs__body-wrap'    => $overall_border_mobile,
	'.uagb-tabs__stack4-mobile'                            => $overall_border_mobile,
	'.uagb-tabs__stack4-mobile .uagb-tab'                  => array(
		'border-top-width'    => '0px',
		'border-right-width'  => '0px',
		'border-left-width'   => '0px',
		'border-bottom-width' => '0px',
		'border-top'          => 0,
		'border-left'         => 0,
		'border-right'        => 0,
		'border-bottom'       => 0,
		'outline'             => 0,
		'border-radius'       => 0,
	),
	'.uagb-tabs__stack4-mobile .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_mobile
	),


);
$t_selectors = array(
	' .uagb-tabs__icon svg'                                => array(
		'height' => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
		'width'  => UAGB_Helper::get_css_value( $attr['iconSizeTablet'], 'px' ),
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab a '  => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['tabTitleTopPaddingTablet'], $attr['tablettabTitlePaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['tabTitleBottomPaddingTablet'], $attr['tablettabTitlePaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['tabTitleLeftPaddingTablet'], $attr['tablettabTitlePaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['tabTitleRightPaddingTablet'], $attr['tablettabTitlePaddingUnit'] ),
	),
	'.uagb-tabs__wrap ul.uagb-tabs__panel li.uagb-tab '    => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['tabTitleTopMarginTablet'], $attr['tablettabTitleMarginUnit'] ),
		'margin-left'   => UAGB_Helper::get_css_value( $attr['tabTitleLeftMarginTablet'], $attr['tablettabTitleMarginUnit'] ),
		'margin-right'  => UAGB_Helper::get_css_value( $attr['tabTitleRightMarginTablet'], $attr['tablettabTitleMarginUnit'] ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['tabTitleBottomMarginTablet'], $attr['tablettabTitleMarginUnit'] ),
	),
	'.uagb-tabs__wrap .uagb-tabs__body-wrap '              => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['tabBodyTopPaddingTablet'], $attr['tablettabBodyPaddingUnit'] ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['tabBodyBottomPaddingTablet'], $attr['tablettabBodyPaddingUnit'] ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['tabBodyLeftPaddingTablet'], $attr['tablettabBodyPaddingUnit'] ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['tabBodyRightPaddingTablet'], $attr['tablettabBodyPaddingUnit'] ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['tabBodyTopMarginTablet'], $attr['tablettabBodyMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['tabBodyLeftMarginTablet'], $attr['tablettabBodyMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['tabBodyRightMarginTablet'], $attr['tablettabBodyMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['tabBodyBottomMarginTablet'], $attr['tablettabBodyMarginUnit'] ),
	),
	' .uagb-tabs__icon-position-left > .uagb-tabs__icon'   => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['iconSpacingTablet'], 'px' ),
	),
	' .uagb-tabs__icon-position-right > .uagb-tabs__icon'  => array(
		'margin-left' => UAGB_Helper::get_css_value( $attr['iconSpacingTablet'], 'px' ),
	),
	' .uagb-tabs__icon-position-bottom > .uagb-tabs__icon' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['iconSpacingTablet'], 'px' ),
	),
	' .uagb-tabs__icon-position-top > .uagb-tabs__icon'    => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['iconSpacingTablet'], 'px' ),
	),
	'.uagb-tabs__hstyle1-tablet > .uagb-tabs__panel .uagb-tab' => $overall_border_tablet,
	'.uagb-tabs__hstyle1-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__hstyle2-tablet > .uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle2-tablet ul.uagb-tabs__panel'       => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_tablet
	),
	'.uagb-tabs__hstyle2-tablet > .uagb-tabs__body-wrap'   => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__hstyle3-tablet .uagb-tab'                 => array_merge(
		array(
			'border-bottom-width' => '0px',
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_tablet
	),
	'.uagb-tabs__hstyle3-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__hstyle4-tablet .uagb-tab'                 => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_tablet
	),
	'.uagb-tabs__hstyle4-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__hstyle5-tablet'                           => $overall_border_tablet,
	'.uagb-tabs__hstyle5-tablet .uagb-tab'                 => array(
		'border-top-width'    => '0px',
		'border-right-width'  => '0px',
		'border-left-width'   => '0px',
		'border-bottom-width' => '0px',
		'border-top'          => 0,
		'border-left'         => 0,
		'border-right'        => 0,
		'border-bottom'       => 0,
		'outline'             => 0,
		'border-radius'       => 0,
	),
	'.uagb-tabs__hstyle5-tablet .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_tablet
	),
	'.uagb-tabs__vstyle6-tablet > .uagb-tabs__panel .uagb-tab' => $overall_border_tablet,
	'.uagb-tabs__vstyle6-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__vstyle7-tablet .uagb-tab'                 => array_merge(
		array(
			'border-top-width'   => '0px',
			'border-right-width' => '0px',
			'border-left-width'  => '0px',
			'border-top'         => 0,
			'border-left'        => 0,
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_tablet
	),
	'.uagb-tabs__vstyle7-tablet > .uagb-tabs__body-wrap'   => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle8-tablet .uagb-tab'                 => array_merge(
		array(
			'border-right-width' => '0px',
			'border-right'       => 0,
			'outline'            => 0,
			'border-radius'      => 0,
		),
		$overall_border_tablet
	),
	'.uagb-tabs__vstyle8-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__vstyle9-tablet .uagb-tab'                 => array_merge(
		array(
			'border-radius' => '30px',
		),
		$overall_border_tablet
	),
	'.uagb-tabs__vstyle9-tablet > .uagb-tabs__body-wrap'   => $overall_border_tablet,
	'.uagb-tabs__vstyle10-tablet'                          => $overall_border_tablet,
	'.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab' => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-tablet .uagb-tabs__body-wrap'    => array(
		'border-width' => '0px',
		'border-style' => 'none',
	),
	'.uagb-tabs__vstyle10-tablet ul.uagb-tabs__panel .uagb-tab.uagb-tabs__active' => array_merge(
		array(
			'border-top-width'    => '0px',
			'border-bottom-width' => '0px',
			'border-left-width'   => '0px',
			'border-top'          => 0,
			'border-left'         => 0,
			'border-bottom'       => 0,
			'outline'             => 0,
			'border-radius'       => 0,
		),
		$overall_border_tablet
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'mobile'  => $m_selectors,
	'tablet'  => $t_selectors,
);
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', '  .uagb-tabs__panel .uagb-tab a', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][
��|��Bultimate-addons-for-gutenberg/includes/blocks/tabs/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 *
 * @since 2.0.0
 * @var int $id
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;
ob_start();
?>
window.addEventListener( 'load', function() {
	UAGBTabs.init( '<?php echo esc_attr( $selector ); ?>' );
	UAGBTabs.anchorTabId( '<?php echo esc_attr( $selector ); ?>' );
});
window.addEventListener( 'hashchange', function() {
	UAGBTabs.anchorTabId( '<?php echo esc_attr( $selector ); ?>' );
}, false );
<?php
return ob_get_clean();
?>
PK�][����Eultimate-addons-for-gutenberg/includes/blocks/buttons-child/error_lognu�[���[27-Oct-2025 04:24:18 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/block.php on line 14
[27-Oct-2025 04:47:24 UTC] PHP Warning:  Undefined variable $id in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/frontend.js.php on line 11
[27-Oct-2025 04:47:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function esc_attr() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/frontend.js.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/frontend.js.php on line 16
[27-Oct-2025 05:32:39 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function apply_filters() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/buttons-child/attributes.php on line 10
PK�][u�����Jultimate-addons-for-gutenberg/includes/blocks/buttons-child/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$disable_v_h_padding = apply_filters( 'uagb_disable_v_h_padding', false );

$border_attribute = UAGB_Block_Helper::uag_generate_border_attribute( 'btn' );

$enable_legacy_blocks = UAGB_Admin_Helper::get_admin_settings_option( 'uag_enable_legacy_blocks' );

$inherit_from_theme = 'enabled' === UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' );

return array_merge(
	array(
		'inheritFromTheme'             => $inherit_from_theme,
		'buttonType'                   => 'primary',
		'block_id'                     => '',
		'label'                        => '#Click Here',
		'link'                         => '',
		'opensInNewTab'                => false,
		'target'                       => '',
		'size'                         => '',
		'topTabletPadding'             => '',
		'rightTabletPadding'           => '',
		'bottomTabletPadding'          => '',
		'leftTabletPadding'            => '',
		'topMobilePadding'             => '',
		'rightMobilePadding'           => '',
		'bottomMobilePadding'          => '',
		'leftMobilePadding'            => '',
		'paddingUnit'                  => 'px',
		'mobilePaddingUnit'            => 'px',
		'tabletPaddingUnit'            => 'px',
		'paddingLink'                  => '',
		'color'                        => '',
		'background'                   => '',
		'hColor'                       => '',
		'hBackground'                  => '',
		'sizeType'                     => 'px',
		'sizeTypeTablet'               => 'px',
		'sizeTypeMobile'               => 'px',
		'sizeMobile'                   => '',
		'sizeTablet'                   => '',
		'lineHeight'                   => '',
		'lineHeightType'               => 'em',
		'lineHeightMobile'             => '',
		'lineHeightTablet'             => '',
		'icon'                         => '',
		'iconPosition'                 => 'after',
		'iconSpace'                    => 8,
		'iconSpaceTablet'              => '',
		'iconSpaceMobile'              => '',
		'iconSize'                     => 15,
		'iconSizeTablet'               => '',
		'iconSizeMobile'               => '',
		'LoadGoogleFonts'              => '',
		'noFollow'                     => false,
		'fontFamily'                   => '',
		'fontWeight'                   => '',
		'fontStyle'                    => '',
		'transform'                    => '',
		'decoration'                   => '',
		'backgroundType'               => 'color',
		'hoverbackgroundType'          => 'color',
		'topMargin'                    => '',
		'rightMargin'                  => '',
		'bottomMargin'                 => '',
		'leftMargin'                   => '',
		'topMarginTablet'              => '',
		'rightMarginTablet'            => '',
		'bottomMarginTablet'           => '',
		'leftMarginTablet'             => '',
		'topMarginMobile'              => '',
		'rightMarginMobile'            => '',
		'bottomMarginMobile'           => '',
		'leftMarginMobile'             => '',
		'marginType'                   => 'px',
		'marginLink'                   => '',
		'boxShadowColor'               => '#00000026',
		'boxShadowHOffset'             => 0,
		'boxShadowVOffset'             => 0,
		'boxShadowBlur'                => '',
		'boxShadowSpread'              => '',
		'boxShadowPosition'            => 'outset',
		'useSeparateBoxShadows'        => true,
		'boxShadowColorHover'          => '',
		'boxShadowHOffsetHover'        => 0,
		'boxShadowVOffsetHover'        => 0,
		'boxShadowBlurHover'           => '',
		'boxShadowSpreadHover'         => '',
		'boxShadowPositionHover'       => 'outset',
		'iconColor'                    => '',
		'iconHColor'                   => '',
		'buttonSize'                   => '',
		'removeText'                   => false,
		'gradientValue'                => '',
		'gradientColor1'               => '#06558a',
		'gradientColor2'               => '#0063A1',
		'gradientType'                 => 'linear',
		'gradientLocation1'            => 0,
		'gradientLocationTablet1'      => '',
		'gradientLocationMobile1'      => '',
		'gradientLocation2'            => 100,
		'gradientLocationTablet2'      => '',
		'gradientLocationMobile2'      => '',
		'gradientAngle'                => 0,
		'gradientAngleTablet'          => '',
		'gradientAngleMobile'          => '',
		'selectGradient'               => 'basic',
		'hovergradientValue'           => '',
		'hovergradientColor1'          => '#06558a',
		'hovergradientColor2'          => '#0063A1',
		'hovergradientType'            => 'linear',
		'hovergradientLocation1'       => 0,
		'hovergradientLocationTablet1' => '',
		'hovergradientLocationMobile1' => '',
		'hovergradientLocation2'       => 100,
		'hovergradientLocationTablet2' => '',
		'hovergradientLocationMobile2' => '',
		'hovergradientAngle'           => 0,
		'hovergradientAngleTablet'     => '',
		'hovergradientAngleMobile'     => '',
		'hoverselectGradient'          => 'basic',
		'backgroundOpacity'            => '',
		'backgroundHoverOpacity'       => '',
		// letter spacing.
		'letterSpacing'                => '',
		'letterSpacingTablet'          => '',
		'letterSpacingMobile'          => '',
		'letterSpacingType'            => 'px',
		'borderWidth'                  => '',
		'borderRadius'                 => '',
		'borderStyle'                  => 'solid',
		'borderColor'                  => '#000',
		'borderHColor'                 => '',
		// For Global Block Styles.
		'globalBlockStyleName'         => '',
		'globalBlockStyleId'           => '',
	),
	$border_attribute
);
PK�][g"S��Eultimate-addons-for-gutenberg/includes/blocks/buttons-child/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/buttons-child';
$block_data = array(
	'slug'                => '',
	'link'                => '',
	'title'               => __( 'Button', 'ultimate-addons-for-gutenberg' ),
	'description'         => __( 'Customize this button as per your need.', 'ultimate-addons-for-gutenberg' ),
	'default'             => true,
	'is_child'            => true,
	'extension'           => false,
	'dynamic_assets'      => array(
		'dir' => 'buttons-child',
	),
	'deprecated'          => false,
	'static_dependencies' => array(
		'uagb-button-child-js' => array(
			'src'  => UAGB_Scripts_Utils::get_js_url( 'uagb-button-child' ),
			'dep'  => array(),
			'type' => 'js',
		),
	),
);
PK�][�B����Lultimate-addons-for-gutenberg/includes/blocks/buttons-child/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_buttons_gfont( $attr );

$all_selectors = UAGB_Block_Helper::get_buttons_child_selectors( $attr, $id, true );

$combined_selectors = array(
	'desktop' => $all_selectors['selectors'],
	'tablet'  => $all_selectors['t_selectors'],
	'mobile'  => $all_selectors['m_selectors'],
);
if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, '', ' .uagb-button__link', $combined_selectors );
}

return UAGB_Helper::generate_all_css(
	$combined_selectors,
	'.wp-block-uagb-buttons .uagb-block-' . $id,
	isset( $gbs_class ) ? $gbs_class : ''
);
PK�][2�J""Kultimate-addons-for-gutenberg/includes/blocks/buttons-child/frontend.js.phpnu�[���<?php
/**
 * Frontend JS File.
 * 
 * @var int $id
 * @since 2.13.1
 *
 * @package uagb
 */

$selector = '.uagb-block-' . $id;

ob_start();
?>
window.addEventListener( 'load', function() {
	UAGBButtonChild.init( '<?php echo esc_attr( $selector ); ?>' );
});
<?php
return ob_get_clean();
?>
PK�][a��J��Gultimate-addons-for-gutenberg/includes/blocks/icon-list-child/error_lognu�[���[28-Oct-2025 11:20:41 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list-child/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/icon-list-child/block.php on line 14
PK�][�f'ʾ�Lultimate-addons-for-gutenberg/includes/blocks/icon-list-child/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'image_icon'               => 'icon',
	'icon'                     => 'fab fa-facebook',
	'image'                    => '',
	'icon_color'               => '',
	'icon_hover_color'         => '',
	'icon_bg_color'            => '',
	'icon_bg_hover_color'      => '',
	'icon_border_color'        => '',
	'icon_border_hover_color'  => '',
	'label_color'              => '',
	'label_hover_color'        => '',
	'link'                     => '#',
	'target'                   => false,
	// margin.
	'childTopMargin'           => '',
	'childRightMargin'         => '',
	'childLeftMargin'          => '',
	'childBottomMargin'        => '',
	'childTopMarginTablet'     => '',
	'childRightMarginTablet'   => '',
	'childLeftMarginTablet'    => '',
	'childBottomMarginTablet'  => '',
	'childTopMarginMobile'     => '',
	'childRightMarginMobile'   => '',
	'childLeftMarginMobile'    => '',
	'childBottomMarginMobile'  => '',
	'childMarginUnit'          => 'px',
	'childMarginUnitTablet'    => 'px',
	'childMarginUnitMobile'    => 'px',
	'childMarginLink'          => '',
	// padding.
	'childTopPadding'          => '',
	'childRightPadding'        => '',
	'childLeftPadding'         => '',
	'childBottomPadding'       => '',
	'childTopPaddingTablet'    => '',
	'childRightPaddingTablet'  => '',
	'childLeftPaddingTablet'   => '',
	'childBottomPaddingTablet' => '',
	'childTopPaddingMobile'    => '',
	'childRightPaddingMobile'  => '',
	'childLeftPaddingMobile'   => '',
	'childBottomPaddingMobile' => '',
	'childPaddingUnit'         => 'px',
	'childPaddingUnitTablet'   => 'px',
	'childPaddingUnitMobile'   => 'px',
	'childPaddingLink'         => '',
);
PK�][jxhc00Gultimate-addons-for-gutenberg/includes/blocks/icon-list-child/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/icon-list-child';
$block_data = array(
	'slug'           => '',
	'link'           => '',
	'title'          => __( 'Icon', 'ultimate-addons-for-gutenberg' ),
	'description'    => __( 'Add and customize content for this list component.', 'ultimate-addons-for-gutenberg' ),
	'default'        => true,
	'is_child'       => true,
	'extension'      => false,
	'dynamic_assets' => array(
		'dir' => 'icon-list-child',
	),
	'deprecated'     => false,
);
PK�][t˸��Nultimate-addons-for-gutenberg/includes/blocks/icon-list-child/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$selectors   = UAGB_Block_Helper::get_icon_list_child_selectors( $attr, $id, true )['desktop'];
$t_selectors = UAGB_Block_Helper::get_icon_list_child_selectors( $attr, $id, true )['tablet'];
$m_selectors = UAGB_Block_Helper::get_icon_list_child_selectors( $attr, $id, true )['mobile'];

$desktop = UAGB_Helper::generate_css( $selectors, '.uagb-block-' . $id );
$tablet  = UAGB_Helper::generate_css( $t_selectors, '.uagb-block-' . $id );
$mobile  = UAGB_Helper::generate_css( $m_selectors, '.uagb-block-' . $id );

$generated_css = array(
	'desktop' => $desktop,
	'tablet'  => $tablet,
	'mobile'  => $mobile,
);

return $generated_css;
PK�][�.}���Fultimate-addons-for-gutenberg/includes/blocks/forms-checkbox/error_lognu�[���[27-Oct-2025 04:17:15 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-checkbox/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-checkbox/block.php on line 14
PK�][&<���Fultimate-addons-for-gutenberg/includes/blocks/forms-checkbox/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-checkbox';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Checkbox', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add checkboxes to allow mulitple choices from optons.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�u�^��Fultimate-addons-for-gutenberg/includes/blocks/forms-textarea/error_lognu�[���[27-Oct-2025 04:35:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-textarea/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-textarea/block.php on line 14
PK�][_K�#��Fultimate-addons-for-gutenberg/includes/blocks/forms-textarea/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-textarea';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Textarea', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add a text field in your form', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][&�t�\
\
Hultimate-addons-for-gutenberg/includes/blocks/marketing-button/error_lognu�[���[27-Oct-2025 04:48:27 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php on line 16
[27-Oct-2025 04:59:18 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php on line 10
[29-Oct-2025 20:01:41 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php on line 10
[29-Oct-2025 20:08:32 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php on line 16
[29-Oct-2025 20:22:51 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.php on line 16
[29-Oct-2025 20:32:59 UTC] PHP Fatal error:  Uncaught Error: Class "UAGB_Block_Helper" not found in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php:10
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.php on line 10
PK�][�b�iMultimate-addons-for-gutenberg/includes/blocks/marketing-button/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$button_attribute   = UAGB_Block_Helper::uag_generate_border_attribute(
	'btn'
);
$inherit_from_theme = 'enabled' === ( 'deleted' !== UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme_fallback', 'deleted' ) ? 'disabled' : UAGB_Admin_Helper::get_admin_settings_option( 'uag_btn_inherit_from_theme', 'disabled' ) );

return array_merge(
	array(
		'classMigrate'              => false,
		'block_id'                  => '',
		'align'                     => 'center',
		'textAlign'                 => 'center',
		'link'                      => '#',
		'linkTarget'                => false,
		'titleSpace'                => 0,
		'titleSpaceTablet'          => '',
		'titleSpaceUnit'            => 'px',
		'titleSpaceMobile'          => '',
		'vPadding'                  => '',
		'hPadding'                  => '',
		'vPaddingMobile'            => '',
		'hPaddingMobile'            => '',
		'vPaddingTablet'            => '',
		'hPaddingTablet'            => '',
		'paddingType'               => 'px',
		'backgroundType'            => 'color',
		'backgroundColor'           => '',
		'backgroundHoverColor'      => '',
		'gradientColor1'            => '#06558a',
		'gradientColor2'            => '#0063A1',
		'gradientType'              => 'linear',
		'gradientLocation1'         => 0,
		'gradientLocationTablet1'   => '',
		'gradientLocationMobile1'   => '',
		'gradientLocation2'         => 100,
		'gradientLocationTablet2'   => '',
		'gradientLocationMobile2'   => '',
		'gradientAngle'             => 0,
		'gradientAngleTablet'       => '',
		'gradientAngleMobile'       => '',
		'backgroundOpacity'         => '',
		'backgroundHoverOpacity'    => '',
		'titleColor'                => '',
		'titleHoverColor'           => '',
		'icon'                      => 'up-right-from-square',
		'iconColor'                 => '',
		'iconHoverColor'            => '',
		'iconPosition'              => 'after',
		'prefixColor'               => '',
		'prefixHoverColor'          => '',
		'iconSpace'                 => 10,
		'iconSpaceTablet'           => '',
		'iconSpaceMobile'           => '',
		'titleLoadGoogleFonts'      => false,
		'titleFontFamily'           => '',
		'titleFontWeight'           => '',
		'titleFontStyle'            => '',
		'titleFontSize'             => 20,
		'titleFontSizeType'         => 'px',
		'titleFontSizeTablet'       => 20,
		'titleFontSizeMobile'       => 20,
		'titleLineHeightType'       => 'em',
		'titleLineHeight'           => '',
		'titleLineHeightTablet'     => '',
		'titleLineHeightMobile'     => '',
		'titleTag'                  => 'span',
		'prefixLoadGoogleFonts'     => false,
		'prefixFontFamily'          => '',
		'prefixFontWeight'          => '',
		'prefixFontStyle'           => '',
		'prefixFontSize'            => 14,
		'prefixFontSizeType'        => 'px',
		'prefixFontSizeTablet'      => 14,
		'prefixFontSizeMobile'      => 14,
		'prefixLineHeightType'      => 'em',
		'prefixLineHeight'          => 2,
		'prefixLineHeightTablet'    => '',
		'prefixLineHeightMobile'    => '',
		'iconFontSize'              => 20,
		'iconFontSizeType'          => 'px',
		'iconFontSizeTablet'        => '',
		'iconFontSizeMobile'        => '',
		'paddingBtnUnit'            => 'px',
		'mobilePaddingBtnUnit'      => 'px',
		'tabletPaddingBtnUnit'      => 'px',
		'titleTransform'            => '',
		'titleDecoration'           => '',
		'prefixTransform'           => '',
		'prefixDecoration'          => '',
		'titleLetterSpacing'        => '',
		'titleLetterSpacingTablet'  => '',
		'titleLetterSpacingMobile'  => '',
		'titleLetterSpacingType'    => 'px',
		'prefixLetterSpacing'       => '',
		'prefixLetterSpacingTablet' => '',
		'prefixLetterSpacingMobile' => '',
		'prefixLetterSpacingType'   => 'px',
		'borderStyle'               => 'solid',
		'borderWidth'               => 1,
		'borderRadius'              => '',
		'borderColor'               => '',
		'borderHoverColor'          => '',
		'inheritFromTheme'          => $inherit_from_theme,
	),
	$button_attribute
);
PK�][&orHultimate-addons-for-gutenberg/includes/blocks/marketing-button/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/marketing-button';
$block_data = array(
	'doc'              => 'marketing-button',
	'slug'             => '',
	'admin_categories' => array( 'creative' ),
	'link'             => 'marketing-button',
	'title'            => __( 'Marketing Button', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a marketing call to action button with a short description.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'marketing-button' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'marketing-button',
	),
);
PK�][�ر�xGxGOultimate-addons-for-gutenberg/includes/blocks/marketing-button/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_marketing_btn_gfont( $attr );

$m_selectors = array();
$t_selectors = array();

$btn_padding_top    = isset( $attr['paddingBtnTop'] ) ? $attr['paddingBtnTop'] : $attr['vPadding'];
$btn_padding_bottom = isset( $attr['paddingBtnBottom'] ) ? $attr['paddingBtnBottom'] : $attr['vPadding'];
$btn_padding_left   = isset( $attr['paddingBtnLeft'] ) ? $attr['paddingBtnLeft'] : $attr['hPadding'];
$btn_padding_right  = isset( $attr['paddingBtnRight'] ) ? $attr['paddingBtnRight'] : $attr['hPadding'];

$btn_padding_top_mobile    = isset( $attr['paddingBtnTopMobile'] ) ? $attr['paddingBtnTopMobile'] : $attr['vPaddingMobile'];
$btn_padding_bottom_mobile = isset( $attr['paddingBtnBottomMobile'] ) ? $attr['paddingBtnBottomMobile'] : $attr['vPaddingMobile'];
$btn_padding_left_mobile   = isset( $attr['paddingBtnLeftMobile'] ) ? $attr['paddingBtnLeftMobile'] : $attr['hPaddingMobile'];
$btn_padding_right_mobile  = isset( $attr['paddingBtnRightMobile'] ) ? $attr['paddingBtnRightMobile'] : $attr['hPaddingMobile'];

$btn_padding_top_tablet    = isset( $attr['paddingBtnTopTablet'] ) ? $attr['paddingBtnTopTablet'] : $attr['vPaddingTablet'];
$btn_padding_bottom_tablet = isset( $attr['paddingBtnBottomTablet'] ) ? $attr['paddingBtnBottomTablet'] : $attr['vPaddingTablet'];
$btn_padding_left_tablet   = isset( $attr['paddingBtnLeftTablet'] ) ? $attr['paddingBtnLeftTablet'] : $attr['hPaddingTablet'];
$btn_padding_right_tablet  = isset( $attr['paddingBtnRightTablet'] ) ? $attr['paddingBtnRightTablet'] : $attr['hPaddingTablet'];

$gradientLocation1       = is_numeric( $attr['gradientLocation1'] ) ? $attr['gradientLocation1'] : '';
$gradientLocation2       = is_numeric( $attr['gradientLocation2'] ) ? $attr['gradientLocation2'] : '';
$gradientAngle           = is_numeric( $attr['gradientAngle'] ) ? $attr['gradientAngle'] : '';
$gradientLocationTablet1 = is_numeric( $attr['gradientLocationTablet1'] ) ? $attr['gradientLocationTablet1'] : $gradientLocation1;
$gradientLocationTablet2 = is_numeric( $attr['gradientLocationTablet2'] ) ? $attr['gradientLocationTablet2'] : $gradientLocation2;
$gradientAngleTablet     = is_numeric( $attr['gradientAngleTablet'] ) ? $attr['gradientAngleTablet'] : $gradientAngle;
$gradientLocationMobile1 = is_numeric( $attr['gradientLocationMobile1'] ) ? $attr['gradientLocationMobile1'] : $gradientLocationTablet1;
$gradientLocationMobile2 = is_numeric( $attr['gradientLocationMobile2'] ) ? $attr['gradientLocationMobile2'] : $gradientLocationTablet2;
$gradientAngleMobile     = is_numeric( $attr['gradientAngleMobile'] ) ? $attr['gradientAngleMobile'] : $gradientAngleTablet;

$icon_color       = ( '' === $attr['iconColor'] ) ? $attr['titleColor'] : $attr['iconColor'];
$icon_hover_color = ( '' === $attr['iconHoverColor'] ) ? $attr['titleHoverColor'] : $attr['iconHoverColor'];

$btn_border_css        = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn' );
$btn_border_css        = UAGB_Block_Helper::uag_generate_deprecated_border_css(
	$btn_border_css,
	( isset( $attr['borderWidth'] ) ? $attr['borderWidth'] : '' ),
	( isset( $attr['borderRadius'] ) ? $attr['borderRadius'] : '' ),
	( isset( $attr['borderColor'] ) ? $attr['borderColor'] : '' ),
	( isset( $attr['borderStyle'] ) ? $attr['borderStyle'] : '' )
);
$btn_border_css_tablet = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'tablet' );
$btn_border_css_mobile = UAGB_Block_Helper::uag_generate_border_css( $attr, 'btn', 'mobile' );


$icon_spacing        = UAGB_Helper::get_css_value( $attr['iconSpace'], 'px' );
$icon_spacing_tablet = UAGB_Helper::get_css_value( $attr['iconSpaceTablet'], 'px' );
$icon_spacing_mobile = UAGB_Helper::get_css_value( $attr['iconSpaceMobile'], 'px' );

$right_side_margin = 'margin-right';
$left_side_margin  = 'margin-left';

if ( ! is_rtl() ) {
	$right_side_margin = 'margin-left';
	$left_side_margin  = 'margin-right';
}

$selectors = array(
	' .uagb-marketing-btn__prefix'         => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['titleSpace'], $attr['titleSpaceUnit'] ),
	),
	'.uagb-marketing-btn__icon-after .uagb-marketing-btn__link svg' => array(
		$right_side_margin => $icon_spacing,
	),
	'.uagb-marketing-btn__icon-before .uagb-marketing-btn__link svg' => array(
		$left_side_margin => $icon_spacing,
	),
	'.uagb-marketing-btn__icon-after .uagb-marketing-btn__icon-wrap svg' => array( // For backword compatibility.
		$right_side_margin => $icon_spacing,
	),
	'.uagb-marketing-btn__icon-before .uagb-marketing-btn__icon-wrap svg' => array( // For backword compatibility.
		$left_side_margin => $icon_spacing,
	),
	' .uagb-marketing-btn__title-wrap'     => array( // For backword compatibility.
		'align-items' => 'center',
	),
	' .uagb-marketing-btn__title-wrap .uagb-marketing-btn__icon-wrap svg' => array( // For backword compatibility.
		'vertical-align' => 'sub',
	),
	' svg'                                 => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconFontSize'], $attr['iconFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconFontSize'], $attr['iconFontSizeType'] ),
	),
	' .uagb-marketing-btn__link svg'       => array(
		'fill' => $icon_color,
	),
	' .uagb-marketing-btn__link:hover svg' => array(
		'fill' => $icon_hover_color,
	),
	' .uagb-marketing-btn__link:focus svg' => array(
		'fill' => $icon_hover_color,
	),
);

$m_selectors = array(
	' svg'                         => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconFontSizeMobile'], $attr['iconFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconFontSizeMobile'], $attr['iconFontSizeType'] ),
	),
	'.uagb-marketing-btn__icon-after .uagb-marketing-btn__link svg' => array(
		$right_side_margin => $icon_spacing_mobile,
	),
	'.uagb-marketing-btn__icon-before .uagb-marketing-btn__link svg' => array(
		$left_side_margin => $icon_spacing_mobile,
	),
	' .uagb-marketing-btn__prefix' => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['titleSpaceMobile'], 'px' ),
	),
);

$t_selectors = array(
	' .uagb-marketing-btn__prefix'         => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['titleSpaceTablet'], 'px' ),
	),
	' .wp-block-uagb-marketing-button svg' => array(
		'width'  => UAGB_Helper::get_css_value( $attr['iconFontSizeTablet'], $attr['iconFontSizeType'] ),
		'height' => UAGB_Helper::get_css_value( $attr['iconFontSizeTablet'], $attr['iconFontSizeType'] ),
	),
	'.uagb-marketing-btn__icon-after .uagb-marketing-btn__link svg' => array(
		$left_side_margin => $icon_spacing_tablet,
	),
	'.uagb-marketing-btn__icon-before .uagb-marketing-btn__link svg' => array(
		$right_side_margin => $icon_spacing_tablet,
	),
);

if ( ! $attr['inheritFromTheme'] ) { 
	if ( 'transparent' === $attr['backgroundType'] ) {

		$selectors[' .uagb-marketing-btn__link']['background'] = 'transparent';
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background'] = 'transparent';
	
	
	} elseif ( 'color' === $attr['backgroundType'] ) {
	
		$selectors['.wp-block-uagb-marketing-button.wp-block-button .wp-block-button__link.uagb-marketing-btn__link']['background'] = UAGB_Helper::hex2rgba( $attr['backgroundColor'], $attr['backgroundOpacity'] );
	
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-color'] = UAGB_Helper::hex2rgba( $attr['backgroundColor'], $attr['backgroundOpacity'] );
	
		// Hover Background.
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) .wp-block-button__link.uagb-marketing-btn__link:hover']['background']   = UAGB_Helper::hex2rgba( $attr['backgroundHoverColor'], $attr['backgroundHoverOpacity'] );
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) .wp-block-button__link.uagb-marketing-btn__link:focus']['background']   = UAGB_Helper::hex2rgba( $attr['backgroundHoverColor'], $attr['backgroundHoverOpacity'] );
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) .wp-block-button__link.uagb-marketing-btn__link:hover']['border-color'] = UAGB_Helper::hex2rgba( $attr['btnBorderHColor'] );
	
		// Deprecated for v1.2.6.
		$selectors[' .uagb-marketing-btn__link']['background'] = UAGB_Helper::hex2rgba( $attr['backgroundColor'], $attr['backgroundOpacity'] );
	
		// Hover Background Deprecated for v1.2.6.
		$selectors[' .uagb-marketing-btn__link:hover']['background'] = UAGB_Helper::hex2rgba( $attr['backgroundHoverColor'], $attr['backgroundHoverOpacity'] );
		$selectors[' .uagb-marketing-btn__link:focus']['background'] = UAGB_Helper::hex2rgba( $attr['backgroundHoverColor'], $attr['backgroundHoverOpacity'] );
	
	} elseif ( 'gradient' === $attr['backgroundType'] ) {
	
		$selectors[' .uagb-marketing-btn__link']['background-color'] = 'transparent';
		$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-color'] = 'transparent';
	
		$linear_gradient        = 'linear-gradient(' . $attr['gradientAngle'] . 'deg, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocation1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocation2 . '%)';
		$linear_gradient_tablet = 'linear-gradient(' . $attr['gradientAngleTablet'] . 'deg, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationTablet1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationTablet2 . '%)';
		$linear_gradient_mobile = 'linear-gradient(' . $attr['gradientAngleMobile'] . 'deg, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationMobile1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationMobile2 . '%)';
		$radial_gradient        = 'radial-gradient( at center center, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocation1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocation2 . '%)';
		$radial_gradient_tablet = 'radial-gradient( at center center, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationTablet1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationTablet2 . '%)';
		$radial_gradient_mobile = 'radial-gradient( at center center, ' . UAGB_Helper::hex2rgba( $attr['gradientColor1'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationMobile1 . '%, ' . UAGB_Helper::hex2rgba( $attr['gradientColor2'], $attr['backgroundOpacity'] ) . ' ' . $gradientLocationMobile2 . '%)';

		if ( 'linear' === $attr['gradientType'] ) {
			$selectors[' .uagb-marketing-btn__link']['background-image'] = $linear_gradient;
			$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $linear_gradient;
			$t_selectors[' .uagb-marketing-btn__link']['background-image'] = $linear_gradient_tablet;
			$t_selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $linear_gradient_tablet;
			$m_selectors[' .uagb-marketing-btn__link']['background-image'] = $linear_gradient_mobile;
			$m_selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $linear_gradient_mobile;
		} else {
			$selectors[' .uagb-marketing-btn__link']['background-image'] = $radial_gradient;
			$selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $radial_gradient;
			$t_selectors[' .uagb-marketing-btn__link']['background-image'] = $radial_gradient_tablet;
			$t_selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $radial_gradient_tablet;
			$m_selectors[' .uagb-marketing-btn__link']['background-image'] = $radial_gradient_mobile;
			$m_selectors['.wp-block-uagb-marketing-button.wp-block-button:not(.is-style-outline) a.wp-block-button__link:not(.has-background)']['background-image'] = $radial_gradient_mobile;
		}
	}
	$selectors   = array_merge(
		$selectors,
		array(
			' p.uagb-marketing-btn__prefix'    => array(
				'color' => $attr['prefixColor'],
			),
			' .uagb-marketing-btn__link:hover p.uagb-marketing-btn__prefix' => array(
				'color' => $attr['prefixHoverColor'],
			),
			' .uagb-marketing-btn__link:focus p.uagb-marketing-btn__prefix' => array(
				'color' => $attr['prefixHoverColor'],
			),
			' .uagb-marketing-btn__link.wp-block-button__link' => array_merge(
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left, $attr['paddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right, $attr['paddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top, $attr['paddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom, $attr['paddingBtnUnit'] ),
				),
				$btn_border_css
			),
			' .uagb-marketing-btn__link:hover' => array(
				'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['borderHoverColor'],
			),
			' .uagb-marketing-btn__link:focus' => array(
				'border-color' => ! empty( $attr['btnBorderHColor'] ) ? $attr['btnBorderHColor'] : $attr['borderHoverColor'],
			),
			' .uagb-marketing-btn__wrap .uagb-marketing-btn__link' => array_merge( // deprecated for v1.25.6 .
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left ? $btn_padding_left : 20, $attr['paddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right ? $btn_padding_right : 20, $attr['paddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top ? $btn_padding_top : 8, $attr['paddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom ? $btn_padding_bottom : 8, $attr['paddingBtnUnit'] ),
				),
				$btn_border_css
			),
			' .uagb-marketing-btn__link .uagb-marketing-btn__title' => array(
				'color' => $attr['titleColor'],
			),
			' .uagb-marketing-btn__link:hover .uagb-marketing-btn__title' => array(
				'color' => $attr['titleHoverColor'],
			),
			' .uagb-marketing-btn__link:focus .uagb-marketing-btn__title' => array(
				'color' => $attr['titleHoverColor'],
			),
		)
	);
	$m_selectors = array_merge(
		$m_selectors,
		array(
			'.wp-block-uagb-marketing-button.wp-block-button .uagb-marketing-btn__link' => array_merge(
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left_mobile, $attr['mobilePaddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right_mobile, $attr['mobilePaddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top_mobile, $attr['mobilePaddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom_mobile, $attr['mobilePaddingBtnUnit'] ),
				),
				$btn_border_css_mobile
			),
			' .uagb-marketing-btn__wrap .uagb-marketing-btn__link' => array_merge( // deprecated for v1.25.6 .
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left_mobile ? $btn_padding_left_mobile : 20, $attr['paddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right_mobile ? $btn_padding_right_mobile : 20, $attr['paddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top_mobile ? $btn_padding_top_mobile : 8, $attr['paddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom_mobile ? $btn_padding_bottom_mobile : 8, $attr['paddingBtnUnit'] ),
				),
				$btn_border_css_mobile
			),
		)
	);
	$t_selectors = array_merge(
		$t_selectors,
		array(
			' .uagb-marketing-btn__link.wp-block-button__link' => array_merge(
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left_tablet, $attr['tabletPaddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right_tablet, $attr['tabletPaddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top_tablet, $attr['tabletPaddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom_tablet, $attr['tabletPaddingBtnUnit'] ),
				),
				$btn_border_css_tablet
			),
			' .uagb-marketing-btn__wrap .uagb-marketing-btn__link' => array_merge( // deprecated for v1.25.6 .
				array(
					'padding-left'   => UAGB_Helper::get_css_value( $btn_padding_left_tablet ? $btn_padding_left_tablet : 20, $attr['paddingBtnUnit'] ),
					'padding-right'  => UAGB_Helper::get_css_value( $btn_padding_right_tablet ? $btn_padding_right_tablet : 20, $attr['paddingBtnUnit'] ),
					'padding-top'    => UAGB_Helper::get_css_value( $btn_padding_top_tablet ? $btn_padding_top_tablet : 8, $attr['paddingBtnUnit'] ),
					'padding-bottom' => UAGB_Helper::get_css_value( $btn_padding_bottom_tablet ? $btn_padding_bottom_tablet : 8, $attr['paddingBtnUnit'] ),
				),
				$btn_border_css_tablet
			),
	
		)
	);
	
}


$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

if ( ! $attr['inheritFromTheme'] ) {
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'title', ' .uagb-marketing-btn__title', $combined_selectors );
	$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'prefix', ' .uagb-marketing-btn__prefix', $combined_selectors );
}

$base_selector = ( $attr['classMigrate'] ) ? '.uagb-block-' : '#uagb-marketing-btn-';

return UAGB_Helper::generate_all_css( $combined_selectors, $base_selector . $id );
PK�][�>���Dultimate-addons-for-gutenberg/includes/blocks/forms-select/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-select';
$block_data = array(
	'slug'             => '',
	'admin_categories' => array( 'xyz' ),
	'link'             => '',
	'title'            => __( 'Select', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a select dropdown to list choices.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'is_child'         => true,
	'deprecated'       => false,
);
PK�][8�n{��Cultimate-addons-for-gutenberg/includes/blocks/forms-phone/error_lognu�[���[27-Oct-2025 05:48:50 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-phone/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-phone/block.php on line 14
PK�][�Z�0��Cultimate-addons-for-gutenberg/includes/blocks/forms-phone/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-phone';
$block_data = array(
	'slug'            => '',
	'link'            => '',
	'title'           => __( 'Phone', 'ultimate-addons-for-gutenberg' ),
	'description'     => __( 'Add a phone number field in your form', 'ultimate-addons-for-gutenberg' ),
	'default'         => true,
	'is_child'        => true,
	'selectPhoneCode' => '+44',
	'deprecated'      => false,
);
PK�][���a��Aultimate-addons-for-gutenberg/includes/blocks/post-meta/error_lognu�[���[28-Oct-2025 11:48:28 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-meta/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/post-meta/block.php on line 14
PK�][�G����Aultimate-addons-for-gutenberg/includes/blocks/post-meta/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/post-meta';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Post Meta', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Show your post meta details.', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][�K�?��Aultimate-addons-for-gutenberg/includes/blocks/forms-url/error_lognu�[���[27-Oct-2025 03:57:22 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-url/block.php:15
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-url/block.php on line 15
PK�][0��l��Aultimate-addons-for-gutenberg/includes/blocks/forms-url/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-url';
$block_data = array(
	'slug'             => '',
	'admin_categories' => array( 'xyz' ),
	'link'             => '',
	'title'            => __( 'URL', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a URL input field in your form.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'is_child'         => true,
	'deprecated'       => false,
);
PK�][Vu���@ultimate-addons-for-gutenberg/includes/blocks/register/error_lognu�[���[28-Oct-2025 01:36:42 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/register/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/register/block.php on line 16
PK�][�w
)��@ultimate-addons-for-gutenberg/includes/blocks/register/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.1.0
 *
 * @package uagb
 */

$block_slug = 'uagb/register';
$block_data = array(
	'doc'              => 'register',
	'slug'             => '',
	'admin_categories' => array( 'form', 'pro' ),
	'link'             => 'register',
	'title'            => __( 'Registration Form', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'This block lets you add a user register form.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'register' ),
	'deprecated'       => false,
	'pro_filler'       => true,
);
PK�][�x?��Aultimate-addons-for-gutenberg/includes/blocks/separator/error_lognu�[���[27-Oct-2025 04:41:04 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/separator/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/separator/block.php on line 16
PK�][T���
�
Fultimate-addons-for-gutenberg/includes/blocks/separator/attributes.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

return array(
	'separatorAlign'                 => 'center',
	'separatorAlignTablet'           => 'center',
	'separatorAlignMobile'           => 'center',
	'separatorStyle'                 => 'solid',
	'separatorBorderHeight'          => 3,
	'separatorBorderHeightMobile'    => '',
	'separatorBorderHeightTablet'    => '',
	'separatorBorderHeightUnit'      => 'px',
	'separatorWidth'                 => 100,
	'separatorWidthTablet'           => 100,
	'separatorWidthMobile'           => 100,
	'separatorWidthType'             => '%',
	'separatorSize'                  => 5,
	'separatorSizeTablet'            => 5,
	'separatorSizeMobile'            => 5,
	'separatorSizeType'              => 'px',
	'separatorHeight'                => '',
	'separatorHeightMobile'          => '',
	'separatorHeightTablet'          => '',
	'separatorHeightType'            => 'px',
	'separatorColor'                 => '',
	'elementType'                    => 'none',
	'elementPosition'                => 'center',
	'elementSpacing'                 => 15,
	'elementSpacingTablet'           => 15,
	'elementSpacingMobile'           => 15,
	'elementSpacingUnit'             => 'px',
	'elementTextLoadGoogleFonts'     => false,
	'elementTextFontFamily'          => 'Default',
	'elementTextFontWeight'          => '',
	'elementTextFontSize'            => '',
	'elementTextFontSizeType'        => 'px',
	'elementTextFontSizeTablet'      => '',
	'elementTextFontSizeMobile'      => '',
	'elementTextLineHeightType'      => 'em',
	'elementTextLineHeight'          => 1,
	'elementTextLineHeightTablet'    => 1,
	'elementTextLineHeightMobile'    => 1,
	'elementTextFontStyle'           => 'normal',
	'elementTextLetterSpacing'       => '',
	'elementTextLetterSpacingTablet' => '',
	'elementTextLetterSpacingMobile' => '',
	'elementTextLetterSpacingType'   => 'px',
	'elementTextDecoration'          => '',
	'elementTextTransform'           => '',
	'elementColor'                   => '',
	'elementIconWidth'               => '',
	'elementIconWidthTablet'         => '',
	'elementIconWidthMobile'         => '',
	'elementIconWidthType'           => 'px',
	// padding.
	'blockTopPadding'                => '',
	'blockRightPadding'              => '',
	'blockLeftPadding'               => '',
	'blockBottomPadding'             => '',
	'blockTopPaddingTablet'          => '',
	'blockRightPaddingTablet'        => '',
	'blockLeftPaddingTablet'         => '',
	'blockBottomPaddingTablet'       => '',
	'blockTopPaddingMobile'          => '',
	'blockRightPaddingMobile'        => '',
	'blockLeftPaddingMobile'         => '',
	'blockBottomPaddingMobile'       => '',
	'blockPaddingUnit'               => '',
	'blockPaddingUnitTablet'         => '',
	'blockPaddingUnitMobile'         => '',
	'blockPaddingLink'               => '',
	// margin.
	'blockTopMargin'                 => '',
	'blockRightMargin'               => '',
	'blockLeftMargin'                => '',
	'blockBottomMargin'              => '',
	'blockTopMarginTablet'           => '',
	'blockRightMarginTablet'         => '',
	'blockLeftMarginTablet'          => '',
	'blockBottomMarginTablet'        => '',
	'blockTopMarginMobile'           => '',
	'blockRightMarginMobile'         => '',
	'blockLeftMarginMobile'          => '',
	'blockBottomMarginMobile'        => '',
	'blockMarginUnit'                => 'px',
	'blockMarginUnitTablet'          => 'px',
	'blockMarginUnitMobile'          => 'px',
	'blockMarginLink'                => '',
);
PK�][}a���Aultimate-addons-for-gutenberg/includes/blocks/separator/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.6.0
 *
 * @package uagb
 */

$block_slug = 'uagb/separator';
$block_data = array(
	'doc'              => 'separator',
	'slug'             => '',
	'admin_categories' => array(),
	'link'             => 'separator',
	'title'            => __( 'Separator', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add a modern separator to divide your page content with icon/text.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'separator' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'separator',
	),
);
PK�][�B��O�OHultimate-addons-for-gutenberg/includes/blocks/separator/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.6.0
 * @var string[] $attr
 * @var int $id
 * @package uagb
 */

// Add fonts.
UAGB_Block_JS::blocks_separator_gfont( $attr );

$m_selectors = array();
$t_selectors = array();
$border_size = '100%';


$border_css             = array(
	'-webkit-mask-size' => ( UAGB_Helper::get_css_value( $attr['separatorSize'], $attr['separatorSizeType'] ) . ' ' . $border_size ),
	'border-top-width'  => UAGB_Helper::get_css_value( $attr['separatorBorderHeight'], $attr['separatorBorderHeightUnit'] ),
	'width'             => UAGB_Helper::get_css_value( $attr['separatorWidth'], $attr['separatorWidthType'] ),
	'border-top-color'  => $attr['separatorColor'],
	'border-top-style'  => $attr['separatorStyle'],
);
$border_default_margins = array(
	'margin-top'    => '5px',
	'margin-bottom' => '5px',
);

$border_style       = array();
$icon_spacing_style = array();

if ( 'none' === $attr['elementType'] ) {
	$combined_border_styles = array_merge( $border_css, $border_default_margins );
	$border_style['.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner'] = $combined_border_styles;

} else { 
	$align_css    = UAGB_Helper::alignment_css( $attr['separatorAlign'] );
	$border_style = array(
		'.wp-block-uagb-separator .wp-block-uagb-separator__inner' => array_merge(
			array(
				'width' => UAGB_Helper::get_css_value( $attr['separatorWidth'], $attr['separatorWidthType'] ),

			),
			$align_css
		),
	);
	$border_style['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before'] = $border_css;
	$border_style['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before'] = $border_css;
	$border_style['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']  = $border_css;
	$border_style['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']  = $border_css;

	if ( 'left' === $attr['elementPosition'] ) {
		$icon_spacing_style['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacing'], $attr['elementSpacingUnit'] ),
		);
		$border_style['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before']                          = array(
			'display' => 'none',
		);
		$border_style['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before']                          = array(
			'display' => 'none',
		);
	}
	if ( 'right' === $attr['elementPosition'] ) {
		$icon_spacing_style['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['elementSpacing'], $attr['elementSpacingUnit'] ),
		);
		$border_style['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
		$border_style['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
	}
	if ( 'center' === $attr['elementPosition'] ) {
		$icon_spacing_style['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacing'], $attr['elementSpacingUnit'] ),
			'margin-left'  => UAGB_Helper::get_css_value( $attr['elementSpacing'], $attr['elementSpacingUnit'] ),
		);
	}
}

$new_padding_top        = empty( $attr['blockTopPadding'] ) && ! is_numeric( $attr['blockTopPadding'] ) ? $attr['separatorHeight'] : '';
$new_padding_bottom     = empty( $attr['blockBottomPadding'] ) && ! is_numeric( $attr['blockBottomPadding'] ) ? $attr['separatorHeight'] : '';
$new_padding_unit       = empty( $attr['blockTopPaddingUnit'] ) ? $attr['separatorHeightType'] : '';
$blockPaddingUnitTablet = ! empty( $attr['blockPaddingUnitTablet'] ) ? $attr['blockPaddingUnitTablet'] : 'px';
$blockPaddingUnitMobile = ! empty( $attr['blockPaddingUnitMobile'] ) ? $attr['blockPaddingUnitMobile'] : 'px';
$blockPaddingUnit       = ! empty( $attr['blockPaddingUnit'] ) ? $attr['blockPaddingUnit'] : 'px';
$selectors              = array(
	'.wp-block-uagb-separator'         => array_merge(
		array(
			'padding-bottom' => UAGB_Helper::get_css_value( $new_padding_top, $new_padding_unit ),
			'padding-top'    => UAGB_Helper::get_css_value( $new_padding_bottom, $new_padding_unit ),
			'text-align'     => $attr['separatorAlign'],
		)
	),
	'.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag' => array(
		'font-family'     => $attr['elementTextFontFamily'],
		'font-style'      => $attr['elementTextFontStyle'],
		'text-decoration' => $attr['elementTextDecoration'],
		'text-transform'  => $attr['elementTextTransform'],
		'font-weight'     => $attr['elementTextFontWeight'],
		'color'           => $attr['elementColor'],
		'font-size'       => UAGB_Helper::get_css_value( $attr['elementTextFontSize'], $attr['elementTextFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['elementTextLineHeight'], $attr['elementTextLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['elementTextLetterSpacing'], $attr['elementTextLetterSpacingType'] ),
	),
	'.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['elementIconWidth'], $attr['elementIconWidthType'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['elementIconWidth'], $attr['elementIconWidthType'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['elementIconWidth'], $attr['elementIconWidthType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['elementIconWidth'], $attr['elementIconWidthType'] ),
		'color'       => $attr['elementColor'],
		'fill'        => $attr['elementColor'],
	),
	' .uagb-separator-spacing-wrapper' => array(
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMargin'], $attr['blockMarginUnit'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMargin'], $attr['blockMarginUnit'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMargin'], $attr['blockMarginUnit'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMargin'], $attr['blockMarginUnit'] ),
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPadding'], $blockPaddingUnit ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPadding'], $blockPaddingUnit ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPadding'], $blockPaddingUnit ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPadding'], $blockPaddingUnit ),
	),
);
$selectors              = array_merge( $selectors, $border_style, $icon_spacing_style );

// Tablet.
$border_css_tablet = array(
	'-webkit-mask-size' => ( UAGB_Helper::get_css_value( $attr['separatorSizeTablet'], $attr['separatorSizeType'] ) . ' ' . $border_size ),
	'border-top-width'  => UAGB_Helper::get_css_value( $attr['separatorBorderHeightTablet'], $attr['separatorBorderHeightUnit'] ),
	'width'             => UAGB_Helper::get_css_value( $attr['separatorWidthTablet'], $attr['separatorWidthType'] ),
	'border-top-color'  => $attr['separatorColor'],
	'border-top-style'  => $attr['separatorStyle'],
);

$border_style_tablet       = array();
$icon_spacing_style_tablet = array();
if ( 'none' === $attr['elementType'] ) {
	$combined_border_styles_tablet = array_merge( $border_css_tablet, $border_default_margins );
	$border_style_tablet['.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner'] = $combined_border_styles_tablet;

} else {
	$align_css           = UAGB_Helper::alignment_css( $attr['separatorAlignTablet'] );
	$border_style_tablet = array(
		'.wp-block-uagb-separator .wp-block-uagb-separator__inner' => array_merge(
			array(
				'width' => UAGB_Helper::get_css_value( $attr['separatorWidthTablet'], $attr['separatorWidthType'] ),

			),
			$align_css
		),
	);
	$border_style_tablet['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before'] = $border_css_tablet;
	$border_style_tablet['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before'] = $border_css_tablet;
	$border_style_tablet['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']  = $border_css_tablet;
	$border_style_tablet['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']  = $border_css_tablet;
	if ( 'left' === $attr['elementPosition'] ) {
		$icon_spacing_style_tablet['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacingTablet'], $attr['elementSpacingUnit'] ),
		);
		$border_style_tablet['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before']                          = array(
			'display' => 'none',
		);
		$border_style_tablet['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before']                          = array(
			'display' => 'none',
		);
	}
	if ( 'center' === $attr['elementPosition'] ) {
		$icon_spacing_style_tablet['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['elementSpacingTablet'], $attr['elementSpacingUnit'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacingTablet'], $attr['elementSpacingUnit'] ),
		);
	}
	if ( 'right' === $attr['elementPosition'] ) {
		$icon_spacing_style_tablet['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['elementSpacingTablet'], $attr['elementSpacingUnit'] ),
		);
		$border_style_tablet['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
		$border_style_tablet['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
	}
}
$new_padding_top_tablet    = empty( $attr['blockTopPaddingTablet'] ) && ! is_numeric( $attr['blockTopPaddingTablet'] ) ? $attr['separatorHeightTablet'] : '';
$new_padding_bottom_tablet = empty( $attr['blockBottomPaddingTablet'] ) && ! is_numeric( $attr['blockBottomPaddingTablet'] ) ? $attr['separatorHeightTablet'] : '';
$new_padding_unit_tablet   = empty( $attr['blockTopPaddingUnitTablet'] ) ? $attr['separatorHeightType'] : '';
$t_selectors               = array(
	'.wp-block-uagb-separator'         => array_merge(
		array(
			'padding-bottom' => UAGB_Helper::get_css_value( $new_padding_top_tablet, $new_padding_unit_tablet ),
			'padding-top'    => UAGB_Helper::get_css_value( $new_padding_bottom_tablet, $new_padding_unit_tablet ),
			'text-align'     => $attr['separatorAlignTablet'],
		)
),
	'.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag' => array(
		'font-family'     => $attr['elementTextFontFamily'],
		'font-style'      => $attr['elementTextFontStyle'],
		'text-decoration' => $attr['elementTextDecoration'],
		'text-transform'  => $attr['elementTextTransform'],
		'font-weight'     => $attr['elementTextFontWeight'],
		'color'           => $attr['elementColor'],
		'margin-bottom'   => 'initial',
		'font-size'       => UAGB_Helper::get_css_value( $attr['elementTextFontSizeTablet'], $attr['elementTextFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['elementTextLineHeightTablet'], $attr['elementTextLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['elementTextLetterSpacingTablet'], $attr['elementTextLetterSpacingType'] ),
	),
	'.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['elementIconWidthTablet'], $attr['elementIconWidthType'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['elementIconWidthTablet'], $attr['elementIconWidthType'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['elementIconWidthTablet'], $attr['elementIconWidthType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['elementIconWidthTablet'], $attr    ['elementIconWidthType'] ),
		'color'       => $attr['elementColor'],
		'fill'        => $attr['elementColor'],
	),
	' .uagb-separator-spacing-wrapper' => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $blockPaddingUnitTablet ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $blockPaddingUnitTablet ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $blockPaddingUnitTablet ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $blockPaddingUnitTablet ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
	),
);

$t_selectors = array_merge( $t_selectors, $border_style_tablet, $icon_spacing_style_tablet );


// Mobile.
$border_css_mobile         = array(
	'-webkit-mask-size' => ( UAGB_Helper::get_css_value( $attr['separatorSizeMobile'], $attr['separatorSizeType'] ) . ' ' . $border_size ),
	'border-top-width'  => UAGB_Helper::get_css_value( $attr['separatorBorderHeightMobile'], $attr['separatorBorderHeightUnit'] ),
	'width'             => UAGB_Helper::get_css_value( $attr['separatorWidthMobile'], $attr['separatorWidthType'] ),
	'border-top-color'  => $attr['separatorColor'],
	'border-top-style'  => $attr['separatorStyle'],
);
$border_style_mobile       = array();
$icon_spacing_style_mobile = array();
if ( 'none' === $attr['elementType'] ) {
	$combined_border_styles_mobile = array_merge( $border_css_mobile, $border_default_margins );
	$border_style_mobile['.wp-block-uagb-separator:not(.wp-block-uagb-separator--text):not(.wp-block-uagb-separator--icon) .wp-block-uagb-separator__inner'] = $combined_border_styles_mobile;

} else {
	$align_css           = UAGB_Helper::alignment_css( $attr['separatorAlignMobile'] );
	$border_style_mobile = array(
		'.wp-block-uagb-separator .wp-block-uagb-separator__inner' => array_merge(
			array(
				'width' => UAGB_Helper::get_css_value( $attr['separatorWidthMobile'], $attr['separatorWidthType'] ),

			),
			$align_css
		),
	);
	$border_style_mobile['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before'] = $border_css_mobile;
	$border_style_mobile['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before'] = $border_css_mobile;
	$border_style_mobile['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']  = $border_css_mobile;
	$border_style_mobile['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']  = $border_css_mobile;
	if ( 'left' === $attr['elementPosition'] ) {
		$icon_spacing_style_mobile['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacingMobile'], $attr['elementSpacingUnit'] ),

		);
		$border_style_mobile['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::before'] = array(
			'display' => 'none',
		);
		$border_style_mobile['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::before'] = array(
			'display' => 'none',
		);
	}
	if ( 'center' === $attr['elementPosition'] ) {
		$icon_spacing_style_mobile['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-left'  => UAGB_Helper::get_css_value( $attr['elementSpacingMobile'], $attr['elementSpacingUnit'] ),
			'margin-right' => UAGB_Helper::get_css_value( $attr['elementSpacingMobile'], $attr['elementSpacingUnit'] ),
		);
	}
	if ( 'right' === $attr['elementPosition'] ) {
		$icon_spacing_style_mobile['.wp-block-uagb-separator .wp-block-uagb-separator__inner .wp-block-uagb-separator-element'] = array(
			'margin-left' => UAGB_Helper::get_css_value( $attr['elementSpacingMobile'], $attr['elementSpacingUnit'] ),
		);
		$border_style_mobile['.wp-block-uagb-separator--text .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
		$border_style_mobile['.wp-block-uagb-separator--icon .wp-block-uagb-separator__inner::after']                           = array(
			'display' => 'none',
		);
	}
}
$new_padding_top_mobile    = empty( $attr['blockTopPaddingMobile'] ) && ! is_numeric( $attr['blockTopPaddingMobile'] ) ? $attr['separatorHeightMobile'] : '';
$new_padding_bottom_mobile = empty( $attr['blockBottomPaddingMobile'] ) && ! is_numeric( $attr['blockBottomPaddingMobile'] ) ? $attr['separatorHeightMobile'] : '';
$new_padding_unit_mobile   = empty( $attr['blockTopPaddingUnitMobile'] ) ? $attr['separatorHeightType'] : '';
$m_selectors               = array(
	'.wp-block-uagb-separator'         => array_merge(
		array(
			'padding-bottom' => UAGB_Helper::get_css_value( $new_padding_top_mobile, $new_padding_unit_mobile ),
			'padding-top'    => UAGB_Helper::get_css_value( $new_padding_bottom_mobile, $new_padding_unit_mobile ),
			'text-align'     => $attr['separatorAlignMobile'],
		)
),
	'.wp-block-uagb-separator--text .wp-block-uagb-separator-element .uagb-html-tag' => array(
		'font-family'     => $attr['elementTextFontFamily'],
		'font-style'      => $attr['elementTextFontStyle'],
		'text-decoration' => $attr['elementTextDecoration'],
		'text-transform'  => $attr['elementTextTransform'],
		'font-weight'     => $attr['elementTextFontWeight'],
		'color'           => $attr['elementColor'],
		'margin-bottom'   => 'initial',
		'font-size'       => UAGB_Helper::get_css_value( $attr['elementTextFontSizeMobile'], $attr['elementTextFontSizeType'] ),
		'line-height'     => UAGB_Helper::get_css_value( $attr['elementTextLineHeightMobile'], $attr['elementTextLineHeightType'] ),
		'letter-spacing'  => UAGB_Helper::get_css_value( $attr['elementTextLetterSpacingMobile'], $attr['elementTextLetterSpacingType'] ),
	),
	'.wp-block-uagb-separator--icon .wp-block-uagb-separator-element svg' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['elementIconWidthMobile'], $attr['elementIconWidthType'] ),
		'width'       => UAGB_Helper::get_css_value( $attr['elementIconWidthMobile'], $attr['elementIconWidthType'] ),
		'height'      => UAGB_Helper::get_css_value( $attr['elementIconWidthMobile'], $attr['elementIconWidthType'] ),
		'line-height' => UAGB_Helper::get_css_value( $attr['elementIconWidthMobile'], $attr    ['elementIconWidthType'] ),
		'color'       => $attr['elementColor'],
		'fill'        => $attr['elementColor'],
	),
	' .uagb-separator-spacing-wrapper' => array(
		'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $blockPaddingUnitMobile ),
		'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $blockPaddingUnitMobile ),
		'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $blockPaddingUnitMobile ),
		'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $blockPaddingUnitMobile ),
		'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
		'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
	),
);
$m_selectors               = array_merge( $m_selectors, $border_style_mobile, $icon_spacing_style_mobile );


$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

return UAGB_Helper::generate_all_css( $combined_selectors, '.uagb-block-' . $id );
PK�][�fe��>ultimate-addons-for-gutenberg/includes/blocks/how-to/error_lognu�[���[27-Oct-2025 10:57:07 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/how-to/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/how-to/block.php on line 16
PK�][��ԝ

Cultimate-addons-for-gutenberg/includes/blocks/how-to/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                   => '',
	'overallAlignment'           => 'left',
	'tools_count'                => 1,
	'material_count'             => 1,
	'tools'                      => '',
	'materials'                  => '',
	'showTotaltime'              => true,
	'showEstcost'                => true,
	'showTools'                  => true,
	'showMaterials'              => true,
	'mainimage'                  => '',
	'imgSize'                    => 'thumbnail',
	'timeSpace'                  => 5,
	'costSpace'                  => 5,
	'time'                       => '30',
	'cost'                       => '65',
	'currencyType'               => ' USD',
	'headingAlign'               => 'left',
	'descriptionAlign'           => 'left',
	'headingColor'               => '',
	'showEstcostcolor'           => '',
	'showTotaltimecolor'         => '',
	'subHeadingColor'            => '',
	'headingTag'                 => 'h3',
	'headSpace'                  => 15,
	'headFontFamily'             => 'Default',
	'headFontWeight'             => '500',
	'headFontStyle'              => '',
	'headFontSizeType'           => 'px',
	'headLineHeightType'         => 'em',
	'headFontSize'               => '',
	'headFontSizeTablet'         => '',
	'headFontSizeMobile'         => '',
	'headLineHeight'             => '',
	'headLineHeightTablet'       => '',
	'headLineHeightMobile'       => '',
	'subHeadFontFamily'          => 'Default',
	'subHeadFontWeight'          => '',
	'subHeadFontStyle'           => '',
	'subHeadFontSize'            => '',
	'subHeadFontSizeType'        => 'px',
	'subHeadFontSizeTablet'      => '',
	'subHeadFontSizeMobile'      => '',
	'subHeadLineHeight'          => '',
	'subHeadLineHeightType'      => 'em',
	'subHeadLineHeightTablet'    => '',
	'subHeadLineHeightMobile'    => '',
	'separatorSpace'             => 15,
	'headLoadGoogleFonts'        => false,
	'subHeadLoadGoogleFonts'     => false,
	'priceFontSizeType'          => 'px',
	'priceFontSize'              => 18,
	'priceFontSizeTablet'        => '',
	'priceFontSizeMobile'        => '',
	'priceFontFamily'            => 'Default',
	'priceFontWeight'            => '500',
	'priceFontStyle'             => '',
	'priceLineHeightType'        => 'em',
	'priceLineHeight'            => '',
	'priceLineHeightTablet'      => '',
	'priceLineHeightMobile'      => '',
	'priceLoadGoogleFonts'       => false,
	'row_gap'                    => 20,
	'step_gap'                   => '',
	'schema'                     => '',
	'headTransform'              => '',
	'headDecoration'             => '',
	'subHeadTransform'           => '',
	'subHeadDecoration'          => '',
	'priceTransform'             => '',
	'priceDecoration'            => '',
	'rowGapTablet'               => '',
	'rowGapMobile'               => '',
	// letter spacing.
	'headLetterSpacing'          => '',
	'headLetterSpacingTablet'    => '',
	'headLetterSpacingMobile'    => '',
	'headLetterSpacingType'      => 'px',
	'priceLetterSpacing'         => '',
	'priceLetterSpacingTablet'   => '',
	'priceLetterSpacingMobile'   => '',
	'priceLetterSpacingType'     => 'px',
	'subHeadLetterSpacing'       => '',
	'subHeadLetterSpacingTablet' => '',
	'subHeadLetterSpacingMobile' => '',
	'subHeadLetterSpacingType'   => 'px',
);
PK�][�<6���>ultimate-addons-for-gutenberg/includes/blocks/how-to/block.phpnu�[���<?php
/**
 * Block Information & Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/how-to';
$block_data = array(
	'doc'              => 'how-to-schema',
	'slug'             => '',
	'admin_categories' => array( 'seo' ),
	'link'             => 'how-to-schema',
	'title'            => __( 'How To', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Add instructions/steps on processes using how to block.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'how-to' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'how-to',
	),
);
PK�][�由�#�#Eultimate-addons-for-gutenberg/includes/blocks/how-to/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

// Adds Fonts.
UAGB_Block_JS::blocks_how_to_gfont( $attr );

$t_selectors = array();
$m_selectors = array();

$selectors = array(
	' .uagb-how-to-main-wrap'                              => array( // For Backword.
		'text-align' => $attr['overallAlignment'],
	),
	'.uagb-how-to-main-wrap'                               => array(
		'text-align' => $attr['overallAlignment'],
	),
	'.uagb-how-to-main-wrap p.uagb-howto-desc-text'        => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-howto__source-wrap'      => array( // For Backword.
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),
	'.uagb-how-to-main-wrap .uagb-howto__source-image'     => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	'.uagb-how-to-main-wrap span.uagb-howto__time-wrap'    => array(
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
		'justify-content' => $attr['overallAlignment'],
	),

	'.uagb-how-to-main-wrap span.uagb-howto__cost-wrap'    => array(
		'margin-bottom'   => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
		'justify-content' => $attr['overallAlignment'],
	),

	' h4.uagb-howto-req-steps-text'                        => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),
	' h4.uagb-howto-req-materials-text'                    => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),


	'.uagb-how-to-main-wrap .uagb-how-to-tools-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-tools__wrap'      => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	// for backward compatibility.
	' .uagb-how-to-materials .uagb-how-to-materials-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	' .uagb-tools__wrap .uagb-how-to-tools-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	' .uagb-how-to-main-wrap span.uagb-howto__cost-wrap'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	' .uagb-how-to-main-wrap span.uagb-howto__time-wrap'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	'.uagb-how-to-main-wrap p'                             => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	' .uagb-howto__source-wrap'                            => array( // For Backword.
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),
	' .uagb-howto__source-image'                           => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['row_gap'], 'px' ),
	),

	' .uagb-infobox__content-wrap'                         => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['step_gap'], 'px' ),
	),

	' .uagb-infobox__content-wrap:last-child'              => array(
		'margin-bottom' => '0px',
	),
	' .uagb-how-to-step-wrap'                              => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['step_gap'], 'px' ),
	),

	' .uagb-how-to-step-wrap:last-child'                   => array(
		'margin-bottom' => '0px',
	),
	' span.uagb-howto__time-wrap .uagb-howto-timeNeeded-value' => array(
		'margin-left' => UAGB_Helper::get_css_value(
			$attr['timeSpace'],
			'px'
		),
	),

	' span.uagb-howto__cost-wrap .uagb-howto-estcost-value' => array(
		'margin-left' => UAGB_Helper::get_css_value(
			$attr['costSpace'],
			'px'
		),
	),

	' ' . $attr['headingTag'] . '.uagb-howto-heading-text' => array(
		'color' => $attr['headingColor'],
	),

	' p.uagb-howto-desc-text'                              => array(
		'color' => $attr['subHeadingColor'],
	),

	' span.uagb-howto__time-wrap p'                        => array(
		'color' => $attr['subHeadingColor'],
	),

	' span.uagb-howto__cost-wrap p'                        => array(
		'color' => $attr['subHeadingColor'],
	),

	' span.uagb-howto__time-wrap h4.uagb-howto-timeNeeded-text' => array(
		'color' => $attr['showTotaltimecolor'],
	),

	' span.uagb-howto__cost-wrap h4.uagb-howto-estcost-text' => array(
		'color' => $attr['showTotaltimecolor'],
	),

	' .uagb-how-to-tools__wrap .uagb-howto-req-tools-text' => array( // For Backword.
		'color' => $attr['showTotaltimecolor'],
	),
	' .uagb-howto-req-tools-text'                          => array(
		'color' => $attr['showTotaltimecolor'],
	),

	' .uagb-howto-req-materials-text'                      => array(
		'color' => $attr['showTotaltimecolor'],
	),

	' .uagb-how-to-steps__wrap .uagb-howto-req-steps-text' => array(
		'color' => $attr['showTotaltimecolor'],
	),
	' .uagb-howto-req-steps-text'                          => array(
		'color' => $attr['showTotaltimecolor'],
	),
);
$selectors[' .uagb-tools__label'] = array(
	'color' => $attr['subHeadingColor'],
);

$selectors[' .uagb-materials__label'] = array(
	'color' => $attr['subHeadingColor'],
);

$t_selectors = array(
	'.uagb-how-to-main-wrap p.uagb-howto-desc-text'     => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),
	'.uagb-how-to-main-wrap .uagb-howto__source-image'  => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	'.uagb-how-to-main-wrap span.uagb-howto__time-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	'.uagb-how-to-main-wrap span.uagb-howto__cost-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	' h4.uagb-howto-req-steps-text'                     => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	' h4.uagb-howto-req-materials-text'                 => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),
	'.uagb-how-to-main-wrap .uagb-how-to-tools-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-tools__wrap'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapTablet'], 'px' ),
	),
);

$m_selectors = array(
	'.uagb-how-to-main-wrap p.uagb-howto-desc-text'     => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),
	'.uagb-how-to-main-wrap .uagb-howto__source-image'  => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	'.uagb-how-to-main-wrap span.uagb-howto__time-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	'.uagb-how-to-main-wrap span.uagb-howto__cost-wrap' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	' h4.uagb-howto-req-steps-text'                     => array(
		'margin-top'    => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	' h4.uagb-howto-req-materials-text'                 => array(
		'margin-top' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),
	'.uagb-how-to-main-wrap .uagb-how-to-tools-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-tools__wrap'   => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),

	'.uagb-how-to-main-wrap .uagb-how-to-materials-child__wrapper:last-child' => array(
		'margin-bottom' => UAGB_Helper::get_css_value( $attr['rowGapMobile'], 'px' ),
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' p', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'price', ' h4', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'head', ' .uagb-howto-heading-text', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-tools__label', $combined_selectors );
$combined_selectors = UAGB_Helper::get_typography_css( $attr, 'subHead', ' .uagb-materials__label', $combined_selectors );

return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . $id );
PK�][H����Cultimate-addons-for-gutenberg/includes/blocks/forms-email/error_lognu�[���[27-Oct-2025 04:40:02 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-email/block.php:14
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/forms-email/block.php on line 14
PK�][=6k���Cultimate-addons-for-gutenberg/includes/blocks/forms-email/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/forms-email';
$block_data = array(
	'slug'        => '',
	'link'        => '',
	'title'       => __( 'Email', 'ultimate-addons-for-gutenberg' ),
	'description' => __( 'Add an email address field in your form', 'ultimate-addons-for-gutenberg' ),
	'default'     => true,
	'is_child'    => true,
	'deprecated'  => false,
);
PK�][:���Bultimate-addons-for-gutenberg/includes/blocks/google-map/error_lognu�[���[27-Oct-2025 13:16:26 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/google-map/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/google-map/block.php on line 16
PK�][
�m��Gultimate-addons-for-gutenberg/includes/blocks/google-map/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'     => '',
	'height'       => '300',
	'heightTablet' => '300',
	'heightMobile' => '300',
);
PK�][I����Bultimate-addons-for-gutenberg/includes/blocks/google-map/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/google-map';
$block_data = array(
	'doc'              => 'google-map',
	'slug'             => '',
	'admin_categories' => array( 'content' ),
	'link'             => 'google-maps',
	'title'            => __( 'Google Maps', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Show a Google Map location on your website.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'extension'        => false,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'google-map' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'google-map',
	),
);
PK�][��'Iultimate-addons-for-gutenberg/includes/blocks/google-map/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$t_selectors = array();
$m_selectors = array();
$selectors   = array();

$selectors = array(
	' .uagb-google-map__iframe' => array(
		'height' => UAGB_Helper::get_css_value( $attr['height'], 'px' ),
	),
);

$m_selectors = array(
	' .uagb-google-map__iframe' => array(
		'height' => UAGB_Helper::get_css_value( $attr['heightMobile'], 'px' ),
	),
);

$t_selectors = array(
	' .uagb-google-map__iframe' => array(
		'height' => UAGB_Helper::get_css_value( $attr['heightTablet'], 'px' ),
	),
);

$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . $id );
PK�][hh�`��Cultimate-addons-for-gutenberg/includes/blocks/star-rating/error_lognu�[���[27-Oct-2025 04:25:24 UTC] PHP Fatal error:  Uncaught Error: Call to undefined function __() in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/star-rating/block.php:16
Stack trace:
#0 {main}
  thrown in /home/fresvfqn/crimescenecleaningupsuffolkcounty.com/wp-content/plugins/ultimate-addons-for-gutenberg/includes/blocks/star-rating/block.php on line 16
PK�][����
�
Hultimate-addons-for-gutenberg/includes/blocks/star-rating/attributes.phpnu�[���<?php
/**
 * Attributes File.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

return array(
	'block_id'                 => '',
	'range'                    => '5',
	'rating'                   => '4',
	'size'                     => 18,
	'sizeTablet'               => 18,
	'sizeMobile'               => 18,
	'align'                    => 'left',
	'layout'                   => 'inline',
	'layoutTablet'             => 'inline',
	'layoutMobile'             => 'inline',
	'gap'                      => 2,
	'gapTablet'                => '',
	'gapMobile'                => '',
	'unmarkedColor'            => '#ccd6df',
	'color'                    => '#f0ad4e',
	'fontFamily'               => 'Default',
	'fontWeight'               => '',
	'fontSizeType'             => 'px',
	'fontSize'                 => '',
	'fontSizeMobile'           => '',
	'fontSizeTablet'           => '',
	'lineHeightType'           => 'em',
	'lineHeight'               => '',
	'lineHeightMobile'         => '',
	'lineHeightTablet'         => '',
	'titleColor'               => '',
	'titleGap'                 => 10,
	'titleGapTablet'           => 10,
	'titleGapMobile'           => 10,
	'fontStyle'                => '',
	'fontTransform'            => '',
	'fontDecoration'           => '',
	// letter spacing.
	'letterSpacing'            => '',
	'letterSpacingTablet'      => '',
	'letterSpacingMobile'      => '',
	'letterSpacingType'        => 'px',
	'alignTablet'              => '',
	'alignMobile'              => '',
	// padding.
	'blockTopPadding'          => '',
	'blockRightPadding'        => '',
	'blockLeftPadding'         => '',
	'blockBottomPadding'       => '',
	'blockTopPaddingTablet'    => '',
	'blockRightPaddingTablet'  => '',
	'blockLeftPaddingTablet'   => '',
	'blockBottomPaddingTablet' => '',
	'blockTopPaddingMobile'    => '',
	'blockRightPaddingMobile'  => '',
	'blockLeftPaddingMobile'   => '',
	'blockBottomPaddingMobile' => '',
	'blockPaddingUnit'         => 'px',
	'blockPaddingUnitTablet'   => 'px',
	'blockPaddingUnitMobile'   => 'px',
	'blockPaddingLink'         => '',
	// margin.
	'blockTopMargin'           => '',
	'blockRightMargin'         => '',
	'blockLeftMargin'          => '',
	'blockBottomMargin'        => '',
	'blockTopMarginTablet'     => '',
	'blockRightMarginTablet'   => '',
	'blockLeftMarginTablet'    => '',
	'blockBottomMarginTablet'  => '',
	'blockTopMarginMobile'     => '',
	'blockRightMarginMobile'   => '',
	'blockLeftMarginMobile'    => '',
	'blockBottomMarginMobile'  => '',
	'blockMarginUnit'          => 'px',
	'blockMarginUnitTablet'    => 'px',
	'blockMarginUnitMobile'    => 'px',
	'blockMarginLink'          => '',
	'starPosition'             => 'after',
	'starPositionTablet'       => 'after',
	'starPositionMobile'       => 'after',
);
PK�][v-���Cultimate-addons-for-gutenberg/includes/blocks/star-rating/block.phpnu�[���<?php
/**
 * Block Information.
 *
 * @since 2.0.0
 *
 * @package uagb
 */

$block_slug = 'uagb/star-rating';
$block_data = array(
	'slug'             => '',
	'doc'              => 'star-rating-block',
	'admin_categories' => array( 'creative' ),
	'link'             => 'star-rating',
	'title'            => __( 'Star Ratings', 'ultimate-addons-for-gutenberg' ),
	'description'      => __( 'Display customizable star ratings on your page.', 'ultimate-addons-for-gutenberg' ),
	'default'          => true,
	'priority'         => Spectra_Block_Prioritization::get_block_priority( 'star-rating' ),
	'deprecated'       => false,
	'dynamic_assets'   => array(
		'dir' => 'star-rating',
	),
);
PK�][Ɉ&w.,.,Jultimate-addons-for-gutenberg/includes/blocks/star-rating/frontend.css.phpnu�[���<?php
/**
 * Frontend CSS & Google Fonts loading File.
 *
 * @since 2.0.0
 * @var mixed[] $attr
 * @var int $id
 *
 * @package uagb
 */

// Add fonts.
UAGB_Block_JS::blocks_star_rating_gfont( $attr );

$t_selectors = array();
$m_selectors = array();
$selectors   = array();

$alignment        = 'flex-start';
$alignment_tablet = 'flex-start';
$alignment_mobile = 'flex-start';

if ( '' !== $attr['align'] ) {
	if ( 'right' === $attr['align'] ) {
		$alignment = 'flex-end';
	} elseif ( 'center' === $attr['align'] ) {
		$alignment = 'center';
	} elseif ( 'full' === $attr['align'] ) {
		$alignment = 'space-between';
	} else {
		$alignment = 'flex-start';
	}
}

if ( '' !== $attr['alignTablet'] ) {
	if ( 'right' === $attr['alignTablet'] ) {
		$alignment_tablet = 'flex-end';
	} elseif ( 'center' === $attr['alignTablet'] ) {
		$alignment_tablet = 'center';
	} elseif ( 'full' === $attr['alignTablet'] ) {
		$alignment_tablet = 'space-between';
	} else {
		$alignment_tablet = 'flex-start';
	}
}

if ( '' !== $attr['alignMobile'] ) {
	if ( 'right' === $attr['alignMobile'] ) {
		$alignment_mobile = 'flex-end';
	} elseif ( 'center' === $attr['alignMobile'] ) {
		$alignment_mobile = 'center';
	} elseif ( 'full' === $attr['alignMobile'] ) {
		$alignment_mobile = 'space-between';
	} else {
		$alignment_mobile = 'flex-start';
	}
}

$wrapperCSS = array(
	'margin-top'     => UAGB_Helper::get_css_value(
		$attr['blockTopMargin'],
		$attr['blockMarginUnit']
	),
	'margin-right'   => UAGB_Helper::get_css_value(
		$attr['blockRightMargin'],
		$attr['blockMarginUnit']
	),
	'margin-bottom'  => UAGB_Helper::get_css_value(
		$attr['blockBottomMargin'],
		$attr['blockMarginUnit']
	),
	'margin-left'    => UAGB_Helper::get_css_value(
		$attr['blockLeftMargin'],
		$attr['blockMarginUnit']
	),
	'padding-top'    => UAGB_Helper::get_css_value(
		$attr['blockTopPadding'],
		$attr['blockPaddingUnit']
	),
	'padding-right'  => UAGB_Helper::get_css_value(
		$attr['blockRightPadding'],
		$attr['blockPaddingUnit']
	),
	'padding-bottom' => UAGB_Helper::get_css_value(
		$attr['blockBottomPadding'],
		$attr['blockPaddingUnit']
	),
	'padding-left'   => UAGB_Helper::get_css_value(
		$attr['blockLeftPadding'],
		$attr['blockPaddingUnit']
	),
);

$selectors = array(
	' .uag-star-rating'        => array(
		'font-size' => UAGB_Helper::get_css_value( $attr['size'], 'px' ),
	),
	' .uag-star-rating > span' => array(
		'margin-right' => UAGB_Helper::get_css_value( $attr['gap'], 'px' ),
		'color'        => $attr['unmarkedColor'],
	),
	' .uag-star:nth-child(-n+' . floor( $attr['rating'] ) . ')' => array(
		'color' => $attr['color'],
	),
	' .uag-star-rating__title' => array(
		'font-size'   => UAGB_Helper::get_css_value( $attr['fontSize'], $attr['fontSizeType'] ),
		'font-family' => $attr['fontFamily'],
		'font-weight' => $attr['fontWeight'],
		'line-height' => UAGB_Helper::get_css_value( $attr['lineHeight'], $attr['lineHeightType'] ),
		'color'       => $attr['titleColor'],
	),
);

$index = 'margin-right';
if ( 'stack' === $attr['layout'] ) {
	if ( 'before' === $attr['starPosition'] ) {
		$index                                   = 'margin-top';
		$selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction' => 'column-reverse',
				'align-items'    => $alignment, // To align-item in flex-direction column-reverse.
			),
			$wrapperCSS
		);
	} elseif ( 'after' === $attr['starPosition'] ) {
		$index                                    = 'margin-bottom';
		$selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction' => 'column', // Stack layout using flex.
				'align-items'    => $alignment, // To align-item in flex-direction column.
			),
			$wrapperCSS
		);
	}
} elseif ( 'inline' === $attr['layout'] ) {
	if ( 'before' === $attr['starPosition'] ) {
		$index                                   = 'margin-left';
		$selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction'  => 'row-reverse',
				'justify-content' => UAGB_Block_Helper::flex_alignment_when_direction_is_row_reverse( $alignment ), // To align-item in flex-direction column-reverse.
			),
			$wrapperCSS
		);
	} elseif ( 'after' === $attr['starPosition'] ) {
		$index                                    = 'margin-right';
		$selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction'  => 'row', // inline layout using flex.
				'justify-content' => $alignment,
			),
			$wrapperCSS
		);
	}
}


$wrapperCSSTablet = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingTablet'], $attr['blockPaddingUnitTablet'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginTablet'], $attr['blockMarginUnitTablet'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginTablet'], $attr['blockMarginUnitTablet'] ),
);

$index_tablet = 'margin-right';
if ( 'stack' === $attr['layoutTablet'] ) {
	if ( 'before' === $attr['starPositionTablet'] ) {
		$index_tablet                              = 'margin-top';
		$t_selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction' => 'column-reverse',
				'align-items'    => $alignment_tablet, // To align-item in flex-direction column-reverse.
			),
			$wrapperCSSTablet
		);
	} elseif ( 'after' === $attr['starPositionTablet'] ) {
		$index_tablet                               = 'margin-bottom';
		$t_selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction' => 'column', // inline layout using flex.
				'align-items'    => $alignment_tablet,
			),
			$wrapperCSSTablet
		);
	}
} else {
	if ( 'before' === $attr['starPositionTablet'] ) {
		$index_tablet                              = 'margin-left';
		$t_selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction'  => 'row-reverse',
				'justify-content' => UAGB_Block_Helper::flex_alignment_when_direction_is_row_reverse( $alignment_tablet ), // To align-item in flex-direction column-reverse.
			),
			$wrapperCSSTablet
		);
	} elseif ( 'after' === $attr['starPositionTablet'] ) {
		$index_tablet                               = 'margin-right';
		$t_selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction'  => 'row',
				'justify-content' => $alignment_tablet,
			),
			$wrapperCSSTablet
		);
	}
	$t_selectors[' .uag-star-rating__title '] = array(
		'margin-bottom' => 0,
	);
}

$wrapperCSSMobile = array(
	'padding-top'    => UAGB_Helper::get_css_value( $attr['blockTopPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-right'  => UAGB_Helper::get_css_value( $attr['blockRightPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-bottom' => UAGB_Helper::get_css_value( $attr['blockBottomPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'padding-left'   => UAGB_Helper::get_css_value( $attr['blockLeftPaddingMobile'], $attr['blockPaddingUnitMobile'] ),
	'margin-top'     => UAGB_Helper::get_css_value( $attr['blockTopMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-right'   => UAGB_Helper::get_css_value( $attr['blockRightMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-bottom'  => UAGB_Helper::get_css_value( $attr['blockBottomMarginMobile'], $attr['blockMarginUnitMobile'] ),
	'margin-left'    => UAGB_Helper::get_css_value( $attr['blockLeftMarginMobile'], $attr['blockMarginUnitMobile'] ),
);

$index_mobile = 'margin-right';
if ( 'stack' === $attr['layoutMobile'] ) {
	if ( 'before' === $attr['starPositionMobile'] ) {
		$index_mobile                              = 'margin-top';
		$m_selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction' => 'column-reverse',
				'align-items'    => $alignment_mobile, // To align-item in flex-direction column-reverse.
			),
			$wrapperCSSMobile
		);
	} elseif ( 'after' === $attr['starPositionMobile'] ) {
		$index_mobile                               = 'margin-bottom';
		$m_selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction' => 'column', // inline layout using flex.
				'align-items'    => $alignment_mobile,
			),
			$wrapperCSSMobile
		);
	}
} else {
	if ( 'before' === $attr['starPositionMobile'] ) {
		$index_mobile                              = 'margin-left';
		$m_selectors['.wp-block-uagb-star-rating'] = array_merge(
			array(
				'flex-direction'  => 'row-reverse',
				'justify-content' => UAGB_Block_Helper::flex_alignment_when_direction_is_row_reverse( $alignment_mobile ), // To align-item in flex-direction column-reverse.
			),
			$wrapperCSSMobile
		);
	} elseif ( 'after' === $attr['starPositionMobile'] ) {
		$index_mobile                               = 'margin-right';
		$m_selectors['.wp-block-uagb-star-rating '] = array_merge(
			array(
				'flex-direction'  => 'row',
				'justify-content' => $alignment_mobile,
			),
			$wrapperCSSMobile
		);
	}
	$m_selectors[' .uag-star-rating__title '] = array(
		'margin-bottom' => 0,
	);
}

$selectors[' .uag-star-rating__title'][ $index ]          = UAGB_Helper::get_css_value( $attr['titleGap'], 'px' );
$t_selectors[' .uag-star-rating__title'][ $index_tablet ] = UAGB_Helper::get_css_value( $attr['titleGapTablet'], 'px' );
$m_selectors[' .uag-star-rating__title'][ $index_mobile ] = UAGB_Helper::get_css_value( $attr['titleGapMobile'], 'px' );
$t_selectors[' .uag-star-rating']                         = array(
	'font-size' => UAGB_Helper::get_css_value( $attr['sizeTablet'], 'px' ),
);
$t_selectors[' .uag-star-rating > span']                  = array(
	'margin-right' => UAGB_Helper::get_css_value( $attr['gapTablet'], 'px' ),
);
$m_selectors[' .uag-star-rating']                         = array(
	'font-size' => UAGB_Helper::get_css_value( $attr['sizeMobile'], 'px' ),
);
$m_selectors[' .uag-star-rating > span']                  = array(
	'margin-right' => UAGB_Helper::get_css_value( $attr['gapMobile'], 'px' ),
);

$remainder = ( $attr['rating'] - floor( $attr['rating'] ) );
$width     = $remainder * 100;

if ( 0 !== $width ) {
	$selectors[ ' .uag-star:nth-child(' . ceil( $attr['rating'] ) . '):before' ] = array(
		'color'    => $attr['color'],
		'width'    => UAGB_Helper::get_css_value( $width, '%' ),
		'position' => 'absolute',
		'content'  => "'★'",
		'overflow' => 'hidden',
	);
	$selectors[ ' .uag-star:nth-child(' . ceil( $attr['rating'] ) . ')' ]        = array(
		'position' => 'relative',
	);
}


$combined_selectors = array(
	'desktop' => $selectors,
	'tablet'  => $t_selectors,
	'mobile'  => $m_selectors,
);

$combined_selectors = UAGB_Helper::get_typography_css( $attr, '', ' .uag-star-rating__title', $combined_selectors );


return UAGB_Helper::generate_all_css( $combined_selectors, ' .uagb-block-' . substr( $attr['block_id'], 0, 8 ) );
PK�][!b��?ultimate-addons-for-gutenberg/templates/visibility-template.phpnu�[���<?php
/**
 * UAGB Visibility Template.
 *
 * @package UAGB
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
	<meta name="viewport" content="width=device-width,initial-scale=1.0" charset="<?php bloginfo( 'charset' ); ?>">
	<?php if ( ! current_theme_supports( 'title-tag' ) ) : ?>
		<title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Escaping not required. ?></title>
		<?php endif; ?>
		<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
	<?php
		the_content();

	wp_footer();
	?>
	</body>
</html>
PK�][���XX/ultimate-addons-for-gutenberg/postcss.config.jsnu�[���module.exports = {
	plugins: {
		tailwindcss: {},
		autoprefixer: { grid: true },
	},
}
PK�][NMC�ii0ultimate-addons-for-gutenberg/tailwind.config.jsnu�[���const withTW = require( '@bsf/force-ui/withTW' );

module.exports = withTW( {
	content: [
		'./src/**/*.js',
	],
	theme: {
		extend: {
			colors: {
				// brand
				'brand-background-50': '#EFF6FF',
				'brand-background-hover-100': '#DBEAFE',
				'brand-200': '#BFDBFE',
				'brand-border-300': '#93C5FD',
				'brand-400': '#60A5FA',
				'brand-500': '#3B82F6',
				'brand-primary-600': '#6005FF',
				'brand-hover-700': '#1D4ED8',
				'brand-800': '#1E40AF',
				'brand-900': '#1E3A8A',
				'brand-text-950': '#172554',
				// background
				'background-primary': '#FFFFFF',
				'background-secondary': '#F9FAFB',
				'background-inverse': '#111827',
				'background-brand': '#6005FF',
				'background-brand-light': '#F3F0FF',
				'background-important': '#DC2626',
				// field
				'field-primary-background': '#F9FAFB',
				'field-secondary-background': '#FFFFFF',
				'field-primary-hover': '#F3F4F6',
				'field-secondary-hover': '#F3F4F6',
				'field-dropzone-background': '#FFFFFF',
				'field-border': '#E5E7EB',
				'field-dropzone-background-hover': '#F9FAFB',
				'field-dropzone-color': '#6005FF',
				'field-label': '#111827',
				'field-input': '#111827',
				'field-helper': '#9CA3AF',
				'field-background-disabled': '#F9FAFB',
				'field-color-disabled': '#D1D5DB',
				'field-placeholder': '#6B7280',
				'field-border-disabled': '#F3F4F6',
				'field-color-error': '#DC2626',
				'field-border-error': '#FECACA',
				'field-background-error': '#FEF2F2',
				'field-required': '#DC2626',
				// border
				'border-interactive': '#6005FF',
				'border-subtle': '#E5E7EB',
				'border-strong': '#6B7280',
				'border-inverse': '#374151',
				'border-disabled': '#E5E7EB',
				'border-muted': '#E5E7EB',
				'border-error': '#DC2626',
				'border-transparent-subtle': '#37415114',
				'border-white': '#FFFFFF',
				// text
				'text-primary': '#111827',
				'text-secondary': '#4B5563',
				'text-tertiary': '#9CA3AF',
				'text-on-color': '#FFFFFF',
				'text-error': '#DC2626',
				'text-error-inverse': '#F87171',
				'text-inverse': '#FFFFFF',
				'text-disabled': '#D1D5DB',
				'text-on-button-disabled': '#9CA3AF',
				// link
				'link-primary': '#6005FF',
				'link-primary-hover': '#1D4ED8',
				'link-inverse': '#38BDF8',
				'link-visited': '#7C3AED',
				'link-visited-inverse': '#A78BFA',
				'link-inverse-hover': '#7DD3FC',
				// icon
				'icon-primary': '#111827',
				'icon-secondary': '#4B5563',
				'icon-on-color': '#FFFFFF',
				'icon-inverse': '#FFFFFF',
				'icon-interactive': '#6005FF',
				'icon-on-color-disabled': '#9CA3AF',
				'icon-disabled': '#D1D5DB',
				// support
				'support-error': '#DC2626',
				'support-success': '#16A34A',
				'support-warning': '#EAB308',
				'support-info': '#0284C7',
				'support-error-inverse': '#F87171',
				'support-success-inverse': '#4ADE80',
				'support-warning-inverse': '#FDE047',
				'support-info-inverse': '#38BDF8',
				// button
				'button-primary': '#6005FF',
				'button-primary-hover': '#5104D6',
				'button-secondary': '#1F2937',
				'button-secondary-hover': '#374151',
				'button-tertiary': '#FFFFFF',
				'button-tertiary-hover': '#F9FAFB',
				'button-danger': '#DC2626',
				'button-danger-secondary': '#DC2626',
				'button-danger-hover': '#B91C1C',
				'button-disabled': '#F3F4F6',
				'button-tertiary-border': '#E5E7EB',
				'button-tertiary-color': '#111827',
				// focus
				'focus': '#6005FF',
				'focus-inset': '#FFFFFF',
				'focus-inverse': '#38BDF8',
				'focus-inverse-inset': '#111827',
				'focus-error': '#DC2626',
				'focus-border': '#BFDBFE',
				'focus-error-border': '#FECACA',
				// misc
				'misc-highlight': '#BFDBFE',
				'misc-overlay': '#11182780',
				'misc-skeleton-background': '#F3F4F6',
				'misc-skeleton-element': '#D1D5DB',
				'misc-popup-button-hover': '#1118270D',
				'misc-tab-item-hover': '#E5E7EB',
				'misc-dropdown-hover': '#F3F4F6',
				'misc-loader-base': '#1118270D',
				'misc-loader-color': '#6005FF',
				'misc-progress-background': '#E5E7EB',
				// badge
				'badge-background-gray': '#F9FAFB',
				'badge-color-gray': '#1F2937',
				'badge-hover-gray': '#F3F4F6',
				'badge-border-gray': '#E5E7EB',
				'badge-background-red': '#FEF2F2',
				'badge-color-red': '#B91C1C',
				'badge-hover-red': '#FEE2E2',
				'badge-border-red': '#FECACA',
				'badge-background-yellow': '#FEFCE8',
				'badge-color-yellow': '#A16207',
				'badge-hover-yellow': '#FEF9C3',
				'badge-border-yellow': '#FEF08A',
				'badge-hover-green': '#DCFCE7',
				'badge-border-green': '#BBF7D0',
				'badge-background-green': '#F0FDF4',
				'badge-color-green': '#15803D',
				'badge-background-sky': '#F0F9FF',
				'badge-color-sky': '#0369A1',
				'badge-hover-sky': '#E0F2FE',
				'badge-border-sky': '#BAE6FD',
				'badge-background-disabled': '#F3F4F6',
				'badge-color-disabled': '#D1D5DB',
				'badge-hover-disabled': '#F3F4F6',
				'badge-border-disabled': '#E5E7EB',
				'badge-background-important': '#DC2626',
				// alert
				'alert-background-neutral': '#FFFFFF',
				'alert-border-neutral': '#E5E7EB',
				'alert-background-danger': '#FEF2F2',
				'alert-border-danger': '#FECACA',
				'alert-background-warning': '#FEFCE8',
				'alert-border-warning': '#FEF08A',
				'alert-background-green': '#F0FDF4',
				'alert-border-green': '#BBF7D0',
				'alert-background-info': '#F0F9FF',
				'alert-border-info': '#BAE6FD',
				// tab
				'tab-background': '#F3F4F6',
				'tab-border': '#E5E7EB',
				// tooltip
				'tooltip-background-light': '#FFFFFF',
				'tooltip-background-dark': '#111827',
				// toggle
				'toggle-off': '#E5E7EB',
				'toggle-on': '#6005FF',
				'toggle-dial-background': '#FFFFFF',
				'toggle-off-hover': '#D1D5DB',
				'toggle-off-border': '#D1D5DB',
				'toggle-on-hover': '#3B82F6',
				'toggle-on-border': '#60A5FA',
				'toggle-off-disabled': '#F3F4F6',
				'spectra': {
					DEFAULT: '#6104ff',
					hover: '#5300e0',
					light: '#ece1fe',
					verylight: '#f5f0ff'
				},
			},
			width: {
				'1/7': '14.2857143%',
				'1/8': '12.5%',
				'1/9': '11.1111111%',
				'1/10': '10%',
				'1/11': '9.0909091%',
				'1/12': '8.3333333%',
			},
			fontFamily: {
				inter: ['"Inter"', 'sans-serif'],
			},
			fontSize: {
				xxs: '0.6875rem', // 11px
			},
			lineHeight: {
				2.6: '0.6875rem', // 11px
			},
			boxShadow: {
				'soft-shadow-sm':
					'0px 6px 32px -12px rgba(149, 160, 178, 0.12)',
				'soft-shadow': '0px 8px 32px -12px rgba(149, 160, 178, 0.16)',
				'soft-shadow-md':
					'0px 10px 32px -12px rgba(149, 160, 178, 0.2)',
				'soft-shadow-lg':
					'0px 12px 32px -12px rgba(149, 160, 178, 0.24)',
				'soft-shadow-xl':
					'0px 16px 32px -12px rgba(149, 160, 178, 0.32)',
				'soft-shadow-2xl':
					'0px 24px 64px -12px rgba(149, 160, 178, 0.32)',
				'soft-shadow-inner': '0px 1px 1px 0px rgba(0, 0, 0, 0.05)',
				'content-wrapper': '0px 1px 1px 0px #0000000F, 0px 1px 2px 0px #0000001A',
				'overlay-left': '-16px 0px 80px -24px rgba(0, 0, 0, 0.16)',
				'overlay-right': '16px 0px 80px -24px rgba(0, 0, 0, 0.16)',
				'hover': '0px 12px 24px -12px rgba(0, 0, 0, 0.12)',
			},
			spacing: {
				120: '30rem', // 480px
				95: '23.75rem', // 380px
				141.5: '35.375rem', // 566px
				188: '47rem', // 752px
			},
			zIndex: {
				999999: '999999',
			},
			screens: {
                custom: { min: '1024px', max: '1400px' },
            },
		},
	},
	variants: {
		extend: {},
	},
	plugins: [
		require( '@tailwindcss/forms' ),
	],
	corePlugins: {
		preflight: false,
	},
	important: ':is(.components-modal__frame)',
} );PK�][7����9ultimate-addons-for-gutenberg/admin-core/admin-loader.phpnu�[���<?php
/**
 * Uag Admin.
 *
 * @package Uag
 */

namespace UagAdmin;

use UagAdmin\Api\Api_Init;
use UagAdmin\Ajax\Ajax_Init;
use UagAdmin\Inc\Admin_Menu;

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
/**
 * Class Admin_Loader.
 */
class Admin_Loader {

	/**
	 * Instance
	 *
	 * @access private
	 * @var object Class object.
	 * @since 2.0.0
	 */
	private static $instance;

	/**
	 * Initiator
	 *
	 * @since 2.0.0
	 * @return object initialized object of class.
	 */
	public static function get_instance() {
		if ( ! isset( self::$instance ) ) {
			self::$instance = new self();
		}
		return self::$instance;
	}

	/**
	 * Autoload classes.
	 *
	 * @param string $class class name.
	 */
	public function autoload( $class ) {

		if ( 0 !== strpos( $class, __NAMESPACE__ ) ) {
			return;
		}

		$class_to_load = $class;

		if ( ! class_exists( $class_to_load ) ) {
			$filename = strtolower(
				preg_replace(
					array( '/^' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ),
					array( '', '$1-$2', '-', DIRECTORY_SEPARATOR ),
					$class_to_load
				)
			);

			$file = UAG_ADMIN_DIR . $filename . '.php';

			// if the file redable, include it.
			if ( is_readable( $file ) ) {
				include $file;
			}
		}
	}

	/**
	 * Constructor
	 *
	 * @since 2.0.0
	 */
	public function __construct() {

		spl_autoload_register( array( $this, 'autoload' ) );

		$this->define_constants();
		$this->setup_classes();
	}

	/**
	 * Include required classes.
	 */
	public function define_constants() {
		define( 'UAG_ADMIN_DIR', UAGB_DIR . 'admin-core/' );
		define( 'UAG_ADMIN_URL', UAGB_URL . 'admin-core/' );
	}

	/**
	 * Include required classes.
	 */
	public function setup_classes() {

		/* Init API */
		Api_Init::get_instance();

		if ( is_admin() ) {
			/* Setup Menu */
			Admin_Menu::get_instance();

			/* Ajax init */
			Ajax_Init::get_instance();
		}
	}
}
Admin_Loader::get_instance();
PK�][���dd=ultimate-addons-for-gutenberg/admin-core/views/admin-base.phpnu�[���<?php
/**
 * Admin Base HTML.
 *
 * @package uag
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="uag-menu-page-wrapper">
	<div id="uag-menu-page">
		<div class="uag-menu-page-content uag-clear">
		<?php

			do_action( 'uag_render_admin_page_content', $menu_page_slug, $page_action );
		?>
		</div>
	</div>
</div>
PK�][a�>��@ultimate-addons-for-gutenberg/admin-core/views/dashboard-app.phpnu�[���<?php
/**
 * Single page settings page
 *
 * @package uag
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>

<div id="uag-dashboard-app" class="uag-dashboard-app">
</div>
PK�][��ԗ�Bultimate-addons-for-gutenberg/admin-core/assets/images/spectra.svgnu�[���<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 26.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
	 viewBox="0 0 82 82" style="enable-background:new 0 0 82 82;" xml:space="preserve">
<g>
	<path class="st0" d="M41,1C18.9,1,1,18.9,1,41s17.9,40,40,40c22.1,0,40-17.9,40-40S63.1,1,41,1z M56.1,47.1c0,0.1,0,0.2,0,0.3
		c0,0.1,0,0.2,0,0.3l0,0.2c-0.2,1.2-0.6,2.3-1.3,3.3c-0.1,0.2-0.2,0.4-0.4,0.5c0,0,0,0.1-0.5,0.6c-0.4,0.5-0.5,0.6-0.6,0.7
		c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1l-0.1,0c-0.1,0.1-0.2,0.1-0.2,0.2c-0.1,0.1-0.2,0.1-0.3,0.2l-0.1,0
		c-0.1,0.1-0.2,0.1-0.3,0.2L33.6,66.1c-0.2,0.1-0.3,0.2-0.5,0.2c-0.1,0-0.1,0-0.2,0c-0.2-0.1-0.5-0.2-0.6-0.4c0,0-0.4-0.8-0.5-0.8
		c0-0.1-0.1-0.1-0.1-0.2l0-0.1c0,0,0-0.1,0-0.1l0-0.1c0,0,0-0.1-0.1-0.1l0-0.1c0,0,0-0.1-0.1-0.1l0,0c-0.7-1.9-0.8-4-0.2-5.9
		c0.6-2,1.9-3.7,3.6-4.8l8.6-5.7c0.3-0.2,0.4-0.6,0.4-0.8c-0.1-0.3-0.2-0.6-0.6-0.6L33,44.3c-0.1,0-0.2,0-0.3-0.1l-0.1,0
		c-0.1,0-0.2,0-0.3-0.1l0,0c-0.1,0-0.2-0.1-0.3-0.1L32,44c-0.1,0-0.1,0-0.2-0.1l-0.1,0c-0.1,0-0.2-0.1-0.3-0.1l-0.1,0
		c-0.1,0-0.1,0-0.2-0.1l-0.1,0c-0.1,0-0.2-0.1-0.3-0.1l0,0c-0.1,0-0.2-0.1-0.3-0.1c-0.1,0-0.2-0.1-0.3-0.1l0,0
		c-0.1-0.1-0.2-0.1-0.3-0.2c-0.8-0.5-1.5-1.1-2.1-1.9l-0.2-0.3l-0.3-0.4c-1.3-2-1.8-4.4-1.3-6.7c0.2-0.7,0.4-1.5,0.8-2.3
		c0.1-0.2,0.2-0.4,0.3-0.5c0.1-0.1,0.1-0.2,0.1-0.2c0.1-0.2,0.2-0.4,0.4-0.5c0-0.1,0.1-0.1,0.1-0.2l0,0c0.1-0.1,0.1-0.2,0.2-0.2
		c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1c0,0,0.1-0.1,0.1-0.1l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1
		c0.1-0.1,0.1-0.1,0.2-0.2l0,0c0.1-0.1,0.1-0.1,0.2-0.2l0.1-0.1c0,0,0.1-0.1,0.1-0.1l0.1-0.1c0.1-0.1,0.2-0.1,0.2-0.2L48.4,16
		c0.2-0.2,0.5-0.2,0.8-0.2c0.3,0.1,0.5,0.2,0.7,0.5c0,0,0.1,0.2,0.2,0.3l0,0.1c0,0.1,0.1,0.2,0.1,0.2l0,0c0,0.1,0.1,0.1,0.1,0.2
		l0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0.1,0.1l0,0c0,0.1,0.1,0.2,0.1,0.3c0,0,0,0.1,0.1,0.2c0,0,0,0.1,0,0.1l0,0.1
		c0.7,1.8,0.7,3.9,0.1,5.8c-0.6,1.9-1.9,3.5-3.5,4.7l-8.6,5.7c-0.3,0.2-0.4,0.6-0.4,0.8c0.1,0.3,0.2,0.6,0.6,0.6l10.1,2
		c4.2,0.8,7.1,4.5,7.1,8.7C56.1,46.5,56.1,47.1,56.1,47.1z"/>
</g>
</svg>
PK�][��_�Fultimate-addons-for-gutenberg/admin-core/assets/images/btn-spectra.svgnu�[���<svg width="71" height="71" viewBox="0 0 71 71" fill="#000000" xmlns="http://www.w3.org/2000/svg">
<path d="M35.292 0C28.3119 0 21.4885 2.08204 15.6848 5.98283C9.88107 9.88362 5.35762 15.428 2.68645 21.9147C0.0152817 28.4015 -0.683625 35.5394 0.678124 42.4257C2.03987 49.312 5.40111 55.6375 10.3368 60.6023C15.2725 65.5671 21.5609 68.9481 28.4068 70.3179C35.2528 71.6876 42.3489 70.9846 48.7976 68.2977C55.2464 65.6108 60.7583 61.0607 64.6362 55.2227C68.5141 49.3848 70.584 42.5212 70.584 35.5C70.58 26.0861 66.8604 17.0588 60.2428 10.4021C53.6251 3.74548 44.6508 0.00401876 35.292 0V0ZM48.5887 40.944C48.5887 41.035 48.5887 41.126 48.5887 41.217V41.4748V41.6416C48.4098 42.6715 48.0307 43.6558 47.4731 44.538L47.1414 45.0081L46.659 45.5692C46.4943 45.781 46.3073 45.9742 46.1012 46.1454V46.2213L45.9957 46.2971L45.7846 46.4639C45.7145 46.5265 45.6388 46.5823 45.5585 46.6307L45.3323 46.7824L28.9753 57.6856C28.8417 57.7759 28.684 57.8235 28.523 57.8221H28.3572C28.2497 57.7996 28.1477 57.7558 28.0571 57.6933C27.9665 57.6309 27.8892 57.5509 27.8296 57.4582C27.8296 57.4582 27.4527 56.7909 27.4225 56.7454V56.5938V56.5179V56.4269V56.3208V56.1995C26.7754 54.513 26.7216 52.6545 27.2701 50.933C27.8187 49.2115 28.9365 47.7307 30.4376 46.7369L38.0659 41.6568C38.1849 41.5771 38.2779 41.4638 38.3329 41.3311C38.388 41.1984 38.4027 41.0522 38.3753 40.9111C38.3479 40.77 38.2796 40.6402 38.1789 40.5381C38.0782 40.436 37.9497 40.3662 37.8096 40.3375L28.8547 38.5177H28.5984H28.523H28.2818H28.0255H27.92H27.7843H27.709L27.4678 38.4267H27.3924H27.2416L27.0004 38.3054L26.7592 38.1841L26.533 38.0476L26.3069 37.9111C25.5952 37.4647 24.959 36.9067 24.4225 36.2582L24.2265 35.9853L24.0004 35.6365C23.421 34.7714 23.0198 33.7984 22.8205 32.7748C22.6211 31.7512 22.6276 30.6979 22.8395 29.6769C22.9971 28.975 23.2455 28.2969 23.5782 27.66C23.6687 27.4932 23.7441 27.3415 23.8345 27.205L23.9702 26.9927C24.067 26.8303 24.1727 26.6733 24.2868 26.5226L24.4225 26.3558L24.5883 26.1587L24.7541 25.9767L24.8597 25.8706L25.0406 25.6886L25.1913 25.5521L25.3572 25.4156L25.5381 25.264H25.6134L25.734 25.1578H25.8094L26.0054 25.0214L42.272 14.1788C42.3763 14.1091 42.4935 14.0612 42.6166 14.038C42.7396 14.0147 42.8661 14.0166 42.9884 14.0435C43.1108 14.0704 43.2265 14.1217 43.3287 14.1944C43.431 14.2672 43.5176 14.3598 43.5836 14.4669L43.7192 14.6944L43.8248 14.9067C43.8248 14.9825 43.9002 15.0432 43.9303 15.1038C43.9303 15.1038 43.9303 15.1038 43.9303 15.1948C43.94 15.2295 43.94 15.2662 43.9303 15.3009V15.3009L44.0208 15.5284C44.0289 15.5684 44.0289 15.6097 44.0208 15.6497C44.0208 15.6497 44.0208 15.6497 44.0208 15.7407C44.6198 17.3996 44.6483 19.2127 44.1017 20.8897C43.555 22.5668 42.4648 24.011 41.0056 24.991L33.4678 30.0256C33.3488 30.1053 33.2559 30.2186 33.2008 30.3513C33.1457 30.484 33.131 30.6302 33.1584 30.7713C33.1858 30.9124 33.2542 31.0422 33.3549 31.1443C33.4555 31.2464 33.584 31.3162 33.7241 31.3449L42.6036 33.1495C44.3808 33.5188 45.9773 34.4922 47.1249 35.9061C48.2726 37.3201 48.9012 39.0884 48.9053 40.9137C48.6188 40.4285 48.5887 40.9137 48.5887 40.9137V40.944Z" fill="white"/>
</svg>
PK�][�)ΦMultimate-addons-for-gutenberg/admin-core/assets/images/dashboard-uag-logo.svgnu�[���<svg width="316" height="70" viewBox="0 0 316 70" fill="none" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 70C54.33 70 70 54.33 70 35C70 15.67 54.33 0 35 0C15.67 0 0 15.67 0 35C0 54.33 15.67 70 35 70ZM45.763 45.255C47.7866 43.9757 48.9999 41.8352 49 39.5446C49.0001 36.3616 46.6761 33.5935 43.3799 32.8506L33.504 30.3992C32.573 30.1894 32.3499 29.0415 33.1419 28.5363L40.8361 23.6287C44.4175 21.3443 45.3487 16.7662 42.9159 13.4032C42.6119 12.9828 42.0024 12.8735 41.5547 13.1591L24.1734 24.8834C22.1884 26.1495 21 28.2566 21 30.5098C21 33.6548 23.2961 36.3896 26.5529 37.1236L36.5897 39.6113C37.5228 39.8216 37.744 40.9733 36.948 41.4765L29.1973 46.3764C25.6058 48.6468 24.6544 53.2212 27.0723 56.5936C27.3746 57.0152 27.9835 57.1269 28.4325 56.843L45.763 45.255Z" fill="#5733FF"/>
<path d="M100.898 51.964C97.6317 51.964 94.7238 51.4295 92.1738 50.3605C89.6237 49.2915 87.5658 47.7772 86 45.8174L91.7711 40.9401C93.1132 42.41 94.6343 43.479 96.3343 44.1471C98.0344 44.7707 99.7567 45.0824 101.502 45.0824C102.888 45.0824 104.007 44.7707 104.857 44.1471C105.707 43.5235 106.132 42.655 106.132 41.5414C106.132 40.5615 105.729 39.7821 104.924 39.203C104.119 38.6686 102.195 38.0004 99.1528 37.1987C94.6343 36.0406 91.4356 34.4594 89.5566 32.4551C87.9013 30.6735 87.0737 28.4687 87.0737 25.8408C87.0737 23.7474 87.7 21.9212 88.9527 20.3623C90.2053 18.7588 91.8606 17.5116 93.9185 16.6208C95.9764 15.73 98.2133 15.2846 100.629 15.2846C103.403 15.2846 106.02 15.7746 108.481 16.7545C110.941 17.7343 112.999 19.0706 114.654 20.7631L109.688 26.1748C108.436 25.0168 106.982 24.0591 105.327 23.302C103.716 22.5002 102.217 22.0994 100.83 22.0994C97.6094 22.0994 95.9988 23.2129 95.9988 25.4399C96.0435 26.5089 96.5357 27.3552 97.4751 27.9787C98.3699 28.6023 100.405 29.3372 103.582 30.1835C107.832 31.297 110.829 32.7669 112.574 34.5931C114.095 36.152 114.856 38.2231 114.856 40.8065C114.856 42.9445 114.229 44.8597 112.977 46.5523C111.769 48.2448 110.113 49.5811 108.011 50.561C105.908 51.4963 103.537 51.964 100.898 51.964Z" fill="black"/>
<path d="M119.377 63V16.0195H127.234L128.369 20.2954C129.533 18.8701 131.121 17.6898 133.134 16.7545C135.147 15.8191 137.272 15.3514 139.509 15.3514C142.596 15.3514 145.347 16.1309 147.763 17.6898C150.179 19.2487 152.08 21.409 153.467 24.1705C154.854 26.932 155.547 30.0722 155.547 33.5909C155.547 37.1096 154.854 40.2498 153.467 43.0113C152.08 45.7728 150.179 47.9553 147.763 49.5588C145.347 51.1177 142.596 51.8972 139.509 51.8972C137.406 51.8972 135.371 51.474 133.402 50.6278C131.434 49.737 129.846 48.6234 128.638 47.2872V59.0113L119.377 63ZM137.496 44.0135C140.225 44.0135 142.439 43.0558 144.139 41.1406C145.839 39.1808 146.689 36.6642 146.689 33.5909C146.689 30.5621 145.839 28.0901 144.139 26.1748C142.439 24.215 140.225 23.2351 137.496 23.2351C134.767 23.2351 132.552 24.1928 130.852 26.108C129.152 28.0233 128.302 30.5176 128.302 33.5909C128.302 36.6642 129.152 39.1808 130.852 41.1406C132.552 43.0558 134.767 44.0135 137.496 44.0135Z" fill="black"/>
<path d="M178.26 51.964C174.457 51.964 171.125 51.1845 168.261 49.6256C165.398 48.0667 163.161 45.9287 161.551 43.2117C159.985 40.4947 159.202 37.3769 159.202 33.8581C159.202 30.2058 159.963 26.9988 161.484 24.2373C163.049 21.4312 165.174 19.2265 167.859 17.623C170.588 16.0195 173.719 15.2178 177.254 15.2178C180.43 15.2178 183.271 15.9973 185.776 17.5562C188.326 19.0706 190.295 21.1417 191.681 23.7696C193.113 26.3975 193.784 29.4041 193.695 32.7892L193.627 35.662H168.127C168.619 38.2009 169.827 40.2052 171.751 41.6751C173.719 43.1449 176.202 43.8798 179.2 43.8798C180.81 43.8798 182.264 43.6349 183.562 43.1449C184.904 42.655 186.335 41.7864 187.856 40.5393L192.285 46.6859C190.362 48.3785 188.147 49.6924 185.642 50.6278C183.181 51.5186 180.721 51.964 178.26 51.964ZM177.321 23.1015C172.265 23.1015 169.223 25.3731 168.194 29.9163H184.971V29.649C184.837 27.7338 184.031 26.1748 182.555 24.9722C181.123 23.7251 179.379 23.1015 177.321 23.1015Z" fill="black"/>
<path d="M214.829 51.964C211.473 51.964 208.454 51.1623 205.769 49.5588C203.13 47.9553 201.027 45.7728 199.461 43.0113C197.94 40.2498 197.18 37.1096 197.18 33.5909C197.18 30.1167 197.94 26.9988 199.461 24.2373C201.027 21.4758 203.13 19.2933 205.769 17.6898C208.454 16.0863 211.473 15.2846 214.829 15.2846C218.005 15.2846 220.891 15.8636 223.485 17.0217C226.125 18.1798 228.183 19.8055 229.659 21.8989L224.626 27.9119C223.687 26.6203 222.389 25.529 220.734 24.6382C219.079 23.7028 217.401 23.2351 215.701 23.2351C213.822 23.2351 212.145 23.7028 210.668 24.6382C209.237 25.529 208.096 26.7539 207.246 28.3128C206.441 29.8717 206.038 31.6311 206.038 33.5909C206.038 35.5507 206.463 37.3101 207.313 38.869C208.163 40.4279 209.326 41.6751 210.802 42.6104C212.279 43.5012 213.934 43.9466 215.768 43.9466C217.513 43.9466 219.124 43.568 220.6 42.8108C222.076 42.0091 223.418 40.8956 224.626 39.4703L229.659 45.4833C228.138 47.4431 226.035 49.0243 223.351 50.2269C220.667 51.385 217.826 51.964 214.829 51.964Z" fill="black"/>
<path d="M241.975 51.2959C237.557 51.2959 233.975 47.7142 233.975 43.2959V24.2373V16.0195V10.9887L243.102 7V16.0195H250V24.2373H243.102V41C243.102 42.1046 243.997 43 245.102 43H250V51.2959H241.975Z" fill="black"/>
<path d="M255.355 51.2959V16.0195H263.212L264.347 21.8321C265.511 19.9169 267.032 18.3579 268.911 17.1553C270.834 15.9082 272.848 15.2846 274.95 15.2846C275.755 15.2846 276.494 15.3514 277.165 15.485C277.88 15.5741 278.484 15.7077 278.977 15.8859L276.494 25.9076C276.001 25.6403 275.375 25.4176 274.615 25.2395C273.854 25.0613 273.094 24.9722 272.333 24.9722C270.141 24.9722 268.284 25.7294 266.763 27.2438C265.287 28.7137 264.549 30.5844 264.549 32.856V51.2959H255.355Z" fill="black"/>
<path d="M295.398 51.964C292.446 51.964 289.784 51.1623 287.413 49.5588C285.042 47.9553 283.14 45.7728 281.709 43.0113C280.322 40.2498 279.628 37.1096 279.628 33.5909C279.628 29.9831 280.322 26.8207 281.709 24.1037C283.14 21.3422 285.064 19.1819 287.48 17.623C289.94 16.0641 292.714 15.2846 295.801 15.2846C298.306 15.2846 300.498 15.7968 302.377 16.8213C304.256 17.8012 305.755 19.0928 306.874 20.6963V16.0195H316V51.2959H307.808L306.806 46.5523C305.554 48.1112 303.921 49.4029 301.908 50.4273C299.939 51.4518 297.77 51.964 295.398 51.964ZM297.881 44.0135C300.61 44.0135 302.825 43.0558 304.525 41.1406C306.225 39.2253 307.075 36.7088 307.075 33.5909C307.075 30.473 306.225 27.9565 304.525 26.0412C302.825 24.126 300.61 23.1683 297.881 23.1683C295.197 23.1683 293.005 24.126 291.305 26.0412C289.65 27.9565 288.822 30.473 288.822 33.5909C288.822 36.7088 289.65 39.2253 291.305 41.1406C293.005 43.0558 295.197 44.0135 297.881 44.0135Z" fill="black"/>
</svg>
PK�][�:

Cultimate-addons-for-gutenberg/admin-core/assets/images/uag-logo.svgnu�[���<svg width="60" height="60" viewBox="0 0 84 85" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M41.7849 0C33.5206 0 25.4419 2.49258 18.5705 7.16254C11.699 11.8325 6.34331 18.4701 3.18071 26.236C0.0181112 34.0018 -0.809377 42.5471 0.802901 50.7913C2.41518 59.0355 6.3948 66.6083 12.2385 72.552C18.0822 78.4958 25.5276 82.5435 33.633 84.1834C41.7385 85.8232 50.1401 84.9816 57.7753 81.7649C65.4105 78.5482 71.9363 73.1008 76.5277 66.1117C81.1191 59.1226 83.5697 50.9057 83.5697 42.5C83.565 31.2298 79.1612 20.4225 71.326 12.4533C63.4908 4.48402 52.8655 0.0048112 41.7849 0ZM57.5278 49.0175C57.5278 49.1264 57.5278 49.2354 57.5278 49.3443V49.6529V49.8526C57.3161 51.0856 56.8673 52.2639 56.207 53.3201L55.8143 53.8829L55.2431 54.5546C55.0482 54.8082 54.8268 55.0396 54.5827 55.2445V55.3353L54.4578 55.4261L54.2079 55.6258C54.1249 55.7007 54.0353 55.7675 53.9402 55.8255L53.6724 56.0071L34.3061 69.0602C34.1479 69.1683 33.9612 69.2253 33.7706 69.2236H33.5743C33.447 69.1967 33.3262 69.1443 33.2189 69.0695C33.1117 68.9947 33.0201 68.899 32.9495 68.7879C32.9495 68.7879 32.5033 67.9891 32.4676 67.9347V67.7531V67.6623V67.5534V67.4263V67.2811C31.7014 65.262 31.6378 63.0371 32.2872 60.9761C32.9366 58.9152 34.2601 57.1424 36.0375 55.9526L45.0691 49.8708C45.2101 49.7754 45.3201 49.6398 45.3853 49.4809C45.4505 49.322 45.4679 49.147 45.4355 48.9781C45.403 48.8091 45.3221 48.6537 45.2029 48.5315C45.0837 48.4093 44.9316 48.3257 44.7657 48.2913L34.1633 46.1128H33.8599H33.7706H33.485H33.1816H33.0567H32.896H32.8068L32.5212 46.0038H32.4319H32.2534L31.9679 45.8586L31.6823 45.7134L31.4145 45.55L31.1468 45.3866C30.3041 44.8521 29.5509 44.1841 28.9156 43.4077L28.6836 43.0809L28.4159 42.6634C27.73 41.6278 27.255 40.4629 27.0189 39.2375C26.7828 38.012 26.7905 36.751 27.0415 35.5286C27.228 34.6884 27.5221 33.8766 27.9161 33.1141C28.0232 32.9144 28.1124 32.7328 28.2195 32.5694L28.3802 32.3153C28.4948 32.1207 28.6199 31.9329 28.755 31.7525L28.9156 31.5528L29.112 31.3167L29.3083 31.0989L29.4333 30.9718L29.6475 30.754L29.8259 30.5906L30.0223 30.4272L30.2365 30.2456H30.3257L30.4685 30.1185H30.5578L30.7898 29.9551L50.049 16.9746C50.1725 16.8912 50.3113 16.8338 50.457 16.806C50.6027 16.7782 50.7524 16.7804 50.8973 16.8126C51.0421 16.8448 51.1791 16.9062 51.3002 16.9933C51.4212 17.0804 51.5238 17.1913 51.6019 17.3195L51.7626 17.5918L51.8875 17.846C51.8875 17.9368 51.9768 18.0094 52.0125 18.082C52.0125 18.082 52.0125 18.082 52.0125 18.191C52.0239 18.2325 52.0239 18.2765 52.0125 18.318L52.1195 18.5904C52.1292 18.6383 52.1292 18.6877 52.1195 18.7356C52.1195 18.7356 52.1195 18.7356 52.1195 18.8445C52.8288 20.8305 52.8625 23.0011 52.2153 25.0089C51.5681 27.0166 50.2774 28.7455 48.5497 29.9188L39.6251 35.9462C39.4842 36.0415 39.3742 36.1772 39.309 36.3361C39.2438 36.495 39.2263 36.6699 39.2588 36.8389C39.2912 37.0078 39.3722 37.1632 39.4914 37.2854C39.6106 37.4077 39.7627 37.4912 39.9286 37.5256L50.4417 39.686C52.5458 40.1281 54.4361 41.2935 55.7948 42.9862C57.1536 44.679 57.8979 46.796 57.9027 48.9812C57.5635 48.4003 57.5278 48.9812 57.5278 48.9812V49.0175Z" fill="url(#paint0_linear_619_170)"/>
<defs>
<linearGradient id="paint0_linear_619_170" x1="1.17098e-05" y1="1.49716e-06" x2="84.02" y2="71.3596" gradientUnits="userSpaceOnUse">
<stop stop-color="#6104FF"/>
<stop offset="1" stop-color="#6104FF"/>
</linearGradient>
</defs>
</svg>
PK�][w����Multimate-addons-for-gutenberg/admin-core/assets/build/dashboard-app.asset.phpnu�[���<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-element', 'wp-escape-html', 'wp-i18n', 'wp-url'), 'version' => '37e49f4eab9b965a7aa6');
PK�][��ЩЩGultimate-addons-for-gutenberg/admin-core/assets/build/dashboard-app.cssnu�[���[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{-webkit-appearance: none;appearance: none;background-color: #fff;border-color: #6b7280;border-width: 1px;border-radius: 0px;padding-top: 0.5rem;padding-right: 0.75rem;padding-bottom: 0.5rem;padding-left: 0.75rem;font-size: 1rem;line-height: 1.5rem;--tw-shadow: 0 0 #0000;}[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{outline: 2px solid transparent;outline-offset: 2px;--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);border-color: #2563eb;}input::placeholder,textarea::placeholder{color: #6b7280;opacity: 1;}::-webkit-datetime-edit-fields-wrapper{padding: 0;}::-webkit-date-and-time-value{min-height: 1.5em;}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top: 0;padding-bottom: 0;}select{background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 20 20%27%3e%3cpath stroke=%27%236b7280%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.5%27 d=%27M6 8l4 4 4-4%27/%3e%3c/svg%3e");background-position: right 0.5rem center;background-repeat: no-repeat;background-size: 1.5em 1.5em;padding-right: 2.5rem;-webkit-print-color-adjust: exact;color-adjust: exact;}[multiple]{background-image: initial;background-position: initial;background-repeat: unset;background-size: initial;padding-right: 0.75rem;-webkit-print-color-adjust: unset;color-adjust: unset;}[type='checkbox'],[type='radio']{-webkit-appearance: none;appearance: none;padding: 0;-webkit-print-color-adjust: exact;color-adjust: exact;display: inline-block;vertical-align: middle;background-origin: border-box;-webkit-user-select: none;user-select: none;flex-shrink: 0;height: 1rem;width: 1rem;color: #2563eb;background-color: #fff;border-color: #6b7280;border-width: 1px;--tw-shadow: 0 0 #0000;}[type='checkbox']{border-radius: 0px;}[type='radio']{border-radius: 100%;}[type='checkbox']:focus,[type='radio']:focus{outline: 2px solid transparent;outline-offset: 2px;--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);}[type='checkbox']:checked,[type='radio']:checked{border-color: transparent;background-color: currentColor;background-size: 100% 100%;background-position: center;background-repeat: no-repeat;}[type='checkbox']:checked{background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3cpath d=%27M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z%27/%3e%3c/svg%3e");}[type='radio']:checked{background-image: url("data:image/svg+xml,%3csvg viewBox=%270 0 16 16%27 fill=%27white%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3ccircle cx=%278%27 cy=%278%27 r=%273%27/%3e%3c/svg%3e");}[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{border-color: transparent;background-color: currentColor;}[type='checkbox']:indeterminate{background-image: url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27none%27 viewBox=%270 0 16 16%27%3e%3cpath stroke=%27white%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 8h8%27/%3e%3c/svg%3e");border-color: transparent;background-color: currentColor;background-size: 100% 100%;background-position: center;background-repeat: no-repeat;}[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{border-color: transparent;background-color: currentColor;}[type='file']{background: unset;border-color: inherit;border-width: 0;border-radius: 0;padding: 0;font-size: unset;line-height: inherit;}[type='file']:focus{outline: 1px auto -webkit-focus-ring-color;}*, ::before, ::after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x:  ;--tw-pan-y:  ;--tw-pinch-zoom:  ;--tw-scroll-snap-strictness: proximity;--tw-ordinal:  ;--tw-slashed-zero:  ;--tw-numeric-figure:  ;--tw-numeric-spacing:  ;--tw-numeric-fraction:  ;--tw-ring-inset:  ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur:  ;--tw-brightness:  ;--tw-contrast:  ;--tw-grayscale:  ;--tw-hue-rotate:  ;--tw-invert:  ;--tw-saturate:  ;--tw-sepia:  ;--tw-drop-shadow:  ;--tw-backdrop-blur:  ;--tw-backdrop-brightness:  ;--tw-backdrop-contrast:  ;--tw-backdrop-grayscale:  ;--tw-backdrop-hue-rotate:  ;--tw-backdrop-invert:  ;--tw-backdrop-opacity:  ;--tw-backdrop-saturate:  ;--tw-backdrop-sepia:  ;}::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x:  ;--tw-pan-y:  ;--tw-pinch-zoom:  ;--tw-scroll-snap-strictness: proximity;--tw-ordinal:  ;--tw-slashed-zero:  ;--tw-numeric-figure:  ;--tw-numeric-spacing:  ;--tw-numeric-fraction:  ;--tw-ring-inset:  ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur:  ;--tw-brightness:  ;--tw-contrast:  ;--tw-grayscale:  ;--tw-hue-rotate:  ;--tw-invert:  ;--tw-saturate:  ;--tw-sepia:  ;--tw-drop-shadow:  ;--tw-backdrop-blur:  ;--tw-backdrop-brightness:  ;--tw-backdrop-contrast:  ;--tw-backdrop-grayscale:  ;--tw-backdrop-hue-rotate:  ;--tw-backdrop-invert:  ;--tw-backdrop-opacity:  ;--tw-backdrop-saturate:  ;--tw-backdrop-sepia:  ;}.container{width: 100%;}@media (min-width: 640px){.container{max-width: 640px;}}@media (min-width: 768px){.container{max-width: 768px;}}@media (min-width: 1024px){.container{max-width: 1024px;}}@media (min-width: 1280px){.container{max-width: 1280px;}}@media (min-width: 1536px){.container{max-width: 1536px;}}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sr-only{position: absolute;width: 1px;height: 1px;padding: 0;margin: -1px;overflow: hidden;clip: rect(0, 0, 0, 0);white-space: nowrap;border-width: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .not-sr-only{position: static;width: auto;height: auto;padding: 0;margin: 0;overflow: visible;clip: auto;white-space: normal;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pointer-events-none{pointer-events: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pointer-events-auto{pointer-events: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .visible{visibility: visible;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .invisible{visibility: hidden;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .collapse{visibility: collapse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .static{position: static;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .fixed{position: fixed;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .absolute{position: absolute;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .relative{position: relative;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sticky{position: sticky;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-inset-1{top: -0.25rem;right: -0.25rem;bottom: -0.25rem;left: -0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inset-0{top: 0px;right: 0px;bottom: 0px;left: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inset-10{top: 2.5rem;right: 2.5rem;bottom: 2.5rem;left: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inset-x-0{left: 0px;right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inset-y-0{top: 0px;bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-bottom-6{bottom: -1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-bottom-px{bottom: -1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bottom-0{bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bottom-1{bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bottom-1\.5{bottom: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-0{left: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-1{left: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-1\/2{left: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-2\/4{left: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-3{left: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-\[calc\(50\%\+10px\)\]{left: calc(50% + 10px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-\[calc\(50\%\+12px\)\]{left: calc(50% + 12px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .left-\[calc\(50\%\+14px\)\]{left: calc(50% + 14px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-0{right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-1\/2{right: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-2{right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-3{right: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-4{right: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-\[calc\(-50\%\+10px\)\]{right: calc(-50% + 10px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-\[calc\(-50\%\+12px\)\]{right: calc(-50% + 12px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .right-\[calc\(-50\%\+14px\)\]{right: calc(-50% + 14px);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-0{top: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-1\/2{top: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-2{top: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-2\.5{top: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-2\/4{top: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-3{top: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-3\.5{top: 0.875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-4{top: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .top-full{top: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .isolate{isolation: isolate;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .isolation-auto{isolation: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-z-10{z-index: -10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-10{z-index: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-20{z-index: 20;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-50{z-index: 50;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-999999{z-index: 999999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-\[9999999\]{z-index: 9999999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .z-\[99999\]{z-index: 99999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-1{order: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-10{order: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-11{order: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-12{order: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-2{order: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-3{order: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-4{order: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-5{order: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-6{order: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-7{order: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-8{order: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-9{order: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-first{order: -9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-last{order: 9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .order-none{order: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-1{grid-column: span 1 / span 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-10{grid-column: span 10 / span 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-11{grid-column: span 11 / span 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-12{grid-column: span 12 / span 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-2{grid-column: span 2 / span 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-3{grid-column: span 3 / span 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-4{grid-column: span 4 / span 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-5{grid-column: span 5 / span 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-6{grid-column: span 6 / span 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-7{grid-column: span 7 / span 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-8{grid-column: span 8 / span 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-span-9{grid-column: span 9 / span 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-1{grid-column-start: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-10{grid-column-start: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-11{grid-column-start: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-12{grid-column-start: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-2{grid-column-start: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-3{grid-column-start: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-4{grid-column-start: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-5{grid-column-start: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-6{grid-column-start: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-7{grid-column-start: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-8{grid-column-start: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .col-start-9{grid-column-start: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-m-2{margin: -0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-m-2\.5{margin: -0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .m-0{margin: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .m-1{margin: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .m-2{margin: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .m-2\.5{margin: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mx-0{margin-left: 0px;margin-right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mx-1{margin-left: 0.25rem;margin-right: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mx-2{margin-left: 0.5rem;margin-right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mx-auto{margin-left: auto;margin-right: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .my-0{margin-top: 0px;margin-bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .my-1{margin-top: 0.25rem;margin-bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .my-12{margin-top: 3rem;margin-bottom: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .my-2{margin-top: 0.5rem;margin-bottom: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .my-5{margin-top: 1.25rem;margin-bottom: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-ml-1{margin-left: -0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-mr-1{margin-right: -0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-mr-2{margin-right: -0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-mt-2{margin-top: -0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-0{margin-bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-0\.5{margin-bottom: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-1{margin-bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-2{margin-bottom: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-3{margin-bottom: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-4{margin-bottom: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-6{margin-bottom: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-8{margin-bottom: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-\[0\.7rem\]{margin-bottom: 0.7rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mb-\[2px\]{margin-bottom: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-0{margin-left: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-1{margin-left: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-10{margin-left: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-2{margin-left: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-3{margin-left: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ml-4{margin-left: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-0{margin-right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-0\.5{margin-right: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-1{margin-right: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-10{margin-right: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-2{margin-right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-3{margin-right: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-5{margin-right: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-7{margin-right: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mr-8{margin-right: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-1{margin-top: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-1\.5{margin-top: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-2{margin-top: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-2\.5{margin-top: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-3{margin-top: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-4{margin-top: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-6{margin-top: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-\[0\.5px\]{margin-top: 0.5px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-\[2px\]{margin-top: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .mt-auto{margin-top: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .box-border{box-sizing: border-box;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .box-content{box-sizing: content-box;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .block{display: block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inline-block{display: inline-block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inline{display: inline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex{display: flex;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inline-flex{display: inline-flex;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table{display: table;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inline-table{display: inline-table;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-caption{display: table-caption;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-cell{display: table-cell;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-column{display: table-column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-column-group{display: table-column-group;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-footer-group{display: table-footer-group;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-header-group{display: table-header-group;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-row-group{display: table-row-group;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .table-row{display: table-row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flow-root{display: flow-root;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid{display: grid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .inline-grid{display: inline-grid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .contents{display: contents;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .list-item{display: list-item;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hidden{display: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .aspect-square{aspect-ratio: 1 / 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .aspect-video{aspect-ratio: 16 / 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-0{height: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-1{height: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-10{height: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-12{height: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-16{height: 4rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-2{height: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-3{height: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-3\.5{height: 0.875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-4{height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-5{height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-6{height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-60{height: 15rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-7{height: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-8{height: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-9{height: 2.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-\[120px\]{height: 120px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-\[160px\]{height: 160px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-\[20px\]{height: 20px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-\[24px\]{height: 24px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-\[32px\]{height: 32px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-auto{height: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-fit{height: -moz-fit-content;height: fit-content;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-full{height: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-px{height: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .h-screen{height: 100vh;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-h-\[10\.75rem\]{max-height: 10.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-h-\[13\.5rem\]{max-height: 13.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-h-\[23rem\]{max-height: 23rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-h-\[8\.75rem\]{max-height: 8.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-0{min-height: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-\[2\.5rem\]{min-height: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-\[2rem\]{min-height: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-\[3rem\]{min-height: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-full{min-height: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-h-screen{min-height: 100vh;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-0{width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1{width: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/10{width: 10%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/11{width: 9.0909091%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/12{width: 8.3333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/2{width: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/3{width: 33.333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/4{width: 25%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/5{width: 20%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/6{width: 16.666667%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/7{width: 14.2857143%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/8{width: 12.5%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-1\/9{width: 11.1111111%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-10{width: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-11{width: 2.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-12{width: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-120{width: 30rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-16{width: 4rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-3{width: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-3\.5{width: 0.875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-4{width: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-4\/5{width: 80%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-48{width: 12rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-5{width: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-6{width: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-60{width: 15rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-7{width: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-72{width: 18rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-8{width: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-9\/12{width: 75%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-96{width: 24rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[18\.5rem\]{width: 18.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[200px\]{width: 200px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[20px\]{width: 20px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[22\.5rem\]{width: 22.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[24px\]{width: 24px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[4\.375rem\]{width: 4.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-\[400px\]{width: 400px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-auto{width: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-fit{width: -moz-fit-content;width: fit-content;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-full{width: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .w-screen{width: 100vw;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-w-0{min-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .min-w-\[180px\]{min-width: 180px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-w-\[360px\]{max-width: 360px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-w-\[480px\]{max-width: 480px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-w-\[696px\]{max-width: 696px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-w-sm{max-width: 24rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .max-w-xs{max-width: 20rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-1{flex: 1 1 0%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-auto{flex: 1 1 auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-none{flex: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-shrink-0{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shrink{flex-shrink: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shrink-0{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-grow{flex-grow: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grow{flex-grow: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grow-0{flex-grow: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-collapse{border-collapse: collapse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-separate{border-collapse: separate;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-spacing-0{--tw-border-spacing-x: 0px;--tw-border-spacing-y: 0px;border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-spacing-\[0_0\.25rem\]{--tw-border-spacing-x: 0 0.25rem;--tw-border-spacing-y: 0 0.25rem;border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .origin-left{transform-origin: left;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-x-1\/2{--tw-translate-x: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-x-2{--tw-translate-x: -0.5rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-x-2\/4{--tw-translate-x: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-x-full{--tw-translate-x: -100%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-y-1\/2{--tw-translate-y: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-y-2\/4{--tw-translate-y: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .-translate-y-full{--tw-translate-y: -100%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-x-1\/2{--tw-translate-x: 50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-x-full{--tw-translate-x: 100%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-y-0{--tw-translate-y: 0px;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-y-2{--tw-translate-y: 0.5rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-y-4{--tw-translate-y: 1rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .translate-y-full{--tw-translate-y: 100%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transform{transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}@keyframes pulse{50%{opacity: .5;}}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .animate-pulse{animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;}@keyframes spin{to{transform: rotate(360deg);}}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .animate-spin{animation: spin 1s linear infinite;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .cursor-auto{cursor: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .cursor-default{cursor: default;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .cursor-not-allowed{cursor: not-allowed;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .cursor-pointer{cursor: pointer;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .touch-pinch-zoom{--tw-pinch-zoom: pinch-zoom;touch-action: var(--tw-pan-x) var(--tw-pan-y) var(--tw-pinch-zoom);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .resize{resize: both;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .list-none{list-style-type: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .appearance-none{-webkit-appearance: none;appearance: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .auto-cols-auto{grid-auto-columns: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-flow-row{grid-auto-flow: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-flow-col{grid-auto-flow: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-flow-row-dense{grid-auto-flow: row dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-flow-col-dense{grid-auto-flow: column dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .auto-rows-auto{grid-auto-rows: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-10{grid-template-columns: repeat(10, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-11{grid-template-columns: repeat(11, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-3{grid-template-columns: repeat(3, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-4{grid-template-columns: repeat(4, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-5{grid-template-columns: repeat(5, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-6{grid-template-columns: repeat(6, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-7{grid-template-columns: repeat(7, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-8{grid-template-columns: repeat(8, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-9{grid-template-columns: repeat(9, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-cols-\[1fr_auto\]{grid-template-columns: 1fr auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grid-rows-\[auto_1fr\]{grid-template-rows: auto 1fr;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-row{flex-direction: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-row-reverse{flex-direction: row-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-col{flex-direction: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-col-reverse{flex-direction: column-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-wrap{flex-wrap: wrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-wrap-reverse{flex-wrap: wrap-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .flex-nowrap{flex-wrap: nowrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .content-center{align-content: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .items-start{align-items: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .items-end{align-items: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .items-center{align-items: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .items-baseline{align-items: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .items-stretch{align-items: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-start{justify-content: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-end{justify-content: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-center{justify-content: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-between{justify-content: space-between;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-around{justify-content: space-around;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-evenly{justify-content: space-evenly;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-0{gap: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-0\.5{gap: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-1{gap: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-1\.5{gap: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-10{gap: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-2{gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-2\.5{gap: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-3{gap: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-4{gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-5{gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-6{gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-8{gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-\[88px\]{gap: 88px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-x-2{column-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-x-4{column-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-x-5{column-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-x-6{column-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-x-8{column-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-y-2{row-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-y-4{row-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-y-5{row-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-y-6{row-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .gap-y-8{row-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-x-1 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse: 0;margin-right: calc(0.25rem * var(--tw-space-x-reverse));margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-x-2 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse: 0;margin-right: calc(0.5rem * var(--tw-space-x-reverse));margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-x-3 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse: 0;margin-right: calc(0.75rem * var(--tw-space-x-reverse));margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-1 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 0;margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-1\.5 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 0;margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-2 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 0;margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-4 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 0;margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom: calc(1rem * var(--tw-space-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-6 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 0;margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-y-reverse > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .space-x-reverse > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-x > :not([hidden]) ~ :not([hidden]){--tw-divide-x-reverse: 0;border-right-width: calc(1px * var(--tw-divide-x-reverse));border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-x-0 > :not([hidden]) ~ :not([hidden]){--tw-divide-x-reverse: 0;border-right-width: calc(0px * var(--tw-divide-x-reverse));border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-y > :not([hidden]) ~ :not([hidden]){--tw-divide-y-reverse: 0;border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));border-bottom-width: calc(1px * var(--tw-divide-y-reverse));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-y-reverse > :not([hidden]) ~ :not([hidden]){--tw-divide-y-reverse: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-x-reverse > :not([hidden]) ~ :not([hidden]){--tw-divide-x-reverse: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-solid > :not([hidden]) ~ :not([hidden]){border-style: solid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .divide-border-subtle > :not([hidden]) ~ :not([hidden]){--tw-divide-opacity: 1;border-color: rgb(229 231 235 / var(--tw-divide-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .self-start{align-self: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .self-end{align-self: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .self-center{align-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .self-stretch{align-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .self-baseline{align-self: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-self-auto{justify-self: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-self-start{justify-self: start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-self-end{justify-self: end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-self-center{justify-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .justify-self-stretch{justify-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-auto{overflow: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-hidden{overflow: hidden;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-visible{overflow: visible;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-x-auto{overflow-x: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-y-auto{overflow-y: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overflow-x-hidden{overflow-x: hidden;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .truncate{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-ellipsis{text-overflow: ellipsis;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-clip{text-overflow: clip;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .whitespace-nowrap{white-space: nowrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded{border-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-full{border-radius: 9999px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-lg{border-radius: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-md{border-radius: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-none{border-radius: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-sm{border-radius: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-xl{border-radius: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-b{border-bottom-right-radius: 0.25rem;border-bottom-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-l{border-top-left-radius: 0.25rem;border-bottom-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-r{border-top-right-radius: 0.25rem;border-bottom-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-t{border-top-left-radius: 0.25rem;border-top-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-bl{border-bottom-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-bl-md{border-bottom-left-radius: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-br{border-bottom-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-br-md{border-bottom-right-radius: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tl{border-top-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tl-md{border-top-left-radius: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tl-none{border-top-left-radius: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tr{border-top-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tr-md{border-top-right-radius: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .rounded-tr-none{border-top-right-radius: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border{border-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-0{border-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-x{border-left-width: 1px;border-right-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-x-0{border-left-width: 0px;border-right-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-y{border-top-width: 1px;border-bottom-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-b{border-bottom-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-b-0{border-bottom-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-l{border-left-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-l-0{border-left-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-r{border-right-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-r-0{border-right-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-t{border-top-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-t-0{border-top-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-solid{border-style: solid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-dashed{border-style: dashed;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-dotted{border-style: dotted;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-double{border-style: double;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-hidden{border-style: hidden;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-none{border-style: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-alert-border-danger{--tw-border-opacity: 1;border-color: rgb(254 202 202 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-alert-border-green{--tw-border-opacity: 1;border-color: rgb(187 247 208 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-alert-border-info{--tw-border-opacity: 1;border-color: rgb(186 230 253 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-alert-border-neutral{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-alert-border-warning{--tw-border-opacity: 1;border-color: rgb(254 240 138 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-background-inverse{--tw-border-opacity: 1;border-color: rgb(17 24 39 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-disabled{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-gray{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-green{--tw-border-opacity: 1;border-color: rgb(187 247 208 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-red{--tw-border-opacity: 1;border-color: rgb(254 202 202 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-sky{--tw-border-opacity: 1;border-color: rgb(186 230 253 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-badge-border-yellow{--tw-border-opacity: 1;border-color: rgb(254 240 138 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-border-disabled{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-border-strong{--tw-border-opacity: 1;border-color: rgb(107 114 128 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-border-subtle{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-brand-primary-600{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-button-primary{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-field-border-disabled{--tw-border-opacity: 1;border-color: rgb(243 244 246 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-focus-error-border{--tw-border-opacity: 1;border-color: rgb(254 202 202 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-red-600{--tw-border-opacity: 1;border-color: rgb(220 38 38 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-slate-200{--tw-border-opacity: 1;border-color: rgb(226 232 240 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-slate-400{--tw-border-opacity: 1;border-color: rgb(148 163 184 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-slate-800{--tw-border-opacity: 1;border-color: rgb(30 41 59 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-spectra{--tw-border-opacity: 1;border-color: rgb(97 4 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-tab-border{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-text-inverse{--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-toggle-off-border{--tw-border-opacity: 1;border-color: rgb(209 213 219 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-transparent{border-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-white{--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-b-slate-200{--tw-border-opacity: 1;border-bottom-color: rgb(226 232 240 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-t-border-subtle{--tw-border-opacity: 1;border-top-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-t-slate-200{--tw-border-opacity: 1;border-top-color: rgb(226 232 240 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .border-t-white{--tw-border-opacity: 1;border-top-color: rgb(255 255 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-\[\#E9E4FF\]{--tw-bg-opacity: 1;background-color: rgb(233 228 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-\[\#F3F0FF\]{--tw-bg-opacity: 1;background-color: rgb(243 240 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-\[\#F9FAFB\]{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-\[\#f3f0ff\]{--tw-bg-opacity: 1;background-color: rgb(243 240 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-alert-background-danger{--tw-bg-opacity: 1;background-color: rgb(254 242 242 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-alert-background-green{--tw-bg-opacity: 1;background-color: rgb(240 253 244 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-alert-background-info{--tw-bg-opacity: 1;background-color: rgb(240 249 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-alert-background-neutral{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-alert-background-warning{--tw-bg-opacity: 1;background-color: rgb(254 252 232 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-brand{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-important{--tw-bg-opacity: 1;background-color: rgb(220 38 38 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-inverse{--tw-bg-opacity: 1;background-color: rgb(17 24 39 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-inverse\/90{background-color: rgb(17 24 39 / 0.9);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-primary{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-background-secondary{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-disabled{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-gray{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-green{--tw-bg-opacity: 1;background-color: rgb(240 253 244 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-red{--tw-bg-opacity: 1;background-color: rgb(254 242 242 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-sky{--tw-bg-opacity: 1;background-color: rgb(240 249 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-badge-background-yellow{--tw-bg-opacity: 1;background-color: rgb(254 252 232 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-black{--tw-bg-opacity: 1;background-color: rgb(0 0 0 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-border-interactive{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-brand-background-50{--tw-bg-opacity: 1;background-color: rgb(239 246 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-brand-primary-600{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-danger{--tw-bg-opacity: 1;background-color: rgb(220 38 38 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-disabled{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-primary{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-secondary{--tw-bg-opacity: 1;background-color: rgb(31 41 55 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-tertiary{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-button-tertiary-hover{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-current{background-color: currentColor;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-field-background-disabled{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-field-background-error{--tw-bg-opacity: 1;background-color: rgb(254 242 242 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-field-primary-background{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-field-secondary-background{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-gray-200{--tw-bg-opacity: 1;background-color: rgb(229 231 235 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-gray-50{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-gray-500{--tw-bg-opacity: 1;background-color: rgb(107 114 128 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-icon-interactive{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-misc-progress-background{--tw-bg-opacity: 1;background-color: rgb(229 231 235 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-red-50{--tw-bg-opacity: 1;background-color: rgb(254 242 242 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-red-600{--tw-bg-opacity: 1;background-color: rgb(220 38 38 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-slate-100{--tw-bg-opacity: 1;background-color: rgb(241 245 249 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-slate-200{--tw-bg-opacity: 1;background-color: rgb(226 232 240 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-slate-500{--tw-bg-opacity: 1;background-color: rgb(100 116 139 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-slate-800{--tw-bg-opacity: 1;background-color: rgb(30 41 59 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-spectra{--tw-bg-opacity: 1;background-color: rgb(97 4 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-tab-background{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-text-tertiary{--tw-bg-opacity: 1;background-color: rgb(156 163 175 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-toggle-dial-background{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-toggle-off{--tw-bg-opacity: 1;background-color: rgb(229 231 235 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-toggle-off-disabled{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-tooltip-background-dark{--tw-bg-opacity: 1;background-color: rgb(17 24 39 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-tooltip-background-light{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-transparent{background-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-violet-100{--tw-bg-opacity: 1;background-color: rgb(237 233 254 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-white{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-opacity-30{--tw-bg-opacity: 0.3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-opacity-50{--tw-bg-opacity: 0.5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-opacity-70{--tw-bg-opacity: 0.7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-opacity-75{--tw-bg-opacity: 0.75;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-gradient-to-b{background-image: linear-gradient(to bottom, var(--tw-gradient-stops));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .from-\[\#A78BFA\]{--tw-gradient-from: #A78BFA;--tw-gradient-to: rgb(167 139 250 / 0);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .to-\[\#6005FF\]{--tw-gradient-to: #6005FF;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-cover{background-size: cover;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-center{background-position: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .bg-repeat{background-repeat: repeat;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .fill-current{fill: currentColor;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .stroke-inherit{stroke: inherit;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .stroke-red-600{stroke: #dc2626;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .object-cover{-o-object-fit: cover;object-fit: cover;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-0{padding: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-0\.5{padding: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-1{padding: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-1\.5{padding: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-10{padding: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-2{padding: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-2\.5{padding: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-3{padding: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-3\.5{padding: 0.875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-4{padding: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-5{padding: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-6{padding: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-\[0\.7rem\]{padding: 0.7rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .p-\[2px\]{padding: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-0{padding-left: 0px;padding-right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-0\.5{padding-left: 0.125rem;padding-right: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-1{padding-left: 0.25rem;padding-right: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-1\.5{padding-left: 0.375rem;padding-right: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-2{padding-left: 0.5rem;padding-right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-2\.5{padding-left: 0.625rem;padding-right: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-3{padding-left: 0.75rem;padding-right: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-3\.5{padding-left: 0.875rem;padding-right: 0.875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-4{padding-left: 1rem;padding-right: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .px-5{padding-left: 1.25rem;padding-right: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-0{padding-top: 0px;padding-bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-0\.5{padding-top: 0.125rem;padding-bottom: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-1{padding-top: 0.25rem;padding-bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-1\.5{padding-top: 0.375rem;padding-bottom: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-2{padding-top: 0.5rem;padding-bottom: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-2\.5{padding-top: 0.625rem;padding-bottom: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-3{padding-top: 0.75rem;padding-bottom: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-4{padding-top: 1rem;padding-bottom: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-5{padding-top: 1.25rem;padding-bottom: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-6{padding-top: 1.5rem;padding-bottom: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-8{padding-top: 2rem;padding-bottom: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .py-\[3px\]{padding-top: 3px;padding-bottom: 3px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pb-1{padding-bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pb-2{padding-bottom: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pb-20{padding-bottom: 5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pb-4{padding-bottom: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-0{padding-left: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-10{padding-left: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-2{padding-left: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-2\.5{padding-left: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-3{padding-left: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-8{padding-left: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pl-9{padding-left: 2.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-10{padding-right: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-12{padding-right: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-2{padding-right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-2\.5{padding-right: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-3{padding-right: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-4{padding-right: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-8{padding-right: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pr-9{padding-right: 2.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pt-0{padding-top: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pt-1{padding-top: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pt-4{padding-top: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pt-5{padding-top: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .pt-8{padding-top: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-left{text-align: left;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-center{text-align: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .align-bottom{vertical-align: bottom;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .font-\[Figtree\]{font-family: Figtree;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-2xl{font-size: 1.5rem;line-height: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-\[0\.8rem\]{font-size: 0.8rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-\[10px\]{font-size: 10px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-base{font-size: 1rem;line-height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-lg{font-size: 1.125rem;line-height: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-sm{font-size: 0.875rem;line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-tiny{font-size: 0.625rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-xl{font-size: 1.25rem;line-height: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-xs{font-size: 0.75rem;line-height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-xxs{font-size: 0.6875rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .font-bold{font-weight: 700;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .font-medium{font-weight: 500;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .font-normal{font-weight: 400;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .font-semibold{font-weight: 600;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .uppercase{text-transform: uppercase;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lowercase{text-transform: lowercase;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .capitalize{text-transform: capitalize;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .normal-case{text-transform: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .italic{font-style: italic;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .not-italic{font-style: normal;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .normal-nums{font-variant-numeric: normal;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ordinal{--tw-ordinal: ordinal;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .slashed-zero{--tw-slashed-zero: slashed-zero;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lining-nums{--tw-numeric-figure: lining-nums;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .oldstyle-nums{--tw-numeric-figure: oldstyle-nums;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .proportional-nums{--tw-numeric-spacing: proportional-nums;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .tabular-nums{--tw-numeric-spacing: tabular-nums;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .diagonal-fractions{--tw-numeric-fraction: diagonal-fractions;font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .leading-4{line-height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .leading-5{line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .leading-6{line-height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .leading-\[10px\]{line-height: 10px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .leading-none{line-height: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-\[\#4B5563\]{--tw-text-opacity: 1;color: rgb(75 85 99 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-\[\#6005FF\]{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-amber-400{--tw-text-opacity: 1;color: rgb(251 191 36 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-background-primary{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-gray{--tw-text-opacity: 1;color: rgb(31 41 55 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-green{--tw-text-opacity: 1;color: rgb(21 128 61 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-red{--tw-text-opacity: 1;color: rgb(185 28 28 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-sky{--tw-text-opacity: 1;color: rgb(3 105 161 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-badge-color-yellow{--tw-text-opacity: 1;color: rgb(161 98 7 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-black{--tw-text-opacity: 1;color: rgb(0 0 0 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-border-strong{--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-brand-primary-600{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-button-danger{--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-button-primary{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-button-secondary{--tw-text-opacity: 1;color: rgb(31 41 55 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-button-tertiary-color{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-current{color: currentColor;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-emerald-500{--tw-text-opacity: 1;color: rgb(16 185 129 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-field-color-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-field-helper{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-field-input{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-field-label{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-field-placeholder{--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-gray-400{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-gray-500{--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-gray-600{--tw-text-opacity: 1;color: rgb(75 85 99 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-gray-700{--tw-text-opacity: 1;color: rgb(55 65 81 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-gray-900{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-green-400{--tw-text-opacity: 1;color: rgb(74 222 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-green-600{--tw-text-opacity: 1;color: rgb(22 163 74 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-icon-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-icon-inverse{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-icon-on-color-disabled{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-icon-primary{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-icon-secondary{--tw-text-opacity: 1;color: rgb(75 85 99 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-inherit{color: inherit;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-link-primary{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-red-500{--tw-text-opacity: 1;color: rgb(239 68 68 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-red-600{--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-slate-400{--tw-text-opacity: 1;color: rgb(148 163 184 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-slate-500{--tw-text-opacity: 1;color: rgb(100 116 139 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-slate-600{--tw-text-opacity: 1;color: rgb(71 85 105 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-slate-800{--tw-text-opacity: 1;color: rgb(30 41 59 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-spectra{--tw-text-opacity: 1;color: rgb(97 4 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-error{--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-error-inverse{--tw-text-opacity: 1;color: rgb(248 113 113 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-info{--tw-text-opacity: 1;color: rgb(2 132 199 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-info-inverse{--tw-text-opacity: 1;color: rgb(56 189 248 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-success{--tw-text-opacity: 1;color: rgb(22 163 74 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-success-inverse{--tw-text-opacity: 1;color: rgb(74 222 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-warning{--tw-text-opacity: 1;color: rgb(234 179 8 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-support-warning-inverse{--tw-text-opacity: 1;color: rgb(253 224 71 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-inverse{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-on-color{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-primary{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-secondary{--tw-text-opacity: 1;color: rgb(75 85 99 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-text-tertiary{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-tooltip-background-dark{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-tooltip-background-light{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-violet-100{--tw-text-opacity: 1;color: rgb(237 233 254 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .text-white{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .underline{text-decoration-line: underline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .overline{text-decoration-line: overline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .line-through{text-decoration-line: line-through;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .no-underline{text-decoration-line: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .antialiased{-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .subpixel-antialiased{-webkit-font-smoothing: auto;-moz-osx-font-smoothing: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .placeholder-slate-400::placeholder{--tw-placeholder-opacity: 1;color: rgb(148 163 184 / var(--tw-placeholder-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .placeholder-text-tertiary::placeholder{--tw-placeholder-opacity: 1;color: rgb(156 163 175 / var(--tw-placeholder-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-0{opacity: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-100{opacity: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-25{opacity: 0.25;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-40{opacity: 0.4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-50{opacity: 0.5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-70{opacity: 0.7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .opacity-75{opacity: 0.75;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-2xl{--tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);--tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-md{--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-soft-shadow-2xl{--tw-shadow: 0px 24px 64px -12px rgba(149, 160, 178, 0.32);--tw-shadow-colored: 0px 24px 64px -12px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-soft-shadow-inner{--tw-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);--tw-shadow-colored: 0px 1px 1px 0px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-soft-shadow-lg{--tw-shadow: 0px 12px 32px -12px rgba(149, 160, 178, 0.24);--tw-shadow-colored: 0px 12px 32px -12px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-none{outline: 2px solid transparent;outline-offset: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline{outline-style: solid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-1{outline-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-border-disabled{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-border-strong{outline-color: #6B7280;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-border-subtle{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-button-danger{outline-color: #DC2626;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-button-danger-hover{outline-color: #B91C1C;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-button-disabled{outline-color: #F3F4F6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-button-primary{outline-color: #6005FF;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-button-secondary{outline-color: #1F2937;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-field-border{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-focus-error-border{outline-color: #FECACA;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .outline-transparent{outline-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-inset{--tw-ring-inset: inset;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-alert-border-danger{--tw-ring-opacity: 1;--tw-ring-color: rgb(254 202 202 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-alert-border-green{--tw-ring-opacity: 1;--tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-alert-border-info{--tw-ring-opacity: 1;--tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-alert-border-neutral{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-alert-border-warning{--tw-ring-opacity: 1;--tw-ring-color: rgb(254 240 138 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-background-inverse{--tw-ring-opacity: 1;--tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-border-interactive{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-border-subtle{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-border-transparent-subtle{--tw-ring-color: #37415114;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-brand-primary-600{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-tab-border{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-opacity-5{--tw-ring-opacity: 0.05;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ring-offset-0{--tw-ring-offset-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .blur{--tw-blur: blur(8px);filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .drop-shadow{--tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .grayscale{--tw-grayscale: grayscale(100%);filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .invert{--tw-invert: invert(100%);filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sepia{--tw-sepia: sepia(100%);filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .filter{filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-blur{--tw-backdrop-blur: blur(8px);-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-grayscale{--tw-backdrop-grayscale: grayscale(100%);-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-invert{--tw-backdrop-invert: invert(100%);-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-sepia{--tw-backdrop-sepia: sepia(100%);-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .backdrop-filter{-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition{transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition-\[box-shadow\2c color\2c background-color\]{transition-property: box-shadow,color,background-color;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition-all{transition-property: all;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition-colors{transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition-opacity{transition-property: opacity;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .transition-transform{transition-property: transform;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .duration-100{transition-duration: 100ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .duration-150{transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .duration-200{transition-duration: 200ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .duration-300{transition-duration: 300ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .duration-500{transition-duration: 500ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ease-in{transition-timing-function: cubic-bezier(0.4, 0, 1, 1);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ease-in-out{transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ease-linear{transition-timing-function: linear;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .ease-out{transition-timing-function: cubic-bezier(0, 0, 0.2, 1);}.\[grid-area\:1\/1\/2\/3\]{grid-area: 1/1/2/3;}:root{--accent-color: #2271b1;--accent-hv-color: #0a4b78;--background-light-color: #f0f0f1;--heading-color: #1d2327;--content-color: #3c434a;--link-color: #2271b1;--link-hv-color: #0a4b78;--metabox-background-color: #fff}.wp-admin{overflow-y:scroll}#wpbody-content>.notice:not(.uag-notice),#wpbody-content>.error{display:none !important}.uag-menu-page-wrapper,.uag-menu-page-wrapper *{box-sizing:border-box}.uag-menu-page-wrapper a:focus,.uag-menu-page-wrapper button:focus,.uag-menu-page-wrapper input:focus{box-shadow:none;outline:none}.spectra-admin__dialog{z-index:99999}#uag-menu-page .uag-accordion svg{fill:#e2e8f0}#uag-menu-page .uag-accordion:hover svg{fill:#475569}#uag-menu-page .uag-accordion:focus{outline:none;box-shadow:none}#uag-menu-page .uag-accordion:focus-visible svg{fill:#475569}.toplevel_page_spectra #wpcontent{padding-left:0}.uag-menu-page-wrapper .uag-settings-app{font-family:var(--heading-font-family);left:-20px;position:relative;width:calc(100% + 20px)}.uag-menu-page-wrapper .uag-settings-app .uag-normal-button-control .uag-button{display:inline-block;text-decoration:none;font-size:14px;margin:0;font-weight:var(--heading-weight-400);font-family:var(--heading-font-family);font-style:var(--heading-font-style);padding:10px 16px;cursor:pointer;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box;text-transform:capitalize}.uag-menu-page-wrapper .uag-settings-app h2{font-family:var(--heading-font-family);font-weight:var(--heading-weight-500);font-size:24px;margin-bottom:20px;margin-top:0;color:var(--content-color);line-height:32px}.uag-menu-page-wrapper .uag-settings-app h3{margin:0;margin-bottom:10px;color:var(--content-color);font-family:var(--heading-font-family);font-weight:var(--heading-weight-500);font-size:18px;font-style:var(--heading-font-style);line-height:1.3em}.uag-menu-page-wrapper .uag-settings-app .uag-field{border-radius:2px}.uag-menu-page-wrapper .uag-settings-app p{color:var(--content-color);font-family:var(--heading-font-family);font-weight:var(--heading-weight-400);font-size:14px;margin-top:0;margin-bottom:20px;line-height:1.55em;text-align:left}.uag-menu-page-wrapper .uag-settings-app .components-base-control__field{font-size:16px}.uag-user-info{background:var(--background-light-color);padding:35px 0;box-sizing:border-box;width:1200px;margin:0 auto;max-width:100%}.uag-user-info a[href=""]{display:none}.uag-button--primary:hover,.uag-button--primary:focus,.uag-button--primary:active{background:var(--accent-hv-color);color:var(--metabox-background-color)}.uag-button--primary{border-width:0;border:1px solid var(--accent-color);background:var(--accent-color);color:var(--background-light-color)}.uag-button--secondary{color:var(--accent-color);border:1px solid var(--accent-color);background:#fff;vertical-align:top}.uag-button--secondary:hover,.uag-button--secondary:focus,.uag-button--secondary:active{background:#f0f0f1;border-color:var(--accent-hv-color);color:var(--accent-hv-color)}.uag-control__status-yes,.uag-control__status-enabled{display:inline-flex;color:#639102;align-items:center;font-weight:var(--heading-weight-400);font-family:var(--heading-font-family);font-style:var(--heading-font-style)}.uag-control__status-yes img,.uag-control__status-enabled img{margin-left:5px;width:18px}.uag-control__status-no,.uag-control__status-disabled{color:red;font-weight:var(--heading-weight-400);font-family:var(--heading-font-family);font-style:var(--heading-font-style);display:inline-flex;align-items:center}.uag-control__status-no img,.uag-control__status-disabled img{display:none}#wpwrap{background-color:#f8fafc}#wpwrap .spectra-admin__input-field{color:#64748b;background-color:#fff;border:1px solid #e2e8f0;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.25rem}#wpwrap .spectra-admin__input-field--read-only{border:1px solid #cbd5e1 !important;background-color:#f1f5f9 !important}#wpwrap .spectra-admin__input-field--read-only:focus{outline:none}#wpwrap .spectra-admin__input-field:focus{outline:none;border-color:#94a3b8;box-shadow:none}#wpwrap .spectra-admin__input-field:focus+.spectra-admin__input-field--end-display{border-color:#94a3b8;box-shadow:none}#wpwrap .spectra-admin__dropdown{padding-right:2rem}#wpwrap .spectra-admin__dropdown:hover{color:#2c3338}#wpwrap .spectra-admin__block-label{box-sizing:content-box}#wpwrap .spectra-content-width-input-wrap>input{padding:.5rem 0 .5rem .75rem;border-radius:.25rem 0 0 .25rem;border-right-width:0}#wpwrap .spectra-content-width-input-wrap>span{padding:.5rem .75rem;font-size:1rem;line-height:1.25rem;color:#64748b;background-color:#fff;border-radius:0 .25rem .25rem 0;border:1px solid #e2e8f0}.uag-font-select-disabled{pointer-events:none;opacity:.4}.uag-menu-page-wrapper{font-family:Figtree,sans-serif}.uag-menu-page-wrapper p:not(.no-line-height){font-size:14px;line-height:22.4px}.uag-menu-page-wrapper h2{font-size:1.8rem}.uag-menu-page-wrapper h3{font-size:1.125rem}.spectra-video-container{position:relative;width:100%;padding-bottom:56.25%}.spectra-video-container .spectra-video{position:absolute;top:0;left:0;width:100%;height:100%;border:0}.spectra-icon-transition svg,.spectra-icon-transition path,.spectra-icon-transition rect,.spectra-icon-transition circle{transition-property:stroke;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.spectra-disabled-icon svg,.spectra-disabled-icon path,.spectra-disabled-icon rect,.spectra-disabled-icon circle{stroke:#94a3b8}.spectra-changelog-description strong{font-weight:500;font-size:.875rem;line-height:1.25rem;color:#1e293b}.spectra-changelog-description ul{margin-top:.25rem;margin-bottom:.75rem}.spectra-changelog-description ul:last-child{margin-top:0}.spectra-changelog-description li{font-weight:400;font-size:.75rem;line-height:1rem;color:#64748b}.spectra__scrollable{scrollbar-width:.5rem;scrollbar-color:#cbd5e1 #f1f5f9}.spectra__scrollable--blocks{scrollbar-width:.5rem;scrollbar-color:#cbd5e1 #f1f5f9}.spectra__scrollable--blocks::-webkit-scrollbar{width:.5rem;height:.5rem}.spectra__scrollable--blocks::-webkit-scrollbar-track{margin:1rem 0;border-radius:.25rem;background-color:#f1f5f9}.spectra__scrollable--blocks::-webkit-scrollbar-thumb{border-radius:.25rem;background-color:#cbd5e1}.spectra__scrollable--settings{overflow-y:scroll;scrollbar-width:.5rem;scrollbar-color:#cbd5e1 #f1f5f9}.spectra__scrollable--settings::-webkit-scrollbar{width:.5rem;height:.5rem}.spectra__scrollable--settings::-webkit-scrollbar-track{border-radius:0 .5rem .5rem 0;background-color:#f1f5f9;opacity:.4}.spectra__scrollable--settings::-webkit-scrollbar-thumb{border-radius:.25rem;background-color:#cbd5e1;opacity:.4}.spectra__settings>section:last-child:not(.not-last-child){border-bottom:none}.section-disabled{pointer-events:none;opacity:.4}.uag-dashboard-app .uag-radio-input{width:20px !important;height:20px !important;border:1px solid #cbd5e1;box-shadow:none !important}.uag-dashboard-app .uag-radio-input:checked{border-color:#6104ff;box-shadow:none !important;color:#6104ff}.uag-dashboard-app .uag-radio-input::before{display:none !important}.uag-dashboard-app .uag-radio-input:active,.uag-dashboard-app .uag-radio-input:focus{border-color:#6104ff;color:#6104ff}.uag-dashboard-app .uag-radio-input:hover{color:#6104ff}[dir=rtl] .uag-dashboard-app button.bg-spectra[aria-checked=false] span{right:0}[dir=rtl] .uag-dashboard-app button.bg-spectra[aria-checked=true] span{transform:translateX(20px)}.fse-trash-font{fill:#ef4444;cursor:pointer}.whats-new-rss-flyout-contents{font-family:Figtree,sans-serif;top:32px !important;height:calc(100% - 32px) !important}.uagb-remove-ring input[type=checkbox],.uagb-remove-ring a,.uagb-remove-ring{outline:none;--tw-ring-inset: auto;box-shadow:unset}.settings-input>input:hover{outline-color:#e5e7eb !important}.uagb-input>input{background-color:#f9fafb !important}.uagb-input>input:hover{outline-color:#e5e7eb !important}.uagb-radio-button{min-width:1rem;height:1rem;border:2px solid #9ca3af;border-radius:100%;background-color:#fff;position:relative}.uagb-radio-button::after{content:"";position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:50%;height:50%;background-color:#6005ff;border-radius:100%;transition:.3s;scale:0}.uagb-radio-input:checked+.uagb-radio-button{border:2px solid #6005ff}.uagb-radio-input:checked+.uagb-radio-button::after{scale:1}.size-2\.5{width:.625rem;height:.625rem}.size-3{width:.75rem;height:.75rem}.border-none>input{border:none !important}.uagb-settings-sidebar{height:100% !important;min-height:100vh;border:none !important;border-bottom-right-radius:12px}.uagb-outline-button{border:none !important;outline:1px solid #e5e7eb !important;--tw-ring-inset: auto;box-shadow:unset}.uagb-outline-button :focus{border:none !important;outline:1px solid #e5e7eb !important}.regenerate-btn>span{display:flex !important;align-items:center !important;gap:4px !important}.dashicons-wordpress-alt::before{display:block;width:16px !important;height:16px !important;font-size:16px !important}.dropdown-container>*{width:100% !important}@media(max-width: 1300px)and (min-width: 1024px){.unlock-pro-features-dropdown-container{flex-direction:column;gap:8px}.unlock-pro-features-dropdown-container>div{width:100% !important}}@media(max-width: 425px){.unlock-pro-features-dropdown-container{flex-direction:column;gap:8px}.unlock-pro-features-dropdown-container>div{width:100% !important}}.block-item:hover{outline:1px solid #ece5fd !important}.custom-border{border:1px solid #e5e7eb;transition:border-color .2s ease-in-out}.custom-border:hover{border-color:#6b7280}[data-floating-ui-focusable]{z-index:9999 !important}:root{--heading-font-family: "Figtree";--heading-font-style: normal;--heading-weight-500: 500;--heading-weight-400: 400;--heading-font-size: 18px;--heading-line-height: 24px}.shadow-focused:focus.shadow-sm{box-shadow:0 1px 2px 0 rgba(0,0,0,.05) !important}.shadow-focused:focus.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1) !important}.shadow-focused:focus.shadow-md{box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1) !important}.shadow-focused:focus.shadow-lg{box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1) !important}.shadow-focused:focus.shadow-xl{box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1) !important}.shadow-focused:focus.shadow-2xl{box-shadow:0 25px 50px -12px rgba(0,0,0,.25) !important}.shadow-focused:focus.shadow-inner{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05) !important}.spectra-progress-bar{width:100%;height:8px;border-radius:4px;overflow:hidden}.spectra-progress-bar__progress{height:100%;border-radius:4px}.switch-disabled>input{background-color:#9ca3af !important}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .file\:border-0::file-selector-button{border-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .file\:bg-transparent::file-selector-button{background-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .file\:text-text-tertiary::file-selector-button{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .placeholder\:text-field-placeholder::placeholder{--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .placeholder\:text-text-disabled::placeholder{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:absolute::before{content: var(--tw-content);position: absolute;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:left-2\/4::before{content: var(--tw-content);left: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:top-2\/4::before{content: var(--tw-content);top: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:hidden::before{content: var(--tw-content);display: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:h-10::before{content: var(--tw-content);height: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:w-10::before{content: var(--tw-content);width: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:-translate-x-2\/4::before{content: var(--tw-content);--tw-translate-x: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:-translate-y-2\/4::before{content: var(--tw-content);--tw-translate-y: -50%;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:rounded-full::before{content: var(--tw-content);border-radius: 9999px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:opacity-0::before{content: var(--tw-content);opacity: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:transition-opacity::before{content: var(--tw-content);transition-property: opacity;transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);transition-duration: 150ms;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .before\:content-\[\'\'\]::before{--tw-content: '';content: var(--tw-content);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:absolute::after{content: var(--tw-content);position: absolute;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:-top-0::after{content: var(--tw-content);top: -0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:-top-0\.5::after{content: var(--tw-content);top: -0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:left-5::after{content: var(--tw-content);left: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:ml-0::after{content: var(--tw-content);margin-left: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:ml-0\.5::after{content: var(--tw-content);margin-left: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:inline-block::after{content: var(--tw-content);display: inline-block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:rounded-full::after{content: var(--tw-content);border-radius: 9999px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:bg-background-important::after{content: var(--tw-content);--tw-bg-opacity: 1;background-color: rgb(220 38 38 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:text-field-required::after{content: var(--tw-content);--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:content-\[\'\'\]::after{--tw-content: '';content: var(--tw-content);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .after\:content-\[\'\*\'\]::after{--tw-content: '*';content: var(--tw-content);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .first\:rounded-bl:first-child{border-bottom-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .first\:rounded-tl:first-child{border-top-left-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .first\:border-0:first-child{border-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .first\:border-r:first-child{border-right-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .first\:border-border-subtle:first-child{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .last\:rounded-br:last-child{border-bottom-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .last\:rounded-tr:last-child{border-top-right-radius: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .last\:border-0:last-child{border-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:border-border-interactive:checked{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:border-toggle-on-border:checked{--tw-border-opacity: 1;border-color: rgb(96 165 250 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:bg-toggle-on:checked{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}.checked\:\[background-image\:none\]:checked{background-image: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:before\:hidden:checked::before{content: var(--tw-content);display: none;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:before\:content-\[\'\'\]:checked::before{--tw-content: '';content: var(--tw-content);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:z-10:focus-within{z-index: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:\!border-focus-border:focus-within{--tw-border-opacity: 1 !important;border-color: rgb(191 219 254 / var(--tw-border-opacity)) !important;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:border-focus-border:focus-within{--tw-border-opacity: 1;border-color: rgb(191 219 254 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:text-field-input:focus-within{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:outline-none:focus-within{outline: 2px solid transparent;outline-offset: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:ring-2:focus-within{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:ring-focus:focus-within{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:ring-offset-2:focus-within{--tw-ring-offset-width: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-border-disabled:hover{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-border-interactive:hover{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-border-strong:hover{--tw-border-opacity: 1;border-color: rgb(107 114 128 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-button-primary:hover{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-field-border-disabled:hover{--tw-border-opacity: 1;border-color: rgb(243 244 246 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:border-text-inverse:hover{--tw-border-opacity: 1;border-color: rgb(255 255 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-background-brand:hover{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-background-secondary:hover{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-disabled:hover{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-gray:hover{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-green:hover{--tw-bg-opacity: 1;background-color: rgb(220 252 231 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-red:hover{--tw-bg-opacity: 1;background-color: rgb(254 226 226 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-sky:hover{--tw-bg-opacity: 1;background-color: rgb(224 242 254 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-badge-hover-yellow:hover{--tw-bg-opacity: 1;background-color: rgb(254 249 195 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-button-danger-hover:hover{--tw-bg-opacity: 1;background-color: rgb(185 28 28 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-button-primary-hover:hover{--tw-bg-opacity: 1;background-color: rgb(81 4 214 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-button-secondary-hover:hover{--tw-bg-opacity: 1;background-color: rgb(55 65 81 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-button-tertiary-hover:hover{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-field-background-error:hover{--tw-bg-opacity: 1;background-color: rgb(254 242 242 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-gray-50:hover{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-red-600:hover{--tw-bg-opacity: 1;background-color: rgb(220 38 38 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-red-700:hover{--tw-bg-opacity: 1;background-color: rgb(185 28 28 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-spectra-hover:hover{--tw-bg-opacity: 1;background-color: rgb(83 0 224 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-toggle-off-hover:hover{--tw-bg-opacity: 1;background-color: rgb(209 213 219 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-transparent:hover{background-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-white:hover{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:bg-opacity-30:hover{--tw-bg-opacity: 0.3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-black:hover{--tw-text-opacity: 1;color: rgb(0 0 0 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-button-danger-secondary:hover{--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-button-primary-hover:hover{--tw-text-opacity: 1;color: rgb(81 4 214 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-emerald-500:hover{--tw-text-opacity: 1;color: rgb(16 185 129 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-field-label:hover{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-gray-500:hover{--tw-text-opacity: 1;color: rgb(107 114 128 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-link-primary-hover:hover{--tw-text-opacity: 1;color: rgb(29 78 216 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-red-500:hover{--tw-text-opacity: 1;color: rgb(239 68 68 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-spectra:hover{--tw-text-opacity: 1;color: rgb(97 4 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-spectra-hover:hover{--tw-text-opacity: 1;color: rgb(83 0 224 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-text-disabled:hover{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-text-inverse:hover{--tw-text-opacity: 1;color: rgb(255 255 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:text-text-primary:hover{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:underline:hover{text-decoration-line: underline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:shadow-hover:hover{--tw-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 0.12);--tw-shadow-colored: 0px 12px 24px -12px var(--tw-shadow-color);box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-border-disabled:hover{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-border-strong:hover{outline-color: #6B7280;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-border-subtle:hover{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-button-danger:hover{outline-color: #DC2626;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-button-danger-hover:hover{outline-color: #B91C1C;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-button-primary-hover:hover{outline-color: #5104D6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:outline-button-secondary-hover:hover{outline-color: #374151;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:ring-2:hover{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:ring-border-interactive:hover{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .hover\:before\:opacity-10:hover::before{content: var(--tw-content);opacity: 0.1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:hover\:border-toggle-on-hover:hover:checked{--tw-border-opacity: 1;border-color: rgb(59 130 246 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:hover\:bg-toggle-on:hover:checked{--tw-bg-opacity: 1;background-color: rgb(96 5 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:hover\:bg-toggle-on-hover:hover:checked{--tw-bg-opacity: 1;background-color: rgb(59 130 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-within\:hover\:border-focus-border:hover:focus-within{--tw-border-opacity: 1;border-color: rgb(191 219 254 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:rounded-sm:focus{border-radius: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:border-border-interactive:focus{--tw-border-opacity: 1;border-color: rgb(96 5 255 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:border-focus-border:focus{--tw-border-opacity: 1;border-color: rgb(191 219 254 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:border-focus-error-border:focus{--tw-border-opacity: 1;border-color: rgb(254 202 202 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:border-toggle-off-border:focus{--tw-border-opacity: 1;border-color: rgb(209 213 219 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:bg-background-secondary:focus{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:bg-button-tertiary-hover:focus{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:bg-gray-50:focus{--tw-bg-opacity: 1;background-color: rgb(249 250 251 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:bg-red-700:focus{--tw-bg-opacity: 1;background-color: rgb(185 28 28 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:bg-spectra-hover:focus{--tw-bg-opacity: 1;background-color: rgb(83 0 224 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:text-emerald-500:focus{--tw-text-opacity: 1;color: rgb(16 185 129 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:text-red-500:focus{--tw-text-opacity: 1;color: rgb(239 68 68 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:text-spectra:focus{--tw-text-opacity: 1;color: rgb(97 4 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:text-spectra-hover:focus{--tw-text-opacity: 1;color: rgb(83 0 224 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:shadow-none:focus{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline-none:focus{outline: 2px solid transparent;outline-offset: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline:focus{outline-style: solid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline-1:focus{outline-width: 1px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline-border-subtle:focus{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline-focus-border:focus{outline-color: #BFDBFE;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:outline-focus-error-border:focus{outline-color: #FECACA;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-0:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-1:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-border-interactive:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-field-color-error:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-focus:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-indigo-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-toggle-on:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(96 5 255 / var(--tw-ring-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-transparent:focus{--tw-ring-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-offset-0:focus{--tw-ring-offset-width: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-offset-2:focus{--tw-ring-offset-width: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus\:ring-offset-4:focus{--tw-ring-offset-width: 4px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:focus\:border-toggle-on-border:focus:checked{--tw-border-opacity: 1;border-color: rgb(96 165 250 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-visible\:text-spectra-hover:focus-visible{--tw-text-opacity: 1;color: rgb(83 0 224 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .focus-visible\:outline-none:focus-visible{outline: 2px solid transparent;outline-offset: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:text-button-primary:active{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:text-emerald-500:active{--tw-text-opacity: 1;color: rgb(16 185 129 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:text-red-500:active{--tw-text-opacity: 1;color: rgb(239 68 68 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:text-spectra:active{--tw-text-opacity: 1;color: rgb(97 4 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:text-spectra-hover:active{--tw-text-opacity: 1;color: rgb(83 0 224 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .active\:outline-none:active{outline: 2px solid transparent;outline-offset: 2px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:cursor-not-allowed:disabled{cursor: not-allowed;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:border-border-disabled:disabled{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:border-field-border-disabled:disabled{--tw-border-opacity: 1;border-color: rgb(243 244 246 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:border-transparent:disabled{border-color: transparent;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:bg-button-disabled:disabled{--tw-bg-opacity: 1;background-color: rgb(243 244 246 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:bg-button-tertiary:disabled{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:bg-white:disabled{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:text-text-disabled:disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:outline-border-disabled:disabled{outline-color: #E5E7EB;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:outline-button-disabled:disabled{outline-color: #F3F4F6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .disabled\:outline-field-border-disabled:disabled{outline-color: #F3F4F6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:disabled\:border-border-disabled:disabled:checked{--tw-border-opacity: 1;border-color: rgb(229 231 235 / var(--tw-border-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .checked\:disabled\:bg-white:disabled:checked{--tw-bg-opacity: 1;background-color: rgb(255 255 255 / var(--tw-bg-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:focus-within .group-focus-within\:text-icon-primary{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:hover .group-hover\:text-field-input{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:hover .group-hover\:text-icon-primary{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:hover .group-hover\:text-text-primary{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:disabled .group-disabled\:text-field-color-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .group:disabled .group-disabled\:text-icon-disabled{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:checked ~ .peer-checked\:translate-x-3{--tw-translate-x: 0.75rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:checked ~ .peer-checked\:translate-x-3\.5{--tw-translate-x: 0.875rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:checked ~ .peer-checked\:translate-x-5{--tw-translate-x: 1.25rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:checked ~ .peer-checked\:opacity-100{opacity: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:disabled ~ .peer-disabled\:cursor-not-allowed{cursor: not-allowed;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .peer:disabled ~ .peer-disabled\:text-border-disabled{--tw-text-opacity: 1;color: rgb(229 231 235 / var(--tw-text-opacity));}@media (min-width: 640px){:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:mx-0{margin-left: 0px;margin-right: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:my-8{margin-top: 2rem;margin-bottom: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:mb-1{margin-bottom: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:ml-20{margin-left: 5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:ml-4{margin-left: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:mr-3{margin-right: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:mt-0{margin-top: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:block{display: block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:inline-block{display: inline-block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:flex{display: flex;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:h-10{height: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:h-120{height: 30rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:h-16{height: 4rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:h-\[64px\]{height: 64px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:h-screen{height: 100vh;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-1\/2{width: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-10{width: 2.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-16{width: 4rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-\[500px\]{width: 500px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-auto{width: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:w-full{width: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:max-w-lg{max-width: 32rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:translate-x-0{--tw-translate-x: 0px;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:translate-x-2{--tw-translate-x: 0.5rem;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:translate-y-0{--tw-translate-y: 0px;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:scale-95{--tw-scale-x: .95;--tw-scale-y: .95;transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:flex-row{flex-direction: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:items-start{align-items: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:items-end{align-items: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:items-center{align-items: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:justify-start{justify-content: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:gap-0{gap: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:gap-1{gap: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:gap-24{gap: 6rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:p-0{padding: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:p-1{padding: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:p-3{padding: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:p-6{padding: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:px-1{padding-left: 0.25rem;padding-right: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:pt-4{padding-top: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:text-left{text-align: left;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:align-middle{vertical-align: middle;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .sm\:text-sm{font-size: 0.875rem;line-height: 1.25rem;}}@media (min-width: 768px){:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:bottom-0{bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-1{order: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-10{order: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-11{order: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-12{order: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-2{order: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-3{order: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-4{order: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-5{order: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-6{order: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-7{order: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-8{order: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-9{order: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-first{order: -9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-last{order: 9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:order-none{order: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-1{grid-column: span 1 / span 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-10{grid-column: span 10 / span 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-11{grid-column: span 11 / span 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-12{grid-column: span 12 / span 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-2{grid-column: span 2 / span 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-3{grid-column: span 3 / span 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-4{grid-column: span 4 / span 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-5{grid-column: span 5 / span 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-6{grid-column: span 6 / span 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-7{grid-column: span 7 / span 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-8{grid-column: span 8 / span 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-span-9{grid-column: span 9 / span 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-1{grid-column-start: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-10{grid-column-start: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-11{grid-column-start: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-12{grid-column-start: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-2{grid-column-start: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-3{grid-column-start: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-4{grid-column-start: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-5{grid-column-start: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-6{grid-column-start: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-7{grid-column-start: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-8{grid-column-start: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:col-start-9{grid-column-start: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/10{width: 10%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/11{width: 9.0909091%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/12{width: 8.3333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/2{width: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/3{width: 33.333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/4{width: 25%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/5{width: 20%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/6{width: 16.666667%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/7{width: 14.2857143%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/8{width: 12.5%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-1\/9{width: 11.1111111%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:w-full{width: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:shrink{flex-shrink: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:shrink-0{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grow{flex-grow: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grow-0{flex-grow: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-flow-row{grid-auto-flow: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-flow-col{grid-auto-flow: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-flow-row-dense{grid-auto-flow: row dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-flow-col-dense{grid-auto-flow: column dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-10{grid-template-columns: repeat(10, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-11{grid-template-columns: repeat(11, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-3{grid-template-columns: repeat(3, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-4{grid-template-columns: repeat(4, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-5{grid-template-columns: repeat(5, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-6{grid-template-columns: repeat(6, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-7{grid-template-columns: repeat(7, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-8{grid-template-columns: repeat(8, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:grid-cols-9{grid-template-columns: repeat(9, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-row{flex-direction: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-row-reverse{flex-direction: row-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-col{flex-direction: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-col-reverse{flex-direction: column-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-wrap{flex-wrap: wrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-wrap-reverse{flex-wrap: wrap-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:flex-nowrap{flex-wrap: nowrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:items-start{align-items: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:items-end{align-items: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:items-center{align-items: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:items-baseline{align-items: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:items-stretch{align-items: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-start{justify-content: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-end{justify-content: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-center{justify-content: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-between{justify-content: space-between;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-around{justify-content: space-around;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-evenly{justify-content: space-evenly;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-2{gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-32{gap: 8rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-4{gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-5{gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-6{gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-8{gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-x-2{column-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-x-4{column-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-x-5{column-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-x-6{column-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-x-8{column-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-y-2{row-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-y-4{row-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-y-5{row-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-y-6{row-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:gap-y-8{row-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:space-x-1 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse: 0;margin-right: calc(0.25rem * var(--tw-space-x-reverse));margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:self-start{align-self: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:self-end{align-self: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:self-center{align-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:self-stretch{align-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:self-baseline{align-self: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-self-auto{justify-self: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-self-start{justify-self: start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-self-end{justify-self: end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-self-center{justify-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:justify-self-stretch{justify-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:p-8{padding: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:px-2{padding-left: 0.5rem;padding-right: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .md\:pr-\[10px\]{padding-right: 10px;}}@media (min-width: 1024px){:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-1{order: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-10{order: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-11{order: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-12{order: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-2{order: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-3{order: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-4{order: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-5{order: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-6{order: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-7{order: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-8{order: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-9{order: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-first{order: -9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-last{order: 9999;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:order-none{order: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-1{grid-column: span 1 / span 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-10{grid-column: span 10 / span 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-11{grid-column: span 11 / span 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-12{grid-column: span 12 / span 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-2{grid-column: span 2 / span 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-3{grid-column: span 3 / span 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-4{grid-column: span 4 / span 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-5{grid-column: span 5 / span 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-6{grid-column: span 6 / span 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-7{grid-column: span 7 / span 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-8{grid-column: span 8 / span 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-span-9{grid-column: span 9 / span 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-1{grid-column-start: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-10{grid-column-start: 10;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-11{grid-column-start: 11;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-12{grid-column-start: 12;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-2{grid-column-start: 2;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-3{grid-column-start: 3;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-4{grid-column-start: 4;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-5{grid-column-start: 5;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-6{grid-column-start: 6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-7{grid-column-start: 7;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-8{grid-column-start: 8;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:col-start-9{grid-column-start: 9;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:mb-0{margin-bottom: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:block{display: block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid{display: grid;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:h-188{height: 47rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/10{width: 10%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/11{width: 9.0909091%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/12{width: 8.3333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/2{width: 50%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/3{width: 33.333333%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/4{width: 25%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/5{width: 20%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/6{width: 16.666667%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/7{width: 14.2857143%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/8{width: 12.5%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-1\/9{width: 11.1111111%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-64{width: 16rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-\[120px\]{width: 120px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-\[150px\]{width: 150px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-\[47\.5rem\]{width: 47.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:w-full{width: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:max-w-\[360px\]{max-width: 360px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:max-w-\[480px\]{max-width: 480px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:shrink{flex-shrink: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:shrink-0{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grow{flex-grow: 1;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grow-0{flex-grow: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-flow-row{grid-auto-flow: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-flow-col{grid-auto-flow: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-flow-row-dense{grid-auto-flow: row dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-flow-col-dense{grid-auto-flow: column dense;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-10{grid-template-columns: repeat(10, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-11{grid-template-columns: repeat(11, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-12{grid-template-columns: repeat(12, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-2{grid-template-columns: repeat(2, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-3{grid-template-columns: repeat(3, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-4{grid-template-columns: repeat(4, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-5{grid-template-columns: repeat(5, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-6{grid-template-columns: repeat(6, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-7{grid-template-columns: repeat(7, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-8{grid-template-columns: repeat(8, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-9{grid-template-columns: repeat(9, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:grid-cols-\[16rem_1fr\]{grid-template-columns: 16rem 1fr;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-row{flex-direction: row;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-row-reverse{flex-direction: row-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-col{flex-direction: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-col-reverse{flex-direction: column-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-wrap{flex-wrap: wrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-wrap-reverse{flex-wrap: wrap-reverse;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:flex-nowrap{flex-wrap: nowrap;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:items-start{align-items: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:items-end{align-items: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:items-center{align-items: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:items-baseline{align-items: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:items-stretch{align-items: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-start{justify-content: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-end{justify-content: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-center{justify-content: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-between{justify-content: space-between;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-around{justify-content: space-around;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-evenly{justify-content: space-evenly;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-2{gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-36{gap: 9rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-4{gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-5{gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-6{gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-8{gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-x-2{column-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-x-4{column-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-x-5{column-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-x-6{column-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-x-8{column-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-y-2{row-gap: 0.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-y-4{row-gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-y-5{row-gap: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-y-6{row-gap: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:gap-y-8{row-gap: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:self-start{align-self: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:self-end{align-self: flex-end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:self-center{align-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:self-stretch{align-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:self-baseline{align-self: baseline;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-self-auto{justify-self: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-self-start{justify-self: start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-self-end{justify-self: end;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-self-center{justify-self: center;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:justify-self-stretch{justify-self: stretch;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:px-12{padding-left: 3rem;padding-right: 3rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:px-4{padding-left: 1rem;padding-right: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:px-6{padding-left: 1.5rem;padding-right: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:pl-8{padding-left: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .lg\:pr-8{padding-right: 2rem;}}@media (min-width: 1024px) and (max-width: 1400px){:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .custom\:grid-cols-1{grid-template-columns: repeat(1, minmax(0, 1fr));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .custom\:flex-col{flex-direction: column;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .custom\:items-start{align-items: flex-start;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .custom\:gap-4{gap: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .custom\:pt-0{padding-top: 0px;}}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\:hover\:has\(\:disabled\)\]\:outline-field-border-disabled:hover:has(:disabled){outline-color: #F3F4F6;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\:hover\:not\(\:focus\)\:not\(\:disabled\)\]\:outline-border-strong:hover:not(:focus):not(:disabled){outline-color: #6B7280;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\:not\(svg\)\]\:m-1>*:not(svg){margin: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\:not\(svg\)\]\:mx-1>*:not(svg){margin-left: 0.25rem;margin-right: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\:not\(svg\)\]\:my-0\.5>*:not(svg){margin-top: 0.125rem;margin-bottom: 0.125rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:box-border>*{box-sizing: border-box;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-2xl>*{font-size: 1.5rem;line-height: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-base>*{font-size: 1rem;line-height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-lg>*{font-size: 1.125rem;line-height: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-sm>*{font-size: 0.875rem;line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-xl>*{font-size: 1.25rem;line-height: 1.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-xs>*{font-size: 0.75rem;line-height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-field-color-disabled>*{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-field-helper>*{--tw-text-opacity: 1;color: rgb(156 163 175 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-field-label>*{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>\*\]\:text-support-error>*{--tw-text-opacity: 1;color: rgb(220 38 38 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>li\]\:pointer-events-auto>li{pointer-events: auto;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>p\]\:m-0>p{margin: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>p\]\:w-full>p{width: 100%;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>span\:first-child\]\:shrink-0>span:first-child{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:m-1>svg{margin: 0.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:m-1\.5>svg{margin: 0.375rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:block>svg{display: block;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:h-3>svg{height: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:h-4>svg{height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:h-5>svg{height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:h-6>svg{height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:h-8>svg{height: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:w-3>svg{width: 0.75rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:w-4>svg{width: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:w-5>svg{width: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:w-6>svg{width: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:w-8>svg{width: 2rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:shrink-0>svg{flex-shrink: 0;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&\>svg\]\:text-icon-interactive>svg{--tw-text-opacity: 1;color: rgb(96 5 255 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\*\]\:box-border *{box-sizing: border-box;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\*\]\:text-sm *{font-size: 0.875rem;line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\*\]\:leading-5 *{line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.editor-content\>p\]\:text-base .editor-content>p{font-size: 1rem;line-height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.editor-content\>p\]\:text-sm .editor-content>p{font-size: 0.875rem;line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.editor-content\>p\]\:text-xs .editor-content>p{font-size: 0.75rem;line-height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.editor-content\>p\]\:font-normal .editor-content>p{font-weight: 400;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.pointer-events-none\]\:text-base .pointer-events-none{font-size: 1rem;line-height: 1.5rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.pointer-events-none\]\:text-sm .pointer-events-none{font-size: 0.875rem;line-height: 1.25rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.pointer-events-none\]\:text-xs .pointer-events-none{font-size: 0.75rem;line-height: 1rem;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_\.pointer-events-none\]\:font-normal .pointer-events-none{font-weight: 400;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_h2\]\:text-text-primary h2{--tw-text-opacity: 1;color: rgb(17 24 39 / var(--tw-text-opacity));}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_p\]\:m-0 p{margin: 0px;}:is(.uag-dashboard-app,.toplevel_page_spectra,#spectra-pro-banner,.components-modal__frame) .\[\&_p\]\:text-badge-color-disabled p{--tw-text-opacity: 1;color: rgb(209 213 219 / var(--tw-text-opacity));}
/**
 * === Whats New RSS ===
 *
 * Version: 1.0.6
 * Generated on: 25th June, 2024
 * Documentation: https://github.com/brainstormforce/whats-new-rss/blob/master/README.md
 */


 .whats-new-rss-is-active {
	overflow: hidden; }

  .whats-new-rss-trigger-button {
	display: flex;
	align-items: center;
	position: relative;
	width: auto;
	padding: 5px;
	cursor: pointer; }
	.whats-new-rss-trigger-button .whats-new-rss-notification-badge {
	  position: absolute;
	  top: -8px;
	  right: -5px;
	  width: 20px;
	  font-size: 10px;
	  line-height: 20px;
	  text-align: center;
	  border-radius: 10px;
	  color: #fff;
	  background: red;
	  transition: transform 0.2s ease-in-out; }
	  .whats-new-rss-trigger-button .whats-new-rss-notification-badge.is-multi-feed {
		top: -2px;
		right: -2px;
		font-size: 0px;
		width: 10px;
		height: 10px; }
	  .whats-new-rss-trigger-button .whats-new-rss-notification-badge.hide {
		display: none; }
	.whats-new-rss-trigger-button:hover .whats-new-rss-notification-badge {
	  transform: scale(1.2); }

  .whats-new-rss-flyout {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 99999;
	transition: visibility 0.3s ease-in-out;
	font-family: Arial, Helvetica, sans-serif; }
	.whats-new-rss-flyout.hidden,
	.whats-new-rss-flyout .lightbox-trigger {
	  display: none; }
	.whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon {
	  display: block;
	  margin: auto; }
	  .whats-new-rss-flyout.is-loading .whats-new-rss-flyout-inner-header__loading-icon svg {
		display: block;
		background: transparent;
		width: 25px;
		height: 25px; }
	.whats-new-rss-flyout .whats-new-rss-flyout-contents {
	  position: fixed;
	  display: flex;
	  right: 0;
	  width: 30%;
	  height: 100%;
	  flex-direction: column;
	  background-color: #ffffff;
	  transition: transform 0.3s ease-in-out;
	  z-index: 9999; }
	  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 16px 20px 16px 24px;
		border-bottom: 1px solid #ccc; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header button {
		  border: none;
		  background: none;
		  font-size: 30px;
		  cursor: pointer;
		  color: #94A3B8;
		  padding: 0;
		  margin: 0;
		  box-shadow: none; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper {
		  display: flex;
		  gap: 10px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-header .whats-new-rss-flyout-inner-header__title-icon-wrapper h3 {
			margin: 0;
			padding: 0;
			color: #0F172A;
			font-weight: 600;
			font-size: 16px;
			line-height: 24px; }
	  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav {
		display: flex;
		padding: 0 30px;
		border-bottom: 1px solid #ccc;
		gap: 2em;
		overflow: auto;
		white-space: nowrap; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button {
		  position: relative;
		  background: none;
		  color: inherit;
		  padding: 15px 0;
		  border-bottom: 2px solid transparent; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:hover, .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button:focus {
			border-color: inherit; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button.selected {
			border-color: #5d5d5d; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-multi-feed-nav button .new-notification-count {
			position: absolute;
			top: 0;
			right: -10px;
			width: 20px;
			font-size: 10px;
			line-height: 20px;
			text-align: center;
			border-radius: 10px;
			color: #fff;
			background: red; }
	  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content {
		flex: 1;
		overflow-y: auto; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .skeleton-container {
		  margin: 30px; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item {
		  border-bottom: 1px solid #d8dfe9;
		  padding: 30px 24px;
		  color: #475569;
		  font-weight: 400;
		  font-size: 14px;
		  line-height: 20px;
		  display: flex;
		  flex-direction: column;
		  gap: 13px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item > * {
			margin: 0; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.skeleton-row {
			height: 25vh;
			margin: 40px 0;
			background: linear-gradient(90deg, #eee 25%, #ddd 50%, #eee 75%);
			background-size: 200% 100%;
			animation: shimmer 1.5s infinite; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post {
			position: relative; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item.rss-new-post .new-post-badge {
			  background: #ff3d3d;
			  border-radius: 5px;
			  position: absolute;
			  right: 45px;
			  padding: 0 5px;
			  color: #fff; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header {
			display: flex;
			flex-direction: column;
			gap: 15px;
			padding: 0 0 8px 0; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header p {
			  color: #94A3B8;
			  margin: 0;
			  padding: 0;
			  font-weight: 600;
			  font-size: 14px;
			  line-height: 16px; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item .rss-content-header h2 {
			  margin: 0;
			  color: #0F172A;
			  font-weight: 700;
			  line-height: 28px;
			  font-size: 20px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h2 {
			font-weight: 700;
			font-size: 18px;
			line-height: 24px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h3 {
			font-weight: 700;
			font-size: 16px;
			line-height: 22px;
			margin-top: 12px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h4 {
			font-weight: 700;
			font-size: 15px;
			line-height: 20px;
			margin-top: 12px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h5 {
			font-weight: 700;
			font-size: 14px;
			line-height: 18px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item h6 {
			font-weight: 700;
			font-size: 13px;
			line-height: 16px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p {
			padding: 0;
			font-size: 14px; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item p:last-child {
			  margin-bottom: 0;
			  padding-bottom: 0; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item a {
			color: #1170FF;
			text-decoration: none; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure {
			margin: 10px 0; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure.wp-block-embed.is-type-video {
			  position: relative;
			  width: 100%;
			  height: 0;
			  padding-bottom: 56.25%; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item figure iframe {
			  position: absolute;
			  top: 0;
			  left: 0;
			  width: 100%;
			  height: 100%;
			  border: 0; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item img {
			box-sizing: border-box;
			height: auto;
			max-width: 100%;
			vertical-align: bottom; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item video {
			vertical-align: middle;
			width: 100%; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item strong {
			font-weight: 600; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul,
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol {
			padding-inline-start: 20px; }
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul li,
			.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol li {
			  margin-bottom: 5px; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ul {
			list-style-type: disc; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-flyout-inner-content .whats-new-rss-flyout-inner-content-item ol {
			list-style-type: decimal; }
	  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details {
		line-height: 20px;
		font-size: 0.9em;
		margin: 10px 0;
		background: #f9fafb; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary {
		  display: flex;
		  justify-content: space-between;
		  cursor: pointer;
		  padding: 20px 15px;
		  height: 1em;
		  line-height: 20px;
		  font-weight: 800; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary::after {
			content: '⌃';
			font-size: 20px;
			transform: rotateX(180deg);
			font-weight: 800; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-more {
			display: block; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details summary .text-see-less {
			display: none; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary {
		  border-bottom: 1px solid #e2e8f0; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary::after {
			transform: rotateX(45deg); }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-more {
			display: none; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details[open] summary .text-see-less {
			display: block; }
		.whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item {
		  position: relative;
		  padding: 1em;
		  border-bottom: 1px solid #e2e8f0; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-header {
			display: flex;
			justify-content: space-between; }
		  .whats-new-rss-flyout .whats-new-rss-flyout-contents .whats-new-rss-sub-version-details .sub-version-item .sub-version-content {
			margin-top: 1em; }
	.whats-new-rss-flyout .whats-new-rss-flyout-overlay {
	  position: fixed;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  background: rgba(0, 0, 0, 0.5);
	  transition: all 0.3s ease-in-out; }
	.whats-new-rss-flyout.closed {
	  visibility: hidden; }
	  .whats-new-rss-flyout.closed .whats-new-rss-flyout-overlay {
		opacity: 0;
		visibility: hidden; }
	  .whats-new-rss-flyout.closed .whats-new-rss-flyout-contents {
		transform: translateX(100%); }
	.whats-new-rss-flyout .whats-new-rss-flyout-inner-header__loading-icon {
	  display: none; }

  @keyframes shimmer {
	0% {
	  background-position: -200% 0; }
	100% {
	  background-position: 200% 0; } }

  @media screen and (max-width: 1024px) {
	.whats-new-rss-flyout .whats-new-rss-flyout-contents {
	  width: 40%; } }

  @media screen and (max-width: 768px) {
	.whats-new-rss-flyout .whats-new-rss-flyout-contents {
	  width: 85%; } }

.uagb-remove-ring input[type=checkbox],.uagb-remove-ring a,.uagb-remove-ring{outline:none !important;--tw-ring-inset: auto !important;box-shadow:unset !important}.border-none>input{border:none !important}
p{margin:0 !important}hr{margin:4px 0}
PK�][�;<?$�W$�WFultimate-addons-for-gutenberg/admin-core/assets/build/dashboard-app.jsnu�[���!function(){var e,t,n={4086:function(e){"undefined"!=typeof self&&self,e.exports=function(){"use strict";var e={316:function(e,t,n){n.d(t,{A:function(){return a}});var r=/^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|abbr|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|disableRemotePlayback|download|draggable|encType|enterKeyHint|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|translate|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|incremental|fallback|inert|itemProp|itemScope|itemType|itemID|itemRef|on|option|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/,a=function(e){var t=Object.create(null);return function(n){return void 0===t[n]&&(t[n]=e(n)),t[n]}}((function(e){return r.test(e)||111===e.charCodeAt(0)&&110===e.charCodeAt(1)&&e.charCodeAt(2)<91}))},20:function(e,t,n){var r=n(609),a=Symbol.for("react.element"),i=Symbol.for("react.fragment"),l=Object.prototype.hasOwnProperty,s=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,o={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,i={},u=null,f=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(f=t.ref),t)l.call(t,r)&&!o.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===i[r]&&(i[r]=t[r]);return{$$typeof:a,type:e,key:u,ref:f,props:i,_owner:s.current}}t.Fragment=i,t.jsx=u,t.jsxs=u},848:function(e,t,n){e.exports=n(20)},609:function(e){e.exports=window.React}},t={};function n(r){var a=t[r];if(void 0!==a)return a.exports;var i=t[r]={exports:{}};return e[r](i,i.exports,n),i.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};n.r(r),n.d(r,{Alert:function(){return LA},Avatar:function(){return qa},Badge:function(){return Ia},Breadcrumb:function(){return tx},Button:function(){return fe},ButtonGroup:function(){return mi},Checkbox:function(){return Xe},Container:function(){return MA},DatePicker:function(){return gX},Dialog:function(){return Dx},Drawer:function(){return aO},DropdownMenu:function(){return Xw},EditorInput:function(){return sh},Input:function(){return ni},Label:function(){return li},Loader:function(){return ui},Menu:function(){return jh},Pagination:function(){return XO},ProgressBar:function(){return fi},ProgressSteps:function(){return Ph},RadioButton:function(){return Wa},SearchBox:function(){return fw},Select:function(){return gv},Sidebar:function(){return Qh},Skeleton:function(){return zh},Switch:function(){return Pe},Tabs:function(){return Vd},TextArea:function(){return Ja},Title:function(){return si},Toaster:function(){return _v},Tooltip:function(){return Ha},Topbar:function(){return Lx},toast:function(){return Tv}});var a={};n.r(a),n.d(a,{Button:function(){return jO},CaptionLabel:function(){return NO},Chevron:function(){return TO},Day:function(){return BO},DayButton:function(){return MO},Dropdown:function(){return LO},DropdownNav:function(){return CO},Footer:function(){return EO},Month:function(){return ZO},MonthCaption:function(){return GO},MonthGrid:function(){return kO},Months:function(){return WO},MonthsDropdown:function(){return IO},Nav:function(){return RO},NextMonthButton:function(){return FO},Option:function(){return SO},PreviousMonthButton:function(){return VO},Root:function(){return JO},Select:function(){return qO},Week:function(){return UO},WeekNumber:function(){return $O},WeekNumberHeader:function(){return eD},Weekday:function(){return KO},Weekdays:function(){return _O},Weeks:function(){return tD},YearsDropdown:function(){return nD}});var i={};n.r(i),n.d(i,{formatCaption:function(){return gH},formatDay:function(){return PH},formatMonthCaption:function(){return mH},formatMonthDropdown:function(){return bH},formatWeekNumber:function(){return pH},formatWeekNumberHeader:function(){return zH},formatWeekdayName:function(){return yH},formatYearCaption:function(){return xH},formatYearDropdown:function(){return hH}});var l={};n.r(l),n.d(l,{labelCaption:function(){return OH},labelDay:function(){return XH},labelDayButton:function(){return HH},labelGrid:function(){return wH},labelGridcell:function(){return DH},labelMonthDropdown:function(){return NH},labelNav:function(){return jH},labelNext:function(){return TH},labelPrevious:function(){return BH},labelWeekNumber:function(){return LH},labelWeekNumberHeader:function(){return CH},labelWeekday:function(){return MH},labelYearDropdown:function(){return EH}});var s=n(609),o=n.n(s);const u=e=>{const t=v(e),{conflictingClassGroups:n,conflictingClassGroupModifiers:r}=e;return{getClassGroupId:e=>{const n=e.split("-");return""===n[0]&&1!==n.length&&n.shift(),f(n,t)||d(e)},getConflictingClassGroupIds:(e,t)=>{const a=n[e]||[];return t&&r[e]?[...a,...r[e]]:a}}},f=(e,t)=>{if(0===e.length)return t.classGroupId;const n=e[0],r=t.nextPart.get(n),a=r?f(e.slice(1),r):void 0;if(a)return a;if(0===t.validators.length)return;const i=e.join("-");return t.validators.find((({validator:e})=>e(i)))?.classGroupId},c=/^\[(.+)\]$/,d=e=>{if(c.test(e)){const t=c.exec(e)[1],n=t?.substring(0,t.indexOf(":"));if(n)return"arbitrary.."+n}},v=e=>{const{theme:t,prefix:n}=e,r={nextPart:new Map,validators:[]};return P(Object.entries(e.classGroups),n).forEach((([e,n])=>{A(n,r,e,t)})),r},A=(e,t,n,r)=>{e.forEach((e=>{if("string"!=typeof e){if("function"==typeof e)return m(e)?void A(e(r),t,n,r):void t.validators.push({validator:e,classGroupId:n});Object.entries(e).forEach((([e,a])=>{A(a,g(t,e),n,r)}))}else(""===e?t:g(t,e)).classGroupId=n}))},g=(e,t)=>{let n=e;return t.split("-").forEach((e=>{n.nextPart.has(e)||n.nextPart.set(e,{nextPart:new Map,validators:[]}),n=n.nextPart.get(e)})),n},m=e=>e.isThemeGetter,P=(e,t)=>t?e.map((([e,n])=>[e,n.map((e=>"string"==typeof e?t+e:"object"==typeof e?Object.fromEntries(Object.entries(e).map((([e,n])=>[t+e,n]))):e))])):e,b=e=>{if(e<1)return{get:()=>{},set:()=>{}};let t=0,n=new Map,r=new Map;const a=(a,i)=>{n.set(a,i),t++,t>e&&(t=0,r=n,n=new Map)};return{get(e){let t=n.get(e);return void 0!==t?t:void 0!==(t=r.get(e))?(a(e,t),t):void 0},set(e,t){n.has(e)?n.set(e,t):a(e,t)}}},p=e=>{const{separator:t,experimentalParseClassName:n}=e,r=1===t.length,a=t[0],i=t.length,l=e=>{const n=[];let l,s=0,o=0;for(let u=0;u<e.length;u++){let f=e[u];if(0===s){if(f===a&&(r||e.slice(u,u+i)===t)){n.push(e.slice(o,u)),o=u+i;continue}if("/"===f){l=u;continue}}"["===f?s++:"]"===f&&s--}const u=0===n.length?e:e.substring(o),f=u.startsWith("!");return{modifiers:n,hasImportantModifier:f,baseClassName:f?u.substring(1):u,maybePostfixModifierPosition:l&&l>o?l-o:void 0}};return n?e=>n({className:e,parseClassName:l}):l},z=e=>{if(e.length<=1)return e;const t=[];let n=[];return e.forEach((e=>{"["===e[0]?(t.push(...n.sort(),e),n=[]):n.push(e)})),t.push(...n.sort()),t},y=/\s+/;function h(){let e,t,n=0,r="";for(;n<arguments.length;)(e=arguments[n++])&&(t=x(e))&&(r&&(r+=" "),r+=t);return r}const x=e=>{if("string"==typeof e)return e;let t,n="";for(let r=0;r<e.length;r++)e[r]&&(t=x(e[r]))&&(n&&(n+=" "),n+=t);return n};const w=e=>{const t=t=>t[e]||[];return t.isThemeGetter=!0,t},O=/^\[(?:([a-z-]+):)?(.+)\]$/i,D=/^\d+\/\d+$/,H=new Set(["px","full","screen"]),X=/^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/,j=/\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/,N=/^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/,T=/^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/,B=/^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/,M=e=>C(e)||H.has(e)||D.test(e),L=e=>J(e,"length",q),C=e=>Boolean(e)&&!Number.isNaN(Number(e)),E=e=>J(e,"number",C),Z=e=>Boolean(e)&&Number.isInteger(Number(e)),G=e=>e.endsWith("%")&&C(e.slice(0,-1)),k=e=>O.test(e),W=e=>X.test(e),Q=new Set(["length","size","percentage"]),Y=e=>J(e,Q,U),I=e=>J(e,"position",U),R=new Set(["image","url"]),F=e=>J(e,R,_),S=e=>J(e,"",K),V=()=>!0,J=(e,t,n)=>{const r=O.exec(e);return!!r&&(r[1]?"string"==typeof t?r[1]===t:t.has(r[1]):n(r[2]))},q=e=>j.test(e)&&!N.test(e),U=()=>!1,K=e=>T.test(e),_=e=>B.test(e),$=(Symbol.toStringTag,()=>{const e=w("colors"),t=w("spacing"),n=w("blur"),r=w("brightness"),a=w("borderColor"),i=w("borderRadius"),l=w("borderSpacing"),s=w("borderWidth"),o=w("contrast"),u=w("grayscale"),f=w("hueRotate"),c=w("invert"),d=w("gap"),v=w("gradientColorStops"),A=w("gradientColorStopPositions"),g=w("inset"),m=w("margin"),P=w("opacity"),b=w("padding"),p=w("saturate"),z=w("scale"),y=w("sepia"),h=w("skew"),x=w("space"),O=w("translate"),D=()=>["auto",k,t],H=()=>[k,t],X=()=>["",M,L],j=()=>["auto",C,k],N=()=>["","0",k],T=()=>[C,k];return{cacheSize:500,separator:":",theme:{colors:[V],spacing:[M,L],blur:["none","",W,k],brightness:T(),borderColor:[e],borderRadius:["none","","full",W,k],borderSpacing:H(),borderWidth:X(),contrast:T(),grayscale:N(),hueRotate:T(),invert:N(),gap:H(),gradientColorStops:[e],gradientColorStopPositions:[G,L],inset:D(),margin:D(),opacity:T(),padding:H(),saturate:T(),scale:T(),sepia:N(),skew:T(),space:H(),translate:H()},classGroups:{aspect:[{aspect:["auto","square","video",k]}],container:["container"],columns:[{columns:[W]}],"break-after":[{"break-after":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-before":[{"break-before":["auto","avoid","all","avoid-page","page","left","right","column"]}],"break-inside":[{"break-inside":["auto","avoid","avoid-page","avoid-column"]}],"box-decoration":[{"box-decoration":["slice","clone"]}],box:[{box:["border","content"]}],display:["block","inline-block","inline","flex","inline-flex","table","inline-table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row-group","table-row","flow-root","grid","inline-grid","contents","list-item","hidden"],float:[{float:["right","left","none","start","end"]}],clear:[{clear:["left","right","both","none","start","end"]}],isolation:["isolate","isolation-auto"],"object-fit":[{object:["contain","cover","fill","none","scale-down"]}],"object-position":[{object:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",k]}],overflow:[{overflow:["auto","hidden","clip","visible","scroll"]}],"overflow-x":[{"overflow-x":["auto","hidden","clip","visible","scroll"]}],"overflow-y":[{"overflow-y":["auto","hidden","clip","visible","scroll"]}],overscroll:[{overscroll:["auto","contain","none"]}],"overscroll-x":[{"overscroll-x":["auto","contain","none"]}],"overscroll-y":[{"overscroll-y":["auto","contain","none"]}],position:["static","fixed","absolute","relative","sticky"],inset:[{inset:[g]}],"inset-x":[{"inset-x":[g]}],"inset-y":[{"inset-y":[g]}],start:[{start:[g]}],end:[{end:[g]}],top:[{top:[g]}],right:[{right:[g]}],bottom:[{bottom:[g]}],left:[{left:[g]}],visibility:["visible","invisible","collapse"],z:[{z:["auto",Z,k]}],basis:[{basis:D()}],"flex-direction":[{flex:["row","row-reverse","col","col-reverse"]}],"flex-wrap":[{flex:["wrap","wrap-reverse","nowrap"]}],flex:[{flex:["1","auto","initial","none",k]}],grow:[{grow:N()}],shrink:[{shrink:N()}],order:[{order:["first","last","none",Z,k]}],"grid-cols":[{"grid-cols":[V]}],"col-start-end":[{col:["auto",{span:["full",Z,k]},k]}],"col-start":[{"col-start":j()}],"col-end":[{"col-end":j()}],"grid-rows":[{"grid-rows":[V]}],"row-start-end":[{row:["auto",{span:[Z,k]},k]}],"row-start":[{"row-start":j()}],"row-end":[{"row-end":j()}],"grid-flow":[{"grid-flow":["row","col","dense","row-dense","col-dense"]}],"auto-cols":[{"auto-cols":["auto","min","max","fr",k]}],"auto-rows":[{"auto-rows":["auto","min","max","fr",k]}],gap:[{gap:[d]}],"gap-x":[{"gap-x":[d]}],"gap-y":[{"gap-y":[d]}],"justify-content":[{justify:["normal","start","end","center","between","around","evenly","stretch"]}],"justify-items":[{"justify-items":["start","end","center","stretch"]}],"justify-self":[{"justify-self":["auto","start","end","center","stretch"]}],"align-content":[{content:["normal","start","end","center","between","around","evenly","stretch","baseline"]}],"align-items":[{items:["start","end","center","baseline","stretch"]}],"align-self":[{self:["auto","start","end","center","stretch","baseline"]}],"place-content":[{"place-content":["start","end","center","between","around","evenly","stretch","baseline"]}],"place-items":[{"place-items":["start","end","center","baseline","stretch"]}],"place-self":[{"place-self":["auto","start","end","center","stretch"]}],p:[{p:[b]}],px:[{px:[b]}],py:[{py:[b]}],ps:[{ps:[b]}],pe:[{pe:[b]}],pt:[{pt:[b]}],pr:[{pr:[b]}],pb:[{pb:[b]}],pl:[{pl:[b]}],m:[{m:[m]}],mx:[{mx:[m]}],my:[{my:[m]}],ms:[{ms:[m]}],me:[{me:[m]}],mt:[{mt:[m]}],mr:[{mr:[m]}],mb:[{mb:[m]}],ml:[{ml:[m]}],"space-x":[{"space-x":[x]}],"space-x-reverse":["space-x-reverse"],"space-y":[{"space-y":[x]}],"space-y-reverse":["space-y-reverse"],w:[{w:["auto","min","max","fit","svw","lvw","dvw",k,t]}],"min-w":[{"min-w":[k,t,"min","max","fit"]}],"max-w":[{"max-w":[k,t,"none","full","min","max","fit","prose",{screen:[W]},W]}],h:[{h:[k,t,"auto","min","max","fit","svh","lvh","dvh"]}],"min-h":[{"min-h":[k,t,"min","max","fit","svh","lvh","dvh"]}],"max-h":[{"max-h":[k,t,"min","max","fit","svh","lvh","dvh"]}],size:[{size:[k,t,"auto","min","max","fit"]}],"font-size":[{text:["base",W,L]}],"font-smoothing":["antialiased","subpixel-antialiased"],"font-style":["italic","not-italic"],"font-weight":[{font:["thin","extralight","light","normal","medium","semibold","bold","extrabold","black",E]}],"font-family":[{font:[V]}],"fvn-normal":["normal-nums"],"fvn-ordinal":["ordinal"],"fvn-slashed-zero":["slashed-zero"],"fvn-figure":["lining-nums","oldstyle-nums"],"fvn-spacing":["proportional-nums","tabular-nums"],"fvn-fraction":["diagonal-fractions","stacked-fractons"],tracking:[{tracking:["tighter","tight","normal","wide","wider","widest",k]}],"line-clamp":[{"line-clamp":["none",C,E]}],leading:[{leading:["none","tight","snug","normal","relaxed","loose",M,k]}],"list-image":[{"list-image":["none",k]}],"list-style-type":[{list:["none","disc","decimal",k]}],"list-style-position":[{list:["inside","outside"]}],"placeholder-color":[{placeholder:[e]}],"placeholder-opacity":[{"placeholder-opacity":[P]}],"text-alignment":[{text:["left","center","right","justify","start","end"]}],"text-color":[{text:[e]}],"text-opacity":[{"text-opacity":[P]}],"text-decoration":["underline","overline","line-through","no-underline"],"text-decoration-style":[{decoration:["solid","dashed","dotted","double","none","wavy"]}],"text-decoration-thickness":[{decoration:["auto","from-font",M,L]}],"underline-offset":[{"underline-offset":["auto",M,k]}],"text-decoration-color":[{decoration:[e]}],"text-transform":["uppercase","lowercase","capitalize","normal-case"],"text-overflow":["truncate","text-ellipsis","text-clip"],"text-wrap":[{text:["wrap","nowrap","balance","pretty"]}],indent:[{indent:H()}],"vertical-align":[{align:["baseline","top","middle","bottom","text-top","text-bottom","sub","super",k]}],whitespace:[{whitespace:["normal","nowrap","pre","pre-line","pre-wrap","break-spaces"]}],break:[{break:["normal","words","all","keep"]}],hyphens:[{hyphens:["none","manual","auto"]}],content:[{content:["none",k]}],"bg-attachment":[{bg:["fixed","local","scroll"]}],"bg-clip":[{"bg-clip":["border","padding","content","text"]}],"bg-opacity":[{"bg-opacity":[P]}],"bg-origin":[{"bg-origin":["border","padding","content"]}],"bg-position":[{bg:["bottom","center","left","left-bottom","left-top","right","right-bottom","right-top","top",I]}],"bg-repeat":[{bg:["no-repeat",{repeat:["","x","y","round","space"]}]}],"bg-size":[{bg:["auto","cover","contain",Y]}],"bg-image":[{bg:["none",{"gradient-to":["t","tr","r","br","b","bl","l","tl"]},F]}],"bg-color":[{bg:[e]}],"gradient-from-pos":[{from:[A]}],"gradient-via-pos":[{via:[A]}],"gradient-to-pos":[{to:[A]}],"gradient-from":[{from:[v]}],"gradient-via":[{via:[v]}],"gradient-to":[{to:[v]}],rounded:[{rounded:[i]}],"rounded-s":[{"rounded-s":[i]}],"rounded-e":[{"rounded-e":[i]}],"rounded-t":[{"rounded-t":[i]}],"rounded-r":[{"rounded-r":[i]}],"rounded-b":[{"rounded-b":[i]}],"rounded-l":[{"rounded-l":[i]}],"rounded-ss":[{"rounded-ss":[i]}],"rounded-se":[{"rounded-se":[i]}],"rounded-ee":[{"rounded-ee":[i]}],"rounded-es":[{"rounded-es":[i]}],"rounded-tl":[{"rounded-tl":[i]}],"rounded-tr":[{"rounded-tr":[i]}],"rounded-br":[{"rounded-br":[i]}],"rounded-bl":[{"rounded-bl":[i]}],"border-w":[{border:[s]}],"border-w-x":[{"border-x":[s]}],"border-w-y":[{"border-y":[s]}],"border-w-s":[{"border-s":[s]}],"border-w-e":[{"border-e":[s]}],"border-w-t":[{"border-t":[s]}],"border-w-r":[{"border-r":[s]}],"border-w-b":[{"border-b":[s]}],"border-w-l":[{"border-l":[s]}],"border-opacity":[{"border-opacity":[P]}],"border-style":[{border:["solid","dashed","dotted","double","none","hidden"]}],"divide-x":[{"divide-x":[s]}],"divide-x-reverse":["divide-x-reverse"],"divide-y":[{"divide-y":[s]}],"divide-y-reverse":["divide-y-reverse"],"divide-opacity":[{"divide-opacity":[P]}],"divide-style":[{divide:["solid","dashed","dotted","double","none"]}],"border-color":[{border:[a]}],"border-color-x":[{"border-x":[a]}],"border-color-y":[{"border-y":[a]}],"border-color-t":[{"border-t":[a]}],"border-color-r":[{"border-r":[a]}],"border-color-b":[{"border-b":[a]}],"border-color-l":[{"border-l":[a]}],"divide-color":[{divide:[a]}],"outline-style":[{outline:["","solid","dashed","dotted","double","none"]}],"outline-offset":[{"outline-offset":[M,k]}],"outline-w":[{outline:[M,L]}],"outline-color":[{outline:[e]}],"ring-w":[{ring:X()}],"ring-w-inset":["ring-inset"],"ring-color":[{ring:[e]}],"ring-opacity":[{"ring-opacity":[P]}],"ring-offset-w":[{"ring-offset":[M,L]}],"ring-offset-color":[{"ring-offset":[e]}],shadow:[{shadow:["","inner","none",W,S]}],"shadow-color":[{shadow:[V]}],opacity:[{opacity:[P]}],"mix-blend":[{"mix-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity","plus-lighter","plus-darker"]}],"bg-blend":[{"bg-blend":["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"]}],filter:[{filter:["","none"]}],blur:[{blur:[n]}],brightness:[{brightness:[r]}],contrast:[{contrast:[o]}],"drop-shadow":[{"drop-shadow":["","none",W,k]}],grayscale:[{grayscale:[u]}],"hue-rotate":[{"hue-rotate":[f]}],invert:[{invert:[c]}],saturate:[{saturate:[p]}],sepia:[{sepia:[y]}],"backdrop-filter":[{"backdrop-filter":["","none"]}],"backdrop-blur":[{"backdrop-blur":[n]}],"backdrop-brightness":[{"backdrop-brightness":[r]}],"backdrop-contrast":[{"backdrop-contrast":[o]}],"backdrop-grayscale":[{"backdrop-grayscale":[u]}],"backdrop-hue-rotate":[{"backdrop-hue-rotate":[f]}],"backdrop-invert":[{"backdrop-invert":[c]}],"backdrop-opacity":[{"backdrop-opacity":[P]}],"backdrop-saturate":[{"backdrop-saturate":[p]}],"backdrop-sepia":[{"backdrop-sepia":[y]}],"border-collapse":[{border:["collapse","separate"]}],"border-spacing":[{"border-spacing":[l]}],"border-spacing-x":[{"border-spacing-x":[l]}],"border-spacing-y":[{"border-spacing-y":[l]}],"table-layout":[{table:["auto","fixed"]}],caption:[{caption:["top","bottom"]}],transition:[{transition:["none","all","","colors","opacity","shadow","transform",k]}],duration:[{duration:T()}],ease:[{ease:["linear","in","out","in-out",k]}],delay:[{delay:T()}],animate:[{animate:["none","spin","ping","pulse","bounce",k]}],transform:[{transform:["","gpu","none"]}],scale:[{scale:[z]}],"scale-x":[{"scale-x":[z]}],"scale-y":[{"scale-y":[z]}],rotate:[{rotate:[Z,k]}],"translate-x":[{"translate-x":[O]}],"translate-y":[{"translate-y":[O]}],"skew-x":[{"skew-x":[h]}],"skew-y":[{"skew-y":[h]}],"transform-origin":[{origin:["center","top","top-right","right","bottom-right","bottom","bottom-left","left","top-left",k]}],accent:[{accent:["auto",e]}],appearance:[{appearance:["none","auto"]}],cursor:[{cursor:["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out",k]}],"caret-color":[{caret:[e]}],"pointer-events":[{"pointer-events":["none","auto"]}],resize:[{resize:["none","y","x",""]}],"scroll-behavior":[{scroll:["auto","smooth"]}],"scroll-m":[{"scroll-m":H()}],"scroll-mx":[{"scroll-mx":H()}],"scroll-my":[{"scroll-my":H()}],"scroll-ms":[{"scroll-ms":H()}],"scroll-me":[{"scroll-me":H()}],"scroll-mt":[{"scroll-mt":H()}],"scroll-mr":[{"scroll-mr":H()}],"scroll-mb":[{"scroll-mb":H()}],"scroll-ml":[{"scroll-ml":H()}],"scroll-p":[{"scroll-p":H()}],"scroll-px":[{"scroll-px":H()}],"scroll-py":[{"scroll-py":H()}],"scroll-ps":[{"scroll-ps":H()}],"scroll-pe":[{"scroll-pe":H()}],"scroll-pt":[{"scroll-pt":H()}],"scroll-pr":[{"scroll-pr":H()}],"scroll-pb":[{"scroll-pb":H()}],"scroll-pl":[{"scroll-pl":H()}],"snap-align":[{snap:["start","end","center","align-none"]}],"snap-stop":[{snap:["normal","always"]}],"snap-type":[{snap:["none","x","y","both"]}],"snap-strictness":[{snap:["mandatory","proximity"]}],touch:[{touch:["auto","none","manipulation"]}],"touch-x":[{"touch-pan":["x","left","right"]}],"touch-y":[{"touch-pan":["y","up","down"]}],"touch-pz":["touch-pinch-zoom"],select:[{select:["none","text","all","auto"]}],"will-change":[{"will-change":["auto","scroll","contents","transform",k]}],fill:[{fill:[e,"none"]}],"stroke-w":[{stroke:[M,L,E]}],stroke:[{stroke:[e,"none"]}],sr:["sr-only","not-sr-only"],"forced-color-adjust":[{"forced-color-adjust":["auto","none"]}]},conflictingClassGroups:{overflow:["overflow-x","overflow-y"],overscroll:["overscroll-x","overscroll-y"],inset:["inset-x","inset-y","start","end","top","right","bottom","left"],"inset-x":["right","left"],"inset-y":["top","bottom"],flex:["basis","grow","shrink"],gap:["gap-x","gap-y"],p:["px","py","ps","pe","pt","pr","pb","pl"],px:["pr","pl"],py:["pt","pb"],m:["mx","my","ms","me","mt","mr","mb","ml"],mx:["mr","ml"],my:["mt","mb"],size:["w","h"],"font-size":["leading"],"fvn-normal":["fvn-ordinal","fvn-slashed-zero","fvn-figure","fvn-spacing","fvn-fraction"],"fvn-ordinal":["fvn-normal"],"fvn-slashed-zero":["fvn-normal"],"fvn-figure":["fvn-normal"],"fvn-spacing":["fvn-normal"],"fvn-fraction":["fvn-normal"],"line-clamp":["display","overflow"],rounded:["rounded-s","rounded-e","rounded-t","rounded-r","rounded-b","rounded-l","rounded-ss","rounded-se","rounded-ee","rounded-es","rounded-tl","rounded-tr","rounded-br","rounded-bl"],"rounded-s":["rounded-ss","rounded-es"],"rounded-e":["rounded-se","rounded-ee"],"rounded-t":["rounded-tl","rounded-tr"],"rounded-r":["rounded-tr","rounded-br"],"rounded-b":["rounded-br","rounded-bl"],"rounded-l":["rounded-tl","rounded-bl"],"border-spacing":["border-spacing-x","border-spacing-y"],"border-w":["border-w-s","border-w-e","border-w-t","border-w-r","border-w-b","border-w-l"],"border-w-x":["border-w-r","border-w-l"],"border-w-y":["border-w-t","border-w-b"],"border-color":["border-color-t","border-color-r","border-color-b","border-color-l"],"border-color-x":["border-color-r","border-color-l"],"border-color-y":["border-color-t","border-color-b"],"scroll-m":["scroll-mx","scroll-my","scroll-ms","scroll-me","scroll-mt","scroll-mr","scroll-mb","scroll-ml"],"scroll-mx":["scroll-mr","scroll-ml"],"scroll-my":["scroll-mt","scroll-mb"],"scroll-p":["scroll-px","scroll-py","scroll-ps","scroll-pe","scroll-pt","scroll-pr","scroll-pb","scroll-pl"],"scroll-px":["scroll-pr","scroll-pl"],"scroll-py":["scroll-pt","scroll-pb"],touch:["touch-x","touch-y","touch-pz"],"touch-x":["touch"],"touch-y":["touch"],"touch-pz":["touch"]},conflictingClassGroupModifiers:{"font-size":["leading"]}}}),ee=function(e,...t){let n,r,a,i=function(s){const o=t.reduce(((e,t)=>t(e)),e());return n=(e=>({cache:b(e.cacheSize),parseClassName:p(e),...u(e)}))(o),r=n.cache.get,a=n.cache.set,i=l,l(s)};function l(e){const t=r(e);if(t)return t;const i=((e,t)=>{const{parseClassName:n,getClassGroupId:r,getConflictingClassGroupIds:a}=t,i=[],l=e.trim().split(y);let s="";for(let e=l.length-1;e>=0;e-=1){const t=l[e],{modifiers:o,hasImportantModifier:u,baseClassName:f,maybePostfixModifierPosition:c}=n(t);let d=Boolean(c),v=r(d?f.substring(0,c):f);if(!v){if(!d){s=t+(s.length>0?" "+s:s);continue}if(v=r(f),!v){s=t+(s.length>0?" "+s:s);continue}d=!1}const A=z(o).join(":"),g=u?A+"!":A,m=g+v;if(i.includes(m))continue;i.push(m);const P=a(v,d);for(let e=0;e<P.length;++e){const t=P[e];i.push(g+t)}s=t+(s.length>0?" "+s:s)}return s})(e,n);return a(e,i),i}return function(){return i(h.apply(null,arguments))}}($);function te(e){var t,n,r="";if("string"==typeof e||"number"==typeof e)r+=e;else if("object"==typeof e)if(Array.isArray(e)){var a=e.length;for(t=0;t<a;t++)e[t]&&(n=te(e[t]))&&(r&&(r+=" "),r+=n)}else for(n in e)e[n]&&(r&&(r+=" "),r+=n);return r}function ne(){for(var e,t,n=0,r="",a=arguments.length;n<a;n++)(e=arguments[n])&&(t=te(e))&&(r&&(r+=" "),r+=t);return r}var re=function(){return ee(ne.apply(void 0,arguments))},ae=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return t.forEach((function(e){return null==e?void 0:e.apply(void 0,n)}))}},ie=function(e){var t={0:"gap-0",xxs:"gap-1",xs:"gap-2",sm:"gap-3",md:"gap-4",lg:"gap-5",xl:"gap-6","2xl":"gap-8"};return t[e]||t.md},le={1:"grid-cols-1",2:"grid-cols-2",3:"grid-cols-3",4:"grid-cols-4",5:"grid-cols-5",6:"grid-cols-6",7:"grid-cols-7",8:"grid-cols-8",9:"grid-cols-9",10:"grid-cols-10",11:"grid-cols-11",12:"grid-cols-12"},se=["variant","size","type","tag","className","children","disabled","destructive","icon","iconPosition","loading"];function oe(){return oe=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},oe.apply(null,arguments)}var ue=(0,s.forwardRef)((function(e,t){var n,r,a,i,l=e.variant,s=void 0===l?"primary":l,u=e.size,f=void 0===u?"md":u,c=e.type,d=void 0===c?"button":c,v=e.tag,A=void 0===v?"button":v,g=e.className,m=e.children,P=e.disabled,b=void 0!==P&&P,p=e.destructive,z=void 0!==p&&p,y=e.icon,h=void 0===y?null:y,x=e.iconPosition,w=void 0===x?"left":x,O=e.loading,D=void 0!==O&&O,H=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}(e,se),X=D?"opacity-50 disabled:cursor-not-allowed":"",j=null===(n={primary:"text-text-on-color bg-button-primary hover:bg-button-primary-hover outline-button-primary hover:outline-button-primary-hover disabled:bg-button-disabled disabled:outline-button-disabled",secondary:"text-text-on-color bg-button-secondary hover:bg-button-secondary-hover outline-button-secondary hover:outline-button-secondary-hover disabled:bg-button-disabled disabled:outline-button-disabled",outline:"text-button-tertiary-color outline-border-subtle bg-button-tertiary hover:bg-button-tertiary-hover hover:outline-border-subtle disabled:bg-button-tertiary disabled:outline-border-disabled",ghost:"text-text-primary bg-transparent outline-transparent hover:bg-button-tertiary-hover",link:"outline-none text-link-primary bg-transparent hover:text-link-primary-hover hover:underline p-0 border-0 leading-none"})||void 0===n?void 0:n[s],N=z&&!b?null===(r={primary:"bg-button-danger hover:bg-button-danger-hover outline-button-danger hover:outline-button-danger-hover",outline:"text-button-danger outline outline-1 outline-button-danger hover:outline-button-danger bg-button-tertiary hover:bg-field-background-error",ghost:"text-button-danger hover:bg-field-background-error",link:"text-button-danger hover:text-button-danger-secondary"})||void 0===r?void 0:r[s]:"",T=null===(a={xs:"p-1 rounded [&>svg]:size-4",sm:"p-2 rounded [&>svg]:size-4 gap-0.5",md:"p-2.5 rounded-md text-sm [&>svg]:size-5 gap-1",lg:"p-3 rounded-lg text-base [&>svg]:size-6 gap-1"})||void 0===a?void 0:a[f],B=null,M="";h&&(M="flex items-center justify-center","left"===w?i=h:B=h);var L=A;return o().createElement(L,oe({ref:t,type:d,className:re(M,"outline outline-1 border-none cursor-pointer transition-colors duration-300 ease-in-out text-xs font-semibold focus:ring-2 focus:ring-toggle-on focus:ring-offset-2 disabled:text-text-disabled",T,j,N,X,g),disabled:b},H),i,o().createElement("span",{className:"px-1"},m),B)})),fe=ue;let ce=(e=21)=>{let t="",n=crypto.getRandomValues(new Uint8Array(e));for(;e--;)t+="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict"[63&n[e]];return t};var de=["id","onChange","value","defaultValue","size","disabled","label","name","className"];function ve(){return ve=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ve.apply(null,arguments)}function Ae(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var ge=function(e){var t=e.label,n=e.switchId,r=e.disabled,a=void 0!==r&&r,i=e.children,l=e.size;if((0,s.isValidElement)(t))return React.createElement("div",{className:re("inline-flex items-center gap-3","items-start")},i,t);var o,u,f,c,d,v=!(null!=t&&t.heading||null!=t&&t.description),A=null!=t&&t.heading&&null!=t&&t.description?"items-start":"items-center";return v?i:React.createElement("div",{className:re("inline-flex",A,"gap-3")},i,React.createElement("label",{htmlFor:n,className:re(!a&&"cursor-pointer")},(f=void 0===(u=(o=t||{}).heading)?"":u,d=void 0===(c=o.description)?"":c,React.createElement("div",{className:"space-y-1.5"},f&&React.createElement("p",{className:re("text-text-primary m-0",{sm:"text-sm leading-4 font-medium",md:"text-base leading-5 font-medium",lg:"text-lg leading-6 font-medium"}[l],a&&"text-text-disabled")},f),d&&React.createElement("p",{className:re("text-text-secondary text-sm font-normal leading-5 m-0",a&&"text-text-disabled")},d)))))},me=(0,s.forwardRef)((function(e,t){var n,r=e.id,a=e.onChange,i=e.value,l=e.defaultValue,o=void 0!==l&&l,u=e.size,f=void 0===u?"lg":u,c=e.disabled,d=void 0!==c&&c,v=e.label,A=void 0===v?{heading:"",description:""}:v,g=e.name,m=e.className,P=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}(e,de),b=(0,s.useMemo)((function(){return void 0!==i}),[i]),p=(0,s.useMemo)((function(){return r||"switch-".concat(ce())}),[]),z=(2,function(e){if(Array.isArray(e))return e}(n=(0,s.useState)(o))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,i,l,s=[],o=!0,u=!1;try{for(i=(n=n.call(e)).next,0;!(o=(r=i.call(n)).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){u=!0,a=e}finally{try{if(!o&&null!=n.return&&(l=n.return(),Object(l)!==l))return}finally{if(u)throw a}}return s}}(n)||function(e,t){if(e){if("string"==typeof e)return Ae(e,2);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Ae(e,2):void 0}}(n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),y=z[0],h=z[1],x="primary",w=(0,s.useCallback)((function(){return b?i:y}),[b,i,y]),O={primary:{input:"bg-toggle-off hover:bg-toggle-off-hover checked:bg-toggle-on focus:ring focus:ring-toggle-on focus:ring-offset-4 checked:hover:bg-toggle-on border border-solid border-toggle-off-border checked:border-toggle-on-border shadow-toggleContainer focus:outline-none checked:focus:border-toggle-on-border focus:border-toggle-off-border",toggleDial:"bg-toggle-dial-background shadow-toggleDial"}},D={lg:{container:"w-11 h-6",toggleDial:"size-4 peer-checked:translate-x-5"},md:{container:"w-10 h-5",toggleDial:"size-3 peer-checked:translate-x-5"},sm:{container:"w-8 h-4",toggleDial:"size-2.5 peer-checked:translate-x-3.5"}};return React.createElement(ge,{label:A,switchId:p,disabled:d,size:f},React.createElement("div",{className:re("relative inline-block cursor-pointer rounded-full shrink-0",D[f].container,m)},React.createElement("input",ve({ref:t,id:p,type:"checkbox",className:re("peer appearance-none absolute bg-blue-gray-100 rounded-full cursor-pointer transition-colors duration-300 h-full w-full  before:content-[''] checked:before:content-[''] m-0 checked:[background-image:none]",O[x].input,d&&"bg-toggle-off-disabled disabled:border-transparent shadow-none disabled:cursor-not-allowed"),checked:w(),onChange:function(e){if(!d){var t=e.target.checked;b||h(t),"function"==typeof a&&a(t)}},disabled:d,name:g},P)),React.createElement("label",{htmlFor:p,className:re("bg-white border border-blue-gray-100 rounded-full absolute cursor-pointer shadow-md before:content[''] before:transition-opacity before:opacity-0 hover:before:opacity-10 before:hidden border-none transition-all duration-300 top-2/4 left-1 -translate-y-2/4 before:w-10 before:h-10 before:rounded-full before:absolute before:top-2/4 before:left-2/4 before:-translate-y-2/4 before:-translate-x-2/4",D[f].toggleDial,O[x].toggleDial,d&&"peer-disabled:cursor-not-allowed")})))}));me.displayName="Switch";var Pe=me;const be=(...e)=>e.filter(((e,t,n)=>Boolean(e)&&n.indexOf(e)===t)).join(" ");var pe={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor",strokeWidth:2,strokeLinecap:"round",strokeLinejoin:"round"};const ze=(0,s.forwardRef)((({color:e="currentColor",size:t=24,strokeWidth:n=2,absoluteStrokeWidth:r,className:a="",children:i,iconNode:l,...o},u)=>(0,s.createElement)("svg",{ref:u,...pe,width:t,height:t,stroke:e,strokeWidth:r?24*Number(n)/Number(t):n,className:be("lucide",a),...o},[...l.map((([e,t])=>(0,s.createElement)(e,t))),...Array.isArray(i)?i:[i]]))),ye=(e,t)=>{const n=(0,s.forwardRef)((({className:n,...r},a)=>{return(0,s.createElement)(ze,{ref:a,iconNode:t,className:be(`lucide-${i=e,i.replace(/([a-z0-9])([A-Z])/g,"$1-$2").toLowerCase()}`,n),...r});var i}));return n.displayName=`${e}`,n},he=ye("Minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]),xe=ye("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);var we=["id","label","defaultChecked","checked","onChange","value","indeterminate","disabled","size"];function Oe(){return Oe=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Oe.apply(null,arguments)}function De(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var He=(0,s.forwardRef)((function(e,t){var n,r,a,i=e.id,l=e.label,o=e.defaultChecked,u=void 0!==o&&o,f=e.checked,c=e.onChange,d=(e.value,e.indeterminate),v=e.disabled,A=e.size,g=void 0===A?"md":A,m=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}(e,we),P=(0,s.useMemo)((function(){return i||"checkbox-".concat(ce())}),[i]),b=(0,s.useMemo)((function(){return void 0!==f}),[f]),p=(2,function(e){if(Array.isArray(e))return e}(a=(0,s.useState)(u||!1))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,i,l,s=[],o=!0,u=!1;try{for(i=(n=n.call(e)).next,0;!(o=(r=i.call(n)).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){u=!0,a=e}finally{try{if(!o&&null!=n.return&&(l=n.return(),Object(l)!==l))return}finally{if(u)throw a}}return s}}(a)||function(e,t){if(e){if("string"==typeof e)return De(e,2);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?De(e,2):void 0}}(a)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),z=p[0],y=p[1],h="primary",x={sm:{checkbox:"size-4 rounded gap-1",icon:"size-3",text:"text-sm",description:"text-xs",gap:"gap-0.5"},md:{checkbox:"size-5 rounded gap-1",icon:"size-4",text:"text-base",description:"text-sm",gap:"gap-1"}},w={primary:{checkbox:"border-border-strong hover:border-border-interactive checked:border-border-interactive bg-white checked:bg-toggle-on checked:hover:bg-toggle-on-hover checked:hover:border-toggle-on-hover focus:ring-2 focus:ring-offset-4 focus:ring-focus",icon:"text-white"}},O=(0,s.useCallback)((function(){return b?f:z}),[b,f,z]),D=(0,s.useCallback)((function(){return(0,s.isValidElement)(l)?l:l.heading||l.description?React.createElement("div",{className:x[g].gap},l.heading&&React.createElement("p",{className:re("text-text-primary font-medium leading-4 m-0",x[g].text,x[g].gap)},l.heading),l.description&&React.createElement("p",{className:re("text-text-secondary font-normal leading-5 m-0",x[g].description)},l.description)):null}),[l,g]);return React.createElement("div",{className:re("inline-flex items-center gap-2",!!l&&"items-start")},React.createElement("label",{className:re("relative flex items-center rounded-full p-0.5",!v&&"cursor-pointer"),htmlFor:P},React.createElement("input",Oe({ref:t,id:P,type:"checkbox",className:re("peer relative cursor-pointer appearance-none transition-all m-0 before:content-[''] checked:before:content-[''] checked:before:hidden before:hidden !border-1.5 border-solid",w[h].checkbox,x[g].checkbox,v&&"disabled:bg-white checked:disabled:bg-white disabled:border-border-disabled checked:disabled:border-border-disabled"),checked:O(),onChange:function(e){if(!v){var t=e.target.checked;b||y(t),"function"==typeof c&&c(t)}},disabled:v},m)),React.createElement("span",{className:re("pointer-events-none inline-flex items-center absolute top-2/4 left-2/4 -translate-y-2/4 -translate-x-2/4 text-white opacity-0 transition-opacity peer-checked:opacity-100",w[h].icon,v&&"peer-disabled:text-border-disabled")},d?React.createElement(he,{className:re(null===(n=x[g])||void 0===n?void 0:n.icon)}):React.createElement(xe,{className:re(null===(r=x[g])||void 0===r?void 0:r.icon)}))),!!l&&React.createElement("label",{className:re(!v&&"cursor-pointer"),htmlFor:P},D()))}));He.displayName="Checkbox";var Xe=He;const je=ye("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);var Ne={primary:{checkbox:"border-border-strong hover:border-border-interactive checked:border-border-interactive bg-white checked:bg-toggle-on checked:hover:bg-toggle-on-hover checked:hover:border-toggle-on-hover focus:ring-2 focus:ring-offset-4 focus:ring-focus",icon:"text-white"}},Te={sm:"text-sm leading-5",md:"text-base leading-6"},Be={sm:{checkbox:"size-4",icon:"size-1.5",info:"size-4"},md:{checkbox:"size-5",icon:"size-2",info:"size-5"}},Me={xs:"py-1 px-1 text-sm gap-0.5 [&>svg]:size-4",sm:"py-1 px-1.5 text-base gap-1 [&>svg]:size-4",md:"py-2 px-2.5 text-base gap-1 [&>svg]:size-5",lg:"py-2.5 px-3 text-base gap-1 [&>svg]:size-6"};function Le(e){return Ze(e)?(e.nodeName||"").toLowerCase():"#document"}function Ce(e){var t;return(null==e||null==(t=e.ownerDocument)?void 0:t.defaultView)||window}function Ee(e){var t;return null==(t=(Ze(e)?e.ownerDocument:e.document)||window.document)?void 0:t.documentElement}function Ze(e){return e instanceof Node||e instanceof Ce(e).Node}function Ge(e){return e instanceof Element||e instanceof Ce(e).Element}function ke(e){return e instanceof HTMLElement||e instanceof Ce(e).HTMLElement}function We(e){return"undefined"!=typeof ShadowRoot&&(e instanceof ShadowRoot||e instanceof Ce(e).ShadowRoot)}function Qe(e){const{overflow:t,overflowX:n,overflowY:r,display:a}=Ve(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&!["inline","contents"].includes(a)}function Ye(e){return["table","td","th"].includes(Le(e))}function Ie(e){return[":popover-open",":modal"].some((t=>{try{return e.matches(t)}catch(e){return!1}}))}function Re(e){const t=Fe(),n=Ge(e)?Ve(e):e;return"none"!==n.transform||"none"!==n.perspective||!!n.containerType&&"normal"!==n.containerType||!t&&!!n.backdropFilter&&"none"!==n.backdropFilter||!t&&!!n.filter&&"none"!==n.filter||["transform","perspective","filter"].some((e=>(n.willChange||"").includes(e)))||["paint","layout","strict","content"].some((e=>(n.contain||"").includes(e)))}function Fe(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function Se(e){return["html","body","#document"].includes(Le(e))}function Ve(e){return Ce(e).getComputedStyle(e)}function Je(e){return Ge(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.scrollX,scrollTop:e.scrollY}}function qe(e){if("html"===Le(e))return e;const t=e.assignedSlot||e.parentNode||We(e)&&e.host||Ee(e);return We(t)?t.host:t}function Ue(e){const t=qe(e);return Se(t)?e.ownerDocument?e.ownerDocument.body:e.body:ke(t)&&Qe(t)?t:Ue(t)}function Ke(e,t,n){var r;void 0===t&&(t=[]),void 0===n&&(n=!0);const a=Ue(e),i=a===(null==(r=e.ownerDocument)?void 0:r.body),l=Ce(a);if(i){const e=_e(l);return t.concat(l,l.visualViewport||[],Qe(a)?a:[],e&&n?Ke(e):[])}return t.concat(a,Ke(a,[],n))}function _e(e){return e.parent&&Object.getPrototypeOf(e.parent)?e.frameElement:null}function $e(e){let t=e.activeElement;for(;null!=(null==(n=t)||null==(n=n.shadowRoot)?void 0:n.activeElement);){var n;t=t.shadowRoot.activeElement}return t}function et(e,t){if(!e||!t)return!1;const n=null==t.getRootNode?void 0:t.getRootNode();if(e.contains(t))return!0;if(n&&We(n)){let n=t;for(;n;){if(e===n)return!0;n=n.parentNode||n.host}}return!1}function tt(){const e=navigator.userAgentData;return null!=e&&e.platform?e.platform:navigator.platform}function nt(){const e=navigator.userAgentData;return e&&Array.isArray(e.brands)?e.brands.map((e=>{let{brand:t,version:n}=e;return t+"/"+n})).join(" "):navigator.userAgent}function rt(e){return!(0!==e.mozInputSource||!e.isTrusted)||(lt()&&e.pointerType?"click"===e.type&&1===e.buttons:0===e.detail&&!e.pointerType)}function at(e){return!nt().includes("jsdom/")&&(!lt()&&0===e.width&&0===e.height||lt()&&1===e.width&&1===e.height&&0===e.pressure&&0===e.detail&&"mouse"===e.pointerType||e.width<1&&e.height<1&&0===e.pressure&&0===e.detail&&"touch"===e.pointerType)}function it(){return/apple/i.test(navigator.vendor)}function lt(){const e=/android/i;return e.test(tt())||e.test(nt())}function st(){return tt().toLowerCase().startsWith("mac")&&!navigator.maxTouchPoints}function ot(e,t){const n=["mouse","pen"];return t||n.push("",void 0),n.includes(e)}function ut(e){return(null==e?void 0:e.ownerDocument)||document}function ft(e,t){if(null==t)return!1;if("composedPath"in e)return e.composedPath().includes(t);const n=e;return null!=n.target&&t.contains(n.target)}function ct(e){return"composedPath"in e?e.composedPath()[0]:e.target}const dt="input:not([type='hidden']):not([disabled]),[contenteditable]:not([contenteditable='false']),textarea:not([disabled])";function vt(e){return ke(e)&&e.matches(dt)}function At(e){e.preventDefault(),e.stopPropagation()}function gt(e){return!!e&&"combobox"===e.getAttribute("role")&&vt(e)}const mt=Math.min,Pt=Math.max,bt=Math.round,pt=Math.floor,zt=e=>({x:e,y:e}),yt={left:"right",right:"left",bottom:"top",top:"bottom"},ht={start:"end",end:"start"};function xt(e,t,n){return Pt(e,mt(t,n))}function wt(e,t){return"function"==typeof e?e(t):e}function Ot(e){return e.split("-")[0]}function Dt(e){return e.split("-")[1]}function Ht(e){return"x"===e?"y":"x"}function Xt(e){return"y"===e?"height":"width"}function jt(e){return["top","bottom"].includes(Ot(e))?"y":"x"}function Nt(e){return Ht(jt(e))}function Tt(e){return e.replace(/start|end/g,(e=>ht[e]))}function Bt(e){return e.replace(/left|right|bottom|top/g,(e=>yt[e]))}function Mt(e){return"number"!=typeof e?function(e){return{top:0,right:0,bottom:0,left:0,...e}}(e):{top:e,right:e,bottom:e,left:e}}function Lt(e){const{x:t,y:n,width:r,height:a}=e;return{width:r,height:a,top:n,left:t,right:t+r,bottom:n+a,x:t,y:n}}var Ct=["input:not([inert])","select:not([inert])","textarea:not([inert])","a[href]:not([inert])","button:not([inert])","[tabindex]:not(slot):not([inert])","audio[controls]:not([inert])","video[controls]:not([inert])",'[contenteditable]:not([contenteditable="false"]):not([inert])',"details>summary:first-of-type:not([inert])","details:not([inert])"].join(","),Et="undefined"==typeof Element,Zt=Et?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector,Gt=!Et&&Element.prototype.getRootNode?function(e){var t;return null==e||null===(t=e.getRootNode)||void 0===t?void 0:t.call(e)}:function(e){return null==e?void 0:e.ownerDocument},kt=function e(t,n){var r;void 0===n&&(n=!0);var a=null==t||null===(r=t.getAttribute)||void 0===r?void 0:r.call(t,"inert");return""===a||"true"===a||n&&t&&e(t.parentNode)},Wt=function e(t,n,r){for(var a=[],i=Array.from(t);i.length;){var l=i.shift();if(!kt(l,!1))if("SLOT"===l.tagName){var s=l.assignedElements(),o=e(s.length?s:l.children,!0,r);r.flatten?a.push.apply(a,o):a.push({scopeParent:l,candidates:o})}else{Zt.call(l,Ct)&&r.filter(l)&&(n||!t.includes(l))&&a.push(l);var u=l.shadowRoot||"function"==typeof r.getShadowRoot&&r.getShadowRoot(l),f=!kt(u,!1)&&(!r.shadowRootFilter||r.shadowRootFilter(l));if(u&&f){var c=e(!0===u?l.children:u.children,!0,r);r.flatten?a.push.apply(a,c):a.push({scopeParent:l,candidates:c})}else i.unshift.apply(i,l.children)}}return a},Qt=function(e){return!isNaN(parseInt(e.getAttribute("tabindex"),10))},Yt=function(e){if(!e)throw new Error("No node provided");return e.tabIndex<0&&(/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName)||function(e){var t,n=null==e||null===(t=e.getAttribute)||void 0===t?void 0:t.call(e,"contenteditable");return""===n||"true"===n}(e))&&!Qt(e)?0:e.tabIndex},It=function(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex},Rt=function(e){return"INPUT"===e.tagName},Ft=function(e){var t=e.getBoundingClientRect(),n=t.width,r=t.height;return 0===n&&0===r},St=function(e,t){return!(function(e){return function(e){return Rt(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t,n=e.form||Gt(e),r=function(e){return n.querySelectorAll('input[type="radio"][name="'+e+'"]')};if("undefined"!=typeof window&&void 0!==window.CSS&&"function"==typeof window.CSS.escape)t=r(window.CSS.escape(e.name));else try{t=r(e.name)}catch(e){return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s",e.message),!1}var a=function(e,t){for(var n=0;n<e.length;n++)if(e[n].checked&&e[n].form===t)return e[n]}(t,e.form);return!a||a===e}(e)}(t)||Yt(t)<0||!function(e,t){return!(t.disabled||kt(t)||function(e){return Rt(e)&&"hidden"===e.type}(t)||function(e,t){var n=t.displayCheck,r=t.getShadowRoot;if("hidden"===getComputedStyle(e).visibility)return!0;var a=Zt.call(e,"details>summary:first-of-type")?e.parentElement:e;if(Zt.call(a,"details:not([open]) *"))return!0;if(n&&"full"!==n&&"legacy-full"!==n){if("non-zero-area"===n)return Ft(e)}else{if("function"==typeof r){for(var i=e;e;){var l=e.parentElement,s=Gt(e);if(l&&!l.shadowRoot&&!0===r(l))return Ft(e);e=e.assignedSlot?e.assignedSlot:l||s===e.ownerDocument?l:s.host}e=i}if(function(e){var t,n,r,a,i=e&&Gt(e),l=null===(t=i)||void 0===t?void 0:t.host,s=!1;if(i&&i!==e)for(s=!!(null!==(n=l)&&void 0!==n&&null!==(r=n.ownerDocument)&&void 0!==r&&r.contains(l)||null!=e&&null!==(a=e.ownerDocument)&&void 0!==a&&a.contains(e));!s&&l;){var o,u,f;s=!(null===(u=l=null===(o=i=Gt(l))||void 0===o?void 0:o.host)||void 0===u||null===(f=u.ownerDocument)||void 0===f||!f.contains(l))}return s}(e))return!e.getClientRects().length;if("legacy-full"!==n)return!0}return!1}(t,e)||function(e){return"DETAILS"===e.tagName&&Array.prototype.slice.apply(e.children).some((function(e){return"SUMMARY"===e.tagName}))}(t)||function(e){if(/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))for(var t=e.parentElement;t;){if("FIELDSET"===t.tagName&&t.disabled){for(var n=0;n<t.children.length;n++){var r=t.children.item(n);if("LEGEND"===r.tagName)return!!Zt.call(t,"fieldset[disabled] *")||!r.contains(e)}return!0}t=t.parentElement}return!1}(t))}(e,t))},Vt=function(e){var t=parseInt(e.getAttribute("tabindex"),10);return!!(isNaN(t)||t>=0)},Jt=function e(t){var n=[],r=[];return t.forEach((function(t,a){var i=!!t.scopeParent,l=i?t.scopeParent:t,s=function(e,t){var n=Yt(e);return n<0&&t&&!Qt(e)?0:n}(l,i),o=i?e(t.candidates):l;0===s?i?n.push.apply(n,o):n.push(l):r.push({documentOrder:a,tabIndex:s,item:t,isScope:i,content:o})})),r.sort(It).reduce((function(e,t){return t.isScope?e.push.apply(e,t.content):e.push(t.content),e}),[]).concat(n)},qt=function(e,t){var n;return n=(t=t||{}).getShadowRoot?Wt([e],t.includeContainer,{filter:St.bind(null,t),flatten:!1,getShadowRoot:t.getShadowRoot,shadowRootFilter:Vt}):function(e,t,n){if(kt(e))return[];var r=Array.prototype.slice.apply(e.querySelectorAll(Ct));return t&&Zt.call(e,Ct)&&r.unshift(e),r.filter(n)}(e,t.includeContainer,St.bind(null,t)),Jt(n)},Ut=function(e,t){if(t=t||{},!e)throw new Error("No node provided");return!1!==Zt.call(e,Ct)&&St(t,e)},Kt=window.ReactDOM;function _t(e,t,n){let{reference:r,floating:a}=e;const i=jt(t),l=Nt(t),s=Xt(l),o=Ot(t),u="y"===i,f=r.x+r.width/2-a.width/2,c=r.y+r.height/2-a.height/2,d=r[s]/2-a[s]/2;let v;switch(o){case"top":v={x:f,y:r.y-a.height};break;case"bottom":v={x:f,y:r.y+r.height};break;case"right":v={x:r.x+r.width,y:c};break;case"left":v={x:r.x-a.width,y:c};break;default:v={x:r.x,y:r.y}}switch(Dt(t)){case"start":v[l]-=d*(n&&u?-1:1);break;case"end":v[l]+=d*(n&&u?-1:1)}return v}async function $t(e,t){var n;void 0===t&&(t={});const{x:r,y:a,platform:i,rects:l,elements:s,strategy:o}=e,{boundary:u="clippingAncestors",rootBoundary:f="viewport",elementContext:c="floating",altBoundary:d=!1,padding:v=0}=wt(t,e),A=Mt(v),g=s[d?"floating"===c?"reference":"floating":c],m=Lt(await i.getClippingRect({element:null==(n=await(null==i.isElement?void 0:i.isElement(g)))||n?g:g.contextElement||await(null==i.getDocumentElement?void 0:i.getDocumentElement(s.floating)),boundary:u,rootBoundary:f,strategy:o})),P="floating"===c?{x:r,y:a,width:l.floating.width,height:l.floating.height}:l.reference,b=await(null==i.getOffsetParent?void 0:i.getOffsetParent(s.floating)),p=await(null==i.isElement?void 0:i.isElement(b))&&await(null==i.getScale?void 0:i.getScale(b))||{x:1,y:1},z=Lt(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({elements:s,rect:P,offsetParent:b,strategy:o}):P);return{top:(m.top-z.top+A.top)/p.y,bottom:(z.bottom-m.bottom+A.bottom)/p.y,left:(m.left-z.left+A.left)/p.x,right:(z.right-m.right+A.right)/p.x}}function en(e){const t=Ve(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const a=ke(e),i=a?e.offsetWidth:n,l=a?e.offsetHeight:r,s=bt(n)!==i||bt(r)!==l;return s&&(n=i,r=l),{width:n,height:r,$:s}}function tn(e){return Ge(e)?e:e.contextElement}function nn(e){const t=tn(e);if(!ke(t))return zt(1);const n=t.getBoundingClientRect(),{width:r,height:a,$:i}=en(t);let l=(i?bt(n.width):n.width)/r,s=(i?bt(n.height):n.height)/a;return l&&Number.isFinite(l)||(l=1),s&&Number.isFinite(s)||(s=1),{x:l,y:s}}const rn=zt(0);function an(e){const t=Ce(e);return Fe()&&t.visualViewport?{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}:rn}function ln(e,t,n,r){void 0===t&&(t=!1),void 0===n&&(n=!1);const a=e.getBoundingClientRect(),i=tn(e);let l=zt(1);t&&(r?Ge(r)&&(l=nn(r)):l=nn(e));const s=function(e,t,n){return void 0===t&&(t=!1),!(!n||t&&n!==Ce(e))&&t}(i,n,r)?an(i):zt(0);let o=(a.left+s.x)/l.x,u=(a.top+s.y)/l.y,f=a.width/l.x,c=a.height/l.y;if(i){const e=Ce(i),t=r&&Ge(r)?Ce(r):r;let n=e,a=_e(n);for(;a&&r&&t!==n;){const e=nn(a),t=a.getBoundingClientRect(),r=Ve(a),i=t.left+(a.clientLeft+parseFloat(r.paddingLeft))*e.x,l=t.top+(a.clientTop+parseFloat(r.paddingTop))*e.y;o*=e.x,u*=e.y,f*=e.x,c*=e.y,o+=i,u+=l,n=Ce(a),a=_e(n)}}return Lt({width:f,height:c,x:o,y:u})}function sn(e){return ln(Ee(e)).left+Je(e).scrollLeft}function on(e,t,n){let r;if("viewport"===t)r=function(e,t){const n=Ce(e),r=Ee(e),a=n.visualViewport;let i=r.clientWidth,l=r.clientHeight,s=0,o=0;if(a){i=a.width,l=a.height;const e=Fe();(!e||e&&"fixed"===t)&&(s=a.offsetLeft,o=a.offsetTop)}return{width:i,height:l,x:s,y:o}}(e,n);else if("document"===t)r=function(e){const t=Ee(e),n=Je(e),r=e.ownerDocument.body,a=Pt(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=Pt(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let l=-n.scrollLeft+sn(e);const s=-n.scrollTop;return"rtl"===Ve(r).direction&&(l+=Pt(t.clientWidth,r.clientWidth)-a),{width:a,height:i,x:l,y:s}}(Ee(e));else if(Ge(t))r=function(e,t){const n=ln(e,!0,"fixed"===t),r=n.top+e.clientTop,a=n.left+e.clientLeft,i=ke(e)?nn(e):zt(1);return{width:e.clientWidth*i.x,height:e.clientHeight*i.y,x:a*i.x,y:r*i.y}}(t,n);else{const n=an(e);r={...t,x:t.x-n.x,y:t.y-n.y}}return Lt(r)}function un(e,t){const n=qe(e);return!(n===t||!Ge(n)||Se(n))&&("fixed"===Ve(n).position||un(n,t))}function fn(e,t,n){const r=ke(t),a=Ee(t),i="fixed"===n,l=ln(e,!0,i,t);let s={scrollLeft:0,scrollTop:0};const o=zt(0);if(r||!r&&!i)if(("body"!==Le(t)||Qe(a))&&(s=Je(t)),r){const e=ln(t,!0,i,t);o.x=e.x+t.clientLeft,o.y=e.y+t.clientTop}else a&&(o.x=sn(a));return{x:l.left+s.scrollLeft-o.x,y:l.top+s.scrollTop-o.y,width:l.width,height:l.height}}function cn(e){return"static"===Ve(e).position}function dn(e,t){return ke(e)&&"fixed"!==Ve(e).position?t?t(e):e.offsetParent:null}function vn(e,t){const n=Ce(e);if(Ie(e))return n;if(!ke(e)){let t=qe(e);for(;t&&!Se(t);){if(Ge(t)&&!cn(t))return t;t=qe(t)}return n}let r=dn(e,t);for(;r&&Ye(r)&&cn(r);)r=dn(r,t);return r&&Se(r)&&cn(r)&&!Re(r)?n:r||function(e){let t=qe(e);for(;ke(t)&&!Se(t);){if(Re(t))return t;if(Ie(t))return null;t=qe(t)}return null}(e)||n}const An={convertOffsetParentRelativeRectToViewportRelativeRect:function(e){let{elements:t,rect:n,offsetParent:r,strategy:a}=e;const i="fixed"===a,l=Ee(r),s=!!t&&Ie(t.floating);if(r===l||s&&i)return n;let o={scrollLeft:0,scrollTop:0},u=zt(1);const f=zt(0),c=ke(r);if((c||!c&&!i)&&(("body"!==Le(r)||Qe(l))&&(o=Je(r)),ke(r))){const e=ln(r);u=nn(r),f.x=e.x+r.clientLeft,f.y=e.y+r.clientTop}return{width:n.width*u.x,height:n.height*u.y,x:n.x*u.x-o.scrollLeft*u.x+f.x,y:n.y*u.y-o.scrollTop*u.y+f.y}},getDocumentElement:Ee,getClippingRect:function(e){let{element:t,boundary:n,rootBoundary:r,strategy:a}=e;const i=[..."clippingAncestors"===n?Ie(t)?[]:function(e,t){const n=t.get(e);if(n)return n;let r=Ke(e,[],!1).filter((e=>Ge(e)&&"body"!==Le(e))),a=null;const i="fixed"===Ve(e).position;let l=i?qe(e):e;for(;Ge(l)&&!Se(l);){const t=Ve(l),n=Re(l);n||"fixed"!==t.position||(a=null),(i?!n&&!a:!n&&"static"===t.position&&a&&["absolute","fixed"].includes(a.position)||Qe(l)&&!n&&un(e,l))?r=r.filter((e=>e!==l)):a=t,l=qe(l)}return t.set(e,r),r}(t,this._c):[].concat(n),r],l=i[0],s=i.reduce(((e,n)=>{const r=on(t,n,a);return e.top=Pt(r.top,e.top),e.right=mt(r.right,e.right),e.bottom=mt(r.bottom,e.bottom),e.left=Pt(r.left,e.left),e}),on(t,l,a));return{width:s.right-s.left,height:s.bottom-s.top,x:s.left,y:s.top}},getOffsetParent:vn,getElementRects:async function(e){const t=this.getOffsetParent||vn,n=this.getDimensions,r=await n(e.floating);return{reference:fn(e.reference,await t(e.floating),e.strategy),floating:{x:0,y:0,width:r.width,height:r.height}}},getClientRects:function(e){return Array.from(e.getClientRects())},getDimensions:function(e){const{width:t,height:n}=en(e);return{width:t,height:n}},getScale:nn,isElement:Ge,isRTL:function(e){return"rtl"===Ve(e).direction}};function gn(e,t,n,r){void 0===r&&(r={});const{ancestorScroll:a=!0,ancestorResize:i=!0,elementResize:l="function"==typeof ResizeObserver,layoutShift:s="function"==typeof IntersectionObserver,animationFrame:o=!1}=r,u=tn(e),f=a||i?[...u?Ke(u):[],...Ke(t)]:[];f.forEach((e=>{a&&e.addEventListener("scroll",n,{passive:!0}),i&&e.addEventListener("resize",n)}));const c=u&&s?function(e,t){let n,r=null;const a=Ee(e);function i(){var e;clearTimeout(n),null==(e=r)||e.disconnect(),r=null}return function l(s,o){void 0===s&&(s=!1),void 0===o&&(o=1),i();const{left:u,top:f,width:c,height:d}=e.getBoundingClientRect();if(s||t(),!c||!d)return;const v={rootMargin:-pt(f)+"px "+-pt(a.clientWidth-(u+c))+"px "+-pt(a.clientHeight-(f+d))+"px "+-pt(u)+"px",threshold:Pt(0,mt(1,o))||1};let A=!0;function g(e){const t=e[0].intersectionRatio;if(t!==o){if(!A)return l();t?l(!1,t):n=setTimeout((()=>{l(!1,1e-7)}),1e3)}A=!1}try{r=new IntersectionObserver(g,{...v,root:a.ownerDocument})}catch(e){r=new IntersectionObserver(g,v)}r.observe(e)}(!0),i}(u,n):null;let d,v=-1,A=null;l&&(A=new ResizeObserver((e=>{let[r]=e;r&&r.target===u&&A&&(A.unobserve(t),cancelAnimationFrame(v),v=requestAnimationFrame((()=>{var e;null==(e=A)||e.observe(t)}))),n()})),u&&!o&&A.observe(u),A.observe(t));let g=o?ln(e):null;return o&&function t(){const r=ln(e);!g||r.x===g.x&&r.y===g.y&&r.width===g.width&&r.height===g.height||n(),g=r,d=requestAnimationFrame(t)}(),n(),()=>{var e;f.forEach((e=>{a&&e.removeEventListener("scroll",n),i&&e.removeEventListener("resize",n)})),null==c||c(),null==(e=A)||e.disconnect(),A=null,o&&cancelAnimationFrame(d)}}const mn=function(e){return void 0===e&&(e=0),{name:"offset",options:e,async fn(t){var n,r;const{x:a,y:i,placement:l,middlewareData:s}=t,o=await async function(e,t){const{placement:n,platform:r,elements:a}=e,i=await(null==r.isRTL?void 0:r.isRTL(a.floating)),l=Ot(n),s=Dt(n),o="y"===jt(n),u=["left","top"].includes(l)?-1:1,f=i&&o?-1:1,c=wt(t,e);let{mainAxis:d,crossAxis:v,alignmentAxis:A}="number"==typeof c?{mainAxis:c,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...c};return s&&"number"==typeof A&&(v="end"===s?-1*A:A),o?{x:v*f,y:d*u}:{x:d*u,y:v*f}}(t,e);return l===(null==(n=s.offset)?void 0:n.placement)&&null!=(r=s.arrow)&&r.alignmentOffset?{}:{x:a+o.x,y:i+o.y,data:{...o,placement:l}}}}},Pn=function(e){return void 0===e&&(e={}),{name:"shift",options:e,async fn(t){const{x:n,y:r,placement:a}=t,{mainAxis:i=!0,crossAxis:l=!1,limiter:s={fn:e=>{let{x:t,y:n}=e;return{x:t,y:n}}},...o}=wt(e,t),u={x:n,y:r},f=await $t(t,o),c=jt(Ot(a)),d=Ht(c);let v=u[d],A=u[c];if(i){const e="y"===d?"bottom":"right";v=xt(v+f["y"===d?"top":"left"],v,v-f[e])}if(l){const e="y"===c?"bottom":"right";A=xt(A+f["y"===c?"top":"left"],A,A-f[e])}const g=s.fn({...t,[d]:v,[c]:A});return{...g,data:{x:g.x-n,y:g.y-r}}}}},bn=function(e){return void 0===e&&(e={}),{name:"flip",options:e,async fn(t){var n,r;const{placement:a,middlewareData:i,rects:l,initialPlacement:s,platform:o,elements:u}=t,{mainAxis:f=!0,crossAxis:c=!0,fallbackPlacements:d,fallbackStrategy:v="bestFit",fallbackAxisSideDirection:A="none",flipAlignment:g=!0,...m}=wt(e,t);if(null!=(n=i.arrow)&&n.alignmentOffset)return{};const P=Ot(a),b=jt(s),p=Ot(s)===s,z=await(null==o.isRTL?void 0:o.isRTL(u.floating)),y=d||(p||!g?[Bt(s)]:function(e){const t=Bt(e);return[Tt(e),t,Tt(t)]}(s)),h="none"!==A;!d&&h&&y.push(...function(e,t,n,r){const a=Dt(e);let i=function(e,t,n){const r=["left","right"],a=["right","left"],i=["top","bottom"],l=["bottom","top"];switch(e){case"top":case"bottom":return n?t?a:r:t?r:a;case"left":case"right":return t?i:l;default:return[]}}(Ot(e),"start"===n,r);return a&&(i=i.map((e=>e+"-"+a)),t&&(i=i.concat(i.map(Tt)))),i}(s,g,A,z));const x=[s,...y],w=await $t(t,m),O=[];let D=(null==(r=i.flip)?void 0:r.overflows)||[];if(f&&O.push(w[P]),c){const e=function(e,t,n){void 0===n&&(n=!1);const r=Dt(e),a=Nt(e),i=Xt(a);let l="x"===a?r===(n?"end":"start")?"right":"left":"start"===r?"bottom":"top";return t.reference[i]>t.floating[i]&&(l=Bt(l)),[l,Bt(l)]}(a,l,z);O.push(w[e[0]],w[e[1]])}if(D=[...D,{placement:a,overflows:O}],!O.every((e=>e<=0))){var H,X;const e=((null==(H=i.flip)?void 0:H.index)||0)+1,t=x[e];if(t)return{data:{index:e,overflows:D},reset:{placement:t}};let n=null==(X=D.filter((e=>e.overflows[0]<=0)).sort(((e,t)=>e.overflows[1]-t.overflows[1]))[0])?void 0:X.placement;if(!n)switch(v){case"bestFit":{var j;const e=null==(j=D.filter((e=>{if(h){const t=jt(e.placement);return t===b||"y"===t}return!0})).map((e=>[e.placement,e.overflows.filter((e=>e>0)).reduce(((e,t)=>e+t),0)])).sort(((e,t)=>e[1]-t[1]))[0])?void 0:j[0];e&&(n=e);break}case"initialPlacement":n=s}if(a!==n)return{reset:{placement:n}}}return{}}}},pn=function(e){return void 0===e&&(e={}),{name:"size",options:e,async fn(t){const{placement:n,rects:r,platform:a,elements:i}=t,{apply:l=(()=>{}),...s}=wt(e,t),o=await $t(t,s),u=Ot(n),f=Dt(n),c="y"===jt(n),{width:d,height:v}=r.floating;let A,g;"top"===u||"bottom"===u?(A=u,g=f===(await(null==a.isRTL?void 0:a.isRTL(i.floating))?"start":"end")?"left":"right"):(g=u,A="end"===f?"top":"bottom");const m=v-o.top-o.bottom,P=d-o.left-o.right,b=mt(v-o[A],m),p=mt(d-o[g],P),z=!t.middlewareData.shift;let y=b,h=p;if(c?h=f||z?mt(p,P):P:y=f||z?mt(b,m):m,z&&!f){const e=Pt(o.left,0),t=Pt(o.right,0),n=Pt(o.top,0),r=Pt(o.bottom,0);c?h=d-2*(0!==e||0!==t?e+t:Pt(o.left,o.right)):y=v-2*(0!==n||0!==r?n+r:Pt(o.top,o.bottom))}await l({...t,availableWidth:h,availableHeight:y});const x=await a.getDimensions(i.floating);return d!==x.width||v!==x.height?{reset:{rects:!0}}:{}}}},zn=e=>({name:"arrow",options:e,async fn(t){const{x:n,y:r,placement:a,rects:i,platform:l,elements:s,middlewareData:o}=t,{element:u,padding:f=0}=wt(e,t)||{};if(null==u)return{};const c=Mt(f),d={x:n,y:r},v=Nt(a),A=Xt(v),g=await l.getDimensions(u),m="y"===v,P=m?"top":"left",b=m?"bottom":"right",p=m?"clientHeight":"clientWidth",z=i.reference[A]+i.reference[v]-d[v]-i.floating[A],y=d[v]-i.reference[v],h=await(null==l.getOffsetParent?void 0:l.getOffsetParent(u));let x=h?h[p]:0;x&&await(null==l.isElement?void 0:l.isElement(h))||(x=s.floating[p]||i.floating[A]);const w=z/2-y/2,O=x/2-g[A]/2-1,D=mt(c[P],O),H=mt(c[b],O),X=D,j=x-g[A]-H,N=x/2-g[A]/2+w,T=xt(X,N,j),B=!o.arrow&&null!=Dt(a)&&N!==T&&i.reference[A]/2-(N<X?D:H)-g[A]/2<0,M=B?N<X?N-X:N-j:0;return{[v]:d[v]+M,data:{[v]:T,centerOffset:N-T-M,...B&&{alignmentOffset:M}},reset:B}}}),yn=(e,t,n)=>{const r=new Map,a={platform:An,...n},i={...a.platform,_c:r};return(async(e,t,n)=>{const{placement:r="bottom",strategy:a="absolute",middleware:i=[],platform:l}=n,s=i.filter(Boolean),o=await(null==l.isRTL?void 0:l.isRTL(t));let u=await l.getElementRects({reference:e,floating:t,strategy:a}),{x:f,y:c}=_t(u,r,o),d=r,v={},A=0;for(let n=0;n<s.length;n++){const{name:i,fn:g}=s[n],{x:m,y:P,data:b,reset:p}=await g({x:f,y:c,initialPlacement:r,placement:d,strategy:a,middlewareData:v,rects:u,platform:l,elements:{reference:e,floating:t}});f=null!=m?m:f,c=null!=P?P:c,v={...v,[i]:{...v[i],...b}},p&&A<=50&&(A++,"object"==typeof p&&(p.placement&&(d=p.placement),p.rects&&(u=!0===p.rects?await l.getElementRects({reference:e,floating:t,strategy:a}):p.rects),({x:f,y:c}=_t(u,d,o))),n=-1)}return{x:f,y:c,placement:d,strategy:a,middlewareData:v}})(e,t,{...a,platform:i})};var hn="undefined"!=typeof document?s.useLayoutEffect:s.useEffect;function xn(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if("function"==typeof e&&e.toString()===t.toString())return!0;let n,r,a;if(e&&t&&"object"==typeof e){if(Array.isArray(e)){if(n=e.length,n!==t.length)return!1;for(r=n;0!=r--;)if(!xn(e[r],t[r]))return!1;return!0}if(a=Object.keys(e),n=a.length,n!==Object.keys(t).length)return!1;for(r=n;0!=r--;)if(!{}.hasOwnProperty.call(t,a[r]))return!1;for(r=n;0!=r--;){const n=a[r];if(!("_owner"===n&&e.$$typeof||xn(e[n],t[n])))return!1}return!0}return e!=e&&t!=t}function wn(e){return"undefined"==typeof window?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function On(e,t){const n=wn(e);return Math.round(t*n)/n}function Dn(e){const t=s.useRef(e);return hn((()=>{t.current=e})),t}const Hn=e=>({name:"arrow",options:e,fn(t){const{element:n,padding:r}="function"==typeof e?e(t):e;return n&&(a=n,{}.hasOwnProperty.call(a,"current"))?null!=n.current?zn({element:n.current,padding:r}).fn(t):{}:n?zn({element:n,padding:r}).fn(t):{};var a}}),Xn=(e,t)=>({...mn(e),options:[e,t]}),jn=(e,t)=>({...Pn(e),options:[e,t]}),Nn=(e,t)=>({...bn(e),options:[e,t]}),Tn=(e,t)=>({...pn(e),options:[e,t]}),Bn={...s},Mn=Bn.useInsertionEffect||(e=>e());function Ln(e){const t=s.useRef((()=>{}));return Mn((()=>{t.current=e})),s.useCallback((function(){for(var e=arguments.length,n=new Array(e),r=0;r<e;r++)n[r]=arguments[r];return null==t.current?void 0:t.current(...n)}),[])}const Cn="ArrowUp",En="ArrowDown",Zn="ArrowLeft",Gn="ArrowRight";function kn(e,t,n){return Math.floor(e/t)!==n}function Wn(e,t){return t<0||t>=e.current.length}function Qn(e,t){return In(e,{disabledIndices:t})}function Yn(e,t){return In(e,{decrement:!0,startingIndex:e.current.length,disabledIndices:t})}function In(e,t){let{startingIndex:n=-1,decrement:r=!1,disabledIndices:a,amount:i=1}=void 0===t?{}:t;const l=e.current;let s=n;do{s+=r?-i:i}while(s>=0&&s<=l.length-1&&Sn(l,s,a));return s}function Rn(e,t,n,r,a){if(-1===e)return-1;const i=n.indexOf(e),l=t[e];switch(a){case"tl":return i;case"tr":return l?i+l.width-1:i;case"bl":return l?i+(l.height-1)*r:i;case"br":return n.lastIndexOf(e)}}function Fn(e,t){return t.flatMap(((t,n)=>e.includes(t)?[n]:[]))}function Sn(e,t,n){if(n)return n.includes(t);const r=e[t];return null==r||r.hasAttribute("disabled")||"true"===r.getAttribute("aria-disabled")}let Vn=0;function Jn(e,t){void 0===t&&(t={});const{preventScroll:n=!1,cancelPrevious:r=!0,sync:a=!1}=t;r&&cancelAnimationFrame(Vn);const i=()=>null==e?void 0:e.focus({preventScroll:n});a?i():Vn=requestAnimationFrame(i)}var qn="undefined"!=typeof document?s.useLayoutEffect:s.useEffect;function Un(){return Un=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Un.apply(this,arguments)}let Kn=!1,$n=0;const er=()=>"floating-ui-"+Math.random().toString(36).slice(2,6)+$n++,tr=Bn.useId||function(){const[e,t]=s.useState((()=>Kn?er():void 0));return qn((()=>{null==e&&t(er())}),[]),s.useEffect((()=>{Kn=!0}),[]),e},nr=s.forwardRef((function(e,t){const{context:{placement:n,elements:{floating:r},middlewareData:{arrow:a,shift:i}},width:l=14,height:o=7,tipRadius:u=0,strokeWidth:f=0,staticOffset:c,stroke:d,d:v,style:{transform:A,...g}={},...m}=e,P=tr(),[b,p]=s.useState(!1);if(qn((()=>{r&&"rtl"===Ve(r).direction&&p(!0)}),[r]),!r)return null;const[z,y]=n.split("-"),h="top"===z||"bottom"===z;let x=c;(h&&null!=i&&i.x||!h&&null!=i&&i.y)&&(x=null);const w=2*f,O=w/2,D=l/2*(u/-8+1),H=o/2*u/4,X=!!v,j=x&&"end"===y?"bottom":"top";let N=x&&"end"===y?"right":"left";x&&b&&(N="end"===y?"left":"right");const T=null!=(null==a?void 0:a.x)?x||a.x:"",B=null!=(null==a?void 0:a.y)?x||a.y:"",M=v||"M0,0 H"+l+" L"+(l-D)+","+(o-H)+" Q"+l/2+","+o+" "+D+","+(o-H)+" Z",L={top:X?"rotate(180deg)":"",left:X?"rotate(90deg)":"rotate(-90deg)",bottom:X?"":"rotate(180deg)",right:X?"rotate(-90deg)":"rotate(90deg)"}[z];return s.createElement("svg",Un({},m,{"aria-hidden":!0,ref:t,width:X?l:l+w,height:l,viewBox:"0 0 "+l+" "+(o>l?o:l),style:{position:"absolute",pointerEvents:"none",[N]:T,[j]:B,[z]:h||X?"100%":"calc(100% - "+w/2+"px)",transform:""+L+(null!=A?A:""),...g}}),w>0&&s.createElement("path",{clipPath:"url(#"+P+")",fill:"none",stroke:d,strokeWidth:w+(v?0:1),d:M}),s.createElement("path",{stroke:w&&!v?m.fill:"none",d:M}),s.createElement("clipPath",{id:P},s.createElement("rect",{x:-O,y:O*(X?-1:1),width:l+w,height:l})))})),rr=s.createContext(null),ar=s.createContext(null),ir=()=>{var e;return(null==(e=s.useContext(rr))?void 0:e.id)||null},lr=()=>s.useContext(ar);function sr(e){return"data-floating-ui-"+e}function or(e){const t=(0,s.useRef)(e);return qn((()=>{t.current=e})),t}const ur=sr("safe-polygon");function fr(e,t,n){return n&&!ot(n)?0:"number"==typeof e?e:null==e?void 0:e[t]}function cr(e,t){let n=e.filter((e=>{var n;return e.parentId===t&&(null==(n=e.context)?void 0:n.open)})),r=n;for(;r.length;)r=e.filter((e=>{var t;return null==(t=r)?void 0:t.some((t=>{var n;return e.parentId===t.id&&(null==(n=e.context)?void 0:n.open)}))})),n=n.concat(r);return n}let dr=new WeakMap,vr=new WeakSet,Ar={},gr=0;const mr=()=>"undefined"!=typeof HTMLElement&&"inert"in HTMLElement.prototype,Pr=e=>e&&(e.host||Pr(e.parentNode)),br=(e,t)=>t.map((t=>{if(e.contains(t))return t;const n=Pr(t);return e.contains(n)?n:null})).filter((e=>null!=e));function pr(e,t,n){void 0===t&&(t=!1),void 0===n&&(n=!1);const r=ut(e[0]).body;return function(e,t,n,r){const a="data-floating-ui-inert",i=r?"inert":n?"aria-hidden":null,l=br(t,e),s=new Set,o=new Set(l),u=[];Ar[a]||(Ar[a]=new WeakMap);const f=Ar[a];return l.forEach((function e(t){t&&!s.has(t)&&(s.add(t),t.parentNode&&e(t.parentNode))})),function e(t){t&&!o.has(t)&&[].forEach.call(t.children,(t=>{if("script"!==Le(t))if(s.has(t))e(t);else{const e=i?t.getAttribute(i):null,n=null!==e&&"false"!==e,r=(dr.get(t)||0)+1,l=(f.get(t)||0)+1;dr.set(t,r),f.set(t,l),u.push(t),1===r&&n&&vr.add(t),1===l&&t.setAttribute(a,""),!n&&i&&t.setAttribute(i,"true")}}))}(t),s.clear(),gr++,()=>{u.forEach((e=>{const t=(dr.get(e)||0)-1,n=(f.get(e)||0)-1;dr.set(e,t),f.set(e,n),t||(!vr.has(e)&&i&&e.removeAttribute(i),vr.delete(e)),n||e.removeAttribute(a)})),gr--,gr||(dr=new WeakMap,dr=new WeakMap,vr=new WeakSet,Ar={})}}(e.concat(Array.from(r.querySelectorAll("[aria-live]"))),r,t,n)}const zr=()=>({getShadowRoot:!0,displayCheck:"function"==typeof ResizeObserver&&ResizeObserver.toString().includes("[native code]")?"full":"none"});function yr(e,t){const n=qt(e,zr());"prev"===t&&n.reverse();const r=n.indexOf($e(ut(e)));return n.slice(r+1)[0]}function hr(){return yr(document.body,"next")}function xr(){return yr(document.body,"prev")}function wr(e,t){const n=t||e.currentTarget,r=e.relatedTarget;return!r||!et(n,r)}function Or(e){qt(e,zr()).forEach((e=>{e.dataset.tabindex=e.getAttribute("tabindex")||"",e.setAttribute("tabindex","-1")}))}function Dr(e){e.querySelectorAll("[data-tabindex]").forEach((e=>{const t=e.dataset.tabindex;delete e.dataset.tabindex,t?e.setAttribute("tabindex",t):e.removeAttribute("tabindex")}))}const Hr={border:0,clip:"rect(0 0 0 0)",height:"1px",margin:"-1px",overflow:"hidden",padding:0,position:"fixed",whiteSpace:"nowrap",width:"1px",top:0,left:0};function Xr(e){"Tab"===e.key&&(e.target,clearTimeout(void 0))}const jr=s.forwardRef((function(e,t){const[n,r]=s.useState();qn((()=>(it()&&r("button"),document.addEventListener("keydown",Xr),()=>{document.removeEventListener("keydown",Xr)})),[]);const a={ref:t,tabIndex:0,role:n,"aria-hidden":!n||void 0,[sr("focus-guard")]:"",style:Hr};return s.createElement("span",Un({},e,a))})),Nr=s.createContext(null),Tr=sr("portal");function Br(e){const{children:t,id:n,root:r=null,preserveTabOrder:a=!0}=e,i=function(e){void 0===e&&(e={});const{id:t,root:n}=e,r=tr(),a=Mr(),[i,l]=s.useState(null),o=s.useRef(null);return qn((()=>()=>{null==i||i.remove(),queueMicrotask((()=>{o.current=null}))}),[i]),qn((()=>{if(!r)return;if(o.current)return;const e=t?document.getElementById(t):null;if(!e)return;const n=document.createElement("div");n.id=r,n.setAttribute(Tr,""),e.appendChild(n),o.current=n,l(n)}),[t,r]),qn((()=>{if(!r)return;if(o.current)return;let e=n||(null==a?void 0:a.portalNode);e&&!Ge(e)&&(e=e.current),e=e||document.body;let i=null;t&&(i=document.createElement("div"),i.id=t,e.appendChild(i));const s=document.createElement("div");s.id=r,s.setAttribute(Tr,""),e=i||e,e.appendChild(s),o.current=s,l(s)}),[t,n,r,a]),i}({id:n,root:r}),[l,o]=s.useState(null),u=s.useRef(null),f=s.useRef(null),c=s.useRef(null),d=s.useRef(null),v=null==l?void 0:l.modal,A=null==l?void 0:l.open,g=!!l&&!l.modal&&l.open&&a&&!(!r&&!i);return s.useEffect((()=>{if(i&&a&&!v)return i.addEventListener("focusin",e,!0),i.addEventListener("focusout",e,!0),()=>{i.removeEventListener("focusin",e,!0),i.removeEventListener("focusout",e,!0)};function e(e){i&&wr(e)&&("focusin"===e.type?Dr:Or)(i)}}),[i,a,v]),s.useEffect((()=>{i&&(A||Dr(i))}),[A,i]),s.createElement(Nr.Provider,{value:s.useMemo((()=>({preserveTabOrder:a,beforeOutsideRef:u,afterOutsideRef:f,beforeInsideRef:c,afterInsideRef:d,portalNode:i,setFocusManagerState:o})),[a,i])},g&&i&&s.createElement(jr,{"data-type":"outside",ref:u,onFocus:e=>{if(wr(e,i)){var t;null==(t=c.current)||t.focus()}else{const e=xr()||(null==l?void 0:l.refs.domReference.current);null==e||e.focus()}}}),g&&i&&s.createElement("span",{"aria-owns":i.id,style:Hr}),i&&Kt.createPortal(t,i),g&&i&&s.createElement(jr,{"data-type":"outside",ref:f,onFocus:e=>{if(wr(e,i)){var t;null==(t=d.current)||t.focus()}else{const t=hr()||(null==l?void 0:l.refs.domReference.current);null==t||t.focus(),(null==l?void 0:l.closeOnFocusOut)&&(null==l||l.onOpenChange(!1,e.nativeEvent,"focus-out"))}}}))}const Mr=()=>s.useContext(Nr),Lr="data-floating-ui-focusable";function Cr(e){return e?e.hasAttribute(Lr)?e:e.querySelector("["+Lr+"]")||e:null}const Er=20;let Zr=[];function Gr(e){Zr=Zr.filter((e=>e.isConnected));let t=e;if(t&&"body"!==Le(t)){if(!Ut(t,zr())){const e=qt(t,zr())[0];e&&(t=e)}Zr.push(t),Zr.length>Er&&(Zr=Zr.slice(-Er))}}function kr(){return Zr.slice().reverse().find((e=>e.isConnected))}const Wr=s.forwardRef((function(e,t){return s.createElement("button",Un({},e,{type:"button",ref:t,tabIndex:-1,style:Hr}))}));function Qr(e){const{context:t,children:n,disabled:r=!1,order:a=["content"],guards:i=!0,initialFocus:l=0,returnFocus:o=!0,restoreFocus:u=!1,modal:f=!0,visuallyHiddenDismiss:c=!1,closeOnFocusOut:d=!0}=e,{open:v,refs:A,nodeId:g,onOpenChange:m,events:P,dataRef:b,floatingId:p,elements:{domReference:z,floating:y}}=t,h="number"==typeof l&&l<0,x=gt(z)&&h,w=!mr()||i,O=or(a),D=or(l),H=or(o),X=lr(),j=Mr(),N=s.useRef(null),T=s.useRef(null),B=s.useRef(!1),M=s.useRef(!1),L=s.useRef(-1),C=null!=j,E=Cr(y),Z=Ln((function(e){return void 0===e&&(e=E),e?qt(e,zr()):[]})),G=Ln((e=>{const t=Z(e);return O.current.map((e=>z&&"reference"===e?z:E&&"floating"===e?E:t)).filter(Boolean).flat()}));function k(e){return!r&&c&&f?s.createElement(Wr,{ref:"start"===e?N:T,onClick:e=>m(!1,e.nativeEvent)},"string"==typeof c?c:"Dismiss"):null}s.useEffect((()=>{B.current=!1}),[r]),s.useEffect((()=>{if(r)return;if(!f)return;function e(e){if("Tab"===e.key){et(E,$e(ut(E)))&&0===Z().length&&!x&&At(e);const t=G(),n=ct(e);"reference"===O.current[0]&&n===z&&(At(e),e.shiftKey?Jn(t[t.length-1]):Jn(t[1])),"floating"===O.current[1]&&n===E&&e.shiftKey&&(At(e),Jn(t[0]))}}const t=ut(E);return t.addEventListener("keydown",e),()=>{t.removeEventListener("keydown",e)}}),[r,z,E,f,O,x,Z,G]),s.useEffect((()=>{if(!r&&y)return y.addEventListener("focusin",e),()=>{y.removeEventListener("focusin",e)};function e(e){const t=ct(e),n=Z().indexOf(t);-1!==n&&(L.current=n)}}),[r,y,Z]),s.useEffect((()=>{if(!r&&d)return y&&ke(z)?(z.addEventListener("focusout",t),z.addEventListener("pointerdown",e),y.addEventListener("focusout",t),()=>{z.removeEventListener("focusout",t),z.removeEventListener("pointerdown",e),y.removeEventListener("focusout",t)}):void 0;function e(){M.current=!0,setTimeout((()=>{M.current=!1}))}function t(e){const t=e.relatedTarget;queueMicrotask((()=>{const n=!(et(z,t)||et(y,t)||et(t,y)||et(null==j?void 0:j.portalNode,t)||null!=t&&t.hasAttribute(sr("focus-guard"))||X&&(cr(X.nodesRef.current,g).find((e=>{var n,r;return et(null==(n=e.context)?void 0:n.elements.floating,t)||et(null==(r=e.context)?void 0:r.elements.domReference,t)}))||function(e,t){var n;let r=[],a=null==(n=e.find((e=>e.id===t)))?void 0:n.parentId;for(;a;){const t=e.find((e=>e.id===a));a=null==t?void 0:t.parentId,t&&(r=r.concat(t))}return r}(X.nodesRef.current,g).find((e=>{var n,r;return(null==(n=e.context)?void 0:n.elements.floating)===t||(null==(r=e.context)?void 0:r.elements.domReference)===t}))));if(u&&n&&$e(ut(E))===ut(E).body){ke(E)&&E.focus();const e=L.current,t=Z(),n=t[e]||t[t.length-1]||E;ke(n)&&n.focus()}!x&&f||!t||!n||M.current||t===kr()||(B.current=!0,m(!1,e,"focus-out"))}))}}),[r,z,y,E,f,g,X,j,m,d,u,Z,x]),s.useEffect((()=>{var e;if(r)return;const t=Array.from((null==j||null==(e=j.portalNode)?void 0:e.querySelectorAll("["+sr("portal")+"]"))||[]);if(y){const e=[y,...t,N.current,T.current,O.current.includes("reference")||x?z:null].filter((e=>null!=e)),n=f||x?pr(e,w,!w):pr(e);return()=>{n()}}}),[r,z,y,f,O,j,x,w]),qn((()=>{if(r||!ke(E))return;const e=$e(ut(E));queueMicrotask((()=>{const t=G(E),n=D.current,r=("number"==typeof n?t[n]:n.current)||E,a=et(E,e);h||a||!v||Jn(r,{preventScroll:r===E})}))}),[r,v,E,h,G,D]),qn((()=>{if(r||!E)return;let e=!1;const t=ut(E),n=$e(t);let a=b.current.openEvent;const i=A.domReference.current;function l(t){let{open:n,reason:r,event:i,nested:l}=t;n&&(a=i),"escape-key"===r&&A.domReference.current&&Gr(A.domReference.current),"hover"===r&&"mouseleave"===i.type&&(B.current=!0),"outside-press"===r&&(l?(B.current=!1,e=!0):B.current=!(rt(i)||at(i)))}return Gr(n),P.on("openchange",l),()=>{P.off("openchange",l);const r=$e(t),s=et(y,r)||X&&cr(X.nodesRef.current,g).some((e=>{var t;return et(null==(t=e.context)?void 0:t.elements.floating,r)}));(s||a&&["click","mousedown"].includes(a.type))&&A.domReference.current&&Gr(A.domReference.current);const o=i||n,u=qt(ut(o).body,zr());queueMicrotask((()=>{let n=kr();!n&&ke(o)&&y&&(n=function(e,t,n){const r=e.indexOf(t);function a(t){const a=sr("focus-guard");let i=r+(t?1:0),l=e[i];for(;l&&(!l.isConnected||l.hasAttribute(a)||et(n,l));)t?i++:i--,l=e[i];return l}return a(!0)||a(!1)}(u,o,y)),H.current&&!B.current&&ke(n)&&(n===r||r===t.body||s)&&n.focus({preventScroll:e})}))}}),[r,y,E,H,b,A,P,X,g]),qn((()=>{if(!r&&j)return j.setFocusManagerState({modal:f,closeOnFocusOut:d,open:v,onOpenChange:m,refs:A}),()=>{j.setFocusManagerState(null)}}),[r,j,f,v,m,A,d]),qn((()=>{if(r)return;if(!E)return;if("function"!=typeof MutationObserver)return;if(h)return;const e=()=>{const e=E.getAttribute("tabindex"),t=Z(),n=$e(ut(y)),r=t.indexOf(n);-1!==r&&(L.current=r),O.current.includes("floating")||n!==A.domReference.current&&0===t.length?"0"!==e&&E.setAttribute("tabindex","0"):"-1"!==e&&E.setAttribute("tabindex","-1")};e();const t=new MutationObserver(e);return t.observe(E,{childList:!0,subtree:!0,attributes:!0}),()=>{t.disconnect()}}),[r,y,E,A,O,Z,h]);const W=!r&&w&&(!f||!x)&&(C||f);return s.createElement(s.Fragment,null,W&&s.createElement(jr,{"data-type":"inside",ref:null==j?void 0:j.beforeInsideRef,onFocus:e=>{if(f){const e=G();Jn("reference"===a[0]?e[0]:e[e.length-1])}else if(null!=j&&j.preserveTabOrder&&j.portalNode)if(B.current=!1,wr(e,j.portalNode)){const e=hr()||z;null==e||e.focus()}else{var t;null==(t=j.beforeOutsideRef.current)||t.focus()}}}),!x&&k("start"),n,k("end"),W&&s.createElement(jr,{"data-type":"inside",ref:null==j?void 0:j.afterInsideRef,onFocus:e=>{if(f)Jn(G()[0]);else if(null!=j&&j.preserveTabOrder&&j.portalNode)if(d&&(B.current=!0),wr(e,j.portalNode)){const e=xr()||z;null==e||e.focus()}else{var t;null==(t=j.afterOutsideRef.current)||t.focus()}}}))}function Yr(e){return ke(e.target)&&"BUTTON"===e.target.tagName}function Ir(e){return vt(e)}function Rr(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:a,elements:{domReference:i}}=e,{enabled:l=!0,event:o="click",toggle:u=!0,ignoreMouse:f=!1,keyboardHandlers:c=!0}=t,d=s.useRef(),v=s.useRef(!1),A=s.useMemo((()=>({onPointerDown(e){d.current=e.pointerType},onMouseDown(e){const t=d.current;0===e.button&&"click"!==o&&(ot(t,!0)&&f||(!n||!u||a.current.openEvent&&"mousedown"!==a.current.openEvent.type?(e.preventDefault(),r(!0,e.nativeEvent,"click")):r(!1,e.nativeEvent,"click")))},onClick(e){const t=d.current;"mousedown"===o&&d.current?d.current=void 0:ot(t,!0)&&f||(!n||!u||a.current.openEvent&&"click"!==a.current.openEvent.type?r(!0,e.nativeEvent,"click"):r(!1,e.nativeEvent,"click"))},onKeyDown(e){d.current=void 0,e.defaultPrevented||!c||Yr(e)||(" "!==e.key||Ir(i)||(e.preventDefault(),v.current=!0),"Enter"===e.key&&r(!n||!u,e.nativeEvent,"click"))},onKeyUp(e){e.defaultPrevented||!c||Yr(e)||Ir(i)||" "===e.key&&v.current&&(v.current=!1,r(!n||!u,e.nativeEvent,"click"))}})),[a,i,o,f,c,r,n,u]);return s.useMemo((()=>l?{reference:A}:{}),[l,A])}const Fr={pointerdown:"onPointerDown",mousedown:"onMouseDown",click:"onClick"},Sr={pointerdown:"onPointerDownCapture",mousedown:"onMouseDownCapture",click:"onClickCapture"},Vr=e=>{var t,n;return{escapeKey:"boolean"==typeof e?e:null!=(t=null==e?void 0:e.escapeKey)&&t,outsidePress:"boolean"==typeof e?e:null==(n=null==e?void 0:e.outsidePress)||n}};function Jr(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,elements:a,dataRef:i}=e,{enabled:l=!0,escapeKey:o=!0,outsidePress:u=!0,outsidePressEvent:f="pointerdown",referencePress:c=!1,referencePressEvent:d="pointerdown",ancestorScroll:v=!1,bubbles:A,capture:g}=t,m=lr(),P=Ln("function"==typeof u?u:()=>!1),b="function"==typeof u?P:u,p=s.useRef(!1),z=s.useRef(!1),{escapeKey:y,outsidePress:h}=Vr(A),{escapeKey:x,outsidePress:w}=Vr(g),O=Ln((e=>{var t;if(!n||!l||!o||"Escape"!==e.key)return;const a=null==(t=i.current.floatingContext)?void 0:t.nodeId,s=m?cr(m.nodesRef.current,a):[];if(!y&&(e.stopPropagation(),s.length>0)){let e=!0;if(s.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__escapeKeyBubbles||(e=!1)})),!e)return}r(!1,function(e){return"nativeEvent"in e}(e)?e.nativeEvent:e,"escape-key")})),D=Ln((e=>{var t;const n=()=>{var t;O(e),null==(t=ct(e))||t.removeEventListener("keydown",n)};null==(t=ct(e))||t.addEventListener("keydown",n)})),H=Ln((e=>{var t;const n=p.current;p.current=!1;const l=z.current;if(z.current=!1,"click"===f&&l)return;if(n)return;if("function"==typeof b&&!b(e))return;const s=ct(e),o="["+sr("inert")+"]",u=ut(a.floating).querySelectorAll(o);let c=Ge(s)?s:null;for(;c&&!Se(c);){const e=qe(c);if(Se(e)||!Ge(e))break;c=e}if(u.length&&Ge(s)&&!s.matches("html,body")&&!et(s,a.floating)&&Array.from(u).every((e=>!et(c,e))))return;if(ke(s)&&N){const t=s.clientWidth>0&&s.scrollWidth>s.clientWidth,n=s.clientHeight>0&&s.scrollHeight>s.clientHeight;let r=n&&e.offsetX>s.clientWidth;if(n&&"rtl"===Ve(s).direction&&(r=e.offsetX<=s.offsetWidth-s.clientWidth),r||t&&e.offsetY>s.clientHeight)return}const d=null==(t=i.current.floatingContext)?void 0:t.nodeId,v=m&&cr(m.nodesRef.current,d).some((t=>{var n;return ft(e,null==(n=t.context)?void 0:n.elements.floating)}));if(ft(e,a.floating)||ft(e,a.domReference)||v)return;const A=m?cr(m.nodesRef.current,d):[];if(A.length>0){let e=!0;if(A.forEach((t=>{var n;null==(n=t.context)||!n.open||t.context.dataRef.current.__outsidePressBubbles||(e=!1)})),!e)return}r(!1,e,"outside-press")})),X=Ln((e=>{var t;const n=()=>{var t;H(e),null==(t=ct(e))||t.removeEventListener(f,n)};null==(t=ct(e))||t.addEventListener(f,n)}));s.useEffect((()=>{if(!n||!l)return;function e(e){r(!1,e,"ancestor-scroll")}i.current.__escapeKeyBubbles=y,i.current.__outsidePressBubbles=h;const t=ut(a.floating);o&&t.addEventListener("keydown",x?D:O,x),b&&t.addEventListener(f,w?X:H,w);let s=[];return v&&(Ge(a.domReference)&&(s=Ke(a.domReference)),Ge(a.floating)&&(s=s.concat(Ke(a.floating))),!Ge(a.reference)&&a.reference&&a.reference.contextElement&&(s=s.concat(Ke(a.reference.contextElement)))),s=s.filter((e=>{var n;return e!==(null==(n=t.defaultView)?void 0:n.visualViewport)})),s.forEach((t=>{t.addEventListener("scroll",e,{passive:!0})})),()=>{o&&t.removeEventListener("keydown",x?D:O,x),b&&t.removeEventListener(f,w?X:H,w),s.forEach((t=>{t.removeEventListener("scroll",e)}))}}),[i,a,o,b,f,n,r,v,l,y,h,O,x,D,H,w,X]),s.useEffect((()=>{p.current=!1}),[b,f]);const j=s.useMemo((()=>({onKeyDown:O,[Fr[d]]:e=>{c&&r(!1,e.nativeEvent,"reference-press")}})),[O,r,c,d]),N=s.useMemo((()=>({onKeyDown:O,onMouseDown(){z.current=!0},onMouseUp(){z.current=!0},[Sr[f]]:()=>{p.current=!0}})),[O,f]);return s.useMemo((()=>l?{reference:j,floating:N}:{}),[l,j,N])}function qr(e){void 0===e&&(e={});const{nodeId:t}=e,n=function(e){const{open:t=!1,onOpenChange:n,elements:r}=e,a=tr(),i=s.useRef({}),[l]=s.useState((()=>function(){const e=new Map;return{emit(t,n){var r;null==(r=e.get(t))||r.forEach((e=>e(n)))},on(t,n){e.set(t,[...e.get(t)||[],n])},off(t,n){var r;e.set(t,(null==(r=e.get(t))?void 0:r.filter((e=>e!==n)))||[])}}}())),o=null!=ir(),[u,f]=s.useState(r.reference),c=Ln(((e,t,r)=>{i.current.openEvent=e?t:void 0,l.emit("openchange",{open:e,event:t,reason:r,nested:o}),null==n||n(e,t,r)})),d=s.useMemo((()=>({setPositionReference:f})),[]),v=s.useMemo((()=>({reference:u||r.reference||null,floating:r.floating||null,domReference:r.reference})),[u,r.reference,r.floating]);return s.useMemo((()=>({dataRef:i,open:t,onOpenChange:c,elements:v,events:l,floatingId:a,refs:d})),[t,c,v,l,a,d])}({...e,elements:{reference:null,floating:null,...e.elements}}),r=e.rootContext||n,a=r.elements,[i,l]=s.useState(null),[o,u]=s.useState(null),f=(null==a?void 0:a.reference)||i,c=s.useRef(null),d=lr();qn((()=>{f&&(c.current=f)}),[f]);const v=function(e){void 0===e&&(e={});const{placement:t="bottom",strategy:n="absolute",middleware:r=[],platform:a,elements:{reference:i,floating:l}={},transform:o=!0,whileElementsMounted:u,open:f}=e,[c,d]=s.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[v,A]=s.useState(r);xn(v,r)||A(r);const[g,m]=s.useState(null),[P,b]=s.useState(null),p=s.useCallback((e=>{e!==x.current&&(x.current=e,m(e))}),[]),z=s.useCallback((e=>{e!==w.current&&(w.current=e,b(e))}),[]),y=i||g,h=l||P,x=s.useRef(null),w=s.useRef(null),O=s.useRef(c),D=null!=u,H=Dn(u),X=Dn(a),j=s.useCallback((()=>{if(!x.current||!w.current)return;const e={placement:t,strategy:n,middleware:v};X.current&&(e.platform=X.current),yn(x.current,w.current,e).then((e=>{const t={...e,isPositioned:!0};N.current&&!xn(O.current,t)&&(O.current=t,Kt.flushSync((()=>{d(t)})))}))}),[v,t,n,X]);hn((()=>{!1===f&&O.current.isPositioned&&(O.current.isPositioned=!1,d((e=>({...e,isPositioned:!1}))))}),[f]);const N=s.useRef(!1);hn((()=>(N.current=!0,()=>{N.current=!1})),[]),hn((()=>{if(y&&(x.current=y),h&&(w.current=h),y&&h){if(H.current)return H.current(y,h,j);j()}}),[y,h,j,H,D]);const T=s.useMemo((()=>({reference:x,floating:w,setReference:p,setFloating:z})),[p,z]),B=s.useMemo((()=>({reference:y,floating:h})),[y,h]),M=s.useMemo((()=>{const e={position:n,left:0,top:0};if(!B.floating)return e;const t=On(B.floating,c.x),r=On(B.floating,c.y);return o?{...e,transform:"translate("+t+"px, "+r+"px)",...wn(B.floating)>=1.5&&{willChange:"transform"}}:{position:n,left:t,top:r}}),[n,o,B.floating,c.x,c.y]);return s.useMemo((()=>({...c,update:j,refs:T,elements:B,floatingStyles:M})),[c,j,T,B,M])}({...e,elements:{...a,...o&&{reference:o}}}),A=s.useCallback((e=>{const t=Ge(e)?{getBoundingClientRect:()=>e.getBoundingClientRect(),contextElement:e}:e;u(t),v.refs.setReference(t)}),[v.refs]),g=s.useCallback((e=>{(Ge(e)||null===e)&&(c.current=e,l(e)),(Ge(v.refs.reference.current)||null===v.refs.reference.current||null!==e&&!Ge(e))&&v.refs.setReference(e)}),[v.refs]),m=s.useMemo((()=>({...v.refs,setReference:g,setPositionReference:A,domReference:c})),[v.refs,g,A]),P=s.useMemo((()=>({...v.elements,domReference:f})),[v.elements,f]),b=s.useMemo((()=>({...v,...r,refs:m,elements:P,nodeId:t})),[v,m,P,t,r]);return qn((()=>{r.dataRef.current.floatingContext=b;const e=null==d?void 0:d.nodesRef.current.find((e=>e.id===t));e&&(e.context=b)})),s.useMemo((()=>({...v,context:b,refs:m,elements:P})),[v,m,P,b])}const Ur="active",Kr="selected";function _r(e,t,n){const r=new Map,a="item"===n;let i=e;if(a&&e){const{[Ur]:t,[Kr]:__,...n}=e;i=n}return{..."floating"===n&&{tabIndex:-1,[Lr]:""},...i,...t.map((t=>{const r=t?t[n]:null;return"function"==typeof r?e?r(e):null:r})).concat(e).reduce(((e,t)=>t?(Object.entries(t).forEach((t=>{let[n,i]=t;var l;a&&[Ur,Kr].includes(n)||(0===n.indexOf("on")?(r.has(n)||r.set(n,[]),"function"==typeof i&&(null==(l=r.get(n))||l.push(i),e[n]=function(){for(var e,t=arguments.length,a=new Array(t),i=0;i<t;i++)a[i]=arguments[i];return null==(e=r.get(n))?void 0:e.map((e=>e(...a))).find((e=>void 0!==e))})):e[n]=i)})),e):e),{})}}function $r(e){void 0===e&&(e=[]);const t=e.map((e=>null==e?void 0:e.reference)),n=e.map((e=>null==e?void 0:e.floating)),r=e.map((e=>null==e?void 0:e.item)),a=s.useCallback((t=>_r(t,e,"reference")),t),i=s.useCallback((t=>_r(t,e,"floating")),n),l=s.useCallback((t=>_r(t,e,"item")),r);return s.useMemo((()=>({getReferenceProps:a,getFloatingProps:i,getItemProps:l})),[a,i,l])}let ea=!1;function ta(e,t,n){switch(e){case"vertical":return t;case"horizontal":return n;default:return t||n}}function na(e,t){return ta(t,e===Cn||e===En,e===Zn||e===Gn)}function ra(e,t,n){return ta(t,e===En,n?e===Zn:e===Gn)||"Enter"===e||" "===e||""===e}function aa(e,t,n){return ta(t,n?e===Gn:e===Zn,e===Cn)}const ia=new Map([["select","listbox"],["combobox","listbox"],["label",!1]]);function la(e,t){var n;void 0===t&&(t={});const{open:r,floatingId:a}=e,{enabled:i=!0,role:l="dialog"}=t,o=null!=(n=ia.get(l))?n:l,u=tr(),f=null!=ir(),c=s.useMemo((()=>"tooltip"===o||"label"===l?{["aria-"+("label"===l?"labelledby":"describedby")]:r?a:void 0}:{"aria-expanded":r?"true":"false","aria-haspopup":"alertdialog"===o?"dialog":o,"aria-controls":r?a:void 0,..."listbox"===o&&{role:"combobox"},..."menu"===o&&{id:u},..."menu"===o&&f&&{role:"menuitem"},..."select"===l&&{"aria-autocomplete":"none"},..."combobox"===l&&{"aria-autocomplete":"list"}}),[o,a,f,r,u,l]),d=s.useMemo((()=>{const e={id:a,...o&&{role:o}};return"tooltip"===o||"label"===l?e:{...e,..."menu"===o&&{"aria-labelledby":u}}}),[o,a,u,l]),v=s.useCallback((e=>{let{active:t,selected:n}=e;const r={role:"option",...t&&{id:a+"-option"}};switch(l){case"select":return{...r,"aria-selected":t&&n};case"combobox":return{...r,...t&&{"aria-selected":!0}}}return{}}),[a,l]);return s.useMemo((()=>i?{reference:c,floating:d,item:v}:{}),[i,c,d,v])}const sa=e=>e.replace(/[A-Z]+(?![a-z])|[A-Z]/g,((e,t)=>(t?"-":"")+e.toLowerCase()));function oa(e,t){return"function"==typeof e?e(t):e}function ua(e,t){void 0===t&&(t={});const{initial:n={opacity:0},open:r,close:a,common:i,duration:l=250}=t,o=e.placement,u=o.split("-")[0],f=s.useMemo((()=>({side:u,placement:o})),[u,o]),c="number"==typeof l,d=(c?l:l.open)||0,v=(c?l:l.close)||0,[A,g]=s.useState((()=>({...oa(i,f),...oa(n,f)}))),{isMounted:m,status:P}=function(e,t){void 0===t&&(t={});const{open:n,elements:{floating:r}}=e,{duration:a=250}=t,i=("number"==typeof a?a:a.close)||0,[l,o]=s.useState("unmounted"),u=function(e,t){const[n,r]=s.useState(e);return e&&!n&&r(!0),s.useEffect((()=>{if(!e&&n){const e=setTimeout((()=>r(!1)),t);return()=>clearTimeout(e)}}),[e,n,t]),n}(n,i);return u||"close"!==l||o("unmounted"),qn((()=>{if(r){if(n){o("initial");const e=requestAnimationFrame((()=>{o("open")}));return()=>{cancelAnimationFrame(e)}}o("close")}}),[n,r]),{isMounted:u,status:l}}(e,{duration:l}),b=or(n),p=or(r),z=or(a),y=or(i);return qn((()=>{const e=oa(b.current,f),t=oa(z.current,f),n=oa(y.current,f),r=oa(p.current,f)||Object.keys(e).reduce(((e,t)=>(e[t]="",e)),{});if("initial"===P&&g((t=>({transitionProperty:t.transitionProperty,...n,...e}))),"open"===P&&g({transitionProperty:Object.keys(r).map(sa).join(","),transitionDuration:d+"ms",...n,...r}),"close"===P){const r=t||e;g({transitionProperty:Object.keys(r).map(sa).join(","),transitionDuration:v+"ms",...n,...r})}}),[v,z,b,p,y,d,P,f]),{isMounted:m,styles:A}}function fa(e,t){const[n,r]=e;let a=!1;const i=t.length;for(let e=0,l=i-1;e<i;l=e++){const[i,s]=t[e]||[0,0],[o,u]=t[l]||[0,0];s>=r!=u>=r&&n<=(o-i)*(r-s)/(u-s)+i&&(a=!a)}return a}function ca(e){void 0===e&&(e={});const{buffer:t=.5,blockPointerEvents:n=!1,requireIntent:r=!0}=e;let a,i=!1,l=null,s=null,o=performance.now();const u=e=>{let{x:n,y:u,placement:f,elements:c,onClose:d,nodeId:v,tree:A}=e;return function(e){function g(){clearTimeout(a),d()}if(clearTimeout(a),!c.domReference||!c.floating||null==f||null==n||null==u)return;const{clientX:m,clientY:P}=e,b=[m,P],p=ct(e),z="mouseleave"===e.type,y=et(c.floating,p),h=et(c.domReference,p),x=c.domReference.getBoundingClientRect(),w=c.floating.getBoundingClientRect(),O=f.split("-")[0],D=n>w.right-w.width/2,H=u>w.bottom-w.height/2,X=function(e,t){return e[0]>=t.x&&e[0]<=t.x+t.width&&e[1]>=t.y&&e[1]<=t.y+t.height}(b,x),j=w.width>x.width,N=w.height>x.height,T=(j?x:w).left,B=(j?x:w).right,M=(N?x:w).top,L=(N?x:w).bottom;if(y&&(i=!0,!z))return;if(h&&(i=!1),h&&!z)return void(i=!0);if(z&&Ge(e.relatedTarget)&&et(c.floating,e.relatedTarget))return;if(A&&cr(A.nodesRef.current,v).some((e=>{let{context:t}=e;return null==t?void 0:t.open})))return;if("top"===O&&u>=x.bottom-1||"bottom"===O&&u<=x.top+1||"left"===O&&n>=x.right-1||"right"===O&&n<=x.left+1)return g();let C=[];switch(O){case"top":C=[[T,x.top+1],[T,w.bottom-1],[B,w.bottom-1],[B,x.top+1]];break;case"bottom":C=[[T,w.top+1],[T,x.bottom-1],[B,x.bottom-1],[B,w.top+1]];break;case"left":C=[[w.right-1,L],[w.right-1,M],[x.left+1,M],[x.left+1,L]];break;case"right":C=[[x.right-1,L],[x.right-1,M],[w.left+1,M],[w.left+1,L]]}if(!fa([m,P],C)){if(i&&!X)return g();if(!z&&r){const t=function(e,t){const n=performance.now(),r=n-o;if(null===l||null===s||0===r)return l=e,s=t,o=n,null;const a=e-l,i=t-s,u=Math.sqrt(a*a+i*i);return l=e,s=t,o=n,u/r}(e.clientX,e.clientY);if(null!==t&&t<.1)return g()}fa([m,P],function(e){let[n,r]=e;switch(O){case"top":return[[j?n+t/2:D?n+4*t:n-4*t,r+t+1],[j?n-t/2:D?n+4*t:n-4*t,r+t+1],[w.left,D||j?w.bottom-t:w.top],[w.right,D?j?w.bottom-t:w.top:w.bottom-t]];case"bottom":return[[j?n+t/2:D?n+4*t:n-4*t,r-t],[j?n-t/2:D?n+4*t:n-4*t,r-t],[w.left,D||j?w.top+t:w.bottom],[w.right,D?j?w.top+t:w.bottom:w.top+t]];case"left":{const e=[n+t+1,N?r+t/2:H?r+4*t:r-4*t],a=[n+t+1,N?r-t/2:H?r+4*t:r-4*t];return[[H||N?w.right-t:w.left,w.top],[H?N?w.right-t:w.left:w.right-t,w.bottom],e,a]}case"right":return[[n-t,N?r+t/2:H?r+4*t:r-4*t],[n-t,N?r-t/2:H?r+4*t:r-4*t],[H||N?w.left+t:w.right,w.top],[H?N?w.left+t:w.right:w.left+t,w.bottom]]}}([n,u]))?!i&&r&&(a=window.setTimeout(g,40)):g()}}};return u.__options={blockPointerEvents:n},u}const da=ye("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]),va=ye("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);var Aa="light",ga="neutral",ma=function(e){var t=e.icon,n=void 0===t?null:t,r=e.theme,a=void 0===r?Aa:r,i=e.variant,l=void 0===i?ga:i,o="[&>svg]:h-5 [&>svg]:w-5",u=function(e){var t=e.theme,n=void 0===t?Aa:t,r=e.variant;return{info:"light"===n?"text-support-info":"text-support-info-inverse",success:"light"===n?"text-support-success":"text-support-success-inverse",warning:"light"===n?"text-support-warning":"text-support-warning-inverse",error:"light"===n?"text-support-error":"text-support-error-inverse"}[void 0===r?ga:r]||("light"===n?"text-icon-secondary":"text-icon-inverse")}({theme:a,variant:l});if(n&&(0,s.isValidElement)(n))return(0,s.cloneElement)(n,{className:re(o,u,n.props.className)});var f={neutral:React.createElement(je,{className:re(o,u)}),info:React.createElement(je,{className:re(o,u)}),success:React.createElement(xe,{className:re(o,u)}),warning:React.createElement(da,{className:re(o,u)}),error:React.createElement(va,{className:re(o,u)})};return f[l]||f.neutral},Pa=function(e){var t=e.actionType,n=void 0===t?"button":t,r=e.onAction,a=void 0===r?function(){}:r,i=e.actionLabel,l=void 0===i?"":i,s=e.theme,o=void 0===s?Aa:s,u="focus:ring-0 focus:ring-offset-0 ring-offset-0 focus:outline-none",f="text-button-primary border-button-primary hover:border-button-primary hover:text-button-primary-hover";switch("dark"===o&&(f="text-text-inverse border-text-inverse hover:border-text-inverse hover:text-text-inverse"),n){case"button":return React.createElement(fe,{variant:"outline",size:"xs",onClick:a,className:re("rounded",u,f,"dark"===o?"bg-transparent hover:bg-transparent":"bg-white hover:bg-white")},l);case"link":return React.createElement(fe,{variant:"link",size:"xs",onClick:a,className:re(u,f)},l);default:return null}},ba=function(e){var t=e.theme,n=void 0===t?Aa:t,r=e.title,a=void 0===r?"":r;return!a&&isNaN(a)?null:React.createElement("span",{className:re("block",{light:"text-text-primary",dark:"text-text-inverse"}[n],"text-sm leading-5 font-semibold")},a)},pa=function(e){var t=e.theme,n=void 0===t?Aa:t,r=e.content,a=void 0===r?"":r;return!a&&isNaN(a)?null:React.createElement("span",{className:re({light:"text-text-primary",dark:"text-text-inverse"}[n],"block text-sm [&_*]:text-sm leading-5 [&_*]:leading-5 font-normal")},a)},za=function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){t.forEach((function(t){"function"==typeof t?t(e):t&&(t.current=e)}))}};function ya(e){return ya="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},ya(e)}function ha(){return ha=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},ha.apply(null,arguments)}function xa(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function wa(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?xa(Object(n),!0).forEach((function(t){Oa(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):xa(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Oa(e,t,n){return(t=function(e){var t=function(e){if("object"!=ya(e)||!e)return e;var t=e[Symbol.toPrimitive];if(void 0!==t){var n=t.call(e,"string");if("object"!=ya(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==ya(t)?t:t+""}(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Da(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var Ha=function(e){var t,n,r,a=e.variant,i=void 0===a?"dark":a,l=e.placement,u=void 0===l?"bottom":l,f=e.title,c=void 0===f?"":f,d=e.content,v=e.arrow,A=void 0!==v&&v,g=e.open,m=e.setOpen,P=e.children,b=e.className,p=e.tooltipPortalRoot,z=void 0===p?null:p,y=e.tooltipPortalId,h=void 0===y?"":y,x=e.boundary,w=void 0===x?"clippingAncestors":x,O=e.strategy,D=void 0===O?"fixed":O,H=e.offset,X=void 0===H?8:H,j=e.triggers,N=void 0===j?["hover","focus"]:j,T=e.interactive,B=void 0!==T&&T,M=(0,s.useMemo)((function(){return"boolean"==typeof g&&"function"==typeof m}),[g,m]),L=(2,function(e){if(Array.isArray(e))return e}(r=(0,s.useState)(!1))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,i,l,s=[],o=!0,u=!1;try{for(i=(n=n.call(e)).next,0;!(o=(r=i.call(n)).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){u=!0,a=e}finally{try{if(!o&&null!=n.return&&(l=n.return(),Object(l)!==l))return}finally{if(u)throw a}}return s}}(r)||function(e,t){if(e){if("string"==typeof e)return Da(e,2);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Da(e,2):void 0}}(r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),C=L[0],E=L[1],Z=(0,s.useRef)(null),G=qr({open:M?g:C,onOpenChange:M?m:E,placement:u,strategy:D,middleware:[Xn(X),Nn({boundary:w}),jn({boundary:w}),(n={element:Z},{...Hn(n),options:[n,void 0]})],whileElementsMounted:gn}),k=G.refs,W=G.floatingStyles,Q=G.context,Y=Rr(Q,{enabled:!M&&N.includes("click")}),I=function(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,dataRef:a,events:i,elements:l}=e,{enabled:o=!0,delay:u=0,handleClose:f=null,mouseOnly:c=!1,restMs:d=0,move:v=!0}=t,A=lr(),g=ir(),m=or(f),P=or(u),b=or(n),p=s.useRef(),z=s.useRef(-1),y=s.useRef(),h=s.useRef(-1),x=s.useRef(!0),w=s.useRef(!1),O=s.useRef((()=>{})),D=s.useCallback((()=>{var e;const t=null==(e=a.current.openEvent)?void 0:e.type;return(null==t?void 0:t.includes("mouse"))&&"mousedown"!==t}),[a]);s.useEffect((()=>{if(o)return i.on("openchange",e),()=>{i.off("openchange",e)};function e(e){let{open:t}=e;t||(clearTimeout(z.current),clearTimeout(h.current),x.current=!0)}}),[o,i]),s.useEffect((()=>{if(!o)return;if(!m.current)return;if(!n)return;function e(e){D()&&r(!1,e,"hover")}const t=ut(l.floating).documentElement;return t.addEventListener("mouseleave",e),()=>{t.removeEventListener("mouseleave",e)}}),[l.floating,n,r,o,m,D]);const H=s.useCallback((function(e,t,n){void 0===t&&(t=!0),void 0===n&&(n="hover");const a=fr(P.current,"close",p.current);a&&!y.current?(clearTimeout(z.current),z.current=window.setTimeout((()=>r(!1,e,n)),a)):t&&(clearTimeout(z.current),r(!1,e,n))}),[P,r]),X=Ln((()=>{O.current(),y.current=void 0})),j=Ln((()=>{if(w.current){const e=ut(l.floating).body;e.style.pointerEvents="",e.removeAttribute(ur),w.current=!1}}));s.useEffect((()=>{if(o&&Ge(l.domReference)){var e;const t=l.domReference;return n&&t.addEventListener("mouseleave",u),null==(e=l.floating)||e.addEventListener("mouseleave",u),v&&t.addEventListener("mousemove",i,{once:!0}),t.addEventListener("mouseenter",i),t.addEventListener("mouseleave",s),()=>{var e;n&&t.removeEventListener("mouseleave",u),null==(e=l.floating)||e.removeEventListener("mouseleave",u),v&&t.removeEventListener("mousemove",i),t.removeEventListener("mouseenter",i),t.removeEventListener("mouseleave",s)}}function t(){return!!a.current.openEvent&&["click","mousedown"].includes(a.current.openEvent.type)}function i(e){if(clearTimeout(z.current),x.current=!1,c&&!ot(p.current)||d>0&&!fr(P.current,"open"))return;const t=fr(P.current,"open",p.current);t?z.current=window.setTimeout((()=>{b.current||r(!0,e,"hover")}),t):r(!0,e,"hover")}function s(e){if(t())return;O.current();const r=ut(l.floating);if(clearTimeout(h.current),m.current&&a.current.floatingContext){n||clearTimeout(z.current),y.current=m.current({...a.current.floatingContext,tree:A,x:e.clientX,y:e.clientY,onClose(){j(),X(),H(e,!0,"safe-polygon")}});const t=y.current;return r.addEventListener("mousemove",t),void(O.current=()=>{r.removeEventListener("mousemove",t)})}("touch"!==p.current||!et(l.floating,e.relatedTarget))&&H(e)}function u(e){t()||a.current.floatingContext&&(null==m.current||m.current({...a.current.floatingContext,tree:A,x:e.clientX,y:e.clientY,onClose(){j(),X(),H(e)}})(e))}}),[l,o,e,c,d,v,H,X,j,r,n,b,A,P,m,a]),qn((()=>{var e;if(o&&n&&null!=(e=m.current)&&e.__options.blockPointerEvents&&D()){w.current=!0;const e=l.floating;if(Ge(l.domReference)&&e){var t;const n=ut(l.floating).body;n.setAttribute(ur,"");const r=l.domReference,a=null==A||null==(t=A.nodesRef.current.find((e=>e.id===g)))||null==(t=t.context)?void 0:t.elements.floating;return a&&(a.style.pointerEvents=""),n.style.pointerEvents="none",r.style.pointerEvents="auto",e.style.pointerEvents="auto",()=>{n.style.pointerEvents="",r.style.pointerEvents="",e.style.pointerEvents=""}}}}),[o,n,g,l,A,m,D]),qn((()=>{n||(p.current=void 0,X(),j())}),[n,X,j]),s.useEffect((()=>()=>{X(),clearTimeout(z.current),clearTimeout(h.current),j()}),[o,l.domReference,X,j]);const N=s.useMemo((()=>{function e(e){p.current=e.pointerType}return{onPointerDown:e,onPointerEnter:e,onMouseMove(e){const{nativeEvent:t}=e;function a(){x.current||b.current||r(!0,t,"hover")}c&&!ot(p.current)||n||0===d||(clearTimeout(h.current),"touch"===p.current?a():h.current=window.setTimeout(a,d))}}}),[c,r,n,b,d]),T=s.useMemo((()=>({onMouseEnter(){clearTimeout(z.current)},onMouseLeave(e){H(e.nativeEvent,!1)}})),[H]);return s.useMemo((()=>o?{reference:N,floating:T}:{}),[o,N,T])}(Q,wa({move:!1,enabled:!M&&N.includes("hover")},B&&{handleClose:ca()})),R=function(e,t){void 0===t&&(t={});const{open:n,onOpenChange:r,events:a,dataRef:i,elements:l}=e,{enabled:o=!0,visibleOnly:u=!0}=t,f=s.useRef(!1),c=s.useRef(),d=s.useRef(!0);s.useEffect((()=>{if(!o)return;const e=Ce(l.domReference);function t(){!n&&ke(l.domReference)&&l.domReference===$e(ut(l.domReference))&&(f.current=!0)}function r(){d.current=!0}return e.addEventListener("blur",t),e.addEventListener("keydown",r,!0),()=>{e.removeEventListener("blur",t),e.removeEventListener("keydown",r,!0)}}),[l.domReference,n,o]),s.useEffect((()=>{if(o)return a.on("openchange",e),()=>{a.off("openchange",e)};function e(e){let{reason:t}=e;"reference-press"!==t&&"escape-key"!==t||(f.current=!0)}}),[a,o]),s.useEffect((()=>()=>{clearTimeout(c.current)}),[]);const v=s.useMemo((()=>({onPointerDown(e){at(e.nativeEvent)||(d.current=!1)},onMouseLeave(){f.current=!1},onFocus(e){if(f.current)return;const t=ct(e.nativeEvent);if(u&&Ge(t))try{if(it()&&st())throw Error();if(!t.matches(":focus-visible"))return}catch(e){if(!d.current&&!vt(t))return}r(!0,e.nativeEvent,"focus")},onBlur(e){f.current=!1;const t=e.relatedTarget,n=e.nativeEvent,a=Ge(t)&&t.hasAttribute(sr("focus-guard"))&&"outside"===t.getAttribute("data-type");c.current=window.setTimeout((()=>{var e;const s=$e(l.domReference?l.domReference.ownerDocument:document);(t||s!==l.domReference)&&(et(null==(e=i.current.floatingContext)?void 0:e.refs.floating.current,s)||et(l.domReference,s)||a||r(!1,n,"focus"))}))}})),[i,l.domReference,r,u]);return s.useMemo((()=>o?{reference:v}:{}),[o,v])}(Q,{enabled:!M&&N.includes("focus")}),F=$r([Y,I,R,Jr(Q),la(Q,{role:"tooltip"})]),S=F.getReferenceProps,V=F.getFloatingProps,J=ua(Q,{duration:150,initial:{opacity:0},open:{opacity:1},close:{opacity:0}}),q=J.isMounted,U=J.styles,K=null===(t={light:"bg-tooltip-background-light text-text-primary",dark:"bg-tooltip-background-dark text-text-on-color"})||void 0===t?void 0:t[i],_="dark"===i?"text-tooltip-background-dark":"text-tooltip-background-light";return o().createElement(o().Fragment,null,(0,s.isValidElement)(P)&&(0,s.cloneElement)(P,wa(wa({},P.props),{},{ref:za(P.ref,k.setReference),className:re(P.props.className)},S())),o().createElement(Br,{id:h,root:z},q&&o().createElement("div",ha({className:re("absolute z-20 py-2 px-3 rounded-md text-xs leading-4 shadow-soft-shadow-lg",K,"max-w-80 w-fit",b),ref:k.setFloating,style:wa(wa({},W),U)},V()),o().createElement("div",null,!!c&&o().createElement("span",{className:"font-semibold"},c),!!d&&o().createElement("div",{className:"font-normal"},d)),A&&o().createElement(nr,{ref:Z,context:Q,placement:u,className:re("fill-current",_)}))))},Xa=["id","label","value","children","disabled","icon","inlineIcon","hideSelection","reversePosition","borderOn","borderOnActive","badgeItem","useSwitch","info","minWidth"],ja=["id","children","value","disabled","size"];function Na(){return Na=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Na.apply(null,arguments)}function Ta(e){return Ta="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Ta(e)}function Ba(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}function Ma(e,t){if(e){if("string"==typeof e)return La(e,t);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?La(e,t):void 0}}function La(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var Ca=(0,s.createContext)(),Ea=function(){return(0,s.useContext)(Ca)},Za=function(e){var t,n=e.children,r=e.name,a=e.style,i=void 0===a?"simple":a,l=e.size,u=void 0===l?"md":l,f=e.value,c=e.defaultValue,d=e.by,v=void 0===d?"id":d,A=e.as,g=void 0===A?"div":A,m=e.onChange,P=e.className,b=e.disableGroup,p=void 0!==b&&b,z=e.vertical,y=void 0!==z&&z,h=e.columns,x=void 0===h?4:h,w=e.multiSelection,O=void 0!==w&&w,D=e.gapClassname,H=void 0===D?"gap-2":D,X=(0,s.useMemo)((function(){return void 0!==f}),[f]),j=(0,s.useMemo)((function(){return r||"radio-button-group-".concat(ce())}),[r]);t=X?f:O?null!=c?c:[]:c;var N,T=(2,function(e){if(Array.isArray(e))return e}(N=(0,s.useState)(t))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,i,l,s=[],o=!0,u=!1;try{for(i=(n=n.call(e)).next,0;!(o=(r=i.call(n)).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){u=!0,a=e}finally{try{if(!o&&null!=n.return&&(l=n.return(),Object(l)!==l))return}finally{if(u)throw a}}return s}}(N)||Ma(N,2)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),B=T[0],M=T[1],L=(0,s.useCallback)((function(e){if(O)M((function(t){var n=t.includes(e)?t.filter((function(t){return t!==e})):[].concat(function(e){return function(e){if(Array.isArray(e))return La(e)}(e)||function(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}(e)||Ma(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}(t),[e]);return"function"==typeof m&&m(n),n}));else{if(X||M(e),"function"!=typeof m)return;m(e)}}),[m]);P=re("grid grid-cols-4",le[x],H,"tile"===i&&"gap-0",y&&"grid-cols-1",P);var C=re("tile"===i?"border border-border-subtle border-solid rounded-md shadow-sm":"gap-6",P),E=function(){return o().createElement(Ca.Provider,{value:{name:j,value:X?f:B,by:v,onChange:L,isControlled:X,disableAll:p,style:i,columns:x,multiSelection:O,size:u}},o().Children.map(n,(function(e){return(0,s.isValidElement)(e)?e:null})))};return o().createElement(o().Fragment,null,"tile"===i?o().createElement("div",{className:C},E()):o().createElement(g,g===s.Fragment?{}:{className:P},E()))};Za.displayName="RadioButton.Group";var Ga=(0,s.forwardRef)((function(e,t){var n,r,a=e.id,i=e.label,l=e.value,u=e.children,f=e.disabled,c=e.icon,d=void 0===c?null:c,v=e.inlineIcon,A=void 0!==v&&v,g=e.hideSelection,m=void 0!==g&&g,P=e.reversePosition,b=void 0!==P&&P,p=e.borderOn,z=void 0!==p&&p,y=e.borderOnActive,h=void 0===y||y,x=e.badgeItem,w=void 0===x?null:x,O=e.useSwitch,D=void 0!==O&&O,H=e.info,X=void 0===H?null:H,j=e.minWidth,N=void 0===j||j,T=Ba(e,Xa),B=T.buttonWrapperClasses,M=Ea(),L=M.name,C=M.value,E=M.by,Z=M.onChange,G=M.disableAll,k=M.checked,W=M.multiSelection,Q=M.size,Y="primary",I=(0,s.useMemo)((function(){return a||"radio-button-".concat(ce())}),[a]),R=(0,s.useMemo)((function(){return G||f}),[G,f]),F=(0,s.useMemo)((function(){return W?Array.isArray(C)&&C.includes(l):void 0!==k?k:Ta(C)===Ta(l)&&("string"==typeof C?C===l:Array.isArray(C)?C.includes(l):C[E]===l[E])}),[C,l,k]),S=(0,s.useCallback)((function(){return(0,s.isValidElement)(i)?i:i.heading?o().createElement("div",{className:re(!A&&"space-y-1.5 mt-[2px]",b&&(D?"ml-10":"ml-4"),A&&"flex gap-2",A&&!i.description&&"items-center")},d&&o().createElement(o().Fragment,null,d),o().createElement("div",{className:re("space-y-1.5")},o().createElement("p",{className:re("text-text-primary font-medium m-0",Te[Q],f&&"text-text-disabled cursor-not-allowed")},i.heading),i.description&&o().createElement("p",{className:"text-text-tertiary text-sm font-normal leading-5 m-0"},i.description))):null}),[i]);if("tile"===M.style)return o().createElement(ka,{id:a,label:i,value:l,disabled:f,size:Q},u);var V=function(){R||(W?D&&Z(l,!F):Z(l))};return o().createElement("label",{className:re("inline-flex items-center relative cursor-pointer transition-all duration-300",!!i&&"items-start justify-between",N&&"min-w-[180px]",z&&"border border-border-subtle border-solid rounded-md shadow-sm hover:ring-2 hover:ring-border-interactive",h&&z&&F&&"ring-2 ring-border-interactive","sm"===Q?"px-3 py-3":"px-4 py-4","pr-12",R&&"cursor-not-allowed opacity-40",B),htmlFor:I,onClick:V},!!i&&o().createElement("label",{className:re("cursor-pointer",R&&"cursor-not-allowed"),htmlFor:I},S()),!!X&&o().createElement("div",{className:"absolute mr-0.5 bottom-1.5 right-3"},o().createElement(Ha,{arrow:!0,triggers:["hover","focus"],placement:"top",title:null==X?void 0:X.heading,content:null==X?void 0:X.description},o().createElement(je,{className:re("text-text-primary",null===(n=Be[Q])||void 0===n?void 0:n.info)}))),o().createElement("label",{className:re("absolute mr-0.5 right-3 flex items-center cursor-pointer rounded-full gap-2",b&&"left-0",R&&"cursor-not-allowed",A&&"mr-3"),onClick:V},!!w&&w,!m&&(D?o().createElement(Pe,{defaultValue:!1,size:"md"===Q?"lg":"sm",onChange:function(){W?Z(l,!F):Z(l)},checked:F}):o().createElement("span",{className:"relative p-0.5"},o().createElement("input",Na({ref:t,id:I,type:W?"checkbox":"radio",className:re("peer flex relative cursor-pointer appearance-none transition-all m-0 before:content-[''] checked:before:content-[''] checked:before:hidden before:hidden !border-1.5 border-solid",!W&&"rounded-full",Ne[Y].checkbox,Be[Q].checkbox,R&&"disabled:bg-white checked:disabled:bg-white disabled:border-border-disabled checked:disabled:border-border-disabled cursor-not-allowed"),name:L,value:l,onChange:function(e){return Z(e.target.value)},checked:F,disabled:R},T)),o().createElement("span",{className:re("inline-flex items-center absolute top-2/4 left-2/4 -translate-y-2/4 -translate-x-2/4 text-white opacity-0 transition-opacity peer-checked:opacity-100",Ne[Y].icon,R&&"peer-disabled:text-border-disabled cursor-not-allowed")},W?o().createElement(xe,{className:"sm"===Q?"size-3":"size-4"}):o().createElement("div",{className:re("rounded-full bg-current","sm"===Q&&"mt-[0.5px]",null===(r=Be[Q])||void 0===r?void 0:r.icon)}))))))}));Ga.displayName="RadioButton.Button";var ka=function(e){var t=e.id,n=e.children,r=e.value,a=e.disabled,i=e.size,l=void 0===i?"md":i,u=Ba(e,ja),f=Ea()||{},c=f.name,d=f.value,v=f.by,A=f.onChange,g=f.disableAll,m=f.checked,P=(0,s.useMemo)((function(){return t||"radio-button-".concat(ce())}),[t]),b=(0,s.useMemo)((function(){return g||a}),[g,a]),p=(0,s.useMemo)((function(){return void 0!==m?m:Ta(d)===Ta(r)&&("string"==typeof d?d===r:Array.isArray(d)?d.includes(r):d[v]===r[v])}),[d,r,m,v]),z=re("bg-background-primary text-primary cursor-pointer flex items-center justify-center","hover:bg-button-tertiary-hover","focus:outline-none",b?"text-text-disabled cursor-not-allowed":"",Me[l],"border-0 border-r border-border-subtle border-solid");return o().createElement(o().Fragment,null,o().createElement("button",Na({type:"button",id:P,className:re(z,"first:rounded-tl first:rounded-bl first:border-0 first:border-r first:border-border-subtle last:rounded-tr last:rounded-br last:border-0",p&&"bg-button-disabled"),onClick:function(){A&&A(r)},disabled:b},u),o().createElement("input",{type:"hidden",value:r,name:c,checked:p,onChange:A}),n))},Wa=Object.assign(Ga,{Group:Za,Button:Ga});const Qa=ye("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);var Ya=(0,s.forwardRef)((function(e,t){var n=e.label,r=void 0===n?"":n,a=e.size,i=void 0===a?"sm":a,l=e.className,s=void 0===l?"":l,o=e.type,u=void 0===o?"pill":o,f=e.variant,c=void 0===f?"neutral":f,d=e.icon,v=void 0===d?null:d,A=e.disabled,g=void 0!==A&&A,m=e.onClose,P=void 0===m?function(){}:m,b=e.closable,p=void 0!==b&&b,z=e.onMouseDown,y=void 0===z?function(){}:z,h={neutral:"bg-badge-background-gray hover:bg-badge-hover-gray text-badge-color-gray border-badge-border-gray",red:"bg-badge-background-red hover:bg-badge-hover-red text-badge-color-red border-badge-border-red",yellow:"bg-badge-background-yellow hover:bg-badge-hover-yellow text-badge-color-yellow border-badge-border-yellow",green:"bg-badge-background-green hover:bg-badge-hover-green text-badge-color-green border-badge-border-green",blue:"bg-badge-background-sky hover:bg-badge-hover-sky text-badge-color-sky border-badge-border-sky",inverse:"bg-background-inverse hover:bg-badge-hover-inverse text-text-inverse border-background-inverse",disabled:"bg-badge-background-disabled hover:bg-badge-hover-disabled text-badge-color-disabled border-badge-border-disabled disabled cursor-not-allowed"},x="",w="group relative justify-center flex items-center cursor-pointer",O={xxs:"[&>svg]:size-3",xs:"[&>svg]:size-3",sm:"[&>svg]:size-3",md:"[&>svg]:size-4",lg:"[&>svg]:size-5"};return g?(x=h.disabled,w+=" cursor-not-allowed disabled"):x=h[c],r?React.createElement("span",{className:re("font-medium border-badge-border-gray flex items-center justify-center border border-solid box-border",{xxs:"py-0.5 px-0.5 text-xs h-4",xs:"py-0.5 px-1 text-xs h-5",sm:"py-1 px-1.5 text-xs h-6",md:"py-1 px-1.5 text-sm h-7",lg:"py-1 px-1.5 text-base h-8"}[i],{pill:"rounded-full",rounded:"rounded"}[u],"gap-0.5",x,s),ref:t},v?React.createElement("span",{className:re("justify-center flex items-center",O[i])},v):null,React.createElement("span",{className:"px-1"},r),p&&React.createElement("span",{className:re(w,O[i]),onClick:g?null:P,onMouseDown:y,role:"button",tabIndex:0},React.createElement("span",{className:"sr-only"},"Remove ".concat(r)),React.createElement(Qa,null),React.createElement("span",{className:"absolute -inset-1"}))):null}));Ya.displayName="Badge";var Ia=Ya,Ra=["id","defaultValue","value","size","className","disabled","onChange","error","onError"];function Fa(){return Fa=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},Fa.apply(null,arguments)}function Sa(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=Array(t);n<t;n++)r[n]=e[n];return r}var Va=(0,s.forwardRef)((function(e,t){var n,r=e.id,a=e.defaultValue,i=void 0===a?"":a,l=e.value,o=e.size,u=void 0===o?"sm":o,f=e.className,c=void 0===f?"":f,d=e.disabled,v=void 0!==d&&d,A=e.onChange,g=void 0===A?function(){}:A,m=e.error,P=void 0!==m&&m,b=e.onError,p=void 0===b?function(){}:b,z=function(e,t){if(null==e)return{};var n,r,a=function(e,t){if(null==e)return{};var n={};for(var r in e)if({}.hasOwnProperty.call(e,r)){if(t.includes(r))continue;n[r]=e[r]}return n}(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(r=0;r<i.length;r++)n=i[r],t.includes(n)||{}.propertyIsEnumerable.call(e,n)&&(a[n]=e[n])}return a}(e,Ra),y=(0,s.useMemo)((function(){return r||"input-textarea-".concat(ce())}),[r]),h=(0,s.useMemo)((function(){return void 0!==l}),[l]),x=(2,function(e){if(Array.isArray(e))return e}(n=(0,s.useState)(i))||function(e,t){var n=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,a,i,l,s=[],o=!0,u=!1;try{for(i=(n=n.call(e)).next,0;!(o=(r=i.call(n)).done)&&(s.push(r.value),2!==s.length);o=!0);}catch(e){u=!0,a=e}finally{try{if(!o&&null!=n.return&&(l=n.return(),Object(l)!==l))return}finally{if(u)throw a}}return s}}(n)||function(e,t){if(e){if("string"==typeof e)return Sa(e,2);var n={}.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Sa(e,2):void 0}}(n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),w=x[0],O=x[1],D=(0,s.useCallback)((function(){return h?l:w}),[h,l,w]),H=v?"hover:border-border-disabled":"hover:border-border-strong",X=P?"focus:border-focus-error-border focus:ring-field-color-error border-focus-error-border":"",j=v?"border-border-disabled bg-field-background-disabled cursor-not-allowed text-text-disabled":"";return React.createElement("textarea",Fa({ref:t,id:y,className:re("py-2 rounded border border-solid border-border-subtle bg-field-secondary-background font-normal placeholder-text-tertiary text-text-primary focus:outline-none",j,{sm:"px-3 rounded text-xs",md:"px-3 rounded-md text-sm",lg:"px-4 rounded-lg text-base"}[u],"focus:border-focus-border focus:ring-2 focus:ring-toggle-on focus:ring-offset-2",H,X,c),disabled:v,onChange:function(e){if(!v){var t=e.target.value;h||O(t),"function"==typeof g&&g(t)}},onInvalid:p,value:D()},z))}));Va.displayName="TextArea";var Ja=Va,qa=function(e){var t,n,r,a,i=e.variant,l=void 0===i?"primary":i,s=e.size,o=void 0===s?"md":s,u=e.border,f=void 0===u?"subtle":u,c=e.url,d=void 0===c?"":c,v=e.children,A=e.className,g=null===(t={white:"text-text-primary bg-background-primary",gray:"text-text-primary bg-background-secondary",primary:"text-text-on-color bg-background-brand",primaryLight:"text-text-primary bg-brand-background-50",dark:"text-text-on-color bg-button-secondary"})||void 0===t?void 0:t[l],m=null===(n={xxs:"size-5 [&>svg]:size-3 text-xs",xs:"size-6 [&>svg]:size-4 text-sm",sm:"size-8 [&>svg]:size-5 text-base",md:"size-10 [&>svg]:size-6 text-lg",lg:"size-12 [&>svg]:size-12 text-lg"})||void 0===n?void 0:n[o],P=null===(r={none:"",subtle:"ring-1 ring-border-transparent-subtle",ring:"ring ring-border-subtle"})||void 0===r?void 0:r[d&&"none"===f?"subtle":f],b=d?"bg-cover bg-center":"";return React.createElement("div",{className:re("rounded-full overflow-hidden flex items-center justify-center",!d&&g,m,P,b,A),style:d?{backgroundImage:"url(".concat(d,")")}:{}},v?"string"==typeof v?null==v||null===(a=v[0])||void 0===a?void 0:a.toUpperCase():v:null)};const Ua=ye("Upload",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"17 8 12 3 7 8",key:"t8dd8p"}],["line",{x1:"12",x2:"12",y1:"3",y2:"15",key:"widbto"}]]);var Ka=["id","type","defaultValue","value","size","className","disabled","onChange","error","onError","prefix","suffix","label"];function _a(){return _a=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)({}).hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},_a.apply(null